@cloudfleet/sdk 0.6.4 → 0.6.6

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/zod.gen.d.ts CHANGED
@@ -138,18 +138,18 @@ export declare const zChartUpdateInput: z.ZodObject<{
138
138
  }>;
139
139
  export declare const zClusterCreateInput: z.ZodObject<{
140
140
  name: z.ZodString;
141
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
142
141
  tier: z.ZodEnum<["basic", "pro"]>;
142
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
143
143
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
144
144
  }, "strip", z.ZodTypeAny, {
145
145
  name: string;
146
146
  version_channel: string;
147
147
  tier: "basic" | "pro";
148
- region?: "staging" | "northamerica-central-1" | undefined;
148
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
149
149
  }, {
150
150
  name: string;
151
151
  tier: "basic" | "pro";
152
- region?: "staging" | "northamerica-central-1" | undefined;
152
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
153
153
  version_channel?: string | undefined;
154
154
  }>;
155
155
  export declare const zClusterJoinInformation: z.ZodObject<{
@@ -216,8 +216,8 @@ export declare const zClusterJoinInformation: z.ZodObject<{
216
216
  }>;
217
217
  export declare const zCluster: z.ZodObject<{
218
218
  name: z.ZodString;
219
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
220
219
  tier: z.ZodEnum<["basic", "pro"]>;
220
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
221
221
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
222
222
  id: z.ZodString;
223
223
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -234,7 +234,7 @@ export declare const zCluster: z.ZodObject<{
234
234
  version_channel: string;
235
235
  tier: "basic" | "pro";
236
236
  ready?: boolean | undefined;
237
- region?: "staging" | "northamerica-central-1" | undefined;
237
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
238
238
  version_current?: string | undefined;
239
239
  created_at?: string | undefined;
240
240
  updated_at?: string | undefined;
@@ -246,7 +246,7 @@ export declare const zCluster: z.ZodObject<{
246
246
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
247
247
  tier: "basic" | "pro";
248
248
  ready?: boolean | undefined;
249
- region?: "staging" | "northamerica-central-1" | undefined;
249
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
250
250
  version_channel?: string | undefined;
251
251
  version_current?: string | undefined;
252
252
  created_at?: string | undefined;
@@ -256,11 +256,14 @@ export declare const zCluster: z.ZodObject<{
256
256
  }>;
257
257
  export declare const zClusterUpdateInput: z.ZodObject<{
258
258
  name: z.ZodOptional<z.ZodString>;
259
+ tier: z.ZodEnum<["basic", "pro"]>;
259
260
  version_channel: z.ZodOptional<z.ZodString>;
260
261
  }, "strip", z.ZodTypeAny, {
262
+ tier: "basic" | "pro";
261
263
  name?: string | undefined;
262
264
  version_channel?: string | undefined;
263
265
  }, {
266
+ tier: "basic" | "pro";
264
267
  name?: string | undefined;
265
268
  version_channel?: string | undefined;
266
269
  }>;
@@ -1090,6 +1093,9 @@ export declare const zUserUpdateInput: z.ZodObject<{
1090
1093
  first_name?: string | undefined;
1091
1094
  last_name?: string | undefined;
1092
1095
  }>;
1096
+ /**
1097
+ * An array of usage records.
1098
+ */
1093
1099
  export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1094
1100
  hour: z.ZodOptional<z.ZodString>;
1095
1101
  cluster_id: z.ZodString;
@@ -1124,7 +1130,13 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1124
1130
  price: number | "";
1125
1131
  hour?: string | undefined;
1126
1132
  }>, "many">;
1133
+ /**
1134
+ * Current balance of the organization in USD as a floating-point number.
1135
+ */
1127
1136
  export declare const zGetBalanceResponse: z.ZodNumber;
1137
+ /**
1138
+ * Redacted payment card information.
1139
+ */
1128
1140
  export declare const zGetPaymentMethodResponse: z.ZodObject<{
1129
1141
  id: z.ZodString;
1130
1142
  setup: z.ZodBoolean;
@@ -1150,6 +1162,10 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1150
1162
  exp_year: number;
1151
1163
  brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1152
1164
  }>;
1165
+ /**
1166
+ * 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.
1167
+ *
1168
+ */
1153
1169
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1154
1170
  id: z.ZodOptional<z.ZodString>;
1155
1171
  }, "strip", z.ZodTypeAny, {
@@ -1157,6 +1173,17 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1157
1173
  }, {
1158
1174
  id?: string | undefined;
1159
1175
  }>;
1176
+ /**
1177
+ * Start date for the usage. Date of oldest data point to retrieve.
1178
+ */
1179
+ export declare const zListInvoicesParameterStartDate: z.ZodString;
1180
+ /**
1181
+ * End date for the usage. Date of newest data point to retrieve.
1182
+ */
1183
+ export declare const zListInvoicesParameterEndDate: z.ZodString;
1184
+ /**
1185
+ * An array of usage records.
1186
+ */
1160
1187
  export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1161
1188
  id: z.ZodOptional<z.ZodString>;
1162
1189
  organizationId: z.ZodOptional<z.ZodString>;
@@ -1423,6 +1450,13 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1423
1450
  childItems?: unknown[] | undefined;
1424
1451
  }[] | undefined;
1425
1452
  }>, "many">;
