@boboddy/sdk 0.4.2 → 0.5.0
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/dist/client.js +0 -23
- package/dist/definitions/advancement-policies/define-advancement-policy.d.ts +30 -5
- package/dist/definitions/advancement-policies/index.js +11 -1
- package/dist/definitions/pipelines/bindings.d.ts +62 -0
- package/dist/definitions/pipelines/builder-helpers.d.ts +36 -94
- package/dist/definitions/pipelines/chain-graph.d.ts +15 -14
- package/dist/definitions/pipelines/compile-node-definitions.d.ts +27 -0
- package/dist/definitions/pipelines/define-default-pipeline-assignment.d.ts +64 -14
- package/dist/definitions/pipelines/define-pipeline.d.ts +101 -154
- package/dist/definitions/pipelines/index.d.ts +1 -2
- package/dist/definitions/pipelines/index.js +485 -585
- package/dist/definitions/pipelines/node-input-ctx.d.ts +31 -0
- package/dist/definitions/pipelines/pipeline-definitions-client.d.ts +42 -12
- package/dist/definitions/pipelines/pipeline-states.d.ts +104 -0
- package/dist/definitions/pipelines/work-item-fields.d.ts +98 -0
- package/dist/definitions/steps/define-code-step.d.ts +50 -0
- package/dist/definitions/steps/define-step.d.ts +40 -8
- package/dist/definitions/steps/index.d.ts +1 -0
- package/dist/definitions/steps/index.js +41 -24
- package/dist/definitions/steps/step-definitions-client.d.ts +47 -11
- package/dist/definitions/validation/index.js +15148 -94
- package/dist/definitions/validation/validate-definition-specs.d.ts +19 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/sdk.gen.d.ts +1 -4
- package/dist/generated/types.gen.d.ts +469 -875
- package/dist/index.js +525 -585
- package/dist/push/collect-definitions.d.ts +40 -1
- package/dist/push/index.d.ts +2 -2
- package/dist/push/index.js +756 -664
- package/dist/step-execution-plane-client.d.ts +9 -4
- package/package.json +2 -2
- package/dist/definitions/pipelines/builder.d.ts +0 -80
- package/dist/definitions/pipelines/fan-out-builder.d.ts +0 -66
- package/dist/definitions/pipelines/input-accessor.d.ts +0 -25
|
@@ -333,7 +333,9 @@ export type GetApiProjectsByProjectIdWorkItemsResponses = {
|
|
|
333
333
|
description: string;
|
|
334
334
|
sourceCreatedAt: string | unknown;
|
|
335
335
|
sourceUpdatedAt: string | unknown;
|
|
336
|
-
fields:
|
|
336
|
+
fields: {
|
|
337
|
+
[key: string]: unknown;
|
|
338
|
+
} | unknown;
|
|
337
339
|
createdByUserId: string | unknown;
|
|
338
340
|
createdByUsername: string | unknown;
|
|
339
341
|
createdByImage: string | unknown;
|
|
@@ -1386,10 +1388,18 @@ export type GetApiStepDefinitionsResponses = {
|
|
|
1386
1388
|
description: string | unknown;
|
|
1387
1389
|
prompt: string | unknown;
|
|
1388
1390
|
version: number;
|
|
1389
|
-
kind: 'built_in' | 'user_defined';
|
|
1391
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
1392
|
+
entrypointJson: {
|
|
1393
|
+
sourceFile: string;
|
|
1394
|
+
exportName: string;
|
|
1395
|
+
} | unknown;
|
|
1390
1396
|
executionMode: 'workspace' | 'no_workspace';
|
|
1391
|
-
inputSchemaJson:
|
|
1392
|
-
|
|
1397
|
+
inputSchemaJson: {
|
|
1398
|
+
[key: string]: unknown;
|
|
1399
|
+
} | unknown;
|
|
1400
|
+
resultSchemaJson: {
|
|
1401
|
+
[key: string]: unknown;
|
|
1402
|
+
} | unknown;
|
|
1393
1403
|
opencodeMcpJson: {
|
|
1394
1404
|
[key: string]: {
|
|
1395
1405
|
type: string;
|
|
@@ -1450,12 +1460,20 @@ export type PostApiStepDefinitionsData = {
|
|
|
1450
1460
|
key: string;
|
|
1451
1461
|
name: string;
|
|
1452
1462
|
description: string | unknown;
|
|
1453
|
-
prompt
|
|
1463
|
+
prompt?: string | unknown;
|
|
1454
1464
|
version: number;
|
|
1455
|
-
kind: 'built_in' | 'user_defined';
|
|
1465
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
1466
|
+
entrypointJson?: {
|
|
1467
|
+
sourceFile: string;
|
|
1468
|
+
exportName: string;
|
|
1469
|
+
} | unknown;
|
|
1456
1470
|
executionMode?: 'workspace' | 'no_workspace';
|
|
1457
|
-
inputSchemaJson:
|
|
1458
|
-
|
|
1471
|
+
inputSchemaJson: {
|
|
1472
|
+
[key: string]: unknown;
|
|
1473
|
+
} | unknown;
|
|
1474
|
+
resultSchemaJson: {
|
|
1475
|
+
[key: string]: unknown;
|
|
1476
|
+
} | unknown;
|
|
1459
1477
|
opencodeMcpJson?: {
|
|
1460
1478
|
[key: string]: {
|
|
1461
1479
|
type: string;
|
|
@@ -1634,10 +1652,18 @@ export type PostApiStepDefinitionsResponses = {
|
|
|
1634
1652
|
description: string | unknown;
|
|
1635
1653
|
prompt: string | unknown;
|
|
1636
1654
|
version: number;
|
|
1637
|
-
kind: 'built_in' | 'user_defined';
|
|
1655
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
1656
|
+
entrypointJson: {
|
|
1657
|
+
sourceFile: string;
|
|
1658
|
+
exportName: string;
|
|
1659
|
+
} | unknown;
|
|
1638
1660
|
executionMode: 'workspace' | 'no_workspace';
|
|
1639
|
-
inputSchemaJson:
|
|
1640
|
-
|
|
1661
|
+
inputSchemaJson: {
|
|
1662
|
+
[key: string]: unknown;
|
|
1663
|
+
} | unknown;
|
|
1664
|
+
resultSchemaJson: {
|
|
1665
|
+
[key: string]: unknown;
|
|
1666
|
+
} | unknown;
|
|
1641
1667
|
opencodeMcpJson: {
|
|
1642
1668
|
[key: string]: {
|
|
1643
1669
|
type: string;
|
|
@@ -1698,12 +1724,20 @@ export type PutApiStepDefinitionsData = {
|
|
|
1698
1724
|
key: string;
|
|
1699
1725
|
name: string;
|
|
1700
1726
|
description: string | unknown;
|
|
1701
|
-
prompt
|
|
1727
|
+
prompt?: string | unknown;
|
|
1702
1728
|
version: number;
|
|
1703
|
-
kind: 'built_in' | 'user_defined';
|
|
1729
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
1730
|
+
entrypointJson?: {
|
|
1731
|
+
sourceFile: string;
|
|
1732
|
+
exportName: string;
|
|
1733
|
+
} | unknown;
|
|
1704
1734
|
executionMode?: 'workspace' | 'no_workspace';
|
|
1705
|
-
inputSchemaJson:
|
|
1706
|
-
|
|
1735
|
+
inputSchemaJson: {
|
|
1736
|
+
[key: string]: unknown;
|
|
1737
|
+
} | unknown;
|
|
1738
|
+
resultSchemaJson: {
|
|
1739
|
+
[key: string]: unknown;
|
|
1740
|
+
} | unknown;
|
|
1707
1741
|
opencodeMcpJson?: {
|
|
1708
1742
|
[key: string]: {
|
|
1709
1743
|
type: string;
|
|
@@ -1850,10 +1884,18 @@ export type PutApiStepDefinitionsResponses = {
|
|
|
1850
1884
|
description: string | unknown;
|
|
1851
1885
|
prompt: string | unknown;
|
|
1852
1886
|
version: number;
|
|
1853
|
-
kind: 'built_in' | 'user_defined';
|
|
1887
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
1888
|
+
entrypointJson: {
|
|
1889
|
+
sourceFile: string;
|
|
1890
|
+
exportName: string;
|
|
1891
|
+
} | unknown;
|
|
1854
1892
|
executionMode: 'workspace' | 'no_workspace';
|
|
1855
|
-
inputSchemaJson:
|
|
1856
|
-
|
|
1893
|
+
inputSchemaJson: {
|
|
1894
|
+
[key: string]: unknown;
|
|
1895
|
+
} | unknown;
|
|
1896
|
+
resultSchemaJson: {
|
|
1897
|
+
[key: string]: unknown;
|
|
1898
|
+
} | unknown;
|
|
1857
1899
|
opencodeMcpJson: {
|
|
1858
1900
|
[key: string]: {
|
|
1859
1901
|
type: string;
|
|
@@ -2011,10 +2053,18 @@ export type GetApiStepDefinitionsByStepDefinitionIdResponses = {
|
|
|
2011
2053
|
description: string | unknown;
|
|
2012
2054
|
prompt: string | unknown;
|
|
2013
2055
|
version: number;
|
|
2014
|
-
kind: 'built_in' | 'user_defined';
|
|
2056
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
2057
|
+
entrypointJson: {
|
|
2058
|
+
sourceFile: string;
|
|
2059
|
+
exportName: string;
|
|
2060
|
+
} | unknown;
|
|
2015
2061
|
executionMode: 'workspace' | 'no_workspace';
|
|
2016
|
-
inputSchemaJson:
|
|
2017
|
-
|
|
2062
|
+
inputSchemaJson: {
|
|
2063
|
+
[key: string]: unknown;
|
|
2064
|
+
} | unknown;
|
|
2065
|
+
resultSchemaJson: {
|
|
2066
|
+
[key: string]: unknown;
|
|
2067
|
+
} | unknown;
|
|
2018
2068
|
opencodeMcpJson: {
|
|
2019
2069
|
[key: string]: {
|
|
2020
2070
|
type: string;
|
|
@@ -2172,10 +2222,18 @@ export type PutApiStepDefinitionsByStepDefinitionIdArchiveResponses = {
|
|
|
2172
2222
|
description: string | unknown;
|
|
2173
2223
|
prompt: string | unknown;
|
|
2174
2224
|
version: number;
|
|
2175
|
-
kind: 'built_in' | 'user_defined';
|
|
2225
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
2226
|
+
entrypointJson: {
|
|
2227
|
+
sourceFile: string;
|
|
2228
|
+
exportName: string;
|
|
2229
|
+
} | unknown;
|
|
2176
2230
|
executionMode: 'workspace' | 'no_workspace';
|
|
2177
|
-
inputSchemaJson:
|
|
2178
|
-
|
|
2231
|
+
inputSchemaJson: {
|
|
2232
|
+
[key: string]: unknown;
|
|
2233
|
+
} | unknown;
|
|
2234
|
+
resultSchemaJson: {
|
|
2235
|
+
[key: string]: unknown;
|
|
2236
|
+
} | unknown;
|
|
2179
2237
|
opencodeMcpJson: {
|
|
2180
2238
|
[key: string]: {
|
|
2181
2239
|
type: string;
|
|
@@ -2335,7 +2393,7 @@ export type PostApiStepExecutionsClaimsResponses = {
|
|
|
2335
2393
|
projectId: string;
|
|
2336
2394
|
stepDefinitionId: string;
|
|
2337
2395
|
stepDefinitionVersion: number;
|
|
2338
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2396
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2339
2397
|
inputJson: unknown;
|
|
2340
2398
|
claimedBy: string | unknown;
|
|
2341
2399
|
claimedAt: string | unknown;
|
|
@@ -2455,7 +2513,7 @@ export type GetApiStepExecutionsResponses = {
|
|
|
2455
2513
|
projectId: string;
|
|
2456
2514
|
stepDefinitionId: string;
|
|
2457
2515
|
stepDefinitionVersion: number;
|
|
2458
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2516
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2459
2517
|
inputJson: unknown;
|
|
2460
2518
|
claimedBy: string | unknown;
|
|
2461
2519
|
claimedAt: string | unknown;
|
|
@@ -2494,7 +2552,7 @@ export type PostApiStepExecutionsData = {
|
|
|
2494
2552
|
projectId: string;
|
|
2495
2553
|
stepDefinitionId: string;
|
|
2496
2554
|
stepDefinitionVersion: number;
|
|
2497
|
-
status?: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2555
|
+
status?: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2498
2556
|
inputJson?: unknown;
|
|
2499
2557
|
executionTimeoutSeconds?: number | unknown;
|
|
2500
2558
|
};
|
|
@@ -2626,7 +2684,7 @@ export type PostApiStepExecutionsResponses = {
|
|
|
2626
2684
|
projectId: string;
|
|
2627
2685
|
stepDefinitionId: string;
|
|
2628
2686
|
stepDefinitionVersion: number;
|
|
2629
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2687
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2630
2688
|
inputJson: unknown;
|
|
2631
2689
|
claimedBy: string | unknown;
|
|
2632
2690
|
claimedAt: string | unknown;
|
|
@@ -2779,7 +2837,7 @@ export type PutApiStepExecutionsByStepExecutionIdHeartbeatResponses = {
|
|
|
2779
2837
|
projectId: string;
|
|
2780
2838
|
stepDefinitionId: string;
|
|
2781
2839
|
stepDefinitionVersion: number;
|
|
2782
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2840
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2783
2841
|
inputJson: unknown;
|
|
2784
2842
|
claimedBy: string | unknown;
|
|
2785
2843
|
claimedAt: string | unknown;
|
|
@@ -2953,7 +3011,7 @@ export type PostApiStepExecutionsByStepExecutionIdWorkerContextResponses = {
|
|
|
2953
3011
|
};
|
|
2954
3012
|
stepExecution: {
|
|
2955
3013
|
id: string;
|
|
2956
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3014
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
2957
3015
|
inputJson: unknown;
|
|
2958
3016
|
executionTimeoutSeconds: number | unknown;
|
|
2959
3017
|
};
|
|
@@ -2961,7 +3019,12 @@ export type PostApiStepExecutionsByStepExecutionIdWorkerContextResponses = {
|
|
|
2961
3019
|
id: string;
|
|
2962
3020
|
key: string;
|
|
2963
3021
|
name: string;
|
|
2964
|
-
prompt: string;
|
|
3022
|
+
prompt: string | unknown;
|
|
3023
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
3024
|
+
entrypointJson: {
|
|
3025
|
+
sourceFile: string;
|
|
3026
|
+
exportName: string;
|
|
3027
|
+
} | unknown;
|
|
2965
3028
|
executionMode: 'workspace' | 'no_workspace';
|
|
2966
3029
|
resultSchemaJson: {
|
|
2967
3030
|
[key: string]: unknown;
|
|
@@ -3136,7 +3199,7 @@ export type PostApiStepExecutionsByStepExecutionIdCompletionsResponses = {
|
|
|
3136
3199
|
projectId: string;
|
|
3137
3200
|
stepDefinitionId: string;
|
|
3138
3201
|
stepDefinitionVersion: number;
|
|
3139
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3202
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3140
3203
|
inputJson: unknown;
|
|
3141
3204
|
claimedBy: string | unknown;
|
|
3142
3205
|
claimedAt: string | unknown;
|
|
@@ -3270,7 +3333,7 @@ export type PutApiStepExecutionsByStepExecutionIdRunningResponses = {
|
|
|
3270
3333
|
projectId: string;
|
|
3271
3334
|
stepDefinitionId: string;
|
|
3272
3335
|
stepDefinitionVersion: number;
|
|
3273
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3336
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3274
3337
|
inputJson: unknown;
|
|
3275
3338
|
claimedBy: string | unknown;
|
|
3276
3339
|
claimedAt: string | unknown;
|
|
@@ -3883,7 +3946,7 @@ export type GetApiStepExecutionsByStepExecutionIdResponses = {
|
|
|
3883
3946
|
projectId: string;
|
|
3884
3947
|
stepDefinitionId: string;
|
|
3885
3948
|
stepDefinitionVersion: number;
|
|
3886
|
-
status: 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3949
|
+
status: 'pending' | 'queued' | 'running' | 'succeeded' | 'failed' | 'timeout' | 'abandoned' | 'cancelled' | 'skipped';
|
|
3887
3950
|
inputJson: unknown;
|
|
3888
3951
|
claimedBy: string | unknown;
|
|
3889
3952
|
claimedAt: string | unknown;
|
|
@@ -4556,8 +4619,10 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4556
4619
|
name: string;
|
|
4557
4620
|
description: string | unknown;
|
|
4558
4621
|
status: 'draft' | 'active' | 'archived';
|
|
4559
|
-
inputSchemaJson?:
|
|
4560
|
-
|
|
4622
|
+
inputSchemaJson?: {
|
|
4623
|
+
[key: string]: unknown;
|
|
4624
|
+
} | unknown;
|
|
4625
|
+
stepDefinitions?: Array<{
|
|
4561
4626
|
stepDefinitionId: string;
|
|
4562
4627
|
stepDefinitionVersion: number;
|
|
4563
4628
|
key: string;
|
|
@@ -4585,7 +4650,9 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4585
4650
|
};
|
|
4586
4651
|
} | unknown;
|
|
4587
4652
|
timeoutSeconds: number | unknown;
|
|
4588
|
-
retryPolicyJson:
|
|
4653
|
+
retryPolicyJson: {
|
|
4654
|
+
[key: string]: unknown;
|
|
4655
|
+
} | unknown;
|
|
4589
4656
|
advancementPolicyDefinition: {
|
|
4590
4657
|
rulesJson: {
|
|
4591
4658
|
rules: Array<{
|
|
@@ -4632,17 +4699,121 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4632
4699
|
}>;
|
|
4633
4700
|
};
|
|
4634
4701
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4635
|
-
defaultEventParamsJson:
|
|
4702
|
+
defaultEventParamsJson: {
|
|
4703
|
+
[key: string]: unknown;
|
|
4704
|
+
} | unknown;
|
|
4636
4705
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4637
4706
|
};
|
|
4638
4707
|
computedSignalDefinitions: Array<{
|
|
4639
4708
|
key: string;
|
|
4640
4709
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4641
4710
|
inputSignalKeys: Array<string>;
|
|
4642
|
-
configJson:
|
|
4711
|
+
configJson: {
|
|
4712
|
+
[key: string]: unknown;
|
|
4713
|
+
} | unknown;
|
|
4714
|
+
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4715
|
+
}>;
|
|
4716
|
+
}>;
|
|
4717
|
+
nodeDefinitions?: Array<{
|
|
4718
|
+
key: string;
|
|
4719
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
4720
|
+
name: string;
|
|
4721
|
+
stepDefinitionId?: string | unknown;
|
|
4722
|
+
stepDefinitionVersion?: number | unknown;
|
|
4723
|
+
description?: string | unknown;
|
|
4724
|
+
inputBindingsJson?: {
|
|
4725
|
+
[key: string]: {
|
|
4726
|
+
source: string;
|
|
4727
|
+
path: string | unknown;
|
|
4728
|
+
} | {
|
|
4729
|
+
source: string;
|
|
4730
|
+
field: string;
|
|
4731
|
+
} | {
|
|
4732
|
+
source: string;
|
|
4733
|
+
stepKey: string;
|
|
4734
|
+
path: string | unknown;
|
|
4735
|
+
} | {
|
|
4736
|
+
source: string;
|
|
4737
|
+
stepKey: string;
|
|
4738
|
+
signalKey: string;
|
|
4739
|
+
} | {
|
|
4740
|
+
source: string;
|
|
4741
|
+
value: unknown;
|
|
4742
|
+
};
|
|
4743
|
+
} | unknown;
|
|
4744
|
+
timeoutSeconds?: number | unknown;
|
|
4745
|
+
retryPolicyJson?: {
|
|
4746
|
+
[key: string]: unknown;
|
|
4747
|
+
} | unknown;
|
|
4748
|
+
advancementPolicyRulesJson?: {
|
|
4749
|
+
rules: Array<{
|
|
4750
|
+
conditions: {
|
|
4751
|
+
[key: string]: unknown;
|
|
4752
|
+
};
|
|
4753
|
+
event: {
|
|
4754
|
+
type: string;
|
|
4755
|
+
params?: {
|
|
4756
|
+
[key: string]: unknown;
|
|
4757
|
+
};
|
|
4758
|
+
};
|
|
4759
|
+
name?: string;
|
|
4760
|
+
priority?: number;
|
|
4761
|
+
[key: string]: unknown | {
|
|
4762
|
+
[key: string]: unknown;
|
|
4763
|
+
} | {
|
|
4764
|
+
type: string;
|
|
4765
|
+
params?: {
|
|
4766
|
+
[key: string]: unknown;
|
|
4767
|
+
};
|
|
4768
|
+
} | string | number | undefined;
|
|
4769
|
+
}>;
|
|
4770
|
+
[key: string]: unknown | Array<{
|
|
4771
|
+
conditions: {
|
|
4772
|
+
[key: string]: unknown;
|
|
4773
|
+
};
|
|
4774
|
+
event: {
|
|
4775
|
+
type: string;
|
|
4776
|
+
params?: {
|
|
4777
|
+
[key: string]: unknown;
|
|
4778
|
+
};
|
|
4779
|
+
};
|
|
4780
|
+
name?: string;
|
|
4781
|
+
priority?: number;
|
|
4782
|
+
[key: string]: unknown | {
|
|
4783
|
+
[key: string]: unknown;
|
|
4784
|
+
} | {
|
|
4785
|
+
type: string;
|
|
4786
|
+
params?: {
|
|
4787
|
+
[key: string]: unknown;
|
|
4788
|
+
};
|
|
4789
|
+
} | string | number | undefined;
|
|
4790
|
+
}>;
|
|
4791
|
+
} | unknown;
|
|
4792
|
+
advancementPolicyDefaultEventType?: 'continue' | 'block' | 'complete' | 'route' | unknown;
|
|
4793
|
+
advancementPolicyDefaultEventParamsJson?: {
|
|
4794
|
+
[key: string]: unknown;
|
|
4795
|
+
} | unknown;
|
|
4796
|
+
advancementPolicyAllowedEventTypes?: Array<'continue' | 'block' | 'complete' | 'route'> | unknown;
|
|
4797
|
+
configJson?: {
|
|
4798
|
+
[key: string]: unknown;
|
|
4799
|
+
} | unknown;
|
|
4800
|
+
computedSignalDefinitions: Array<{
|
|
4801
|
+
key: string;
|
|
4802
|
+
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4803
|
+
inputSignalKeys: Array<string>;
|
|
4804
|
+
configJson: {
|
|
4805
|
+
[key: string]: unknown;
|
|
4806
|
+
} | unknown;
|
|
4643
4807
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4644
4808
|
}>;
|
|
4645
4809
|
}>;
|
|
4810
|
+
dependencyEdges?: Array<{
|
|
4811
|
+
fromNodeKey: string;
|
|
4812
|
+
toNodeKey: string;
|
|
4813
|
+
discriminantJson?: {
|
|
4814
|
+
[key: string]: unknown;
|
|
4815
|
+
} | unknown;
|
|
4816
|
+
}>;
|
|
4646
4817
|
};
|
|
4647
4818
|
path?: never;
|
|
4648
4819
|
query?: never;
|
|
@@ -4775,10 +4946,13 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4775
4946
|
description: string | unknown;
|
|
4776
4947
|
status: 'draft' | 'active' | 'archived';
|
|
4777
4948
|
archivedAt: string | unknown;
|
|
4778
|
-
inputSchemaJson:
|
|
4949
|
+
inputSchemaJson: {
|
|
4950
|
+
[key: string]: unknown;
|
|
4951
|
+
} | unknown;
|
|
4779
4952
|
stepDefinitions: Array<{
|
|
4780
4953
|
id: string;
|
|
4781
4954
|
pipelineDefinitionId: string;
|
|
4955
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
4782
4956
|
stepDefinitionId: string;
|
|
4783
4957
|
stepDefinitionVersion: number;
|
|
4784
4958
|
key: string;
|
|
@@ -4806,7 +4980,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4806
4980
|
};
|
|
4807
4981
|
} | unknown;
|
|
4808
4982
|
timeoutSeconds: number | unknown;
|
|
4809
|
-
retryPolicyJson:
|
|
4983
|
+
retryPolicyJson: {
|
|
4984
|
+
[key: string]: unknown;
|
|
4985
|
+
} | unknown;
|
|
4810
4986
|
advancementPolicyDefinition: {
|
|
4811
4987
|
id: string;
|
|
4812
4988
|
pipelineStepDefinitionId: string;
|
|
@@ -4855,7 +5031,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4855
5031
|
}>;
|
|
4856
5032
|
};
|
|
4857
5033
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4858
|
-
defaultEventParamsJson:
|
|
5034
|
+
defaultEventParamsJson: {
|
|
5035
|
+
[key: string]: unknown;
|
|
5036
|
+
} | unknown;
|
|
4859
5037
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4860
5038
|
createdAt: string;
|
|
4861
5039
|
updatedAt: string;
|
|
@@ -4865,7 +5043,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4865
5043
|
key: string;
|
|
4866
5044
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4867
5045
|
inputSignalKeys: Array<string>;
|
|
4868
|
-
configJson:
|
|
5046
|
+
configJson: {
|
|
5047
|
+
[key: string]: unknown;
|
|
5048
|
+
} | unknown;
|
|
4869
5049
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4870
5050
|
createdAt: string;
|
|
4871
5051
|
updatedAt: string;
|
|
@@ -4885,8 +5065,10 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4885
5065
|
name: string;
|
|
4886
5066
|
description: string | unknown;
|
|
4887
5067
|
status: 'draft' | 'active' | 'archived';
|
|
4888
|
-
inputSchemaJson?:
|
|
4889
|
-
|
|
5068
|
+
inputSchemaJson?: {
|
|
5069
|
+
[key: string]: unknown;
|
|
5070
|
+
} | unknown;
|
|
5071
|
+
stepDefinitions?: Array<{
|
|
4890
5072
|
stepDefinitionId: string;
|
|
4891
5073
|
stepDefinitionVersion: number;
|
|
4892
5074
|
key: string;
|
|
@@ -4914,7 +5096,9 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4914
5096
|
};
|
|
4915
5097
|
} | unknown;
|
|
4916
5098
|
timeoutSeconds: number | unknown;
|
|
4917
|
-
retryPolicyJson:
|
|
5099
|
+
retryPolicyJson: {
|
|
5100
|
+
[key: string]: unknown;
|
|
5101
|
+
} | unknown;
|
|
4918
5102
|
advancementPolicyDefinition: {
|
|
4919
5103
|
rulesJson: {
|
|
4920
5104
|
rules: Array<{
|
|
@@ -4961,650 +5145,53 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4961
5145
|
}>;
|
|
4962
5146
|
};
|
|
4963
5147
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4964
|
-
defaultEventParamsJson:
|
|
5148
|
+
defaultEventParamsJson: {
|
|
5149
|
+
[key: string]: unknown;
|
|
5150
|
+
} | unknown;
|
|
4965
5151
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4966
5152
|
};
|
|
4967
5153
|
computedSignalDefinitions: Array<{
|
|
4968
5154
|
key: string;
|
|
4969
5155
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4970
5156
|
inputSignalKeys: Array<string>;
|
|
4971
|
-
configJson:
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
message: string;
|
|
5010
|
-
summary?: string;
|
|
5011
|
-
}>;
|
|
5012
|
-
};
|
|
5013
|
-
/**
|
|
5014
|
-
* Response for status 422
|
|
5015
|
-
*/
|
|
5016
|
-
422: {
|
|
5017
|
-
type: string;
|
|
5018
|
-
title: string;
|
|
5019
|
-
status: number;
|
|
5020
|
-
detail?: string;
|
|
5021
|
-
instance?: string;
|
|
5022
|
-
code?: string;
|
|
5023
|
-
errors?: Array<{
|
|
5024
|
-
path: string;
|
|
5025
|
-
message: string;
|
|
5026
|
-
summary?: string;
|
|
5027
|
-
}>;
|
|
5028
|
-
};
|
|
5029
|
-
/**
|
|
5030
|
-
* Response for status 500
|
|
5031
|
-
*/
|
|
5032
|
-
500: {
|
|
5033
|
-
type: string;
|
|
5034
|
-
title: string;
|
|
5035
|
-
status: number;
|
|
5036
|
-
detail?: string;
|
|
5037
|
-
instance?: string;
|
|
5038
|
-
code?: string;
|
|
5039
|
-
errors?: Array<{
|
|
5040
|
-
path: string;
|
|
5041
|
-
message: string;
|
|
5042
|
-
summary?: string;
|
|
5043
|
-
}>;
|
|
5044
|
-
};
|
|
5045
|
-
};
|
|
5046
|
-
export type PutApiPipelineDefinitionsError = PutApiPipelineDefinitionsErrors[keyof PutApiPipelineDefinitionsErrors];
|
|
5047
|
-
export type PutApiPipelineDefinitionsResponses = {
|
|
5048
|
-
/**
|
|
5049
|
-
* Response for status 200
|
|
5050
|
-
*/
|
|
5051
|
-
200: {
|
|
5052
|
-
id: string;
|
|
5053
|
-
projectId: string;
|
|
5054
|
-
key: string;
|
|
5055
|
-
name: string;
|
|
5056
|
-
description: string | unknown;
|
|
5057
|
-
status: 'draft' | 'active' | 'archived';
|
|
5058
|
-
archivedAt: string | unknown;
|
|
5059
|
-
inputSchemaJson: unknown;
|
|
5060
|
-
stepDefinitions: Array<{
|
|
5061
|
-
id: string;
|
|
5062
|
-
pipelineDefinitionId: string;
|
|
5063
|
-
stepDefinitionId: string;
|
|
5064
|
-
stepDefinitionVersion: number;
|
|
5065
|
-
key: string;
|
|
5066
|
-
name: string;
|
|
5067
|
-
description: string | unknown;
|
|
5068
|
-
position: number;
|
|
5069
|
-
inputBindingsJson: {
|
|
5070
|
-
[key: string]: {
|
|
5071
|
-
source: string;
|
|
5072
|
-
path: string | unknown;
|
|
5073
|
-
} | {
|
|
5074
|
-
source: string;
|
|
5075
|
-
field: string;
|
|
5076
|
-
} | {
|
|
5077
|
-
source: string;
|
|
5078
|
-
stepKey: string;
|
|
5079
|
-
path: string | unknown;
|
|
5080
|
-
} | {
|
|
5081
|
-
source: string;
|
|
5082
|
-
stepKey: string;
|
|
5083
|
-
signalKey: string;
|
|
5084
|
-
} | {
|
|
5085
|
-
source: string;
|
|
5086
|
-
value: unknown;
|
|
5087
|
-
};
|
|
5088
|
-
} | unknown;
|
|
5089
|
-
timeoutSeconds: number | unknown;
|
|
5090
|
-
retryPolicyJson: unknown;
|
|
5091
|
-
advancementPolicyDefinition: {
|
|
5092
|
-
id: string;
|
|
5093
|
-
pipelineStepDefinitionId: string;
|
|
5094
|
-
rulesJson: {
|
|
5095
|
-
rules: Array<{
|
|
5096
|
-
conditions: {
|
|
5097
|
-
[key: string]: unknown;
|
|
5098
|
-
};
|
|
5099
|
-
event: {
|
|
5100
|
-
type: string;
|
|
5101
|
-
params?: {
|
|
5102
|
-
[key: string]: unknown;
|
|
5103
|
-
};
|
|
5104
|
-
};
|
|
5105
|
-
name?: string;
|
|
5106
|
-
priority?: number;
|
|
5107
|
-
[key: string]: unknown | {
|
|
5108
|
-
[key: string]: unknown;
|
|
5109
|
-
} | {
|
|
5110
|
-
type: string;
|
|
5111
|
-
params?: {
|
|
5112
|
-
[key: string]: unknown;
|
|
5113
|
-
};
|
|
5114
|
-
} | string | number | undefined;
|
|
5115
|
-
}>;
|
|
5116
|
-
[key: string]: unknown | Array<{
|
|
5117
|
-
conditions: {
|
|
5118
|
-
[key: string]: unknown;
|
|
5119
|
-
};
|
|
5120
|
-
event: {
|
|
5121
|
-
type: string;
|
|
5122
|
-
params?: {
|
|
5123
|
-
[key: string]: unknown;
|
|
5124
|
-
};
|
|
5125
|
-
};
|
|
5126
|
-
name?: string;
|
|
5127
|
-
priority?: number;
|
|
5128
|
-
[key: string]: unknown | {
|
|
5129
|
-
[key: string]: unknown;
|
|
5130
|
-
} | {
|
|
5131
|
-
type: string;
|
|
5132
|
-
params?: {
|
|
5133
|
-
[key: string]: unknown;
|
|
5134
|
-
};
|
|
5135
|
-
} | string | number | undefined;
|
|
5136
|
-
}>;
|
|
5137
|
-
};
|
|
5138
|
-
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5139
|
-
defaultEventParamsJson: unknown;
|
|
5140
|
-
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5141
|
-
createdAt: string;
|
|
5142
|
-
updatedAt: string;
|
|
5143
|
-
};
|
|
5144
|
-
computedSignalDefinitions: Array<{
|
|
5145
|
-
id: string;
|
|
5146
|
-
key: string;
|
|
5147
|
-
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5148
|
-
inputSignalKeys: Array<string>;
|
|
5149
|
-
configJson: unknown;
|
|
5150
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5151
|
-
createdAt: string;
|
|
5152
|
-
updatedAt: string;
|
|
5153
|
-
}>;
|
|
5154
|
-
createdAt: string;
|
|
5155
|
-
updatedAt: string;
|
|
5156
|
-
}>;
|
|
5157
|
-
createdAt: string;
|
|
5158
|
-
updatedAt: string;
|
|
5159
|
-
};
|
|
5160
|
-
};
|
|
5161
|
-
export type PutApiPipelineDefinitionsResponse = PutApiPipelineDefinitionsResponses[keyof PutApiPipelineDefinitionsResponses];
|
|
5162
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveData = {
|
|
5163
|
-
body?: never;
|
|
5164
|
-
path: {
|
|
5165
|
-
pipelineDefinitionId: string;
|
|
5166
|
-
};
|
|
5167
|
-
query?: never;
|
|
5168
|
-
url: '/api/pipeline-definitions/{pipelineDefinitionId}/archive';
|
|
5169
|
-
};
|
|
5170
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors = {
|
|
5171
|
-
/**
|
|
5172
|
-
* Response for status 401
|
|
5173
|
-
*/
|
|
5174
|
-
401: {
|
|
5175
|
-
type: string;
|
|
5176
|
-
title: string;
|
|
5177
|
-
status: number;
|
|
5178
|
-
detail?: string;
|
|
5179
|
-
instance?: string;
|
|
5180
|
-
code?: string;
|
|
5181
|
-
errors?: Array<{
|
|
5182
|
-
path: string;
|
|
5183
|
-
message: string;
|
|
5184
|
-
summary?: string;
|
|
5185
|
-
}>;
|
|
5186
|
-
};
|
|
5187
|
-
/**
|
|
5188
|
-
* Response for status 403
|
|
5189
|
-
*/
|
|
5190
|
-
403: {
|
|
5191
|
-
type: string;
|
|
5192
|
-
title: string;
|
|
5193
|
-
status: number;
|
|
5194
|
-
detail?: string;
|
|
5195
|
-
instance?: string;
|
|
5196
|
-
code?: string;
|
|
5197
|
-
errors?: Array<{
|
|
5198
|
-
path: string;
|
|
5199
|
-
message: string;
|
|
5200
|
-
summary?: string;
|
|
5201
|
-
}>;
|
|
5202
|
-
};
|
|
5203
|
-
/**
|
|
5204
|
-
* Response for status 404
|
|
5205
|
-
*/
|
|
5206
|
-
404: {
|
|
5207
|
-
type: string;
|
|
5208
|
-
title: string;
|
|
5209
|
-
status: number;
|
|
5210
|
-
detail?: string;
|
|
5211
|
-
instance?: string;
|
|
5212
|
-
code?: string;
|
|
5213
|
-
errors?: Array<{
|
|
5214
|
-
path: string;
|
|
5215
|
-
message: string;
|
|
5216
|
-
summary?: string;
|
|
5217
|
-
}>;
|
|
5218
|
-
};
|
|
5219
|
-
/**
|
|
5220
|
-
* Response for status 422
|
|
5221
|
-
*/
|
|
5222
|
-
422: {
|
|
5223
|
-
type: string;
|
|
5224
|
-
title: string;
|
|
5225
|
-
status: number;
|
|
5226
|
-
detail?: string;
|
|
5227
|
-
instance?: string;
|
|
5228
|
-
code?: string;
|
|
5229
|
-
errors?: Array<{
|
|
5230
|
-
path: string;
|
|
5231
|
-
message: string;
|
|
5232
|
-
summary?: string;
|
|
5233
|
-
}>;
|
|
5234
|
-
};
|
|
5235
|
-
/**
|
|
5236
|
-
* Response for status 500
|
|
5237
|
-
*/
|
|
5238
|
-
500: {
|
|
5239
|
-
type: string;
|
|
5240
|
-
title: string;
|
|
5241
|
-
status: number;
|
|
5242
|
-
detail?: string;
|
|
5243
|
-
instance?: string;
|
|
5244
|
-
code?: string;
|
|
5245
|
-
errors?: Array<{
|
|
5246
|
-
path: string;
|
|
5247
|
-
message: string;
|
|
5248
|
-
summary?: string;
|
|
5249
|
-
}>;
|
|
5250
|
-
};
|
|
5251
|
-
};
|
|
5252
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveError = PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors];
|
|
5253
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
5254
|
-
/**
|
|
5255
|
-
* Response for status 200
|
|
5256
|
-
*/
|
|
5257
|
-
200: {
|
|
5258
|
-
id: string;
|
|
5259
|
-
projectId: string;
|
|
5260
|
-
key: string;
|
|
5261
|
-
name: string;
|
|
5262
|
-
description: string | unknown;
|
|
5263
|
-
status: 'draft' | 'active' | 'archived';
|
|
5264
|
-
archivedAt: string | unknown;
|
|
5265
|
-
inputSchemaJson: unknown;
|
|
5266
|
-
stepDefinitions: Array<{
|
|
5267
|
-
id: string;
|
|
5268
|
-
pipelineDefinitionId: string;
|
|
5269
|
-
stepDefinitionId: string;
|
|
5270
|
-
stepDefinitionVersion: number;
|
|
5271
|
-
key: string;
|
|
5272
|
-
name: string;
|
|
5273
|
-
description: string | unknown;
|
|
5274
|
-
position: number;
|
|
5275
|
-
inputBindingsJson: {
|
|
5276
|
-
[key: string]: {
|
|
5277
|
-
source: string;
|
|
5278
|
-
path: string | unknown;
|
|
5279
|
-
} | {
|
|
5280
|
-
source: string;
|
|
5281
|
-
field: string;
|
|
5282
|
-
} | {
|
|
5283
|
-
source: string;
|
|
5284
|
-
stepKey: string;
|
|
5285
|
-
path: string | unknown;
|
|
5286
|
-
} | {
|
|
5287
|
-
source: string;
|
|
5288
|
-
stepKey: string;
|
|
5289
|
-
signalKey: string;
|
|
5290
|
-
} | {
|
|
5291
|
-
source: string;
|
|
5292
|
-
value: unknown;
|
|
5293
|
-
};
|
|
5294
|
-
} | unknown;
|
|
5295
|
-
timeoutSeconds: number | unknown;
|
|
5296
|
-
retryPolicyJson: unknown;
|
|
5297
|
-
advancementPolicyDefinition: {
|
|
5298
|
-
id: string;
|
|
5299
|
-
pipelineStepDefinitionId: string;
|
|
5300
|
-
rulesJson: {
|
|
5301
|
-
rules: Array<{
|
|
5302
|
-
conditions: {
|
|
5303
|
-
[key: string]: unknown;
|
|
5304
|
-
};
|
|
5305
|
-
event: {
|
|
5306
|
-
type: string;
|
|
5307
|
-
params?: {
|
|
5308
|
-
[key: string]: unknown;
|
|
5309
|
-
};
|
|
5310
|
-
};
|
|
5311
|
-
name?: string;
|
|
5312
|
-
priority?: number;
|
|
5313
|
-
[key: string]: unknown | {
|
|
5314
|
-
[key: string]: unknown;
|
|
5315
|
-
} | {
|
|
5316
|
-
type: string;
|
|
5317
|
-
params?: {
|
|
5318
|
-
[key: string]: unknown;
|
|
5319
|
-
};
|
|
5320
|
-
} | string | number | undefined;
|
|
5321
|
-
}>;
|
|
5322
|
-
[key: string]: unknown | Array<{
|
|
5323
|
-
conditions: {
|
|
5324
|
-
[key: string]: unknown;
|
|
5325
|
-
};
|
|
5326
|
-
event: {
|
|
5327
|
-
type: string;
|
|
5328
|
-
params?: {
|
|
5329
|
-
[key: string]: unknown;
|
|
5330
|
-
};
|
|
5331
|
-
};
|
|
5332
|
-
name?: string;
|
|
5333
|
-
priority?: number;
|
|
5334
|
-
[key: string]: unknown | {
|
|
5335
|
-
[key: string]: unknown;
|
|
5336
|
-
} | {
|
|
5337
|
-
type: string;
|
|
5338
|
-
params?: {
|
|
5339
|
-
[key: string]: unknown;
|
|
5340
|
-
};
|
|
5341
|
-
} | string | number | undefined;
|
|
5342
|
-
}>;
|
|
5343
|
-
};
|
|
5344
|
-
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5345
|
-
defaultEventParamsJson: unknown;
|
|
5346
|
-
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5347
|
-
createdAt: string;
|
|
5348
|
-
updatedAt: string;
|
|
5349
|
-
};
|
|
5350
|
-
computedSignalDefinitions: Array<{
|
|
5351
|
-
id: string;
|
|
5352
|
-
key: string;
|
|
5353
|
-
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5354
|
-
inputSignalKeys: Array<string>;
|
|
5355
|
-
configJson: unknown;
|
|
5356
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5357
|
-
createdAt: string;
|
|
5358
|
-
updatedAt: string;
|
|
5359
|
-
}>;
|
|
5360
|
-
createdAt: string;
|
|
5361
|
-
updatedAt: string;
|
|
5362
|
-
}>;
|
|
5363
|
-
createdAt: string;
|
|
5364
|
-
updatedAt: string;
|
|
5365
|
-
};
|
|
5366
|
-
};
|
|
5367
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponse = PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses];
|
|
5368
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveData = {
|
|
5369
|
-
body?: never;
|
|
5370
|
-
path: {
|
|
5371
|
-
pipelineDefinitionId: string;
|
|
5372
|
-
};
|
|
5373
|
-
query?: never;
|
|
5374
|
-
url: '/api/pipeline-definitions/{pipelineDefinitionId}/unarchive';
|
|
5375
|
-
};
|
|
5376
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors = {
|
|
5377
|
-
/**
|
|
5378
|
-
* Response for status 401
|
|
5379
|
-
*/
|
|
5380
|
-
401: {
|
|
5381
|
-
type: string;
|
|
5382
|
-
title: string;
|
|
5383
|
-
status: number;
|
|
5384
|
-
detail?: string;
|
|
5385
|
-
instance?: string;
|
|
5386
|
-
code?: string;
|
|
5387
|
-
errors?: Array<{
|
|
5388
|
-
path: string;
|
|
5389
|
-
message: string;
|
|
5390
|
-
summary?: string;
|
|
5391
|
-
}>;
|
|
5392
|
-
};
|
|
5393
|
-
/**
|
|
5394
|
-
* Response for status 403
|
|
5395
|
-
*/
|
|
5396
|
-
403: {
|
|
5397
|
-
type: string;
|
|
5398
|
-
title: string;
|
|
5399
|
-
status: number;
|
|
5400
|
-
detail?: string;
|
|
5401
|
-
instance?: string;
|
|
5402
|
-
code?: string;
|
|
5403
|
-
errors?: Array<{
|
|
5404
|
-
path: string;
|
|
5405
|
-
message: string;
|
|
5406
|
-
summary?: string;
|
|
5407
|
-
}>;
|
|
5408
|
-
};
|
|
5409
|
-
/**
|
|
5410
|
-
* Response for status 404
|
|
5411
|
-
*/
|
|
5412
|
-
404: {
|
|
5413
|
-
type: string;
|
|
5414
|
-
title: string;
|
|
5415
|
-
status: number;
|
|
5416
|
-
detail?: string;
|
|
5417
|
-
instance?: string;
|
|
5418
|
-
code?: string;
|
|
5419
|
-
errors?: Array<{
|
|
5420
|
-
path: string;
|
|
5421
|
-
message: string;
|
|
5422
|
-
summary?: string;
|
|
5423
|
-
}>;
|
|
5424
|
-
};
|
|
5425
|
-
/**
|
|
5426
|
-
* Response for status 422
|
|
5427
|
-
*/
|
|
5428
|
-
422: {
|
|
5429
|
-
type: string;
|
|
5430
|
-
title: string;
|
|
5431
|
-
status: number;
|
|
5432
|
-
detail?: string;
|
|
5433
|
-
instance?: string;
|
|
5434
|
-
code?: string;
|
|
5435
|
-
errors?: Array<{
|
|
5436
|
-
path: string;
|
|
5437
|
-
message: string;
|
|
5438
|
-
summary?: string;
|
|
5439
|
-
}>;
|
|
5440
|
-
};
|
|
5441
|
-
/**
|
|
5442
|
-
* Response for status 500
|
|
5443
|
-
*/
|
|
5444
|
-
500: {
|
|
5445
|
-
type: string;
|
|
5446
|
-
title: string;
|
|
5447
|
-
status: number;
|
|
5448
|
-
detail?: string;
|
|
5449
|
-
instance?: string;
|
|
5450
|
-
code?: string;
|
|
5451
|
-
errors?: Array<{
|
|
5452
|
-
path: string;
|
|
5453
|
-
message: string;
|
|
5454
|
-
summary?: string;
|
|
5455
|
-
}>;
|
|
5456
|
-
};
|
|
5457
|
-
};
|
|
5458
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveError = PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors];
|
|
5459
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses = {
|
|
5460
|
-
/**
|
|
5461
|
-
* Response for status 200
|
|
5462
|
-
*/
|
|
5463
|
-
200: {
|
|
5464
|
-
id: string;
|
|
5465
|
-
projectId: string;
|
|
5466
|
-
key: string;
|
|
5467
|
-
name: string;
|
|
5468
|
-
description: string | unknown;
|
|
5469
|
-
status: 'draft' | 'active' | 'archived';
|
|
5470
|
-
archivedAt: string | unknown;
|
|
5471
|
-
inputSchemaJson: unknown;
|
|
5472
|
-
stepDefinitions: Array<{
|
|
5473
|
-
id: string;
|
|
5474
|
-
pipelineDefinitionId: string;
|
|
5475
|
-
stepDefinitionId: string;
|
|
5476
|
-
stepDefinitionVersion: number;
|
|
5477
|
-
key: string;
|
|
5478
|
-
name: string;
|
|
5479
|
-
description: string | unknown;
|
|
5480
|
-
position: number;
|
|
5481
|
-
inputBindingsJson: {
|
|
5482
|
-
[key: string]: {
|
|
5483
|
-
source: string;
|
|
5484
|
-
path: string | unknown;
|
|
5485
|
-
} | {
|
|
5486
|
-
source: string;
|
|
5487
|
-
field: string;
|
|
5488
|
-
} | {
|
|
5489
|
-
source: string;
|
|
5490
|
-
stepKey: string;
|
|
5491
|
-
path: string | unknown;
|
|
5492
|
-
} | {
|
|
5493
|
-
source: string;
|
|
5494
|
-
stepKey: string;
|
|
5495
|
-
signalKey: string;
|
|
5496
|
-
} | {
|
|
5497
|
-
source: string;
|
|
5498
|
-
value: unknown;
|
|
5499
|
-
};
|
|
5500
|
-
} | unknown;
|
|
5501
|
-
timeoutSeconds: number | unknown;
|
|
5502
|
-
retryPolicyJson: unknown;
|
|
5503
|
-
advancementPolicyDefinition: {
|
|
5504
|
-
id: string;
|
|
5505
|
-
pipelineStepDefinitionId: string;
|
|
5506
|
-
rulesJson: {
|
|
5507
|
-
rules: Array<{
|
|
5508
|
-
conditions: {
|
|
5509
|
-
[key: string]: unknown;
|
|
5510
|
-
};
|
|
5511
|
-
event: {
|
|
5512
|
-
type: string;
|
|
5513
|
-
params?: {
|
|
5514
|
-
[key: string]: unknown;
|
|
5515
|
-
};
|
|
5516
|
-
};
|
|
5517
|
-
name?: string;
|
|
5518
|
-
priority?: number;
|
|
5519
|
-
[key: string]: unknown | {
|
|
5520
|
-
[key: string]: unknown;
|
|
5521
|
-
} | {
|
|
5522
|
-
type: string;
|
|
5523
|
-
params?: {
|
|
5524
|
-
[key: string]: unknown;
|
|
5525
|
-
};
|
|
5526
|
-
} | string | number | undefined;
|
|
5527
|
-
}>;
|
|
5528
|
-
[key: string]: unknown | Array<{
|
|
5529
|
-
conditions: {
|
|
5530
|
-
[key: string]: unknown;
|
|
5531
|
-
};
|
|
5532
|
-
event: {
|
|
5533
|
-
type: string;
|
|
5534
|
-
params?: {
|
|
5535
|
-
[key: string]: unknown;
|
|
5536
|
-
};
|
|
5537
|
-
};
|
|
5538
|
-
name?: string;
|
|
5539
|
-
priority?: number;
|
|
5540
|
-
[key: string]: unknown | {
|
|
5541
|
-
[key: string]: unknown;
|
|
5542
|
-
} | {
|
|
5543
|
-
type: string;
|
|
5544
|
-
params?: {
|
|
5545
|
-
[key: string]: unknown;
|
|
5546
|
-
};
|
|
5547
|
-
} | string | number | undefined;
|
|
5548
|
-
}>;
|
|
5549
|
-
};
|
|
5550
|
-
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5551
|
-
defaultEventParamsJson: unknown;
|
|
5552
|
-
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5553
|
-
createdAt: string;
|
|
5554
|
-
updatedAt: string;
|
|
5555
|
-
};
|
|
5556
|
-
computedSignalDefinitions: Array<{
|
|
5557
|
-
id: string;
|
|
5558
|
-
key: string;
|
|
5559
|
-
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5560
|
-
inputSignalKeys: Array<string>;
|
|
5561
|
-
configJson: unknown;
|
|
5562
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5563
|
-
createdAt: string;
|
|
5564
|
-
updatedAt: string;
|
|
5565
|
-
}>;
|
|
5566
|
-
createdAt: string;
|
|
5567
|
-
updatedAt: string;
|
|
5568
|
-
}>;
|
|
5569
|
-
createdAt: string;
|
|
5570
|
-
updatedAt: string;
|
|
5571
|
-
};
|
|
5572
|
-
};
|
|
5573
|
-
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponse = PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses];
|
|
5574
|
-
export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsData = {
|
|
5575
|
-
body: {
|
|
5576
|
-
stepDefinitionId: string;
|
|
5577
|
-
stepDefinitionVersion: number;
|
|
5578
|
-
key: string;
|
|
5579
|
-
name: string;
|
|
5580
|
-
description: string | unknown;
|
|
5581
|
-
position: number;
|
|
5582
|
-
inputBindingsJson: {
|
|
5583
|
-
[key: string]: {
|
|
5584
|
-
source: string;
|
|
5585
|
-
path: string | unknown;
|
|
5586
|
-
} | {
|
|
5587
|
-
source: string;
|
|
5588
|
-
field: string;
|
|
5589
|
-
} | {
|
|
5590
|
-
source: string;
|
|
5591
|
-
stepKey: string;
|
|
5592
|
-
path: string | unknown;
|
|
5593
|
-
} | {
|
|
5594
|
-
source: string;
|
|
5595
|
-
stepKey: string;
|
|
5596
|
-
signalKey: string;
|
|
5597
|
-
} | {
|
|
5598
|
-
source: string;
|
|
5599
|
-
value: unknown;
|
|
5600
|
-
};
|
|
5601
|
-
} | unknown;
|
|
5602
|
-
timeoutSeconds: number | unknown;
|
|
5603
|
-
retryPolicyJson: {
|
|
5604
|
-
[key: string]: unknown;
|
|
5605
|
-
} | unknown;
|
|
5606
|
-
advancementPolicyDefinition: {
|
|
5607
|
-
rulesJson: {
|
|
5157
|
+
configJson: {
|
|
5158
|
+
[key: string]: unknown;
|
|
5159
|
+
} | unknown;
|
|
5160
|
+
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5161
|
+
}>;
|
|
5162
|
+
}>;
|
|
5163
|
+
nodeDefinitions?: Array<{
|
|
5164
|
+
key: string;
|
|
5165
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
5166
|
+
name: string;
|
|
5167
|
+
stepDefinitionId?: string | unknown;
|
|
5168
|
+
stepDefinitionVersion?: number | unknown;
|
|
5169
|
+
description?: string | unknown;
|
|
5170
|
+
inputBindingsJson?: {
|
|
5171
|
+
[key: string]: {
|
|
5172
|
+
source: string;
|
|
5173
|
+
path: string | unknown;
|
|
5174
|
+
} | {
|
|
5175
|
+
source: string;
|
|
5176
|
+
field: string;
|
|
5177
|
+
} | {
|
|
5178
|
+
source: string;
|
|
5179
|
+
stepKey: string;
|
|
5180
|
+
path: string | unknown;
|
|
5181
|
+
} | {
|
|
5182
|
+
source: string;
|
|
5183
|
+
stepKey: string;
|
|
5184
|
+
signalKey: string;
|
|
5185
|
+
} | {
|
|
5186
|
+
source: string;
|
|
5187
|
+
value: unknown;
|
|
5188
|
+
};
|
|
5189
|
+
} | unknown;
|
|
5190
|
+
timeoutSeconds?: number | unknown;
|
|
5191
|
+
retryPolicyJson?: {
|
|
5192
|
+
[key: string]: unknown;
|
|
5193
|
+
} | unknown;
|
|
5194
|
+
advancementPolicyRulesJson?: {
|
|
5608
5195
|
rules: Array<{
|
|
5609
5196
|
conditions: {
|
|
5610
5197
|
[key: string]: unknown;
|
|
@@ -5647,30 +5234,38 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsData = {
|
|
|
5647
5234
|
};
|
|
5648
5235
|
} | string | number | undefined;
|
|
5649
5236
|
}>;
|
|
5650
|
-
};
|
|
5651
|
-
|
|
5652
|
-
|
|
5237
|
+
} | unknown;
|
|
5238
|
+
advancementPolicyDefaultEventType?: 'continue' | 'block' | 'complete' | 'route' | unknown;
|
|
5239
|
+
advancementPolicyDefaultEventParamsJson?: {
|
|
5653
5240
|
[key: string]: unknown;
|
|
5654
5241
|
} | unknown;
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5242
|
+
advancementPolicyAllowedEventTypes?: Array<'continue' | 'block' | 'complete' | 'route'> | unknown;
|
|
5243
|
+
configJson?: {
|
|
5244
|
+
[key: string]: unknown;
|
|
5245
|
+
} | unknown;
|
|
5246
|
+
computedSignalDefinitions: Array<{
|
|
5247
|
+
key: string;
|
|
5248
|
+
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5249
|
+
inputSignalKeys: Array<string>;
|
|
5250
|
+
configJson: {
|
|
5251
|
+
[key: string]: unknown;
|
|
5252
|
+
} | unknown;
|
|
5253
|
+
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5254
|
+
}>;
|
|
5255
|
+
}>;
|
|
5256
|
+
dependencyEdges?: Array<{
|
|
5257
|
+
fromNodeKey: string;
|
|
5258
|
+
toNodeKey: string;
|
|
5259
|
+
discriminantJson?: {
|
|
5662
5260
|
[key: string]: unknown;
|
|
5663
5261
|
} | unknown;
|
|
5664
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5665
5262
|
}>;
|
|
5666
5263
|
};
|
|
5667
|
-
path
|
|
5668
|
-
pipelineDefinitionId: string;
|
|
5669
|
-
};
|
|
5264
|
+
path?: never;
|
|
5670
5265
|
query?: never;
|
|
5671
|
-
url: '/api/pipeline-definitions
|
|
5266
|
+
url: '/api/pipeline-definitions';
|
|
5672
5267
|
};
|
|
5673
|
-
export type
|
|
5268
|
+
export type PutApiPipelineDefinitionsErrors = {
|
|
5674
5269
|
/**
|
|
5675
5270
|
* Response for status 401
|
|
5676
5271
|
*/
|
|
@@ -5703,22 +5298,6 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsErrors = {
|
|
|
5703
5298
|
summary?: string;
|
|
5704
5299
|
}>;
|
|
5705
5300
|
};
|
|
5706
|
-
/**
|
|
5707
|
-
* Response for status 404
|
|
5708
|
-
*/
|
|
5709
|
-
404: {
|
|
5710
|
-
type: string;
|
|
5711
|
-
title: string;
|
|
5712
|
-
status: number;
|
|
5713
|
-
detail?: string;
|
|
5714
|
-
instance?: string;
|
|
5715
|
-
code?: string;
|
|
5716
|
-
errors?: Array<{
|
|
5717
|
-
path: string;
|
|
5718
|
-
message: string;
|
|
5719
|
-
summary?: string;
|
|
5720
|
-
}>;
|
|
5721
|
-
};
|
|
5722
5301
|
/**
|
|
5723
5302
|
* Response for status 422
|
|
5724
5303
|
*/
|
|
@@ -5752,8 +5331,8 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsErrors = {
|
|
|
5752
5331
|
}>;
|
|
5753
5332
|
};
|
|
5754
5333
|
};
|
|
5755
|
-
export type
|
|
5756
|
-
export type
|
|
5334
|
+
export type PutApiPipelineDefinitionsError = PutApiPipelineDefinitionsErrors[keyof PutApiPipelineDefinitionsErrors];
|
|
5335
|
+
export type PutApiPipelineDefinitionsResponses = {
|
|
5757
5336
|
/**
|
|
5758
5337
|
* Response for status 200
|
|
5759
5338
|
*/
|
|
@@ -5765,10 +5344,13 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5765
5344
|
description: string | unknown;
|
|
5766
5345
|
status: 'draft' | 'active' | 'archived';
|
|
5767
5346
|
archivedAt: string | unknown;
|
|
5768
|
-
inputSchemaJson:
|
|
5347
|
+
inputSchemaJson: {
|
|
5348
|
+
[key: string]: unknown;
|
|
5349
|
+
} | unknown;
|
|
5769
5350
|
stepDefinitions: Array<{
|
|
5770
5351
|
id: string;
|
|
5771
5352
|
pipelineDefinitionId: string;
|
|
5353
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
5772
5354
|
stepDefinitionId: string;
|
|
5773
5355
|
stepDefinitionVersion: number;
|
|
5774
5356
|
key: string;
|
|
@@ -5796,7 +5378,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5796
5378
|
};
|
|
5797
5379
|
} | unknown;
|
|
5798
5380
|
timeoutSeconds: number | unknown;
|
|
5799
|
-
retryPolicyJson:
|
|
5381
|
+
retryPolicyJson: {
|
|
5382
|
+
[key: string]: unknown;
|
|
5383
|
+
} | unknown;
|
|
5800
5384
|
advancementPolicyDefinition: {
|
|
5801
5385
|
id: string;
|
|
5802
5386
|
pipelineStepDefinitionId: string;
|
|
@@ -5845,7 +5429,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5845
5429
|
}>;
|
|
5846
5430
|
};
|
|
5847
5431
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5848
|
-
defaultEventParamsJson:
|
|
5432
|
+
defaultEventParamsJson: {
|
|
5433
|
+
[key: string]: unknown;
|
|
5434
|
+
} | unknown;
|
|
5849
5435
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5850
5436
|
createdAt: string;
|
|
5851
5437
|
updatedAt: string;
|
|
@@ -5855,7 +5441,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5855
5441
|
key: string;
|
|
5856
5442
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5857
5443
|
inputSignalKeys: Array<string>;
|
|
5858
|
-
configJson:
|
|
5444
|
+
configJson: {
|
|
5445
|
+
[key: string]: unknown;
|
|
5446
|
+
} | unknown;
|
|
5859
5447
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5860
5448
|
createdAt: string;
|
|
5861
5449
|
updatedAt: string;
|
|
@@ -5867,17 +5455,16 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5867
5455
|
updatedAt: string;
|
|
5868
5456
|
};
|
|
5869
5457
|
};
|
|
5870
|
-
export type
|
|
5871
|
-
export type
|
|
5458
|
+
export type PutApiPipelineDefinitionsResponse = PutApiPipelineDefinitionsResponses[keyof PutApiPipelineDefinitionsResponses];
|
|
5459
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveData = {
|
|
5872
5460
|
body?: never;
|
|
5873
5461
|
path: {
|
|
5874
5462
|
pipelineDefinitionId: string;
|
|
5875
|
-
pipelineStepDefinitionId: string;
|
|
5876
5463
|
};
|
|
5877
5464
|
query?: never;
|
|
5878
|
-
url: '/api/pipeline-definitions/{pipelineDefinitionId}/
|
|
5465
|
+
url: '/api/pipeline-definitions/{pipelineDefinitionId}/archive';
|
|
5879
5466
|
};
|
|
5880
|
-
export type
|
|
5467
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors = {
|
|
5881
5468
|
/**
|
|
5882
5469
|
* Response for status 401
|
|
5883
5470
|
*/
|
|
@@ -5959,8 +5546,8 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
5959
5546
|
}>;
|
|
5960
5547
|
};
|
|
5961
5548
|
};
|
|
5962
|
-
export type
|
|
5963
|
-
export type
|
|
5549
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveError = PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveErrors];
|
|
5550
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
5964
5551
|
/**
|
|
5965
5552
|
* Response for status 200
|
|
5966
5553
|
*/
|
|
@@ -5972,10 +5559,13 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
5972
5559
|
description: string | unknown;
|
|
5973
5560
|
status: 'draft' | 'active' | 'archived';
|
|
5974
5561
|
archivedAt: string | unknown;
|
|
5975
|
-
inputSchemaJson:
|
|
5562
|
+
inputSchemaJson: {
|
|
5563
|
+
[key: string]: unknown;
|
|
5564
|
+
} | unknown;
|
|
5976
5565
|
stepDefinitions: Array<{
|
|
5977
5566
|
id: string;
|
|
5978
5567
|
pipelineDefinitionId: string;
|
|
5568
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
5979
5569
|
stepDefinitionId: string;
|
|
5980
5570
|
stepDefinitionVersion: number;
|
|
5981
5571
|
key: string;
|
|
@@ -6003,7 +5593,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6003
5593
|
};
|
|
6004
5594
|
} | unknown;
|
|
6005
5595
|
timeoutSeconds: number | unknown;
|
|
6006
|
-
retryPolicyJson:
|
|
5596
|
+
retryPolicyJson: {
|
|
5597
|
+
[key: string]: unknown;
|
|
5598
|
+
} | unknown;
|
|
6007
5599
|
advancementPolicyDefinition: {
|
|
6008
5600
|
id: string;
|
|
6009
5601
|
pipelineStepDefinitionId: string;
|
|
@@ -6052,7 +5644,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6052
5644
|
}>;
|
|
6053
5645
|
};
|
|
6054
5646
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6055
|
-
defaultEventParamsJson:
|
|
5647
|
+
defaultEventParamsJson: {
|
|
5648
|
+
[key: string]: unknown;
|
|
5649
|
+
} | unknown;
|
|
6056
5650
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6057
5651
|
createdAt: string;
|
|
6058
5652
|
updatedAt: string;
|
|
@@ -6062,7 +5656,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6062
5656
|
key: string;
|
|
6063
5657
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6064
5658
|
inputSignalKeys: Array<string>;
|
|
6065
|
-
configJson:
|
|
5659
|
+
configJson: {
|
|
5660
|
+
[key: string]: unknown;
|
|
5661
|
+
} | unknown;
|
|
6066
5662
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6067
5663
|
createdAt: string;
|
|
6068
5664
|
updatedAt: string;
|
|
@@ -6074,108 +5670,16 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6074
5670
|
updatedAt: string;
|
|
6075
5671
|
};
|
|
6076
5672
|
};
|
|
6077
|
-
export type
|
|
6078
|
-
export type
|
|
6079
|
-
body
|
|
6080
|
-
stepDefinitionId: string;
|
|
6081
|
-
stepDefinitionVersion: number;
|
|
6082
|
-
key: string;
|
|
6083
|
-
name: string;
|
|
6084
|
-
description: string | unknown;
|
|
6085
|
-
position: number;
|
|
6086
|
-
inputBindingsJson: {
|
|
6087
|
-
[key: string]: {
|
|
6088
|
-
source: string;
|
|
6089
|
-
path: string | unknown;
|
|
6090
|
-
} | {
|
|
6091
|
-
source: string;
|
|
6092
|
-
field: string;
|
|
6093
|
-
} | {
|
|
6094
|
-
source: string;
|
|
6095
|
-
stepKey: string;
|
|
6096
|
-
path: string | unknown;
|
|
6097
|
-
} | {
|
|
6098
|
-
source: string;
|
|
6099
|
-
stepKey: string;
|
|
6100
|
-
signalKey: string;
|
|
6101
|
-
} | {
|
|
6102
|
-
source: string;
|
|
6103
|
-
value: unknown;
|
|
6104
|
-
};
|
|
6105
|
-
} | unknown;
|
|
6106
|
-
timeoutSeconds: number | unknown;
|
|
6107
|
-
retryPolicyJson: {
|
|
6108
|
-
[key: string]: unknown;
|
|
6109
|
-
} | unknown;
|
|
6110
|
-
advancementPolicyDefinition: {
|
|
6111
|
-
rulesJson: {
|
|
6112
|
-
rules: Array<{
|
|
6113
|
-
conditions: {
|
|
6114
|
-
[key: string]: unknown;
|
|
6115
|
-
};
|
|
6116
|
-
event: {
|
|
6117
|
-
type: string;
|
|
6118
|
-
params?: {
|
|
6119
|
-
[key: string]: unknown;
|
|
6120
|
-
};
|
|
6121
|
-
};
|
|
6122
|
-
name?: string;
|
|
6123
|
-
priority?: number;
|
|
6124
|
-
[key: string]: unknown | {
|
|
6125
|
-
[key: string]: unknown;
|
|
6126
|
-
} | {
|
|
6127
|
-
type: string;
|
|
6128
|
-
params?: {
|
|
6129
|
-
[key: string]: unknown;
|
|
6130
|
-
};
|
|
6131
|
-
} | string | number | undefined;
|
|
6132
|
-
}>;
|
|
6133
|
-
[key: string]: unknown | Array<{
|
|
6134
|
-
conditions: {
|
|
6135
|
-
[key: string]: unknown;
|
|
6136
|
-
};
|
|
6137
|
-
event: {
|
|
6138
|
-
type: string;
|
|
6139
|
-
params?: {
|
|
6140
|
-
[key: string]: unknown;
|
|
6141
|
-
};
|
|
6142
|
-
};
|
|
6143
|
-
name?: string;
|
|
6144
|
-
priority?: number;
|
|
6145
|
-
[key: string]: unknown | {
|
|
6146
|
-
[key: string]: unknown;
|
|
6147
|
-
} | {
|
|
6148
|
-
type: string;
|
|
6149
|
-
params?: {
|
|
6150
|
-
[key: string]: unknown;
|
|
6151
|
-
};
|
|
6152
|
-
} | string | number | undefined;
|
|
6153
|
-
}>;
|
|
6154
|
-
};
|
|
6155
|
-
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6156
|
-
defaultEventParamsJson: {
|
|
6157
|
-
[key: string]: unknown;
|
|
6158
|
-
} | unknown;
|
|
6159
|
-
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6160
|
-
};
|
|
6161
|
-
computedSignalDefinitions: Array<{
|
|
6162
|
-
key: string;
|
|
6163
|
-
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6164
|
-
inputSignalKeys: Array<string>;
|
|
6165
|
-
configJson: {
|
|
6166
|
-
[key: string]: unknown;
|
|
6167
|
-
} | unknown;
|
|
6168
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6169
|
-
}>;
|
|
6170
|
-
};
|
|
5673
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponse = PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses];
|
|
5674
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveData = {
|
|
5675
|
+
body?: never;
|
|
6171
5676
|
path: {
|
|
6172
5677
|
pipelineDefinitionId: string;
|
|
6173
|
-
pipelineStepDefinitionId: string;
|
|
6174
5678
|
};
|
|
6175
5679
|
query?: never;
|
|
6176
|
-
url: '/api/pipeline-definitions/{pipelineDefinitionId}/
|
|
5680
|
+
url: '/api/pipeline-definitions/{pipelineDefinitionId}/unarchive';
|
|
6177
5681
|
};
|
|
6178
|
-
export type
|
|
5682
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors = {
|
|
6179
5683
|
/**
|
|
6180
5684
|
* Response for status 401
|
|
6181
5685
|
*/
|
|
@@ -6257,8 +5761,8 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6257
5761
|
}>;
|
|
6258
5762
|
};
|
|
6259
5763
|
};
|
|
6260
|
-
export type
|
|
6261
|
-
export type
|
|
5764
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveError = PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveErrors];
|
|
5765
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses = {
|
|
6262
5766
|
/**
|
|
6263
5767
|
* Response for status 200
|
|
6264
5768
|
*/
|
|
@@ -6270,10 +5774,13 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6270
5774
|
description: string | unknown;
|
|
6271
5775
|
status: 'draft' | 'active' | 'archived';
|
|
6272
5776
|
archivedAt: string | unknown;
|
|
6273
|
-
inputSchemaJson:
|
|
5777
|
+
inputSchemaJson: {
|
|
5778
|
+
[key: string]: unknown;
|
|
5779
|
+
} | unknown;
|
|
6274
5780
|
stepDefinitions: Array<{
|
|
6275
5781
|
id: string;
|
|
6276
5782
|
pipelineDefinitionId: string;
|
|
5783
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
6277
5784
|
stepDefinitionId: string;
|
|
6278
5785
|
stepDefinitionVersion: number;
|
|
6279
5786
|
key: string;
|
|
@@ -6301,7 +5808,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6301
5808
|
};
|
|
6302
5809
|
} | unknown;
|
|
6303
5810
|
timeoutSeconds: number | unknown;
|
|
6304
|
-
retryPolicyJson:
|
|
5811
|
+
retryPolicyJson: {
|
|
5812
|
+
[key: string]: unknown;
|
|
5813
|
+
} | unknown;
|
|
6305
5814
|
advancementPolicyDefinition: {
|
|
6306
5815
|
id: string;
|
|
6307
5816
|
pipelineStepDefinitionId: string;
|
|
@@ -6350,7 +5859,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6350
5859
|
}>;
|
|
6351
5860
|
};
|
|
6352
5861
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6353
|
-
defaultEventParamsJson:
|
|
5862
|
+
defaultEventParamsJson: {
|
|
5863
|
+
[key: string]: unknown;
|
|
5864
|
+
} | unknown;
|
|
6354
5865
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6355
5866
|
createdAt: string;
|
|
6356
5867
|
updatedAt: string;
|
|
@@ -6360,7 +5871,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6360
5871
|
key: string;
|
|
6361
5872
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6362
5873
|
inputSignalKeys: Array<string>;
|
|
6363
|
-
configJson:
|
|
5874
|
+
configJson: {
|
|
5875
|
+
[key: string]: unknown;
|
|
5876
|
+
} | unknown;
|
|
6364
5877
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6365
5878
|
createdAt: string;
|
|
6366
5879
|
updatedAt: string;
|
|
@@ -6372,7 +5885,7 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6372
5885
|
updatedAt: string;
|
|
6373
5886
|
};
|
|
6374
5887
|
};
|
|
6375
|
-
export type
|
|
5888
|
+
export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponse = PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses[keyof PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses];
|
|
6376
5889
|
export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDefinitionIdAdvancementPolicyData = {
|
|
6377
5890
|
body: {
|
|
6378
5891
|
rulesJson: {
|
|
@@ -6420,7 +5933,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6420
5933
|
}>;
|
|
6421
5934
|
};
|
|
6422
5935
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6423
|
-
defaultEventParamsJson:
|
|
5936
|
+
defaultEventParamsJson: {
|
|
5937
|
+
[key: string]: unknown;
|
|
5938
|
+
} | unknown;
|
|
6424
5939
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6425
5940
|
};
|
|
6426
5941
|
path: {
|
|
@@ -6525,10 +6040,13 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6525
6040
|
description: string | unknown;
|
|
6526
6041
|
status: 'draft' | 'active' | 'archived';
|
|
6527
6042
|
archivedAt: string | unknown;
|
|
6528
|
-
inputSchemaJson:
|
|
6043
|
+
inputSchemaJson: {
|
|
6044
|
+
[key: string]: unknown;
|
|
6045
|
+
} | unknown;
|
|
6529
6046
|
stepDefinitions: Array<{
|
|
6530
6047
|
id: string;
|
|
6531
6048
|
pipelineDefinitionId: string;
|
|
6049
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
6532
6050
|
stepDefinitionId: string;
|
|
6533
6051
|
stepDefinitionVersion: number;
|
|
6534
6052
|
key: string;
|
|
@@ -6556,7 +6074,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6556
6074
|
};
|
|
6557
6075
|
} | unknown;
|
|
6558
6076
|
timeoutSeconds: number | unknown;
|
|
6559
|
-
retryPolicyJson:
|
|
6077
|
+
retryPolicyJson: {
|
|
6078
|
+
[key: string]: unknown;
|
|
6079
|
+
} | unknown;
|
|
6560
6080
|
advancementPolicyDefinition: {
|
|
6561
6081
|
id: string;
|
|
6562
6082
|
pipelineStepDefinitionId: string;
|
|
@@ -6605,7 +6125,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6605
6125
|
}>;
|
|
6606
6126
|
};
|
|
6607
6127
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6608
|
-
defaultEventParamsJson:
|
|
6128
|
+
defaultEventParamsJson: {
|
|
6129
|
+
[key: string]: unknown;
|
|
6130
|
+
} | unknown;
|
|
6609
6131
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6610
6132
|
createdAt: string;
|
|
6611
6133
|
updatedAt: string;
|
|
@@ -6615,7 +6137,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6615
6137
|
key: string;
|
|
6616
6138
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6617
6139
|
inputSignalKeys: Array<string>;
|
|
6618
|
-
configJson:
|
|
6140
|
+
configJson: {
|
|
6141
|
+
[key: string]: unknown;
|
|
6142
|
+
} | unknown;
|
|
6619
6143
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6620
6144
|
createdAt: string;
|
|
6621
6145
|
updatedAt: string;
|
|
@@ -6747,10 +6271,13 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6747
6271
|
description: string | unknown;
|
|
6748
6272
|
status: 'draft' | 'active' | 'archived';
|
|
6749
6273
|
archivedAt: string | unknown;
|
|
6750
|
-
inputSchemaJson:
|
|
6274
|
+
inputSchemaJson: {
|
|
6275
|
+
[key: string]: unknown;
|
|
6276
|
+
} | unknown;
|
|
6751
6277
|
stepDefinitions: Array<{
|
|
6752
6278
|
id: string;
|
|
6753
6279
|
pipelineDefinitionId: string;
|
|
6280
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
6754
6281
|
stepDefinitionId: string;
|
|
6755
6282
|
stepDefinitionVersion: number;
|
|
6756
6283
|
key: string;
|
|
@@ -6778,7 +6305,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6778
6305
|
};
|
|
6779
6306
|
} | unknown;
|
|
6780
6307
|
timeoutSeconds: number | unknown;
|
|
6781
|
-
retryPolicyJson:
|
|
6308
|
+
retryPolicyJson: {
|
|
6309
|
+
[key: string]: unknown;
|
|
6310
|
+
} | unknown;
|
|
6782
6311
|
advancementPolicyDefinition: {
|
|
6783
6312
|
id: string;
|
|
6784
6313
|
pipelineStepDefinitionId: string;
|
|
@@ -6827,7 +6356,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6827
6356
|
}>;
|
|
6828
6357
|
};
|
|
6829
6358
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6830
|
-
defaultEventParamsJson:
|
|
6359
|
+
defaultEventParamsJson: {
|
|
6360
|
+
[key: string]: unknown;
|
|
6361
|
+
} | unknown;
|
|
6831
6362
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6832
6363
|
createdAt: string;
|
|
6833
6364
|
updatedAt: string;
|
|
@@ -6837,7 +6368,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6837
6368
|
key: string;
|
|
6838
6369
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6839
6370
|
inputSignalKeys: Array<string>;
|
|
6840
|
-
configJson:
|
|
6371
|
+
configJson: {
|
|
6372
|
+
[key: string]: unknown;
|
|
6373
|
+
} | unknown;
|
|
6841
6374
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6842
6375
|
createdAt: string;
|
|
6843
6376
|
updatedAt: string;
|
|
@@ -6937,10 +6470,13 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
6937
6470
|
description: string | unknown;
|
|
6938
6471
|
status: 'draft' | 'active' | 'archived';
|
|
6939
6472
|
archivedAt: string | unknown;
|
|
6940
|
-
inputSchemaJson:
|
|
6473
|
+
inputSchemaJson: {
|
|
6474
|
+
[key: string]: unknown;
|
|
6475
|
+
} | unknown;
|
|
6941
6476
|
stepDefinitions: Array<{
|
|
6942
6477
|
id: string;
|
|
6943
6478
|
pipelineDefinitionId: string;
|
|
6479
|
+
kind: 'step' | 'fanOut' | 'cohortGate' | 'choice' | 'parallel' | 'loop' | 'succeed' | 'fail';
|
|
6944
6480
|
stepDefinitionId: string;
|
|
6945
6481
|
stepDefinitionVersion: number;
|
|
6946
6482
|
key: string;
|
|
@@ -6968,7 +6504,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
6968
6504
|
};
|
|
6969
6505
|
} | unknown;
|
|
6970
6506
|
timeoutSeconds: number | unknown;
|
|
6971
|
-
retryPolicyJson:
|
|
6507
|
+
retryPolicyJson: {
|
|
6508
|
+
[key: string]: unknown;
|
|
6509
|
+
} | unknown;
|
|
6972
6510
|
advancementPolicyDefinition: {
|
|
6973
6511
|
id: string;
|
|
6974
6512
|
pipelineStepDefinitionId: string;
|
|
@@ -7017,7 +6555,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
7017
6555
|
}>;
|
|
7018
6556
|
};
|
|
7019
6557
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
7020
|
-
defaultEventParamsJson:
|
|
6558
|
+
defaultEventParamsJson: {
|
|
6559
|
+
[key: string]: unknown;
|
|
6560
|
+
} | unknown;
|
|
7021
6561
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
7022
6562
|
createdAt: string;
|
|
7023
6563
|
updatedAt: string;
|
|
@@ -7027,7 +6567,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
7027
6567
|
key: string;
|
|
7028
6568
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
7029
6569
|
inputSignalKeys: Array<string>;
|
|
7030
|
-
configJson:
|
|
6570
|
+
configJson: {
|
|
6571
|
+
[key: string]: unknown;
|
|
6572
|
+
} | unknown;
|
|
7031
6573
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
7032
6574
|
createdAt: string;
|
|
7033
6575
|
updatedAt: string;
|
|
@@ -9734,7 +9276,9 @@ export type GetApiWorkItemsByWorkItemIdResponses = {
|
|
|
9734
9276
|
description: string;
|
|
9735
9277
|
sourceCreatedAt: string | unknown;
|
|
9736
9278
|
sourceUpdatedAt: string | unknown;
|
|
9737
|
-
fields:
|
|
9279
|
+
fields: {
|
|
9280
|
+
[key: string]: unknown;
|
|
9281
|
+
} | unknown;
|
|
9738
9282
|
createdByUserId: string | unknown;
|
|
9739
9283
|
createdByUsername: string | unknown;
|
|
9740
9284
|
createdByImage: string | unknown;
|
|
@@ -9869,7 +9413,9 @@ export type PatchApiWorkItemsByWorkItemIdResponses = {
|
|
|
9869
9413
|
description: string;
|
|
9870
9414
|
sourceCreatedAt: string | unknown;
|
|
9871
9415
|
sourceUpdatedAt: string | unknown;
|
|
9872
|
-
fields:
|
|
9416
|
+
fields: {
|
|
9417
|
+
[key: string]: unknown;
|
|
9418
|
+
} | unknown;
|
|
9873
9419
|
createdByUserId: string | unknown;
|
|
9874
9420
|
createdByUsername: string | unknown;
|
|
9875
9421
|
createdByImage: string | unknown;
|
|
@@ -9985,7 +9531,9 @@ export type GetApiWorkItemsByWorkItemIdChildrenResponses = {
|
|
|
9985
9531
|
description: string;
|
|
9986
9532
|
sourceCreatedAt: string | unknown;
|
|
9987
9533
|
sourceUpdatedAt: string | unknown;
|
|
9988
|
-
fields:
|
|
9534
|
+
fields: {
|
|
9535
|
+
[key: string]: unknown;
|
|
9536
|
+
} | unknown;
|
|
9989
9537
|
createdByUserId: string | unknown;
|
|
9990
9538
|
createdByUsername: string | unknown;
|
|
9991
9539
|
createdByImage: string | unknown;
|
|
@@ -10006,7 +9554,9 @@ export type PostApiWorkItemsData = {
|
|
|
10006
9554
|
description: string;
|
|
10007
9555
|
sourceCreatedAt: string | unknown;
|
|
10008
9556
|
sourceUpdatedAt: string | unknown;
|
|
10009
|
-
fields:
|
|
9557
|
+
fields: {
|
|
9558
|
+
[key: string]: unknown;
|
|
9559
|
+
} | unknown;
|
|
10010
9560
|
};
|
|
10011
9561
|
path?: never;
|
|
10012
9562
|
query?: never;
|
|
@@ -10142,7 +9692,9 @@ export type PostApiWorkItemsResponses = {
|
|
|
10142
9692
|
description: string;
|
|
10143
9693
|
sourceCreatedAt: string | unknown;
|
|
10144
9694
|
sourceUpdatedAt: string | unknown;
|
|
10145
|
-
fields:
|
|
9695
|
+
fields: {
|
|
9696
|
+
[key: string]: unknown;
|
|
9697
|
+
} | unknown;
|
|
10146
9698
|
createdByUserId: string | unknown;
|
|
10147
9699
|
createdByUsername: string | unknown;
|
|
10148
9700
|
createdByImage: string | unknown;
|
|
@@ -10163,7 +9715,9 @@ export type PutApiWorkItemsData = {
|
|
|
10163
9715
|
description: string;
|
|
10164
9716
|
sourceCreatedAt: string | unknown;
|
|
10165
9717
|
sourceUpdatedAt: string | unknown;
|
|
10166
|
-
fields:
|
|
9718
|
+
fields: {
|
|
9719
|
+
[key: string]: unknown;
|
|
9720
|
+
} | unknown;
|
|
10167
9721
|
};
|
|
10168
9722
|
path?: never;
|
|
10169
9723
|
query?: never;
|
|
@@ -10283,7 +9837,9 @@ export type PutApiWorkItemsResponses = {
|
|
|
10283
9837
|
description: string;
|
|
10284
9838
|
sourceCreatedAt: string | unknown;
|
|
10285
9839
|
sourceUpdatedAt: string | unknown;
|
|
10286
|
-
fields:
|
|
9840
|
+
fields: {
|
|
9841
|
+
[key: string]: unknown;
|
|
9842
|
+
} | unknown;
|
|
10287
9843
|
createdByUserId: string | unknown;
|
|
10288
9844
|
createdByUsername: string | unknown;
|
|
10289
9845
|
createdByImage: string | unknown;
|
|
@@ -10402,7 +9958,9 @@ export type PostApiWorkItemsBatchData = {
|
|
|
10402
9958
|
description: string;
|
|
10403
9959
|
sourceCreatedAt: string | unknown;
|
|
10404
9960
|
sourceUpdatedAt: string | unknown;
|
|
10405
|
-
fields:
|
|
9961
|
+
fields: {
|
|
9962
|
+
[key: string]: unknown;
|
|
9963
|
+
} | unknown;
|
|
10406
9964
|
}>;
|
|
10407
9965
|
path?: never;
|
|
10408
9966
|
query?: never;
|
|
@@ -10538,7 +10096,9 @@ export type PostApiWorkItemsBatchResponses = {
|
|
|
10538
10096
|
description: string;
|
|
10539
10097
|
sourceCreatedAt: string | unknown;
|
|
10540
10098
|
sourceUpdatedAt: string | unknown;
|
|
10541
|
-
fields:
|
|
10099
|
+
fields: {
|
|
10100
|
+
[key: string]: unknown;
|
|
10101
|
+
} | unknown;
|
|
10542
10102
|
createdByUserId: string | unknown;
|
|
10543
10103
|
createdByUsername: string | unknown;
|
|
10544
10104
|
createdByImage: string | unknown;
|
|
@@ -10559,7 +10119,9 @@ export type PutApiWorkItemsBatchData = {
|
|
|
10559
10119
|
description: string;
|
|
10560
10120
|
sourceCreatedAt: string | unknown;
|
|
10561
10121
|
sourceUpdatedAt: string | unknown;
|
|
10562
|
-
fields:
|
|
10122
|
+
fields: {
|
|
10123
|
+
[key: string]: unknown;
|
|
10124
|
+
} | unknown;
|
|
10563
10125
|
}>;
|
|
10564
10126
|
path?: never;
|
|
10565
10127
|
query?: never;
|
|
@@ -10679,7 +10241,9 @@ export type PutApiWorkItemsBatchResponses = {
|
|
|
10679
10241
|
description: string;
|
|
10680
10242
|
sourceCreatedAt: string | unknown;
|
|
10681
10243
|
sourceUpdatedAt: string | unknown;
|
|
10682
|
-
fields:
|
|
10244
|
+
fields: {
|
|
10245
|
+
[key: string]: unknown;
|
|
10246
|
+
} | unknown;
|
|
10683
10247
|
createdByUserId: string | unknown;
|
|
10684
10248
|
createdByUsername: string | unknown;
|
|
10685
10249
|
createdByImage: string | unknown;
|
|
@@ -10813,7 +10377,9 @@ export type PatchApiWorkItemsByWorkItemIdParentResponses = {
|
|
|
10813
10377
|
description: string;
|
|
10814
10378
|
sourceCreatedAt: string | unknown;
|
|
10815
10379
|
sourceUpdatedAt: string | unknown;
|
|
10816
|
-
fields:
|
|
10380
|
+
fields: {
|
|
10381
|
+
[key: string]: unknown;
|
|
10382
|
+
} | unknown;
|
|
10817
10383
|
createdByUserId: string | unknown;
|
|
10818
10384
|
createdByUsername: string | unknown;
|
|
10819
10385
|
createdByImage: string | unknown;
|
|
@@ -12250,7 +11816,9 @@ export type GetApiProjectsByProjectIdNotificationsResponses = {
|
|
|
12250
11816
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12251
11817
|
source: 'agent' | 'system' | 'user';
|
|
12252
11818
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12253
|
-
payloadJson:
|
|
11819
|
+
payloadJson: {
|
|
11820
|
+
[key: string]: unknown;
|
|
11821
|
+
} | unknown;
|
|
12254
11822
|
createdAt: string;
|
|
12255
11823
|
updatedAt: string;
|
|
12256
11824
|
}>;
|
|
@@ -12367,7 +11935,9 @@ export type GetApiProjectsByProjectIdNotificationsByNotificationIdResponses = {
|
|
|
12367
11935
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12368
11936
|
source: 'agent' | 'system' | 'user';
|
|
12369
11937
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12370
|
-
payloadJson:
|
|
11938
|
+
payloadJson: {
|
|
11939
|
+
[key: string]: unknown;
|
|
11940
|
+
} | unknown;
|
|
12371
11941
|
createdAt: string;
|
|
12372
11942
|
updatedAt: string;
|
|
12373
11943
|
deliveries: Array<{
|
|
@@ -12595,7 +12165,9 @@ export type PostApiProjectsByProjectIdNotificationsByNotificationIdRespondRespon
|
|
|
12595
12165
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12596
12166
|
source: 'agent' | 'system' | 'user';
|
|
12597
12167
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12598
|
-
payloadJson:
|
|
12168
|
+
payloadJson: {
|
|
12169
|
+
[key: string]: unknown;
|
|
12170
|
+
} | unknown;
|
|
12599
12171
|
createdAt: string;
|
|
12600
12172
|
updatedAt: string;
|
|
12601
12173
|
};
|
|
@@ -12703,7 +12275,9 @@ export type GetApiProjectsByProjectIdNotificationRulesResponses = {
|
|
|
12703
12275
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12704
12276
|
enabled: boolean;
|
|
12705
12277
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12706
|
-
conditionsJson:
|
|
12278
|
+
conditionsJson: {
|
|
12279
|
+
[key: string]: unknown;
|
|
12280
|
+
} | unknown;
|
|
12707
12281
|
createdAt: string;
|
|
12708
12282
|
updatedAt: string;
|
|
12709
12283
|
}>;
|
|
@@ -12715,7 +12289,9 @@ export type PutApiProjectsByProjectIdNotificationRulesData = {
|
|
|
12715
12289
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12716
12290
|
enabled: boolean;
|
|
12717
12291
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12718
|
-
conditionsJson:
|
|
12292
|
+
conditionsJson: {
|
|
12293
|
+
[key: string]: unknown;
|
|
12294
|
+
} | unknown;
|
|
12719
12295
|
};
|
|
12720
12296
|
path: {
|
|
12721
12297
|
projectId: string;
|
|
@@ -12817,7 +12393,9 @@ export type PutApiProjectsByProjectIdNotificationRulesResponses = {
|
|
|
12817
12393
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12818
12394
|
enabled: boolean;
|
|
12819
12395
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12820
|
-
conditionsJson:
|
|
12396
|
+
conditionsJson: {
|
|
12397
|
+
[key: string]: unknown;
|
|
12398
|
+
} | unknown;
|
|
12821
12399
|
createdAt: string;
|
|
12822
12400
|
updatedAt: string;
|
|
12823
12401
|
};
|
|
@@ -12874,8 +12452,12 @@ export type GetApiStepDefinitionTemplatesResponses = {
|
|
|
12874
12452
|
name: string;
|
|
12875
12453
|
description: string | unknown;
|
|
12876
12454
|
promptTemplate: string | unknown;
|
|
12877
|
-
inputSchemaJson:
|
|
12878
|
-
|
|
12455
|
+
inputSchemaJson: {
|
|
12456
|
+
[key: string]: unknown;
|
|
12457
|
+
} | unknown;
|
|
12458
|
+
resultSchemaJson: {
|
|
12459
|
+
[key: string]: unknown;
|
|
12460
|
+
} | unknown;
|
|
12879
12461
|
opencodeMcpJson: {
|
|
12880
12462
|
[key: string]: {
|
|
12881
12463
|
type: string;
|
|
@@ -13020,8 +12602,12 @@ export type GetApiStepDefinitionTemplatesByStepDefinitionTemplateIdResponses = {
|
|
|
13020
12602
|
name: string;
|
|
13021
12603
|
description: string | unknown;
|
|
13022
12604
|
promptTemplate: string | unknown;
|
|
13023
|
-
inputSchemaJson:
|
|
13024
|
-
|
|
12605
|
+
inputSchemaJson: {
|
|
12606
|
+
[key: string]: unknown;
|
|
12607
|
+
} | unknown;
|
|
12608
|
+
resultSchemaJson: {
|
|
12609
|
+
[key: string]: unknown;
|
|
12610
|
+
} | unknown;
|
|
13025
12611
|
opencodeMcpJson: {
|
|
13026
12612
|
[key: string]: {
|
|
13027
12613
|
type: string;
|
|
@@ -13222,10 +12808,18 @@ export type PostApiStepDefinitionTemplatesByStepDefinitionTemplateIdInstantiateR
|
|
|
13222
12808
|
description: string | unknown;
|
|
13223
12809
|
prompt: string | unknown;
|
|
13224
12810
|
version: number;
|
|
13225
|
-
kind: 'built_in' | 'user_defined';
|
|
12811
|
+
kind: 'built_in' | 'user_defined' | 'code';
|
|
12812
|
+
entrypointJson: {
|
|
12813
|
+
sourceFile: string;
|
|
12814
|
+
exportName: string;
|
|
12815
|
+
} | unknown;
|
|
13226
12816
|
executionMode: 'workspace' | 'no_workspace';
|
|
13227
|
-
inputSchemaJson:
|
|
13228
|
-
|
|
12817
|
+
inputSchemaJson: {
|
|
12818
|
+
[key: string]: unknown;
|
|
12819
|
+
} | unknown;
|
|
12820
|
+
resultSchemaJson: {
|
|
12821
|
+
[key: string]: unknown;
|
|
12822
|
+
} | unknown;
|
|
13229
12823
|
opencodeMcpJson: {
|
|
13230
12824
|
[key: string]: {
|
|
13231
12825
|
type: string;
|