@cloudfleet/sdk 0.0.1-d582884 → 0.0.1-d824507

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.
Files changed (60) hide show
  1. package/dist/@tanstack/react-query.gen.d.ts +1125 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1129 -0
  4. package/dist/@tanstack/react-query.gen.js.map +1 -0
  5. package/dist/client/client.gen.d.ts.map +1 -1
  6. package/dist/client/client.gen.js +113 -98
  7. package/dist/client/client.gen.js.map +1 -1
  8. package/dist/client/index.d.ts +1 -1
  9. package/dist/client/index.d.ts.map +1 -1
  10. package/dist/client/index.js.map +1 -1
  11. package/dist/client/types.gen.d.ts +9 -13
  12. package/dist/client/types.gen.d.ts.map +1 -1
  13. package/dist/client/utils.gen.d.ts +6 -2
  14. package/dist/client/utils.gen.d.ts.map +1 -1
  15. package/dist/client/utils.gen.js +10 -12
  16. package/dist/client/utils.gen.js.map +1 -1
  17. package/dist/client.gen.d.ts.map +1 -1
  18. package/dist/client.gen.js +1 -3
  19. package/dist/client.gen.js.map +1 -1
  20. package/dist/core/auth.gen.d.ts.map +1 -1
  21. package/dist/core/auth.gen.js.map +1 -1
  22. package/dist/core/bodySerializer.gen.d.ts +16 -8
  23. package/dist/core/bodySerializer.gen.d.ts.map +1 -1
  24. package/dist/core/bodySerializer.gen.js +1 -1
  25. package/dist/core/bodySerializer.gen.js.map +1 -1
  26. package/dist/core/params.gen.d.ts +10 -0
  27. package/dist/core/params.gen.d.ts.map +1 -1
  28. package/dist/core/params.gen.js +18 -6
  29. package/dist/core/params.gen.js.map +1 -1
  30. package/dist/core/pathSerializer.gen.d.ts.map +1 -1
  31. package/dist/core/pathSerializer.gen.js +3 -11
  32. package/dist/core/pathSerializer.gen.js.map +1 -1
  33. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
  34. package/dist/core/queryKeySerializer.gen.js +4 -11
  35. package/dist/core/queryKeySerializer.gen.js.map +1 -1
  36. package/dist/core/serverSentEvents.gen.d.ts +1 -1
  37. package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
  38. package/dist/core/serverSentEvents.gen.js +6 -9
  39. package/dist/core/serverSentEvents.gen.js.map +1 -1
  40. package/dist/core/types.gen.d.ts +1 -1
  41. package/dist/core/types.gen.d.ts.map +1 -1
  42. package/dist/core/utils.gen.d.ts.map +1 -1
  43. package/dist/core/utils.gen.js +1 -1
  44. package/dist/core/utils.gen.js.map +1 -1
  45. package/dist/schemas.gen.d.ts +482 -32
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1108 -125
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +45 -5
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +105 -141
  52. package/dist/sdk.gen.js.map +1 -1
  53. package/dist/services/kubernetes/api.d.ts +8 -8
  54. package/dist/types.gen.d.ts +411 -21
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +692 -575
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +398 -493
  59. package/dist/zod.gen.js.map +1 -1
  60. package/package.json +28 -5