1453
+ /**
1454
+ * Unique invoice identifier. UUID v4 string in canonical form
1455
+ */
1456
+ export declare const zGetInvoiceParameterId: z.ZodString;
1457
+ /**
1458
+ * Returns a single Invoice HTML representation under `html` property.
1459
+ */
1426
1460
  export declare const zGetInvoiceResponse: z.ZodObject<{
1427
1461
  html: z.ZodOptional<z.ZodString>;
1428
1462
  }, "strip", z.ZodTypeAny, {
@@ -1430,6 +1464,9 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
1430
1464
  }, {
1431
1465
  html?: string | undefined;
1432
1466
  }>;
1467
+ /**
1468
+ * Returns a single object containing organization contact and billing address details.
1469
+ */
1433
1470
  export declare const zGetContactResponse: z.ZodObject<{
1434
1471
  company: z.ZodOptional<z.ZodString>;
1435
1472
  address1: z.ZodOptional<z.ZodString>;
@@ -1473,6 +1510,52 @@ export declare const zGetContactResponse: z.ZodObject<{
1473
1510
  tax_id?: string | undefined;
1474
1511
  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
1512
  }>;
1513
+ export declare const zUpdateContactData: z.ZodObject<{
1514
+ company: z.ZodOptional<z.ZodString>;
1515
+ address1: z.ZodOptional<z.ZodString>;
1516
+ address2: z.ZodOptional<z.ZodString>;
1517
+ postalCode: z.ZodOptional<z.ZodString>;
1518
+ city: z.ZodOptional<z.ZodString>;
1519
+ state: z.ZodOptional<z.ZodString>;
1520
+ country: z.ZodOptional<z.ZodString>;
1521
+ phone: z.ZodOptional<z.ZodString>;
1522
+ email: z.ZodString;
1523
+ first_name: z.ZodString;
1524
+ last_name: z.ZodString;
1525
+ tax_id: z.ZodOptional<z.ZodString>;
1526
+ 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", ""]>>;
1527
+ }, "strip", z.ZodTypeAny, {
1528
+ email: string;
1529
+ first_name: string;
1530
+ last_name: string;
1531
+ state?: string | undefined;
1532
+ country?: string | undefined;
1533
+ company?: string | undefined;
1534
+ address1?: string | undefined;
1535
+ address2?: string | undefined;
1536
+ postalCode?: string | undefined;
1537
+ city?: string | undefined;
1538
+ phone?: string | undefined;
1539
+ tax_id?: string | undefined;
1540
+ 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;
1541
+ }, {
1542
+ email: string;
1543
+ first_name: string;
1544
+ last_name: string;
1545
+ state?: string | undefined;
1546
+ country?: string | undefined;
1547
+ company?: string | undefined;
1548
+ address1?: string | undefined;
1549
+ address2?: string | undefined;
1550
+ postalCode?: string | undefined;
1551
+ city?: string | undefined;
1552
+ phone?: string | undefined;
1553
+ tax_id?: string | undefined;
1554
+ 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;
1555
+ }>;
1556
+ /**
1557
+ * Successfully updated. Returns updated organization details.
1558
+ */
1476
1559
  export declare const zUpdateContactResponse: z.ZodObject<{
1477
1560
  company: z.ZodOptional<z.ZodString>;
1478
1561
  address1: z.ZodOptional<z.ZodString>;
@@ -1516,6 +1599,9 @@ export declare const zUpdateContactResponse: z.ZodObject<{
1516
1599
  tax_id?: string | undefined;
1517
1600
  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
1601
  }>;
1602
+ /**
1603
+ * An array of the applied promotional credits records.
1604
+ */
1519
1605
  export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1520
1606
  id: z.ZodOptional<z.ZodString>;
1521
1607
  date_created: z.ZodString;
@@ -1547,6 +1633,20 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1547
1633
  products?: string[] | undefined;
1548
1634
  value_remaining?: number | undefined;
1549
1635
  }>, "many">;
1636
+ export declare const zRedeemCreditsData: z.ZodObject<{
1637
+ code: z.ZodOptional<z.ZodString>;
1638
+ }, "strip", z.ZodTypeAny, {
1639
+ code?: string | undefined;
1640
+ }, {
1641
+ code?: string | undefined;
1642
+ }>;
1643
+ /**
1644
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1645
+ */
1646
+ export declare const zListChartsParameterClusterId: z.ZodString;
1647
+ /**
1648
+ * An array of charts
1649
+ */
1550
1650
  export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1551
1651
  values: z.ZodString;
1552
1652
  version_channel: z.ZodString;
@@ -1581,8 +1681,56 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1581
1681
  created_at: string;
1582
1682
  updated_at: string;
1583
1683
  }>, "many">;
