qovery-typescript-axios 1.1.972 → 1.1.973
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 +49 -0
- package/dist/api.d.ts +49 -0
- package/dist/esm/api.d.ts +49 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -15013,6 +15013,31 @@ export interface FieldSchemaConstraintsResponse {
|
|
|
15013
15013
|
*/
|
|
15014
15014
|
export type FieldSchemaResponse = { type: 'array' } & ArrayFieldSchemaResponse | { type: 'bool' } & ScalarFieldSchemaResponse | { type: 'number' } & ScalarFieldSchemaResponse | { type: 'object' } & ObjectFieldSchemaResponse | { type: 'string' } & ScalarFieldSchemaResponse;
|
|
15015
15015
|
|
|
15016
|
+
/**
|
|
15017
|
+
* A catalog-owned starting text for a field editor, not an applied default.
|
|
15018
|
+
* @export
|
|
15019
|
+
* @interface FieldTemplateResponse
|
|
15020
|
+
*/
|
|
15021
|
+
export interface FieldTemplateResponse {
|
|
15022
|
+
/**
|
|
15023
|
+
*
|
|
15024
|
+
* @type {string}
|
|
15025
|
+
* @memberof FieldTemplateResponse
|
|
15026
|
+
*/
|
|
15027
|
+
'id': string;
|
|
15028
|
+
/**
|
|
15029
|
+
*
|
|
15030
|
+
* @type {string}
|
|
15031
|
+
* @memberof FieldTemplateResponse
|
|
15032
|
+
*/
|
|
15033
|
+
'label': string;
|
|
15034
|
+
/**
|
|
15035
|
+
*
|
|
15036
|
+
* @type {string}
|
|
15037
|
+
* @memberof FieldTemplateResponse
|
|
15038
|
+
*/
|
|
15039
|
+
'value': string;
|
|
15040
|
+
}
|
|
15016
15041
|
/**
|
|
15017
15042
|
* @type GcpCredentialsRequest
|
|
15018
15043
|
* @export
|
|
@@ -22998,6 +23023,18 @@ export interface PlatformComponentInputRequirementResponse {
|
|
|
22998
23023
|
* @memberof PlatformComponentInputRequirementResponse
|
|
22999
23024
|
*/
|
|
23000
23025
|
'constraints': FieldSchemaConstraintsResponse;
|
|
23026
|
+
/**
|
|
23027
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
23028
|
+
* @type {string}
|
|
23029
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
23030
|
+
*/
|
|
23031
|
+
'format'?: string;
|
|
23032
|
+
/**
|
|
23033
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
23034
|
+
* @type {Array<FieldTemplateResponse>}
|
|
23035
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
23036
|
+
*/
|
|
23037
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
23001
23038
|
/**
|
|
23002
23039
|
*
|
|
23003
23040
|
* @type {PlatformComponentConfigurationInputScope}
|
|
@@ -24552,6 +24589,18 @@ export interface ScalarFieldSchemaResponse {
|
|
|
24552
24589
|
* @memberof ScalarFieldSchemaResponse
|
|
24553
24590
|
*/
|
|
24554
24591
|
'constraints': FieldSchemaConstraintsResponse;
|
|
24592
|
+
/**
|
|
24593
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
24594
|
+
* @type {string}
|
|
24595
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24596
|
+
*/
|
|
24597
|
+
'format'?: string;
|
|
24598
|
+
/**
|
|
24599
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
24600
|
+
* @type {Array<FieldTemplateResponse>}
|
|
24601
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24602
|
+
*/
|
|
24603
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
24555
24604
|
}
|
|
24556
24605
|
|
|
24557
24606
|
export const ScalarFieldSchemaResponseTypeEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -14605,6 +14605,31 @@ export type FieldSchemaResponse = {
|
|
|
14605
14605
|
} & ObjectFieldSchemaResponse | {
|
|
14606
14606
|
type: 'string';
|
|
14607
14607
|
} & ScalarFieldSchemaResponse;
|
|
14608
|
+
/**
|
|
14609
|
+
* A catalog-owned starting text for a field editor, not an applied default.
|
|
14610
|
+
* @export
|
|
14611
|
+
* @interface FieldTemplateResponse
|
|
14612
|
+
*/
|
|
14613
|
+
export interface FieldTemplateResponse {
|
|
14614
|
+
/**
|
|
14615
|
+
*
|
|
14616
|
+
* @type {string}
|
|
14617
|
+
* @memberof FieldTemplateResponse
|
|
14618
|
+
*/
|
|
14619
|
+
'id': string;
|
|
14620
|
+
/**
|
|
14621
|
+
*
|
|
14622
|
+
* @type {string}
|
|
14623
|
+
* @memberof FieldTemplateResponse
|
|
14624
|
+
*/
|
|
14625
|
+
'label': string;
|
|
14626
|
+
/**
|
|
14627
|
+
*
|
|
14628
|
+
* @type {string}
|
|
14629
|
+
* @memberof FieldTemplateResponse
|
|
14630
|
+
*/
|
|
14631
|
+
'value': string;
|
|
14632
|
+
}
|
|
14608
14633
|
/**
|
|
14609
14634
|
* @type GcpCredentialsRequest
|
|
14610
14635
|
* @export
|
|
@@ -22331,6 +22356,18 @@ export interface PlatformComponentInputRequirementResponse {
|
|
|
22331
22356
|
* @memberof PlatformComponentInputRequirementResponse
|
|
22332
22357
|
*/
|
|
22333
22358
|
'constraints': FieldSchemaConstraintsResponse;
|
|
22359
|
+
/**
|
|
22360
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
22361
|
+
* @type {string}
|
|
22362
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
22363
|
+
*/
|
|
22364
|
+
'format'?: string;
|
|
22365
|
+
/**
|
|
22366
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
22367
|
+
* @type {Array<FieldTemplateResponse>}
|
|
22368
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
22369
|
+
*/
|
|
22370
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
22334
22371
|
/**
|
|
22335
22372
|
*
|
|
22336
22373
|
* @type {PlatformComponentConfigurationInputScope}
|
|
@@ -23812,6 +23849,18 @@ export interface ScalarFieldSchemaResponse {
|
|
|
23812
23849
|
* @memberof ScalarFieldSchemaResponse
|
|
23813
23850
|
*/
|
|
23814
23851
|
'constraints': FieldSchemaConstraintsResponse;
|
|
23852
|
+
/**
|
|
23853
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
23854
|
+
* @type {string}
|
|
23855
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23856
|
+
*/
|
|
23857
|
+
'format'?: string;
|
|
23858
|
+
/**
|
|
23859
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
23860
|
+
* @type {Array<FieldTemplateResponse>}
|
|
23861
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23862
|
+
*/
|
|
23863
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
23815
23864
|
}
|
|
23816
23865
|
export declare const ScalarFieldSchemaResponseTypeEnum: {
|
|
23817
23866
|
readonly STRING: "string";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -14605,6 +14605,31 @@ export type FieldSchemaResponse = {
|
|
|
14605
14605
|
} & ObjectFieldSchemaResponse | {
|
|
14606
14606
|
type: 'string';
|
|
14607
14607
|
} & ScalarFieldSchemaResponse;
|
|
14608
|
+
/**
|
|
14609
|
+
* A catalog-owned starting text for a field editor, not an applied default.
|
|
14610
|
+
* @export
|
|
14611
|
+
* @interface FieldTemplateResponse
|
|
14612
|
+
*/
|
|
14613
|
+
export interface FieldTemplateResponse {
|
|
14614
|
+
/**
|
|
14615
|
+
*
|
|
14616
|
+
* @type {string}
|
|
14617
|
+
* @memberof FieldTemplateResponse
|
|
14618
|
+
*/
|
|
14619
|
+
'id': string;
|
|
14620
|
+
/**
|
|
14621
|
+
*
|
|
14622
|
+
* @type {string}
|
|
14623
|
+
* @memberof FieldTemplateResponse
|
|
14624
|
+
*/
|
|
14625
|
+
'label': string;
|
|
14626
|
+
/**
|
|
14627
|
+
*
|
|
14628
|
+
* @type {string}
|
|
14629
|
+
* @memberof FieldTemplateResponse
|
|
14630
|
+
*/
|
|
14631
|
+
'value': string;
|
|
14632
|
+
}
|
|
14608
14633
|
/**
|
|
14609
14634
|
* @type GcpCredentialsRequest
|
|
14610
14635
|
* @export
|
|
@@ -22331,6 +22356,18 @@ export interface PlatformComponentInputRequirementResponse {
|
|
|
22331
22356
|
* @memberof PlatformComponentInputRequirementResponse
|
|
22332
22357
|
*/
|
|
22333
22358
|
'constraints': FieldSchemaConstraintsResponse;
|
|
22359
|
+
/**
|
|
22360
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
22361
|
+
* @type {string}
|
|
22362
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
22363
|
+
*/
|
|
22364
|
+
'format'?: string;
|
|
22365
|
+
/**
|
|
22366
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
22367
|
+
* @type {Array<FieldTemplateResponse>}
|
|
22368
|
+
* @memberof PlatformComponentInputRequirementResponse
|
|
22369
|
+
*/
|
|
22370
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
22334
22371
|
/**
|
|
22335
22372
|
*
|
|
22336
22373
|
* @type {PlatformComponentConfigurationInputScope}
|
|
@@ -23812,6 +23849,18 @@ export interface ScalarFieldSchemaResponse {
|
|
|
23812
23849
|
* @memberof ScalarFieldSchemaResponse
|
|
23813
23850
|
*/
|
|
23814
23851
|
'constraints': FieldSchemaConstraintsResponse;
|
|
23852
|
+
/**
|
|
23853
|
+
* Optional editor format for a string field, independent of its scalar type. kubernetes-resource-yaml selects a single Kubernetes YAML object editor. Unknown formats should fall back to the ordinary string editor.
|
|
23854
|
+
* @type {string}
|
|
23855
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23856
|
+
*/
|
|
23857
|
+
'format'?: string;
|
|
23858
|
+
/**
|
|
23859
|
+
* Optional starting texts for an explicit user choice, with unique IDs within the field. Present only with format. Never apply as defaults or overwrite a saved value. The format selects the editor even when templates are absent.
|
|
23860
|
+
* @type {Array<FieldTemplateResponse>}
|
|
23861
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23862
|
+
*/
|
|
23863
|
+
'templates'?: Array<FieldTemplateResponse>;
|
|
23815
23864
|
}
|
|
23816
23865
|
export declare const ScalarFieldSchemaResponseTypeEnum: {
|
|
23817
23866
|
readonly STRING: "string";
|