qovery-typescript-axios 1.1.960 → 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 +70 -1
- package/dist/api.d.ts +70 -1
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +70 -1
- package/dist/esm/api.js +2 -1
- 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
|
|
@@ -24761,6 +24817,12 @@ export interface ServiceStepMetric {
|
|
|
24761
24817
|
* @memberof ServiceStepMetric
|
|
24762
24818
|
*/
|
|
24763
24819
|
'duration_sec'?: number;
|
|
24820
|
+
/**
|
|
24821
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24822
|
+
* @type {string}
|
|
24823
|
+
* @memberof ServiceStepMetric
|
|
24824
|
+
*/
|
|
24825
|
+
'started_at'?: string | null;
|
|
24764
24826
|
}
|
|
24765
24827
|
|
|
24766
24828
|
|
|
@@ -25449,6 +25511,12 @@ export interface StageStepMetric {
|
|
|
25449
25511
|
* @memberof StageStepMetric
|
|
25450
25512
|
*/
|
|
25451
25513
|
'duration_sec'?: number;
|
|
25514
|
+
/**
|
|
25515
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
25516
|
+
* @type {string}
|
|
25517
|
+
* @memberof StageStepMetric
|
|
25518
|
+
*/
|
|
25519
|
+
'started_at'?: string | null;
|
|
25452
25520
|
}
|
|
25453
25521
|
|
|
25454
25522
|
|
|
@@ -25655,12 +25723,13 @@ export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
|
25655
25723
|
|
|
25656
25724
|
|
|
25657
25725
|
/**
|
|
25658
|
-
* The status of
|
|
25726
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
25659
25727
|
* @export
|
|
25660
25728
|
* @enum {string}
|
|
25661
25729
|
*/
|
|
25662
25730
|
|
|
25663
25731
|
export const StepMetricStatusEnum = {
|
|
25732
|
+
ONGOING: 'ONGOING',
|
|
25664
25733
|
SUCCESS: 'SUCCESS',
|
|
25665
25734
|
ERROR: 'ERROR',
|
|
25666
25735
|
CANCEL: 'CANCEL',
|
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
|
|
@@ -24017,6 +24073,12 @@ export interface ServiceStepMetric {
|
|
|
24017
24073
|
* @memberof ServiceStepMetric
|
|
24018
24074
|
*/
|
|
24019
24075
|
'duration_sec'?: number;
|
|
24076
|
+
/**
|
|
24077
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24078
|
+
* @type {string}
|
|
24079
|
+
* @memberof ServiceStepMetric
|
|
24080
|
+
*/
|
|
24081
|
+
'started_at'?: string | null;
|
|
24020
24082
|
}
|
|
24021
24083
|
/**
|
|
24022
24084
|
* The name of the deployment step at the service level: - REGISTRY_CREATE_REPOSITORY: The step to create the repository in the registry. - GIT_CLONE: The step to clone the source code repository. - BUILD_QUEUEING: The queuing time preceding the actual building step. - BUILD: The step to build the source code. - DEPLOYMENT_QUEUEING: The queuing time preceding the actual deployment step. - DEPLOYMENT: The step to deploy the service. - ROUTER_DEPLOYMENT: The step to deploy the router. - MIRROR_IMAGE: The step to mirror the image to the private registry. - EXECUTING: The step to execute a job or terraform apply.
|
|
@@ -24664,6 +24726,12 @@ export interface StageStepMetric {
|
|
|
24664
24726
|
* @memberof StageStepMetric
|
|
24665
24727
|
*/
|
|
24666
24728
|
'duration_sec'?: number;
|
|
24729
|
+
/**
|
|
24730
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24731
|
+
* @type {string}
|
|
24732
|
+
* @memberof StageStepMetric
|
|
24733
|
+
*/
|
|
24734
|
+
'started_at'?: string | null;
|
|
24667
24735
|
}
|
|
24668
24736
|
/**
|
|
24669
24737
|
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
@@ -24852,11 +24920,12 @@ export declare const StatusKindEnum: {
|
|
|
24852
24920
|
};
|
|
24853
24921
|
export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
24854
24922
|
/**
|
|
24855
|
-
* The status of
|
|
24923
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
24856
24924
|
* @export
|
|
24857
24925
|
* @enum {string}
|
|
24858
24926
|
*/
|
|
24859
24927
|
export declare const StepMetricStatusEnum: {
|
|
24928
|
+
readonly ONGOING: "ONGOING";
|
|
24860
24929
|
readonly SUCCESS: "SUCCESS";
|
|
24861
24930
|
readonly ERROR: "ERROR";
|
|
24862
24931
|
readonly CANCEL: "CANCEL";
|
package/dist/api.js
CHANGED
|
@@ -1616,11 +1616,12 @@ exports.StatusKindEnum = {
|
|
|
1616
1616
|
WAITING: 'WAITING'
|
|
1617
1617
|
};
|
|
1618
1618
|
/**
|
|
1619
|
-
* The status of
|
|
1619
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
1620
1620
|
* @export
|
|
1621
1621
|
* @enum {string}
|
|
1622
1622
|
*/
|
|
1623
1623
|
exports.StepMetricStatusEnum = {
|
|
1624
|
+
ONGOING: 'ONGOING',
|
|
1624
1625
|
SUCCESS: 'SUCCESS',
|
|
1625
1626
|
ERROR: 'ERROR',
|
|
1626
1627
|
CANCEL: 'CANCEL',
|
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
|
|
@@ -24017,6 +24073,12 @@ export interface ServiceStepMetric {
|
|
|
24017
24073
|
* @memberof ServiceStepMetric
|
|
24018
24074
|
*/
|
|
24019
24075
|
'duration_sec'?: number;
|
|
24076
|
+
/**
|
|
24077
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24078
|
+
* @type {string}
|
|
24079
|
+
* @memberof ServiceStepMetric
|
|
24080
|
+
*/
|
|
24081
|
+
'started_at'?: string | null;
|
|
24020
24082
|
}
|
|
24021
24083
|
/**
|
|
24022
24084
|
* The name of the deployment step at the service level: - REGISTRY_CREATE_REPOSITORY: The step to create the repository in the registry. - GIT_CLONE: The step to clone the source code repository. - BUILD_QUEUEING: The queuing time preceding the actual building step. - BUILD: The step to build the source code. - DEPLOYMENT_QUEUEING: The queuing time preceding the actual deployment step. - DEPLOYMENT: The step to deploy the service. - ROUTER_DEPLOYMENT: The step to deploy the router. - MIRROR_IMAGE: The step to mirror the image to the private registry. - EXECUTING: The step to execute a job or terraform apply.
|
|
@@ -24664,6 +24726,12 @@ export interface StageStepMetric {
|
|
|
24664
24726
|
* @memberof StageStepMetric
|
|
24665
24727
|
*/
|
|
24666
24728
|
'duration_sec'?: number;
|
|
24729
|
+
/**
|
|
24730
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24731
|
+
* @type {string}
|
|
24732
|
+
* @memberof StageStepMetric
|
|
24733
|
+
*/
|
|
24734
|
+
'started_at'?: string | null;
|
|
24667
24735
|
}
|
|
24668
24736
|
/**
|
|
24669
24737
|
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
@@ -24852,11 +24920,12 @@ export declare const StatusKindEnum: {
|
|
|
24852
24920
|
};
|
|
24853
24921
|
export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
24854
24922
|
/**
|
|
24855
|
-
* The status of
|
|
24923
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
24856
24924
|
* @export
|
|
24857
24925
|
* @enum {string}
|
|
24858
24926
|
*/
|
|
24859
24927
|
export declare const StepMetricStatusEnum: {
|
|
24928
|
+
readonly ONGOING: "ONGOING";
|
|
24860
24929
|
readonly SUCCESS: "SUCCESS";
|
|
24861
24930
|
readonly ERROR: "ERROR";
|
|
24862
24931
|
readonly CANCEL: "CANCEL";
|
package/dist/esm/api.js
CHANGED
|
@@ -1601,11 +1601,12 @@ export const StatusKindEnum = {
|
|
|
1601
1601
|
WAITING: 'WAITING'
|
|
1602
1602
|
};
|
|
1603
1603
|
/**
|
|
1604
|
-
* The status of
|
|
1604
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
1605
1605
|
* @export
|
|
1606
1606
|
* @enum {string}
|
|
1607
1607
|
*/
|
|
1608
1608
|
export const StepMetricStatusEnum = {
|
|
1609
|
+
ONGOING: 'ONGOING',
|
|
1609
1610
|
SUCCESS: 'SUCCESS',
|
|
1610
1611
|
ERROR: 'ERROR',
|
|
1611
1612
|
CANCEL: 'CANCEL',
|