@cloudfleet/sdk 0.0.1-c144916 → 0.0.1-c386d40

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.
@@ -1,6 +1,12 @@
1
1
  export declare const BillingContactSchema: {
2
2
  readonly type: "object";
3
3
  readonly properties: {
4
+ readonly type: {
5
+ readonly type: "string";
6
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
7
+ readonly example: "business";
8
+ readonly enum: readonly ["business", "personal"];
9
+ };
4
10
  readonly company: {
5
11
  readonly type: "string";
6
12
  readonly maxLength: 120;
@@ -76,7 +82,7 @@ export declare const BillingContactSchema: {
76
82
  readonly enum: readonly ["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", ""];
77
83
  };
78
84
  };
79
- readonly required: readonly ["email", "individual_name"];
85
+ readonly required: readonly ["type", "email", "individual_name"];
80
86
  readonly additionalProperties: false;
81
87
  };
82
88
  export declare const BillingCreditsSchema: {
@@ -570,7 +576,9 @@ export declare const FleetCreateInputSchema: {
570
576
  readonly type: "string";
571
577
  readonly enum: readonly ["on-demand", "spot"];
572
578
  };
579
+ readonly minItems: 1;
573
580
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
581
+ readonly default: readonly ["on-demand", "spot"];
574
582
  };
575
583
  readonly 'kubernetes.io/arch': {
576
584
  readonly type: "array";
@@ -578,7 +586,9 @@ export declare const FleetCreateInputSchema: {
578
586
  readonly type: "string";
579
587
  readonly enum: readonly ["amd64", "arm64"];
580
588
  };
589
+ readonly minItems: 1;
581
590
  readonly description: "Allowed values for `kubernetes.io/arch`.";
591
+ readonly default: readonly ["amd64"];
582
592
  };
583
593
  readonly 'cfke.io/instance-family': {
584
594
  readonly type: "array";
@@ -691,7 +701,9 @@ export declare const FleetSchema: {
691
701
  readonly type: "string";
692
702
  readonly enum: readonly ["on-demand", "spot"];
693
703
  };
704
+ readonly minItems: 1;
694
705
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
706
+ readonly default: readonly ["on-demand", "spot"];
695
707
  };
696
708
  readonly 'kubernetes.io/arch': {
697
709
  readonly type: "array";
@@ -699,7 +711,9 @@ export declare const FleetSchema: {
699
711
  readonly type: "string";
700
712
  readonly enum: readonly ["amd64", "arm64"];
701
713
  };
714
+ readonly minItems: 1;
702
715
  readonly description: "Allowed values for `kubernetes.io/arch`.";
716
+ readonly default: readonly ["amd64"];
703
717
  };
704
718
  readonly 'cfke.io/instance-family': {
705
719
  readonly type: "array";
@@ -814,6 +828,7 @@ export declare const FleetUpdateInputSchema: {
814
828
  readonly type: "string";
815
829
  readonly enum: readonly ["on-demand", "spot"];
816
830
  };
831
+ readonly minItems: 1;
817
832
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
818
833
  };
819
834
  readonly 'kubernetes.io/arch': {
@@ -822,6 +837,7 @@ export declare const FleetUpdateInputSchema: {
822
837
  readonly type: "string";
823
838
  readonly enum: readonly ["amd64", "arm64"];
824
839
  };
840
+ readonly minItems: 1;
825
841
  readonly description: "Allowed values for `kubernetes.io/arch`.";
826
842
  };
827
843
  readonly 'cfke.io/instance-family': {
@@ -854,6 +870,26 @@ export declare const FleetUpdateInputSchema: {
854
870
  readonly required: readonly ["scalingProfile"];
855
871
  readonly additionalProperties: false;
856
872
  };
873
+ export declare const InviteCreateInputSchema: {
874
+ readonly type: "object";
875
+ readonly properties: {
876
+ readonly email: {
877
+ readonly type: "string";
878
+ readonly format: "email";
879
+ readonly description: "Email address of the user to invite.";
880
+ readonly example: "email@example.com";
881
+ };
882
+ readonly role: {
883
+ readonly type: "string";
884
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
885
+ readonly default: "User";
886
+ readonly example: "User";
887
+ readonly enum: readonly ["Administrator", "User"];
888
+ };
889
+ };
890
+ readonly required: readonly ["email"];
891
+ readonly additionalProperties: false;
892
+ };
857
893
  export declare const InviteSchema: {
858
894
  readonly type: "object";
859
895
  readonly properties: {
@@ -885,6 +921,13 @@ export declare const InviteSchema: {
885
921
  readonly description: "Generated unique invite code.";
886
922
  readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
887
923
  };
924
+ readonly role: {
925
+ readonly type: "string";
926
+ readonly description: "Role the invited user will be assigned on redemption. Can be 'Administrator' or 'User'.";
927
+ readonly default: "User";
928
+ readonly example: "User";
929
+ readonly enum: readonly ["Administrator", "User"];
930
+ };
888
931
  };
889
932
  readonly required: readonly ["date_created"];
890
933
  readonly additionalProperties: false;
@@ -1082,6 +1125,12 @@ export declare const MarketplaceListingSchema: {
1082
1125
  export declare const OrganizationCreateInputSchema: {
1083
1126
  readonly type: "object";
1084
1127
  readonly properties: {
1128
+ readonly type: {
1129
+ readonly type: "string";
1130
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1131
+ readonly example: "business";
1132
+ readonly enum: readonly ["business", "personal"];
1133
+ };
1085
1134
  readonly email: {
1086
1135
  readonly type: "string";
1087
1136
  readonly format: "email";
@@ -1090,11 +1139,13 @@ export declare const OrganizationCreateInputSchema: {
1090
1139
  };
1091
1140
  readonly first_name: {
1092
1141
  readonly type: "string";
1142
+ readonly minLength: 1;
1093
1143
  readonly description: "First name of the billing contact person.";
1094
1144
  readonly example: "John";
1095
1145
  };
1096
1146
  readonly last_name: {
1097
1147
  readonly type: "string";
1148
+ readonly minLength: 1;
1098
1149
  readonly description: "Last name of the billing contact person.";
1099
1150
  readonly example: "Doe";
1100
1151
  };
@@ -1112,7 +1163,19 @@ export declare const OrganizationCreateInputSchema: {
1112
1163
  readonly description: "Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
1113
1164
  };
1114
1165
  };
1115
- readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1166
+ readonly required: readonly ["type", "email", "first_name", "last_name", "company_name", "password"];
1167
+ readonly additionalProperties: false;
1168
+ };
1169
+ export declare const OrganizationCreateOutputSchema: {
1170
+ readonly type: "object";
1171
+ readonly properties: {
1172
+ readonly id: {
1173
+ readonly type: "string";
1174
+ readonly description: "Unique identifier of the newly created organization. Generated by the API and safe to use for client-side tracking immediately.";
1175
+ readonly example: "organization-id";
1176
+ };
1177
+ };
1178
+ readonly required: readonly ["id"];
1116
1179
  readonly additionalProperties: false;
1117
1180
  };
1118
1181
  export declare const OrganizationSchema: {
@@ -1131,6 +1194,12 @@ export declare const OrganizationSchema: {
1131
1194
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1132
1195
  readonly example: "ACME Corp.";
1133
1196
  };
1197
+ readonly type: {
1198
+ readonly type: "string";
1199
+ readonly description: "Type of the organization. `business` for legal entities, `personal` for individuals.";
1200
+ readonly example: "business";
1201
+ readonly enum: readonly ["business", "personal"];
1202
+ };
1134
1203
  readonly date_created: {
1135
1204
  readonly type: "string";
1136
1205
  readonly format: "date-time";
@@ -1224,8 +1293,14 @@ export declare const OrganizationSchema: {
1224
1293
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1225
1294
  readonly enum: readonly ["active", "closed", "suspended"];
1226
1295
  };
1296
+ readonly verification: {
1297
+ readonly type: "string";
1298
+ readonly description: "Verification status of the organization, which determines the assigned quota. `none` when billing information is incomplete, `submitted` when billing information is complete but the organization is not yet verified, `verified` when the organization is verified.";
1299
+ readonly example: "verified";
1300
+ readonly enum: readonly ["none", "submitted", "verified"];
1301
+ };
1227
1302
  };
1228
- readonly required: readonly ["id", "date_created", "quota", "status"];
1303
+ readonly required: readonly ["id", "type", "date_created", "quota", "status", "verification"];
1229
1304
  readonly additionalProperties: false;
1230
1305
  };
1231
1306
  export declare const PaymentMethodSchema: {
@@ -1233,26 +1308,19 @@ export declare const PaymentMethodSchema: {
1233
1308
  readonly properties: {
1234
1309
  readonly id: {
1235
1310
  readonly type: "string";
1236
- readonly format: "uuid";
1237
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form.";
1238
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1239
- };
1240
- readonly setup: {
1241
- readonly type: "boolean";
1242
- readonly description: "Whether organization payment method was set up and ready to use for payments.";
1243
- readonly example: true;
1311
+ readonly description: "Payment method identifier. Stripe payment method id for cards/SEPA; the constant `bank_transfer` for the invoice/bank-transfer method. Used to set as default or delete the payment method.";
1312
+ readonly example: "pm_1MtwBwLkdIwHu7ix28a3tqPa";
1244
1313
  };
1245
1314
  readonly type: {
1246
1315
  readonly type: "string";
1247
- readonly nullable: true;
1248
- readonly description: "Payment method type type. Only `card` payments supported at the moment.";
1316
+ readonly description: "Payment method type. `card`, `sepa_debit` for SEPA Direct Debit (business accounts only), or `bank_transfer` for paying invoices by bank transfer.";
1249
1317
  readonly example: "card";
1250
- readonly enum: readonly ["card"];
1318
+ readonly enum: readonly ["card", "sepa_debit", "bank_transfer"];
1251
1319
  };
1252
1320
  readonly last4: {
1253
1321
  readonly type: "string";
1254
1322
  readonly nullable: true;
1255
- readonly description: "Last 4 digits of the payment card number.";
1323
+ readonly description: "Last 4 digits of the payment card number, of the bank account (IBAN) for SEPA Direct Debit, or of the destination IBAN for bank transfer.";
1256
1324
  readonly example: "4242";
1257
1325
  };
1258
1326
  readonly exp_month: {
@@ -1260,25 +1328,46 @@ export declare const PaymentMethodSchema: {
1260
1328
  readonly minimum: 1;
1261
1329
  readonly maximum: 12;
1262
1330
  readonly nullable: true;
1263
- readonly description: "Two-digit number representing the card's expiration month.";
1264
- readonly example: "12";
1331
+ readonly description: "Two-digit number representing the card's expiration month. Null for SEPA Direct Debit and bank transfer.";
1332
+ readonly example: 12;
1265
1333
  };
1266
1334
  readonly exp_year: {
1267
1335
  readonly type: "integer";
1268
- readonly minimum: 2024;
1269
1336
  readonly nullable: true;
1270
- readonly description: "Four-digit number representing the card's expiration year.";
1271
- readonly example: "2028";
1337
+ readonly description: "Four-digit number representing the card's expiration year. May be in the past for an expired card still on file. Null for SEPA Direct Debit and bank transfer.";
1338
+ readonly example: 2028;
1272
1339
  };
1273
1340
  readonly brand: {
1274
1341
  readonly type: "string";
1275
1342
  readonly nullable: true;
1276
- readonly description: "Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.";
1343
+ readonly description: "Payment card brand as reported by Stripe, e.g. `visa`, `mastercard`, `amex`, `cartes_bancaires`, or `unknown`. Null for SEPA Direct Debit and bank transfer.";
1277
1344
  readonly example: "visa";
1278
- readonly enum: readonly ["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"];
1345
+ };
1346
+ readonly iban: {
1347
+ readonly type: "string";
1348
+ readonly nullable: true;
1349
+ readonly description: "Full destination IBAN to send bank transfers to. Set only for `bank_transfer`; null otherwise. This is Cloudfleet's virtual receiving account, shown in full so the customer can pay into it.";
1350
+ readonly example: "DE11243015658023127510";
1351
+ };
1352
+ readonly bic: {
1353
+ readonly type: "string";
1354
+ readonly nullable: true;
1355
+ readonly description: "BIC/SWIFT of the destination bank for bank transfers. Set only for `bank_transfer`; null otherwise.";
1356
+ readonly example: "SOGEDEFFXXX";
1357
+ };
1358
+ readonly account_holder_name: {
1359
+ readonly type: "string";
1360
+ readonly nullable: true;
1361
+ readonly description: "Account holder name of the destination bank account for bank transfers. Set only for `bank_transfer`; null otherwise.";
1362
+ readonly example: "Cloudfleet GmbH";
1363
+ };
1364
+ readonly is_default: {
1365
+ readonly type: "boolean";
1366
+ readonly description: "Whether this payment method is the default used for invoices and active subscriptions. Always false for `bank_transfer` (it cannot be a Stripe default payment method).";
1367
+ readonly example: true;
1279
1368
  };
1280
1369
  };
1281
- readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
1370
+ readonly required: readonly ["id", "type", "last4", "exp_month", "exp_year", "brand", "iban", "bic", "account_holder_name", "is_default"];
1282
1371
  readonly additionalProperties: false;
1283
1372
  };
1284
1373
  export declare const PlatformQuotaSchema: {
@@ -2240,18 +2329,6 @@ export declare const UserCreateInputSchema: {
2240
2329
  readonly minLength: 8;
2241
2330
  readonly description: "User password. Must be at least 8 characters long.";
2242
2331
  };
2243
- readonly status: {
2244
- readonly type: "string";
2245
- readonly description: "Status of the user. Can be `active` or `inactive`. Inactive users cannot log in or manage organization resources.";
2246
- readonly example: "active";
2247
- readonly enum: readonly ["active", "inactive"];
2248
- };
2249
- readonly role: {
2250
- readonly type: "string";
2251
- readonly description: "User role. Can be 'Administrator', 'User'.";
2252
- readonly example: "User";
2253
- readonly enum: readonly ["Administrator", "User"];
2254
- };
2255
2332
  };
2256
2333
  readonly required: readonly ["email", "first_name", "last_name", "code", "password"];
2257
2334
  readonly additionalProperties: false;
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}