@boboddy/sdk 0.1.13-alpha → 0.1.15-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.
- package/dist/boboddy-config-parser.js +4 -325
- package/dist/client.js +7 -6
- package/dist/defaults/auth-file.d.ts +14 -0
- package/dist/defaults/base-url.d.ts +1 -0
- package/dist/defaults/index.d.ts +7 -0
- package/dist/defaults/index.js +312 -0
- package/dist/defaults/load-push-defaults.d.ts +21 -0
- package/dist/defaults/project-config.d.ts +5 -0
- package/dist/definitions/advancement-policies/define-advancement-policy.d.ts +4 -0
- package/dist/definitions/advancement-policies/fluent-rules.d.ts +82 -0
- package/dist/definitions/advancement-policies/index.d.ts +1 -0
- package/dist/definitions/advancement-policies/index.js +87 -0
- package/dist/definitions/pipelines/builder.d.ts +85 -0
- package/dist/definitions/pipelines/define-pipeline.d.ts +16 -52
- package/dist/definitions/pipelines/index.d.ts +2 -0
- package/dist/definitions/pipelines/index.js +16069 -202
- package/dist/definitions/pipelines/input-accessor.d.ts +25 -0
- package/dist/definitions/pipelines/pipeline-definitions-client.d.ts +231 -44
- package/dist/definitions/steps/define-step.d.ts +17 -4
- package/dist/definitions/steps/index.d.ts +1 -0
- package/dist/definitions/steps/index.js +1616 -1586
- package/dist/definitions/steps/prompt-template.d.ts +16 -0
- package/dist/definitions/steps/step-definitions-client.d.ts +9 -3
- package/dist/definitions/steps/step-features.d.ts +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/sdk.gen.d.ts +2 -2
- package/dist/generated/types.gen.d.ts +154 -174
- package/dist/index.js +1979 -1989
- package/dist/jsonc.js +1 -0
- package/dist/opencode-mcp.js +1573 -1572
- package/dist/push/index.d.ts +2 -0
- package/dist/push/index.js +16423 -0
- package/dist/push/push-from-directory.d.ts +21 -0
- package/package.json +9 -1
|
@@ -919,19 +919,62 @@ export type PostApiStepDefinitionsResponses = {
|
|
|
919
919
|
};
|
|
920
920
|
};
|
|
921
921
|
export type PostApiStepDefinitionsResponse = PostApiStepDefinitionsResponses[keyof PostApiStepDefinitionsResponses];
|
|
922
|
-
export type
|
|
923
|
-
body
|
|
924
|
-
|
|
925
|
-
|
|
922
|
+
export type PutApiStepDefinitionsData = {
|
|
923
|
+
body: {
|
|
924
|
+
projectId: string;
|
|
925
|
+
key: string;
|
|
926
|
+
name: string;
|
|
927
|
+
description: string | unknown;
|
|
928
|
+
prompt: string | unknown;
|
|
929
|
+
version: number;
|
|
930
|
+
kind: 'built_in' | 'user_defined';
|
|
931
|
+
inputSchemaJson: unknown;
|
|
932
|
+
resultSchemaJson: unknown;
|
|
933
|
+
opencodeMcpJson?: {
|
|
934
|
+
[key: string]: {
|
|
935
|
+
type: string;
|
|
936
|
+
command: Array<string>;
|
|
937
|
+
environment?: {
|
|
938
|
+
[key: string]: string;
|
|
939
|
+
};
|
|
940
|
+
enabled?: boolean;
|
|
941
|
+
timeout?: number;
|
|
942
|
+
} | {
|
|
943
|
+
type: string;
|
|
944
|
+
url: string;
|
|
945
|
+
enabled?: boolean;
|
|
946
|
+
headers?: {
|
|
947
|
+
[key: string]: string;
|
|
948
|
+
};
|
|
949
|
+
oauth?: {
|
|
950
|
+
clientId?: string;
|
|
951
|
+
clientSecret?: string;
|
|
952
|
+
scope?: string;
|
|
953
|
+
redirectUri?: string;
|
|
954
|
+
} | boolean;
|
|
955
|
+
timeout?: number;
|
|
956
|
+
} | {
|
|
957
|
+
enabled: boolean;
|
|
958
|
+
};
|
|
959
|
+
} | unknown;
|
|
960
|
+
status: 'draft' | 'active' | 'archived';
|
|
961
|
+
signalExtractorDefinitions: Array<{
|
|
962
|
+
key: string;
|
|
963
|
+
sourcePath: string;
|
|
964
|
+
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
965
|
+
required: boolean;
|
|
966
|
+
availableWhenResultStatusIn: Array<string> | unknown;
|
|
967
|
+
}>;
|
|
926
968
|
};
|
|
969
|
+
path?: never;
|
|
927
970
|
query?: never;
|
|
928
|
-
url: '/api/step-definitions
|
|
971
|
+
url: '/api/step-definitions';
|
|
929
972
|
};
|
|
930
|
-
export type
|
|
973
|
+
export type PutApiStepDefinitionsErrors = {
|
|
931
974
|
/**
|
|
932
|
-
* Response for status
|
|
975
|
+
* Response for status 400
|
|
933
976
|
*/
|
|
934
|
-
|
|
977
|
+
400: {
|
|
935
978
|
type: string;
|
|
936
979
|
title: string;
|
|
937
980
|
status: number;
|
|
@@ -945,9 +988,9 @@ export type GetApiStepDefinitionsByStepDefinitionIdErrors = {
|
|
|
945
988
|
}>;
|
|
946
989
|
};
|
|
947
990
|
/**
|
|
948
|
-
* Response for status
|
|
991
|
+
* Response for status 401
|
|
949
992
|
*/
|
|
950
|
-
|
|
993
|
+
401: {
|
|
951
994
|
type: string;
|
|
952
995
|
title: string;
|
|
953
996
|
status: number;
|
|
@@ -961,9 +1004,9 @@ export type GetApiStepDefinitionsByStepDefinitionIdErrors = {
|
|
|
961
1004
|
}>;
|
|
962
1005
|
};
|
|
963
1006
|
/**
|
|
964
|
-
* Response for status
|
|
1007
|
+
* Response for status 403
|
|
965
1008
|
*/
|
|
966
|
-
|
|
1009
|
+
403: {
|
|
967
1010
|
type: string;
|
|
968
1011
|
title: string;
|
|
969
1012
|
status: number;
|
|
@@ -1009,8 +1052,8 @@ export type GetApiStepDefinitionsByStepDefinitionIdErrors = {
|
|
|
1009
1052
|
}>;
|
|
1010
1053
|
};
|
|
1011
1054
|
};
|
|
1012
|
-
export type
|
|
1013
|
-
export type
|
|
1055
|
+
export type PutApiStepDefinitionsError = PutApiStepDefinitionsErrors[keyof PutApiStepDefinitionsErrors];
|
|
1056
|
+
export type PutApiStepDefinitionsResponses = {
|
|
1014
1057
|
/**
|
|
1015
1058
|
* Response for status 200
|
|
1016
1059
|
*/
|
|
@@ -1067,61 +1110,16 @@ export type GetApiStepDefinitionsByStepDefinitionIdResponses = {
|
|
|
1067
1110
|
updatedAt: string;
|
|
1068
1111
|
};
|
|
1069
1112
|
};
|
|
1070
|
-
export type
|
|
1071
|
-
export type
|
|
1072
|
-
body
|
|
1073
|
-
projectId: string;
|
|
1074
|
-
key: string;
|
|
1075
|
-
name: string;
|
|
1076
|
-
description: string | unknown;
|
|
1077
|
-
prompt: string | unknown;
|
|
1078
|
-
version: number;
|
|
1079
|
-
kind: 'built_in' | 'user_defined';
|
|
1080
|
-
inputSchemaJson: unknown;
|
|
1081
|
-
resultSchemaJson: unknown;
|
|
1082
|
-
opencodeMcpJson?: {
|
|
1083
|
-
[key: string]: {
|
|
1084
|
-
type: string;
|
|
1085
|
-
command: Array<string>;
|
|
1086
|
-
environment?: {
|
|
1087
|
-
[key: string]: string;
|
|
1088
|
-
};
|
|
1089
|
-
enabled?: boolean;
|
|
1090
|
-
timeout?: number;
|
|
1091
|
-
} | {
|
|
1092
|
-
type: string;
|
|
1093
|
-
url: string;
|
|
1094
|
-
enabled?: boolean;
|
|
1095
|
-
headers?: {
|
|
1096
|
-
[key: string]: string;
|
|
1097
|
-
};
|
|
1098
|
-
oauth?: {
|
|
1099
|
-
clientId?: string;
|
|
1100
|
-
clientSecret?: string;
|
|
1101
|
-
scope?: string;
|
|
1102
|
-
redirectUri?: string;
|
|
1103
|
-
} | boolean;
|
|
1104
|
-
timeout?: number;
|
|
1105
|
-
} | {
|
|
1106
|
-
enabled: boolean;
|
|
1107
|
-
};
|
|
1108
|
-
} | unknown;
|
|
1109
|
-
status: 'draft' | 'active' | 'archived';
|
|
1110
|
-
signalExtractorDefinitions: Array<{
|
|
1111
|
-
key: string;
|
|
1112
|
-
sourcePath: string;
|
|
1113
|
-
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
1114
|
-
required: boolean;
|
|
1115
|
-
availableWhenResultStatusIn: Array<string> | unknown;
|
|
1116
|
-
}>;
|
|
1117
|
-
};
|
|
1113
|
+
export type PutApiStepDefinitionsResponse = PutApiStepDefinitionsResponses[keyof PutApiStepDefinitionsResponses];
|
|
1114
|
+
export type GetApiStepDefinitionsByStepDefinitionIdData = {
|
|
1115
|
+
body?: never;
|
|
1118
1116
|
path: {
|
|
1119
1117
|
stepDefinitionId: string;
|
|
1120
1118
|
};
|
|
1121
1119
|
query?: never;
|
|
1122
1120
|
url: '/api/step-definitions/{stepDefinitionId}';
|
|
1123
1121
|
};
|
|
1124
|
-
export type
|
|
1122
|
+
export type GetApiStepDefinitionsByStepDefinitionIdErrors = {
|
|
1125
1123
|
/**
|
|
1126
1124
|
* Response for status 401
|
|
1127
1125
|
*/
|
|
@@ -1203,8 +1201,8 @@ export type PutApiStepDefinitionsByStepDefinitionIdErrors = {
|
|
|
1203
1201
|
}>;
|
|
1204
1202
|
};
|
|
1205
1203
|
};
|
|
1206
|
-
export type
|
|
1207
|
-
export type
|
|
1204
|
+
export type GetApiStepDefinitionsByStepDefinitionIdError = GetApiStepDefinitionsByStepDefinitionIdErrors[keyof GetApiStepDefinitionsByStepDefinitionIdErrors];
|
|
1205
|
+
export type GetApiStepDefinitionsByStepDefinitionIdResponses = {
|
|
1208
1206
|
/**
|
|
1209
1207
|
* Response for status 200
|
|
1210
1208
|
*/
|
|
@@ -1261,7 +1259,7 @@ export type PutApiStepDefinitionsByStepDefinitionIdResponses = {
|
|
|
1261
1259
|
updatedAt: string;
|
|
1262
1260
|
};
|
|
1263
1261
|
};
|
|
1264
|
-
export type
|
|
1262
|
+
export type GetApiStepDefinitionsByStepDefinitionIdResponse = GetApiStepDefinitionsByStepDefinitionIdResponses[keyof GetApiStepDefinitionsByStepDefinitionIdResponses];
|
|
1265
1263
|
export type PutApiStepDefinitionsByStepDefinitionIdArchiveData = {
|
|
1266
1264
|
body?: never;
|
|
1267
1265
|
path: {
|
|
@@ -2937,6 +2935,7 @@ export type GetApiLinearPipelineDefinitionsResponses = {
|
|
|
2937
2935
|
description: string | unknown;
|
|
2938
2936
|
status: 'draft' | 'active' | 'archived';
|
|
2939
2937
|
archivedAt: string | unknown;
|
|
2938
|
+
inputSchemaJson: unknown;
|
|
2940
2939
|
stepDefinitions: Array<{
|
|
2941
2940
|
id: string;
|
|
2942
2941
|
linearPipelineDefinitionId: string;
|
|
@@ -2950,6 +2949,9 @@ export type GetApiLinearPipelineDefinitionsResponses = {
|
|
|
2950
2949
|
[key: string]: {
|
|
2951
2950
|
source: string;
|
|
2952
2951
|
path: string | unknown;
|
|
2952
|
+
} | {
|
|
2953
|
+
source: string;
|
|
2954
|
+
field: 'title' | 'description';
|
|
2953
2955
|
} | {
|
|
2954
2956
|
source: string;
|
|
2955
2957
|
stepKey: string;
|
|
@@ -2964,9 +2966,7 @@ export type GetApiLinearPipelineDefinitionsResponses = {
|
|
|
2964
2966
|
};
|
|
2965
2967
|
} | unknown;
|
|
2966
2968
|
timeoutSeconds: number | unknown;
|
|
2967
|
-
retryPolicyJson:
|
|
2968
|
-
[key: string]: unknown;
|
|
2969
|
-
} | unknown;
|
|
2969
|
+
retryPolicyJson: unknown;
|
|
2970
2970
|
advancementPolicyDefinition: {
|
|
2971
2971
|
id: string;
|
|
2972
2972
|
linearPipelineStepDefinitionId: string;
|
|
@@ -3015,9 +3015,7 @@ export type GetApiLinearPipelineDefinitionsResponses = {
|
|
|
3015
3015
|
}>;
|
|
3016
3016
|
};
|
|
3017
3017
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3018
|
-
defaultEventParamsJson:
|
|
3019
|
-
[key: string]: unknown;
|
|
3020
|
-
} | unknown;
|
|
3018
|
+
defaultEventParamsJson: unknown;
|
|
3021
3019
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3022
3020
|
createdAt: string;
|
|
3023
3021
|
updatedAt: string;
|
|
@@ -3027,9 +3025,7 @@ export type GetApiLinearPipelineDefinitionsResponses = {
|
|
|
3027
3025
|
key: string;
|
|
3028
3026
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3029
3027
|
inputSignalKeys: Array<string>;
|
|
3030
|
-
configJson:
|
|
3031
|
-
[key: string]: unknown;
|
|
3032
|
-
} | unknown;
|
|
3028
|
+
configJson: unknown;
|
|
3033
3029
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3034
3030
|
createdAt: string;
|
|
3035
3031
|
updatedAt: string;
|
|
@@ -3049,6 +3045,7 @@ export type PostApiLinearPipelineDefinitionsData = {
|
|
|
3049
3045
|
name: string;
|
|
3050
3046
|
description: string | unknown;
|
|
3051
3047
|
status: 'draft' | 'active' | 'archived';
|
|
3048
|
+
inputSchemaJson?: unknown;
|
|
3052
3049
|
stepDefinitions: Array<{
|
|
3053
3050
|
stepDefinitionId: string;
|
|
3054
3051
|
stepDefinitionVersion: number;
|
|
@@ -3060,6 +3057,9 @@ export type PostApiLinearPipelineDefinitionsData = {
|
|
|
3060
3057
|
[key: string]: {
|
|
3061
3058
|
source: string;
|
|
3062
3059
|
path: string | unknown;
|
|
3060
|
+
} | {
|
|
3061
|
+
source: string;
|
|
3062
|
+
field: 'title' | 'description';
|
|
3063
3063
|
} | {
|
|
3064
3064
|
source: string;
|
|
3065
3065
|
stepKey: string;
|
|
@@ -3074,9 +3074,7 @@ export type PostApiLinearPipelineDefinitionsData = {
|
|
|
3074
3074
|
};
|
|
3075
3075
|
} | unknown;
|
|
3076
3076
|
timeoutSeconds: number | unknown;
|
|
3077
|
-
retryPolicyJson:
|
|
3078
|
-
[key: string]: unknown;
|
|
3079
|
-
} | unknown;
|
|
3077
|
+
retryPolicyJson: unknown;
|
|
3080
3078
|
advancementPolicyDefinition: {
|
|
3081
3079
|
rulesJson: {
|
|
3082
3080
|
rules: Array<{
|
|
@@ -3123,18 +3121,14 @@ export type PostApiLinearPipelineDefinitionsData = {
|
|
|
3123
3121
|
}>;
|
|
3124
3122
|
};
|
|
3125
3123
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3126
|
-
defaultEventParamsJson:
|
|
3127
|
-
[key: string]: unknown;
|
|
3128
|
-
} | unknown;
|
|
3124
|
+
defaultEventParamsJson: unknown;
|
|
3129
3125
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3130
3126
|
};
|
|
3131
3127
|
computedSignalDefinitions: Array<{
|
|
3132
3128
|
key: string;
|
|
3133
3129
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3134
3130
|
inputSignalKeys: Array<string>;
|
|
3135
|
-
configJson:
|
|
3136
|
-
[key: string]: unknown;
|
|
3137
|
-
} | unknown;
|
|
3131
|
+
configJson: unknown;
|
|
3138
3132
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3139
3133
|
}>;
|
|
3140
3134
|
}>;
|
|
@@ -3270,6 +3264,7 @@ export type PostApiLinearPipelineDefinitionsResponses = {
|
|
|
3270
3264
|
description: string | unknown;
|
|
3271
3265
|
status: 'draft' | 'active' | 'archived';
|
|
3272
3266
|
archivedAt: string | unknown;
|
|
3267
|
+
inputSchemaJson: unknown;
|
|
3273
3268
|
stepDefinitions: Array<{
|
|
3274
3269
|
id: string;
|
|
3275
3270
|
linearPipelineDefinitionId: string;
|
|
@@ -3283,6 +3278,9 @@ export type PostApiLinearPipelineDefinitionsResponses = {
|
|
|
3283
3278
|
[key: string]: {
|
|
3284
3279
|
source: string;
|
|
3285
3280
|
path: string | unknown;
|
|
3281
|
+
} | {
|
|
3282
|
+
source: string;
|
|
3283
|
+
field: 'title' | 'description';
|
|
3286
3284
|
} | {
|
|
3287
3285
|
source: string;
|
|
3288
3286
|
stepKey: string;
|
|
@@ -3297,9 +3295,7 @@ export type PostApiLinearPipelineDefinitionsResponses = {
|
|
|
3297
3295
|
};
|
|
3298
3296
|
} | unknown;
|
|
3299
3297
|
timeoutSeconds: number | unknown;
|
|
3300
|
-
retryPolicyJson:
|
|
3301
|
-
[key: string]: unknown;
|
|
3302
|
-
} | unknown;
|
|
3298
|
+
retryPolicyJson: unknown;
|
|
3303
3299
|
advancementPolicyDefinition: {
|
|
3304
3300
|
id: string;
|
|
3305
3301
|
linearPipelineStepDefinitionId: string;
|
|
@@ -3348,9 +3344,7 @@ export type PostApiLinearPipelineDefinitionsResponses = {
|
|
|
3348
3344
|
}>;
|
|
3349
3345
|
};
|
|
3350
3346
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3351
|
-
defaultEventParamsJson:
|
|
3352
|
-
[key: string]: unknown;
|
|
3353
|
-
} | unknown;
|
|
3347
|
+
defaultEventParamsJson: unknown;
|
|
3354
3348
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3355
3349
|
createdAt: string;
|
|
3356
3350
|
updatedAt: string;
|
|
@@ -3360,9 +3354,7 @@ export type PostApiLinearPipelineDefinitionsResponses = {
|
|
|
3360
3354
|
key: string;
|
|
3361
3355
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3362
3356
|
inputSignalKeys: Array<string>;
|
|
3363
|
-
configJson:
|
|
3364
|
-
[key: string]: unknown;
|
|
3365
|
-
} | unknown;
|
|
3357
|
+
configJson: unknown;
|
|
3366
3358
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3367
3359
|
createdAt: string;
|
|
3368
3360
|
updatedAt: string;
|
|
@@ -3382,6 +3374,7 @@ export type PutApiLinearPipelineDefinitionsData = {
|
|
|
3382
3374
|
name: string;
|
|
3383
3375
|
description: string | unknown;
|
|
3384
3376
|
status: 'draft' | 'active' | 'archived';
|
|
3377
|
+
inputSchemaJson?: unknown;
|
|
3385
3378
|
stepDefinitions: Array<{
|
|
3386
3379
|
stepDefinitionId: string;
|
|
3387
3380
|
stepDefinitionVersion: number;
|
|
@@ -3393,6 +3386,9 @@ export type PutApiLinearPipelineDefinitionsData = {
|
|
|
3393
3386
|
[key: string]: {
|
|
3394
3387
|
source: string;
|
|
3395
3388
|
path: string | unknown;
|
|
3389
|
+
} | {
|
|
3390
|
+
source: string;
|
|
3391
|
+
field: 'title' | 'description';
|
|
3396
3392
|
} | {
|
|
3397
3393
|
source: string;
|
|
3398
3394
|
stepKey: string;
|
|
@@ -3407,9 +3403,7 @@ export type PutApiLinearPipelineDefinitionsData = {
|
|
|
3407
3403
|
};
|
|
3408
3404
|
} | unknown;
|
|
3409
3405
|
timeoutSeconds: number | unknown;
|
|
3410
|
-
retryPolicyJson:
|
|
3411
|
-
[key: string]: unknown;
|
|
3412
|
-
} | unknown;
|
|
3406
|
+
retryPolicyJson: unknown;
|
|
3413
3407
|
advancementPolicyDefinition: {
|
|
3414
3408
|
rulesJson: {
|
|
3415
3409
|
rules: Array<{
|
|
@@ -3456,18 +3450,14 @@ export type PutApiLinearPipelineDefinitionsData = {
|
|
|
3456
3450
|
}>;
|
|
3457
3451
|
};
|
|
3458
3452
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3459
|
-
defaultEventParamsJson:
|
|
3460
|
-
[key: string]: unknown;
|
|
3461
|
-
} | unknown;
|
|
3453
|
+
defaultEventParamsJson: unknown;
|
|
3462
3454
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3463
3455
|
};
|
|
3464
3456
|
computedSignalDefinitions: Array<{
|
|
3465
3457
|
key: string;
|
|
3466
3458
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3467
3459
|
inputSignalKeys: Array<string>;
|
|
3468
|
-
configJson:
|
|
3469
|
-
[key: string]: unknown;
|
|
3470
|
-
} | unknown;
|
|
3460
|
+
configJson: unknown;
|
|
3471
3461
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3472
3462
|
}>;
|
|
3473
3463
|
}>;
|
|
@@ -3555,6 +3545,7 @@ export type PutApiLinearPipelineDefinitionsResponses = {
|
|
|
3555
3545
|
description: string | unknown;
|
|
3556
3546
|
status: 'draft' | 'active' | 'archived';
|
|
3557
3547
|
archivedAt: string | unknown;
|
|
3548
|
+
inputSchemaJson: unknown;
|
|
3558
3549
|
stepDefinitions: Array<{
|
|
3559
3550
|
id: string;
|
|
3560
3551
|
linearPipelineDefinitionId: string;
|
|
@@ -3568,6 +3559,9 @@ export type PutApiLinearPipelineDefinitionsResponses = {
|
|
|
3568
3559
|
[key: string]: {
|
|
3569
3560
|
source: string;
|
|
3570
3561
|
path: string | unknown;
|
|
3562
|
+
} | {
|
|
3563
|
+
source: string;
|
|
3564
|
+
field: 'title' | 'description';
|
|
3571
3565
|
} | {
|
|
3572
3566
|
source: string;
|
|
3573
3567
|
stepKey: string;
|
|
@@ -3582,9 +3576,7 @@ export type PutApiLinearPipelineDefinitionsResponses = {
|
|
|
3582
3576
|
};
|
|
3583
3577
|
} | unknown;
|
|
3584
3578
|
timeoutSeconds: number | unknown;
|
|
3585
|
-
retryPolicyJson:
|
|
3586
|
-
[key: string]: unknown;
|
|
3587
|
-
} | unknown;
|
|
3579
|
+
retryPolicyJson: unknown;
|
|
3588
3580
|
advancementPolicyDefinition: {
|
|
3589
3581
|
id: string;
|
|
3590
3582
|
linearPipelineStepDefinitionId: string;
|
|
@@ -3633,9 +3625,7 @@ export type PutApiLinearPipelineDefinitionsResponses = {
|
|
|
3633
3625
|
}>;
|
|
3634
3626
|
};
|
|
3635
3627
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3636
|
-
defaultEventParamsJson:
|
|
3637
|
-
[key: string]: unknown;
|
|
3638
|
-
} | unknown;
|
|
3628
|
+
defaultEventParamsJson: unknown;
|
|
3639
3629
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3640
3630
|
createdAt: string;
|
|
3641
3631
|
updatedAt: string;
|
|
@@ -3645,9 +3635,7 @@ export type PutApiLinearPipelineDefinitionsResponses = {
|
|
|
3645
3635
|
key: string;
|
|
3646
3636
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3647
3637
|
inputSignalKeys: Array<string>;
|
|
3648
|
-
configJson:
|
|
3649
|
-
[key: string]: unknown;
|
|
3650
|
-
} | unknown;
|
|
3638
|
+
configJson: unknown;
|
|
3651
3639
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3652
3640
|
createdAt: string;
|
|
3653
3641
|
updatedAt: string;
|
|
@@ -3779,6 +3767,7 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
|
|
|
3779
3767
|
description: string | unknown;
|
|
3780
3768
|
status: 'draft' | 'active' | 'archived';
|
|
3781
3769
|
archivedAt: string | unknown;
|
|
3770
|
+
inputSchemaJson: unknown;
|
|
3782
3771
|
stepDefinitions: Array<{
|
|
3783
3772
|
id: string;
|
|
3784
3773
|
linearPipelineDefinitionId: string;
|
|
@@ -3792,6 +3781,9 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
|
|
|
3792
3781
|
[key: string]: {
|
|
3793
3782
|
source: string;
|
|
3794
3783
|
path: string | unknown;
|
|
3784
|
+
} | {
|
|
3785
|
+
source: string;
|
|
3786
|
+
field: 'title' | 'description';
|
|
3795
3787
|
} | {
|
|
3796
3788
|
source: string;
|
|
3797
3789
|
stepKey: string;
|
|
@@ -3806,9 +3798,7 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
|
|
|
3806
3798
|
};
|
|
3807
3799
|
} | unknown;
|
|
3808
3800
|
timeoutSeconds: number | unknown;
|
|
3809
|
-
retryPolicyJson:
|
|
3810
|
-
[key: string]: unknown;
|
|
3811
|
-
} | unknown;
|
|
3801
|
+
retryPolicyJson: unknown;
|
|
3812
3802
|
advancementPolicyDefinition: {
|
|
3813
3803
|
id: string;
|
|
3814
3804
|
linearPipelineStepDefinitionId: string;
|
|
@@ -3857,9 +3847,7 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
|
|
|
3857
3847
|
}>;
|
|
3858
3848
|
};
|
|
3859
3849
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
3860
|
-
defaultEventParamsJson:
|
|
3861
|
-
[key: string]: unknown;
|
|
3862
|
-
} | unknown;
|
|
3850
|
+
defaultEventParamsJson: unknown;
|
|
3863
3851
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
3864
3852
|
createdAt: string;
|
|
3865
3853
|
updatedAt: string;
|
|
@@ -3869,9 +3857,7 @@ export type GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses
|
|
|
3869
3857
|
key: string;
|
|
3870
3858
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
3871
3859
|
inputSignalKeys: Array<string>;
|
|
3872
|
-
configJson:
|
|
3873
|
-
[key: string]: unknown;
|
|
3874
|
-
} | unknown;
|
|
3860
|
+
configJson: unknown;
|
|
3875
3861
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
3876
3862
|
createdAt: string;
|
|
3877
3863
|
updatedAt: string;
|
|
@@ -3987,6 +3973,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
|
|
|
3987
3973
|
description: string | unknown;
|
|
3988
3974
|
status: 'draft' | 'active' | 'archived';
|
|
3989
3975
|
archivedAt: string | unknown;
|
|
3976
|
+
inputSchemaJson: unknown;
|
|
3990
3977
|
stepDefinitions: Array<{
|
|
3991
3978
|
id: string;
|
|
3992
3979
|
linearPipelineDefinitionId: string;
|
|
@@ -4000,6 +3987,9 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
|
|
|
4000
3987
|
[key: string]: {
|
|
4001
3988
|
source: string;
|
|
4002
3989
|
path: string | unknown;
|
|
3990
|
+
} | {
|
|
3991
|
+
source: string;
|
|
3992
|
+
field: 'title' | 'description';
|
|
4003
3993
|
} | {
|
|
4004
3994
|
source: string;
|
|
4005
3995
|
stepKey: string;
|
|
@@ -4014,9 +4004,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
|
|
|
4014
4004
|
};
|
|
4015
4005
|
} | unknown;
|
|
4016
4006
|
timeoutSeconds: number | unknown;
|
|
4017
|
-
retryPolicyJson:
|
|
4018
|
-
[key: string]: unknown;
|
|
4019
|
-
} | unknown;
|
|
4007
|
+
retryPolicyJson: unknown;
|
|
4020
4008
|
advancementPolicyDefinition: {
|
|
4021
4009
|
id: string;
|
|
4022
4010
|
linearPipelineStepDefinitionId: string;
|
|
@@ -4065,9 +4053,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
|
|
|
4065
4053
|
}>;
|
|
4066
4054
|
};
|
|
4067
4055
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4068
|
-
defaultEventParamsJson:
|
|
4069
|
-
[key: string]: unknown;
|
|
4070
|
-
} | unknown;
|
|
4056
|
+
defaultEventParamsJson: unknown;
|
|
4071
4057
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4072
4058
|
createdAt: string;
|
|
4073
4059
|
updatedAt: string;
|
|
@@ -4077,9 +4063,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveRe
|
|
|
4077
4063
|
key: string;
|
|
4078
4064
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4079
4065
|
inputSignalKeys: Array<string>;
|
|
4080
|
-
configJson:
|
|
4081
|
-
[key: string]: unknown;
|
|
4082
|
-
} | unknown;
|
|
4066
|
+
configJson: unknown;
|
|
4083
4067
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4084
4068
|
createdAt: string;
|
|
4085
4069
|
updatedAt: string;
|
|
@@ -4195,6 +4179,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
|
|
|
4195
4179
|
description: string | unknown;
|
|
4196
4180
|
status: 'draft' | 'active' | 'archived';
|
|
4197
4181
|
archivedAt: string | unknown;
|
|
4182
|
+
inputSchemaJson: unknown;
|
|
4198
4183
|
stepDefinitions: Array<{
|
|
4199
4184
|
id: string;
|
|
4200
4185
|
linearPipelineDefinitionId: string;
|
|
@@ -4208,6 +4193,9 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
|
|
|
4208
4193
|
[key: string]: {
|
|
4209
4194
|
source: string;
|
|
4210
4195
|
path: string | unknown;
|
|
4196
|
+
} | {
|
|
4197
|
+
source: string;
|
|
4198
|
+
field: 'title' | 'description';
|
|
4211
4199
|
} | {
|
|
4212
4200
|
source: string;
|
|
4213
4201
|
stepKey: string;
|
|
@@ -4222,9 +4210,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
|
|
|
4222
4210
|
};
|
|
4223
4211
|
} | unknown;
|
|
4224
4212
|
timeoutSeconds: number | unknown;
|
|
4225
|
-
retryPolicyJson:
|
|
4226
|
-
[key: string]: unknown;
|
|
4227
|
-
} | unknown;
|
|
4213
|
+
retryPolicyJson: unknown;
|
|
4228
4214
|
advancementPolicyDefinition: {
|
|
4229
4215
|
id: string;
|
|
4230
4216
|
linearPipelineStepDefinitionId: string;
|
|
@@ -4273,9 +4259,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
|
|
|
4273
4259
|
}>;
|
|
4274
4260
|
};
|
|
4275
4261
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4276
|
-
defaultEventParamsJson:
|
|
4277
|
-
[key: string]: unknown;
|
|
4278
|
-
} | unknown;
|
|
4262
|
+
defaultEventParamsJson: unknown;
|
|
4279
4263
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4280
4264
|
createdAt: string;
|
|
4281
4265
|
updatedAt: string;
|
|
@@ -4285,9 +4269,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchive
|
|
|
4285
4269
|
key: string;
|
|
4286
4270
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4287
4271
|
inputSignalKeys: Array<string>;
|
|
4288
|
-
configJson:
|
|
4289
|
-
[key: string]: unknown;
|
|
4290
|
-
} | unknown;
|
|
4272
|
+
configJson: unknown;
|
|
4291
4273
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4292
4274
|
createdAt: string;
|
|
4293
4275
|
updatedAt: string;
|
|
@@ -4312,6 +4294,9 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsDat
|
|
|
4312
4294
|
[key: string]: {
|
|
4313
4295
|
source: string;
|
|
4314
4296
|
path: string | unknown;
|
|
4297
|
+
} | {
|
|
4298
|
+
source: string;
|
|
4299
|
+
field: 'title' | 'description';
|
|
4315
4300
|
} | {
|
|
4316
4301
|
source: string;
|
|
4317
4302
|
stepKey: string;
|
|
@@ -4491,6 +4476,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
|
|
|
4491
4476
|
description: string | unknown;
|
|
4492
4477
|
status: 'draft' | 'active' | 'archived';
|
|
4493
4478
|
archivedAt: string | unknown;
|
|
4479
|
+
inputSchemaJson: unknown;
|
|
4494
4480
|
stepDefinitions: Array<{
|
|
4495
4481
|
id: string;
|
|
4496
4482
|
linearPipelineDefinitionId: string;
|
|
@@ -4504,6 +4490,9 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
|
|
|
4504
4490
|
[key: string]: {
|
|
4505
4491
|
source: string;
|
|
4506
4492
|
path: string | unknown;
|
|
4493
|
+
} | {
|
|
4494
|
+
source: string;
|
|
4495
|
+
field: 'title' | 'description';
|
|
4507
4496
|
} | {
|
|
4508
4497
|
source: string;
|
|
4509
4498
|
stepKey: string;
|
|
@@ -4518,9 +4507,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
|
|
|
4518
4507
|
};
|
|
4519
4508
|
} | unknown;
|
|
4520
4509
|
timeoutSeconds: number | unknown;
|
|
4521
|
-
retryPolicyJson:
|
|
4522
|
-
[key: string]: unknown;
|
|
4523
|
-
} | unknown;
|
|
4510
|
+
retryPolicyJson: unknown;
|
|
4524
4511
|
advancementPolicyDefinition: {
|
|
4525
4512
|
id: string;
|
|
4526
4513
|
linearPipelineStepDefinitionId: string;
|
|
@@ -4569,9 +4556,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
|
|
|
4569
4556
|
}>;
|
|
4570
4557
|
};
|
|
4571
4558
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4572
|
-
defaultEventParamsJson:
|
|
4573
|
-
[key: string]: unknown;
|
|
4574
|
-
} | unknown;
|
|
4559
|
+
defaultEventParamsJson: unknown;
|
|
4575
4560
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4576
4561
|
createdAt: string;
|
|
4577
4562
|
updatedAt: string;
|
|
@@ -4581,9 +4566,7 @@ export type PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsRes
|
|
|
4581
4566
|
key: string;
|
|
4582
4567
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4583
4568
|
inputSignalKeys: Array<string>;
|
|
4584
|
-
configJson:
|
|
4585
|
-
[key: string]: unknown;
|
|
4586
|
-
} | unknown;
|
|
4569
|
+
configJson: unknown;
|
|
4587
4570
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4588
4571
|
createdAt: string;
|
|
4589
4572
|
updatedAt: string;
|
|
@@ -4700,6 +4683,7 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
|
|
|
4700
4683
|
description: string | unknown;
|
|
4701
4684
|
status: 'draft' | 'active' | 'archived';
|
|
4702
4685
|
archivedAt: string | unknown;
|
|
4686
|
+
inputSchemaJson: unknown;
|
|
4703
4687
|
stepDefinitions: Array<{
|
|
4704
4688
|
id: string;
|
|
4705
4689
|
linearPipelineDefinitionId: string;
|
|
@@ -4713,6 +4697,9 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
|
|
|
4713
4697
|
[key: string]: {
|
|
4714
4698
|
source: string;
|
|
4715
4699
|
path: string | unknown;
|
|
4700
|
+
} | {
|
|
4701
|
+
source: string;
|
|
4702
|
+
field: 'title' | 'description';
|
|
4716
4703
|
} | {
|
|
4717
4704
|
source: string;
|
|
4718
4705
|
stepKey: string;
|
|
@@ -4727,9 +4714,7 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
|
|
|
4727
4714
|
};
|
|
4728
4715
|
} | unknown;
|
|
4729
4716
|
timeoutSeconds: number | unknown;
|
|
4730
|
-
retryPolicyJson:
|
|
4731
|
-
[key: string]: unknown;
|
|
4732
|
-
} | unknown;
|
|
4717
|
+
retryPolicyJson: unknown;
|
|
4733
4718
|
advancementPolicyDefinition: {
|
|
4734
4719
|
id: string;
|
|
4735
4720
|
linearPipelineStepDefinitionId: string;
|
|
@@ -4778,9 +4763,7 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
|
|
|
4778
4763
|
}>;
|
|
4779
4764
|
};
|
|
4780
4765
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
4781
|
-
defaultEventParamsJson:
|
|
4782
|
-
[key: string]: unknown;
|
|
4783
|
-
} | unknown;
|
|
4766
|
+
defaultEventParamsJson: unknown;
|
|
4784
4767
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
4785
4768
|
createdAt: string;
|
|
4786
4769
|
updatedAt: string;
|
|
@@ -4790,9 +4773,7 @@ export type DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsB
|
|
|
4790
4773
|
key: string;
|
|
4791
4774
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
4792
4775
|
inputSignalKeys: Array<string>;
|
|
4793
|
-
configJson:
|
|
4794
|
-
[key: string]: unknown;
|
|
4795
|
-
} | unknown;
|
|
4776
|
+
configJson: unknown;
|
|
4796
4777
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
4797
4778
|
createdAt: string;
|
|
4798
4779
|
updatedAt: string;
|
|
@@ -4817,6 +4798,9 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
4817
4798
|
[key: string]: {
|
|
4818
4799
|
source: string;
|
|
4819
4800
|
path: string | unknown;
|
|
4801
|
+
} | {
|
|
4802
|
+
source: string;
|
|
4803
|
+
field: 'title' | 'description';
|
|
4820
4804
|
} | {
|
|
4821
4805
|
source: string;
|
|
4822
4806
|
stepKey: string;
|
|
@@ -4997,6 +4981,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
4997
4981
|
description: string | unknown;
|
|
4998
4982
|
status: 'draft' | 'active' | 'archived';
|
|
4999
4983
|
archivedAt: string | unknown;
|
|
4984
|
+
inputSchemaJson: unknown;
|
|
5000
4985
|
stepDefinitions: Array<{
|
|
5001
4986
|
id: string;
|
|
5002
4987
|
linearPipelineDefinitionId: string;
|
|
@@ -5010,6 +4995,9 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5010
4995
|
[key: string]: {
|
|
5011
4996
|
source: string;
|
|
5012
4997
|
path: string | unknown;
|
|
4998
|
+
} | {
|
|
4999
|
+
source: string;
|
|
5000
|
+
field: 'title' | 'description';
|
|
5013
5001
|
} | {
|
|
5014
5002
|
source: string;
|
|
5015
5003
|
stepKey: string;
|
|
@@ -5024,9 +5012,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5024
5012
|
};
|
|
5025
5013
|
} | unknown;
|
|
5026
5014
|
timeoutSeconds: number | unknown;
|
|
5027
|
-
retryPolicyJson:
|
|
5028
|
-
[key: string]: unknown;
|
|
5029
|
-
} | unknown;
|
|
5015
|
+
retryPolicyJson: unknown;
|
|
5030
5016
|
advancementPolicyDefinition: {
|
|
5031
5017
|
id: string;
|
|
5032
5018
|
linearPipelineStepDefinitionId: string;
|
|
@@ -5075,9 +5061,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5075
5061
|
}>;
|
|
5076
5062
|
};
|
|
5077
5063
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5078
|
-
defaultEventParamsJson:
|
|
5079
|
-
[key: string]: unknown;
|
|
5080
|
-
} | unknown;
|
|
5064
|
+
defaultEventParamsJson: unknown;
|
|
5081
5065
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5082
5066
|
createdAt: string;
|
|
5083
5067
|
updatedAt: string;
|
|
@@ -5087,9 +5071,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5087
5071
|
key: string;
|
|
5088
5072
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5089
5073
|
inputSignalKeys: Array<string>;
|
|
5090
|
-
configJson:
|
|
5091
|
-
[key: string]: unknown;
|
|
5092
|
-
} | unknown;
|
|
5074
|
+
configJson: unknown;
|
|
5093
5075
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5094
5076
|
createdAt: string;
|
|
5095
5077
|
updatedAt: string;
|
|
@@ -5254,6 +5236,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5254
5236
|
description: string | unknown;
|
|
5255
5237
|
status: 'draft' | 'active' | 'archived';
|
|
5256
5238
|
archivedAt: string | unknown;
|
|
5239
|
+
inputSchemaJson: unknown;
|
|
5257
5240
|
stepDefinitions: Array<{
|
|
5258
5241
|
id: string;
|
|
5259
5242
|
linearPipelineDefinitionId: string;
|
|
@@ -5267,6 +5250,9 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5267
5250
|
[key: string]: {
|
|
5268
5251
|
source: string;
|
|
5269
5252
|
path: string | unknown;
|
|
5253
|
+
} | {
|
|
5254
|
+
source: string;
|
|
5255
|
+
field: 'title' | 'description';
|
|
5270
5256
|
} | {
|
|
5271
5257
|
source: string;
|
|
5272
5258
|
stepKey: string;
|
|
@@ -5281,9 +5267,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5281
5267
|
};
|
|
5282
5268
|
} | unknown;
|
|
5283
5269
|
timeoutSeconds: number | unknown;
|
|
5284
|
-
retryPolicyJson:
|
|
5285
|
-
[key: string]: unknown;
|
|
5286
|
-
} | unknown;
|
|
5270
|
+
retryPolicyJson: unknown;
|
|
5287
5271
|
advancementPolicyDefinition: {
|
|
5288
5272
|
id: string;
|
|
5289
5273
|
linearPipelineStepDefinitionId: string;
|
|
@@ -5332,9 +5316,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5332
5316
|
}>;
|
|
5333
5317
|
};
|
|
5334
5318
|
defaultEventType: 'continue' | 'block' | 'complete' | 'route';
|
|
5335
|
-
defaultEventParamsJson:
|
|
5336
|
-
[key: string]: unknown;
|
|
5337
|
-
} | unknown;
|
|
5319
|
+
defaultEventParamsJson: unknown;
|
|
5338
5320
|
allowedEventTypes: Array<'continue' | 'block' | 'complete' | 'route'>;
|
|
5339
5321
|
createdAt: string;
|
|
5340
5322
|
updatedAt: string;
|
|
@@ -5344,9 +5326,7 @@ export type PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLi
|
|
|
5344
5326
|
key: string;
|
|
5345
5327
|
type: 'average' | 'weighted_average' | 'sum' | 'min' | 'max' | 'count' | 'boolean_any' | 'boolean_all';
|
|
5346
5328
|
inputSignalKeys: Array<string>;
|
|
5347
|
-
configJson:
|
|
5348
|
-
[key: string]: unknown;
|
|
5349
|
-
} | unknown;
|
|
5329
|
+
configJson: unknown;
|
|
5350
5330
|
availableWhenResultStatusIn: Array<string> | unknown;
|
|
5351
5331
|
createdAt: string;
|
|
5352
5332
|
updatedAt: string;
|