qovery-typescript-axios 1.1.961 → 1.1.962
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/api.ts +56 -0
- package/dist/api.d.ts +56 -0
- package/dist/esm/api.d.ts +56 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -359,6 +359,12 @@ export interface AgenticWorkflowRequest {
|
|
|
359
359
|
* @memberof AgenticWorkflowRequest
|
|
360
360
|
*/
|
|
361
361
|
'resources'?: AgenticWorkflowResources;
|
|
362
|
+
/**
|
|
363
|
+
* Cron schedule firing runs of this workflow, on top of the webhook every workflow already has. Omit it, or send null, for a webhook-only workflow.
|
|
364
|
+
* @type {AgenticWorkflowScheduleRequest}
|
|
365
|
+
* @memberof AgenticWorkflowRequest
|
|
366
|
+
*/
|
|
367
|
+
'schedule'?: AgenticWorkflowScheduleRequest | null;
|
|
362
368
|
}
|
|
363
369
|
/**
|
|
364
370
|
*
|
|
@@ -517,6 +523,12 @@ export interface AgenticWorkflowResponse {
|
|
|
517
523
|
* @memberof AgenticWorkflowResponse
|
|
518
524
|
*/
|
|
519
525
|
'webhook': AgenticWorkflowWebhook;
|
|
526
|
+
/**
|
|
527
|
+
* Cron schedule firing runs of this workflow. Null when the workflow is webhook-only.
|
|
528
|
+
* @type {AgenticWorkflowScheduleResponse}
|
|
529
|
+
* @memberof AgenticWorkflowResponse
|
|
530
|
+
*/
|
|
531
|
+
'schedule': AgenticWorkflowScheduleResponse | null;
|
|
520
532
|
/**
|
|
521
533
|
* Icon URI representing the agentic workflow.
|
|
522
534
|
* @type {string}
|
|
@@ -539,6 +551,50 @@ export interface AgenticWorkflowResponseList {
|
|
|
539
551
|
*/
|
|
540
552
|
'results'?: Array<AgenticWorkflowResponse>;
|
|
541
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
*
|
|
556
|
+
* @export
|
|
557
|
+
* @interface AgenticWorkflowScheduleRequest
|
|
558
|
+
*/
|
|
559
|
+
export interface AgenticWorkflowScheduleRequest {
|
|
560
|
+
/**
|
|
561
|
+
* Five-field cron expression, the same syntax Kubernetes cron jobs accept. Rejected if it fires more than once every 5 minutes, since each run deploys a full environment.
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
564
|
+
*/
|
|
565
|
+
'cron_expression': string;
|
|
566
|
+
/**
|
|
567
|
+
* tz database identifier the expression is evaluated in.
|
|
568
|
+
* @type {string}
|
|
569
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
570
|
+
*/
|
|
571
|
+
'timezone': string;
|
|
572
|
+
}
|
|
573
|
+
/**
|
|
574
|
+
*
|
|
575
|
+
* @export
|
|
576
|
+
* @interface AgenticWorkflowScheduleResponse
|
|
577
|
+
*/
|
|
578
|
+
export interface AgenticWorkflowScheduleResponse {
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @type {string}
|
|
582
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
583
|
+
*/
|
|
584
|
+
'cron_expression': string;
|
|
585
|
+
/**
|
|
586
|
+
* tz database identifier the expression is evaluated in.
|
|
587
|
+
* @type {string}
|
|
588
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
589
|
+
*/
|
|
590
|
+
'timezone': string;
|
|
591
|
+
/**
|
|
592
|
+
* When the schedule fires next. Null while the workflow is disabled, since a disabled workflow accumulates no occurrences.
|
|
593
|
+
* @type {string}
|
|
594
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
595
|
+
*/
|
|
596
|
+
'next_run_at': string | null;
|
|
597
|
+
}
|
|
542
598
|
/**
|
|
543
599
|
*
|
|
544
600
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -333,6 +333,12 @@ export interface AgenticWorkflowRequest {
|
|
|
333
333
|
* @memberof AgenticWorkflowRequest
|
|
334
334
|
*/
|
|
335
335
|
'resources'?: AgenticWorkflowResources;
|
|
336
|
+
/**
|
|
337
|
+
* Cron schedule firing runs of this workflow, on top of the webhook every workflow already has. Omit it, or send null, for a webhook-only workflow.
|
|
338
|
+
* @type {AgenticWorkflowScheduleRequest}
|
|
339
|
+
* @memberof AgenticWorkflowRequest
|
|
340
|
+
*/
|
|
341
|
+
'schedule'?: AgenticWorkflowScheduleRequest | null;
|
|
336
342
|
}
|
|
337
343
|
/**
|
|
338
344
|
*
|
|
@@ -491,6 +497,12 @@ export interface AgenticWorkflowResponse {
|
|
|
491
497
|
* @memberof AgenticWorkflowResponse
|
|
492
498
|
*/
|
|
493
499
|
'webhook': AgenticWorkflowWebhook;
|
|
500
|
+
/**
|
|
501
|
+
* Cron schedule firing runs of this workflow. Null when the workflow is webhook-only.
|
|
502
|
+
* @type {AgenticWorkflowScheduleResponse}
|
|
503
|
+
* @memberof AgenticWorkflowResponse
|
|
504
|
+
*/
|
|
505
|
+
'schedule': AgenticWorkflowScheduleResponse | null;
|
|
494
506
|
/**
|
|
495
507
|
* Icon URI representing the agentic workflow.
|
|
496
508
|
* @type {string}
|
|
@@ -511,6 +523,50 @@ export interface AgenticWorkflowResponseList {
|
|
|
511
523
|
*/
|
|
512
524
|
'results'?: Array<AgenticWorkflowResponse>;
|
|
513
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @export
|
|
529
|
+
* @interface AgenticWorkflowScheduleRequest
|
|
530
|
+
*/
|
|
531
|
+
export interface AgenticWorkflowScheduleRequest {
|
|
532
|
+
/**
|
|
533
|
+
* Five-field cron expression, the same syntax Kubernetes cron jobs accept. Rejected if it fires more than once every 5 minutes, since each run deploys a full environment.
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
536
|
+
*/
|
|
537
|
+
'cron_expression': string;
|
|
538
|
+
/**
|
|
539
|
+
* tz database identifier the expression is evaluated in.
|
|
540
|
+
* @type {string}
|
|
541
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
542
|
+
*/
|
|
543
|
+
'timezone': string;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @export
|
|
548
|
+
* @interface AgenticWorkflowScheduleResponse
|
|
549
|
+
*/
|
|
550
|
+
export interface AgenticWorkflowScheduleResponse {
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
555
|
+
*/
|
|
556
|
+
'cron_expression': string;
|
|
557
|
+
/**
|
|
558
|
+
* tz database identifier the expression is evaluated in.
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
561
|
+
*/
|
|
562
|
+
'timezone': string;
|
|
563
|
+
/**
|
|
564
|
+
* When the schedule fires next. Null while the workflow is disabled, since a disabled workflow accumulates no occurrences.
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
567
|
+
*/
|
|
568
|
+
'next_run_at': string | null;
|
|
569
|
+
}
|
|
514
570
|
/**
|
|
515
571
|
*
|
|
516
572
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -333,6 +333,12 @@ export interface AgenticWorkflowRequest {
|
|
|
333
333
|
* @memberof AgenticWorkflowRequest
|
|
334
334
|
*/
|
|
335
335
|
'resources'?: AgenticWorkflowResources;
|
|
336
|
+
/**
|
|
337
|
+
* Cron schedule firing runs of this workflow, on top of the webhook every workflow already has. Omit it, or send null, for a webhook-only workflow.
|
|
338
|
+
* @type {AgenticWorkflowScheduleRequest}
|
|
339
|
+
* @memberof AgenticWorkflowRequest
|
|
340
|
+
*/
|
|
341
|
+
'schedule'?: AgenticWorkflowScheduleRequest | null;
|
|
336
342
|
}
|
|
337
343
|
/**
|
|
338
344
|
*
|
|
@@ -491,6 +497,12 @@ export interface AgenticWorkflowResponse {
|
|
|
491
497
|
* @memberof AgenticWorkflowResponse
|
|
492
498
|
*/
|
|
493
499
|
'webhook': AgenticWorkflowWebhook;
|
|
500
|
+
/**
|
|
501
|
+
* Cron schedule firing runs of this workflow. Null when the workflow is webhook-only.
|
|
502
|
+
* @type {AgenticWorkflowScheduleResponse}
|
|
503
|
+
* @memberof AgenticWorkflowResponse
|
|
504
|
+
*/
|
|
505
|
+
'schedule': AgenticWorkflowScheduleResponse | null;
|
|
494
506
|
/**
|
|
495
507
|
* Icon URI representing the agentic workflow.
|
|
496
508
|
* @type {string}
|
|
@@ -511,6 +523,50 @@ export interface AgenticWorkflowResponseList {
|
|
|
511
523
|
*/
|
|
512
524
|
'results'?: Array<AgenticWorkflowResponse>;
|
|
513
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @export
|
|
529
|
+
* @interface AgenticWorkflowScheduleRequest
|
|
530
|
+
*/
|
|
531
|
+
export interface AgenticWorkflowScheduleRequest {
|
|
532
|
+
/**
|
|
533
|
+
* Five-field cron expression, the same syntax Kubernetes cron jobs accept. Rejected if it fires more than once every 5 minutes, since each run deploys a full environment.
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
536
|
+
*/
|
|
537
|
+
'cron_expression': string;
|
|
538
|
+
/**
|
|
539
|
+
* tz database identifier the expression is evaluated in.
|
|
540
|
+
* @type {string}
|
|
541
|
+
* @memberof AgenticWorkflowScheduleRequest
|
|
542
|
+
*/
|
|
543
|
+
'timezone': string;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @export
|
|
548
|
+
* @interface AgenticWorkflowScheduleResponse
|
|
549
|
+
*/
|
|
550
|
+
export interface AgenticWorkflowScheduleResponse {
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
555
|
+
*/
|
|
556
|
+
'cron_expression': string;
|
|
557
|
+
/**
|
|
558
|
+
* tz database identifier the expression is evaluated in.
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
561
|
+
*/
|
|
562
|
+
'timezone': string;
|
|
563
|
+
/**
|
|
564
|
+
* When the schedule fires next. Null while the workflow is disabled, since a disabled workflow accumulates no occurrences.
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof AgenticWorkflowScheduleResponse
|
|
567
|
+
*/
|
|
568
|
+
'next_run_at': string | null;
|
|
569
|
+
}
|
|
514
570
|
/**
|
|
515
571
|
*
|
|
516
572
|
* @export
|