1684
+ export declare const zCreateChartData: z.ZodObject<{
1685
+ values: z.ZodString;
1686
+ version_channel: z.ZodString;
1687
+ name: z.ZodString;
1688
+ namespace: z.ZodString;
1689
+ chart: z.ZodString;
1690
+ }, "strip", z.ZodTypeAny, {
1691
+ values: string;
1692
+ name: string;
1693
+ version_channel: string;
1694
+ namespace: string;
1695
+ chart: string;
1696
+ }, {
1697
+ values: string;
1698
+ name: string;
1699
+ version_channel: string;
1700
+ namespace: string;
1701
+ chart: string;
1702
+ }>;
1703
+ /**
1704
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1705
+ */
1706
+ export declare const zCreateChartParameterClusterId: z.ZodString;
1707
+ /**
1708
+ * Successfully created. Returns created Chart ID.
1709
+ */
1584
1710
  export declare const zCreateChartResponse: z.ZodString;
1711
+ /**
1712
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1713
+ */
1714
+ export declare const zDeleteChartParameterClusterId: z.ZodString;
1715
+ /**
1716
+ * Chart deployment name as the unique identifier of the chart.
1717
+ */
1718
+ export declare const zDeleteChartParameterChartName: z.ZodString;
1719
+ /**
1720
+ * Successfully deleted.
1721
+ */
1585
1722
  export declare const zDeleteChartResponse: z.ZodString;
1723
+ /**
1724
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1725
+ */
1726
+ export declare const zGetChartParameterClusterId: z.ZodString;
1727
+ /**
1728
+ * Chart deployment name as the unique identifier of the chart.
1729
+ */
1730
+ export declare const zGetChartParameterChartName: z.ZodString;
1731
+ /**
1732
+ * Returns a single object containing chart details.
1733
+ */
1586
1734
  export declare const zGetChartResponse: z.ZodObject<{
1587
1735
  values: z.ZodString;
1588
1736
  version_channel: z.ZodString;
@@ -1617,7 +1765,35 @@ export declare const zGetChartResponse: z.ZodObject<{
1617
1765
  created_at: string;
1618
1766
  updated_at: string;
1619
1767
  }>;
1768
+ export declare const zUpdateChartData: z.ZodObject<{
1769
+ values: z.ZodString;
1770
+ version_channel: z.ZodString;
1771
+ }, "strip", z.ZodTypeAny, {
1772
+ values: string;
1773
+ version_channel: string;
1774
+ }, {
1775
+ values: string;
1776
+ version_channel: string;
1777
+ }>;
1778
+ /**
1779
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1780
+ */
1781
+ export declare const zUpdateChartParameterClusterId: z.ZodString;
1782
+ /**
1783
+ * Chart deployment name as the unique identifier of the chart.
1784
+ */
1785
+ export declare const zUpdateChartParameterChartName: z.ZodString;
1786
+ /**
1787
+ * Successfully updated.
1788
+ */
1620
1789
  export declare const zUpdateChartResponse: z.ZodString;
1790
+ /**
1791
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1792
+ */
1793
+ export declare const zListFleetsParameterClusterId: z.ZodString;
1794
+ /**
1795
+ * An array of fleets
1796
+ */
1621
1797
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1622
1798
  limits: z.ZodOptional<z.ZodObject<{
1623
1799
  cpu: z.ZodNumber;
@@ -1692,8 +1868,111 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1692
1868
  enabled?: boolean | undefined;
1693
1869
  } | undefined;
1694
1870
  }>, "many">;
1871
+ export declare const zCreateFleetData: z.ZodObject<{
1872
+ limits: z.ZodOptional<z.ZodObject<{
1873
+ cpu: z.ZodNumber;
1874
+ }, "strip", z.ZodTypeAny, {
1875
+ cpu: number;
1876
+ }, {
1877
+ cpu: number;
1878
+ }>>;
1879
+ gcp: z.ZodOptional<z.ZodObject<{
1880
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1881
+ project: z.ZodString;
1882
+ }, "strip", z.ZodTypeAny, {
1883
+ project: string;
1884
+ enabled: boolean;
1885
+ }, {
1886
+ project: string;
1887
+ enabled?: boolean | undefined;
1888
+ }>>;
1889
+ hetzner: z.ZodOptional<z.ZodObject<{
1890
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1891
+ apiKey: z.ZodString;
1892
+ }, "strip", z.ZodTypeAny, {
1893
+ apiKey: string;
1894
+ enabled: boolean;
1895
+ }, {
1896
+ apiKey: string;
1897
+ enabled?: boolean | undefined;
1898
+ }>>;
1899
+ aws: z.ZodOptional<z.ZodObject<{
1900
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1901
+ controllerRoleArn: z.ZodString;
1902
+ }, "strip", z.ZodTypeAny, {
1903
+ controllerRoleArn: string;
1904
+ enabled: boolean;
1905
+ }, {
1906
+ controllerRoleArn: string;
1907
+ enabled?: boolean | undefined;
1908
+ }>>;
1909
+ id: z.ZodString;
1910
+ }, "strip", z.ZodTypeAny, {
1911
+ id: string;
1912
+ limits?: {
1913
+ cpu: number;
1914
+ } | undefined;
1915
+ gcp?: {
1916
+ project: string;
1917
+ enabled: boolean;
1918
+ } | undefined;
1919
+ hetzner?: {
1920
+ apiKey: string;
1921
+ enabled: boolean;
1922
+ } | undefined;
1923
+ aws?: {
1924
+ controllerRoleArn: string;
1925
+ enabled: boolean;
1926
+ } | undefined;
1927
+ }, {
1928
+ id: string;
1929
+ limits?: {
1930
+ cpu: number;
1931
+ } | undefined;
1932
+ gcp?: {
1933
+ project: string;
1934
+ enabled?: boolean | undefined;
1935
+ } | undefined;
1936
+ hetzner?: {
1937
+ apiKey: string;
1938
+ enabled?: boolean | undefined;
1939
+ } | undefined;
1940
+ aws?: {
1941
+ controllerRoleArn: string;
1942
+ enabled?: boolean | undefined;
1943
+ } | undefined;
1944
+ }>;
1945
+ /**
1946
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1947
+ */
1948
+ export declare const zCreateFleetParameterClusterId: z.ZodString;
1949
+ /**
1950
+ * Successfully created. Returns created Fleet ID.
1951
+ */
1695
1952
  export declare const zCreateFleetResponse: z.ZodString;
