@cloudfleet/sdk 0.0.1-1ce83e7 → 0.0.1-1e6cbc3

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,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";
@@ -478,7 +515,7 @@ export declare const ClusterSchema: {
478
515
  readonly description: "Tier of the cluster.";
479
516
  readonly default: "basic";
480
517
  readonly example: "pro";
481
- readonly enum: readonly ["basic", "pro"];
518
+ readonly enum: readonly ["basic", "pro", "enterprise"];
482
519
  };
483
520
  readonly version_channel: {
484
521
  readonly type: "string";
@@ -651,7 +688,7 @@ export declare const ClusterUpdateInputSchema: {
651
688
  readonly description: "Tier of the cluster.";
652
689
  readonly default: "basic";
653
690
  readonly example: "pro";
654
- readonly enum: readonly ["basic", "pro"];
691
+ readonly enum: readonly ["basic", "pro", "enterprise"];
655
692
  };
656
693
  readonly version_channel: {
657
694
  readonly type: "string";
@@ -746,8 +783,8 @@ export declare const FleetCreateInputSchema: {
746
783
  readonly type: "string";
747
784
  readonly maxLength: 64;
748
785
  readonly minLength: 64;
749
- readonly pattern: "^[A-Za-z0-9]+$";
750
- readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
786
+ readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
787
+ 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
788
  };
752
789
  };
753
790
  readonly required: readonly ["enabled"];
@@ -1037,8 +1074,8 @@ export declare const FleetUpdateInputSchema: {
1037
1074
  readonly type: "string";
1038
1075
  readonly maxLength: 64;
1039
1076
  readonly minLength: 64;
1040
- readonly pattern: "^[A-Za-z0-9]+$";
1041
- readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
1077
+ readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
1078
+ 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
1079
  };
1043
1080
  };
1044
1081
  readonly required: readonly ["enabled"];
@@ -1483,6 +1520,17 @@ export declare const OrganizationSchema: {
1483
1520
  readonly description: "Available number of Pro clusters that can be created.";
1484
1521
  readonly example: 999;
1485
1522
  };
1523
+ readonly enterprise_clusters_max: {
1524
+ readonly type: "integer";
1525
+ readonly minimum: 0;
1526
+ readonly description: "Maximum number of Enterprise clusters that can be created.";
1527
+ readonly example: 999;
1528
+ };
1529
+ readonly enterprise_clusters_available: {
1530
+ readonly type: "integer";
1531
+ readonly description: "Available number of Enterprise clusters that can be created.";
1532
+ readonly example: 999;
1533
+ };
1486
1534
  readonly fleets_max: {
1487
1535
  readonly type: "integer";
1488
1536
  readonly minimum: 0;
@@ -1536,7 +1584,7 @@ export declare const OrganizationSchema: {
1536
1584
  readonly example: 500;
1537
1585
  };
1538
1586
  };
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"];
1587
+ 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
1588
  readonly additionalProperties: false;
1541
1589
  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
1590
  };
@@ -1647,6 +1695,17 @@ export declare const PlatformQuotaSchema: {
1647
1695
  readonly description: "Available number of Pro clusters that can be created.";
1648
1696
  readonly example: 999;
1649
1697
  };
1698
+ readonly enterprise_clusters_max: {
1699
+ readonly type: "integer";
1700
+ readonly minimum: 0;
1701
+ readonly description: "Maximum number of Enterprise clusters that can be created.";
1702
+ readonly example: 999;
1703
+ };
1704
+ readonly enterprise_clusters_available: {
1705
+ readonly type: "integer";
1706
+ readonly description: "Available number of Enterprise clusters that can be created.";
1707
+ readonly example: 999;
1708
+ };
1650
1709
  readonly fleets_max: {
1651
1710
  readonly type: "integer";
1652
1711
  readonly minimum: 0;
@@ -1700,7 +1759,7 @@ export declare const PlatformQuotaSchema: {
1700
1759
  readonly example: 500;
1701
1760
  };
1702
1761
  };
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"];
1762
+ 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
1763
  readonly additionalProperties: false;
1705
1764
  };
1706
1765
  export declare const RegistryRepositorySchema: {
@@ -1991,142 +2050,6 @@ export declare const TicketCreateInputSchema: {
1991
2050
  readonly required: readonly ["category", "body"];
1992
2051
  readonly additionalProperties: false;
1993
2052
  };
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
2053
  export declare const TicketMessageInputSchema: {
2131
2054
  readonly type: "object";
2132
2055
  readonly properties: {
@@ -2163,11 +2086,13 @@ export declare const TicketMessageSchema: {
2163
2086
  };
2164
2087
  readonly author_first_name: {
2165
2088
  readonly type: "string";
2089
+ readonly nullable: true;
2166
2090
  readonly description: "First name of the author. Null when not provided.";
2167
2091
  readonly example: "Jane";
2168
2092
  };
2169
2093
  readonly author_last_name: {
2170
2094
  readonly type: "string";
2095
+ readonly nullable: true;
2171
2096
  readonly description: "Last name of the author. Null when not provided.";
2172
2097
  readonly example: "Doe";
2173
2098
  };
@@ -2241,6 +2166,7 @@ export declare const TicketSchema: {
2241
2166
  readonly closed_at: {
2242
2167
  readonly type: "string";
2243
2168
  readonly format: "date-time";
2169
+ readonly nullable: true;
2244
2170
  readonly description: "Closure timestamp. Null while the ticket is open.";
2245
2171
  readonly example: "2026-05-18T16:08:14.338Z";
2246
2172
  };
@@ -2428,9 +2354,10 @@ export declare const UsageFacetsSchema: {
2428
2354
  readonly type: "array";
2429
2355
  readonly items: {
2430
2356
  readonly type: "string";
2357
+ 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
2358
  };
2432
2359
  readonly description: "List of unique products";
2433
- readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
2360
+ readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
2434
2361
  };
2435
2362
  };
2436
2363
  readonly additionalProperties: false;
@@ -2456,7 +2383,8 @@ export declare const UsageResponseSchema: {
2456
2383
  readonly product: {
2457
2384
  readonly type: "string";
2458
2385
  readonly description: "The product the usage is associated with";
2459
- readonly example: "cfke_controlplane";
2386
+ readonly example: "cfke_controlplane_pro";
2387
+ 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
2388
  };
2461
2389
  readonly value: {
2462
2390
  readonly type: "number";
@@ -2496,9 +2424,10 @@ export declare const UsageResponseSchema: {
2496
2424
  readonly type: "array";
2497
2425
  readonly items: {
2498
2426
  readonly type: "string";
2427
+ 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
2428
  };
2500
2429
  readonly description: "List of unique products";
2501
- readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
2430
+ readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
2502
2431
  };
2503
2432
  };
2504
2433
  readonly additionalProperties: false;
@@ -2524,7 +2453,8 @@ export declare const UsageSchema: {
2524
2453
  readonly product: {
2525
2454
  readonly type: "string";
2526
2455
  readonly description: "The product the usage is associated with";
2527
- readonly example: "cfke_controlplane";
2456
+ readonly example: "cfke_controlplane_pro";
2457
+ 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
2458
  };
2529
2459
  readonly value: {
2530
2460
  readonly type: "number";
@@ -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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"}