qovery-ws-typescript-axios 0.1.584 → 0.1.586
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 +33 -0
- package/dist/api.d.ts +31 -0
- package/dist/esm/api.d.ts +31 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -62,6 +62,33 @@ export interface ApplicationStatusDto {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @export
|
|
68
|
+
* @interface ArgoCdAppStatusDto
|
|
69
|
+
*/
|
|
70
|
+
export interface ArgoCdAppStatusDto {
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ArgoCdAppStatusDto
|
|
75
|
+
*/
|
|
76
|
+
'id': string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {Array<PodStatusDto>}
|
|
80
|
+
* @memberof ArgoCdAppStatusDto
|
|
81
|
+
*/
|
|
82
|
+
'pods': Array<PodStatusDto>;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {ServiceStateDto}
|
|
86
|
+
* @memberof ArgoCdAppStatusDto
|
|
87
|
+
*/
|
|
88
|
+
'state': ServiceStateDto;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
|
|
65
92
|
/**
|
|
66
93
|
*
|
|
67
94
|
* @export
|
|
@@ -529,6 +556,12 @@ export interface EnvironmentStatusDto {
|
|
|
529
556
|
* @memberof EnvironmentStatusDto
|
|
530
557
|
*/
|
|
531
558
|
'applications': Array<ApplicationStatusDto>;
|
|
559
|
+
/**
|
|
560
|
+
*
|
|
561
|
+
* @type {Array<ArgoCdAppStatusDto>}
|
|
562
|
+
* @memberof EnvironmentStatusDto
|
|
563
|
+
*/
|
|
564
|
+
'argocd_apps': Array<ArgoCdAppStatusDto>;
|
|
532
565
|
/**
|
|
533
566
|
*
|
|
534
567
|
* @type {Array<ApplicationStatusDto>}
|
package/dist/api.d.ts
CHANGED
|
@@ -50,6 +50,31 @@ export interface ApplicationStatusDto {
|
|
|
50
50
|
*/
|
|
51
51
|
'state': ServiceStateDto;
|
|
52
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @export
|
|
56
|
+
* @interface ArgoCdAppStatusDto
|
|
57
|
+
*/
|
|
58
|
+
export interface ArgoCdAppStatusDto {
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ArgoCdAppStatusDto
|
|
63
|
+
*/
|
|
64
|
+
'id': string;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {Array<PodStatusDto>}
|
|
68
|
+
* @memberof ArgoCdAppStatusDto
|
|
69
|
+
*/
|
|
70
|
+
'pods': Array<PodStatusDto>;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {ServiceStateDto}
|
|
74
|
+
* @memberof ArgoCdAppStatusDto
|
|
75
|
+
*/
|
|
76
|
+
'state': ServiceStateDto;
|
|
77
|
+
}
|
|
53
78
|
/**
|
|
54
79
|
*
|
|
55
80
|
* @export
|
|
@@ -507,6 +532,12 @@ export interface EnvironmentStatusDto {
|
|
|
507
532
|
* @memberof EnvironmentStatusDto
|
|
508
533
|
*/
|
|
509
534
|
'applications': Array<ApplicationStatusDto>;
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
* @type {Array<ArgoCdAppStatusDto>}
|
|
538
|
+
* @memberof EnvironmentStatusDto
|
|
539
|
+
*/
|
|
540
|
+
'argocd_apps': Array<ArgoCdAppStatusDto>;
|
|
510
541
|
/**
|
|
511
542
|
*
|
|
512
543
|
* @type {Array<ApplicationStatusDto>}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -50,6 +50,31 @@ export interface ApplicationStatusDto {
|
|
|
50
50
|
*/
|
|
51
51
|
'state': ServiceStateDto;
|
|
52
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @export
|
|
56
|
+
* @interface ArgoCdAppStatusDto
|
|
57
|
+
*/
|
|
58
|
+
export interface ArgoCdAppStatusDto {
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ArgoCdAppStatusDto
|
|
63
|
+
*/
|
|
64
|
+
'id': string;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {Array<PodStatusDto>}
|
|
68
|
+
* @memberof ArgoCdAppStatusDto
|
|
69
|
+
*/
|
|
70
|
+
'pods': Array<PodStatusDto>;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {ServiceStateDto}
|
|
74
|
+
* @memberof ArgoCdAppStatusDto
|
|
75
|
+
*/
|
|
76
|
+
'state': ServiceStateDto;
|
|
77
|
+
}
|
|
53
78
|
/**
|
|
54
79
|
*
|
|
55
80
|
* @export
|
|
@@ -507,6 +532,12 @@ export interface EnvironmentStatusDto {
|
|
|
507
532
|
* @memberof EnvironmentStatusDto
|
|
508
533
|
*/
|
|
509
534
|
'applications': Array<ApplicationStatusDto>;
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
* @type {Array<ArgoCdAppStatusDto>}
|
|
538
|
+
* @memberof EnvironmentStatusDto
|
|
539
|
+
*/
|
|
540
|
+
'argocd_apps': Array<ArgoCdAppStatusDto>;
|
|
510
541
|
/**
|
|
511
542
|
*
|
|
512
543
|
* @type {Array<ApplicationStatusDto>}
|