1953
+ /**
1954
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1955
+ */
1956
+ export declare const zDeleteFleetParameterClusterId: z.ZodString;
1957
+ /**
1958
+ * Unique identifier of the fleet. UUID v4 string in canonical form
1959
+ */
1960
+ export declare const zDeleteFleetParameterFleetName: z.ZodString;
1961
+ /**
1962
+ * Successfully deleted.
1963
+ */
1696
1964
  export declare const zDeleteFleetResponse: z.ZodString;
1965
+ /**
1966
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1967
+ */
1968
+ export declare const zGetFleetParameterClusterId: z.ZodString;
1969
+ /**
1970
+ * Unique identifier of the fleet. UUID v4 string in canonical form
1971
+ */
1972
+ export declare const zGetFleetParameterFleetName: z.ZodString;
1973
+ /**
1974
+ * Returns a single object containing fleet details.
1975
+ */
1697
1976
  export declare const zGetFleetResponse: z.ZodObject<{
1698
1977
  limits: z.ZodOptional<z.ZodObject<{
1699
1978
  cpu: z.ZodNumber;
@@ -1768,11 +2047,100 @@ export declare const zGetFleetResponse: z.ZodObject<{
1768
2047
  enabled?: boolean | undefined;
1769
2048
  } | undefined;
1770
2049
  }>;
2050
+ export declare const zUpdateFleetData: z.ZodObject<{
2051
+ limits: z.ZodOptional<z.ZodObject<{
2052
+ cpu: z.ZodNumber;
2053
+ }, "strip", z.ZodTypeAny, {
2054
+ cpu: number;
2055
+ }, {
2056
+ cpu: number;
2057
+ }>>;
2058
+ gcp: z.ZodOptional<z.ZodObject<{
2059
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2060
+ project: z.ZodString;
2061
+ }, "strip", z.ZodTypeAny, {
2062
+ project: string;
2063
+ enabled: boolean;
2064
+ }, {
2065
+ project: string;
2066
+ enabled?: boolean | undefined;
2067
+ }>>;
2068
+ hetzner: z.ZodOptional<z.ZodObject<{
2069
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2070
+ apiKey: z.ZodString;
2071
+ }, "strip", z.ZodTypeAny, {
2072
+ apiKey: string;
2073
+ enabled: boolean;
2074
+ }, {
2075
+ apiKey: string;
2076
+ enabled?: boolean | undefined;
2077
+ }>>;
2078
+ aws: z.ZodOptional<z.ZodObject<{
2079
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2080
+ controllerRoleArn: z.ZodString;
2081
+ }, "strip", z.ZodTypeAny, {
2082
+ controllerRoleArn: string;
2083
+ enabled: boolean;
2084
+ }, {
2085
+ controllerRoleArn: string;
2086
+ enabled?: boolean | undefined;
2087
+ }>>;
2088
+ }, "strip", z.ZodTypeAny, {
2089
+ limits?: {
2090
+ cpu: number;
2091
+ } | undefined;
2092
+ gcp?: {
2093
+ project: string;
2094
+ enabled: boolean;
2095
+ } | undefined;
2096
+ hetzner?: {
2097
+ apiKey: string;
2098
+ enabled: boolean;
2099
+ } | undefined;
2100
+ aws?: {
2101
+ controllerRoleArn: string;
2102
+ enabled: boolean;
2103
+ } | undefined;
2104
+ }, {
2105
+ limits?: {
2106
+ cpu: number;
2107
+ } | undefined;
2108
+ gcp?: {
2109
+ project: string;
2110
+ enabled?: boolean | undefined;
2111
+ } | undefined;
2112
+ hetzner?: {
2113
+ apiKey: string;
2114
+ enabled?: boolean | undefined;
2115
+ } | undefined;
2116
+ aws?: {
2117
+ controllerRoleArn: string;
2118
+ enabled?: boolean | undefined;
2119
+ } | undefined;
2120
+ }>;
2121
+ /**
2122
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2123
+ */
2124
+ export declare const zUpdateFleetParameterClusterId: z.ZodString;
2125
+ /**
2126
+ * Unique identifier of the fleet. UUID v4 string in canonical form
2127
+ */
2128
+ export declare const zUpdateFleetParameterFleetName: z.ZodString;
2129
+ /**
2130
+ * Successfully updated.
2131
+ */
1771
2132
  export declare const zUpdateFleetResponse: z.ZodString;
2133
+ /**
2134
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2135
+ */
2136
+ export declare const zQueryClusterParameterClusterId: z.ZodString;
2137
+ /**
2138
+ * An array of clusters
2139
+ */
1772
2140
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1773
2141
  name: z.ZodString;
1774
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1775
2142
  tier: z.ZodEnum<["basic", "pro"]>;
2143
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
1776
2144
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1777
2145
  id: z.ZodString;
1778
2146
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -1789,7 +2157,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1789
2157
  version_channel: string;
1790
2158
  tier: "basic" | "pro";
1791
2159
  ready?: boolean | undefined;
1792
- region?: "staging" | "northamerica-central-1" | undefined;
2160
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1793
2161
  version_current?: string | undefined;
1794
2162
  created_at?: string | undefined;
1795
2163
  updated_at?: string | undefined;
@@ -1801,7 +2169,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1801
2169
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1802
2170
  tier: "basic" | "pro";
1803
2171
  ready?: boolean | undefined;
1804
- region?: "staging" | "northamerica-central-1" | undefined;
2172
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1805
2173
  version_channel?: string | undefined;
1806
2174
  version_current?: string | undefined;
1807
2175
  created_at?: string | undefined;
@@ -1809,12 +2177,45 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1809
2177
  endpoint?: string | undefined;
1810
2178
  certificate_ca?: string | undefined;
1811
2179
  }>, "many">;
