@cycleplatform/api-client-typescript 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/generated/types.ts +8 -0
package/package.json
CHANGED
package/src/generated/types.ts
CHANGED
|
@@ -13328,6 +13328,14 @@ export interface components {
|
|
|
13328
13328
|
variables?: {
|
|
13329
13329
|
[key: string]: string;
|
|
13330
13330
|
};
|
|
13331
|
+
advanced?: {
|
|
13332
|
+
/** @description Sub queue allows multiple concurrent pipeline runs. */
|
|
13333
|
+
sub_queue?: string | null;
|
|
13334
|
+
/** @description To enable skip locks, pass the current UNIX timestamp. Must be accurate within 10 minutes of the current UTC time.
|
|
13335
|
+
* This will skip lock checks when running a pipeline - the user takes all risk of ensuring two pipeline runs won't make conflicting changes.
|
|
13336
|
+
* */
|
|
13337
|
+
skip_locks?: number | null;
|
|
13338
|
+
};
|
|
13331
13339
|
};
|
|
13332
13340
|
};
|
|
13333
13341
|
/** RerunPipelineAction */
|