@cloudfleet/sdk 0.0.1-cb875c6 → 0.0.1-cd7e06c
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 +220 -73
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +763 -159
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +7 -5
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +40 -143
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +153 -41
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +436 -591
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +276 -488
- 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,9 @@ 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;
|
|
416
439
|
}, z.core.$strip>;
|
|
417
440
|
export declare const zRegistryRepository: z.ZodObject<{
|
|
418
441
|
name: z.ZodString;
|
|
@@ -427,16 +450,19 @@ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
|
|
|
427
450
|
name: z.ZodString;
|
|
428
451
|
size: z.ZodNumber;
|
|
429
452
|
mediaType: z.ZodOptional<z.ZodString>;
|
|
453
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
430
454
|
}, z.core.$strip>>;
|
|
431
455
|
totalSize: z.ZodNumber;
|
|
432
456
|
}, z.core.$strip>;
|
|
433
457
|
export declare const zRegistryTag: z.ZodObject<{
|
|
434
458
|
name: z.ZodString;
|
|
459
|
+
digest: z.ZodString;
|
|
435
460
|
mediaType: z.ZodOptional<z.ZodString>;
|
|
436
461
|
config: z.ZodOptional<z.ZodObject<{
|
|
437
462
|
size: z.ZodNumber;
|
|
438
463
|
}, z.core.$strip>>;
|
|
439
464
|
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
440
466
|
size: z.ZodNumber;
|
|
441
467
|
}, z.core.$strip>>>;
|
|
442
468
|
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -444,7 +470,13 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
444
470
|
platform: z.ZodOptional<z.ZodObject<{
|
|
445
471
|
architecture: z.ZodString;
|
|
446
472
|
os: z.ZodString;
|
|
473
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
447
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>;
|
|
448
480
|
}, z.core.$strip>>>;
|
|
449
481
|
size: z.ZodNumber;
|
|
450
482
|
region: z.ZodString;
|
|
@@ -544,16 +576,12 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
544
576
|
inactive: "inactive";
|
|
545
577
|
}>>;
|
|
546
578
|
}, z.core.$strip>;
|
|
547
|
-
export declare const
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
daily: "daily";
|
|
554
|
-
monthly: "monthly";
|
|
555
|
-
}>>;
|
|
556
|
-
}, 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
|
+
}>>;
|
|
557
585
|
}, z.core.$strip>;
|
|
558
586
|
/**
|
|
559
587
|
* Usage data with facets for filtering
|
|
@@ -572,11 +600,6 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
572
600
|
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
573
601
|
}, z.core.$strip>;
|
|
574
602
|
}, z.core.$strip>;
|
|
575
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
576
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
577
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
578
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
579
|
-
}, z.core.$strip>;
|
|
580
603
|
/**
|
|
581
604
|
* Redacted payment card information.
|
|
582
605
|
*/
|
|
@@ -601,11 +624,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
601
624
|
visa: "visa";
|
|
602
625
|
}>;
|
|
603
626
|
}, z.core.$strip>;
|
|
604
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
605
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
606
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
607
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
608
|
-
}, z.core.$strip>;
|
|
609
627
|
/**
|
|
610
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.
|
|
611
629
|
*
|
|
@@ -613,16 +631,11 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
613
631
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
614
632
|
id: z.ZodOptional<z.ZodString>;
|
|
615
633
|
}, z.core.$strip>;
|
|
616
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
617
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
618
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
619
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
620
|
-
}, z.core.$strip>;
|
|
621
634
|
/**
|
|
622
635
|
* An array of usage records.
|
|
623
636
|
*/
|
|
624
637
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
625
|
-
id: z.ZodOptional<z.
|
|
638
|
+
id: z.ZodOptional<z.ZodString>;
|
|
626
639
|
number: z.ZodOptional<z.ZodString>;
|
|
627
640
|
status: z.ZodOptional<z.ZodString>;
|
|
628
641
|
total: z.ZodOptional<z.ZodNumber>;
|
|
@@ -632,11 +645,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
632
645
|
period_end: z.ZodISODateTime;
|
|
633
646
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
634
647
|
}, z.core.$strip>>;
|
|
635
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
636
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
637
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
638
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
639
|
-
}, z.core.$strip>;
|
|
640
648
|
/**
|
|
641
649
|
* Returns a single object containing organization contact and billing address details.
|
|
642
650
|
*/
|
|
@@ -783,152 +791,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
783
791
|
zw_tin: "zw_tin";
|
|
784
792
|
}>>;
|
|
785
793
|
}, z.core.$strip>;
|
|
786
|
-
export declare const
|
|
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
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
}>>;
|
|
929
|
-
}, z.core.$strip>;
|
|
930
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
931
|
-
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
|
+
}>>;
|
|
932
936
|
}, z.core.$strip>;
|
|
933
937
|
/**
|
|
934
938
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1076,11 +1080,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1076
1080
|
zw_tin: "zw_tin";
|
|
1077
1081
|
}>>;
|
|
1078
1082
|
}, z.core.$strip>;
|
|
1079
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1080
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1081
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1082
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1083
|
-
}, z.core.$strip>;
|
|
1084
1083
|
/**
|
|
1085
1084
|
* An array of the applied promotional credits records.
|
|
1086
1085
|
*/
|
|
@@ -1097,19 +1096,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1097
1096
|
value_total: z.ZodNumber;
|
|
1098
1097
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1099
1098
|
}, z.core.$strip>>;
|
|
1100
|
-
export declare const
|
|
1101
|
-
|
|
1102
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1103
|
-
}, z.core.$strip>;
|
|
1104
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1105
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1099
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1100
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1106
1101
|
}, z.core.$strip>;
|
|
1107
|
-
export declare const
|
|
1108
|
-
|
|
1109
|
-
path: z.ZodObject<{
|
|
1110
|
-
cluster_id: z.ZodString;
|
|
1111
|
-
}, z.core.$strip>;
|
|
1112
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1102
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1103
|
+
cluster_id: z.ZodString;
|
|
1113
1104
|
}, z.core.$strip>;
|
|
1114
1105
|
/**
|
|
1115
1106
|
* An array of charts
|
|
@@ -1141,42 +1132,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1141
1132
|
updated_at: z.ZodString;
|
|
1142
1133
|
ready: z.ZodBoolean;
|
|
1143
1134
|
}, z.core.$strip>>;
|
|
1144
|
-
export declare const
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
cluster_id: z.ZodString;
|
|
1154
|
-
}, z.core.$strip>;
|
|
1155
|
-
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;
|
|
1156
1144
|
}, z.core.$strip>;
|
|
1157
1145
|
/**
|
|
1158
1146
|
* Successfully created. Returns created Chart ID.
|
|
1159
1147
|
*/
|
|
1160
1148
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1161
|
-
export declare const
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
cluster_id: z.ZodString;
|
|
1165
|
-
chart_name: z.ZodString;
|
|
1166
|
-
}, z.core.$strip>;
|
|
1167
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1149
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1150
|
+
cluster_id: z.ZodString;
|
|
1151
|
+
chart_name: z.ZodString;
|
|
1168
1152
|
}, z.core.$strip>;
|
|
1169
1153
|
/**
|
|
1170
1154
|
* Successfully deleted.
|
|
1171
1155
|
*/
|
|
1172
1156
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1173
|
-
export declare const
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
cluster_id: z.ZodString;
|
|
1177
|
-
chart_name: z.ZodString;
|
|
1178
|
-
}, z.core.$strip>;
|
|
1179
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1157
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1158
|
+
cluster_id: z.ZodString;
|
|
1159
|
+
chart_name: z.ZodString;
|
|
1180
1160
|
}, z.core.$strip>;
|
|
1181
1161
|
/**
|
|
1182
1162
|
* Returns a single object containing chart details.
|
|
@@ -1208,27 +1188,20 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1208
1188
|
updated_at: z.ZodString;
|
|
1209
1189
|
ready: z.ZodBoolean;
|
|
1210
1190
|
}, z.core.$strip>;
|
|
1211
|
-
export declare const
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
chart_name: z.ZodString;
|
|
1219
|
-
}, z.core.$strip>;
|
|
1220
|
-
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;
|
|
1221
1198
|
}, z.core.$strip>;
|
|
1222
1199
|
/**
|
|
1223
1200
|
* Successfully updated.
|
|
1224
1201
|
*/
|
|
1225
1202
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1226
|
-
export declare const
|
|
1227
|
-
|
|
1228
|
-
path: z.ZodObject<{
|
|
1229
|
-
cluster_id: z.ZodString;
|
|
1230
|
-
}, z.core.$strip>;
|
|
1231
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1203
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1204
|
+
cluster_id: z.ZodString;
|
|
1232
1205
|
}, z.core.$strip>;
|
|
1233
1206
|
/**
|
|
1234
1207
|
* An array of fleets
|
|
@@ -1251,53 +1224,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1251
1224
|
}, z.core.$strip>>;
|
|
1252
1225
|
id: z.ZodString;
|
|
1253
1226
|
}, z.core.$strip>>;
|
|
1254
|
-
export declare const
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
cluster_id: z.ZodString;
|
|
1275
|
-
}, z.core.$strip>;
|
|
1276
|
-
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;
|
|
1277
1247
|
}, z.core.$strip>;
|
|
1278
1248
|
/**
|
|
1279
1249
|
* Successfully created. Returns created Fleet ID.
|
|
1280
1250
|
*/
|
|
1281
1251
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1282
|
-
export declare const
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
cluster_id: z.ZodString;
|
|
1286
|
-
fleet_name: z.ZodString;
|
|
1287
|
-
}, z.core.$strip>;
|
|
1288
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1252
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1253
|
+
cluster_id: z.ZodString;
|
|
1254
|
+
fleet_name: z.ZodString;
|
|
1289
1255
|
}, z.core.$strip>;
|
|
1290
1256
|
/**
|
|
1291
1257
|
* Successfully deleted.
|
|
1292
1258
|
*/
|
|
1293
1259
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1294
|
-
export declare const
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
cluster_id: z.ZodString;
|
|
1298
|
-
fleet_name: z.ZodString;
|
|
1299
|
-
}, z.core.$strip>;
|
|
1300
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1260
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1261
|
+
cluster_id: z.ZodString;
|
|
1262
|
+
fleet_name: z.ZodString;
|
|
1301
1263
|
}, z.core.$strip>;
|
|
1302
1264
|
/**
|
|
1303
1265
|
* Returns a single object containing fleet details.
|
|
@@ -1320,45 +1282,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1320
1282
|
}, z.core.$strip>>;
|
|
1321
1283
|
id: z.ZodString;
|
|
1322
1284
|
}, z.core.$strip>;
|
|
1323
|
-
export declare const
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
fleet_name: z.ZodString;
|
|
1344
|
-
}, z.core.$strip>;
|
|
1345
|
-
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;
|
|
1346
1305
|
}, z.core.$strip>;
|
|
1347
1306
|
/**
|
|
1348
1307
|
* Successfully updated.
|
|
1349
1308
|
*/
|
|
1350
1309
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
1351
|
-
export declare const
|
|
1352
|
-
|
|
1353
|
-
path: z.ZodObject<{
|
|
1354
|
-
cluster_id: z.ZodString;
|
|
1355
|
-
}, z.core.$strip>;
|
|
1356
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1357
|
-
}, z.core.$strip>;
|
|
1358
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1359
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1360
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1361
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1310
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1311
|
+
cluster_id: z.ZodString;
|
|
1362
1312
|
}, z.core.$strip>;
|
|
1363
1313
|
/**
|
|
1364
1314
|
* An array of clusters
|
|
@@ -1370,12 +1320,11 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1370
1320
|
pro: "pro";
|
|
1371
1321
|
}>;
|
|
1372
1322
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1373
|
-
staging: "staging";
|
|
1323
|
+
"staging-1a": "staging-1a";
|
|
1374
1324
|
"northamerica-central-1": "northamerica-central-1";
|
|
1375
1325
|
"europe-central-1a": "europe-central-1a";
|
|
1376
1326
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1377
1327
|
}>>;
|
|
1378
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1379
1328
|
id: z.ZodUUID;
|
|
1380
1329
|
status: z.ZodEnum<{
|
|
1381
1330
|
deleted: "deleted";
|
|
@@ -1394,46 +1343,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1394
1343
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1395
1344
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1396
1345
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1346
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1397
1347
|
}, z.core.$strip>>;
|
|
1398
|
-
export declare const
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
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
|
+
}>>;
|
|
1415
1366
|
}, z.core.$strip>;
|
|
1416
1367
|
/**
|
|
1417
1368
|
* Successfully created. Returns created Cluster ID.
|
|
1418
1369
|
*/
|
|
1419
1370
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1420
|
-
export declare const
|
|
1421
|
-
|
|
1422
|
-
path: z.ZodObject<{
|
|
1423
|
-
cluster_id: z.ZodString;
|
|
1424
|
-
}, z.core.$strip>;
|
|
1425
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1371
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1372
|
+
cluster_id: z.ZodString;
|
|
1426
1373
|
}, z.core.$strip>;
|
|
1427
1374
|
/**
|
|
1428
1375
|
* Successfully deleted.
|
|
1429
1376
|
*/
|
|
1430
1377
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1431
|
-
export declare const
|
|
1432
|
-
|
|
1433
|
-
path: z.ZodObject<{
|
|
1434
|
-
cluster_id: z.ZodString;
|
|
1435
|
-
}, z.core.$strip>;
|
|
1436
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1378
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1379
|
+
cluster_id: z.ZodString;
|
|
1437
1380
|
}, z.core.$strip>;
|
|
1438
1381
|
/**
|
|
1439
1382
|
* Returns a single object containing cluster details.
|
|
@@ -1445,12 +1388,11 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1445
1388
|
pro: "pro";
|
|
1446
1389
|
}>;
|
|
1447
1390
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1448
|
-
staging: "staging";
|
|
1391
|
+
"staging-1a": "staging-1a";
|
|
1449
1392
|
"northamerica-central-1": "northamerica-central-1";
|
|
1450
1393
|
"europe-central-1a": "europe-central-1a";
|
|
1451
1394
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1452
1395
|
}>>;
|
|
1453
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1454
1396
|
id: z.ZodUUID;
|
|
1455
1397
|
status: z.ZodEnum<{
|
|
1456
1398
|
deleted: "deleted";
|
|
@@ -1469,20 +1411,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1469
1411
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1470
1412
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1471
1413
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1414
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1472
1415
|
}, z.core.$strip>;
|
|
1473
|
-
export declare const
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
cluster_id: z.ZodString;
|
|
1484
|
-
}, z.core.$strip>;
|
|
1485
|
-
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;
|
|
1486
1426
|
}, z.core.$strip>;
|
|
1487
1427
|
/**
|
|
1488
1428
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1494,12 +1434,11 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1494
1434
|
pro: "pro";
|
|
1495
1435
|
}>;
|
|
1496
1436
|
region: z.ZodOptional<z.ZodEnum<{
|
|
1497
|
-
staging: "staging";
|
|
1437
|
+
"staging-1a": "staging-1a";
|
|
1498
1438
|
"northamerica-central-1": "northamerica-central-1";
|
|
1499
1439
|
"europe-central-1a": "europe-central-1a";
|
|
1500
1440
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1501
1441
|
}>>;
|
|
1502
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1503
1442
|
id: z.ZodUUID;
|
|
1504
1443
|
status: z.ZodEnum<{
|
|
1505
1444
|
deleted: "deleted";
|
|
@@ -1518,13 +1457,10 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1518
1457
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1519
1458
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1520
1459
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1460
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1521
1461
|
}, z.core.$strip>;
|
|
1522
|
-
export declare const
|
|
1523
|
-
|
|
1524
|
-
path: z.ZodObject<{
|
|
1525
|
-
cluster_id: z.ZodString;
|
|
1526
|
-
}, z.core.$strip>;
|
|
1527
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1462
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1463
|
+
cluster_id: z.ZodString;
|
|
1528
1464
|
}, z.core.$strip>;
|
|
1529
1465
|
/**
|
|
1530
1466
|
* An object of cluster join information
|
|
@@ -1532,6 +1468,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
|
|
|
1532
1468
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1533
1469
|
certificate_authority: z.ZodString;
|
|
1534
1470
|
endpoint: z.ZodURL;
|
|
1471
|
+
cluster_dns: z.ZodString;
|
|
1535
1472
|
auth_key: z.ZodString;
|
|
1536
1473
|
bootstrap_token: z.ZodString;
|
|
1537
1474
|
versions: z.ZodObject<{
|
|
@@ -1546,11 +1483,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1546
1483
|
gcp_workload_identity_provider: z.ZodString;
|
|
1547
1484
|
}, z.core.$strip>;
|
|
1548
1485
|
}, z.core.$strip>;
|
|
1549
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1550
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1551
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1552
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1553
|
-
}, z.core.$strip>;
|
|
1554
1486
|
/**
|
|
1555
1487
|
* An array of invites
|
|
1556
1488
|
*/
|
|
@@ -1561,12 +1493,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1561
1493
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1562
1494
|
code: z.ZodOptional<z.ZodString>;
|
|
1563
1495
|
}, z.core.$strip>>;
|
|
1564
|
-
export declare const
|
|
1565
|
-
|
|
1566
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1567
|
-
}, z.core.$strip>;
|
|
1568
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1569
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1496
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1497
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1570
1498
|
}, z.core.$strip>;
|
|
1571
1499
|
/**
|
|
1572
1500
|
* Successfully created. Returns created invite details.
|
|
@@ -1578,12 +1506,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1578
1506
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1579
1507
|
code: z.ZodOptional<z.ZodString>;
|
|
1580
1508
|
}, z.core.$strip>;
|
|
1581
|
-
export declare const
|
|
1582
|
-
|
|
1583
|
-
path: z.ZodObject<{
|
|
1584
|
-
code: z.ZodString;
|
|
1585
|
-
}, z.core.$strip>;
|
|
1586
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1509
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1510
|
+
code: z.ZodString;
|
|
1587
1511
|
}, z.core.$strip>;
|
|
1588
1512
|
/**
|
|
1589
1513
|
* Returns a single object containing invite details.
|
|
@@ -1595,70 +1519,53 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1595
1519
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1596
1520
|
code: z.ZodOptional<z.ZodString>;
|
|
1597
1521
|
}, z.core.$strip>;
|
|
1598
|
-
export declare const
|
|
1599
|
-
|
|
1600
|
-
path: z.ZodObject<{
|
|
1601
|
-
email: z.ZodString;
|
|
1602
|
-
}, z.core.$strip>;
|
|
1603
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1604
|
-
}, z.core.$strip>;
|
|
1605
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1606
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1607
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1608
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1522
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1523
|
+
email: z.ZodString;
|
|
1609
1524
|
}, z.core.$strip>;
|
|
1610
1525
|
/**
|
|
1611
1526
|
* An array of chart listings in the marketplace.
|
|
1612
1527
|
*/
|
|
1613
1528
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1614
|
-
id: z.ZodString;
|
|
1615
1529
|
name: z.ZodString;
|
|
1616
|
-
|
|
1617
|
-
description: z.ZodString;
|
|
1618
|
-
logoUrl: z.ZodString;
|
|
1619
|
-
longDescription: z.ZodString;
|
|
1620
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1530
|
+
versions: z.ZodArray<z.ZodString>;
|
|
1621
1531
|
version_channels: z.ZodArray<z.ZodString>;
|
|
1622
|
-
|
|
1532
|
+
latestVersion: z.ZodString;
|
|
1533
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1534
|
+
name: z.ZodString;
|
|
1623
1535
|
version: z.ZodString;
|
|
1624
|
-
|
|
1625
|
-
|
|
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>>>;
|
|
1626
1547
|
}, z.core.$strip>>;
|
|
1627
1548
|
}, z.core.$strip>>;
|
|
1628
|
-
export declare const
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
listing_id: z.ZodString;
|
|
1632
|
-
}, z.core.$strip>;
|
|
1633
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1549
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1550
|
+
chart_name: z.ZodString;
|
|
1551
|
+
version_channel: z.ZodString;
|
|
1634
1552
|
}, z.core.$strip>;
|
|
1635
1553
|
/**
|
|
1636
|
-
* Returns an object containing the chart
|
|
1554
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1637
1555
|
*/
|
|
1638
|
-
export declare const
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
description: z.ZodString;
|
|
1643
|
-
logoUrl: z.ZodString;
|
|
1644
|
-
longDescription: z.ZodString;
|
|
1645
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1646
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
1647
|
-
value_schemas: z.ZodArray<z.ZodObject<{
|
|
1648
|
-
version: z.ZodString;
|
|
1649
|
-
schema: z.ZodString;
|
|
1650
|
-
placeholder: z.ZodString;
|
|
1651
|
-
}, 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>;
|
|
1652
1560
|
}, z.core.$strip>;
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
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>>;
|
|
1662
1569
|
}, z.core.$strip>;
|
|
1663
1570
|
/**
|
|
1664
1571
|
* JSON-RPC 2.0 success or error response
|
|
@@ -1672,11 +1579,6 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1672
1579
|
message: z.ZodOptional<z.ZodString>;
|
|
1673
1580
|
}, z.core.$strip>>;
|
|
1674
1581
|
}, z.core.$strip>;
|
|
1675
|
-
export declare const zGetOrganizationData: z.ZodObject<{
|
|
1676
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1677
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1678
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1679
|
-
}, z.core.$strip>;
|
|
1680
1582
|
/**
|
|
1681
1583
|
* Returns a single object containing organization details.
|
|
1682
1584
|
*/
|
|
@@ -1696,6 +1598,9 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1696
1598
|
id: z.ZodString;
|
|
1697
1599
|
label: z.ZodString;
|
|
1698
1600
|
}, z.core.$strip>>;
|
|
1601
|
+
copilot_user_hourly_tokens: z.ZodInt;
|
|
1602
|
+
copilot_organization_hourly_tokens: z.ZodInt;
|
|
1603
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1699
1604
|
}, z.core.$strip>;
|
|
1700
1605
|
status: z.ZodEnum<{
|
|
1701
1606
|
active: "active";
|
|
@@ -1703,21 +1608,12 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1703
1608
|
suspended: "suspended";
|
|
1704
1609
|
}>;
|
|
1705
1610
|
}, z.core.$strip>;
|
|
1706
|
-
export declare const
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
password: z.ZodString;
|
|
1713
|
-
}, z.core.$strip>;
|
|
1714
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1715
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1716
|
-
}, z.core.$strip>;
|
|
1717
|
-
export declare const zListRepositoriesData: z.ZodObject<{
|
|
1718
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1719
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1720
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
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;
|
|
1721
1617
|
}, z.core.$strip>;
|
|
1722
1618
|
/**
|
|
1723
1619
|
* List of repositories
|
|
@@ -1727,13 +1623,9 @@ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1727
1623
|
region: z.ZodString;
|
|
1728
1624
|
uri: z.ZodString;
|
|
1729
1625
|
}, z.core.$strip>>;
|
|
1730
|
-
export declare const
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
region: z.ZodString;
|
|
1734
|
-
repository: z.ZodString;
|
|
1735
|
-
}, z.core.$strip>;
|
|
1736
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1626
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1627
|
+
region: z.ZodString;
|
|
1628
|
+
repository: z.ZodString;
|
|
1737
1629
|
}, z.core.$strip>;
|
|
1738
1630
|
/**
|
|
1739
1631
|
* Repository with tags
|
|
@@ -1746,37 +1638,32 @@ export declare const zListTagsResponse: z.ZodObject<{
|
|
|
1746
1638
|
name: z.ZodString;
|
|
1747
1639
|
size: z.ZodNumber;
|
|
1748
1640
|
mediaType: z.ZodOptional<z.ZodString>;
|
|
1641
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1749
1642
|
}, z.core.$strip>>;
|
|
1750
1643
|
totalSize: z.ZodNumber;
|
|
1751
1644
|
}, z.core.$strip>;
|
|
1752
|
-
export declare const
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
export declare const zGetTagData: z.ZodObject<{
|
|
1762
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1763
|
-
path: z.ZodObject<{
|
|
1764
|
-
region: z.ZodString;
|
|
1765
|
-
repository: z.ZodString;
|
|
1766
|
-
tag: z.ZodString;
|
|
1767
|
-
}, z.core.$strip>;
|
|
1768
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
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;
|
|
1769
1654
|
}, z.core.$strip>;
|
|
1770
1655
|
/**
|
|
1771
1656
|
* Tag details
|
|
1772
1657
|
*/
|
|
1773
1658
|
export declare const zGetTagResponse: z.ZodObject<{
|
|
1774
1659
|
name: z.ZodString;
|
|
1660
|
+
digest: z.ZodString;
|
|
1775
1661
|
mediaType: z.ZodOptional<z.ZodString>;
|
|
1776
1662
|
config: z.ZodOptional<z.ZodObject<{
|
|
1777
1663
|
size: z.ZodNumber;
|
|
1778
1664
|
}, z.core.$strip>>;
|
|
1779
1665
|
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1666
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1780
1667
|
size: z.ZodNumber;
|
|
1781
1668
|
}, z.core.$strip>>>;
|
|
1782
1669
|
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1784,18 +1671,19 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1784
1671
|
platform: z.ZodOptional<z.ZodObject<{
|
|
1785
1672
|
architecture: z.ZodString;
|
|
1786
1673
|
os: z.ZodString;
|
|
1674
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1787
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>;
|
|
1788
1681
|
}, z.core.$strip>>>;
|
|
1789
1682
|
size: z.ZodNumber;
|
|
1790
1683
|
region: z.ZodString;
|
|
1791
1684
|
repository: z.ZodString;
|
|
1792
1685
|
uri: z.ZodString;
|
|
1793
1686
|
}, z.core.$strip>;
|
|
1794
|
-
export declare const zListTokensData: z.ZodObject<{
|
|
1795
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1796
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1797
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1798
|
-
}, z.core.$strip>;
|
|
1799
1687
|
/**
|
|
1800
1688
|
* Returns a list of access token details with masked secrets.
|
|
1801
1689
|
*/
|
|
@@ -1809,16 +1697,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1809
1697
|
secret: z.ZodOptional<z.ZodString>;
|
|
1810
1698
|
date_created: z.ZodISODateTime;
|
|
1811
1699
|
}, z.core.$strip>>;
|
|
1812
|
-
export declare const
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
}>;
|
|
1819
|
-
}, z.core.$strip>;
|
|
1820
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1821
|
-
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
|
+
}>;
|
|
1822
1706
|
}, z.core.$strip>;
|
|
1823
1707
|
/**
|
|
1824
1708
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1833,19 +1717,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1833
1717
|
secret: z.ZodOptional<z.ZodString>;
|
|
1834
1718
|
date_created: z.ZodISODateTime;
|
|
1835
1719
|
}, z.core.$strip>;
|
|
1836
|
-
export declare const
|
|
1837
|
-
|
|
1838
|
-
path: z.ZodObject<{
|
|
1839
|
-
token_id: z.ZodString;
|
|
1840
|
-
}, z.core.$strip>;
|
|
1841
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1720
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1721
|
+
token_id: z.ZodString;
|
|
1842
1722
|
}, z.core.$strip>;
|
|
1843
|
-
export declare const
|
|
1844
|
-
|
|
1845
|
-
path: z.ZodObject<{
|
|
1846
|
-
token_id: z.ZodString;
|
|
1847
|
-
}, z.core.$strip>;
|
|
1848
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1723
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1724
|
+
token_id: z.ZodString;
|
|
1849
1725
|
}, z.core.$strip>;
|
|
1850
1726
|
/**
|
|
1851
1727
|
* Returns access token details with masked secret.
|
|
@@ -1860,18 +1736,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1860
1736
|
secret: z.ZodOptional<z.ZodString>;
|
|
1861
1737
|
date_created: z.ZodISODateTime;
|
|
1862
1738
|
}, z.core.$strip>;
|
|
1863
|
-
export declare const
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
token_id: z.ZodString;
|
|
1873
|
-
}, z.core.$strip>;
|
|
1874
|
-
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;
|
|
1875
1748
|
}, z.core.$strip>;
|
|
1876
1749
|
/**
|
|
1877
1750
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1886,12 +1759,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1886
1759
|
secret: z.ZodOptional<z.ZodString>;
|
|
1887
1760
|
date_created: z.ZodISODateTime;
|
|
1888
1761
|
}, z.core.$strip>;
|
|
1889
|
-
export declare const
|
|
1890
|
-
|
|
1891
|
-
path: z.ZodObject<{
|
|
1892
|
-
token_id: z.ZodString;
|
|
1893
|
-
}, z.core.$strip>;
|
|
1894
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1762
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1763
|
+
token_id: z.ZodString;
|
|
1895
1764
|
}, z.core.$strip>;
|
|
1896
1765
|
/**
|
|
1897
1766
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1906,12 +1775,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1906
1775
|
secret: z.ZodOptional<z.ZodString>;
|
|
1907
1776
|
date_created: z.ZodISODateTime;
|
|
1908
1777
|
}, z.core.$strip>;
|
|
1909
|
-
export declare const
|
|
1910
|
-
|
|
1911
|
-
path: z.ZodObject<{
|
|
1912
|
-
email: z.ZodString;
|
|
1913
|
-
}, z.core.$strip>;
|
|
1914
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1778
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1779
|
+
email: z.ZodString;
|
|
1915
1780
|
}, z.core.$strip>;
|
|
1916
1781
|
/**
|
|
1917
1782
|
* An array of organizations the user belongs to.
|
|
@@ -1920,11 +1785,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1920
1785
|
realm: z.ZodOptional<z.ZodString>;
|
|
1921
1786
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1922
1787
|
}, z.core.$strip>>;
|
|
1923
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1924
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1925
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1926
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1927
|
-
}, z.core.$strip>;
|
|
1928
1788
|
/**
|
|
1929
1789
|
* An array of users
|
|
1930
1790
|
*/
|
|
@@ -1943,24 +1803,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1943
1803
|
id: z.ZodUUID;
|
|
1944
1804
|
date_created: z.ZodISODateTime;
|
|
1945
1805
|
}, z.core.$strip>>;
|
|
1946
|
-
export declare const
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
}>>;
|
|
1961
|
-
}, z.core.$strip>;
|
|
1962
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1963
|
-
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
|
+
}>>;
|
|
1964
1820
|
}, z.core.$strip>;
|
|
1965
1821
|
/**
|
|
1966
1822
|
* Successfully created. Returns created user details.
|
|
@@ -1980,12 +1836,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
1980
1836
|
id: z.ZodUUID;
|
|
1981
1837
|
date_created: z.ZodISODateTime;
|
|
1982
1838
|
}, z.core.$strip>;
|
|
1983
|
-
export declare const
|
|
1984
|
-
|
|
1985
|
-
path: z.ZodObject<{
|
|
1986
|
-
user_id: z.ZodString;
|
|
1987
|
-
}, z.core.$strip>;
|
|
1988
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1839
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1840
|
+
user_id: z.ZodString;
|
|
1989
1841
|
}, z.core.$strip>;
|
|
1990
1842
|
/**
|
|
1991
1843
|
* User profile information
|
|
@@ -2005,12 +1857,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2005
1857
|
id: z.ZodUUID;
|
|
2006
1858
|
date_created: z.ZodISODateTime;
|
|
2007
1859
|
}, z.core.$strip>;
|
|
2008
|
-
export declare const
|
|
2009
|
-
|
|
2010
|
-
path: z.ZodObject<{
|
|
2011
|
-
user_id: z.ZodString;
|
|
2012
|
-
}, z.core.$strip>;
|
|
2013
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1860
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1861
|
+
user_id: z.ZodString;
|
|
2014
1862
|
}, z.core.$strip>;
|
|
2015
1863
|
/**
|
|
2016
1864
|
* User profile information
|
|
@@ -2030,24 +1878,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2030
1878
|
id: z.ZodUUID;
|
|
2031
1879
|
date_created: z.ZodISODateTime;
|
|
2032
1880
|
}, z.core.$strip>;
|
|
2033
|
-
export declare const
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
user_id: z.ZodString;
|
|
2049
|
-
}, z.core.$strip>;
|
|
2050
|
-
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;
|
|
2051
1896
|
}, z.core.$strip>;
|
|
2052
1897
|
/**
|
|
2053
1898
|
* Successfully created. Returns created user details.
|