2180
+ export declare const zCreateClusterData: z.ZodObject<{
2181
+ name: z.ZodString;
2182
+ tier: z.ZodEnum<["basic", "pro"]>;
2183
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2184
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2185
+ }, "strip", z.ZodTypeAny, {
2186
+ name: string;
2187
+ version_channel: string;
2188
+ tier: "basic" | "pro";
2189
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2190
+ }, {
2191
+ name: string;
2192
+ tier: "basic" | "pro";
2193
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2194
+ version_channel?: string | undefined;
2195
+ }>;
2196
+ /**
2197
+ * Successfully created. Returns created Cluster ID.
2198
+ */
1812
2199
  export declare const zCreateClusterResponse: z.ZodString;
2200
+ /**
2201
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2202
+ */
2203
+ export declare const zDeleteClusterParameterClusterId: z.ZodString;
2204
+ /**
2205
+ * Successfully deleted.
2206
+ */
1813
2207
  export declare const zDeleteClusterResponse: z.ZodString;
2208
+ /**
2209
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2210
+ */
2211
+ export declare const zGetClusterParameterClusterId: z.ZodString;
2212
+ /**
2213
+ * Returns a single object containing cluster details.
2214
+ */
1814
2215
  export declare const zGetClusterResponse: z.ZodObject<{
1815
2216
  name: z.ZodString;
1816
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1817
2217
  tier: z.ZodEnum<["basic", "pro"]>;
2218
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
1818
2219
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1819
2220
  id: z.ZodString;
1820
2221
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -1831,7 +2232,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
1831
2232
  version_channel: string;
1832
2233
  tier: "basic" | "pro";
1833
2234
  ready?: boolean | undefined;
1834
- region?: "staging" | "northamerica-central-1" | undefined;
2235
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1835
2236
  version_current?: string | undefined;
1836
2237
  created_at?: string | undefined;
1837
2238
  updated_at?: string | undefined;
@@ -1843,7 +2244,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
1843
2244
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1844
2245
  tier: "basic" | "pro";
1845
2246
  ready?: boolean | undefined;
1846
- region?: "staging" | "northamerica-central-1" | undefined;
2247
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1847
2248
  version_channel?: string | undefined;
1848
2249
  version_current?: string | undefined;
1849
2250
  created_at?: string | undefined;
@@ -1851,10 +2252,30 @@ export declare const zGetClusterResponse: z.ZodObject<{
1851
2252
  endpoint?: string | undefined;
1852
2253
  certificate_ca?: string | undefined;
1853
2254
  }>;
2255
+ export declare const zUpdateClusterData: z.ZodObject<{
2256
+ name: z.ZodOptional<z.ZodString>;
2257
+ tier: z.ZodEnum<["basic", "pro"]>;
2258
+ version_channel: z.ZodOptional<z.ZodString>;
2259
+ }, "strip", z.ZodTypeAny, {
2260
+ tier: "basic" | "pro";
2261
+ name?: string | undefined;
2262
+ version_channel?: string | undefined;
2263
+ }, {
2264
+ tier: "basic" | "pro";
2265
+ name?: string | undefined;
2266
+ version_channel?: string | undefined;
2267
+ }>;
2268
+ /**
2269
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2270
+ */
2271
+ export declare const zUpdateClusterParameterClusterId: z.ZodString;
2272
+ /**
2273
+ * Successfully updated. Returns updated cluster details.
2274
+ */
1854
2275
  export declare const zUpdateClusterResponse: z.ZodObject<{
1855
2276
  name: z.ZodString;
1856
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1857
2277
  tier: z.ZodEnum<["basic", "pro"]>;
2278
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
1858
2279
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1859
2280
  id: z.ZodString;
1860
2281
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -1871,7 +2292,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1871
2292
  version_channel: string;
1872
2293
  tier: "basic" | "pro";
1873
2294
  ready?: boolean | undefined;
1874
- region?: "staging" | "northamerica-central-1" | undefined;
2295
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1875
2296
  version_current?: string | undefined;
1876
2297
  created_at?: string | undefined;
1877
2298
  updated_at?: string | undefined;
@@ -1883,7 +2304,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1883
2304
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1884
2305
  tier: "basic" | "pro";
1885
2306
  ready?: boolean | undefined;
1886
- region?: "staging" | "northamerica-central-1" | undefined;
2307
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1887
2308
  version_channel?: string | undefined;
1888
2309
  version_current?: string | undefined;
1889
2310
  created_at?: string | undefined;
@@ -1891,10 +2312,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1891
2312
  endpoint?: string | undefined;
1892
2313
  certificate_ca?: string | undefined;
1893
2314
  }>;
2315
+ /**
2316
+ * Unique identifier of the cluster. UUID v4 string in canonical form
2317
+ */
2318
+ export declare const zGetJoinInformationParameterClusterId: z.ZodString;
2319
+ /**
2320
+ * An object of cluster join information
2321
+ */
1894
2322
  export declare const zGetJoinInformationResponse: z.ZodObject<{
1895
2323
  name: z.ZodString;
1896
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1897
2324
  tier: z.ZodEnum<["basic", "pro"]>;
2325
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
1898
2326
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1899
2327
  id: z.ZodString;
1900
2328
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -1911,7 +2339,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1911
2339
  version_channel: string;
1912
2340
  tier: "basic" | "pro";
1913
2341
  ready?: boolean | undefined;
1914
- region?: "staging" | "northamerica-central-1" | undefined;
2342
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1915
2343
  version_current?: string | undefined;
1916
2344
  created_at?: string | undefined;
1917
2345
  updated_at?: string | undefined;
@@ -1923,7 +2351,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1923
2351
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1924
2352
  tier: "basic" | "pro";
1925
2353
  ready?: boolean | undefined;
1926
- region?: "staging" | "northamerica-central-1" | undefined;
2354
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
1927
2355
  version_channel?: string | undefined;
1928
2356
  version_current?: string | undefined;
1929
2357
  created_at?: string | undefined;
@@ -1931,6 +2359,9 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1931
2359
  endpoint?: string | undefined;
1932
2360
  certificate_ca?: string | undefined;
1933
2361
  }>;
2362
+ /**
2363
+ * An array of invites
2364
+ */
1934
2365
  export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1935
2366
  id: z.ZodOptional<z.ZodString>;
1936
2367
  organization_id: z.ZodOptional<z.ZodString>;
@@ -1950,6 +2381,16 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1950
2381
  email?: string | undefined;
1951
2382
  organization_id?: string | undefined;
1952
2383
  }>, "many">;
