@boboddy/sdk 0.4.0 → 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.
@@ -333,9 +333,13 @@ export type GetApiProjectsByProjectIdWorkItemsResponses = {
333
333
  description: string;
334
334
  sourceCreatedAt: string | unknown;
335
335
  sourceUpdatedAt: string | unknown;
336
- fields: unknown;
336
+ fields: {
337
+ [key: string]: unknown;
338
+ } | unknown;
339
+ createdByUserId: string | unknown;
337
340
  createdByUsername: string | unknown;
338
341
  createdByImage: string | unknown;
342
+ parentWorkItemId: string | unknown;
339
343
  createdAt: string;
340
344
  updatedAt: string;
341
345
  signalScore: number | unknown;
@@ -1386,8 +1390,12 @@ export type GetApiStepDefinitionsResponses = {
1386
1390
  version: number;
1387
1391
  kind: 'built_in' | 'user_defined';
1388
1392
  executionMode: 'workspace' | 'no_workspace';
1389
- inputSchemaJson: unknown;
1390
- resultSchemaJson: unknown;
1393
+ inputSchemaJson: {
1394
+ [key: string]: unknown;
1395
+ } | unknown;
1396
+ resultSchemaJson: {
1397
+ [key: string]: unknown;
1398
+ } | unknown;
1391
1399
  opencodeMcpJson: {
1392
1400
  [key: string]: {
1393
1401
  type: string;
@@ -1452,8 +1460,12 @@ export type PostApiStepDefinitionsData = {
1452
1460
  version: number;
1453
1461
  kind: 'built_in' | 'user_defined';
1454
1462
  executionMode?: 'workspace' | 'no_workspace';
1455
- inputSchemaJson: unknown;
1456
- resultSchemaJson: unknown;
1463
+ inputSchemaJson: {
1464
+ [key: string]: unknown;
1465
+ } | unknown;
1466
+ resultSchemaJson: {
1467
+ [key: string]: unknown;
1468
+ } | unknown;
1457
1469
  opencodeMcpJson?: {
1458
1470
  [key: string]: {
1459
1471
  type: string;
@@ -1634,8 +1646,12 @@ export type PostApiStepDefinitionsResponses = {
1634
1646
  version: number;
1635
1647
  kind: 'built_in' | 'user_defined';
1636
1648
  executionMode: 'workspace' | 'no_workspace';
1637
- inputSchemaJson: unknown;
1638
- resultSchemaJson: unknown;
1649
+ inputSchemaJson: {
1650
+ [key: string]: unknown;
1651
+ } | unknown;
1652
+ resultSchemaJson: {
1653
+ [key: string]: unknown;
1654
+ } | unknown;
1639
1655
  opencodeMcpJson: {
1640
1656
  [key: string]: {
1641
1657
  type: string;
@@ -1700,8 +1716,12 @@ export type PutApiStepDefinitionsData = {
1700
1716
  version: number;
1701
1717
  kind: 'built_in' | 'user_defined';
1702
1718
  executionMode?: 'workspace' | 'no_workspace';
1703
- inputSchemaJson: unknown;
1704
- resultSchemaJson: unknown;
1719
+ inputSchemaJson: {
1720
+ [key: string]: unknown;
1721
+ } | unknown;
1722
+ resultSchemaJson: {
1723
+ [key: string]: unknown;
1724
+ } | unknown;
1705
1725
  opencodeMcpJson?: {
1706
1726
  [key: string]: {
1707
1727
  type: string;
@@ -1850,8 +1870,12 @@ export type PutApiStepDefinitionsResponses = {
1850
1870
  version: number;
1851
1871
  kind: 'built_in' | 'user_defined';
1852
1872
  executionMode: 'workspace' | 'no_workspace';
1853
- inputSchemaJson: unknown;
1854
- resultSchemaJson: unknown;
1873
+ inputSchemaJson: {
1874
+ [key: string]: unknown;
1875
+ } | unknown;
1876
+ resultSchemaJson: {
1877
+ [key: string]: unknown;
1878
+ } | unknown;
1855
1879
  opencodeMcpJson: {
1856
1880
  [key: string]: {
1857
1881
  type: string;
@@ -2011,8 +2035,12 @@ export type GetApiStepDefinitionsByStepDefinitionIdResponses = {
2011
2035
  version: number;
2012
2036
  kind: 'built_in' | 'user_defined';
2013
2037
  executionMode: 'workspace' | 'no_workspace';
2014
- inputSchemaJson: unknown;
2015
- resultSchemaJson: unknown;
2038
+ inputSchemaJson: {
2039
+ [key: string]: unknown;
2040
+ } | unknown;
2041
+ resultSchemaJson: {
2042
+ [key: string]: unknown;
2043
+ } | unknown;
2016
2044
  opencodeMcpJson: {
2017
2045
  [key: string]: {
2018
2046
  type: string;
@@ -2172,8 +2200,12 @@ export type PutApiStepDefinitionsByStepDefinitionIdArchiveResponses = {
2172
2200
  version: number;
2173
2201
  kind: 'built_in' | 'user_defined';
2174
2202
  executionMode: 'workspace' | 'no_workspace';
2175
- inputSchemaJson: unknown;
2176
- resultSchemaJson: unknown;
2203
+ inputSchemaJson: {
2204
+ [key: string]: unknown;
2205
+ } | unknown;
2206
+ resultSchemaJson: {
2207
+ [key: string]: unknown;
2208
+ } | unknown;
2177
2209
  opencodeMcpJson: {
2178
2210
  [key: string]: {
2179
2211
  type: string;
@@ -4554,7 +4586,9 @@ export type PostApiPipelineDefinitionsData = {
4554
4586
  name: string;
4555
4587
  description: string | unknown;
4556
4588
  status: 'draft' | 'active' | 'archived';
4557
- inputSchemaJson?: unknown;
4589
+ inputSchemaJson?: {
4590
+ [key: string]: unknown;
4591
+ } | unknown;
4558
4592
  stepDefinitions: Array<{
4559
4593
  stepDefinitionId: string;
4560
4594
  stepDefinitionVersion: number;
@@ -4583,7 +4617,9 @@ export type PostApiPipelineDefinitionsData = {
4583
4617
  };
4584
4618
  } | unknown;
4585
4619
  timeoutSeconds: number | unknown;
4586
- retryPolicyJson: unknown;
4620
+ retryPolicyJson: {
4621
+ [key: string]: unknown;
4622
+ } | unknown;
4587
4623
  advancementPolicyDefinition: {
4588
4624
  rulesJson: {
4589
4625
  rules: Array<{
@@ -4630,14 +4666,18 @@ export type PostApiPipelineDefinitionsData = {
4630
4666
  }>;
4631
4667
  };
4632
4668
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
4633
- defaultEventParamsJson: unknown;
4669
+ defaultEventParamsJson: {
4670
+ [key: string]: unknown;
4671
+ } | unknown;
4634
4672
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
4635
4673
  };
4636
4674
  computedSignalDefinitions: Array<{
4637
4675
  key: string;
4638
4676
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
4639
4677
  inputSignalKeys: Array<string>;
4640
- configJson: unknown;
4678
+ configJson: {
4679
+ [key: string]: unknown;
4680
+ } | unknown;
4641
4681
  availableWhenResultStatusIn: Array<string> | unknown;
4642
4682
  }>;
4643
4683
  }>;
@@ -4773,7 +4813,9 @@ export type PostApiPipelineDefinitionsResponses = {
4773
4813
  description: string | unknown;
4774
4814
  status: 'draft' | 'active' | 'archived';
4775
4815
  archivedAt: string | unknown;
4776
- inputSchemaJson: unknown;
4816
+ inputSchemaJson: {
4817
+ [key: string]: unknown;
4818
+ } | unknown;
4777
4819
  stepDefinitions: Array<{
4778
4820
  id: string;
4779
4821
  pipelineDefinitionId: string;
@@ -4804,7 +4846,9 @@ export type PostApiPipelineDefinitionsResponses = {
4804
4846
  };
4805
4847
  } | unknown;
4806
4848
  timeoutSeconds: number | unknown;
4807
- retryPolicyJson: unknown;
4849
+ retryPolicyJson: {
4850
+ [key: string]: unknown;
4851
+ } | unknown;
4808
4852
  advancementPolicyDefinition: {
4809
4853
  id: string;
4810
4854
  pipelineStepDefinitionId: string;
@@ -4853,7 +4897,9 @@ export type PostApiPipelineDefinitionsResponses = {
4853
4897
  }>;
4854
4898
  };
4855
4899
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
4856
- defaultEventParamsJson: unknown;
4900
+ defaultEventParamsJson: {
4901
+ [key: string]: unknown;
4902
+ } | unknown;
4857
4903
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
4858
4904
  createdAt: string;
4859
4905
  updatedAt: string;
@@ -4863,7 +4909,9 @@ export type PostApiPipelineDefinitionsResponses = {
4863
4909
  key: string;
4864
4910
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
4865
4911
  inputSignalKeys: Array<string>;
4866
- configJson: unknown;
4912
+ configJson: {
4913
+ [key: string]: unknown;
4914
+ } | unknown;
4867
4915
  availableWhenResultStatusIn: Array<string> | unknown;
4868
4916
  createdAt: string;
4869
4917
  updatedAt: string;
@@ -4883,7 +4931,9 @@ export type PutApiPipelineDefinitionsData = {
4883
4931
  name: string;
4884
4932
  description: string | unknown;
4885
4933
  status: 'draft' | 'active' | 'archived';
4886
- inputSchemaJson?: unknown;
4934
+ inputSchemaJson?: {
4935
+ [key: string]: unknown;
4936
+ } | unknown;
4887
4937
  stepDefinitions: Array<{
4888
4938
  stepDefinitionId: string;
4889
4939
  stepDefinitionVersion: number;
@@ -4912,7 +4962,9 @@ export type PutApiPipelineDefinitionsData = {
4912
4962
  };
4913
4963
  } | unknown;
4914
4964
  timeoutSeconds: number | unknown;
4915
- retryPolicyJson: unknown;
4965
+ retryPolicyJson: {
4966
+ [key: string]: unknown;
4967
+ } | unknown;
4916
4968
  advancementPolicyDefinition: {
4917
4969
  rulesJson: {
4918
4970
  rules: Array<{
@@ -4959,14 +5011,18 @@ export type PutApiPipelineDefinitionsData = {
4959
5011
  }>;
4960
5012
  };
4961
5013
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
4962
- defaultEventParamsJson: unknown;
5014
+ defaultEventParamsJson: {
5015
+ [key: string]: unknown;
5016
+ } | unknown;
4963
5017
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
4964
5018
  };
4965
5019
  computedSignalDefinitions: Array<{
4966
5020
  key: string;
4967
5021
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
4968
5022
  inputSignalKeys: Array<string>;
4969
- configJson: unknown;
5023
+ configJson: {
5024
+ [key: string]: unknown;
5025
+ } | unknown;
4970
5026
  availableWhenResultStatusIn: Array<string> | unknown;
4971
5027
  }>;
4972
5028
  }>;
@@ -5054,7 +5110,9 @@ export type PutApiPipelineDefinitionsResponses = {
5054
5110
  description: string | unknown;
5055
5111
  status: 'draft' | 'active' | 'archived';
5056
5112
  archivedAt: string | unknown;
5057
- inputSchemaJson: unknown;
5113
+ inputSchemaJson: {
5114
+ [key: string]: unknown;
5115
+ } | unknown;
5058
5116
  stepDefinitions: Array<{
5059
5117
  id: string;
5060
5118
  pipelineDefinitionId: string;
@@ -5085,7 +5143,9 @@ export type PutApiPipelineDefinitionsResponses = {
5085
5143
  };
5086
5144
  } | unknown;
5087
5145
  timeoutSeconds: number | unknown;
5088
- retryPolicyJson: unknown;
5146
+ retryPolicyJson: {
5147
+ [key: string]: unknown;
5148
+ } | unknown;
5089
5149
  advancementPolicyDefinition: {
5090
5150
  id: string;
5091
5151
  pipelineStepDefinitionId: string;
@@ -5134,7 +5194,9 @@ export type PutApiPipelineDefinitionsResponses = {
5134
5194
  }>;
5135
5195
  };
5136
5196
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
5137
- defaultEventParamsJson: unknown;
5197
+ defaultEventParamsJson: {
5198
+ [key: string]: unknown;
5199
+ } | unknown;
5138
5200
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
5139
5201
  createdAt: string;
5140
5202
  updatedAt: string;
@@ -5144,7 +5206,9 @@ export type PutApiPipelineDefinitionsResponses = {
5144
5206
  key: string;
5145
5207
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
5146
5208
  inputSignalKeys: Array<string>;
5147
- configJson: unknown;
5209
+ configJson: {
5210
+ [key: string]: unknown;
5211
+ } | unknown;
5148
5212
  availableWhenResultStatusIn: Array<string> | unknown;
5149
5213
  createdAt: string;
5150
5214
  updatedAt: string;
@@ -5260,7 +5324,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
5260
5324
  description: string | unknown;
5261
5325
  status: 'draft' | 'active' | 'archived';
5262
5326
  archivedAt: string | unknown;
5263
- inputSchemaJson: unknown;
5327
+ inputSchemaJson: {
5328
+ [key: string]: unknown;
5329
+ } | unknown;
5264
5330
  stepDefinitions: Array<{
5265
5331
  id: string;
5266
5332
  pipelineDefinitionId: string;
@@ -5291,7 +5357,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
5291
5357
  };
5292
5358
  } | unknown;
5293
5359
  timeoutSeconds: number | unknown;
5294
- retryPolicyJson: unknown;
5360
+ retryPolicyJson: {
5361
+ [key: string]: unknown;
5362
+ } | unknown;
5295
5363
  advancementPolicyDefinition: {
5296
5364
  id: string;
5297
5365
  pipelineStepDefinitionId: string;
@@ -5340,7 +5408,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
5340
5408
  }>;
5341
5409
  };
5342
5410
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
5343
- defaultEventParamsJson: unknown;
5411
+ defaultEventParamsJson: {
5412
+ [key: string]: unknown;
5413
+ } | unknown;
5344
5414
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
5345
5415
  createdAt: string;
5346
5416
  updatedAt: string;
@@ -5350,7 +5420,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdArchiveResponses = {
5350
5420
  key: string;
5351
5421
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
5352
5422
  inputSignalKeys: Array<string>;
5353
- configJson: unknown;
5423
+ configJson: {
5424
+ [key: string]: unknown;
5425
+ } | unknown;
5354
5426
  availableWhenResultStatusIn: Array<string> | unknown;
5355
5427
  createdAt: string;
5356
5428
  updatedAt: string;
@@ -5466,7 +5538,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
5466
5538
  description: string | unknown;
5467
5539
  status: 'draft' | 'active' | 'archived';
5468
5540
  archivedAt: string | unknown;
5469
- inputSchemaJson: unknown;
5541
+ inputSchemaJson: {
5542
+ [key: string]: unknown;
5543
+ } | unknown;
5470
5544
  stepDefinitions: Array<{
5471
5545
  id: string;
5472
5546
  pipelineDefinitionId: string;
@@ -5497,7 +5571,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
5497
5571
  };
5498
5572
  } | unknown;
5499
5573
  timeoutSeconds: number | unknown;
5500
- retryPolicyJson: unknown;
5574
+ retryPolicyJson: {
5575
+ [key: string]: unknown;
5576
+ } | unknown;
5501
5577
  advancementPolicyDefinition: {
5502
5578
  id: string;
5503
5579
  pipelineStepDefinitionId: string;
@@ -5546,7 +5622,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
5546
5622
  }>;
5547
5623
  };
5548
5624
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
5549
- defaultEventParamsJson: unknown;
5625
+ defaultEventParamsJson: {
5626
+ [key: string]: unknown;
5627
+ } | unknown;
5550
5628
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
5551
5629
  createdAt: string;
5552
5630
  updatedAt: string;
@@ -5556,7 +5634,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdUnarchiveResponses =
5556
5634
  key: string;
5557
5635
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
5558
5636
  inputSignalKeys: Array<string>;
5559
- configJson: unknown;
5637
+ configJson: {
5638
+ [key: string]: unknown;
5639
+ } | unknown;
5560
5640
  availableWhenResultStatusIn: Array<string> | unknown;
5561
5641
  createdAt: string;
5562
5642
  updatedAt: string;
@@ -5763,7 +5843,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
5763
5843
  description: string | unknown;
5764
5844
  status: 'draft' | 'active' | 'archived';
5765
5845
  archivedAt: string | unknown;
5766
- inputSchemaJson: unknown;
5846
+ inputSchemaJson: {
5847
+ [key: string]: unknown;
5848
+ } | unknown;
5767
5849
  stepDefinitions: Array<{
5768
5850
  id: string;
5769
5851
  pipelineDefinitionId: string;
@@ -5794,7 +5876,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
5794
5876
  };
5795
5877
  } | unknown;
5796
5878
  timeoutSeconds: number | unknown;
5797
- retryPolicyJson: unknown;
5879
+ retryPolicyJson: {
5880
+ [key: string]: unknown;
5881
+ } | unknown;
5798
5882
  advancementPolicyDefinition: {
5799
5883
  id: string;
5800
5884
  pipelineStepDefinitionId: string;
@@ -5843,7 +5927,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
5843
5927
  }>;
5844
5928
  };
5845
5929
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
5846
- defaultEventParamsJson: unknown;
5930
+ defaultEventParamsJson: {
5931
+ [key: string]: unknown;
5932
+ } | unknown;
5847
5933
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
5848
5934
  createdAt: string;
5849
5935
  updatedAt: string;
@@ -5853,7 +5939,9 @@ export type PostApiPipelineDefinitionsByPipelineDefinitionIdStepsResponses = {
5853
5939
  key: string;
5854
5940
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
5855
5941
  inputSignalKeys: Array<string>;
5856
- configJson: unknown;
5942
+ configJson: {
5943
+ [key: string]: unknown;
5944
+ } | unknown;
5857
5945
  availableWhenResultStatusIn: Array<string> | unknown;
5858
5946
  createdAt: string;
5859
5947
  updatedAt: string;
@@ -5970,7 +6058,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
5970
6058
  description: string | unknown;
5971
6059
  status: 'draft' | 'active' | 'archived';
5972
6060
  archivedAt: string | unknown;
5973
- inputSchemaJson: unknown;
6061
+ inputSchemaJson: {
6062
+ [key: string]: unknown;
6063
+ } | unknown;
5974
6064
  stepDefinitions: Array<{
5975
6065
  id: string;
5976
6066
  pipelineDefinitionId: string;
@@ -6001,7 +6091,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
6001
6091
  };
6002
6092
  } | unknown;
6003
6093
  timeoutSeconds: number | unknown;
6004
- retryPolicyJson: unknown;
6094
+ retryPolicyJson: {
6095
+ [key: string]: unknown;
6096
+ } | unknown;
6005
6097
  advancementPolicyDefinition: {
6006
6098
  id: string;
6007
6099
  pipelineStepDefinitionId: string;
@@ -6050,7 +6142,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
6050
6142
  }>;
6051
6143
  };
6052
6144
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
6053
- defaultEventParamsJson: unknown;
6145
+ defaultEventParamsJson: {
6146
+ [key: string]: unknown;
6147
+ } | unknown;
6054
6148
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
6055
6149
  createdAt: string;
6056
6150
  updatedAt: string;
@@ -6060,7 +6154,9 @@ export type DeleteApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineSte
6060
6154
  key: string;
6061
6155
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
6062
6156
  inputSignalKeys: Array<string>;
6063
- configJson: unknown;
6157
+ configJson: {
6158
+ [key: string]: unknown;
6159
+ } | unknown;
6064
6160
  availableWhenResultStatusIn: Array<string> | unknown;
6065
6161
  createdAt: string;
6066
6162
  updatedAt: string;
@@ -6268,7 +6364,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6268
6364
  description: string | unknown;
6269
6365
  status: 'draft' | 'active' | 'archived';
6270
6366
  archivedAt: string | unknown;
6271
- inputSchemaJson: unknown;
6367
+ inputSchemaJson: {
6368
+ [key: string]: unknown;
6369
+ } | unknown;
6272
6370
  stepDefinitions: Array<{
6273
6371
  id: string;
6274
6372
  pipelineDefinitionId: string;
@@ -6299,7 +6397,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6299
6397
  };
6300
6398
  } | unknown;
6301
6399
  timeoutSeconds: number | unknown;
6302
- retryPolicyJson: unknown;
6400
+ retryPolicyJson: {
6401
+ [key: string]: unknown;
6402
+ } | unknown;
6303
6403
  advancementPolicyDefinition: {
6304
6404
  id: string;
6305
6405
  pipelineStepDefinitionId: string;
@@ -6348,7 +6448,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6348
6448
  }>;
6349
6449
  };
6350
6450
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
6351
- defaultEventParamsJson: unknown;
6451
+ defaultEventParamsJson: {
6452
+ [key: string]: unknown;
6453
+ } | unknown;
6352
6454
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
6353
6455
  createdAt: string;
6354
6456
  updatedAt: string;
@@ -6358,7 +6460,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6358
6460
  key: string;
6359
6461
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
6360
6462
  inputSignalKeys: Array<string>;
6361
- configJson: unknown;
6463
+ configJson: {
6464
+ [key: string]: unknown;
6465
+ } | unknown;
6362
6466
  availableWhenResultStatusIn: Array<string> | unknown;
6363
6467
  createdAt: string;
6364
6468
  updatedAt: string;
@@ -6418,7 +6522,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6418
6522
  }>;
6419
6523
  };
6420
6524
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
6421
- defaultEventParamsJson: unknown;
6525
+ defaultEventParamsJson: {
6526
+ [key: string]: unknown;
6527
+ } | unknown;
6422
6528
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
6423
6529
  };
6424
6530
  path: {
@@ -6523,7 +6629,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6523
6629
  description: string | unknown;
6524
6630
  status: 'draft' | 'active' | 'archived';
6525
6631
  archivedAt: string | unknown;
6526
- inputSchemaJson: unknown;
6632
+ inputSchemaJson: {
6633
+ [key: string]: unknown;
6634
+ } | unknown;
6527
6635
  stepDefinitions: Array<{
6528
6636
  id: string;
6529
6637
  pipelineDefinitionId: string;
@@ -6554,7 +6662,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6554
6662
  };
6555
6663
  } | unknown;
6556
6664
  timeoutSeconds: number | unknown;
6557
- retryPolicyJson: unknown;
6665
+ retryPolicyJson: {
6666
+ [key: string]: unknown;
6667
+ } | unknown;
6558
6668
  advancementPolicyDefinition: {
6559
6669
  id: string;
6560
6670
  pipelineStepDefinitionId: string;
@@ -6603,7 +6713,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6603
6713
  }>;
6604
6714
  };
6605
6715
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
6606
- defaultEventParamsJson: unknown;
6716
+ defaultEventParamsJson: {
6717
+ [key: string]: unknown;
6718
+ } | unknown;
6607
6719
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
6608
6720
  createdAt: string;
6609
6721
  updatedAt: string;
@@ -6613,7 +6725,9 @@ export type PutApiPipelineDefinitionsByPipelineDefinitionIdStepsByPipelineStepDe
6613
6725
  key: string;
6614
6726
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
6615
6727
  inputSignalKeys: Array<string>;
6616
- configJson: unknown;
6728
+ configJson: {
6729
+ [key: string]: unknown;
6730
+ } | unknown;
6617
6731
  availableWhenResultStatusIn: Array<string> | unknown;
6618
6732
  createdAt: string;
6619
6733
  updatedAt: string;
@@ -6745,7 +6859,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
6745
6859
  description: string | unknown;
6746
6860
  status: 'draft' | 'active' | 'archived';
6747
6861
  archivedAt: string | unknown;
6748
- inputSchemaJson: unknown;
6862
+ inputSchemaJson: {
6863
+ [key: string]: unknown;
6864
+ } | unknown;
6749
6865
  stepDefinitions: Array<{
6750
6866
  id: string;
6751
6867
  pipelineDefinitionId: string;
@@ -6776,7 +6892,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
6776
6892
  };
6777
6893
  } | unknown;
6778
6894
  timeoutSeconds: number | unknown;
6779
- retryPolicyJson: unknown;
6895
+ retryPolicyJson: {
6896
+ [key: string]: unknown;
6897
+ } | unknown;
6780
6898
  advancementPolicyDefinition: {
6781
6899
  id: string;
6782
6900
  pipelineStepDefinitionId: string;
@@ -6825,7 +6943,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
6825
6943
  }>;
6826
6944
  };
6827
6945
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
6828
- defaultEventParamsJson: unknown;
6946
+ defaultEventParamsJson: {
6947
+ [key: string]: unknown;
6948
+ } | unknown;
6829
6949
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
6830
6950
  createdAt: string;
6831
6951
  updatedAt: string;
@@ -6835,7 +6955,9 @@ export type GetApiPipelineDefinitionsByPipelineDefinitionIdResponses = {
6835
6955
  key: string;
6836
6956
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
6837
6957
  inputSignalKeys: Array<string>;
6838
- configJson: unknown;
6958
+ configJson: {
6959
+ [key: string]: unknown;
6960
+ } | unknown;
6839
6961
  availableWhenResultStatusIn: Array<string> | unknown;
6840
6962
  createdAt: string;
6841
6963
  updatedAt: string;
@@ -6935,7 +7057,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
6935
7057
  description: string | unknown;
6936
7058
  status: 'draft' | 'active' | 'archived';
6937
7059
  archivedAt: string | unknown;
6938
- inputSchemaJson: unknown;
7060
+ inputSchemaJson: {
7061
+ [key: string]: unknown;
7062
+ } | unknown;
6939
7063
  stepDefinitions: Array<{
6940
7064
  id: string;
6941
7065
  pipelineDefinitionId: string;
@@ -6966,7 +7090,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
6966
7090
  };
6967
7091
  } | unknown;
6968
7092
  timeoutSeconds: number | unknown;
6969
- retryPolicyJson: unknown;
7093
+ retryPolicyJson: {
7094
+ [key: string]: unknown;
7095
+ } | unknown;
6970
7096
  advancementPolicyDefinition: {
6971
7097
  id: string;
6972
7098
  pipelineStepDefinitionId: string;
@@ -7015,7 +7141,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
7015
7141
  }>;
7016
7142
  };
7017
7143
  defaultEventType: 'continue' | 'block' | 'complete' | 'route';
7018
- defaultEventParamsJson: unknown;
7144
+ defaultEventParamsJson: {
7145
+ [key: string]: unknown;
7146
+ } | unknown;
7019
7147
  allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
7020
7148
  createdAt: string;
7021
7149
  updatedAt: string;
@@ -7025,7 +7153,9 @@ export type GetApiProjectsByProjectIdPipelineDefinitionsResponses = {
7025
7153
  key: string;
7026
7154
  type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
7027
7155
  inputSignalKeys: Array<string>;
7028
- configJson: unknown;
7156
+ configJson: {
7157
+ [key: string]: unknown;
7158
+ } | unknown;
7029
7159
  availableWhenResultStatusIn: Array<string> | unknown;
7030
7160
  createdAt: string;
7031
7161
  updatedAt: string;
@@ -8775,6 +8905,107 @@ export type PutApiPipelineExecutionsByPipelineExecutionIdCancelResponses = {
8775
8905
  };
8776
8906
  };
8777
8907
  export type PutApiPipelineExecutionsByPipelineExecutionIdCancelResponse = PutApiPipelineExecutionsByPipelineExecutionIdCancelResponses[keyof PutApiPipelineExecutionsByPipelineExecutionIdCancelResponses];
8908
+ export type PutApiPipelineExecutionsBatchCancelData = {
8909
+ body: {
8910
+ input: Array<string>;
8911
+ };
8912
+ path?: never;
8913
+ query?: never;
8914
+ url: '/api/pipeline-executions/batch/cancel';
8915
+ };
8916
+ export type PutApiPipelineExecutionsBatchCancelErrors = {
8917
+ /**
8918
+ * Response for status 401
8919
+ */
8920
+ 401: {
8921
+ type: string;
8922
+ title: string;
8923
+ status: number;
8924
+ detail?: string;
8925
+ instance?: string;
8926
+ code?: string;
8927
+ errors?: Array<{
8928
+ path: string;
8929
+ message: string;
8930
+ summary?: string;
8931
+ }>;
8932
+ };
8933
+ /**
8934
+ * Response for status 403
8935
+ */
8936
+ 403: {
8937
+ type: string;
8938
+ title: string;
8939
+ status: number;
8940
+ detail?: string;
8941
+ instance?: string;
8942
+ code?: string;
8943
+ errors?: Array<{
8944
+ path: string;
8945
+ message: string;
8946
+ summary?: string;
8947
+ }>;
8948
+ };
8949
+ /**
8950
+ * Response for status 404
8951
+ */
8952
+ 404: {
8953
+ type: string;
8954
+ title: string;
8955
+ status: number;
8956
+ detail?: string;
8957
+ instance?: string;
8958
+ code?: string;
8959
+ errors?: Array<{
8960
+ path: string;
8961
+ message: string;
8962
+ summary?: string;
8963
+ }>;
8964
+ };
8965
+ /**
8966
+ * Response for status 422
8967
+ */
8968
+ 422: {
8969
+ type: string;
8970
+ title: string;
8971
+ status: number;
8972
+ detail?: string;
8973
+ instance?: string;
8974
+ code?: string;
8975
+ errors?: Array<{
8976
+ path: string;
8977
+ message: string;
8978
+ summary?: string;
8979
+ }>;
8980
+ };
8981
+ /**
8982
+ * Response for status 500
8983
+ */
8984
+ 500: {
8985
+ type: string;
8986
+ title: string;
8987
+ status: number;
8988
+ detail?: string;
8989
+ instance?: string;
8990
+ code?: string;
8991
+ errors?: Array<{
8992
+ path: string;
8993
+ message: string;
8994
+ summary?: string;
8995
+ }>;
8996
+ };
8997
+ };
8998
+ export type PutApiPipelineExecutionsBatchCancelError = PutApiPipelineExecutionsBatchCancelErrors[keyof PutApiPipelineExecutionsBatchCancelErrors];
8999
+ export type PutApiPipelineExecutionsBatchCancelResponses = {
9000
+ /**
9001
+ * Response for status 200
9002
+ */
9003
+ 200: {
9004
+ cancelledIds: Array<string>;
9005
+ skippedIds: Array<string>;
9006
+ };
9007
+ };
9008
+ export type PutApiPipelineExecutionsBatchCancelResponse = PutApiPipelineExecutionsBatchCancelResponses[keyof PutApiPipelineExecutionsBatchCancelResponses];
8778
9009
  export type GetApiPipelineExecutionsByPipelineExecutionIdData = {
8779
9010
  body?: never;
8780
9011
  path: {
@@ -9631,32 +9862,30 @@ export type GetApiWorkItemsByWorkItemIdResponses = {
9631
9862
  description: string;
9632
9863
  sourceCreatedAt: string | unknown;
9633
9864
  sourceUpdatedAt: string | unknown;
9634
- fields: unknown;
9865
+ fields: {
9866
+ [key: string]: unknown;
9867
+ } | unknown;
9868
+ createdByUserId: string | unknown;
9635
9869
  createdByUsername: string | unknown;
9636
9870
  createdByImage: string | unknown;
9871
+ parentWorkItemId: string | unknown;
9637
9872
  createdAt: string;
9638
9873
  updatedAt: string;
9639
9874
  };
9640
9875
  };
9641
9876
  export type GetApiWorkItemsByWorkItemIdResponse = GetApiWorkItemsByWorkItemIdResponses[keyof GetApiWorkItemsByWorkItemIdResponses];
9642
- export type PostApiWorkItemsData = {
9877
+ export type PatchApiWorkItemsByWorkItemIdData = {
9643
9878
  body: {
9644
- projectId: string;
9645
- platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
9646
- platformId?: string | unknown;
9647
- platformKey: string;
9648
- url?: string | unknown;
9649
9879
  title: string;
9650
9880
  description: string;
9651
- sourceCreatedAt: string | unknown;
9652
- sourceUpdatedAt: string | unknown;
9653
- fields: unknown;
9654
9881
  };
9655
- path?: never;
9882
+ path: {
9883
+ workItemId: string;
9884
+ };
9656
9885
  query?: never;
9657
- url: '/api/work-items';
9886
+ url: '/api/work-items/{workItemId}';
9658
9887
  };
9659
- export type PostApiWorkItemsErrors = {
9888
+ export type PatchApiWorkItemsByWorkItemIdErrors = {
9660
9889
  /**
9661
9890
  * Response for status 400
9662
9891
  */
@@ -9721,22 +9950,6 @@ export type PostApiWorkItemsErrors = {
9721
9950
  summary?: string;
9722
9951
  }>;
9723
9952
  };
9724
- /**
9725
- * Response for status 409
9726
- */
9727
- 409: {
9728
- type: string;
9729
- title: string;
9730
- status: number;
9731
- detail?: string;
9732
- instance?: string;
9733
- code?: string;
9734
- errors?: Array<{
9735
- path: string;
9736
- message: string;
9737
- summary?: string;
9738
- }>;
9739
- };
9740
9953
  /**
9741
9954
  * Response for status 422
9742
9955
  */
@@ -9770,8 +9983,8 @@ export type PostApiWorkItemsErrors = {
9770
9983
  }>;
9771
9984
  };
9772
9985
  };
9773
- export type PostApiWorkItemsError = PostApiWorkItemsErrors[keyof PostApiWorkItemsErrors];
9774
- export type PostApiWorkItemsResponses = {
9986
+ export type PatchApiWorkItemsByWorkItemIdError = PatchApiWorkItemsByWorkItemIdErrors[keyof PatchApiWorkItemsByWorkItemIdErrors];
9987
+ export type PatchApiWorkItemsByWorkItemIdResponses = {
9775
9988
  /**
9776
9989
  * Response for status 200
9777
9990
  */
@@ -9786,15 +9999,137 @@ export type PostApiWorkItemsResponses = {
9786
9999
  description: string;
9787
10000
  sourceCreatedAt: string | unknown;
9788
10001
  sourceUpdatedAt: string | unknown;
9789
- fields: unknown;
10002
+ fields: {
10003
+ [key: string]: unknown;
10004
+ } | unknown;
10005
+ createdByUserId: string | unknown;
9790
10006
  createdByUsername: string | unknown;
9791
10007
  createdByImage: string | unknown;
10008
+ parentWorkItemId: string | unknown;
9792
10009
  createdAt: string;
9793
10010
  updatedAt: string;
9794
10011
  };
9795
10012
  };
9796
- export type PostApiWorkItemsResponse = PostApiWorkItemsResponses[keyof PostApiWorkItemsResponses];
9797
- export type PutApiWorkItemsData = {
10013
+ export type PatchApiWorkItemsByWorkItemIdResponse = PatchApiWorkItemsByWorkItemIdResponses[keyof PatchApiWorkItemsByWorkItemIdResponses];
10014
+ export type GetApiWorkItemsByWorkItemIdChildrenData = {
10015
+ body?: never;
10016
+ path: {
10017
+ workItemId: string;
10018
+ };
10019
+ query?: never;
10020
+ url: '/api/work-items/{workItemId}/children';
10021
+ };
10022
+ export type GetApiWorkItemsByWorkItemIdChildrenErrors = {
10023
+ /**
10024
+ * Response for status 401
10025
+ */
10026
+ 401: {
10027
+ type: string;
10028
+ title: string;
10029
+ status: number;
10030
+ detail?: string;
10031
+ instance?: string;
10032
+ code?: string;
10033
+ errors?: Array<{
10034
+ path: string;
10035
+ message: string;
10036
+ summary?: string;
10037
+ }>;
10038
+ };
10039
+ /**
10040
+ * Response for status 403
10041
+ */
10042
+ 403: {
10043
+ type: string;
10044
+ title: string;
10045
+ status: number;
10046
+ detail?: string;
10047
+ instance?: string;
10048
+ code?: string;
10049
+ errors?: Array<{
10050
+ path: string;
10051
+ message: string;
10052
+ summary?: string;
10053
+ }>;
10054
+ };
10055
+ /**
10056
+ * Response for status 404
10057
+ */
10058
+ 404: {
10059
+ type: string;
10060
+ title: string;
10061
+ status: number;
10062
+ detail?: string;
10063
+ instance?: string;
10064
+ code?: string;
10065
+ errors?: Array<{
10066
+ path: string;
10067
+ message: string;
10068
+ summary?: string;
10069
+ }>;
10070
+ };
10071
+ /**
10072
+ * Response for status 422
10073
+ */
10074
+ 422: {
10075
+ type: string;
10076
+ title: string;
10077
+ status: number;
10078
+ detail?: string;
10079
+ instance?: string;
10080
+ code?: string;
10081
+ errors?: Array<{
10082
+ path: string;
10083
+ message: string;
10084
+ summary?: string;
10085
+ }>;
10086
+ };
10087
+ /**
10088
+ * Response for status 500
10089
+ */
10090
+ 500: {
10091
+ type: string;
10092
+ title: string;
10093
+ status: number;
10094
+ detail?: string;
10095
+ instance?: string;
10096
+ code?: string;
10097
+ errors?: Array<{
10098
+ path: string;
10099
+ message: string;
10100
+ summary?: string;
10101
+ }>;
10102
+ };
10103
+ };
10104
+ export type GetApiWorkItemsByWorkItemIdChildrenError = GetApiWorkItemsByWorkItemIdChildrenErrors[keyof GetApiWorkItemsByWorkItemIdChildrenErrors];
10105
+ export type GetApiWorkItemsByWorkItemIdChildrenResponses = {
10106
+ /**
10107
+ * Response for status 200
10108
+ */
10109
+ 200: Array<{
10110
+ id: string;
10111
+ projectId: string;
10112
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10113
+ platformId?: string | unknown;
10114
+ platformKey: string;
10115
+ url?: string | unknown;
10116
+ title: string;
10117
+ description: string;
10118
+ sourceCreatedAt: string | unknown;
10119
+ sourceUpdatedAt: string | unknown;
10120
+ fields: {
10121
+ [key: string]: unknown;
10122
+ } | unknown;
10123
+ createdByUserId: string | unknown;
10124
+ createdByUsername: string | unknown;
10125
+ createdByImage: string | unknown;
10126
+ parentWorkItemId: string | unknown;
10127
+ createdAt: string;
10128
+ updatedAt: string;
10129
+ }>;
10130
+ };
10131
+ export type GetApiWorkItemsByWorkItemIdChildrenResponse = GetApiWorkItemsByWorkItemIdChildrenResponses[keyof GetApiWorkItemsByWorkItemIdChildrenResponses];
10132
+ export type PostApiWorkItemsData = {
9798
10133
  body: {
9799
10134
  projectId: string;
9800
10135
  platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
@@ -9805,13 +10140,15 @@ export type PutApiWorkItemsData = {
9805
10140
  description: string;
9806
10141
  sourceCreatedAt: string | unknown;
9807
10142
  sourceUpdatedAt: string | unknown;
9808
- fields: unknown;
10143
+ fields: {
10144
+ [key: string]: unknown;
10145
+ } | unknown;
9809
10146
  };
9810
10147
  path?: never;
9811
10148
  query?: never;
9812
10149
  url: '/api/work-items';
9813
10150
  };
9814
- export type PutApiWorkItemsErrors = {
10151
+ export type PostApiWorkItemsErrors = {
9815
10152
  /**
9816
10153
  * Response for status 400
9817
10154
  */
@@ -9876,6 +10213,22 @@ export type PutApiWorkItemsErrors = {
9876
10213
  summary?: string;
9877
10214
  }>;
9878
10215
  };
10216
+ /**
10217
+ * Response for status 409
10218
+ */
10219
+ 409: {
10220
+ type: string;
10221
+ title: string;
10222
+ status: number;
10223
+ detail?: string;
10224
+ instance?: string;
10225
+ code?: string;
10226
+ errors?: Array<{
10227
+ path: string;
10228
+ message: string;
10229
+ summary?: string;
10230
+ }>;
10231
+ };
9879
10232
  /**
9880
10233
  * Response for status 422
9881
10234
  */
@@ -9909,8 +10262,8 @@ export type PutApiWorkItemsErrors = {
9909
10262
  }>;
9910
10263
  };
9911
10264
  };
9912
- export type PutApiWorkItemsError = PutApiWorkItemsErrors[keyof PutApiWorkItemsErrors];
9913
- export type PutApiWorkItemsResponses = {
10265
+ export type PostApiWorkItemsError = PostApiWorkItemsErrors[keyof PostApiWorkItemsErrors];
10266
+ export type PostApiWorkItemsResponses = {
9914
10267
  /**
9915
10268
  * Response for status 200
9916
10269
  */
@@ -9925,23 +10278,54 @@ export type PutApiWorkItemsResponses = {
9925
10278
  description: string;
9926
10279
  sourceCreatedAt: string | unknown;
9927
10280
  sourceUpdatedAt: string | unknown;
9928
- fields: unknown;
10281
+ fields: {
10282
+ [key: string]: unknown;
10283
+ } | unknown;
10284
+ createdByUserId: string | unknown;
9929
10285
  createdByUsername: string | unknown;
9930
10286
  createdByImage: string | unknown;
10287
+ parentWorkItemId: string | unknown;
9931
10288
  createdAt: string;
9932
10289
  updatedAt: string;
9933
10290
  };
9934
10291
  };
9935
- export type PutApiWorkItemsResponse = PutApiWorkItemsResponses[keyof PutApiWorkItemsResponses];
9936
- export type DeleteApiWorkItemsBatchData = {
10292
+ export type PostApiWorkItemsResponse = PostApiWorkItemsResponses[keyof PostApiWorkItemsResponses];
10293
+ export type PutApiWorkItemsData = {
9937
10294
  body: {
9938
- input: Array<string>;
10295
+ projectId: string;
10296
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10297
+ platformId?: string | unknown;
10298
+ platformKey: string;
10299
+ url?: string | unknown;
10300
+ title: string;
10301
+ description: string;
10302
+ sourceCreatedAt: string | unknown;
10303
+ sourceUpdatedAt: string | unknown;
10304
+ fields: {
10305
+ [key: string]: unknown;
10306
+ } | unknown;
9939
10307
  };
9940
10308
  path?: never;
9941
10309
  query?: never;
9942
- url: '/api/work-items/batch';
10310
+ url: '/api/work-items';
9943
10311
  };
9944
- export type DeleteApiWorkItemsBatchErrors = {
10312
+ export type PutApiWorkItemsErrors = {
10313
+ /**
10314
+ * Response for status 400
10315
+ */
10316
+ 400: {
10317
+ type: string;
10318
+ title: string;
10319
+ status: number;
10320
+ detail?: string;
10321
+ instance?: string;
10322
+ code?: string;
10323
+ errors?: Array<{
10324
+ path: string;
10325
+ message: string;
10326
+ summary?: string;
10327
+ }>;
10328
+ };
9945
10329
  /**
9946
10330
  * Response for status 401
9947
10331
  */
@@ -10023,32 +10407,709 @@ export type DeleteApiWorkItemsBatchErrors = {
10023
10407
  }>;
10024
10408
  };
10025
10409
  };
10026
- export type DeleteApiWorkItemsBatchError = DeleteApiWorkItemsBatchErrors[keyof DeleteApiWorkItemsBatchErrors];
10027
- export type DeleteApiWorkItemsBatchResponses = {
10410
+ export type PutApiWorkItemsError = PutApiWorkItemsErrors[keyof PutApiWorkItemsErrors];
10411
+ export type PutApiWorkItemsResponses = {
10412
+ /**
10413
+ * Response for status 200
10414
+ */
10415
+ 200: {
10416
+ id: string;
10417
+ projectId: string;
10418
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10419
+ platformId?: string | unknown;
10420
+ platformKey: string;
10421
+ url?: string | unknown;
10422
+ title: string;
10423
+ description: string;
10424
+ sourceCreatedAt: string | unknown;
10425
+ sourceUpdatedAt: string | unknown;
10426
+ fields: {
10427
+ [key: string]: unknown;
10428
+ } | unknown;
10429
+ createdByUserId: string | unknown;
10430
+ createdByUsername: string | unknown;
10431
+ createdByImage: string | unknown;
10432
+ parentWorkItemId: string | unknown;
10433
+ createdAt: string;
10434
+ updatedAt: string;
10435
+ };
10436
+ };
10437
+ export type PutApiWorkItemsResponse = PutApiWorkItemsResponses[keyof PutApiWorkItemsResponses];
10438
+ export type DeleteApiWorkItemsBatchData = {
10439
+ body: {
10440
+ input: Array<string>;
10441
+ };
10442
+ path?: never;
10443
+ query?: never;
10444
+ url: '/api/work-items/batch';
10445
+ };
10446
+ export type DeleteApiWorkItemsBatchErrors = {
10447
+ /**
10448
+ * Response for status 401
10449
+ */
10450
+ 401: {
10451
+ type: string;
10452
+ title: string;
10453
+ status: number;
10454
+ detail?: string;
10455
+ instance?: string;
10456
+ code?: string;
10457
+ errors?: Array<{
10458
+ path: string;
10459
+ message: string;
10460
+ summary?: string;
10461
+ }>;
10462
+ };
10463
+ /**
10464
+ * Response for status 403
10465
+ */
10466
+ 403: {
10467
+ type: string;
10468
+ title: string;
10469
+ status: number;
10470
+ detail?: string;
10471
+ instance?: string;
10472
+ code?: string;
10473
+ errors?: Array<{
10474
+ path: string;
10475
+ message: string;
10476
+ summary?: string;
10477
+ }>;
10478
+ };
10479
+ /**
10480
+ * Response for status 404
10481
+ */
10482
+ 404: {
10483
+ type: string;
10484
+ title: string;
10485
+ status: number;
10486
+ detail?: string;
10487
+ instance?: string;
10488
+ code?: string;
10489
+ errors?: Array<{
10490
+ path: string;
10491
+ message: string;
10492
+ summary?: string;
10493
+ }>;
10494
+ };
10495
+ /**
10496
+ * Response for status 422
10497
+ */
10498
+ 422: {
10499
+ type: string;
10500
+ title: string;
10501
+ status: number;
10502
+ detail?: string;
10503
+ instance?: string;
10504
+ code?: string;
10505
+ errors?: Array<{
10506
+ path: string;
10507
+ message: string;
10508
+ summary?: string;
10509
+ }>;
10510
+ };
10511
+ /**
10512
+ * Response for status 500
10513
+ */
10514
+ 500: {
10515
+ type: string;
10516
+ title: string;
10517
+ status: number;
10518
+ detail?: string;
10519
+ instance?: string;
10520
+ code?: string;
10521
+ errors?: Array<{
10522
+ path: string;
10523
+ message: string;
10524
+ summary?: string;
10525
+ }>;
10526
+ };
10527
+ };
10528
+ export type DeleteApiWorkItemsBatchError = DeleteApiWorkItemsBatchErrors[keyof DeleteApiWorkItemsBatchErrors];
10529
+ export type DeleteApiWorkItemsBatchResponses = {
10530
+ /**
10531
+ * Response for status 200
10532
+ */
10533
+ 200: number;
10534
+ };
10535
+ export type DeleteApiWorkItemsBatchResponse = DeleteApiWorkItemsBatchResponses[keyof DeleteApiWorkItemsBatchResponses];
10536
+ export type PostApiWorkItemsBatchData = {
10537
+ body: Array<{
10538
+ projectId: string;
10539
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10540
+ platformId?: string | unknown;
10541
+ platformKey: string;
10542
+ url?: string | unknown;
10543
+ title: string;
10544
+ description: string;
10545
+ sourceCreatedAt: string | unknown;
10546
+ sourceUpdatedAt: string | unknown;
10547
+ fields: {
10548
+ [key: string]: unknown;
10549
+ } | unknown;
10550
+ }>;
10551
+ path?: never;
10552
+ query?: never;
10553
+ url: '/api/work-items/batch';
10554
+ };
10555
+ export type PostApiWorkItemsBatchErrors = {
10556
+ /**
10557
+ * Response for status 400
10558
+ */
10559
+ 400: {
10560
+ type: string;
10561
+ title: string;
10562
+ status: number;
10563
+ detail?: string;
10564
+ instance?: string;
10565
+ code?: string;
10566
+ errors?: Array<{
10567
+ path: string;
10568
+ message: string;
10569
+ summary?: string;
10570
+ }>;
10571
+ };
10572
+ /**
10573
+ * Response for status 401
10574
+ */
10575
+ 401: {
10576
+ type: string;
10577
+ title: string;
10578
+ status: number;
10579
+ detail?: string;
10580
+ instance?: string;
10581
+ code?: string;
10582
+ errors?: Array<{
10583
+ path: string;
10584
+ message: string;
10585
+ summary?: string;
10586
+ }>;
10587
+ };
10588
+ /**
10589
+ * Response for status 403
10590
+ */
10591
+ 403: {
10592
+ type: string;
10593
+ title: string;
10594
+ status: number;
10595
+ detail?: string;
10596
+ instance?: string;
10597
+ code?: string;
10598
+ errors?: Array<{
10599
+ path: string;
10600
+ message: string;
10601
+ summary?: string;
10602
+ }>;
10603
+ };
10604
+ /**
10605
+ * Response for status 404
10606
+ */
10607
+ 404: {
10608
+ type: string;
10609
+ title: string;
10610
+ status: number;
10611
+ detail?: string;
10612
+ instance?: string;
10613
+ code?: string;
10614
+ errors?: Array<{
10615
+ path: string;
10616
+ message: string;
10617
+ summary?: string;
10618
+ }>;
10619
+ };
10620
+ /**
10621
+ * Response for status 409
10622
+ */
10623
+ 409: {
10624
+ type: string;
10625
+ title: string;
10626
+ status: number;
10627
+ detail?: string;
10628
+ instance?: string;
10629
+ code?: string;
10630
+ errors?: Array<{
10631
+ path: string;
10632
+ message: string;
10633
+ summary?: string;
10634
+ }>;
10635
+ };
10636
+ /**
10637
+ * Response for status 422
10638
+ */
10639
+ 422: {
10640
+ type: string;
10641
+ title: string;
10642
+ status: number;
10643
+ detail?: string;
10644
+ instance?: string;
10645
+ code?: string;
10646
+ errors?: Array<{
10647
+ path: string;
10648
+ message: string;
10649
+ summary?: string;
10650
+ }>;
10651
+ };
10652
+ /**
10653
+ * Response for status 500
10654
+ */
10655
+ 500: {
10656
+ type: string;
10657
+ title: string;
10658
+ status: number;
10659
+ detail?: string;
10660
+ instance?: string;
10661
+ code?: string;
10662
+ errors?: Array<{
10663
+ path: string;
10664
+ message: string;
10665
+ summary?: string;
10666
+ }>;
10667
+ };
10668
+ };
10669
+ export type PostApiWorkItemsBatchError = PostApiWorkItemsBatchErrors[keyof PostApiWorkItemsBatchErrors];
10670
+ export type PostApiWorkItemsBatchResponses = {
10671
+ /**
10672
+ * Response for status 200
10673
+ */
10674
+ 200: Array<{
10675
+ id: string;
10676
+ projectId: string;
10677
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10678
+ platformId?: string | unknown;
10679
+ platformKey: string;
10680
+ url?: string | unknown;
10681
+ title: string;
10682
+ description: string;
10683
+ sourceCreatedAt: string | unknown;
10684
+ sourceUpdatedAt: string | unknown;
10685
+ fields: {
10686
+ [key: string]: unknown;
10687
+ } | unknown;
10688
+ createdByUserId: string | unknown;
10689
+ createdByUsername: string | unknown;
10690
+ createdByImage: string | unknown;
10691
+ parentWorkItemId: string | unknown;
10692
+ createdAt: string;
10693
+ updatedAt: string;
10694
+ }>;
10695
+ };
10696
+ export type PostApiWorkItemsBatchResponse = PostApiWorkItemsBatchResponses[keyof PostApiWorkItemsBatchResponses];
10697
+ export type PutApiWorkItemsBatchData = {
10698
+ body: Array<{
10699
+ projectId: string;
10700
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10701
+ platformId?: string | unknown;
10702
+ platformKey: string;
10703
+ url?: string | unknown;
10704
+ title: string;
10705
+ description: string;
10706
+ sourceCreatedAt: string | unknown;
10707
+ sourceUpdatedAt: string | unknown;
10708
+ fields: {
10709
+ [key: string]: unknown;
10710
+ } | unknown;
10711
+ }>;
10712
+ path?: never;
10713
+ query?: never;
10714
+ url: '/api/work-items/batch';
10715
+ };
10716
+ export type PutApiWorkItemsBatchErrors = {
10717
+ /**
10718
+ * Response for status 400
10719
+ */
10720
+ 400: {
10721
+ type: string;
10722
+ title: string;
10723
+ status: number;
10724
+ detail?: string;
10725
+ instance?: string;
10726
+ code?: string;
10727
+ errors?: Array<{
10728
+ path: string;
10729
+ message: string;
10730
+ summary?: string;
10731
+ }>;
10732
+ };
10733
+ /**
10734
+ * Response for status 401
10735
+ */
10736
+ 401: {
10737
+ type: string;
10738
+ title: string;
10739
+ status: number;
10740
+ detail?: string;
10741
+ instance?: string;
10742
+ code?: string;
10743
+ errors?: Array<{
10744
+ path: string;
10745
+ message: string;
10746
+ summary?: string;
10747
+ }>;
10748
+ };
10749
+ /**
10750
+ * Response for status 403
10751
+ */
10752
+ 403: {
10753
+ type: string;
10754
+ title: string;
10755
+ status: number;
10756
+ detail?: string;
10757
+ instance?: string;
10758
+ code?: string;
10759
+ errors?: Array<{
10760
+ path: string;
10761
+ message: string;
10762
+ summary?: string;
10763
+ }>;
10764
+ };
10765
+ /**
10766
+ * Response for status 404
10767
+ */
10768
+ 404: {
10769
+ type: string;
10770
+ title: string;
10771
+ status: number;
10772
+ detail?: string;
10773
+ instance?: string;
10774
+ code?: string;
10775
+ errors?: Array<{
10776
+ path: string;
10777
+ message: string;
10778
+ summary?: string;
10779
+ }>;
10780
+ };
10781
+ /**
10782
+ * Response for status 422
10783
+ */
10784
+ 422: {
10785
+ type: string;
10786
+ title: string;
10787
+ status: number;
10788
+ detail?: string;
10789
+ instance?: string;
10790
+ code?: string;
10791
+ errors?: Array<{
10792
+ path: string;
10793
+ message: string;
10794
+ summary?: string;
10795
+ }>;
10796
+ };
10797
+ /**
10798
+ * Response for status 500
10799
+ */
10800
+ 500: {
10801
+ type: string;
10802
+ title: string;
10803
+ status: number;
10804
+ detail?: string;
10805
+ instance?: string;
10806
+ code?: string;
10807
+ errors?: Array<{
10808
+ path: string;
10809
+ message: string;
10810
+ summary?: string;
10811
+ }>;
10812
+ };
10813
+ };
10814
+ export type PutApiWorkItemsBatchError = PutApiWorkItemsBatchErrors[keyof PutApiWorkItemsBatchErrors];
10815
+ export type PutApiWorkItemsBatchResponses = {
10816
+ /**
10817
+ * Response for status 200
10818
+ */
10819
+ 200: Array<{
10820
+ id: string;
10821
+ projectId: string;
10822
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10823
+ platformId?: string | unknown;
10824
+ platformKey: string;
10825
+ url?: string | unknown;
10826
+ title: string;
10827
+ description: string;
10828
+ sourceCreatedAt: string | unknown;
10829
+ sourceUpdatedAt: string | unknown;
10830
+ fields: {
10831
+ [key: string]: unknown;
10832
+ } | unknown;
10833
+ createdByUserId: string | unknown;
10834
+ createdByUsername: string | unknown;
10835
+ createdByImage: string | unknown;
10836
+ parentWorkItemId: string | unknown;
10837
+ createdAt: string;
10838
+ updatedAt: string;
10839
+ }>;
10840
+ };
10841
+ export type PutApiWorkItemsBatchResponse = PutApiWorkItemsBatchResponses[keyof PutApiWorkItemsBatchResponses];
10842
+ export type PatchApiWorkItemsByWorkItemIdParentData = {
10843
+ body: {
10844
+ parentWorkItemId: string | unknown;
10845
+ };
10846
+ path: {
10847
+ workItemId: string;
10848
+ };
10849
+ query?: never;
10850
+ url: '/api/work-items/{workItemId}/parent';
10851
+ };
10852
+ export type PatchApiWorkItemsByWorkItemIdParentErrors = {
10853
+ /**
10854
+ * Response for status 400
10855
+ */
10856
+ 400: {
10857
+ type: string;
10858
+ title: string;
10859
+ status: number;
10860
+ detail?: string;
10861
+ instance?: string;
10862
+ code?: string;
10863
+ errors?: Array<{
10864
+ path: string;
10865
+ message: string;
10866
+ summary?: string;
10867
+ }>;
10868
+ };
10869
+ /**
10870
+ * Response for status 401
10871
+ */
10872
+ 401: {
10873
+ type: string;
10874
+ title: string;
10875
+ status: number;
10876
+ detail?: string;
10877
+ instance?: string;
10878
+ code?: string;
10879
+ errors?: Array<{
10880
+ path: string;
10881
+ message: string;
10882
+ summary?: string;
10883
+ }>;
10884
+ };
10885
+ /**
10886
+ * Response for status 403
10887
+ */
10888
+ 403: {
10889
+ type: string;
10890
+ title: string;
10891
+ status: number;
10892
+ detail?: string;
10893
+ instance?: string;
10894
+ code?: string;
10895
+ errors?: Array<{
10896
+ path: string;
10897
+ message: string;
10898
+ summary?: string;
10899
+ }>;
10900
+ };
10901
+ /**
10902
+ * Response for status 404
10903
+ */
10904
+ 404: {
10905
+ type: string;
10906
+ title: string;
10907
+ status: number;
10908
+ detail?: string;
10909
+ instance?: string;
10910
+ code?: string;
10911
+ errors?: Array<{
10912
+ path: string;
10913
+ message: string;
10914
+ summary?: string;
10915
+ }>;
10916
+ };
10917
+ /**
10918
+ * Response for status 422
10919
+ */
10920
+ 422: {
10921
+ type: string;
10922
+ title: string;
10923
+ status: number;
10924
+ detail?: string;
10925
+ instance?: string;
10926
+ code?: string;
10927
+ errors?: Array<{
10928
+ path: string;
10929
+ message: string;
10930
+ summary?: string;
10931
+ }>;
10932
+ };
10933
+ /**
10934
+ * Response for status 500
10935
+ */
10936
+ 500: {
10937
+ type: string;
10938
+ title: string;
10939
+ status: number;
10940
+ detail?: string;
10941
+ instance?: string;
10942
+ code?: string;
10943
+ errors?: Array<{
10944
+ path: string;
10945
+ message: string;
10946
+ summary?: string;
10947
+ }>;
10948
+ };
10949
+ };
10950
+ export type PatchApiWorkItemsByWorkItemIdParentError = PatchApiWorkItemsByWorkItemIdParentErrors[keyof PatchApiWorkItemsByWorkItemIdParentErrors];
10951
+ export type PatchApiWorkItemsByWorkItemIdParentResponses = {
10952
+ /**
10953
+ * Response for status 200
10954
+ */
10955
+ 200: {
10956
+ id: string;
10957
+ projectId: string;
10958
+ platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10959
+ platformId?: string | unknown;
10960
+ platformKey: string;
10961
+ url?: string | unknown;
10962
+ title: string;
10963
+ description: string;
10964
+ sourceCreatedAt: string | unknown;
10965
+ sourceUpdatedAt: string | unknown;
10966
+ fields: {
10967
+ [key: string]: unknown;
10968
+ } | unknown;
10969
+ createdByUserId: string | unknown;
10970
+ createdByUsername: string | unknown;
10971
+ createdByImage: string | unknown;
10972
+ parentWorkItemId: string | unknown;
10973
+ createdAt: string;
10974
+ updatedAt: string;
10975
+ };
10976
+ };
10977
+ export type PatchApiWorkItemsByWorkItemIdParentResponse = PatchApiWorkItemsByWorkItemIdParentResponses[keyof PatchApiWorkItemsByWorkItemIdParentResponses];
10978
+ export type GetApiWorkItemCommentsData = {
10979
+ body?: never;
10980
+ path?: never;
10981
+ query: {
10982
+ workItemId: string;
10983
+ };
10984
+ url: '/api/work-item-comments';
10985
+ };
10986
+ export type GetApiWorkItemCommentsErrors = {
10987
+ /**
10988
+ * Response for status 400
10989
+ */
10990
+ 400: {
10991
+ type: string;
10992
+ title: string;
10993
+ status: number;
10994
+ detail?: string;
10995
+ instance?: string;
10996
+ code?: string;
10997
+ errors?: Array<{
10998
+ path: string;
10999
+ message: string;
11000
+ summary?: string;
11001
+ }>;
11002
+ };
11003
+ /**
11004
+ * Response for status 401
11005
+ */
11006
+ 401: {
11007
+ type: string;
11008
+ title: string;
11009
+ status: number;
11010
+ detail?: string;
11011
+ instance?: string;
11012
+ code?: string;
11013
+ errors?: Array<{
11014
+ path: string;
11015
+ message: string;
11016
+ summary?: string;
11017
+ }>;
11018
+ };
11019
+ /**
11020
+ * Response for status 403
11021
+ */
11022
+ 403: {
11023
+ type: string;
11024
+ title: string;
11025
+ status: number;
11026
+ detail?: string;
11027
+ instance?: string;
11028
+ code?: string;
11029
+ errors?: Array<{
11030
+ path: string;
11031
+ message: string;
11032
+ summary?: string;
11033
+ }>;
11034
+ };
11035
+ /**
11036
+ * Response for status 404
11037
+ */
11038
+ 404: {
11039
+ type: string;
11040
+ title: string;
11041
+ status: number;
11042
+ detail?: string;
11043
+ instance?: string;
11044
+ code?: string;
11045
+ errors?: Array<{
11046
+ path: string;
11047
+ message: string;
11048
+ summary?: string;
11049
+ }>;
11050
+ };
11051
+ /**
11052
+ * Response for status 422
11053
+ */
11054
+ 422: {
11055
+ type: string;
11056
+ title: string;
11057
+ status: number;
11058
+ detail?: string;
11059
+ instance?: string;
11060
+ code?: string;
11061
+ errors?: Array<{
11062
+ path: string;
11063
+ message: string;
11064
+ summary?: string;
11065
+ }>;
11066
+ };
11067
+ /**
11068
+ * Response for status 500
11069
+ */
11070
+ 500: {
11071
+ type: string;
11072
+ title: string;
11073
+ status: number;
11074
+ detail?: string;
11075
+ instance?: string;
11076
+ code?: string;
11077
+ errors?: Array<{
11078
+ path: string;
11079
+ message: string;
11080
+ summary?: string;
11081
+ }>;
11082
+ };
11083
+ };
11084
+ export type GetApiWorkItemCommentsError = GetApiWorkItemCommentsErrors[keyof GetApiWorkItemCommentsErrors];
11085
+ export type GetApiWorkItemCommentsResponses = {
10028
11086
  /**
10029
11087
  * Response for status 200
10030
11088
  */
10031
- 200: number;
10032
- };
10033
- export type DeleteApiWorkItemsBatchResponse = DeleteApiWorkItemsBatchResponses[keyof DeleteApiWorkItemsBatchResponses];
10034
- export type PostApiWorkItemsBatchData = {
10035
- body: Array<{
11089
+ 200: Array<{
11090
+ id: string;
10036
11091
  projectId: string;
10037
- platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10038
- platformId?: string | unknown;
10039
- platformKey: string;
10040
- url?: string | unknown;
10041
- title: string;
10042
- description: string;
10043
- sourceCreatedAt: string | unknown;
10044
- sourceUpdatedAt: string | unknown;
10045
- fields: unknown;
11092
+ workItemId: string;
11093
+ authorUserId: string;
11094
+ authorUsername: string | unknown;
11095
+ authorImage: string | unknown;
11096
+ body: string;
11097
+ isPinned: boolean;
11098
+ createdAt: string;
11099
+ updatedAt: string;
10046
11100
  }>;
11101
+ };
11102
+ export type GetApiWorkItemCommentsResponse = GetApiWorkItemCommentsResponses[keyof GetApiWorkItemCommentsResponses];
11103
+ export type PostApiWorkItemCommentsData = {
11104
+ body: {
11105
+ workItemId: string;
11106
+ body: string;
11107
+ };
10047
11108
  path?: never;
10048
11109
  query?: never;
10049
- url: '/api/work-items/batch';
11110
+ url: '/api/work-item-comments';
10050
11111
  };
10051
- export type PostApiWorkItemsBatchErrors = {
11112
+ export type PostApiWorkItemCommentsErrors = {
10052
11113
  /**
10053
11114
  * Response for status 400
10054
11115
  */
@@ -10113,22 +11174,6 @@ export type PostApiWorkItemsBatchErrors = {
10113
11174
  summary?: string;
10114
11175
  }>;
10115
11176
  };
10116
- /**
10117
- * Response for status 409
10118
- */
10119
- 409: {
10120
- type: string;
10121
- title: string;
10122
- status: number;
10123
- detail?: string;
10124
- instance?: string;
10125
- code?: string;
10126
- errors?: Array<{
10127
- path: string;
10128
- message: string;
10129
- summary?: string;
10130
- }>;
10131
- };
10132
11177
  /**
10133
11178
  * Response for status 422
10134
11179
  */
@@ -10162,48 +11207,34 @@ export type PostApiWorkItemsBatchErrors = {
10162
11207
  }>;
10163
11208
  };
10164
11209
  };
10165
- export type PostApiWorkItemsBatchError = PostApiWorkItemsBatchErrors[keyof PostApiWorkItemsBatchErrors];
10166
- export type PostApiWorkItemsBatchResponses = {
11210
+ export type PostApiWorkItemCommentsError = PostApiWorkItemCommentsErrors[keyof PostApiWorkItemCommentsErrors];
11211
+ export type PostApiWorkItemCommentsResponses = {
10167
11212
  /**
10168
11213
  * Response for status 200
10169
11214
  */
10170
- 200: Array<{
11215
+ 200: {
10171
11216
  id: string;
10172
11217
  projectId: string;
10173
- platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10174
- platformId?: string | unknown;
10175
- platformKey: string;
10176
- url?: string | unknown;
10177
- title: string;
10178
- description: string;
10179
- sourceCreatedAt: string | unknown;
10180
- sourceUpdatedAt: string | unknown;
10181
- fields: unknown;
10182
- createdByUsername: string | unknown;
10183
- createdByImage: string | unknown;
11218
+ workItemId: string;
11219
+ authorUserId: string;
11220
+ authorUsername: string | unknown;
11221
+ authorImage: string | unknown;
11222
+ body: string;
11223
+ isPinned: boolean;
10184
11224
  createdAt: string;
10185
11225
  updatedAt: string;
10186
- }>;
11226
+ };
10187
11227
  };
10188
- export type PostApiWorkItemsBatchResponse = PostApiWorkItemsBatchResponses[keyof PostApiWorkItemsBatchResponses];
10189
- export type PutApiWorkItemsBatchData = {
10190
- body: Array<{
10191
- projectId: string;
10192
- platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10193
- platformId?: string | unknown;
10194
- platformKey: string;
10195
- url?: string | unknown;
10196
- title: string;
10197
- description: string;
10198
- sourceCreatedAt: string | unknown;
10199
- sourceUpdatedAt: string | unknown;
10200
- fields: unknown;
10201
- }>;
10202
- path?: never;
11228
+ export type PostApiWorkItemCommentsResponse = PostApiWorkItemCommentsResponses[keyof PostApiWorkItemCommentsResponses];
11229
+ export type DeleteApiWorkItemCommentsByCommentIdData = {
11230
+ body?: never;
11231
+ path: {
11232
+ commentId: string;
11233
+ };
10203
11234
  query?: never;
10204
- url: '/api/work-items/batch';
11235
+ url: '/api/work-item-comments/{commentId}';
10205
11236
  };
10206
- export type PutApiWorkItemsBatchErrors = {
11237
+ export type DeleteApiWorkItemCommentsByCommentIdErrors = {
10207
11238
  /**
10208
11239
  * Response for status 400
10209
11240
  */
@@ -10301,39 +11332,25 @@ export type PutApiWorkItemsBatchErrors = {
10301
11332
  }>;
10302
11333
  };
10303
11334
  };
10304
- export type PutApiWorkItemsBatchError = PutApiWorkItemsBatchErrors[keyof PutApiWorkItemsBatchErrors];
10305
- export type PutApiWorkItemsBatchResponses = {
11335
+ export type DeleteApiWorkItemCommentsByCommentIdError = DeleteApiWorkItemCommentsByCommentIdErrors[keyof DeleteApiWorkItemCommentsByCommentIdErrors];
11336
+ export type DeleteApiWorkItemCommentsByCommentIdResponses = {
10306
11337
  /**
10307
11338
  * Response for status 200
10308
11339
  */
10309
- 200: Array<{
10310
- id: string;
10311
- projectId: string;
10312
- platform: 'jira' | 'github' | 'linear' | 'boboddy' | 'custom';
10313
- platformId?: string | unknown;
10314
- platformKey: string;
10315
- url?: string | unknown;
10316
- title: string;
10317
- description: string;
10318
- sourceCreatedAt: string | unknown;
10319
- sourceUpdatedAt: string | unknown;
10320
- fields: unknown;
10321
- createdByUsername: string | unknown;
10322
- createdByImage: string | unknown;
10323
- createdAt: string;
10324
- updatedAt: string;
10325
- }>;
11340
+ 200: number;
10326
11341
  };
10327
- export type PutApiWorkItemsBatchResponse = PutApiWorkItemsBatchResponses[keyof PutApiWorkItemsBatchResponses];
10328
- export type GetApiWorkItemCommentsData = {
10329
- body?: never;
10330
- path?: never;
10331
- query: {
10332
- workItemId: string;
11342
+ export type DeleteApiWorkItemCommentsByCommentIdResponse = DeleteApiWorkItemCommentsByCommentIdResponses[keyof DeleteApiWorkItemCommentsByCommentIdResponses];
11343
+ export type PatchApiWorkItemCommentsByCommentIdData = {
11344
+ body: {
11345
+ body: string;
10333
11346
  };
10334
- url: '/api/work-item-comments';
11347
+ path: {
11348
+ commentId: string;
11349
+ };
11350
+ query?: never;
11351
+ url: '/api/work-item-comments/{commentId}';
10335
11352
  };
10336
- export type GetApiWorkItemCommentsErrors = {
11353
+ export type PatchApiWorkItemCommentsByCommentIdErrors = {
10337
11354
  /**
10338
11355
  * Response for status 400
10339
11356
  */
@@ -10431,12 +11448,12 @@ export type GetApiWorkItemCommentsErrors = {
10431
11448
  }>;
10432
11449
  };
10433
11450
  };
10434
- export type GetApiWorkItemCommentsError = GetApiWorkItemCommentsErrors[keyof GetApiWorkItemCommentsErrors];
10435
- export type GetApiWorkItemCommentsResponses = {
11451
+ export type PatchApiWorkItemCommentsByCommentIdError = PatchApiWorkItemCommentsByCommentIdErrors[keyof PatchApiWorkItemCommentsByCommentIdErrors];
11452
+ export type PatchApiWorkItemCommentsByCommentIdResponses = {
10436
11453
  /**
10437
11454
  * Response for status 200
10438
11455
  */
10439
- 200: Array<{
11456
+ 200: {
10440
11457
  id: string;
10441
11458
  projectId: string;
10442
11459
  workItemId: string;
@@ -10447,19 +11464,20 @@ export type GetApiWorkItemCommentsResponses = {
10447
11464
  isPinned: boolean;
10448
11465
  createdAt: string;
10449
11466
  updatedAt: string;
10450
- }>;
11467
+ };
10451
11468
  };
10452
- export type GetApiWorkItemCommentsResponse = GetApiWorkItemCommentsResponses[keyof GetApiWorkItemCommentsResponses];
10453
- export type PostApiWorkItemCommentsData = {
11469
+ export type PatchApiWorkItemCommentsByCommentIdResponse = PatchApiWorkItemCommentsByCommentIdResponses[keyof PatchApiWorkItemCommentsByCommentIdResponses];
11470
+ export type PostApiWorkItemCommentsByCommentIdPinData = {
10454
11471
  body: {
10455
- workItemId: string;
10456
- body: string;
11472
+ isPinned: boolean;
11473
+ };
11474
+ path: {
11475
+ commentId: string;
10457
11476
  };
10458
- path?: never;
10459
11477
  query?: never;
10460
- url: '/api/work-item-comments';
11478
+ url: '/api/work-item-comments/{commentId}/pin';
10461
11479
  };
10462
- export type PostApiWorkItemCommentsErrors = {
11480
+ export type PostApiWorkItemCommentsByCommentIdPinErrors = {
10463
11481
  /**
10464
11482
  * Response for status 400
10465
11483
  */
@@ -10557,8 +11575,8 @@ export type PostApiWorkItemCommentsErrors = {
10557
11575
  }>;
10558
11576
  };
10559
11577
  };
10560
- export type PostApiWorkItemCommentsError = PostApiWorkItemCommentsErrors[keyof PostApiWorkItemCommentsErrors];
10561
- export type PostApiWorkItemCommentsResponses = {
11578
+ export type PostApiWorkItemCommentsByCommentIdPinError = PostApiWorkItemCommentsByCommentIdPinErrors[keyof PostApiWorkItemCommentsByCommentIdPinErrors];
11579
+ export type PostApiWorkItemCommentsByCommentIdPinResponses = {
10562
11580
  /**
10563
11581
  * Response for status 200
10564
11582
  */
@@ -10575,16 +11593,16 @@ export type PostApiWorkItemCommentsResponses = {
10575
11593
  updatedAt: string;
10576
11594
  };
10577
11595
  };
10578
- export type PostApiWorkItemCommentsResponse = PostApiWorkItemCommentsResponses[keyof PostApiWorkItemCommentsResponses];
10579
- export type DeleteApiWorkItemCommentsByCommentIdData = {
11596
+ export type PostApiWorkItemCommentsByCommentIdPinResponse = PostApiWorkItemCommentsByCommentIdPinResponses[keyof PostApiWorkItemCommentsByCommentIdPinResponses];
11597
+ export type GetApiWorkItemBlocksData = {
10580
11598
  body?: never;
10581
- path: {
10582
- commentId: string;
11599
+ path?: never;
11600
+ query: {
11601
+ workItemId: string;
10583
11602
  };
10584
- query?: never;
10585
- url: '/api/work-item-comments/{commentId}';
11603
+ url: '/api/work-item-blocks';
10586
11604
  };
10587
- export type DeleteApiWorkItemCommentsByCommentIdErrors = {
11605
+ export type GetApiWorkItemBlocksErrors = {
10588
11606
  /**
10589
11607
  * Response for status 400
10590
11608
  */
@@ -10682,25 +11700,41 @@ export type DeleteApiWorkItemCommentsByCommentIdErrors = {
10682
11700
  }>;
10683
11701
  };
10684
11702
  };
10685
- export type DeleteApiWorkItemCommentsByCommentIdError = DeleteApiWorkItemCommentsByCommentIdErrors[keyof DeleteApiWorkItemCommentsByCommentIdErrors];
10686
- export type DeleteApiWorkItemCommentsByCommentIdResponses = {
11703
+ export type GetApiWorkItemBlocksError = GetApiWorkItemBlocksErrors[keyof GetApiWorkItemBlocksErrors];
11704
+ export type GetApiWorkItemBlocksResponses = {
10687
11705
  /**
10688
11706
  * Response for status 200
10689
11707
  */
10690
- 200: number;
11708
+ 200: {
11709
+ blockedBy: Array<{
11710
+ id: string;
11711
+ projectId: string;
11712
+ blockedWorkItemId: string;
11713
+ blockingWorkItemId: string;
11714
+ createdByUserId: string | unknown;
11715
+ createdAt: string;
11716
+ }>;
11717
+ blocking: Array<{
11718
+ id: string;
11719
+ projectId: string;
11720
+ blockedWorkItemId: string;
11721
+ blockingWorkItemId: string;
11722
+ createdByUserId: string | unknown;
11723
+ createdAt: string;
11724
+ }>;
11725
+ };
10691
11726
  };
10692
- export type DeleteApiWorkItemCommentsByCommentIdResponse = DeleteApiWorkItemCommentsByCommentIdResponses[keyof DeleteApiWorkItemCommentsByCommentIdResponses];
10693
- export type PatchApiWorkItemCommentsByCommentIdData = {
11727
+ export type GetApiWorkItemBlocksResponse = GetApiWorkItemBlocksResponses[keyof GetApiWorkItemBlocksResponses];
11728
+ export type PostApiWorkItemBlocksData = {
10694
11729
  body: {
10695
- body: string;
10696
- };
10697
- path: {
10698
- commentId: string;
11730
+ blockedWorkItemId: string;
11731
+ blockingWorkItemId: string;
10699
11732
  };
11733
+ path?: never;
10700
11734
  query?: never;
10701
- url: '/api/work-item-comments/{commentId}';
11735
+ url: '/api/work-item-blocks';
10702
11736
  };
10703
- export type PatchApiWorkItemCommentsByCommentIdErrors = {
11737
+ export type PostApiWorkItemBlocksErrors = {
10704
11738
  /**
10705
11739
  * Response for status 400
10706
11740
  */
@@ -10798,36 +11832,30 @@ export type PatchApiWorkItemCommentsByCommentIdErrors = {
10798
11832
  }>;
10799
11833
  };
10800
11834
  };
10801
- export type PatchApiWorkItemCommentsByCommentIdError = PatchApiWorkItemCommentsByCommentIdErrors[keyof PatchApiWorkItemCommentsByCommentIdErrors];
10802
- export type PatchApiWorkItemCommentsByCommentIdResponses = {
11835
+ export type PostApiWorkItemBlocksError = PostApiWorkItemBlocksErrors[keyof PostApiWorkItemBlocksErrors];
11836
+ export type PostApiWorkItemBlocksResponses = {
10803
11837
  /**
10804
11838
  * Response for status 200
10805
11839
  */
10806
11840
  200: {
10807
11841
  id: string;
10808
11842
  projectId: string;
10809
- workItemId: string;
10810
- authorUserId: string;
10811
- authorUsername: string | unknown;
10812
- authorImage: string | unknown;
10813
- body: string;
10814
- isPinned: boolean;
11843
+ blockedWorkItemId: string;
11844
+ blockingWorkItemId: string;
11845
+ createdByUserId: string | unknown;
10815
11846
  createdAt: string;
10816
- updatedAt: string;
10817
11847
  };
10818
11848
  };
10819
- export type PatchApiWorkItemCommentsByCommentIdResponse = PatchApiWorkItemCommentsByCommentIdResponses[keyof PatchApiWorkItemCommentsByCommentIdResponses];
10820
- export type PostApiWorkItemCommentsByCommentIdPinData = {
10821
- body: {
10822
- isPinned: boolean;
10823
- };
11849
+ export type PostApiWorkItemBlocksResponse = PostApiWorkItemBlocksResponses[keyof PostApiWorkItemBlocksResponses];
11850
+ export type DeleteApiWorkItemBlocksByBlockIdData = {
11851
+ body?: never;
10824
11852
  path: {
10825
- commentId: string;
11853
+ blockId: string;
10826
11854
  };
10827
11855
  query?: never;
10828
- url: '/api/work-item-comments/{commentId}/pin';
11856
+ url: '/api/work-item-blocks/{blockId}';
10829
11857
  };
10830
- export type PostApiWorkItemCommentsByCommentIdPinErrors = {
11858
+ export type DeleteApiWorkItemBlocksByBlockIdErrors = {
10831
11859
  /**
10832
11860
  * Response for status 400
10833
11861
  */
@@ -10925,25 +11953,14 @@ export type PostApiWorkItemCommentsByCommentIdPinErrors = {
10925
11953
  }>;
10926
11954
  };
10927
11955
  };
10928
- export type PostApiWorkItemCommentsByCommentIdPinError = PostApiWorkItemCommentsByCommentIdPinErrors[keyof PostApiWorkItemCommentsByCommentIdPinErrors];
10929
- export type PostApiWorkItemCommentsByCommentIdPinResponses = {
11956
+ export type DeleteApiWorkItemBlocksByBlockIdError = DeleteApiWorkItemBlocksByBlockIdErrors[keyof DeleteApiWorkItemBlocksByBlockIdErrors];
11957
+ export type DeleteApiWorkItemBlocksByBlockIdResponses = {
10930
11958
  /**
10931
11959
  * Response for status 200
10932
11960
  */
10933
- 200: {
10934
- id: string;
10935
- projectId: string;
10936
- workItemId: string;
10937
- authorUserId: string;
10938
- authorUsername: string | unknown;
10939
- authorImage: string | unknown;
10940
- body: string;
10941
- isPinned: boolean;
10942
- createdAt: string;
10943
- updatedAt: string;
10944
- };
11961
+ 200: number;
10945
11962
  };
10946
- export type PostApiWorkItemCommentsByCommentIdPinResponse = PostApiWorkItemCommentsByCommentIdPinResponses[keyof PostApiWorkItemCommentsByCommentIdPinResponses];
11963
+ export type DeleteApiWorkItemBlocksByBlockIdResponse = DeleteApiWorkItemBlocksByBlockIdResponses[keyof DeleteApiWorkItemBlocksByBlockIdResponses];
10947
11964
  export type GetApiProjectsByProjectIdContextEntriesData = {
10948
11965
  body?: never;
10949
11966
  path: {
@@ -11385,7 +12402,9 @@ export type GetApiProjectsByProjectIdNotificationsResponses = {
11385
12402
  priority: 'low' | 'normal' | 'high' | 'urgent';
11386
12403
  source: 'agent' | 'system' | 'user';
11387
12404
  status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
11388
- payloadJson: unknown;
12405
+ payloadJson: {
12406
+ [key: string]: unknown;
12407
+ } | unknown;
11389
12408
  createdAt: string;
11390
12409
  updatedAt: string;
11391
12410
  }>;
@@ -11502,7 +12521,9 @@ export type GetApiProjectsByProjectIdNotificationsByNotificationIdResponses = {
11502
12521
  priority: 'low' | 'normal' | 'high' | 'urgent';
11503
12522
  source: 'agent' | 'system' | 'user';
11504
12523
  status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
11505
- payloadJson: unknown;
12524
+ payloadJson: {
12525
+ [key: string]: unknown;
12526
+ } | unknown;
11506
12527
  createdAt: string;
11507
12528
  updatedAt: string;
11508
12529
  deliveries: Array<{
@@ -11730,7 +12751,9 @@ export type PostApiProjectsByProjectIdNotificationsByNotificationIdRespondRespon
11730
12751
  priority: 'low' | 'normal' | 'high' | 'urgent';
11731
12752
  source: 'agent' | 'system' | 'user';
11732
12753
  status: 'pending' | 'delivered' | 'partially_delivered' | 'suppressed' | 'failed';
11733
- payloadJson: unknown;
12754
+ payloadJson: {
12755
+ [key: string]: unknown;
12756
+ } | unknown;
11734
12757
  createdAt: string;
11735
12758
  updatedAt: string;
11736
12759
  };
@@ -11838,7 +12861,9 @@ export type GetApiProjectsByProjectIdNotificationRulesResponses = {
11838
12861
  channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
11839
12862
  enabled: boolean;
11840
12863
  minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
11841
- conditionsJson: unknown;
12864
+ conditionsJson: {
12865
+ [key: string]: unknown;
12866
+ } | unknown;
11842
12867
  createdAt: string;
11843
12868
  updatedAt: string;
11844
12869
  }>;
@@ -11850,7 +12875,9 @@ export type PutApiProjectsByProjectIdNotificationRulesData = {
11850
12875
  channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
11851
12876
  enabled: boolean;
11852
12877
  minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
11853
- conditionsJson: unknown;
12878
+ conditionsJson: {
12879
+ [key: string]: unknown;
12880
+ } | unknown;
11854
12881
  };
11855
12882
  path: {
11856
12883
  projectId: string;
@@ -11952,7 +12979,9 @@ export type PutApiProjectsByProjectIdNotificationRulesResponses = {
11952
12979
  channel: 'in_app' | 'work_item_platform_comment' | 'email' | 'slack';
11953
12980
  enabled: boolean;
11954
12981
  minPriority: 'low' | 'normal' | 'high' | 'urgent' | unknown;
11955
- conditionsJson: unknown;
12982
+ conditionsJson: {
12983
+ [key: string]: unknown;
12984
+ } | unknown;
11956
12985
  createdAt: string;
11957
12986
  updatedAt: string;
11958
12987
  };
@@ -12009,8 +13038,12 @@ export type GetApiStepDefinitionTemplatesResponses = {
12009
13038
  name: string;
12010
13039
  description: string | unknown;
12011
13040
  promptTemplate: string | unknown;
12012
- inputSchemaJson: unknown;
12013
- resultSchemaJson: unknown;
13041
+ inputSchemaJson: {
13042
+ [key: string]: unknown;
13043
+ } | unknown;
13044
+ resultSchemaJson: {
13045
+ [key: string]: unknown;
13046
+ } | unknown;
12014
13047
  opencodeMcpJson: {
12015
13048
  [key: string]: {
12016
13049
  type: string;
@@ -12155,8 +13188,12 @@ export type GetApiStepDefinitionTemplatesByStepDefinitionTemplateIdResponses = {
12155
13188
  name: string;
12156
13189
  description: string | unknown;
12157
13190
  promptTemplate: string | unknown;
12158
- inputSchemaJson: unknown;
12159
- resultSchemaJson: unknown;
13191
+ inputSchemaJson: {
13192
+ [key: string]: unknown;
13193
+ } | unknown;
13194
+ resultSchemaJson: {
13195
+ [key: string]: unknown;
13196
+ } | unknown;
12160
13197
  opencodeMcpJson: {
12161
13198
  [key: string]: {
12162
13199
  type: string;
@@ -12359,8 +13396,12 @@ export type PostApiStepDefinitionTemplatesByStepDefinitionTemplateIdInstantiateR
12359
13396
  version: number;
12360
13397
  kind: 'built_in' | 'user_defined';
12361
13398
  executionMode: 'workspace' | 'no_workspace';
12362
- inputSchemaJson: unknown;
12363
- resultSchemaJson: unknown;
13399
+ inputSchemaJson: {
13400
+ [key: string]: unknown;
13401
+ } | unknown;
13402
+ resultSchemaJson: {
13403
+ [key: string]: unknown;
13404
+ } | unknown;
12364
13405
  opencodeMcpJson: {
12365
13406
  [key: string]: {
12366
13407
  type: string;
@@ -12806,6 +13847,10 @@ export type PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncResponses =
12806
13847
  totalSeen: number;
12807
13848
  totalUpserted: number;
12808
13849
  }>;
13850
+ parentLinksApplied?: number;
13851
+ parentLinksSkipped?: number;
13852
+ blocksCreated?: number;
13853
+ blocksSkipped?: number;
12809
13854
  };
12810
13855
  };
12811
13856
  export type PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncResponse = PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncResponses[keyof PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncResponses];