qovery-typescript-axios 1.1.925 → 1.1.926

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.
Files changed (4) hide show
  1. package/api.ts +120 -114
  2. package/dist/api.d.ts +120 -114
  3. package/dist/esm/api.d.ts +120 -114
  4. package/package.json +1 -1
package/api.ts CHANGED
@@ -13697,6 +13697,104 @@ export interface ExternalSecretAssociatedServiceResponseList {
13697
13697
  */
13698
13698
  'results': Array<ExternalSecretAssociatedServiceResponse>;
13699
13699
  }
13700
+ /**
13701
+ * Validation constraints attached to a catalog field descriptor.
13702
+ * @export
13703
+ * @interface FieldSchemaConstraintsResponse
13704
+ */
13705
+ export interface FieldSchemaConstraintsResponse {
13706
+ /**
13707
+ *
13708
+ * @type {Array<string>}
13709
+ * @memberof FieldSchemaConstraintsResponse
13710
+ */
13711
+ 'allowedValues'?: Array<string> | null;
13712
+ /**
13713
+ *
13714
+ * @type {number}
13715
+ * @memberof FieldSchemaConstraintsResponse
13716
+ */
13717
+ 'min'?: number | null;
13718
+ /**
13719
+ *
13720
+ * @type {number}
13721
+ * @memberof FieldSchemaConstraintsResponse
13722
+ */
13723
+ 'max'?: number | null;
13724
+ /**
13725
+ *
13726
+ * @type {number}
13727
+ * @memberof FieldSchemaConstraintsResponse
13728
+ */
13729
+ 'minLength'?: number | null;
13730
+ /**
13731
+ *
13732
+ * @type {number}
13733
+ * @memberof FieldSchemaConstraintsResponse
13734
+ */
13735
+ 'maxLength'?: number | null;
13736
+ /**
13737
+ *
13738
+ * @type {string}
13739
+ * @memberof FieldSchemaConstraintsResponse
13740
+ */
13741
+ 'pattern'?: string | null;
13742
+ }
13743
+ /**
13744
+ * Canonical platform catalog field descriptor. Mirrors the q-core `FieldSchemaResponse` DTO.
13745
+ * @export
13746
+ * @interface FieldSchemaResponse
13747
+ */
13748
+ export interface FieldSchemaResponse {
13749
+ /**
13750
+ *
13751
+ * @type {string}
13752
+ * @memberof FieldSchemaResponse
13753
+ */
13754
+ 'key': string;
13755
+ /**
13756
+ * Field type understood by the Console, such as string, number, or bool
13757
+ * @type {string}
13758
+ * @memberof FieldSchemaResponse
13759
+ */
13760
+ 'type': string;
13761
+ /**
13762
+ *
13763
+ * @type {boolean}
13764
+ * @memberof FieldSchemaResponse
13765
+ */
13766
+ 'required': boolean;
13767
+ /**
13768
+ *
13769
+ * @type {string}
13770
+ * @memberof FieldSchemaResponse
13771
+ */
13772
+ 'defaultValue'?: string | null;
13773
+ /**
13774
+ *
13775
+ * @type {string}
13776
+ * @memberof FieldSchemaResponse
13777
+ */
13778
+ 'label': string;
13779
+ /**
13780
+ *
13781
+ * @type {string}
13782
+ * @memberof FieldSchemaResponse
13783
+ */
13784
+ 'description'?: string | null;
13785
+ /**
13786
+ *
13787
+ * @type {boolean}
13788
+ * @memberof FieldSchemaResponse
13789
+ */
13790
+ 'sensitive': boolean;
13791
+ /**
13792
+ *
13793
+ * @type {FieldSchemaConstraintsResponse}
13794
+ * @memberof FieldSchemaResponse
13795
+ */
13796
+ 'constraints': FieldSchemaConstraintsResponse;
13797
+ }
13700
13798
  /**
13701
13799
  * @type GcpCredentialsRequest
13702
13800
  * @export
@@ -21026,104 +21124,6 @@ export const PlatformClusterMode = {
21026
21124
  export type PlatformClusterMode = typeof PlatformClusterMode[keyof typeof PlatformClusterMode];
21027
21125
 
21028
21126
 
21029
- /**
21030
- *
21031
- * @export
21032
- * @interface PlatformComponentConfigurationConstraintsResponse
21033
- */
21034
- export interface PlatformComponentConfigurationConstraintsResponse {
21035
- /**
21036
- *
21037
- * @type {Array<string>}
21038
- * @memberof PlatformComponentConfigurationConstraintsResponse
21039
- */
21040
- 'allowedValues'?: Array<string> | null;
21041
- /**
21042
- *
21043
- * @type {number}
21044
- * @memberof PlatformComponentConfigurationConstraintsResponse
21045
- */
21046
- 'min'?: number | null;
21047
- /**
21048
- *
21049
- * @type {number}
21050
- * @memberof PlatformComponentConfigurationConstraintsResponse
21051
- */
21052
- 'max'?: number | null;
21053
- /**
21054
- *
21055
- * @type {number}
21056
- * @memberof PlatformComponentConfigurationConstraintsResponse
21057
- */
21058
- 'minLength'?: number | null;
21059
- /**
21060
- *
21061
- * @type {number}
21062
- * @memberof PlatformComponentConfigurationConstraintsResponse
21063
- */
21064
- 'maxLength'?: number | null;
21065
- /**
21066
- *
21067
- * @type {string}
21068
- * @memberof PlatformComponentConfigurationConstraintsResponse
21069
- */
21070
- 'pattern'?: string | null;
21071
- }
21072
- /**
21073
- *
21074
- * @export
21075
- * @interface PlatformComponentConfigurationFieldResponse
21076
- */
21077
- export interface PlatformComponentConfigurationFieldResponse {
21078
- /**
21079
- *
21080
- * @type {string}
21081
- * @memberof PlatformComponentConfigurationFieldResponse
21082
- */
21083
- 'key': string;
21084
- /**
21085
- * Field type understood by the Console, such as string, number, or bool
21086
- * @type {string}
21087
- * @memberof PlatformComponentConfigurationFieldResponse
21088
- */
21089
- 'type': string;
21090
- /**
21091
- *
21092
- * @type {boolean}
21093
- * @memberof PlatformComponentConfigurationFieldResponse
21094
- */
21095
- 'required': boolean;
21096
- /**
21097
- *
21098
- * @type {string}
21099
- * @memberof PlatformComponentConfigurationFieldResponse
21100
- */
21101
- 'defaultValue'?: string | null;
21102
- /**
21103
- *
21104
- * @type {string}
21105
- * @memberof PlatformComponentConfigurationFieldResponse
21106
- */
21107
- 'label': string;
21108
- /**
21109
- *
21110
- * @type {string}
21111
- * @memberof PlatformComponentConfigurationFieldResponse
21112
- */
21113
- 'description'?: string | null;
21114
- /**
21115
- *
21116
- * @type {boolean}
21117
- * @memberof PlatformComponentConfigurationFieldResponse
21118
- */
21119
- 'sensitive': boolean;
21120
- /**
21121
- *
21122
- * @type {PlatformComponentConfigurationConstraintsResponse}
21123
- * @memberof PlatformComponentConfigurationFieldResponse
21124
- */
21125
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
21126
- }
21127
21127
  /**
21128
21128
  *
21129
21129
  * @export
@@ -21183,10 +21183,10 @@ export interface PlatformComponentConfigurationPreviewResponse {
21183
21183
  'componentKey': string;
21184
21184
  /**
21185
21185
  *
21186
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
21186
+ * @type {Array<FieldSchemaResponse>}
21187
21187
  * @memberof PlatformComponentConfigurationPreviewResponse
21188
21188
  */
21189
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
21189
+ 'fields': Array<FieldSchemaResponse>;
21190
21190
  /**
21191
21191
  *
21192
21192
  * @type {Array<PlatformComponentInputRequirementResponse>}
@@ -21227,26 +21227,26 @@ export type PlatformComponentConfigurationRequirementStatus = typeof PlatformCom
21227
21227
  */
21228
21228
  export interface PlatformComponentConfigurationViolationResponse {
21229
21229
  /**
21230
- *
21230
+ * Stable machine-readable violation code.
21231
21231
  * @type {string}
21232
21232
  * @memberof PlatformComponentConfigurationViolationResponse
21233
21233
  */
21234
21234
  'code': string;
21235
21235
  /**
21236
- *
21236
+ * Path of the offending field. Convention: profile configuration fields use the bare field key (e.g. `storage`); cluster-provided inputs are prefixed with `clusterInputs.` (e.g. `clusterInputs.s3BucketName`). Consumers match violations to form fields using these exact paths.
21237
21237
  * @type {string}
21238
21238
  * @memberof PlatformComponentConfigurationViolationResponse
21239
21239
  */
21240
21240
  'fieldPath': string;
21241
21241
  /**
21242
- *
21242
+ * Customer-facing message describing how to fix the violation.
21243
21243
  * @type {string}
21244
21244
  * @memberof PlatformComponentConfigurationViolationResponse
21245
21245
  */
21246
21246
  'message': string;
21247
21247
  }