2384
+ export declare const zCreateInviteData: z.ZodObject<{
2385
+ email: z.ZodOptional<z.ZodString>;
2386
+ }, "strip", z.ZodTypeAny, {
2387
+ email?: string | undefined;
2388
+ }, {
2389
+ email?: string | undefined;
2390
+ }>;
2391
+ /**
2392
+ * Successfully created. Returns created invite details.
2393
+ */
1953
2394
  export declare const zCreateInviteResponse: z.ZodObject<{
1954
2395
  id: z.ZodOptional<z.ZodString>;
1955
2396
  organization_id: z.ZodOptional<z.ZodString>;
@@ -1969,6 +2410,13 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1969
2410
  email?: string | undefined;
1970
2411
  organization_id?: string | undefined;
1971
2412
  }>;
2413
+ /**
2414
+ * Invitation code
2415
+ */
2416
+ export declare const zGetInviteParameterCode: z.ZodString;
2417
+ /**
2418
+ * Returns a single object containing invite details.
2419
+ */
1972
2420
  export declare const zGetInviteResponse: z.ZodObject<{
1973
2421
  id: z.ZodOptional<z.ZodString>;
1974
2422
  organization_id: z.ZodOptional<z.ZodString>;
@@ -1988,6 +2436,13 @@ export declare const zGetInviteResponse: z.ZodObject<{
1988
2436
  email?: string | undefined;
1989
2437
  organization_id?: string | undefined;
1990
2438
  }>;
2439
+ /**
2440
+ * User email address
2441
+ */
2442
+ export declare const zDeleteInviteParameterEmail: z.ZodString;
2443
+ /**
2444
+ * An array of chart listings in the marketplace.
2445
+ */
1991
2446
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1992
2447
  id: z.ZodString;
1993
2448
  name: z.ZodString;
@@ -2039,6 +2494,13 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2039
2494
  placeholder: string;
2040
2495
  }[];
