qovery-typescript-axios 1.1.971 → 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 CHANGED
@@ -3052,6 +3052,81 @@ export interface ArgocdManagedResource {
3052
3052
  */
3053
3053
  'liveState'?: string;
3054
3054
  }
3055
+ /**
3056
+ *
3057
+ * @export
3058
+ * @interface ArrayFieldSchemaResponse
3059
+ */
3060
+ export interface ArrayFieldSchemaResponse {
3061
+ /**
3062
+ *
3063
+ * @type {string}
3064
+ * @memberof ArrayFieldSchemaResponse
3065
+ */
3066
+ 'key': string;
3067
+ /**
3068
+ *
3069
+ * @type {string}
3070
+ * @memberof ArrayFieldSchemaResponse
3071
+ */
3072
+ 'type': ArrayFieldSchemaResponseTypeEnum;
3073
+ /**
3074
+ *
3075
+ * @type {boolean}
3076
+ * @memberof ArrayFieldSchemaResponse
3077
+ */
3078
+ 'required': boolean;
3079
+ /**
3080
+ *
3081
+ * @type {string}
3082
+ * @memberof ArrayFieldSchemaResponse
3083
+ */
3084
+ 'label': string;
3085
+ /**
3086
+ *
3087
+ * @type {string}
3088
+ * @memberof ArrayFieldSchemaResponse
3089
+ */
3090
+ 'description'?: string | null;
3091
+ /**
3092
+ *
3093
+ * @type {boolean}
3094
+ * @memberof ArrayFieldSchemaResponse
3095
+ */
3096
+ 'sensitive': boolean;
3097
+ /**
3098
+ *
3099
+ * @type {CollectionConstraintsResponse}
3100
+ * @memberof ArrayFieldSchemaResponse
3101
+ */
3102
+ 'constraints': CollectionConstraintsResponse;
3103
+ /**
3104
+ *
3105
+ * @type {ArrayItemResponse}
3106
+ * @memberof ArrayFieldSchemaResponse
3107
+ */
3108
+ 'items': ArrayItemResponse;
3109
+ /**
3110
+ * Evaluated field descriptors for each object item, in the same order as the configuration array. Use these row-specific descriptors when available; items.fields describes an object\'s fields before per-item evaluation. Omitted when unavailable, including scalar arrays. An evaluated empty object array has an empty itemFields array.
3111
+ * @type {Array<Array<FieldSchemaResponse>>}
3112
+ * @memberof ArrayFieldSchemaResponse
3113
+ */
3114
+ 'itemFields'?: Array<Array<FieldSchemaResponse>>;
3115
+ }
3116
+
3117
+ export const ArrayFieldSchemaResponseTypeEnum = {
3118
+ ARRAY: 'array'
3119
+ } as const;
3120
+
3121
+ export type ArrayFieldSchemaResponseTypeEnum = typeof ArrayFieldSchemaResponseTypeEnum[keyof typeof ArrayFieldSchemaResponseTypeEnum];
3122
+
3123
+ /**
3124
+ * @type ArrayItemResponse
3125
+ * Descriptor for an array element. Elements are scalars or objects; an object\'s fields can themselves contain arrays.
3126
+ * @export
3127
+ */
3128
+ export type ArrayItemResponse = { type: 'bool' } & ScalarArrayItemResponse | { type: 'number' } & ScalarArrayItemResponse | { type: 'object' } & ObjectArrayItemResponse | { type: 'string' } & ScalarArrayItemResponse;
3129
+
3055
3130
  /**
3056
3131
  *
3057
3132
  * @export
@@ -9028,6 +9103,31 @@ export interface ClusterStatusResponseList {
9028
9103
  */
9029
9104
  'results'?: Array<ClusterStatus>;
9030
9105
  }