21248
21248
  /**
21249
- *
21249
+ * A catalog field the cluster must provide for the selected configuration: the shared field descriptor extended with its resolution scope and readiness.
21250
21250
  * @export
21251
21251
  * @interface PlatformComponentInputRequirementResponse
21252
21252
  */
@@ -21258,17 +21258,23 @@ export interface PlatformComponentInputRequirementResponse {
21258
21258
  */
21259
21259
  'key': string;
21260
21260
  /**
21261
- *
21261
+ * Field type understood by the Console, such as string, number, or bool
21262
21262
  * @type {string}
21263
21263
  * @memberof PlatformComponentInputRequirementResponse
21264
21264
  */
21265
21265
  'type': string;
21266
21266
  /**
21267
21267
  *
21268
- * @type {PlatformComponentConfigurationInputScope}
21268
+ * @type {boolean}
21269
21269
  * @memberof PlatformComponentInputRequirementResponse
21270
21270
  */
21271
- 'scope': PlatformComponentConfigurationInputScope;
21271
+ 'required': boolean;
21272
+ /**
21273
+ *
21274
+ * @type {string}
21275
+ * @memberof PlatformComponentInputRequirementResponse
21276
+ */
21277
+ 'defaultValue'?: string | null;
21272
21278
  /**
21273
21279
  *
21274
21280
  * @type {string}
@@ -21286,19 +21292,19 @@ export interface PlatformComponentInputRequirementResponse {
21286
21292
  * @type {boolean}
21287
21293
  * @memberof PlatformComponentInputRequirementResponse
21288
21294
  */
21289
- 'required': boolean;
21295
+ 'sensitive': boolean;
21290
21296
  /**
21291
21297
  *
21292
- * @type {boolean}
21298
+ * @type {FieldSchemaConstraintsResponse}
21293
21299
  * @memberof PlatformComponentInputRequirementResponse
21294
21300
  */
21295
- 'sensitive': boolean;
21301
+ 'constraints': FieldSchemaConstraintsResponse;
21296
21302
  /**
21297
21303
  *
21298
- * @type {PlatformComponentConfigurationConstraintsResponse}
21304
+ * @type {PlatformComponentConfigurationInputScope}
21299
21305
  * @memberof PlatformComponentInputRequirementResponse
21300
21306
  */
21301
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
21307
+ 'scope': PlatformComponentConfigurationInputScope;
21302
21308
  /**
21303
21309
  *
21304
21310
  * @type {PlatformComponentConfigurationRequirementStatus}
@@ -21401,10 +21407,10 @@ export interface PlatformTemplateComponentResponse {
21401
21407
  'description'?: string | null;
21402
21408
  /**
21403
21409
  *
21404
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
21410
+ * @type {Array<FieldSchemaResponse>}
21405
21411
  * @memberof PlatformTemplateComponentResponse
21406
21412
  */
21407
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
21413
+ 'fields': Array<FieldSchemaResponse>;
21408
21414
  }
21409
21415
 
21410
21416
 
package/dist/api.d.ts CHANGED
@@ -13309,6 +13309,104 @@ export interface ExternalSecretAssociatedServiceResponseList {
13309
13309
  */
13310
13310
  'results': Array<ExternalSecretAssociatedServiceResponse>;
13311
13311
  }
