@cloudfleet/sdk 0.0.1-017af9f → 0.0.1-028b8fa
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/@tanstack/react-query.gen.d.ts +26 -12
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +48 -10
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +135 -57
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +190 -79
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +21 -7
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +26 -8
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +165 -61
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +161 -105
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +78 -51
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
type: z.ZodEnum<{
|
|
4
|
+
business: "business";
|
|
5
|
+
personal: "personal";
|
|
6
|
+
}>;
|
|
3
7
|
company: z.ZodOptional<z.ZodString>;
|
|
4
8
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
9
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -275,29 +279,29 @@ export declare const zClusterUpdateInput: z.ZodObject<{
|
|
|
275
279
|
}, z.core.$strip>;
|
|
276
280
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
277
281
|
limits: z.ZodOptional<z.ZodObject<{
|
|
278
|
-
cpu: z.ZodOptional<z.
|
|
282
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
279
283
|
}, z.core.$strip>>;
|
|
280
284
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
281
|
-
enabled: z.
|
|
282
|
-
project: z.ZodString
|
|
285
|
+
enabled: z.ZodBoolean;
|
|
286
|
+
project: z.ZodOptional<z.ZodString>;
|
|
283
287
|
}, z.core.$strip>>;
|
|
284
288
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
285
|
-
enabled: z.
|
|
289
|
+
enabled: z.ZodBoolean;
|
|
286
290
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
287
291
|
}, z.core.$strip>>;
|
|
288
292
|
aws: z.ZodOptional<z.ZodObject<{
|
|
289
|
-
enabled: z.
|
|
290
|
-
controllerRoleArn: z.ZodString
|
|
293
|
+
enabled: z.ZodBoolean;
|
|
294
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
295
|
}, z.core.$strip>>;
|
|
292
296
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
293
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
297
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
298
|
"on-demand": "on-demand";
|
|
295
299
|
spot: "spot";
|
|
296
|
-
}
|
|
297
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
300
|
+
}>>>>;
|
|
301
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
298
302
|
amd64: "amd64";
|
|
299
303
|
arm64: "arm64";
|
|
300
|
-
}
|
|
304
|
+
}>>>>;
|
|
301
305
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
306
|
p3: "p3";
|
|
303
307
|
cx: "cx";
|
|
@@ -525,37 +529,37 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
525
529
|
"us-west4": "us-west4";
|
|
526
530
|
}>>>;
|
|
527
531
|
}, z.core.$strip>>;
|
|
528
|
-
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
532
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
529
533
|
aggressive: "aggressive";
|
|
530
534
|
conservative: "conservative";
|
|
531
|
-
}
|
|
535
|
+
}>>>;
|
|
532
536
|
id: z.ZodString;
|
|
533
537
|
}, z.core.$strip>;
|
|
534
538
|
export declare const zFleet: z.ZodObject<{
|
|
535
539
|
limits: z.ZodOptional<z.ZodObject<{
|
|
536
|
-
cpu: z.ZodOptional<z.
|
|
540
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
537
541
|
}, z.core.$strip>>;
|
|
538
542
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
539
|
-
enabled: z.
|
|
540
|
-
project: z.ZodString
|
|
543
|
+
enabled: z.ZodBoolean;
|
|
544
|
+
project: z.ZodOptional<z.ZodString>;
|
|
541
545
|
}, z.core.$strip>>;
|
|
542
546
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
543
|
-
enabled: z.
|
|
547
|
+
enabled: z.ZodBoolean;
|
|
544
548
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
545
549
|
}, z.core.$strip>>;
|
|
546
550
|
aws: z.ZodOptional<z.ZodObject<{
|
|
547
|
-
enabled: z.
|
|
548
|
-
controllerRoleArn: z.ZodString
|
|
551
|
+
enabled: z.ZodBoolean;
|
|
552
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
553
|
}, z.core.$strip>>;
|
|
550
554
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
551
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
555
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
552
556
|
"on-demand": "on-demand";
|
|
553
557
|
spot: "spot";
|
|
554
|
-
}
|
|
555
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
558
|
+
}>>>>;
|
|
559
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
556
560
|
amd64: "amd64";
|
|
557
561
|
arm64: "arm64";
|
|
558
|
-
}
|
|
562
|
+
}>>>>;
|
|
559
563
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
564
|
p3: "p3";
|
|
561
565
|
cx: "cx";
|
|
@@ -783,7 +787,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
783
787
|
"us-west4": "us-west4";
|
|
784
788
|
}>>>;
|
|
785
789
|
}, z.core.$strip>>;
|
|
786
|
-
scalingProfile: z.
|
|
790
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
787
791
|
aggressive: "aggressive";
|
|
788
792
|
conservative: "conservative";
|
|
789
793
|
}>>;
|
|
@@ -791,19 +795,19 @@ export declare const zFleet: z.ZodObject<{
|
|
|
791
795
|
}, z.core.$strip>;
|
|
792
796
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
793
797
|
limits: z.ZodOptional<z.ZodObject<{
|
|
794
|
-
cpu: z.ZodOptional<z.
|
|
798
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
795
799
|
}, z.core.$strip>>;
|
|
796
800
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
797
|
-
enabled: z.
|
|
798
|
-
project: z.ZodString
|
|
801
|
+
enabled: z.ZodBoolean;
|
|
802
|
+
project: z.ZodOptional<z.ZodString>;
|
|
799
803
|
}, z.core.$strip>>;
|
|
800
804
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
801
|
-
enabled: z.
|
|
805
|
+
enabled: z.ZodBoolean;
|
|
802
806
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
803
807
|
}, z.core.$strip>>;
|
|
804
808
|
aws: z.ZodOptional<z.ZodObject<{
|
|
805
|
-
enabled: z.
|
|
806
|
-
controllerRoleArn: z.ZodString
|
|
809
|
+
enabled: z.ZodBoolean;
|
|
810
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
811
|
}, z.core.$strip>>;
|
|
808
812
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
813
|
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1041,10 +1045,10 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1041
1045
|
"us-west4": "us-west4";
|
|
1042
1046
|
}>>>;
|
|
1043
1047
|
}, z.core.$strip>>;
|
|
1044
|
-
scalingProfile: z.
|
|
1048
|
+
scalingProfile: z.ZodEnum<{
|
|
1045
1049
|
aggressive: "aggressive";
|
|
1046
1050
|
conservative: "conservative";
|
|
1047
|
-
}
|
|
1051
|
+
}>;
|
|
1048
1052
|
}, z.core.$strip>;
|
|
1049
1053
|
export declare const zInvite: z.ZodObject<{
|
|
1050
1054
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1091,15 +1095,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1091
1095
|
}, z.core.$strip>>;
|
|
1092
1096
|
}, z.core.$strip>;
|
|
1093
1097
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1098
|
+
type: z.ZodEnum<{
|
|
1099
|
+
business: "business";
|
|
1100
|
+
personal: "personal";
|
|
1101
|
+
}>;
|
|
1094
1102
|
email: z.ZodEmail;
|
|
1095
1103
|
first_name: z.ZodString;
|
|
1096
1104
|
last_name: z.ZodString;
|
|
1097
1105
|
company_name: z.ZodString;
|
|
1098
1106
|
password: z.ZodString;
|
|
1099
1107
|
}, z.core.$strip>;
|
|
1108
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1109
|
+
id: z.ZodString;
|
|
1110
|
+
}, z.core.$strip>;
|
|
1100
1111
|
export declare const zOrganization: z.ZodObject<{
|
|
1101
1112
|
id: z.ZodUUID;
|
|
1102
1113
|
name: z.ZodOptional<z.ZodString>;
|
|
1114
|
+
type: z.ZodEnum<{
|
|
1115
|
+
business: "business";
|
|
1116
|
+
personal: "personal";
|
|
1117
|
+
}>;
|
|
1103
1118
|
date_created: z.ZodISODateTime;
|
|
1104
1119
|
quota: z.ZodObject<{
|
|
1105
1120
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1120,27 +1135,27 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1120
1135
|
closed: "closed";
|
|
1121
1136
|
suspended: "suspended";
|
|
1122
1137
|
}>;
|
|
1138
|
+
verification: z.ZodEnum<{
|
|
1139
|
+
none: "none";
|
|
1140
|
+
submitted: "submitted";
|
|
1141
|
+
verified: "verified";
|
|
1142
|
+
}>;
|
|
1123
1143
|
}, z.core.$strip>;
|
|
1124
1144
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1125
|
-
id: z.
|
|
1126
|
-
setup: z.ZodBoolean;
|
|
1145
|
+
id: z.ZodString;
|
|
1127
1146
|
type: z.ZodEnum<{
|
|
1128
1147
|
card: "card";
|
|
1148
|
+
sepa_debit: "sepa_debit";
|
|
1149
|
+
bank_transfer: "bank_transfer";
|
|
1129
1150
|
}>;
|
|
1130
1151
|
last4: z.ZodString;
|
|
1131
1152
|
exp_month: z.ZodInt;
|
|
1132
1153
|
exp_year: z.ZodInt;
|
|
1133
|
-
brand: z.
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
eftpos_au: "eftpos_au";
|
|
1139
|
-
jcb: "jcb";
|
|
1140
|
-
mastercard: "mastercard";
|
|
1141
|
-
unionpay: "unionpay";
|
|
1142
|
-
visa: "visa";
|
|
1143
|
-
}>;
|
|
1154
|
+
brand: z.ZodString;
|
|
1155
|
+
iban: z.ZodString;
|
|
1156
|
+
bic: z.ZodString;
|
|
1157
|
+
account_holder_name: z.ZodString;
|
|
1158
|
+
is_default: z.ZodBoolean;
|
|
1144
1159
|
}, z.core.$strip>;
|
|
1145
1160
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
1161
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1425,36 +1440,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
1425
1440
|
}, z.core.$strip>;
|
|
1426
1441
|
}, z.core.$strip>;
|
|
1427
1442
|
/**
|
|
1428
|
-
*
|
|
1443
|
+
* 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.
|
|
1444
|
+
*
|
|
1429
1445
|
*/
|
|
1430
|
-
export declare const
|
|
1431
|
-
id: z.
|
|
1432
|
-
|
|
1446
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1447
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1448
|
+
}, z.core.$strip>;
|
|
1449
|
+
/**
|
|
1450
|
+
* An array of payment methods.
|
|
1451
|
+
*/
|
|
1452
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
1453
|
+
id: z.ZodString;
|
|
1433
1454
|
type: z.ZodEnum<{
|
|
1434
1455
|
card: "card";
|
|
1456
|
+
sepa_debit: "sepa_debit";
|
|
1457
|
+
bank_transfer: "bank_transfer";
|
|
1435
1458
|
}>;
|
|
1436
1459
|
last4: z.ZodString;
|
|
1437
1460
|
exp_month: z.ZodInt;
|
|
1438
1461
|
exp_year: z.ZodInt;
|
|
1439
|
-
brand: z.
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
unionpay: "unionpay";
|
|
1448
|
-
visa: "visa";
|
|
1449
|
-
}>;
|
|
1462
|
+
brand: z.ZodString;
|
|
1463
|
+
iban: z.ZodString;
|
|
1464
|
+
bic: z.ZodString;
|
|
1465
|
+
account_holder_name: z.ZodString;
|
|
1466
|
+
is_default: z.ZodBoolean;
|
|
1467
|
+
}, z.core.$strip>>;
|
|
1468
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
1469
|
+
paymentMethodId: z.ZodString;
|
|
1450
1470
|
}, z.core.$strip>;
|
|
1451
1471
|
/**
|
|
1452
|
-
*
|
|
1453
|
-
*
|
|
1472
|
+
* Default payment method updated.
|
|
1454
1473
|
*/
|
|
1455
|
-
export declare const
|
|
1456
|
-
|
|
1474
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
1475
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
1476
|
+
paymentMethodId: z.ZodString;
|
|
1457
1477
|
}, z.core.$strip>;
|
|
1478
|
+
/**
|
|
1479
|
+
* Payment method deleted.
|
|
1480
|
+
*/
|
|
1481
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
1458
1482
|
/**
|
|
1459
1483
|
* An array of usage records.
|
|
1460
1484
|
*/
|
|
@@ -1473,6 +1497,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1473
1497
|
* Returns a single object containing organization contact and billing address details.
|
|
1474
1498
|
*/
|
|
1475
1499
|
export declare const zGetContactResponse: z.ZodObject<{
|
|
1500
|
+
type: z.ZodEnum<{
|
|
1501
|
+
business: "business";
|
|
1502
|
+
personal: "personal";
|
|
1503
|
+
}>;
|
|
1476
1504
|
company: z.ZodOptional<z.ZodString>;
|
|
1477
1505
|
address1: z.ZodOptional<z.ZodString>;
|
|
1478
1506
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1616,6 +1644,10 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1616
1644
|
}>>;
|
|
1617
1645
|
}, z.core.$strip>;
|
|
1618
1646
|
export declare const zUpdateContactBody: z.ZodObject<{
|
|
1647
|
+
type: z.ZodEnum<{
|
|
1648
|
+
business: "business";
|
|
1649
|
+
personal: "personal";
|
|
1650
|
+
}>;
|
|
1619
1651
|
company: z.ZodOptional<z.ZodString>;
|
|
1620
1652
|
address1: z.ZodOptional<z.ZodString>;
|
|
1621
1653
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1762,6 +1794,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
|
|
|
1762
1794
|
* Successfully updated. Returns updated organization details.
|
|
1763
1795
|
*/
|
|
1764
1796
|
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1797
|
+
type: z.ZodEnum<{
|
|
1798
|
+
business: "business";
|
|
1799
|
+
personal: "personal";
|
|
1800
|
+
}>;
|
|
1765
1801
|
company: z.ZodOptional<z.ZodString>;
|
|
1766
1802
|
address1: z.ZodOptional<z.ZodString>;
|
|
1767
1803
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -2032,29 +2068,29 @@ export declare const zListFleetsPath: z.ZodObject<{
|
|
|
2032
2068
|
*/
|
|
2033
2069
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
2034
2070
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2035
|
-
cpu: z.ZodOptional<z.
|
|
2071
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2036
2072
|
}, z.core.$strip>>;
|
|
2037
2073
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2038
|
-
enabled: z.
|
|
2039
|
-
project: z.ZodString
|
|
2074
|
+
enabled: z.ZodBoolean;
|
|
2075
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2040
2076
|
}, z.core.$strip>>;
|
|
2041
2077
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2042
|
-
enabled: z.
|
|
2078
|
+
enabled: z.ZodBoolean;
|
|
2043
2079
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2044
2080
|
}, z.core.$strip>>;
|
|
2045
2081
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2046
|
-
enabled: z.
|
|
2047
|
-
controllerRoleArn: z.ZodString
|
|
2082
|
+
enabled: z.ZodBoolean;
|
|
2083
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
2084
|
}, z.core.$strip>>;
|
|
2049
2085
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2050
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2086
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2051
2087
|
"on-demand": "on-demand";
|
|
2052
2088
|
spot: "spot";
|
|
2053
|
-
}
|
|
2054
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2089
|
+
}>>>>;
|
|
2090
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2055
2091
|
amd64: "amd64";
|
|
2056
2092
|
arm64: "arm64";
|
|
2057
|
-
}
|
|
2093
|
+
}>>>>;
|
|
2058
2094
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
2095
|
p3: "p3";
|
|
2060
2096
|
cx: "cx";
|
|
@@ -2282,7 +2318,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2282
2318
|
"us-west4": "us-west4";
|
|
2283
2319
|
}>>>;
|
|
2284
2320
|
}, z.core.$strip>>;
|
|
2285
|
-
scalingProfile: z.
|
|
2321
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2286
2322
|
aggressive: "aggressive";
|
|
2287
2323
|
conservative: "conservative";
|
|
2288
2324
|
}>>;
|
|
@@ -2290,29 +2326,29 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2290
2326
|
}, z.core.$strip>>;
|
|
2291
2327
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
2328
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2293
|
-
cpu: z.ZodOptional<z.
|
|
2329
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2294
2330
|
}, z.core.$strip>>;
|
|
2295
2331
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2296
|
-
enabled: z.
|
|
2297
|
-
project: z.ZodString
|
|
2332
|
+
enabled: z.ZodBoolean;
|
|
2333
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2298
2334
|
}, z.core.$strip>>;
|
|
2299
2335
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2300
|
-
enabled: z.
|
|
2336
|
+
enabled: z.ZodBoolean;
|
|
2301
2337
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2302
2338
|
}, z.core.$strip>>;
|
|
2303
2339
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2304
|
-
enabled: z.
|
|
2305
|
-
controllerRoleArn: z.ZodString
|
|
2340
|
+
enabled: z.ZodBoolean;
|
|
2341
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
2342
|
}, z.core.$strip>>;
|
|
2307
2343
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2308
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2344
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
2345
|
"on-demand": "on-demand";
|
|
2310
2346
|
spot: "spot";
|
|
2311
|
-
}
|
|
2312
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2347
|
+
}>>>>;
|
|
2348
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2313
2349
|
amd64: "amd64";
|
|
2314
2350
|
arm64: "arm64";
|
|
2315
|
-
}
|
|
2351
|
+
}>>>>;
|
|
2316
2352
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
2353
|
p3: "p3";
|
|
2318
2354
|
cx: "cx";
|
|
@@ -2540,10 +2576,10 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2540
2576
|
"us-west4": "us-west4";
|
|
2541
2577
|
}>>>;
|
|
2542
2578
|
}, z.core.$strip>>;
|
|
2543
|
-
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2579
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2544
2580
|
aggressive: "aggressive";
|
|
2545
2581
|
conservative: "conservative";
|
|
2546
|
-
}
|
|
2582
|
+
}>>>;
|
|
2547
2583
|
id: z.ZodString;
|
|
2548
2584
|
}, z.core.$strip>;
|
|
2549
2585
|
export declare const zCreateFleetPath: z.ZodObject<{
|
|
@@ -2570,29 +2606,29 @@ export declare const zGetFleetPath: z.ZodObject<{
|
|
|
2570
2606
|
*/
|
|
2571
2607
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
2572
2608
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2573
|
-
cpu: z.ZodOptional<z.
|
|
2609
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2574
2610
|
}, z.core.$strip>>;
|
|
2575
2611
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2576
|
-
enabled: z.
|
|
2577
|
-
project: z.ZodString
|
|
2612
|
+
enabled: z.ZodBoolean;
|
|
2613
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2578
2614
|
}, z.core.$strip>>;
|
|
2579
2615
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2580
|
-
enabled: z.
|
|
2616
|
+
enabled: z.ZodBoolean;
|
|
2581
2617
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2582
2618
|
}, z.core.$strip>>;
|
|
2583
2619
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2584
|
-
enabled: z.
|
|
2585
|
-
controllerRoleArn: z.ZodString
|
|
2620
|
+
enabled: z.ZodBoolean;
|
|
2621
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2586
2622
|
}, z.core.$strip>>;
|
|
2587
2623
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2588
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2624
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2589
2625
|
"on-demand": "on-demand";
|
|
2590
2626
|
spot: "spot";
|
|
2591
|
-
}
|
|
2592
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2627
|
+
}>>>>;
|
|
2628
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2593
2629
|
amd64: "amd64";
|
|
2594
2630
|
arm64: "arm64";
|
|
2595
|
-
}
|
|
2631
|
+
}>>>>;
|
|
2596
2632
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
2633
|
p3: "p3";
|
|
2598
2634
|
cx: "cx";
|
|
@@ -2820,7 +2856,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2820
2856
|
"us-west4": "us-west4";
|
|
2821
2857
|
}>>>;
|
|
2822
2858
|
}, z.core.$strip>>;
|
|
2823
|
-
scalingProfile: z.
|
|
2859
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2824
2860
|
aggressive: "aggressive";
|
|
2825
2861
|
conservative: "conservative";
|
|
2826
2862
|
}>>;
|
|
@@ -2828,19 +2864,19 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2828
2864
|
}, z.core.$strip>;
|
|
2829
2865
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
2866
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2831
|
-
cpu: z.ZodOptional<z.
|
|
2867
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2832
2868
|
}, z.core.$strip>>;
|
|
2833
2869
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2834
|
-
enabled: z.
|
|
2835
|
-
project: z.ZodString
|
|
2870
|
+
enabled: z.ZodBoolean;
|
|
2871
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2836
2872
|
}, z.core.$strip>>;
|
|
2837
2873
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2838
|
-
enabled: z.
|
|
2874
|
+
enabled: z.ZodBoolean;
|
|
2839
2875
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2840
2876
|
}, z.core.$strip>>;
|
|
2841
2877
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2842
|
-
enabled: z.
|
|
2843
|
-
controllerRoleArn: z.ZodString
|
|
2878
|
+
enabled: z.ZodBoolean;
|
|
2879
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
2880
|
}, z.core.$strip>>;
|
|
2845
2881
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
2882
|
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -3078,10 +3114,10 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3078
3114
|
"us-west4": "us-west4";
|
|
3079
3115
|
}>>>;
|
|
3080
3116
|
}, z.core.$strip>>;
|
|
3081
|
-
scalingProfile: z.
|
|
3117
|
+
scalingProfile: z.ZodEnum<{
|
|
3082
3118
|
aggressive: "aggressive";
|
|
3083
3119
|
conservative: "conservative";
|
|
3084
|
-
}
|
|
3120
|
+
}>;
|
|
3085
3121
|
}, z.core.$strip>;
|
|
3086
3122
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3087
3123
|
cluster_id: z.ZodString;
|
|
@@ -3378,6 +3414,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
3378
3414
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
3379
3415
|
id: z.ZodUUID;
|
|
3380
3416
|
name: z.ZodOptional<z.ZodString>;
|
|
3417
|
+
type: z.ZodEnum<{
|
|
3418
|
+
business: "business";
|
|
3419
|
+
personal: "personal";
|
|
3420
|
+
}>;
|
|
3381
3421
|
date_created: z.ZodISODateTime;
|
|
3382
3422
|
quota: z.ZodObject<{
|
|
3383
3423
|
basic_clusters_max: z.ZodInt;
|
|
@@ -3398,14 +3438,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
3398
3438
|
closed: "closed";
|
|
3399
3439
|
suspended: "suspended";
|
|
3400
3440
|
}>;
|
|
3441
|
+
verification: z.ZodEnum<{
|
|
3442
|
+
none: "none";
|
|
3443
|
+
submitted: "submitted";
|
|
3444
|
+
verified: "verified";
|
|
3445
|
+
}>;
|
|
3401
3446
|
}, z.core.$strip>;
|
|
3402
3447
|
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3448
|
+
type: z.ZodEnum<{
|
|
3449
|
+
business: "business";
|
|
3450
|
+
personal: "personal";
|
|
3451
|
+
}>;
|
|
3403
3452
|
email: z.ZodEmail;
|
|
3404
3453
|
first_name: z.ZodString;
|
|
3405
3454
|
last_name: z.ZodString;
|
|
3406
3455
|
company_name: z.ZodString;
|
|
3407
3456
|
password: z.ZodString;
|
|
3408
3457
|
}, z.core.$strip>;
|
|
3458
|
+
/**
|
|
3459
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
3460
|
+
*
|
|
3461
|
+
*/
|
|
3462
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
3463
|
+
id: z.ZodString;
|
|
3464
|
+
}, z.core.$strip>;
|
|
3409
3465
|
/**
|
|
3410
3466
|
* List of repositories
|
|
3411
3467
|
*/
|
package/dist/zod.gen.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"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"}
|