9106
+ /**
9107
+ *
9108
+ * @export
9109
+ * @interface CollectionConstraintsResponse
9110
+ */
9111
+ export interface CollectionConstraintsResponse {
9112
+ /**
9113
+ *
9114
+ * @type {number}
9115
+ * @memberof CollectionConstraintsResponse
9116
+ */
9117
+ 'minItems'?: number | null;
9118
+ /**
9119
+ *
9120
+ * @type {number}
9121
+ * @memberof CollectionConstraintsResponse
9122
+ */
9123
+ 'maxItems'?: number | null;
9124
+ /**
9125
+ *
9126
+ * @type {boolean}
9127
+ * @memberof CollectionConstraintsResponse
9128
+ */
9129
+ 'uniqueItems': boolean;
9130
+ }
9031
9131
  /**
9032
9132
  *
9033
9133
  * @export
@@ -14907,69 +15007,37 @@ export interface FieldSchemaConstraintsResponse {
14907
15007
  'pattern'?: string | null;
14908
15008
  }
14909
15009
  /**
14910
- * Canonical platform catalog field descriptor. Mirrors the q-core `FieldSchemaResponse` DTO.
15010
+ * @type FieldSchemaResponse
15011
+ * Generic catalog field descriptor matching the shared q-core field response. Scalar fields retain their existing shape; objects and arrays describe nested configuration without flattening its values. Blueprint keeps its existing BlueprintManifestVariableField response contract through a dedicated adapter.
14911
15012
  * @export
14912
- * @interface FieldSchemaResponse
14913
15013
  */