13312
+ /**
13313
+ * Validation constraints attached to a catalog field descriptor.
13314
+ * @export
13315
+ * @interface FieldSchemaConstraintsResponse
13316
+ */
13317
+ export interface FieldSchemaConstraintsResponse {
13318
+ /**
13319
+ *
13320
+ * @type {Array<string>}
13321
+ * @memberof FieldSchemaConstraintsResponse
13322
+ */
13323
+ 'allowedValues'?: Array<string> | null;
13324
+ /**
13325
+ *
13326
+ * @type {number}
13327
+ * @memberof FieldSchemaConstraintsResponse
13328
+ */
13329
+ 'min'?: number | null;
13330
+ /**
13331
+ *
13332
+ * @type {number}
13333
+ * @memberof FieldSchemaConstraintsResponse
13334
+ */
13335
+ 'max'?: number | null;
13336
+ /**
13337
+ *
13338
+ * @type {number}
13339
+ * @memberof FieldSchemaConstraintsResponse
13340
+ */
13341
+ 'minLength'?: number | null;
13342
+ /**
13343
+ *
13344
+ * @type {number}
13345
+ * @memberof FieldSchemaConstraintsResponse
13346
+ */
13347
+ 'maxLength'?: number | null;
13348
+ /**
13349
+ *
13350
+ * @type {string}
13351
+ * @memberof FieldSchemaConstraintsResponse
13352
+ */
13353
+ 'pattern'?: string | null;
13354
+ }
13355
+ /**
13356
+ * Canonical platform catalog field descriptor. Mirrors the q-core `FieldSchemaResponse` DTO.
13357
+ * @export
13358
+ * @interface FieldSchemaResponse
13359
+ */
13360
+ export interface FieldSchemaResponse {
13361
+ /**
13362
+ *
13363
+ * @type {string}
13364
+ * @memberof FieldSchemaResponse
13365
+ */
13366
+ 'key': string;
13367
+ /**
13368
+ * Field type understood by the Console, such as string, number, or bool
13369
+ * @type {string}
13370
+ * @memberof FieldSchemaResponse
13371
+ */
13372
+ 'type': string;
13373
+ /**
13374
+ *
13375
+ * @type {boolean}
13376
+ * @memberof FieldSchemaResponse
13377
+ */
13378
+ 'required': boolean;
13379
+ /**
13380
+ *
13381
+ * @type {string}
13382
+ * @memberof FieldSchemaResponse
13383
+ */
13384
+ 'defaultValue'?: string | null;
13385
+ /**
13386
+ *
13387
+ * @type {string}
13388
+ * @memberof FieldSchemaResponse
13389
+ */
13390
+ 'label': string;
13391
+ /**
13392
+ *
13393
+ * @type {string}
13394
+ * @memberof FieldSchemaResponse
13395
+ */
13396
+ 'description'?: string | null;
13397
+ /**
13398
+ *
13399
+ * @type {boolean}
13400
+ * @memberof FieldSchemaResponse
13401
+ */
13402
+ 'sensitive': boolean;
13403
+ /**
13404
+ *
13405
+ * @type {FieldSchemaConstraintsResponse}
13406
+ * @memberof FieldSchemaResponse
13407
+ */
13408
+ 'constraints': FieldSchemaConstraintsResponse;
13409
+ }
13312
13410
  /**
13313
13411
  * @type GcpCredentialsRequest
13314
13412
  * @export
@@ -20389,104 +20487,6 @@ export declare const PlatformClusterMode: {
20389
20487
  readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
20390
20488
  };
20391
20489
  export type PlatformClusterMode = typeof PlatformClusterMode[keyof typeof PlatformClusterMode];
20392
- /**
20393
- *
20394
- * @export
20395
- * @interface PlatformComponentConfigurationConstraintsResponse
20396
- */
20397
- export interface PlatformComponentConfigurationConstraintsResponse {
20398
- /**
20399
- *
20400
- * @type {Array<string>}
20401
- * @memberof PlatformComponentConfigurationConstraintsResponse
20402
- */
20403
- 'allowedValues'?: Array<string> | null;
20404
- /**
20405
- *
20406
- * @type {number}
20407
- * @memberof PlatformComponentConfigurationConstraintsResponse
20408
- */
20409
- 'min'?: number | null;
20410
- /**
20411
- *
20412
- * @type {number}
20413
- * @memberof PlatformComponentConfigurationConstraintsResponse
20414
- */
20415
- 'max'?: number | null;
20416
- /**
20417
- *
20418
- * @type {number}
20419
- * @memberof PlatformComponentConfigurationConstraintsResponse
20420
- */
20421
- 'minLength'?: number | null;
20422
- /**
20423
- *
20424
- * @type {number}
20425
- * @memberof PlatformComponentConfigurationConstraintsResponse
20426
- */
20427
- 'maxLength'?: number | null;
20428
- /**
20429
- *
20430
- * @type {string}
20431
- * @memberof PlatformComponentConfigurationConstraintsResponse
20432
- */
20433
- 'pattern'?: string | null;
20434
- }
20435
- /**
20436
- *
20437
- * @export
20438
- * @interface PlatformComponentConfigurationFieldResponse
20439
- */
20440
- export interface PlatformComponentConfigurationFieldResponse {
20441
- /**
20442
- *
20443
- * @type {string}
20444
- * @memberof PlatformComponentConfigurationFieldResponse
20445
- */
20446
- 'key': string;
20447
- /**
20448
- * Field type understood by the Console, such as string, number, or bool
20449
- * @type {string}
20450
- * @memberof PlatformComponentConfigurationFieldResponse
20451
- */
20452
- 'type': string;
20453
- /**
20454
- *
20455
- * @type {boolean}
20456
- * @memberof PlatformComponentConfigurationFieldResponse
20457
- */
20458
- 'required': boolean;
20459
- /**
20460
- *
20461
- * @type {string}
20462
- * @memberof PlatformComponentConfigurationFieldResponse
20463
- */
20464
- 'defaultValue'?: string | null;
20465
- /**
20466
- *
20467
- * @type {string}
20468
- * @memberof PlatformComponentConfigurationFieldResponse
20469
- */
20470
- 'label': string;
20471
- /**
20472
- *
20473
- * @type {string}
20474
- * @memberof PlatformComponentConfigurationFieldResponse
20475
- */
20476
- 'description'?: string | null;
20477
- /**
20478
- *
20479
- * @type {boolean}
20480
- * @memberof PlatformComponentConfigurationFieldResponse
20481
- */
20482
- 'sensitive': boolean;
20483
- /**
20484
- *
20485
- * @type {PlatformComponentConfigurationConstraintsResponse}
20486
- * @memberof PlatformComponentConfigurationFieldResponse
20487
- */
20488
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
20489
- }
20490
20490
  /**
20491
20491
  *
20492
20492
  * @export
@@ -20550,10 +20550,10 @@ export interface PlatformComponentConfigurationPreviewResponse {
20550
20550
  'componentKey': string;
20551
20551
  /**
20552
20552
  *
20553
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
20553
+ * @type {Array<FieldSchemaResponse>}
20554
20554
  * @memberof PlatformComponentConfigurationPreviewResponse
20555
20555
  */
