@cloudfleet/sdk 0.6.4 → 0.6.5
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/sdk.gen.d.ts +48 -55
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +14 -14
- package/dist/sdk.gen.js.map +1 -1
- package/dist/zod.gen.d.ts +607 -0
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +285 -0
- package/dist/zod.gen.js.map +1 -1
- package/package.json +6 -6
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1090,6 +1090,9 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1090
1090
|
first_name?: string | undefined;
|
|
1091
1091
|
last_name?: string | undefined;
|
|
1092
1092
|
}>;
|
|
1093
|
+
/**
|
|
1094
|
+
* An array of usage records.
|
|
1095
|
+
*/
|
|
1093
1096
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1094
1097
|
hour: z.ZodOptional<z.ZodString>;
|
|
1095
1098
|
cluster_id: z.ZodString;
|
|
@@ -1124,7 +1127,13 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
|
1124
1127
|
price: number | "";
|
|
1125
1128
|
hour?: string | undefined;
|
|
1126
1129
|
}>, "many">;
|
|
1130
|
+
/**
|
|
1131
|
+
* Current balance of the organization in USD as a floating-point number.
|
|
1132
|
+
*/
|
|
1127
1133
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1134
|
+
/**
|
|
1135
|
+
* Redacted payment card information.
|
|
1136
|
+
*/
|
|
1128
1137
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
1129
1138
|
id: z.ZodString;
|
|
1130
1139
|
setup: z.ZodBoolean;
|
|
@@ -1150,6 +1159,10 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1150
1159
|
exp_year: number;
|
|
1151
1160
|
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1152
1161
|
}>;
|
|
1162
|
+
/**
|
|
1163
|
+
* 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.
|
|
1164
|
+
*
|
|
1165
|
+
*/
|
|
1153
1166
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1154
1167
|
id: z.ZodOptional<z.ZodString>;
|
|
1155
1168
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1157,6 +1170,17 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
|
1157
1170
|
}, {
|
|
1158
1171
|
id?: string | undefined;
|
|
1159
1172
|
}>;
|
|
1173
|
+
/**
|
|
1174
|
+
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1175
|
+
*/
|
|
1176
|
+
export declare const zListInvoicesParameterStartDate: z.ZodString;
|
|
1177
|
+
/**
|
|
1178
|
+
* End date for the usage. Date of newest data point to retrieve.
|
|
1179
|
+
*/
|
|
1180
|
+
export declare const zListInvoicesParameterEndDate: z.ZodString;
|
|
1181
|
+
/**
|
|
1182
|
+
* An array of usage records.
|
|
1183
|
+
*/
|
|
1160
1184
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
1161
1185
|
id: z.ZodOptional<z.ZodString>;
|
|
1162
1186
|
organizationId: z.ZodOptional<z.ZodString>;
|
|
@@ -1423,6 +1447,13 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1423
1447
|
childItems?: unknown[] | undefined;
|
|
1424
1448
|
}[] | undefined;
|
|
1425
1449
|
}>, "many">;
|
|
1450
|
+
/**
|
|
1451
|
+
* Unique invoice identifier. UUID v4 string in canonical form
|
|
1452
|
+
*/
|
|
1453
|
+
export declare const zGetInvoiceParameterId: z.ZodString;
|
|
1454
|
+
/**
|
|
1455
|
+
* Returns a single Invoice HTML representation under `html` property.
|
|
1456
|
+
*/
|
|
1426
1457
|
export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
1427
1458
|
html: z.ZodOptional<z.ZodString>;
|
|
1428
1459
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1430,6 +1461,9 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1430
1461
|
}, {
|
|
1431
1462
|
html?: string | undefined;
|
|
1432
1463
|
}>;
|
|
1464
|
+
/**
|
|
1465
|
+
* Returns a single object containing organization contact and billing address details.
|
|
1466
|
+
*/
|
|
1433
1467
|
export declare const zGetContactResponse: z.ZodObject<{
|
|
1434
1468
|
company: z.ZodOptional<z.ZodString>;
|
|
1435
1469
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -1473,6 +1507,52 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1473
1507
|
tax_id?: string | undefined;
|
|
1474
1508
|
tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
|
|
1475
1509
|
}>;
|
|
1510
|
+
export declare const zUpdateContactData: z.ZodObject<{
|
|
1511
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1512
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1513
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1514
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1515
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1516
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1517
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1518
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1519
|
+
email: z.ZodString;
|
|
1520
|
+
first_name: z.ZodString;
|
|
1521
|
+
last_name: z.ZodString;
|
|
1522
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1523
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""]>>;
|
|
1524
|
+
}, "strip", z.ZodTypeAny, {
|
|
1525
|
+
email: string;
|
|
1526
|
+
first_name: string;
|
|
1527
|
+
last_name: string;
|
|
1528
|
+
state?: string | undefined;
|
|
1529
|
+
country?: string | undefined;
|
|
1530
|
+
company?: string | undefined;
|
|
1531
|
+
address1?: string | undefined;
|
|
1532
|
+
address2?: string | undefined;
|
|
1533
|
+
postalCode?: string | undefined;
|
|
1534
|
+
city?: string | undefined;
|
|
1535
|
+
phone?: string | undefined;
|
|
1536
|
+
tax_id?: string | undefined;
|
|
1537
|
+
tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
|
|
1538
|
+
}, {
|
|
1539
|
+
email: string;
|
|
1540
|
+
first_name: string;
|
|
1541
|
+
last_name: string;
|
|
1542
|
+
state?: string | undefined;
|
|
1543
|
+
country?: string | undefined;
|
|
1544
|
+
company?: string | undefined;
|
|
1545
|
+
address1?: string | undefined;
|
|
1546
|
+
address2?: string | undefined;
|
|
1547
|
+
postalCode?: string | undefined;
|
|
1548
|
+
city?: string | undefined;
|
|
1549
|
+
phone?: string | undefined;
|
|
1550
|
+
tax_id?: string | undefined;
|
|
1551
|
+
tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
|
|
1552
|
+
}>;
|
|
1553
|
+
/**
|
|
1554
|
+
* Successfully updated. Returns updated organization details.
|
|
1555
|
+
*/
|
|
1476
1556
|
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1477
1557
|
company: z.ZodOptional<z.ZodString>;
|
|
1478
1558
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -1516,6 +1596,9 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1516
1596
|
tax_id?: string | undefined;
|
|
1517
1597
|
tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
|
|
1518
1598
|
}>;
|
|
1599
|
+
/**
|
|
1600
|
+
* An array of the applied promotional credits records.
|
|
1601
|
+
*/
|
|
1519
1602
|
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1520
1603
|
id: z.ZodOptional<z.ZodString>;
|
|
1521
1604
|
date_created: z.ZodString;
|
|
@@ -1547,6 +1630,20 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1547
1630
|
products?: string[] | undefined;
|
|
1548
1631
|
value_remaining?: number | undefined;
|
|
1549
1632
|
}>, "many">;
|
|
1633
|
+
export declare const zRedeemCreditsData: z.ZodObject<{
|
|
1634
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1635
|
+
}, "strip", z.ZodTypeAny, {
|
|
1636
|
+
code?: string | undefined;
|
|
1637
|
+
}, {
|
|
1638
|
+
code?: string | undefined;
|
|
1639
|
+
}>;
|
|
1640
|
+
/**
|
|
1641
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1642
|
+
*/
|
|
1643
|
+
export declare const zListChartsParameterClusterId: z.ZodString;
|
|
1644
|
+
/**
|
|
1645
|
+
* An array of charts
|
|
1646
|
+
*/
|
|
1550
1647
|
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1551
1648
|
values: z.ZodString;
|
|
1552
1649
|
version_channel: z.ZodString;
|
|
@@ -1581,8 +1678,56 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1581
1678
|
created_at: string;
|
|
1582
1679
|
updated_at: string;
|
|
1583
1680
|
}>, "many">;
|
|
1681
|
+
export declare const zCreateChartData: z.ZodObject<{
|
|
1682
|
+
values: z.ZodString;
|
|
1683
|
+
version_channel: z.ZodString;
|
|
1684
|
+
name: z.ZodString;
|
|
1685
|
+
namespace: z.ZodString;
|
|
1686
|
+
chart: z.ZodString;
|
|
1687
|
+
}, "strip", z.ZodTypeAny, {
|
|
1688
|
+
values: string;
|
|
1689
|
+
name: string;
|
|
1690
|
+
version_channel: string;
|
|
1691
|
+
namespace: string;
|
|
1692
|
+
chart: string;
|
|
1693
|
+
}, {
|
|
1694
|
+
values: string;
|
|
1695
|
+
name: string;
|
|
1696
|
+
version_channel: string;
|
|
1697
|
+
namespace: string;
|
|
1698
|
+
chart: string;
|
|
1699
|
+
}>;
|
|
1700
|
+
/**
|
|
1701
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1702
|
+
*/
|
|
1703
|
+
export declare const zCreateChartParameterClusterId: z.ZodString;
|
|
1704
|
+
/**
|
|
1705
|
+
* Successfully created. Returns created Chart ID.
|
|
1706
|
+
*/
|
|
1584
1707
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1708
|
+
/**
|
|
1709
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1710
|
+
*/
|
|
1711
|
+
export declare const zDeleteChartParameterClusterId: z.ZodString;
|
|
1712
|
+
/**
|
|
1713
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1714
|
+
*/
|
|
1715
|
+
export declare const zDeleteChartParameterChartName: z.ZodString;
|
|
1716
|
+
/**
|
|
1717
|
+
* Successfully deleted.
|
|
1718
|
+
*/
|
|
1585
1719
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1720
|
+
/**
|
|
1721
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1722
|
+
*/
|
|
1723
|
+
export declare const zGetChartParameterClusterId: z.ZodString;
|
|
1724
|
+
/**
|
|
1725
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1726
|
+
*/
|
|
1727
|
+
export declare const zGetChartParameterChartName: z.ZodString;
|
|
1728
|
+
/**
|
|
1729
|
+
* Returns a single object containing chart details.
|
|
1730
|
+
*/
|
|
1586
1731
|
export declare const zGetChartResponse: z.ZodObject<{
|
|
1587
1732
|
values: z.ZodString;
|
|
1588
1733
|
version_channel: z.ZodString;
|
|
@@ -1617,7 +1762,35 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1617
1762
|
created_at: string;
|
|
1618
1763
|
updated_at: string;
|
|
1619
1764
|
}>;
|
|
1765
|
+
export declare const zUpdateChartData: z.ZodObject<{
|
|
1766
|
+
values: z.ZodString;
|
|
1767
|
+
version_channel: z.ZodString;
|
|
1768
|
+
}, "strip", z.ZodTypeAny, {
|
|
1769
|
+
values: string;
|
|
1770
|
+
version_channel: string;
|
|
1771
|
+
}, {
|
|
1772
|
+
values: string;
|
|
1773
|
+
version_channel: string;
|
|
1774
|
+
}>;
|
|
1775
|
+
/**
|
|
1776
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1777
|
+
*/
|
|
1778
|
+
export declare const zUpdateChartParameterClusterId: z.ZodString;
|
|
1779
|
+
/**
|
|
1780
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1781
|
+
*/
|
|
1782
|
+
export declare const zUpdateChartParameterChartName: z.ZodString;
|
|
1783
|
+
/**
|
|
1784
|
+
* Successfully updated.
|
|
1785
|
+
*/
|
|
1620
1786
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1787
|
+
/**
|
|
1788
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1789
|
+
*/
|
|
1790
|
+
export declare const zListFleetsParameterClusterId: z.ZodString;
|
|
1791
|
+
/**
|
|
1792
|
+
* An array of fleets
|
|
1793
|
+
*/
|
|
1621
1794
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1622
1795
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1623
1796
|
cpu: z.ZodNumber;
|
|
@@ -1692,8 +1865,111 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1692
1865
|
enabled?: boolean | undefined;
|
|
1693
1866
|
} | undefined;
|
|
1694
1867
|
}>, "many">;
|
|
1868
|
+
export declare const zCreateFleetData: z.ZodObject<{
|
|
1869
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1870
|
+
cpu: z.ZodNumber;
|
|
1871
|
+
}, "strip", z.ZodTypeAny, {
|
|
1872
|
+
cpu: number;
|
|
1873
|
+
}, {
|
|
1874
|
+
cpu: number;
|
|
1875
|
+
}>>;
|
|
1876
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1877
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1878
|
+
project: z.ZodString;
|
|
1879
|
+
}, "strip", z.ZodTypeAny, {
|
|
1880
|
+
project: string;
|
|
1881
|
+
enabled: boolean;
|
|
1882
|
+
}, {
|
|
1883
|
+
project: string;
|
|
1884
|
+
enabled?: boolean | undefined;
|
|
1885
|
+
}>>;
|
|
1886
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1887
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1888
|
+
apiKey: z.ZodString;
|
|
1889
|
+
}, "strip", z.ZodTypeAny, {
|
|
1890
|
+
apiKey: string;
|
|
1891
|
+
enabled: boolean;
|
|
1892
|
+
}, {
|
|
1893
|
+
apiKey: string;
|
|
1894
|
+
enabled?: boolean | undefined;
|
|
1895
|
+
}>>;
|
|
1896
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1897
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1898
|
+
controllerRoleArn: z.ZodString;
|
|
1899
|
+
}, "strip", z.ZodTypeAny, {
|
|
1900
|
+
controllerRoleArn: string;
|
|
1901
|
+
enabled: boolean;
|
|
1902
|
+
}, {
|
|
1903
|
+
controllerRoleArn: string;
|
|
1904
|
+
enabled?: boolean | undefined;
|
|
1905
|
+
}>>;
|
|
1906
|
+
id: z.ZodString;
|
|
1907
|
+
}, "strip", z.ZodTypeAny, {
|
|
1908
|
+
id: string;
|
|
1909
|
+
limits?: {
|
|
1910
|
+
cpu: number;
|
|
1911
|
+
} | undefined;
|
|
1912
|
+
gcp?: {
|
|
1913
|
+
project: string;
|
|
1914
|
+
enabled: boolean;
|
|
1915
|
+
} | undefined;
|
|
1916
|
+
hetzner?: {
|
|
1917
|
+
apiKey: string;
|
|
1918
|
+
enabled: boolean;
|
|
1919
|
+
} | undefined;
|
|
1920
|
+
aws?: {
|
|
1921
|
+
controllerRoleArn: string;
|
|
1922
|
+
enabled: boolean;
|
|
1923
|
+
} | undefined;
|
|
1924
|
+
}, {
|
|
1925
|
+
id: string;
|
|
1926
|
+
limits?: {
|
|
1927
|
+
cpu: number;
|
|
1928
|
+
} | undefined;
|
|
1929
|
+
gcp?: {
|
|
1930
|
+
project: string;
|
|
1931
|
+
enabled?: boolean | undefined;
|
|
1932
|
+
} | undefined;
|
|
1933
|
+
hetzner?: {
|
|
1934
|
+
apiKey: string;
|
|
1935
|
+
enabled?: boolean | undefined;
|
|
1936
|
+
} | undefined;
|
|
1937
|
+
aws?: {
|
|
1938
|
+
controllerRoleArn: string;
|
|
1939
|
+
enabled?: boolean | undefined;
|
|
1940
|
+
} | undefined;
|
|
1941
|
+
}>;
|
|
1942
|
+
/**
|
|
1943
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1944
|
+
*/
|
|
1945
|
+
export declare const zCreateFleetParameterClusterId: z.ZodString;
|
|
1946
|
+
/**
|
|
1947
|
+
* Successfully created. Returns created Fleet ID.
|
|
1948
|
+
*/
|
|
1695
1949
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1950
|
+
/**
|
|
1951
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1952
|
+
*/
|
|
1953
|
+
export declare const zDeleteFleetParameterClusterId: z.ZodString;
|
|
1954
|
+
/**
|
|
1955
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1956
|
+
*/
|
|
1957
|
+
export declare const zDeleteFleetParameterFleetName: z.ZodString;
|
|
1958
|
+
/**
|
|
1959
|
+
* Successfully deleted.
|
|
1960
|
+
*/
|
|
1696
1961
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1962
|
+
/**
|
|
1963
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1964
|
+
*/
|
|
1965
|
+
export declare const zGetFleetParameterClusterId: z.ZodString;
|
|
1966
|
+
/**
|
|
1967
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1968
|
+
*/
|
|
1969
|
+
export declare const zGetFleetParameterFleetName: z.ZodString;
|
|
1970
|
+
/**
|
|
1971
|
+
* Returns a single object containing fleet details.
|
|
1972
|
+
*/
|
|
1697
1973
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1698
1974
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1699
1975
|
cpu: z.ZodNumber;
|
|
@@ -1768,7 +2044,96 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1768
2044
|
enabled?: boolean | undefined;
|
|
1769
2045
|
} | undefined;
|
|
1770
2046
|
}>;
|
|
2047
|
+
export declare const zUpdateFleetData: z.ZodObject<{
|
|
2048
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2049
|
+
cpu: z.ZodNumber;
|
|
2050
|
+
}, "strip", z.ZodTypeAny, {
|
|
2051
|
+
cpu: number;
|
|
2052
|
+
}, {
|
|
2053
|
+
cpu: number;
|
|
2054
|
+
}>>;
|
|
2055
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2056
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2057
|
+
project: z.ZodString;
|
|
2058
|
+
}, "strip", z.ZodTypeAny, {
|
|
2059
|
+
project: string;
|
|
2060
|
+
enabled: boolean;
|
|
2061
|
+
}, {
|
|
2062
|
+
project: string;
|
|
2063
|
+
enabled?: boolean | undefined;
|
|
2064
|
+
}>>;
|
|
2065
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2066
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2067
|
+
apiKey: z.ZodString;
|
|
2068
|
+
}, "strip", z.ZodTypeAny, {
|
|
2069
|
+
apiKey: string;
|
|
2070
|
+
enabled: boolean;
|
|
2071
|
+
}, {
|
|
2072
|
+
apiKey: string;
|
|
2073
|
+
enabled?: boolean | undefined;
|
|
2074
|
+
}>>;
|
|
2075
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2076
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2077
|
+
controllerRoleArn: z.ZodString;
|
|
2078
|
+
}, "strip", z.ZodTypeAny, {
|
|
2079
|
+
controllerRoleArn: string;
|
|
2080
|
+
enabled: boolean;
|
|
2081
|
+
}, {
|
|
2082
|
+
controllerRoleArn: string;
|
|
2083
|
+
enabled?: boolean | undefined;
|
|
2084
|
+
}>>;
|
|
2085
|
+
}, "strip", z.ZodTypeAny, {
|
|
2086
|
+
limits?: {
|
|
2087
|
+
cpu: number;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
gcp?: {
|
|
2090
|
+
project: string;
|
|
2091
|
+
enabled: boolean;
|
|
2092
|
+
} | undefined;
|
|
2093
|
+
hetzner?: {
|
|
2094
|
+
apiKey: string;
|
|
2095
|
+
enabled: boolean;
|
|
2096
|
+
} | undefined;
|
|
2097
|
+
aws?: {
|
|
2098
|
+
controllerRoleArn: string;
|
|
2099
|
+
enabled: boolean;
|
|
2100
|
+
} | undefined;
|
|
2101
|
+
}, {
|
|
2102
|
+
limits?: {
|
|
2103
|
+
cpu: number;
|
|
2104
|
+
} | undefined;
|
|
2105
|
+
gcp?: {
|
|
2106
|
+
project: string;
|
|
2107
|
+
enabled?: boolean | undefined;
|
|
2108
|
+
} | undefined;
|
|
2109
|
+
hetzner?: {
|
|
2110
|
+
apiKey: string;
|
|
2111
|
+
enabled?: boolean | undefined;
|
|
2112
|
+
} | undefined;
|
|
2113
|
+
aws?: {
|
|
2114
|
+
controllerRoleArn: string;
|
|
2115
|
+
enabled?: boolean | undefined;
|
|
2116
|
+
} | undefined;
|
|
2117
|
+
}>;
|
|
2118
|
+
/**
|
|
2119
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2120
|
+
*/
|
|
2121
|
+
export declare const zUpdateFleetParameterClusterId: z.ZodString;
|
|
2122
|
+
/**
|
|
2123
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2124
|
+
*/
|
|
2125
|
+
export declare const zUpdateFleetParameterFleetName: z.ZodString;
|
|
2126
|
+
/**
|
|
2127
|
+
* Successfully updated.
|
|
2128
|
+
*/
|
|
1771
2129
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
2130
|
+
/**
|
|
2131
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2132
|
+
*/
|
|
2133
|
+
export declare const zQueryClusterParameterClusterId: z.ZodString;
|
|
2134
|
+
/**
|
|
2135
|
+
* An array of clusters
|
|
2136
|
+
*/
|
|
1772
2137
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
1773
2138
|
name: z.ZodString;
|
|
1774
2139
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -1809,8 +2174,41 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1809
2174
|
endpoint?: string | undefined;
|
|
1810
2175
|
certificate_ca?: string | undefined;
|
|
1811
2176
|
}>, "many">;
|
|
2177
|
+
export declare const zCreateClusterData: z.ZodObject<{
|
|
2178
|
+
name: z.ZodString;
|
|
2179
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
2180
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2181
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2182
|
+
}, "strip", z.ZodTypeAny, {
|
|
2183
|
+
name: string;
|
|
2184
|
+
version_channel: string;
|
|
2185
|
+
tier: "basic" | "pro";
|
|
2186
|
+
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2187
|
+
}, {
|
|
2188
|
+
name: string;
|
|
2189
|
+
tier: "basic" | "pro";
|
|
2190
|
+
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2191
|
+
version_channel?: string | undefined;
|
|
2192
|
+
}>;
|
|
2193
|
+
/**
|
|
2194
|
+
* Successfully created. Returns created Cluster ID.
|
|
2195
|
+
*/
|
|
1812
2196
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
2197
|
+
/**
|
|
2198
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2199
|
+
*/
|
|
2200
|
+
export declare const zDeleteClusterParameterClusterId: z.ZodString;
|
|
2201
|
+
/**
|
|
2202
|
+
* Successfully deleted.
|
|
2203
|
+
*/
|
|
1813
2204
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
2205
|
+
/**
|
|
2206
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2207
|
+
*/
|
|
2208
|
+
export declare const zGetClusterParameterClusterId: z.ZodString;
|
|
2209
|
+
/**
|
|
2210
|
+
* Returns a single object containing cluster details.
|
|
2211
|
+
*/
|
|
1814
2212
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
1815
2213
|
name: z.ZodString;
|
|
1816
2214
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -1851,6 +2249,23 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1851
2249
|
endpoint?: string | undefined;
|
|
1852
2250
|
certificate_ca?: string | undefined;
|
|
1853
2251
|
}>;
|
|
2252
|
+
export declare const zUpdateClusterData: z.ZodObject<{
|
|
2253
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2255
|
+
}, "strip", z.ZodTypeAny, {
|
|
2256
|
+
name?: string | undefined;
|
|
2257
|
+
version_channel?: string | undefined;
|
|
2258
|
+
}, {
|
|
2259
|
+
name?: string | undefined;
|
|
2260
|
+
version_channel?: string | undefined;
|
|
2261
|
+
}>;
|
|
2262
|
+
/**
|
|
2263
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2264
|
+
*/
|
|
2265
|
+
export declare const zUpdateClusterParameterClusterId: z.ZodString;
|
|
2266
|
+
/**
|
|
2267
|
+
* Successfully updated. Returns updated cluster details.
|
|
2268
|
+
*/
|
|
1854
2269
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1855
2270
|
name: z.ZodString;
|
|
1856
2271
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -1891,6 +2306,13 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1891
2306
|
endpoint?: string | undefined;
|
|
1892
2307
|
certificate_ca?: string | undefined;
|
|
1893
2308
|
}>;
|
|
2309
|
+
/**
|
|
2310
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2311
|
+
*/
|
|
2312
|
+
export declare const zGetJoinInformationParameterClusterId: z.ZodString;
|
|
2313
|
+
/**
|
|
2314
|
+
* An object of cluster join information
|
|
2315
|
+
*/
|
|
1894
2316
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1895
2317
|
name: z.ZodString;
|
|
1896
2318
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -1931,6 +2353,9 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1931
2353
|
endpoint?: string | undefined;
|
|
1932
2354
|
certificate_ca?: string | undefined;
|
|
1933
2355
|
}>;
|
|
2356
|
+
/**
|
|
2357
|
+
* An array of invites
|
|
2358
|
+
*/
|
|
1934
2359
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
1935
2360
|
id: z.ZodOptional<z.ZodString>;
|
|
1936
2361
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1950,6 +2375,16 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1950
2375
|
email?: string | undefined;
|
|
1951
2376
|
organization_id?: string | undefined;
|
|
1952
2377
|
}>, "many">;
|
|
2378
|
+
export declare const zCreateInviteData: z.ZodObject<{
|
|
2379
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2380
|
+
}, "strip", z.ZodTypeAny, {
|
|
2381
|
+
email?: string | undefined;
|
|
2382
|
+
}, {
|
|
2383
|
+
email?: string | undefined;
|
|
2384
|
+
}>;
|
|
2385
|
+
/**
|
|
2386
|
+
* Successfully created. Returns created invite details.
|
|
2387
|
+
*/
|
|
1953
2388
|
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
1954
2389
|
id: z.ZodOptional<z.ZodString>;
|
|
1955
2390
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1969,6 +2404,13 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1969
2404
|
email?: string | undefined;
|
|
1970
2405
|
organization_id?: string | undefined;
|
|
1971
2406
|
}>;
|
|
2407
|
+
/**
|
|
2408
|
+
* Invitation code
|
|
2409
|
+
*/
|
|
2410
|
+
export declare const zGetInviteParameterCode: z.ZodString;
|
|
2411
|
+
/**
|
|
2412
|
+
* Returns a single object containing invite details.
|
|
2413
|
+
*/
|
|
1972
2414
|
export declare const zGetInviteResponse: z.ZodObject<{
|
|
1973
2415
|
id: z.ZodOptional<z.ZodString>;
|
|
1974
2416
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1988,6 +2430,13 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1988
2430
|
email?: string | undefined;
|
|
1989
2431
|
organization_id?: string | undefined;
|
|
1990
2432
|
}>;
|
|
2433
|
+
/**
|
|
2434
|
+
* User email address
|
|
2435
|
+
*/
|
|
2436
|
+
export declare const zDeleteInviteParameterEmail: z.ZodString;
|
|
2437
|
+
/**
|
|
2438
|
+
* An array of chart listings in the marketplace.
|
|
2439
|
+
*/
|
|
1991
2440
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1992
2441
|
id: z.ZodString;
|
|
1993
2442
|
name: z.ZodString;
|
|
@@ -2039,6 +2488,13 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2039
2488
|
placeholder: string;
|
|
2040
2489
|
}[];
|
|
2041
2490
|
}>, "many">;
|
|
2491
|
+
/**
|
|
2492
|
+
* Unique identifier of the chart listing in the marketplace.
|
|
2493
|
+
*/
|
|
2494
|
+
export declare const zGetMarketplaceChartParameterListingId: z.ZodString;
|
|
2495
|
+
/**
|
|
2496
|
+
* Returns an object containing the chart listing details.
|
|
2497
|
+
*/
|
|
2042
2498
|
export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
2043
2499
|
id: z.ZodString;
|
|
2044
2500
|
name: z.ZodString;
|
|
@@ -2090,6 +2546,9 @@ export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
|
2090
2546
|
placeholder: string;
|
|
2091
2547
|
}[];
|
|
2092
2548
|
}>;
|
|
2549
|
+
/**
|
|
2550
|
+
* Returns a single object containing organization details.
|
|
2551
|
+
*/
|
|
2093
2552
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2094
2553
|
id: z.ZodString;
|
|
2095
2554
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2175,6 +2634,28 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2175
2634
|
};
|
|
2176
2635
|
name?: string | undefined;
|
|
2177
2636
|
}>;
|
|
2637
|
+
export declare const zCreateOrganizationData: z.ZodObject<{
|
|
2638
|
+
email: z.ZodString;
|
|
2639
|
+
first_name: z.ZodString;
|
|
2640
|
+
last_name: z.ZodString;
|
|
2641
|
+
company_name: z.ZodString;
|
|
2642
|
+
password: z.ZodString;
|
|
2643
|
+
}, "strip", z.ZodTypeAny, {
|
|
2644
|
+
email: string;
|
|
2645
|
+
first_name: string;
|
|
2646
|
+
last_name: string;
|
|
2647
|
+
company_name: string;
|
|
2648
|
+
password: string;
|
|
2649
|
+
}, {
|
|
2650
|
+
email: string;
|
|
2651
|
+
first_name: string;
|
|
2652
|
+
last_name: string;
|
|
2653
|
+
company_name: string;
|
|
2654
|
+
password: string;
|
|
2655
|
+
}>;
|
|
2656
|
+
/**
|
|
2657
|
+
* Returns a list of access token details with masked secrets.
|
|
2658
|
+
*/
|
|
2178
2659
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2179
2660
|
name: z.ZodString;
|
|
2180
2661
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2194,6 +2675,19 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2194
2675
|
id?: string | undefined;
|
|
2195
2676
|
secret?: string | undefined;
|
|
2196
2677
|
}>, "many">;
|
|
2678
|
+
export declare const zCreateTokenData: z.ZodObject<{
|
|
2679
|
+
name: z.ZodString;
|
|
2680
|
+
role: z.ZodEnum<["Administrator", "User"]>;
|
|
2681
|
+
}, "strip", z.ZodTypeAny, {
|
|
2682
|
+
name: string;
|
|
2683
|
+
role: "Administrator" | "User";
|
|
2684
|
+
}, {
|
|
2685
|
+
name: string;
|
|
2686
|
+
role: "Administrator" | "User";
|
|
2687
|
+
}>;
|
|
2688
|
+
/**
|
|
2689
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
2690
|
+
*/
|
|
2197
2691
|
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
2198
2692
|
name: z.ZodString;
|
|
2199
2693
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2213,6 +2707,17 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2213
2707
|
id?: string | undefined;
|
|
2214
2708
|
secret?: string | undefined;
|
|
2215
2709
|
}>;
|
|
2710
|
+
/**
|
|
2711
|
+
* Generated unique identifier of the access token.
|
|
2712
|
+
*/
|
|
2713
|
+
export declare const zDeleteTokenParameterTokenId: z.ZodString;
|
|
2714
|
+
/**
|
|
2715
|
+
* Generated unique identifier of the access token.
|
|
2716
|
+
*/
|
|
2717
|
+
export declare const zGetTokenParameterTokenId: z.ZodString;
|
|
2718
|
+
/**
|
|
2719
|
+
* Returns access token details with masked secret.
|
|
2720
|
+
*/
|
|
2216
2721
|
export declare const zGetTokenResponse: z.ZodObject<{
|
|
2217
2722
|
name: z.ZodString;
|
|
2218
2723
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2232,6 +2737,23 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2232
2737
|
id?: string | undefined;
|
|
2233
2738
|
secret?: string | undefined;
|
|
2234
2739
|
}>;
|
|
2740
|
+
export declare const zUpdateTokenData: z.ZodObject<{
|
|
2741
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2742
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2743
|
+
}, "strip", z.ZodTypeAny, {
|
|
2744
|
+
name?: string | undefined;
|
|
2745
|
+
role?: "Administrator" | "User" | undefined;
|
|
2746
|
+
}, {
|
|
2747
|
+
name?: string | undefined;
|
|
2748
|
+
role?: "Administrator" | "User" | undefined;
|
|
2749
|
+
}>;
|
|
2750
|
+
/**
|
|
2751
|
+
* Generated unique identifier of the access token.
|
|
2752
|
+
*/
|
|
2753
|
+
export declare const zUpdateTokenParameterTokenId: z.ZodString;
|
|
2754
|
+
/**
|
|
2755
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
2756
|
+
*/
|
|
2235
2757
|
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
2236
2758
|
name: z.ZodString;
|
|
2237
2759
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2251,6 +2773,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2251
2773
|
id?: string | undefined;
|
|
2252
2774
|
secret?: string | undefined;
|
|
2253
2775
|
}>;
|
|
2776
|
+
/**
|
|
2777
|
+
* Generated unique identifier of the access token.
|
|
2778
|
+
*/
|
|
2779
|
+
export declare const zRegenerateTokenParameterTokenId: z.ZodString;
|
|
2780
|
+
/**
|
|
2781
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
2782
|
+
*/
|
|
2254
2783
|
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
2255
2784
|
name: z.ZodString;
|
|
2256
2785
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2270,6 +2799,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2270
2799
|
id?: string | undefined;
|
|
2271
2800
|
secret?: string | undefined;
|
|
2272
2801
|
}>;
|
|
2802
|
+
/**
|
|
2803
|
+
* User email address.
|
|
2804
|
+
*/
|
|
2805
|
+
export declare const zListUserOrganizationsParameterEmail: z.ZodString;
|
|
2806
|
+
/**
|
|
2807
|
+
* An array of organizations the user belongs to.
|
|
2808
|
+
*/
|
|
2273
2809
|
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
2274
2810
|
realm: z.ZodOptional<z.ZodString>;
|
|
2275
2811
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -2280,6 +2816,9 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2280
2816
|
realm?: string | undefined;
|
|
2281
2817
|
displayName?: string | undefined;
|
|
2282
2818
|
}>, "many">;
|
|
2819
|
+
/**
|
|
2820
|
+
* An array of users
|
|
2821
|
+
*/
|
|
2283
2822
|
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
2284
2823
|
email: z.ZodString;
|
|
2285
2824
|
first_name: z.ZodString;
|
|
@@ -2305,6 +2844,34 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2305
2844
|
last_name: string;
|
|
2306
2845
|
date_created: string;
|
|
2307
2846
|
}>, "many">;
|
|
2847
|
+
export declare const zCreateUserData: z.ZodObject<{
|
|
2848
|
+
email: z.ZodString;
|
|
2849
|
+
first_name: z.ZodString;
|
|
2850
|
+
last_name: z.ZodString;
|
|
2851
|
+
code: z.ZodString;
|
|
2852
|
+
password: z.ZodString;
|
|
2853
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
2854
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2855
|
+
}, "strip", z.ZodTypeAny, {
|
|
2856
|
+
code: string;
|
|
2857
|
+
email: string;
|
|
2858
|
+
first_name: string;
|
|
2859
|
+
last_name: string;
|
|
2860
|
+
password: string;
|
|
2861
|
+
role?: "Administrator" | "User" | undefined;
|
|
2862
|
+
status?: "active" | "inactive" | undefined;
|
|
2863
|
+
}, {
|
|
2864
|
+
code: string;
|
|
2865
|
+
email: string;
|
|
2866
|
+
first_name: string;
|
|
2867
|
+
last_name: string;
|
|
2868
|
+
password: string;
|
|
2869
|
+
role?: "Administrator" | "User" | undefined;
|
|
2870
|
+
status?: "active" | "inactive" | undefined;
|
|
2871
|
+
}>;
|
|
2872
|
+
/**
|
|
2873
|
+
* Successfully created. Returns created user details.
|
|
2874
|
+
*/
|
|
2308
2875
|
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2309
2876
|
email: z.ZodString;
|
|
2310
2877
|
first_name: z.ZodString;
|
|
@@ -2330,6 +2897,13 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2330
2897
|
last_name: string;
|
|
2331
2898
|
date_created: string;
|
|
2332
2899
|
}>;
|
|
2900
|
+
/**
|
|
2901
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2902
|
+
*/
|
|
2903
|
+
export declare const zDeleteUserParameterUserId: z.ZodString;
|
|
2904
|
+
/**
|
|
2905
|
+
* User profile information
|
|
2906
|
+
*/
|
|
2333
2907
|
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
2334
2908
|
email: z.ZodString;
|
|
2335
2909
|
first_name: z.ZodString;
|
|
@@ -2355,6 +2929,13 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2355
2929
|
last_name: string;
|
|
2356
2930
|
date_created: string;
|
|
2357
2931
|
}>;
|
|
2932
|
+
/**
|
|
2933
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2934
|
+
*/
|
|
2935
|
+
export declare const zGetUserParameterUserId: z.ZodString;
|
|
2936
|
+
/**
|
|
2937
|
+
* User profile information
|
|
2938
|
+
*/
|
|
2358
2939
|
export declare const zGetUserResponse: z.ZodObject<{
|
|
2359
2940
|
email: z.ZodString;
|
|
2360
2941
|
first_name: z.ZodString;
|
|
@@ -2380,6 +2961,32 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2380
2961
|
last_name: string;
|
|
2381
2962
|
date_created: string;
|
|
2382
2963
|
}>;
|
|
2964
|
+
export declare const zUpdateUserData: z.ZodObject<{
|
|
2965
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2966
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
2967
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
2968
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2969
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
2970
|
+
}, "strip", z.ZodTypeAny, {
|
|
2971
|
+
role?: "Administrator" | "User" | undefined;
|
|
2972
|
+
email?: string | undefined;
|
|
2973
|
+
status?: "active" | "inactive" | undefined;
|
|
2974
|
+
first_name?: string | undefined;
|
|
2975
|
+
last_name?: string | undefined;
|
|
2976
|
+
}, {
|
|
2977
|
+
role?: "Administrator" | "User" | undefined;
|
|
2978
|
+
email?: string | undefined;
|
|
2979
|
+
status?: "active" | "inactive" | undefined;
|
|
2980
|
+
first_name?: string | undefined;
|
|
2981
|
+
last_name?: string | undefined;
|
|
2982
|
+
}>;
|
|
2983
|
+
/**
|
|
2984
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2985
|
+
*/
|
|
2986
|
+
export declare const zUpdateUserParameterUserId: z.ZodString;
|
|
2987
|
+
/**
|
|
2988
|
+
* Successfully created. Returns created user details.
|
|
2989
|
+
*/
|
|
2383
2990
|
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
2384
2991
|
email: z.ZodString;
|
|
2385
2992
|
first_name: z.ZodString;
|