@daytonaio/api-client 0.16.0 → 0.17.0

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 (71) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/api/api-keys-api.ts +16 -0
  3. package/api/docker-registry-api.ts +28 -0
  4. package/api/images-api.ts +20 -0
  5. package/api/nodes-api.ts +12 -0
  6. package/api/organizations-api.ts +301 -0
  7. package/api/preview-api.ts +4 -0
  8. package/api/toolbox-api.ts +144 -0
  9. package/api/workspace-api.ts +62 -8
  10. package/dist/api/api-keys-api.js +12 -0
  11. package/dist/api/docker-registry-api.js +21 -0
  12. package/dist/api/images-api.js +15 -0
  13. package/dist/api/nodes-api.js +9 -0
  14. package/dist/api/organizations-api.d.ts +71 -0
  15. package/dist/api/organizations-api.js +219 -0
  16. package/dist/api/preview-api.js +3 -0
  17. package/dist/api/toolbox-api.js +108 -0
  18. package/dist/api/workspace-api.d.ts +9 -8
  19. package/dist/api/workspace-api.js +43 -4
  20. package/dist/esm/api/api-keys-api.js +13 -1
  21. package/dist/esm/api/docker-registry-api.js +22 -1
  22. package/dist/esm/api/images-api.js +16 -1
  23. package/dist/esm/api/nodes-api.js +10 -1
  24. package/dist/esm/api/organizations-api.d.ts +71 -0
  25. package/dist/esm/api/organizations-api.js +220 -1
  26. package/dist/esm/api/preview-api.js +4 -1
  27. package/dist/esm/api/toolbox-api.js +109 -1
  28. package/dist/esm/api/workspace-api.d.ts +9 -8
  29. package/dist/esm/api/workspace-api.js +44 -5
  30. package/dist/esm/models/create-image.d.ts +2 -2
  31. package/dist/esm/models/create-organization.d.ts +0 -66
  32. package/dist/esm/models/create-workspace.d.ts +0 -12
  33. package/dist/esm/models/image-dto.d.ts +2 -2
  34. package/dist/esm/models/index.d.ts +2 -0
  35. package/dist/esm/models/index.js +2 -0
  36. package/dist/esm/models/list-workspaces-labels-parameter.d.ts +26 -0
  37. package/dist/esm/models/list-workspaces-labels-parameter.js +14 -0
  38. package/dist/esm/models/organization-suspension.d.ts +30 -0
  39. package/dist/esm/models/organization-suspension.js +14 -0
  40. package/dist/esm/models/organization.d.ts +24 -0
  41. package/dist/esm/models/workspace-info.d.ts +2 -1
  42. package/dist/esm/models/workspace-state.d.ts +1 -1
  43. package/dist/esm/models/workspace-state.js +1 -1
  44. package/dist/esm/models/workspace.d.ts +7 -0
  45. package/dist/models/create-image.d.ts +2 -2
  46. package/dist/models/create-organization.d.ts +0 -66
  47. package/dist/models/create-workspace.d.ts +0 -12
  48. package/dist/models/image-dto.d.ts +2 -2
  49. package/dist/models/index.d.ts +2 -0
  50. package/dist/models/index.js +2 -0
  51. package/dist/models/list-workspaces-labels-parameter.d.ts +26 -0
  52. package/dist/models/list-workspaces-labels-parameter.js +15 -0
  53. package/dist/models/organization-suspension.d.ts +30 -0
  54. package/dist/models/organization-suspension.js +15 -0
  55. package/dist/models/organization.d.ts +24 -0
  56. package/dist/models/workspace-info.d.ts +2 -1
  57. package/dist/models/workspace-state.d.ts +1 -1
  58. package/dist/models/workspace-state.js +1 -1
  59. package/dist/models/workspace.d.ts +7 -0
  60. package/models/create-image.ts +2 -2
  61. package/models/create-organization.ts +0 -66
  62. package/models/create-workspace.ts +0 -12
  63. package/models/image-dto.ts +2 -2
  64. package/models/index.ts +2 -0
  65. package/models/list-workspaces-labels-parameter.ts +27 -0
  66. package/models/organization-suspension.ts +33 -0
  67. package/models/organization.ts +24 -0
  68. package/models/workspace-info.ts +2 -1
  69. package/models/workspace-state.ts +1 -1
  70. package/models/workspace.ts +7 -0
  71. package/package.json +1 -1
