@boboddy/sdk 0.4.2 → 0.4.3
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/definitions/pipelines/builder-helpers.d.ts +33 -4
- package/dist/definitions/pipelines/define-default-pipeline-assignment.d.ts +64 -14
- package/dist/definitions/pipelines/index.d.ts +1 -0
- package/dist/definitions/pipelines/index.js +55 -10
- package/dist/definitions/pipelines/pipeline-definitions-client.d.ts +24 -8
- package/dist/definitions/pipelines/work-item-fields.d.ts +98 -0
- package/dist/definitions/steps/define-step.d.ts +19 -8
- package/dist/definitions/steps/step-definitions-client.d.ts +18 -6
- package/dist/generated/types.gen.d.ts +264 -88
- package/dist/index.js +55 -10
- package/dist/push/index.js +52 -10
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -1388,8 +1390,12 @@ export type GetApiStepDefinitionsResponses = {
|
|
|
1388
1390
|
version: number;
|
|
1389
1391
|
kind: 'built_in' | 'user_defined';
|
|
1390
1392
|
executionMode: 'workspace' | 'no_workspace';
|
|
1391
|
-
inputSchemaJson:
|
|
1392
|
-
|
|
1393
|
+
inputSchemaJson: {
|
|
1394
|
+
[key: string]: unknown;
|
|
1395
|
+
} | unknown;
|
|
1396
|
+
resultSchemaJson: {
|
|
1397
|
+
[key: string]: unknown;
|
|
1398
|
+
} | unknown;
|
|
1393
1399
|
opencodeMcpJson: {
|
|
1394
1400
|
[key: string]: {
|
|
1395
1401
|
type: string;
|
|
@@ -1454,8 +1460,12 @@ export type PostApiStepDefinitionsData = {
|
|
|
1454
1460
|
version: number;
|
|
1455
1461
|
kind: 'built_in' | 'user_defined';
|
|
1456
1462
|
executionMode?: 'workspace' | 'no_workspace';
|
|
1457
|
-
inputSchemaJson:
|
|
1458
|
-
|
|
1463
|
+
inputSchemaJson: {
|
|
1464
|
+
[key: string]: unknown;
|
|
1465
|
+
} | unknown;
|
|
1466
|
+
resultSchemaJson: {
|
|
1467
|
+
[key: string]: unknown;
|
|
1468
|
+
} | unknown;
|
|
1459
1469
|
opencodeMcpJson?: {
|
|
1460
1470
|
[key: string]: {
|
|
1461
1471
|
type: string;
|
|
@@ -1636,8 +1646,12 @@ export type PostApiStepDefinitionsResponses = {
|
|
|
1636
1646
|
version: number;
|
|
1637
1647
|
kind: 'built_in' | 'user_defined';
|
|
1638
1648
|
executionMode: 'workspace' | 'no_workspace';
|
|
1639
|
-
inputSchemaJson:
|
|
1640
|
-
|
|
1649
|
+
inputSchemaJson: {
|
|
1650
|
+
[key: string]: unknown;
|
|
1651
|
+
} | unknown;
|
|
1652
|
+
resultSchemaJson: {
|
|
1653
|
+
[key: string]: unknown;
|
|
1654
|
+
} | unknown;
|
|
1641
1655
|
opencodeMcpJson: {
|
|
1642
1656
|
[key: string]: {
|
|
1643
1657
|
type: string;
|
|
@@ -1702,8 +1716,12 @@ export type PutApiStepDefinitionsData = {
|
|
|
1702
1716
|
version: number;
|
|
1703
1717
|
kind: 'built_in' | 'user_defined';
|
|
1704
1718
|
executionMode?: 'workspace' | 'no_workspace';
|
|
1705
|
-
inputSchemaJson:
|
|
1706
|
-
|
|
1719
|
+
inputSchemaJson: {
|
|
1720
|
+
[key: string]: unknown;
|
|
1721
|
+
} | unknown;
|
|
1722
|
+
resultSchemaJson: {
|
|
1723
|
+
[key: string]: unknown;
|
|
1724
|
+
} | unknown;
|
|
1707
1725
|
opencodeMcpJson?: {
|
|
1708
1726
|
[key: string]: {
|
|
1709
1727
|
type: string;
|
|
@@ -1852,8 +1870,12 @@ export type PutApiStepDefinitionsResponses = {
|
|
|
1852
1870
|
version: number;
|
|
1853
1871
|
kind: 'built_in' | 'user_defined';
|
|
1854
1872
|
executionMode: 'workspace' | 'no_workspace';
|
|
1855
|
-
inputSchemaJson:
|
|
1856
|
-
|
|
1873
|
+
inputSchemaJson: {
|
|
1874
|
+
[key: string]: unknown;
|
|
1875
|
+
} | unknown;
|
|
1876
|
+
resultSchemaJson: {
|
|
1877
|
+
[key: string]: unknown;
|
|
1878
|
+
} | unknown;
|
|
1857
1879
|
opencodeMcpJson: {
|
|
1858
1880
|
[key: string]: {
|
|
1859
1881
|
type: string;
|
|
@@ -2013,8 +2035,12 @@ export type GetApiStepDefinitionsByStepDefinitionIdResponses = {
|
|
|
2013
2035
|
version: number;
|
|
2014
2036
|
kind: 'built_in' | 'user_defined';
|
|
2015
2037
|
executionMode: 'workspace' | 'no_workspace';
|
|
2016
|
-
inputSchemaJson:
|
|
2017
|
-
|
|
2038
|
+
inputSchemaJson: {
|
|
2039
|
+
[key: string]: unknown;
|
|
2040
|
+
} | unknown;
|
|
2041
|
+
resultSchemaJson: {
|
|
2042
|
+
[key: string]: unknown;
|
|
2043
|
+
} | unknown;
|
|
2018
2044
|
opencodeMcpJson: {
|
|
2019
2045
|
[key: string]: {
|
|
2020
2046
|
type: string;
|
|
@@ -2174,8 +2200,12 @@ export type PutApiStepDefinitionsByStepDefinitionIdArchiveResponses = {
|
|
|
2174
2200
|
version: number;
|
|
2175
2201
|
kind: 'built_in' | 'user_defined';
|
|
2176
2202
|
executionMode: 'workspace' | 'no_workspace';
|
|
2177
|
-
inputSchemaJson:
|
|
2178
|
-
|
|
2203
|
+
inputSchemaJson: {
|
|
2204
|
+
[key: string]: unknown;
|
|
2205
|
+
} | unknown;
|
|
2206
|
+
resultSchemaJson: {
|
|
2207
|
+
[key: string]: unknown;
|
|
2208
|
+
} | unknown;
|
|
2179
2209
|
opencodeMcpJson: {
|
|
2180
2210
|
[key: string]: {
|
|
2181
2211
|
type: string;
|
|
@@ -4556,7 +4586,9 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4556
4586
|
name: string;
|
|
4557
4587
|
description: string | unknown;
|
|
4558
4588
|
status: 'draft' | 'active' | 'archived';
|
|
4559
|
-
inputSchemaJson?:
|
|
4589
|
+
inputSchemaJson?: {
|
|
4590
|
+
[key: string]: unknown;
|
|
4591
|
+
} | unknown;
|
|
4560
4592
|
stepDefinitions: Array<{
|
|
4561
4593
|
stepDefinitionId: string;
|
|
4562
4594
|
stepDefinitionVersion: number;
|
|
@@ -4585,7 +4617,9 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4585
4617
|
};
|
|
4586
4618
|
} | unknown;
|
|
4587
4619
|
timeoutSeconds: number | unknown;
|
|
4588
|
-
retryPolicyJson:
|
|
4620
|
+
retryPolicyJson: {
|
|
4621
|
+
[key: string]: unknown;
|
|
4622
|
+
} | unknown;
|
|
4589
4623
|
advancementPolicyDefinition: {
|
|
4590
4624
|
rulesJson: {
|
|
4591
4625
|
rules: Array<{
|
|
@@ -4632,14 +4666,18 @@ export type PostApiPipelineDefinitionsData = {
|
|
|
4632
4666
|
}>;
|
|
4633
4667
|
};
|
|
4634
4668
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4635
|
-
defaultEventParamsJson:
|
|
4669
|
+
defaultEventParamsJson: {
|
|
4670
|
+
[key: string]: unknown;
|
|
4671
|
+
} | unknown;
|
|
4636
4672
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4637
4673
|
};
|
|
4638
4674
|
computedSignalDefinitions: Array<{
|
|
4639
4675
|
key: string;
|
|
4640
4676
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4641
4677
|
inputSignalKeys: Array<string>;
|
|
4642
|
-
configJson:
|
|
4678
|
+
configJson: {
|
|
4679
|
+
[key: string]: unknown;
|
|
4680
|
+
} | unknown;
|
|
4643
4681
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4644
4682
|
}>;
|
|
4645
4683
|
}>;
|
|
@@ -4775,7 +4813,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4775
4813
|
description: string | unknown;
|
|
4776
4814
|
status: 'draft' | 'active' | 'archived';
|
|
4777
4815
|
archivedAt: string | unknown;
|
|
4778
|
-
inputSchemaJson:
|
|
4816
|
+
inputSchemaJson: {
|
|
4817
|
+
[key: string]: unknown;
|
|
4818
|
+
} | unknown;
|
|
4779
4819
|
stepDefinitions: Array<{
|
|
4780
4820
|
id: string;
|
|
4781
4821
|
pipelineDefinitionId: string;
|
|
@@ -4806,7 +4846,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4806
4846
|
};
|
|
4807
4847
|
} | unknown;
|
|
4808
4848
|
timeoutSeconds: number | unknown;
|
|
4809
|
-
retryPolicyJson:
|
|
4849
|
+
retryPolicyJson: {
|
|
4850
|
+
[key: string]: unknown;
|
|
4851
|
+
} | unknown;
|
|
4810
4852
|
advancementPolicyDefinition: {
|
|
4811
4853
|
id: string;
|
|
4812
4854
|
pipelineStepDefinitionId: string;
|
|
@@ -4855,7 +4897,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4855
4897
|
}>;
|
|
4856
4898
|
};
|
|
4857
4899
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4858
|
-
defaultEventParamsJson:
|
|
4900
|
+
defaultEventParamsJson: {
|
|
4901
|
+
[key: string]: unknown;
|
|
4902
|
+
} | unknown;
|
|
4859
4903
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4860
4904
|
createdAt: string;
|
|
4861
4905
|
updatedAt: string;
|
|
@@ -4865,7 +4909,9 @@ export type PostApiPipelineDefinitionsResponses = {
|
|
|
4865
4909
|
key: string;
|
|
4866
4910
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4867
4911
|
inputSignalKeys: Array<string>;
|
|
4868
|
-
configJson:
|
|
4912
|
+
configJson: {
|
|
4913
|
+
[key: string]: unknown;
|
|
4914
|
+
} | unknown;
|
|
4869
4915
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4870
4916
|
createdAt: string;
|
|
4871
4917
|
updatedAt: string;
|
|
@@ -4885,7 +4931,9 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4885
4931
|
name: string;
|
|
4886
4932
|
description: string | unknown;
|
|
4887
4933
|
status: 'draft' | 'active' | 'archived';
|
|
4888
|
-
inputSchemaJson?:
|
|
4934
|
+
inputSchemaJson?: {
|
|
4935
|
+
[key: string]: unknown;
|
|
4936
|
+
} | unknown;
|
|
4889
4937
|
stepDefinitions: Array<{
|
|
4890
4938
|
stepDefinitionId: string;
|
|
4891
4939
|
stepDefinitionVersion: number;
|
|
@@ -4914,7 +4962,9 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4914
4962
|
};
|
|
4915
4963
|
} | unknown;
|
|
4916
4964
|
timeoutSeconds: number | unknown;
|
|
4917
|
-
retryPolicyJson:
|
|
4965
|
+
retryPolicyJson: {
|
|
4966
|
+
[key: string]: unknown;
|
|
4967
|
+
} | unknown;
|
|
4918
4968
|
advancementPolicyDefinition: {
|
|
4919
4969
|
rulesJson: {
|
|
4920
4970
|
rules: Array<{
|
|
@@ -4961,14 +5011,18 @@ export type PutApiPipelineDefinitionsData = {
|
|
|
4961
5011
|
}>;
|
|
4962
5012
|
};
|
|
4963
5013
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4964
|
-
defaultEventParamsJson:
|
|
5014
|
+
defaultEventParamsJson: {
|
|
5015
|
+
[key: string]: unknown;
|
|
5016
|
+
} | unknown;
|
|
4965
5017
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4966
5018
|
};
|
|
4967
5019
|
computedSignalDefinitions: Array<{
|
|
4968
5020
|
key: string;
|
|
4969
5021
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4970
5022
|
inputSignalKeys: Array<string>;
|
|
4971
|
-
configJson:
|
|
5023
|
+
configJson: {
|
|
5024
|
+
[key: string]: unknown;
|
|
5025
|
+
} | unknown;
|
|
4972
5026
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4973
5027
|
}>;
|
|
4974
5028
|
}>;
|
|
@@ -5056,7 +5110,9 @@ export type PutApiPipelineDefinitionsResponses = {
|
|
|
5056
5110
|
description: string | unknown;
|
|
5057
5111
|
status: 'draft' | 'active' | 'archived';
|
|
5058
5112
|
archivedAt: string | unknown;
|
|
5059
|
-
inputSchemaJson:
|
|
5113
|
+
inputSchemaJson: {
|
|
5114
|
+
[key: string]: unknown;
|
|
5115
|
+
} | unknown;
|
|
5060
5116
|
stepDefinitions: Array<{
|
|
5061
5117
|
id: string;
|
|
5062
5118
|
pipelineDefinitionId: string;
|
|
@@ -5087,7 +5143,9 @@ export type PutApiPipelineDefinitionsResponses = {
|
|
|
5087
5143
|
};
|
|
5088
5144
|
} | unknown;
|
|
5089
5145
|
timeoutSeconds: number | unknown;
|
|
5090
|
-
retryPolicyJson:
|
|
5146
|
+
retryPolicyJson: {
|
|
5147
|
+
[key: string]: unknown;
|
|
5148
|
+
} | unknown;
|
|
5091
5149
|
advancementPolicyDefinition: {
|
|
5092
5150
|
id: string;
|
|
5093
5151
|
pipelineStepDefinitionId: string;
|
|
@@ -5136,7 +5194,9 @@ export type PutApiPipelineDefinitionsResponses = {
|
|
|
5136
5194
|
}>;
|
|
5137
5195
|
};
|
|
5138
5196
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5139
|
-
defaultEventParamsJson:
|
|
5197
|
+
defaultEventParamsJson: {
|
|
5198
|
+
[key: string]: unknown;
|
|
5199
|
+
} | unknown;
|
|
5140
5200
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5141
5201
|
createdAt: string;
|
|
5142
5202
|
updatedAt: string;
|
|
@@ -5146,7 +5206,9 @@ export type PutApiPipelineDefinitionsResponses = {
|
|
|
5146
5206
|
key: string;
|
|
5147
5207
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5148
5208
|
inputSignalKeys: Array<string>;
|
|
5149
|
-
configJson:
|
|
5209
|
+
configJson: {
|
|
5210
|
+
[key: string]: unknown;
|
|
5211
|
+
} | unknown;
|
|
5150
5212
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5151
5213
|
createdAt: string;
|
|
5152
5214
|
updatedAt: string;
|
|
@@ -5262,7 +5324,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
|
5262
5324
|
description: string | unknown;
|
|
5263
5325
|
status: 'draft' | 'active' | 'archived';
|
|
5264
5326
|
archivedAt: string | unknown;
|
|
5265
|
-
inputSchemaJson:
|
|
5327
|
+
inputSchemaJson: {
|
|
5328
|
+
[key: string]: unknown;
|
|
5329
|
+
} | unknown;
|
|
5266
5330
|
stepDefinitions: Array<{
|
|
5267
5331
|
id: string;
|
|
5268
5332
|
pipelineDefinitionId: string;
|
|
@@ -5293,7 +5357,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
|
5293
5357
|
};
|
|
5294
5358
|
} | unknown;
|
|
5295
5359
|
timeoutSeconds: number | unknown;
|
|
5296
|
-
retryPolicyJson:
|
|
5360
|
+
retryPolicyJson: {
|
|
5361
|
+
[key: string]: unknown;
|
|
5362
|
+
} | unknown;
|
|
5297
5363
|
advancementPolicyDefinition: {
|
|
5298
5364
|
id: string;
|
|
5299
5365
|
pipelineStepDefinitionId: string;
|
|
@@ -5342,7 +5408,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
|
5342
5408
|
}>;
|
|
5343
5409
|
};
|
|
5344
5410
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5345
|
-
defaultEventParamsJson:
|
|
5411
|
+
defaultEventParamsJson: {
|
|
5412
|
+
[key: string]: unknown;
|
|
5413
|
+
} | unknown;
|
|
5346
5414
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5347
5415
|
createdAt: string;
|
|
5348
5416
|
updatedAt: string;
|
|
@@ -5352,7 +5420,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
|
|
|
5352
5420
|
key: string;
|
|
5353
5421
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5354
5422
|
inputSignalKeys: Array<string>;
|
|
5355
|
-
configJson:
|
|
5423
|
+
configJson: {
|
|
5424
|
+
[key: string]: unknown;
|
|
5425
|
+
} | unknown;
|
|
5356
5426
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5357
5427
|
createdAt: string;
|
|
5358
5428
|
updatedAt: string;
|
|
@@ -5468,7 +5538,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
|
|
|
5468
5538
|
description: string | unknown;
|
|
5469
5539
|
status: 'draft' | 'active' | 'archived';
|
|
5470
5540
|
archivedAt: string | unknown;
|
|
5471
|
-
inputSchemaJson:
|
|
5541
|
+
inputSchemaJson: {
|
|
5542
|
+
[key: string]: unknown;
|
|
5543
|
+
} | unknown;
|
|
5472
5544
|
stepDefinitions: Array<{
|
|
5473
5545
|
id: string;
|
|
5474
5546
|
pipelineDefinitionId: string;
|
|
@@ -5499,7 +5571,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
|
|
|
5499
5571
|
};
|
|
5500
5572
|
} | unknown;
|
|
5501
5573
|
timeoutSeconds: number | unknown;
|
|
5502
|
-
retryPolicyJson:
|
|
5574
|
+
retryPolicyJson: {
|
|
5575
|
+
[key: string]: unknown;
|
|
5576
|
+
} | unknown;
|
|
5503
5577
|
advancementPolicyDefinition: {
|
|
5504
5578
|
id: string;
|
|
5505
5579
|
pipelineStepDefinitionId: string;
|
|
@@ -5548,7 +5622,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
|
|
|
5548
5622
|
}>;
|
|
5549
5623
|
};
|
|
5550
5624
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5551
|
-
defaultEventParamsJson:
|
|
5625
|
+
defaultEventParamsJson: {
|
|
5626
|
+
[key: string]: unknown;
|
|
5627
|
+
} | unknown;
|
|
5552
5628
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5553
5629
|
createdAt: string;
|
|
5554
5630
|
updatedAt: string;
|
|
@@ -5558,7 +5634,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
|
|
|
5558
5634
|
key: string;
|
|
5559
5635
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5560
5636
|
inputSignalKeys: Array<string>;
|
|
5561
|
-
configJson:
|
|
5637
|
+
configJson: {
|
|
5638
|
+
[key: string]: unknown;
|
|
5639
|
+
} | unknown;
|
|
5562
5640
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5563
5641
|
createdAt: string;
|
|
5564
5642
|
updatedAt: string;
|
|
@@ -5765,7 +5843,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5765
5843
|
description: string | unknown;
|
|
5766
5844
|
status: 'draft' | 'active' | 'archived';
|
|
5767
5845
|
archivedAt: string | unknown;
|
|
5768
|
-
inputSchemaJson:
|
|
5846
|
+
inputSchemaJson: {
|
|
5847
|
+
[key: string]: unknown;
|
|
5848
|
+
} | unknown;
|
|
5769
5849
|
stepDefinitions: Array<{
|
|
5770
5850
|
id: string;
|
|
5771
5851
|
pipelineDefinitionId: string;
|
|
@@ -5796,7 +5876,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5796
5876
|
};
|
|
5797
5877
|
} | unknown;
|
|
5798
5878
|
timeoutSeconds: number | unknown;
|
|
5799
|
-
retryPolicyJson:
|
|
5879
|
+
retryPolicyJson: {
|
|
5880
|
+
[key: string]: unknown;
|
|
5881
|
+
} | unknown;
|
|
5800
5882
|
advancementPolicyDefinition: {
|
|
5801
5883
|
id: string;
|
|
5802
5884
|
pipelineStepDefinitionId: string;
|
|
@@ -5845,7 +5927,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5845
5927
|
}>;
|
|
5846
5928
|
};
|
|
5847
5929
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5848
|
-
defaultEventParamsJson:
|
|
5930
|
+
defaultEventParamsJson: {
|
|
5931
|
+
[key: string]: unknown;
|
|
5932
|
+
} | unknown;
|
|
5849
5933
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5850
5934
|
createdAt: string;
|
|
5851
5935
|
updatedAt: string;
|
|
@@ -5855,7 +5939,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
|
|
|
5855
5939
|
key: string;
|
|
5856
5940
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5857
5941
|
inputSignalKeys: Array<string>;
|
|
5858
|
-
configJson:
|
|
5942
|
+
configJson: {
|
|
5943
|
+
[key: string]: unknown;
|
|
5944
|
+
} | unknown;
|
|
5859
5945
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5860
5946
|
createdAt: string;
|
|
5861
5947
|
updatedAt: string;
|
|
@@ -5972,7 +6058,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
5972
6058
|
description: string | unknown;
|
|
5973
6059
|
status: 'draft' | 'active' | 'archived';
|
|
5974
6060
|
archivedAt: string | unknown;
|
|
5975
|
-
inputSchemaJson:
|
|
6061
|
+
inputSchemaJson: {
|
|
6062
|
+
[key: string]: unknown;
|
|
6063
|
+
} | unknown;
|
|
5976
6064
|
stepDefinitions: Array<{
|
|
5977
6065
|
id: string;
|
|
5978
6066
|
pipelineDefinitionId: string;
|
|
@@ -6003,7 +6091,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6003
6091
|
};
|
|
6004
6092
|
} | unknown;
|
|
6005
6093
|
timeoutSeconds: number | unknown;
|
|
6006
|
-
retryPolicyJson:
|
|
6094
|
+
retryPolicyJson: {
|
|
6095
|
+
[key: string]: unknown;
|
|
6096
|
+
} | unknown;
|
|
6007
6097
|
advancementPolicyDefinition: {
|
|
6008
6098
|
id: string;
|
|
6009
6099
|
pipelineStepDefinitionId: string;
|
|
@@ -6052,7 +6142,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6052
6142
|
}>;
|
|
6053
6143
|
};
|
|
6054
6144
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6055
|
-
defaultEventParamsJson:
|
|
6145
|
+
defaultEventParamsJson: {
|
|
6146
|
+
[key: string]: unknown;
|
|
6147
|
+
} | unknown;
|
|
6056
6148
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6057
6149
|
createdAt: string;
|
|
6058
6150
|
updatedAt: string;
|
|
@@ -6062,7 +6154,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
|
|
|
6062
6154
|
key: string;
|
|
6063
6155
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6064
6156
|
inputSignalKeys: Array<string>;
|
|
6065
|
-
configJson:
|
|
6157
|
+
configJson: {
|
|
6158
|
+
[key: string]: unknown;
|
|
6159
|
+
} | unknown;
|
|
6066
6160
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6067
6161
|
createdAt: string;
|
|
6068
6162
|
updatedAt: string;
|
|
@@ -6270,7 +6364,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6270
6364
|
description: string | unknown;
|
|
6271
6365
|
status: 'draft' | 'active' | 'archived';
|
|
6272
6366
|
archivedAt: string | unknown;
|
|
6273
|
-
inputSchemaJson:
|
|
6367
|
+
inputSchemaJson: {
|
|
6368
|
+
[key: string]: unknown;
|
|
6369
|
+
} | unknown;
|
|
6274
6370
|
stepDefinitions: Array<{
|
|
6275
6371
|
id: string;
|
|
6276
6372
|
pipelineDefinitionId: string;
|
|
@@ -6301,7 +6397,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6301
6397
|
};
|
|
6302
6398
|
} | unknown;
|
|
6303
6399
|
timeoutSeconds: number | unknown;
|
|
6304
|
-
retryPolicyJson:
|
|
6400
|
+
retryPolicyJson: {
|
|
6401
|
+
[key: string]: unknown;
|
|
6402
|
+
} | unknown;
|
|
6305
6403
|
advancementPolicyDefinition: {
|
|
6306
6404
|
id: string;
|
|
6307
6405
|
pipelineStepDefinitionId: string;
|
|
@@ -6350,7 +6448,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6350
6448
|
}>;
|
|
6351
6449
|
};
|
|
6352
6450
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6353
|
-
defaultEventParamsJson:
|
|
6451
|
+
defaultEventParamsJson: {
|
|
6452
|
+
[key: string]: unknown;
|
|
6453
|
+
} | unknown;
|
|
6354
6454
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6355
6455
|
createdAt: string;
|
|
6356
6456
|
updatedAt: string;
|
|
@@ -6360,7 +6460,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6360
6460
|
key: string;
|
|
6361
6461
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6362
6462
|
inputSignalKeys: Array<string>;
|
|
6363
|
-
configJson:
|
|
6463
|
+
configJson: {
|
|
6464
|
+
[key: string]: unknown;
|
|
6465
|
+
} | unknown;
|
|
6364
6466
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6365
6467
|
createdAt: string;
|
|
6366
6468
|
updatedAt: string;
|
|
@@ -6420,7 +6522,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6420
6522
|
}>;
|
|
6421
6523
|
};
|
|
6422
6524
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6423
|
-
defaultEventParamsJson:
|
|
6525
|
+
defaultEventParamsJson: {
|
|
6526
|
+
[key: string]: unknown;
|
|
6527
|
+
} | unknown;
|
|
6424
6528
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6425
6529
|
};
|
|
6426
6530
|
path: {
|
|
@@ -6525,7 +6629,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6525
6629
|
description: string | unknown;
|
|
6526
6630
|
status: 'draft' | 'active' | 'archived';
|
|
6527
6631
|
archivedAt: string | unknown;
|
|
6528
|
-
inputSchemaJson:
|
|
6632
|
+
inputSchemaJson: {
|
|
6633
|
+
[key: string]: unknown;
|
|
6634
|
+
} | unknown;
|
|
6529
6635
|
stepDefinitions: Array<{
|
|
6530
6636
|
id: string;
|
|
6531
6637
|
pipelineDefinitionId: string;
|
|
@@ -6556,7 +6662,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6556
6662
|
};
|
|
6557
6663
|
} | unknown;
|
|
6558
6664
|
timeoutSeconds: number | unknown;
|
|
6559
|
-
retryPolicyJson:
|
|
6665
|
+
retryPolicyJson: {
|
|
6666
|
+
[key: string]: unknown;
|
|
6667
|
+
} | unknown;
|
|
6560
6668
|
advancementPolicyDefinition: {
|
|
6561
6669
|
id: string;
|
|
6562
6670
|
pipelineStepDefinitionId: string;
|
|
@@ -6605,7 +6713,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6605
6713
|
}>;
|
|
6606
6714
|
};
|
|
6607
6715
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6608
|
-
defaultEventParamsJson:
|
|
6716
|
+
defaultEventParamsJson: {
|
|
6717
|
+
[key: string]: unknown;
|
|
6718
|
+
} | unknown;
|
|
6609
6719
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6610
6720
|
createdAt: string;
|
|
6611
6721
|
updatedAt: string;
|
|
@@ -6615,7 +6725,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
|
|
|
6615
6725
|
key: string;
|
|
6616
6726
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6617
6727
|
inputSignalKeys: Array<string>;
|
|
6618
|
-
configJson:
|
|
6728
|
+
configJson: {
|
|
6729
|
+
[key: string]: unknown;
|
|
6730
|
+
} | unknown;
|
|
6619
6731
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6620
6732
|
createdAt: string;
|
|
6621
6733
|
updatedAt: string;
|
|
@@ -6747,7 +6859,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6747
6859
|
description: string | unknown;
|
|
6748
6860
|
status: 'draft' | 'active' | 'archived';
|
|
6749
6861
|
archivedAt: string | unknown;
|
|
6750
|
-
inputSchemaJson:
|
|
6862
|
+
inputSchemaJson: {
|
|
6863
|
+
[key: string]: unknown;
|
|
6864
|
+
} | unknown;
|
|
6751
6865
|
stepDefinitions: Array<{
|
|
6752
6866
|
id: string;
|
|
6753
6867
|
pipelineDefinitionId: string;
|
|
@@ -6778,7 +6892,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6778
6892
|
};
|
|
6779
6893
|
} | unknown;
|
|
6780
6894
|
timeoutSeconds: number | unknown;
|
|
6781
|
-
retryPolicyJson:
|
|
6895
|
+
retryPolicyJson: {
|
|
6896
|
+
[key: string]: unknown;
|
|
6897
|
+
} | unknown;
|
|
6782
6898
|
advancementPolicyDefinition: {
|
|
6783
6899
|
id: string;
|
|
6784
6900
|
pipelineStepDefinitionId: string;
|
|
@@ -6827,7 +6943,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6827
6943
|
}>;
|
|
6828
6944
|
};
|
|
6829
6945
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
6830
|
-
defaultEventParamsJson:
|
|
6946
|
+
defaultEventParamsJson: {
|
|
6947
|
+
[key: string]: unknown;
|
|
6948
|
+
} | unknown;
|
|
6831
6949
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
6832
6950
|
createdAt: string;
|
|
6833
6951
|
updatedAt: string;
|
|
@@ -6837,7 +6955,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
|
|
|
6837
6955
|
key: string;
|
|
6838
6956
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
6839
6957
|
inputSignalKeys: Array<string>;
|
|
6840
|
-
configJson:
|
|
6958
|
+
configJson: {
|
|
6959
|
+
[key: string]: unknown;
|
|
6960
|
+
} | unknown;
|
|
6841
6961
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
6842
6962
|
createdAt: string;
|
|
6843
6963
|
updatedAt: string;
|
|
@@ -6937,7 +7057,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
6937
7057
|
description: string | unknown;
|
|
6938
7058
|
status: 'draft' | 'active' | 'archived';
|
|
6939
7059
|
archivedAt: string | unknown;
|
|
6940
|
-
inputSchemaJson:
|
|
7060
|
+
inputSchemaJson: {
|
|
7061
|
+
[key: string]: unknown;
|
|
7062
|
+
} | unknown;
|
|
6941
7063
|
stepDefinitions: Array<{
|
|
6942
7064
|
id: string;
|
|
6943
7065
|
pipelineDefinitionId: string;
|
|
@@ -6968,7 +7090,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
6968
7090
|
};
|
|
6969
7091
|
} | unknown;
|
|
6970
7092
|
timeoutSeconds: number | unknown;
|
|
6971
|
-
retryPolicyJson:
|
|
7093
|
+
retryPolicyJson: {
|
|
7094
|
+
[key: string]: unknown;
|
|
7095
|
+
} | unknown;
|
|
6972
7096
|
advancementPolicyDefinition: {
|
|
6973
7097
|
id: string;
|
|
6974
7098
|
pipelineStepDefinitionId: string;
|
|
@@ -7017,7 +7141,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
7017
7141
|
}>;
|
|
7018
7142
|
};
|
|
7019
7143
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
7020
|
-
defaultEventParamsJson:
|
|
7144
|
+
defaultEventParamsJson: {
|
|
7145
|
+
[key: string]: unknown;
|
|
7146
|
+
} | unknown;
|
|
7021
7147
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
7022
7148
|
createdAt: string;
|
|
7023
7149
|
updatedAt: string;
|
|
@@ -7027,7 +7153,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
|
|
|
7027
7153
|
key: string;
|
|
7028
7154
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
7029
7155
|
inputSignalKeys: Array<string>;
|
|
7030
|
-
configJson:
|
|
7156
|
+
configJson: {
|
|
7157
|
+
[key: string]: unknown;
|
|
7158
|
+
} | unknown;
|
|
7031
7159
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
7032
7160
|
createdAt: string;
|
|
7033
7161
|
updatedAt: string;
|
|
@@ -9734,7 +9862,9 @@ export type GetApiWorkItemsByWorkItemIdResponses = {
|
|
|
9734
9862
|
description: string;
|
|
9735
9863
|
sourceCreatedAt: string | unknown;
|
|
9736
9864
|
sourceUpdatedAt: string | unknown;
|
|
9737
|
-
fields:
|
|
9865
|
+
fields: {
|
|
9866
|
+
[key: string]: unknown;
|
|
9867
|
+
} | unknown;
|
|
9738
9868
|
createdByUserId: string | unknown;
|
|
9739
9869
|
createdByUsername: string | unknown;
|
|
9740
9870
|
createdByImage: string | unknown;
|
|
@@ -9869,7 +9999,9 @@ export type PatchApiWorkItemsByWorkItemIdResponses = {
|
|
|
9869
9999
|
description: string;
|
|
9870
10000
|
sourceCreatedAt: string | unknown;
|
|
9871
10001
|
sourceUpdatedAt: string | unknown;
|
|
9872
|
-
fields:
|
|
10002
|
+
fields: {
|
|
10003
|
+
[key: string]: unknown;
|
|
10004
|
+
} | unknown;
|
|
9873
10005
|
createdByUserId: string | unknown;
|
|
9874
10006
|
createdByUsername: string | unknown;
|
|
9875
10007
|
createdByImage: string | unknown;
|
|
@@ -9985,7 +10117,9 @@ export type GetApiWorkItemsByWorkItemIdChildrenResponses = {
|
|
|
9985
10117
|
description: string;
|
|
9986
10118
|
sourceCreatedAt: string | unknown;
|
|
9987
10119
|
sourceUpdatedAt: string | unknown;
|
|
9988
|
-
fields:
|
|
10120
|
+
fields: {
|
|
10121
|
+
[key: string]: unknown;
|
|
10122
|
+
} | unknown;
|
|
9989
10123
|
createdByUserId: string | unknown;
|
|
9990
10124
|
createdByUsername: string | unknown;
|
|
9991
10125
|
createdByImage: string | unknown;
|
|
@@ -10006,7 +10140,9 @@ export type PostApiWorkItemsData = {
|
|
|
10006
10140
|
description: string;
|
|
10007
10141
|
sourceCreatedAt: string | unknown;
|
|
10008
10142
|
sourceUpdatedAt: string | unknown;
|
|
10009
|
-
fields:
|
|
10143
|
+
fields: {
|
|
10144
|
+
[key: string]: unknown;
|
|
10145
|
+
} | unknown;
|
|
10010
10146
|
};
|
|
10011
10147
|
path?: never;
|
|
10012
10148
|
query?: never;
|
|
@@ -10142,7 +10278,9 @@ export type PostApiWorkItemsResponses = {
|
|
|
10142
10278
|
description: string;
|
|
10143
10279
|
sourceCreatedAt: string | unknown;
|
|
10144
10280
|
sourceUpdatedAt: string | unknown;
|
|
10145
|
-
fields:
|
|
10281
|
+
fields: {
|
|
10282
|
+
[key: string]: unknown;
|
|
10283
|
+
} | unknown;
|
|
10146
10284
|
createdByUserId: string | unknown;
|
|
10147
10285
|
createdByUsername: string | unknown;
|
|
10148
10286
|
createdByImage: string | unknown;
|
|
@@ -10163,7 +10301,9 @@ export type PutApiWorkItemsData = {
|
|
|
10163
10301
|
description: string;
|
|
10164
10302
|
sourceCreatedAt: string | unknown;
|
|
10165
10303
|
sourceUpdatedAt: string | unknown;
|
|
10166
|
-
fields:
|
|
10304
|
+
fields: {
|
|
10305
|
+
[key: string]: unknown;
|
|
10306
|
+
} | unknown;
|
|
10167
10307
|
};
|
|
10168
10308
|
path?: never;
|
|
10169
10309
|
query?: never;
|
|
@@ -10283,7 +10423,9 @@ export type PutApiWorkItemsResponses = {
|
|
|
10283
10423
|
description: string;
|
|
10284
10424
|
sourceCreatedAt: string | unknown;
|
|
10285
10425
|
sourceUpdatedAt: string | unknown;
|
|
10286
|
-
fields:
|
|
10426
|
+
fields: {
|
|
10427
|
+
[key: string]: unknown;
|
|
10428
|
+
} | unknown;
|
|
10287
10429
|
createdByUserId: string | unknown;
|
|
10288
10430
|
createdByUsername: string | unknown;
|
|
10289
10431
|
createdByImage: string | unknown;
|
|
@@ -10402,7 +10544,9 @@ export type PostApiWorkItemsBatchData = {
|
|
|
10402
10544
|
description: string;
|
|
10403
10545
|
sourceCreatedAt: string | unknown;
|
|
10404
10546
|
sourceUpdatedAt: string | unknown;
|
|
10405
|
-
fields:
|
|
10547
|
+
fields: {
|
|
10548
|
+
[key: string]: unknown;
|
|
10549
|
+
} | unknown;
|
|
10406
10550
|
}>;
|
|
10407
10551
|
path?: never;
|
|
10408
10552
|
query?: never;
|
|
@@ -10538,7 +10682,9 @@ export type PostApiWorkItemsBatchResponses = {
|
|
|
10538
10682
|
description: string;
|
|
10539
10683
|
sourceCreatedAt: string | unknown;
|
|
10540
10684
|
sourceUpdatedAt: string | unknown;
|
|
10541
|
-
fields:
|
|
10685
|
+
fields: {
|
|
10686
|
+
[key: string]: unknown;
|
|
10687
|
+
} | unknown;
|
|
10542
10688
|
createdByUserId: string | unknown;
|
|
10543
10689
|
createdByUsername: string | unknown;
|
|
10544
10690
|
createdByImage: string | unknown;
|
|
@@ -10559,7 +10705,9 @@ export type PutApiWorkItemsBatchData = {
|
|
|
10559
10705
|
description: string;
|
|
10560
10706
|
sourceCreatedAt: string | unknown;
|
|
10561
10707
|
sourceUpdatedAt: string | unknown;
|
|
10562
|
-
fields:
|
|
10708
|
+
fields: {
|
|
10709
|
+
[key: string]: unknown;
|
|
10710
|
+
} | unknown;
|
|
10563
10711
|
}>;
|
|
10564
10712
|
path?: never;
|
|
10565
10713
|
query?: never;
|
|
@@ -10679,7 +10827,9 @@ export type PutApiWorkItemsBatchResponses = {
|
|
|
10679
10827
|
description: string;
|
|
10680
10828
|
sourceCreatedAt: string | unknown;
|
|
10681
10829
|
sourceUpdatedAt: string | unknown;
|
|
10682
|
-
fields:
|
|
10830
|
+
fields: {
|
|
10831
|
+
[key: string]: unknown;
|
|
10832
|
+
} | unknown;
|
|
10683
10833
|
createdByUserId: string | unknown;
|
|
10684
10834
|
createdByUsername: string | unknown;
|
|
10685
10835
|
createdByImage: string | unknown;
|
|
@@ -10813,7 +10963,9 @@ export type PatchApiWorkItemsByWorkItemIdParentResponses = {
|
|
|
10813
10963
|
description: string;
|
|
10814
10964
|
sourceCreatedAt: string | unknown;
|
|
10815
10965
|
sourceUpdatedAt: string | unknown;
|
|
10816
|
-
fields:
|
|
10966
|
+
fields: {
|
|
10967
|
+
[key: string]: unknown;
|
|
10968
|
+
} | unknown;
|
|
10817
10969
|
createdByUserId: string | unknown;
|
|
10818
10970
|
createdByUsername: string | unknown;
|
|
10819
10971
|
createdByImage: string | unknown;
|
|
@@ -12250,7 +12402,9 @@ export type GetApiProjectsByProjectIdNotificationsResponses = {
|
|
|
12250
12402
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12251
12403
|
source: 'agent' | 'system' | 'user';
|
|
12252
12404
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12253
|
-
payloadJson:
|
|
12405
|
+
payloadJson: {
|
|
12406
|
+
[key: string]: unknown;
|
|
12407
|
+
} | unknown;
|
|
12254
12408
|
createdAt: string;
|
|
12255
12409
|
updatedAt: string;
|
|
12256
12410
|
}>;
|
|
@@ -12367,7 +12521,9 @@ export type GetApiProjectsByProjectIdNotificationsByNotificationIdResponses = {
|
|
|
12367
12521
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12368
12522
|
source: 'agent' | 'system' | 'user';
|
|
12369
12523
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12370
|
-
payloadJson:
|
|
12524
|
+
payloadJson: {
|
|
12525
|
+
[key: string]: unknown;
|
|
12526
|
+
} | unknown;
|
|
12371
12527
|
createdAt: string;
|
|
12372
12528
|
updatedAt: string;
|
|
12373
12529
|
deliveries: Array<{
|
|
@@ -12595,7 +12751,9 @@ export type PostApiProjectsByProjectIdNotificationsByNotificationIdRespondRespon
|
|
|
12595
12751
|
priority: 'low' | 'normal' | 'high' | 'urgent';
|
|
12596
12752
|
source: 'agent' | 'system' | 'user';
|
|
12597
12753
|
status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
|
|
12598
|
-
payloadJson:
|
|
12754
|
+
payloadJson: {
|
|
12755
|
+
[key: string]: unknown;
|
|
12756
|
+
} | unknown;
|
|
12599
12757
|
createdAt: string;
|
|
12600
12758
|
updatedAt: string;
|
|
12601
12759
|
};
|
|
@@ -12703,7 +12861,9 @@ export type GetApiProjectsByProjectIdNotificationRulesResponses = {
|
|
|
12703
12861
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12704
12862
|
enabled: boolean;
|
|
12705
12863
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12706
|
-
conditionsJson:
|
|
12864
|
+
conditionsJson: {
|
|
12865
|
+
[key: string]: unknown;
|
|
12866
|
+
} | unknown;
|
|
12707
12867
|
createdAt: string;
|
|
12708
12868
|
updatedAt: string;
|
|
12709
12869
|
}>;
|
|
@@ -12715,7 +12875,9 @@ export type PutApiProjectsByProjectIdNotificationRulesData = {
|
|
|
12715
12875
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12716
12876
|
enabled: boolean;
|
|
12717
12877
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12718
|
-
conditionsJson:
|
|
12878
|
+
conditionsJson: {
|
|
12879
|
+
[key: string]: unknown;
|
|
12880
|
+
} | unknown;
|
|
12719
12881
|
};
|
|
12720
12882
|
path: {
|
|
12721
12883
|
projectId: string;
|
|
@@ -12817,7 +12979,9 @@ export type PutApiProjectsByProjectIdNotificationRulesResponses = {
|
|
|
12817
12979
|
channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
|
|
12818
12980
|
enabled: boolean;
|
|
12819
12981
|
minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
|
|
12820
|
-
conditionsJson:
|
|
12982
|
+
conditionsJson: {
|
|
12983
|
+
[key: string]: unknown;
|
|
12984
|
+
} | unknown;
|
|
12821
12985
|
createdAt: string;
|
|
12822
12986
|
updatedAt: string;
|
|
12823
12987
|
};
|
|
@@ -12874,8 +13038,12 @@ export type GetApiStepDefinitionTemplatesResponses = {
|
|
|
12874
13038
|
name: string;
|
|
12875
13039
|
description: string | unknown;
|
|
12876
13040
|
promptTemplate: string | unknown;
|
|
12877
|
-
inputSchemaJson:
|
|
12878
|
-
|
|
13041
|
+
inputSchemaJson: {
|
|
13042
|
+
[key: string]: unknown;
|
|
13043
|
+
} | unknown;
|
|
13044
|
+
resultSchemaJson: {
|
|
13045
|
+
[key: string]: unknown;
|
|
13046
|
+
} | unknown;
|
|
12879
13047
|
opencodeMcpJson: {
|
|
12880
13048
|
[key: string]: {
|
|
12881
13049
|
type: string;
|
|
@@ -13020,8 +13188,12 @@ export type GetApiStepDefinitionTemplatesByStepDefinitionTemplateIdResponses = {
|
|
|
13020
13188
|
name: string;
|
|
13021
13189
|
description: string | unknown;
|
|
13022
13190
|
promptTemplate: string | unknown;
|
|
13023
|
-
inputSchemaJson:
|
|
13024
|
-
|
|
13191
|
+
inputSchemaJson: {
|
|
13192
|
+
[key: string]: unknown;
|
|
13193
|
+
} | unknown;
|
|
13194
|
+
resultSchemaJson: {
|
|
13195
|
+
[key: string]: unknown;
|
|
13196
|
+
} | unknown;
|
|
13025
13197
|
opencodeMcpJson: {
|
|
13026
13198
|
[key: string]: {
|
|
13027
13199
|
type: string;
|
|
@@ -13224,8 +13396,12 @@ export type PostApiStepDefinitionTemplatesByStepDefinitionTemplateIdInstantiateR
|
|
|
13224
13396
|
version: number;
|
|
13225
13397
|
kind: 'built_in' | 'user_defined';
|
|
13226
13398
|
executionMode: 'workspace' | 'no_workspace';
|
|
13227
|
-
inputSchemaJson:
|
|
13228
|
-
|
|
13399
|
+
inputSchemaJson: {
|
|
13400
|
+
[key: string]: unknown;
|
|
13401
|
+
} | unknown;
|
|
13402
|
+
resultSchemaJson: {
|
|
13403
|
+
[key: string]: unknown;
|
|
13404
|
+
} | unknown;
|
|
13229
13405
|
opencodeMcpJson: {
|
|
13230
13406
|
[key: string]: {
|
|
13231
13407
|
type: string;
|