2041
2496
  }>, "many">;
2497
+ /**
2498
+ * Unique identifier of the chart listing in the marketplace.
2499
+ */
2500
+ export declare const zGetMarketplaceChartParameterListingId: z.ZodString;
2501
+ /**
2502
+ * Returns an object containing the chart listing details.
2503
+ */
2042
2504
  export declare const zGetMarketplaceChartResponse: z.ZodObject<{
2043
2505
  id: z.ZodString;
2044
2506
  name: z.ZodString;
@@ -2090,6 +2552,9 @@ export declare const zGetMarketplaceChartResponse: z.ZodObject<{
2090
2552
  placeholder: string;
2091
2553
  }[];
2092
2554
  }>;
2555
+ /**
2556
+ * Returns a single object containing organization details.
2557
+ */
2093
2558
  export declare const zGetOrganizationResponse: z.ZodObject<{
2094
2559
  id: z.ZodString;
2095
2560
  name: z.ZodOptional<z.ZodString>;
@@ -2175,6 +2640,28 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2175
2640
  };
2176
2641
  name?: string | undefined;
2177
2642
  }>;
2643
+ export declare const zCreateOrganizationData: z.ZodObject<{
2644
+ email: z.ZodString;
2645
+ first_name: z.ZodString;
2646
+ last_name: z.ZodString;
2647
+ company_name: z.ZodString;
2648
+ password: z.ZodString;
2649
+ }, "strip", z.ZodTypeAny, {
2650
+ email: string;
2651
+ first_name: string;
2652
+ last_name: string;
2653
+ company_name: string;
2654
+ password: string;
2655
+ }, {
2656
+ email: string;
2657
+ first_name: string;
2658
+ last_name: string;
2659
+ company_name: string;
2660
+ password: string;
2661
+ }>;
2662
+ /**
2663
+ * Returns a list of access token details with masked secrets.
2664
+ */
2178
2665
  export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2179
2666
  name: z.ZodString;
2180
2667
  role: z.ZodEnum<["Administrator", "User"]>;
@@ -2194,6 +2681,19 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2194
2681
  id?: string | undefined;
2195
2682
  secret?: string | undefined;
2196
2683
  }>, "many">;
2684
+ export declare const zCreateTokenData: z.ZodObject<{
2685
+ name: z.ZodString;
2686
+ role: z.ZodEnum<["Administrator", "User"]>;
2687
+ }, "strip", z.ZodTypeAny, {
2688
+ name: string;
2689
+ role: "Administrator" | "User";
2690
+ }, {
2691
+ name: string;
2692
+ role: "Administrator" | "User";
2693
+ }>;
2694
+ /**
2695
+ * Successfully created. Returns created token details with unmasked/raw secret.
2696
+ */
2197
2697
  export declare const zCreateTokenResponse: z.ZodObject<{
2198
2698
  name: z.ZodString;
2199
2699
  role: z.ZodEnum<["Administrator", "User"]>;
@@ -2213,6 +2713,17 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2213
2713
  id?: string | undefined;
2214
2714
  secret?: string | undefined;
2215
2715
  }>;
2716
+ /**
2717
+ * Generated unique identifier of the access token.
2718
+ */
2719
+ export declare const zDeleteTokenParameterTokenId: z.ZodString;
2720
+ /**
2721
+ * Generated unique identifier of the access token.
2722
+ */
2723
+ export declare const zGetTokenParameterTokenId: z.ZodString;
2724
+ /**
2725
+ * Returns access token details with masked secret.
2726
+ */
2216
2727
  export declare const zGetTokenResponse: z.ZodObject<{
2217
2728
  name: z.ZodString;
2218
2729
  role: z.ZodEnum<["Administrator", "User"]>;
@@ -2232,6 +2743,23 @@ export declare const zGetTokenResponse: z.ZodObject<{
2232
2743
  id?: string | undefined;
2233
2744
  secret?: string | undefined;
2234
2745
  }>;
2746
+ export declare const zUpdateTokenData: z.ZodObject<{
2747
+ name: z.ZodOptional<z.ZodString>;
2748
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2749
+ }, "strip", z.ZodTypeAny, {
2750
+ name?: string | undefined;
2751
+ role?: "Administrator" | "User" | undefined;
2752
+ }, {
2753
+ name?: string | undefined;
2754
+ role?: "Administrator" | "User" | undefined;
2755
+ }>;
2756
+ /**
2757
+ * Generated unique identifier of the access token.
2758
+ */
2759
+ export declare const zUpdateTokenParameterTokenId: z.ZodString;
2760
+ /**
2761
+ * Successfully updated. Returns updated token details with masked secret.
2762
+ */
2235
2763
  export declare const zUpdateTokenResponse: z.ZodObject<{
2236
2764
  name: z.ZodString;
2237
2765
  role: z.ZodEnum<["Administrator", "User"]>;
@@ -2251,6 +2779,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2251
2779
  id?: string | undefined;
2252
2780
  secret?: string | undefined;
2253
2781
  }>;
2782
+ /**
2783
+ * Generated unique identifier of the access token.
2784
+ */
2785
+ export declare const zRegenerateTokenParameterTokenId: z.ZodString;
2786
+ /**
2787
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
2788
+ */
2254
2789
  export declare const zRegenerateTokenResponse: z.ZodObject<{
2255
2790
  name: z.ZodString;
2256
2791
  role: z.ZodEnum<["Administrator", "User"]>;
@@ -2270,6 +2805,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2270
2805
  id?: string | undefined;
2271
2806
  secret?: string | undefined;
2272
2807
  }>;
2808
+ /**
2809
+ * User email address.
2810
+ */
2811
+ export declare const zListUserOrganizationsParameterEmail: z.ZodString;
2812
+ /**
2813
+ * An array of organizations the user belongs to.
2814
+ */
2273
2815
  export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2274
2816
  realm: z.ZodOptional<z.ZodString>;
2275
2817
  displayName: z.ZodOptional<z.ZodString>;
@@ -2280,6 +2822,9 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2280
2822
  realm?: string | undefined;
2281
2823
  displayName?: string | undefined;
2282
2824
  }>, "many">;
