@lostgradient/weft 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -8
- package/dist/cli/generated/operation-catalog.snapshot.json +977 -77
- package/dist/cli/generated/operation-client.generated.d.ts +14 -21
- package/dist/core/aggregate-validation.d.ts +2 -5
- package/dist/core/aggregate-validation.js +2 -10
- package/dist/core/atomic-state.js +21 -24
- package/dist/core/engine/schedules.js +4 -1
- package/dist/core/inline-execution-strategy.js +8 -46
- package/dist/core/list-filter-validation.d.ts +2 -5
- package/dist/core/list-filter-validation.js +2 -10
- package/dist/core/types/schedules.d.ts +13 -31
- package/dist/core/validation-issues.d.ts +13 -0
- package/dist/core/validation-issues.js +9 -0
- package/dist/http.js +1 -1
- package/dist/indexeddb.js +1 -1
- package/dist/mcp/session.js +2 -10
- package/dist/mcp/tools.js +2 -10
- package/dist/mcp/tuple-list-equality.d.ts +1 -0
- package/dist/mcp/tuple-list-equality.js +12 -0
- package/dist/server/operation-catalog/types.d.ts +1 -1
- package/dist/server/operation-registry.d.ts +2 -31
- package/dist/server/operations/bulk-filter-helpers.d.ts +17 -17
- package/dist/server/operations/bulk-filter-helpers.js +16 -37
- package/dist/server/operations/bulk-mutate-workflow-tags.d.ts +27 -27
- package/dist/server/operations/bulk-signal-workflows.d.ts +26 -26
- package/dist/server/operations/create-schedule.js +7 -19
- package/dist/server/operations/event-stream-contracts.d.ts +20 -0
- package/dist/server/operations/event-stream-contracts.js +67 -0
- package/dist/server/operations/fleet-events-sse.js +21 -50
- package/dist/server/operations/fleet-events-subscription.js +8 -12
- package/dist/server/operations/list-workflows.d.ts +43 -43
- package/dist/server/operations/list-workflows.js +9 -30
- package/dist/server/operations/purge-workflows.d.ts +11 -11
- package/dist/server/operations/schedule-rest-body.d.ts +11 -0
- package/dist/server/operations/schedule-rest-body.js +28 -0
- package/dist/server/operations/update-schedule.js +7 -19
- package/dist/server/operations/workflow-events-sse.js +29 -67
- package/dist/server/operations/workflow-events-subscription.js +9 -27
- package/dist/server/runtime/task-polling.js +3 -5
- package/dist/server/task-state.d.ts +2 -8
- package/dist/server/task-state.js +10 -7
- package/dist/storage/bun-sql.js +52 -49
- package/dist/storage/conditional-batch-body.d.ts +7 -0
- package/dist/storage/conditional-batch-body.js +14 -0
- package/dist/storage/lmdb.js +1 -1
- package/dist/storage/memory.js +1 -1
- package/dist/storage/neon.js +2 -2
- package/dist/storage/node-sqlite-loader.d.ts +2 -2
- package/dist/storage/node-sqlite.js +32 -17
- package/dist/storage/postgres.js +1 -1
- package/dist/storage/resolve.js +1 -1
- package/dist/storage/scoped-storage.js +1 -1
- package/dist/storage/turso.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/web-extension.js +1 -1
- package/dist/worker/execute-with-interceptors.d.ts +1 -1
- package/dist/worker/execute-with-interceptors.js +2 -2
- package/dist/worker/index.js +5 -5
- package/dist/worker/long-poll.js +3 -4
- package/dist/worker/protocol-messages.d.ts +11 -19
- package/dist/worker/protocol-schemas.d.ts +8 -8
- package/dist/worker/protocol-schemas.js +4 -4
- package/dist/worker/protocol-task-result.d.ts +1 -0
- package/dist/worker/protocol-task-result.js +1 -3
- package/dist/worker/protocol.js +1 -1
- package/dist/worker/registry/types.d.ts +2 -7
- package/dist/worker/registry.d.ts +3 -9
- package/dist/worker/registry.js +2 -5
- package/package.json +1 -1
|
@@ -2838,15 +2838,115 @@
|
|
|
2838
2838
|
"items": {
|
|
2839
2839
|
"additionalProperties": false,
|
|
2840
2840
|
"properties": {
|
|
2841
|
-
"gt": {
|
|
2842
|
-
|
|
2841
|
+
"gt": {
|
|
2842
|
+
"anyOf": [
|
|
2843
|
+
{
|
|
2844
|
+
"type": "string"
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"type": "number"
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"type": "boolean"
|
|
2851
|
+
},
|
|
2852
|
+
{},
|
|
2853
|
+
{
|
|
2854
|
+
"items": {
|
|
2855
|
+
"type": "string"
|
|
2856
|
+
},
|
|
2857
|
+
"type": "array"
|
|
2858
|
+
}
|
|
2859
|
+
]
|
|
2860
|
+
},
|
|
2861
|
+
"gte": {
|
|
2862
|
+
"anyOf": [
|
|
2863
|
+
{
|
|
2864
|
+
"type": "string"
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
"type": "number"
|
|
2868
|
+
},
|
|
2869
|
+
{
|
|
2870
|
+
"type": "boolean"
|
|
2871
|
+
},
|
|
2872
|
+
{},
|
|
2873
|
+
{
|
|
2874
|
+
"items": {
|
|
2875
|
+
"type": "string"
|
|
2876
|
+
},
|
|
2877
|
+
"type": "array"
|
|
2878
|
+
}
|
|
2879
|
+
]
|
|
2880
|
+
},
|
|
2843
2881
|
"key": {
|
|
2844
|
-
"
|
|
2845
|
-
|
|
2882
|
+
"anyOf": [
|
|
2883
|
+
{
|
|
2884
|
+
"minLength": 1,
|
|
2885
|
+
"type": "string"
|
|
2886
|
+
},
|
|
2887
|
+
{}
|
|
2888
|
+
]
|
|
2889
|
+
},
|
|
2890
|
+
"lt": {
|
|
2891
|
+
"anyOf": [
|
|
2892
|
+
{
|
|
2893
|
+
"type": "string"
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"type": "number"
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"type": "boolean"
|
|
2900
|
+
},
|
|
2901
|
+
{},
|
|
2902
|
+
{
|
|
2903
|
+
"items": {
|
|
2904
|
+
"type": "string"
|
|
2905
|
+
},
|
|
2906
|
+
"type": "array"
|
|
2907
|
+
}
|
|
2908
|
+
]
|
|
2909
|
+
},
|
|
2910
|
+
"lte": {
|
|
2911
|
+
"anyOf": [
|
|
2912
|
+
{
|
|
2913
|
+
"type": "string"
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
"type": "number"
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"type": "boolean"
|
|
2920
|
+
},
|
|
2921
|
+
{},
|
|
2922
|
+
{
|
|
2923
|
+
"items": {
|
|
2924
|
+
"type": "string"
|
|
2925
|
+
},
|
|
2926
|
+
"type": "array"
|
|
2927
|
+
}
|
|
2928
|
+
]
|
|
2846
2929
|
},
|
|
2847
|
-
"
|
|
2848
|
-
|
|
2849
|
-
|
|
2930
|
+
"value": {
|
|
2931
|
+
"anyOf": [
|
|
2932
|
+
{
|
|
2933
|
+
"type": "string"
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"type": "number"
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
"type": "boolean"
|
|
2940
|
+
},
|
|
2941
|
+
{},
|
|
2942
|
+
{
|
|
2943
|
+
"items": {
|
|
2944
|
+
"type": "string"
|
|
2945
|
+
},
|
|
2946
|
+
"type": "array"
|
|
2947
|
+
}
|
|
2948
|
+
]
|
|
2949
|
+
}
|
|
2850
2950
|
},
|
|
2851
2951
|
"required": ["key"],
|
|
2852
2952
|
"type": "object"
|
|
@@ -2904,14 +3004,23 @@
|
|
|
2904
3004
|
},
|
|
2905
3005
|
"failureCategory": {
|
|
2906
3006
|
"anyOf": [
|
|
2907
|
-
{},
|
|
2908
3007
|
{
|
|
2909
|
-
"
|
|
3008
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3009
|
+
"type": "string"
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"items": {
|
|
3013
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3014
|
+
"type": "string"
|
|
3015
|
+
},
|
|
3016
|
+
"minItems": 1,
|
|
2910
3017
|
"type": "array"
|
|
2911
3018
|
}
|
|
2912
3019
|
]
|
|
2913
3020
|
},
|
|
2914
3021
|
"idPrefix": {
|
|
3022
|
+
"minLength": 1,
|
|
3023
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
2915
3024
|
"type": "string"
|
|
2916
3025
|
},
|
|
2917
3026
|
"limit": {
|
|
@@ -2943,9 +3052,31 @@
|
|
|
2943
3052
|
},
|
|
2944
3053
|
"status": {
|
|
2945
3054
|
"anyOf": [
|
|
2946
|
-
{},
|
|
2947
3055
|
{
|
|
2948
|
-
"
|
|
3056
|
+
"enum": [
|
|
3057
|
+
"pending",
|
|
3058
|
+
"running",
|
|
3059
|
+
"completed",
|
|
3060
|
+
"failed",
|
|
3061
|
+
"cancelled",
|
|
3062
|
+
"timed-out",
|
|
3063
|
+
"suspended"
|
|
3064
|
+
],
|
|
3065
|
+
"type": "string"
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
"items": {
|
|
3069
|
+
"enum": [
|
|
3070
|
+
"pending",
|
|
3071
|
+
"running",
|
|
3072
|
+
"completed",
|
|
3073
|
+
"failed",
|
|
3074
|
+
"cancelled",
|
|
3075
|
+
"timed-out",
|
|
3076
|
+
"suspended"
|
|
3077
|
+
],
|
|
3078
|
+
"type": "string"
|
|
3079
|
+
},
|
|
2949
3080
|
"type": "array"
|
|
2950
3081
|
}
|
|
2951
3082
|
]
|
|
@@ -2957,6 +3088,7 @@
|
|
|
2957
3088
|
"type": "array"
|
|
2958
3089
|
},
|
|
2959
3090
|
"type": {
|
|
3091
|
+
"minLength": 1,
|
|
2960
3092
|
"type": "string"
|
|
2961
3093
|
},
|
|
2962
3094
|
"updatedAt": {
|
|
@@ -3006,15 +3138,115 @@
|
|
|
3006
3138
|
"items": {
|
|
3007
3139
|
"additionalProperties": false,
|
|
3008
3140
|
"properties": {
|
|
3009
|
-
"gt": {
|
|
3010
|
-
|
|
3141
|
+
"gt": {
|
|
3142
|
+
"anyOf": [
|
|
3143
|
+
{
|
|
3144
|
+
"type": "string"
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"type": "number"
|
|
3148
|
+
},
|
|
3149
|
+
{
|
|
3150
|
+
"type": "boolean"
|
|
3151
|
+
},
|
|
3152
|
+
{},
|
|
3153
|
+
{
|
|
3154
|
+
"items": {
|
|
3155
|
+
"type": "string"
|
|
3156
|
+
},
|
|
3157
|
+
"type": "array"
|
|
3158
|
+
}
|
|
3159
|
+
]
|
|
3160
|
+
},
|
|
3161
|
+
"gte": {
|
|
3162
|
+
"anyOf": [
|
|
3163
|
+
{
|
|
3164
|
+
"type": "string"
|
|
3165
|
+
},
|
|
3166
|
+
{
|
|
3167
|
+
"type": "number"
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
"type": "boolean"
|
|
3171
|
+
},
|
|
3172
|
+
{},
|
|
3173
|
+
{
|
|
3174
|
+
"items": {
|
|
3175
|
+
"type": "string"
|
|
3176
|
+
},
|
|
3177
|
+
"type": "array"
|
|
3178
|
+
}
|
|
3179
|
+
]
|
|
3180
|
+
},
|
|
3011
3181
|
"key": {
|
|
3012
|
-
"
|
|
3013
|
-
|
|
3182
|
+
"anyOf": [
|
|
3183
|
+
{
|
|
3184
|
+
"minLength": 1,
|
|
3185
|
+
"type": "string"
|
|
3186
|
+
},
|
|
3187
|
+
{}
|
|
3188
|
+
]
|
|
3014
3189
|
},
|
|
3015
|
-
"lt": {
|
|
3016
|
-
|
|
3017
|
-
|
|
3190
|
+
"lt": {
|
|
3191
|
+
"anyOf": [
|
|
3192
|
+
{
|
|
3193
|
+
"type": "string"
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"type": "number"
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
"type": "boolean"
|
|
3200
|
+
},
|
|
3201
|
+
{},
|
|
3202
|
+
{
|
|
3203
|
+
"items": {
|
|
3204
|
+
"type": "string"
|
|
3205
|
+
},
|
|
3206
|
+
"type": "array"
|
|
3207
|
+
}
|
|
3208
|
+
]
|
|
3209
|
+
},
|
|
3210
|
+
"lte": {
|
|
3211
|
+
"anyOf": [
|
|
3212
|
+
{
|
|
3213
|
+
"type": "string"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"type": "number"
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
"type": "boolean"
|
|
3220
|
+
},
|
|
3221
|
+
{},
|
|
3222
|
+
{
|
|
3223
|
+
"items": {
|
|
3224
|
+
"type": "string"
|
|
3225
|
+
},
|
|
3226
|
+
"type": "array"
|
|
3227
|
+
}
|
|
3228
|
+
]
|
|
3229
|
+
},
|
|
3230
|
+
"value": {
|
|
3231
|
+
"anyOf": [
|
|
3232
|
+
{
|
|
3233
|
+
"type": "string"
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"type": "number"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"type": "boolean"
|
|
3240
|
+
},
|
|
3241
|
+
{},
|
|
3242
|
+
{
|
|
3243
|
+
"items": {
|
|
3244
|
+
"type": "string"
|
|
3245
|
+
},
|
|
3246
|
+
"type": "array"
|
|
3247
|
+
}
|
|
3248
|
+
]
|
|
3249
|
+
}
|
|
3018
3250
|
},
|
|
3019
3251
|
"required": ["key"],
|
|
3020
3252
|
"type": "object"
|
|
@@ -3072,14 +3304,23 @@
|
|
|
3072
3304
|
},
|
|
3073
3305
|
"failureCategory": {
|
|
3074
3306
|
"anyOf": [
|
|
3075
|
-
{},
|
|
3076
3307
|
{
|
|
3077
|
-
"
|
|
3308
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3309
|
+
"type": "string"
|
|
3310
|
+
},
|
|
3311
|
+
{
|
|
3312
|
+
"items": {
|
|
3313
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3314
|
+
"type": "string"
|
|
3315
|
+
},
|
|
3316
|
+
"minItems": 1,
|
|
3078
3317
|
"type": "array"
|
|
3079
3318
|
}
|
|
3080
3319
|
]
|
|
3081
3320
|
},
|
|
3082
3321
|
"idPrefix": {
|
|
3322
|
+
"minLength": 1,
|
|
3323
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3083
3324
|
"type": "string"
|
|
3084
3325
|
},
|
|
3085
3326
|
"limit": {
|
|
@@ -3111,9 +3352,31 @@
|
|
|
3111
3352
|
},
|
|
3112
3353
|
"status": {
|
|
3113
3354
|
"anyOf": [
|
|
3114
|
-
{},
|
|
3115
3355
|
{
|
|
3116
|
-
"
|
|
3356
|
+
"enum": [
|
|
3357
|
+
"pending",
|
|
3358
|
+
"running",
|
|
3359
|
+
"completed",
|
|
3360
|
+
"failed",
|
|
3361
|
+
"cancelled",
|
|
3362
|
+
"timed-out",
|
|
3363
|
+
"suspended"
|
|
3364
|
+
],
|
|
3365
|
+
"type": "string"
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
"items": {
|
|
3369
|
+
"enum": [
|
|
3370
|
+
"pending",
|
|
3371
|
+
"running",
|
|
3372
|
+
"completed",
|
|
3373
|
+
"failed",
|
|
3374
|
+
"cancelled",
|
|
3375
|
+
"timed-out",
|
|
3376
|
+
"suspended"
|
|
3377
|
+
],
|
|
3378
|
+
"type": "string"
|
|
3379
|
+
},
|
|
3117
3380
|
"type": "array"
|
|
3118
3381
|
}
|
|
3119
3382
|
]
|
|
@@ -3125,6 +3388,7 @@
|
|
|
3125
3388
|
"type": "array"
|
|
3126
3389
|
},
|
|
3127
3390
|
"type": {
|
|
3391
|
+
"minLength": 1,
|
|
3128
3392
|
"type": "string"
|
|
3129
3393
|
},
|
|
3130
3394
|
"updatedAt": {
|
|
@@ -3174,15 +3438,115 @@
|
|
|
3174
3438
|
"items": {
|
|
3175
3439
|
"additionalProperties": false,
|
|
3176
3440
|
"properties": {
|
|
3177
|
-
"gt": {
|
|
3178
|
-
|
|
3441
|
+
"gt": {
|
|
3442
|
+
"anyOf": [
|
|
3443
|
+
{
|
|
3444
|
+
"type": "string"
|
|
3445
|
+
},
|
|
3446
|
+
{
|
|
3447
|
+
"type": "number"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"type": "boolean"
|
|
3451
|
+
},
|
|
3452
|
+
{},
|
|
3453
|
+
{
|
|
3454
|
+
"items": {
|
|
3455
|
+
"type": "string"
|
|
3456
|
+
},
|
|
3457
|
+
"type": "array"
|
|
3458
|
+
}
|
|
3459
|
+
]
|
|
3460
|
+
},
|
|
3461
|
+
"gte": {
|
|
3462
|
+
"anyOf": [
|
|
3463
|
+
{
|
|
3464
|
+
"type": "string"
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"type": "number"
|
|
3468
|
+
},
|
|
3469
|
+
{
|
|
3470
|
+
"type": "boolean"
|
|
3471
|
+
},
|
|
3472
|
+
{},
|
|
3473
|
+
{
|
|
3474
|
+
"items": {
|
|
3475
|
+
"type": "string"
|
|
3476
|
+
},
|
|
3477
|
+
"type": "array"
|
|
3478
|
+
}
|
|
3479
|
+
]
|
|
3480
|
+
},
|
|
3179
3481
|
"key": {
|
|
3180
|
-
"
|
|
3181
|
-
|
|
3482
|
+
"anyOf": [
|
|
3483
|
+
{
|
|
3484
|
+
"minLength": 1,
|
|
3485
|
+
"type": "string"
|
|
3486
|
+
},
|
|
3487
|
+
{}
|
|
3488
|
+
]
|
|
3489
|
+
},
|
|
3490
|
+
"lt": {
|
|
3491
|
+
"anyOf": [
|
|
3492
|
+
{
|
|
3493
|
+
"type": "string"
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"type": "number"
|
|
3497
|
+
},
|
|
3498
|
+
{
|
|
3499
|
+
"type": "boolean"
|
|
3500
|
+
},
|
|
3501
|
+
{},
|
|
3502
|
+
{
|
|
3503
|
+
"items": {
|
|
3504
|
+
"type": "string"
|
|
3505
|
+
},
|
|
3506
|
+
"type": "array"
|
|
3507
|
+
}
|
|
3508
|
+
]
|
|
3509
|
+
},
|
|
3510
|
+
"lte": {
|
|
3511
|
+
"anyOf": [
|
|
3512
|
+
{
|
|
3513
|
+
"type": "string"
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"type": "number"
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
"type": "boolean"
|
|
3520
|
+
},
|
|
3521
|
+
{},
|
|
3522
|
+
{
|
|
3523
|
+
"items": {
|
|
3524
|
+
"type": "string"
|
|
3525
|
+
},
|
|
3526
|
+
"type": "array"
|
|
3527
|
+
}
|
|
3528
|
+
]
|
|
3182
3529
|
},
|
|
3183
|
-
"
|
|
3184
|
-
|
|
3185
|
-
|
|
3530
|
+
"value": {
|
|
3531
|
+
"anyOf": [
|
|
3532
|
+
{
|
|
3533
|
+
"type": "string"
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
"type": "number"
|
|
3537
|
+
},
|
|
3538
|
+
{
|
|
3539
|
+
"type": "boolean"
|
|
3540
|
+
},
|
|
3541
|
+
{},
|
|
3542
|
+
{
|
|
3543
|
+
"items": {
|
|
3544
|
+
"type": "string"
|
|
3545
|
+
},
|
|
3546
|
+
"type": "array"
|
|
3547
|
+
}
|
|
3548
|
+
]
|
|
3549
|
+
}
|
|
3186
3550
|
},
|
|
3187
3551
|
"required": ["key"],
|
|
3188
3552
|
"type": "object"
|
|
@@ -3240,14 +3604,23 @@
|
|
|
3240
3604
|
},
|
|
3241
3605
|
"failureCategory": {
|
|
3242
3606
|
"anyOf": [
|
|
3243
|
-
{},
|
|
3244
3607
|
{
|
|
3245
|
-
"
|
|
3608
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3609
|
+
"type": "string"
|
|
3610
|
+
},
|
|
3611
|
+
{
|
|
3612
|
+
"items": {
|
|
3613
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3614
|
+
"type": "string"
|
|
3615
|
+
},
|
|
3616
|
+
"minItems": 1,
|
|
3246
3617
|
"type": "array"
|
|
3247
3618
|
}
|
|
3248
3619
|
]
|
|
3249
3620
|
},
|
|
3250
3621
|
"idPrefix": {
|
|
3622
|
+
"minLength": 1,
|
|
3623
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3251
3624
|
"type": "string"
|
|
3252
3625
|
},
|
|
3253
3626
|
"limit": {
|
|
@@ -3279,9 +3652,31 @@
|
|
|
3279
3652
|
},
|
|
3280
3653
|
"status": {
|
|
3281
3654
|
"anyOf": [
|
|
3282
|
-
{},
|
|
3283
3655
|
{
|
|
3284
|
-
"
|
|
3656
|
+
"enum": [
|
|
3657
|
+
"pending",
|
|
3658
|
+
"running",
|
|
3659
|
+
"completed",
|
|
3660
|
+
"failed",
|
|
3661
|
+
"cancelled",
|
|
3662
|
+
"timed-out",
|
|
3663
|
+
"suspended"
|
|
3664
|
+
],
|
|
3665
|
+
"type": "string"
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"items": {
|
|
3669
|
+
"enum": [
|
|
3670
|
+
"pending",
|
|
3671
|
+
"running",
|
|
3672
|
+
"completed",
|
|
3673
|
+
"failed",
|
|
3674
|
+
"cancelled",
|
|
3675
|
+
"timed-out",
|
|
3676
|
+
"suspended"
|
|
3677
|
+
],
|
|
3678
|
+
"type": "string"
|
|
3679
|
+
},
|
|
3285
3680
|
"type": "array"
|
|
3286
3681
|
}
|
|
3287
3682
|
]
|
|
@@ -3293,6 +3688,7 @@
|
|
|
3293
3688
|
"type": "array"
|
|
3294
3689
|
},
|
|
3295
3690
|
"type": {
|
|
3691
|
+
"minLength": 1,
|
|
3296
3692
|
"type": "string"
|
|
3297
3693
|
},
|
|
3298
3694
|
"updatedAt": {
|
|
@@ -3342,15 +3738,115 @@
|
|
|
3342
3738
|
"items": {
|
|
3343
3739
|
"additionalProperties": false,
|
|
3344
3740
|
"properties": {
|
|
3345
|
-
"gt": {
|
|
3346
|
-
|
|
3741
|
+
"gt": {
|
|
3742
|
+
"anyOf": [
|
|
3743
|
+
{
|
|
3744
|
+
"type": "string"
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
"type": "number"
|
|
3748
|
+
},
|
|
3749
|
+
{
|
|
3750
|
+
"type": "boolean"
|
|
3751
|
+
},
|
|
3752
|
+
{},
|
|
3753
|
+
{
|
|
3754
|
+
"items": {
|
|
3755
|
+
"type": "string"
|
|
3756
|
+
},
|
|
3757
|
+
"type": "array"
|
|
3758
|
+
}
|
|
3759
|
+
]
|
|
3760
|
+
},
|
|
3761
|
+
"gte": {
|
|
3762
|
+
"anyOf": [
|
|
3763
|
+
{
|
|
3764
|
+
"type": "string"
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"type": "number"
|
|
3768
|
+
},
|
|
3769
|
+
{
|
|
3770
|
+
"type": "boolean"
|
|
3771
|
+
},
|
|
3772
|
+
{},
|
|
3773
|
+
{
|
|
3774
|
+
"items": {
|
|
3775
|
+
"type": "string"
|
|
3776
|
+
},
|
|
3777
|
+
"type": "array"
|
|
3778
|
+
}
|
|
3779
|
+
]
|
|
3780
|
+
},
|
|
3347
3781
|
"key": {
|
|
3348
|
-
"
|
|
3349
|
-
|
|
3782
|
+
"anyOf": [
|
|
3783
|
+
{
|
|
3784
|
+
"minLength": 1,
|
|
3785
|
+
"type": "string"
|
|
3786
|
+
},
|
|
3787
|
+
{}
|
|
3788
|
+
]
|
|
3789
|
+
},
|
|
3790
|
+
"lt": {
|
|
3791
|
+
"anyOf": [
|
|
3792
|
+
{
|
|
3793
|
+
"type": "string"
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
"type": "number"
|
|
3797
|
+
},
|
|
3798
|
+
{
|
|
3799
|
+
"type": "boolean"
|
|
3800
|
+
},
|
|
3801
|
+
{},
|
|
3802
|
+
{
|
|
3803
|
+
"items": {
|
|
3804
|
+
"type": "string"
|
|
3805
|
+
},
|
|
3806
|
+
"type": "array"
|
|
3807
|
+
}
|
|
3808
|
+
]
|
|
3809
|
+
},
|
|
3810
|
+
"lte": {
|
|
3811
|
+
"anyOf": [
|
|
3812
|
+
{
|
|
3813
|
+
"type": "string"
|
|
3814
|
+
},
|
|
3815
|
+
{
|
|
3816
|
+
"type": "number"
|
|
3817
|
+
},
|
|
3818
|
+
{
|
|
3819
|
+
"type": "boolean"
|
|
3820
|
+
},
|
|
3821
|
+
{},
|
|
3822
|
+
{
|
|
3823
|
+
"items": {
|
|
3824
|
+
"type": "string"
|
|
3825
|
+
},
|
|
3826
|
+
"type": "array"
|
|
3827
|
+
}
|
|
3828
|
+
]
|
|
3350
3829
|
},
|
|
3351
|
-
"
|
|
3352
|
-
|
|
3353
|
-
|
|
3830
|
+
"value": {
|
|
3831
|
+
"anyOf": [
|
|
3832
|
+
{
|
|
3833
|
+
"type": "string"
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
"type": "number"
|
|
3837
|
+
},
|
|
3838
|
+
{
|
|
3839
|
+
"type": "boolean"
|
|
3840
|
+
},
|
|
3841
|
+
{},
|
|
3842
|
+
{
|
|
3843
|
+
"items": {
|
|
3844
|
+
"type": "string"
|
|
3845
|
+
},
|
|
3846
|
+
"type": "array"
|
|
3847
|
+
}
|
|
3848
|
+
]
|
|
3849
|
+
}
|
|
3354
3850
|
},
|
|
3355
3851
|
"required": ["key"],
|
|
3356
3852
|
"type": "object"
|
|
@@ -3408,14 +3904,23 @@
|
|
|
3408
3904
|
},
|
|
3409
3905
|
"failureCategory": {
|
|
3410
3906
|
"anyOf": [
|
|
3411
|
-
{},
|
|
3412
3907
|
{
|
|
3413
|
-
"
|
|
3908
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3909
|
+
"type": "string"
|
|
3910
|
+
},
|
|
3911
|
+
{
|
|
3912
|
+
"items": {
|
|
3913
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3914
|
+
"type": "string"
|
|
3915
|
+
},
|
|
3916
|
+
"minItems": 1,
|
|
3414
3917
|
"type": "array"
|
|
3415
3918
|
}
|
|
3416
3919
|
]
|
|
3417
3920
|
},
|
|
3418
3921
|
"idPrefix": {
|
|
3922
|
+
"minLength": 1,
|
|
3923
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3419
3924
|
"type": "string"
|
|
3420
3925
|
},
|
|
3421
3926
|
"limit": {
|
|
@@ -3452,9 +3957,31 @@
|
|
|
3452
3957
|
},
|
|
3453
3958
|
"status": {
|
|
3454
3959
|
"anyOf": [
|
|
3455
|
-
{},
|
|
3456
3960
|
{
|
|
3457
|
-
"
|
|
3961
|
+
"enum": [
|
|
3962
|
+
"pending",
|
|
3963
|
+
"running",
|
|
3964
|
+
"completed",
|
|
3965
|
+
"failed",
|
|
3966
|
+
"cancelled",
|
|
3967
|
+
"timed-out",
|
|
3968
|
+
"suspended"
|
|
3969
|
+
],
|
|
3970
|
+
"type": "string"
|
|
3971
|
+
},
|
|
3972
|
+
{
|
|
3973
|
+
"items": {
|
|
3974
|
+
"enum": [
|
|
3975
|
+
"pending",
|
|
3976
|
+
"running",
|
|
3977
|
+
"completed",
|
|
3978
|
+
"failed",
|
|
3979
|
+
"cancelled",
|
|
3980
|
+
"timed-out",
|
|
3981
|
+
"suspended"
|
|
3982
|
+
],
|
|
3983
|
+
"type": "string"
|
|
3984
|
+
},
|
|
3458
3985
|
"type": "array"
|
|
3459
3986
|
}
|
|
3460
3987
|
]
|
|
@@ -3466,6 +3993,7 @@
|
|
|
3466
3993
|
"type": "array"
|
|
3467
3994
|
},
|
|
3468
3995
|
"type": {
|
|
3996
|
+
"minLength": 1,
|
|
3469
3997
|
"type": "string"
|
|
3470
3998
|
},
|
|
3471
3999
|
"updatedAt": {
|
|
@@ -3532,15 +4060,115 @@
|
|
|
3532
4060
|
"items": {
|
|
3533
4061
|
"additionalProperties": false,
|
|
3534
4062
|
"properties": {
|
|
3535
|
-
"gt": {
|
|
3536
|
-
|
|
4063
|
+
"gt": {
|
|
4064
|
+
"anyOf": [
|
|
4065
|
+
{
|
|
4066
|
+
"type": "string"
|
|
4067
|
+
},
|
|
4068
|
+
{
|
|
4069
|
+
"type": "number"
|
|
4070
|
+
},
|
|
4071
|
+
{
|
|
4072
|
+
"type": "boolean"
|
|
4073
|
+
},
|
|
4074
|
+
{},
|
|
4075
|
+
{
|
|
4076
|
+
"items": {
|
|
4077
|
+
"type": "string"
|
|
4078
|
+
},
|
|
4079
|
+
"type": "array"
|
|
4080
|
+
}
|
|
4081
|
+
]
|
|
4082
|
+
},
|
|
4083
|
+
"gte": {
|
|
4084
|
+
"anyOf": [
|
|
4085
|
+
{
|
|
4086
|
+
"type": "string"
|
|
4087
|
+
},
|
|
4088
|
+
{
|
|
4089
|
+
"type": "number"
|
|
4090
|
+
},
|
|
4091
|
+
{
|
|
4092
|
+
"type": "boolean"
|
|
4093
|
+
},
|
|
4094
|
+
{},
|
|
4095
|
+
{
|
|
4096
|
+
"items": {
|
|
4097
|
+
"type": "string"
|
|
4098
|
+
},
|
|
4099
|
+
"type": "array"
|
|
4100
|
+
}
|
|
4101
|
+
]
|
|
4102
|
+
},
|
|
3537
4103
|
"key": {
|
|
3538
|
-
"
|
|
3539
|
-
|
|
4104
|
+
"anyOf": [
|
|
4105
|
+
{
|
|
4106
|
+
"minLength": 1,
|
|
4107
|
+
"type": "string"
|
|
4108
|
+
},
|
|
4109
|
+
{}
|
|
4110
|
+
]
|
|
4111
|
+
},
|
|
4112
|
+
"lt": {
|
|
4113
|
+
"anyOf": [
|
|
4114
|
+
{
|
|
4115
|
+
"type": "string"
|
|
4116
|
+
},
|
|
4117
|
+
{
|
|
4118
|
+
"type": "number"
|
|
4119
|
+
},
|
|
4120
|
+
{
|
|
4121
|
+
"type": "boolean"
|
|
4122
|
+
},
|
|
4123
|
+
{},
|
|
4124
|
+
{
|
|
4125
|
+
"items": {
|
|
4126
|
+
"type": "string"
|
|
4127
|
+
},
|
|
4128
|
+
"type": "array"
|
|
4129
|
+
}
|
|
4130
|
+
]
|
|
4131
|
+
},
|
|
4132
|
+
"lte": {
|
|
4133
|
+
"anyOf": [
|
|
4134
|
+
{
|
|
4135
|
+
"type": "string"
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
"type": "number"
|
|
4139
|
+
},
|
|
4140
|
+
{
|
|
4141
|
+
"type": "boolean"
|
|
4142
|
+
},
|
|
4143
|
+
{},
|
|
4144
|
+
{
|
|
4145
|
+
"items": {
|
|
4146
|
+
"type": "string"
|
|
4147
|
+
},
|
|
4148
|
+
"type": "array"
|
|
4149
|
+
}
|
|
4150
|
+
]
|
|
3540
4151
|
},
|
|
3541
|
-
"
|
|
3542
|
-
|
|
3543
|
-
|
|
4152
|
+
"value": {
|
|
4153
|
+
"anyOf": [
|
|
4154
|
+
{
|
|
4155
|
+
"type": "string"
|
|
4156
|
+
},
|
|
4157
|
+
{
|
|
4158
|
+
"type": "number"
|
|
4159
|
+
},
|
|
4160
|
+
{
|
|
4161
|
+
"type": "boolean"
|
|
4162
|
+
},
|
|
4163
|
+
{},
|
|
4164
|
+
{
|
|
4165
|
+
"items": {
|
|
4166
|
+
"type": "string"
|
|
4167
|
+
},
|
|
4168
|
+
"type": "array"
|
|
4169
|
+
}
|
|
4170
|
+
]
|
|
4171
|
+
}
|
|
3544
4172
|
},
|
|
3545
4173
|
"required": ["key"],
|
|
3546
4174
|
"type": "object"
|
|
@@ -3585,14 +4213,23 @@
|
|
|
3585
4213
|
},
|
|
3586
4214
|
"failureCategory": {
|
|
3587
4215
|
"anyOf": [
|
|
3588
|
-
{},
|
|
3589
4216
|
{
|
|
3590
|
-
"
|
|
4217
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
4218
|
+
"type": "string"
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"items": {
|
|
4222
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
4223
|
+
"type": "string"
|
|
4224
|
+
},
|
|
4225
|
+
"minItems": 1,
|
|
3591
4226
|
"type": "array"
|
|
3592
4227
|
}
|
|
3593
4228
|
]
|
|
3594
4229
|
},
|
|
3595
4230
|
"idPrefix": {
|
|
4231
|
+
"minLength": 1,
|
|
4232
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3596
4233
|
"type": "string"
|
|
3597
4234
|
},
|
|
3598
4235
|
"limit": {
|
|
@@ -3619,9 +4256,31 @@
|
|
|
3619
4256
|
},
|
|
3620
4257
|
"status": {
|
|
3621
4258
|
"anyOf": [
|
|
3622
|
-
{},
|
|
3623
4259
|
{
|
|
3624
|
-
"
|
|
4260
|
+
"enum": [
|
|
4261
|
+
"pending",
|
|
4262
|
+
"running",
|
|
4263
|
+
"completed",
|
|
4264
|
+
"failed",
|
|
4265
|
+
"cancelled",
|
|
4266
|
+
"timed-out",
|
|
4267
|
+
"suspended"
|
|
4268
|
+
],
|
|
4269
|
+
"type": "string"
|
|
4270
|
+
},
|
|
4271
|
+
{
|
|
4272
|
+
"items": {
|
|
4273
|
+
"enum": [
|
|
4274
|
+
"pending",
|
|
4275
|
+
"running",
|
|
4276
|
+
"completed",
|
|
4277
|
+
"failed",
|
|
4278
|
+
"cancelled",
|
|
4279
|
+
"timed-out",
|
|
4280
|
+
"suspended"
|
|
4281
|
+
],
|
|
4282
|
+
"type": "string"
|
|
4283
|
+
},
|
|
3625
4284
|
"type": "array"
|
|
3626
4285
|
}
|
|
3627
4286
|
]
|
|
@@ -3633,6 +4292,7 @@
|
|
|
3633
4292
|
"type": "array"
|
|
3634
4293
|
},
|
|
3635
4294
|
"type": {
|
|
4295
|
+
"minLength": 1,
|
|
3636
4296
|
"type": "string"
|
|
3637
4297
|
},
|
|
3638
4298
|
"updatedAt": {
|
|
@@ -4212,15 +4872,115 @@
|
|
|
4212
4872
|
"items": {
|
|
4213
4873
|
"additionalProperties": false,
|
|
4214
4874
|
"properties": {
|
|
4215
|
-
"gt": {
|
|
4216
|
-
|
|
4875
|
+
"gt": {
|
|
4876
|
+
"anyOf": [
|
|
4877
|
+
{
|
|
4878
|
+
"type": "string"
|
|
4879
|
+
},
|
|
4880
|
+
{
|
|
4881
|
+
"type": "number"
|
|
4882
|
+
},
|
|
4883
|
+
{
|
|
4884
|
+
"type": "boolean"
|
|
4885
|
+
},
|
|
4886
|
+
{},
|
|
4887
|
+
{
|
|
4888
|
+
"items": {
|
|
4889
|
+
"type": "string"
|
|
4890
|
+
},
|
|
4891
|
+
"type": "array"
|
|
4892
|
+
}
|
|
4893
|
+
]
|
|
4894
|
+
},
|
|
4895
|
+
"gte": {
|
|
4896
|
+
"anyOf": [
|
|
4897
|
+
{
|
|
4898
|
+
"type": "string"
|
|
4899
|
+
},
|
|
4900
|
+
{
|
|
4901
|
+
"type": "number"
|
|
4902
|
+
},
|
|
4903
|
+
{
|
|
4904
|
+
"type": "boolean"
|
|
4905
|
+
},
|
|
4906
|
+
{},
|
|
4907
|
+
{
|
|
4908
|
+
"items": {
|
|
4909
|
+
"type": "string"
|
|
4910
|
+
},
|
|
4911
|
+
"type": "array"
|
|
4912
|
+
}
|
|
4913
|
+
]
|
|
4914
|
+
},
|
|
4217
4915
|
"key": {
|
|
4218
|
-
"
|
|
4219
|
-
|
|
4916
|
+
"anyOf": [
|
|
4917
|
+
{
|
|
4918
|
+
"minLength": 1,
|
|
4919
|
+
"type": "string"
|
|
4920
|
+
},
|
|
4921
|
+
{}
|
|
4922
|
+
]
|
|
4923
|
+
},
|
|
4924
|
+
"lt": {
|
|
4925
|
+
"anyOf": [
|
|
4926
|
+
{
|
|
4927
|
+
"type": "string"
|
|
4928
|
+
},
|
|
4929
|
+
{
|
|
4930
|
+
"type": "number"
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"type": "boolean"
|
|
4934
|
+
},
|
|
4935
|
+
{},
|
|
4936
|
+
{
|
|
4937
|
+
"items": {
|
|
4938
|
+
"type": "string"
|
|
4939
|
+
},
|
|
4940
|
+
"type": "array"
|
|
4941
|
+
}
|
|
4942
|
+
]
|
|
4943
|
+
},
|
|
4944
|
+
"lte": {
|
|
4945
|
+
"anyOf": [
|
|
4946
|
+
{
|
|
4947
|
+
"type": "string"
|
|
4948
|
+
},
|
|
4949
|
+
{
|
|
4950
|
+
"type": "number"
|
|
4951
|
+
},
|
|
4952
|
+
{
|
|
4953
|
+
"type": "boolean"
|
|
4954
|
+
},
|
|
4955
|
+
{},
|
|
4956
|
+
{
|
|
4957
|
+
"items": {
|
|
4958
|
+
"type": "string"
|
|
4959
|
+
},
|
|
4960
|
+
"type": "array"
|
|
4961
|
+
}
|
|
4962
|
+
]
|
|
4220
4963
|
},
|
|
4221
|
-
"
|
|
4222
|
-
|
|
4223
|
-
|
|
4964
|
+
"value": {
|
|
4965
|
+
"anyOf": [
|
|
4966
|
+
{
|
|
4967
|
+
"type": "string"
|
|
4968
|
+
},
|
|
4969
|
+
{
|
|
4970
|
+
"type": "number"
|
|
4971
|
+
},
|
|
4972
|
+
{
|
|
4973
|
+
"type": "boolean"
|
|
4974
|
+
},
|
|
4975
|
+
{},
|
|
4976
|
+
{
|
|
4977
|
+
"items": {
|
|
4978
|
+
"type": "string"
|
|
4979
|
+
},
|
|
4980
|
+
"type": "array"
|
|
4981
|
+
}
|
|
4982
|
+
]
|
|
4983
|
+
}
|
|
4224
4984
|
},
|
|
4225
4985
|
"required": ["key"],
|
|
4226
4986
|
"type": "object"
|
|
@@ -4265,9 +5025,13 @@
|
|
|
4265
5025
|
},
|
|
4266
5026
|
"failureCategory": {
|
|
4267
5027
|
"anyOf": [
|
|
4268
|
-
{},
|
|
4269
5028
|
{
|
|
4270
|
-
"
|
|
5029
|
+
"type": "string"
|
|
5030
|
+
},
|
|
5031
|
+
{
|
|
5032
|
+
"items": {
|
|
5033
|
+
"type": "string"
|
|
5034
|
+
},
|
|
4271
5035
|
"type": "array"
|
|
4272
5036
|
}
|
|
4273
5037
|
]
|
|
@@ -4313,9 +5077,13 @@
|
|
|
4313
5077
|
},
|
|
4314
5078
|
"status": {
|
|
4315
5079
|
"anyOf": [
|
|
4316
|
-
{},
|
|
4317
5080
|
{
|
|
4318
|
-
"
|
|
5081
|
+
"type": "string"
|
|
5082
|
+
},
|
|
5083
|
+
{
|
|
5084
|
+
"items": {
|
|
5085
|
+
"type": "string"
|
|
5086
|
+
},
|
|
4319
5087
|
"type": "array"
|
|
4320
5088
|
}
|
|
4321
5089
|
]
|
|
@@ -4375,15 +5143,115 @@
|
|
|
4375
5143
|
"items": {
|
|
4376
5144
|
"additionalProperties": false,
|
|
4377
5145
|
"properties": {
|
|
4378
|
-
"gt": {
|
|
4379
|
-
|
|
5146
|
+
"gt": {
|
|
5147
|
+
"anyOf": [
|
|
5148
|
+
{
|
|
5149
|
+
"type": "string"
|
|
5150
|
+
},
|
|
5151
|
+
{
|
|
5152
|
+
"type": "number"
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"type": "boolean"
|
|
5156
|
+
},
|
|
5157
|
+
{},
|
|
5158
|
+
{
|
|
5159
|
+
"items": {
|
|
5160
|
+
"type": "string"
|
|
5161
|
+
},
|
|
5162
|
+
"type": "array"
|
|
5163
|
+
}
|
|
5164
|
+
]
|
|
5165
|
+
},
|
|
5166
|
+
"gte": {
|
|
5167
|
+
"anyOf": [
|
|
5168
|
+
{
|
|
5169
|
+
"type": "string"
|
|
5170
|
+
},
|
|
5171
|
+
{
|
|
5172
|
+
"type": "number"
|
|
5173
|
+
},
|
|
5174
|
+
{
|
|
5175
|
+
"type": "boolean"
|
|
5176
|
+
},
|
|
5177
|
+
{},
|
|
5178
|
+
{
|
|
5179
|
+
"items": {
|
|
5180
|
+
"type": "string"
|
|
5181
|
+
},
|
|
5182
|
+
"type": "array"
|
|
5183
|
+
}
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
4380
5186
|
"key": {
|
|
4381
|
-
"
|
|
4382
|
-
|
|
5187
|
+
"anyOf": [
|
|
5188
|
+
{
|
|
5189
|
+
"minLength": 1,
|
|
5190
|
+
"type": "string"
|
|
5191
|
+
},
|
|
5192
|
+
{}
|
|
5193
|
+
]
|
|
5194
|
+
},
|
|
5195
|
+
"lt": {
|
|
5196
|
+
"anyOf": [
|
|
5197
|
+
{
|
|
5198
|
+
"type": "string"
|
|
5199
|
+
},
|
|
5200
|
+
{
|
|
5201
|
+
"type": "number"
|
|
5202
|
+
},
|
|
5203
|
+
{
|
|
5204
|
+
"type": "boolean"
|
|
5205
|
+
},
|
|
5206
|
+
{},
|
|
5207
|
+
{
|
|
5208
|
+
"items": {
|
|
5209
|
+
"type": "string"
|
|
5210
|
+
},
|
|
5211
|
+
"type": "array"
|
|
5212
|
+
}
|
|
5213
|
+
]
|
|
5214
|
+
},
|
|
5215
|
+
"lte": {
|
|
5216
|
+
"anyOf": [
|
|
5217
|
+
{
|
|
5218
|
+
"type": "string"
|
|
5219
|
+
},
|
|
5220
|
+
{
|
|
5221
|
+
"type": "number"
|
|
5222
|
+
},
|
|
5223
|
+
{
|
|
5224
|
+
"type": "boolean"
|
|
5225
|
+
},
|
|
5226
|
+
{},
|
|
5227
|
+
{
|
|
5228
|
+
"items": {
|
|
5229
|
+
"type": "string"
|
|
5230
|
+
},
|
|
5231
|
+
"type": "array"
|
|
5232
|
+
}
|
|
5233
|
+
]
|
|
4383
5234
|
},
|
|
4384
|
-
"
|
|
4385
|
-
|
|
4386
|
-
|
|
5235
|
+
"value": {
|
|
5236
|
+
"anyOf": [
|
|
5237
|
+
{
|
|
5238
|
+
"type": "string"
|
|
5239
|
+
},
|
|
5240
|
+
{
|
|
5241
|
+
"type": "number"
|
|
5242
|
+
},
|
|
5243
|
+
{
|
|
5244
|
+
"type": "boolean"
|
|
5245
|
+
},
|
|
5246
|
+
{},
|
|
5247
|
+
{
|
|
5248
|
+
"items": {
|
|
5249
|
+
"type": "string"
|
|
5250
|
+
},
|
|
5251
|
+
"type": "array"
|
|
5252
|
+
}
|
|
5253
|
+
]
|
|
5254
|
+
}
|
|
4387
5255
|
},
|
|
4388
5256
|
"required": ["key"],
|
|
4389
5257
|
"type": "object"
|
|
@@ -4428,14 +5296,23 @@
|
|
|
4428
5296
|
},
|
|
4429
5297
|
"failureCategory": {
|
|
4430
5298
|
"anyOf": [
|
|
4431
|
-
{},
|
|
4432
5299
|
{
|
|
4433
|
-
"
|
|
5300
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
5301
|
+
"type": "string"
|
|
5302
|
+
},
|
|
5303
|
+
{
|
|
5304
|
+
"items": {
|
|
5305
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
5306
|
+
"type": "string"
|
|
5307
|
+
},
|
|
5308
|
+
"minItems": 1,
|
|
4434
5309
|
"type": "array"
|
|
4435
5310
|
}
|
|
4436
5311
|
]
|
|
4437
5312
|
},
|
|
4438
5313
|
"idPrefix": {
|
|
5314
|
+
"minLength": 1,
|
|
5315
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
4439
5316
|
"type": "string"
|
|
4440
5317
|
},
|
|
4441
5318
|
"limit": {
|
|
@@ -4462,9 +5339,31 @@
|
|
|
4462
5339
|
},
|
|
4463
5340
|
"status": {
|
|
4464
5341
|
"anyOf": [
|
|
4465
|
-
{},
|
|
4466
5342
|
{
|
|
4467
|
-
"
|
|
5343
|
+
"enum": [
|
|
5344
|
+
"pending",
|
|
5345
|
+
"running",
|
|
5346
|
+
"completed",
|
|
5347
|
+
"failed",
|
|
5348
|
+
"cancelled",
|
|
5349
|
+
"timed-out",
|
|
5350
|
+
"suspended"
|
|
5351
|
+
],
|
|
5352
|
+
"type": "string"
|
|
5353
|
+
},
|
|
5354
|
+
{
|
|
5355
|
+
"items": {
|
|
5356
|
+
"enum": [
|
|
5357
|
+
"pending",
|
|
5358
|
+
"running",
|
|
5359
|
+
"completed",
|
|
5360
|
+
"failed",
|
|
5361
|
+
"cancelled",
|
|
5362
|
+
"timed-out",
|
|
5363
|
+
"suspended"
|
|
5364
|
+
],
|
|
5365
|
+
"type": "string"
|
|
5366
|
+
},
|
|
4468
5367
|
"type": "array"
|
|
4469
5368
|
}
|
|
4470
5369
|
]
|
|
@@ -4476,6 +5375,7 @@
|
|
|
4476
5375
|
"type": "array"
|
|
4477
5376
|
},
|
|
4478
5377
|
"type": {
|
|
5378
|
+
"minLength": 1,
|
|
4479
5379
|
"type": "string"
|
|
4480
5380
|
},
|
|
4481
5381
|
"updatedAt": {
|