@@ -14,7 +14,7 @@
14
14
  import globalAxios from 'axios';
15
15
  // Some imports not used depending on template conditions
16
16
  // @ts-ignore
17
- import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
17
+ import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
18
18
  // @ts-ignore
19
19
  import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
20
20
  /**
@@ -50,6 +50,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
50
50
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
51
51
  const localVarHeaderParameter = {};
52
52
  const localVarQueryParameter = {};
53
+ // authentication bearer required
54
+ // http bearer authentication required
55
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
53
56
  // authentication oauth2 required
54
57
  // oauth required
55
58
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -94,6 +97,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
94
97
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
95
98
  const localVarHeaderParameter = {};
96
99
  const localVarQueryParameter = {};
100
+ // authentication bearer required
101
+ // http bearer authentication required
102
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
97
103
  // authentication oauth2 required
98
104
  // oauth required
99
105
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -134,6 +140,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
134
140
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
135
141
  const localVarHeaderParameter = {};
136
142
  const localVarQueryParameter = {};
143
+ // authentication bearer required
144
+ // http bearer authentication required
145
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
137
146
  // authentication oauth2 required
138
147
  // oauth required
139
148
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -177,6 +186,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
177
186
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
178
187
  const localVarHeaderParameter = {};
179
188
  const localVarQueryParameter = {};
189
+ // authentication bearer required
190
+ // http bearer authentication required
191
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
180
192
  // authentication oauth2 required
181
193
  // oauth required
182
194
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -215,6 +227,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
215
227
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
216
228
  const localVarHeaderParameter = {};
217
229
  const localVarQueryParameter = {};
230
+ // authentication bearer required
231
+ // http bearer authentication required
232
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
218
233
  // authentication oauth2 required
219
234
  // oauth required
220
235
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -256,6 +271,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
256
271
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
257
272
  const localVarHeaderParameter = {};
258
273
  const localVarQueryParameter = {};
274
+ // authentication bearer required
275
+ // http bearer authentication required
276
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
259
277
  // authentication oauth2 required
260
278
  // oauth required
261
279
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -301,6 +319,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
301
319
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
302
320
  const localVarHeaderParameter = {};
303
321
  const localVarQueryParameter = {};
322
+ // authentication bearer required
323
+ // http bearer authentication required
324
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
304
325
  // authentication oauth2 required
305
326
  // oauth required
306
327
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -344,6 +365,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
344
365
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
345
366
  const localVarHeaderParameter = {};
346
367
  const localVarQueryParameter = {};
368
+ // authentication bearer required
369
+ // http bearer authentication required
370
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
347
371
  // authentication oauth2 required
348
372
  // oauth required
349
373
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -388,6 +412,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
388
412
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
389
413
  const localVarHeaderParameter = {};
390
414
  const localVarQueryParameter = {};
415
+ // authentication bearer required
416
+ // http bearer authentication required
417
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
391
418
  // authentication oauth2 required
392
419
  // oauth required
393
420
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -426,6 +453,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
426
453
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
427
454
  const localVarHeaderParameter = {};
428
455
  const localVarQueryParameter = {};
456
+ // authentication bearer required
457
+ // http bearer authentication required
458
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
429
459
  // authentication oauth2 required
430
460
  // oauth required
431
461
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -466,6 +496,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
466
496
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
467
497
  const localVarHeaderParameter = {};
468
498
  const localVarQueryParameter = {};
499
+ // authentication bearer required
500
+ // http bearer authentication required
501
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
469
502
  // authentication oauth2 required
470
503
  // oauth required
471
504
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -510,6 +543,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
510
543
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
511
544
  const localVarHeaderParameter = {};
512
545
  const localVarQueryParameter = {};
546
+ // authentication bearer required
547
+ // http bearer authentication required
548
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
513
549
  // authentication oauth2 required
514
550
  // oauth required
515
551
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -555,6 +591,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
555
591
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
556
592
  const localVarHeaderParameter = {};
557
593
  const localVarQueryParameter = {};
594
+ // authentication bearer required
595
+ // http bearer authentication required
596
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
558
597
  // authentication oauth2 required
559
598
  // oauth required
560
599
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -596,6 +635,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
596
635
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
597
636
  const localVarHeaderParameter = {};
598
637
  const localVarQueryParameter = {};
638
+ // authentication bearer required
639
+ // http bearer authentication required
640
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
599
641
  // authentication oauth2 required
600
642
  // oauth required
601
643
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -636,6 +678,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
636
678
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
637
679
  const localVarHeaderParameter = {};
638
680
  const localVarQueryParameter = {};
681
+ // authentication bearer required
682
+ // http bearer authentication required
683
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
639
684
  // authentication oauth2 required
640
685
  // oauth required
641
686
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -676,6 +721,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
676
721
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
677
722
  const localVarHeaderParameter = {};
678
723
  const localVarQueryParameter = {};
724
+ // authentication bearer required
725
+ // http bearer authentication required
726
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
679
727
  // authentication oauth2 required
680
728
  // oauth required
681
729
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -716,6 +764,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
716
764
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
717
765
  const localVarHeaderParameter = {};
718
766
  const localVarQueryParameter = {};
767
+ // authentication bearer required
768
+ // http bearer authentication required
769
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
719
770
  // authentication oauth2 required
720
771
  // oauth required
721
772
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -756,6 +807,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
756
807
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
757
808
  const localVarHeaderParameter = {};
758
809
  const localVarQueryParameter = {};
810
+ // authentication bearer required
811
+ // http bearer authentication required
812
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
759
813
  // authentication oauth2 required
760
814
  // oauth required
761
815
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -797,6 +851,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
797
851
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
798
852
  const localVarHeaderParameter = {};
799
853
  const localVarQueryParameter = {};
854
+ // authentication bearer required
855
+ // http bearer authentication required
856
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
800
857
  // authentication oauth2 required
801
858
  // oauth required
802
859
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -838,6 +895,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
838
895
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
839
896
  const localVarHeaderParameter = {};
840
897
  const localVarQueryParameter = {};
898
+ // authentication bearer required
899
+ // http bearer authentication required
900
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
841
901
  // authentication oauth2 required
842
902
  // oauth required
843
903
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -879,6 +939,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
879
939
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
880
940
  const localVarHeaderParameter = {};
881
941
  const localVarQueryParameter = {};
942
+ // authentication bearer required
943
+ // http bearer authentication required
944
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
882
945
  // authentication oauth2 required
883
946
  // oauth required
884
947
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -919,6 +982,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
919
982
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
920
983
  const localVarHeaderParameter = {};
921
984
  const localVarQueryParameter = {};
985
+ // authentication bearer required
986
+ // http bearer authentication required
987
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
922
988
  // authentication oauth2 required
923
989
  // oauth required
924
990
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -957,6 +1023,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
957
1023
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
958
1024
  const localVarHeaderParameter = {};
959
1025
  const localVarQueryParameter = {};
1026
+ // authentication bearer required
1027
+ // http bearer authentication required
1028
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
960
1029
  // authentication oauth2 required
961
1030
  // oauth required
962
1031
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -995,6 +1064,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
995
1064
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
996
1065
  const localVarHeaderParameter = {};
997
1066
  const localVarQueryParameter = {};
1067
+ // authentication bearer required
1068
+ // http bearer authentication required
1069
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
998
1070
  // authentication oauth2 required
999
1071
  // oauth required
1000
1072
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1033,6 +1105,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1033
1105
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1034
1106
  const localVarHeaderParameter = {};
1035
1107
  const localVarQueryParameter = {};
1108
+ // authentication bearer required
1109
+ // http bearer authentication required
1110
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1036
1111
  // authentication oauth2 required
1037
1112
  // oauth required
1038
1113
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1073,6 +1148,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1073
1148
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1074
1149
  const localVarHeaderParameter = {};
1075
1150
  const localVarQueryParameter = {};
1151
+ // authentication bearer required
1152
+ // http bearer authentication required
1153
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1076
1154
  // authentication oauth2 required
1077
1155
  // oauth required
1078
1156
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1113,6 +1191,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1113
1191
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1114
1192
  const localVarHeaderParameter = {};
1115
1193
  const localVarQueryParameter = {};
1194
+ // authentication bearer required
1195
+ // http bearer authentication required
1196
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1116
1197
  // authentication oauth2 required
1117
1198
  // oauth required
1118
1199
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1159,6 +1240,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1159
1240
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1160
1241
  const localVarHeaderParameter = {};
1161
1242
  const localVarQueryParameter = {};
1243
+ // authentication bearer required
1244
+ // http bearer authentication required
1245
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1162
1246
  // authentication oauth2 required
1163
1247
  // oauth required
1164
1248
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1206,6 +1290,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1206
1290
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1207
1291
  const localVarHeaderParameter = {};
1208
1292
  const localVarQueryParameter = {};
1293
+ // authentication bearer required
1294
+ // http bearer authentication required
1295
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1209
1296
  // authentication oauth2 required
1210
1297
  // oauth required
1211
1298
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1246,6 +1333,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1246
1333
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1247
1334
  const localVarHeaderParameter = {};
1248
1335
  const localVarQueryParameter = {};
1336
+ // authentication bearer required
1337
+ // http bearer authentication required
1338
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1249
1339
  // authentication oauth2 required
1250
1340
  // oauth required
1251
1341
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1292,6 +1382,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1292
1382
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1293
1383
  const localVarHeaderParameter = {};
1294
1384
  const localVarQueryParameter = {};
1385
+ // authentication bearer required
1386
+ // http bearer authentication required
1387
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1295
1388
  // authentication oauth2 required
1296
1389
  // oauth required
1297
1390
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1342,6 +1435,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1342
1435
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1343
1436
  const localVarHeaderParameter = {};
1344
1437
  const localVarQueryParameter = {};
1438
+ // authentication bearer required
1439
+ // http bearer authentication required
1440
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1345
1441
  // authentication oauth2 required
1346
1442
  // oauth required
1347
1443
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1386,6 +1482,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1386
1482
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1387
1483
  const localVarHeaderParameter = {};
1388
1484
  const localVarQueryParameter = {};
1485
+ // authentication bearer required
1486
+ // http bearer authentication required
1487
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1389
1488
  // authentication oauth2 required
1390
1489
  // oauth required
1391
1490
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1429,6 +1528,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1429
1528
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1430
1529
  const localVarHeaderParameter = {};
1431
1530
  const localVarQueryParameter = {};
1531
+ // authentication bearer required
1532
+ // http bearer authentication required
1533
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1432
1534
  // authentication oauth2 required
1433
1535
  // oauth required
1434
1536
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1476,6 +1578,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1476
1578
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1477
1579
  const localVarHeaderParameter = {};
1478
1580
  const localVarQueryParameter = {};
1581
+ // authentication bearer required
1582
+ // http bearer authentication required
1583
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1479
1584
  // authentication oauth2 required
1480
1585
  // oauth required
1481
1586
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -1528,6 +1633,9 @@ export const ToolboxApiAxiosParamCreator = function (configuration) {
1528
1633
  const localVarHeaderParameter = {};
1529
1634
  const localVarQueryParameter = {};
1530
1635
  const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
1636
+ // authentication bearer required
1637
+ // http bearer authentication required
1638
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
1531
1639
  // authentication oauth2 required
1532
1640
  // oauth required
1533
1641
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
15
  import type { CreateWorkspace } from '../models';
16
+ import type { ListWorkspacesLabelsParameter } from '../models';
16
17
  import type { PortPreviewUrl } from '../models';
17
18
  import type { Workspace } from '../models';
18
19
  import type { WorkspaceLabels } from '../models';
@@ -83,11 +84,11 @@ export declare const WorkspaceApiAxiosParamCreator: (configuration?: Configurati
83
84
  * @summary List all workspaces
84
85
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
85
86
  * @param {boolean} [verbose] Include verbose output
86
- * @param {object} [labels] Filter workspaces by labels
87
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
87
88
  * @param {*} [options] Override http request option.
88
89
  * @throws {RequiredError}
89
90
  */