@@ -169,9 +169,9 @@ export type ClusterCreateInput = {
169
169
  */
170
170
  tier: 'basic' | 'pro';
171
171
  /**
172
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
172
+ * Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
173
173
  */
174
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
174
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
175
175
  /**
176
176
  * Version of the kubernetes cluster.
177
177
  */
@@ -186,6 +186,10 @@ export type ClusterJoinInformation = {
186
186
  * Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
187
187
  */
188
188
  endpoint: string;
189
+ /**
190
+ * Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
191
+ */
192
+ cluster_dns: string;
189
193
  /**
190
194
  * Authentication key for the cluster.
191
195
  */
@@ -243,9 +247,9 @@ export type Cluster = {
243
247
  */
244
248
  tier: 'basic' | 'pro';
245
249
  /**
246
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
250
+ * Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
247
251
  */
248
- region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
252
+ region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
249
253
  /**
250
254
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
251
255
  */
@@ -515,6 +519,10 @@ export type MarketplaceListing = {
515
519
  * Chart home URL
516
520
  */
517
521
  home?: string;
522
+ /**
523
+ * A URL to an SVG or PNG image to be used as an icon
524
+ */
525
+ icon?: string;
518
526
  /**
519
527
  * Chart source URLs
520
528
  */
@@ -615,13 +623,9 @@ export type Organization = {
615
623
  label: string;
616
624
  }>;
617
625
  /**
618
- * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
626
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
619
627
  */
620
- copilot_user_hourly_tokens: number;
621
- /**
622
- * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
623
- */
624
- copilot_organization_hourly_tokens: number;
628
+ cfcr_storage_gb: number;
625
629
  };
626
630
  /**
627
631
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
@@ -701,13 +705,9 @@ export type PlatformQuota = {
701
705
  label: string;
702
706
  }>;
703
707
  /**
704
- * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
705
- */
706
- copilot_user_hourly_tokens: number;
707
- /**
708
- * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
708
+ * Organization-level maximum CFCR storage volume in GB. -1 means no limit.
709
709
  */
710
- copilot_organization_hourly_tokens: number;
710
+ cfcr_storage_gb: number;
711
711
  };
712
712
  export type RegistryRepository = {
713
713
  /**
@@ -752,6 +752,10 @@ export type RegistryRepositoryWithTags = {
752
752
  * Media type of the manifest.
753
753
  */
754
754
  mediaType?: string;
755
+ /**
756
+ * Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
757
+ */
758
+ platforms?: Array<string>;
755
759
  }>;
756
760
  /**
757
761
  * Total size of all tags in the repository in bytes.
@@ -763,6 +767,10 @@ export type RegistryTag = {
763
767
  * Tag name.
764
768
  */
765
769
  name: string;
770
+ /**
771
+ * Manifest digest for pulling by digest.
772
+ */
773
+ digest: string;
766
774
  /**
767
775
  * Media type of the manifest.
768
776
  */
@@ -780,6 +788,10 @@ export type RegistryTag = {
780
788
  * Array of layer metadata.
781
789
  */
782
790
  layers?: Array<{
791
+ /**
792
+ * Digest of the layer.
793
+ */
794
+ digest?: string;
783
795
  /**
784
796
  * Size of the layer in bytes.
785
797
  */
@@ -805,7 +817,28 @@ export type RegistryTag = {
805
817
  * Operating system of the platform.
806
818
  */
807
819
  os: string;
820
+ /**
821
+ * Variant of the platform (e.g., v7, v8 for ARM).
822
+ */
823
+ variant?: string;
808
824
  };
825
+ /**
826
+ * Layers for this platform.
827
+ */
828
+ layers?: Array<{
829
+ /**
830
+ * Digest of the layer.
831
+ */
832
+ digest?: string;
833
+ /**
834
+ * Size of the layer in bytes.
835
+ */
836
+ size: number;
837
+ }>;
838
+ /**
839
+ * Total size of this platform manifest in bytes.
840
+ */
841
+ size?: number;
809
842
  }>;
810
843
  /**
811
844
  * Total size of the tag in bytes.
@@ -824,6 +857,258 @@ export type RegistryTag = {
824
857
  */
825
858
  uri: string;
826
859
  };
860
+ export type TicketAttachment = {
861
+ /**
862
+ * Unique identifier of the attachment (Mongo ObjectId).
863
+ */
864
+ id: string;
865
+ /**
866
+ * Original filename as uploaded.
867
+ */
868
+ filename: string;
869
+ /**
870
+ * MIME content type of the attachment.
871
+ */
872
+ content_type: string;
873
+ /**
874
+ * Size of the attachment in bytes.
875
+ */
876
+ size: number;
877
+ };
878
+ export type TicketCreateInput = {
879
+ /**
880
+ * Ticket category. Drives auto-assignment and may carry a subcategory in `properties`.
881
+ */
882
+ category: 'billing' | 'technical' | 'general';
883
+ /**
884
+ * Initial message body in markdown. There is no separate subject — the first message body is the description.
885
+ */
886
+ body: string;
887
+ /**
888
+ * Free-form key/value bag set by the UI (e.g. `subcategory`, `cluster_id`, `cluster_name`, `region`).
889
+ */
890
+ properties?: {
891
+ [key: string]: unknown;
892
+ };
893
+ };
894
+ export type TicketListResponse = {
895
+ /**
896
+ * Tickets for the organization, ordered newest first. Messages are omitted from list responses.
897
+ */
898
+ items: Array<{
899
+ /**
900
+ * Unique identifier of the ticket (Mongo ObjectId).
901
+ */
902
+ id: string;
903
+ /**
904
+ * Current state of the ticket.
905
+ */
906
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
907
+ /**
908
+ * Ticket category.
909
+ */
910
+ category: 'billing' | 'technical' | 'general';
911
+ /**
912
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
913
+ */
914
+ summary: string;
915
+ /**
916
+ * Closure timestamp. Null while the ticket is open.
917
+ */
918
+ closed_at?: string;
919
+ /**
920
+ * Creation date of the ticket. ISO 8601 UTC.
921
+ */
922
+ date_created: string;
923
+ /**
924
+ * Last update date of the ticket. ISO 8601 UTC.
925
+ */
926
+ date_updated: string;
927
+ /**
928
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
929
+ */
930
+ messages?: Array<{
931
+ /**
932
+ * Unique identifier of the message (Mongo ObjectId).
933
+ */
934
+ id: string;
935
+ /**
936
+ * Message type. Internal notes are filtered out of customer-facing responses.
937
+ */
938
+ type: 'customer_reply' | 'agent_reply';
939
+ /**
940
+ * Message body in markdown.
941
+ */
942
+ body: string;
943
+ /**
944
+ * First name of the author. Null when not provided.
945
+ */
946
+ author_first_name?: string;
947
+ /**
948
+ * Last name of the author. Null when not provided.
949
+ */
950
+ author_last_name?: string;
951
+ /**
952
+ * Attachments associated with this message.
953
+ */
954
+ attachments?: Array<{
955
+ /**
956
+ * Unique identifier of the attachment (Mongo ObjectId).
957
+ */
958
+ id: string;
959
+ /**
960
+ * Original filename as uploaded.
961
+ */
962
+ filename: string;
963
+ /**
964
+ * MIME content type of the attachment.
965
+ */
966
+ content_type: string;
967
+ /**
968
+ * Size of the attachment in bytes.
969
+ */
970
+ size: number;
971
+ }>;
972
+ /**
973
+ * Creation date of the message. ISO 8601 UTC.
974
+ */
975
+ date_created: string;
976
+ }>;
977
+ }>;
978
+ };
979
+ export type TicketMessageInput = {
980
+ /**
981
+ * Reply body in markdown.
982
+ */
983
+ body: string;
984
+ };
985
+ export type TicketMessage = {
986
+ /**
987
+ * Unique identifier of the message (Mongo ObjectId).
988
+ */
989
+ id: string;
990
+ /**
991
+ * Message type. Internal notes are filtered out of customer-facing responses.
992
+ */
993
+ type: 'customer_reply' | 'agent_reply';
994
+ /**
995
+ * Message body in markdown.
996
+ */
997
+ body: string;
998
+ /**
999
+ * First name of the author. Null when not provided.
1000
+ */
1001
+ author_first_name?: string;
1002
+ /**
1003
+ * Last name of the author. Null when not provided.
1004
+ */
1005
+ author_last_name?: string;
1006
+ /**
1007
+ * Attachments associated with this message.
1008
+ */
1009
+ attachments?: Array<{
1010
+ /**
1011
+ * Unique identifier of the attachment (Mongo ObjectId).
1012
+ */
1013
+ id: string;
1014
+ /**
1015
+ * Original filename as uploaded.
1016
+ */
1017
+ filename: string;
1018
+ /**
1019
+ * MIME content type of the attachment.
1020
+ */
1021
+ content_type: string;
1022
+ /**
1023
+ * Size of the attachment in bytes.
1024
+ */
1025
+ size: number;
1026
+ }>;
1027
+ /**
1028
+ * Creation date of the message. ISO 8601 UTC.
1029
+ */
1030
+ date_created: string;
1031
+ };
1032
+ export type Ticket = {
1033
+ /**
1034
+ * Unique identifier of the ticket (Mongo ObjectId).
1035
+ */
1036
+ id: string;
1037
+ /**
1038
+ * Current state of the ticket.
1039
+ */
1040
+ status: 'waiting_on_us' | 'waiting_on_user' | 'closed';
1041
+ /**
1042
+ * Ticket category.
1043
+ */
1044
+ category: 'billing' | 'technical' | 'general';
1045
+ /**
1046
+ * First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.
1047
+ */
1048
+ summary: string;
1049
+ /**
1050
+ * Closure timestamp. Null while the ticket is open.
1051
+ */
1052
+ closed_at?: string;
1053
+ /**
1054
+ * Creation date of the ticket. ISO 8601 UTC.
1055
+ */
1056
+ date_created: string;
1057
+ /**
1058
+ * Last update date of the ticket. ISO 8601 UTC.
1059
+ */
1060
+ date_updated: string;
1061
+ /**
1062
+ * Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.
1063
+ */
1064
+ messages?: Array<{
1065
+ /**
1066
+ * Unique identifier of the message (Mongo ObjectId).
1067
+ */
1068
+ id: string;
1069
+ /**
1070
+ * Message type. Internal notes are filtered out of customer-facing responses.
1071
+ */
1072
+ type: 'customer_reply' | 'agent_reply';
1073
+ /**
1074
+ * Message body in markdown.
1075
+ */
1076
+ body: string;
1077
+ /**
1078
+ * First name of the author. Null when not provided.
1079
+ */
1080
+ author_first_name?: string;
1081
+ /**
1082
+ * Last name of the author. Null when not provided.
1083
+ */
1084
+ author_last_name?: string;
1085
+ /**
1086
+ * Attachments associated with this message.
1087
+ */
1088
+ attachments?: Array<{
1089
+ /**
1090
+ * Unique identifier of the attachment (Mongo ObjectId).
1091
+ */
1092
+ id: string;
1093
+ /**
1094
+ * Original filename as uploaded.
1095
+ */
1096
+ filename: string;
1097
+ /**
1098
+ * MIME content type of the attachment.
1099
+ */
1100
+ content_type: string;
1101
+ /**
1102
+ * Size of the attachment in bytes.
1103
+ */
1104
+ size: number;
1105
+ }>;
1106
+ /**
1107
+ * Creation date of the message. ISO 8601 UTC.
1108
+ */
1109
+ date_created: string;
1110
+ }>;
1111
+ };
827
1112
  export type TokenCreateInput = {
828
1113
  /**
829
1114
  * Human readable access token name.
@@ -1646,22 +1931,22 @@ export type GetMarketplaceChartFilesData = {
1646
1931
  */
1647
1932
  chart_name: string;
1648
1933
  /**
1649
- * Version of the chart.
1934
+ * Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
1650
1935
  */
1651
- version: string;
1936
+ version_channel: string;
1652
1937
  };
1653
1938
  query?: never;
1654
- url: '/marketplace/{chart_name}/files/{version}';
1939
+ url: '/marketplace/{chart_name}/files/{version_channel}';
1655
1940
  };
1656
1941
  export type GetMarketplaceChartFilesErrors = {
1657
1942
  /**
1658
- * Chart or version not found
1943
+ * Chart not found or no version matches the channel
1659
1944
  */
1660
1945
  404: unknown;
1661
1946
  };
1662
1947
  export type GetMarketplaceChartFilesResponses = {
1663
1948
  /**
1664
- * Returns an object containing the chart files.
1949
+ * Returns an object containing the chart files for the latest matching version.
1665
1950
  */
1666
1951
  200: MarketplaceListingFiles;
1667
1952
  };
@@ -1871,6 +2156,111 @@ export type GetTagResponses = {
1871
2156
  200: RegistryTag;
1872
2157
  };
1873
2158
  export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
2159
+ export type ListTicketsData = {
2160
+ body?: never;
2161
+ path?: never;
2162
+ query?: never;
2163
+ url: '/tickets';
2164
+ };
2165
+ export type ListTicketsResponses = {
2166
+ /**
2167
+ * Tickets for the organization.
2168
+ */
2169
+ 200: TicketListResponse;
2170
+ };
2171
+ export type ListTicketsResponse = ListTicketsResponses[keyof ListTicketsResponses];
2172
+ export type CreateTicketData = {
2173
+ body: {
2174
+ /**
2175
+ * JSON-encoded TicketCreateInput.
2176
+ */
2177
+ payload?: string;
2178
+ attachments?: Array<Blob | File>;
2179
+ };
2180
+ path?: never;
2181
+ query?: never;
2182
+ url: '/tickets';
2183
+ };
2184
+ export type CreateTicketResponses = {
2185
+ /**
2186
+ * Ticket created.
2187
+ */
2188
+ 200: Ticket;
2189
+ };
2190
+ export type CreateTicketResponse = CreateTicketResponses[keyof CreateTicketResponses];
2191
+ export type CloseTicketData = {
2192
+ body?: never;
2193
+ path: {
2194
+ ticket_id: string;
2195
+ };
2196
+ query?: never;
2197
+ url: '/tickets/{ticket_id}';
2198
+ };
2199
+ export type CloseTicketResponses = {
2200
+ /**
2201
+ * Ticket closed.
2202
+ */
2203
+ 200: Ticket;
2204
+ };
2205
+ export type CloseTicketResponse = CloseTicketResponses[keyof CloseTicketResponses];
2206
+ export type GetTicketData = {
2207
+ body?: never;
2208
+ path: {
2209
+ ticket_id: string;
2210
+ };
2211
+ query?: never;
2212
+ url: '/tickets/{ticket_id}';
2213
+ };
2214
+ export type GetTicketResponses = {
2215
+ /**
2216
+ * Ticket with messages (internal notes excluded).
2217
+ */
2218
+ 200: Ticket;
2219
+ };
2220
+ export type GetTicketResponse = GetTicketResponses[keyof GetTicketResponses];
2221
+ export type ReplyTicketData = {
2222
+ body: {
2223
+ /**
2224
+ * JSON-encoded TicketMessageInput.
2225
+ */
2226
+ payload?: string;
2227
+ attachments?: Array<Blob | File>;
2228
+ };
2229
+ path: {
2230
+ ticket_id: string;
2231
+ };
2232
+ query?: never;
2233
+ url: '/tickets/{ticket_id}/messages';
2234
+ };
2235
+ export type ReplyTicketErrors = {
2236
+ /**
2237
+ * Ticket is closed. Open a new ticket instead.
2238
+ */
2239
+ 409: unknown;
2240
+ };
2241
+ export type ReplyTicketResponses = {
2242
+ /**
2243
+ * Reply appended.
2244
+ */
2245
+ 200: TicketMessage;
2246
+ };
2247
+ export type ReplyTicketResponse = ReplyTicketResponses[keyof ReplyTicketResponses];
2248
+ export type GetTicketAttachmentData = {
2249
+ body?: never;
2250
+ path: {
2251
+ ticket_id: string;
2252
+ attachment_id: string;
2253
+ };
2254
+ query?: never;
2255
+ url: '/tickets/{ticket_id}/attachments/{attachment_id}';
2256
+ };
2257
+ export type GetTicketAttachmentResponses = {
2258
+ /**
2259
+ * Attachment binary stream.
2260
+ */
2261
+ 200: Blob | File;
2262
+ };
2263
+ export type GetTicketAttachmentResponse = GetTicketAttachmentResponses[keyof GetTicketAttachmentResponses];
1874
2264
  export type ListTokensData = {
1875
2265
  body?: never;
1876
2266
  path?: never;