20556
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
20556
+ 'fields': Array<FieldSchemaResponse>;
20557
20557
  /**
20558
20558
  *
20559
20559
  * @type {Array<PlatformComponentInputRequirementResponse>}
@@ -20590,26 +20590,26 @@ export type PlatformComponentConfigurationRequirementStatus = typeof PlatformCom
20590
20590
  */
20591
20591
  export interface PlatformComponentConfigurationViolationResponse {
20592
20592
  /**
20593
- *
20593
+ * Stable machine-readable violation code.
20594
20594
  * @type {string}
20595
20595
  * @memberof PlatformComponentConfigurationViolationResponse
20596
20596
  */
20597
20597
  'code': string;
20598
20598
  /**
20599
- *
20599
+ * Path of the offending field. Convention: profile configuration fields use the bare field key (e.g. `storage`); cluster-provided inputs are prefixed with `clusterInputs.` (e.g. `clusterInputs.s3BucketName`). Consumers match violations to form fields using these exact paths.
20600
20600
  * @type {string}
20601
20601
  * @memberof PlatformComponentConfigurationViolationResponse
20602
20602
  */
20603
20603
  'fieldPath': string;
20604
20604
  /**
20605
- *
20605
+ * Customer-facing message describing how to fix the violation.
20606
20606
  * @type {string}
20607
20607
  * @memberof PlatformComponentConfigurationViolationResponse
20608
20608
  */
20609
20609
  'message': string;
20610
20610
  }
20611
20611
  /**
20612
- *
20612
+ * A catalog field the cluster must provide for the selected configuration: the shared field descriptor extended with its resolution scope and readiness.
20613
20613
  * @export
20614
20614
  * @interface PlatformComponentInputRequirementResponse
20615
20615
  */
