freestyle-sandboxes 0.1.2 → 0.1.5

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 (6) hide show
  1. package/README.md +2 -2
  2. package/index.cjs +1842 -1107
  3. package/index.d.cts +2240 -837
  4. package/index.d.mts +2240 -837
  5. package/index.mjs +1842 -1107
  6. package/package.json +1 -1
package/index.d.mts CHANGED
@@ -523,16 +523,6 @@ interface ResponseGetGitV1RepoRepoIdDefaultBranch403 {
523
523
  */
524
524
  message: string;
525
525
  }
526
- interface ResponseGetGitV1RepoRepoIdDefaultBranch404 {
527
- /**
528
- * Error code in SCREAMING_SNAKE_CASE
529
- */
530
- error: string;
531
- /**
532
- * Human-readable error message
533
- */
534
- message: string;
535
- }
536
526
  interface ResponseGetGitV1RepoRepoIdDefaultBranch500 {
537
527
  /**
538
528
  * Error code in SCREAMING_SNAKE_CASE
@@ -555,16 +545,6 @@ interface ResponsePutGitV1RepoRepoIdDefaultBranch403 {
555
545
  */
556
546
  message: string;
557
547
  }
558
- interface ResponsePutGitV1RepoRepoIdDefaultBranch404 {
559
- /**
560
- * Error code in SCREAMING_SNAKE_CASE
561
- */
562
- error: string;
563
- /**
564
- * Human-readable error message
565
- */
566
- message: string;
567
- }
568
548
  interface ResponsePutGitV1RepoRepoIdDefaultBranch500 {
569
549
  /**
570
550
  * Error code in SCREAMING_SNAKE_CASE
@@ -844,6 +824,7 @@ interface ResponseGetGitV1RepoRepo200 {
844
824
  accountId: string;
845
825
  visibility: "public" | "private";
846
826
  defaultBranch: string;
827
+ createdAt: string;
847
828
  }
848
829
  interface ResponseDeleteGitV1RepoRepo200 {
849
830
  }
@@ -857,16 +838,6 @@ interface ResponseDeleteGitV1RepoRepo403 {
857
838
  */
858
839
  message: string;
859
840
  }
860
- interface ResponseDeleteGitV1RepoRepo404 {
861
- /**
862
- * Error code in SCREAMING_SNAKE_CASE
863
- */
864
- error: string;
865
- /**
866
- * Human-readable error message
867
- */
868
- message: string;
869
- }
870
841
  interface ResponseDeleteGitV1RepoRepo500 {
871
842
  /**
872
843
  * Error code in SCREAMING_SNAKE_CASE
@@ -1004,6 +975,10 @@ interface ResponseGetGitV1RepoRepoGitBlobsHash200 {
1004
975
  */
1005
976
  size: number;
1006
977
  }
978
+ /**
979
+ * The selector used for this query (echoed back)
980
+ */
981
+ type ResponseGetGitV1RepoRepoGitCommits200CommitsSelector = ResponseGetGitV1RepoRepoGitCommits200Range | ResponseGetGitV1RepoRepoGitCommits200Since | ResponseGetGitV1RepoRepoGitCommits200Until;
1007
982
  interface ResponseGetGitV1RepoRepoGitCommits200 {
1008
983
  /**
1009
984
  * List of commits
@@ -1063,17 +1038,84 @@ interface ResponseGetGitV1RepoRepoGitCommits200 {
1063
1038
  */
1064
1039
  count: number;
1065
1040
  /**
1066
- * Number of commits skipped (offset)
1041
+ * Number of commits skipped (offset) - deprecated, use `since`/`until` selectors instead
1067
1042
  */
1068
- offset: number;
1043
+ offset?: number | null;
1069
1044
  /**
1070
1045
  * Maximum number of commits requested (limit)
1071
1046
  */
1072
1047
  limit: number;
1073
1048
  /**
1074
- * Total number of commits available in the branch
1049
+ * Total number of commits available in the branch/range
1075
1050
  */
1076
1051
  total: number;
1052
+ /**
1053
+ * Sort order for commit listing
1054
+ */
1055
+ order: "desc" | "asc";
1056
+ selector?: null | ResponseGetGitV1RepoRepoGitCommits200CommitsSelector;
1057
+ /**
1058
+ * SHA of the next commit for pagination. None if there are no more commits.
1059
+ * - For `order=desc`: use `until=next_commit` to get the next page
1060
+ * - For `order=asc`: use `since=next_commit` to get the next page
1061
+ */
1062
+ next_commit?: string | null;
1063
+ }
1064
+ /**
1065
+ * Select commits in a range (like git's A..B)
1066
+ */
1067
+ interface ResponseGetGitV1RepoRepoGitCommits200Range {
1068
+ /**
1069
+ * Select commits in a range (like git's A..B)
1070
+ */
1071
+ Range: {
1072
+ /**
1073
+ * Exclude this commit and its ancestors
1074
+ */
1075
+ since: string;
1076
+ /**
1077
+ * Start from this commit (inclusive)
1078
+ */
1079
+ until: string;
1080
+ };
1081
+ }
1082
+ /**
1083
+ * Select commits since this commit SHA (exclusive)
1084
+ */
1085
+ interface ResponseGetGitV1RepoRepoGitCommits200Since {
1086
+ /**
1087
+ * Select commits since this commit SHA (exclusive)
1088
+ */
1089
+ Since: string;
1090
+ }
1091
+ /**
1092
+ * Select commits until this commit SHA (inclusive)
1093
+ */
1094
+ interface ResponseGetGitV1RepoRepoGitCommits200Until {
1095
+ /**
1096
+ * Select commits until this commit SHA (inclusive)
1097
+ */
1098
+ Until: string;
1099
+ }
1100
+ interface ResponseGetGitV1RepoRepoGitCommits403 {
1101
+ /**
1102
+ * Error code in SCREAMING_SNAKE_CASE
1103
+ */
1104
+ error: string;
1105
+ /**
1106
+ * Human-readable error message
1107
+ */
1108
+ message: string;
1109
+ }
1110
+ interface ResponseGetGitV1RepoRepoGitCommits500 {
1111
+ /**
1112
+ * Error code in SCREAMING_SNAKE_CASE
1113
+ */
1114
+ error: string;
1115
+ /**
1116
+ * Human-readable error message
1117
+ */
1118
+ message: string;
1077
1119
  }
1078
1120
  /**
1079
1121
  * Commit object
@@ -1128,6 +1170,15 @@ interface ResponseGetGitV1RepoRepoGitCommitsHash200 {
1128
1170
  */
1129
1171
  sha: string;
1130
1172
  }
1173
+ interface ResponseGetGitV1RepoRepoGitRefsHeads200 {
1174
+ branches: {
1175
+ name: string;
1176
+ /**
1177
+ * The latest commit ID on this branch. Null if the branch is empty.
1178
+ */
1179
+ commit?: string | null;
1180
+ }[];
1181
+ }
1131
1182
  /**
1132
1183
  * A reference to a Git object
1133
1184
  */
@@ -1141,19 +1192,133 @@ interface ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 {
1141
1192
  */
1142
1193
  sha: string;
1143
1194
  }
1195
+ interface ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 {
1196
+ /**
1197
+ * Error code in SCREAMING_SNAKE_CASE
1198
+ */
1199
+ error: string;
1200
+ /**
1201
+ * Human-readable error message
1202
+ */
1203
+ message: string;
1204
+ }
1205
+ interface ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 {
1206
+ /**
1207
+ * Error code in SCREAMING_SNAKE_CASE
1208
+ */
1209
+ error: string;
1210
+ /**
1211
+ * Human-readable error message
1212
+ */
1213
+ message: string;
1214
+ }
1215
+ interface ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 {
1216
+ /**
1217
+ * Error code in SCREAMING_SNAKE_CASE
1218
+ */
1219
+ error: string;
1220
+ /**
1221
+ * Human-readable error message
1222
+ */
1223
+ message: string;
1224
+ }
1225
+ interface ResponseGetGitV1RepoRepoGitRefsTags200 {
1226
+ tags: {
1227
+ /**
1228
+ * The tag name
1229
+ */
1230
+ name: string;
1231
+ tagger?: null | {
1232
+ /**
1233
+ * The date marker for this signature
1234
+ */
1235
+ date: string;
1236
+ name: string;
1237
+ email: string;
1238
+ };
1239
+ /**
1240
+ * The tag message
1241
+ */
1242
+ message?: string | null;
1243
+ /**
1244
+ * The object this tag points to
1245
+ */
1246
+ target: {
1247
+ /**
1248
+ * The target object's hash ID
1249
+ */
1250
+ sha: string;
1251
+ };
1252
+ /**
1253
+ * The tag's hash ID
1254
+ */
1255
+ sha: string;
1256
+ }[];
1257
+ }
1144
1258
  /**
1145
- * A reference to a Git object
1259
+ * Tag object
1146
1260
  */
1147
1261
  interface ResponseGetGitV1RepoRepoGitRefsTagsTag200 {
1148
1262
  /**
1149
- * The name of the ref (e.g., "refs/heads/main" or "refs/tags/v1.0.0")
1263
+ * The tag name
1150
1264
  */
1151
1265
  name: string;
1266
+ tagger?: null | {
1267
+ /**
1268
+ * The date marker for this signature
1269
+ */
1270
+ date: string;
1271
+ name: string;
1272
+ email: string;
1273
+ };
1152
1274
  /**
1153
- * The SHA-1 hash of the Git object this reference points to
1275
+ * The tag message
1276
+ */
1277
+ message?: string | null;
1278
+ /**
1279
+ * The object this tag points to
1280
+ */
1281
+ target: {
1282
+ /**
1283
+ * The target object's hash ID
1284
+ */
1285
+ sha: string;
1286
+ };
1287
+ /**
1288
+ * The tag's hash ID
1154
1289
  */
1155
1290
  sha: string;
1156
1291
  }
1292
+ interface ResponseGetGitV1RepoRepoGitRefsTagsTag400 {
1293
+ /**
1294
+ * Error code in SCREAMING_SNAKE_CASE
1295
+ */
1296
+ error: string;
1297
+ /**
1298
+ * Human-readable error message
1299
+ */
1300
+ message: string;
1301
+ }
1302
+ interface ResponseGetGitV1RepoRepoGitRefsTagsTag403 {
1303
+ /**
1304
+ * Error code in SCREAMING_SNAKE_CASE
1305
+ */
1306
+ error: string;
1307
+ /**
1308
+ * Human-readable error message
1309
+ */
1310
+ message: string;
1311
+ }
1312
+ interface ResponseGetGitV1RepoRepoGitRefsTagsTag500 {
1313
+ /**
1314
+ * Error code in SCREAMING_SNAKE_CASE
1315
+ */
1316
+ error: string;
1317
+ /**
1318
+ * Human-readable error message
1319
+ */
1320
+ message: string;
1321
+ }
1157
1322
  /**
1158
1323
  * Tag object
1159
1324
  */
@@ -2016,7 +2181,6 @@ type responses_ResponseDeleteGitV1IdentityIdentityTokens404 = ResponseDeleteGitV
2016
2181
  type responses_ResponseDeleteGitV1IdentityIdentityTokens500 = ResponseDeleteGitV1IdentityIdentityTokens500;
2017
2182
  type responses_ResponseDeleteGitV1RepoRepo200 = ResponseDeleteGitV1RepoRepo200;
2018
2183
  type responses_ResponseDeleteGitV1RepoRepo403 = ResponseDeleteGitV1RepoRepo403;
2019
- type responses_ResponseDeleteGitV1RepoRepo404 = ResponseDeleteGitV1RepoRepo404;
2020
2184
  type responses_ResponseDeleteGitV1RepoRepo500 = ResponseDeleteGitV1RepoRepo500;
2021
2185
  type responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 = ResponseDeleteGitV1RepoRepoTriggerTrigger200;
2022
2186
  type responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 = ResponseDeleteGitV1RepoRepoTriggerTrigger400;
@@ -2069,16 +2233,29 @@ type responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry = ResponseGetGit
2069
2233
  type responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 = ResponseGetGitV1RepoRepoContentsPath200FileEntry1;
2070
2234
  type responses_ResponseGetGitV1RepoRepoGitBlobsHash200 = ResponseGetGitV1RepoRepoGitBlobsHash200;
2071
2235
  type responses_ResponseGetGitV1RepoRepoGitCommits200 = ResponseGetGitV1RepoRepoGitCommits200;
2236
+ type responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector = ResponseGetGitV1RepoRepoGitCommits200CommitsSelector;
2237
+ type responses_ResponseGetGitV1RepoRepoGitCommits200Range = ResponseGetGitV1RepoRepoGitCommits200Range;
2238
+ type responses_ResponseGetGitV1RepoRepoGitCommits200Since = ResponseGetGitV1RepoRepoGitCommits200Since;
2239
+ type responses_ResponseGetGitV1RepoRepoGitCommits200Until = ResponseGetGitV1RepoRepoGitCommits200Until;
2240
+ type responses_ResponseGetGitV1RepoRepoGitCommits403 = ResponseGetGitV1RepoRepoGitCommits403;
2241
+ type responses_ResponseGetGitV1RepoRepoGitCommits500 = ResponseGetGitV1RepoRepoGitCommits500;
2072
2242
  type responses_ResponseGetGitV1RepoRepoGitCommitsHash200 = ResponseGetGitV1RepoRepoGitCommitsHash200;
2243
+ type responses_ResponseGetGitV1RepoRepoGitRefsHeads200 = ResponseGetGitV1RepoRepoGitRefsHeads200;
2073
2244
  type responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 = ResponseGetGitV1RepoRepoGitRefsHeadsBranch200;
2245
+ type responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 = ResponseGetGitV1RepoRepoGitRefsHeadsBranch400;
2246
+ type responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 = ResponseGetGitV1RepoRepoGitRefsHeadsBranch403;
2247
+ type responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 = ResponseGetGitV1RepoRepoGitRefsHeadsBranch500;
2248
+ type responses_ResponseGetGitV1RepoRepoGitRefsTags200 = ResponseGetGitV1RepoRepoGitRefsTags200;
2074
2249
  type responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 = ResponseGetGitV1RepoRepoGitRefsTagsTag200;
2250
+ type responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 = ResponseGetGitV1RepoRepoGitRefsTagsTag400;
2251
+ type responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 = ResponseGetGitV1RepoRepoGitRefsTagsTag403;
2252
+ type responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 = ResponseGetGitV1RepoRepoGitRefsTagsTag500;
2075
2253
  type responses_ResponseGetGitV1RepoRepoGitTagsHash200 = ResponseGetGitV1RepoRepoGitTagsHash200;
2076
2254
  type responses_ResponseGetGitV1RepoRepoGitTreesHash200 = ResponseGetGitV1RepoRepoGitTreesHash200;
2077
2255
  type responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob = ResponseGetGitV1RepoRepoGitTreesHash200Blob;
2078
2256
  type responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree = ResponseGetGitV1RepoRepoGitTreesHash200Tree;
2079
2257
  type responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 = ResponseGetGitV1RepoRepoIdDefaultBranch200;
2080
2258
  type responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 = ResponseGetGitV1RepoRepoIdDefaultBranch403;
2081
- type responses_ResponseGetGitV1RepoRepoIdDefaultBranch404 = ResponseGetGitV1RepoRepoIdDefaultBranch404;
2082
2259
  type responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 = ResponseGetGitV1RepoRepoIdDefaultBranch500;
2083
2260
  type responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 = ResponseGetGitV1RepoRepoIdDevServerConfiguration200;
2084
2261
  type responses_ResponseGetGitV1RepoRepoIdGithubSync200 = ResponseGetGitV1RepoRepoIdGithubSync200;
@@ -2205,7 +2382,6 @@ type responses_ResponsePutDomainsV1Verifications400 = ResponsePutDomainsV1Verifi
2205
2382
  type responses_ResponsePutDomainsV1Verifications404 = ResponsePutDomainsV1Verifications404;
2206
2383
  type responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 = ResponsePutGitV1RepoRepoIdDefaultBranch200;
2207
2384
  type responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 = ResponsePutGitV1RepoRepoIdDefaultBranch403;
2208
- type responses_ResponsePutGitV1RepoRepoIdDefaultBranch404 = ResponsePutGitV1RepoRepoIdDefaultBranch404;
2209
2385
  type responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 = ResponsePutGitV1RepoRepoIdDefaultBranch500;
2210
2386
  type responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 = ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200;
2211
2387
  type responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 = ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200;
@@ -2214,7 +2390,7 @@ type responses_ResponsePutV1VmsVmIdFilesFilepath400 = ResponsePutV1VmsVmIdFilesF
2214
2390
  type responses_ResponsePutV1VmsVmIdFilesFilepath404 = ResponsePutV1VmsVmIdFilesFilepath404;
2215
2391
  type responses_ResponsePutV1VmsVmIdFilesFilepath500 = ResponsePutV1VmsVmIdFilesFilepath500;
2216
2392
  declare namespace responses {
2217
- export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo404 as ResponseDeleteGitV1RepoRepo404, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch404 as ResponseGetGitV1RepoRepoIdDefaultBranch404, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch404 as ResponsePutGitV1RepoRepoIdDefaultBranch404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
2393
+ export type { responses_ResponseDeleteDnsV1Records200 as ResponseDeleteDnsV1Records200, responses_ResponseDeleteDnsV1Records403 as ResponseDeleteDnsV1Records403, responses_ResponseDeleteDnsV1Records500 as ResponseDeleteDnsV1Records500, responses_ResponseDeleteDomainsV1MappingsDomain200 as ResponseDeleteDomainsV1MappingsDomain200, responses_ResponseDeleteDomainsV1MappingsDomain400 as ResponseDeleteDomainsV1MappingsDomain400, responses_ResponseDeleteDomainsV1MappingsDomain401 as ResponseDeleteDomainsV1MappingsDomain401, responses_ResponseDeleteDomainsV1MappingsDomain500 as ResponseDeleteDomainsV1MappingsDomain500, responses_ResponseDeleteDomainsV1MappingsDomain502 as ResponseDeleteDomainsV1MappingsDomain502, responses_ResponseDeleteDomainsV1Verifications200 as ResponseDeleteDomainsV1Verifications200, responses_ResponseDeleteDomainsV1Verifications400 as ResponseDeleteDomainsV1Verifications400, responses_ResponseDeleteGitV1IdentityIdentity200 as ResponseDeleteGitV1IdentityIdentity200, responses_ResponseDeleteGitV1IdentityIdentity403 as ResponseDeleteGitV1IdentityIdentity403, responses_ResponseDeleteGitV1IdentityIdentity404 as ResponseDeleteGitV1IdentityIdentity404, responses_ResponseDeleteGitV1IdentityIdentity500 as ResponseDeleteGitV1IdentityIdentity500, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo200 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo200, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo403 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo403, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo404 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo404, responses_ResponseDeleteGitV1IdentityIdentityPermissionsRepo500 as ResponseDeleteGitV1IdentityIdentityPermissionsRepo500, responses_ResponseDeleteGitV1IdentityIdentityTokens200 as ResponseDeleteGitV1IdentityIdentityTokens200, responses_ResponseDeleteGitV1IdentityIdentityTokens403 as ResponseDeleteGitV1IdentityIdentityTokens403, responses_ResponseDeleteGitV1IdentityIdentityTokens404 as ResponseDeleteGitV1IdentityIdentityTokens404, responses_ResponseDeleteGitV1IdentityIdentityTokens500 as ResponseDeleteGitV1IdentityIdentityTokens500, responses_ResponseDeleteGitV1RepoRepo200 as ResponseDeleteGitV1RepoRepo200, responses_ResponseDeleteGitV1RepoRepo403 as ResponseDeleteGitV1RepoRepo403, responses_ResponseDeleteGitV1RepoRepo500 as ResponseDeleteGitV1RepoRepo500, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger200 as ResponseDeleteGitV1RepoRepoTriggerTrigger200, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger400 as ResponseDeleteGitV1RepoRepoTriggerTrigger400, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger403 as ResponseDeleteGitV1RepoRepoTriggerTrigger403, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger404 as ResponseDeleteGitV1RepoRepoTriggerTrigger404, responses_ResponseDeleteGitV1RepoRepoTriggerTrigger500 as ResponseDeleteGitV1RepoRepoTriggerTrigger500, responses_ResponseDeleteIdentityV1IdentitiesIdentity200 as ResponseDeleteIdentityV1IdentitiesIdentity200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200 as ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200, responses_ResponseDeleteV1VmsVmId200 as ResponseDeleteV1VmsVmId200, responses_ResponseDeleteV1VmsVmId500 as ResponseDeleteV1VmsVmId500, responses_ResponseGetDnsV1Records200 as ResponseGetDnsV1Records200, responses_ResponseGetDnsV1Records400 as ResponseGetDnsV1Records400, responses_ResponseGetDomainsV1Domains200 as ResponseGetDomainsV1Domains200, responses_ResponseGetDomainsV1Domains400 as ResponseGetDomainsV1Domains400, responses_ResponseGetDomainsV1Mappings200 as ResponseGetDomainsV1Mappings200, responses_ResponseGetDomainsV1Verifications200 as ResponseGetDomainsV1Verifications200, responses_ResponseGetDomainsV1Verifications400 as ResponseGetDomainsV1Verifications400, responses_ResponseGetEphemeralV1DevServersStatus200 as ResponseGetEphemeralV1DevServersStatus200, responses_ResponseGetExecuteV1Deployments200 as ResponseGetExecuteV1Deployments200, responses_ResponseGetExecuteV1Deployments500 as ResponseGetExecuteV1Deployments500, responses_ResponseGetExecuteV1DeploymentsDeployment200 as ResponseGetExecuteV1DeploymentsDeployment200, responses_ResponseGetExecuteV1DeploymentsDeployment401 as ResponseGetExecuteV1DeploymentsDeployment401, responses_ResponseGetExecuteV1DeploymentsDeployment404 as ResponseGetExecuteV1DeploymentsDeployment404, responses_ResponseGetExecuteV1DeploymentsDeployment500 as ResponseGetExecuteV1DeploymentsDeployment500, responses_ResponseGetGitV1Identity200 as ResponseGetGitV1Identity200, responses_ResponseGetGitV1IdentityIdentityPermissions200 as ResponseGetGitV1IdentityIdentityPermissions200, responses_ResponseGetGitV1IdentityIdentityPermissions403 as ResponseGetGitV1IdentityIdentityPermissions403, responses_ResponseGetGitV1IdentityIdentityPermissions404 as ResponseGetGitV1IdentityIdentityPermissions404, responses_ResponseGetGitV1IdentityIdentityPermissions500 as ResponseGetGitV1IdentityIdentityPermissions500, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo200 as ResponseGetGitV1IdentityIdentityPermissionsRepo200, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo403 as ResponseGetGitV1IdentityIdentityPermissionsRepo403, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo404 as ResponseGetGitV1IdentityIdentityPermissionsRepo404, responses_ResponseGetGitV1IdentityIdentityPermissionsRepo500 as ResponseGetGitV1IdentityIdentityPermissionsRepo500, responses_ResponseGetGitV1IdentityIdentityTokens200 as ResponseGetGitV1IdentityIdentityTokens200, responses_ResponseGetGitV1IdentityIdentityTokens403 as ResponseGetGitV1IdentityIdentityTokens403, responses_ResponseGetGitV1IdentityIdentityTokens404 as ResponseGetGitV1IdentityIdentityTokens404, responses_ResponseGetGitV1IdentityIdentityTokens500 as ResponseGetGitV1IdentityIdentityTokens500, responses_ResponseGetGitV1Repo200 as ResponseGetGitV1Repo200, responses_ResponseGetGitV1Repo500 as ResponseGetGitV1Repo500, responses_ResponseGetGitV1RepoRepo200 as ResponseGetGitV1RepoRepo200, responses_ResponseGetGitV1RepoRepoCompare200 as ResponseGetGitV1RepoRepoCompare200, responses_ResponseGetGitV1RepoRepoContentsPath200 as ResponseGetGitV1RepoRepoContentsPath200, responses_ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive as ResponseGetGitV1RepoRepoContentsPath200DirEntryRecursive, responses_ResponseGetGitV1RepoRepoContentsPath200Directory as ResponseGetGitV1RepoRepoContentsPath200Directory, responses_ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry as ResponseGetGitV1RepoRepoContentsPath200DirectoryEntry, responses_ResponseGetGitV1RepoRepoContentsPath200File as ResponseGetGitV1RepoRepoContentsPath200File, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry as ResponseGetGitV1RepoRepoContentsPath200FileEntry, responses_ResponseGetGitV1RepoRepoContentsPath200FileEntry1 as ResponseGetGitV1RepoRepoContentsPath200FileEntry1, responses_ResponseGetGitV1RepoRepoGitBlobsHash200 as ResponseGetGitV1RepoRepoGitBlobsHash200, responses_ResponseGetGitV1RepoRepoGitCommits200 as ResponseGetGitV1RepoRepoGitCommits200, responses_ResponseGetGitV1RepoRepoGitCommits200CommitsSelector as ResponseGetGitV1RepoRepoGitCommits200CommitsSelector, responses_ResponseGetGitV1RepoRepoGitCommits200Range as ResponseGetGitV1RepoRepoGitCommits200Range, responses_ResponseGetGitV1RepoRepoGitCommits200Since as ResponseGetGitV1RepoRepoGitCommits200Since, responses_ResponseGetGitV1RepoRepoGitCommits200Until as ResponseGetGitV1RepoRepoGitCommits200Until, responses_ResponseGetGitV1RepoRepoGitCommits403 as ResponseGetGitV1RepoRepoGitCommits403, responses_ResponseGetGitV1RepoRepoGitCommits500 as ResponseGetGitV1RepoRepoGitCommits500, responses_ResponseGetGitV1RepoRepoGitCommitsHash200 as ResponseGetGitV1RepoRepoGitCommitsHash200, responses_ResponseGetGitV1RepoRepoGitRefsHeads200 as ResponseGetGitV1RepoRepoGitRefsHeads200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch200 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch200, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch400 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch400, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch403 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch403, responses_ResponseGetGitV1RepoRepoGitRefsHeadsBranch500 as ResponseGetGitV1RepoRepoGitRefsHeadsBranch500, responses_ResponseGetGitV1RepoRepoGitRefsTags200 as ResponseGetGitV1RepoRepoGitRefsTags200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag200 as ResponseGetGitV1RepoRepoGitRefsTagsTag200, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag400 as ResponseGetGitV1RepoRepoGitRefsTagsTag400, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag403 as ResponseGetGitV1RepoRepoGitRefsTagsTag403, responses_ResponseGetGitV1RepoRepoGitRefsTagsTag500 as ResponseGetGitV1RepoRepoGitRefsTagsTag500, responses_ResponseGetGitV1RepoRepoGitTagsHash200 as ResponseGetGitV1RepoRepoGitTagsHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200 as ResponseGetGitV1RepoRepoGitTreesHash200, responses_ResponseGetGitV1RepoRepoGitTreesHash200Blob as ResponseGetGitV1RepoRepoGitTreesHash200Blob, responses_ResponseGetGitV1RepoRepoGitTreesHash200Tree as ResponseGetGitV1RepoRepoGitTreesHash200Tree, responses_ResponseGetGitV1RepoRepoIdDefaultBranch200 as ResponseGetGitV1RepoRepoIdDefaultBranch200, responses_ResponseGetGitV1RepoRepoIdDefaultBranch403 as ResponseGetGitV1RepoRepoIdDefaultBranch403, responses_ResponseGetGitV1RepoRepoIdDefaultBranch500 as ResponseGetGitV1RepoRepoIdDefaultBranch500, responses_ResponseGetGitV1RepoRepoIdDevServerConfiguration200 as ResponseGetGitV1RepoRepoIdDevServerConfiguration200, responses_ResponseGetGitV1RepoRepoIdGithubSync200 as ResponseGetGitV1RepoRepoIdGithubSync200, responses_ResponseGetGitV1RepoRepoTrigger200 as ResponseGetGitV1RepoRepoTrigger200, responses_ResponseGetGitV1RepoRepoTrigger400 as ResponseGetGitV1RepoRepoTrigger400, responses_ResponseGetGitV1RepoRepoTrigger403 as ResponseGetGitV1RepoRepoTrigger403, responses_ResponseGetGitV1RepoRepoTrigger404 as ResponseGetGitV1RepoRepoTrigger404, responses_ResponseGetGitV1RepoRepoTrigger500 as ResponseGetGitV1RepoRepoTrigger500, responses_ResponseGetIdentityV1Identities200 as ResponseGetIdentityV1Identities200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGit200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVm200, responses_ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponseGetIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponseGetIdentityV1IdentitiesIdentityTokens200 as ResponseGetIdentityV1IdentitiesIdentityTokens200, responses_ResponseGetObservabilityV1Logs200 as ResponseGetObservabilityV1Logs200, responses_ResponseGetV1Vms200 as ResponseGetV1Vms200, responses_ResponseGetV1Vms500 as ResponseGetV1Vms500, responses_ResponseGetV1VmsSnapshots200 as ResponseGetV1VmsSnapshots200, responses_ResponseGetV1VmsSnapshots400 as ResponseGetV1VmsSnapshots400, responses_ResponseGetV1VmsSnapshots500 as ResponseGetV1VmsSnapshots500, responses_ResponseGetV1VmsVmId200 as ResponseGetV1VmsVmId200, responses_ResponseGetV1VmsVmId500 as ResponseGetV1VmsVmId500, responses_ResponseGetV1VmsVmIdFilesFilepath200 as ResponseGetV1VmsVmIdFilesFilepath200, responses_ResponseGetV1VmsVmIdFilesFilepath400 as ResponseGetV1VmsVmIdFilesFilepath400, responses_ResponseGetV1VmsVmIdFilesFilepath404 as ResponseGetV1VmsVmIdFilesFilepath404, responses_ResponseGetV1VmsVmIdFilesFilepath500 as ResponseGetV1VmsVmIdFilesFilepath500, responses_ResponseGetV1VmsVmIdTerminals200 as ResponseGetV1VmsVmIdTerminals200, responses_ResponseGetV1VmsVmIdTerminals500 as ResponseGetV1VmsVmIdTerminals500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500 as ResponseGetV1VmsVmIdTerminalsTerminalIdLogs500, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color200, responses_ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500 as ResponseGetV1VmsVmIdTerminalsTerminalIdXterm_256Color500, responses_ResponseGetWebV1Deployments200 as ResponseGetWebV1Deployments200, responses_ResponseGetWebV1Deployments500 as ResponseGetWebV1Deployments500, responses_ResponsePostDnsV1Records200 as ResponsePostDnsV1Records200, responses_ResponsePostDnsV1Records403 as ResponsePostDnsV1Records403, responses_ResponsePostDnsV1Records500 as ResponsePostDnsV1Records500, responses_ResponsePostDomainsV1CertsDomainWildcard200 as ResponsePostDomainsV1CertsDomainWildcard200, responses_ResponsePostDomainsV1CertsDomainWildcard400 as ResponsePostDomainsV1CertsDomainWildcard400, responses_ResponsePostDomainsV1MappingsDomain200 as ResponsePostDomainsV1MappingsDomain200, responses_ResponsePostDomainsV1MappingsDomain401 as ResponsePostDomainsV1MappingsDomain401, responses_ResponsePostDomainsV1MappingsDomain422 as ResponsePostDomainsV1MappingsDomain422, responses_ResponsePostDomainsV1MappingsDomain500 as ResponsePostDomainsV1MappingsDomain500, responses_ResponsePostDomainsV1MappingsDomain502 as ResponsePostDomainsV1MappingsDomain502, responses_ResponsePostDomainsV1Verifications200 as ResponsePostDomainsV1Verifications200, responses_ResponsePostDomainsV1Verifications400 as ResponsePostDomainsV1Verifications400, responses_ResponsePostEphemeralV1DevServers200 as ResponsePostEphemeralV1DevServers200, responses_ResponsePostEphemeralV1DevServersExec200 as ResponsePostEphemeralV1DevServersExec200, responses_ResponsePostEphemeralV1DevServersGitCommitPush200 as ResponsePostEphemeralV1DevServersGitCommitPush200, responses_ResponsePostEphemeralV1DevServersGitCommitPush400 as ResponsePostEphemeralV1DevServersGitCommitPush400, responses_ResponsePostEphemeralV1DevServersGitCommitPush404 as ResponsePostEphemeralV1DevServersGitCommitPush404, responses_ResponsePostEphemeralV1DevServersGitCommitPush500 as ResponsePostEphemeralV1DevServersGitCommitPush500, responses_ResponsePostEphemeralV1DevServersLogs200 as ResponsePostEphemeralV1DevServersLogs200, responses_ResponsePostEphemeralV1DevServersRestart200 as ResponsePostEphemeralV1DevServersRestart200, responses_ResponsePostEphemeralV1DevServersShutdown200 as ResponsePostEphemeralV1DevServersShutdown200, responses_ResponsePostExecuteV1Script200 as ResponsePostExecuteV1Script200, responses_ResponsePostExecuteV1Script400 as ResponsePostExecuteV1Script400, responses_ResponsePostExecuteV1Script500 as ResponsePostExecuteV1Script500, responses_ResponsePostGitV1Identity200 as ResponsePostGitV1Identity200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo200 as ResponsePostGitV1IdentityIdentityPermissionsRepo200, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo403 as ResponsePostGitV1IdentityIdentityPermissionsRepo403, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo404 as ResponsePostGitV1IdentityIdentityPermissionsRepo404, responses_ResponsePostGitV1IdentityIdentityPermissionsRepo500 as ResponsePostGitV1IdentityIdentityPermissionsRepo500, responses_ResponsePostGitV1IdentityIdentityTokens200 as ResponsePostGitV1IdentityIdentityTokens200, responses_ResponsePostGitV1IdentityIdentityTokens403 as ResponsePostGitV1IdentityIdentityTokens403, responses_ResponsePostGitV1IdentityIdentityTokens404 as ResponsePostGitV1IdentityIdentityTokens404, responses_ResponsePostGitV1IdentityIdentityTokens500 as ResponsePostGitV1IdentityIdentityTokens500, responses_ResponsePostGitV1Repo200 as ResponsePostGitV1Repo200, responses_ResponsePostGitV1Repo500 as ResponsePostGitV1Repo500, responses_ResponsePostGitV1RepoRepoTrigger200 as ResponsePostGitV1RepoRepoTrigger200, responses_ResponsePostGitV1RepoRepoTrigger400 as ResponsePostGitV1RepoRepoTrigger400, responses_ResponsePostGitV1RepoRepoTrigger403 as ResponsePostGitV1RepoRepoTrigger403, responses_ResponsePostGitV1RepoRepoTrigger404 as ResponsePostGitV1RepoRepoTrigger404, responses_ResponsePostGitV1RepoRepoTrigger500 as ResponsePostGitV1RepoRepoTrigger500, responses_ResponsePostIdentityV1Identities200 as ResponsePostIdentityV1Identities200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePostIdentityV1IdentitiesIdentityTokens200 as ResponsePostIdentityV1IdentitiesIdentityTokens200, responses_ResponsePostV1Vms200 as ResponsePostV1Vms200, responses_ResponsePostV1Vms400 as ResponsePostV1Vms400, responses_ResponsePostV1Vms404 as ResponsePostV1Vms404, responses_ResponsePostV1Vms500 as ResponsePostV1Vms500, responses_ResponsePostV1VmsIdResize200 as ResponsePostV1VmsIdResize200, responses_ResponsePostV1VmsIdResize400 as ResponsePostV1VmsIdResize400, responses_ResponsePostV1VmsIdResize404 as ResponsePostV1VmsIdResize404, responses_ResponsePostV1VmsIdResize500 as ResponsePostV1VmsIdResize500, responses_ResponsePostV1VmsSnapshots200 as ResponsePostV1VmsSnapshots200, responses_ResponsePostV1VmsSnapshots400 as ResponsePostV1VmsSnapshots400, responses_ResponsePostV1VmsSnapshots404 as ResponsePostV1VmsSnapshots404, responses_ResponsePostV1VmsSnapshots500 as ResponsePostV1VmsSnapshots500, responses_ResponsePostV1VmsVmIdAwait200 as ResponsePostV1VmsVmIdAwait200, responses_ResponsePostV1VmsVmIdAwait500 as ResponsePostV1VmsVmIdAwait500, responses_ResponsePostV1VmsVmIdExecAwait200 as ResponsePostV1VmsVmIdExecAwait200, responses_ResponsePostV1VmsVmIdExecAwait500 as ResponsePostV1VmsVmIdExecAwait500, responses_ResponsePostV1VmsVmIdFork200 as ResponsePostV1VmsVmIdFork200, responses_ResponsePostV1VmsVmIdFork400 as ResponsePostV1VmsVmIdFork400, responses_ResponsePostV1VmsVmIdFork404 as ResponsePostV1VmsVmIdFork404, responses_ResponsePostV1VmsVmIdFork500 as ResponsePostV1VmsVmIdFork500, responses_ResponsePostV1VmsVmIdKill200 as ResponsePostV1VmsVmIdKill200, responses_ResponsePostV1VmsVmIdKill500 as ResponsePostV1VmsVmIdKill500, responses_ResponsePostV1VmsVmIdOptimize200 as ResponsePostV1VmsVmIdOptimize200, responses_ResponsePostV1VmsVmIdOptimize500 as ResponsePostV1VmsVmIdOptimize500, responses_ResponsePostV1VmsVmIdSnapshot200 as ResponsePostV1VmsVmIdSnapshot200, responses_ResponsePostV1VmsVmIdSnapshot400 as ResponsePostV1VmsVmIdSnapshot400, responses_ResponsePostV1VmsVmIdSnapshot500 as ResponsePostV1VmsVmIdSnapshot500, responses_ResponsePostV1VmsVmIdStart200 as ResponsePostV1VmsVmIdStart200, responses_ResponsePostV1VmsVmIdStart410 as ResponsePostV1VmsVmIdStart410, responses_ResponsePostV1VmsVmIdStart500 as ResponsePostV1VmsVmIdStart500, responses_ResponsePostV1VmsVmIdStart504 as ResponsePostV1VmsVmIdStart504, responses_ResponsePostV1VmsVmIdStop200 as ResponsePostV1VmsVmIdStop200, responses_ResponsePostV1VmsVmIdStop500 as ResponsePostV1VmsVmIdStop500, responses_ResponsePostV1VmsVmIdSuspend200 as ResponsePostV1VmsVmIdSuspend200, responses_ResponsePostV1VmsVmIdSuspend500 as ResponsePostV1VmsVmIdSuspend500, responses_ResponsePostWebV1Deploy200 as ResponsePostWebV1Deploy200, responses_ResponsePostWebV1Deploy400 as ResponsePostWebV1Deploy400, responses_ResponsePostWebV1Deployment200 as ResponsePostWebV1Deployment200, responses_ResponsePostWebV1Deployment400 as ResponsePostWebV1Deployment400, responses_ResponsePostWebV1Deployment403 as ResponsePostWebV1Deployment403, responses_ResponsePostWebV1Deployment404 as ResponsePostWebV1Deployment404, responses_ResponsePostWebV1Deployment500 as ResponsePostWebV1Deployment500, responses_ResponsePostWebV1Deployment502 as ResponsePostWebV1Deployment502, responses_ResponsePutDomainsV1Verifications200 as ResponsePutDomainsV1Verifications200, responses_ResponsePutDomainsV1Verifications400 as ResponsePutDomainsV1Verifications400, responses_ResponsePutDomainsV1Verifications404 as ResponsePutDomainsV1Verifications404, responses_ResponsePutGitV1RepoRepoIdDefaultBranch200 as ResponsePutGitV1RepoRepoIdDefaultBranch200, responses_ResponsePutGitV1RepoRepoIdDefaultBranch403 as ResponsePutGitV1RepoRepoIdDefaultBranch403, responses_ResponsePutGitV1RepoRepoIdDefaultBranch500 as ResponsePutGitV1RepoRepoIdDefaultBranch500, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsGitRepo200, responses_ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200 as ResponsePutIdentityV1IdentitiesIdentityPermissionsVmVmId200, responses_ResponsePutV1VmsVmIdFilesFilepath200 as ResponsePutV1VmsVmIdFilesFilepath200, responses_ResponsePutV1VmsVmIdFilesFilepath400 as ResponsePutV1VmsVmIdFilesFilepath400, responses_ResponsePutV1VmsVmIdFilesFilepath404 as ResponsePutV1VmsVmIdFilesFilepath404, responses_ResponsePutV1VmsVmIdFilesFilepath500 as ResponsePutV1VmsVmIdFilesFilepath500 };
2218
2394
  }