14914
- export interface FieldSchemaResponse {
14915
- /**
14916
- *
14917
- * @type {string}
14918
- * @memberof FieldSchemaResponse
14919
- */
14920
- 'key': string;
14921
- /**
14922
- * Field type understood by the Console.
14923
- * @type {string}
14924
- * @memberof FieldSchemaResponse
14925
- */
14926
- 'type': FieldSchemaResponseTypeEnum;
14927
- /**
14928
- *
14929
- * @type {boolean}
14930
- * @memberof FieldSchemaResponse
14931
- */
14932
- 'required': boolean;
15014
+ export type FieldSchemaResponse = { type: 'array' } & ArrayFieldSchemaResponse | { type: 'bool' } & ScalarFieldSchemaResponse | { type: 'number' } & ScalarFieldSchemaResponse | { type: 'object' } & ObjectFieldSchemaResponse | { type: 'string' } & ScalarFieldSchemaResponse;
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 {
14933
15022
  /**
14934
15023
  *
14935
15024
  * @type {string}
14936
- * @memberof FieldSchemaResponse
15025
+ * @memberof FieldTemplateResponse
14937
15026
  */
14938
- 'defaultValue'?: string | null;
15027
+ 'id': string;
14939
15028
  /**
14940
15029
  *
14941
15030
  * @type {string}
14942
- * @memberof FieldSchemaResponse
15031
+ * @memberof FieldTemplateResponse
14943
15032
  */
14944
15033
  'label': string;
14945
15034
  /**
14946
15035
  *
14947
15036
  * @type {string}
14948
- * @memberof FieldSchemaResponse
14949
- */
14950
- 'description'?: string | null;
14951
- /**
14952
- *
14953
- * @type {boolean}
14954
- * @memberof FieldSchemaResponse
14955
- */
14956
- 'sensitive': boolean;
14957
- /**
14958
- *
14959
- * @type {FieldSchemaConstraintsResponse}
14960
- * @memberof FieldSchemaResponse
15037
+ * @memberof FieldTemplateResponse
14961
15038
  */
14962
- 'constraints': FieldSchemaConstraintsResponse;
15039
+ 'value': string;
14963
15040
  }
14964
-
14965
- export const FieldSchemaResponseTypeEnum = {
14966
- STRING: 'string',
14967
- NUMBER: 'number',
14968
- BOOL: 'bool'
14969
- } as const;
14970
-
14971
- export type FieldSchemaResponseTypeEnum = typeof FieldSchemaResponseTypeEnum[keyof typeof FieldSchemaResponseTypeEnum];
14972
-
14973
15041
  /**
14974
15042
  * @type GcpCredentialsRequest
14975
15043
  * @export
@@ -20370,6 +20438,88 @@ export interface MetricsParameters {
20370
20438
  */
20371
20439
  export type MetricsParametersConfiguration = { kind: 'MANAGED_BY_QOVERY' } & MetricsConfigurationManagedByQovery;
20372
20440
 
20441
+ /**
20442
+ *
20443
+ * @export
20444
+ * @interface ObjectArrayItemResponse
20445
+ */
20446
+ export interface ObjectArrayItemResponse {
20447
+ /**
20448
+ *
20449
+ * @type {string}
20450
+ * @memberof ObjectArrayItemResponse
20451
+ */
20452
+ 'type': ObjectArrayItemResponseTypeEnum;
20453
+ /**
20454
+ *
20455
+ * @type {Array<FieldSchemaResponse>}
20456
+ * @memberof ObjectArrayItemResponse
20457
+ */
20458
+ 'fields': Array<FieldSchemaResponse>;
20459
+ }
20460
+
20461
+ export const ObjectArrayItemResponseTypeEnum = {
20462
+ OBJECT: 'object'
20463
+ } as const;
20464
+
20465
+ export type ObjectArrayItemResponseTypeEnum = typeof ObjectArrayItemResponseTypeEnum[keyof typeof ObjectArrayItemResponseTypeEnum];
20466
+
20467
+ /**
20468
+ *
20469
+ * @export
20470
+ * @interface ObjectFieldSchemaResponse
20471
+ */
20472
+ export interface ObjectFieldSchemaResponse {
20473
+ /**
20474
+ *
20475
+ * @type {string}
20476
+ * @memberof ObjectFieldSchemaResponse
20477
+ */
20478
+ 'key': string;
20479
+ /**
20480
+ *
20481
+ * @type {string}
20482
+ * @memberof ObjectFieldSchemaResponse
20483
+ */
20484
+ 'type': ObjectFieldSchemaResponseTypeEnum;
20485
+ /**
20486
+ *
20487
+ * @type {boolean}
20488
+ * @memberof ObjectFieldSchemaResponse
20489
+ */
20490
+ 'required': boolean;
20491
+ /**
20492
+ *
20493
+ * @type {string}
20494
+ * @memberof ObjectFieldSchemaResponse
20495
+ */
20496
+ 'label': string;
20497
+ /**
20498
+ *
20499
+ * @type {string}
20500
+ * @memberof ObjectFieldSchemaResponse
20501
+ */
20502
+ 'description'?: string | null;
20503
+ /**
20504
+ *
20505
+ * @type {boolean}
20506
+ * @memberof ObjectFieldSchemaResponse
20507
+ */
20508
+ 'sensitive': boolean;
20509
+ /**
20510
+ * Nested field descriptors for this object\'s properties.
20511
+ * @type {Array<FieldSchemaResponse>}
20512
+ * @memberof ObjectFieldSchemaResponse
20513
+ */
20514
+ 'fields': Array<FieldSchemaResponse>;
20515
+ }
20516
+
20517
+ export const ObjectFieldSchemaResponseTypeEnum = {
20518
+ OBJECT: 'object'
20519
+ } as const;
20520
+
20521
+ export type ObjectFieldSchemaResponseTypeEnum = typeof ObjectFieldSchemaResponseTypeEnum[keyof typeof ObjectFieldSchemaResponseTypeEnum];
20522
+
20373
20523
  /**
20374
20524
  *
20375
20525
  * @export
@@ -22820,7 +22970,7 @@ export interface PlatformComponentConfigurationViolationResponse {
22820
22970
  'message': string;
22821
22971
  }
22822
22972
  /**
22823
- * A catalog field the cluster must provide for the selected configuration: the shared field descriptor extended with its resolution scope and readiness.
22973
+ * A catalog field the cluster must provide for the selected configuration: the scalar field descriptor extended with its resolution scope and readiness. Input requirements cannot be object or array descriptors.
22824
22974
  * @export
22825
22975
  * @interface PlatformComponentInputRequirementResponse
22826
22976
  */
@@ -22873,6 +23023,18 @@ export interface PlatformComponentInputRequirementResponse {
22873
23023
  * @memberof PlatformComponentInputRequirementResponse
22874
23024
  */
22875
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>;
22876
23038
  /**
22877
23039
  *
22878
23040
  * @type {PlatformComponentConfigurationInputScope}
@@ -24345,6 +24507,110 @@ export const Route53StaticCredentialsResponseTypeEnum = {
24345
24507
 
24346
24508
  export type Route53StaticCredentialsResponseTypeEnum = typeof Route53StaticCredentialsResponseTypeEnum[keyof typeof Route53StaticCredentialsResponseTypeEnum];
24347
24509
 
24510
+ /**
24511
+ *
24512
+ * @export
24513
+ * @interface ScalarArrayItemResponse
24514
+ */
24515
+ export interface ScalarArrayItemResponse {
24516
+ /**
24517
+ *
24518
+ * @type {string}
24519
+ * @memberof ScalarArrayItemResponse
24520
+ */
24521
+ 'type': ScalarArrayItemResponseTypeEnum;
24522
+ /**
24523
+ *
24524
+ * @type {FieldSchemaConstraintsResponse}
24525
+ * @memberof ScalarArrayItemResponse
24526
+ */
24527
+ 'constraints': FieldSchemaConstraintsResponse;
24528
+ }
24529
+
24530
+ export const ScalarArrayItemResponseTypeEnum = {
24531
+ STRING: 'string',
24532
+ NUMBER: 'number',
24533
+ BOOL: 'bool'
24534
+ } as const;
24535
+
24536
+ export type ScalarArrayItemResponseTypeEnum = typeof ScalarArrayItemResponseTypeEnum[keyof typeof ScalarArrayItemResponseTypeEnum];
24537
+
24538
+ /**
24539
+ * Scalar catalog field descriptor, also used for platform cluster input requirements. FieldSchemaResponse is the union of scalar, object and array descriptors.
24540
+ * @export
24541
+ * @interface ScalarFieldSchemaResponse
24542
+ */
24543
+ export interface ScalarFieldSchemaResponse {
24544
+ /**
24545
+ *
24546
+ * @type {string}
24547
+ * @memberof ScalarFieldSchemaResponse
24548
+ */
24549
+ 'key': string;
24550
+ /**
24551
+ * Field type understood by the Console.
24552
+ * @type {string}
24553
+ * @memberof ScalarFieldSchemaResponse
24554
+ */
24555
+ 'type': ScalarFieldSchemaResponseTypeEnum;
24556
+ /**
24557
+ *
24558
+ * @type {boolean}
24559
+ * @memberof ScalarFieldSchemaResponse
24560
+ */
24561
+ 'required': boolean;
24562
+ /**
24563
+ *
24564
+ * @type {string}
24565
+ * @memberof ScalarFieldSchemaResponse
24566
+ */
24567
+ 'defaultValue'?: string | null;
24568
+ /**
24569
+ *
24570
+ * @type {string}
24571
+ * @memberof ScalarFieldSchemaResponse
24572
+ */
24573
+ 'label': string;
24574
+ /**
24575
+ *
24576
+ * @type {string}
24577
+ * @memberof ScalarFieldSchemaResponse
24578
+ */
24579
+ 'description'?: string | null;
24580
+ /**
24581
+ *
24582
+ * @type {boolean}
24583
+ * @memberof ScalarFieldSchemaResponse
24584
+ */
24585
+ 'sensitive': boolean;
24586
+ /**
24587
+ *
24588
+ * @type {FieldSchemaConstraintsResponse}
24589
+ * @memberof ScalarFieldSchemaResponse
24590
+ */
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>;
24604
+ }
24605
+
24606
+ export const ScalarFieldSchemaResponseTypeEnum = {
24607
+ STRING: 'string',
24608
+ NUMBER: 'number',
24609
+ BOOL: 'bool'
24610
+ } as const;
24611
+
24612
+ export type ScalarFieldSchemaResponseTypeEnum = typeof ScalarFieldSchemaResponseTypeEnum[keyof typeof ScalarFieldSchemaResponseTypeEnum];
24613
+
24348
24614
  /**
24349
24615
  *
24350
24616
  * @export