2825
+ /**
2826
+ * An array of users
2827
+ */
2283
2828
  export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2284
2829
  email: z.ZodString;
2285
2830
  first_name: z.ZodString;
@@ -2305,6 +2850,34 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2305
2850
  last_name: string;
2306
2851
  date_created: string;
2307
2852
  }>, "many">;
2853
+ export declare const zCreateUserData: z.ZodObject<{
2854
+ email: z.ZodString;
2855
+ first_name: z.ZodString;
2856
+ last_name: z.ZodString;
2857
+ code: z.ZodString;
2858
+ password: z.ZodString;
2859
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2860
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2861
+ }, "strip", z.ZodTypeAny, {
2862
+ code: string;
2863
+ email: string;
2864
+ first_name: string;
2865
+ last_name: string;
2866
+ password: string;
2867
+ role?: "Administrator" | "User" | undefined;
2868
+ status?: "active" | "inactive" | undefined;
2869
+ }, {
2870
+ code: string;
2871
+ email: string;
2872
+ first_name: string;
2873
+ last_name: string;
2874
+ password: string;
2875
+ role?: "Administrator" | "User" | undefined;
2876
+ status?: "active" | "inactive" | undefined;
2877
+ }>;
2878
+ /**
2879
+ * Successfully created. Returns created user details.
2880
+ */
2308
2881
  export declare const zCreateUserResponse: z.ZodObject<{
2309
2882
  email: z.ZodString;
2310
2883
  first_name: z.ZodString;
@@ -2330,6 +2903,13 @@ export declare const zCreateUserResponse: z.ZodObject<{
2330
2903
  last_name: string;
2331
2904
  date_created: string;
2332
2905
  }>;
2906
+ /**
2907
+ * Unique user identifier. UUID v4 string in canonical form
2908
+ */
2909
+ export declare const zDeleteUserParameterUserId: z.ZodString;
2910
+ /**
2911
+ * User profile information
2912
+ */
2333
2913
  export declare const zDeleteUserResponse: z.ZodObject<{
2334
2914
  email: z.ZodString;
2335
2915
  first_name: z.ZodString;
@@ -2355,6 +2935,13 @@ export declare const zDeleteUserResponse: z.ZodObject<{
2355
2935
  last_name: string;
2356
2936
  date_created: string;
2357
2937
  }>;
2938
+ /**
2939
+ * Unique user identifier. UUID v4 string in canonical form
2940
+ */
2941
+ export declare const zGetUserParameterUserId: z.ZodString;
2942
+ /**
2943
+ * User profile information
2944
+ */
2358
2945
  export declare const zGetUserResponse: z.ZodObject<{
2359
2946
  email: z.ZodString;
2360
2947
  first_name: z.ZodString;
@@ -2380,6 +2967,32 @@ export declare const zGetUserResponse: z.ZodObject<{
2380
2967
  last_name: string;
2381
2968
  date_created: string;
2382
2969
  }>;
2970
+ export declare const zUpdateUserData: z.ZodObject<{
2971
+ email: z.ZodOptional<z.ZodString>;
2972
+ first_name: z.ZodOptional<z.ZodString>;
2973
+ last_name: z.ZodOptional<z.ZodString>;
2974
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2975
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2976
+ }, "strip", z.ZodTypeAny, {
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
+ role?: "Administrator" | "User" | undefined;
2984
+ email?: string | undefined;
2985
+ status?: "active" | "inactive" | undefined;
2986
+ first_name?: string | undefined;
2987
+ last_name?: string | undefined;
2988
+ }>;
2989
+ /**
2990
+ * Unique user identifier. UUID v4 string in canonical form
2991
+ */
2992
+ export declare const zUpdateUserParameterUserId: z.ZodString;
2993
+ /**
2994
+ * Successfully created. Returns created user details.
2995
+ */
2383
2996
  export declare const zUpdateUserResponse: z.ZodObject<{
2384
2997
  email: z.ZodString;
2385
2998
  first_name: z.ZodString;