@boboddy/sdk 0.1.18-alpha → 0.1.20-alpha

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.
@@ -2850,194 +2850,6 @@ export type GetApiStepExecutionsByStepExecutionIdResponses = {
2850
2850
  };
2851
2851
  };
2852
2852
  export type GetApiStepExecutionsByStepExecutionIdResponse = GetApiStepExecutionsByStepExecutionIdResponses[keyof GetApiStepExecutionsByStepExecutionIdResponses];
2853
- export type GetApiLinearPipelineDefinitionsData = {
2854
- body?: never;
2855
- path?: never;
2856
- query?: never;
2857
- url: '/api/linear-pipeline-definitions';
2858
- };
2859
- export type GetApiLinearPipelineDefinitionsErrors = {
2860
- /**
2861
- * Response for status 401
2862
- */
2863
- 401: {
2864
- type: string;
2865
- title: string;
2866
- status: number;
2867
- detail?: string;
2868
- instance?: string;
2869
- code?: string;
2870
- errors?: Array<{
2871
- path: string;
2872
- message: string;
2873
- summary?: string;
2874
- }>;
2875
- };
2876
- /**
2877
- * Response for status 403
2878
- */
2879
- 403: {
2880
- type: string;
2881
- title: string;
2882
- status: number;
2883
- detail?: string;
2884
- instance?: string;
2885
- code?: string;
2886
- errors?: Array<{
2887
- path: string;
2888
- message: string;
2889
- summary?: string;
2890
- }>;
2891
- };
2892
- /**
2893
- * Response for status 422
2894
- */
2895
- 422: {
2896
- type: string;
2897
- title: string;
2898
- status: number;
2899
- detail?: string;
2900
- instance?: string;
2901
- code?: string;
2902
- errors?: Array<{
2903
- path: string;
2904
- message: string;
2905
- summary?: string;
2906
- }>;
2907
- };
2908
- /**
2909
- * Response for status 500
2910
- */
2911
- 500: {
2912
- type: string;
2913
- title: string;
2914
- status: number;
2915
- detail?: string;
2916
- instance?: string;
2917
- code?: string;
2918
- errors?: Array<{
2919
- path: string;
2920
- message: string;
2921
- summary?: string;
2922
- }>;
2923
- };
2924
- };
2925
- export type GetApiLinearPipelineDefinitionsError = GetApiLinearPipelineDefinitionsErrors[keyof GetApiLinearPipelineDefinitionsErrors];
2926
- export type GetApiLinearPipelineDefinitionsResponses = {
2927
- /**
2928
- * Response for status 200
2929
- */
2930
- 200: Array<{
2931
- id: string;
2932
- projectId: string;
2933
- key: string;
2934
- name: string;
2935
- description: string | unknown;
2936
- status: 'draft' | 'active' | 'archived';
2937
- archivedAt: string | unknown;
2938
- inputSchemaJson: unknown;
2939
- stepDefinitions: Array<{
2940
- id: string;
2941
- linearPipelineDefinitionId: string;
2942
- stepDefinitionId: string;
2943
- stepDefinitionVersion: number;
2944
- key: string;
2945
- name: string;
2946
- description: string | unknown;
2947
- position: number;
2948
- inputBindingsJson: {
2949
- [key: string]: {
2950
- source: string;
2951
- path: string | unknown;
2952
- } | {
2953
- source: string;
2954
- field: 'title' | 'description';
2955
- } | {
2956
- source: string;
2957
- stepKey: string;
2958
- path: string | unknown;
2959
- } | {
2960
- source: string;
2961
- stepKey: string;
2962
- signalKey: string;
2963
- } | {
2964
- source: string;
2965
- value: unknown;
2966
- };
2967
- } | unknown;
2968
- timeoutSeconds: number | unknown;
2969
- retryPolicyJson: unknown;
2970
- advancementPolicyDefinition: {
2971
- id: string;
2972
- linearPipelineStepDefinitionId: string;
2973
- rulesJson: {
2974
- rules: Array<{
2975
- conditions: {
2976
- [key: string]: unknown;
2977
- };
2978
- event: {
2979
- type: string;
2980
- params?: {
2981
- [key: string]: unknown;
2982
- };
2983
- };
2984
- name?: string;
2985
- priority?: number;
2986
- [key: string]: unknown | {
2987
- [key: string]: unknown;
2988
- } | {
2989
- type: string;
2990
- params?: {
2991
- [key: string]: unknown;
2992
- };
2993
- } | string | number | undefined;
2994
- }>;
2995
- [key: string]: unknown | Array<{
2996
- conditions: {
2997
- [key: string]: unknown;
2998
- };
2999
- event: {
3000
- type: string;
3001
- params?: {
3002
- [key: string]: unknown;
3003
- };
3004
- };
3005
- name?: string;
3006
- priority?: number;
3007
- [key: string]: unknown | {
3008
- [key: string]: unknown;
3009
- } | {
3010
- type: string;
3011
- params?: {
3012
- [key: string]: unknown;
3013
- };
3014
- } | string | number | undefined;
3015
- }>;
3016
- };
3017
- defaultEventType: 'continue' | 'block' | 'complete' | 'route';
3018
- defaultEventParamsJson: unknown;
3019
- allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
3020
- createdAt: string;
3021
- updatedAt: string;
3022
- };
3023
- computedSignalDefinitions: Array<{
3024
- id: string;
3025
- key: string;
3026
- type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
3027
- inputSignalKeys: Array<string>;
3028
- configJson: unknown;
3029
- availableWhenResultStatusIn: Array<string> | unknown;
3030
- createdAt: string;
3031
- updatedAt: string;
3032
- }>;
3033
- createdAt: string;
3034
- updatedAt: string;
3035
- }>;
3036
- createdAt: string;
3037
- updatedAt: string;
3038
- }>;
3039
- };
3040
- export type GetApiLinearPipelineDefinitionsResponse = GetApiLinearPipelineDefinitionsResponses[keyof GetApiLinearPipelineDefinitionsResponses];
3041
2853
  export type PostApiLinearPipelineDefinitionsData = {
3042
2854
  body: {
3043
2855
  projectId: string;
@@ -3059,7 +2871,7 @@ export type PostApiLinearPipelineDefinitionsData = {
3059
2871
  path: string | unknown;
3060
2872
  } | {
3061
2873
  source: string;
3062
- field: 'title' | 'description';
2874
+ field: string;
3063
2875
  } | {
3064
2876
  source: string;
3065
2877
  stepKey: string;
@@ -3280,7 +3092,7 @@ export type PostApiLinearPipelineDefinitionsResponses = {
3280
3092
  path: string | unknown;
3281
3093
  } | {
3282
3094
  source: string;
3283
- field: 'title' | 'description';
3095
+ field: string;
3284
3096
  } | {
3285
3097
  source: string;
3286
3098
  stepKey: string;
@@ -3388,7 +3200,7 @@ export type PutApiLinearPipelineDefinitionsData = {
3388
3200
  path: string | unknown;
3389
3201
  } | {
3390
3202
  source: string;
3391
- field: 'title' | 'description';
3203
+ field: string;
3392
3204
  } | {
3393
3205
  source: string;
3394
3206
  stepKey: string;
@@ -3561,7 +3373,7 @@ export type PutApiLinearPipelineDefinitionsResponses = {
3561
3373
  path: string | unknown;
3562
3374
  } | {
3563
3375
  source: string;
3564
- field: 'title' | 'description';
3376
+ field: string;
3565
3377
  } | {
3566
3378
  source: string;
3567
3379
  stepKey: string;
@@ -3783,7 +3595,7 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
3783
3595
  path: string | unknown;
3784
3596
  } | {
3785
3597
  source: string;
3786
- field: 'title' | 'description';
3598
+ field: string;
3787
3599
  } | {
3788
3600
  source: string;
3789
3601
  stepKey: string;
@@ -3870,6 +3682,196 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
3870
3682
  };
3871
3683
  };
3872
3684
  export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponse = GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses[keyof GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses];
3685
+ export type GetApiProjectsByProjectIdLinearPipelineDefinitionsData = {
3686
+ body?: never;
3687
+ path: {
3688
+ projectId: string;
3689
+ };
3690
+ query?: never;
3691
+ url: '/api/projects/{projectId}/linear-pipeline-definitions';
3692
+ };
3693
+ export type GetApiProjectsByProjectIdLinearPipelineDefinitionsErrors = {
3694
+ /**
3695
+ * Response for status 401
3696
+ */
3697
+ 401: {
3698
+ type: string;
3699
+ title: string;
3700
+ status: number;
3701
+ detail?: string;
3702
+ instance?: string;
3703
+ code?: string;
3704
+ errors?: Array<{
3705
+ path: string;
3706
+ message: string;
3707
+ summary?: string;
3708
+ }>;
3709
+ };
3710
+ /**
3711
+ * Response for status 403
3712
+ */
3713
+ 403: {
3714
+ type: string;
3715
+ title: string;
3716
+ status: number;
3717
+ detail?: string;
3718
+ instance?: string;
3719
+ code?: string;
3720
+ errors?: Array<{
3721
+ path: string;
3722
+ message: string;
3723
+ summary?: string;
3724
+ }>;
3725
+ };
3726
+ /**
3727
+ * Response for status 422
3728
+ */
3729
+ 422: {
3730
+ type: string;
3731
+ title: string;
3732
+ status: number;
3733
+ detail?: string;
3734
+ instance?: string;
3735
+ code?: string;
3736
+ errors?: Array<{
3737
+ path: string;
3738
+ message: string;
3739
+ summary?: string;
3740
+ }>;
3741
+ };
3742
+ /**
3743
+ * Response for status 500
3744
+ */
3745
+ 500: {
3746
+ type: string;
3747
+ title: string;
3748
+ status: number;
3749
+ detail?: string;
3750
+ instance?: string;
3751
+ code?: string;
3752
+ errors?: Array<{
3753
+ path: string;
3754
+ message: string;
3755
+ summary?: string;
3756
+ }>;
3757
+ };
3758
+ };
3759
+ export type GetApiProjectsByProjectIdLinearPipelineDefinitionsError = GetApiProjectsByProjectIdLinearPipelineDefinitionsErrors[keyof GetApiProjectsByProjectIdLinearPipelineDefinitionsErrors];
3760
+ export type GetApiProjectsByProjectIdLinearPipelineDefinitionsResponses = {
3761
+ /**
3762
+ * Response for status 200
3763
+ */
3764
+ 200: Array<{
3765
+ id: string;
3766
+ projectId: string;
3767
+ key: string;
3768
+ name: string;
3769
+ description: string | unknown;
3770
+ status: 'draft' | 'active' | 'archived';
3771
+ archivedAt: string | unknown;
3772
+ inputSchemaJson: unknown;
3773
+ stepDefinitions: Array<{
3774
+ id: string;
3775
+ linearPipelineDefinitionId: string;
3776
+ stepDefinitionId: string;
3777
+ stepDefinitionVersion: number;
3778
+ key: string;
3779
+ name: string;
3780
+ description: string | unknown;
3781
+ position: number;
3782
+ inputBindingsJson: {
3783
+ [key: string]: {
3784
+ source: string;
3785
+ path: string | unknown;
3786
+ } | {
3787
+ source: string;
3788
+ field: string;
3789
+ } | {
3790
+ source: string;
3791
+ stepKey: string;
3792
+ path: string | unknown;
3793
+ } | {
3794
+ source: string;
3795
+ stepKey: string;
3796
+ signalKey: string;
3797
+ } | {
3798
+ source: string;
3799
+ value: unknown;
3800
+ };
3801
+ } | unknown;
3802
+ timeoutSeconds: number | unknown;
3803
+ retryPolicyJson: unknown;
3804
+ advancementPolicyDefinition: {
3805
+ id: string;
3806
+ linearPipelineStepDefinitionId: string;
3807
+ rulesJson: {
3808
+ rules: Array<{
3809
+ conditions: {
3810
+ [key: string]: unknown;
3811
+ };
3812
+ event: {
3813
+ type: string;
3814
+ params?: {
3815
+ [key: string]: unknown;
3816
+ };
3817
+ };
3818
+ name?: string;
3819
+ priority?: number;
3820
+ [key: string]: unknown | {
3821
+ [key: string]: unknown;
3822
+ } | {
3823
+ type: string;
3824
+ params?: {
3825
+ [key: string]: unknown;
3826
+ };
3827
+ } | string | number | undefined;
3828
+ }>;
3829
+ [key: string]: unknown | Array<{
3830
+ conditions: {
3831
+ [key: string]: unknown;
3832
+ };
3833
+ event: {
3834
+ type: string;
3835
+ params?: {
3836
+ [key: string]: unknown;
3837
+ };
3838
+ };
3839
+ name?: string;
3840
+ priority?: number;
3841
+ [key: string]: unknown | {
3842
+ [key: string]: unknown;
3843
+ } | {
3844
+ type: string;
3845
+ params?: {
3846
+ [key: string]: unknown;
3847
+ };
3848
+ } | string | number | undefined;
3849
+ }>;
3850
+ };
3851
+ defaultEventType: 'continue' | 'block' | 'complete' | 'route';
3852
+ defaultEventParamsJson: unknown;
3853
+ allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
3854
+ createdAt: string;
3855
+ updatedAt: string;
3856
+ };
3857
+ computedSignalDefinitions: Array<{
3858
+ id: string;
3859
+ key: string;
3860
+ type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
3861
+ inputSignalKeys: Array<string>;
3862
+ configJson: unknown;
3863
+ availableWhenResultStatusIn: Array<string> | unknown;
3864
+ createdAt: string;
3865
+ updatedAt: string;
3866
+ }>;
3867
+ createdAt: string;
3868
+ updatedAt: string;
3869
+ }>;
3870
+ createdAt: string;
3871
+ updatedAt: string;
3872
+ }>;
3873
+ };
3874
+ export type GetApiProjectsByProjectIdLinearPipelineDefinitionsResponse = GetApiProjectsByProjectIdLinearPipelineDefinitionsResponses[keyof GetApiProjectsByProjectIdLinearPipelineDefinitionsResponses];
3873
3875
  export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveData = {
3874
3876
  body?: never;
3875
3877
  path: {
@@ -3989,7 +3991,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
3989
3991
  path: string | unknown;
3990
3992
  } | {
3991
3993
  source: string;
3992
- field: 'title' | 'description';
3994
+ field: string;
3993
3995
  } | {
3994
3996
  source: string;
3995
3997
  stepKey: string;
@@ -4195,7 +4197,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
4195
4197
  path: string | unknown;
4196
4198
  } | {
4197
4199
  source: string;
4198
- field: 'title' | 'description';
4200
+ field: string;
4199
4201
  } | {
4200
4202
  source: string;
4201
4203
  stepKey: string;
@@ -4296,7 +4298,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsDat
4296
4298
  path: string | unknown;
4297
4299
  } | {
4298
4300
  source: string;
4299
- field: 'title' | 'description';
4301
+ field: string;
4300
4302
  } | {
4301
4303
  source: string;
4302
4304
  stepKey: string;
@@ -4492,7 +4494,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
4492
4494
  path: string | unknown;
4493
4495
  } | {
4494
4496
  source: string;
4495
- field: 'title' | 'description';
4497
+ field: string;
4496
4498
  } | {
4497
4499
  source: string;
4498
4500
  stepKey: string;
@@ -4699,7 +4701,7 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
4699
4701
  path: string | unknown;
4700
4702
  } | {
4701
4703
  source: string;
4702
- field: 'title' | 'description';
4704
+ field: string;
4703
4705
  } | {
4704
4706
  source: string;
4705
4707
  stepKey: string;
@@ -4800,7 +4802,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
4800
4802
  path: string | unknown;
4801
4803
  } | {
4802
4804
  source: string;
4803
- field: 'title' | 'description';
4805
+ field: string;
4804
4806
  } | {
4805
4807
  source: string;
4806
4808
  stepKey: string;
@@ -4997,7 +4999,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
4997
4999
  path: string | unknown;
4998
5000
  } | {
4999
5001
  source: string;
5000
- field: 'title' | 'description';
5002
+ field: string;
5001
5003
  } | {
5002
5004
  source: string;
5003
5005
  stepKey: string;
@@ -5252,7 +5254,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
5252
5254
  path: string | unknown;
5253
5255
  } | {
5254
5256
  source: string;
5255
- field: 'title' | 'description';
5257
+ field: string;
5256
5258
  } | {
5257
5259
  source: string;
5258
5260
  stepKey: string;
@@ -5444,7 +5446,7 @@ export type GetApiLinearPipelineExecutionsResponses = {
5444
5446
  stepDefinitionVersion: number;
5445
5447
  stepKey: string;
5446
5448
  position: number;
5447
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
5449
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
5448
5450
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
5449
5451
  stepExecutionId: string;
5450
5452
  stepExecutionResultId: string | unknown;
@@ -5649,7 +5651,7 @@ export type PostApiLinearPipelineExecutionsResponses = {
5649
5651
  stepDefinitionVersion: number;
5650
5652
  stepKey: string;
5651
5653
  position: number;
5652
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
5654
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
5653
5655
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
5654
5656
  stepExecutionId: string;
5655
5657
  stepExecutionResultId: string | unknown;
@@ -5819,7 +5821,7 @@ export type PutApiLinearPipelineExecutionsByLinearPipelineExecutionIdStartRespon
5819
5821
  stepDefinitionVersion: number;
5820
5822
  stepKey: string;
5821
5823
  position: number;
5822
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
5824
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
5823
5825
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
5824
5826
  stepExecutionId: string;
5825
5827
  stepExecutionResultId: string | unknown;
@@ -5989,7 +5991,7 @@ export type PostApiLinearPipelineExecutionsByLinearPipelineExecutionIdStepRunsFi
5989
5991
  stepDefinitionVersion: number;
5990
5992
  stepKey: string;
5991
5993
  position: number;
5992
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
5994
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
5993
5995
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
5994
5996
  stepExecutionId: string;
5995
5997
  stepExecutionResultId: string | unknown;
@@ -6160,7 +6162,7 @@ export type PutApiLinearPipelineExecutionsByLinearPipelineExecutionIdStepRunsByL
6160
6162
  stepDefinitionVersion: number;
6161
6163
  stepKey: string;
6162
6164
  position: number;
6163
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
6165
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
6164
6166
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
6165
6167
  stepExecutionId: string;
6166
6168
  stepExecutionResultId: string | unknown;
@@ -6335,7 +6337,7 @@ export type PostApiLinearPipelineExecutionsByLinearPipelineExecutionIdStepRunsBy
6335
6337
  stepDefinitionVersion: number;
6336
6338
  stepKey: string;
6337
6339
  position: number;
6338
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
6340
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
6339
6341
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
6340
6342
  stepExecutionId: string;
6341
6343
  stepExecutionResultId: string | unknown;
@@ -6512,7 +6514,7 @@ export type PostApiLinearPipelineExecutionsByLinearPipelineExecutionIdStepRunsBy
6512
6514
  stepDefinitionVersion: number;
6513
6515
  stepKey: string;
6514
6516
  position: number;
6515
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
6517
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
6516
6518
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
6517
6519
  stepExecutionId: string;
6518
6520
  stepExecutionResultId: string | unknown;
@@ -6684,7 +6686,7 @@ export type PostApiLinearPipelineExecutionsByLinearPipelineExecutionIdRerunRespo
6684
6686
  stepDefinitionVersion: number;
6685
6687
  stepKey: string;
6686
6688
  position: number;
6687
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
6689
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
6688
6690
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
6689
6691
  stepExecutionId: string;
6690
6692
  stepExecutionResultId: string | unknown;
@@ -6854,7 +6856,7 @@ export type PutApiLinearPipelineExecutionsByLinearPipelineExecutionIdCancelRespo
6854
6856
  stepDefinitionVersion: number;
6855
6857
  stepKey: string;
6856
6858
  position: number;
6857
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
6859
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
6858
6860
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
6859
6861
  stepExecutionId: string;
6860
6862
  stepExecutionResultId: string | unknown;
@@ -7024,7 +7026,7 @@ export type GetApiLinearPipelineExecutionsByLinearPipelineExecutionIdResponses =
7024
7026
  stepDefinitionVersion: number;
7025
7027
  stepKey: string;
7026
7028
  position: number;
7027
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
7029
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
7028
7030
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
7029
7031
  stepExecutionId: string;
7030
7032
  stepExecutionResultId: string | unknown;
@@ -7194,7 +7196,7 @@ export type GetApiLinearPipelineExecutionsByDefinitionByLinearPipelineDefinition
7194
7196
  stepDefinitionVersion: number;
7195
7197
  stepKey: string;
7196
7198
  position: number;
7197
- status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled';
7199
+ status: 'pending' | 'queued' | 'running' | 'satisfied' | 'unsatisfied' | 'blocked' | 'skipped' | 'cancelled' | 'abandoned';
7198
7200
  satisfactionStatus: 'not_evaluated' | 'satisfied_by_policy' | 'satisfied_by_user' | 'unsatisfied_by_policy';
7199
7201
  stepExecutionId: string;
7200
7202
  stepExecutionResultId: string | unknown;
@@ -9305,6 +9307,10 @@ export type GetApiProjectsByProjectIdIntegrationsResponses = {
9305
9307
  id: number;
9306
9308
  fullName: string;
9307
9309
  }>;
9310
+ } | {
9311
+ baseUrl: string;
9312
+ email: string;
9313
+ projectKeys: Array<string>;
9308
9314
  };
9309
9315
  status: 'active' | 'paused' | 'error';
9310
9316
  lastSyncedAt: string | unknown;
@@ -9435,6 +9441,10 @@ export type PostApiProjectsByProjectIdIntegrationsResponses = {
9435
9441
  id: number;
9436
9442
  fullName: string;
9437
9443
  }>;
9444
+ } | {
9445
+ baseUrl: string;
9446
+ email: string;
9447
+ projectKeys: Array<string>;
9438
9448
  };
9439
9449
  status: 'active' | 'paused' | 'error';
9440
9450
  lastSyncedAt: string | unknown;
@@ -9445,7 +9455,9 @@ export type PostApiProjectsByProjectIdIntegrationsResponses = {
9445
9455
  };
9446
9456
  export type PostApiProjectsByProjectIdIntegrationsResponse = PostApiProjectsByProjectIdIntegrationsResponses[keyof PostApiProjectsByProjectIdIntegrationsResponses];
9447
9457
  export type PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncData = {
9448
- body?: never;
9458
+ body: {
9459
+ apiKey?: string;
9460
+ };
9449
9461
  path: {
9450
9462
  projectId: string;
9451
9463
  integrationId: string;
@@ -9574,8 +9586,8 @@ export type PostApiProjectsByProjectIdIntegrationsByIntegrationIdSyncResponses =
9574
9586
  */
9575
9587
  200: {
9576
9588
  totalUpserted: number;
9577
- perRepo: Array<{
9578
- fullName: string;
9589
+ perSource: Array<{
9590
+ key: string;
9579
9591
  totalSeen: number;
9580
9592
  totalUpserted: number;
9581
9593
  }>;