@@ -20621,17 +20621,23 @@ export interface PlatformComponentInputRequirementResponse {
20621
20621
  */
20622
20622
  'key': string;
20623
20623
  /**
20624
- *
20624
+ * Field type understood by the Console, such as string, number, or bool
20625
20625
  * @type {string}
20626
20626
  * @memberof PlatformComponentInputRequirementResponse
20627
20627
  */
20628
20628
  'type': string;
20629
20629
  /**
20630
20630
  *
20631
- * @type {PlatformComponentConfigurationInputScope}
20631
+ * @type {boolean}
20632
20632
  * @memberof PlatformComponentInputRequirementResponse
20633
20633
  */
20634
- 'scope': PlatformComponentConfigurationInputScope;
20634
+ 'required': boolean;
20635
+ /**
20636
+ *
20637
+ * @type {string}
20638
+ * @memberof PlatformComponentInputRequirementResponse
20639
+ */
20640
+ 'defaultValue'?: string | null;
20635
20641
  /**
20636
20642
  *
20637
20643
  * @type {string}
@@ -20649,19 +20655,19 @@ export interface PlatformComponentInputRequirementResponse {
20649
20655
  * @type {boolean}
20650
20656
  * @memberof PlatformComponentInputRequirementResponse
20651
20657
  */
20652
- 'required': boolean;
20658
+ 'sensitive': boolean;
20653
20659
  /**
20654
20660
  *
20655
- * @type {boolean}
20661
+ * @type {FieldSchemaConstraintsResponse}
20656
20662
  * @memberof PlatformComponentInputRequirementResponse
20657
20663
  */
20658
- 'sensitive': boolean;
20664
+ 'constraints': FieldSchemaConstraintsResponse;
20659
20665
  /**
20660
20666
  *
20661
- * @type {PlatformComponentConfigurationConstraintsResponse}
20667
+ * @type {PlatformComponentConfigurationInputScope}
20662
20668
  * @memberof PlatformComponentInputRequirementResponse
20663
20669
  */
20664
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
20670
+ 'scope': PlatformComponentConfigurationInputScope;
20665
20671
  /**
20666
20672
  *
20667
20673
  * @type {PlatformComponentConfigurationRequirementStatus}
@@ -20754,10 +20760,10 @@ export interface PlatformTemplateComponentResponse {
20754
20760
  'description'?: string | null;
20755
20761
  /**
20756
20762
  *
20757
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
20763
+ * @type {Array<FieldSchemaResponse>}
20758
20764
  * @memberof PlatformTemplateComponentResponse
20759
20765
  */
20760
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
20766
+ 'fields': Array<FieldSchemaResponse>;
20761
20767
  }
20762
20768
  /**
20763
20769
  *
package/dist/esm/api.d.ts CHANGED
@@ -13309,6 +13309,104 @@ export interface ExternalSecretAssociatedServiceResponseList {
13309
13309
  */
13310
13310
  'results': Array<ExternalSecretAssociatedServiceResponse>;
13311
13311
  }
