Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/types/domain/device.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export enum EAndroidDevices {
export enum EiOSVersions {
'eighteen' = '18',
'seventeen' = '17',
'sixteen' = '16',
'twentySix' = '26',
}

Expand Down
79 changes: 62 additions & 17 deletions src/types/generated/schema.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,10 @@ export interface paths {
* never touches credits. Lets the CLI print the cell count and estimated cost,
* and surface validation errors, before uploading the flow ZIP.
*
* The dollar estimate is exact for non-Google-Play cells; a Google Play
* column's price is path-dependent until #1100 unifies the parallel and
* sequential Play tiering.
* The dollar estimate is exact for every cell, Google Play included: quote
* and charge both run buildBaseCostByTuple -> calculateCost -> the shared
* resolvePricingTier over the same typed device, and so do the parallel and
* sequential submit paths (#1100).
*/
post: operations["UploadsController_estimateMatrix"];
delete?: never;
Expand Down Expand Up @@ -689,6 +690,29 @@ export interface paths {
patch?: never;
trace?: never;
};
"/webhooks/notify-on-retry": {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
get?: never;
put?: never;
/**
* Toggle re-delivery when a retry finishes on an already-reported run (#1277).
*
* Defaults to on, unlike the Slack and email equivalents: this endpoint exists
* for the consumer that would rather NOT be called twice, while automations
* that want the current state keep working untouched.
*/
post: operations["WebhooksController_setNotifyOnRetry"];
delete?: never;
options?: never;
head?: never;
patch?: never;
trace?: never;
};
"/webhooks/regenerate-secret": {
parameters: {
query?: never;
Expand Down Expand Up @@ -1626,7 +1650,7 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "16" | "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
platform?: string;
Expand Down Expand Up @@ -1666,7 +1690,7 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "16" | "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
platform?: string;
Expand Down Expand Up @@ -1717,7 +1741,7 @@ export interface components {
appFile?: string;
env: string;
/** @enum {string} */
iOSVersion?: "16" | "17" | "18" | "26";
iOSVersion?: "17" | "18" | "26";
/** @enum {string} */
iOSDevice?: "iphone-14" | "iphone-15" | "iphone-16" | "iphone-16-plus" | "iphone-16-pro" | "iphone-16-pro-max" | "ipad-pro-6th-gen";
platform?: string;
Expand Down Expand Up @@ -2300,9 +2324,7 @@ export interface operations {
OrgController_handlePaddleWebhook: {
parameters: {
query?: never;
header: {
"paddle-signature": string;
};
header?: never;
path?: never;
cookie?: never;
};
Expand Down Expand Up @@ -2933,7 +2955,6 @@ export interface operations {
* "iphone-14": {
* "name": "iPhone 14",
* "versions": [
* "16",
* "17",
* "18"
* ],
Expand Down Expand Up @@ -2997,8 +3018,7 @@ export interface operations {
* "33",
* "34",
* "35",
* "36",
* "37"
* "36"
* ],
* "deprecated": false
* },
Expand All @@ -3016,8 +3036,7 @@ export interface operations {
* "33",
* "34",
* "35",
* "36",
* "37"
* "36"
* ],
* "deprecated": false
* },
Expand All @@ -3027,8 +3046,7 @@ export interface operations {
* "33",
* "34",
* "35",
* "36",
* "37"
* "36"
* ],
* "deprecated": false
* },
Expand Down Expand Up @@ -3139,6 +3157,8 @@ export interface operations {
secret_key?: string;
/** @description Masked secret (default) */
secret_key_masked?: string;
/** @description Re-deliver when retried tests finish (default true) */
notify_on_retry?: boolean;
/** Format: date-time */
created_at?: string;
/** Format: date-time */
Expand Down Expand Up @@ -3198,6 +3218,32 @@ export interface operations {
};
};
};
WebhooksController_setNotifyOnRetry: {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
requestBody: {
content: {
"application/json": {
notifyOnRetry: boolean;
};
};
};
responses: {
/** @description Retry re-delivery setting updated */
201: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": Record<string, never>;
};
};
};
};
WebhooksController_regenerateWebhookSecret: {
parameters: {
query?: never;
Expand Down Expand Up @@ -3882,7 +3928,6 @@ export interface operations {
query?: never;
header: {
authorization: string;
"x-dcd-org": string;
};
path?: never;
cookie?: never;
Expand Down
Loading