90
- listWorkspaces: (xDaytonaOrganizationID?: string, verbose?: boolean, labels?: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
91
+ listWorkspaces: (xDaytonaOrganizationID?: string, verbose?: boolean, labels?: ListWorkspacesLabelsParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
91
92
  /**
92
93
  *
93
94
  * @summary Replace workspace labels
@@ -214,11 +215,11 @@ export declare const WorkspaceApiFp: (configuration?: Configuration) => {
214
215
  * @summary List all workspaces
215
216
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
216
217
  * @param {boolean} [verbose] Include verbose output
217
- * @param {object} [labels] Filter workspaces by labels
218
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
218
219
  * @param {*} [options] Override http request option.
219
220
  * @throws {RequiredError}
220
221
  */
221
- listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workspace>>>;
222
+ listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: ListWorkspacesLabelsParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workspace>>>;
222
223
  /**
223
224
  *
224
225
  * @summary Replace workspace labels
@@ -345,11 +346,11 @@ export declare const WorkspaceApiFactory: (configuration?: Configuration, basePa
345
346
  * @summary List all workspaces
346
347
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
347
348
  * @param {boolean} [verbose] Include verbose output
348
- * @param {object} [labels] Filter workspaces by labels
349
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
349
350
  * @param {*} [options] Override http request option.
350
351
  * @throws {RequiredError}
351
352
  */
352
- listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: object, options?: RawAxiosRequestConfig): AxiosPromise<Array<Workspace>>;
353
+ listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: ListWorkspacesLabelsParameter, options?: RawAxiosRequestConfig): AxiosPromise<Array<Workspace>>;
353
354
  /**
354
355
  *
355
356
  * @summary Replace workspace labels
@@ -484,12 +485,12 @@ export declare class WorkspaceApi extends BaseAPI {
484
485
  * @summary List all workspaces
485
486
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
486
487
  * @param {boolean} [verbose] Include verbose output
487
- * @param {object} [labels] Filter workspaces by labels
488
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
488
489
  * @param {*} [options] Override http request option.
489
490
  * @throws {RequiredError}
490
491
  * @memberof WorkspaceApi
491
492
  */
