@hatchet-dev/typescript-sdk 1.9.5 → 1.9.7
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/clients/admin/admin-client.d.ts +3 -3
- package/clients/listeners/durable-listener/pooled-durable-listener-client.js +3 -3
- package/clients/rest/generated/Api.d.ts +124 -124
- package/clients/worker/worker.d.ts +1 -1
- package/dist/version-check.js +65 -0
- package/package.json +26 -27
- package/v1/client/features/runs.d.ts +2 -2
- package/v1/client/worker/worker-internal.d.ts +1 -1
- package/v1/client/worker/worker.d.ts +1 -1
- package/v1/examples/affinity/affinity-workers.js +2 -0
- package/v1/examples/child_workflows/workflow.d.ts +6 -0
- package/v1/examples/child_workflows/workflow.js +31 -1
- package/v1/examples/dag/run.js +2 -0
- package/v1/examples/dag/workflow.js +18 -1
- package/v1/examples/hatchet-client.js +2 -0
- package/v1/examples/on_event/event.js +26 -0
- package/v1/examples/simple/replay-cancel.d.ts +1 -0
- package/v1/examples/simple/replay-cancel.js +34 -0
- package/v1/examples/simple/run.js +9 -0
- package/v1/examples/simple/typed-run-methods.d.ts +1 -0
- package/v1/examples/simple/typed-run-methods.js +37 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -13,7 +13,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
13
13
|
v1TaskGet: (task: string, query?: {
|
|
14
14
|
/** The attempt number */
|
|
15
15
|
attempt?: number;
|
|
16
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskSummary, any>>;
|
|
16
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskSummary, any, {}>>;
|
|
17
17
|
/**
|
|
18
18
|
* @description List events for a task
|
|
19
19
|
*
|
|
@@ -34,7 +34,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
34
34
|
* @format int64
|
|
35
35
|
*/
|
|
36
36
|
limit?: number;
|
|
37
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskEventList, any>>;
|
|
37
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskEventList, any, {}>>;
|
|
38
38
|
/**
|
|
39
39
|
* @description Lists log lines for a task
|
|
40
40
|
*
|
|
@@ -44,7 +44,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
44
44
|
* @request GET:/api/v1/stable/tasks/{task}/logs
|
|
45
45
|
* @secure
|
|
46
46
|
*/
|
|
47
|
-
v1LogLineList: (task: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1LogLineList, any>>;
|
|
47
|
+
v1LogLineList: (task: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1LogLineList, any, {}>>;
|
|
48
48
|
/**
|
|
49
49
|
* @description Cancel tasks
|
|
50
50
|
*
|
|
@@ -54,7 +54,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
54
54
|
* @request POST:/api/v1/stable/tenants/{tenant}/tasks/cancel
|
|
55
55
|
* @secure
|
|
56
56
|
*/
|
|
57
|
-
v1TaskCancel: (tenant: string, data: V1CancelTaskRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1CancelledTasks, any>>;
|
|
57
|
+
v1TaskCancel: (tenant: string, data: V1CancelTaskRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1CancelledTasks, any, {}>>;
|
|
58
58
|
/**
|
|
59
59
|
* @description Replay tasks
|
|
60
60
|
*
|
|
@@ -64,7 +64,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
64
64
|
* @request POST:/api/v1/stable/tenants/{tenant}/tasks/replay
|
|
65
65
|
* @secure
|
|
66
66
|
*/
|
|
67
|
-
v1TaskReplay: (tenant: string, data: V1ReplayTaskRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1ReplayedTasks, any>>;
|
|
67
|
+
v1TaskReplay: (tenant: string, data: V1ReplayTaskRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1ReplayedTasks, any, {}>>;
|
|
68
68
|
/**
|
|
69
69
|
* @description Lists all tasks that belong a specific list of dags
|
|
70
70
|
*
|
|
@@ -84,7 +84,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
84
84
|
* @maxLength 36
|
|
85
85
|
*/
|
|
86
86
|
tenant: string;
|
|
87
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1DagChildren[], any>>;
|
|
87
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1DagChildren[], any, {}>>;
|
|
88
88
|
/**
|
|
89
89
|
* @description Lists workflow runs for a tenant.
|
|
90
90
|
*
|
|
@@ -146,7 +146,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
146
146
|
triggering_event_external_id?: string;
|
|
147
147
|
/** A flag for whether or not to include the input and output payloads in the response. Defaults to `true` if unset. */
|
|
148
148
|
include_payloads?: boolean;
|
|
149
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskSummaryList, any>>;
|
|
149
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskSummaryList, any, {}>>;
|
|
150
150
|
/**
|
|
151
151
|
* @description Lists displayable names of workflow runs for a tenant
|
|
152
152
|
*
|
|
@@ -159,7 +159,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
159
159
|
v1WorkflowRunDisplayNamesList: (tenant: string, query: {
|
|
160
160
|
/** The external ids of the workflow runs to get display names for */
|
|
161
161
|
external_ids: string[];
|
|
162
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDisplayNameList, any>>;
|
|
162
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDisplayNameList, any, {}>>;
|
|
163
163
|
/**
|
|
164
164
|
* @description Trigger a new workflow run
|
|
165
165
|
*
|
|
@@ -169,7 +169,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
169
169
|
* @request POST:/api/v1/stable/tenants/{tenant}/workflow-runs/trigger
|
|
170
170
|
* @secure
|
|
171
171
|
*/
|
|
172
|
-
v1WorkflowRunCreate: (tenant: string, data: V1TriggerWorkflowRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDetails, any>>;
|
|
172
|
+
v1WorkflowRunCreate: (tenant: string, data: V1TriggerWorkflowRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDetails, any, {}>>;
|
|
173
173
|
/**
|
|
174
174
|
* @description Get a workflow run and its metadata to display on the "detail" page
|
|
175
175
|
*
|
|
@@ -179,7 +179,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
179
179
|
* @request GET:/api/v1/stable/workflow-runs/{v1-workflow-run}
|
|
180
180
|
* @secure
|
|
181
181
|
*/
|
|
182
|
-
v1WorkflowRunGet: (v1WorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDetails, any>>;
|
|
182
|
+
v1WorkflowRunGet: (v1WorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WorkflowRunDetails, any, {}>>;
|
|
183
183
|
/**
|
|
184
184
|
* @description Get the status of a workflow run.
|
|
185
185
|
*
|
|
@@ -189,7 +189,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
189
189
|
* @request GET:/api/v1/stable/workflow-runs/{v1-workflow-run}/status
|
|
190
190
|
* @secure
|
|
191
191
|
*/
|
|
192
|
-
v1WorkflowRunGetStatus: (v1WorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskStatus, any>>;
|
|
192
|
+
v1WorkflowRunGetStatus: (v1WorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskStatus, any, {}>>;
|
|
193
193
|
/**
|
|
194
194
|
* @description List all tasks for a workflow run
|
|
195
195
|
*
|
|
@@ -210,7 +210,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
210
210
|
* @format int64
|
|
211
211
|
*/
|
|
212
212
|
limit?: number;
|
|
213
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskEventList, any>>;
|
|
213
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskEventList, any, {}>>;
|
|
214
214
|
/**
|
|
215
215
|
* @description Get the timings for a workflow run
|
|
216
216
|
*
|
|
@@ -226,7 +226,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
226
226
|
* @format int64
|
|
227
227
|
*/
|
|
228
228
|
depth?: number;
|
|
229
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskTimingList, any>>;
|
|
229
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskTimingList, any, {}>>;
|
|
230
230
|
/**
|
|
231
231
|
* @description Get a summary of task run metrics for a tenant
|
|
232
232
|
*
|
|
@@ -263,7 +263,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
263
263
|
* @maxLength 36
|
|
264
264
|
*/
|
|
265
265
|
triggering_event_external_id?: string;
|
|
266
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskRunMetrics, any>>;
|
|
266
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskRunMetrics, any, {}>>;
|
|
267
267
|
/**
|
|
268
268
|
* @description Get a minute by minute breakdown of task metrics for a tenant
|
|
269
269
|
*
|
|
@@ -286,7 +286,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
286
286
|
* @example "2021-01-01T00:00:00Z"
|
|
287
287
|
*/
|
|
288
288
|
finishedBefore?: string;
|
|
289
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskPointMetrics, any>>;
|
|
289
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1TaskPointMetrics, any, {}>>;
|
|
290
290
|
/**
|
|
291
291
|
* @description Lists all events for a tenant.
|
|
292
292
|
*
|
|
@@ -329,7 +329,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
329
329
|
additionalMetadata?: string[];
|
|
330
330
|
/** The scopes to filter by */
|
|
331
331
|
scopes?: string[];
|
|
332
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1EventList, any>>;
|
|
332
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1EventList, any, {}>>;
|
|
333
333
|
/**
|
|
334
334
|
* @description Lists all event keys for a tenant.
|
|
335
335
|
*
|
|
@@ -339,7 +339,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
339
339
|
* @request GET:/api/v1/stable/tenants/{tenant}/events/keys
|
|
340
340
|
* @secure
|
|
341
341
|
*/
|
|
342
|
-
v1EventKeyList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventKeyList, any>>;
|
|
342
|
+
v1EventKeyList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventKeyList, any, {}>>;
|
|
343
343
|
/**
|
|
344
344
|
* @description Lists all filters for a tenant.
|
|
345
345
|
*
|
|
@@ -364,7 +364,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
364
364
|
workflowIds?: string[];
|
|
365
365
|
/** The scopes to subset candidate filters by */
|
|
366
366
|
scopes?: string[];
|
|
367
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1FilterList, any>>;
|
|
367
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1FilterList, any, {}>>;
|
|
368
368
|
/**
|
|
369
369
|
* @description Create a new filter
|
|
370
370
|
*
|
|
@@ -374,7 +374,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
374
374
|
* @request POST:/api/v1/stable/tenants/{tenant}/filters
|
|
375
375
|
* @secure
|
|
376
376
|
*/
|
|
377
|
-
v1FilterCreate: (tenant: string, data: V1CreateFilterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any>>;
|
|
377
|
+
v1FilterCreate: (tenant: string, data: V1CreateFilterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any, {}>>;
|
|
378
378
|
/**
|
|
379
379
|
* @description Get a filter by its id
|
|
380
380
|
*
|
|
@@ -384,7 +384,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
384
384
|
* @request GET:/api/v1/stable/tenants/{tenant}/filters/{v1-filter}
|
|
385
385
|
* @secure
|
|
386
386
|
*/
|
|
387
|
-
v1FilterGet: (tenant: string, v1Filter: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any>>;
|
|
387
|
+
v1FilterGet: (tenant: string, v1Filter: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any, {}>>;
|
|
388
388
|
/**
|
|
389
389
|
* @description Delete a filter
|
|
390
390
|
*
|
|
@@ -393,7 +393,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
393
393
|
* @request DELETE:/api/v1/stable/tenants/{tenant}/filters/{v1-filter}
|
|
394
394
|
* @secure
|
|
395
395
|
*/
|
|
396
|
-
v1FilterDelete: (tenant: string, v1Filter: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any>>;
|
|
396
|
+
v1FilterDelete: (tenant: string, v1Filter: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any, {}>>;
|
|
397
397
|
/**
|
|
398
398
|
* @description Update a filter
|
|
399
399
|
*
|
|
@@ -402,7 +402,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
402
402
|
* @request PATCH:/api/v1/stable/tenants/{tenant}/filters/{v1-filter}
|
|
403
403
|
* @secure
|
|
404
404
|
*/
|
|
405
|
-
v1FilterUpdate: (tenant: string, v1Filter: string, data: V1UpdateFilterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any>>;
|
|
405
|
+
v1FilterUpdate: (tenant: string, v1Filter: string, data: V1UpdateFilterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Filter, any, {}>>;
|
|
406
406
|
/**
|
|
407
407
|
* @description Lists all webhook for a tenant.
|
|
408
408
|
*
|
|
@@ -427,7 +427,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
427
427
|
sourceNames?: V1WebhookSourceName[];
|
|
428
428
|
/** The webhook names to filter by */
|
|
429
429
|
webhookNames?: string[];
|
|
430
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WebhookList, any>>;
|
|
430
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1WebhookList, any, {}>>;
|
|
431
431
|
/**
|
|
432
432
|
* @description Create a new webhook
|
|
433
433
|
*
|
|
@@ -437,7 +437,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
437
437
|
* @request POST:/api/v1/stable/tenants/{tenant}/webhooks
|
|
438
438
|
* @secure
|
|
439
439
|
*/
|
|
440
|
-
v1WebhookCreate: (tenant: string, data: V1CreateWebhookRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any>>;
|
|
440
|
+
v1WebhookCreate: (tenant: string, data: V1CreateWebhookRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any, {}>>;
|
|
441
441
|
/**
|
|
442
442
|
* @description Get a webhook by its name
|
|
443
443
|
*
|
|
@@ -447,7 +447,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
447
447
|
* @request GET:/api/v1/stable/tenants/{tenant}/webhooks/{v1-webhook}
|
|
448
448
|
* @secure
|
|
449
449
|
*/
|
|
450
|
-
v1WebhookGet: (tenant: string, v1Webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any>>;
|
|
450
|
+
v1WebhookGet: (tenant: string, v1Webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any, {}>>;
|
|
451
451
|
/**
|
|
452
452
|
* @description Delete a webhook
|
|
453
453
|
*
|
|
@@ -456,7 +456,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
456
456
|
* @request DELETE:/api/v1/stable/tenants/{tenant}/webhooks/{v1-webhook}
|
|
457
457
|
* @secure
|
|
458
458
|
*/
|
|
459
|
-
v1WebhookDelete: (tenant: string, v1Webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any>>;
|
|
459
|
+
v1WebhookDelete: (tenant: string, v1Webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1Webhook, any, {}>>;
|
|
460
460
|
/**
|
|
461
461
|
* @description Post an incoming webhook message
|
|
462
462
|
*
|
|
@@ -468,7 +468,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
468
468
|
v1WebhookReceive: (tenant: string, v1Webhook: string, data?: any, params?: RequestParams) => Promise<import("axios").AxiosResponse<{
|
|
469
469
|
/** @example "OK" */
|
|
470
470
|
message?: string;
|
|
471
|
-
}, any>>;
|
|
471
|
+
}, any, {}>>;
|
|
472
472
|
/**
|
|
473
473
|
* @description Evaluate a CEL expression against provided input data.
|
|
474
474
|
*
|
|
@@ -478,7 +478,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
478
478
|
* @request POST:/api/v1/stable/tenants/{tenant}/cel/debug
|
|
479
479
|
* @secure
|
|
480
480
|
*/
|
|
481
|
-
v1CelDebug: (tenant: string, data: V1CELDebugRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1CELDebugResponse, any>>;
|
|
481
|
+
v1CelDebug: (tenant: string, data: V1CELDebugRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<V1CELDebugResponse, any, {}>>;
|
|
482
482
|
/**
|
|
483
483
|
* @description Gets the readiness status
|
|
484
484
|
*
|
|
@@ -487,7 +487,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
487
487
|
* @summary Get readiness
|
|
488
488
|
* @request GET:/api/ready
|
|
489
489
|
*/
|
|
490
|
-
readinessGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
490
|
+
readinessGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
491
491
|
/**
|
|
492
492
|
* @description Gets the liveness status
|
|
493
493
|
*
|
|
@@ -496,7 +496,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
496
496
|
* @summary Get liveness
|
|
497
497
|
* @request GET:/api/live
|
|
498
498
|
*/
|
|
499
|
-
livenessGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
499
|
+
livenessGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
500
500
|
/**
|
|
501
501
|
* @description Gets metadata for the Hatchet instance
|
|
502
502
|
*
|
|
@@ -505,7 +505,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
505
505
|
* @summary Get metadata
|
|
506
506
|
* @request GET:/api/v1/meta
|
|
507
507
|
*/
|
|
508
|
-
metadataGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<APIMeta, any>>;
|
|
508
|
+
metadataGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<APIMeta, any, {}>>;
|
|
509
509
|
/**
|
|
510
510
|
* @description Gets metadata for the Hatchet cloud instance
|
|
511
511
|
*
|
|
@@ -514,7 +514,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
514
514
|
* @summary Get cloud metadata
|
|
515
515
|
* @request GET:/api/v1/cloud/metadata
|
|
516
516
|
*/
|
|
517
|
-
cloudMetadataGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<APIErrors, any>>;
|
|
517
|
+
cloudMetadataGet: (params?: RequestParams) => Promise<import("axios").AxiosResponse<APIErrors, any, {}>>;
|
|
518
518
|
/**
|
|
519
519
|
* @description List all integrations
|
|
520
520
|
*
|
|
@@ -524,7 +524,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
524
524
|
* @request GET:/api/v1/meta/integrations
|
|
525
525
|
* @secure
|
|
526
526
|
*/
|
|
527
|
-
metadataListIntegrations: (params?: RequestParams) => Promise<import("axios").AxiosResponse<ListAPIMetaIntegration, any>>;
|
|
527
|
+
metadataListIntegrations: (params?: RequestParams) => Promise<import("axios").AxiosResponse<ListAPIMetaIntegration, any, {}>>;
|
|
528
528
|
/**
|
|
529
529
|
* @description Logs in a user.
|
|
530
530
|
*
|
|
@@ -533,7 +533,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
533
533
|
* @summary Login user
|
|
534
534
|
* @request POST:/api/v1/users/login
|
|
535
535
|
*/
|
|
536
|
-
userUpdateLogin: (data: UserLoginRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any>>;
|
|
536
|
+
userUpdateLogin: (data: UserLoginRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
537
537
|
/**
|
|
538
538
|
* @description Starts the OAuth flow
|
|
539
539
|
*
|
|
@@ -542,7 +542,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
542
542
|
* @summary Start OAuth flow
|
|
543
543
|
* @request GET:/api/v1/users/google/start
|
|
544
544
|
*/
|
|
545
|
-
userUpdateGoogleOauthStart: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
545
|
+
userUpdateGoogleOauthStart: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
546
546
|
/**
|
|
547
547
|
* @description Completes the OAuth flow
|
|
548
548
|
*
|
|
@@ -551,7 +551,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
551
551
|
* @summary Complete OAuth flow
|
|
552
552
|
* @request GET:/api/v1/users/google/callback
|
|
553
553
|
*/
|
|
554
|
-
userUpdateGoogleOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
554
|
+
userUpdateGoogleOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
555
555
|
/**
|
|
556
556
|
* @description Starts the OAuth flow
|
|
557
557
|
*
|
|
@@ -560,7 +560,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
560
560
|
* @summary Start OAuth flow
|
|
561
561
|
* @request GET:/api/v1/users/github/start
|
|
562
562
|
*/
|
|
563
|
-
userUpdateGithubOauthStart: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
563
|
+
userUpdateGithubOauthStart: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
564
564
|
/**
|
|
565
565
|
* @description Completes the OAuth flow
|
|
566
566
|
*
|
|
@@ -569,7 +569,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
569
569
|
* @summary Complete OAuth flow
|
|
570
570
|
* @request GET:/api/v1/users/github/callback
|
|
571
571
|
*/
|
|
572
|
-
userUpdateGithubOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
572
|
+
userUpdateGithubOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
573
573
|
/**
|
|
574
574
|
* @description Starts the OAuth flow
|
|
575
575
|
*
|
|
@@ -579,7 +579,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
579
579
|
* @request GET:/api/v1/tenants/{tenant}/slack/start
|
|
580
580
|
* @secure
|
|
581
581
|
*/
|
|
582
|
-
userUpdateSlackOauthStart: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
582
|
+
userUpdateSlackOauthStart: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
583
583
|
/**
|
|
584
584
|
* @description Completes the OAuth flow
|
|
585
585
|
*
|
|
@@ -589,7 +589,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
589
589
|
* @request GET:/api/v1/users/slack/callback
|
|
590
590
|
* @secure
|
|
591
591
|
*/
|
|
592
|
-
userUpdateSlackOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
592
|
+
userUpdateSlackOauthCallback: (params?: RequestParams) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
593
593
|
/**
|
|
594
594
|
* @description SNS event
|
|
595
595
|
*
|
|
@@ -598,7 +598,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
598
598
|
* @summary Github app tenant webhook
|
|
599
599
|
* @request POST:/api/v1/sns/{tenant}/{event}
|
|
600
600
|
*/
|
|
601
|
-
snsUpdate: (tenant: string, event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
601
|
+
snsUpdate: (tenant: string, event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
602
602
|
/**
|
|
603
603
|
* @description List SNS integrations
|
|
604
604
|
*
|
|
@@ -608,7 +608,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
608
608
|
* @request GET:/api/v1/tenants/{tenant}/sns
|
|
609
609
|
* @secure
|
|
610
610
|
*/
|
|
611
|
-
snsList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListSNSIntegrations, any>>;
|
|
611
|
+
snsList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListSNSIntegrations, any, {}>>;
|
|
612
612
|
/**
|
|
613
613
|
* @description Create SNS integration
|
|
614
614
|
*
|
|
@@ -618,7 +618,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
618
618
|
* @request POST:/api/v1/tenants/{tenant}/sns
|
|
619
619
|
* @secure
|
|
620
620
|
*/
|
|
621
|
-
snsCreate: (tenant: string, data: CreateSNSIntegrationRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<SNSIntegration, any>>;
|
|
621
|
+
snsCreate: (tenant: string, data: CreateSNSIntegrationRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<SNSIntegration, any, {}>>;
|
|
622
622
|
/**
|
|
623
623
|
* @description Creates a new tenant alert email group
|
|
624
624
|
*
|
|
@@ -628,7 +628,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
628
628
|
* @request POST:/api/v1/tenants/{tenant}/alerting-email-groups
|
|
629
629
|
* @secure
|
|
630
630
|
*/
|
|
631
|
-
alertEmailGroupCreate: (tenant: string, data: CreateTenantAlertEmailGroupRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroup, any>>;
|
|
631
|
+
alertEmailGroupCreate: (tenant: string, data: CreateTenantAlertEmailGroupRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroup, any, {}>>;
|
|
632
632
|
/**
|
|
633
633
|
* @description Gets a list of tenant alert email groups
|
|
634
634
|
*
|
|
@@ -638,7 +638,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
638
638
|
* @request GET:/api/v1/tenants/{tenant}/alerting-email-groups
|
|
639
639
|
* @secure
|
|
640
640
|
*/
|
|
641
|
-
alertEmailGroupList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroupList, any>>;
|
|
641
|
+
alertEmailGroupList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroupList, any, {}>>;
|
|
642
642
|
/**
|
|
643
643
|
* @description Gets the resource policy for a tenant
|
|
644
644
|
*
|
|
@@ -648,7 +648,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
648
648
|
* @request GET:/api/v1/tenants/{tenant}/resource-policy
|
|
649
649
|
* @secure
|
|
650
650
|
*/
|
|
651
|
-
tenantResourcePolicyGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantResourcePolicy, any>>;
|
|
651
|
+
tenantResourcePolicyGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantResourcePolicy, any, {}>>;
|
|
652
652
|
/**
|
|
653
653
|
* @description Updates a tenant alert email group
|
|
654
654
|
*
|
|
@@ -658,7 +658,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
658
658
|
* @request PATCH:/api/v1/alerting-email-groups/{alert-email-group}
|
|
659
659
|
* @secure
|
|
660
660
|
*/
|
|
661
|
-
alertEmailGroupUpdate: (alertEmailGroup: string, data: UpdateTenantAlertEmailGroupRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroup, any>>;
|
|
661
|
+
alertEmailGroupUpdate: (alertEmailGroup: string, data: UpdateTenantAlertEmailGroupRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertEmailGroup, any, {}>>;
|
|
662
662
|
/**
|
|
663
663
|
* @description Deletes a tenant alert email group
|
|
664
664
|
*
|
|
@@ -668,7 +668,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
668
668
|
* @request DELETE:/api/v1/alerting-email-groups/{alert-email-group}
|
|
669
669
|
* @secure
|
|
670
670
|
*/
|
|
671
|
-
alertEmailGroupDelete: (alertEmailGroup: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
671
|
+
alertEmailGroupDelete: (alertEmailGroup: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
672
672
|
/**
|
|
673
673
|
* @description Delete SNS integration
|
|
674
674
|
*
|
|
@@ -678,7 +678,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
678
678
|
* @request DELETE:/api/v1/sns/{sns}
|
|
679
679
|
* @secure
|
|
680
680
|
*/
|
|
681
|
-
snsDelete: (sns: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
681
|
+
snsDelete: (sns: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
682
682
|
/**
|
|
683
683
|
* @description List Slack webhooks
|
|
684
684
|
*
|
|
@@ -688,7 +688,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
688
688
|
* @request GET:/api/v1/tenants/{tenant}/slack
|
|
689
689
|
* @secure
|
|
690
690
|
*/
|
|
691
|
-
slackWebhookList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListSlackWebhooks, any>>;
|
|
691
|
+
slackWebhookList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListSlackWebhooks, any, {}>>;
|
|
692
692
|
/**
|
|
693
693
|
* @description Delete Slack webhook
|
|
694
694
|
*
|
|
@@ -698,7 +698,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
698
698
|
* @request DELETE:/api/v1/slack/{slack}
|
|
699
699
|
* @secure
|
|
700
700
|
*/
|
|
701
|
-
slackWebhookDelete: (slack: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
701
|
+
slackWebhookDelete: (slack: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
702
702
|
/**
|
|
703
703
|
* @description Gets the current user
|
|
704
704
|
*
|
|
@@ -708,7 +708,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
708
708
|
* @request GET:/api/v1/users/current
|
|
709
709
|
* @secure
|
|
710
710
|
*/
|
|
711
|
-
userGetCurrent: (params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any>>;
|
|
711
|
+
userGetCurrent: (params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
712
712
|
/**
|
|
713
713
|
* @description Update a user password.
|
|
714
714
|
*
|
|
@@ -718,7 +718,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
718
718
|
* @request POST:/api/v1/users/password
|
|
719
719
|
* @secure
|
|
720
720
|
*/
|
|
721
|
-
userUpdatePassword: (data: UserChangePasswordRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any>>;
|
|
721
|
+
userUpdatePassword: (data: UserChangePasswordRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
722
722
|
/**
|
|
723
723
|
* @description Registers a user.
|
|
724
724
|
*
|
|
@@ -727,7 +727,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
727
727
|
* @summary Register user
|
|
728
728
|
* @request POST:/api/v1/users/register
|
|
729
729
|
*/
|
|
730
|
-
userCreate: (data: UserRegisterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any>>;
|
|
730
|
+
userCreate: (data: UserRegisterRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
731
731
|
/**
|
|
732
732
|
* @description Logs out a user.
|
|
733
733
|
*
|
|
@@ -737,7 +737,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
737
737
|
* @request POST:/api/v1/users/logout
|
|
738
738
|
* @secure
|
|
739
739
|
*/
|
|
740
|
-
userUpdateLogout: (params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any>>;
|
|
740
|
+
userUpdateLogout: (params?: RequestParams) => Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
741
741
|
/**
|
|
742
742
|
* @description Lists all tenant memberships for the current user
|
|
743
743
|
*
|
|
@@ -747,7 +747,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
747
747
|
* @request GET:/api/v1/users/memberships
|
|
748
748
|
* @secure
|
|
749
749
|
*/
|
|
750
|
-
tenantMembershipsList: (params?: RequestParams) => Promise<import("axios").AxiosResponse<UserTenantMembershipsList, any>>;
|
|
750
|
+
tenantMembershipsList: (params?: RequestParams) => Promise<import("axios").AxiosResponse<UserTenantMembershipsList, any, {}>>;
|
|
751
751
|
/**
|
|
752
752
|
* @description Lists all tenant invites for the current user
|
|
753
753
|
*
|
|
@@ -757,7 +757,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
757
757
|
* @request GET:/api/v1/users/invites
|
|
758
758
|
* @secure
|
|
759
759
|
*/
|
|
760
|
-
userListTenantInvites: (params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInviteList, any>>;
|
|
760
|
+
userListTenantInvites: (params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInviteList, any, {}>>;
|
|
761
761
|
/**
|
|
762
762
|
* @description Accepts a tenant invite
|
|
763
763
|
*
|
|
@@ -767,7 +767,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
767
767
|
* @request POST:/api/v1/users/invites/accept
|
|
768
768
|
* @secure
|
|
769
769
|
*/
|
|
770
|
-
tenantInviteAccept: (data: AcceptInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
770
|
+
tenantInviteAccept: (data: AcceptInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
771
771
|
/**
|
|
772
772
|
* @description Rejects a tenant invite
|
|
773
773
|
*
|
|
@@ -777,7 +777,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
777
777
|
* @request POST:/api/v1/users/invites/reject
|
|
778
778
|
* @secure
|
|
779
779
|
*/
|
|
780
|
-
tenantInviteReject: (data: RejectInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
780
|
+
tenantInviteReject: (data: RejectInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
781
781
|
/**
|
|
782
782
|
* @description Creates a new tenant
|
|
783
783
|
*
|
|
@@ -787,7 +787,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
787
787
|
* @request POST:/api/v1/tenants
|
|
788
788
|
* @secure
|
|
789
789
|
*/
|
|
790
|
-
tenantCreate: (data: CreateTenantRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any>>;
|
|
790
|
+
tenantCreate: (data: CreateTenantRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any, {}>>;
|
|
791
791
|
/**
|
|
792
792
|
* @description Update an existing tenant
|
|
793
793
|
*
|
|
@@ -797,7 +797,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
797
797
|
* @request PATCH:/api/v1/tenants/{tenant}
|
|
798
798
|
* @secure
|
|
799
799
|
*/
|
|
800
|
-
tenantUpdate: (tenant: string, data: UpdateTenantRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any>>;
|
|
800
|
+
tenantUpdate: (tenant: string, data: UpdateTenantRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any, {}>>;
|
|
801
801
|
/**
|
|
802
802
|
* @description Get the details of a tenant
|
|
803
803
|
*
|
|
@@ -807,7 +807,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
807
807
|
* @request GET:/api/v1/tenants/{tenant}
|
|
808
808
|
* @secure
|
|
809
809
|
*/
|
|
810
|
-
tenantGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any>>;
|
|
810
|
+
tenantGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Tenant, any, {}>>;
|
|
811
811
|
/**
|
|
812
812
|
* @description Gets the alerting settings for a tenant
|
|
813
813
|
*
|
|
@@ -817,7 +817,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
817
817
|
* @request GET:/api/v1/tenants/{tenant}/alerting/settings
|
|
818
818
|
* @secure
|
|
819
819
|
*/
|
|
820
|
-
tenantAlertingSettingsGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertingSettings, any>>;
|
|
820
|
+
tenantAlertingSettingsGet: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantAlertingSettings, any, {}>>;
|
|
821
821
|
/**
|
|
822
822
|
* @description Creates a new tenant invite
|
|
823
823
|
*
|
|
@@ -827,7 +827,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
827
827
|
* @request POST:/api/v1/tenants/{tenant}/invites
|
|
828
828
|
* @secure
|
|
829
829
|
*/
|
|
830
|
-
tenantInviteCreate: (tenant: string, data: CreateTenantInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any>>;
|
|
830
|
+
tenantInviteCreate: (tenant: string, data: CreateTenantInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any, {}>>;
|
|
831
831
|
/**
|
|
832
832
|
* @description Gets a list of tenant invites
|
|
833
833
|
*
|
|
@@ -837,7 +837,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
837
837
|
* @request GET:/api/v1/tenants/{tenant}/invites
|
|
838
838
|
* @secure
|
|
839
839
|
*/
|
|
840
|
-
tenantInviteList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInviteList, any>>;
|
|
840
|
+
tenantInviteList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInviteList, any, {}>>;
|
|
841
841
|
/**
|
|
842
842
|
* @description Updates a tenant invite
|
|
843
843
|
*
|
|
@@ -846,7 +846,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
846
846
|
* @request PATCH:/api/v1/tenants/{tenant}/invites/{tenant-invite}
|
|
847
847
|
* @secure
|
|
848
848
|
*/
|
|
849
|
-
tenantInviteUpdate: (tenant: string, tenantInvite: string, data: UpdateTenantInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any>>;
|
|
849
|
+
tenantInviteUpdate: (tenant: string, tenantInvite: string, data: UpdateTenantInviteRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any, {}>>;
|
|
850
850
|
/**
|
|
851
851
|
* @description Deletes a tenant invite
|
|
852
852
|
*
|
|
@@ -855,7 +855,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
855
855
|
* @request DELETE:/api/v1/tenants/{tenant}/invites/{tenant-invite}
|
|
856
856
|
* @secure
|
|
857
857
|
*/
|
|
858
|
-
tenantInviteDelete: (tenant: string, tenantInvite: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any>>;
|
|
858
|
+
tenantInviteDelete: (tenant: string, tenantInvite: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantInvite, any, {}>>;
|
|
859
859
|
/**
|
|
860
860
|
* @description Create an API token for a tenant
|
|
861
861
|
*
|
|
@@ -865,7 +865,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
865
865
|
* @request POST:/api/v1/tenants/{tenant}/api-tokens
|
|
866
866
|
* @secure
|
|
867
867
|
*/
|
|
868
|
-
apiTokenCreate: (tenant: string, data: CreateAPITokenRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<CreateAPITokenResponse, any>>;
|
|
868
|
+
apiTokenCreate: (tenant: string, data: CreateAPITokenRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<CreateAPITokenResponse, any, {}>>;
|
|
869
869
|
/**
|
|
870
870
|
* @description List API tokens for a tenant
|
|
871
871
|
*
|
|
@@ -875,7 +875,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
875
875
|
* @request GET:/api/v1/tenants/{tenant}/api-tokens
|
|
876
876
|
* @secure
|
|
877
877
|
*/
|
|
878
|
-
apiTokenList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListAPITokensResponse, any>>;
|
|
878
|
+
apiTokenList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ListAPITokensResponse, any, {}>>;
|
|
879
879
|
/**
|
|
880
880
|
* @description Revoke an API token for a tenant
|
|
881
881
|
*
|
|
@@ -885,7 +885,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
885
885
|
* @request POST:/api/v1/api-tokens/{api-token}
|
|
886
886
|
* @secure
|
|
887
887
|
*/
|
|
888
|
-
apiTokenUpdateRevoke: (apiToken: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
888
|
+
apiTokenUpdateRevoke: (apiToken: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
889
889
|
/**
|
|
890
890
|
* @description Get the queue metrics for the tenant
|
|
891
891
|
*
|
|
@@ -903,7 +903,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
903
903
|
* @example ["key1:value1","key2:value2"]
|
|
904
904
|
*/
|
|
905
905
|
additionalMetadata?: string[];
|
|
906
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantQueueMetrics, any>>;
|
|
906
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantQueueMetrics, any, {}>>;
|
|
907
907
|
/**
|
|
908
908
|
* @description Get the queue metrics for the tenant
|
|
909
909
|
*
|
|
@@ -913,7 +913,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
913
913
|
* @request GET:/api/v1/tenants/{tenant}/step-run-queue-metrics
|
|
914
914
|
* @secure
|
|
915
915
|
*/
|
|
916
|
-
tenantGetStepRunQueueMetrics: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantStepRunQueueMetrics, any>>;
|
|
916
|
+
tenantGetStepRunQueueMetrics: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantStepRunQueueMetrics, any, {}>>;
|
|
917
917
|
/**
|
|
918
918
|
* @description Lists all events for a tenant.
|
|
919
919
|
*
|
|
@@ -953,7 +953,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
953
953
|
additionalMetadata?: string[];
|
|
954
954
|
/** A list of event ids to filter by */
|
|
955
955
|
eventIds?: string[];
|
|
956
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventList, any>>;
|
|
956
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventList, any, {}>>;
|
|
957
957
|
/**
|
|
958
958
|
* @description Creates a new event.
|
|
959
959
|
*
|
|
@@ -963,7 +963,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
963
963
|
* @request POST:/api/v1/tenants/{tenant}/events
|
|
964
964
|
* @secure
|
|
965
965
|
*/
|
|
966
|
-
eventCreate: (tenant: string, data: CreateEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Event, any>>;
|
|
966
|
+
eventCreate: (tenant: string, data: CreateEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Event, any, {}>>;
|
|
967
967
|
/**
|
|
968
968
|
* @description Bulk creates new events.
|
|
969
969
|
*
|
|
@@ -973,7 +973,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
973
973
|
* @request POST:/api/v1/tenants/{tenant}/events/bulk
|
|
974
974
|
* @secure
|
|
975
975
|
*/
|
|
976
|
-
eventCreateBulk: (tenant: string, data: BulkCreateEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<BulkCreateEventResponse, any>>;
|
|
976
|
+
eventCreateBulk: (tenant: string, data: BulkCreateEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<BulkCreateEventResponse, any, {}>>;
|
|
977
977
|
/**
|
|
978
978
|
* @description Replays a list of events.
|
|
979
979
|
*
|
|
@@ -983,7 +983,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
983
983
|
* @request POST:/api/v1/tenants/{tenant}/events/replay
|
|
984
984
|
* @secure
|
|
985
985
|
*/
|
|
986
|
-
eventUpdateReplay: (tenant: string, data: ReplayEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventList, any>>;
|
|
986
|
+
eventUpdateReplay: (tenant: string, data: ReplayEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventList, any, {}>>;
|
|
987
987
|
/**
|
|
988
988
|
* @description Cancels all runs for a list of events.
|
|
989
989
|
*
|
|
@@ -995,7 +995,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
995
995
|
*/
|
|
996
996
|
eventUpdateCancel: (tenant: string, data: CancelEventRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<{
|
|
997
997
|
workflowRunIds?: string[];
|
|
998
|
-
}, any>>;
|
|
998
|
+
}, any, {}>>;
|
|
999
999
|
/**
|
|
1000
1000
|
* @description Lists all rate limits for a tenant.
|
|
1001
1001
|
*
|
|
@@ -1022,7 +1022,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1022
1022
|
orderByField?: RateLimitOrderByField;
|
|
1023
1023
|
/** The order direction */
|
|
1024
1024
|
orderByDirection?: RateLimitOrderByDirection;
|
|
1025
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<RateLimitList, any>>;
|
|
1025
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<RateLimitList, any, {}>>;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* @description Gets a list of tenant members
|
|
1028
1028
|
*
|
|
@@ -1032,7 +1032,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1032
1032
|
* @request GET:/api/v1/tenants/{tenant}/members
|
|
1033
1033
|
* @secure
|
|
1034
1034
|
*/
|
|
1035
|
-
tenantMemberList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantMemberList, any>>;
|
|
1035
|
+
tenantMemberList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantMemberList, any, {}>>;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* @description Delete a member from a tenant
|
|
1038
1038
|
*
|
|
@@ -1042,7 +1042,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1042
1042
|
* @request DELETE:/api/v1/tenants/{tenant}/members/{member}
|
|
1043
1043
|
* @secure
|
|
1044
1044
|
*/
|
|
1045
|
-
tenantMemberDelete: (tenant: string, member: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantMember, any>>;
|
|
1045
|
+
tenantMemberDelete: (tenant: string, member: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<TenantMember, any, {}>>;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* @description Get an event.
|
|
1048
1048
|
*
|
|
@@ -1052,7 +1052,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1052
1052
|
* @request GET:/api/v1/events/{event}
|
|
1053
1053
|
* @secure
|
|
1054
1054
|
*/
|
|
1055
|
-
eventGet: (event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Event, any>>;
|
|
1055
|
+
eventGet: (event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Event, any, {}>>;
|
|
1056
1056
|
/**
|
|
1057
1057
|
* @description Get the data for an event.
|
|
1058
1058
|
*
|
|
@@ -1062,7 +1062,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1062
1062
|
* @request GET:/api/v1/events/{event}/data
|
|
1063
1063
|
* @secure
|
|
1064
1064
|
*/
|
|
1065
|
-
eventDataGet: (event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventData, any>>;
|
|
1065
|
+
eventDataGet: (event: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventData, any, {}>>;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* @description Lists all event keys for a tenant.
|
|
1068
1068
|
*
|
|
@@ -1072,7 +1072,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1072
1072
|
* @request GET:/api/v1/tenants/{tenant}/events/keys
|
|
1073
1073
|
* @secure
|
|
1074
1074
|
*/
|
|
1075
|
-
eventKeyList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventKeyList, any>>;
|
|
1075
|
+
eventKeyList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<EventKeyList, any, {}>>;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* @description Get all workflows for a tenant
|
|
1078
1078
|
*
|
|
@@ -1097,7 +1097,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1097
1097
|
limit?: number;
|
|
1098
1098
|
/** Search by name */
|
|
1099
1099
|
name?: string;
|
|
1100
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowList, any>>;
|
|
1100
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowList, any, {}>>;
|
|
1101
1101
|
/**
|
|
1102
1102
|
* @description Schedule a new workflow run for a tenant
|
|
1103
1103
|
*
|
|
@@ -1107,7 +1107,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1107
1107
|
* @request POST:/api/v1/tenants/{tenant}/workflows/{workflow}/scheduled
|
|
1108
1108
|
* @secure
|
|
1109
1109
|
*/
|
|
1110
|
-
scheduledWorkflowRunCreate: (tenant: string, workflow: string, data: ScheduleWorkflowRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflows, any>>;
|
|
1110
|
+
scheduledWorkflowRunCreate: (tenant: string, workflow: string, data: ScheduleWorkflowRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflows, any, {}>>;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* @description Get all scheduled workflow runs for a tenant
|
|
1113
1113
|
*
|
|
@@ -1160,7 +1160,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1160
1160
|
additionalMetadata?: string[];
|
|
1161
1161
|
/** A list of scheduled run statuses to filter by */
|
|
1162
1162
|
statuses?: ScheduledRunStatus[];
|
|
1163
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflowsList, any>>;
|
|
1163
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflowsList, any, {}>>;
|
|
1164
1164
|
/**
|
|
1165
1165
|
* @description Get a scheduled workflow run for a tenant
|
|
1166
1166
|
*
|
|
@@ -1170,7 +1170,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1170
1170
|
* @request GET:/api/v1/tenants/{tenant}/workflows/scheduled/{scheduled-workflow-run}
|
|
1171
1171
|
* @secure
|
|
1172
1172
|
*/
|
|
1173
|
-
workflowScheduledGet: (tenant: string, scheduledWorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflows, any>>;
|
|
1173
|
+
workflowScheduledGet: (tenant: string, scheduledWorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<ScheduledWorkflows, any, {}>>;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* @description Delete a scheduled workflow run for a tenant
|
|
1176
1176
|
*
|
|
@@ -1180,7 +1180,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1180
1180
|
* @request DELETE:/api/v1/tenants/{tenant}/workflows/scheduled/{scheduled-workflow-run}
|
|
1181
1181
|
* @secure
|
|
1182
1182
|
*/
|
|
1183
|
-
workflowScheduledDelete: (tenant: string, scheduledWorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
1183
|
+
workflowScheduledDelete: (tenant: string, scheduledWorkflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1184
1184
|
/**
|
|
1185
1185
|
* @description Create a new cron job workflow trigger for a tenant
|
|
1186
1186
|
*
|
|
@@ -1190,7 +1190,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1190
1190
|
* @request POST:/api/v1/tenants/{tenant}/workflows/{workflow}/crons
|
|
1191
1191
|
* @secure
|
|
1192
1192
|
*/
|
|
1193
|
-
cronWorkflowTriggerCreate: (tenant: string, workflow: string, data: CreateCronWorkflowTriggerRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflows, any>>;
|
|
1193
|
+
cronWorkflowTriggerCreate: (tenant: string, workflow: string, data: CreateCronWorkflowTriggerRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflows, any, {}>>;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* @description Get all cron job workflow triggers for a tenant
|
|
1196
1196
|
*
|
|
@@ -1231,7 +1231,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1231
1231
|
orderByField?: CronWorkflowsOrderByField;
|
|
1232
1232
|
/** The order by direction */
|
|
1233
1233
|
orderByDirection?: WorkflowRunOrderByDirection;
|
|
1234
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflowsList, any>>;
|
|
1234
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflowsList, any, {}>>;
|
|
1235
1235
|
/**
|
|
1236
1236
|
* @description Get a cron job workflow run for a tenant
|
|
1237
1237
|
*
|
|
@@ -1241,7 +1241,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1241
1241
|
* @request GET:/api/v1/tenants/{tenant}/workflows/crons/{cron-workflow}
|
|
1242
1242
|
* @secure
|
|
1243
1243
|
*/
|
|
1244
|
-
workflowCronGet: (tenant: string, cronWorkflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflows, any>>;
|
|
1244
|
+
workflowCronGet: (tenant: string, cronWorkflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<CronWorkflows, any, {}>>;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* @description Delete a cron job workflow run for a tenant
|
|
1247
1247
|
*
|
|
@@ -1251,7 +1251,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1251
1251
|
* @request DELETE:/api/v1/tenants/{tenant}/workflows/crons/{cron-workflow}
|
|
1252
1252
|
* @secure
|
|
1253
1253
|
*/
|
|
1254
|
-
workflowCronDelete: (tenant: string, cronWorkflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
1254
|
+
workflowCronDelete: (tenant: string, cronWorkflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* @description Cancel a batch of workflow runs
|
|
1257
1257
|
*
|
|
@@ -1263,7 +1263,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1263
1263
|
*/
|
|
1264
1264
|
workflowRunCancel: (tenant: string, data: WorkflowRunsCancelRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<{
|
|
1265
1265
|
workflowRunIds?: string[];
|
|
1266
|
-
}, any>>;
|
|
1266
|
+
}, any, {}>>;
|
|
1267
1267
|
/**
|
|
1268
1268
|
* @description Get a workflow for a tenant
|
|
1269
1269
|
*
|
|
@@ -1273,7 +1273,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1273
1273
|
* @request GET:/api/v1/workflows/{workflow}
|
|
1274
1274
|
* @secure
|
|
1275
1275
|
*/
|
|
1276
|
-
workflowGet: (workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Workflow, any>>;
|
|
1276
|
+
workflowGet: (workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Workflow, any, {}>>;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* @description Delete a workflow for a tenant
|
|
1279
1279
|
*
|
|
@@ -1283,7 +1283,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1283
1283
|
* @request DELETE:/api/v1/workflows/{workflow}
|
|
1284
1284
|
* @secure
|
|
1285
1285
|
*/
|
|
1286
|
-
workflowDelete: (workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
1286
|
+
workflowDelete: (workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1287
1287
|
/**
|
|
1288
1288
|
* @description Update a workflow for a tenant
|
|
1289
1289
|
*
|
|
@@ -1293,7 +1293,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1293
1293
|
* @request PATCH:/api/v1/workflows/{workflow}
|
|
1294
1294
|
* @secure
|
|
1295
1295
|
*/
|
|
1296
|
-
workflowUpdate: (workflow: string, data: WorkflowUpdateRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Workflow, any>>;
|
|
1296
|
+
workflowUpdate: (workflow: string, data: WorkflowUpdateRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Workflow, any, {}>>;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* @description Get a workflow version for a tenant
|
|
1299
1299
|
*
|
|
@@ -1311,7 +1311,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1311
1311
|
* @maxLength 36
|
|
1312
1312
|
*/
|
|
1313
1313
|
version?: string;
|
|
1314
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowVersion, any>>;
|
|
1314
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowVersion, any, {}>>;
|
|
1315
1315
|
/**
|
|
1316
1316
|
* @description Trigger a new workflow run for a tenant
|
|
1317
1317
|
*
|
|
@@ -1329,7 +1329,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1329
1329
|
* @maxLength 36
|
|
1330
1330
|
*/
|
|
1331
1331
|
version?: string;
|
|
1332
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRun, any>>;
|
|
1332
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRun, any, {}>>;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @description Get the metrics for a workflow version
|
|
1335
1335
|
*
|
|
@@ -1344,7 +1344,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1344
1344
|
status?: WorkflowRunStatus;
|
|
1345
1345
|
/** A group key to filter metrics by */
|
|
1346
1346
|
groupKey?: string;
|
|
1347
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowMetrics, any>>;
|
|
1347
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowMetrics, any, {}>>;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* @description Lists log lines for a step run.
|
|
1350
1350
|
*
|
|
@@ -1373,7 +1373,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1373
1373
|
orderByField?: LogLineOrderByField;
|
|
1374
1374
|
/** The order direction */
|
|
1375
1375
|
orderByDirection?: LogLineOrderByDirection;
|
|
1376
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<LogLineList, any>>;
|
|
1376
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<LogLineList, any, {}>>;
|
|
1377
1377
|
/**
|
|
1378
1378
|
* @description List events for a step run
|
|
1379
1379
|
*
|
|
@@ -1394,7 +1394,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1394
1394
|
* @format int64
|
|
1395
1395
|
*/
|
|
1396
1396
|
limit?: number;
|
|
1397
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunEventList, any>>;
|
|
1397
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunEventList, any, {}>>;
|
|
1398
1398
|
/**
|
|
1399
1399
|
* @description List events for all step runs for a workflow run
|
|
1400
1400
|
*
|
|
@@ -1410,7 +1410,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1410
1410
|
* @format int32
|
|
1411
1411
|
*/
|
|
1412
1412
|
lastId?: number;
|
|
1413
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunEventList, any>>;
|
|
1413
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunEventList, any, {}>>;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* @description List archives for a step run
|
|
1416
1416
|
*
|
|
@@ -1431,7 +1431,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1431
1431
|
* @format int64
|
|
1432
1432
|
*/
|
|
1433
1433
|
limit?: number;
|
|
1434
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunArchiveList, any>>;
|
|
1434
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRunArchiveList, any, {}>>;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* @description Get a count of the workers available for workflow
|
|
1437
1437
|
*
|
|
@@ -1441,7 +1441,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1441
1441
|
* @request GET:/api/v1/tenants/{tenant}/workflows/{workflow}/worker-count
|
|
1442
1442
|
* @secure
|
|
1443
1443
|
*/
|
|
1444
|
-
workflowGetWorkersCount: (tenant: string, workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowWorkersCount, any>>;
|
|
1444
|
+
workflowGetWorkersCount: (tenant: string, workflow: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowWorkersCount, any, {}>>;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* @description Get all workflow runs for a tenant
|
|
1447
1447
|
*
|
|
@@ -1527,7 +1527,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1527
1527
|
orderByField?: WorkflowRunOrderByField;
|
|
1528
1528
|
/** The order by direction */
|
|
1529
1529
|
orderByDirection?: WorkflowRunOrderByDirection;
|
|
1530
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunList, any>>;
|
|
1530
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunList, any, {}>>;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* @description Replays a list of workflow runs.
|
|
1533
1533
|
*
|
|
@@ -1537,7 +1537,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1537
1537
|
* @request POST:/api/v1/tenants/{tenant}/workflow-runs/replay
|
|
1538
1538
|
* @secure
|
|
1539
1539
|
*/
|
|
1540
|
-
workflowRunUpdateReplay: (tenant: string, data: ReplayWorkflowRunsRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<ReplayWorkflowRunsResponse, any>>;
|
|
1540
|
+
workflowRunUpdateReplay: (tenant: string, data: ReplayWorkflowRunsRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<ReplayWorkflowRunsResponse, any, {}>>;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* @description Get a summary of workflow run metrics for a tenant
|
|
1543
1543
|
*
|
|
@@ -1593,7 +1593,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1593
1593
|
* @example "2021-01-01T00:00:00Z"
|
|
1594
1594
|
*/
|
|
1595
1595
|
createdBefore?: string;
|
|
1596
|
-
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunsMetrics, any>>;
|
|
1596
|
+
}, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunsMetrics, any, {}>>;
|
|
1597
1597
|
/**
|
|
1598
1598
|
* @description Get a workflow run for a tenant
|
|
1599
1599
|
*
|
|
@@ -1603,7 +1603,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1603
1603
|
* @request GET:/api/v1/tenants/{tenant}/workflow-runs/{workflow-run}
|
|
1604
1604
|
* @secure
|
|
1605
1605
|
*/
|
|
1606
|
-
workflowRunGet: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRun, any>>;
|
|
1606
|
+
workflowRunGet: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRun, any, {}>>;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* @description Get a workflow run for a tenant
|
|
1609
1609
|
*
|
|
@@ -1613,7 +1613,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1613
1613
|
* @request GET:/api/v1/tenants/{tenant}/workflow-runs/{workflow-run}/shape
|
|
1614
1614
|
* @secure
|
|
1615
1615
|
*/
|
|
1616
|
-
workflowRunGetShape: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunShape, any>>;
|
|
1616
|
+
workflowRunGetShape: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkflowRunShape, any, {}>>;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* @description Get a step run by id
|
|
1619
1619
|
*
|
|
@@ -1623,7 +1623,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1623
1623
|
* @request GET:/api/v1/tenants/{tenant}/step-runs/{step-run}
|
|
1624
1624
|
* @secure
|
|
1625
1625
|
*/
|
|
1626
|
-
stepRunGet: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any>>;
|
|
1626
|
+
stepRunGet: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any, {}>>;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* @description Reruns a step run
|
|
1629
1629
|
*
|
|
@@ -1633,7 +1633,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1633
1633
|
* @request POST:/api/v1/tenants/{tenant}/step-runs/{step-run}/rerun
|
|
1634
1634
|
* @secure
|
|
1635
1635
|
*/
|
|
1636
|
-
stepRunUpdateRerun: (tenant: string, stepRun: string, data: RerunStepRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any>>;
|
|
1636
|
+
stepRunUpdateRerun: (tenant: string, stepRun: string, data: RerunStepRunRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any, {}>>;
|
|
1637
1637
|
/**
|
|
1638
1638
|
* @description Attempts to cancel a step run
|
|
1639
1639
|
*
|
|
@@ -1643,7 +1643,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1643
1643
|
* @request POST:/api/v1/tenants/{tenant}/step-runs/{step-run}/cancel
|
|
1644
1644
|
* @secure
|
|
1645
1645
|
*/
|
|
1646
|
-
stepRunUpdateCancel: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any>>;
|
|
1646
|
+
stepRunUpdateCancel: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<StepRun, any, {}>>;
|
|
1647
1647
|
/**
|
|
1648
1648
|
* @description Get the schema for a step run
|
|
1649
1649
|
*
|
|
@@ -1653,7 +1653,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1653
1653
|
* @request GET:/api/v1/tenants/{tenant}/step-runs/{step-run}/schema
|
|
1654
1654
|
* @secure
|
|
1655
1655
|
*/
|
|
1656
|
-
stepRunGetSchema: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<object, any>>;
|
|
1656
|
+
stepRunGetSchema: (tenant: string, stepRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1657
1657
|
/**
|
|
1658
1658
|
* @description Get all workers for a tenant
|
|
1659
1659
|
*
|
|
@@ -1663,7 +1663,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1663
1663
|
* @request GET:/api/v1/tenants/{tenant}/worker
|
|
1664
1664
|
* @secure
|
|
1665
1665
|
*/
|
|
1666
|
-
workerList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkerList, any>>;
|
|
1666
|
+
workerList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WorkerList, any, {}>>;
|
|
1667
1667
|
/**
|
|
1668
1668
|
* @description Update a worker
|
|
1669
1669
|
*
|
|
@@ -1673,7 +1673,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1673
1673
|
* @request PATCH:/api/v1/workers/{worker}
|
|
1674
1674
|
* @secure
|
|
1675
1675
|
*/
|
|
1676
|
-
workerUpdate: (worker: string, data: UpdateWorkerRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Worker, any>>;
|
|
1676
|
+
workerUpdate: (worker: string, data: UpdateWorkerRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<Worker, any, {}>>;
|
|
1677
1677
|
/**
|
|
1678
1678
|
* @description Get a worker
|
|
1679
1679
|
*
|
|
@@ -1683,7 +1683,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1683
1683
|
* @request GET:/api/v1/workers/{worker}
|
|
1684
1684
|
* @secure
|
|
1685
1685
|
*/
|
|
1686
|
-
workerGet: (worker: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Worker, any>>;
|
|
1686
|
+
workerGet: (worker: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Worker, any, {}>>;
|
|
1687
1687
|
/**
|
|
1688
1688
|
* @description Lists all webhooks
|
|
1689
1689
|
*
|
|
@@ -1692,7 +1692,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1692
1692
|
* @request GET:/api/v1/tenants/{tenant}/webhook-workers
|
|
1693
1693
|
* @secure
|
|
1694
1694
|
*/
|
|
1695
|
-
webhookList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerListResponse, any>>;
|
|
1695
|
+
webhookList: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerListResponse, any, {}>>;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* @description Creates a webhook
|
|
1698
1698
|
*
|
|
@@ -1701,7 +1701,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1701
1701
|
* @request POST:/api/v1/tenants/{tenant}/webhook-workers
|
|
1702
1702
|
* @secure
|
|
1703
1703
|
*/
|
|
1704
|
-
webhookCreate: (tenant: string, data: WebhookWorkerCreateRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerCreated, any>>;
|
|
1704
|
+
webhookCreate: (tenant: string, data: WebhookWorkerCreateRequest, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerCreated, any, {}>>;
|
|
1705
1705
|
/**
|
|
1706
1706
|
* @description Deletes a webhook
|
|
1707
1707
|
*
|
|
@@ -1710,7 +1710,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1710
1710
|
* @request DELETE:/api/v1/webhook-workers/{webhook}
|
|
1711
1711
|
* @secure
|
|
1712
1712
|
*/
|
|
1713
|
-
webhookDelete: (webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
1713
|
+
webhookDelete: (webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1714
1714
|
/**
|
|
1715
1715
|
* @description Lists all requests for a webhook
|
|
1716
1716
|
*
|
|
@@ -1719,7 +1719,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1719
1719
|
* @request GET:/api/v1/webhook-workers/{webhook}/requests
|
|
1720
1720
|
* @secure
|
|
1721
1721
|
*/
|
|
1722
|
-
webhookRequestsList: (webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerRequestListResponse, any>>;
|
|
1722
|
+
webhookRequestsList: (webhook: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<WebhookWorkerRequestListResponse, any, {}>>;
|
|
1723
1723
|
/**
|
|
1724
1724
|
* @description Get the input for a workflow run.
|
|
1725
1725
|
*
|
|
@@ -1729,7 +1729,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1729
1729
|
* @request GET:/api/v1/tenants/{tenant}/workflow-runs/{workflow-run}/input
|
|
1730
1730
|
* @secure
|
|
1731
1731
|
*/
|
|
1732
|
-
workflowRunGetInput: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Record<string, any>, any>>;
|
|
1732
|
+
workflowRunGetInput: (tenant: string, workflowRun: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<Record<string, any>, any, {}>>;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* @description Triggers a workflow to check the status of the instance
|
|
1735
1735
|
*
|
|
@@ -1738,7 +1738,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1738
1738
|
* @request POST:/api/v1/monitoring/{tenant}/probe
|
|
1739
1739
|
* @secure
|
|
1740
1740
|
*/
|
|
1741
|
-
monitoringPostRunProbe: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any>>;
|
|
1741
|
+
monitoringPostRunProbe: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1742
1742
|
/**
|
|
1743
1743
|
* @description Get the version of the server
|
|
1744
1744
|
*
|
|
@@ -1749,7 +1749,7 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1749
1749
|
infoGetVersion: (params?: RequestParams) => Promise<import("axios").AxiosResponse<{
|
|
1750
1750
|
/** @example "1.0.0" */
|
|
1751
1751
|
version: string;
|
|
1752
|
-
}, any>>;
|
|
1752
|
+
}, any, {}>>;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* @description Get the prometheus metrics for the tenant
|
|
1755
1755
|
*
|
|
@@ -1759,5 +1759,5 @@ export declare class Api<SecurityDataType = unknown> extends HttpClient<Security
|
|
|
1759
1759
|
* @request GET:/api/v1/tenants/{tenant}/prometheus-metrics
|
|
1760
1760
|
* @secure
|
|
1761
1761
|
*/
|
|
1762
|
-
tenantGetPrometheusMetrics: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<string, any>>;
|
|
1762
|
+
tenantGetPrometheusMetrics: (tenant: string, params?: RequestParams) => Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
1763
1763
|
}
|