@cloudfleet/sdk 0.0.1-5753ad1 → 0.0.1-5aba3bd
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/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +39 -8
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +4 -11
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +1 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +5 -7
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +397 -70
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +933 -149
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +37 -5
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +74 -127
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +406 -41
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +520 -561
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +313 -445
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -4
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
3
|
company: z.ZodOptional<z.ZodString>;
|
|
4
4
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -200,16 +200,22 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
200
200
|
pro: "pro";
|
|
201
201
|
}>;
|
|
202
202
|
region: z.ZodOptional<z.ZodEnum<{
|
|
203
|
-
staging: "staging";
|
|
203
|
+
"staging-1a": "staging-1a";
|
|
204
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
205
|
"europe-central-1a": "europe-central-1a";
|
|
206
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
207
|
}>>;
|
|
208
|
-
version_channel: z.
|
|
208
|
+
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
+
}>>;
|
|
209
214
|
}, z.core.$strip>;
|
|
210
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
211
216
|
certificate_authority: z.ZodString;
|
|
212
217
|
endpoint: z.ZodURL;
|
|
218
|
+
cluster_dns: z.ZodString;
|
|
213
219
|
auth_key: z.ZodString;
|
|
214
220
|
bootstrap_token: z.ZodString;
|
|
215
221
|
versions: z.ZodObject<{
|
|
@@ -231,12 +237,11 @@ export declare const zCluster: z.ZodObject<{
|
|
|
231
237
|
pro: "pro";
|
|
232
238
|
}>;
|
|
233
239
|
region: z.ZodOptional<z.ZodEnum<{
|
|
234
|
-
staging: "staging";
|
|
240
|
+
"staging-1a": "staging-1a";
|
|
235
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
236
242
|
"europe-central-1a": "europe-central-1a";
|
|
237
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
238
244
|
}>>;
|
|
239
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
240
245
|
id: z.ZodUUID;
|
|
241
246
|
status: z.ZodEnum<{
|
|
242
247
|
deleted: "deleted";
|
|
@@ -255,6 +260,7 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
260
|
created_at: z.ZodOptional<z.ZodString>;
|
|
256
261
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
257
262
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
263
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
258
264
|
}, z.core.$strip>;
|
|
259
265
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
260
266
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -325,7 +331,7 @@ export declare const zInvite: z.ZodObject<{
|
|
|
325
331
|
code: z.ZodOptional<z.ZodString>;
|
|
326
332
|
}, z.core.$strip>;
|
|
327
333
|
export declare const zInvoice: z.ZodObject<{
|
|
328
|
-
id: z.ZodOptional<z.
|
|
334
|
+
id: z.ZodOptional<z.ZodString>;
|
|
329
335
|
number: z.ZodOptional<z.ZodString>;
|
|
330
336
|
status: z.ZodOptional<z.ZodString>;
|
|
331
337
|
total: z.ZodOptional<z.ZodNumber>;
|
|
@@ -335,19 +341,30 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
335
341
|
period_end: z.ZodISODateTime;
|
|
336
342
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
337
343
|
}, z.core.$strip>;
|
|
344
|
+
export declare const zMarketplaceListingFiles: z.ZodObject<{
|
|
345
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
346
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
347
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
348
|
+
}, z.core.$strip>;
|
|
338
349
|
export declare const zMarketplaceListing: z.ZodObject<{
|
|
339
|
-
id: z.ZodString;
|
|
340
350
|
name: z.ZodString;
|
|
341
|
-
|
|
342
|
-
description: z.ZodString;
|
|
343
|
-
logoUrl: z.ZodString;
|
|
344
|
-
longDescription: z.ZodString;
|
|
345
|
-
categories: z.ZodArray<z.ZodString>;
|
|
351
|
+
versions: z.ZodArray<z.ZodString>;
|
|
346
352
|
version_channels: z.ZodArray<z.ZodString>;
|
|
347
|
-
|
|
353
|
+
latestVersion: z.ZodString;
|
|
354
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
355
|
+
name: z.ZodString;
|
|
348
356
|
version: z.ZodString;
|
|
349
|
-
|
|
350
|
-
|
|
357
|
+
description: z.ZodOptional<z.ZodString>;
|
|
358
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
359
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
360
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
361
|
+
home: z.ZodOptional<z.ZodString>;
|
|
362
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
363
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
364
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
365
|
+
name: z.ZodString;
|
|
366
|
+
email: z.ZodOptional<z.ZodString>;
|
|
367
|
+
}, z.core.$strip>>>;
|
|
351
368
|
}, z.core.$strip>>;
|
|
352
369
|
}, z.core.$strip>;
|
|
353
370
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
@@ -373,6 +390,9 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
373
390
|
id: z.ZodString;
|
|
374
391
|
label: z.ZodString;
|
|
375
392
|
}, z.core.$strip>>;
|
|
393
|
+
copilot_user_hourly_tokens: z.ZodInt;
|
|
394
|
+
copilot_organization_hourly_tokens: z.ZodInt;
|
|
395
|
+
cfcr_storage_gb: z.ZodInt;
|
|
376
396
|
}, z.core.$strip>;
|
|
377
397
|
status: z.ZodEnum<{
|
|
378
398
|
active: "active";
|
|
@@ -413,6 +433,55 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
413
433
|
id: z.ZodString;
|
|
414
434
|
label: z.ZodString;
|
|
415
435
|
}, z.core.$strip>>;
|
|
436
|
+
copilot_user_hourly_tokens: z.ZodInt;
|
|
437
|
+
copilot_organization_hourly_tokens: z.ZodInt;
|
|
438
|
+
cfcr_storage_gb: z.ZodInt;
|
|
439
|
+
}, z.core.$strip>;
|
|
440
|
+
export declare const zRegistryRepository: z.ZodObject<{
|
|
441
|
+
name: z.ZodString;
|
|
442
|
+
region: z.ZodString;
|
|
443
|
+
uri: z.ZodString;
|
|
444
|
+
}, z.core.$strip>;
|
|
445
|
+
export declare const zRegistryRepositoryWithTags: z.ZodObject<{
|
|
446
|
+
name: z.ZodString;
|
|
447
|
+
region: z.ZodString;
|
|
448
|
+
uri: z.ZodString;
|
|
449
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
450
|
+
name: z.ZodString;
|
|
451
|
+
size: z.ZodNumber;
|
|
452
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
453
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
454
|
+
}, z.core.$strip>>;
|
|
455
|
+
totalSize: z.ZodNumber;
|
|
456
|
+
}, z.core.$strip>;
|
|
457
|
+
export declare const zRegistryTag: z.ZodObject<{
|
|
458
|
+
name: z.ZodString;
|
|
459
|
+
digest: z.ZodString;
|
|
460
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
461
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
462
|
+
size: z.ZodNumber;
|
|
463
|
+
}, z.core.$strip>>;
|
|
464
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
466
|
+
size: z.ZodNumber;
|
|
467
|
+
}, z.core.$strip>>>;
|
|
468
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
469
|
+
digest: z.ZodString;
|
|
470
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
471
|
+
architecture: z.ZodString;
|
|
472
|
+
os: z.ZodString;
|
|
473
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
474
|
+
}, z.core.$strip>>;
|
|
475
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
476
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
477
|
+
size: z.ZodNumber;
|
|
478
|
+
}, z.core.$strip>>>;
|
|
479
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
480
|
+
}, z.core.$strip>>>;
|
|
481
|
+
size: z.ZodNumber;
|
|
482
|
+
region: z.ZodString;
|
|
483
|
+
repository: z.ZodString;
|
|
484
|
+
uri: z.ZodString;
|
|
416
485
|
}, z.core.$strip>;
|
|
417
486
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
418
487
|
name: z.ZodString;
|
|
@@ -507,16 +576,12 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
507
576
|
inactive: "inactive";
|
|
508
577
|
}>>;
|
|
509
578
|
}, z.core.$strip>;
|
|
510
|
-
export declare const
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
daily: "daily";
|
|
517
|
-
monthly: "monthly";
|
|
518
|
-
}>>;
|
|
519
|
-
}, z.core.$strip>>;
|
|
579
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
580
|
+
granularity: z.ZodOptional<z.ZodEnum<{
|
|
581
|
+
hourly: "hourly";
|
|
582
|
+
daily: "daily";
|
|
583
|
+
monthly: "monthly";
|
|
584
|
+
}>>;
|
|
520
585
|
}, z.core.$strip>;
|
|
521
586
|
/**
|
|
522
587
|
* Usage data with facets for filtering
|
|
@@ -535,11 +600,6 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
535
600
|
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
536
601
|
}, z.core.$strip>;
|
|
537
602
|
}, z.core.$strip>;
|
|
538
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
539
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
540
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
541
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
542
|
-
}, z.core.$strip>;
|
|
543
603
|
/**
|
|
544
604
|
* Redacted payment card information.
|
|
545
605
|
*/
|
|
@@ -564,11 +624,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
564
624
|
visa: "visa";
|
|
565
625
|
}>;
|
|
566
626
|
}, z.core.$strip>;
|
|
567
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
568
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
569
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
570
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
571
|
-
}, z.core.$strip>;
|
|
572
627
|
/**
|
|
573
628
|
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
574
629
|
*
|
|
@@ -576,16 +631,11 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
576
631
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
577
632
|
id: z.ZodOptional<z.ZodString>;
|
|
578
633
|
}, z.core.$strip>;
|
|
579
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
580
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
581
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
582
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
583
|
-
}, z.core.$strip>;
|
|
584
634
|
/**
|
|
585
635
|
* An array of usage records.
|
|
586
636
|
*/
|
|
587
637
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
588
|
-
id: z.ZodOptional<z.
|
|
638
|
+
id: z.ZodOptional<z.ZodString>;
|
|
589
639
|
number: z.ZodOptional<z.ZodString>;
|
|
590
640
|
status: z.ZodOptional<z.ZodString>;
|
|
591
641
|
total: z.ZodOptional<z.ZodNumber>;
|
|
@@ -595,11 +645,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
595
645
|
period_end: z.ZodISODateTime;
|
|
596
646
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
597
647
|
}, z.core.$strip>>;
|
|
598
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
599
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
600
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
601
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
602
|
-
}, z.core.$strip>;
|
|
603
648
|
/**
|
|
604
649
|
* Returns a single object containing organization contact and billing address details.
|
|
605
650
|
*/
|
|
@@ -746,152 +791,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
746
791
|
zw_tin: "zw_tin";
|
|
747
792
|
}>>;
|
|
748
793
|
}, z.core.$strip>;
|
|
749
|
-
export declare const
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
}>>;
|
|
892
|
-
}, z.core.$strip>;
|
|
893
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
894
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
794
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
795
|
+
company: z.ZodOptional<z.ZodString>;
|
|
796
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
797
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
798
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
799
|
+
city: z.ZodOptional<z.ZodString>;
|
|
800
|
+
state: z.ZodOptional<z.ZodString>;
|
|
801
|
+
country: z.ZodOptional<z.ZodString>;
|
|
802
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
803
|
+
email: z.ZodEmail;
|
|
804
|
+
individual_name: z.ZodString;
|
|
805
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
806
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
807
|
+
"": "";
|
|
808
|
+
ad_nrt: "ad_nrt";
|
|
809
|
+
ae_trn: "ae_trn";
|
|
810
|
+
al_tin: "al_tin";
|
|
811
|
+
am_tin: "am_tin";
|
|
812
|
+
ao_tin: "ao_tin";
|
|
813
|
+
ar_cuit: "ar_cuit";
|
|
814
|
+
at_vat: "at_vat";
|
|
815
|
+
au_abn: "au_abn";
|
|
816
|
+
au_arn: "au_arn";
|
|
817
|
+
ba_tin: "ba_tin";
|
|
818
|
+
bb_tin: "bb_tin";
|
|
819
|
+
be_vat: "be_vat";
|
|
820
|
+
bg_uic: "bg_uic";
|
|
821
|
+
bg_vat: "bg_vat";
|
|
822
|
+
bh_vat: "bh_vat";
|
|
823
|
+
bo_tin: "bo_tin";
|
|
824
|
+
br_cnpj: "br_cnpj";
|
|
825
|
+
br_cpf: "br_cpf";
|
|
826
|
+
bs_tin: "bs_tin";
|
|
827
|
+
by_tin: "by_tin";
|
|
828
|
+
ca_bn: "ca_bn";
|
|
829
|
+
ca_gst_hst: "ca_gst_hst";
|
|
830
|
+
ca_pst_bc: "ca_pst_bc";
|
|
831
|
+
ca_pst_mb: "ca_pst_mb";
|
|
832
|
+
ca_pst_sk: "ca_pst_sk";
|
|
833
|
+
ca_qst: "ca_qst";
|
|
834
|
+
cd_nif: "cd_nif";
|
|
835
|
+
ch_uid: "ch_uid";
|
|
836
|
+
ch_vat: "ch_vat";
|
|
837
|
+
cl_tin: "cl_tin";
|
|
838
|
+
cn_tin: "cn_tin";
|
|
839
|
+
co_nit: "co_nit";
|
|
840
|
+
cr_tin: "cr_tin";
|
|
841
|
+
cy_vat: "cy_vat";
|
|
842
|
+
cz_vat: "cz_vat";
|
|
843
|
+
de_stn: "de_stn";
|
|
844
|
+
de_vat: "de_vat";
|
|
845
|
+
dk_vat: "dk_vat";
|
|
846
|
+
do_rcn: "do_rcn";
|
|
847
|
+
ec_ruc: "ec_ruc";
|
|
848
|
+
ee_vat: "ee_vat";
|
|
849
|
+
eg_tin: "eg_tin";
|
|
850
|
+
es_cif: "es_cif";
|
|
851
|
+
es_vat: "es_vat";
|
|
852
|
+
eu_oss_vat: "eu_oss_vat";
|
|
853
|
+
fi_vat: "fi_vat";
|
|
854
|
+
fr_vat: "fr_vat";
|
|
855
|
+
gb_vat: "gb_vat";
|
|
856
|
+
ge_vat: "ge_vat";
|
|
857
|
+
gn_nif: "gn_nif";
|
|
858
|
+
gr_vat: "gr_vat";
|
|
859
|
+
hk_br: "hk_br";
|
|
860
|
+
hr_oib: "hr_oib";
|
|
861
|
+
hr_vat: "hr_vat";
|
|
862
|
+
hu_tin: "hu_tin";
|
|
863
|
+
hu_vat: "hu_vat";
|
|
864
|
+
id_npwp: "id_npwp";
|
|
865
|
+
ie_vat: "ie_vat";
|
|
866
|
+
il_vat: "il_vat";
|
|
867
|
+
in_gst: "in_gst";
|
|
868
|
+
is_vat: "is_vat";
|
|
869
|
+
it_vat: "it_vat";
|
|
870
|
+
jp_cn: "jp_cn";
|
|
871
|
+
jp_rn: "jp_rn";
|
|
872
|
+
jp_trn: "jp_trn";
|
|
873
|
+
ke_pin: "ke_pin";
|
|
874
|
+
kh_tin: "kh_tin";
|
|
875
|
+
kr_brn: "kr_brn";
|
|
876
|
+
kz_bin: "kz_bin";
|
|
877
|
+
li_uid: "li_uid";
|
|
878
|
+
li_vat: "li_vat";
|
|
879
|
+
lt_vat: "lt_vat";
|
|
880
|
+
lu_vat: "lu_vat";
|
|
881
|
+
lv_vat: "lv_vat";
|
|
882
|
+
ma_vat: "ma_vat";
|
|
883
|
+
md_vat: "md_vat";
|
|
884
|
+
me_pib: "me_pib";
|
|
885
|
+
mk_vat: "mk_vat";
|
|
886
|
+
mr_nif: "mr_nif";
|
|
887
|
+
mt_vat: "mt_vat";
|
|
888
|
+
mx_rfc: "mx_rfc";
|
|
889
|
+
my_frp: "my_frp";
|
|
890
|
+
my_itn: "my_itn";
|
|
891
|
+
my_sst: "my_sst";
|
|
892
|
+
ng_tin: "ng_tin";
|
|
893
|
+
nl_vat: "nl_vat";
|
|
894
|
+
no_vat: "no_vat";
|
|
895
|
+
no_voec: "no_voec";
|
|
896
|
+
np_pan: "np_pan";
|
|
897
|
+
nz_gst: "nz_gst";
|
|
898
|
+
om_vat: "om_vat";
|
|
899
|
+
pe_ruc: "pe_ruc";
|
|
900
|
+
ph_tin: "ph_tin";
|
|
901
|
+
pl_vat: "pl_vat";
|
|
902
|
+
pt_vat: "pt_vat";
|
|
903
|
+
ro_tin: "ro_tin";
|
|
904
|
+
ro_vat: "ro_vat";
|
|
905
|
+
rs_pib: "rs_pib";
|
|
906
|
+
ru_inn: "ru_inn";
|
|
907
|
+
ru_kpp: "ru_kpp";
|
|
908
|
+
sa_vat: "sa_vat";
|
|
909
|
+
se_vat: "se_vat";
|
|
910
|
+
sg_gst: "sg_gst";
|
|
911
|
+
sg_uen: "sg_uen";
|
|
912
|
+
si_tin: "si_tin";
|
|
913
|
+
si_vat: "si_vat";
|
|
914
|
+
sk_vat: "sk_vat";
|
|
915
|
+
sn_ninea: "sn_ninea";
|
|
916
|
+
sr_fin: "sr_fin";
|
|
917
|
+
sv_nit: "sv_nit";
|
|
918
|
+
th_vat: "th_vat";
|
|
919
|
+
tj_tin: "tj_tin";
|
|
920
|
+
tr_tin: "tr_tin";
|
|
921
|
+
tw_vat: "tw_vat";
|
|
922
|
+
tz_vat: "tz_vat";
|
|
923
|
+
ua_vat: "ua_vat";
|
|
924
|
+
ug_tin: "ug_tin";
|
|
925
|
+
us_ein: "us_ein";
|
|
926
|
+
uy_ruc: "uy_ruc";
|
|
927
|
+
uz_tin: "uz_tin";
|
|
928
|
+
uz_vat: "uz_vat";
|
|
929
|
+
ve_rif: "ve_rif";
|
|
930
|
+
vn_tin: "vn_tin";
|
|
931
|
+
xi_vat: "xi_vat";
|
|
932
|
+
za_vat: "za_vat";
|
|
933
|
+
zm_tin: "zm_tin";
|
|
934
|
+
zw_tin: "zw_tin";
|
|
935
|
+
}>>;
|
|
895
936
|
}, z.core.$strip>;
|
|
896
937
|
/**
|
|
897
938
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1039,11 +1080,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1039
1080
|
zw_tin: "zw_tin";
|
|
1040
1081
|
}>>;
|
|
1041
1082
|
}, z.core.$strip>;
|
|
1042
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1043
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1044
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1045
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1046
|
-
}, z.core.$strip>;
|
|
1047
1083
|
/**
|
|
1048
1084
|
* An array of the applied promotional credits records.
|
|
1049
1085
|
*/
|
|
@@ -1060,19 +1096,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1060
1096
|
value_total: z.ZodNumber;
|
|
1061
1097
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1062
1098
|
}, z.core.$strip>>;
|
|
1063
|
-
export declare const
|
|
1064
|
-
|
|
1065
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1066
|
-
}, z.core.$strip>;
|
|
1067
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1068
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1099
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1100
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1069
1101
|
}, z.core.$strip>;
|
|
1070
|
-
export declare const
|
|
1071
|
-
|
|
1072
|
-
path: z.ZodObject<{
|
|
1073
|
-
cluster_id: z.ZodString;
|
|
1074
|
-
}, z.core.$strip>;
|
|
1075
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1102
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1103
|
+
cluster_id: z.ZodString;
|
|
1076
1104
|
}, z.core.$strip>;
|
|
1077
1105
|
/**
|
|
1078
1106
|
* An array of charts
|
|
@@ -1104,42 +1132,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1104
1132
|
updated_at: z.ZodString;
|
|
1105
1133
|
ready: z.ZodBoolean;
|
|
1106
1134
|
}, z.core.$strip>>;
|
|
1107
|
-
export declare const
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
cluster_id: z.ZodString;
|
|
1117
|
-
}, z.core.$strip>;
|
|
1118
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1135
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1136
|
+
values: z.ZodString;
|
|
1137
|
+
version_channel: z.ZodString;
|
|
1138
|
+
name: z.ZodString;
|
|
1139
|
+
namespace: z.ZodString;
|
|
1140
|
+
chart: z.ZodString;
|
|
1141
|
+
}, z.core.$strip>;
|
|
1142
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1143
|
+
cluster_id: z.ZodString;
|
|
1119
1144
|
}, z.core.$strip>;
|
|
1120
1145
|
/**
|
|
1121
1146
|
* Successfully created. Returns created Chart ID.
|
|
1122
1147
|
*/
|
|
1123
1148
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1124
|
-
export declare const
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
cluster_id: z.ZodString;
|
|
1128
|
-
chart_name: z.ZodString;
|
|
1129
|
-
}, z.core.$strip>;
|
|
1130
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1149
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1150
|
+
cluster_id: z.ZodString;
|
|
1151
|
+
chart_name: z.ZodString;
|
|
1131
1152
|
}, z.core.$strip>;
|
|
1132
1153
|
/**
|
|
1133
1154
|
* Successfully deleted.
|
|
1134
1155
|
*/
|
|
1135
1156
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1136
|
-
export declare const
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
cluster_id: z.ZodString;
|
|
1140
|
-
chart_name: z.ZodString;
|
|
1141
|
-
}, z.core.$strip>;
|
|
1142
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1157
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1158
|
+
cluster_id: z.ZodString;
|
|
1159
|
+
chart_name: z.ZodString;
|
|
1143
1160
|
}, z.core.$strip>;
|
|
1144
1161
|
/**
|
|
1145
1162
|
* Returns a single object containing chart details.
|
|
@@ -1171,27 +1188,20 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1171
1188
|
updated_at: z.ZodString;
|
|
1172
1189
|
ready: z.ZodBoolean;
|
|
1173
1190
|
}, z.core.$strip>;
|
|
1174
|
-
export declare const
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
chart_name: z.ZodString;
|
|
1182
|
-
}, z.core.$strip>;
|
|
1183
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1191
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
1192
|
+
values: z.ZodString;
|
|
1193
|
+
version_channel: z.ZodString;
|
|
1194
|
+
}, z.core.$strip>;
|
|
1195
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1196
|
+
cluster_id: z.ZodString;
|
|
1197
|
+
chart_name: z.ZodString;
|
|
1184
1198
|
}, z.core.$strip>;
|
|
1185
1199
|
/**
|
|
1186
1200
|
* Successfully updated.
|
|
1187
1201
|
*/
|
|
1188
1202
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1189
|
-
export declare const
|
|
1190
|
-
|
|
1191
|
-
path: z.ZodObject<{
|
|
1192
|
-
cluster_id: z.ZodString;
|
|
1193
|
-
}, z.core.$strip>;
|
|
1194
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1203
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1204
|
+
cluster_id: z.ZodString;
|
|
1195
1205
|
}, z.core.$strip>;
|
|
1196
1206
|
/**
|
|
1197
1207
|
* An array of fleets
|
|
@@ -1214,53 +1224,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1214
1224
|
}, z.core.$strip>>;
|
|
1215
1225
|
id: z.ZodString;
|
|
1216
1226
|
}, z.core.$strip>>;
|
|
1217
|
-
export declare const
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
cluster_id: z.ZodString;
|
|
1238
|
-
}, z.core.$strip>;
|
|
1239
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1227
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1228
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1229
|
+
cpu: z.ZodNumber;
|
|
1230
|
+
}, z.core.$strip>>;
|
|
1231
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1232
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1233
|
+
project: z.ZodString;
|
|
1234
|
+
}, z.core.$strip>>;
|
|
1235
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1237
|
+
apiKey: z.ZodString;
|
|
1238
|
+
}, z.core.$strip>>;
|
|
1239
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1241
|
+
controllerRoleArn: z.ZodString;
|
|
1242
|
+
}, z.core.$strip>>;
|
|
1243
|
+
id: z.ZodString;
|
|
1244
|
+
}, z.core.$strip>;
|
|
1245
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
1246
|
+
cluster_id: z.ZodString;
|
|
1240
1247
|
}, z.core.$strip>;
|
|
1241
1248
|
/**
|
|
1242
1249
|
* Successfully created. Returns created Fleet ID.
|
|
1243
1250
|
*/
|
|
1244
1251
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1245
|
-
export declare const
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
cluster_id: z.ZodString;
|
|
1249
|
-
fleet_name: z.ZodString;
|
|
1250
|
-
}, z.core.$strip>;
|
|
1251
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1252
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1253
|
+
cluster_id: z.ZodString;
|
|
1254
|
+
fleet_name: z.ZodString;
|
|
1252
1255
|
}, z.core.$strip>;
|
|
1253
1256
|
/**
|
|
1254
1257
|
* Successfully deleted.
|
|
1255
1258
|
*/
|
|
1256
1259
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1257
|
-
export declare const
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
cluster_id: z.ZodString;
|
|
1261
|
-
fleet_name: z.ZodString;
|
|
1262
|
-
}, z.core.$strip>;
|
|
1263
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1260
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1261
|
+
cluster_id: z.ZodString;
|
|
1262
|
+
fleet_name: z.ZodString;
|
|
1264
1263
|
}, z.core.$strip>;
|
|
1265
1264
|
/**
|
|
1266
1265
|
* Returns a single object containing fleet details.
|
|
@@ -1283,45 +1282,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1283
1282
|
}, z.core.$strip>>;
|
|
1284
1283
|
id: z.ZodString;
|
|
1285
1284
|
}, z.core.$strip>;
|
|
1286
|
-
export declare const
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
fleet_name: z.ZodString;
|
|
1307
|
-
}, z.core.$strip>;
|
|
1308
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1285
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1286
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1287
|
+
cpu: z.ZodNumber;
|
|
1288
|
+
}, z.core.$strip>>;
|
|
1289
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1291
|
+
project: z.ZodString;
|
|
1292
|
+
}, z.core.$strip>>;
|
|
1293
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1294
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1295
|
+
apiKey: z.ZodString;
|
|
1296
|
+
}, z.core.$strip>>;
|
|
1297
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1298
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1299
|
+
controllerRoleArn: z.ZodString;
|
|
1300
|
+
}, z.core.$strip>>;
|
|
1301
|
+
}, z.core.$strip>;
|
|
1302
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1303
|
+
cluster_id: z.ZodString;
|
|
1304
|
+
fleet_name: z.ZodString;
|
|
1309
1305
|
}, z.core.$strip>;
|
|
1310
1306
|
/**
|
|
1311
1307
|
* Successfully updated.
|
|
1312
1308
|
*/
|
|
1313
1309
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
1314
|
-
export declare const
|
|
1315
|
-
|
|
1316
|
-
path: z.ZodObject<{
|
|
1317
|
-
cluster_id: z.ZodString;
|
|
1318
|
-
}, z.core.$strip>;
|
|
1319
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1320
|
-
}, z.core.$strip>;
|
|
1321
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1322
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1323
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1324
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1310
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1311
|
+
cluster_id: z.ZodString;
|
|
1325
1312
|
}, z.core.$strip>;
|
|
1326
1313
|
/**
|
|
1327
1314
|
* An array of clusters
|
|
@@ -1333,12 +1320,11 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1333
1320
|
pro: "pro";
|
|
1334
1321
|
}>;
|
|
1335
1322
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1336
|
-
staging: "staging";
|
|
1323
|
+
"staging-1a": "staging-1a";
|
|
1337
1324
|
"northamerica-central-1": "northamerica-central-1";
|
|
1338
1325
|
"europe-central-1a": "europe-central-1a";
|
|
1339
1326
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1340
1327
|
}>>;
|
|
1341
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1342
1328
|
id: z.ZodUUID;
|
|
1343
1329
|
status: z.ZodEnum<{
|
|
1344
1330
|
deleted: "deleted";
|
|
@@ -1357,46 +1343,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1357
1343
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1358
1344
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1359
1345
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1346
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1360
1347
|
}, z.core.$strip>>;
|
|
1361
|
-
export declare const
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1348
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1349
|
+
name: z.ZodString;
|
|
1350
|
+
tier: z.ZodEnum<{
|
|
1351
|
+
basic: "basic";
|
|
1352
|
+
pro: "pro";
|
|
1353
|
+
}>;
|
|
1354
|
+
region: z.ZodOptional<z.ZodEnum<{
|
|
1355
|
+
"staging-1a": "staging-1a";
|
|
1356
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
1357
|
+
"europe-central-1a": "europe-central-1a";
|
|
1358
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
1359
|
+
}>>;
|
|
1360
|
+
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
1361
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1362
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1363
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1364
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1365
|
+
}>>;
|
|
1378
1366
|
}, z.core.$strip>;
|
|
1379
1367
|
/**
|
|
1380
1368
|
* Successfully created. Returns created Cluster ID.
|
|
1381
1369
|
*/
|
|
1382
1370
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1383
|
-
export declare const
|
|
1384
|
-
|
|
1385
|
-
path: z.ZodObject<{
|
|
1386
|
-
cluster_id: z.ZodString;
|
|
1387
|
-
}, z.core.$strip>;
|
|
1388
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1371
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1372
|
+
cluster_id: z.ZodString;
|
|
1389
1373
|
}, z.core.$strip>;
|
|
1390
1374
|
/**
|
|
1391
1375
|
* Successfully deleted.
|
|
1392
1376
|
*/
|
|
1393
1377
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1394
|
-
export declare const
|
|
1395
|
-
|
|
1396
|
-
path: z.ZodObject<{
|
|
1397
|
-
cluster_id: z.ZodString;
|
|
1398
|
-
}, z.core.$strip>;
|
|
1399
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1378
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1379
|
+
cluster_id: z.ZodString;
|
|
1400
1380
|
}, z.core.$strip>;
|
|
1401
1381
|
/**
|
|
1402
1382
|
* Returns a single object containing cluster details.
|
|
@@ -1408,12 +1388,11 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1408
1388
|
pro: "pro";
|
|
1409
1389
|
}>;
|
|
1410
1390
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1411
|
-
staging: "staging";
|
|
1391
|
+
"staging-1a": "staging-1a";
|
|
1412
1392
|
"northamerica-central-1": "northamerica-central-1";
|
|
1413
1393
|
"europe-central-1a": "europe-central-1a";
|
|
1414
1394
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1415
1395
|
}>>;
|
|
1416
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1417
1396
|
id: z.ZodUUID;
|
|
1418
1397
|
status: z.ZodEnum<{
|
|
1419
1398
|
deleted: "deleted";
|
|
@@ -1432,20 +1411,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1432
1411
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1433
1412
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1434
1413
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1414
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1435
1415
|
}, z.core.$strip>;
|
|
1436
|
-
export declare const
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
cluster_id: z.ZodString;
|
|
1447
|
-
}, z.core.$strip>;
|
|
1448
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1416
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1417
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1418
|
+
tier: z.ZodEnum<{
|
|
1419
|
+
basic: "basic";
|
|
1420
|
+
pro: "pro";
|
|
1421
|
+
}>;
|
|
1422
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1423
|
+
}, z.core.$strip>;
|
|
1424
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1425
|
+
cluster_id: z.ZodString;
|
|
1449
1426
|
}, z.core.$strip>;
|
|
1450
1427
|
/**
|
|
1451
1428
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1457,12 +1434,11 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1457
1434
|
pro: "pro";
|
|
1458
1435
|
}>;
|
|
1459
1436
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1460
|
-
staging: "staging";
|
|
1437
|
+
"staging-1a": "staging-1a";
|
|
1461
1438
|
"northamerica-central-1": "northamerica-central-1";
|
|
1462
1439
|
"europe-central-1a": "europe-central-1a";
|
|
1463
1440
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1464
1441
|
}>>;
|
|
1465
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1466
1442
|
id: z.ZodUUID;
|
|
1467
1443
|
status: z.ZodEnum<{
|
|
1468
1444
|
deleted: "deleted";
|
|
@@ -1481,13 +1457,10 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1481
1457
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1482
1458
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1483
1459
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1460
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1484
1461
|
}, z.core.$strip>;
|
|
1485
|
-
export declare const
|
|
1486
|
-
|
|
1487
|
-
path: z.ZodObject<{
|
|
1488
|
-
cluster_id: z.ZodString;
|
|
1489
|
-
}, z.core.$strip>;
|
|
1490
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1462
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1463
|
+
cluster_id: z.ZodString;
|
|
1491
1464
|
}, z.core.$strip>;
|
|
1492
1465
|
/**
|
|
1493
1466
|
* An object of cluster join information
|
|
@@ -1495,6 +1468,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
|
|
|
1495
1468
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1496
1469
|
certificate_authority: z.ZodString;
|
|
1497
1470
|
endpoint: z.ZodURL;
|
|
1471
|
+
cluster_dns: z.ZodString;
|
|
1498
1472
|
auth_key: z.ZodString;
|
|
1499
1473
|
bootstrap_token: z.ZodString;
|
|
1500
1474
|
versions: z.ZodObject<{
|
|
@@ -1509,11 +1483,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1509
1483
|
gcp_workload_identity_provider: z.ZodString;
|
|
1510
1484
|
}, z.core.$strip>;
|
|
1511
1485
|
}, z.core.$strip>;
|
|
1512
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1513
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1514
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1515
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1516
|
-
}, z.core.$strip>;
|
|
1517
1486
|
/**
|
|
1518
1487
|
* An array of invites
|
|
1519
1488
|
*/
|
|
@@ -1524,12 +1493,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1524
1493
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1525
1494
|
code: z.ZodOptional<z.ZodString>;
|
|
1526
1495
|
}, z.core.$strip>>;
|
|
1527
|
-
export declare const
|
|
1528
|
-
|
|
1529
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1530
|
-
}, z.core.$strip>;
|
|
1531
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1532
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1496
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1497
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1533
1498
|
}, z.core.$strip>;
|
|
1534
1499
|
/**
|
|
1535
1500
|
* Successfully created. Returns created invite details.
|
|
@@ -1541,12 +1506,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1541
1506
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1542
1507
|
code: z.ZodOptional<z.ZodString>;
|
|
1543
1508
|
}, z.core.$strip>;
|
|
1544
|
-
export declare const
|
|
1545
|
-
|
|
1546
|
-
path: z.ZodObject<{
|
|
1547
|
-
code: z.ZodString;
|
|
1548
|
-
}, z.core.$strip>;
|
|
1549
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1509
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1510
|
+
code: z.ZodString;
|
|
1550
1511
|
}, z.core.$strip>;
|
|
1551
1512
|
/**
|
|
1552
1513
|
* Returns a single object containing invite details.
|
|
@@ -1558,70 +1519,53 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1558
1519
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1559
1520
|
code: z.ZodOptional<z.ZodString>;
|
|
1560
1521
|
}, z.core.$strip>;
|
|
1561
|
-
export declare const
|
|
1562
|
-
|
|
1563
|
-
path: z.ZodObject<{
|
|
1564
|
-
email: z.ZodString;
|
|
1565
|
-
}, z.core.$strip>;
|
|
1566
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1567
|
-
}, z.core.$strip>;
|
|
1568
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1569
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1570
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1571
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1522
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1523
|
+
email: z.ZodString;
|
|
1572
1524
|
}, z.core.$strip>;
|
|
1573
1525
|
/**
|
|
1574
1526
|
* An array of chart listings in the marketplace.
|
|
1575
1527
|
*/
|
|
1576
1528
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1577
|
-
id: z.ZodString;
|
|
1578
1529
|
name: z.ZodString;
|
|
1579
|
-
|
|
1580
|
-
description: z.ZodString;
|
|
1581
|
-
logoUrl: z.ZodString;
|
|
1582
|
-
longDescription: z.ZodString;
|
|
1583
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1530
|
+
versions: z.ZodArray<z.ZodString>;
|
|
1584
1531
|
version_channels: z.ZodArray<z.ZodString>;
|
|
1585
|
-
|
|
1532
|
+
latestVersion: z.ZodString;
|
|
1533
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1534
|
+
name: z.ZodString;
|
|
1586
1535
|
version: z.ZodString;
|
|
1587
|
-
|
|
1588
|
-
|
|
1536
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1537
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1540
|
+
home: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1543
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1544
|
+
name: z.ZodString;
|
|
1545
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1546
|
+
}, z.core.$strip>>>;
|
|
1589
1547
|
}, z.core.$strip>>;
|
|
1590
1548
|
}, z.core.$strip>>;
|
|
1591
|
-
export declare const
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
listing_id: z.ZodString;
|
|
1595
|
-
}, z.core.$strip>;
|
|
1596
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1549
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1550
|
+
chart_name: z.ZodString;
|
|
1551
|
+
version_channel: z.ZodString;
|
|
1597
1552
|
}, z.core.$strip>;
|
|
1598
1553
|
/**
|
|
1599
|
-
* Returns an object containing the chart
|
|
1554
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1600
1555
|
*/
|
|
1601
|
-
export declare const
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
description: z.ZodString;
|
|
1606
|
-
logoUrl: z.ZodString;
|
|
1607
|
-
longDescription: z.ZodString;
|
|
1608
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1609
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
1610
|
-
value_schemas: z.ZodArray<z.ZodObject<{
|
|
1611
|
-
version: z.ZodString;
|
|
1612
|
-
schema: z.ZodString;
|
|
1613
|
-
placeholder: z.ZodString;
|
|
1614
|
-
}, z.core.$strip>>;
|
|
1556
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
1557
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
1558
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1559
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1615
1560
|
}, z.core.$strip>;
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1561
|
+
/**
|
|
1562
|
+
* JSON-RPC 2.0 request payload
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
1565
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1568
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1625
1569
|
}, z.core.$strip>;
|
|
1626
1570
|
/**
|
|
1627
1571
|
* JSON-RPC 2.0 success or error response
|
|
@@ -1635,11 +1579,6 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1635
1579
|
message: z.ZodOptional<z.ZodString>;
|
|
1636
1580
|
}, z.core.$strip>>;
|
|
1637
1581
|
}, z.core.$strip>;
|
|
1638
|
-
export declare const zGetOrganizationData: z.ZodObject<{
|
|
1639
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1640
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1641
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1642
|
-
}, z.core.$strip>;
|
|
1643
1582
|
/**
|
|
1644
1583
|
* Returns a single object containing organization details.
|
|
1645
1584
|
*/
|
|
@@ -1659,6 +1598,9 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1659
1598
|
id: z.ZodString;
|
|
1660
1599
|
label: z.ZodString;
|
|
1661
1600
|
}, z.core.$strip>>;
|
|
1601
|
+
copilot_user_hourly_tokens: z.ZodInt;
|
|
1602
|
+
copilot_organization_hourly_tokens: z.ZodInt;
|
|
1603
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1662
1604
|
}, z.core.$strip>;
|
|
1663
1605
|
status: z.ZodEnum<{
|
|
1664
1606
|
active: "active";
|
|
@@ -1666,21 +1608,81 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1666
1608
|
suspended: "suspended";
|
|
1667
1609
|
}>;
|
|
1668
1610
|
}, z.core.$strip>;
|
|
1669
|
-
export declare const
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1611
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1612
|
+
email: z.ZodEmail;
|
|
1613
|
+
first_name: z.ZodString;
|
|
1614
|
+
last_name: z.ZodString;
|
|
1615
|
+
company_name: z.ZodString;
|
|
1616
|
+
password: z.ZodString;
|
|
1617
|
+
}, z.core.$strip>;
|
|
1618
|
+
/**
|
|
1619
|
+
* List of repositories
|
|
1620
|
+
*/
|
|
1621
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1622
|
+
name: z.ZodString;
|
|
1623
|
+
region: z.ZodString;
|
|
1624
|
+
uri: z.ZodString;
|
|
1625
|
+
}, z.core.$strip>>;
|
|
1626
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1627
|
+
region: z.ZodString;
|
|
1628
|
+
repository: z.ZodString;
|
|
1629
|
+
}, z.core.$strip>;
|
|
1630
|
+
/**
|
|
1631
|
+
* Repository with tags
|
|
1632
|
+
*/
|
|
1633
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1634
|
+
name: z.ZodString;
|
|
1635
|
+
region: z.ZodString;
|
|
1636
|
+
uri: z.ZodString;
|
|
1637
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1638
|
+
name: z.ZodString;
|
|
1639
|
+
size: z.ZodNumber;
|
|
1640
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1641
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1642
|
+
}, z.core.$strip>>;
|
|
1643
|
+
totalSize: z.ZodNumber;
|
|
1679
1644
|
}, z.core.$strip>;
|
|
1680
|
-
export declare const
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1645
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1646
|
+
region: z.ZodString;
|
|
1647
|
+
repository: z.ZodString;
|
|
1648
|
+
tag: z.ZodString;
|
|
1649
|
+
}, z.core.$strip>;
|
|
1650
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1651
|
+
region: z.ZodString;
|
|
1652
|
+
repository: z.ZodString;
|
|
1653
|
+
tag: z.ZodString;
|
|
1654
|
+
}, z.core.$strip>;
|
|
1655
|
+
/**
|
|
1656
|
+
* Tag details
|
|
1657
|
+
*/
|
|
1658
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1659
|
+
name: z.ZodString;
|
|
1660
|
+
digest: z.ZodString;
|
|
1661
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1662
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1663
|
+
size: z.ZodNumber;
|
|
1664
|
+
}, z.core.$strip>>;
|
|
1665
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1666
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1667
|
+
size: z.ZodNumber;
|
|
1668
|
+
}, z.core.$strip>>>;
|
|
1669
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1670
|
+
digest: z.ZodString;
|
|
1671
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1672
|
+
architecture: z.ZodString;
|
|
1673
|
+
os: z.ZodString;
|
|
1674
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1675
|
+
}, z.core.$strip>>;
|
|
1676
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1677
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1678
|
+
size: z.ZodNumber;
|
|
1679
|
+
}, z.core.$strip>>>;
|
|
1680
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1681
|
+
}, z.core.$strip>>>;
|
|
1682
|
+
size: z.ZodNumber;
|
|
1683
|
+
region: z.ZodString;
|
|
1684
|
+
repository: z.ZodString;
|
|
1685
|
+
uri: z.ZodString;
|
|
1684
1686
|
}, z.core.$strip>;
|
|
1685
1687
|
/**
|
|
1686
1688
|
* Returns a list of access token details with masked secrets.
|
|
@@ -1695,16 +1697,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1695
1697
|
secret: z.ZodOptional<z.ZodString>;
|
|
1696
1698
|
date_created: z.ZodISODateTime;
|
|
1697
1699
|
}, z.core.$strip>>;
|
|
1698
|
-
export declare const
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
}>;
|
|
1705
|
-
}, z.core.$strip>;
|
|
1706
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1707
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1700
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1701
|
+
name: z.ZodString;
|
|
1702
|
+
role: z.ZodEnum<{
|
|
1703
|
+
Administrator: "Administrator";
|
|
1704
|
+
User: "User";
|
|
1705
|
+
}>;
|
|
1708
1706
|
}, z.core.$strip>;
|
|
1709
1707
|
/**
|
|
1710
1708
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1719,19 +1717,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1719
1717
|
secret: z.ZodOptional<z.ZodString>;
|
|
1720
1718
|
date_created: z.ZodISODateTime;
|
|
1721
1719
|
}, z.core.$strip>;
|
|
1722
|
-
export declare const
|
|
1723
|
-
|
|
1724
|
-
path: z.ZodObject<{
|
|
1725
|
-
token_id: z.ZodString;
|
|
1726
|
-
}, z.core.$strip>;
|
|
1727
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1720
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1721
|
+
token_id: z.ZodString;
|
|
1728
1722
|
}, z.core.$strip>;
|
|
1729
|
-
export declare const
|
|
1730
|
-
|
|
1731
|
-
path: z.ZodObject<{
|
|
1732
|
-
token_id: z.ZodString;
|
|
1733
|
-
}, z.core.$strip>;
|
|
1734
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1723
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1724
|
+
token_id: z.ZodString;
|
|
1735
1725
|
}, z.core.$strip>;
|
|
1736
1726
|
/**
|
|
1737
1727
|
* Returns access token details with masked secret.
|
|
@@ -1746,18 +1736,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1746
1736
|
secret: z.ZodOptional<z.ZodString>;
|
|
1747
1737
|
date_created: z.ZodISODateTime;
|
|
1748
1738
|
}, z.core.$strip>;
|
|
1749
|
-
export declare const
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
token_id: z.ZodString;
|
|
1759
|
-
}, z.core.$strip>;
|
|
1760
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1739
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1740
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1741
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1742
|
+
Administrator: "Administrator";
|
|
1743
|
+
User: "User";
|
|
1744
|
+
}>>;
|
|
1745
|
+
}, z.core.$strip>;
|
|
1746
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1747
|
+
token_id: z.ZodString;
|
|
1761
1748
|
}, z.core.$strip>;
|
|
1762
1749
|
/**
|
|
1763
1750
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1772,12 +1759,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1772
1759
|
secret: z.ZodOptional<z.ZodString>;
|
|
1773
1760
|
date_created: z.ZodISODateTime;
|
|
1774
1761
|
}, z.core.$strip>;
|
|
1775
|
-
export declare const
|
|
1776
|
-
|
|
1777
|
-
path: z.ZodObject<{
|
|
1778
|
-
token_id: z.ZodString;
|
|
1779
|
-
}, z.core.$strip>;
|
|
1780
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1762
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1763
|
+
token_id: z.ZodString;
|
|
1781
1764
|
}, z.core.$strip>;
|
|
1782
1765
|
/**
|
|
1783
1766
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1792,12 +1775,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1792
1775
|
secret: z.ZodOptional<z.ZodString>;
|
|
1793
1776
|
date_created: z.ZodISODateTime;
|
|
1794
1777
|
}, z.core.$strip>;
|
|
1795
|
-
export declare const
|
|
1796
|
-
|
|
1797
|
-
path: z.ZodObject<{
|
|
1798
|
-
email: z.ZodString;
|
|
1799
|
-
}, z.core.$strip>;
|
|
1800
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1778
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1779
|
+
email: z.ZodString;
|
|
1801
1780
|
}, z.core.$strip>;
|
|
1802
1781
|
/**
|
|
1803
1782
|
* An array of organizations the user belongs to.
|
|
@@ -1806,11 +1785,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1806
1785
|
realm: z.ZodOptional<z.ZodString>;
|
|
1807
1786
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1808
1787
|
}, z.core.$strip>>;
|
|
1809
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1810
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1811
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1812
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1813
|
-
}, z.core.$strip>;
|
|
1814
1788
|
/**
|
|
1815
1789
|
* An array of users
|
|
1816
1790
|
*/
|
|
@@ -1829,24 +1803,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1829
1803
|
id: z.ZodUUID;
|
|
1830
1804
|
date_created: z.ZodISODateTime;
|
|
1831
1805
|
}, z.core.$strip>>;
|
|
1832
|
-
export declare const
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
}>>;
|
|
1847
|
-
}, z.core.$strip>;
|
|
1848
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1849
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1806
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1807
|
+
email: z.ZodEmail;
|
|
1808
|
+
first_name: z.ZodString;
|
|
1809
|
+
last_name: z.ZodString;
|
|
1810
|
+
code: z.ZodString;
|
|
1811
|
+
password: z.ZodString;
|
|
1812
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1813
|
+
active: "active";
|
|
1814
|
+
inactive: "inactive";
|
|
1815
|
+
}>>;
|
|
1816
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1817
|
+
Administrator: "Administrator";
|
|
1818
|
+
User: "User";
|
|
1819
|
+
}>>;
|
|
1850
1820
|
}, z.core.$strip>;
|
|
1851
1821
|
/**
|
|
1852
1822
|
* Successfully created. Returns created user details.
|
|
@@ -1866,12 +1836,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
1866
1836
|
id: z.ZodUUID;
|
|
1867
1837
|
date_created: z.ZodISODateTime;
|
|
1868
1838
|
}, z.core.$strip>;
|
|
1869
|
-
export declare const
|
|
1870
|
-
|
|
1871
|
-
path: z.ZodObject<{
|
|
1872
|
-
user_id: z.ZodString;
|
|
1873
|
-
}, z.core.$strip>;
|
|
1874
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1839
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1840
|
+
user_id: z.ZodString;
|
|
1875
1841
|
}, z.core.$strip>;
|
|
1876
1842
|
/**
|
|
1877
1843
|
* User profile information
|
|
@@ -1891,12 +1857,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
1891
1857
|
id: z.ZodUUID;
|
|
1892
1858
|
date_created: z.ZodISODateTime;
|
|
1893
1859
|
}, z.core.$strip>;
|
|
1894
|
-
export declare const
|
|
1895
|
-
|
|
1896
|
-
path: z.ZodObject<{
|
|
1897
|
-
user_id: z.ZodString;
|
|
1898
|
-
}, z.core.$strip>;
|
|
1899
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1860
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1861
|
+
user_id: z.ZodString;
|
|
1900
1862
|
}, z.core.$strip>;
|
|
1901
1863
|
/**
|
|
1902
1864
|
* User profile information
|
|
@@ -1916,24 +1878,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
1916
1878
|
id: z.ZodUUID;
|
|
1917
1879
|
date_created: z.ZodISODateTime;
|
|
1918
1880
|
}, z.core.$strip>;
|
|
1919
|
-
export declare const
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
user_id: z.ZodString;
|
|
1935
|
-
}, z.core.$strip>;
|
|
1936
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1881
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1882
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1883
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1884
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1886
|
+
Administrator: "Administrator";
|
|
1887
|
+
User: "User";
|
|
1888
|
+
}>>;
|
|
1889
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1890
|
+
active: "active";
|
|
1891
|
+
inactive: "inactive";
|
|
1892
|
+
}>>;
|
|
1893
|
+
}, z.core.$strip>;
|
|
1894
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1895
|
+
user_id: z.ZodString;
|
|
1937
1896
|
}, z.core.$strip>;
|
|
1938
1897
|
/**
|
|
1939
1898
|
* Successfully created. Returns created user details.
|