2219
2395
 
2220
2396
  type PostDevServersV1DevServersRequestRequestBody = (null | {
@@ -2939,6 +3115,10 @@ interface PostExecuteV1ScriptRequestBody {
2939
3115
  * Proxy all outgoing requests through this URL
2940
3116
  */
2941
3117
  proxy?: string | null;
3118
+ /**
3119
+ * If true, Freestyle will not retain the code, any logs, environment variables, or results from this execution.
3120
+ */
3121
+ zeroRetention?: boolean | null;
2942
3122
  };
2943
3123
  }
2944
3124
  interface GetGitV1IdentityQueryParams {
@@ -2953,26 +3133,56 @@ interface GetGitV1IdentityIdentityPermissionsPathParams {
2953
3133
  identity: string;
2954
3134
  }
2955
3135
  interface GetGitV1IdentityIdentityPermissionsQueryParams {
3136
+ /**
3137
+ * Maximum number of repositories to return
3138
+ */
2956
3139
  limit?: number;
3140
+ /**
3141
+ * Offset for the list of repositories
3142
+ */
2957
3143
  offset?: number;
2958
3144
  }
2959
3145
  interface GetGitV1IdentityIdentityPermissionsRepoPathParams {
3146
+ /**
3147
+ * The git identity ID
3148
+ */
2960
3149
  identity: string;
3150
+ /**
3151
+ * The git repository ID
3152
+ */
2961
3153
  repo: string;
2962
3154
  }
2963
3155
  interface PostGitV1IdentityIdentityPermissionsRepoPathParams {
3156
+ /**
3157
+ * The git identity ID
3158
+ */
2964
3159
  identity: string;
3160
+ /**
3161
+ * The git repository ID
3162
+ */
2965
3163
  repo: string;
2966
3164
  }
2967
3165
  interface PostGitV1IdentityIdentityPermissionsRepoRequestBody {
2968
3166
  permission: "read" | "write";
2969
3167
  }
2970
3168
  interface DeleteGitV1IdentityIdentityPermissionsRepoPathParams {
3169
+ /**
3170
+ * The git identity ID
3171
+ */
2971
3172
  identity: string;
3173
+ /**
3174
+ * The git repository ID
3175
+ */
2972
3176
  repo: string;
2973
3177
  }
2974
3178
  interface PatchGitV1IdentityIdentityPermissionsRepoPathParams {
3179
+ /**
3180
+ * The git identity ID
3181
+ */
2975
3182
  identity: string;
3183
+ /**
3184
+ * The git repository ID
3185
+ */
2976
3186
  repo: string;
2977
3187
  }
2978
3188
  interface PatchGitV1IdentityIdentityPermissionsRepoRequestBody {
@@ -2991,7 +3201,13 @@ interface DeleteGitV1IdentityIdentityTokensRequestBody {
2991
3201
  tokenId: string;
2992
3202
  }
2993
3203
  interface GetGitV1RepoQueryParams {
3204
+ /**
3205
+ * Maximum number of repositories to return
3206
+ */
2994
3207
  limit?: number;
3208
+ /**
3209
+ * Offset for the list of repositories
3210
+ */
2995
3211
  offset?: number;
2996
3212
  }
2997
3213
  interface PostGitV1RepoRequestBody {
@@ -3010,7 +3226,17 @@ interface PostGitV1RepoRequestBody {
3010
3226
  */
3011
3227
  source?: {
3012
3228
  url: string;
3229
+ /**
3230
+ * @deprecated
3231
+ */
3013
3232
  branch?: string | null;
3233
+ /**
3234
+ * The revision (branch, tag, or commit hash) to checkout from the source repo.
3235
+ * The given revision will be used as the new repository's default branch.
3236
+ *
3237
+ * This field supersedes 'branch'.
3238
+ */
3239
+ rev?: string | null;
3014
3240
  depth?: number | null;
3015
3241
  };
3016
3242
  /**
@@ -3309,7 +3535,16 @@ interface PostGitV1RepoZip {
3309
3535
  }
3310
3536
  interface PostGitV1RepoGit {
3311
3537
  url: string;
3538
+ /**
3539
+ * @deprecated
3540
+ */
3312
3541
  branch?: string | null;
3542
+ /**
3543
+ * The revision (branch, tag, or commit hash) to checkout from the source repo.
3544
+ *
3545
+ * This field supersedes 'branch'.
3546
+ */
3547
+ rev?: string | null;
3313
3548
  dir?: string | null;
3314
3549
  commitMessage: string;
3315
3550
  authorName?: string | null;
@@ -3317,21 +3552,36 @@ interface PostGitV1RepoGit {
3317
3552
  type: "git";
3318
3553
  }
3319
3554
  interface GetGitV1RepoRepoIdDefaultBranchPathParams {
3555
+ /**
3556
+ * The repository ID
3557
+ */
3320
3558
  repo_id: string;
3321
3559
  }
3322
3560
  interface PutGitV1RepoRepoIdDefaultBranchPathParams {
3561
+ /**
3562
+ * The repository ID
3563
+ */
3323
3564
  repo_id: string;
3324
3565
  }
3325
3566
  interface PutGitV1RepoRepoIdDefaultBranchRequestBody {
3326
3567
  defaultBranch: string;
3327
3568
  }
3328
3569
  interface GetGitV1RepoRepoIdDevServerConfigurationPathParams {
3570
+ /**
3571
+ * Repository ID
3572
+ */
3329
3573
  repo_id: string;
3330
3574
  }
3331
3575
  interface GetGitV1RepoRepoIdDevServerConfigurationQueryParams {
3576
+ /**
3577
+ * Git branch name
3578
+ */
3332
3579
  branch: string;
3333
3580
  }
3334
3581
  interface PutGitV1RepoRepoIdDevServerConfigurationPathParams {
3582
+ /**
3583
+ * Repository ID
3584
+ */
3335
3585
  repo_id: string;
3336
3586
  }
3337
3587
  type PutGitV1RepoRepoIdDevServerConfigurationRequestBody = {
@@ -3597,15 +3847,27 @@ type PutGitV1RepoRepoIdDevServerConfigurationRequestBody = {
3597
3847
  branch?: string | null;
3598
3848
  };
3599
3849
  interface DeleteGitV1RepoRepoIdDevServerConfigurationPathParams {
3850
+ /**
3851
+ * Repository ID
3852
+ */
3600
3853
  repo_id: string;
3601
3854
  }
3602
3855
  interface DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams {
3856
+ /**
3857
+ * Git branch name (optional, defaults to repository default branch)
3858
+ */
3603
3859
  branch: string;
3604
3860
  }
3605
3861
  interface GetGitV1RepoRepoIdGithubSyncPathParams {
3862
+ /**
3863
+ * Repository ID
3864
+ */
3606
3865
  repo_id: string;
3607
3866
  }
3608
3867
  interface PostGitV1RepoRepoIdGithubSyncPathParams {
3868
+ /**
3869
+ * Repository ID
3870
+ */
3609
3871
  repo_id: string;
3610
3872
  }
3611
3873
  interface PostGitV1RepoRepoIdGithubSyncRequestBody {
@@ -3615,70 +3877,189 @@ interface PostGitV1RepoRepoIdGithubSyncRequestBody {
3615
3877
  githubRepoName: string;
3616
3878
  }
3617
3879
  interface DeleteGitV1RepoRepoIdGithubSyncPathParams {
3880
+ /**
3881
+ * Repository ID
3882
+ */
3618
3883
  repo_id: string;
3619
3884
  }
3620
3885
  interface GetGitV1RepoRepoPathParams {
3886
+ /**
3887
+ * The repository id
3888
+ */
3621
3889
  repo: string;
3622
3890
  }
3623
3891
  interface DeleteGitV1RepoRepoPathParams {
3892
+ /**
3893
+ * The repository id
3894
+ */
3624
3895
  repo: string;
3625
3896
  }
3626
3897
  interface GetGitV1RepoRepoComparePathParams {
3898
+ /**
3899
+ * The repository id
3900
+ */
3627
3901
  repo: string;
3628
3902
  }
3629
3903
  interface GetGitV1RepoRepoCompareQueryParams {
3904
+ /**
3905
+ * Base revision (commit SHA, branch name, tag, or any valid Git revision)
3906
+ */
3630
3907
  base: string;
3908
+ /**
3909
+ * Head revision (commit SHA, branch name, tag, or any valid Git revision)
3910
+ */
3631
3911
  head: string;
3632
3912
  }
3633
3913
  interface GetGitV1RepoRepoContentsPathPathParams {
3914
+ /**
3915
+ * The repository ID.
3916
+ */
3634
3917
  repo: string;
3918
+ /**
3919
+ * The path to the file or directory. Empty for root.
3920
+ */
3635
3921
  path: string | null;
3636
3922
  }
3637
3923
  interface GetGitV1RepoRepoContentsPathQueryParams {
3638
- ref?: string;
3924
+ /**
3925
+ * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
3926
+ */
3927
+ rev?: string;
3639
3928
  }
3640
3929
  interface GetGitV1RepoRepoGitBlobsHashPathParams {
3930
+ /**
3931
+ * The repository id
3932
+ */
3641
3933
  repo: string;
3934
+ /**
3935
+ * The object's hash
3936
+ */
3642
3937
  hash: string;
3643
3938
  }
3644
3939
  interface GetGitV1RepoRepoGitCommitsPathParams {
3940
+ /**
3941
+ * The repository id
3942
+ */
3645
3943
  repo: string;
3646
3944
  }
3647
3945
  interface GetGitV1RepoRepoGitCommitsQueryParams {
3946
+ /**
3947
+ * Branch name (defaults to HEAD)
3948
+ */
3648
3949
  branch?: string | null;
3950
+ /**
3951
+ * Maximum number of commits to return (default: 50, max: 500)
3952
+ */
3649
3953
  limit?: number | null;
3954
+ /**
3955
+ * Number of commits to skip (default: 0)
3956
+ */
3650
3957
  offset?: number | null;
3958
+ /**
3959
+ * Sort order: "desc" (newest first, default) or "asc" (oldest first)
3960
+ */
3961
+ order?: null | ("desc" | "asc");
3962
+ /**
3963
+ * Start point (older commit) for filtering/pagination (commit SHA)
3964
+ * - When used alone with order=desc: Returns commits newer than this (exclusive). Use for "what's new since X?"
3965
+ * - When used alone with order=asc: Starts from this commit (inclusive). Use with next_commit for pagination.
3966
+ * - When used with `until`: Defines the base of a range (like git's A..B where this is A)
3967
+ */
3968
+ since?: string | null;
3969
+ /**
3970
+ * End point (newer commit) for filtering/pagination (commit SHA)
3971
+ * - When used alone with order=desc: Starts from this commit (inclusive). Use with next_commit for pagination.
3972
+ * - When used alone with order=asc: Returns commits up to and including this commit.
3973
+ * - When used with `since`: Defines the head of a range (like git's A..B where this is B)
3974
+ *
3975
+ * When both `since` and `until` are provided, `until` must be a descendant of `since`.
3976
+ */
3977
+ until?: string | null;
3651
3978
  }
3652
3979
  interface GetGitV1RepoRepoGitCommitsHashPathParams {
3980
+ /**
3981
+ * The repository id
3982
+ */
3653
3983
  repo: string;
3984
+ /**
3985
+ * The object's hash
3986
+ */
3654
3987
  hash: string;
3655
3988
  }
3989
+ interface GetGitV1RepoRepoGitRefsHeadsPathParams {
3990
+ /**
3991
+ * The repository id
3992
+ */
3993
+ repo: string;
3994
+ }
3656
3995
  interface GetGitV1RepoRepoGitRefsHeadsBranchPathParams {
3996
+ /**
3997
+ * The repository id
3998
+ */
3657
3999
  repo: string;
4000
+ /**
4001
+ * The branch's name
4002
+ */
3658
4003
  branch: string;
3659
4004
  }
4005
+ interface GetGitV1RepoRepoGitRefsTagsPathParams {
4006
+ /**
4007
+ * The repository id
4008
+ */
4009
+ repo: string;
4010
+ }
3660
4011
  interface GetGitV1RepoRepoGitRefsTagsTagPathParams {
4012
+ /**
4013
+ * The repository id
4014
+ */
3661
4015
  repo: string;
4016
+ /**
4017
+ * The tag's name
4018
+ */
3662
4019
  tag: string;
3663
4020
  }
3664
4021
  interface GetGitV1RepoRepoGitTagsHashPathParams {
4022
+ /**
4023
+ * The repository id
4024
+ */
3665
4025
  repo: string;
4026
+ /**
4027
+ * The object's hash
4028
+ */
3666
4029
  hash: string;
3667
4030
  }
3668
4031
  interface GetGitV1RepoRepoGitTreesHashPathParams {
4032
+ /**
4033
+ * The repository id
4034
+ */
3669
4035
  repo: string;
4036
+ /**
4037
+ * The object's hash
4038
+ */
3670
4039
  hash: string;
3671
4040
  }
3672
4041
  interface GetGitV1RepoRepoTarballPathParams {
4042
+ /**
4043
+ * The repository id
4044
+ */
3673
4045
  repo: string;
3674
4046
  }
3675
4047
  interface GetGitV1RepoRepoTarballQueryParams {
3676
- ref?: string;
4048
+ /**
4049
+ * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
4050
+ */
4051
+ rev?: string;
3677
4052
  }
3678
4053
  interface GetGitV1RepoRepoTriggerPathParams {
4054
+ /**
4055
+ * The repository id
4056
+ */
3679
4057
  repo: string;
3680
4058
  }
3681
4059
  interface PostGitV1RepoRepoTriggerPathParams {
4060
+ /**
4061
+ * The repository id
4062
+ */
3682
4063
  repo: string;
3683
4064
  }
3684
4065
  interface PostGitV1RepoRepoTriggerRequestBody {
@@ -3693,14 +4074,26 @@ interface PostGitV1RepoRepoTriggerRequestBody {
3693
4074
  };
3694
4075
  }
3695
4076
  interface DeleteGitV1RepoRepoTriggerTriggerPathParams {
4077
+ /**
4078
+ * The repository id
4079
+ */
3696
4080
  repo: string;
4081
+ /**
4082
+ * The trigger id
4083
+ */
3697
4084
  trigger: string;
3698
4085
  }
3699
4086
  interface GetGitV1RepoRepoZipPathParams {
4087
+ /**
4088
+ * The repository id
4089
+ */
3700
4090
  repo: string;
3701
4091
  }
3702
4092
  interface GetGitV1RepoRepoZipQueryParams {
3703
- ref?: string;
4093
+ /**
4094
+ * The git reference (branch name, commit SHA, etc.). Defaults to HEAD.
4095
+ */
4096
+ rev?: string;
3704
4097
  }
3705
4098
  interface GetIdentityV1IdentitiesQueryParams {
3706
4099
  limit?: number | null;
@@ -3714,29 +4107,59 @@ interface GetIdentityV1IdentitiesIdentityPermissionsGitPathParams {
3714
4107
  identity: string;
3715
4108
  }
3716
4109
  interface GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams {
4110
+ /**
4111
+ * Maximum number of repositories to return
4112
+ */
3717
4113
  limit?: number;
4114
+ /**
4115
+ * Offset for the list of repositories
4116
+ */
3718
4117
  offset?: number;
3719
4118
  }
3720
4119
  interface GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams {
4120
+ /**
4121
+ * The git identity ID
4122
+ */
3721
4123
  identity: string;
4124
+ /**
4125
+ * The git repository ID
4126
+ */
3722
4127
  repo: string;
3723
4128
  }
3724
4129
  interface PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams {
4130
+ /**
4131
+ * The git identity ID
4132
+ */
3725
4133
  identity: string;
4134
+ /**
4135
+ * The git repository ID
4136
+ */
3726
4137
  repo: string;
3727
4138
  }
3728
4139
  interface PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody {
3729
4140
  permission: "read" | "write";
3730
4141
  }
3731
4142
  interface PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams {
4143
+ /**
4144
+ * The git identity ID
4145
+ */
3732
4146
  identity: string;
4147
+ /**
4148
+ * The git repository ID
4149
+ */
3733
4150
  repo: string;
3734
4151
  }
3735
4152
  interface PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody {
3736
4153
  permission: "read" | "write";
3737
4154
  }
3738
4155
  interface DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams {
4156
+ /**
4157
+ * The git identity ID
4158
+ */
3739
4159
  identity: string;
4160
+ /**
4161
+ * The git repository ID
4162
+ */
3740
4163
  repo: string;
3741
4164
  }
3742
4165
  interface GetIdentityV1IdentitiesIdentityPermissionsVmPathParams {
@@ -3747,11 +4170,23 @@ interface GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams {
3747
4170
  offset?: number | null;
3748
4171
  }
3749
4172
  interface GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams {
4173
+ /**
4174
+ * The git identity ID
4175
+ */
3750
4176
  identity: string;
4177
+ /**
4178
+ * The VM ID
4179
+ */
3751
4180
  vm_id: string;
3752
4181
  }
3753
4182
  interface PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams {
4183
+ /**
4184
+ * The git identity ID
4185
+ */
3754
4186
  identity: string;
4187
+ /**
4188
+ * The VM ID
4189
+ */
3755
4190
  vm_id: string;
3756
4191
  }
3757
4192
  interface PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody {
@@ -3762,7 +4197,13 @@ interface PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody {
3762
4197
  allowedUsers?: string[] | null;
3763
4198
  }
3764
4199
  interface PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams {
4200
+ /**
4201
+ * The git identity ID
4202
+ */
3765
4203
  identity: string;
4204
+ /**
4205
+ * The VM ID
4206
+ */
3766
4207
  vm_id: string;
3767
4208
  }
3768
4209
  interface PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody {
@@ -3773,7 +4214,13 @@ interface PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody {
3773
4214
  allowedUsers?: string[] | null;
3774
4215
  }
3775
4216
  interface DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams {
4217
+ /**
4218
+ * The git identity ID
4219
+ */
3776
4220
  identity: string;
4221
+ /**
4222
+ * The VM ID
4223
+ */
3777
4224
  vm_id: string;
3778
4225
  }
3779
4226
  interface GetIdentityV1IdentitiesIdentityTokensPathParams {
@@ -3791,7 +4238,13 @@ interface GetObservabilityV1LogsQueryParams {
3791
4238
  domain?: string | null;
3792
4239
  pageToken?: string | null;
3793
4240
  pageSize?: number | null;
4241
+ /**
4242
+ * Start time in RFC3339 format (e.g., "2024-01-01T00:00:00Z"). Defaults to 24 hours ago if not specified.
4243
+ */
3794
4244
  startTime?: string | null;
4245
+ /**
4246
+ * End time in RFC3339 format (e.g., "2024-01-02T00:00:00Z"). Defaults to now if not specified.
4247
+ */
3795
4248
  endTime?: string | null;
3796
4249
  }
3797
4250
  interface PostV1VmsRequestBody {
@@ -4747,12 +5200,21 @@ interface GetV1VmsVmIdPathParams {
4747
5200
  vm_id: string;
4748
5201
  }
4749
5202
  interface DeleteV1VmsVmIdPathParams {
5203
+ /**
5204
+ * The ID of the VM to delete
5205
+ */
4750
5206
  vm_id: string;
4751
5207
  }
4752
5208
  interface PostV1VmsVmIdAwaitPathParams {
5209
+ /**
5210
+ * The ID of the VM to wait for
5211
+ */
4753
5212
  vm_id: string;
4754
5213
  }
4755
5214
  interface PostV1VmsVmIdExecAwaitPathParams {
5215
+ /**
5216
+ * The ID of the VM to execute the command in
5217
+ */
4756
5218
  vm_id: string;
4757
5219
  }
4758
5220
  interface PostV1VmsVmIdExecAwaitRequestBody {
@@ -4761,11 +5223,23 @@ interface PostV1VmsVmIdExecAwaitRequestBody {
4761
5223
  timeoutMs?: number | null;
4762
5224
  }
4763
5225
  interface GetV1VmsVmIdFilesFilepathPathParams {
5226
+ /**
5227
+ * The ID of the VM to get the file from
5228
+ */
4764
5229
  vm_id: string;
5230
+ /**
5231
+ * The path of the file to get
5232
+ */
4765
5233
  filepath: string;
4766
5234
  }
4767
5235
  interface PutV1VmsVmIdFilesFilepathPathParams {
5236
+ /**
5237
+ * The ID of the VM to put the file to
5238
+ */
4768
5239
  vm_id: string;
5240
+ /**
5241
+ * The path of the file to put
5242
+ */
4769
5243
  filepath: string;
4770
5244
  }
4771
5245
  interface PutV1VmsVmIdFilesFilepathRequestBody {
@@ -4818,9 +5292,15 @@ interface PostV1VmsVmIdForkRequestBody {
4818
5292
  });
4819
5293
  }
4820
5294
  interface PostV1VmsVmIdKillPathParams {
5295
+ /**
5296
+ * The ID of the VM to kill
5297
+ */
4821
5298
  vm_id: string;
4822
5299
  }
4823
5300
  interface PostV1VmsVmIdOptimizePathParams {
5301
+ /**
5302
+ * The ID of the VM to optimize
5303
+ */
4824
5304
  vm_id: string;
4825
5305
  }
4826
5306
  interface PostV1VmsVmIdSnapshotPathParams {
@@ -4841,23 +5321,47 @@ interface PostV1VmsVmIdStartRequestBody {
4841
5321
  waitForReadySignal?: boolean | null;
4842
5322
  }
4843
5323
  interface PostV1VmsVmIdStopPathParams {
5324
+ /**
5325
+ * The ID of the VM to stop
5326
+ */
4844
5327
  vm_id: string;
4845
5328
  }
4846
5329
  interface PostV1VmsVmIdSuspendPathParams {
5330
+ /**
5331
+ * The ID of the VM to suspend
5332
+ */
4847
5333
  vm_id: string;
4848
5334
  }
4849
5335
  interface GetV1VmsVmIdTerminalsPathParams {
5336
+ /**
5337
+ * The ID of the VM
5338
+ */
4850
5339
  vm_id: string;
4851
5340
  }
4852
5341
  interface GetV1VmsVmIdTerminalsTerminalIdLogsPathParams {
5342
+ /**
5343
+ * The ID of the VM
5344
+ */
4853
5345
  vm_id: string;
5346
+ /**
5347
+ * The ID of the terminal session
5348
+ */
4854
5349
  terminal_id: string;
4855
5350
  }
4856
5351
  interface GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams {
5352
+ /**
5353
+ * The ID of the VM
5354
+ */
4857
5355
  vm_id: string;
5356
+ /**
5357
+ * The ID of the terminal session
5358
+ */
4858
5359
  terminal_id: string;
4859
5360
  }
4860
5361
  interface PostV1VmsVmIdWatchFilesPathParams {
5362
+ /**
5363
+ * The ID of the VM to watch files for
5364
+ */
4861
5365
  vm_id: string;
4862
5366
  }
4863
5367
  interface PostWebV1DeployRequestBody {
@@ -4973,7 +5477,13 @@ interface PostWebV1DeploymentGit {
4973
5477
  kind: "git";
4974
5478
  }
4975
5479
  interface GetWebV1DeploymentsQueryParams {
5480
+ /**
5481
+ * Maximum number of repositories to return
5482
+ */
4976
5483
  limit: number;
5484
+ /**
5485
+ * Offset for the list of repositories
5486
+ */
4977
5487
  offset: number;
4978
5488
  }
4979
5489
  interface GetWebV1DeploymentsDeploymentIdPathParams {
@@ -5018,6 +5528,8 @@ type requests_GetGitV1RepoRepoGitCommitsHashPathParams = GetGitV1RepoRepoGitComm
5018
5528
  type requests_GetGitV1RepoRepoGitCommitsPathParams = GetGitV1RepoRepoGitCommitsPathParams;
5019
5529
  type requests_GetGitV1RepoRepoGitCommitsQueryParams = GetGitV1RepoRepoGitCommitsQueryParams;
5020
5530
  type requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams = GetGitV1RepoRepoGitRefsHeadsBranchPathParams;
5531
+ type requests_GetGitV1RepoRepoGitRefsHeadsPathParams = GetGitV1RepoRepoGitRefsHeadsPathParams;
5532
+ type requests_GetGitV1RepoRepoGitRefsTagsPathParams = GetGitV1RepoRepoGitRefsTagsPathParams;
5021
5533
  type requests_GetGitV1RepoRepoGitRefsTagsTagPathParams = GetGitV1RepoRepoGitRefsTagsTagPathParams;
5022
5534
  type requests_GetGitV1RepoRepoGitTagsHashPathParams = GetGitV1RepoRepoGitTagsHashPathParams;
5023
5535
  type requests_GetGitV1RepoRepoGitTreesHashPathParams = GetGitV1RepoRepoGitTreesHashPathParams;
@@ -5116,7 +5628,7 @@ type requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody = PutI
5116
5628
  type requests_PutV1VmsVmIdFilesFilepathPathParams = PutV1VmsVmIdFilesFilepathPathParams;
5117
5629
  type requests_PutV1VmsVmIdFilesFilepathRequestBody = PutV1VmsVmIdFilesFilepathRequestBody;
5118
5630
  declare namespace requests {
5119
- export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdDevServerConfigurationPathParams as DeleteGitV1RepoRepoIdDevServerConfigurationPathParams, requests_DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams as DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetEphemeralV1DevServersStatusRequestBody as GetEphemeralV1DevServersStatusRequestBody, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationPathParams as GetGitV1RepoRepoIdDevServerConfigurationPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationQueryParams as GetGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostDevServersV1DevServersRequestRequestBody as PostDevServersV1DevServersRequestRequestBody, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostEphemeralV1DevServersExecRequestBody as PostEphemeralV1DevServersExecRequestBody, requests_PostEphemeralV1DevServersGitCommitPushRequestBody as PostEphemeralV1DevServersGitCommitPushRequestBody, requests_PostEphemeralV1DevServersLogsRequestBody as PostEphemeralV1DevServersLogsRequestBody, requests_PostEphemeralV1DevServersRequestBody as PostEphemeralV1DevServersRequestBody, requests_PostEphemeralV1DevServersRestartRequestBody as PostEphemeralV1DevServersRestartRequestBody, requests_PostEphemeralV1DevServersShutdownRequestBody as PostEphemeralV1DevServersShutdownRequestBody, requests_PostEphemeralV1DevServersWatchFilesRequestBody as PostEphemeralV1DevServersWatchFilesRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdDevServerConfigurationPathParams as PutGitV1RepoRepoIdDevServerConfigurationPathParams, requests_PutGitV1RepoRepoIdDevServerConfigurationRequestBody as PutGitV1RepoRepoIdDevServerConfigurationRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody };
5631
+ export type { requests_DeleteDnsV1RecordsQueryParams as DeleteDnsV1RecordsQueryParams, requests_DeleteDomainsV1MappingsDomainPathParams as DeleteDomainsV1MappingsDomainPathParams, requests_DeleteDomainsV1VerificationsRequestBody as DeleteDomainsV1VerificationsRequestBody, requests_DeleteGitV1IdentityIdentityPathParams as DeleteGitV1IdentityIdentityPathParams, requests_DeleteGitV1IdentityIdentityPermissionsRepoPathParams as DeleteGitV1IdentityIdentityPermissionsRepoPathParams, requests_DeleteGitV1IdentityIdentityTokensPathParams as DeleteGitV1IdentityIdentityTokensPathParams, requests_DeleteGitV1IdentityIdentityTokensRequestBody as DeleteGitV1IdentityIdentityTokensRequestBody, requests_DeleteGitV1RepoRepoIdDevServerConfigurationPathParams as DeleteGitV1RepoRepoIdDevServerConfigurationPathParams, requests_DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams as DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_DeleteGitV1RepoRepoIdGithubSyncPathParams as DeleteGitV1RepoRepoIdGithubSyncPathParams, requests_DeleteGitV1RepoRepoPathParams as DeleteGitV1RepoRepoPathParams, requests_DeleteGitV1RepoRepoTriggerTriggerPathParams as DeleteGitV1RepoRepoTriggerTriggerPathParams, requests_DeleteIdentityV1IdentitiesIdentityPathParams as DeleteIdentityV1IdentitiesIdentityPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as DeleteIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams as DeleteIdentityV1IdentitiesIdentityTokensTokenPathParams, requests_DeleteV1VmsVmIdPathParams as DeleteV1VmsVmIdPathParams, requests_GetDnsV1RecordsQueryParams as GetDnsV1RecordsQueryParams, requests_GetDomainsV1DomainsQueryParams as GetDomainsV1DomainsQueryParams, requests_GetDomainsV1MappingsQueryParams as GetDomainsV1MappingsQueryParams, requests_GetEphemeralV1DevServersStatusRequestBody as GetEphemeralV1DevServersStatusRequestBody, requests_GetExecuteV1DeploymentsDeploymentPathParams as GetExecuteV1DeploymentsDeploymentPathParams, requests_GetExecuteV1DeploymentsQueryParams as GetExecuteV1DeploymentsQueryParams, requests_GetGitV1IdentityIdentityPermissionsPathParams as GetGitV1IdentityIdentityPermissionsPathParams, requests_GetGitV1IdentityIdentityPermissionsQueryParams as GetGitV1IdentityIdentityPermissionsQueryParams, requests_GetGitV1IdentityIdentityPermissionsRepoPathParams as GetGitV1IdentityIdentityPermissionsRepoPathParams, requests_GetGitV1IdentityIdentityTokensPathParams as GetGitV1IdentityIdentityTokensPathParams, requests_GetGitV1IdentityQueryParams as GetGitV1IdentityQueryParams, requests_GetGitV1RepoQueryParams as GetGitV1RepoQueryParams, requests_GetGitV1RepoRepoComparePathParams as GetGitV1RepoRepoComparePathParams, requests_GetGitV1RepoRepoCompareQueryParams as GetGitV1RepoRepoCompareQueryParams, requests_GetGitV1RepoRepoContentsPathPathParams as GetGitV1RepoRepoContentsPathPathParams, requests_GetGitV1RepoRepoContentsPathQueryParams as GetGitV1RepoRepoContentsPathQueryParams, requests_GetGitV1RepoRepoGitBlobsHashPathParams as GetGitV1RepoRepoGitBlobsHashPathParams, requests_GetGitV1RepoRepoGitCommitsHashPathParams as GetGitV1RepoRepoGitCommitsHashPathParams, requests_GetGitV1RepoRepoGitCommitsPathParams as GetGitV1RepoRepoGitCommitsPathParams, requests_GetGitV1RepoRepoGitCommitsQueryParams as GetGitV1RepoRepoGitCommitsQueryParams, requests_GetGitV1RepoRepoGitRefsHeadsBranchPathParams as GetGitV1RepoRepoGitRefsHeadsBranchPathParams, requests_GetGitV1RepoRepoGitRefsHeadsPathParams as GetGitV1RepoRepoGitRefsHeadsPathParams, requests_GetGitV1RepoRepoGitRefsTagsPathParams as GetGitV1RepoRepoGitRefsTagsPathParams, requests_GetGitV1RepoRepoGitRefsTagsTagPathParams as GetGitV1RepoRepoGitRefsTagsTagPathParams, requests_GetGitV1RepoRepoGitTagsHashPathParams as GetGitV1RepoRepoGitTagsHashPathParams, requests_GetGitV1RepoRepoGitTreesHashPathParams as GetGitV1RepoRepoGitTreesHashPathParams, requests_GetGitV1RepoRepoIdDefaultBranchPathParams as GetGitV1RepoRepoIdDefaultBranchPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationPathParams as GetGitV1RepoRepoIdDevServerConfigurationPathParams, requests_GetGitV1RepoRepoIdDevServerConfigurationQueryParams as GetGitV1RepoRepoIdDevServerConfigurationQueryParams, requests_GetGitV1RepoRepoIdGithubSyncPathParams as GetGitV1RepoRepoIdGithubSyncPathParams, requests_GetGitV1RepoRepoPathParams as GetGitV1RepoRepoPathParams, requests_GetGitV1RepoRepoTarballPathParams as GetGitV1RepoRepoTarballPathParams, requests_GetGitV1RepoRepoTarballQueryParams as GetGitV1RepoRepoTarballQueryParams, requests_GetGitV1RepoRepoTriggerPathParams as GetGitV1RepoRepoTriggerPathParams, requests_GetGitV1RepoRepoZipPathParams as GetGitV1RepoRepoZipPathParams, requests_GetGitV1RepoRepoZipQueryParams as GetGitV1RepoRepoZipQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams as GetIdentityV1IdentitiesIdentityPermissionsGitQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as GetIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmPathParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams as GetIdentityV1IdentitiesIdentityPermissionsVmQueryParams, requests_GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as GetIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_GetIdentityV1IdentitiesIdentityTokensPathParams as GetIdentityV1IdentitiesIdentityTokensPathParams, requests_GetIdentityV1IdentitiesQueryParams as GetIdentityV1IdentitiesQueryParams, requests_GetObservabilityV1LogsQueryParams as GetObservabilityV1LogsQueryParams, requests_GetV1VmsVmIdFilesFilepathPathParams as GetV1VmsVmIdFilesFilepathPathParams, requests_GetV1VmsVmIdPathParams as GetV1VmsVmIdPathParams, requests_GetV1VmsVmIdTerminalsPathParams as GetV1VmsVmIdTerminalsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdLogsPathParams as GetV1VmsVmIdTerminalsTerminalIdLogsPathParams, requests_GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams as GetV1VmsVmIdTerminalsTerminalIdXterm_256ColorPathParams, requests_GetWebV1DeploymentsDeploymentIdPathParams as GetWebV1DeploymentsDeploymentIdPathParams, requests_GetWebV1DeploymentsQueryParams as GetWebV1DeploymentsQueryParams, requests_PatchGitV1IdentityIdentityPermissionsRepoPathParams as PatchGitV1IdentityIdentityPermissionsRepoPathParams, requests_PatchGitV1IdentityIdentityPermissionsRepoRequestBody as PatchGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostDevServersV1DevServersRequestRequestBody as PostDevServersV1DevServersRequestRequestBody, requests_PostDnsV1RecordsRequestBody as PostDnsV1RecordsRequestBody, requests_PostDomainsV1CertsDomainWildcardPathParams as PostDomainsV1CertsDomainWildcardPathParams, requests_PostDomainsV1MappingsDomainPathParams as PostDomainsV1MappingsDomainPathParams, requests_PostDomainsV1MappingsDomainRequestBody as PostDomainsV1MappingsDomainRequestBody, requests_PostDomainsV1VerificationsRequestBody as PostDomainsV1VerificationsRequestBody, requests_PostEphemeralV1DevServersExecRequestBody as PostEphemeralV1DevServersExecRequestBody, requests_PostEphemeralV1DevServersGitCommitPushRequestBody as PostEphemeralV1DevServersGitCommitPushRequestBody, requests_PostEphemeralV1DevServersLogsRequestBody as PostEphemeralV1DevServersLogsRequestBody, requests_PostEphemeralV1DevServersRequestBody as PostEphemeralV1DevServersRequestBody, requests_PostEphemeralV1DevServersRestartRequestBody as PostEphemeralV1DevServersRestartRequestBody, requests_PostEphemeralV1DevServersShutdownRequestBody as PostEphemeralV1DevServersShutdownRequestBody, requests_PostEphemeralV1DevServersWatchFilesRequestBody as PostEphemeralV1DevServersWatchFilesRequestBody, requests_PostExecuteV1ScriptRequestBody as PostExecuteV1ScriptRequestBody, requests_PostGitV1IdentityIdentityPermissionsRepoPathParams as PostGitV1IdentityIdentityPermissionsRepoPathParams, requests_PostGitV1IdentityIdentityPermissionsRepoRequestBody as PostGitV1IdentityIdentityPermissionsRepoRequestBody, requests_PostGitV1IdentityIdentityTokensPathParams as PostGitV1IdentityIdentityTokensPathParams, requests_PostGitV1RepoFiles as PostGitV1RepoFiles, requests_PostGitV1RepoFiles1 as PostGitV1RepoFiles1, requests_PostGitV1RepoGit as PostGitV1RepoGit, requests_PostGitV1RepoRepoIdGithubSyncPathParams as PostGitV1RepoRepoIdGithubSyncPathParams, requests_PostGitV1RepoRepoIdGithubSyncRequestBody as PostGitV1RepoRepoIdGithubSyncRequestBody, requests_PostGitV1RepoRepoTriggerPathParams as PostGitV1RepoRepoTriggerPathParams, requests_PostGitV1RepoRepoTriggerRequestBody as PostGitV1RepoRepoTriggerRequestBody, requests_PostGitV1RepoRequestBody as PostGitV1RepoRequestBody, requests_PostGitV1RepoTar as PostGitV1RepoTar, requests_PostGitV1RepoZip as PostGitV1RepoZip, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PostIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PostIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PostIdentityV1IdentitiesIdentityTokensPathParams as PostIdentityV1IdentitiesIdentityTokensPathParams, requests_PostV1VmsIdResizePathParams as PostV1VmsIdResizePathParams, requests_PostV1VmsIdResizeRequestBody as PostV1VmsIdResizeRequestBody, requests_PostV1VmsRequestBody as PostV1VmsRequestBody, requests_PostV1VmsSnapshotsRequestBody as PostV1VmsSnapshotsRequestBody, requests_PostV1VmsVmIdAwaitPathParams as PostV1VmsVmIdAwaitPathParams, requests_PostV1VmsVmIdExecAwaitPathParams as PostV1VmsVmIdExecAwaitPathParams, requests_PostV1VmsVmIdExecAwaitRequestBody as PostV1VmsVmIdExecAwaitRequestBody, requests_PostV1VmsVmIdForkPathParams as PostV1VmsVmIdForkPathParams, requests_PostV1VmsVmIdForkRequestBody as PostV1VmsVmIdForkRequestBody, requests_PostV1VmsVmIdKillPathParams as PostV1VmsVmIdKillPathParams, requests_PostV1VmsVmIdOptimizePathParams as PostV1VmsVmIdOptimizePathParams, requests_PostV1VmsVmIdSnapshotPathParams as PostV1VmsVmIdSnapshotPathParams, requests_PostV1VmsVmIdSnapshotRequestBody as PostV1VmsVmIdSnapshotRequestBody, requests_PostV1VmsVmIdStartPathParams as PostV1VmsVmIdStartPathParams, requests_PostV1VmsVmIdStartRequestBody as PostV1VmsVmIdStartRequestBody, requests_PostV1VmsVmIdStopPathParams as PostV1VmsVmIdStopPathParams, requests_PostV1VmsVmIdSuspendPathParams as PostV1VmsVmIdSuspendPathParams, requests_PostV1VmsVmIdWatchFilesPathParams as PostV1VmsVmIdWatchFilesPathParams, requests_PostWebV1DeployRequestBody as PostWebV1DeployRequestBody, requests_PostWebV1DeploymentFiles as PostWebV1DeploymentFiles, requests_PostWebV1DeploymentGit as PostWebV1DeploymentGit, requests_PostWebV1DeploymentRequestBody as PostWebV1DeploymentRequestBody, requests_PostWebV1DeploymentTar as PostWebV1DeploymentTar, requests_PutDomainsV1VerificationsRequestBody as PutDomainsV1VerificationsRequestBody, requests_PutGitV1RepoRepoIdDefaultBranchPathParams as PutGitV1RepoRepoIdDefaultBranchPathParams, requests_PutGitV1RepoRepoIdDefaultBranchRequestBody as PutGitV1RepoRepoIdDefaultBranchRequestBody, requests_PutGitV1RepoRepoIdDevServerConfigurationPathParams as PutGitV1RepoRepoIdDevServerConfigurationPathParams, requests_PutGitV1RepoRepoIdDevServerConfigurationRequestBody as PutGitV1RepoRepoIdDevServerConfigurationRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams as PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody as PutIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdPathParams, requests_PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody as PutIdentityV1IdentitiesIdentityPermissionsVmVmIdRequestBody, requests_PutV1VmsVmIdFilesFilepathPathParams as PutV1VmsVmIdFilesFilepathPathParams, requests_PutV1VmsVmIdFilesFilepathRequestBody as PutV1VmsVmIdFilesFilepathRequestBody };
5120
5632
  }
5121
5633
 
5122
5634
  type GetPathMap = {
@@ -5249,12 +5761,24 @@ type GetPathMap = {
5249
5761
  };
5250
5762
  response: ResponseGetGitV1RepoRepoGitCommitsHash200;
5251
5763
  };
5764
+ "/git/v1/repo/{repo}/git/refs/heads/": {
5765
+ options: {
5766
+ params: GetGitV1RepoRepoGitRefsHeadsPathParams;
5767
+ };
5768
+ response: ResponseGetGitV1RepoRepoGitRefsHeads200;
5769
+ };
5252
5770
  "/git/v1/repo/{repo}/git/refs/heads/{branch}": {
5253
5771
  options: {
5254
5772
  params: GetGitV1RepoRepoGitRefsHeadsBranchPathParams;
5255
5773
  };
5256
5774
  response: ResponseGetGitV1RepoRepoGitRefsHeadsBranch200;
5257
5775
  };
5776
+ "/git/v1/repo/{repo}/git/refs/tags/": {
5777
+ options: {
5778
+ params: GetGitV1RepoRepoGitRefsTagsPathParams;
5779
+ };
5780
+ response: ResponseGetGitV1RepoRepoGitRefsTags200;
5781
+ };
5258
5782
  "/git/v1/repo/{repo}/git/refs/tags/{tag}": {
5259
5783
  options: {
5260
5784
  params: GetGitV1RepoRepoGitRefsTagsTagPathParams;
@@ -5273,12 +5797,26 @@ type GetPathMap = {
5273
5797
  };
5274
5798
  response: ResponseGetGitV1RepoRepoGitTreesHash200;
5275
5799
  };
5800
+ "/git/v1/repo/{repo}/tarball": {
5801
+ options: {
5802
+ params: GetGitV1RepoRepoTarballPathParams;
5803
+ query?: GetGitV1RepoRepoTarballQueryParams;
5804
+ };
5805
+ response: void;
5806
+ };
5276
5807
  "/git/v1/repo/{repo}/trigger": {
5277
5808
  options: {
5278
5809
  params: GetGitV1RepoRepoTriggerPathParams;
5279
5810
  };
5280
5811
  response: ResponseGetGitV1RepoRepoTrigger200;
5281
5812
  };
5813
+ "/git/v1/repo/{repo}/zip": {
5814
+ options: {
5815
+ params: GetGitV1RepoRepoZipPathParams;
5816
+ query?: GetGitV1RepoRepoZipQueryParams;
5817
+ };
5818
+ response: void;
5819
+ };
5282
5820
  "/identity/v1/identities": {
5283
5821
  options: {
5284
5822
  query?: GetIdentityV1IdentitiesQueryParams;
@@ -5367,8 +5905,20 @@ type GetPathMap = {
5367
5905
  };
5368
5906
  response: ResponseGetWebV1Deployments200;
5369
5907
  };
5908
+ "/web/v1/deployments/{deployment_id}": {
5909
+ options: {
5910
+ params: GetWebV1DeploymentsDeploymentIdPathParams;
5911
+ };
5912
+ response: void;
5913
+ };
5370
5914
  };
5371
5915
  type PostPathMap = {
5916
+ "/dev-servers/v1/dev-servers/request": {
5917
+ options: {
5918
+ body: PostDevServersV1DevServersRequestRequestBody;
5919
+ };
5920
+ response: void;
5921
+ };
5372
5922
  "/dns/v1/records": {
5373
5923
  options: {
5374
5924
  body: PostDnsV1RecordsRequestBody;
@@ -5430,6 +5980,12 @@ type PostPathMap = {
5430
5980
  };
5431
5981
  response: ResponsePostEphemeralV1DevServersShutdown200;
5432
5982
  };
5983
+ "/ephemeral/v1/dev-servers/watch-files": {
5984
+ options: {
5985
+ body: PostEphemeralV1DevServersWatchFilesRequestBody;
5986
+ };
5987
+ response: void;
5988
+ };
5433
5989
  "/execute/v1/script": {
5434
5990
  options: {
5435
5991
  body: PostExecuteV1ScriptRequestBody;
@@ -5459,6 +6015,13 @@ type PostPathMap = {
5459
6015
  };
5460
6016
  response: ResponsePostGitV1Repo200;
5461
6017
  };
6018
+ "/git/v1/repo/{repo_id}/github-sync": {
6019
+ options: {
6020
+ params: PostGitV1RepoRepoIdGithubSyncPathParams;
6021
+ body: PostGitV1RepoRepoIdGithubSyncRequestBody;
6022
+ };
6023
+ response: void;
6024
+ };
5462
6025
  "/git/v1/repo/{repo}/trigger": {
5463
6026
  options: {
5464
6027
  params: PostGitV1RepoRepoTriggerPathParams;
@@ -5567,6 +6130,12 @@ type PostPathMap = {
5567
6130
  };
5568
6131
  response: ResponsePostV1VmsVmIdSuspend200;
5569
6132
  };
6133
+ "/v1/vms/{vm_id}/watch-files": {
6134
+ options: {
6135
+ params: PostV1VmsVmIdWatchFilesPathParams;
6136
+ };
6137
+ response: void;
6138
+ };
5570
6139
  "/web/v1/deploy": {
5571
6140
  options: {
5572
6141
  body: PostWebV1DeployRequestBody;
@@ -5594,6 +6163,13 @@ type PutPathMap = {
5594
6163
  };
5595
6164
  response: ResponsePutGitV1RepoRepoIdDefaultBranch200;
5596
6165
  };
6166
+ "/git/v1/repo/{repo_id}/dev-server-configuration": {
6167
+ options: {
6168
+ params: PutGitV1RepoRepoIdDevServerConfigurationPathParams;
6169
+ body: PutGitV1RepoRepoIdDevServerConfigurationRequestBody;
6170
+ };
6171
+ response: void;
6172
+ };
5597
6173
  "/identity/v1/identities/{identity}/permissions/git/{repo}": {
5598
6174
  options: {
5599
6175
  params: PutIdentityV1IdentitiesIdentityPermissionsGitRepoPathParams;
@@ -5654,6 +6230,19 @@ type DeletePathMap = {
5654
6230
  };
5655
6231
  response: ResponseDeleteGitV1IdentityIdentityTokens200;
5656
6232
  };
6233
+ "/git/v1/repo/{repo_id}/dev-server-configuration": {
6234
+ options: {
6235
+ params: DeleteGitV1RepoRepoIdDevServerConfigurationPathParams;
6236
+ query?: DeleteGitV1RepoRepoIdDevServerConfigurationQueryParams;
6237
+ };
6238
+ response: void;
6239
+ };
6240
+ "/git/v1/repo/{repo_id}/github-sync": {
6241
+ options: {
6242
+ params: DeleteGitV1RepoRepoIdGithubSyncPathParams;
6243
+ };
6244
+ response: void;
6245
+ };
5657
6246
  "/git/v1/repo/{repo}": {
5658
6247
  options: {
5659
6248
  params: DeleteGitV1RepoRepoPathParams;
@@ -5697,7 +6286,15 @@ type DeletePathMap = {
5697
6286
  response: ResponseDeleteV1VmsVmId200;
5698
6287
  };
5699
6288
  };
5700
- type PatchPathMap = {};
6289
+ type PatchPathMap = {
6290
+ "/git/v1/identity/{identity}/permissions/{repo}": {
6291
+ options: {
6292
+ params: PatchGitV1IdentityIdentityPermissionsRepoPathParams;
6293
+ body: PatchGitV1IdentityIdentityPermissionsRepoRequestBody;
6294
+ };
6295
+ response: void;
6296
+ };
6297
+ };
5701
6298
 
5702
6299
  type ApiClientConfig = {
5703
6300
  apiKey?: string;
@@ -5718,8 +6315,10 @@ declare class ApiClient {
5718
6315
  constructor(config?: ApiClientConfig);
5719
6316
  private buildUrl;
5720
6317
  private getDefaultHeaders;
6318
+ private requestRaw;
5721
6319
  private request;
5722
6320
  fetch(url: string, options?: RequestInit): Promise<Response>;
6321
+ getRaw<P extends keyof GetPathMap>(path: P, options?: GetPathMap[P]["options"]): Promise<Response>;
5723
6322
  get<P extends keyof GetPathMap>(path: P, ...args: GetPathMap[P]["options"] extends never ? [] : [options: GetPathMap[P]["options"]]): Promise<GetPathMap[P]["response"]>;
5724
6323
  post<P extends keyof PostPathMap>(path: P, ...args: PostPathMap[P]["options"] extends never ? [] : [options: PostPathMap[P]["options"]]): Promise<PostPathMap[P]["response"]>;
5725
6324
  put<P extends keyof PutPathMap>(path: P, ...args: PutPathMap[P]["options"] extends never ? [] : [options: PutPathMap[P]["options"]]): Promise<PutPathMap[P]["response"]>;
@@ -5732,135 +6331,115 @@ interface FreestyleError {
5732
6331
  message: string;
5733
6332
  }
5734
6333
  declare function errorFromJSON(body: object & FreestyleError): Error;
5735
- declare class InternalErrorError extends Error {
6334
+ declare class GitErrorError extends Error {
5736
6335
  body: unknown & FreestyleError;
5737
6336
  static readonly code: string;
5738
6337
  static readonly statusCode: number;
5739
6338
  static readonly description: string;
5740
6339
  constructor(body: unknown & FreestyleError);
5741
6340
  }
5742
- interface PublicDockerImportBadRequest {
6341
+ interface PublicSnapshotVmBadRequest {
5743
6342
  message: string;
5744
6343
  [k: string]: unknown;
5745
6344
  }
5746
- declare class DockerImportBadRequestError extends Error {
5747
- body: PublicDockerImportBadRequest & FreestyleError;
6345
+ declare class SnapshotVmBadRequestError extends Error {
6346
+ body: PublicSnapshotVmBadRequest & FreestyleError;
5748
6347
  static readonly code: string;
5749
6348
  static readonly statusCode: number;
5750
6349
  static readonly description: string;
5751
- constructor(body: PublicDockerImportBadRequest & FreestyleError);
6350
+ constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
5752
6351
  }
5753
- declare class VmNotFoundInFsError extends Error {
6352
+ declare class InternalErrorError extends Error {
5754
6353
  body: unknown & FreestyleError;
5755
6354
  static readonly code: string;
5756
6355
  static readonly statusCode: number;
5757
6356
  static readonly description: string;
5758
6357
  constructor(body: unknown & FreestyleError);
5759
6358
  }
5760
- declare class VmNotRunningError extends Error {
5761
- body: unknown & FreestyleError;
6359
+ interface PublicForkVmNotFound {
6360
+ forkVmId: string;
6361
+ [k: string]: unknown;
6362
+ }
6363
+ declare class ForkVmNotFoundError extends Error {
6364
+ body: PublicForkVmNotFound & FreestyleError;
5762
6365
  static readonly code: string;
5763
6366
  static readonly statusCode: number;
5764
6367
  static readonly description: string;
5765
- constructor(body: unknown & FreestyleError);
6368
+ constructor(body: PublicForkVmNotFound & FreestyleError);
5766
6369
  }
5767
- interface VmNotFoundPublic {
5768
- vmId: string;
6370
+ interface PublicCreateSnapshotBadRequest {
6371
+ message: string;
5769
6372
  [k: string]: unknown;
5770
6373
  }
5771
- declare class VmNotFoundError extends Error {
5772
- body: VmNotFoundPublic & FreestyleError;
6374
+ declare class CreateSnapshotBadRequestError extends Error {
6375
+ body: PublicCreateSnapshotBadRequest & FreestyleError;
5773
6376
  static readonly code: string;
5774
6377
  static readonly statusCode: number;
5775
6378
  static readonly description: string;
5776
- constructor(body: VmNotFoundPublic & FreestyleError);
5777
- }
5778
- interface PublicInternalForkVmNotFound {
5779
- forkVmId: string;
5780
- [k: string]: unknown;
6379
+ constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
5781
6380
  }
5782
- declare class InternalForkVmNotFoundError extends Error {
5783
- body: PublicInternalForkVmNotFound & FreestyleError;
6381
+ declare class VmDeletedError extends Error {
6382
+ body: unknown & FreestyleError;
5784
6383
  static readonly code: string;
5785
6384
  static readonly statusCode: number;
5786
6385
  static readonly description: string;
5787
- constructor(body: PublicInternalForkVmNotFound & FreestyleError);
5788
- }
5789
- interface PublicBadRequest {
5790
- message: string;
5791
- [k: string]: unknown;
6386
+ constructor(body: unknown & FreestyleError);
5792
6387
  }
5793
- declare class BadRequestError extends Error {
5794
- body: PublicBadRequest & FreestyleError;
6388
+ declare class ReqwestError extends Error {
6389
+ body: unknown & FreestyleError;
5795
6390
  static readonly code: string;
5796
6391
  static readonly statusCode: number;
5797
6392
  static readonly description: string;
5798
- constructor(body: PublicBadRequest & FreestyleError);
5799
- }
5800
- interface PublicInternalVmNotFound {
5801
- vmId: string;
5802
- [k: string]: unknown;
6393
+ constructor(body: unknown & FreestyleError);
5803
6394
  }
5804
- declare class InternalVmNotFoundError extends Error {
5805
- body: PublicInternalVmNotFound & FreestyleError;
6395
+ declare class FirecrackerPidNotFoundError extends Error {
6396
+ body: unknown & FreestyleError;
5806
6397
  static readonly code: string;
5807
6398
  static readonly statusCode: number;
5808
6399
  static readonly description: string;
5809
- constructor(body: PublicInternalVmNotFound & FreestyleError);
6400
+ constructor(body: unknown & FreestyleError);
5810
6401
  }
5811
- declare class VmMustBeStoppedError extends Error {
6402
+ declare class FirecrackerApiSocketNotFoundError extends Error {
5812
6403
  body: unknown & FreestyleError;
5813
6404
  static readonly code: string;
5814
6405
  static readonly statusCode: number;
5815
6406
  static readonly description: string;
5816
6407
  constructor(body: unknown & FreestyleError);
5817
6408
  }
5818
- declare class AlreadyHasBaseError extends Error {
6409
+ declare class VmStartTimeoutError extends Error {
5819
6410
  body: unknown & FreestyleError;
5820
6411
  static readonly code: string;
5821
6412
  static readonly statusCode: number;
5822
6413
  static readonly description: string;
5823
6414
  constructor(body: unknown & FreestyleError);
5824
6415
  }
5825
- declare class NotFoundError extends Error {
6416
+ declare class VmExitDuringStartError extends Error {
5826
6417
  body: unknown & FreestyleError;
5827
6418
  static readonly code: string;
5828
6419
  static readonly statusCode: number;
5829
6420
  static readonly description: string;
5830
6421
  constructor(body: unknown & FreestyleError);
5831
6422
  }
5832
- interface PublicForkVmNotFound {
5833
- forkVmId: string;
5834
- [k: string]: unknown;
5835
- }
5836
- declare class ForkVmNotFoundError extends Error {
5837
- body: PublicForkVmNotFound & FreestyleError;
6423
+ declare class StdIoError extends Error {
6424
+ body: unknown & FreestyleError;
5838
6425
  static readonly code: string;
5839
6426
  static readonly statusCode: number;
5840
6427
  static readonly description: string;
5841
- constructor(body: PublicForkVmNotFound & FreestyleError);
5842
- }
5843
- interface PublicCreateSnapshotBadRequest {
5844
- message: string;
5845
- [k: string]: unknown;
6428
+ constructor(body: unknown & FreestyleError);
5846
6429
  }
5847
- declare class CreateSnapshotBadRequestError extends Error {
5848
- body: PublicCreateSnapshotBadRequest & FreestyleError;
6430
+ declare class VmCreateTmuxSessionError extends Error {
6431
+ body: unknown & FreestyleError;
5849
6432
  static readonly code: string;
5850
6433
  static readonly statusCode: number;
5851
6434
  static readonly description: string;
5852
- constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
5853
- }
5854
- interface PublicSnapshotVmBadRequest {
5855
- message: string;
5856
- [k: string]: unknown;
6435
+ constructor(body: unknown & FreestyleError);
5857
6436
  }
5858
- declare class SnapshotVmBadRequestError extends Error {
5859
- body: PublicSnapshotVmBadRequest & FreestyleError;
6437
+ declare class VmSubnetNotFoundError extends Error {
6438
+ body: unknown & FreestyleError;
5860
6439
  static readonly code: string;
5861
6440
  static readonly statusCode: number;
5862
6441
  static readonly description: string;
5863
- constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
6442
+ constructor(body: unknown & FreestyleError);
5864
6443
  }
5865
6444
  interface PublicFileNotFound {
5866
6445
  path: string;
@@ -5884,68 +6463,95 @@ declare class FilesBadRequestError extends Error {
5884
6463
  static readonly description: string;
5885
6464
  constructor(body: PublicFilesBadRequest & FreestyleError);
5886
6465
  }
5887
- declare class VmDeletedError extends Error {
6466
+ declare class VmMustBeStoppedError extends Error {
5888
6467
  body: unknown & FreestyleError;
5889
6468
  static readonly code: string;
5890
6469
  static readonly statusCode: number;
5891
6470
  static readonly description: string;
5892
6471
  constructor(body: unknown & FreestyleError);
5893
6472
  }
5894
- declare class ReqwestError extends Error {
6473
+ declare class AlreadyHasBaseError extends Error {
5895
6474
  body: unknown & FreestyleError;
5896
6475
  static readonly code: string;
5897
6476
  static readonly statusCode: number;
5898
6477
  static readonly description: string;
5899
6478
  constructor(body: unknown & FreestyleError);
5900
6479
  }
5901
- declare class FirecrackerPidNotFoundError extends Error {
6480
+ declare class NotFoundError extends Error {
5902
6481
  body: unknown & FreestyleError;
5903
6482
  static readonly code: string;
5904
6483
  static readonly statusCode: number;
5905
6484
  static readonly description: string;
5906
6485
  constructor(body: unknown & FreestyleError);
5907
6486
  }
5908
- declare class FirecrackerApiSocketNotFoundError extends Error {
6487
+ declare class VmNotFoundInFsError extends Error {
5909
6488
  body: unknown & FreestyleError;
5910
6489
  static readonly code: string;
5911
6490
  static readonly statusCode: number;
5912
6491
  static readonly description: string;
5913
6492
  constructor(body: unknown & FreestyleError);
5914
6493
  }
5915
- declare class VmStartTimeoutError extends Error {
6494
+ declare class VmNotRunningError extends Error {
5916
6495
  body: unknown & FreestyleError;
5917
6496
  static readonly code: string;
5918
6497
  static readonly statusCode: number;
5919
6498
  static readonly description: string;
5920
6499
  constructor(body: unknown & FreestyleError);
5921
6500
  }
5922
- declare class VmExitDuringStartError extends Error {
5923
- body: unknown & FreestyleError;
6501
+ interface VmNotFoundPublic {
6502
+ vmId: string;
6503
+ [k: string]: unknown;
6504
+ }
6505
+ declare class VmNotFoundError extends Error {
6506
+ body: VmNotFoundPublic & FreestyleError;
5924
6507
  static readonly code: string;
5925
6508
  static readonly statusCode: number;
5926
6509
  static readonly description: string;
5927
- constructor(body: unknown & FreestyleError);
6510
+ constructor(body: VmNotFoundPublic & FreestyleError);
5928
6511
  }
5929
- declare class StdIoError extends Error {
5930
- body: unknown & FreestyleError;
6512
+ interface PublicInternalForkVmNotFound {
6513
+ forkVmId: string;
6514
+ [k: string]: unknown;
6515
+ }
6516
+ declare class InternalForkVmNotFoundError extends Error {
6517
+ body: PublicInternalForkVmNotFound & FreestyleError;
5931
6518
  static readonly code: string;
5932
6519
  static readonly statusCode: number;
5933
6520
  static readonly description: string;
5934
- constructor(body: unknown & FreestyleError);
6521
+ constructor(body: PublicInternalForkVmNotFound & FreestyleError);
5935
6522
  }
5936
- declare class VmCreateTmuxSessionError extends Error {
5937
- body: unknown & FreestyleError;
6523
+ interface PublicBadRequest {
6524
+ message: string;
6525
+ [k: string]: unknown;
6526
+ }
6527
+ declare class BadRequestError extends Error {
6528
+ body: PublicBadRequest & FreestyleError;
5938
6529
  static readonly code: string;
5939
6530
  static readonly statusCode: number;
5940
6531
  static readonly description: string;
5941
- constructor(body: unknown & FreestyleError);
6532
+ constructor(body: PublicBadRequest & FreestyleError);
5942
6533
  }
5943
- declare class VmSubnetNotFoundError extends Error {
5944
- body: unknown & FreestyleError;
6534
+ interface PublicInternalVmNotFound {
6535
+ vmId: string;
6536
+ [k: string]: unknown;
6537
+ }
6538
+ declare class InternalVmNotFoundError extends Error {
6539
+ body: PublicInternalVmNotFound & FreestyleError;
5945
6540
  static readonly code: string;
5946
6541
  static readonly statusCode: number;
5947
6542
  static readonly description: string;
5948
- constructor(body: unknown & FreestyleError);
6543
+ constructor(body: PublicInternalVmNotFound & FreestyleError);
6544
+ }
6545
+ interface PublicDockerImportBadRequest {
6546
+ message: string;
6547
+ [k: string]: unknown;
6548
+ }
6549
+ declare class DockerImportBadRequestError extends Error {
6550
+ body: PublicDockerImportBadRequest & FreestyleError;
6551
+ static readonly code: string;
6552
+ static readonly statusCode: number;
6553
+ static readonly description: string;
6554
+ constructor(body: PublicDockerImportBadRequest & FreestyleError);
5949
6555
  }
5950
6556
  interface VmOperationDeniedDuringTransactionPublic {
5951
6557
  vmId: string;
@@ -5979,6 +6585,17 @@ declare class VmNotInTransactionError extends Error {
5979
6585
  static readonly description: string;
5980
6586
  constructor(body: unknown & FreestyleError);
5981
6587
  }
6588
+ interface PublicCreateVmBadRequest {
6589
+ message: string;
6590
+ [k: string]: unknown;
6591
+ }
6592
+ declare class CreateVmBadRequestError extends Error {
6593
+ body: PublicCreateVmBadRequest & FreestyleError;
6594
+ static readonly code: string;
6595
+ static readonly statusCode: number;
6596
+ static readonly description: string;
6597
+ constructor(body: PublicCreateVmBadRequest & FreestyleError);
6598
+ }
5982
6599
  declare class UserNotFoundError extends Error {
5983
6600
  body: unknown & FreestyleError;
5984
6601
  static readonly code: string;
@@ -6099,17 +6716,6 @@ declare class GroupNameEmptyError extends Error {
6099
6716
  static readonly description: string;
6100
6717
  constructor(body: unknown & FreestyleError);
6101
6718
  }
6102
- interface PublicCreateVmBadRequest {
6103
- message: string;
6104
- [k: string]: unknown;
6105
- }
6106
- declare class CreateVmBadRequestError extends Error {
6107
- body: PublicCreateVmBadRequest & FreestyleError;
6108
- static readonly code: string;
6109
- static readonly statusCode: number;
6110
- static readonly description: string;
6111
- constructor(body: PublicCreateVmBadRequest & FreestyleError);
6112
- }
6113
6719
  declare class WantedByEmptyError extends Error {
6114
6720
  body: unknown & FreestyleError;
6115
6721
  static readonly code: string;
@@ -6226,82 +6832,19 @@ declare class ServiceNotFoundError extends Error {
6226
6832
  static readonly description: string;
6227
6833
  constructor(body: unknown & FreestyleError);
6228
6834
  }
6229
- interface PublicWaitTimeout {
6230
- domain: string;
6231
- [k: string]: unknown;
6232
- }
6233
- declare class WaitTimeoutError extends Error {
6234
- body: PublicWaitTimeout & FreestyleError;
6235
- static readonly code: string;
6236
- static readonly statusCode: number;
6237
- static readonly description: string;
6238
- constructor(body: PublicWaitTimeout & FreestyleError);
6239
- }
6240
- interface PublicPreVerifyChallengeMismatch {
6241
- domain: string;
6242
- [k: string]: unknown;
6243
- }
6244
- declare class PreVerifyChallengeMismatchError extends Error {
6245
- body: PublicPreVerifyChallengeMismatch & FreestyleError;
6246
- static readonly code: string;
6247
- static readonly statusCode: number;
6248
- static readonly description: string;
6249
- constructor(body: PublicPreVerifyChallengeMismatch & FreestyleError);
6250
- }
6251
- interface PublicPreVerifyFailedParse {
6252
- domain: string;
6253
- [k: string]: unknown;
6254
- }
6255
- declare class PreVerifyFailedParseError extends Error {
6256
- body: PublicPreVerifyFailedParse & FreestyleError;
6257
- static readonly code: string;
6258
- static readonly statusCode: number;
6259
- static readonly description: string;
6260
- constructor(body: PublicPreVerifyFailedParse & FreestyleError);
6261
- }
6262
- interface PublicPreVerifyFailedFetch {
6263
- domain: string;
6264
- [k: string]: unknown;
6265
- }
6266
- declare class PreVerifyFailedFetchError extends Error {
6267
- body: PublicPreVerifyFailedFetch & FreestyleError;
6268
- static readonly code: string;
6269
- static readonly statusCode: number;
6270
- static readonly description: string;
6271
- constructor(body: PublicPreVerifyFailedFetch & FreestyleError);
6272
- }
6273
- interface PublicPreVerifyRouteNotFound {
6274
- domain: string;
6275
- [k: string]: unknown;
6276
- }
6277
- declare class PreVerifyRouteNotFoundError extends Error {
6278
- body: PublicPreVerifyRouteNotFound & FreestyleError;
6279
- static readonly code: string;
6280
- static readonly statusCode: number;
6281
- static readonly description: string;
6282
- constructor(body: PublicPreVerifyRouteNotFound & FreestyleError);
6283
- }
6284
- interface PublicAuthorizationNotFound {
6285
- domain: string;
6286
- [k: string]: unknown;
6287
- }
6288
- declare class AuthorizationNotFoundError extends Error {
6289
- body: PublicAuthorizationNotFound & FreestyleError;
6835
+ declare class InvalidRequestError extends Error {
6836
+ body: unknown & FreestyleError;
6290
6837
  static readonly code: string;
6291
6838
  static readonly statusCode: number;
6292
6839
  static readonly description: string;
6293
- constructor(body: PublicAuthorizationNotFound & FreestyleError);
6294
- }
6295
- interface PublicOrderNotFound {
6296
- domain: string;
6297
- [k: string]: unknown;
6840
+ constructor(body: unknown & FreestyleError);
6298
6841
  }
6299
- declare class OrderNotFoundError extends Error {
6300
- body: PublicOrderNotFound & FreestyleError;
6842
+ declare class RepoNotFoundError extends Error {
6843
+ body: unknown & FreestyleError;
6301
6844
  static readonly code: string;
6302
6845
  static readonly statusCode: number;
6303
6846
  static readonly description: string;
6304
- constructor(body: PublicOrderNotFound & FreestyleError);
6847
+ constructor(body: unknown & FreestyleError);
6305
6848
  }
6306
6849
  declare class InternalError extends Error {
6307
6850
  body: unknown & FreestyleError;
@@ -6345,16 +6888,12 @@ declare class ExpiredError extends Error {
6345
6888
  static readonly description: string;
6346
6889
  constructor(body: unknown & FreestyleError);
6347
6890
  }
6348
- interface PublicTagNotFound {
6349
- tag: string;
6350
- [k: string]: unknown;
6351
- }
6352
- declare class TagNotFoundError extends Error {
6353
- body: PublicTagNotFound & FreestyleError;
6891
+ declare class ConflictError extends Error {
6892
+ body: unknown & FreestyleError;
6354
6893
  static readonly code: string;
6355
6894
  static readonly statusCode: number;
6356
6895
  static readonly description: string;
6357
- constructor(body: PublicTagNotFound & FreestyleError);
6896
+ constructor(body: unknown & FreestyleError);
6358
6897
  }
6359
6898
  interface PublicBranchNotFound {
6360
6899
  branch: string;
@@ -6367,30 +6906,34 @@ declare class BranchNotFoundError extends Error {
6367
6906
  static readonly description: string;
6368
6907
  constructor(body: PublicBranchNotFound & FreestyleError);
6369
6908
  }
6370
- declare class RepoNotFoundError extends Error {
6909
+ declare class SendErrorError extends Error {
6371
6910
  body: unknown & FreestyleError;
6372
6911
  static readonly code: string;
6373
6912
  static readonly statusCode: number;
6374
6913
  static readonly description: string;
6375
6914
  constructor(body: unknown & FreestyleError);
6376
6915
  }
6377
- declare class InvalidObjectIdError extends Error {
6916
+ declare class ForbiddenError extends Error {
6378
6917
  body: unknown & FreestyleError;
6379
6918
  static readonly code: string;
6380
6919
  static readonly statusCode: number;
6381
6920
  static readonly description: string;
6382
6921
  constructor(body: unknown & FreestyleError);
6383
6922
  }
6384
- interface PublicCommitNotFound {
6385
- hash: string;
6923
+ type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
6924
+ other: string;
6925
+ };
6926
+ interface PublicUnsupportedTransfer {
6927
+ requested: LfsTransferAdapter[];
6928
+ supported: LfsTransferAdapter[];
6386
6929
  [k: string]: unknown;
6387
6930
  }
6388
- declare class CommitNotFoundError extends Error {
6389
- body: PublicCommitNotFound & FreestyleError;
6931
+ declare class UnsupportedTransferError extends Error {
6932
+ body: PublicUnsupportedTransfer & FreestyleError;
6390
6933
  static readonly code: string;
6391
6934
  static readonly statusCode: number;
6392
6935
  static readonly description: string;
6393
- constructor(body: PublicCommitNotFound & FreestyleError);
6936
+ constructor(body: PublicUnsupportedTransfer & FreestyleError);
6394
6937
  }
6395
6938
  interface PublicReferenceNotFound {
6396
6939
  reference: string;
@@ -6403,367 +6946,510 @@ declare class ReferenceNotFoundError extends Error {
6403
6946
  static readonly description: string;
6404
6947
  constructor(body: PublicReferenceNotFound & FreestyleError);
6405
6948
  }
6406
- interface PublicPathNotFound {
6407
- path: string;
6949
+ interface PublicInvalidRange {
6950
+ since: string;
6951
+ until: string;
6408
6952
  [k: string]: unknown;
6409
6953
  }
6410
- declare class PathNotFoundError extends Error {
6411
- body: PublicPathNotFound & FreestyleError;
6954
+ declare class InvalidRangeError extends Error {
6955
+ body: PublicInvalidRange & FreestyleError;
6412
6956
  static readonly code: string;
6413
6957
  static readonly statusCode: number;
6414
6958
  static readonly description: string;
6415
- constructor(body: PublicPathNotFound & FreestyleError);
6959
+ constructor(body: PublicInvalidRange & FreestyleError);
6416
6960
  }
6417
- declare class InvalidRequestError extends Error {
6961
+ declare class OffsetWithSelectorError extends Error {
6418
6962
  body: unknown & FreestyleError;
6419
6963
  static readonly code: string;
6420
6964
  static readonly statusCode: number;
6421
6965
  static readonly description: string;
6422
6966
  constructor(body: unknown & FreestyleError);
6423
6967
  }
6424
- interface PublicInvalidRevision {
6425
- revision: string;
6968
+ interface PublicCommitNotInBranch {
6969
+ sha: string;
6970
+ branch: string;
6426
6971
  [k: string]: unknown;
6427
6972
  }
6428
- declare class InvalidRevisionError extends Error {
6429
- body: PublicInvalidRevision & FreestyleError;
6973
+ declare class CommitNotInBranchError extends Error {
6974
+ body: PublicCommitNotInBranch & FreestyleError;
6430
6975
  static readonly code: string;
6431
6976
  static readonly statusCode: number;
6432
6977
  static readonly description: string;
6433
- constructor(body: PublicInvalidRevision & FreestyleError);
6978
+ constructor(body: PublicCommitNotInBranch & FreestyleError);
6434
6979
  }
6435
- declare class ForbiddenError extends Error {
6436
- body: unknown & FreestyleError;
6980
+ interface PublicCommitNotFound {
6981
+ sha: string;
6982
+ [k: string]: unknown;
6983
+ }
6984
+ declare class CommitNotFoundError extends Error {
6985
+ body: PublicCommitNotFound & FreestyleError;
6437
6986
  static readonly code: string;
6438
6987
  static readonly statusCode: number;
6439
6988
  static readonly description: string;
6440
- constructor(body: unknown & FreestyleError);
6989
+ constructor(body: PublicCommitNotFound & FreestyleError);
6441
6990
  }
6442
- declare class UnauthorizedError extends Error {
6443
- body: unknown & FreestyleError;
6991
+ interface PublicBlobNotFound {
6992
+ hash: string;
6993
+ [k: string]: unknown;
6994
+ }
6995
+ declare class BlobNotFoundError extends Error {
6996
+ body: PublicBlobNotFound & FreestyleError;
6444
6997
  static readonly code: string;
6445
6998
  static readonly statusCode: number;
6446
6999
  static readonly description: string;
6447
- constructor(body: unknown & FreestyleError);
7000
+ constructor(body: PublicBlobNotFound & FreestyleError);
6448
7001
  }
6449
- declare class ConflictError extends Error {
6450
- body: unknown & FreestyleError;
7002
+ interface PublicTreeNotFound {
7003
+ hash: string;
7004
+ [k: string]: unknown;
7005
+ }
7006
+ declare class TreeNotFoundError extends Error {
7007
+ body: PublicTreeNotFound & FreestyleError;
6451
7008
  static readonly code: string;
6452
7009
  static readonly statusCode: number;
6453
7010
  static readonly description: string;
6454
- constructor(body: unknown & FreestyleError);
7011
+ constructor(body: PublicTreeNotFound & FreestyleError);
6455
7012
  }
6456
- type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
6457
- other: string;
6458
- };
6459
- interface PublicUnsupportedTransfer {
6460
- requested: LfsTransferAdapter[];
6461
- supported: LfsTransferAdapter[];
6462
- [k: string]: unknown;
6463
- }
6464
- declare class UnsupportedTransferError extends Error {
6465
- body: PublicUnsupportedTransfer & FreestyleError;
6466
- static readonly code: string;
6467
- static readonly statusCode: number;
6468
- static readonly description: string;
6469
- constructor(body: PublicUnsupportedTransfer & FreestyleError);
6470
- }
6471
- interface PublicBlobNotFound {
6472
- hash: string;
7013
+ interface PublicInvalidRevision {
7014
+ revision: string;
6473
7015
  [k: string]: unknown;
6474
7016
  }
6475
- declare class BlobNotFoundError extends Error {
6476
- body: PublicBlobNotFound & FreestyleError;
7017
+ declare class InvalidRevisionError extends Error {
7018
+ body: PublicInvalidRevision & FreestyleError;
6477
7019
  static readonly code: string;
6478
7020
  static readonly statusCode: number;
6479
7021
  static readonly description: string;
6480
- constructor(body: PublicBlobNotFound & FreestyleError);
6481
- }
6482
- interface PublicTreeNotFound {
6483
- hash: string;
6484
- [k: string]: unknown;
7022
+ constructor(body: PublicInvalidRevision & FreestyleError);
6485
7023
  }
6486
- declare class TreeNotFoundError extends Error {
6487
- body: PublicTreeNotFound & FreestyleError;
7024
+ declare class UnauthorizedError extends Error {
7025
+ body: unknown & FreestyleError;
6488
7026
  static readonly code: string;
6489
7027
  static readonly statusCode: number;
6490
7028
  static readonly description: string;
6491
- constructor(body: PublicTreeNotFound & FreestyleError);
7029
+ constructor(body: unknown & FreestyleError);
6492
7030
  }
6493
- interface PublicResizeFailed {
6494
- message: string;
7031
+ interface PublicTagNotFound {
7032
+ tag: string;
6495
7033
  [k: string]: unknown;
6496
7034
  }
6497
- declare class ResizeFailedError extends Error {
6498
- body: PublicResizeFailed & FreestyleError;
7035
+ declare class TagNotFoundError extends Error {
7036
+ body: PublicTagNotFound & FreestyleError;
6499
7037
  static readonly code: string;
6500
7038
  static readonly statusCode: number;
6501
7039
  static readonly description: string;
6502
- constructor(body: PublicResizeFailed & FreestyleError);
7040
+ constructor(body: PublicTagNotFound & FreestyleError);
6503
7041
  }
6504
- declare class InternalResizeVmNotFoundError extends Error {
7042
+ declare class RepoAlreadyExistsError extends Error {
6505
7043
  body: unknown & FreestyleError;
6506
7044
  static readonly code: string;
6507
7045
  static readonly statusCode: number;
6508
7046
  static readonly description: string;
6509
7047
  constructor(body: unknown & FreestyleError);
6510
7048
  }
6511
- interface PublicObservabilityDatabaseError {
6512
- message: string;
6513
- [k: string]: unknown;
6514
- }
6515
- declare class ObservabilityDatabaseErrorError extends Error {
6516
- body: PublicObservabilityDatabaseError & FreestyleError;
7049
+ declare class GitHubSyncConflictError extends Error {
7050
+ body: unknown & FreestyleError;
6517
7051
  static readonly code: string;
6518
7052
  static readonly statusCode: number;
6519
7053
  static readonly description: string;
6520
- constructor(body: PublicObservabilityDatabaseError & FreestyleError);
7054
+ constructor(body: unknown & FreestyleError);
6521
7055
  }
6522
- interface PublicObservabilityAccessDenied {
6523
- deploymentId: string;
7056
+ interface InvalidObjectIdPublic {
7057
+ hash: string;
6524
7058
  [k: string]: unknown;
6525
7059
  }
6526
- declare class ObservabilityAccessDeniedError extends Error {
6527
- body: PublicObservabilityAccessDenied & FreestyleError;
7060
+ declare class InvalidObjectIdError extends Error {
7061
+ body: InvalidObjectIdPublic & FreestyleError;
6528
7062
  static readonly code: string;
6529
7063
  static readonly statusCode: number;
6530
7064
  static readonly description: string;
6531
- constructor(body: PublicObservabilityAccessDenied & FreestyleError);
6532
- }
6533
- interface PublicParseLogsFailed {
6534
- message: string;
6535
- [k: string]: unknown;
7065
+ constructor(body: InvalidObjectIdPublic & FreestyleError);
6536
7066
  }
6537
- declare class ParseLogsFailedError extends Error {
6538
- body: PublicParseLogsFailed & FreestyleError;
7067
+ declare class SourceImportConflictError extends Error {
7068
+ body: unknown & FreestyleError;
6539
7069
  static readonly code: string;
6540
7070
  static readonly statusCode: number;
6541
7071
  static readonly description: string;
6542
- constructor(body: PublicParseLogsFailed & FreestyleError);
7072
+ constructor(body: unknown & FreestyleError);
6543
7073
  }
6544
- interface PublicRetrieveLogsFailed {
6545
- message: string;
7074
+ interface PublicSourceUnauthorized {
7075
+ url: string;
6546
7076
  [k: string]: unknown;
6547
7077
  }
6548
- declare class RetrieveLogsFailedError extends Error {
6549
- body: PublicRetrieveLogsFailed & FreestyleError;
7078
+ declare class SourceUnauthorizedError extends Error {
7079
+ body: PublicSourceUnauthorized & FreestyleError;
6550
7080
  static readonly code: string;
6551
7081
  static readonly statusCode: number;
6552
7082
  static readonly description: string;
6553
- constructor(body: PublicRetrieveLogsFailed & FreestyleError);
7083
+ constructor(body: PublicSourceUnauthorized & FreestyleError);
6554
7084
  }
6555
- interface PublicInvalidQuery {
6556
- message: string;
7085
+ interface PublicSourceNotFound {
7086
+ url: string;
6557
7087
  [k: string]: unknown;
6558
7088
  }
6559
- declare class InvalidQueryError extends Error {
6560
- body: PublicInvalidQuery & FreestyleError;
7089
+ declare class SourceNotFoundError extends Error {
7090
+ body: PublicSourceNotFound & FreestyleError;
6561
7091
  static readonly code: string;
6562
7092
  static readonly statusCode: number;
6563
7093
  static readonly description: string;
6564
- constructor(body: PublicInvalidQuery & FreestyleError);
7094
+ constructor(body: PublicSourceNotFound & FreestyleError);
6565
7095
  }
6566
- interface PublicLogsNotFound {
6567
- deploymentId: string;
7096
+ interface PublicImportSubdirNotFound {
7097
+ /**
7098
+ * The resource type, e.g. "tar archive" or "zip archive"
7099
+ */
7100
+ source: string;
7101
+ dir: string;
6568
7102
  [k: string]: unknown;
6569
7103
  }
6570
- declare class LogsNotFoundError extends Error {
6571
- body: PublicLogsNotFound & FreestyleError;
7104
+ declare class ImportSubdirNotFoundError extends Error {
7105
+ body: PublicImportSubdirNotFound & FreestyleError;
6572
7106
  static readonly code: string;
6573
7107
  static readonly statusCode: number;
6574
7108
  static readonly description: string;
6575
- constructor(body: PublicLogsNotFound & FreestyleError);
7109
+ constructor(body: PublicImportSubdirNotFound & FreestyleError);
6576
7110
  }
6577
- declare class PermissionAlreadyExistsError extends Error {
7111
+ declare class PackfileError extends Error {
6578
7112
  body: unknown & FreestyleError;
6579
7113
  static readonly code: string;
6580
7114
  static readonly statusCode: number;
6581
7115
  static readonly description: string;
6582
7116
  constructor(body: unknown & FreestyleError);
6583
7117
  }
6584
- interface PublicListTokensFailed {
6585
- message: string;
7118
+ interface PublicPathNotFound {
7119
+ path: string;
6586
7120
  [k: string]: unknown;
6587
7121
  }
6588
- declare class ListTokensFailedError extends Error {
6589
- body: PublicListTokensFailed & FreestyleError;
7122
+ declare class PathNotFoundError extends Error {
7123
+ body: PublicPathNotFound & FreestyleError;
6590
7124
  static readonly code: string;
6591
7125
  static readonly statusCode: number;
6592
7126
  static readonly description: string;
6593
- constructor(body: PublicListTokensFailed & FreestyleError);
6594
- }
6595
- interface PublicRevokeTokenFailed {
6596
- message: string;
6597
- [k: string]: unknown;
7127
+ constructor(body: PublicPathNotFound & FreestyleError);
6598
7128
  }
6599
- declare class RevokeTokenFailedError extends Error {
6600
- body: PublicRevokeTokenFailed & FreestyleError;
7129
+ declare class InvalidServiceError extends Error {
7130
+ body: unknown & FreestyleError;
6601
7131
  static readonly code: string;
6602
7132
  static readonly statusCode: number;
6603
7133
  static readonly description: string;
6604
- constructor(body: PublicRevokeTokenFailed & FreestyleError);
7134
+ constructor(body: unknown & FreestyleError);
6605
7135
  }
6606
- interface PublicCreateTokenFailed {
6607
- message: string;
6608
- [k: string]: unknown;
7136
+ declare class ExpectedServiceError extends Error {
7137
+ body: unknown & FreestyleError;
7138
+ static readonly code: string;
7139
+ static readonly statusCode: number;
7140
+ static readonly description: string;
7141
+ constructor(body: unknown & FreestyleError);
6609
7142
  }
6610
- declare class CreateTokenFailedError extends Error {
6611
- body: PublicCreateTokenFailed & FreestyleError;
7143
+ declare class DatabaseErrorError extends Error {
7144
+ body: unknown & FreestyleError;
6612
7145
  static readonly code: string;
6613
7146
  static readonly statusCode: number;
6614
7147
  static readonly description: string;
6615
- constructor(body: PublicCreateTokenFailed & FreestyleError);
7148
+ constructor(body: unknown & FreestyleError);
6616
7149
  }
6617
- interface PublicListPermissionsFailed {
6618
- message: string;
7150
+ interface PublicWaitTimeout {
7151
+ domain: string;
6619
7152
  [k: string]: unknown;
6620
7153
  }
6621
- declare class ListPermissionsFailedError extends Error {
6622
- body: PublicListPermissionsFailed & FreestyleError;
7154
+ declare class WaitTimeoutError extends Error {
7155
+ body: PublicWaitTimeout & FreestyleError;
6623
7156
  static readonly code: string;
6624
7157
  static readonly statusCode: number;
6625
7158
  static readonly description: string;
6626
- constructor(body: PublicListPermissionsFailed & FreestyleError);
7159
+ constructor(body: PublicWaitTimeout & FreestyleError);
6627
7160
  }
6628
- interface PublicGetPermissionFailed {
6629
- message: string;
7161
+ interface PublicPreVerifyChallengeMismatch {
7162
+ domain: string;
6630
7163
  [k: string]: unknown;
6631
7164
  }
6632
- declare class GetPermissionFailedError extends Error {
6633
- body: PublicGetPermissionFailed & FreestyleError;
7165
+ declare class PreVerifyChallengeMismatchError extends Error {
7166
+ body: PublicPreVerifyChallengeMismatch & FreestyleError;
6634
7167
  static readonly code: string;
6635
7168
  static readonly statusCode: number;
6636
7169
  static readonly description: string;
6637
- constructor(body: PublicGetPermissionFailed & FreestyleError);
7170
+ constructor(body: PublicPreVerifyChallengeMismatch & FreestyleError);
6638
7171
  }
6639
- interface PublicUpdatePermissionFailed {
6640
- message: string;
7172
+ interface PublicPreVerifyFailedParse {
7173
+ domain: string;
6641
7174
  [k: string]: unknown;
6642
7175
  }
6643
- declare class UpdatePermissionFailedError extends Error {
6644
- body: PublicUpdatePermissionFailed & FreestyleError;
7176
+ declare class PreVerifyFailedParseError extends Error {
7177
+ body: PublicPreVerifyFailedParse & FreestyleError;
6645
7178
  static readonly code: string;
6646
7179
  static readonly statusCode: number;
6647
7180
  static readonly description: string;
6648
- constructor(body: PublicUpdatePermissionFailed & FreestyleError);
7181
+ constructor(body: PublicPreVerifyFailedParse & FreestyleError);
6649
7182
  }
6650
- interface PublicRevokePermissionFailed {
6651
- message: string;
7183
+ interface PublicPreVerifyFailedFetch {
7184
+ domain: string;
6652
7185
  [k: string]: unknown;
6653
7186
  }
6654
- declare class RevokePermissionFailedError extends Error {
6655
- body: PublicRevokePermissionFailed & FreestyleError;
7187
+ declare class PreVerifyFailedFetchError extends Error {
7188
+ body: PublicPreVerifyFailedFetch & FreestyleError;
6656
7189
  static readonly code: string;
6657
7190
  static readonly statusCode: number;
6658
7191
  static readonly description: string;
6659
- constructor(body: PublicRevokePermissionFailed & FreestyleError);
7192
+ constructor(body: PublicPreVerifyFailedFetch & FreestyleError);
6660
7193
  }
6661
- interface PublicGrantPermissionFailed {
6662
- message: string;
7194
+ interface PublicPreVerifyRouteNotFound {
7195
+ domain: string;
6663
7196
  [k: string]: unknown;
6664
7197
  }
6665
- declare class GrantPermissionFailedError extends Error {
6666
- body: PublicGrantPermissionFailed & FreestyleError;
7198
+ declare class PreVerifyRouteNotFoundError extends Error {
7199
+ body: PublicPreVerifyRouteNotFound & FreestyleError;
6667
7200
  static readonly code: string;
6668
7201
  static readonly statusCode: number;
6669
7202
  static readonly description: string;
6670
- constructor(body: PublicGrantPermissionFailed & FreestyleError);
7203
+ constructor(body: PublicPreVerifyRouteNotFound & FreestyleError);
6671
7204
  }
6672
- interface PublicListIdentitiesFailed {
6673
- message: string;
7205
+ interface PublicAuthorizationNotFound {
7206
+ domain: string;
6674
7207
  [k: string]: unknown;
6675
7208
  }
6676
- declare class ListIdentitiesFailedError extends Error {
6677
- body: PublicListIdentitiesFailed & FreestyleError;
7209
+ declare class AuthorizationNotFoundError extends Error {
7210
+ body: PublicAuthorizationNotFound & FreestyleError;
6678
7211
  static readonly code: string;
6679
7212
  static readonly statusCode: number;
6680
7213
  static readonly description: string;
6681
- constructor(body: PublicListIdentitiesFailed & FreestyleError);
7214
+ constructor(body: PublicAuthorizationNotFound & FreestyleError);
6682
7215
  }
6683
- interface PublicDeleteIdentityFailed {
6684
- message: string;
7216
+ interface PublicOrderNotFound {
7217
+ domain: string;
6685
7218
  [k: string]: unknown;
6686
7219
  }
6687
- declare class DeleteIdentityFailedError extends Error {
6688
- body: PublicDeleteIdentityFailed & FreestyleError;
7220
+ declare class OrderNotFoundError extends Error {
7221
+ body: PublicOrderNotFound & FreestyleError;
6689
7222
  static readonly code: string;
6690
7223
  static readonly statusCode: number;
6691
7224
  static readonly description: string;
6692
- constructor(body: PublicDeleteIdentityFailed & FreestyleError);
7225
+ constructor(body: PublicOrderNotFound & FreestyleError);
6693
7226
  }
6694
- interface PublicCreateIdentityFailed {
7227
+ interface PublicResizeFailed {
6695
7228
  message: string;
6696
7229
  [k: string]: unknown;
6697
7230
  }
6698
- declare class CreateIdentityFailedError extends Error {
6699
- body: PublicCreateIdentityFailed & FreestyleError;
7231
+ declare class ResizeFailedError extends Error {
7232
+ body: PublicResizeFailed & FreestyleError;
6700
7233
  static readonly code: string;
6701
7234
  static readonly statusCode: number;
6702
7235
  static readonly description: string;
6703
- constructor(body: PublicCreateIdentityFailed & FreestyleError);
7236
+ constructor(body: PublicResizeFailed & FreestyleError);
6704
7237
  }
6705
- declare class VmPermissionNotFoundError extends Error {
7238
+ declare class InternalResizeVmNotFoundError extends Error {
6706
7239
  body: unknown & FreestyleError;
6707
7240
  static readonly code: string;
6708
7241
  static readonly statusCode: number;
6709
7242
  static readonly description: string;
6710
7243
  constructor(body: unknown & FreestyleError);
6711
7244
  }
6712
- declare class PermissionNotFoundError extends Error {
7245
+ declare class DomainOwnershipVerificationFailedError extends Error {
6713
7246
  body: unknown & FreestyleError;
6714
7247
  static readonly code: string;
6715
7248
  static readonly statusCode: number;
6716
7249
  static readonly description: string;
6717
7250
  constructor(body: unknown & FreestyleError);
6718
7251
  }
6719
- declare class VmAccessDeniedError extends Error {
6720
- body: unknown & FreestyleError;
6721
- static readonly code: string;
6722
- static readonly statusCode: number;
6723
- static readonly description: string;
6724
- constructor(body: unknown & FreestyleError);
7252
+ interface PublicErrorDeletingRecord {
7253
+ domain: string;
7254
+ name: string;
7255
+ message: string;
7256
+ [k: string]: unknown;
6725
7257
  }
6726
- declare class GitRepositoryAccessDeniedError extends Error {
6727
- body: unknown & FreestyleError;
7258
+ declare class ErrorDeletingRecordError extends Error {
7259
+ body: PublicErrorDeletingRecord & FreestyleError;
6728
7260
  static readonly code: string;
6729
7261
  static readonly statusCode: number;
6730
7262
  static readonly description: string;
6731
- constructor(body: unknown & FreestyleError);
7263
+ constructor(body: PublicErrorDeletingRecord & FreestyleError);
6732
7264
  }
6733
- declare class GitRepositoryNotFoundError extends Error {
6734
- body: unknown & FreestyleError;
7265
+ interface PublicRecordOwnershipError {
7266
+ recordId: string;
7267
+ accountId: string;
7268
+ [k: string]: unknown;
7269
+ }
7270
+ declare class RecordOwnershipErrorError extends Error {
7271
+ body: PublicRecordOwnershipError & FreestyleError;
6735
7272
  static readonly code: string;
6736
7273
  static readonly statusCode: number;
6737
7274
  static readonly description: string;
6738
- constructor(body: unknown & FreestyleError);
7275
+ constructor(body: PublicRecordOwnershipError & FreestyleError);
6739
7276
  }
6740
- declare class CannotDeleteManagedIdentityError extends Error {
6741
- body: unknown & FreestyleError;
7277
+ interface PublicErrorCreatingRecord {
7278
+ message: string;
7279
+ [k: string]: unknown;
7280
+ }
7281
+ declare class ErrorCreatingRecordError extends Error {
7282
+ body: PublicErrorCreatingRecord & FreestyleError;
6742
7283
  static readonly code: string;
6743
7284
  static readonly statusCode: number;
6744
7285
  static readonly description: string;
6745
- constructor(body: unknown & FreestyleError);
7286
+ constructor(body: PublicErrorCreatingRecord & FreestyleError);
6746
7287
  }
6747
- declare class CannotModifyManagedIdentityError extends Error {
6748
- body: unknown & FreestyleError;
7288
+ interface PublicDomainOwnershipError {
7289
+ domain: string;
7290
+ accountId: string;
7291
+ [k: string]: unknown;
7292
+ }
7293
+ declare class DomainOwnershipErrorError extends Error {
7294
+ body: PublicDomainOwnershipError & FreestyleError;
6749
7295
  static readonly code: string;
6750
7296
  static readonly statusCode: number;
6751
7297
  static readonly description: string;
6752
- constructor(body: unknown & FreestyleError);
7298
+ constructor(body: PublicDomainOwnershipError & FreestyleError);
6753
7299
  }
6754
- declare class IdentityAccessDeniedError extends Error {
6755
- body: unknown & FreestyleError;
7300
+ interface PublicBrowserOperationFailed {
7301
+ message: string;
7302
+ [k: string]: unknown;
7303
+ }
7304
+ declare class BrowserOperationFailedError extends Error {
7305
+ body: PublicBrowserOperationFailed & FreestyleError;
6756
7306
  static readonly code: string;
6757
7307
  static readonly statusCode: number;
6758
7308
  static readonly description: string;
6759
- constructor(body: unknown & FreestyleError);
7309
+ constructor(body: PublicBrowserOperationFailed & FreestyleError);
6760
7310
  }
6761
- declare class IdentityNotFoundError extends Error {
6762
- body: unknown & FreestyleError;
7311
+ interface PublicWatchFilesFailed {
7312
+ message: string;
7313
+ [k: string]: unknown;
7314
+ }
7315
+ declare class WatchFilesFailedError extends Error {
7316
+ body: PublicWatchFilesFailed & FreestyleError;
6763
7317
  static readonly code: string;
6764
7318
  static readonly statusCode: number;
6765
7319
  static readonly description: string;
6766
- constructor(body: unknown & FreestyleError);
7320
+ constructor(body: PublicWatchFilesFailed & FreestyleError);
7321
+ }
7322
+ interface PublicLogsFailed {
7323
+ message: string;
7324
+ [k: string]: unknown;
7325
+ }
7326
+ declare class LogsFailedError extends Error {
7327
+ body: PublicLogsFailed & FreestyleError;
7328
+ static readonly code: string;
7329
+ static readonly statusCode: number;
7330
+ static readonly description: string;
7331
+ constructor(body: PublicLogsFailed & FreestyleError);
7332
+ }
7333
+ interface PublicStatusFailed {
7334
+ message: string;
7335
+ [k: string]: unknown;
7336
+ }
7337
+ declare class StatusFailedError extends Error {
7338
+ body: PublicStatusFailed & FreestyleError;
7339
+ static readonly code: string;
7340
+ static readonly statusCode: number;
7341
+ static readonly description: string;
7342
+ constructor(body: PublicStatusFailed & FreestyleError);
7343
+ }
7344
+ interface PublicRestartFailed {
7345
+ message: string;
7346
+ [k: string]: unknown;
7347
+ }
7348
+ declare class RestartFailedError extends Error {
7349
+ body: PublicRestartFailed & FreestyleError;
7350
+ static readonly code: string;
7351
+ static readonly statusCode: number;
7352
+ static readonly description: string;
7353
+ constructor(body: PublicRestartFailed & FreestyleError);
7354
+ }
7355
+ interface PublicShutdownFailed {
7356
+ message: string;
7357
+ [k: string]: unknown;
7358
+ }
7359
+ declare class ShutdownFailedError extends Error {
7360
+ body: PublicShutdownFailed & FreestyleError;
7361
+ static readonly code: string;
7362
+ static readonly statusCode: number;
7363
+ static readonly description: string;
7364
+ constructor(body: PublicShutdownFailed & FreestyleError);
7365
+ }
7366
+ interface PublicCommitFailed {
7367
+ message: string;
7368
+ [k: string]: unknown;
7369
+ }
7370
+ declare class CommitFailedError extends Error {
7371
+ body: PublicCommitFailed & FreestyleError;
7372
+ static readonly code: string;
7373
+ static readonly statusCode: number;
7374
+ static readonly description: string;
7375
+ constructor(body: PublicCommitFailed & FreestyleError);
7376
+ }
7377
+ interface PublicWriteFileFailed {
7378
+ message: string;
7379
+ [k: string]: unknown;
7380
+ }
7381
+ declare class WriteFileFailedError extends Error {
7382
+ body: PublicWriteFileFailed & FreestyleError;
7383
+ static readonly code: string;
7384
+ static readonly statusCode: number;
7385
+ static readonly description: string;
7386
+ constructor(body: PublicWriteFileFailed & FreestyleError);
7387
+ }
7388
+ interface PublicReadFileFailed {
7389
+ message: string;
7390
+ [k: string]: unknown;
7391
+ }
7392
+ declare class ReadFileFailedError extends Error {
7393
+ body: PublicReadFileFailed & FreestyleError;
7394
+ static readonly code: string;
7395
+ static readonly statusCode: number;
7396
+ static readonly description: string;
7397
+ constructor(body: PublicReadFileFailed & FreestyleError);
7398
+ }
7399
+ interface PublicExecutionFailed {
7400
+ message: string;
7401
+ [k: string]: unknown;
7402
+ }
7403
+ declare class ExecutionFailedError extends Error {
7404
+ body: PublicExecutionFailed & FreestyleError;
7405
+ static readonly code: string;
7406
+ static readonly statusCode: number;
7407
+ static readonly description: string;
7408
+ constructor(body: PublicExecutionFailed & FreestyleError);
7409
+ }
7410
+ interface PublicRequestFailed {
7411
+ message: string;
7412
+ [k: string]: unknown;
7413
+ }
7414
+ declare class RequestFailedError extends Error {
7415
+ body: PublicRequestFailed & FreestyleError;
7416
+ static readonly code: string;
7417
+ static readonly statusCode: number;
7418
+ static readonly description: string;
7419
+ constructor(body: PublicRequestFailed & FreestyleError);
7420
+ }
7421
+ interface PublicDevServerFileNotFound {
7422
+ path: string;
7423
+ [k: string]: unknown;
7424
+ }
7425
+ declare class DevServerFileNotFoundError extends Error {
7426
+ body: PublicDevServerFileNotFound & FreestyleError;
7427
+ static readonly code: string;
7428
+ static readonly statusCode: number;
7429
+ static readonly description: string;
7430
+ constructor(body: PublicDevServerFileNotFound & FreestyleError);
7431
+ }
7432
+ interface PublicDevServerInvalidRequest {
7433
+ message: string;
7434
+ [k: string]: unknown;
7435
+ }
7436
+ declare class DevServerInvalidRequestError extends Error {
7437
+ body: PublicDevServerInvalidRequest & FreestyleError;
7438
+ static readonly code: string;
7439
+ static readonly statusCode: number;
7440
+ static readonly description: string;
7441
+ constructor(body: PublicDevServerInvalidRequest & FreestyleError);
7442
+ }
7443
+ interface PublicDevServerNotFound {
7444
+ serverId: string;
7445
+ [k: string]: unknown;
7446
+ }
7447
+ declare class DevServerNotFoundError extends Error {
7448
+ body: PublicDevServerNotFound & FreestyleError;
7449
+ static readonly code: string;
7450
+ static readonly statusCode: number;
7451
+ static readonly description: string;
7452
+ constructor(body: PublicDevServerNotFound & FreestyleError);
6767
7453
  }
6768
7454
  interface PublicExecuteInternalError {
6769
7455
  message: string;
@@ -6915,475 +7601,394 @@ declare class RunNotFoundError extends Error {
6915
7601
  static readonly description: string;
6916
7602
  constructor(body: PublicRunNotFound & FreestyleError);
6917
7603
  }
6918
- interface PublicFailedToProvisionCertificate {
6919
- message: string;
6920
- [k: string]: unknown;
6921
- }
6922
- declare class FailedToProvisionCertificateError extends Error {
6923
- body: PublicFailedToProvisionCertificate & FreestyleError;
7604
+ declare class EmptyTagError extends Error {
7605
+ body: unknown & FreestyleError;
6924
7606
  static readonly code: string;
6925
7607
  static readonly statusCode: number;
6926
7608
  static readonly description: string;
6927
- constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
6928
- }
6929
- interface PublicFailedToInsertDomainMapping {
6930
- message: string;
6931
- [k: string]: unknown;
7609
+ constructor(body: unknown & FreestyleError);
6932
7610
  }
6933
- declare class FailedToInsertDomainMappingError extends Error {
6934
- body: PublicFailedToInsertDomainMapping & FreestyleError;
7611
+ declare class AnyhowError extends Error {
7612
+ body: unknown & FreestyleError;
6935
7613
  static readonly code: string;
6936
7614
  static readonly statusCode: number;
6937
7615
  static readonly description: string;
6938
- constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
6939
- }
6940
- interface PublicPermissionDenied {
6941
- message: string;
6942
- [k: string]: unknown;
7616
+ constructor(body: unknown & FreestyleError);
6943
7617
  }
6944
- declare class PermissionDeniedError extends Error {
6945
- body: PublicPermissionDenied & FreestyleError;
7618
+ declare class BranchNameEmptyError extends Error {
7619
+ body: unknown & FreestyleError;
6946
7620
  static readonly code: string;
6947
7621
  static readonly statusCode: number;
6948
7622
  static readonly description: string;
6949
- constructor(body: PublicPermissionDenied & FreestyleError);
7623
+ constructor(body: unknown & FreestyleError);
6950
7624
  }
6951
- interface PublicFailedToCheckPermissions {
7625
+ interface PublicCloudstateInternalError {
6952
7626
  message: string;
6953
7627
  [k: string]: unknown;
6954
7628
  }
6955
- declare class FailedToCheckPermissionsError extends Error {
6956
- body: PublicFailedToCheckPermissions & FreestyleError;
7629
+ declare class CloudstateInternalErrorError extends Error {
7630
+ body: PublicCloudstateInternalError & FreestyleError;
6957
7631
  static readonly code: string;
6958
7632
  static readonly statusCode: number;
6959
7633
  static readonly description: string;
6960
- constructor(body: PublicFailedToCheckPermissions & FreestyleError);
7634
+ constructor(body: PublicCloudstateInternalError & FreestyleError);
6961
7635
  }
6962
- interface PublicFailedToListDomains {
7636
+ interface PublicCloudstateDatabaseError {
6963
7637
  message: string;
6964
7638
  [k: string]: unknown;
6965
7639
  }
6966
- declare class FailedToListDomainsError extends Error {
6967
- body: PublicFailedToListDomains & FreestyleError;
7640
+ declare class CloudstateDatabaseErrorError extends Error {
7641
+ body: PublicCloudstateDatabaseError & FreestyleError;
6968
7642
  static readonly code: string;
6969
7643
  static readonly statusCode: number;
6970
7644
  static readonly description: string;
6971
- constructor(body: PublicFailedToListDomains & FreestyleError);
7645
+ constructor(body: PublicCloudstateDatabaseError & FreestyleError);
6972
7646
  }
6973
- interface PublicFailedToListVerifications {
6974
- message: string;
7647
+ interface PublicCloudstateAccessDenied {
7648
+ projectId: string;
6975
7649
  [k: string]: unknown;
6976
7650
  }
6977
- declare class FailedToListVerificationsError extends Error {
6978
- body: PublicFailedToListVerifications & FreestyleError;
7651
+ declare class CloudstateAccessDeniedError extends Error {
7652
+ body: PublicCloudstateAccessDenied & FreestyleError;
6979
7653
  static readonly code: string;
6980
7654
  static readonly statusCode: number;
6981
7655
  static readonly description: string;
6982
- constructor(body: PublicFailedToListVerifications & FreestyleError);
7656
+ constructor(body: PublicCloudstateAccessDenied & FreestyleError);
6983
7657
  }
6984
- interface PublicFailedToVerifyDomain {
7658
+ interface PublicRestoreFailed {
6985
7659
  message: string;
6986
7660
  [k: string]: unknown;
6987
7661
  }
6988
- declare class FailedToVerifyDomainError extends Error {
6989
- body: PublicFailedToVerifyDomain & FreestyleError;
7662
+ declare class RestoreFailedError extends Error {
7663
+ body: PublicRestoreFailed & FreestyleError;
6990
7664
  static readonly code: string;
6991
7665
  static readonly statusCode: number;
6992
7666
  static readonly description: string;
6993
- constructor(body: PublicFailedToVerifyDomain & FreestyleError);
7667
+ constructor(body: PublicRestoreFailed & FreestyleError);
6994
7668
  }
6995
- interface PublicVerificationFailed {
7669
+ interface PublicCreateBackupFailed {
6996
7670
  message: string;
6997
7671
  [k: string]: unknown;
6998
7672
  }
6999
- declare class VerificationFailedError extends Error {
7000
- body: PublicVerificationFailed & FreestyleError;
7673
+ declare class CreateBackupFailedError extends Error {
7674
+ body: PublicCreateBackupFailed & FreestyleError;
7001
7675
  static readonly code: string;
7002
7676
  static readonly statusCode: number;
7003
7677
  static readonly description: string;
7004
- constructor(body: PublicVerificationFailed & FreestyleError);
7678
+ constructor(body: PublicCreateBackupFailed & FreestyleError);
7005
7679
  }
7006
- interface PublicFailedToDeleteVerification {
7680
+ interface PublicBackupFailed {
7007
7681
  message: string;
7008
7682
  [k: string]: unknown;
7009
7683
  }
7010
- declare class FailedToDeleteVerificationError extends Error {
7011
- body: PublicFailedToDeleteVerification & FreestyleError;
7684
+ declare class BackupFailedError extends Error {
7685
+ body: PublicBackupFailed & FreestyleError;
7012
7686
  static readonly code: string;
7013
7687
  static readonly statusCode: number;
7014
7688
  static readonly description: string;
7015
- constructor(body: PublicFailedToDeleteVerification & FreestyleError);
7689
+ constructor(body: PublicBackupFailed & FreestyleError);
7016
7690
  }
7017
- interface PublicVerificationNotFound {
7018
- domain: string;
7691
+ interface PublicDeploymentFailed {
7692
+ message: string;
7019
7693
  [k: string]: unknown;
7020
7694
  }
7021
- declare class VerificationNotFoundError extends Error {
7022
- body: PublicVerificationNotFound & FreestyleError;
7695
+ declare class DeploymentFailedError extends Error {
7696
+ body: PublicDeploymentFailed & FreestyleError;
7023
7697
  static readonly code: string;
7024
7698
  static readonly statusCode: number;
7025
7699
  static readonly description: string;
7026
- constructor(body: PublicVerificationNotFound & FreestyleError);
7700
+ constructor(body: PublicDeploymentFailed & FreestyleError);
7027
7701
  }
7028
- interface PublicFailedToCreateVerificationCode {
7702
+ interface PublicInvalidDeploymentRequest {
7029
7703
  message: string;
7030
7704
  [k: string]: unknown;
7031
7705
  }
7032
- declare class FailedToCreateVerificationCodeError extends Error {
7033
- body: PublicFailedToCreateVerificationCode & FreestyleError;
7706
+ declare class InvalidDeploymentRequestError extends Error {
7707
+ body: PublicInvalidDeploymentRequest & FreestyleError;
7034
7708
  static readonly code: string;
7035
7709
  static readonly statusCode: number;
7036
7710
  static readonly description: string;
7037
- constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
7711
+ constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
7038
7712
  }
7039
- interface PublicInvalidDomain {
7040
- domain: string;
7713
+ interface PublicProjectNotFound {
7714
+ projectId: string;
7041
7715
  [k: string]: unknown;
7042
7716
  }
7043
- declare class InvalidDomainError extends Error {
7044
- body: PublicInvalidDomain & FreestyleError;
7717
+ declare class ProjectNotFoundError extends Error {
7718
+ body: PublicProjectNotFound & FreestyleError;
7045
7719
  static readonly code: string;
7046
7720
  static readonly statusCode: number;
7047
7721
  static readonly description: string;
7048
- constructor(body: PublicInvalidDomain & FreestyleError);
7722
+ constructor(body: PublicProjectNotFound & FreestyleError);
7049
7723
  }
7050
- declare class DomainOwnershipVerificationFailedError extends Error {
7724
+ declare class PermissionAlreadyExistsError extends Error {
7051
7725
  body: unknown & FreestyleError;
7052
7726
  static readonly code: string;
7053
7727
  static readonly statusCode: number;
7054
7728
  static readonly description: string;
7055
7729
  constructor(body: unknown & FreestyleError);
7056
7730
  }
7057
- interface PublicErrorDeletingRecord {
7058
- domain: string;
7059
- name: string;
7731
+ interface PublicListTokensFailed {
7060
7732
  message: string;
7061
7733
  [k: string]: unknown;
7062
7734
  }
7063
- declare class ErrorDeletingRecordError extends Error {
7064
- body: PublicErrorDeletingRecord & FreestyleError;
7065
- static readonly code: string;
7066
- static readonly statusCode: number;
7067
- static readonly description: string;
7068
- constructor(body: PublicErrorDeletingRecord & FreestyleError);
7069
- }
7070
- interface PublicRecordOwnershipError {
7071
- recordId: string;
7072
- accountId: string;
7073
- [k: string]: unknown;
7074
- }
7075
- declare class RecordOwnershipErrorError extends Error {
7076
- body: PublicRecordOwnershipError & FreestyleError;
7735
+ declare class ListTokensFailedError extends Error {
7736
+ body: PublicListTokensFailed & FreestyleError;
7077
7737
  static readonly code: string;
7078
7738
  static readonly statusCode: number;
7079
7739
  static readonly description: string;
7080
- constructor(body: PublicRecordOwnershipError & FreestyleError);
7740
+ constructor(body: PublicListTokensFailed & FreestyleError);
7081
7741
  }
7082
- interface PublicErrorCreatingRecord {
7742
+ interface PublicRevokeTokenFailed {
7083
7743
  message: string;
7084
7744
  [k: string]: unknown;
7085
7745
  }
7086
- declare class ErrorCreatingRecordError extends Error {
7087
- body: PublicErrorCreatingRecord & FreestyleError;
7088
- static readonly code: string;
7089
- static readonly statusCode: number;
7090
- static readonly description: string;
7091
- constructor(body: PublicErrorCreatingRecord & FreestyleError);
7092
- }
7093
- interface PublicDomainOwnershipError {
7094
- domain: string;
7095
- accountId: string;
7096
- [k: string]: unknown;
7097
- }
7098
- declare class DomainOwnershipErrorError extends Error {
7099
- body: PublicDomainOwnershipError & FreestyleError;
7746
+ declare class RevokeTokenFailedError extends Error {
7747
+ body: PublicRevokeTokenFailed & FreestyleError;
7100
7748
  static readonly code: string;
7101
7749
  static readonly statusCode: number;
7102
7750
  static readonly description: string;
7103
- constructor(body: PublicDomainOwnershipError & FreestyleError);
7751
+ constructor(body: PublicRevokeTokenFailed & FreestyleError);
7104
7752
  }
7105
- interface PublicBrowserOperationFailed {
7753
+ interface PublicCreateTokenFailed {
7106
7754
  message: string;
7107
7755
  [k: string]: unknown;
7108
7756
  }
7109
- declare class BrowserOperationFailedError extends Error {
7110
- body: PublicBrowserOperationFailed & FreestyleError;
7757
+ declare class CreateTokenFailedError extends Error {
7758
+ body: PublicCreateTokenFailed & FreestyleError;
7111
7759
  static readonly code: string;
7112
7760
  static readonly statusCode: number;
7113
7761
  static readonly description: string;
7114
- constructor(body: PublicBrowserOperationFailed & FreestyleError);
7762
+ constructor(body: PublicCreateTokenFailed & FreestyleError);
7115
7763
  }
7116
- interface PublicWatchFilesFailed {
7764
+ interface PublicListPermissionsFailed {
7117
7765
  message: string;
7118
7766
  [k: string]: unknown;
7119
7767
  }
7120
- declare class WatchFilesFailedError extends Error {
7121
- body: PublicWatchFilesFailed & FreestyleError;
7768
+ declare class ListPermissionsFailedError extends Error {
7769
+ body: PublicListPermissionsFailed & FreestyleError;
7122
7770
  static readonly code: string;
7123
7771
  static readonly statusCode: number;
7124
7772
  static readonly description: string;
7125
- constructor(body: PublicWatchFilesFailed & FreestyleError);
7773
+ constructor(body: PublicListPermissionsFailed & FreestyleError);
7126
7774
  }
7127
- interface PublicLogsFailed {
7775
+ interface PublicGetPermissionFailed {
7128
7776
  message: string;
7129
7777
  [k: string]: unknown;
7130
7778
  }
7131
- declare class LogsFailedError extends Error {
7132
- body: PublicLogsFailed & FreestyleError;
7779
+ declare class GetPermissionFailedError extends Error {
7780
+ body: PublicGetPermissionFailed & FreestyleError;
7133
7781
  static readonly code: string;
7134
7782
  static readonly statusCode: number;
7135
7783
  static readonly description: string;
7136
- constructor(body: PublicLogsFailed & FreestyleError);
7784
+ constructor(body: PublicGetPermissionFailed & FreestyleError);
7137
7785
  }
7138
- interface PublicStatusFailed {
7786
+ interface PublicUpdatePermissionFailed {
7139
7787
  message: string;
7140
7788
  [k: string]: unknown;
7141
7789
  }
7142
- declare class StatusFailedError extends Error {
7143
- body: PublicStatusFailed & FreestyleError;
7790
+ declare class UpdatePermissionFailedError extends Error {
7791
+ body: PublicUpdatePermissionFailed & FreestyleError;
7144
7792
  static readonly code: string;
7145
7793
  static readonly statusCode: number;
7146
7794
  static readonly description: string;
7147
- constructor(body: PublicStatusFailed & FreestyleError);
7795
+ constructor(body: PublicUpdatePermissionFailed & FreestyleError);
7148
7796
  }
7149
- interface PublicRestartFailed {
7797
+ interface PublicRevokePermissionFailed {
7150
7798
  message: string;
7151
7799
  [k: string]: unknown;
7152
7800
  }
7153
- declare class RestartFailedError extends Error {
7154
- body: PublicRestartFailed & FreestyleError;
7801
+ declare class RevokePermissionFailedError extends Error {
7802
+ body: PublicRevokePermissionFailed & FreestyleError;
7155
7803
  static readonly code: string;
7156
7804
  static readonly statusCode: number;
7157
7805
  static readonly description: string;
7158
- constructor(body: PublicRestartFailed & FreestyleError);
7806
+ constructor(body: PublicRevokePermissionFailed & FreestyleError);
7159
7807
  }
7160
- interface PublicShutdownFailed {
7808
+ interface PublicGrantPermissionFailed {
7161
7809
  message: string;
7162
7810
  [k: string]: unknown;
7163
7811
  }
7164
- declare class ShutdownFailedError extends Error {
7165
- body: PublicShutdownFailed & FreestyleError;
7812
+ declare class GrantPermissionFailedError extends Error {
7813
+ body: PublicGrantPermissionFailed & FreestyleError;
7166
7814
  static readonly code: string;
7167
7815
  static readonly statusCode: number;
7168
7816
  static readonly description: string;
7169
- constructor(body: PublicShutdownFailed & FreestyleError);
7817
+ constructor(body: PublicGrantPermissionFailed & FreestyleError);
7170
7818
  }
7171
- interface PublicCommitFailed {
7819
+ interface PublicListIdentitiesFailed {
7172
7820
  message: string;
7173
7821
  [k: string]: unknown;
7174
7822
  }
7175
- declare class CommitFailedError extends Error {
7176
- body: PublicCommitFailed & FreestyleError;
7823
+ declare class ListIdentitiesFailedError extends Error {
7824
+ body: PublicListIdentitiesFailed & FreestyleError;
7177
7825
  static readonly code: string;
7178
7826
  static readonly statusCode: number;
7179
7827
  static readonly description: string;
7180
- constructor(body: PublicCommitFailed & FreestyleError);
7828
+ constructor(body: PublicListIdentitiesFailed & FreestyleError);
7181
7829
  }
7182
- interface PublicWriteFileFailed {
7830
+ interface PublicDeleteIdentityFailed {
7183
7831
  message: string;
7184
7832
  [k: string]: unknown;
7185
7833
  }
7186
- declare class WriteFileFailedError extends Error {
7187
- body: PublicWriteFileFailed & FreestyleError;
7834
+ declare class DeleteIdentityFailedError extends Error {
7835
+ body: PublicDeleteIdentityFailed & FreestyleError;
7188
7836
  static readonly code: string;
7189
7837
  static readonly statusCode: number;
7190
7838
  static readonly description: string;
7191
- constructor(body: PublicWriteFileFailed & FreestyleError);
7839
+ constructor(body: PublicDeleteIdentityFailed & FreestyleError);
7192
7840
  }
7193
- interface PublicReadFileFailed {
7841
+ interface PublicCreateIdentityFailed {
7194
7842
  message: string;
7195
7843
  [k: string]: unknown;
7196
7844
  }
7197
- declare class ReadFileFailedError extends Error {
7198
- body: PublicReadFileFailed & FreestyleError;
7845
+ declare class CreateIdentityFailedError extends Error {
7846
+ body: PublicCreateIdentityFailed & FreestyleError;
7199
7847
  static readonly code: string;
7200
7848
  static readonly statusCode: number;
7201
7849
  static readonly description: string;
7202
- constructor(body: PublicReadFileFailed & FreestyleError);
7203
- }
7204
- interface PublicExecutionFailed {
7205
- message: string;
7206
- [k: string]: unknown;
7850
+ constructor(body: PublicCreateIdentityFailed & FreestyleError);
7207
7851
  }
7208
- declare class ExecutionFailedError extends Error {
7209
- body: PublicExecutionFailed & FreestyleError;
7852
+ declare class VmPermissionNotFoundError extends Error {
7853
+ body: unknown & FreestyleError;
7210
7854
  static readonly code: string;
7211
7855
  static readonly statusCode: number;
7212
7856
  static readonly description: string;
7213
- constructor(body: PublicExecutionFailed & FreestyleError);
7214
- }
7215
- interface PublicRequestFailed {
7216
- message: string;
7217
- [k: string]: unknown;
7857
+ constructor(body: unknown & FreestyleError);
7218
7858
  }
7219
- declare class RequestFailedError extends Error {
7220
- body: PublicRequestFailed & FreestyleError;
7859
+ declare class PermissionNotFoundError extends Error {
7860
+ body: unknown & FreestyleError;
7221
7861
  static readonly code: string;
7222
7862
  static readonly statusCode: number;
7223
7863
  static readonly description: string;
7224
- constructor(body: PublicRequestFailed & FreestyleError);
7225
- }
7226
- interface PublicDevServerFileNotFound {
7227
- path: string;
7228
- [k: string]: unknown;
7864
+ constructor(body: unknown & FreestyleError);
7229
7865
  }
7230
- declare class DevServerFileNotFoundError extends Error {
7231
- body: PublicDevServerFileNotFound & FreestyleError;
7866
+ declare class VmAccessDeniedError extends Error {
7867
+ body: unknown & FreestyleError;
7232
7868
  static readonly code: string;
7233
7869
  static readonly statusCode: number;
7234
7870
  static readonly description: string;
7235
- constructor(body: PublicDevServerFileNotFound & FreestyleError);
7236
- }
7237
- interface PublicDevServerInvalidRequest {
7238
- message: string;
7239
- [k: string]: unknown;
7871
+ constructor(body: unknown & FreestyleError);
7240
7872
  }
7241
- declare class DevServerInvalidRequestError extends Error {
7242
- body: PublicDevServerInvalidRequest & FreestyleError;
7873
+ declare class GitRepositoryAccessDeniedError extends Error {
7874
+ body: unknown & FreestyleError;
7243
7875
  static readonly code: string;
7244
7876
  static readonly statusCode: number;
7245
7877
  static readonly description: string;
7246
- constructor(body: PublicDevServerInvalidRequest & FreestyleError);
7247
- }
7248
- interface PublicDevServerNotFound {
7249
- serverId: string;
7250
- [k: string]: unknown;
7878
+ constructor(body: unknown & FreestyleError);
7251
7879
  }
7252
- declare class DevServerNotFoundError extends Error {
7253
- body: PublicDevServerNotFound & FreestyleError;
7880
+ declare class GitRepositoryNotFoundError extends Error {
7881
+ body: unknown & FreestyleError;
7254
7882
  static readonly code: string;
7255
7883
  static readonly statusCode: number;
7256
7884
  static readonly description: string;
7257
- constructor(body: PublicDevServerNotFound & FreestyleError);
7258
- }
7259
- interface PublicBuildFailed {
7260
- logs: string;
7261
- vmId: string;
7262
- [k: string]: unknown;
7885
+ constructor(body: unknown & FreestyleError);
7263
7886
  }
7264
- declare class BuildFailedError extends Error {
7265
- body: PublicBuildFailed & FreestyleError;
7887
+ declare class CannotDeleteManagedIdentityError extends Error {
7888
+ body: unknown & FreestyleError;
7266
7889
  static readonly code: string;
7267
7890
  static readonly statusCode: number;
7268
7891
  static readonly description: string;
7269
- constructor(body: PublicBuildFailed & FreestyleError);
7892
+ constructor(body: unknown & FreestyleError);
7270
7893
  }
7271
- declare class ServerDeploymentFailedError extends Error {
7894
+ declare class CannotModifyManagedIdentityError extends Error {
7272
7895
  body: unknown & FreestyleError;
7273
7896
  static readonly code: string;
7274
7897
  static readonly statusCode: number;
7275
7898
  static readonly description: string;
7276
7899
  constructor(body: unknown & FreestyleError);
7277
7900
  }
7278
- interface PublicLockfileError {
7279
- message: string;
7280
- [k: string]: unknown;
7281
- }
7282
- declare class LockfileErrorError extends Error {
7283
- body: PublicLockfileError & FreestyleError;
7901
+ declare class IdentityAccessDeniedError extends Error {
7902
+ body: unknown & FreestyleError;
7284
7903
  static readonly code: string;
7285
7904
  static readonly statusCode: number;
7286
7905
  static readonly description: string;
7287
- constructor(body: PublicLockfileError & FreestyleError);
7906
+ constructor(body: unknown & FreestyleError);
7288
7907
  }
7289
- declare class UploadErrorError extends Error {
7908
+ declare class IdentityNotFoundError extends Error {
7290
7909
  body: unknown & FreestyleError;
7291
7910
  static readonly code: string;
7292
7911
  static readonly statusCode: number;
7293
7912
  static readonly description: string;
7294
7913
  constructor(body: unknown & FreestyleError);
7295
7914
  }
7296
- interface PublicDomainMappingError {
7297
- domain: string;
7915
+ interface UnauthorizedErrorPublic {
7916
+ route: string;
7917
+ reason?: string | null;
7298
7918
  [k: string]: unknown;
7299
7919
  }
7300
- declare class DomainMappingErrorError extends Error {
7301
- body: PublicDomainMappingError & FreestyleError;
7920
+ declare class UnauthorizedErrorError extends Error {
7921
+ body: UnauthorizedErrorPublic & FreestyleError;
7302
7922
  static readonly code: string;
7303
7923
  static readonly statusCode: number;
7304
7924
  static readonly description: string;
7305
- constructor(body: PublicDomainMappingError & FreestyleError);
7925
+ constructor(body: UnauthorizedErrorPublic & FreestyleError);
7306
7926
  }
7307
- interface PublicCertificateProvisioningError {
7308
- domain: string;
7309
- reason?: string | null;
7927
+ interface PublicObservabilityDatabaseError {
7928
+ message: string;
7310
7929
  [k: string]: unknown;
7311
7930
  }
7312
- declare class CertificateProvisioningErrorError extends Error {
7313
- body: PublicCertificateProvisioningError & FreestyleError;
7314
- static readonly code: string;
7315
- static readonly statusCode: number;
7316
- static readonly description: string;
7317
- constructor(body: PublicCertificateProvisioningError & FreestyleError);
7318
- }
7319
- declare class NoEntrypointFoundError extends Error {
7320
- body: unknown & FreestyleError;
7931
+ declare class ObservabilityDatabaseErrorError extends Error {
7932
+ body: PublicObservabilityDatabaseError & FreestyleError;
7321
7933
  static readonly code: string;
7322
7934
  static readonly statusCode: number;
7323
7935
  static readonly description: string;
7324
- constructor(body: unknown & FreestyleError);
7936
+ constructor(body: PublicObservabilityDatabaseError & FreestyleError);
7325
7937
  }
7326
- interface PublicEntrypointNotFound {
7327
- entrypoint: string;
7938
+ interface PublicObservabilityAccessDenied {
7939
+ deploymentId: string;
7328
7940
  [k: string]: unknown;
7329
7941
  }
7330
- declare class EntrypointNotFoundError extends Error {
7331
- body: PublicEntrypointNotFound & FreestyleError;
7942
+ declare class ObservabilityAccessDeniedError extends Error {
7943
+ body: PublicObservabilityAccessDenied & FreestyleError;
7332
7944
  static readonly code: string;
7333
7945
  static readonly statusCode: number;
7334
7946
  static readonly description: string;
7335
- constructor(body: PublicEntrypointNotFound & FreestyleError);
7947
+ constructor(body: PublicObservabilityAccessDenied & FreestyleError);
7336
7948
  }
7337
- interface PublicNoDomainOwnership {
7338
- domain: string;
7949
+ interface PublicParseLogsFailed {
7950
+ message: string;
7339
7951
  [k: string]: unknown;
7340
7952
  }
7341
- declare class NoDomainOwnershipError extends Error {
7342
- body: PublicNoDomainOwnership & FreestyleError;
7953
+ declare class ParseLogsFailedError extends Error {
7954
+ body: PublicParseLogsFailed & FreestyleError;
7343
7955
  static readonly code: string;
7344
7956
  static readonly statusCode: number;
7345
7957
  static readonly description: string;
7346
- constructor(body: PublicNoDomainOwnership & FreestyleError);
7958
+ constructor(body: PublicParseLogsFailed & FreestyleError);
7347
7959
  }
7348
- interface PublicInvalidDomains {
7349
- domains: string[];
7960
+ interface PublicRetrieveLogsFailed {
7961
+ message: string;
7350
7962
  [k: string]: unknown;
7351
7963
  }
7352
- declare class InvalidDomainsError extends Error {
7353
- body: PublicInvalidDomains & FreestyleError;
7964
+ declare class RetrieveLogsFailedError extends Error {
7965
+ body: PublicRetrieveLogsFailed & FreestyleError;
7354
7966
  static readonly code: string;
7355
7967
  static readonly statusCode: number;
7356
7968
  static readonly description: string;
7357
- constructor(body: PublicInvalidDomains & FreestyleError);
7969
+ constructor(body: PublicRetrieveLogsFailed & FreestyleError);
7358
7970
  }
7359
- interface PublicWebDeploymentBadRequest {
7971
+ interface PublicInvalidQuery {
7360
7972
  message: string;
7361
7973
  [k: string]: unknown;
7362
7974
  }
7363
- declare class WebDeploymentBadRequestError extends Error {
7364
- body: PublicWebDeploymentBadRequest & FreestyleError;
7975
+ declare class InvalidQueryError extends Error {
7976
+ body: PublicInvalidQuery & FreestyleError;
7365
7977
  static readonly code: string;
7366
7978
  static readonly statusCode: number;
7367
7979
  static readonly description: string;
7368
- constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
7369
- }
7370
- declare class DeploymentNotFoundError extends Error {
7371
- body: unknown & FreestyleError;
7372
- static readonly code: string;
7373
- static readonly statusCode: number;
7374
- static readonly description: string;
7375
- constructor(body: unknown & FreestyleError);
7980
+ constructor(body: PublicInvalidQuery & FreestyleError);
7376
7981
  }
7377
- interface PublicDatabaseError {
7378
- message: string;
7982
+ interface PublicLogsNotFound {
7983
+ deploymentId: string;
7379
7984
  [k: string]: unknown;
7380
7985
  }
7381
- declare class DatabaseErrorError extends Error {
7382
- body: PublicDatabaseError & FreestyleError;
7986
+ declare class LogsNotFoundError extends Error {
7987
+ body: PublicLogsNotFound & FreestyleError;
7383
7988
  static readonly code: string;
7384
7989
  static readonly statusCode: number;
7385
7990
  static readonly description: string;
7386
- constructor(body: PublicDatabaseError & FreestyleError);
7991
+ constructor(body: PublicLogsNotFound & FreestyleError);
7387
7992
  }
7388
7993
  interface PublicTriggerError {
7389
7994
  message: string;
@@ -7590,196 +8195,317 @@ declare class RepositoryNotFoundError extends Error {
7590
8195
  static readonly description: string;
7591
8196
  constructor(body: PublicRepositoryNotFound & FreestyleError);
7592
8197
  }
7593
- interface PublicDomainAlreadyExists {
7594
- domain: string;
8198
+ interface PublicFailedToProvisionCertificate {
8199
+ message: string;
7595
8200
  [k: string]: unknown;
7596
8201
  }
7597
- declare class DomainAlreadyExistsError extends Error {
7598
- body: PublicDomainAlreadyExists & FreestyleError;
8202
+ declare class FailedToProvisionCertificateError extends Error {
8203
+ body: PublicFailedToProvisionCertificate & FreestyleError;
7599
8204
  static readonly code: string;
7600
8205
  static readonly statusCode: number;
7601
8206
  static readonly description: string;
7602
- constructor(body: PublicDomainAlreadyExists & FreestyleError);
8207
+ constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
7603
8208
  }
7604
- interface PublicFailedToInsertOwnership {
8209
+ interface PublicFailedToInsertDomainMapping {
7605
8210
  message: string;
7606
8211
  [k: string]: unknown;
7607
8212
  }
7608
- declare class FailedToInsertOwnershipError extends Error {
7609
- body: PublicFailedToInsertOwnership & FreestyleError;
8213
+ declare class FailedToInsertDomainMappingError extends Error {
8214
+ body: PublicFailedToInsertDomainMapping & FreestyleError;
7610
8215
  static readonly code: string;
7611
8216
  static readonly statusCode: number;
7612
8217
  static readonly description: string;
7613
- constructor(body: PublicFailedToInsertOwnership & FreestyleError);
8218
+ constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
7614
8219
  }
7615
- interface PublicFailedRemoveDomainMapping {
8220
+ interface PublicPermissionDenied {
7616
8221
  message: string;
7617
8222
  [k: string]: unknown;
7618
8223
  }
7619
- declare class FailedRemoveDomainMappingError extends Error {
7620
- body: PublicFailedRemoveDomainMapping & FreestyleError;
8224
+ declare class PermissionDeniedError extends Error {
8225
+ body: PublicPermissionDenied & FreestyleError;
7621
8226
  static readonly code: string;
7622
8227
  static readonly statusCode: number;
7623
8228
  static readonly description: string;
7624
- constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
8229
+ constructor(body: PublicPermissionDenied & FreestyleError);
7625
8230
  }
7626
- interface PublicFailedPermissionsCheck {
7627
- domain: string;
8231
+ interface PublicFailedToCheckPermissions {
8232
+ message: string;
7628
8233
  [k: string]: unknown;
7629
8234
  }
7630
- declare class FailedPermissionsCheckError extends Error {
7631
- body: PublicFailedPermissionsCheck & FreestyleError;
8235
+ declare class FailedToCheckPermissionsError extends Error {
8236
+ body: PublicFailedToCheckPermissions & FreestyleError;
7632
8237
  static readonly code: string;
7633
8238
  static readonly statusCode: number;
7634
8239
  static readonly description: string;
7635
- constructor(body: PublicFailedPermissionsCheck & FreestyleError);
8240
+ constructor(body: PublicFailedToCheckPermissions & FreestyleError);
7636
8241
  }
7637
- interface PublicFailedToCheckDomainMappingPermissions {
8242
+ interface PublicFailedToListDomains {
7638
8243
  message: string;
7639
8244
  [k: string]: unknown;
7640
8245
  }
7641
- declare class FailedToCheckDomainMappingPermissionsError extends Error {
7642
- body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
8246
+ declare class FailedToListDomainsError extends Error {
8247
+ body: PublicFailedToListDomains & FreestyleError;
7643
8248
  static readonly code: string;
7644
8249
  static readonly statusCode: number;
7645
8250
  static readonly description: string;
7646
- constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
8251
+ constructor(body: PublicFailedToListDomains & FreestyleError);
7647
8252
  }
7648
- interface PublicCloudstateInternalError {
8253
+ interface PublicFailedToListVerifications {
7649
8254
  message: string;
7650
8255
  [k: string]: unknown;
7651
8256
  }
7652
- declare class CloudstateInternalErrorError extends Error {
7653
- body: PublicCloudstateInternalError & FreestyleError;
8257
+ declare class FailedToListVerificationsError extends Error {
8258
+ body: PublicFailedToListVerifications & FreestyleError;
7654
8259
  static readonly code: string;
7655
8260
  static readonly statusCode: number;
7656
8261
  static readonly description: string;
7657
- constructor(body: PublicCloudstateInternalError & FreestyleError);
8262
+ constructor(body: PublicFailedToListVerifications & FreestyleError);
7658
8263
  }
7659
- interface PublicCloudstateDatabaseError {
8264
+ interface PublicFailedToVerifyDomain {
7660
8265
  message: string;
7661
8266
  [k: string]: unknown;
7662
8267
  }
7663
- declare class CloudstateDatabaseErrorError extends Error {
7664
- body: PublicCloudstateDatabaseError & FreestyleError;
8268
+ declare class FailedToVerifyDomainError extends Error {
8269
+ body: PublicFailedToVerifyDomain & FreestyleError;
7665
8270
  static readonly code: string;
7666
8271
  static readonly statusCode: number;
7667
8272
  static readonly description: string;
7668
- constructor(body: PublicCloudstateDatabaseError & FreestyleError);
8273
+ constructor(body: PublicFailedToVerifyDomain & FreestyleError);
7669
8274
  }
7670
- interface PublicCloudstateAccessDenied {
7671
- projectId: string;
8275
+ interface PublicVerificationFailed {
8276
+ message: string;
7672
8277
  [k: string]: unknown;
7673
8278
  }
7674
- declare class CloudstateAccessDeniedError extends Error {
7675
- body: PublicCloudstateAccessDenied & FreestyleError;
8279
+ declare class VerificationFailedError extends Error {
8280
+ body: PublicVerificationFailed & FreestyleError;
7676
8281
  static readonly code: string;
7677
8282
  static readonly statusCode: number;
7678
8283
  static readonly description: string;
7679
- constructor(body: PublicCloudstateAccessDenied & FreestyleError);
8284
+ constructor(body: PublicVerificationFailed & FreestyleError);
7680
8285
  }
7681
- interface PublicRestoreFailed {
8286
+ interface PublicFailedToDeleteVerification {
7682
8287
  message: string;
7683
8288
  [k: string]: unknown;
7684
8289
  }
7685
- declare class RestoreFailedError extends Error {
7686
- body: PublicRestoreFailed & FreestyleError;
8290
+ declare class FailedToDeleteVerificationError extends Error {
8291
+ body: PublicFailedToDeleteVerification & FreestyleError;
7687
8292
  static readonly code: string;
7688
8293
  static readonly statusCode: number;
7689
8294
  static readonly description: string;
7690
- constructor(body: PublicRestoreFailed & FreestyleError);
8295
+ constructor(body: PublicFailedToDeleteVerification & FreestyleError);
7691
8296
  }
7692
- interface PublicCreateBackupFailed {
7693
- message: string;
8297
+ interface PublicVerificationNotFound {
8298
+ domain: string;
7694
8299
  [k: string]: unknown;
7695
8300
  }
7696
- declare class CreateBackupFailedError extends Error {
7697
- body: PublicCreateBackupFailed & FreestyleError;
8301
+ declare class VerificationNotFoundError extends Error {
8302
+ body: PublicVerificationNotFound & FreestyleError;
7698
8303
  static readonly code: string;
7699
8304
  static readonly statusCode: number;
7700
8305
  static readonly description: string;
7701
- constructor(body: PublicCreateBackupFailed & FreestyleError);
8306
+ constructor(body: PublicVerificationNotFound & FreestyleError);
7702
8307
  }
7703
- interface PublicBackupFailed {
8308
+ interface PublicFailedToCreateVerificationCode {
7704
8309
  message: string;
7705
8310
  [k: string]: unknown;
7706
8311
  }
7707
- declare class BackupFailedError extends Error {
7708
- body: PublicBackupFailed & FreestyleError;
8312
+ declare class FailedToCreateVerificationCodeError extends Error {
8313
+ body: PublicFailedToCreateVerificationCode & FreestyleError;
7709
8314
  static readonly code: string;
7710
8315
  static readonly statusCode: number;
7711
8316
  static readonly description: string;
7712
- constructor(body: PublicBackupFailed & FreestyleError);
8317
+ constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
7713
8318
  }
7714
- interface PublicDeploymentFailed {
7715
- message: string;
8319
+ interface PublicInvalidDomain {
8320
+ domain: string;
7716
8321
  [k: string]: unknown;
7717
8322
  }
7718
- declare class DeploymentFailedError extends Error {
7719
- body: PublicDeploymentFailed & FreestyleError;
8323
+ declare class InvalidDomainError extends Error {
8324
+ body: PublicInvalidDomain & FreestyleError;
7720
8325
  static readonly code: string;
7721
8326
  static readonly statusCode: number;
7722
8327
  static readonly description: string;
7723
- constructor(body: PublicDeploymentFailed & FreestyleError);
8328
+ constructor(body: PublicInvalidDomain & FreestyleError);
7724
8329
  }
7725
- interface PublicInvalidDeploymentRequest {
8330
+ interface PublicBuildFailed {
8331
+ logs: string;
8332
+ vmId: string;
8333
+ [k: string]: unknown;
8334
+ }
8335
+ declare class BuildFailedError extends Error {
8336
+ body: PublicBuildFailed & FreestyleError;
8337
+ static readonly code: string;
8338
+ static readonly statusCode: number;
8339
+ static readonly description: string;
8340
+ constructor(body: PublicBuildFailed & FreestyleError);
8341
+ }
8342
+ declare class ServerDeploymentFailedError extends Error {
8343
+ body: unknown & FreestyleError;
8344
+ static readonly code: string;
8345
+ static readonly statusCode: number;
8346
+ static readonly description: string;
8347
+ constructor(body: unknown & FreestyleError);
8348
+ }
8349
+ interface PublicLockfileError {
7726
8350
  message: string;
7727
8351
  [k: string]: unknown;
7728
8352
  }
7729
- declare class InvalidDeploymentRequestError extends Error {
7730
- body: PublicInvalidDeploymentRequest & FreestyleError;
8353
+ declare class LockfileErrorError extends Error {
8354
+ body: PublicLockfileError & FreestyleError;
7731
8355
  static readonly code: string;
7732
8356
  static readonly statusCode: number;
7733
8357
  static readonly description: string;
7734
- constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
8358
+ constructor(body: PublicLockfileError & FreestyleError);
7735
8359
  }
7736
- interface PublicProjectNotFound {
7737
- projectId: string;
8360
+ declare class UploadErrorError extends Error {
8361
+ body: unknown & FreestyleError;
8362
+ static readonly code: string;
8363
+ static readonly statusCode: number;
8364
+ static readonly description: string;
8365
+ constructor(body: unknown & FreestyleError);
8366
+ }
8367
+ interface PublicDomainMappingError {
8368
+ domain: string;
7738
8369
  [k: string]: unknown;
7739
8370
  }
7740
- declare class ProjectNotFoundError extends Error {
7741
- body: PublicProjectNotFound & FreestyleError;
8371
+ declare class DomainMappingErrorError extends Error {
8372
+ body: PublicDomainMappingError & FreestyleError;
7742
8373
  static readonly code: string;
7743
8374
  static readonly statusCode: number;
7744
8375
  static readonly description: string;
7745
- constructor(body: PublicProjectNotFound & FreestyleError);
8376
+ constructor(body: PublicDomainMappingError & FreestyleError);
7746
8377
  }
7747
- interface UnauthorizedErrorPublic {
7748
- route: string;
8378
+ interface PublicCertificateProvisioningError {
8379
+ domain: string;
7749
8380
  reason?: string | null;
7750
8381
  [k: string]: unknown;
7751
8382
  }
7752
- declare class UnauthorizedErrorError extends Error {
7753
- body: UnauthorizedErrorPublic & FreestyleError;
8383
+ declare class CertificateProvisioningErrorError extends Error {
8384
+ body: PublicCertificateProvisioningError & FreestyleError;
7754
8385
  static readonly code: string;
7755
8386
  static readonly statusCode: number;
7756
8387
  static readonly description: string;
7757
- constructor(body: UnauthorizedErrorPublic & FreestyleError);
8388
+ constructor(body: PublicCertificateProvisioningError & FreestyleError);
7758
8389
  }
7759
- declare class AnyhowError extends Error {
8390
+ declare class NoEntrypointFoundError extends Error {
8391
+ body: unknown & FreestyleError;
8392
+ static readonly code: string;
8393
+ static readonly statusCode: number;
8394
+ static readonly description: string;
8395
+ constructor(body: unknown & FreestyleError);
8396
+ }
8397
+ interface PublicEntrypointNotFound {
8398
+ entrypoint: string;
8399
+ [k: string]: unknown;
8400
+ }
8401
+ declare class EntrypointNotFoundError extends Error {
8402
+ body: PublicEntrypointNotFound & FreestyleError;
8403
+ static readonly code: string;
8404
+ static readonly statusCode: number;
8405
+ static readonly description: string;
8406
+ constructor(body: PublicEntrypointNotFound & FreestyleError);
8407
+ }
8408
+ interface PublicNoDomainOwnership {
8409
+ domain: string;
8410
+ [k: string]: unknown;
8411
+ }
8412
+ declare class NoDomainOwnershipError extends Error {
8413
+ body: PublicNoDomainOwnership & FreestyleError;
8414
+ static readonly code: string;
8415
+ static readonly statusCode: number;
8416
+ static readonly description: string;
8417
+ constructor(body: PublicNoDomainOwnership & FreestyleError);
8418
+ }
8419
+ interface PublicInvalidDomains {
8420
+ domains: string[];
8421
+ [k: string]: unknown;
8422
+ }
8423
+ declare class InvalidDomainsError extends Error {
8424
+ body: PublicInvalidDomains & FreestyleError;
8425
+ static readonly code: string;
8426
+ static readonly statusCode: number;
8427
+ static readonly description: string;
8428
+ constructor(body: PublicInvalidDomains & FreestyleError);
8429
+ }
8430
+ interface PublicWebDeploymentBadRequest {
8431
+ message: string;
8432
+ [k: string]: unknown;
8433
+ }
8434
+ declare class WebDeploymentBadRequestError extends Error {
8435
+ body: PublicWebDeploymentBadRequest & FreestyleError;
8436
+ static readonly code: string;
8437
+ static readonly statusCode: number;
8438
+ static readonly description: string;
8439
+ constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
8440
+ }
8441
+ declare class DeploymentNotFoundError extends Error {
7760
8442
  body: unknown & FreestyleError;
7761
8443
  static readonly code: string;
7762
8444
  static readonly statusCode: number;
7763
8445
  static readonly description: string;
7764
8446
  constructor(body: unknown & FreestyleError);
7765
8447
  }
8448
+ interface PublicDomainAlreadyExists {
8449
+ domain: string;
8450
+ [k: string]: unknown;
8451
+ }
8452
+ declare class DomainAlreadyExistsError extends Error {
8453
+ body: PublicDomainAlreadyExists & FreestyleError;
8454
+ static readonly code: string;
8455
+ static readonly statusCode: number;
8456
+ static readonly description: string;
8457
+ constructor(body: PublicDomainAlreadyExists & FreestyleError);
8458
+ }
8459
+ interface PublicFailedToInsertOwnership {
8460
+ message: string;
8461
+ [k: string]: unknown;
8462
+ }
8463
+ declare class FailedToInsertOwnershipError extends Error {
8464
+ body: PublicFailedToInsertOwnership & FreestyleError;
8465
+ static readonly code: string;
8466
+ static readonly statusCode: number;
8467
+ static readonly description: string;
8468
+ constructor(body: PublicFailedToInsertOwnership & FreestyleError);
8469
+ }
8470
+ interface PublicFailedRemoveDomainMapping {
8471
+ message: string;
8472
+ [k: string]: unknown;
8473
+ }
8474
+ declare class FailedRemoveDomainMappingError extends Error {
8475
+ body: PublicFailedRemoveDomainMapping & FreestyleError;
8476
+ static readonly code: string;
8477
+ static readonly statusCode: number;
8478
+ static readonly description: string;
8479
+ constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
8480
+ }
8481
+ interface PublicFailedPermissionsCheck {
8482
+ domain: string;
8483
+ [k: string]: unknown;
8484
+ }
8485
+ declare class FailedPermissionsCheckError extends Error {
8486
+ body: PublicFailedPermissionsCheck & FreestyleError;
8487
+ static readonly code: string;
8488
+ static readonly statusCode: number;
8489
+ static readonly description: string;
8490
+ constructor(body: PublicFailedPermissionsCheck & FreestyleError);
8491
+ }
8492
+ interface PublicFailedToCheckDomainMappingPermissions {
8493
+ message: string;
8494
+ [k: string]: unknown;
8495
+ }
8496
+ declare class FailedToCheckDomainMappingPermissionsError extends Error {
8497
+ body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
8498
+ static readonly code: string;
8499
+ static readonly statusCode: number;
8500
+ static readonly description: string;
8501
+ constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
8502
+ }
7766
8503
  declare const FREESTYLE_ERROR_CODE_MAP: {
8504
+ GIT_ERROR: typeof GitErrorError;
8505
+ SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
7767
8506
  INTERNAL_ERROR: typeof InternalErrorError;
7768
- DOCKER_IMPORT_BAD_REQUEST: typeof DockerImportBadRequestError;
7769
- VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
7770
- VM_NOT_RUNNING: typeof VmNotRunningError;
7771
- VM_NOT_FOUND: typeof VmNotFoundError;
7772
- INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
7773
- BAD_REQUEST: typeof BadRequestError;
7774
- INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
7775
- VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
7776
- ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
7777
- NOT_FOUND: typeof NotFoundError;
7778
8507
  FORK_VM_NOT_FOUND: typeof ForkVmNotFoundError;
7779
8508
  CREATE_SNAPSHOT_BAD_REQUEST: typeof CreateSnapshotBadRequestError;
7780
- SNAPSHOT_VM_BAD_REQUEST: typeof SnapshotVmBadRequestError;
7781
- FILE_NOT_FOUND: typeof FileNotFoundError;
7782
- FILES_BAD_REQUEST: typeof FilesBadRequestError;
7783
8509
  VM_DELETED: typeof VmDeletedError;
7784
8510
  REQWEST: typeof ReqwestError;
7785
8511
  FIRECRACKER_PID_NOT_FOUND: typeof FirecrackerPidNotFoundError;
@@ -7789,9 +8515,22 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
7789
8515
  STD_IO: typeof StdIoError;
7790
8516
  VM_CREATE_TMUX_SESSION: typeof VmCreateTmuxSessionError;
7791
8517
  VM_SUBNET_NOT_FOUND: typeof VmSubnetNotFoundError;
8518
+ FILE_NOT_FOUND: typeof FileNotFoundError;
8519
+ FILES_BAD_REQUEST: typeof FilesBadRequestError;
8520
+ VM_MUST_BE_STOPPED: typeof VmMustBeStoppedError;
8521
+ ALREADY_HAS_BASE: typeof AlreadyHasBaseError;
8522
+ NOT_FOUND: typeof NotFoundError;
8523
+ VM_NOT_FOUND_IN_FS: typeof VmNotFoundInFsError;
8524
+ VM_NOT_RUNNING: typeof VmNotRunningError;
8525
+ VM_NOT_FOUND: typeof VmNotFoundError;
8526
+ INTERNAL_FORK_VM_NOT_FOUND: typeof InternalForkVmNotFoundError;
8527
+ BAD_REQUEST: typeof BadRequestError;
8528
+ INTERNAL_VM_NOT_FOUND: typeof InternalVmNotFoundError;
8529
+ DOCKER_IMPORT_BAD_REQUEST: typeof DockerImportBadRequestError;
7792
8530
  VM_OPERATION_DENIED_DURING_TRANSACTION: typeof VmOperationDeniedDuringTransactionError;
7793
8531
  VM_TRANSACTION_ID_MISMATCH: typeof VmTransactionIdMismatchError;
7794
8532
  VM_NOT_IN_TRANSACTION: typeof VmNotInTransactionError;
8533
+ CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
7795
8534
  USER_NOT_FOUND: typeof UserNotFoundError;
7796
8535
  USER_ALREADY_EXISTS: typeof UserAlreadyExistsError;
7797
8536
  VALIDATION_ERROR: typeof ValidationErrorError;
@@ -7808,7 +8547,6 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
7808
8547
  GROUP_NAME_INVALID_CHARS: typeof GroupNameInvalidCharsError;
7809
8548
  GROUP_NAME_TOO_LONG: typeof GroupNameTooLongError;
7810
8549
  GROUP_NAME_EMPTY: typeof GroupNameEmptyError;
7811
- CREATE_VM_BAD_REQUEST: typeof CreateVmBadRequestError;
7812
8550
  WANTED_BY_EMPTY: typeof WantedByEmptyError;
7813
8551
  WORKDIR_EMPTY: typeof WorkdirEmptyError;
7814
8552
  GROUP_EMPTY: typeof GroupEmptyError;
@@ -7825,42 +8563,95 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
7825
8563
  SERVICE_NAME_EMPTY: typeof ServiceNameEmptyError;
7826
8564
  SERVICE_ALREADY_EXISTS: typeof ServiceAlreadyExistsError;
7827
8565
  SERVICE_NOT_FOUND: typeof ServiceNotFoundError;
7828
- WAIT_TIMEOUT: typeof WaitTimeoutError;
7829
- PRE_VERIFY_CHALLENGE_MISMATCH: typeof PreVerifyChallengeMismatchError;
7830
- PRE_VERIFY_FAILED_PARSE: typeof PreVerifyFailedParseError;
7831
- PRE_VERIFY_FAILED_FETCH: typeof PreVerifyFailedFetchError;
7832
- PRE_VERIFY_ROUTE_NOT_FOUND: typeof PreVerifyRouteNotFoundError;
7833
- AUTHORIZATION_NOT_FOUND: typeof AuthorizationNotFoundError;
7834
- ORDER_NOT_FOUND: typeof OrderNotFoundError;
8566
+ INVALID_REQUEST: typeof InvalidRequestError;
8567
+ REPO_NOT_FOUND: typeof RepoNotFoundError;
7835
8568
  INTERNAL: typeof InternalError;
7836
8569
  SIGNING: typeof SigningError;
7837
8570
  INVALID_SIGNATURE: typeof InvalidSignatureError;
7838
8571
  INVALID_PARAMETERS: typeof InvalidParametersError;
7839
8572
  MAX_USES_EXCEEDED: typeof MaxUsesExceededError;
7840
8573
  EXPIRED: typeof ExpiredError;
7841
- TAG_NOT_FOUND: typeof TagNotFoundError;
8574
+ CONFLICT: typeof ConflictError;
7842
8575
  BRANCH_NOT_FOUND: typeof BranchNotFoundError;
7843
- REPO_NOT_FOUND: typeof RepoNotFoundError;
7844
- INVALID_OBJECT_ID: typeof InvalidObjectIdError;
7845
- COMMIT_NOT_FOUND: typeof CommitNotFoundError;
7846
- REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
7847
- PATH_NOT_FOUND: typeof PathNotFoundError;
7848
- INVALID_REQUEST: typeof InvalidRequestError;
7849
- INVALID_REVISION: typeof InvalidRevisionError;
8576
+ SEND_ERROR: typeof SendErrorError;
7850
8577
  FORBIDDEN: typeof ForbiddenError;
7851
- UNAUTHORIZED: typeof UnauthorizedError;
7852
- CONFLICT: typeof ConflictError;
7853
8578
  UNSUPPORTED_TRANSFER: typeof UnsupportedTransferError;
8579
+ REFERENCE_NOT_FOUND: typeof ReferenceNotFoundError;
8580
+ INVALID_RANGE: typeof InvalidRangeError;
8581
+ OFFSET_WITH_SELECTOR: typeof OffsetWithSelectorError;
8582
+ COMMIT_NOT_IN_BRANCH: typeof CommitNotInBranchError;
8583
+ COMMIT_NOT_FOUND: typeof CommitNotFoundError;
7854
8584
  BLOB_NOT_FOUND: typeof BlobNotFoundError;
7855
8585
  TREE_NOT_FOUND: typeof TreeNotFoundError;
8586
+ INVALID_REVISION: typeof InvalidRevisionError;
8587
+ UNAUTHORIZED: typeof UnauthorizedError;
8588
+ TAG_NOT_FOUND: typeof TagNotFoundError;
8589
+ REPO_ALREADY_EXISTS: typeof RepoAlreadyExistsError;
8590
+ GIT_HUB_SYNC_CONFLICT: typeof GitHubSyncConflictError;
8591
+ INVALID_OBJECT_ID: typeof InvalidObjectIdError;
8592
+ SOURCE_IMPORT_CONFLICT: typeof SourceImportConflictError;
8593
+ SOURCE_UNAUTHORIZED: typeof SourceUnauthorizedError;
8594
+ SOURCE_NOT_FOUND: typeof SourceNotFoundError;
8595
+ IMPORT_SUBDIR_NOT_FOUND: typeof ImportSubdirNotFoundError;
8596
+ PACKFILE: typeof PackfileError;
8597
+ PATH_NOT_FOUND: typeof PathNotFoundError;
8598
+ INVALID_SERVICE: typeof InvalidServiceError;
8599
+ EXPECTED_SERVICE: typeof ExpectedServiceError;
8600
+ DATABASE_ERROR: typeof DatabaseErrorError;
8601
+ WAIT_TIMEOUT: typeof WaitTimeoutError;
8602
+ PRE_VERIFY_CHALLENGE_MISMATCH: typeof PreVerifyChallengeMismatchError;
8603
+ PRE_VERIFY_FAILED_PARSE: typeof PreVerifyFailedParseError;
8604
+ PRE_VERIFY_FAILED_FETCH: typeof PreVerifyFailedFetchError;
8605
+ PRE_VERIFY_ROUTE_NOT_FOUND: typeof PreVerifyRouteNotFoundError;
8606
+ AUTHORIZATION_NOT_FOUND: typeof AuthorizationNotFoundError;
8607
+ ORDER_NOT_FOUND: typeof OrderNotFoundError;
7856
8608
  RESIZE_FAILED: typeof ResizeFailedError;
7857
8609
  INTERNAL_RESIZE_VM_NOT_FOUND: typeof InternalResizeVmNotFoundError;
7858
- OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
7859
- OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
7860
- PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
7861
- RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
7862
- INVALID_QUERY: typeof InvalidQueryError;
7863
- LOGS_NOT_FOUND: typeof LogsNotFoundError;
8610
+ DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
8611
+ ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
8612
+ RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
8613
+ ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
8614
+ DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
8615
+ BROWSER_OPERATION_FAILED: typeof BrowserOperationFailedError;
8616
+ WATCH_FILES_FAILED: typeof WatchFilesFailedError;
8617
+ LOGS_FAILED: typeof LogsFailedError;
8618
+ STATUS_FAILED: typeof StatusFailedError;
8619
+ RESTART_FAILED: typeof RestartFailedError;
8620
+ SHUTDOWN_FAILED: typeof ShutdownFailedError;
8621
+ COMMIT_FAILED: typeof CommitFailedError;
8622
+ WRITE_FILE_FAILED: typeof WriteFileFailedError;
8623
+ READ_FILE_FAILED: typeof ReadFileFailedError;
8624
+ EXECUTION_FAILED: typeof ExecutionFailedError;
8625
+ REQUEST_FAILED: typeof RequestFailedError;
8626
+ DEV_SERVER_FILE_NOT_FOUND: typeof DevServerFileNotFoundError;
8627
+ DEV_SERVER_INVALID_REQUEST: typeof DevServerInvalidRequestError;
8628
+ DEV_SERVER_NOT_FOUND: typeof DevServerNotFoundError;
8629
+ EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
8630
+ EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
8631
+ LIST_RUNS_FAILED: typeof ListRunsFailedError;
8632
+ EXECUTION_ERROR: typeof ExecutionErrorError;
8633
+ CONNECTION_FAILED: typeof ConnectionFailedError;
8634
+ METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
8635
+ NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
8636
+ NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
8637
+ LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
8638
+ WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
8639
+ DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
8640
+ NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
8641
+ LOGGING_FAILED: typeof LoggingFailedError;
8642
+ RUN_NOT_FOUND: typeof RunNotFoundError;
8643
+ EMPTY_TAG: typeof EmptyTagError;
8644
+ ANYHOW: typeof AnyhowError;
8645
+ BRANCH_NAME_EMPTY: typeof BranchNameEmptyError;
8646
+ CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
8647
+ CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
8648
+ CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
8649
+ RESTORE_FAILED: typeof RestoreFailedError;
8650
+ CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
8651
+ BACKUP_FAILED: typeof BackupFailedError;
8652
+ DEPLOYMENT_FAILED: typeof DeploymentFailedError;
8653
+ INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
8654
+ PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
7864
8655
  PERMISSION_ALREADY_EXISTS: typeof PermissionAlreadyExistsError;
7865
8656
  LIST_TOKENS_FAILED: typeof ListTokensFailedError;
7866
8657
  REVOKE_TOKEN_FAILED: typeof RevokeTokenFailedError;
@@ -7882,64 +8673,13 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
7882
8673
  CANNOT_MODIFY_MANAGED_IDENTITY: typeof CannotModifyManagedIdentityError;
7883
8674
  IDENTITY_ACCESS_DENIED: typeof IdentityAccessDeniedError;
7884
8675
  IDENTITY_NOT_FOUND: typeof IdentityNotFoundError;
7885
- EXECUTE_INTERNAL_ERROR: typeof ExecuteInternalErrorError;
7886
- EXECUTE_ACCESS_DENIED: typeof ExecuteAccessDeniedError;
7887
- LIST_RUNS_FAILED: typeof ListRunsFailedError;
7888
- EXECUTION_ERROR: typeof ExecutionErrorError;
7889
- CONNECTION_FAILED: typeof ConnectionFailedError;
7890
- METADATA_WRITE_FAILED: typeof MetadataWriteFailedError;
7891
- NODE_MODULES_INSTALL_FAILED: typeof NodeModulesInstallFailedError;
7892
- NODE_MODULES_DOWNLOAD_FAILED: typeof NodeModulesDownloadFailedError;
7893
- LOCK_GENERATION_FAILED: typeof LockGenerationFailedError;
7894
- WRITE_SCRIPT_FAILED: typeof WriteScriptFailedError;
7895
- DIRECTORY_CREATION_FAILED: typeof DirectoryCreationFailedError;
7896
- NETWORK_PERMISSIONS_FAILED: typeof NetworkPermissionsFailedError;
7897
- LOGGING_FAILED: typeof LoggingFailedError;
7898
- RUN_NOT_FOUND: typeof RunNotFoundError;
7899
- FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
7900
- FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
7901
- PERMISSION_DENIED: typeof PermissionDeniedError;
7902
- FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
7903
- FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
7904
- FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
7905
- FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
7906
- VERIFICATION_FAILED: typeof VerificationFailedError;
7907
- FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
7908
- VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
7909
- FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
7910
- INVALID_DOMAIN: typeof InvalidDomainError;
7911
- DOMAIN_OWNERSHIP_VERIFICATION_FAILED: typeof DomainOwnershipVerificationFailedError;
7912
- ERROR_DELETING_RECORD: typeof ErrorDeletingRecordError;
7913
- RECORD_OWNERSHIP_ERROR: typeof RecordOwnershipErrorError;
7914
- ERROR_CREATING_RECORD: typeof ErrorCreatingRecordError;
7915
- DOMAIN_OWNERSHIP_ERROR: typeof DomainOwnershipErrorError;
7916
- BROWSER_OPERATION_FAILED: typeof BrowserOperationFailedError;
7917
- WATCH_FILES_FAILED: typeof WatchFilesFailedError;
7918
- LOGS_FAILED: typeof LogsFailedError;
7919
- STATUS_FAILED: typeof StatusFailedError;
7920
- RESTART_FAILED: typeof RestartFailedError;
7921
- SHUTDOWN_FAILED: typeof ShutdownFailedError;
7922
- COMMIT_FAILED: typeof CommitFailedError;
7923
- WRITE_FILE_FAILED: typeof WriteFileFailedError;
7924
- READ_FILE_FAILED: typeof ReadFileFailedError;
7925
- EXECUTION_FAILED: typeof ExecutionFailedError;
7926
- REQUEST_FAILED: typeof RequestFailedError;
7927
- DEV_SERVER_FILE_NOT_FOUND: typeof DevServerFileNotFoundError;
7928
- DEV_SERVER_INVALID_REQUEST: typeof DevServerInvalidRequestError;
7929
- DEV_SERVER_NOT_FOUND: typeof DevServerNotFoundError;
7930
- BUILD_FAILED: typeof BuildFailedError;
7931
- SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
7932
- LOCKFILE_ERROR: typeof LockfileErrorError;
7933
- UPLOAD_ERROR: typeof UploadErrorError;
7934
- DOMAIN_MAPPING_ERROR: typeof DomainMappingErrorError;
7935
- CERTIFICATE_PROVISIONING_ERROR: typeof CertificateProvisioningErrorError;
7936
- NO_ENTRYPOINT_FOUND: typeof NoEntrypointFoundError;
7937
- ENTRYPOINT_NOT_FOUND: typeof EntrypointNotFoundError;
7938
- NO_DOMAIN_OWNERSHIP: typeof NoDomainOwnershipError;
7939
- INVALID_DOMAINS: typeof InvalidDomainsError;
7940
- WEB_DEPLOYMENT_BAD_REQUEST: typeof WebDeploymentBadRequestError;
7941
- DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
7942
- DATABASE_ERROR: typeof DatabaseErrorError;
8676
+ UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
8677
+ OBSERVABILITY_DATABASE_ERROR: typeof ObservabilityDatabaseErrorError;
8678
+ OBSERVABILITY_ACCESS_DENIED: typeof ObservabilityAccessDeniedError;
8679
+ PARSE_LOGS_FAILED: typeof ParseLogsFailedError;
8680
+ RETRIEVE_LOGS_FAILED: typeof RetrieveLogsFailedError;
8681
+ INVALID_QUERY: typeof InvalidQueryError;
8682
+ LOGS_NOT_FOUND: typeof LogsNotFoundError;
7943
8683
  TRIGGER_ERROR: typeof TriggerErrorError;
7944
8684
  TOKEN_ERROR: typeof TokenErrorError;
7945
8685
  PERMISSION_ERROR: typeof PermissionErrorError;
@@ -7959,22 +8699,35 @@ declare const FREESTYLE_ERROR_CODE_MAP: {
7959
8699
  SERIALIZATION_ERROR: typeof SerializationErrorError;
7960
8700
  GIT_INVALID_REQUEST: typeof GitInvalidRequestError;
7961
8701
  REPOSITORY_NOT_FOUND: typeof RepositoryNotFoundError;
8702
+ FAILED_TO_PROVISION_CERTIFICATE: typeof FailedToProvisionCertificateError;
8703
+ FAILED_TO_INSERT_DOMAIN_MAPPING: typeof FailedToInsertDomainMappingError;
8704
+ PERMISSION_DENIED: typeof PermissionDeniedError;
8705
+ FAILED_TO_CHECK_PERMISSIONS: typeof FailedToCheckPermissionsError;
8706
+ FAILED_TO_LIST_DOMAINS: typeof FailedToListDomainsError;
8707
+ FAILED_TO_LIST_VERIFICATIONS: typeof FailedToListVerificationsError;
8708
+ FAILED_TO_VERIFY_DOMAIN: typeof FailedToVerifyDomainError;
8709
+ VERIFICATION_FAILED: typeof VerificationFailedError;
8710
+ FAILED_TO_DELETE_VERIFICATION: typeof FailedToDeleteVerificationError;
8711
+ VERIFICATION_NOT_FOUND: typeof VerificationNotFoundError;
8712
+ FAILED_TO_CREATE_VERIFICATION_CODE: typeof FailedToCreateVerificationCodeError;
8713
+ INVALID_DOMAIN: typeof InvalidDomainError;
8714
+ BUILD_FAILED: typeof BuildFailedError;
8715
+ SERVER_DEPLOYMENT_FAILED: typeof ServerDeploymentFailedError;
8716
+ LOCKFILE_ERROR: typeof LockfileErrorError;
8717
+ UPLOAD_ERROR: typeof UploadErrorError;
8718
+ DOMAIN_MAPPING_ERROR: typeof DomainMappingErrorError;
8719
+ CERTIFICATE_PROVISIONING_ERROR: typeof CertificateProvisioningErrorError;
8720
+ NO_ENTRYPOINT_FOUND: typeof NoEntrypointFoundError;
8721
+ ENTRYPOINT_NOT_FOUND: typeof EntrypointNotFoundError;
8722
+ NO_DOMAIN_OWNERSHIP: typeof NoDomainOwnershipError;
8723
+ INVALID_DOMAINS: typeof InvalidDomainsError;
8724
+ WEB_DEPLOYMENT_BAD_REQUEST: typeof WebDeploymentBadRequestError;
8725
+ DEPLOYMENT_NOT_FOUND: typeof DeploymentNotFoundError;
7962
8726
  DOMAIN_ALREADY_EXISTS: typeof DomainAlreadyExistsError;
7963
8727
  FAILED_TO_INSERT_OWNERSHIP: typeof FailedToInsertOwnershipError;
7964
8728
  FAILED_REMOVE_DOMAIN_MAPPING: typeof FailedRemoveDomainMappingError;
7965
8729
  FAILED_PERMISSIONS_CHECK: typeof FailedPermissionsCheckError;
7966
8730
  FAILED_TO_CHECK_DOMAIN_MAPPING_PERMISSIONS: typeof FailedToCheckDomainMappingPermissionsError;
7967
- CLOUDSTATE_INTERNAL_ERROR: typeof CloudstateInternalErrorError;
7968
- CLOUDSTATE_DATABASE_ERROR: typeof CloudstateDatabaseErrorError;
7969
- CLOUDSTATE_ACCESS_DENIED: typeof CloudstateAccessDeniedError;
7970
- RESTORE_FAILED: typeof RestoreFailedError;
7971
- CREATE_BACKUP_FAILED: typeof CreateBackupFailedError;
7972
- BACKUP_FAILED: typeof BackupFailedError;
7973
- DEPLOYMENT_FAILED: typeof DeploymentFailedError;
7974
- INVALID_DEPLOYMENT_REQUEST: typeof InvalidDeploymentRequestError;
7975
- PROJECT_NOT_FOUND: typeof ProjectNotFoundError;
7976
- UNAUTHORIZED_ERROR: typeof UnauthorizedErrorError;
7977
- ANYHOW: typeof AnyhowError;
7978
8731
  };
7979
8732
 
7980
8733
  type errors_AfterArrayContainsEmptyError = AfterArrayContainsEmptyError;
@@ -7991,6 +8744,8 @@ type errors_BadRequestError = BadRequestError;
7991
8744
  declare const errors_BadRequestError: typeof BadRequestError;
7992
8745
  type errors_BlobNotFoundError = BlobNotFoundError;
7993
8746
  declare const errors_BlobNotFoundError: typeof BlobNotFoundError;
8747
+ type errors_BranchNameEmptyError = BranchNameEmptyError;
8748
+ declare const errors_BranchNameEmptyError: typeof BranchNameEmptyError;
7994
8749
  type errors_BranchNotFoundError = BranchNotFoundError;
7995
8750
  declare const errors_BranchNotFoundError: typeof BranchNotFoundError;
7996
8751
  type errors_BrowserOperationFailedError = BrowserOperationFailedError;
@@ -8013,6 +8768,8 @@ type errors_CommitFailedError = CommitFailedError;
8013
8768
  declare const errors_CommitFailedError: typeof CommitFailedError;
8014
8769
  type errors_CommitNotFoundError = CommitNotFoundError;
8015
8770
  declare const errors_CommitNotFoundError: typeof CommitNotFoundError;
8771
+ type errors_CommitNotInBranchError = CommitNotInBranchError;
8772
+ declare const errors_CommitNotInBranchError: typeof CommitNotInBranchError;
8016
8773
  type errors_ConflictError = ConflictError;
8017
8774
  declare const errors_ConflictError: typeof ConflictError;
8018
8775
  type errors_ConnectionFailedError = ConnectionFailedError;
@@ -8065,6 +8822,8 @@ type errors_DuplicateGroupNameError = DuplicateGroupNameError;
8065
8822
  declare const errors_DuplicateGroupNameError: typeof DuplicateGroupNameError;
8066
8823
  type errors_DuplicateUserNameError = DuplicateUserNameError;
8067
8824
  declare const errors_DuplicateUserNameError: typeof DuplicateUserNameError;
8825
+ type errors_EmptyTagError = EmptyTagError;
8826
+ declare const errors_EmptyTagError: typeof EmptyTagError;
8068
8827
  type errors_EntrypointNotFoundError = EntrypointNotFoundError;
8069
8828
  declare const errors_EntrypointNotFoundError: typeof EntrypointNotFoundError;
8070
8829
  type errors_EnvKeyContainsEqualsError = EnvKeyContainsEqualsError;
@@ -8085,6 +8844,8 @@ type errors_ExecutionErrorError = ExecutionErrorError;
8085
8844
  declare const errors_ExecutionErrorError: typeof ExecutionErrorError;
8086
8845
  type errors_ExecutionFailedError = ExecutionFailedError;
8087
8846
  declare const errors_ExecutionFailedError: typeof ExecutionFailedError;
8847
+ type errors_ExpectedServiceError = ExpectedServiceError;
8848
+ declare const errors_ExpectedServiceError: typeof ExpectedServiceError;
8088
8849
  type errors_ExpiredError = ExpiredError;
8089
8850
  declare const errors_ExpiredError: typeof ExpiredError;
8090
8851
  declare const errors_FREESTYLE_ERROR_CODE_MAP: typeof FREESTYLE_ERROR_CODE_MAP;
@@ -8131,6 +8892,10 @@ type errors_GetPermissionFailedError = GetPermissionFailedError;
8131
8892
  declare const errors_GetPermissionFailedError: typeof GetPermissionFailedError;
8132
8893
  type errors_GetRepositoryInfoFailedError = GetRepositoryInfoFailedError;
8133
8894
  declare const errors_GetRepositoryInfoFailedError: typeof GetRepositoryInfoFailedError;
8895
+ type errors_GitErrorError = GitErrorError;
8896
+ declare const errors_GitErrorError: typeof GitErrorError;
8897
+ type errors_GitHubSyncConflictError = GitHubSyncConflictError;
8898
+ declare const errors_GitHubSyncConflictError: typeof GitHubSyncConflictError;
8134
8899
  type errors_GitHubSyncFailedError = GitHubSyncFailedError;
8135
8900
  declare const errors_GitHubSyncFailedError: typeof GitHubSyncFailedError;
8136
8901
  type errors_GitInvalidRequestError = GitInvalidRequestError;
@@ -8163,6 +8928,8 @@ type errors_IdentityErrorError = IdentityErrorError;
8163
8928
  declare const errors_IdentityErrorError: typeof IdentityErrorError;
8164
8929
  type errors_IdentityNotFoundError = IdentityNotFoundError;
8165
8930
  declare const errors_IdentityNotFoundError: typeof IdentityNotFoundError;
8931
+ type errors_ImportSubdirNotFoundError = ImportSubdirNotFoundError;
8932
+ declare const errors_ImportSubdirNotFoundError: typeof ImportSubdirNotFoundError;
8166
8933
  type errors_InternalError = InternalError;
8167
8934
  declare const errors_InternalError: typeof InternalError;
8168
8935
  type errors_InternalErrorError = InternalErrorError;
@@ -8181,14 +8948,19 @@ type errors_InvalidDomainsError = InvalidDomainsError;
8181
8948
  declare const errors_InvalidDomainsError: typeof InvalidDomainsError;
8182
8949
  type errors_InvalidObjectIdError = InvalidObjectIdError;
8183
8950
  declare const errors_InvalidObjectIdError: typeof InvalidObjectIdError;
8951
+ type errors_InvalidObjectIdPublic = InvalidObjectIdPublic;
8184
8952
  type errors_InvalidParametersError = InvalidParametersError;
8185
8953
  declare const errors_InvalidParametersError: typeof InvalidParametersError;
8186
8954
  type errors_InvalidQueryError = InvalidQueryError;
8187
8955
  declare const errors_InvalidQueryError: typeof InvalidQueryError;
8956
+ type errors_InvalidRangeError = InvalidRangeError;
8957
+ declare const errors_InvalidRangeError: typeof InvalidRangeError;
8188
8958
  type errors_InvalidRequestError = InvalidRequestError;
8189
8959
  declare const errors_InvalidRequestError: typeof InvalidRequestError;
8190
8960
  type errors_InvalidRevisionError = InvalidRevisionError;
8191
8961
  declare const errors_InvalidRevisionError: typeof InvalidRevisionError;
8962
+ type errors_InvalidServiceError = InvalidServiceError;
8963
+ declare const errors_InvalidServiceError: typeof InvalidServiceError;
8192
8964
  type errors_InvalidSignatureError = InvalidSignatureError;
8193
8965
  declare const errors_InvalidSignatureError: typeof InvalidSignatureError;
8194
8966
  type errors_LfsTransferAdapter = LfsTransferAdapter;
@@ -8232,10 +9004,14 @@ type errors_ObservabilityAccessDeniedError = ObservabilityAccessDeniedError;
8232
9004
  declare const errors_ObservabilityAccessDeniedError: typeof ObservabilityAccessDeniedError;
8233
9005
  type errors_ObservabilityDatabaseErrorError = ObservabilityDatabaseErrorError;
8234
9006
  declare const errors_ObservabilityDatabaseErrorError: typeof ObservabilityDatabaseErrorError;
9007
+ type errors_OffsetWithSelectorError = OffsetWithSelectorError;
9008
+ declare const errors_OffsetWithSelectorError: typeof OffsetWithSelectorError;
8235
9009
  type errors_OnFailureArrayContainsEmptyError = OnFailureArrayContainsEmptyError;
8236
9010
  declare const errors_OnFailureArrayContainsEmptyError: typeof OnFailureArrayContainsEmptyError;
8237
9011
  type errors_OrderNotFoundError = OrderNotFoundError;
8238
9012
  declare const errors_OrderNotFoundError: typeof OrderNotFoundError;
9013
+ type errors_PackfileError = PackfileError;
9014
+ declare const errors_PackfileError: typeof PackfileError;
8239
9015
  type errors_ParseLogsFailedError = ParseLogsFailedError;
8240
9016
  declare const errors_ParseLogsFailedError: typeof ParseLogsFailedError;
8241
9017
  type errors_ParseResponseErrorError = ParseResponseErrorError;
@@ -8273,6 +9049,7 @@ type errors_PublicCloudstateDatabaseError = PublicCloudstateDatabaseError;
8273
9049
  type errors_PublicCloudstateInternalError = PublicCloudstateInternalError;
8274
9050
  type errors_PublicCommitFailed = PublicCommitFailed;
8275
9051
  type errors_PublicCommitNotFound = PublicCommitNotFound;
9052
+ type errors_PublicCommitNotInBranch = PublicCommitNotInBranch;
8276
9053
  type errors_PublicConnectionFailed = PublicConnectionFailed;
8277
9054
  type errors_PublicContentNotFound = PublicContentNotFound;
8278
9055
  type errors_PublicCreateBackupFailed = PublicCreateBackupFailed;
@@ -8281,7 +9058,6 @@ type errors_PublicCreateRepositoryFailed = PublicCreateRepositoryFailed;
8281
9058
  type errors_PublicCreateSnapshotBadRequest = PublicCreateSnapshotBadRequest;
8282
9059
  type errors_PublicCreateTokenFailed = PublicCreateTokenFailed;
8283
9060
  type errors_PublicCreateVmBadRequest = PublicCreateVmBadRequest;
8284
- type errors_PublicDatabaseError = PublicDatabaseError;
8285
9061
  type errors_PublicDeleteIdentityFailed = PublicDeleteIdentityFailed;
8286
9062
  type errors_PublicDeleteRepositoryFailed = PublicDeleteRepositoryFailed;
8287
9063
  type errors_PublicDeploymentFailed = PublicDeploymentFailed;
@@ -8324,12 +9100,14 @@ type errors_PublicGitServerError = PublicGitServerError;
8324
9100
  type errors_PublicGrantPermissionFailed = PublicGrantPermissionFailed;
8325
9101
  type errors_PublicGroupAlreadyExists = PublicGroupAlreadyExists;
8326
9102
  type errors_PublicIdentityError = PublicIdentityError;
9103
+ type errors_PublicImportSubdirNotFound = PublicImportSubdirNotFound;
8327
9104
  type errors_PublicInternalForkVmNotFound = PublicInternalForkVmNotFound;
8328
9105
  type errors_PublicInternalVmNotFound = PublicInternalVmNotFound;
8329
9106
  type errors_PublicInvalidDeploymentRequest = PublicInvalidDeploymentRequest;
8330
9107
  type errors_PublicInvalidDomain = PublicInvalidDomain;
8331
9108
  type errors_PublicInvalidDomains = PublicInvalidDomains;
8332
9109
  type errors_PublicInvalidQuery = PublicInvalidQuery;
9110
+ type errors_PublicInvalidRange = PublicInvalidRange;
8333
9111
  type errors_PublicInvalidRevision = PublicInvalidRevision;
8334
9112
  type errors_PublicListIdentitiesFailed = PublicListIdentitiesFailed;
8335
9113
  type errors_PublicListPermissionsFailed = PublicListPermissionsFailed;
@@ -8375,6 +9153,8 @@ type errors_PublicSerializationError = PublicSerializationError;
8375
9153
  type errors_PublicServiceAlreadyExists = PublicServiceAlreadyExists;
8376
9154
  type errors_PublicShutdownFailed = PublicShutdownFailed;
8377
9155
  type errors_PublicSnapshotVmBadRequest = PublicSnapshotVmBadRequest;
9156
+ type errors_PublicSourceNotFound = PublicSourceNotFound;
9157
+ type errors_PublicSourceUnauthorized = PublicSourceUnauthorized;
8378
9158
  type errors_PublicStatusFailed = PublicStatusFailed;
8379
9159
  type errors_PublicTagNotFound = PublicTagNotFound;
8380
9160
  type errors_PublicTokenError = PublicTokenError;
@@ -8397,6 +9177,8 @@ type errors_RecordOwnershipErrorError = RecordOwnershipErrorError;
8397
9177
  declare const errors_RecordOwnershipErrorError: typeof RecordOwnershipErrorError;
8398
9178
  type errors_ReferenceNotFoundError = ReferenceNotFoundError;
8399
9179
  declare const errors_ReferenceNotFoundError: typeof ReferenceNotFoundError;
9180
+ type errors_RepoAlreadyExistsError = RepoAlreadyExistsError;
9181
+ declare const errors_RepoAlreadyExistsError: typeof RepoAlreadyExistsError;
8400
9182
  type errors_RepoNotFoundError = RepoNotFoundError;
8401
9183
  declare const errors_RepoNotFoundError: typeof RepoNotFoundError;
8402
9184
  type errors_RepositoryAccessDeniedError = RepositoryAccessDeniedError;
@@ -8423,6 +9205,8 @@ type errors_RevokeTokenFailedError = RevokeTokenFailedError;
8423
9205
  declare const errors_RevokeTokenFailedError: typeof RevokeTokenFailedError;
8424
9206
  type errors_RunNotFoundError = RunNotFoundError;
8425
9207
  declare const errors_RunNotFoundError: typeof RunNotFoundError;
9208
+ type errors_SendErrorError = SendErrorError;
9209
+ declare const errors_SendErrorError: typeof SendErrorError;
8426
9210
  type errors_SerializationErrorError = SerializationErrorError;
8427
9211
  declare const errors_SerializationErrorError: typeof SerializationErrorError;
8428
9212
  type errors_ServerDeploymentFailedError = ServerDeploymentFailedError;
@@ -8445,6 +9229,12 @@ type errors_SigningError = SigningError;
8445
9229
  declare const errors_SigningError: typeof SigningError;
8446
9230
  type errors_SnapshotVmBadRequestError = SnapshotVmBadRequestError;
8447
9231
  declare const errors_SnapshotVmBadRequestError: typeof SnapshotVmBadRequestError;
9232
+ type errors_SourceImportConflictError = SourceImportConflictError;
9233
+ declare const errors_SourceImportConflictError: typeof SourceImportConflictError;
9234
+ type errors_SourceNotFoundError = SourceNotFoundError;
9235
+ declare const errors_SourceNotFoundError: typeof SourceNotFoundError;
9236
+ type errors_SourceUnauthorizedError = SourceUnauthorizedError;
9237
+ declare const errors_SourceUnauthorizedError: typeof SourceUnauthorizedError;
8448
9238
  type errors_StatusFailedError = StatusFailedError;
8449
9239
  declare const errors_StatusFailedError: typeof StatusFailedError;
8450
9240
  type errors_StdIoError = StdIoError;
@@ -8539,8 +9329,8 @@ type errors_WriteScriptFailedError = WriteScriptFailedError;
8539
9329
  declare const errors_WriteScriptFailedError: typeof WriteScriptFailedError;
8540
9330
  declare const errors_errorFromJSON: typeof errorFromJSON;
8541
9331
  declare namespace errors {
8542
- export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AnyhowError as AnyhowError, errors_AuthorizationNotFoundError as AuthorizationNotFoundError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidSignatureError as InvalidSignatureError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_OrderNotFoundError as OrderNotFoundError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_PreVerifyChallengeMismatchError as PreVerifyChallengeMismatchError, errors_PreVerifyFailedFetchError as PreVerifyFailedFetchError, errors_PreVerifyFailedParseError as PreVerifyFailedParseError, errors_PreVerifyRouteNotFoundError as PreVerifyRouteNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WaitTimeoutError as WaitTimeoutError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
8543
- export type { errors_FreestyleError as FreestyleError, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PublicAuthorizationNotFound as PublicAuthorizationNotFound, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBrowserOperationFailed as PublicBrowserOperationFailed, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitFailed as PublicCommitFailed, errors_PublicCommitNotFound as PublicCommitNotFound, errors_PublicConnectionFailed as PublicConnectionFailed, errors_PublicContentNotFound as PublicContentNotFound, errors_PublicCreateBackupFailed as PublicCreateBackupFailed, errors_PublicCreateIdentityFailed as PublicCreateIdentityFailed, errors_PublicCreateRepositoryFailed as PublicCreateRepositoryFailed, errors_PublicCreateSnapshotBadRequest as PublicCreateSnapshotBadRequest, errors_PublicCreateTokenFailed as PublicCreateTokenFailed, errors_PublicCreateVmBadRequest as PublicCreateVmBadRequest, errors_PublicDatabaseError as PublicDatabaseError, errors_PublicDeleteIdentityFailed as PublicDeleteIdentityFailed, errors_PublicDeleteRepositoryFailed as PublicDeleteRepositoryFailed, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDevServerFileNotFound as PublicDevServerFileNotFound, errors_PublicDevServerInvalidRequest as PublicDevServerInvalidRequest, errors_PublicDevServerNotFound as PublicDevServerNotFound, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDockerImportBadRequest as PublicDockerImportBadRequest, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDownloadFailed as PublicDownloadFailed, errors_PublicEntrypointNotFound as PublicEntrypointNotFound, errors_PublicErrorCreatingRecord as PublicErrorCreatingRecord, errors_PublicErrorDeletingRecord as PublicErrorDeletingRecord, errors_PublicExecuteInternalError as PublicExecuteInternalError, errors_PublicExecutionError as PublicExecutionError, errors_PublicExecutionFailed as PublicExecutionFailed, errors_PublicFailedPermissionsCheck as PublicFailedPermissionsCheck, errors_PublicFailedRemoveDomainMapping as PublicFailedRemoveDomainMapping, errors_PublicFailedToCheckDomainMappingPermissions as PublicFailedToCheckDomainMappingPermissions, errors_PublicFailedToCheckPermissions as PublicFailedToCheckPermissions, errors_PublicFailedToCreateVerificationCode as PublicFailedToCreateVerificationCode, errors_PublicFailedToDeleteVerification as PublicFailedToDeleteVerification, errors_PublicFailedToInsertDomainMapping as PublicFailedToInsertDomainMapping, errors_PublicFailedToInsertOwnership as PublicFailedToInsertOwnership, errors_PublicFailedToListDomains as PublicFailedToListDomains, errors_PublicFailedToListVerifications as PublicFailedToListVerifications, errors_PublicFailedToProvisionCertificate as PublicFailedToProvisionCertificate, errors_PublicFailedToVerifyDomain as PublicFailedToVerifyDomain, errors_PublicFileNotFound as PublicFileNotFound, errors_PublicFilesBadRequest as PublicFilesBadRequest, errors_PublicForkVmNotFound as PublicForkVmNotFound, errors_PublicGetContentFailed as PublicGetContentFailed, errors_PublicGetPermissionFailed as PublicGetPermissionFailed, errors_PublicGetRepositoryInfoFailed as PublicGetRepositoryInfoFailed, errors_PublicGitHubSyncFailed as PublicGitHubSyncFailed, errors_PublicGitInvalidRequest as PublicGitInvalidRequest, errors_PublicGitServerError as PublicGitServerError, errors_PublicGrantPermissionFailed as PublicGrantPermissionFailed, errors_PublicGroupAlreadyExists as PublicGroupAlreadyExists, errors_PublicIdentityError as PublicIdentityError, errors_PublicInternalForkVmNotFound as PublicInternalForkVmNotFound, errors_PublicInternalVmNotFound as PublicInternalVmNotFound, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicListIdentitiesFailed as PublicListIdentitiesFailed, errors_PublicListPermissionsFailed as PublicListPermissionsFailed, errors_PublicListRepositoriesFailed as PublicListRepositoriesFailed, errors_PublicListRunsFailed as PublicListRunsFailed, errors_PublicListTokensFailed as PublicListTokensFailed, errors_PublicLockGenerationFailed as PublicLockGenerationFailed, errors_PublicLockfileError as PublicLockfileError, errors_PublicLoggingFailed as PublicLoggingFailed, errors_PublicLogsFailed as PublicLogsFailed, errors_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicOrderNotFound as PublicOrderNotFound, errors_PublicParseLogsFailed as PublicParseLogsFailed, errors_PublicParseResponseError as PublicParseResponseError, errors_PublicPathNotFound as PublicPathNotFound, errors_PublicPermissionDenied as PublicPermissionDenied, errors_PublicPermissionError as PublicPermissionError, errors_PublicPreVerifyChallengeMismatch as PublicPreVerifyChallengeMismatch, errors_PublicPreVerifyFailedFetch as PublicPreVerifyFailedFetch, errors_PublicPreVerifyFailedParse as PublicPreVerifyFailedParse, errors_PublicPreVerifyRouteNotFound as PublicPreVerifyRouteNotFound, errors_PublicProjectNotFound as PublicProjectNotFound, errors_PublicReadFileFailed as PublicReadFileFailed, errors_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicRequestFailed as PublicRequestFailed, errors_PublicResizeFailed as PublicResizeFailed, errors_PublicRestartFailed as PublicRestartFailed, errors_PublicRestoreFailed as PublicRestoreFailed, errors_PublicRetrieveLogsFailed as PublicRetrieveLogsFailed, errors_PublicRevokePermissionFailed as PublicRevokePermissionFailed, errors_PublicRevokeTokenFailed as PublicRevokeTokenFailed, errors_PublicRunNotFound as PublicRunNotFound, errors_PublicSerializationError as PublicSerializationError, errors_PublicServiceAlreadyExists as PublicServiceAlreadyExists, errors_PublicShutdownFailed as PublicShutdownFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicStatusFailed as PublicStatusFailed, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTokenError as PublicTokenError, errors_PublicTreeNotFound as PublicTreeNotFound, errors_PublicTriggerError as PublicTriggerError, errors_PublicUnsupportedTransfer as PublicUnsupportedTransfer, errors_PublicUpdateDefaultBranchFailed as PublicUpdateDefaultBranchFailed, errors_PublicUpdatePermissionFailed as PublicUpdatePermissionFailed, errors_PublicUserAlreadyExists as PublicUserAlreadyExists, errors_PublicVerificationFailed as PublicVerificationFailed, errors_PublicVerificationNotFound as PublicVerificationNotFound, errors_PublicWaitTimeout as PublicWaitTimeout, errors_PublicWatchFilesFailed as PublicWatchFilesFailed, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteFileFailed as PublicWriteFileFailed, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
9332
+ export { errors_AfterArrayContainsEmptyError as AfterArrayContainsEmptyError, errors_AlreadyHasBaseError as AlreadyHasBaseError, errors_AnyhowError as AnyhowError, errors_AuthorizationNotFoundError as AuthorizationNotFoundError, errors_BackupFailedError as BackupFailedError, errors_BadRequestError as BadRequestError, errors_BlobNotFoundError as BlobNotFoundError, errors_BranchNameEmptyError as BranchNameEmptyError, errors_BranchNotFoundError as BranchNotFoundError, errors_BrowserOperationFailedError as BrowserOperationFailedError, errors_BuildFailedError as BuildFailedError, errors_CannotDeleteManagedIdentityError as CannotDeleteManagedIdentityError, errors_CannotModifyManagedIdentityError as CannotModifyManagedIdentityError, errors_CertificateProvisioningErrorError as CertificateProvisioningErrorError, errors_CloudstateAccessDeniedError as CloudstateAccessDeniedError, errors_CloudstateDatabaseErrorError as CloudstateDatabaseErrorError, errors_CloudstateInternalErrorError as CloudstateInternalErrorError, errors_CommitFailedError as CommitFailedError, errors_CommitNotFoundError as CommitNotFoundError, errors_CommitNotInBranchError as CommitNotInBranchError, errors_ConflictError as ConflictError, errors_ConnectionFailedError as ConnectionFailedError, errors_ContentNotFoundError as ContentNotFoundError, errors_CreateBackupFailedError as CreateBackupFailedError, errors_CreateIdentityFailedError as CreateIdentityFailedError, errors_CreateRepositoryFailedError as CreateRepositoryFailedError, errors_CreateSnapshotBadRequestError as CreateSnapshotBadRequestError, errors_CreateTokenFailedError as CreateTokenFailedError, errors_CreateVmBadRequestError as CreateVmBadRequestError, errors_DatabaseErrorError as DatabaseErrorError, errors_DeleteIdentityFailedError as DeleteIdentityFailedError, errors_DeleteRepositoryFailedError as DeleteRepositoryFailedError, errors_DeploymentFailedError as DeploymentFailedError, errors_DeploymentNotFoundError as DeploymentNotFoundError, errors_DevServerFileNotFoundError as DevServerFileNotFoundError, errors_DevServerInvalidRequestError as DevServerInvalidRequestError, errors_DevServerNotFoundError as DevServerNotFoundError, errors_DirectoryCreationFailedError as DirectoryCreationFailedError, errors_DockerImportBadRequestError as DockerImportBadRequestError, errors_DomainAlreadyExistsError as DomainAlreadyExistsError, errors_DomainMappingErrorError as DomainMappingErrorError, errors_DomainOwnershipErrorError as DomainOwnershipErrorError, errors_DomainOwnershipVerificationFailedError as DomainOwnershipVerificationFailedError, errors_DownloadFailedError as DownloadFailedError, errors_DuplicateGroupNameError as DuplicateGroupNameError, errors_DuplicateUserNameError as DuplicateUserNameError, errors_EmptyTagError as EmptyTagError, errors_EntrypointNotFoundError as EntrypointNotFoundError, errors_EnvKeyContainsEqualsError as EnvKeyContainsEqualsError, errors_EnvKeyEmptyError as EnvKeyEmptyError, errors_ErrorCreatingRecordError as ErrorCreatingRecordError, errors_ErrorDeletingRecordError as ErrorDeletingRecordError, errors_ExecEmptyError as ExecEmptyError, errors_ExecuteAccessDeniedError as ExecuteAccessDeniedError, errors_ExecuteInternalErrorError as ExecuteInternalErrorError, errors_ExecutionErrorError as ExecutionErrorError, errors_ExecutionFailedError as ExecutionFailedError, errors_ExpectedServiceError as ExpectedServiceError, errors_ExpiredError as ExpiredError, errors_FREESTYLE_ERROR_CODE_MAP as FREESTYLE_ERROR_CODE_MAP, errors_FailedPermissionsCheckError as FailedPermissionsCheckError, errors_FailedRemoveDomainMappingError as FailedRemoveDomainMappingError, errors_FailedToCheckDomainMappingPermissionsError as FailedToCheckDomainMappingPermissionsError, errors_FailedToCheckPermissionsError as FailedToCheckPermissionsError, errors_FailedToCreateVerificationCodeError as FailedToCreateVerificationCodeError, errors_FailedToDeleteVerificationError as FailedToDeleteVerificationError, errors_FailedToInsertDomainMappingError as FailedToInsertDomainMappingError, errors_FailedToInsertOwnershipError as FailedToInsertOwnershipError, errors_FailedToListDomainsError as FailedToListDomainsError, errors_FailedToListVerificationsError as FailedToListVerificationsError, errors_FailedToProvisionCertificateError as FailedToProvisionCertificateError, errors_FailedToVerifyDomainError as FailedToVerifyDomainError, errors_FileNotFoundError as FileNotFoundError, errors_FilesBadRequestError as FilesBadRequestError, errors_FirecrackerApiSocketNotFoundError as FirecrackerApiSocketNotFoundError, errors_FirecrackerPidNotFoundError as FirecrackerPidNotFoundError, errors_ForbiddenError as ForbiddenError, errors_ForkVmNotFoundError as ForkVmNotFoundError, errors_GetContentFailedError as GetContentFailedError, errors_GetPermissionFailedError as GetPermissionFailedError, errors_GetRepositoryInfoFailedError as GetRepositoryInfoFailedError, errors_GitErrorError as GitErrorError, errors_GitHubSyncConflictError as GitHubSyncConflictError, errors_GitHubSyncFailedError as GitHubSyncFailedError, errors_GitInvalidRequestError as GitInvalidRequestError, errors_GitRepositoryAccessDeniedError as GitRepositoryAccessDeniedError, errors_GitRepositoryNotFoundError as GitRepositoryNotFoundError, errors_GitServerErrorError as GitServerErrorError, errors_GrantPermissionFailedError as GrantPermissionFailedError, errors_GroupAlreadyExistsError as GroupAlreadyExistsError, errors_GroupEmptyError as GroupEmptyError, errors_GroupNameEmptyError as GroupNameEmptyError, errors_GroupNameInvalidCharsError as GroupNameInvalidCharsError, errors_GroupNameReservedError as GroupNameReservedError, errors_GroupNameTooLongError as GroupNameTooLongError, errors_GroupNotFoundError as GroupNotFoundError, errors_IdentityAccessDeniedError as IdentityAccessDeniedError, errors_IdentityErrorError as IdentityErrorError, errors_IdentityNotFoundError as IdentityNotFoundError, errors_ImportSubdirNotFoundError as ImportSubdirNotFoundError, errors_InternalError as InternalError, errors_InternalErrorError as InternalErrorError, errors_InternalForkVmNotFoundError as InternalForkVmNotFoundError, errors_InternalResizeVmNotFoundError as InternalResizeVmNotFoundError, errors_InternalVmNotFoundError as InternalVmNotFoundError, errors_InvalidDeploymentRequestError as InvalidDeploymentRequestError, errors_InvalidDomainError as InvalidDomainError, errors_InvalidDomainsError as InvalidDomainsError, errors_InvalidObjectIdError as InvalidObjectIdError, errors_InvalidParametersError as InvalidParametersError, errors_InvalidQueryError as InvalidQueryError, errors_InvalidRangeError as InvalidRangeError, errors_InvalidRequestError as InvalidRequestError, errors_InvalidRevisionError as InvalidRevisionError, errors_InvalidServiceError as InvalidServiceError, errors_InvalidSignatureError as InvalidSignatureError, errors_ListIdentitiesFailedError as ListIdentitiesFailedError, errors_ListPermissionsFailedError as ListPermissionsFailedError, errors_ListRepositoriesFailedError as ListRepositoriesFailedError, errors_ListRunsFailedError as ListRunsFailedError, errors_ListTokensFailedError as ListTokensFailedError, errors_LockGenerationFailedError as LockGenerationFailedError, errors_LockfileErrorError as LockfileErrorError, errors_LoggingFailedError as LoggingFailedError, errors_LogsFailedError as LogsFailedError, errors_LogsNotFoundError as LogsNotFoundError, errors_MaxUsesExceededError as MaxUsesExceededError, errors_MetadataWriteFailedError as MetadataWriteFailedError, errors_NetworkPermissionsFailedError as NetworkPermissionsFailedError, errors_NoDomainOwnershipError as NoDomainOwnershipError, errors_NoEntrypointFoundError as NoEntrypointFoundError, errors_NodeModulesDownloadFailedError as NodeModulesDownloadFailedError, errors_NodeModulesInstallFailedError as NodeModulesInstallFailedError, errors_NotFoundError as NotFoundError, errors_ObservabilityAccessDeniedError as ObservabilityAccessDeniedError, errors_ObservabilityDatabaseErrorError as ObservabilityDatabaseErrorError, errors_OffsetWithSelectorError as OffsetWithSelectorError, errors_OnFailureArrayContainsEmptyError as OnFailureArrayContainsEmptyError, errors_OrderNotFoundError as OrderNotFoundError, errors_PackfileError as PackfileError, errors_ParseLogsFailedError as ParseLogsFailedError, errors_ParseResponseErrorError as ParseResponseErrorError, errors_PathNotFoundError as PathNotFoundError, errors_PermissionAlreadyExistsError as PermissionAlreadyExistsError, errors_PermissionDeniedError as PermissionDeniedError, errors_PermissionErrorError as PermissionErrorError, errors_PermissionNotFoundError as PermissionNotFoundError, errors_PreVerifyChallengeMismatchError as PreVerifyChallengeMismatchError, errors_PreVerifyFailedFetchError as PreVerifyFailedFetchError, errors_PreVerifyFailedParseError as PreVerifyFailedParseError, errors_PreVerifyRouteNotFoundError as PreVerifyRouteNotFoundError, errors_ProjectNotFoundError as ProjectNotFoundError, errors_ReadFileFailedError as ReadFileFailedError, errors_RecordOwnershipErrorError as RecordOwnershipErrorError, errors_ReferenceNotFoundError as ReferenceNotFoundError, errors_RepoAlreadyExistsError as RepoAlreadyExistsError, errors_RepoNotFoundError as RepoNotFoundError, errors_RepositoryAccessDeniedError as RepositoryAccessDeniedError, errors_RepositoryNotFoundError as RepositoryNotFoundError, errors_RequestFailedError as RequestFailedError, errors_RequiresArrayContainsEmptyError as RequiresArrayContainsEmptyError, errors_ReqwestError as ReqwestError, errors_ResizeFailedError as ResizeFailedError, errors_RestartFailedError as RestartFailedError, errors_RestoreFailedError as RestoreFailedError, errors_RetrieveLogsFailedError as RetrieveLogsFailedError, errors_RevokePermissionFailedError as RevokePermissionFailedError, errors_RevokeTokenFailedError as RevokeTokenFailedError, errors_RunNotFoundError as RunNotFoundError, errors_SendErrorError as SendErrorError, errors_SerializationErrorError as SerializationErrorError, errors_ServerDeploymentFailedError as ServerDeploymentFailedError, errors_ServiceAlreadyExistsError as ServiceAlreadyExistsError, errors_ServiceNameEmptyError as ServiceNameEmptyError, errors_ServiceNameInvalidCharsError as ServiceNameInvalidCharsError, errors_ServiceNameInvalidPrefixError as ServiceNameInvalidPrefixError, errors_ServiceNameTooLongError as ServiceNameTooLongError, errors_ServiceNotFoundError as ServiceNotFoundError, errors_ShutdownFailedError as ShutdownFailedError, errors_SigningError as SigningError, errors_SnapshotVmBadRequestError as SnapshotVmBadRequestError, errors_SourceImportConflictError as SourceImportConflictError, errors_SourceNotFoundError as SourceNotFoundError, errors_SourceUnauthorizedError as SourceUnauthorizedError, errors_StatusFailedError as StatusFailedError, errors_StdIoError as StdIoError, errors_TagNotFoundError as TagNotFoundError, errors_TokenErrorError as TokenErrorError, errors_TreeNotFoundError as TreeNotFoundError, errors_TriggerErrorError as TriggerErrorError, errors_UnauthorizedError as UnauthorizedError, errors_UnauthorizedErrorError as UnauthorizedErrorError, errors_UnsupportedTransferError as UnsupportedTransferError, errors_UpdateDefaultBranchFailedError as UpdateDefaultBranchFailedError, errors_UpdatePermissionFailedError as UpdatePermissionFailedError, errors_UploadErrorError as UploadErrorError, errors_UserAlreadyExistsError as UserAlreadyExistsError, errors_UserEmptyError as UserEmptyError, errors_UserGroupEmptyError as UserGroupEmptyError, errors_UserHomeInvalidError as UserHomeInvalidError, errors_UserNotFoundError as UserNotFoundError, errors_UserShellInvalidError as UserShellInvalidError, errors_UserSystemFlagMismatchError as UserSystemFlagMismatchError, errors_UserUidOutOfRangeError as UserUidOutOfRangeError, errors_ValidationErrorError as ValidationErrorError, errors_VerificationFailedError as VerificationFailedError, errors_VerificationNotFoundError as VerificationNotFoundError, errors_VmAccessDeniedError as VmAccessDeniedError, errors_VmCreateTmuxSessionError as VmCreateTmuxSessionError, errors_VmDeletedError as VmDeletedError, errors_VmExitDuringStartError as VmExitDuringStartError, errors_VmMustBeStoppedError as VmMustBeStoppedError, errors_VmNotFoundError as VmNotFoundError, errors_VmNotFoundInFsError as VmNotFoundInFsError, errors_VmNotInTransactionError as VmNotInTransactionError, errors_VmNotRunningError as VmNotRunningError, errors_VmOperationDeniedDuringTransactionError as VmOperationDeniedDuringTransactionError, errors_VmPermissionNotFoundError as VmPermissionNotFoundError, errors_VmStartTimeoutError as VmStartTimeoutError, errors_VmSubnetNotFoundError as VmSubnetNotFoundError, errors_VmTransactionIdMismatchError as VmTransactionIdMismatchError, errors_WaitTimeoutError as WaitTimeoutError, errors_WantedByEmptyError as WantedByEmptyError, errors_WatchFilesFailedError as WatchFilesFailedError, errors_WebDeploymentBadRequestError as WebDeploymentBadRequestError, errors_WorkdirEmptyError as WorkdirEmptyError, errors_WriteFileFailedError as WriteFileFailedError, errors_WriteScriptFailedError as WriteScriptFailedError, errors_errorFromJSON as errorFromJSON };
9333
+ export type { errors_FreestyleError as FreestyleError, errors_InvalidObjectIdPublic as InvalidObjectIdPublic, errors_LfsTransferAdapter as LfsTransferAdapter, errors_PublicAuthorizationNotFound as PublicAuthorizationNotFound, errors_PublicBackupFailed as PublicBackupFailed, errors_PublicBadRequest as PublicBadRequest, errors_PublicBlobNotFound as PublicBlobNotFound, errors_PublicBranchNotFound as PublicBranchNotFound, errors_PublicBrowserOperationFailed as PublicBrowserOperationFailed, errors_PublicBuildFailed as PublicBuildFailed, errors_PublicCertificateProvisioningError as PublicCertificateProvisioningError, errors_PublicCloudstateAccessDenied as PublicCloudstateAccessDenied, errors_PublicCloudstateDatabaseError as PublicCloudstateDatabaseError, errors_PublicCloudstateInternalError as PublicCloudstateInternalError, errors_PublicCommitFailed as PublicCommitFailed, errors_PublicCommitNotFound as PublicCommitNotFound, errors_PublicCommitNotInBranch as PublicCommitNotInBranch, errors_PublicConnectionFailed as PublicConnectionFailed, errors_PublicContentNotFound as PublicContentNotFound, errors_PublicCreateBackupFailed as PublicCreateBackupFailed, errors_PublicCreateIdentityFailed as PublicCreateIdentityFailed, errors_PublicCreateRepositoryFailed as PublicCreateRepositoryFailed, errors_PublicCreateSnapshotBadRequest as PublicCreateSnapshotBadRequest, errors_PublicCreateTokenFailed as PublicCreateTokenFailed, errors_PublicCreateVmBadRequest as PublicCreateVmBadRequest, errors_PublicDeleteIdentityFailed as PublicDeleteIdentityFailed, errors_PublicDeleteRepositoryFailed as PublicDeleteRepositoryFailed, errors_PublicDeploymentFailed as PublicDeploymentFailed, errors_PublicDevServerFileNotFound as PublicDevServerFileNotFound, errors_PublicDevServerInvalidRequest as PublicDevServerInvalidRequest, errors_PublicDevServerNotFound as PublicDevServerNotFound, errors_PublicDirectoryCreationFailed as PublicDirectoryCreationFailed, errors_PublicDockerImportBadRequest as PublicDockerImportBadRequest, errors_PublicDomainAlreadyExists as PublicDomainAlreadyExists, errors_PublicDomainMappingError as PublicDomainMappingError, errors_PublicDomainOwnershipError as PublicDomainOwnershipError, errors_PublicDownloadFailed as PublicDownloadFailed, errors_PublicEntrypointNotFound as PublicEntrypointNotFound, errors_PublicErrorCreatingRecord as PublicErrorCreatingRecord, errors_PublicErrorDeletingRecord as PublicErrorDeletingRecord, errors_PublicExecuteInternalError as PublicExecuteInternalError, errors_PublicExecutionError as PublicExecutionError, errors_PublicExecutionFailed as PublicExecutionFailed, errors_PublicFailedPermissionsCheck as PublicFailedPermissionsCheck, errors_PublicFailedRemoveDomainMapping as PublicFailedRemoveDomainMapping, errors_PublicFailedToCheckDomainMappingPermissions as PublicFailedToCheckDomainMappingPermissions, errors_PublicFailedToCheckPermissions as PublicFailedToCheckPermissions, errors_PublicFailedToCreateVerificationCode as PublicFailedToCreateVerificationCode, errors_PublicFailedToDeleteVerification as PublicFailedToDeleteVerification, errors_PublicFailedToInsertDomainMapping as PublicFailedToInsertDomainMapping, errors_PublicFailedToInsertOwnership as PublicFailedToInsertOwnership, errors_PublicFailedToListDomains as PublicFailedToListDomains, errors_PublicFailedToListVerifications as PublicFailedToListVerifications, errors_PublicFailedToProvisionCertificate as PublicFailedToProvisionCertificate, errors_PublicFailedToVerifyDomain as PublicFailedToVerifyDomain, errors_PublicFileNotFound as PublicFileNotFound, errors_PublicFilesBadRequest as PublicFilesBadRequest, errors_PublicForkVmNotFound as PublicForkVmNotFound, errors_PublicGetContentFailed as PublicGetContentFailed, errors_PublicGetPermissionFailed as PublicGetPermissionFailed, errors_PublicGetRepositoryInfoFailed as PublicGetRepositoryInfoFailed, errors_PublicGitHubSyncFailed as PublicGitHubSyncFailed, errors_PublicGitInvalidRequest as PublicGitInvalidRequest, errors_PublicGitServerError as PublicGitServerError, errors_PublicGrantPermissionFailed as PublicGrantPermissionFailed, errors_PublicGroupAlreadyExists as PublicGroupAlreadyExists, errors_PublicIdentityError as PublicIdentityError, errors_PublicImportSubdirNotFound as PublicImportSubdirNotFound, errors_PublicInternalForkVmNotFound as PublicInternalForkVmNotFound, errors_PublicInternalVmNotFound as PublicInternalVmNotFound, errors_PublicInvalidDeploymentRequest as PublicInvalidDeploymentRequest, errors_PublicInvalidDomain as PublicInvalidDomain, errors_PublicInvalidDomains as PublicInvalidDomains, errors_PublicInvalidQuery as PublicInvalidQuery, errors_PublicInvalidRange as PublicInvalidRange, errors_PublicInvalidRevision as PublicInvalidRevision, errors_PublicListIdentitiesFailed as PublicListIdentitiesFailed, errors_PublicListPermissionsFailed as PublicListPermissionsFailed, errors_PublicListRepositoriesFailed as PublicListRepositoriesFailed, errors_PublicListRunsFailed as PublicListRunsFailed, errors_PublicListTokensFailed as PublicListTokensFailed, errors_PublicLockGenerationFailed as PublicLockGenerationFailed, errors_PublicLockfileError as PublicLockfileError, errors_PublicLoggingFailed as PublicLoggingFailed, errors_PublicLogsFailed as PublicLogsFailed, errors_PublicLogsNotFound as PublicLogsNotFound, errors_PublicMetadataWriteFailed as PublicMetadataWriteFailed, errors_PublicNetworkPermissionsFailed as PublicNetworkPermissionsFailed, errors_PublicNoDomainOwnership as PublicNoDomainOwnership, errors_PublicNodeModulesDownloadFailed as PublicNodeModulesDownloadFailed, errors_PublicNodeModulesInstallFailed as PublicNodeModulesInstallFailed, errors_PublicObservabilityAccessDenied as PublicObservabilityAccessDenied, errors_PublicObservabilityDatabaseError as PublicObservabilityDatabaseError, errors_PublicOrderNotFound as PublicOrderNotFound, errors_PublicParseLogsFailed as PublicParseLogsFailed, errors_PublicParseResponseError as PublicParseResponseError, errors_PublicPathNotFound as PublicPathNotFound, errors_PublicPermissionDenied as PublicPermissionDenied, errors_PublicPermissionError as PublicPermissionError, errors_PublicPreVerifyChallengeMismatch as PublicPreVerifyChallengeMismatch, errors_PublicPreVerifyFailedFetch as PublicPreVerifyFailedFetch, errors_PublicPreVerifyFailedParse as PublicPreVerifyFailedParse, errors_PublicPreVerifyRouteNotFound as PublicPreVerifyRouteNotFound, errors_PublicProjectNotFound as PublicProjectNotFound, errors_PublicReadFileFailed as PublicReadFileFailed, errors_PublicRecordOwnershipError as PublicRecordOwnershipError, errors_PublicReferenceNotFound as PublicReferenceNotFound, errors_PublicRepositoryNotFound as PublicRepositoryNotFound, errors_PublicRequestFailed as PublicRequestFailed, errors_PublicResizeFailed as PublicResizeFailed, errors_PublicRestartFailed as PublicRestartFailed, errors_PublicRestoreFailed as PublicRestoreFailed, errors_PublicRetrieveLogsFailed as PublicRetrieveLogsFailed, errors_PublicRevokePermissionFailed as PublicRevokePermissionFailed, errors_PublicRevokeTokenFailed as PublicRevokeTokenFailed, errors_PublicRunNotFound as PublicRunNotFound, errors_PublicSerializationError as PublicSerializationError, errors_PublicServiceAlreadyExists as PublicServiceAlreadyExists, errors_PublicShutdownFailed as PublicShutdownFailed, errors_PublicSnapshotVmBadRequest as PublicSnapshotVmBadRequest, errors_PublicSourceNotFound as PublicSourceNotFound, errors_PublicSourceUnauthorized as PublicSourceUnauthorized, errors_PublicStatusFailed as PublicStatusFailed, errors_PublicTagNotFound as PublicTagNotFound, errors_PublicTokenError as PublicTokenError, errors_PublicTreeNotFound as PublicTreeNotFound, errors_PublicTriggerError as PublicTriggerError, errors_PublicUnsupportedTransfer as PublicUnsupportedTransfer, errors_PublicUpdateDefaultBranchFailed as PublicUpdateDefaultBranchFailed, errors_PublicUpdatePermissionFailed as PublicUpdatePermissionFailed, errors_PublicUserAlreadyExists as PublicUserAlreadyExists, errors_PublicVerificationFailed as PublicVerificationFailed, errors_PublicVerificationNotFound as PublicVerificationNotFound, errors_PublicWaitTimeout as PublicWaitTimeout, errors_PublicWatchFilesFailed as PublicWatchFilesFailed, errors_PublicWebDeploymentBadRequest as PublicWebDeploymentBadRequest, errors_PublicWriteFileFailed as PublicWriteFileFailed, errors_PublicWriteScriptFailed as PublicWriteScriptFailed, errors_UnauthorizedErrorPublic as UnauthorizedErrorPublic, errors_VmNotFoundPublic as VmNotFoundPublic, errors_VmOperationDeniedDuringTransactionPublic as VmOperationDeniedDuringTransactionPublic, errors_VmTransactionIdMismatchPublic as VmTransactionIdMismatchPublic };
8544
9334
  }
8545
9335
 
8546
9336
  /**
@@ -8645,39 +9435,116 @@ declare class DomainsNamespace {
8645
9435
  }): Promise<ResponseGetDomainsV1Domains200>;
8646
9436
  }
8647
9437
 
8648
- declare class GitRepo {
9438
+ /**
9439
+ * Namespace for managing branches within a Git repository.
9440
+ *
9441
+ * Provides methods to list branches, get branch details, and manage the default branch.
9442
+ *
9443
+ * @example
9444
+ * ```ts
9445
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9446
+ *
9447
+ * // List all branches
9448
+ * const branches = await repo.branches.list();
9449
+ *
9450
+ * // Get the default branch
9451
+ * const { defaultBranch } = await repo.branches.getDefaultBranch();
9452
+ * ```
9453
+ */
9454
+ declare class GitRepoBranchesNamespace {
9455
+ private repoId;
8649
9456
  private apiClient;
8650
- readonly repoId: string;
8651
9457
  constructor(repoId: string, apiClient: ApiClient);
9458
+ /**
9459
+ * Get the default branch for this repository.
9460
+ */
9461
+ getDefaultBranch(): Promise<ResponseGetGitV1RepoRepoIdDefaultBranch200>;
8652
9462
  /**
8653
9463
  * Set the default branch for this repository.
8654
9464
  */
8655
9465
  setDefaultBranch({ defaultBranch, }: {
8656
9466
  defaultBranch: string;
8657
9467
  }): Promise<ResponsePutGitV1RepoRepoIdDefaultBranch200>;
9468
+ list(): Promise<ResponseGetGitV1RepoRepoGitRefsHeads200>;
9469
+ get({ branchName, }: {
9470
+ branchName: string;
9471
+ }): Promise<ResponseGetGitV1RepoRepoGitRefsHeadsBranch200>;
9472
+ }
9473
+ /**
9474
+ * Namespace for managing GitHub synchronization for a repository.
9475
+ *
9476
+ * Enables bidirectional sync between a Freestyle Git repository and a GitHub repository.
9477
+ * When enabled, pushes to either repository are automatically synced to the other.
9478
+ *
9479
+ * @example
9480
+ * ```ts
9481
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9482
+ *
9483
+ * // Enable sync with a GitHub repository
9484
+ * await repo.githubSync.enable({ githubRepoName: "owner/repo" });
9485
+ *
9486
+ * // Check sync status
9487
+ * const config = await repo.githubSync.get();
9488
+ *
9489
+ * // Disable sync
9490
+ * await repo.githubSync.disable();
9491
+ * ```
9492
+ */
9493
+ declare class GitRepoGitHubSyncNamespace {
9494
+ private repoId;
9495
+ private apiClient;
9496
+ constructor(repoId: string, apiClient: ApiClient);
8658
9497
  /**
8659
- * Get the default branch for this repository.
9498
+ * Get the GitHub sync configuration for this repository.
9499
+ * Returns null if GitHub sync is not configured.
8660
9500
  */
8661
- getDefaultBranch(): Promise<ResponseGetGitV1RepoRepoIdDefaultBranch200>;
9501
+ get(): Promise<ResponseGetGitV1RepoRepoIdGithubSync200 | null>;
8662
9502
  /**
8663
- * Get the contents of this repository at the given path.
9503
+ * Enable GitHub sync for this repository.
8664
9504
  */
8665
- getContents({ path, ref, }?: {
8666
- path?: string;
8667
- ref?: string;
8668
- }): Promise<ResponseGetGitV1RepoRepoContentsPath200>;
9505
+ enable({ githubRepoName }: {
9506
+ githubRepoName: string;
9507
+ }): Promise<void>;
8669
9508
  /**
8670
- * Get the GitHub sync configuration for this repository.
9509
+ * Disable GitHub sync for this repository.
8671
9510
  */
8672
- getGitHubSyncConfig(): Promise<ResponseGetGitV1RepoRepoIdGithubSync200 | null>;
9511
+ disable(): Promise<void>;
9512
+ }
9513
+ /**
9514
+ * Namespace for managing Git triggers (webhooks) for a repository.
9515
+ *
9516
+ * Triggers allow you to receive webhook notifications when events occur in your
9517
+ * repository, such as pushes to specific branches or changes to specific files.
9518
+ *
9519
+ * @example
9520
+ * ```ts
9521
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9522
+ *
9523
+ * // Create a trigger for push events on main branch
9524
+ * const { triggerId } = await repo.triggers.create({
9525
+ * trigger: { event: "push", branch: ["main"] },
9526
+ * action: { type: "webhook", url: "https://your-webhook-url.com" }
9527
+ * });
9528
+ *
9529
+ * // List all triggers
9530
+ * const triggers = await repo.triggers.list();
9531
+ *
9532
+ * // Delete a trigger
9533
+ * await repo.triggers.delete({ triggerId });
9534
+ * ```
9535
+ */
9536
+ declare class GitRepoTriggersNamespace {
9537
+ private repoId;
9538
+ private apiClient;
9539
+ constructor(repoId: string, apiClient: ApiClient);
8673
9540
  /**
8674
9541
  * List git triggers for this repository.
8675
9542
  */
8676
- listTriggers(): Promise<ResponseGetGitV1RepoRepoTrigger200>;
9543
+ list(): Promise<ResponseGetGitV1RepoRepoTrigger200>;
8677
9544
  /**
8678
9545
  * Create a git trigger for this repository.
8679
9546
  */
8680
- createTrigger({ trigger, action, }: {
9547
+ create({ trigger, action, }: {
8681
9548
  trigger: PostGitV1RepoRepoTriggerRequestBody["trigger"];
8682
9549
  action: PostGitV1RepoRepoTriggerRequestBody["action"];
8683
9550
  }): Promise<{
@@ -8686,19 +9553,438 @@ declare class GitRepo {
8686
9553
  /**
8687
9554
  * Delete a git trigger.
8688
9555
  */
8689
- deleteTrigger({ triggerId, }: {
9556
+ delete({ triggerId, }: {
8690
9557
  triggerId: string;
8691
9558
  }): Promise<ResponseDeleteGitV1RepoRepoTriggerTrigger200>;
9559
+ }
9560
+ /**
9561
+ * Namespace for accessing blob objects in the Git object database.
9562
+ *
9563
+ * Blobs represent the raw content of files in Git. Content is returned base64-encoded.
9564
+ *
9565
+ * This is a low-level API for working with Git objects directly. For most use cases,
9566
+ * you'll want to use the higher-level `contents` API.
9567
+ *
9568
+ * @example
9569
+ * ```ts
9570
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9571
+ *
9572
+ * // Get a blob by its SHA hash
9573
+ * const blob = await repo.odb.blobs.get({ sha: "abc123..." });
9574
+ * const content = atob(blob.content); // Decode base64 content
9575
+ * ```
9576
+ */
9577
+ declare class GitRepoOdbBlobsNamespace {
9578
+ private repoId;
9579
+ private apiClient;
9580
+ constructor(repoId: string, apiClient: ApiClient);
9581
+ get({ sha, }: {
9582
+ sha: string;
9583
+ }): Promise<ResponseGetGitV1RepoRepoGitBlobsHash200>;
9584
+ }
9585
+ /**
9586
+ * Namespace for accessing tree objects in the Git object database.
9587
+ *
9588
+ * Trees represent directories in Git. Each tree contains entries pointing to
9589
+ * blobs (files) or other trees (subdirectories).
9590
+ *
9591
+ * This is a low-level API for working with Git objects directly. For most use cases,
9592
+ * you'll want to use the higher-level `contents` API.
9593
+ *
9594
+ * @example
9595
+ * ```ts
9596
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9597
+ *
9598
+ * // Get a tree by its SHA hash
9599
+ * const tree = await repo.odb.trees.get({ sha: "def456..." });
9600
+ * for (const entry of tree.tree) {
9601
+ * console.log(`${entry.type}: ${entry.path}`);
9602
+ * }
9603
+ * ```
9604
+ */
9605
+ declare class GitRepoOdbTreesNamespace {
9606
+ private repoId;
9607
+ private apiClient;
9608
+ constructor(repoId: string, apiClient: ApiClient);
9609
+ get({ sha, }: {
9610
+ sha: string;
9611
+ }): Promise<ResponseGetGitV1RepoRepoGitTreesHash200>;
9612
+ }
9613
+ /**
9614
+ * Namespace for accessing repository contents.
9615
+ *
9616
+ * Provides methods to retrieve file and directory contents at specific revisions,
9617
+ * and download repository archives as tarball or zip.
9618
+ *
9619
+ * @example
9620
+ * ```ts
9621
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9622
+ *
9623
+ * // Get file contents at HEAD
9624
+ * const file = await repo.contents.get({ path: "README.md" });
9625
+ * const content = atob(file.content);
9626
+ *
9627
+ * // Get contents at a specific commit
9628
+ * const file = await repo.contents.get({
9629
+ * path: "src/index.ts",
9630
+ * rev: "abc123..."
9631
+ * });
9632
+ *
9633
+ * // Get directory listing
9634
+ * const dir = await repo.contents.get({ path: "src" });
9635
+ *
9636
+ * // Download as tarball
9637
+ * const tarball = await repo.contents.downloadTarball({ rev: "main" });
9638
+ *
9639
+ * // Download as zip
9640
+ * const zip = await repo.contents.downloadZip({ rev: "main" });
9641
+ * ```
9642
+ */
9643
+ declare class GitRepoContentsNamespace {
9644
+ private repoId;
9645
+ private apiClient;
9646
+ constructor(repoId: string, apiClient: ApiClient);
9647
+ /**
9648
+ * Get the contents of a file or directory at a specific path and revision.
9649
+ *
9650
+ * @param path - The path to the file or directory (empty string for root)
9651
+ * @param rev - The revision (branch, tag, or commit SHA) to get contents from
9652
+ * @returns File contents (base64 encoded) or directory listing
9653
+ */
9654
+ get({ path, rev, }?: {
9655
+ path?: string;
9656
+ /**
9657
+ * The revision (branch, tag, or commit SHA) to get contents from.
9658
+ */
9659
+ rev?: string;
9660
+ }): Promise<ResponseGetGitV1RepoRepoContentsPath200>;
9661
+ /**
9662
+ * Download repository contents as a tarball archive.
9663
+ *
9664
+ * @param rev - The revision (branch, tag, or commit SHA) to download
9665
+ * @returns The tarball as an ArrayBuffer
9666
+ *
9667
+ * @example
9668
+ * ```ts
9669
+ * const tarball = await repo.contents.downloadTarball({ rev: "main" });
9670
+ * await fs.writeFile("repo.tar", Buffer.from(tarball));
9671
+ * ```
9672
+ */
9673
+ downloadTarball({ rev, }?: {
9674
+ /**
9675
+ * The revision (branch, tag, or commit SHA) to download.
9676
+ */
9677
+ rev?: string;
9678
+ }): Promise<ArrayBuffer>;
9679
+ /**
9680
+ * Download repository contents as a zip archive.
9681
+ *
9682
+ * @param rev - The revision (branch, tag, or commit SHA) to download
9683
+ * @returns The zip file as an ArrayBuffer
9684
+ *
9685
+ * @example
9686
+ * ```ts
9687
+ * const zip = await repo.contents.downloadZip({ rev: "main" });
9688
+ * await fs.writeFile("repo.zip", Buffer.from(zip));
9689
+ * ```
9690
+ */
9691
+ downloadZip({ rev, }?: {
9692
+ /**
9693
+ * The revision (branch, tag, or commit SHA) to download.
9694
+ */
9695
+ rev?: string;
9696
+ }): Promise<ArrayBuffer>;
9697
+ }
9698
+ /**
9699
+ * Namespace for accessing commits in a Git repository.
9700
+ *
9701
+ * Provides methods to retrieve individual commits by SHA or list commits
9702
+ * with optional filtering.
9703
+ *
9704
+ * @example
9705
+ * ```ts
9706
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9707
+ *
9708
+ * // Get a specific commit
9709
+ * const commit = await repo.commits.get({ sha: "abc123..." });
9710
+ * console.log(commit.message);
9711
+ * console.log(commit.author.name);
9712
+ *
9713
+ * // List recent commits
9714
+ * const commits = await repo.commits.list();
9715
+ * ```
9716
+ */
9717
+ declare class GitRepoCommitsNamespace {
9718
+ private repoId;
9719
+ private apiClient;
9720
+ constructor(repoId: string, apiClient: ApiClient);
9721
+ /**
9722
+ * Get a specific commit by SHA.
9723
+ */
9724
+ get({ sha, }: {
9725
+ sha: string;
9726
+ }): Promise<ResponseGetGitV1RepoRepoGitCommitsHash200>;
9727
+ /**
9728
+ * List commits for this repository.
9729
+ */
9730
+ list(params?: GetGitV1RepoRepoGitCommitsQueryParams): Promise<ResponseGetGitV1RepoRepoGitCommits200>;
9731
+ }
9732
+ /**
9733
+ * Namespace for accessing tags in a Git repository.
9734
+ *
9735
+ * Provides methods to list tags, get tag references by name, and retrieve
9736
+ * annotated tag objects by their SHA.
9737
+ *
9738
+ * @example
9739
+ * ```ts
9740
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9741
+ *
9742
+ * // List all tags
9743
+ * const tags = await repo.tags.list();
9744
+ *
9745
+ * // Get a tag by name
9746
+ * const tag = await repo.tags.get({ tagName: "v1.0.0" });
9747
+ *
9748
+ * // Get an annotated tag object by SHA
9749
+ * const tagObject = await repo.tags.getByHash({ sha: "abc123..." });
9750
+ * ```
9751
+ */
9752
+ declare class GitRepoTagsNamespace {
9753
+ private repoId;
9754
+ private apiClient;
9755
+ constructor(repoId: string, apiClient: ApiClient);
9756
+ /**
9757
+ * List all tags in this repository.
9758
+ */
9759
+ list(): Promise<ResponseGetGitV1RepoRepoGitRefsTags200>;
9760
+ /**
9761
+ * Get a tag by name.
9762
+ */
9763
+ get({ tagName, }: {
9764
+ tagName: string;
9765
+ }): Promise<ResponseGetGitV1RepoRepoGitRefsTagsTag200>;
9766
+ /**
9767
+ * Get an annotated tag object by its SHA.
9768
+ */
9769
+ getByHash({ sha, }: {
9770
+ sha: string;
9771
+ }): Promise<ResponseGetGitV1RepoRepoGitTagsHash200>;
9772
+ }
9773
+ /**
9774
+ * Represents a Freestyle Git repository.
9775
+ *
9776
+ * Provides access to repository contents, branches, commits, tags, triggers,
9777
+ * and GitHub sync configuration through nested namespaces.
9778
+ *
9779
+ * @example
9780
+ * ```ts
9781
+ * // Get a reference to an existing repository
9782
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9783
+ *
9784
+ * // Access repository contents
9785
+ * const file = await repo.contents.get({ path: "src/index.ts", rev: "main" });
9786
+ * const content = atob(file.content);
9787
+ *
9788
+ * // Compare two commits
9789
+ * const diff = await repo.compare({ base: "main", head: "feature-branch" });
9790
+ *
9791
+ * // Access nested namespaces
9792
+ * const branches = await repo.branches.list();
9793
+ * const commits = await repo.commits.list();
9794
+ * ```
9795
+ */
9796
+ declare class GitRepo {
9797
+ private apiClient;
9798
+ readonly repoId: string;
9799
+ /**
9800
+ * Manage branches in this repository.
9801
+ *
9802
+ * @example
9803
+ * ```ts
9804
+ * // List all branches
9805
+ * const branches = await repo.branches.list();
9806
+ *
9807
+ * // Get a specific branch
9808
+ * const main = await repo.branches.get({ branchName: "main" });
9809
+ *
9810
+ * // Get/set default branch
9811
+ * const { defaultBranch } = await repo.branches.getDefaultBranch();
9812
+ * await repo.branches.setDefaultBranch({ defaultBranch: "develop" });
9813
+ * ```
9814
+ */
9815
+ readonly branches: GitRepoBranchesNamespace;
9816
+ /**
9817
+ * Access repository contents (files and directories).
9818
+ *
9819
+ * @example
9820
+ * ```ts
9821
+ * // Get file contents
9822
+ * const file = await repo.contents.get({ path: "README.md" });
9823
+ * const content = atob(file.content);
9824
+ *
9825
+ * // Get contents at a specific commit/branch/tag
9826
+ * const file = await repo.contents.get({
9827
+ * path: "src/index.ts",
9828
+ * rev: "main"
9829
+ * });
9830
+ *
9831
+ * // Get directory listing
9832
+ * const dir = await repo.contents.get({ path: "src" });
9833
+ *
9834
+ * // Download repository as tarball or zip
9835
+ * const tarball = await repo.contents.downloadTarball({ rev: "main" });
9836
+ * const zip = await repo.contents.downloadZip({ rev: "main" });
9837
+ * ```
9838
+ */
9839
+ readonly contents: GitRepoContentsNamespace;
9840
+ /**
9841
+ * Access commits in this repository.
9842
+ *
9843
+ * @example
9844
+ * ```ts
9845
+ * // Get a specific commit by SHA
9846
+ * const commit = await repo.commits.get({ sha: "abc123..." });
9847
+ * console.log(commit.message);
9848
+ * console.log(commit.author.name);
9849
+ *
9850
+ * // List recent commits
9851
+ * const commits = await repo.commits.list();
9852
+ * ```
9853
+ */
9854
+ readonly commits: GitRepoCommitsNamespace;
9855
+ /**
9856
+ * Access tags in this repository.
9857
+ *
9858
+ * @example
9859
+ * ```ts
9860
+ * // List all tags
9861
+ * const tags = await repo.tags.list();
9862
+ *
9863
+ * // Get a tag by name
9864
+ * const tag = await repo.tags.get({ tagName: "v1.0.0" });
9865
+ *
9866
+ * // Get an annotated tag object by SHA
9867
+ * const tagObject = await repo.tags.getByHash({ sha: "abc123..." });
9868
+ * ```
9869
+ */
9870
+ readonly tags: GitRepoTagsNamespace;
9871
+ /**
9872
+ * Manage webhook triggers for this repository.
9873
+ *
9874
+ * Triggers send HTTP POST requests to your URL when events occur,
9875
+ * such as pushes to specific branches or changes to specific files.
9876
+ *
9877
+ * @example
9878
+ * ```ts
9879
+ * // Create a trigger for pushes to main
9880
+ * const { triggerId } = await repo.triggers.create({
9881
+ * trigger: { event: "push", branch: ["main"] },
9882
+ * action: { type: "webhook", url: "https://your-server.com/webhook" }
9883
+ * });
9884
+ *
9885
+ * // List all triggers
9886
+ * const triggers = await repo.triggers.list();
9887
+ *
9888
+ * // Delete a trigger
9889
+ * await repo.triggers.delete({ triggerId });
9890
+ * ```
9891
+ */
9892
+ readonly triggers: GitRepoTriggersNamespace;
9893
+ /**
9894
+ * Manage GitHub synchronization for this repository.
9895
+ *
9896
+ * When enabled, pushes to either your Freestyle repository or the linked
9897
+ * GitHub repository are automatically synced to the other.
9898
+ *
9899
+ * @example
9900
+ * ```ts
9901
+ * // Enable sync with a GitHub repository
9902
+ * await repo.githubSync.enable({ githubRepoName: "owner/repo" });
9903
+ *
9904
+ * // Check sync configuration
9905
+ * const config = await repo.githubSync.get();
9906
+ *
9907
+ * // Disable sync
9908
+ * await repo.githubSync.disable();
9909
+ * ```
9910
+ */
9911
+ readonly githubSync: GitRepoGitHubSyncNamespace;
9912
+ /**
9913
+ * Access blob objects in the Git object database.
9914
+ *
9915
+ * Blobs represent raw file contents. Content is returned base64-encoded
9916
+ * for binary safety.
9917
+ *
9918
+ * @example
9919
+ * ```ts
9920
+ * // Get a blob by its SHA hash
9921
+ * const blob = await repo.blobs.get({ sha: "abc123..." });
9922
+ *
9923
+ * // Decode the base64 content
9924
+ * const content = atob(blob.content);
9925
+ * console.log(content);
9926
+ * ```
9927
+ */
9928
+ readonly blobs: GitRepoOdbBlobsNamespace;
9929
+ /**
9930
+ * Access tree objects in the Git object database.
9931
+ *
9932
+ * Trees represent directories in Git. Each tree contains entries
9933
+ * pointing to blobs (files) or other trees (subdirectories).
9934
+ *
9935
+ * @example
9936
+ * ```ts
9937
+ * // Get the root tree from a commit
9938
+ * const commit = await repo.commits.get({ sha: "abc123..." });
9939
+ * const tree = await repo.trees.get({ sha: commit.tree.sha });
9940
+ *
9941
+ * // Iterate over entries
9942
+ * for (const entry of tree.tree) {
9943
+ * if (entry.type === "blob") {
9944
+ * console.log(`File: ${entry.path}`);
9945
+ * } else {
9946
+ * console.log(`Directory: ${entry.path}`);
9947
+ * }
9948
+ * }
9949
+ * ```
9950
+ */
9951
+ readonly trees: GitRepoOdbTreesNamespace;
9952
+ constructor(repoId: string, apiClient: ApiClient);
8692
9953
  /**
8693
9954
  * Compare two revs in this repository.
8694
9955
  *
8695
9956
  * Head and base can be branch names, tags, or commit SHAs.
8696
9957
  */
8697
- compare({ base, head }: {
9958
+ compare({ base, head, }: {
8698
9959
  base: string;
8699
9960
  head: string;
8700
9961
  }): Promise<ResponseGetGitV1RepoRepoCompare200>;
8701
9962
  }
9963
+ /**
9964
+ * Namespace for managing Git repositories.
9965
+ *
9966
+ * Provides methods to create, list, delete, and get references to repositories.
9967
+ *
9968
+ * @example
9969
+ * ```ts
9970
+ * // Create a new empty repository
9971
+ * const { repoId, repo } = await freestyle.git.repos.create({});
9972
+ *
9973
+ * // Create a repository from a GitHub URL
9974
+ * const { repo } = await freestyle.git.repos.create({
9975
+ * source: { url: "https://github.com/owner/repo" }
9976
+ * });
9977
+ *
9978
+ * // List repositories
9979
+ * const repos = await freestyle.git.repos.list({ limit: 10 });
9980
+ *
9981
+ * // Get a reference to an existing repository
9982
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
9983
+ *
9984
+ * // Delete a repository
9985
+ * await freestyle.git.repos.delete({ repoId: "your-repo-id" });
9986
+ * ```
9987
+ */
8702
9988
  declare class GitReposNamespace {
8703
9989
  private apiClient;
8704
9990
  constructor(apiClient: ApiClient);
@@ -8719,7 +10005,7 @@ declare class GitReposNamespace {
8719
10005
  /**
8720
10006
  * Get a repository instance by ID.
8721
10007
  */
8722
- instance({ repoId }: {
10008
+ ref({ repoId }: {
8723
10009
  repoId: string;
8724
10010
  }): GitRepo;
8725
10011
  /**
@@ -8729,9 +10015,60 @@ declare class GitReposNamespace {
8729
10015
  repoId: string;
8730
10016
  }): Promise<ResponseDeleteGitV1RepoRepo200>;
8731
10017
  }
10018
+ /**
10019
+ * Root namespace for Freestyle Git operations.
10020
+ *
10021
+ * Freestyle Git provides multi-tenant Git repository hosting with a full API,
10022
+ * bidirectional GitHub sync, webhook triggers, and fine-grained access control.
10023
+ *
10024
+ * @example
10025
+ * ```ts
10026
+ * import { freestyle } from "freestyle-sandboxes";
10027
+ *
10028
+ * // Access the Git namespace
10029
+ * const git = freestyle.git;
10030
+ *
10031
+ * // Create a new repository
10032
+ * const { repoId, repo } = await git.repos.create({});
10033
+ *
10034
+ * // Clone from an existing Git URL
10035
+ * const { repo } = await git.repos.create({
10036
+ * source: { url: "https://github.com/owner/repo" }
10037
+ * });
10038
+ *
10039
+ * // Work with an existing repository
10040
+ * const repo = git.repos.ref({ repoId: "your-repo-id" });
10041
+ * const contents = await repo.contents.get({ path: "README.md" });
10042
+ * ```
10043
+ */
8732
10044
  declare class GitNamespace {
8733
10045
  private apiClient;
8734
10046
  private freestyle?;
10047
+ /**
10048
+ * Manage Git repositories.
10049
+ *
10050
+ * Create, list, delete, and get references to repositories.
10051
+ *
10052
+ * @example
10053
+ * ```ts
10054
+ * // Create a new empty repository
10055
+ * const { repoId, repo } = await freestyle.git.repos.create({});
10056
+ *
10057
+ * // Create from a GitHub URL
10058
+ * const { repo } = await freestyle.git.repos.create({
10059
+ * source: { url: "https://github.com/owner/repo" }
10060
+ * });
10061
+ *
10062
+ * // List repositories
10063
+ * const repos = await freestyle.git.repos.list({ limit: 10 });
10064
+ *
10065
+ * // Get a reference to an existing repository
10066
+ * const repo = freestyle.git.repos.ref({ repoId: "your-repo-id" });
10067
+ *
10068
+ * // Delete a repository
10069
+ * await freestyle.git.repos.delete({ repoId: "your-repo-id" });
10070
+ * ```
10071
+ */
8735
10072
  readonly repos: GitReposNamespace;
8736
10073
  constructor(apiClient: ApiClient, freestyle?: any | undefined);
8737
10074
  }
@@ -8740,24 +10077,30 @@ declare class Identity {
8740
10077
  private apiClient;
8741
10078
  readonly identityId: string;
8742
10079
  permissions: IdentityPermissions;
10080
+ tokens: IdentityTokens;
10081
+ constructor(identityId: string, apiClient: ApiClient);
10082
+ }
10083
+ declare class IdentityTokens {
10084
+ private identityId;
10085
+ private apiClient;
8743
10086
  constructor(identityId: string, apiClient: ApiClient);
8744
10087
  /**
8745
10088
  * Create a new access token for this identity.
8746
10089
  */
8747
- createToken(): Promise<{
10090
+ create(): Promise<{
8748
10091
  tokenId: string;
8749
10092
  token: string;
8750
10093
  }>;
8751
10094
  /**
8752
10095
  * Revoke an access token.
8753
10096
  */
8754
- revokeToken({ tokenId, }: {
10097
+ revoke({ tokenId, }: {
8755
10098
  tokenId: string;
8756
10099
  }): Promise<ResponseDeleteIdentityV1IdentitiesIdentityTokensToken200>;
8757
10100
  /**
8758
10101
  * List access tokens for this identity.
8759
10102
  */
8760
- listTokens(): Promise<ResponseGetIdentityV1IdentitiesIdentityTokens200>;
10103
+ list(): Promise<ResponseGetIdentityV1IdentitiesIdentityTokens200>;
8761
10104
  }
8762
10105
  declare class IdentityPermissions {
8763
10106
  private identityId;
@@ -8793,14 +10136,14 @@ declare class GitPermissions {
8793
10136
  /**
8794
10137
  * Grant this identity access to a repository.
8795
10138
  */
8796
- create({ repoId, permission, }: {
10139
+ grant({ repoId, permission, }: {
8797
10140
  repoId: string;
8798
10141
  permission: PostIdentityV1IdentitiesIdentityPermissionsGitRepoRequestBody["permission"];
8799
10142
  }): Promise<ResponsePostIdentityV1IdentitiesIdentityPermissionsGitRepo200>;
8800
10143
  /**
8801
10144
  * Revoke this identity's access to a repository.
8802
10145
  */
8803
- delete({ repoId, }: {
10146
+ revoke({ repoId, }: {
8804
10147
  repoId: string;
8805
10148
  }): Promise<ResponseDeleteIdentityV1IdentitiesIdentityPermissionsGitRepo200>;
8806
10149
  }
@@ -8831,14 +10174,14 @@ declare class VmPermissions {
8831
10174
  /**
8832
10175
  * Grant this identity access to a VM.
8833
10176
  */
8834
- create({ vmId, allowedUsers, }: {
10177
+ grant({ vmId, allowedUsers, }: {
8835
10178
  vmId: string;
8836
10179
  allowedUsers?: string[] | null;
8837
10180
  }): Promise<ResponsePostIdentityV1IdentitiesIdentityPermissionsVmVmId200>;
8838
10181
  /**
8839
10182
  * Revoke this identity's access to a VM.
8840
10183
  */
8841
- delete({ vmId, }: {
10184
+ revoke({ vmId, }: {
8842
10185
  vmId: string;
8843
10186
  }): Promise<ResponseDeleteIdentityV1IdentitiesIdentityPermissionsVmVmId200>;
8844
10187
  }
@@ -8917,25 +10260,42 @@ type Files = {
8917
10260
  path: string;
8918
10261
  content: string;
8919
10262
  }[];
8920
- type EdgeConfig = {
10263
+ type ServerlessConfig = {
10264
+ /**
10265
+ * Network permissions for the serverless environment.
10266
+ */
8921
10267
  networkPermissions?: {
8922
10268
  action: "allow" | "deny";
8923
10269
  domain: string;
8924
10270
  behavior: "exact" | "regex";
8925
10271
  }[];
10272
+ /**
10273
+ * Environment variables to set in the serverless environment.
10274
+ */
8926
10275
  envVars?: Record<string, string>;
10276
+ /**
10277
+ * NPM packages to include in the serverless runtime.
10278
+ *
10279
+ * Packages are cached globally for performance. Cache misses may result in longer cold starts,
10280
+ * but sunsequent invocations using the same package are instant. In reality, most popular packages are
10281
+ * already cached so you shouldn't need to worry about this much.
10282
+ *
10283
+ * Format: { "package-name": "version" }
10284
+ */
8927
10285
  nodeModules?: Record<string, string>;
10286
+ /**
10287
+ * Optional timeout in milliseconds.
10288
+ */
8928
10289
  timeoutMs?: number;
8929
- entrypointPath?: string;
8930
10290
  };
8931
- type CreateDeployment = CreateWebDeploymentSource & EdgeConfig & {
10291
+ type CreateDeployment = CreateWebDeploymentSource & ServerlessConfig & {
8932
10292
  build?: boolean;
8933
10293
  /** Wait for the deployment to be fully rolled out before returning. */
8934
10294
  waitForRollout?: boolean;
8935
10295
  domains?: string[];
8936
10296
  };
8937
10297
  /**
8938
- * Represents a deployment on the edge (web or execute).
10298
+ * Represents a deployment on the serverless platform (web or execute).
8939
10299
  */
8940
10300
  declare class Deployment {
8941
10301
  private apiClient;
@@ -8951,15 +10311,20 @@ declare class Deployment {
8951
10311
  getLogs(): Promise<ResponseGetObservabilityV1Logs200>;
8952
10312
  }
8953
10313
  /**
8954
- * Deployments namespace for edge web deployments.
10314
+ * Deployments namespace for serverless web deployments.
8955
10315
  */
8956
10316
  declare class DeploymentsNamespace {
8957
10317
  private apiClient;
8958
10318
  constructor(apiClient: ApiClient);
8959
10319
  /**
8960
- * Create a web deployment on the edge.
10320
+ * Create a serverless web deployment
8961
10321
  */
8962
- create({ ...body }: CreateDeployment): Promise<{
10322
+ create({ ...body }: CreateDeployment & {
10323
+ /**
10324
+ * Optional entrypoint path.
10325
+ */
10326
+ entrypointPath?: string;
10327
+ }): Promise<{
8963
10328
  deploymentId: string;
8964
10329
  deployment: Deployment;
8965
10330
  domains: string[];
@@ -8979,7 +10344,7 @@ declare class DeploymentsNamespace {
8979
10344
  }): Deployment;
8980
10345
  }
8981
10346
  /**
8982
- * Runs namespace for edge script execution.
10347
+ * Runs namespace for serverless script execution.
8983
10348
  */
8984
10349
  declare class RunsNamespace {
8985
10350
  private apiClient;
@@ -8987,9 +10352,17 @@ declare class RunsNamespace {
8987
10352
  /**
8988
10353
  * Create and execute a script run.
8989
10354
  */
8990
- create<T = any>({ code, ...config }: EdgeConfig & {
10355
+ create<T = any>({ code, config, outgoingHeaders, outgoingProxy, }: {
8991
10356
  code: string;
8992
- customHeaders?: Record<string, string>;
10357
+ config: ServerlessConfig;
10358
+ /**
10359
+ * Optional headers to include in outgoing requests made by the script.
10360
+ */
10361
+ outgoingHeaders?: Record<string, string>;
10362
+ /**
10363
+ * Optional proxy URL for outgoing requests made by the serverless execution.
10364
+ */
10365
+ outgoingProxy?: string;
8993
10366
  }): Promise<{
8994
10367
  result: T;
8995
10368
  logs: {
@@ -9015,9 +10388,9 @@ declare class RunsNamespace {
9015
10388
  }>;
9016
10389
  }
9017
10390
  /**
9018
- * Edge namespace for edge compute operations.
10391
+ * Serverless namespace for serverless compute operations.
9019
10392
  */
9020
- declare class EdgeNamespace {
10393
+ declare class ServerlessNamespace {
9021
10394
  private apiClient;
9022
10395
  readonly deployments: DeploymentsNamespace;
9023
10396
  readonly runs: RunsNamespace;
@@ -9349,7 +10722,13 @@ interface CreateSnapshotRequest {
9349
10722
  declare class FileSystem {
9350
10723
  private vmId;
9351
10724
  private client;
10725
+ private vm;
9352
10726
  constructor(vmId: string, client: ApiClient);
10727
+ /**
10728
+ * @internal
10729
+ * Set the parent VM instance for exec operations
10730
+ */
10731
+ _setVm(vm: Vm): void;
9353
10732
  /**
9354
10733
  * Read a file from the VM as a buffer.
9355
10734
  * @param filepath The path to the file in the VM
@@ -9381,17 +10760,22 @@ declare class FileSystem {
9381
10760
  * @param path The path to the directory in the VM
9382
10761
  * @returns Array of file/directory names
9383
10762
  */
9384
- readDir(path: string): Promise<string[]>;
10763
+ readDir(path: string): Promise<{
10764
+ name: string;
10765
+ kind: string;
10766
+ }[]>;
9385
10767
  /**
9386
10768
  * Create a directory in the VM.
9387
10769
  * @param path The path to create
10770
+ * @param recursive Create parent directories if needed (default: false)
9388
10771
  */
9389
- mkdir(path: string): Promise<void>;
10772
+ mkdir(path: string, recursive?: boolean): Promise<void>;
9390
10773
  /**
9391
10774
  * Remove a file or directory from the VM.
9392
10775
  * @param path The path to remove
10776
+ * @param recursive Remove directories and their contents recursively (default: false)
9393
10777
  */
9394
- remove(path: string): Promise<void>;
10778
+ remove(path: string, recursive?: boolean): Promise<void>;
9395
10779
  /**
9396
10780
  * Check if a file or directory exists in the VM.
9397
10781
  * @param path The path to check
@@ -9403,7 +10787,16 @@ declare class FileSystem {
9403
10787
  * @param path The path to stat
9404
10788
  * @returns File/directory stats
9405
10789
  */
9406
- stat(path: string): Promise<any>;
10790
+ stat(path: string): Promise<{
10791
+ size: number;
10792
+ isFile: boolean;
10793
+ isDirectory: boolean;
10794
+ isSymlink: boolean;
10795
+ permissions: string;
10796
+ owner: string;
10797
+ group: string;
10798
+ modified: string;
10799
+ }>;
9407
10800
  /**
9408
10801
  * Watch for file changes in the VM.
9409
10802
  * @returns An async generator that yields file change events
@@ -9526,6 +10919,13 @@ declare class Vm {
9526
10919
  * @returns Await response with exit information
9527
10920
  */
9528
10921
  waitForExit(): Promise<ResponsePostV1VmsVmIdAwait200>;
10922
+ /**
10923
+ * Create a snapshot of the VM.
10924
+ *
10925
+ * @param body Optional snapshot configuration
10926
+ * @returns Snapshot ID and Source VM ID
10927
+ */
10928
+ snapshot(body?: PostV1VmsVmIdSnapshotRequestBody): Promise<ResponsePostV1VmsVmIdSnapshot200>;
9529
10929
  /**
9530
10930
  * Execute a command in the VM and wait for it to complete.
9531
10931
  * @param command The command to execute
@@ -9606,9 +11006,12 @@ declare class VmsNamespace {
9606
11006
  vmId: string;
9607
11007
  }): Promise<ResponseDeleteV1VmsVmId200>;
9608
11008
  }
11009
+ type TemplateOptions = CreateSnapshotRequest["template"] & {
11010
+ template?: VmTemplate;
11011
+ };
9609
11012
  declare class VmTemplate {
9610
- private template;
9611
- constructor(template: CreateSnapshotRequest["template"]);
11013
+ raw: TemplateOptions;
11014
+ constructor(template: TemplateOptions);
9612
11015
  }
9613
11016
 
9614
11017
  type FreestyleOptions = ApiClientConfig;
@@ -9618,7 +11021,7 @@ declare class Freestyle {
9618
11021
  readonly git: GitNamespace;
9619
11022
  readonly identities: IdentitiesNamespace;
9620
11023
  readonly dns: DnsNamespace;
9621
- readonly edge: EdgeNamespace;
11024
+ readonly serverless: ServerlessNamespace;
9622
11025
  readonly vms: VmsNamespace;
9623
11026
  constructor(options?: FreestyleOptions);
9624
11027
  /**