13312
+ /**
13313
+ * Validation constraints attached to a catalog field descriptor.
13314
+ * @export
13315
+ * @interface FieldSchemaConstraintsResponse
13316
+ */
13317
+ export interface FieldSchemaConstraintsResponse {
13318
+ /**
13319
+ *
13320
+ * @type {Array<string>}
13321
+ * @memberof FieldSchemaConstraintsResponse
13322
+ */
13323
+ 'allowedValues'?: Array<string> | null;
13324
+ /**
13325
+ *
13326
+ * @type {number}
13327
+ * @memberof FieldSchemaConstraintsResponse
13328
+ */
13329
+ 'min'?: number | null;
13330
+ /**
13331
+ *
13332
+ * @type {number}
13333
+ * @memberof FieldSchemaConstraintsResponse
13334
+ */
13335
+ 'max'?: number | null;
13336
+ /**
13337
+ *
13338
+ * @type {number}
13339
+ * @memberof FieldSchemaConstraintsResponse
13340
+ */
13341
+ 'minLength'?: number | null;
13342
+ /**
13343
+ *
13344
+ * @type {number}
13345
+ * @memberof FieldSchemaConstraintsResponse
13346
+ */
13347
+ 'maxLength'?: number | null;
13348
+ /**
13349
+ *
13350
+ * @type {string}
13351
+ * @memberof FieldSchemaConstraintsResponse
13352
+ */
13353
+ 'pattern'?: string | null;
13354
+ }
13355
+ /**
13356
+ * Canonical platform catalog field descriptor. Mirrors the q-core `FieldSchemaResponse` DTO.
13357
+ * @export
13358
+ * @interface FieldSchemaResponse
13359
+ */
13360
+ export interface FieldSchemaResponse {
13361
+ /**
13362
+ *
13363
+ * @type {string}
13364
+ * @memberof FieldSchemaResponse
13365
+ */
13366
+ 'key': string;
13367
+ /**
13368
+ * Field type understood by the Console, such as string, number, or bool
13369
+ * @type {string}
13370
+ * @memberof FieldSchemaResponse
13371
+ */
13372
+ 'type': string;
13373
+ /**
13374
+ *
13375
+ * @type {boolean}
13376
+ * @memberof FieldSchemaResponse
13377
+ */
13378
+ 'required': boolean;
13379
+ /**
13380
+ *
13381
+ * @type {string}
13382
+ * @memberof FieldSchemaResponse
13383
+ */
13384
+ 'defaultValue'?: string | null;
13385
+ /**
13386
+ *
13387
+ * @type {string}
13388
+ * @memberof FieldSchemaResponse
13389
+ */
13390
+ 'label': string;
13391
+ /**
13392
+ *
13393
+ * @type {string}
13394
+ * @memberof FieldSchemaResponse
13395
+ */
13396
+ 'description'?: string | null;
13397
+ /**
13398
+ *
13399
+ * @type {boolean}
13400
+ * @memberof FieldSchemaResponse
13401
+ */
13402
+ 'sensitive': boolean;
13403
+ /**
13404
+ *
13405
+ * @type {FieldSchemaConstraintsResponse}
13406
+ * @memberof FieldSchemaResponse
13407
+ */
13408
+ 'constraints': FieldSchemaConstraintsResponse;
13409
+ }
13312
13410
  /**
13313
13411
  * @type GcpCredentialsRequest
13314
13412
  * @export
@@ -20389,104 +20487,6 @@ export declare const PlatformClusterMode: {
20389
20487
  readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
20390
20488
  };
20391
20489
  export type PlatformClusterMode = typeof PlatformClusterMode[keyof typeof PlatformClusterMode];
20392
- /**
20393
- *
20394
- * @export
20395
- * @interface PlatformComponentConfigurationConstraintsResponse
20396
- */
20397
- export interface PlatformComponentConfigurationConstraintsResponse {
20398
- /**
20399
- *
20400
- * @type {Array<string>}
20401
- * @memberof PlatformComponentConfigurationConstraintsResponse
20402
- */
20403
- 'allowedValues'?: Array<string> | null;
20404
- /**
20405
- *
20406
- * @type {number}
20407
- * @memberof PlatformComponentConfigurationConstraintsResponse
20408
- */
20409
- 'min'?: number | null;
20410
- /**
20411
- *
20412
- * @type {number}
20413
- * @memberof PlatformComponentConfigurationConstraintsResponse
20414
- */
20415
- 'max'?: number | null;
20416
- /**
20417
- *
20418
- * @type {number}
20419
- * @memberof PlatformComponentConfigurationConstraintsResponse
20420
- */
20421
- 'minLength'?: number | null;
20422
- /**
20423
- *
20424
- * @type {number}
20425
- * @memberof PlatformComponentConfigurationConstraintsResponse
20426
- */
20427
- 'maxLength'?: number | null;
20428
- /**
20429
- *
20430
- * @type {string}
20431
- * @memberof PlatformComponentConfigurationConstraintsResponse
20432
- */
20433
- 'pattern'?: string | null;
20434
- }
20435
- /**
20436
- *
20437
- * @export
20438
- * @interface PlatformComponentConfigurationFieldResponse
20439
- */
20440
- export interface PlatformComponentConfigurationFieldResponse {
20441
- /**
20442
- *
20443
- * @type {string}
20444
- * @memberof PlatformComponentConfigurationFieldResponse
20445
- */
20446
- 'key': string;
20447
- /**
20448
- * Field type understood by the Console, such as string, number, or bool
20449
- * @type {string}
20450
- * @memberof PlatformComponentConfigurationFieldResponse
20451
- */
20452
- 'type': string;
20453
- /**
20454
- *
20455
- * @type {boolean}
20456
- * @memberof PlatformComponentConfigurationFieldResponse
20457
- */
20458
- 'required': boolean;
20459
- /**
20460
- *
20461
- * @type {string}
20462
- * @memberof PlatformComponentConfigurationFieldResponse
20463
- */
20464
- 'defaultValue'?: string | null;
20465
- /**
20466
- *
20467
- * @type {string}
20468
- * @memberof PlatformComponentConfigurationFieldResponse
20469
- */
20470
- 'label': string;
20471
- /**
20472
- *
20473
- * @type {string}
20474
- * @memberof PlatformComponentConfigurationFieldResponse
20475
- */
20476
- 'description'?: string | null;
20477
- /**
20478
- *
20479
- * @type {boolean}
20480
- * @memberof PlatformComponentConfigurationFieldResponse
20481
- */
20482
- 'sensitive': boolean;
20483
- /**
20484
- *
20485
- * @type {PlatformComponentConfigurationConstraintsResponse}
20486
- * @memberof PlatformComponentConfigurationFieldResponse
20487
- */
20488
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
20489
- }
20490
20490
  /**
20491
20491
  *
20492
20492
  * @export
@@ -20550,10 +20550,10 @@ export interface PlatformComponentConfigurationPreviewResponse {
20550
20550
  'componentKey': string;
20551
20551
  /**
20552
20552
  *
20553
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
20553
+ * @type {Array<FieldSchemaResponse>}
20554
20554
  * @memberof PlatformComponentConfigurationPreviewResponse
20555
20555
  */