492
- listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace[], any>>;
493
+ listWorkspaces(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: ListWorkspacesLabelsParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace[], any>>;
493
494
  /**
494
495
  *
495
496
  * @summary Replace workspace labels
@@ -14,7 +14,7 @@
14
14
  import globalAxios from 'axios';
15
15
  // Some imports not used depending on template conditions
16
16
  // @ts-ignore
17
- import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
17
+ import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
18
18
  // @ts-ignore
19
19
  import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
20
20
  /**
@@ -44,6 +44,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
44
44
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
45
45
  const localVarHeaderParameter = {};
46
46
  const localVarQueryParameter = {};
47
+ // authentication bearer required
48
+ // http bearer authentication required
49
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
47
50
  // authentication oauth2 required
48
51
  // oauth required
49
52
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -79,6 +82,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
79
82
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
80
83
  const localVarHeaderParameter = {};
81
84
  const localVarQueryParameter = {};
85
+ // authentication bearer required
86
+ // http bearer authentication required
87
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
82
88
  // authentication oauth2 required
83
89
  // oauth required
84
90
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -114,6 +120,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
114
120
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
115
121
  const localVarHeaderParameter = {};
116
122
  const localVarQueryParameter = {};
123
+ // authentication bearer required
124
+ // http bearer authentication required
125
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
117
126
  // authentication oauth2 required
118
127
  // oauth required
119
128
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -154,6 +163,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
154
163
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
155
164
  const localVarHeaderParameter = {};
156
165
  const localVarQueryParameter = {};
166
+ // authentication bearer required
167
+ // http bearer authentication required
168
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
157
169
  // authentication oauth2 required
158
170
  // oauth required
159
171
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -197,6 +209,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
197
209
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
198
210
  const localVarHeaderParameter = {};
199
211
  const localVarQueryParameter = {};
212
+ // authentication bearer required
213
+ // http bearer authentication required
214
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
200
215
  // authentication oauth2 required
201
216
  // oauth required
202
217
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -233,6 +248,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
233
248
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
234
249
  const localVarHeaderParameter = {};
235
250
  const localVarQueryParameter = {};
251
+ // authentication bearer required
252
+ // http bearer authentication required
253
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
236
254
  // authentication oauth2 required
237
255
  // oauth required
238
256
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -255,7 +273,7 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
255
273
  * @summary List all workspaces
256
274
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
257
275
  * @param {boolean} [verbose] Include verbose output
258
- * @param {object} [labels] Filter workspaces by labels
276
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
259
277
  * @param {*} [options] Override http request option.
260
278
  * @throws {RequiredError}
261
279
  */
@@ -270,6 +288,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
270
288
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
271
289
  const localVarHeaderParameter = {};
272
290
  const localVarQueryParameter = {};
291
+ // authentication bearer required
292
+ // http bearer authentication required
293
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
273
294
  // authentication oauth2 required
274
295
  // oauth required
275
296
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -316,6 +337,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
316
337
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
317
338
  const localVarHeaderParameter = {};
318
339
  const localVarQueryParameter = {};
340
+ // authentication bearer required
341
+ // http bearer authentication required
342
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
319
343
  // authentication oauth2 required
320
344
  // oauth required
321
345
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -356,6 +380,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
356
380
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
357
381
  const localVarHeaderParameter = {};
358
382
  const localVarQueryParameter = {};
383
+ // authentication bearer required
384
+ // http bearer authentication required
385
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
359
386
  // authentication oauth2 required
360
387
  // oauth required
361
388
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -398,6 +425,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
398
425
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
399
426
  const localVarHeaderParameter = {};
400
427
  const localVarQueryParameter = {};
428
+ // authentication bearer required
429
+ // http bearer authentication required
430
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
401
431
  // authentication oauth2 required
402
432
  // oauth required
403
433
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -433,6 +463,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
433
463
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
434
464
  const localVarHeaderParameter = {};
435
465
  const localVarQueryParameter = {};
466
+ // authentication bearer required
467
+ // http bearer authentication required
468
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
436
469
  // authentication oauth2 required
437
470
  // oauth required
438
471
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -468,6 +501,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
468
501
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
469
502
  const localVarHeaderParameter = {};
470
503
  const localVarQueryParameter = {};
504
+ // authentication bearer required
505
+ // http bearer authentication required
506
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
471
507
  // authentication oauth2 required
472
508
  // oauth required
473
509
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -508,6 +544,9 @@ export const WorkspaceApiAxiosParamCreator = function (configuration) {
508
544
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
509
545
  const localVarHeaderParameter = {};
510
546
  const localVarQueryParameter = {};
547
+ // authentication bearer required
548
+ // http bearer authentication required
549
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
511
550
  // authentication oauth2 required
512
551
  // oauth required
513
552
  await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
@@ -629,7 +668,7 @@ export const WorkspaceApiFp = function (configuration) {
629
668
  * @summary List all workspaces
630
669
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
631
670
  * @param {boolean} [verbose] Include verbose output
632
- * @param {object} [labels] Filter workspaces by labels
671
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
633
672
  * @param {*} [options] Override http request option.
634
673
  * @throws {RequiredError}
635
674
  */
@@ -829,7 +868,7 @@ export const WorkspaceApiFactory = function (configuration, basePath, axios) {
829
868
  * @summary List all workspaces
830
869
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
831
870
  * @param {boolean} [verbose] Include verbose output
832
- * @param {object} [labels] Filter workspaces by labels
871
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
833
872
  * @param {*} [options] Override http request option.
834
873
  * @throws {RequiredError}
835
874
  */
@@ -1021,7 +1060,7 @@ export class WorkspaceApi extends BaseAPI {
1021
1060
  * @summary List all workspaces
1022
1061
  * @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
1023
1062
  * @param {boolean} [verbose] Include verbose output
1024
- * @param {object} [labels] Filter workspaces by labels
1063
+ * @param {ListWorkspacesLabelsParameter} [labels] Filter workspaces by labels
1025
1064
  * @param {*} [options] Override http request option.
1026
1065
  * @throws {RequiredError}
1027
1066
  * @memberof WorkspaceApi
@@ -23,10 +23,10 @@ export interface CreateImage {
23
23
  name: string;
24
24
  /**
25
25
  * The entrypoint command for the image
26
- * @type {string}
26
+ * @type {Array<string>}
27
27
  * @memberof CreateImage
28
28
  */
29
- entrypoint?: string;
29
+ entrypoint?: Array<string>;
30
30
  /**
31
31
  * Whether the image is general
32
32
  * @type {boolean}