@lostgradient/weft 0.14.0 → 0.16.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/alerting/alert-manager.d.ts +2 -0
- package/dist/alerting/alert-manager.js +3 -0
- package/dist/cli/api.js +5 -19
- package/dist/cli/console.d.ts +12 -0
- package/dist/cli/console.js +62 -0
- package/dist/cli/generated/operation-catalog.snapshot.json +1061 -90
- package/dist/cli/generated/operation-client.generated.d.ts +29 -23
- package/dist/cli/generated/operation-client.generated.js +2 -0
- package/dist/cli/help-text.d.ts +1 -1
- package/dist/cli/help-text.js +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +1 -0
- package/dist/cli/json-input.d.ts +20 -0
- package/dist/cli/json-input.js +33 -0
- package/dist/cli/parse-arguments.js +2 -0
- package/dist/cli/schedule.js +7 -9
- package/dist/cli/types.d.ts +1 -0
- package/dist/cli/workflow-commands.js +5 -25
- package/dist/cli-main.js +4 -2
- 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/index.d.ts +3 -0
- package/dist/core/engine/index.js +3 -0
- 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/diagnostics/recommendations.js +1 -9
- package/dist/http.js +2 -2
- 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/authorization-scope.d.ts +1 -1
- package/dist/server/authorization-scope.js +0 -2
- package/dist/server/dashboard-assets.d.ts +26 -0
- package/dist/server/dashboard-assets.js +95 -0
- package/dist/server/index.d.ts +10 -1
- package/dist/server/index.js +11 -2
- package/dist/server/interactive-operations.js +1 -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 +26 -65
- 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-alerts.d.ts +26 -0
- package/dist/server/operations/list-alerts.js +54 -0
- 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-faults.d.ts +9 -1
- package/dist/server/operations/schedule-faults.js +51 -0
- 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 +13 -72
- package/dist/server/operations/workflow-events-sse.js +29 -67
- package/dist/server/operations/workflow-events-subscription.js +9 -27
- package/dist/server/rest-bindings.js +3 -0
- 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/service-worker/index.d.ts +4 -1
- package/dist/service-worker/index.js +2 -2
- package/dist/service-worker/setup.d.ts +20 -0
- package/dist/service-worker/setup.js +5 -5
- package/dist/storage/bun-sql.js +65 -80
- 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 +2 -2
- package/dist/storage/resolve.js +1 -1
- package/dist/storage/scoped-storage.js +1 -1
- package/dist/storage/testing.js +1 -1
- package/dist/storage/turso.js +2 -2
- 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 +5 -1
|
@@ -98,6 +98,77 @@
|
|
|
98
98
|
"type": "object"
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"name": "weft.alerts.list",
|
|
103
|
+
"kind": "unary",
|
|
104
|
+
"summary": "List currently firing alerts",
|
|
105
|
+
"description": "List the alert rules that are currently firing, including their metric, threshold, current value, configured window, and firing timestamp. Read-only and limited to active in-memory alert state; resolved alerts are not returned.",
|
|
106
|
+
"tags": ["Observability"],
|
|
107
|
+
"destructive": false,
|
|
108
|
+
"access": {
|
|
109
|
+
"kind": "scoped",
|
|
110
|
+
"scopes": ["system:read"]
|
|
111
|
+
},
|
|
112
|
+
"transports": {
|
|
113
|
+
"http": true,
|
|
114
|
+
"jsonRpcHttp": true,
|
|
115
|
+
"jsonRpcWebSocket": true,
|
|
116
|
+
"jsonRpcStdio": true
|
|
117
|
+
},
|
|
118
|
+
"producibleFaults": [],
|
|
119
|
+
"inputSchema": {
|
|
120
|
+
"additionalProperties": false,
|
|
121
|
+
"properties": {},
|
|
122
|
+
"type": "object"
|
|
123
|
+
},
|
|
124
|
+
"outputSchema": {
|
|
125
|
+
"additionalProperties": false,
|
|
126
|
+
"properties": {
|
|
127
|
+
"items": {
|
|
128
|
+
"items": {
|
|
129
|
+
"additionalProperties": false,
|
|
130
|
+
"properties": {
|
|
131
|
+
"currentValue": {
|
|
132
|
+
"type": "number"
|
|
133
|
+
},
|
|
134
|
+
"firedAt": {
|
|
135
|
+
"anyOf": [
|
|
136
|
+
{
|
|
137
|
+
"type": "number"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"type": "null"
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
"metric": {
|
|
145
|
+
"enum": ["workflow.failure_rate", "activity.p99_duration", "storage.size"],
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
"threshold": {
|
|
149
|
+
"type": "number"
|
|
150
|
+
},
|
|
151
|
+
"window": {
|
|
152
|
+
"anyOf": [
|
|
153
|
+
{
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"type": "null"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"required": ["metric", "threshold", "currentValue", "window", "firedAt"],
|
|
163
|
+
"type": "object"
|
|
164
|
+
},
|
|
165
|
+
"type": "array"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"required": ["items"],
|
|
169
|
+
"type": "object"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
101
172
|
{
|
|
102
173
|
"name": "weft.events.sse",
|
|
103
174
|
"kind": "stream",
|
|
@@ -2838,15 +2909,115 @@
|
|
|
2838
2909
|
"items": {
|
|
2839
2910
|
"additionalProperties": false,
|
|
2840
2911
|
"properties": {
|
|
2841
|
-
"gt": {
|
|
2842
|
-
|
|
2912
|
+
"gt": {
|
|
2913
|
+
"anyOf": [
|
|
2914
|
+
{
|
|
2915
|
+
"type": "string"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
"type": "number"
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
"type": "boolean"
|
|
2922
|
+
},
|
|
2923
|
+
{},
|
|
2924
|
+
{
|
|
2925
|
+
"items": {
|
|
2926
|
+
"type": "string"
|
|
2927
|
+
},
|
|
2928
|
+
"type": "array"
|
|
2929
|
+
}
|
|
2930
|
+
]
|
|
2931
|
+
},
|
|
2932
|
+
"gte": {
|
|
2933
|
+
"anyOf": [
|
|
2934
|
+
{
|
|
2935
|
+
"type": "string"
|
|
2936
|
+
},
|
|
2937
|
+
{
|
|
2938
|
+
"type": "number"
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"type": "boolean"
|
|
2942
|
+
},
|
|
2943
|
+
{},
|
|
2944
|
+
{
|
|
2945
|
+
"items": {
|
|
2946
|
+
"type": "string"
|
|
2947
|
+
},
|
|
2948
|
+
"type": "array"
|
|
2949
|
+
}
|
|
2950
|
+
]
|
|
2951
|
+
},
|
|
2843
2952
|
"key": {
|
|
2844
|
-
"
|
|
2845
|
-
|
|
2953
|
+
"anyOf": [
|
|
2954
|
+
{
|
|
2955
|
+
"minLength": 1,
|
|
2956
|
+
"type": "string"
|
|
2957
|
+
},
|
|
2958
|
+
{}
|
|
2959
|
+
]
|
|
2960
|
+
},
|
|
2961
|
+
"lt": {
|
|
2962
|
+
"anyOf": [
|
|
2963
|
+
{
|
|
2964
|
+
"type": "string"
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"type": "number"
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"type": "boolean"
|
|
2971
|
+
},
|
|
2972
|
+
{},
|
|
2973
|
+
{
|
|
2974
|
+
"items": {
|
|
2975
|
+
"type": "string"
|
|
2976
|
+
},
|
|
2977
|
+
"type": "array"
|
|
2978
|
+
}
|
|
2979
|
+
]
|
|
2980
|
+
},
|
|
2981
|
+
"lte": {
|
|
2982
|
+
"anyOf": [
|
|
2983
|
+
{
|
|
2984
|
+
"type": "string"
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
"type": "number"
|
|
2988
|
+
},
|
|
2989
|
+
{
|
|
2990
|
+
"type": "boolean"
|
|
2991
|
+
},
|
|
2992
|
+
{},
|
|
2993
|
+
{
|
|
2994
|
+
"items": {
|
|
2995
|
+
"type": "string"
|
|
2996
|
+
},
|
|
2997
|
+
"type": "array"
|
|
2998
|
+
}
|
|
2999
|
+
]
|
|
2846
3000
|
},
|
|
2847
|
-
"
|
|
2848
|
-
|
|
2849
|
-
|
|
3001
|
+
"value": {
|
|
3002
|
+
"anyOf": [
|
|
3003
|
+
{
|
|
3004
|
+
"type": "string"
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
"type": "number"
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
"type": "boolean"
|
|
3011
|
+
},
|
|
3012
|
+
{},
|
|
3013
|
+
{
|
|
3014
|
+
"items": {
|
|
3015
|
+
"type": "string"
|
|
3016
|
+
},
|
|
3017
|
+
"type": "array"
|
|
3018
|
+
}
|
|
3019
|
+
]
|
|
3020
|
+
}
|
|
2850
3021
|
},
|
|
2851
3022
|
"required": ["key"],
|
|
2852
3023
|
"type": "object"
|
|
@@ -2904,14 +3075,23 @@
|
|
|
2904
3075
|
},
|
|
2905
3076
|
"failureCategory": {
|
|
2906
3077
|
"anyOf": [
|
|
2907
|
-
{},
|
|
2908
3078
|
{
|
|
2909
|
-
"
|
|
3079
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3080
|
+
"type": "string"
|
|
3081
|
+
},
|
|
3082
|
+
{
|
|
3083
|
+
"items": {
|
|
3084
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3085
|
+
"type": "string"
|
|
3086
|
+
},
|
|
3087
|
+
"minItems": 1,
|
|
2910
3088
|
"type": "array"
|
|
2911
3089
|
}
|
|
2912
3090
|
]
|
|
2913
3091
|
},
|
|
2914
3092
|
"idPrefix": {
|
|
3093
|
+
"minLength": 1,
|
|
3094
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
2915
3095
|
"type": "string"
|
|
2916
3096
|
},
|
|
2917
3097
|
"limit": {
|
|
@@ -2943,9 +3123,31 @@
|
|
|
2943
3123
|
},
|
|
2944
3124
|
"status": {
|
|
2945
3125
|
"anyOf": [
|
|
2946
|
-
{},
|
|
2947
3126
|
{
|
|
2948
|
-
"
|
|
3127
|
+
"enum": [
|
|
3128
|
+
"pending",
|
|
3129
|
+
"running",
|
|
3130
|
+
"completed",
|
|
3131
|
+
"failed",
|
|
3132
|
+
"cancelled",
|
|
3133
|
+
"timed-out",
|
|
3134
|
+
"suspended"
|
|
3135
|
+
],
|
|
3136
|
+
"type": "string"
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
"items": {
|
|
3140
|
+
"enum": [
|
|
3141
|
+
"pending",
|
|
3142
|
+
"running",
|
|
3143
|
+
"completed",
|
|
3144
|
+
"failed",
|
|
3145
|
+
"cancelled",
|
|
3146
|
+
"timed-out",
|
|
3147
|
+
"suspended"
|
|
3148
|
+
],
|
|
3149
|
+
"type": "string"
|
|
3150
|
+
},
|
|
2949
3151
|
"type": "array"
|
|
2950
3152
|
}
|
|
2951
3153
|
]
|
|
@@ -2957,6 +3159,7 @@
|
|
|
2957
3159
|
"type": "array"
|
|
2958
3160
|
},
|
|
2959
3161
|
"type": {
|
|
3162
|
+
"minLength": 1,
|
|
2960
3163
|
"type": "string"
|
|
2961
3164
|
},
|
|
2962
3165
|
"updatedAt": {
|
|
@@ -3006,16 +3209,116 @@
|
|
|
3006
3209
|
"items": {
|
|
3007
3210
|
"additionalProperties": false,
|
|
3008
3211
|
"properties": {
|
|
3009
|
-
"gt": {
|
|
3010
|
-
|
|
3212
|
+
"gt": {
|
|
3213
|
+
"anyOf": [
|
|
3214
|
+
{
|
|
3215
|
+
"type": "string"
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"type": "number"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"type": "boolean"
|
|
3222
|
+
},
|
|
3223
|
+
{},
|
|
3224
|
+
{
|
|
3225
|
+
"items": {
|
|
3226
|
+
"type": "string"
|
|
3227
|
+
},
|
|
3228
|
+
"type": "array"
|
|
3229
|
+
}
|
|
3230
|
+
]
|
|
3231
|
+
},
|
|
3232
|
+
"gte": {
|
|
3233
|
+
"anyOf": [
|
|
3234
|
+
{
|
|
3235
|
+
"type": "string"
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
"type": "number"
|
|
3239
|
+
},
|
|
3240
|
+
{
|
|
3241
|
+
"type": "boolean"
|
|
3242
|
+
},
|
|
3243
|
+
{},
|
|
3244
|
+
{
|
|
3245
|
+
"items": {
|
|
3246
|
+
"type": "string"
|
|
3247
|
+
},
|
|
3248
|
+
"type": "array"
|
|
3249
|
+
}
|
|
3250
|
+
]
|
|
3251
|
+
},
|
|
3011
3252
|
"key": {
|
|
3012
|
-
"
|
|
3013
|
-
|
|
3253
|
+
"anyOf": [
|
|
3254
|
+
{
|
|
3255
|
+
"minLength": 1,
|
|
3256
|
+
"type": "string"
|
|
3257
|
+
},
|
|
3258
|
+
{}
|
|
3259
|
+
]
|
|
3014
3260
|
},
|
|
3015
|
-
"lt": {
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3261
|
+
"lt": {
|
|
3262
|
+
"anyOf": [
|
|
3263
|
+
{
|
|
3264
|
+
"type": "string"
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
"type": "number"
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"type": "boolean"
|
|
3271
|
+
},
|
|
3272
|
+
{},
|
|
3273
|
+
{
|
|
3274
|
+
"items": {
|
|
3275
|
+
"type": "string"
|
|
3276
|
+
},
|
|
3277
|
+
"type": "array"
|
|
3278
|
+
}
|
|
3279
|
+
]
|
|
3280
|
+
},
|
|
3281
|
+
"lte": {
|
|
3282
|
+
"anyOf": [
|
|
3283
|
+
{
|
|
3284
|
+
"type": "string"
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"type": "number"
|
|
3288
|
+
},
|
|
3289
|
+
{
|
|
3290
|
+
"type": "boolean"
|
|
3291
|
+
},
|
|
3292
|
+
{},
|
|
3293
|
+
{
|
|
3294
|
+
"items": {
|
|
3295
|
+
"type": "string"
|
|
3296
|
+
},
|
|
3297
|
+
"type": "array"
|
|
3298
|
+
}
|
|
3299
|
+
]
|
|
3300
|
+
},
|
|
3301
|
+
"value": {
|
|
3302
|
+
"anyOf": [
|
|
3303
|
+
{
|
|
3304
|
+
"type": "string"
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"type": "number"
|
|
3308
|
+
},
|
|
3309
|
+
{
|
|
3310
|
+
"type": "boolean"
|
|
3311
|
+
},
|
|
3312
|
+
{},
|
|
3313
|
+
{
|
|
3314
|
+
"items": {
|
|
3315
|
+
"type": "string"
|
|
3316
|
+
},
|
|
3317
|
+
"type": "array"
|
|
3318
|
+
}
|
|
3319
|
+
]
|
|
3320
|
+
}
|
|
3321
|
+
},
|
|
3019
3322
|
"required": ["key"],
|
|
3020
3323
|
"type": "object"
|
|
3021
3324
|
},
|
|
@@ -3072,14 +3375,23 @@
|
|
|
3072
3375
|
},
|
|
3073
3376
|
"failureCategory": {
|
|
3074
3377
|
"anyOf": [
|
|
3075
|
-
{},
|
|
3076
3378
|
{
|
|
3077
|
-
"
|
|
3379
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3380
|
+
"type": "string"
|
|
3381
|
+
},
|
|
3382
|
+
{
|
|
3383
|
+
"items": {
|
|
3384
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3385
|
+
"type": "string"
|
|
3386
|
+
},
|
|
3387
|
+
"minItems": 1,
|
|
3078
3388
|
"type": "array"
|
|
3079
3389
|
}
|
|
3080
3390
|
]
|
|
3081
3391
|
},
|
|
3082
3392
|
"idPrefix": {
|
|
3393
|
+
"minLength": 1,
|
|
3394
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3083
3395
|
"type": "string"
|
|
3084
3396
|
},
|
|
3085
3397
|
"limit": {
|
|
@@ -3111,9 +3423,31 @@
|
|
|
3111
3423
|
},
|
|
3112
3424
|
"status": {
|
|
3113
3425
|
"anyOf": [
|
|
3114
|
-
{},
|
|
3115
3426
|
{
|
|
3116
|
-
"
|
|
3427
|
+
"enum": [
|
|
3428
|
+
"pending",
|
|
3429
|
+
"running",
|
|
3430
|
+
"completed",
|
|
3431
|
+
"failed",
|
|
3432
|
+
"cancelled",
|
|
3433
|
+
"timed-out",
|
|
3434
|
+
"suspended"
|
|
3435
|
+
],
|
|
3436
|
+
"type": "string"
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
"items": {
|
|
3440
|
+
"enum": [
|
|
3441
|
+
"pending",
|
|
3442
|
+
"running",
|
|
3443
|
+
"completed",
|
|
3444
|
+
"failed",
|
|
3445
|
+
"cancelled",
|
|
3446
|
+
"timed-out",
|
|
3447
|
+
"suspended"
|
|
3448
|
+
],
|
|
3449
|
+
"type": "string"
|
|
3450
|
+
},
|
|
3117
3451
|
"type": "array"
|
|
3118
3452
|
}
|
|
3119
3453
|
]
|
|
@@ -3125,6 +3459,7 @@
|
|
|
3125
3459
|
"type": "array"
|
|
3126
3460
|
},
|
|
3127
3461
|
"type": {
|
|
3462
|
+
"minLength": 1,
|
|
3128
3463
|
"type": "string"
|
|
3129
3464
|
},
|
|
3130
3465
|
"updatedAt": {
|
|
@@ -3174,15 +3509,115 @@
|
|
|
3174
3509
|
"items": {
|
|
3175
3510
|
"additionalProperties": false,
|
|
3176
3511
|
"properties": {
|
|
3177
|
-
"gt": {
|
|
3178
|
-
|
|
3512
|
+
"gt": {
|
|
3513
|
+
"anyOf": [
|
|
3514
|
+
{
|
|
3515
|
+
"type": "string"
|
|
3516
|
+
},
|
|
3517
|
+
{
|
|
3518
|
+
"type": "number"
|
|
3519
|
+
},
|
|
3520
|
+
{
|
|
3521
|
+
"type": "boolean"
|
|
3522
|
+
},
|
|
3523
|
+
{},
|
|
3524
|
+
{
|
|
3525
|
+
"items": {
|
|
3526
|
+
"type": "string"
|
|
3527
|
+
},
|
|
3528
|
+
"type": "array"
|
|
3529
|
+
}
|
|
3530
|
+
]
|
|
3531
|
+
},
|
|
3532
|
+
"gte": {
|
|
3533
|
+
"anyOf": [
|
|
3534
|
+
{
|
|
3535
|
+
"type": "string"
|
|
3536
|
+
},
|
|
3537
|
+
{
|
|
3538
|
+
"type": "number"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"type": "boolean"
|
|
3542
|
+
},
|
|
3543
|
+
{},
|
|
3544
|
+
{
|
|
3545
|
+
"items": {
|
|
3546
|
+
"type": "string"
|
|
3547
|
+
},
|
|
3548
|
+
"type": "array"
|
|
3549
|
+
}
|
|
3550
|
+
]
|
|
3551
|
+
},
|
|
3179
3552
|
"key": {
|
|
3180
|
-
"
|
|
3181
|
-
|
|
3553
|
+
"anyOf": [
|
|
3554
|
+
{
|
|
3555
|
+
"minLength": 1,
|
|
3556
|
+
"type": "string"
|
|
3557
|
+
},
|
|
3558
|
+
{}
|
|
3559
|
+
]
|
|
3560
|
+
},
|
|
3561
|
+
"lt": {
|
|
3562
|
+
"anyOf": [
|
|
3563
|
+
{
|
|
3564
|
+
"type": "string"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"type": "number"
|
|
3568
|
+
},
|
|
3569
|
+
{
|
|
3570
|
+
"type": "boolean"
|
|
3571
|
+
},
|
|
3572
|
+
{},
|
|
3573
|
+
{
|
|
3574
|
+
"items": {
|
|
3575
|
+
"type": "string"
|
|
3576
|
+
},
|
|
3577
|
+
"type": "array"
|
|
3578
|
+
}
|
|
3579
|
+
]
|
|
3580
|
+
},
|
|
3581
|
+
"lte": {
|
|
3582
|
+
"anyOf": [
|
|
3583
|
+
{
|
|
3584
|
+
"type": "string"
|
|
3585
|
+
},
|
|
3586
|
+
{
|
|
3587
|
+
"type": "number"
|
|
3588
|
+
},
|
|
3589
|
+
{
|
|
3590
|
+
"type": "boolean"
|
|
3591
|
+
},
|
|
3592
|
+
{},
|
|
3593
|
+
{
|
|
3594
|
+
"items": {
|
|
3595
|
+
"type": "string"
|
|
3596
|
+
},
|
|
3597
|
+
"type": "array"
|
|
3598
|
+
}
|
|
3599
|
+
]
|
|
3182
3600
|
},
|
|
3183
|
-
"
|
|
3184
|
-
|
|
3185
|
-
|
|
3601
|
+
"value": {
|
|
3602
|
+
"anyOf": [
|
|
3603
|
+
{
|
|
3604
|
+
"type": "string"
|
|
3605
|
+
},
|
|
3606
|
+
{
|
|
3607
|
+
"type": "number"
|
|
3608
|
+
},
|
|
3609
|
+
{
|
|
3610
|
+
"type": "boolean"
|
|
3611
|
+
},
|
|
3612
|
+
{},
|
|
3613
|
+
{
|
|
3614
|
+
"items": {
|
|
3615
|
+
"type": "string"
|
|
3616
|
+
},
|
|
3617
|
+
"type": "array"
|
|
3618
|
+
}
|
|
3619
|
+
]
|
|
3620
|
+
}
|
|
3186
3621
|
},
|
|
3187
3622
|
"required": ["key"],
|
|
3188
3623
|
"type": "object"
|
|
@@ -3240,14 +3675,23 @@
|
|
|
3240
3675
|
},
|
|
3241
3676
|
"failureCategory": {
|
|
3242
3677
|
"anyOf": [
|
|
3243
|
-
{},
|
|
3244
3678
|
{
|
|
3245
|
-
"
|
|
3679
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3680
|
+
"type": "string"
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
"items": {
|
|
3684
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3685
|
+
"type": "string"
|
|
3686
|
+
},
|
|
3687
|
+
"minItems": 1,
|
|
3246
3688
|
"type": "array"
|
|
3247
3689
|
}
|
|
3248
3690
|
]
|
|
3249
3691
|
},
|
|
3250
3692
|
"idPrefix": {
|
|
3693
|
+
"minLength": 1,
|
|
3694
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3251
3695
|
"type": "string"
|
|
3252
3696
|
},
|
|
3253
3697
|
"limit": {
|
|
@@ -3279,9 +3723,31 @@
|
|
|
3279
3723
|
},
|
|
3280
3724
|
"status": {
|
|
3281
3725
|
"anyOf": [
|
|
3282
|
-
{},
|
|
3283
3726
|
{
|
|
3284
|
-
"
|
|
3727
|
+
"enum": [
|
|
3728
|
+
"pending",
|
|
3729
|
+
"running",
|
|
3730
|
+
"completed",
|
|
3731
|
+
"failed",
|
|
3732
|
+
"cancelled",
|
|
3733
|
+
"timed-out",
|
|
3734
|
+
"suspended"
|
|
3735
|
+
],
|
|
3736
|
+
"type": "string"
|
|
3737
|
+
},
|
|
3738
|
+
{
|
|
3739
|
+
"items": {
|
|
3740
|
+
"enum": [
|
|
3741
|
+
"pending",
|
|
3742
|
+
"running",
|
|
3743
|
+
"completed",
|
|
3744
|
+
"failed",
|
|
3745
|
+
"cancelled",
|
|
3746
|
+
"timed-out",
|
|
3747
|
+
"suspended"
|
|
3748
|
+
],
|
|
3749
|
+
"type": "string"
|
|
3750
|
+
},
|
|
3285
3751
|
"type": "array"
|
|
3286
3752
|
}
|
|
3287
3753
|
]
|
|
@@ -3293,6 +3759,7 @@
|
|
|
3293
3759
|
"type": "array"
|
|
3294
3760
|
},
|
|
3295
3761
|
"type": {
|
|
3762
|
+
"minLength": 1,
|
|
3296
3763
|
"type": "string"
|
|
3297
3764
|
},
|
|
3298
3765
|
"updatedAt": {
|
|
@@ -3342,25 +3809,125 @@
|
|
|
3342
3809
|
"items": {
|
|
3343
3810
|
"additionalProperties": false,
|
|
3344
3811
|
"properties": {
|
|
3345
|
-
"gt": {
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3812
|
+
"gt": {
|
|
3813
|
+
"anyOf": [
|
|
3814
|
+
{
|
|
3815
|
+
"type": "string"
|
|
3816
|
+
},
|
|
3817
|
+
{
|
|
3818
|
+
"type": "number"
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"type": "boolean"
|
|
3822
|
+
},
|
|
3823
|
+
{},
|
|
3824
|
+
{
|
|
3825
|
+
"items": {
|
|
3826
|
+
"type": "string"
|
|
3827
|
+
},
|
|
3828
|
+
"type": "array"
|
|
3829
|
+
}
|
|
3830
|
+
]
|
|
3831
|
+
},
|
|
3832
|
+
"gte": {
|
|
3833
|
+
"anyOf": [
|
|
3834
|
+
{
|
|
3835
|
+
"type": "string"
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"type": "number"
|
|
3839
|
+
},
|
|
3840
|
+
{
|
|
3841
|
+
"type": "boolean"
|
|
3842
|
+
},
|
|
3843
|
+
{},
|
|
3844
|
+
{
|
|
3845
|
+
"items": {
|
|
3846
|
+
"type": "string"
|
|
3847
|
+
},
|
|
3848
|
+
"type": "array"
|
|
3849
|
+
}
|
|
3850
|
+
]
|
|
3851
|
+
},
|
|
3852
|
+
"key": {
|
|
3853
|
+
"anyOf": [
|
|
3854
|
+
{
|
|
3855
|
+
"minLength": 1,
|
|
3856
|
+
"type": "string"
|
|
3857
|
+
},
|
|
3858
|
+
{}
|
|
3859
|
+
]
|
|
3860
|
+
},
|
|
3861
|
+
"lt": {
|
|
3862
|
+
"anyOf": [
|
|
3863
|
+
{
|
|
3864
|
+
"type": "string"
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"type": "number"
|
|
3868
|
+
},
|
|
3869
|
+
{
|
|
3870
|
+
"type": "boolean"
|
|
3871
|
+
},
|
|
3872
|
+
{},
|
|
3873
|
+
{
|
|
3874
|
+
"items": {
|
|
3875
|
+
"type": "string"
|
|
3876
|
+
},
|
|
3877
|
+
"type": "array"
|
|
3878
|
+
}
|
|
3879
|
+
]
|
|
3880
|
+
},
|
|
3881
|
+
"lte": {
|
|
3882
|
+
"anyOf": [
|
|
3883
|
+
{
|
|
3884
|
+
"type": "string"
|
|
3885
|
+
},
|
|
3886
|
+
{
|
|
3887
|
+
"type": "number"
|
|
3888
|
+
},
|
|
3889
|
+
{
|
|
3890
|
+
"type": "boolean"
|
|
3891
|
+
},
|
|
3892
|
+
{},
|
|
3893
|
+
{
|
|
3894
|
+
"items": {
|
|
3895
|
+
"type": "string"
|
|
3896
|
+
},
|
|
3897
|
+
"type": "array"
|
|
3898
|
+
}
|
|
3899
|
+
]
|
|
3900
|
+
},
|
|
3901
|
+
"value": {
|
|
3902
|
+
"anyOf": [
|
|
3903
|
+
{
|
|
3904
|
+
"type": "string"
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"type": "number"
|
|
3908
|
+
},
|
|
3909
|
+
{
|
|
3910
|
+
"type": "boolean"
|
|
3911
|
+
},
|
|
3912
|
+
{},
|
|
3913
|
+
{
|
|
3914
|
+
"items": {
|
|
3915
|
+
"type": "string"
|
|
3916
|
+
},
|
|
3917
|
+
"type": "array"
|
|
3918
|
+
}
|
|
3919
|
+
]
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
"required": ["key"],
|
|
3923
|
+
"type": "object"
|
|
3924
|
+
},
|
|
3925
|
+
"type": "array"
|
|
3926
|
+
},
|
|
3927
|
+
"bulkConcurrency": {
|
|
3928
|
+
"maximum": 9007199254740991,
|
|
3929
|
+
"minimum": 1,
|
|
3930
|
+
"type": "integer"
|
|
3364
3931
|
},
|
|
3365
3932
|
"confirmationToken": {
|
|
3366
3933
|
"maxLength": 256,
|
|
@@ -3408,14 +3975,23 @@
|
|
|
3408
3975
|
},
|
|
3409
3976
|
"failureCategory": {
|
|
3410
3977
|
"anyOf": [
|
|
3411
|
-
{},
|
|
3412
3978
|
{
|
|
3413
|
-
"
|
|
3979
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3980
|
+
"type": "string"
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"items": {
|
|
3984
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
3985
|
+
"type": "string"
|
|
3986
|
+
},
|
|
3987
|
+
"minItems": 1,
|
|
3414
3988
|
"type": "array"
|
|
3415
3989
|
}
|
|
3416
3990
|
]
|
|
3417
3991
|
},
|
|
3418
3992
|
"idPrefix": {
|
|
3993
|
+
"minLength": 1,
|
|
3994
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3419
3995
|
"type": "string"
|
|
3420
3996
|
},
|
|
3421
3997
|
"limit": {
|
|
@@ -3452,9 +4028,31 @@
|
|
|
3452
4028
|
},
|
|
3453
4029
|
"status": {
|
|
3454
4030
|
"anyOf": [
|
|
3455
|
-
{},
|
|
3456
4031
|
{
|
|
3457
|
-
"
|
|
4032
|
+
"enum": [
|
|
4033
|
+
"pending",
|
|
4034
|
+
"running",
|
|
4035
|
+
"completed",
|
|
4036
|
+
"failed",
|
|
4037
|
+
"cancelled",
|
|
4038
|
+
"timed-out",
|
|
4039
|
+
"suspended"
|
|
4040
|
+
],
|
|
4041
|
+
"type": "string"
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"items": {
|
|
4045
|
+
"enum": [
|
|
4046
|
+
"pending",
|
|
4047
|
+
"running",
|
|
4048
|
+
"completed",
|
|
4049
|
+
"failed",
|
|
4050
|
+
"cancelled",
|
|
4051
|
+
"timed-out",
|
|
4052
|
+
"suspended"
|
|
4053
|
+
],
|
|
4054
|
+
"type": "string"
|
|
4055
|
+
},
|
|
3458
4056
|
"type": "array"
|
|
3459
4057
|
}
|
|
3460
4058
|
]
|
|
@@ -3466,6 +4064,7 @@
|
|
|
3466
4064
|
"type": "array"
|
|
3467
4065
|
},
|
|
3468
4066
|
"type": {
|
|
4067
|
+
"minLength": 1,
|
|
3469
4068
|
"type": "string"
|
|
3470
4069
|
},
|
|
3471
4070
|
"updatedAt": {
|
|
@@ -3532,15 +4131,115 @@
|
|
|
3532
4131
|
"items": {
|
|
3533
4132
|
"additionalProperties": false,
|
|
3534
4133
|
"properties": {
|
|
3535
|
-
"gt": {
|
|
3536
|
-
|
|
4134
|
+
"gt": {
|
|
4135
|
+
"anyOf": [
|
|
4136
|
+
{
|
|
4137
|
+
"type": "string"
|
|
4138
|
+
},
|
|
4139
|
+
{
|
|
4140
|
+
"type": "number"
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"type": "boolean"
|
|
4144
|
+
},
|
|
4145
|
+
{},
|
|
4146
|
+
{
|
|
4147
|
+
"items": {
|
|
4148
|
+
"type": "string"
|
|
4149
|
+
},
|
|
4150
|
+
"type": "array"
|
|
4151
|
+
}
|
|
4152
|
+
]
|
|
4153
|
+
},
|
|
4154
|
+
"gte": {
|
|
4155
|
+
"anyOf": [
|
|
4156
|
+
{
|
|
4157
|
+
"type": "string"
|
|
4158
|
+
},
|
|
4159
|
+
{
|
|
4160
|
+
"type": "number"
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"type": "boolean"
|
|
4164
|
+
},
|
|
4165
|
+
{},
|
|
4166
|
+
{
|
|
4167
|
+
"items": {
|
|
4168
|
+
"type": "string"
|
|
4169
|
+
},
|
|
4170
|
+
"type": "array"
|
|
4171
|
+
}
|
|
4172
|
+
]
|
|
4173
|
+
},
|
|
3537
4174
|
"key": {
|
|
3538
|
-
"
|
|
3539
|
-
|
|
4175
|
+
"anyOf": [
|
|
4176
|
+
{
|
|
4177
|
+
"minLength": 1,
|
|
4178
|
+
"type": "string"
|
|
4179
|
+
},
|
|
4180
|
+
{}
|
|
4181
|
+
]
|
|
4182
|
+
},
|
|
4183
|
+
"lt": {
|
|
4184
|
+
"anyOf": [
|
|
4185
|
+
{
|
|
4186
|
+
"type": "string"
|
|
4187
|
+
},
|
|
4188
|
+
{
|
|
4189
|
+
"type": "number"
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"type": "boolean"
|
|
4193
|
+
},
|
|
4194
|
+
{},
|
|
4195
|
+
{
|
|
4196
|
+
"items": {
|
|
4197
|
+
"type": "string"
|
|
4198
|
+
},
|
|
4199
|
+
"type": "array"
|
|
4200
|
+
}
|
|
4201
|
+
]
|
|
3540
4202
|
},
|
|
3541
|
-
"
|
|
3542
|
-
|
|
3543
|
-
|
|
4203
|
+
"lte": {
|
|
4204
|
+
"anyOf": [
|
|
4205
|
+
{
|
|
4206
|
+
"type": "string"
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
"type": "number"
|
|
4210
|
+
},
|
|
4211
|
+
{
|
|
4212
|
+
"type": "boolean"
|
|
4213
|
+
},
|
|
4214
|
+
{},
|
|
4215
|
+
{
|
|
4216
|
+
"items": {
|
|
4217
|
+
"type": "string"
|
|
4218
|
+
},
|
|
4219
|
+
"type": "array"
|
|
4220
|
+
}
|
|
4221
|
+
]
|
|
4222
|
+
},
|
|
4223
|
+
"value": {
|
|
4224
|
+
"anyOf": [
|
|
4225
|
+
{
|
|
4226
|
+
"type": "string"
|
|
4227
|
+
},
|
|
4228
|
+
{
|
|
4229
|
+
"type": "number"
|
|
4230
|
+
},
|
|
4231
|
+
{
|
|
4232
|
+
"type": "boolean"
|
|
4233
|
+
},
|
|
4234
|
+
{},
|
|
4235
|
+
{
|
|
4236
|
+
"items": {
|
|
4237
|
+
"type": "string"
|
|
4238
|
+
},
|
|
4239
|
+
"type": "array"
|
|
4240
|
+
}
|
|
4241
|
+
]
|
|
4242
|
+
}
|
|
3544
4243
|
},
|
|
3545
4244
|
"required": ["key"],
|
|
3546
4245
|
"type": "object"
|
|
@@ -3585,14 +4284,23 @@
|
|
|
3585
4284
|
},
|
|
3586
4285
|
"failureCategory": {
|
|
3587
4286
|
"anyOf": [
|
|
3588
|
-
{},
|
|
3589
4287
|
{
|
|
3590
|
-
"
|
|
4288
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
4289
|
+
"type": "string"
|
|
4290
|
+
},
|
|
4291
|
+
{
|
|
4292
|
+
"items": {
|
|
4293
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
4294
|
+
"type": "string"
|
|
4295
|
+
},
|
|
4296
|
+
"minItems": 1,
|
|
3591
4297
|
"type": "array"
|
|
3592
4298
|
}
|
|
3593
4299
|
]
|
|
3594
4300
|
},
|
|
3595
4301
|
"idPrefix": {
|
|
4302
|
+
"minLength": 1,
|
|
4303
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
3596
4304
|
"type": "string"
|
|
3597
4305
|
},
|
|
3598
4306
|
"limit": {
|
|
@@ -3619,9 +4327,31 @@
|
|
|
3619
4327
|
},
|
|
3620
4328
|
"status": {
|
|
3621
4329
|
"anyOf": [
|
|
3622
|
-
{},
|
|
3623
4330
|
{
|
|
3624
|
-
"
|
|
4331
|
+
"enum": [
|
|
4332
|
+
"pending",
|
|
4333
|
+
"running",
|
|
4334
|
+
"completed",
|
|
4335
|
+
"failed",
|
|
4336
|
+
"cancelled",
|
|
4337
|
+
"timed-out",
|
|
4338
|
+
"suspended"
|
|
4339
|
+
],
|
|
4340
|
+
"type": "string"
|
|
4341
|
+
},
|
|
4342
|
+
{
|
|
4343
|
+
"items": {
|
|
4344
|
+
"enum": [
|
|
4345
|
+
"pending",
|
|
4346
|
+
"running",
|
|
4347
|
+
"completed",
|
|
4348
|
+
"failed",
|
|
4349
|
+
"cancelled",
|
|
4350
|
+
"timed-out",
|
|
4351
|
+
"suspended"
|
|
4352
|
+
],
|
|
4353
|
+
"type": "string"
|
|
4354
|
+
},
|
|
3625
4355
|
"type": "array"
|
|
3626
4356
|
}
|
|
3627
4357
|
]
|
|
@@ -3633,6 +4363,7 @@
|
|
|
3633
4363
|
"type": "array"
|
|
3634
4364
|
},
|
|
3635
4365
|
"type": {
|
|
4366
|
+
"minLength": 1,
|
|
3636
4367
|
"type": "string"
|
|
3637
4368
|
},
|
|
3638
4369
|
"updatedAt": {
|
|
@@ -4212,15 +4943,115 @@
|
|
|
4212
4943
|
"items": {
|
|
4213
4944
|
"additionalProperties": false,
|
|
4214
4945
|
"properties": {
|
|
4215
|
-
"gt": {
|
|
4216
|
-
|
|
4946
|
+
"gt": {
|
|
4947
|
+
"anyOf": [
|
|
4948
|
+
{
|
|
4949
|
+
"type": "string"
|
|
4950
|
+
},
|
|
4951
|
+
{
|
|
4952
|
+
"type": "number"
|
|
4953
|
+
},
|
|
4954
|
+
{
|
|
4955
|
+
"type": "boolean"
|
|
4956
|
+
},
|
|
4957
|
+
{},
|
|
4958
|
+
{
|
|
4959
|
+
"items": {
|
|
4960
|
+
"type": "string"
|
|
4961
|
+
},
|
|
4962
|
+
"type": "array"
|
|
4963
|
+
}
|
|
4964
|
+
]
|
|
4965
|
+
},
|
|
4966
|
+
"gte": {
|
|
4967
|
+
"anyOf": [
|
|
4968
|
+
{
|
|
4969
|
+
"type": "string"
|
|
4970
|
+
},
|
|
4971
|
+
{
|
|
4972
|
+
"type": "number"
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"type": "boolean"
|
|
4976
|
+
},
|
|
4977
|
+
{},
|
|
4978
|
+
{
|
|
4979
|
+
"items": {
|
|
4980
|
+
"type": "string"
|
|
4981
|
+
},
|
|
4982
|
+
"type": "array"
|
|
4983
|
+
}
|
|
4984
|
+
]
|
|
4985
|
+
},
|
|
4217
4986
|
"key": {
|
|
4218
|
-
"
|
|
4219
|
-
|
|
4987
|
+
"anyOf": [
|
|
4988
|
+
{
|
|
4989
|
+
"minLength": 1,
|
|
4990
|
+
"type": "string"
|
|
4991
|
+
},
|
|
4992
|
+
{}
|
|
4993
|
+
]
|
|
4994
|
+
},
|
|
4995
|
+
"lt": {
|
|
4996
|
+
"anyOf": [
|
|
4997
|
+
{
|
|
4998
|
+
"type": "string"
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
"type": "number"
|
|
5002
|
+
},
|
|
5003
|
+
{
|
|
5004
|
+
"type": "boolean"
|
|
5005
|
+
},
|
|
5006
|
+
{},
|
|
5007
|
+
{
|
|
5008
|
+
"items": {
|
|
5009
|
+
"type": "string"
|
|
5010
|
+
},
|
|
5011
|
+
"type": "array"
|
|
5012
|
+
}
|
|
5013
|
+
]
|
|
4220
5014
|
},
|
|
4221
|
-
"
|
|
4222
|
-
|
|
4223
|
-
|
|
5015
|
+
"lte": {
|
|
5016
|
+
"anyOf": [
|
|
5017
|
+
{
|
|
5018
|
+
"type": "string"
|
|
5019
|
+
},
|
|
5020
|
+
{
|
|
5021
|
+
"type": "number"
|
|
5022
|
+
},
|
|
5023
|
+
{
|
|
5024
|
+
"type": "boolean"
|
|
5025
|
+
},
|
|
5026
|
+
{},
|
|
5027
|
+
{
|
|
5028
|
+
"items": {
|
|
5029
|
+
"type": "string"
|
|
5030
|
+
},
|
|
5031
|
+
"type": "array"
|
|
5032
|
+
}
|
|
5033
|
+
]
|
|
5034
|
+
},
|
|
5035
|
+
"value": {
|
|
5036
|
+
"anyOf": [
|
|
5037
|
+
{
|
|
5038
|
+
"type": "string"
|
|
5039
|
+
},
|
|
5040
|
+
{
|
|
5041
|
+
"type": "number"
|
|
5042
|
+
},
|
|
5043
|
+
{
|
|
5044
|
+
"type": "boolean"
|
|
5045
|
+
},
|
|
5046
|
+
{},
|
|
5047
|
+
{
|
|
5048
|
+
"items": {
|
|
5049
|
+
"type": "string"
|
|
5050
|
+
},
|
|
5051
|
+
"type": "array"
|
|
5052
|
+
}
|
|
5053
|
+
]
|
|
5054
|
+
}
|
|
4224
5055
|
},
|
|
4225
5056
|
"required": ["key"],
|
|
4226
5057
|
"type": "object"
|
|
@@ -4265,9 +5096,13 @@
|
|
|
4265
5096
|
},
|
|
4266
5097
|
"failureCategory": {
|
|
4267
5098
|
"anyOf": [
|
|
4268
|
-
{},
|
|
4269
5099
|
{
|
|
4270
|
-
"
|
|
5100
|
+
"type": "string"
|
|
5101
|
+
},
|
|
5102
|
+
{
|
|
5103
|
+
"items": {
|
|
5104
|
+
"type": "string"
|
|
5105
|
+
},
|
|
4271
5106
|
"type": "array"
|
|
4272
5107
|
}
|
|
4273
5108
|
]
|
|
@@ -4313,9 +5148,13 @@
|
|
|
4313
5148
|
},
|
|
4314
5149
|
"status": {
|
|
4315
5150
|
"anyOf": [
|
|
4316
|
-
{},
|
|
4317
5151
|
{
|
|
4318
|
-
"
|
|
5152
|
+
"type": "string"
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"items": {
|
|
5156
|
+
"type": "string"
|
|
5157
|
+
},
|
|
4319
5158
|
"type": "array"
|
|
4320
5159
|
}
|
|
4321
5160
|
]
|
|
@@ -4375,15 +5214,115 @@
|
|
|
4375
5214
|
"items": {
|
|
4376
5215
|
"additionalProperties": false,
|
|
4377
5216
|
"properties": {
|
|
4378
|
-
"gt": {
|
|
4379
|
-
|
|
5217
|
+
"gt": {
|
|
5218
|
+
"anyOf": [
|
|
5219
|
+
{
|
|
5220
|
+
"type": "string"
|
|
5221
|
+
},
|
|
5222
|
+
{
|
|
5223
|
+
"type": "number"
|
|
5224
|
+
},
|
|
5225
|
+
{
|
|
5226
|
+
"type": "boolean"
|
|
5227
|
+
},
|
|
5228
|
+
{},
|
|
5229
|
+
{
|
|
5230
|
+
"items": {
|
|
5231
|
+
"type": "string"
|
|
5232
|
+
},
|
|
5233
|
+
"type": "array"
|
|
5234
|
+
}
|
|
5235
|
+
]
|
|
5236
|
+
},
|
|
5237
|
+
"gte": {
|
|
5238
|
+
"anyOf": [
|
|
5239
|
+
{
|
|
5240
|
+
"type": "string"
|
|
5241
|
+
},
|
|
5242
|
+
{
|
|
5243
|
+
"type": "number"
|
|
5244
|
+
},
|
|
5245
|
+
{
|
|
5246
|
+
"type": "boolean"
|
|
5247
|
+
},
|
|
5248
|
+
{},
|
|
5249
|
+
{
|
|
5250
|
+
"items": {
|
|
5251
|
+
"type": "string"
|
|
5252
|
+
},
|
|
5253
|
+
"type": "array"
|
|
5254
|
+
}
|
|
5255
|
+
]
|
|
5256
|
+
},
|
|
4380
5257
|
"key": {
|
|
4381
|
-
"
|
|
4382
|
-
|
|
5258
|
+
"anyOf": [
|
|
5259
|
+
{
|
|
5260
|
+
"minLength": 1,
|
|
5261
|
+
"type": "string"
|
|
5262
|
+
},
|
|
5263
|
+
{}
|
|
5264
|
+
]
|
|
4383
5265
|
},
|
|
4384
|
-
"lt": {
|
|
4385
|
-
|
|
4386
|
-
|
|
5266
|
+
"lt": {
|
|
5267
|
+
"anyOf": [
|
|
5268
|
+
{
|
|
5269
|
+
"type": "string"
|
|
5270
|
+
},
|
|
5271
|
+
{
|
|
5272
|
+
"type": "number"
|
|
5273
|
+
},
|
|
5274
|
+
{
|
|
5275
|
+
"type": "boolean"
|
|
5276
|
+
},
|
|
5277
|
+
{},
|
|
5278
|
+
{
|
|
5279
|
+
"items": {
|
|
5280
|
+
"type": "string"
|
|
5281
|
+
},
|
|
5282
|
+
"type": "array"
|
|
5283
|
+
}
|
|
5284
|
+
]
|
|
5285
|
+
},
|
|
5286
|
+
"lte": {
|
|
5287
|
+
"anyOf": [
|
|
5288
|
+
{
|
|
5289
|
+
"type": "string"
|
|
5290
|
+
},
|
|
5291
|
+
{
|
|
5292
|
+
"type": "number"
|
|
5293
|
+
},
|
|
5294
|
+
{
|
|
5295
|
+
"type": "boolean"
|
|
5296
|
+
},
|
|
5297
|
+
{},
|
|
5298
|
+
{
|
|
5299
|
+
"items": {
|
|
5300
|
+
"type": "string"
|
|
5301
|
+
},
|
|
5302
|
+
"type": "array"
|
|
5303
|
+
}
|
|
5304
|
+
]
|
|
5305
|
+
},
|
|
5306
|
+
"value": {
|
|
5307
|
+
"anyOf": [
|
|
5308
|
+
{
|
|
5309
|
+
"type": "string"
|
|
5310
|
+
},
|
|
5311
|
+
{
|
|
5312
|
+
"type": "number"
|
|
5313
|
+
},
|
|
5314
|
+
{
|
|
5315
|
+
"type": "boolean"
|
|
5316
|
+
},
|
|
5317
|
+
{},
|
|
5318
|
+
{
|
|
5319
|
+
"items": {
|
|
5320
|
+
"type": "string"
|
|
5321
|
+
},
|
|
5322
|
+
"type": "array"
|
|
5323
|
+
}
|
|
5324
|
+
]
|
|
5325
|
+
}
|
|
4387
5326
|
},
|
|
4388
5327
|
"required": ["key"],
|
|
4389
5328
|
"type": "object"
|
|
@@ -4428,14 +5367,23 @@
|
|
|
4428
5367
|
},
|
|
4429
5368
|
"failureCategory": {
|
|
4430
5369
|
"anyOf": [
|
|
4431
|
-
{},
|
|
4432
5370
|
{
|
|
4433
|
-
"
|
|
5371
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
5372
|
+
"type": "string"
|
|
5373
|
+
},
|
|
5374
|
+
{
|
|
5375
|
+
"items": {
|
|
5376
|
+
"enum": ["application", "timeout", "cancellation", "resource", "system"],
|
|
5377
|
+
"type": "string"
|
|
5378
|
+
},
|
|
5379
|
+
"minItems": 1,
|
|
4434
5380
|
"type": "array"
|
|
4435
5381
|
}
|
|
4436
5382
|
]
|
|
4437
5383
|
},
|
|
4438
5384
|
"idPrefix": {
|
|
5385
|
+
"minLength": 1,
|
|
5386
|
+
"pattern": "^[A-Za-z0-9_-]+$",
|
|
4439
5387
|
"type": "string"
|
|
4440
5388
|
},
|
|
4441
5389
|
"limit": {
|
|
@@ -4462,9 +5410,31 @@
|
|
|
4462
5410
|
},
|
|
4463
5411
|
"status": {
|
|
4464
5412
|
"anyOf": [
|
|
4465
|
-
{},
|
|
4466
5413
|
{
|
|
4467
|
-
"
|
|
5414
|
+
"enum": [
|
|
5415
|
+
"pending",
|
|
5416
|
+
"running",
|
|
5417
|
+
"completed",
|
|
5418
|
+
"failed",
|
|
5419
|
+
"cancelled",
|
|
5420
|
+
"timed-out",
|
|
5421
|
+
"suspended"
|
|
5422
|
+
],
|
|
5423
|
+
"type": "string"
|
|
5424
|
+
},
|
|
5425
|
+
{
|
|
5426
|
+
"items": {
|
|
5427
|
+
"enum": [
|
|
5428
|
+
"pending",
|
|
5429
|
+
"running",
|
|
5430
|
+
"completed",
|
|
5431
|
+
"failed",
|
|
5432
|
+
"cancelled",
|
|
5433
|
+
"timed-out",
|
|
5434
|
+
"suspended"
|
|
5435
|
+
],
|
|
5436
|
+
"type": "string"
|
|
5437
|
+
},
|
|
4468
5438
|
"type": "array"
|
|
4469
5439
|
}
|
|
4470
5440
|
]
|
|
@@ -4476,6 +5446,7 @@
|
|
|
4476
5446
|
"type": "array"
|
|
4477
5447
|
},
|
|
4478
5448
|
"type": {
|
|
5449
|
+
"minLength": 1,
|
|
4479
5450
|
"type": "string"
|
|
4480
5451
|
},
|
|
4481
5452
|
"updatedAt": {
|