20556
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
20556
+ 'fields': Array<FieldSchemaResponse>;
20557
20557
  /**
20558
20558
  *
20559
20559
  * @type {Array<PlatformComponentInputRequirementResponse>}
@@ -20590,26 +20590,26 @@ export type PlatformComponentConfigurationRequirementStatus = typeof PlatformCom
20590
20590
  */
20591
20591
  export interface PlatformComponentConfigurationViolationResponse {
20592
20592
  /**
20593
- *
20593
+ * Stable machine-readable violation code.
20594
20594
  * @type {string}
20595
20595
  * @memberof PlatformComponentConfigurationViolationResponse
20596
20596
  */
20597
20597
  'code': string;
20598
20598
  /**
20599
- *
20599
+ * Path of the offending field. Convention: profile configuration fields use the bare field key (e.g. `storage`); cluster-provided inputs are prefixed with `clusterInputs.` (e.g. `clusterInputs.s3BucketName`). Consumers match violations to form fields using these exact paths.
20600
20600
  * @type {string}
20601
20601
  * @memberof PlatformComponentConfigurationViolationResponse
20602
20602
  */
20603
20603
  'fieldPath': string;
20604
20604
  /**
20605
- *
20605
+ * Customer-facing message describing how to fix the violation.
20606
20606
  * @type {string}
20607
20607
  * @memberof PlatformComponentConfigurationViolationResponse
20608
20608
  */
20609
20609
  'message': string;
20610
20610
  }
20611
20611
  /**
20612
- *
20612
+ * A catalog field the cluster must provide for the selected configuration: the shared field descriptor extended with its resolution scope and readiness.
20613
20613
  * @export
20614
20614
  * @interface PlatformComponentInputRequirementResponse
20615
20615
  */
@@ -20621,17 +20621,23 @@ export interface PlatformComponentInputRequirementResponse {
20621
20621
  */
20622
20622
  'key': string;
20623
20623
  /**
20624
- *
20624
+ * Field type understood by the Console, such as string, number, or bool
20625
20625
  * @type {string}
20626
20626
  * @memberof PlatformComponentInputRequirementResponse
20627
20627
  */
20628
20628
  'type': string;
20629
20629
  /**
20630
20630
  *
20631
- * @type {PlatformComponentConfigurationInputScope}
20631
+ * @type {boolean}
20632
20632
  * @memberof PlatformComponentInputRequirementResponse
20633
20633
  */
20634
- 'scope': PlatformComponentConfigurationInputScope;
20634
+ 'required': boolean;
20635
+ /**
20636
+ *
20637
+ * @type {string}
20638
+ * @memberof PlatformComponentInputRequirementResponse
20639
+ */
20640
+ 'defaultValue'?: string | null;
20635
20641
  /**
20636
20642
  *
20637
20643
  * @type {string}
@@ -20649,19 +20655,19 @@ export interface PlatformComponentInputRequirementResponse {
20649
20655
  * @type {boolean}
20650
20656
  * @memberof PlatformComponentInputRequirementResponse
20651
20657
  */
20652
- 'required': boolean;
20658
+ 'sensitive': boolean;
20653
20659
  /**
20654
20660
  *
20655
- * @type {boolean}
20661
+ * @type {FieldSchemaConstraintsResponse}
20656
20662
  * @memberof PlatformComponentInputRequirementResponse
20657
20663
  */
20658
- 'sensitive': boolean;
20664
+ 'constraints': FieldSchemaConstraintsResponse;
20659
20665
  /**
20660
20666
  *
20661
- * @type {PlatformComponentConfigurationConstraintsResponse}
20667
+ * @type {PlatformComponentConfigurationInputScope}
20662
20668
  * @memberof PlatformComponentInputRequirementResponse
20663
20669
  */
20664
- 'constraints': PlatformComponentConfigurationConstraintsResponse;
20670
+ 'scope': PlatformComponentConfigurationInputScope;
20665
20671
  /**
20666
20672
  *
20667
20673
  * @type {PlatformComponentConfigurationRequirementStatus}
@@ -20754,10 +20760,10 @@ export interface PlatformTemplateComponentResponse {
20754
20760
  'description'?: string | null;
20755
20761
  /**
20756
20762
  *
20757
- * @type {Array<PlatformComponentConfigurationFieldResponse>}
20763
+ * @type {Array<FieldSchemaResponse>}
20758
20764
  * @memberof PlatformTemplateComponentResponse
20759
20765
  */
20760
- 'fields': Array<PlatformComponentConfigurationFieldResponse>;
20766
+ 'fields': Array<FieldSchemaResponse>;
20761
20767
  }
20762
20768
  /**
20763
20769
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.925",
3
+ "version": "v1.1.926",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {