@cloudfleet/sdk 0.0.1-3f23569 → 0.0.1-4147743
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 +5 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +2 -2
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +1 -1
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +4 -4
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +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 +2 -26
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +0 -28
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +1 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +0 -16
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +349 -557
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +104 -310
- package/dist/zod.gen.js.map +1 -1
- package/package.json +2 -2
package/dist/zod.gen.d.ts
CHANGED
|
@@ -390,8 +390,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
390
390
|
id: z.ZodString;
|
|
391
391
|
label: z.ZodString;
|
|
392
392
|
}, z.core.$strip>>;
|
|
393
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
394
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
395
393
|
cfcr_storage_gb: z.ZodInt;
|
|
396
394
|
}, z.core.$strip>;
|
|
397
395
|
status: z.ZodEnum<{
|
|
@@ -433,8 +431,6 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
433
431
|
id: z.ZodString;
|
|
434
432
|
label: z.ZodString;
|
|
435
433
|
}, z.core.$strip>>;
|
|
436
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
437
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
438
434
|
cfcr_storage_gb: z.ZodInt;
|
|
439
435
|
}, z.core.$strip>;
|
|
440
436
|
export declare const zRegistryRepository: z.ZodObject<{
|
|
@@ -576,16 +572,12 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
576
572
|
inactive: "inactive";
|
|
577
573
|
}>>;
|
|
578
574
|
}, z.core.$strip>;
|
|
579
|
-
export declare const
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
daily: "daily";
|
|
586
|
-
monthly: "monthly";
|
|
587
|
-
}>>;
|
|
588
|
-
}, z.core.$strip>>;
|
|
575
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
576
|
+
granularity: z.ZodOptional<z.ZodEnum<{
|
|
577
|
+
hourly: "hourly";
|
|
578
|
+
daily: "daily";
|
|
579
|
+
monthly: "monthly";
|
|
580
|
+
}>>;
|
|
589
581
|
}, z.core.$strip>;
|
|
590
582
|
/**
|
|
591
583
|
* Usage data with facets for filtering
|
|
@@ -604,11 +596,6 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
604
596
|
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
605
597
|
}, z.core.$strip>;
|
|
606
598
|
}, z.core.$strip>;
|
|
607
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
608
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
609
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
610
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
611
|
-
}, z.core.$strip>;
|
|
612
599
|
/**
|
|
613
600
|
* Redacted payment card information.
|
|
614
601
|
*/
|
|
@@ -633,11 +620,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
633
620
|
visa: "visa";
|
|
634
621
|
}>;
|
|
635
622
|
}, z.core.$strip>;
|
|
636
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
637
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
638
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
639
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
640
|
-
}, z.core.$strip>;
|
|
641
623
|
/**
|
|
642
624
|
* 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.
|
|
643
625
|
*
|
|
@@ -645,11 +627,6 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
645
627
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
646
628
|
id: z.ZodOptional<z.ZodString>;
|
|
647
629
|
}, z.core.$strip>;
|
|
648
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
649
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
650
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
651
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
652
|
-
}, z.core.$strip>;
|
|
653
630
|
/**
|
|
654
631
|
* An array of usage records.
|
|
655
632
|
*/
|
|
@@ -664,11 +641,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
664
641
|
period_end: z.ZodISODateTime;
|
|
665
642
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
666
643
|
}, z.core.$strip>>;
|
|
667
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
668
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
669
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
670
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
671
|
-
}, z.core.$strip>;
|
|
672
644
|
/**
|
|
673
645
|
* Returns a single object containing organization contact and billing address details.
|
|
674
646
|
*/
|
|
@@ -815,152 +787,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
815
787
|
zw_tin: "zw_tin";
|
|
816
788
|
}>>;
|
|
817
789
|
}, z.core.$strip>;
|
|
818
|
-
export declare const
|
|
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
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
}>>;
|
|
961
|
-
}, z.core.$strip>;
|
|
962
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
963
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
790
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
791
|
+
company: z.ZodOptional<z.ZodString>;
|
|
792
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
793
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
794
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
795
|
+
city: z.ZodOptional<z.ZodString>;
|
|
796
|
+
state: z.ZodOptional<z.ZodString>;
|
|
797
|
+
country: z.ZodOptional<z.ZodString>;
|
|
798
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
799
|
+
email: z.ZodEmail;
|
|
800
|
+
individual_name: z.ZodString;
|
|
801
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
802
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
803
|
+
"": "";
|
|
804
|
+
ad_nrt: "ad_nrt";
|
|
805
|
+
ae_trn: "ae_trn";
|
|
806
|
+
al_tin: "al_tin";
|
|
807
|
+
am_tin: "am_tin";
|
|
808
|
+
ao_tin: "ao_tin";
|
|
809
|
+
ar_cuit: "ar_cuit";
|
|
810
|
+
at_vat: "at_vat";
|
|
811
|
+
au_abn: "au_abn";
|
|
812
|
+
au_arn: "au_arn";
|
|
813
|
+
ba_tin: "ba_tin";
|
|
814
|
+
bb_tin: "bb_tin";
|
|
815
|
+
be_vat: "be_vat";
|
|
816
|
+
bg_uic: "bg_uic";
|
|
817
|
+
bg_vat: "bg_vat";
|
|
818
|
+
bh_vat: "bh_vat";
|
|
819
|
+
bo_tin: "bo_tin";
|
|
820
|
+
br_cnpj: "br_cnpj";
|
|
821
|
+
br_cpf: "br_cpf";
|
|
822
|
+
bs_tin: "bs_tin";
|
|
823
|
+
by_tin: "by_tin";
|
|
824
|
+
ca_bn: "ca_bn";
|
|
825
|
+
ca_gst_hst: "ca_gst_hst";
|
|
826
|
+
ca_pst_bc: "ca_pst_bc";
|
|
827
|
+
ca_pst_mb: "ca_pst_mb";
|
|
828
|
+
ca_pst_sk: "ca_pst_sk";
|
|
829
|
+
ca_qst: "ca_qst";
|
|
830
|
+
cd_nif: "cd_nif";
|
|
831
|
+
ch_uid: "ch_uid";
|
|
832
|
+
ch_vat: "ch_vat";
|
|
833
|
+
cl_tin: "cl_tin";
|
|
834
|
+
cn_tin: "cn_tin";
|
|
835
|
+
co_nit: "co_nit";
|
|
836
|
+
cr_tin: "cr_tin";
|
|
837
|
+
cy_vat: "cy_vat";
|
|
838
|
+
cz_vat: "cz_vat";
|
|
839
|
+
de_stn: "de_stn";
|
|
840
|
+
de_vat: "de_vat";
|
|
841
|
+
dk_vat: "dk_vat";
|
|
842
|
+
do_rcn: "do_rcn";
|
|
843
|
+
ec_ruc: "ec_ruc";
|
|
844
|
+
ee_vat: "ee_vat";
|
|
845
|
+
eg_tin: "eg_tin";
|
|
846
|
+
es_cif: "es_cif";
|
|
847
|
+
es_vat: "es_vat";
|
|
848
|
+
eu_oss_vat: "eu_oss_vat";
|
|
849
|
+
fi_vat: "fi_vat";
|
|
850
|
+
fr_vat: "fr_vat";
|
|
851
|
+
gb_vat: "gb_vat";
|
|
852
|
+
ge_vat: "ge_vat";
|
|
853
|
+
gn_nif: "gn_nif";
|
|
854
|
+
gr_vat: "gr_vat";
|
|
855
|
+
hk_br: "hk_br";
|
|
856
|
+
hr_oib: "hr_oib";
|
|
857
|
+
hr_vat: "hr_vat";
|
|
858
|
+
hu_tin: "hu_tin";
|
|
859
|
+
hu_vat: "hu_vat";
|
|
860
|
+
id_npwp: "id_npwp";
|
|
861
|
+
ie_vat: "ie_vat";
|
|
862
|
+
il_vat: "il_vat";
|
|
863
|
+
in_gst: "in_gst";
|
|
864
|
+
is_vat: "is_vat";
|
|
865
|
+
it_vat: "it_vat";
|
|
866
|
+
jp_cn: "jp_cn";
|
|
867
|
+
jp_rn: "jp_rn";
|
|
868
|
+
jp_trn: "jp_trn";
|
|
869
|
+
ke_pin: "ke_pin";
|
|
870
|
+
kh_tin: "kh_tin";
|
|
871
|
+
kr_brn: "kr_brn";
|
|
872
|
+
kz_bin: "kz_bin";
|
|
873
|
+
li_uid: "li_uid";
|
|
874
|
+
li_vat: "li_vat";
|
|
875
|
+
lt_vat: "lt_vat";
|
|
876
|
+
lu_vat: "lu_vat";
|
|
877
|
+
lv_vat: "lv_vat";
|
|
878
|
+
ma_vat: "ma_vat";
|
|
879
|
+
md_vat: "md_vat";
|
|
880
|
+
me_pib: "me_pib";
|
|
881
|
+
mk_vat: "mk_vat";
|
|
882
|
+
mr_nif: "mr_nif";
|
|
883
|
+
mt_vat: "mt_vat";
|
|
884
|
+
mx_rfc: "mx_rfc";
|
|
885
|
+
my_frp: "my_frp";
|
|
886
|
+
my_itn: "my_itn";
|
|
887
|
+
my_sst: "my_sst";
|
|
888
|
+
ng_tin: "ng_tin";
|
|
889
|
+
nl_vat: "nl_vat";
|
|
890
|
+
no_vat: "no_vat";
|
|
891
|
+
no_voec: "no_voec";
|
|
892
|
+
np_pan: "np_pan";
|
|
893
|
+
nz_gst: "nz_gst";
|
|
894
|
+
om_vat: "om_vat";
|
|
895
|
+
pe_ruc: "pe_ruc";
|
|
896
|
+
ph_tin: "ph_tin";
|
|
897
|
+
pl_vat: "pl_vat";
|
|
898
|
+
pt_vat: "pt_vat";
|
|
899
|
+
ro_tin: "ro_tin";
|
|
900
|
+
ro_vat: "ro_vat";
|
|
901
|
+
rs_pib: "rs_pib";
|
|
902
|
+
ru_inn: "ru_inn";
|
|
903
|
+
ru_kpp: "ru_kpp";
|
|
904
|
+
sa_vat: "sa_vat";
|
|
905
|
+
se_vat: "se_vat";
|
|
906
|
+
sg_gst: "sg_gst";
|
|
907
|
+
sg_uen: "sg_uen";
|
|
908
|
+
si_tin: "si_tin";
|
|
909
|
+
si_vat: "si_vat";
|
|
910
|
+
sk_vat: "sk_vat";
|
|
911
|
+
sn_ninea: "sn_ninea";
|
|
912
|
+
sr_fin: "sr_fin";
|
|
913
|
+
sv_nit: "sv_nit";
|
|
914
|
+
th_vat: "th_vat";
|
|
915
|
+
tj_tin: "tj_tin";
|
|
916
|
+
tr_tin: "tr_tin";
|
|
917
|
+
tw_vat: "tw_vat";
|
|
918
|
+
tz_vat: "tz_vat";
|
|
919
|
+
ua_vat: "ua_vat";
|
|
920
|
+
ug_tin: "ug_tin";
|
|
921
|
+
us_ein: "us_ein";
|
|
922
|
+
uy_ruc: "uy_ruc";
|
|
923
|
+
uz_tin: "uz_tin";
|
|
924
|
+
uz_vat: "uz_vat";
|
|
925
|
+
ve_rif: "ve_rif";
|
|
926
|
+
vn_tin: "vn_tin";
|
|
927
|
+
xi_vat: "xi_vat";
|
|
928
|
+
za_vat: "za_vat";
|
|
929
|
+
zm_tin: "zm_tin";
|
|
930
|
+
zw_tin: "zw_tin";
|
|
931
|
+
}>>;
|
|
964
932
|
}, z.core.$strip>;
|
|
965
933
|
/**
|
|
966
934
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1108,11 +1076,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1108
1076
|
zw_tin: "zw_tin";
|
|
1109
1077
|
}>>;
|
|
1110
1078
|
}, z.core.$strip>;
|
|
1111
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1112
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1113
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1114
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1115
|
-
}, z.core.$strip>;
|
|
1116
1079
|
/**
|
|
1117
1080
|
* An array of the applied promotional credits records.
|
|
1118
1081
|
*/
|
|
@@ -1129,19 +1092,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1129
1092
|
value_total: z.ZodNumber;
|
|
1130
1093
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1131
1094
|
}, z.core.$strip>>;
|
|
1132
|
-
export declare const
|
|
1133
|
-
|
|
1134
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1135
|
-
}, z.core.$strip>;
|
|
1136
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1137
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1095
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1096
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1138
1097
|
}, z.core.$strip>;
|
|
1139
|
-
export declare const
|
|
1140
|
-
|
|
1141
|
-
path: z.ZodObject<{
|
|
1142
|
-
cluster_id: z.ZodString;
|
|
1143
|
-
}, z.core.$strip>;
|
|
1144
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1098
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1099
|
+
cluster_id: z.ZodString;
|
|
1145
1100
|
}, z.core.$strip>;
|
|
1146
1101
|
/**
|
|
1147
1102
|
* An array of charts
|
|
@@ -1173,42 +1128,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1173
1128
|
updated_at: z.ZodString;
|
|
1174
1129
|
ready: z.ZodBoolean;
|
|
1175
1130
|
}, z.core.$strip>>;
|
|
1176
|
-
export declare const
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
cluster_id: z.ZodString;
|
|
1186
|
-
}, z.core.$strip>;
|
|
1187
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1131
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1132
|
+
values: z.ZodString;
|
|
1133
|
+
version_channel: z.ZodString;
|
|
1134
|
+
name: z.ZodString;
|
|
1135
|
+
namespace: z.ZodString;
|
|
1136
|
+
chart: z.ZodString;
|
|
1137
|
+
}, z.core.$strip>;
|
|
1138
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1139
|
+
cluster_id: z.ZodString;
|
|
1188
1140
|
}, z.core.$strip>;
|
|
1189
1141
|
/**
|
|
1190
1142
|
* Successfully created. Returns created Chart ID.
|
|
1191
1143
|
*/
|
|
1192
1144
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1193
|
-
export declare const
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
cluster_id: z.ZodString;
|
|
1197
|
-
chart_name: z.ZodString;
|
|
1198
|
-
}, z.core.$strip>;
|
|
1199
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1145
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1146
|
+
cluster_id: z.ZodString;
|
|
1147
|
+
chart_name: z.ZodString;
|
|
1200
1148
|
}, z.core.$strip>;
|
|
1201
1149
|
/**
|
|
1202
1150
|
* Successfully deleted.
|
|
1203
1151
|
*/
|
|
1204
1152
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1205
|
-
export declare const
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
cluster_id: z.ZodString;
|
|
1209
|
-
chart_name: z.ZodString;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1153
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1154
|
+
cluster_id: z.ZodString;
|
|
1155
|
+
chart_name: z.ZodString;
|
|
1212
1156
|
}, z.core.$strip>;
|
|
1213
1157
|
/**
|
|
1214
1158
|
* Returns a single object containing chart details.
|
|
@@ -1240,27 +1184,20 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1240
1184
|
updated_at: z.ZodString;
|
|
1241
1185
|
ready: z.ZodBoolean;
|
|
1242
1186
|
}, z.core.$strip>;
|
|
1243
|
-
export declare const
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
chart_name: z.ZodString;
|
|
1251
|
-
}, z.core.$strip>;
|
|
1252
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1187
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
1188
|
+
values: z.ZodString;
|
|
1189
|
+
version_channel: z.ZodString;
|
|
1190
|
+
}, z.core.$strip>;
|
|
1191
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
1192
|
+
cluster_id: z.ZodString;
|
|
1193
|
+
chart_name: z.ZodString;
|
|
1253
1194
|
}, z.core.$strip>;
|
|
1254
1195
|
/**
|
|
1255
1196
|
* Successfully updated.
|
|
1256
1197
|
*/
|
|
1257
1198
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1258
|
-
export declare const
|
|
1259
|
-
|
|
1260
|
-
path: z.ZodObject<{
|
|
1261
|
-
cluster_id: z.ZodString;
|
|
1262
|
-
}, z.core.$strip>;
|
|
1263
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1199
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
1200
|
+
cluster_id: z.ZodString;
|
|
1264
1201
|
}, z.core.$strip>;
|
|
1265
1202
|
/**
|
|
1266
1203
|
* An array of fleets
|
|
@@ -1283,53 +1220,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1283
1220
|
}, z.core.$strip>>;
|
|
1284
1221
|
id: z.ZodString;
|
|
1285
1222
|
}, 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
|
-
cluster_id: z.ZodString;
|
|
1307
|
-
}, z.core.$strip>;
|
|
1308
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1223
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1224
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1225
|
+
cpu: z.ZodNumber;
|
|
1226
|
+
}, z.core.$strip>>;
|
|
1227
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1228
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1229
|
+
project: z.ZodString;
|
|
1230
|
+
}, z.core.$strip>>;
|
|
1231
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1232
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1233
|
+
apiKey: z.ZodString;
|
|
1234
|
+
}, z.core.$strip>>;
|
|
1235
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1237
|
+
controllerRoleArn: z.ZodString;
|
|
1238
|
+
}, z.core.$strip>>;
|
|
1239
|
+
id: z.ZodString;
|
|
1240
|
+
}, z.core.$strip>;
|
|
1241
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
1242
|
+
cluster_id: z.ZodString;
|
|
1309
1243
|
}, z.core.$strip>;
|
|
1310
1244
|
/**
|
|
1311
1245
|
* Successfully created. Returns created Fleet ID.
|
|
1312
1246
|
*/
|
|
1313
1247
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1314
|
-
export declare const
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
cluster_id: z.ZodString;
|
|
1318
|
-
fleet_name: z.ZodString;
|
|
1319
|
-
}, z.core.$strip>;
|
|
1320
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1248
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
1249
|
+
cluster_id: z.ZodString;
|
|
1250
|
+
fleet_name: z.ZodString;
|
|
1321
1251
|
}, z.core.$strip>;
|
|
1322
1252
|
/**
|
|
1323
1253
|
* Successfully deleted.
|
|
1324
1254
|
*/
|
|
1325
1255
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1326
|
-
export declare const
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
cluster_id: z.ZodString;
|
|
1330
|
-
fleet_name: z.ZodString;
|
|
1331
|
-
}, z.core.$strip>;
|
|
1332
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1256
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
1257
|
+
cluster_id: z.ZodString;
|
|
1258
|
+
fleet_name: z.ZodString;
|
|
1333
1259
|
}, z.core.$strip>;
|
|
1334
1260
|
/**
|
|
1335
1261
|
* Returns a single object containing fleet details.
|
|
@@ -1352,45 +1278,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1352
1278
|
}, z.core.$strip>>;
|
|
1353
1279
|
id: z.ZodString;
|
|
1354
1280
|
}, z.core.$strip>;
|
|
1355
|
-
export declare const
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
fleet_name: z.ZodString;
|
|
1376
|
-
}, z.core.$strip>;
|
|
1377
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1281
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1282
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1283
|
+
cpu: z.ZodNumber;
|
|
1284
|
+
}, z.core.$strip>>;
|
|
1285
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1286
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1287
|
+
project: z.ZodString;
|
|
1288
|
+
}, z.core.$strip>>;
|
|
1289
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1291
|
+
apiKey: z.ZodString;
|
|
1292
|
+
}, z.core.$strip>>;
|
|
1293
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1294
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1295
|
+
controllerRoleArn: z.ZodString;
|
|
1296
|
+
}, z.core.$strip>>;
|
|
1297
|
+
}, z.core.$strip>;
|
|
1298
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1299
|
+
cluster_id: z.ZodString;
|
|
1300
|
+
fleet_name: z.ZodString;
|
|
1378
1301
|
}, z.core.$strip>;
|
|
1379
1302
|
/**
|
|
1380
1303
|
* Successfully updated.
|
|
1381
1304
|
*/
|
|
1382
1305
|
export declare const zUpdateFleetResponse: 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>;
|
|
1389
|
-
}, z.core.$strip>;
|
|
1390
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1391
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1392
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1393
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1306
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
1307
|
+
cluster_id: z.ZodString;
|
|
1394
1308
|
}, z.core.$strip>;
|
|
1395
1309
|
/**
|
|
1396
1310
|
* An array of clusters
|
|
@@ -1427,50 +1341,38 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1427
1341
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1428
1342
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1429
1343
|
}, z.core.$strip>>;
|
|
1430
|
-
export declare const
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
}>>;
|
|
1449
|
-
}, z.core.$strip>;
|
|
1450
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1451
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1344
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
1345
|
+
name: z.ZodString;
|
|
1346
|
+
tier: z.ZodEnum<{
|
|
1347
|
+
basic: "basic";
|
|
1348
|
+
pro: "pro";
|
|
1349
|
+
}>;
|
|
1350
|
+
region: z.ZodOptional<z.ZodEnum<{
|
|
1351
|
+
"staging-1a": "staging-1a";
|
|
1352
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
1353
|
+
"europe-central-1a": "europe-central-1a";
|
|
1354
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
1355
|
+
}>>;
|
|
1356
|
+
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
1357
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1358
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1359
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1360
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1361
|
+
}>>;
|
|
1452
1362
|
}, z.core.$strip>;
|
|
1453
1363
|
/**
|
|
1454
1364
|
* Successfully created. Returns created Cluster ID.
|
|
1455
1365
|
*/
|
|
1456
1366
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1457
|
-
export declare const
|
|
1458
|
-
|
|
1459
|
-
path: z.ZodObject<{
|
|
1460
|
-
cluster_id: z.ZodString;
|
|
1461
|
-
}, z.core.$strip>;
|
|
1462
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1367
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
1368
|
+
cluster_id: z.ZodString;
|
|
1463
1369
|
}, z.core.$strip>;
|
|
1464
1370
|
/**
|
|
1465
1371
|
* Successfully deleted.
|
|
1466
1372
|
*/
|
|
1467
1373
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1468
|
-
export declare const
|
|
1469
|
-
|
|
1470
|
-
path: z.ZodObject<{
|
|
1471
|
-
cluster_id: z.ZodString;
|
|
1472
|
-
}, z.core.$strip>;
|
|
1473
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1374
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
1375
|
+
cluster_id: z.ZodString;
|
|
1474
1376
|
}, z.core.$strip>;
|
|
1475
1377
|
/**
|
|
1476
1378
|
* Returns a single object containing cluster details.
|
|
@@ -1507,19 +1409,16 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1507
1409
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1508
1410
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1509
1411
|
}, z.core.$strip>;
|
|
1510
|
-
export declare const
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
cluster_id: z.ZodString;
|
|
1521
|
-
}, z.core.$strip>;
|
|
1522
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1412
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
1413
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1414
|
+
tier: z.ZodEnum<{
|
|
1415
|
+
basic: "basic";
|
|
1416
|
+
pro: "pro";
|
|
1417
|
+
}>;
|
|
1418
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1419
|
+
}, z.core.$strip>;
|
|
1420
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
1421
|
+
cluster_id: z.ZodString;
|
|
1523
1422
|
}, z.core.$strip>;
|
|
1524
1423
|
/**
|
|
1525
1424
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1556,12 +1455,8 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1556
1455
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1557
1456
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1558
1457
|
}, z.core.$strip>;
|
|
1559
|
-
export declare const
|
|
1560
|
-
|
|
1561
|
-
path: z.ZodObject<{
|
|
1562
|
-
cluster_id: z.ZodString;
|
|
1563
|
-
}, z.core.$strip>;
|
|
1564
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1458
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1459
|
+
cluster_id: z.ZodString;
|
|
1565
1460
|
}, z.core.$strip>;
|
|
1566
1461
|
/**
|
|
1567
1462
|
* An object of cluster join information
|
|
@@ -1584,11 +1479,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1584
1479
|
gcp_workload_identity_provider: z.ZodString;
|
|
1585
1480
|
}, z.core.$strip>;
|
|
1586
1481
|
}, z.core.$strip>;
|
|
1587
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1588
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1589
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1590
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1591
|
-
}, z.core.$strip>;
|
|
1592
1482
|
/**
|
|
1593
1483
|
* An array of invites
|
|
1594
1484
|
*/
|
|
@@ -1599,12 +1489,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1599
1489
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1600
1490
|
code: z.ZodOptional<z.ZodString>;
|
|
1601
1491
|
}, z.core.$strip>>;
|
|
1602
|
-
export declare const
|
|
1603
|
-
|
|
1604
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1605
|
-
}, z.core.$strip>;
|
|
1606
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1607
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1492
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1493
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1608
1494
|
}, z.core.$strip>;
|
|
1609
1495
|
/**
|
|
1610
1496
|
* Successfully created. Returns created invite details.
|
|
@@ -1616,12 +1502,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1616
1502
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1617
1503
|
code: z.ZodOptional<z.ZodString>;
|
|
1618
1504
|
}, z.core.$strip>;
|
|
1619
|
-
export declare const
|
|
1620
|
-
|
|
1621
|
-
path: z.ZodObject<{
|
|
1622
|
-
code: z.ZodString;
|
|
1623
|
-
}, z.core.$strip>;
|
|
1624
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1505
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
1506
|
+
code: z.ZodString;
|
|
1625
1507
|
}, z.core.$strip>;
|
|
1626
1508
|
/**
|
|
1627
1509
|
* Returns a single object containing invite details.
|
|
@@ -1633,17 +1515,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1633
1515
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1634
1516
|
code: z.ZodOptional<z.ZodString>;
|
|
1635
1517
|
}, z.core.$strip>;
|
|
1636
|
-
export declare const
|
|
1637
|
-
|
|
1638
|
-
path: z.ZodObject<{
|
|
1639
|
-
email: z.ZodString;
|
|
1640
|
-
}, z.core.$strip>;
|
|
1641
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1642
|
-
}, z.core.$strip>;
|
|
1643
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1644
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1645
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1646
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1518
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1519
|
+
email: z.ZodString;
|
|
1647
1520
|
}, z.core.$strip>;
|
|
1648
1521
|
/**
|
|
1649
1522
|
* An array of chart listings in the marketplace.
|
|
@@ -1669,13 +1542,9 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1669
1542
|
}, z.core.$strip>>>;
|
|
1670
1543
|
}, z.core.$strip>>;
|
|
1671
1544
|
}, z.core.$strip>>;
|
|
1672
|
-
export declare const
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
chart_name: z.ZodString;
|
|
1676
|
-
version_channel: z.ZodString;
|
|
1677
|
-
}, z.core.$strip>;
|
|
1678
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1545
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1546
|
+
chart_name: z.ZodString;
|
|
1547
|
+
version_channel: z.ZodString;
|
|
1679
1548
|
}, z.core.$strip>;
|
|
1680
1549
|
/**
|
|
1681
1550
|
* Returns an object containing the chart files for the latest matching version.
|
|
@@ -1685,15 +1554,14 @@ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
|
1685
1554
|
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1686
1555
|
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1687
1556
|
}, z.core.$strip>;
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1557
|
+
/**
|
|
1558
|
+
* JSON-RPC 2.0 request payload
|
|
1559
|
+
*/
|
|
1560
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
1561
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
1562
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1563
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
1564
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1697
1565
|
}, z.core.$strip>;
|
|
1698
1566
|
/**
|
|
1699
1567
|
* JSON-RPC 2.0 success or error response
|
|
@@ -1707,11 +1575,6 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1707
1575
|
message: z.ZodOptional<z.ZodString>;
|
|
1708
1576
|
}, z.core.$strip>>;
|
|
1709
1577
|
}, z.core.$strip>;
|
|
1710
|
-
export declare const zGetOrganizationData: z.ZodObject<{
|
|
1711
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1712
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1713
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1714
|
-
}, z.core.$strip>;
|
|
1715
1578
|
/**
|
|
1716
1579
|
* Returns a single object containing organization details.
|
|
1717
1580
|
*/
|
|
@@ -1731,8 +1594,6 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1731
1594
|
id: z.ZodString;
|
|
1732
1595
|
label: z.ZodString;
|
|
1733
1596
|
}, z.core.$strip>>;
|
|
1734
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
1735
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
1736
1597
|
cfcr_storage_gb: z.ZodInt;
|
|
1737
1598
|
}, z.core.$strip>;
|
|
1738
1599
|
status: z.ZodEnum<{
|
|
@@ -1741,21 +1602,12 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1741
1602
|
suspended: "suspended";
|
|
1742
1603
|
}>;
|
|
1743
1604
|
}, z.core.$strip>;
|
|
1744
|
-
export declare const
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
password: z.ZodString;
|
|
1751
|
-
}, z.core.$strip>;
|
|
1752
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1753
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1754
|
-
}, z.core.$strip>;
|
|
1755
|
-
export declare const zListRepositoriesData: z.ZodObject<{
|
|
1756
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1757
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1758
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1605
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1606
|
+
email: z.ZodEmail;
|
|
1607
|
+
first_name: z.ZodString;
|
|
1608
|
+
last_name: z.ZodString;
|
|
1609
|
+
company_name: z.ZodString;
|
|
1610
|
+
password: z.ZodString;
|
|
1759
1611
|
}, z.core.$strip>;
|
|
1760
1612
|
/**
|
|
1761
1613
|
* List of repositories
|
|
@@ -1765,13 +1617,9 @@ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1765
1617
|
region: z.ZodString;
|
|
1766
1618
|
uri: z.ZodString;
|
|
1767
1619
|
}, z.core.$strip>>;
|
|
1768
|
-
export declare const
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
region: z.ZodString;
|
|
1772
|
-
repository: z.ZodString;
|
|
1773
|
-
}, z.core.$strip>;
|
|
1774
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1620
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1621
|
+
region: z.ZodString;
|
|
1622
|
+
repository: z.ZodString;
|
|
1775
1623
|
}, z.core.$strip>;
|
|
1776
1624
|
/**
|
|
1777
1625
|
* Repository with tags
|
|
@@ -1788,23 +1636,15 @@ export declare const zListTagsResponse: z.ZodObject<{
|
|
|
1788
1636
|
}, z.core.$strip>>;
|
|
1789
1637
|
totalSize: z.ZodNumber;
|
|
1790
1638
|
}, z.core.$strip>;
|
|
1791
|
-
export declare const
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
export declare const zGetTagData: z.ZodObject<{
|
|
1801
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1802
|
-
path: z.ZodObject<{
|
|
1803
|
-
region: z.ZodString;
|
|
1804
|
-
repository: z.ZodString;
|
|
1805
|
-
tag: z.ZodString;
|
|
1806
|
-
}, z.core.$strip>;
|
|
1807
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1639
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1640
|
+
region: z.ZodString;
|
|
1641
|
+
repository: z.ZodString;
|
|
1642
|
+
tag: z.ZodString;
|
|
1643
|
+
}, z.core.$strip>;
|
|
1644
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1645
|
+
region: z.ZodString;
|
|
1646
|
+
repository: z.ZodString;
|
|
1647
|
+
tag: z.ZodString;
|
|
1808
1648
|
}, z.core.$strip>;
|
|
1809
1649
|
/**
|
|
1810
1650
|
* Tag details
|
|
@@ -1838,11 +1678,6 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1838
1678
|
repository: z.ZodString;
|
|
1839
1679
|
uri: z.ZodString;
|
|
1840
1680
|
}, z.core.$strip>;
|
|
1841
|
-
export declare const zListTokensData: z.ZodObject<{
|
|
1842
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1843
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1844
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1845
|
-
}, z.core.$strip>;
|
|
1846
1681
|
/**
|
|
1847
1682
|
* Returns a list of access token details with masked secrets.
|
|
1848
1683
|
*/
|
|
@@ -1856,16 +1691,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1856
1691
|
secret: z.ZodOptional<z.ZodString>;
|
|
1857
1692
|
date_created: z.ZodISODateTime;
|
|
1858
1693
|
}, z.core.$strip>>;
|
|
1859
|
-
export declare const
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
}>;
|
|
1866
|
-
}, z.core.$strip>;
|
|
1867
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1868
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1694
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1695
|
+
name: z.ZodString;
|
|
1696
|
+
role: z.ZodEnum<{
|
|
1697
|
+
Administrator: "Administrator";
|
|
1698
|
+
User: "User";
|
|
1699
|
+
}>;
|
|
1869
1700
|
}, z.core.$strip>;
|
|
1870
1701
|
/**
|
|
1871
1702
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1880,19 +1711,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1880
1711
|
secret: z.ZodOptional<z.ZodString>;
|
|
1881
1712
|
date_created: z.ZodISODateTime;
|
|
1882
1713
|
}, z.core.$strip>;
|
|
1883
|
-
export declare const
|
|
1884
|
-
|
|
1885
|
-
path: z.ZodObject<{
|
|
1886
|
-
token_id: z.ZodString;
|
|
1887
|
-
}, z.core.$strip>;
|
|
1888
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1714
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1715
|
+
token_id: z.ZodString;
|
|
1889
1716
|
}, z.core.$strip>;
|
|
1890
|
-
export declare const
|
|
1891
|
-
|
|
1892
|
-
path: z.ZodObject<{
|
|
1893
|
-
token_id: z.ZodString;
|
|
1894
|
-
}, z.core.$strip>;
|
|
1895
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1717
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1718
|
+
token_id: z.ZodString;
|
|
1896
1719
|
}, z.core.$strip>;
|
|
1897
1720
|
/**
|
|
1898
1721
|
* Returns access token details with masked secret.
|
|
@@ -1907,18 +1730,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1907
1730
|
secret: z.ZodOptional<z.ZodString>;
|
|
1908
1731
|
date_created: z.ZodISODateTime;
|
|
1909
1732
|
}, z.core.$strip>;
|
|
1910
|
-
export declare const
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
token_id: z.ZodString;
|
|
1920
|
-
}, z.core.$strip>;
|
|
1921
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1733
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1734
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1736
|
+
Administrator: "Administrator";
|
|
1737
|
+
User: "User";
|
|
1738
|
+
}>>;
|
|
1739
|
+
}, z.core.$strip>;
|
|
1740
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1741
|
+
token_id: z.ZodString;
|
|
1922
1742
|
}, z.core.$strip>;
|
|
1923
1743
|
/**
|
|
1924
1744
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1933,12 +1753,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1933
1753
|
secret: z.ZodOptional<z.ZodString>;
|
|
1934
1754
|
date_created: z.ZodISODateTime;
|
|
1935
1755
|
}, z.core.$strip>;
|
|
1936
|
-
export declare const
|
|
1937
|
-
|
|
1938
|
-
path: z.ZodObject<{
|
|
1939
|
-
token_id: z.ZodString;
|
|
1940
|
-
}, z.core.$strip>;
|
|
1941
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1756
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1757
|
+
token_id: z.ZodString;
|
|
1942
1758
|
}, z.core.$strip>;
|
|
1943
1759
|
/**
|
|
1944
1760
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1953,12 +1769,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1953
1769
|
secret: z.ZodOptional<z.ZodString>;
|
|
1954
1770
|
date_created: z.ZodISODateTime;
|
|
1955
1771
|
}, z.core.$strip>;
|
|
1956
|
-
export declare const
|
|
1957
|
-
|
|
1958
|
-
path: z.ZodObject<{
|
|
1959
|
-
email: z.ZodString;
|
|
1960
|
-
}, z.core.$strip>;
|
|
1961
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1772
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1773
|
+
email: z.ZodString;
|
|
1962
1774
|
}, z.core.$strip>;
|
|
1963
1775
|
/**
|
|
1964
1776
|
* An array of organizations the user belongs to.
|
|
@@ -1967,11 +1779,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1967
1779
|
realm: z.ZodOptional<z.ZodString>;
|
|
1968
1780
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1969
1781
|
}, z.core.$strip>>;
|
|
1970
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1971
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1972
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1973
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1974
|
-
}, z.core.$strip>;
|
|
1975
1782
|
/**
|
|
1976
1783
|
* An array of users
|
|
1977
1784
|
*/
|
|
@@ -1990,24 +1797,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1990
1797
|
id: z.ZodUUID;
|
|
1991
1798
|
date_created: z.ZodISODateTime;
|
|
1992
1799
|
}, z.core.$strip>>;
|
|
1993
|
-
export declare const
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
}>>;
|
|
2008
|
-
}, z.core.$strip>;
|
|
2009
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2010
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1800
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1801
|
+
email: z.ZodEmail;
|
|
1802
|
+
first_name: z.ZodString;
|
|
1803
|
+
last_name: z.ZodString;
|
|
1804
|
+
code: z.ZodString;
|
|
1805
|
+
password: z.ZodString;
|
|
1806
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1807
|
+
active: "active";
|
|
1808
|
+
inactive: "inactive";
|
|
1809
|
+
}>>;
|
|
1810
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1811
|
+
Administrator: "Administrator";
|
|
1812
|
+
User: "User";
|
|
1813
|
+
}>>;
|
|
2011
1814
|
}, z.core.$strip>;
|
|
2012
1815
|
/**
|
|
2013
1816
|
* Successfully created. Returns created user details.
|
|
@@ -2027,12 +1830,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2027
1830
|
id: z.ZodUUID;
|
|
2028
1831
|
date_created: z.ZodISODateTime;
|
|
2029
1832
|
}, z.core.$strip>;
|
|
2030
|
-
export declare const
|
|
2031
|
-
|
|
2032
|
-
path: z.ZodObject<{
|
|
2033
|
-
user_id: z.ZodString;
|
|
2034
|
-
}, z.core.$strip>;
|
|
2035
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1833
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1834
|
+
user_id: z.ZodString;
|
|
2036
1835
|
}, z.core.$strip>;
|
|
2037
1836
|
/**
|
|
2038
1837
|
* User profile information
|
|
@@ -2052,12 +1851,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2052
1851
|
id: z.ZodUUID;
|
|
2053
1852
|
date_created: z.ZodISODateTime;
|
|
2054
1853
|
}, z.core.$strip>;
|
|
2055
|
-
export declare const
|
|
2056
|
-
|
|
2057
|
-
path: z.ZodObject<{
|
|
2058
|
-
user_id: z.ZodString;
|
|
2059
|
-
}, z.core.$strip>;
|
|
2060
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1854
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1855
|
+
user_id: z.ZodString;
|
|
2061
1856
|
}, z.core.$strip>;
|
|
2062
1857
|
/**
|
|
2063
1858
|
* User profile information
|
|
@@ -2077,24 +1872,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2077
1872
|
id: z.ZodUUID;
|
|
2078
1873
|
date_created: z.ZodISODateTime;
|
|
2079
1874
|
}, z.core.$strip>;
|
|
2080
|
-
export declare const
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
user_id: z.ZodString;
|
|
2096
|
-
}, z.core.$strip>;
|
|
2097
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1875
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1876
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1877
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1878
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1879
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1880
|
+
Administrator: "Administrator";
|
|
1881
|
+
User: "User";
|
|
1882
|
+
}>>;
|
|
1883
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1884
|
+
active: "active";
|
|
1885
|
+
inactive: "inactive";
|
|
1886
|
+
}>>;
|
|
1887
|
+
}, z.core.$strip>;
|
|
1888
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1889
|
+
user_id: z.ZodString;
|
|
2098
1890
|
}, z.core.$strip>;
|
|
2099
1891
|
/**
|
|
2100
1892
|
* Successfully created. Returns created user details.
|