@cloudfleet/sdk 0.0.1-a3b700e → 0.0.1-a3d32c9
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 +54 -4
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +50 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +85 -150
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +138 -181
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +27 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +37 -0
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +93 -97
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +149 -75
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +82 -44
- package/dist/zod.gen.js.map +1 -1
- package/package.json +6 -6
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
export declare const BasicPriceConsentInputSchema: {
|
|
2
|
+
readonly type: "object";
|
|
3
|
+
readonly properties: {
|
|
4
|
+
readonly decision: {
|
|
5
|
+
readonly type: "string";
|
|
6
|
+
readonly description: "The administrator's decision on the new Basic price. `accepted` continues to paid billing when the signup credit runs out; `rejected` opts out (clusters are suspended, never charged). A `rejected` org can later be flipped back to `accepted`.";
|
|
7
|
+
readonly example: "accepted";
|
|
8
|
+
readonly enum: readonly ["accepted", "rejected"];
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
readonly required: readonly ["decision"];
|
|
12
|
+
readonly additionalProperties: false;
|
|
13
|
+
};
|
|
14
|
+
export declare const BasicPriceConsentSchema: {
|
|
15
|
+
readonly type: "object";
|
|
16
|
+
readonly properties: {
|
|
17
|
+
readonly status: {
|
|
18
|
+
readonly type: "string";
|
|
19
|
+
readonly description: "Consent status for the new Basic price. `not_applicable` when the organization is not in scope for the migration. `pending` when the organization must opt in but no admin has decided yet. `accepted` / `rejected` reflect the recorded decision.";
|
|
20
|
+
readonly example: "pending";
|
|
21
|
+
readonly enum: readonly ["not_applicable", "pending", "accepted", "rejected"];
|
|
22
|
+
};
|
|
23
|
+
readonly decided_at: {
|
|
24
|
+
readonly type: "string";
|
|
25
|
+
readonly format: "date-time";
|
|
26
|
+
readonly description: "When the current decision was recorded. Absent while `not_applicable` or `pending`.";
|
|
27
|
+
readonly example: "2026-09-05T10:12:00.000Z";
|
|
28
|
+
};
|
|
29
|
+
readonly decided_by: {
|
|
30
|
+
readonly type: "string";
|
|
31
|
+
readonly description: "User id of the administrator who recorded the current decision. Absent while `not_applicable` or `pending`.";
|
|
32
|
+
readonly example: "2b7a5c9e-1f4d-4a1b-9c3e-8d2f6a0b1c2d";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
readonly required: readonly ["status"];
|
|
36
|
+
readonly additionalProperties: false;
|
|
37
|
+
};
|
|
1
38
|
export declare const BillingContactSchema: {
|
|
2
39
|
readonly type: "object";
|
|
3
40
|
readonly properties: {
|
|
@@ -277,7 +314,7 @@ export declare const ClusterCreateInputSchema: {
|
|
|
277
314
|
readonly description: "Tier of the cluster.";
|
|
278
315
|
readonly default: "basic";
|
|
279
316
|
readonly example: "pro";
|
|
280
|
-
readonly enum: readonly ["basic", "pro"];
|
|
317
|
+
readonly enum: readonly ["basic", "pro", "enterprise"];
|
|
281
318
|
};
|
|
282
319
|
readonly version_channel: {
|
|
283
320
|
readonly type: "string";
|
|
@@ -402,6 +439,11 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
402
439
|
readonly description: "Authentication key for the cluster.";
|
|
403
440
|
readonly example: "tskey-auth-kBV8wr1dk911CNTRL-...";
|
|
404
441
|
};
|
|
442
|
+
readonly login_server: {
|
|
443
|
+
readonly type: "string";
|
|
444
|
+
readonly description: "Coordination server the node registers against. Empty on data plane v1 clusters, where the node advertises its own tag instead. A non-empty value requires a client that declares the dataplane-v2 capability.";
|
|
445
|
+
readonly example: "https://415026b6-f00f-44f8-968d-fc6ef4d0fc6d.fabric.europe-central-1a.cfke.io";
|
|
446
|
+
};
|
|
405
447
|
readonly bootstrap_token: {
|
|
406
448
|
readonly type: "string";
|
|
407
449
|
readonly description: "Bootstrap token for the cluster.";
|
|
@@ -459,7 +501,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
459
501
|
readonly description: "OIDC Information for hosts to access to third party API's.";
|
|
460
502
|
};
|
|
461
503
|
};
|
|
462
|
-
readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "pod_cidr", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
504
|
+
readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "pod_cidr", "auth_key", "login_server", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
463
505
|
readonly additionalProperties: false;
|
|
464
506
|
};
|
|
465
507
|
export declare const ClusterSchema: {
|
|
@@ -478,7 +520,7 @@ export declare const ClusterSchema: {
|
|
|
478
520
|
readonly description: "Tier of the cluster.";
|
|
479
521
|
readonly default: "basic";
|
|
480
522
|
readonly example: "pro";
|
|
481
|
-
readonly enum: readonly ["basic", "pro"];
|
|
523
|
+
readonly enum: readonly ["basic", "pro", "enterprise"];
|
|
482
524
|
};
|
|
483
525
|
readonly version_channel: {
|
|
484
526
|
readonly type: "string";
|
|
@@ -651,7 +693,7 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
651
693
|
readonly description: "Tier of the cluster.";
|
|
652
694
|
readonly default: "basic";
|
|
653
695
|
readonly example: "pro";
|
|
654
|
-
readonly enum: readonly ["basic", "pro"];
|
|
696
|
+
readonly enum: readonly ["basic", "pro", "enterprise"];
|
|
655
697
|
};
|
|
656
698
|
readonly version_channel: {
|
|
657
699
|
readonly type: "string";
|
|
@@ -746,8 +788,8 @@ export declare const FleetCreateInputSchema: {
|
|
|
746
788
|
readonly type: "string";
|
|
747
789
|
readonly maxLength: 64;
|
|
748
790
|
readonly minLength: 64;
|
|
749
|
-
readonly pattern: "^[A-Za-z0-9]
|
|
750
|
-
readonly description: "Hetzner Cloud API token with read
|
|
791
|
+
readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
|
|
792
|
+
readonly description: "Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.";
|
|
751
793
|
};
|
|
752
794
|
};
|
|
753
795
|
readonly required: readonly ["enabled"];
|
|
@@ -1037,8 +1079,8 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1037
1079
|
readonly type: "string";
|
|
1038
1080
|
readonly maxLength: 64;
|
|
1039
1081
|
readonly minLength: 64;
|
|
1040
|
-
readonly pattern: "^[A-Za-z0-9]
|
|
1041
|
-
readonly description: "Hetzner Cloud API token with read
|
|
1082
|
+
readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
|
|
1083
|
+
readonly description: "Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.";
|
|
1042
1084
|
};
|
|
1043
1085
|
};
|
|
1044
1086
|
readonly required: readonly ["enabled"];
|
|
@@ -1483,6 +1525,17 @@ export declare const OrganizationSchema: {
|
|
|
1483
1525
|
readonly description: "Available number of Pro clusters that can be created.";
|
|
1484
1526
|
readonly example: 999;
|
|
1485
1527
|
};
|
|
1528
|
+
readonly enterprise_clusters_max: {
|
|
1529
|
+
readonly type: "integer";
|
|
1530
|
+
readonly minimum: 0;
|
|
1531
|
+
readonly description: "Maximum number of Enterprise clusters that can be created.";
|
|
1532
|
+
readonly example: 999;
|
|
1533
|
+
};
|
|
1534
|
+
readonly enterprise_clusters_available: {
|
|
1535
|
+
readonly type: "integer";
|
|
1536
|
+
readonly description: "Available number of Enterprise clusters that can be created.";
|
|
1537
|
+
readonly example: 999;
|
|
1538
|
+
};
|
|
1486
1539
|
readonly fleets_max: {
|
|
1487
1540
|
readonly type: "integer";
|
|
1488
1541
|
readonly minimum: 0;
|
|
@@ -1536,7 +1589,7 @@ export declare const OrganizationSchema: {
|
|
|
1536
1589
|
readonly example: 500;
|
|
1537
1590
|
};
|
|
1538
1591
|
};
|
|
1539
|
-
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1592
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "enterprise_clusters_max", "enterprise_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1540
1593
|
readonly additionalProperties: false;
|
|
1541
1594
|
readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
|
|
1542
1595
|
};
|
|
@@ -1647,6 +1700,17 @@ export declare const PlatformQuotaSchema: {
|
|
|
1647
1700
|
readonly description: "Available number of Pro clusters that can be created.";
|
|
1648
1701
|
readonly example: 999;
|
|
1649
1702
|
};
|
|
1703
|
+
readonly enterprise_clusters_max: {
|
|
1704
|
+
readonly type: "integer";
|
|
1705
|
+
readonly minimum: 0;
|
|
1706
|
+
readonly description: "Maximum number of Enterprise clusters that can be created.";
|
|
1707
|
+
readonly example: 999;
|
|
1708
|
+
};
|
|
1709
|
+
readonly enterprise_clusters_available: {
|
|
1710
|
+
readonly type: "integer";
|
|
1711
|
+
readonly description: "Available number of Enterprise clusters that can be created.";
|
|
1712
|
+
readonly example: 999;
|
|
1713
|
+
};
|
|
1650
1714
|
readonly fleets_max: {
|
|
1651
1715
|
readonly type: "integer";
|
|
1652
1716
|
readonly minimum: 0;
|
|
@@ -1700,7 +1764,7 @@ export declare const PlatformQuotaSchema: {
|
|
|
1700
1764
|
readonly example: 500;
|
|
1701
1765
|
};
|
|
1702
1766
|
};
|
|
1703
|
-
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1767
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "enterprise_clusters_max", "enterprise_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
|
|
1704
1768
|
readonly additionalProperties: false;
|
|
1705
1769
|
};
|
|
1706
1770
|
export declare const RegistryRepositorySchema: {
|
|
@@ -1991,142 +2055,6 @@ export declare const TicketCreateInputSchema: {
|
|
|
1991
2055
|
readonly required: readonly ["category", "body"];
|
|
1992
2056
|
readonly additionalProperties: false;
|
|
1993
2057
|
};
|
|
1994
|
-
export declare const TicketListResponseSchema: {
|
|
1995
|
-
readonly type: "object";
|
|
1996
|
-
readonly properties: {
|
|
1997
|
-
readonly items: {
|
|
1998
|
-
readonly type: "array";
|
|
1999
|
-
readonly items: {
|
|
2000
|
-
readonly type: "object";
|
|
2001
|
-
readonly properties: {
|
|
2002
|
-
readonly id: {
|
|
2003
|
-
readonly type: "string";
|
|
2004
|
-
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
2005
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
2006
|
-
};
|
|
2007
|
-
readonly status: {
|
|
2008
|
-
readonly type: "string";
|
|
2009
|
-
readonly description: "Current state of the ticket.";
|
|
2010
|
-
readonly example: "waiting_on_us";
|
|
2011
|
-
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
2012
|
-
};
|
|
2013
|
-
readonly category: {
|
|
2014
|
-
readonly type: "string";
|
|
2015
|
-
readonly description: "Ticket category.";
|
|
2016
|
-
readonly example: "technical";
|
|
2017
|
-
readonly enum: readonly ["billing", "technical", "general"];
|
|
2018
|
-
};
|
|
2019
|
-
readonly summary: {
|
|
2020
|
-
readonly type: "string";
|
|
2021
|
-
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
2022
|
-
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
2023
|
-
};
|
|
2024
|
-
readonly closed_at: {
|
|
2025
|
-
readonly type: "string";
|
|
2026
|
-
readonly format: "date-time";
|
|
2027
|
-
readonly nullable: true;
|
|
2028
|
-
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
2029
|
-
readonly example: "2026-05-18T16:08:14.338Z";
|
|
2030
|
-
};
|
|
2031
|
-
readonly date_created: {
|
|
2032
|
-
readonly type: "string";
|
|
2033
|
-
readonly format: "date-time";
|
|
2034
|
-
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
2035
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2036
|
-
};
|
|
2037
|
-
readonly date_updated: {
|
|
2038
|
-
readonly type: "string";
|
|
2039
|
-
readonly format: "date-time";
|
|
2040
|
-
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
2041
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2042
|
-
};
|
|
2043
|
-
readonly messages: {
|
|
2044
|
-
readonly type: "array";
|
|
2045
|
-
readonly items: {
|
|
2046
|
-
readonly type: "object";
|
|
2047
|
-
readonly properties: {
|
|
2048
|
-
readonly id: {
|
|
2049
|
-
readonly type: "string";
|
|
2050
|
-
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
2051
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
2052
|
-
};
|
|
2053
|
-
readonly type: {
|
|
2054
|
-
readonly type: "string";
|
|
2055
|
-
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
2056
|
-
readonly example: "customer_reply";
|
|
2057
|
-
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
2058
|
-
};
|
|
2059
|
-
readonly body: {
|
|
2060
|
-
readonly type: "string";
|
|
2061
|
-
readonly description: "Message body in markdown.";
|
|
2062
|
-
readonly example: "Thanks — that resolved it on my side.";
|
|
2063
|
-
};
|
|
2064
|
-
readonly author_first_name: {
|
|
2065
|
-
readonly type: "string";
|
|
2066
|
-
readonly nullable: true;
|
|
2067
|
-
readonly description: "First name of the author. Null when not provided.";
|
|
2068
|
-
readonly example: "Jane";
|
|
2069
|
-
};
|
|
2070
|
-
readonly author_last_name: {
|
|
2071
|
-
readonly type: "string";
|
|
2072
|
-
readonly nullable: true;
|
|
2073
|
-
readonly description: "Last name of the author. Null when not provided.";
|
|
2074
|
-
readonly example: "Doe";
|
|
2075
|
-
};
|
|
2076
|
-
readonly attachments: {
|
|
2077
|
-
readonly type: "array";
|
|
2078
|
-
readonly items: {
|
|
2079
|
-
readonly type: "object";
|
|
2080
|
-
readonly properties: {
|
|
2081
|
-
readonly id: {
|
|
2082
|
-
readonly type: "string";
|
|
2083
|
-
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
2084
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
2085
|
-
};
|
|
2086
|
-
readonly filename: {
|
|
2087
|
-
readonly type: "string";
|
|
2088
|
-
readonly description: "Original filename as uploaded.";
|
|
2089
|
-
readonly example: "debug.log";
|
|
2090
|
-
};
|
|
2091
|
-
readonly content_type: {
|
|
2092
|
-
readonly type: "string";
|
|
2093
|
-
readonly description: "MIME content type of the attachment.";
|
|
2094
|
-
readonly example: "text/plain";
|
|
2095
|
-
};
|
|
2096
|
-
readonly size: {
|
|
2097
|
-
readonly type: "integer";
|
|
2098
|
-
readonly description: "Size of the attachment in bytes.";
|
|
2099
|
-
readonly example: 12345;
|
|
2100
|
-
};
|
|
2101
|
-
};
|
|
2102
|
-
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
2103
|
-
readonly additionalProperties: false;
|
|
2104
|
-
};
|
|
2105
|
-
readonly description: "Attachments associated with this message.";
|
|
2106
|
-
readonly example: readonly [];
|
|
2107
|
-
};
|
|
2108
|
-
readonly date_created: {
|
|
2109
|
-
readonly type: "string";
|
|
2110
|
-
readonly format: "date-time";
|
|
2111
|
-
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
2112
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2113
|
-
};
|
|
2114
|
-
};
|
|
2115
|
-
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
2116
|
-
readonly additionalProperties: false;
|
|
2117
|
-
};
|
|
2118
|
-
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
2119
|
-
};
|
|
2120
|
-
};
|
|
2121
|
-
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
2122
|
-
readonly additionalProperties: false;
|
|
2123
|
-
};
|
|
2124
|
-
readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
|
|
2125
|
-
};
|
|
2126
|
-
};
|
|
2127
|
-
readonly required: readonly ["items"];
|
|
2128
|
-
readonly additionalProperties: false;
|
|
2129
|
-
};
|
|
2130
2058
|
export declare const TicketMessageInputSchema: {
|
|
2131
2059
|
readonly type: "object";
|
|
2132
2060
|
readonly properties: {
|
|
@@ -2163,11 +2091,13 @@ export declare const TicketMessageSchema: {
|
|
|
2163
2091
|
};
|
|
2164
2092
|
readonly author_first_name: {
|
|
2165
2093
|
readonly type: "string";
|
|
2094
|
+
readonly nullable: true;
|
|
2166
2095
|
readonly description: "First name of the author. Null when not provided.";
|
|
2167
2096
|
readonly example: "Jane";
|
|
2168
2097
|
};
|
|
2169
2098
|
readonly author_last_name: {
|
|
2170
2099
|
readonly type: "string";
|
|
2100
|
+
readonly nullable: true;
|
|
2171
2101
|
readonly description: "Last name of the author. Null when not provided.";
|
|
2172
2102
|
readonly example: "Doe";
|
|
2173
2103
|
};
|
|
@@ -2241,6 +2171,7 @@ export declare const TicketSchema: {
|
|
|
2241
2171
|
readonly closed_at: {
|
|
2242
2172
|
readonly type: "string";
|
|
2243
2173
|
readonly format: "date-time";
|
|
2174
|
+
readonly nullable: true;
|
|
2244
2175
|
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
2245
2176
|
readonly example: "2026-05-18T16:08:14.338Z";
|
|
2246
2177
|
};
|
|
@@ -2428,9 +2359,10 @@ export declare const UsageFacetsSchema: {
|
|
|
2428
2359
|
readonly type: "array";
|
|
2429
2360
|
readonly items: {
|
|
2430
2361
|
readonly type: "string";
|
|
2362
|
+
readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
|
|
2431
2363
|
};
|
|
2432
2364
|
readonly description: "List of unique products";
|
|
2433
|
-
readonly example: readonly ["
|
|
2365
|
+
readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
|
|
2434
2366
|
};
|
|
2435
2367
|
};
|
|
2436
2368
|
readonly additionalProperties: false;
|
|
@@ -2456,7 +2388,8 @@ export declare const UsageResponseSchema: {
|
|
|
2456
2388
|
readonly product: {
|
|
2457
2389
|
readonly type: "string";
|
|
2458
2390
|
readonly description: "The product the usage is associated with";
|
|
2459
|
-
readonly example: "
|
|
2391
|
+
readonly example: "cfke_controlplane_pro";
|
|
2392
|
+
readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
|
|
2460
2393
|
};
|
|
2461
2394
|
readonly value: {
|
|
2462
2395
|
readonly type: "number";
|
|
@@ -2496,9 +2429,10 @@ export declare const UsageResponseSchema: {
|
|
|
2496
2429
|
readonly type: "array";
|
|
2497
2430
|
readonly items: {
|
|
2498
2431
|
readonly type: "string";
|
|
2432
|
+
readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
|
|
2499
2433
|
};
|
|
2500
2434
|
readonly description: "List of unique products";
|
|
2501
|
-
readonly example: readonly ["
|
|
2435
|
+
readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
|
|
2502
2436
|
};
|
|
2503
2437
|
};
|
|
2504
2438
|
readonly additionalProperties: false;
|
|
@@ -2524,7 +2458,8 @@ export declare const UsageSchema: {
|
|
|
2524
2458
|
readonly product: {
|
|
2525
2459
|
readonly type: "string";
|
|
2526
2460
|
readonly description: "The product the usage is associated with";
|
|
2527
|
-
readonly example: "
|
|
2461
|
+
readonly example: "cfke_controlplane_pro";
|
|
2462
|
+
readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
|
|
2528
2463
|
};
|
|
2529
2464
|
readonly value: {
|
|
2530
2465
|
readonly type: "number";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8NvB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DvB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4Ed,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAmBzB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|