@daytonaio/api-client 0.16.0 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -0
- package/api/api-keys-api.ts +16 -0
- package/api/docker-registry-api.ts +28 -0
- package/api/images-api.ts +20 -0
- package/api/nodes-api.ts +12 -0
- package/api/organizations-api.ts +301 -0
- package/api/preview-api.ts +4 -0
- package/api/toolbox-api.ts +144 -0
- package/api/workspace-api.ts +61 -11
- package/dist/api/api-keys-api.js +65 -36
- package/dist/api/docker-registry-api.js +107 -63
- package/dist/api/images-api.js +79 -45
- package/dist/api/nodes-api.js +51 -27
- package/dist/api/organizations-api.d.ts +71 -0
- package/dist/api/organizations-api.js +485 -207
- package/dist/api/preview-api.js +43 -25
- package/dist/api/toolbox-api.js +513 -324
- package/dist/api/users-api.js +53 -36
- package/dist/api/workspace-api.d.ts +8 -8
- package/dist/api/workspace-api.js +196 -124
- package/dist/common.js +34 -19
- package/dist/esm/api/api-keys-api.js +66 -37
- package/dist/esm/api/docker-registry-api.js +108 -64
- package/dist/esm/api/images-api.js +80 -46
- package/dist/esm/api/nodes-api.js +52 -28
- package/dist/esm/api/organizations-api.d.ts +71 -0
- package/dist/esm/api/organizations-api.js +486 -208
- package/dist/esm/api/preview-api.js +44 -26
- package/dist/esm/api/toolbox-api.js +514 -325
- package/dist/esm/api/users-api.js +53 -36
- package/dist/esm/api/workspace-api.d.ts +8 -8
- package/dist/esm/api/workspace-api.js +197 -125
- package/dist/esm/common.js +34 -19
- package/dist/esm/models/create-image.d.ts +2 -2
- package/dist/esm/models/create-organization.d.ts +0 -66
- package/dist/esm/models/create-workspace.d.ts +0 -12
- package/dist/esm/models/image-dto.d.ts +2 -2
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/organization-suspension.d.ts +30 -0
- package/dist/esm/models/organization-suspension.js +14 -0
- package/dist/esm/models/organization.d.ts +24 -0
- package/dist/esm/models/workspace-info.d.ts +2 -1
- package/dist/esm/models/workspace-state.d.ts +1 -1
- package/dist/esm/models/workspace-state.js +1 -1
- package/dist/esm/models/workspace.d.ts +7 -0
- package/dist/models/create-image.d.ts +2 -2
- package/dist/models/create-organization.d.ts +0 -66
- package/dist/models/create-workspace.d.ts +0 -12
- package/dist/models/image-dto.d.ts +2 -2
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/organization-suspension.d.ts +30 -0
- package/dist/models/organization-suspension.js +15 -0
- package/dist/models/organization.d.ts +24 -0
- package/dist/models/workspace-info.d.ts +2 -1
- package/dist/models/workspace-state.d.ts +1 -1
- package/dist/models/workspace-state.js +1 -1
- package/dist/models/workspace.d.ts +7 -0
- package/models/create-image.ts +2 -2
- package/models/create-organization.ts +0 -66
- package/models/create-workspace.ts +0 -12
- package/models/image-dto.ts +2 -2
- package/models/index.ts +1 -0
- package/models/organization-suspension.ts +33 -0
- package/models/organization.ts +24 -0
- package/models/workspace-info.ts +2 -1
- package/models/workspace-state.ts +1 -1
- package/models/workspace.ts +7 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/api/toolbox-api.ts
CHANGED
|
@@ -129,6 +129,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
129
129
|
const localVarHeaderParameter = {} as any
|
|
130
130
|
const localVarQueryParameter = {} as any
|
|
131
131
|
|
|
132
|
+
// authentication bearer required
|
|
133
|
+
// http bearer authentication required
|
|
134
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
135
|
+
|
|
132
136
|
// authentication oauth2 required
|
|
133
137
|
// oauth required
|
|
134
138
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -187,6 +191,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
187
191
|
const localVarHeaderParameter = {} as any
|
|
188
192
|
const localVarQueryParameter = {} as any
|
|
189
193
|
|
|
194
|
+
// authentication bearer required
|
|
195
|
+
// http bearer authentication required
|
|
196
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
197
|
+
|
|
190
198
|
// authentication oauth2 required
|
|
191
199
|
// oauth required
|
|
192
200
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -240,6 +248,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
240
248
|
const localVarHeaderParameter = {} as any
|
|
241
249
|
const localVarQueryParameter = {} as any
|
|
242
250
|
|
|
251
|
+
// authentication bearer required
|
|
252
|
+
// http bearer authentication required
|
|
253
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
254
|
+
|
|
243
255
|
// authentication oauth2 required
|
|
244
256
|
// oauth required
|
|
245
257
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -293,6 +305,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
293
305
|
const localVarHeaderParameter = {} as any
|
|
294
306
|
const localVarQueryParameter = {} as any
|
|
295
307
|
|
|
308
|
+
// authentication bearer required
|
|
309
|
+
// http bearer authentication required
|
|
310
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
311
|
+
|
|
296
312
|
// authentication oauth2 required
|
|
297
313
|
// oauth required
|
|
298
314
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -343,6 +359,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
343
359
|
const localVarHeaderParameter = {} as any
|
|
344
360
|
const localVarQueryParameter = {} as any
|
|
345
361
|
|
|
362
|
+
// authentication bearer required
|
|
363
|
+
// http bearer authentication required
|
|
364
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
365
|
+
|
|
346
366
|
// authentication oauth2 required
|
|
347
367
|
// oauth required
|
|
348
368
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -397,6 +417,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
397
417
|
const localVarHeaderParameter = {} as any
|
|
398
418
|
const localVarQueryParameter = {} as any
|
|
399
419
|
|
|
420
|
+
// authentication bearer required
|
|
421
|
+
// http bearer authentication required
|
|
422
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
423
|
+
|
|
400
424
|
// authentication oauth2 required
|
|
401
425
|
// oauth required
|
|
402
426
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -453,6 +477,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
453
477
|
const localVarHeaderParameter = {} as any
|
|
454
478
|
const localVarQueryParameter = {} as any
|
|
455
479
|
|
|
480
|
+
// authentication bearer required
|
|
481
|
+
// http bearer authentication required
|
|
482
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
483
|
+
|
|
456
484
|
// authentication oauth2 required
|
|
457
485
|
// oauth required
|
|
458
486
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -510,6 +538,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
510
538
|
const localVarHeaderParameter = {} as any
|
|
511
539
|
const localVarQueryParameter = {} as any
|
|
512
540
|
|
|
541
|
+
// authentication bearer required
|
|
542
|
+
// http bearer authentication required
|
|
543
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
544
|
+
|
|
513
545
|
// authentication oauth2 required
|
|
514
546
|
// oauth required
|
|
515
547
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -568,6 +600,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
568
600
|
const localVarHeaderParameter = {} as any
|
|
569
601
|
const localVarQueryParameter = {} as any
|
|
570
602
|
|
|
603
|
+
// authentication bearer required
|
|
604
|
+
// http bearer authentication required
|
|
605
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
606
|
+
|
|
571
607
|
// authentication oauth2 required
|
|
572
608
|
// oauth required
|
|
573
609
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -618,6 +654,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
618
654
|
const localVarHeaderParameter = {} as any
|
|
619
655
|
const localVarQueryParameter = {} as any
|
|
620
656
|
|
|
657
|
+
// authentication bearer required
|
|
658
|
+
// http bearer authentication required
|
|
659
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
660
|
+
|
|
621
661
|
// authentication oauth2 required
|
|
622
662
|
// oauth required
|
|
623
663
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -667,6 +707,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
667
707
|
const localVarHeaderParameter = {} as any
|
|
668
708
|
const localVarQueryParameter = {} as any
|
|
669
709
|
|
|
710
|
+
// authentication bearer required
|
|
711
|
+
// http bearer authentication required
|
|
712
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
713
|
+
|
|
670
714
|
// authentication oauth2 required
|
|
671
715
|
// oauth required
|
|
672
716
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -721,6 +765,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
721
765
|
const localVarHeaderParameter = {} as any
|
|
722
766
|
const localVarQueryParameter = {} as any
|
|
723
767
|
|
|
768
|
+
// authentication bearer required
|
|
769
|
+
// http bearer authentication required
|
|
770
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
771
|
+
|
|
724
772
|
// authentication oauth2 required
|
|
725
773
|
// oauth required
|
|
726
774
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -777,6 +825,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
777
825
|
const localVarHeaderParameter = {} as any
|
|
778
826
|
const localVarQueryParameter = {} as any
|
|
779
827
|
|
|
828
|
+
// authentication bearer required
|
|
829
|
+
// http bearer authentication required
|
|
830
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
831
|
+
|
|
780
832
|
// authentication oauth2 required
|
|
781
833
|
// oauth required
|
|
782
834
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -831,6 +883,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
831
883
|
const localVarHeaderParameter = {} as any
|
|
832
884
|
const localVarQueryParameter = {} as any
|
|
833
885
|
|
|
886
|
+
// authentication bearer required
|
|
887
|
+
// http bearer authentication required
|
|
888
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
889
|
+
|
|
834
890
|
// authentication oauth2 required
|
|
835
891
|
// oauth required
|
|
836
892
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -884,6 +940,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
884
940
|
const localVarHeaderParameter = {} as any
|
|
885
941
|
const localVarQueryParameter = {} as any
|
|
886
942
|
|
|
943
|
+
// authentication bearer required
|
|
944
|
+
// http bearer authentication required
|
|
945
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
946
|
+
|
|
887
947
|
// authentication oauth2 required
|
|
888
948
|
// oauth required
|
|
889
949
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -937,6 +997,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
937
997
|
const localVarHeaderParameter = {} as any
|
|
938
998
|
const localVarQueryParameter = {} as any
|
|
939
999
|
|
|
1000
|
+
// authentication bearer required
|
|
1001
|
+
// http bearer authentication required
|
|
1002
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1003
|
+
|
|
940
1004
|
// authentication oauth2 required
|
|
941
1005
|
// oauth required
|
|
942
1006
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -990,6 +1054,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
990
1054
|
const localVarHeaderParameter = {} as any
|
|
991
1055
|
const localVarQueryParameter = {} as any
|
|
992
1056
|
|
|
1057
|
+
// authentication bearer required
|
|
1058
|
+
// http bearer authentication required
|
|
1059
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1060
|
+
|
|
993
1061
|
// authentication oauth2 required
|
|
994
1062
|
// oauth required
|
|
995
1063
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1043,6 +1111,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1043
1111
|
const localVarHeaderParameter = {} as any
|
|
1044
1112
|
const localVarQueryParameter = {} as any
|
|
1045
1113
|
|
|
1114
|
+
// authentication bearer required
|
|
1115
|
+
// http bearer authentication required
|
|
1116
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1117
|
+
|
|
1046
1118
|
// authentication oauth2 required
|
|
1047
1119
|
// oauth required
|
|
1048
1120
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1097,6 +1169,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1097
1169
|
const localVarHeaderParameter = {} as any
|
|
1098
1170
|
const localVarQueryParameter = {} as any
|
|
1099
1171
|
|
|
1172
|
+
// authentication bearer required
|
|
1173
|
+
// http bearer authentication required
|
|
1174
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1175
|
+
|
|
1100
1176
|
// authentication oauth2 required
|
|
1101
1177
|
// oauth required
|
|
1102
1178
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1151,6 +1227,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1151
1227
|
const localVarHeaderParameter = {} as any
|
|
1152
1228
|
const localVarQueryParameter = {} as any
|
|
1153
1229
|
|
|
1230
|
+
// authentication bearer required
|
|
1231
|
+
// http bearer authentication required
|
|
1232
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1233
|
+
|
|
1154
1234
|
// authentication oauth2 required
|
|
1155
1235
|
// oauth required
|
|
1156
1236
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1205,6 +1285,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1205
1285
|
const localVarHeaderParameter = {} as any
|
|
1206
1286
|
const localVarQueryParameter = {} as any
|
|
1207
1287
|
|
|
1288
|
+
// authentication bearer required
|
|
1289
|
+
// http bearer authentication required
|
|
1290
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1291
|
+
|
|
1208
1292
|
// authentication oauth2 required
|
|
1209
1293
|
// oauth required
|
|
1210
1294
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1258,6 +1342,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1258
1342
|
const localVarHeaderParameter = {} as any
|
|
1259
1343
|
const localVarQueryParameter = {} as any
|
|
1260
1344
|
|
|
1345
|
+
// authentication bearer required
|
|
1346
|
+
// http bearer authentication required
|
|
1347
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1348
|
+
|
|
1261
1349
|
// authentication oauth2 required
|
|
1262
1350
|
// oauth required
|
|
1263
1351
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1309,6 +1397,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1309
1397
|
const localVarHeaderParameter = {} as any
|
|
1310
1398
|
const localVarQueryParameter = {} as any
|
|
1311
1399
|
|
|
1400
|
+
// authentication bearer required
|
|
1401
|
+
// http bearer authentication required
|
|
1402
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1403
|
+
|
|
1312
1404
|
// authentication oauth2 required
|
|
1313
1405
|
// oauth required
|
|
1314
1406
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1359,6 +1451,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1359
1451
|
const localVarHeaderParameter = {} as any
|
|
1360
1452
|
const localVarQueryParameter = {} as any
|
|
1361
1453
|
|
|
1454
|
+
// authentication bearer required
|
|
1455
|
+
// http bearer authentication required
|
|
1456
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1457
|
+
|
|
1362
1458
|
// authentication oauth2 required
|
|
1363
1459
|
// oauth required
|
|
1364
1460
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1409,6 +1505,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1409
1505
|
const localVarHeaderParameter = {} as any
|
|
1410
1506
|
const localVarQueryParameter = {} as any
|
|
1411
1507
|
|
|
1508
|
+
// authentication bearer required
|
|
1509
|
+
// http bearer authentication required
|
|
1510
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1511
|
+
|
|
1412
1512
|
// authentication oauth2 required
|
|
1413
1513
|
// oauth required
|
|
1414
1514
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1462,6 +1562,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1462
1562
|
const localVarHeaderParameter = {} as any
|
|
1463
1563
|
const localVarQueryParameter = {} as any
|
|
1464
1564
|
|
|
1565
|
+
// authentication bearer required
|
|
1566
|
+
// http bearer authentication required
|
|
1567
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1568
|
+
|
|
1465
1569
|
// authentication oauth2 required
|
|
1466
1570
|
// oauth required
|
|
1467
1571
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1515,6 +1619,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1515
1619
|
const localVarHeaderParameter = {} as any
|
|
1516
1620
|
const localVarQueryParameter = {} as any
|
|
1517
1621
|
|
|
1622
|
+
// authentication bearer required
|
|
1623
|
+
// http bearer authentication required
|
|
1624
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1625
|
+
|
|
1518
1626
|
// authentication oauth2 required
|
|
1519
1627
|
// oauth required
|
|
1520
1628
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1576,6 +1684,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1576
1684
|
const localVarHeaderParameter = {} as any
|
|
1577
1685
|
const localVarQueryParameter = {} as any
|
|
1578
1686
|
|
|
1687
|
+
// authentication bearer required
|
|
1688
|
+
// http bearer authentication required
|
|
1689
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1690
|
+
|
|
1579
1691
|
// authentication oauth2 required
|
|
1580
1692
|
// oauth required
|
|
1581
1693
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1638,6 +1750,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1638
1750
|
const localVarHeaderParameter = {} as any
|
|
1639
1751
|
const localVarQueryParameter = {} as any
|
|
1640
1752
|
|
|
1753
|
+
// authentication bearer required
|
|
1754
|
+
// http bearer authentication required
|
|
1755
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1756
|
+
|
|
1641
1757
|
// authentication oauth2 required
|
|
1642
1758
|
// oauth required
|
|
1643
1759
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1691,6 +1807,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1691
1807
|
const localVarHeaderParameter = {} as any
|
|
1692
1808
|
const localVarQueryParameter = {} as any
|
|
1693
1809
|
|
|
1810
|
+
// authentication bearer required
|
|
1811
|
+
// http bearer authentication required
|
|
1812
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1813
|
+
|
|
1694
1814
|
// authentication oauth2 required
|
|
1695
1815
|
// oauth required
|
|
1696
1816
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1752,6 +1872,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1752
1872
|
const localVarHeaderParameter = {} as any
|
|
1753
1873
|
const localVarQueryParameter = {} as any
|
|
1754
1874
|
|
|
1875
|
+
// authentication bearer required
|
|
1876
|
+
// http bearer authentication required
|
|
1877
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1878
|
+
|
|
1755
1879
|
// authentication oauth2 required
|
|
1756
1880
|
// oauth required
|
|
1757
1881
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1818,6 +1942,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1818
1942
|
const localVarHeaderParameter = {} as any
|
|
1819
1943
|
const localVarQueryParameter = {} as any
|
|
1820
1944
|
|
|
1945
|
+
// authentication bearer required
|
|
1946
|
+
// http bearer authentication required
|
|
1947
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
1948
|
+
|
|
1821
1949
|
// authentication oauth2 required
|
|
1822
1950
|
// oauth required
|
|
1823
1951
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1876,6 +2004,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1876
2004
|
const localVarHeaderParameter = {} as any
|
|
1877
2005
|
const localVarQueryParameter = {} as any
|
|
1878
2006
|
|
|
2007
|
+
// authentication bearer required
|
|
2008
|
+
// http bearer authentication required
|
|
2009
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2010
|
+
|
|
1879
2011
|
// authentication oauth2 required
|
|
1880
2012
|
// oauth required
|
|
1881
2013
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1933,6 +2065,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1933
2065
|
const localVarHeaderParameter = {} as any
|
|
1934
2066
|
const localVarQueryParameter = {} as any
|
|
1935
2067
|
|
|
2068
|
+
// authentication bearer required
|
|
2069
|
+
// http bearer authentication required
|
|
2070
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2071
|
+
|
|
1936
2072
|
// authentication oauth2 required
|
|
1937
2073
|
// oauth required
|
|
1938
2074
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -1997,6 +2133,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
1997
2133
|
const localVarHeaderParameter = {} as any
|
|
1998
2134
|
const localVarQueryParameter = {} as any
|
|
1999
2135
|
|
|
2136
|
+
// authentication bearer required
|
|
2137
|
+
// http bearer authentication required
|
|
2138
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2139
|
+
|
|
2000
2140
|
// authentication oauth2 required
|
|
2001
2141
|
// oauth required
|
|
2002
2142
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -2066,6 +2206,10 @@ export const ToolboxApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2066
2206
|
const localVarQueryParameter = {} as any
|
|
2067
2207
|
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)()
|
|
2068
2208
|
|
|
2209
|
+
// authentication bearer required
|
|
2210
|
+
// http bearer authentication required
|
|
2211
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
2212
|
+
|
|
2069
2213
|
// authentication oauth2 required
|
|
2070
2214
|
// oauth required
|
|
2071
2215
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
package/api/workspace-api.ts
CHANGED
|
@@ -75,6 +75,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
75
75
|
const localVarHeaderParameter = {} as any
|
|
76
76
|
const localVarQueryParameter = {} as any
|
|
77
77
|
|
|
78
|
+
// authentication bearer required
|
|
79
|
+
// http bearer authentication required
|
|
80
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
81
|
+
|
|
78
82
|
// authentication oauth2 required
|
|
79
83
|
// oauth required
|
|
80
84
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -121,6 +125,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
121
125
|
const localVarHeaderParameter = {} as any
|
|
122
126
|
const localVarQueryParameter = {} as any
|
|
123
127
|
|
|
128
|
+
// authentication bearer required
|
|
129
|
+
// http bearer authentication required
|
|
130
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
131
|
+
|
|
124
132
|
// authentication oauth2 required
|
|
125
133
|
// oauth required
|
|
126
134
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -164,6 +172,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
164
172
|
const localVarHeaderParameter = {} as any
|
|
165
173
|
const localVarQueryParameter = {} as any
|
|
166
174
|
|
|
175
|
+
// authentication bearer required
|
|
176
|
+
// http bearer authentication required
|
|
177
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
178
|
+
|
|
167
179
|
// authentication oauth2 required
|
|
168
180
|
// oauth required
|
|
169
181
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -217,6 +229,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
217
229
|
const localVarHeaderParameter = {} as any
|
|
218
230
|
const localVarQueryParameter = {} as any
|
|
219
231
|
|
|
232
|
+
// authentication bearer required
|
|
233
|
+
// http bearer authentication required
|
|
234
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
235
|
+
|
|
220
236
|
// authentication oauth2 required
|
|
221
237
|
// oauth required
|
|
222
238
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -270,6 +286,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
270
286
|
const localVarHeaderParameter = {} as any
|
|
271
287
|
const localVarQueryParameter = {} as any
|
|
272
288
|
|
|
289
|
+
// authentication bearer required
|
|
290
|
+
// http bearer authentication required
|
|
291
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
292
|
+
|
|
273
293
|
// authentication oauth2 required
|
|
274
294
|
// oauth required
|
|
275
295
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -318,6 +338,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
318
338
|
const localVarHeaderParameter = {} as any
|
|
319
339
|
const localVarQueryParameter = {} as any
|
|
320
340
|
|
|
341
|
+
// authentication bearer required
|
|
342
|
+
// http bearer authentication required
|
|
343
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
344
|
+
|
|
321
345
|
// authentication oauth2 required
|
|
322
346
|
// oauth required
|
|
323
347
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -343,14 +367,14 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
343
367
|
* @summary List all workspaces
|
|
344
368
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
345
369
|
* @param {boolean} [verbose] Include verbose output
|
|
346
|
-
* @param {
|
|
370
|
+
* @param {string} [labels] JSON encoded labels to filter by
|
|
347
371
|
* @param {*} [options] Override http request option.
|
|
348
372
|
* @throws {RequiredError}
|
|
349
373
|
*/
|
|
350
374
|
listWorkspaces: async (
|
|
351
375
|
xDaytonaOrganizationID?: string,
|
|
352
376
|
verbose?: boolean,
|
|
353
|
-
labels?:
|
|
377
|
+
labels?: string,
|
|
354
378
|
options: RawAxiosRequestConfig = {},
|
|
355
379
|
): Promise<RequestArgs> => {
|
|
356
380
|
const localVarPath = `/workspace`
|
|
@@ -365,6 +389,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
365
389
|
const localVarHeaderParameter = {} as any
|
|
366
390
|
const localVarQueryParameter = {} as any
|
|
367
391
|
|
|
392
|
+
// authentication bearer required
|
|
393
|
+
// http bearer authentication required
|
|
394
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
395
|
+
|
|
368
396
|
// authentication oauth2 required
|
|
369
397
|
// oauth required
|
|
370
398
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -374,9 +402,7 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
374
402
|
}
|
|
375
403
|
|
|
376
404
|
if (labels !== undefined) {
|
|
377
|
-
|
|
378
|
-
localVarQueryParameter[key] = value
|
|
379
|
-
}
|
|
405
|
+
localVarQueryParameter['labels'] = labels
|
|
380
406
|
}
|
|
381
407
|
|
|
382
408
|
if (xDaytonaOrganizationID != null) {
|
|
@@ -425,6 +451,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
425
451
|
const localVarHeaderParameter = {} as any
|
|
426
452
|
const localVarQueryParameter = {} as any
|
|
427
453
|
|
|
454
|
+
// authentication bearer required
|
|
455
|
+
// http bearer authentication required
|
|
456
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
457
|
+
|
|
428
458
|
// authentication oauth2 required
|
|
429
459
|
// oauth required
|
|
430
460
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -478,6 +508,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
478
508
|
const localVarHeaderParameter = {} as any
|
|
479
509
|
const localVarQueryParameter = {} as any
|
|
480
510
|
|
|
511
|
+
// authentication bearer required
|
|
512
|
+
// http bearer authentication required
|
|
513
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
514
|
+
|
|
481
515
|
// authentication oauth2 required
|
|
482
516
|
// oauth required
|
|
483
517
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -530,6 +564,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
530
564
|
const localVarHeaderParameter = {} as any
|
|
531
565
|
const localVarQueryParameter = {} as any
|
|
532
566
|
|
|
567
|
+
// authentication bearer required
|
|
568
|
+
// http bearer authentication required
|
|
569
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
570
|
+
|
|
533
571
|
// authentication oauth2 required
|
|
534
572
|
// oauth required
|
|
535
573
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -576,6 +614,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
576
614
|
const localVarHeaderParameter = {} as any
|
|
577
615
|
const localVarQueryParameter = {} as any
|
|
578
616
|
|
|
617
|
+
// authentication bearer required
|
|
618
|
+
// http bearer authentication required
|
|
619
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
620
|
+
|
|
579
621
|
// authentication oauth2 required
|
|
580
622
|
// oauth required
|
|
581
623
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -622,6 +664,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
622
664
|
const localVarHeaderParameter = {} as any
|
|
623
665
|
const localVarQueryParameter = {} as any
|
|
624
666
|
|
|
667
|
+
// authentication bearer required
|
|
668
|
+
// http bearer authentication required
|
|
669
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
670
|
+
|
|
625
671
|
// authentication oauth2 required
|
|
626
672
|
// oauth required
|
|
627
673
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -671,6 +717,10 @@ export const WorkspaceApiAxiosParamCreator = function (configuration?: Configura
|
|
|
671
717
|
const localVarHeaderParameter = {} as any
|
|
672
718
|
const localVarQueryParameter = {} as any
|
|
673
719
|
|
|
720
|
+
// authentication bearer required
|
|
721
|
+
// http bearer authentication required
|
|
722
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
723
|
+
|
|
674
724
|
// authentication oauth2 required
|
|
675
725
|
// oauth required
|
|
676
726
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration)
|
|
@@ -885,14 +935,14 @@ export const WorkspaceApiFp = function (configuration?: Configuration) {
|
|
|
885
935
|
* @summary List all workspaces
|
|
886
936
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
887
937
|
* @param {boolean} [verbose] Include verbose output
|
|
888
|
-
* @param {
|
|
938
|
+
* @param {string} [labels] JSON encoded labels to filter by
|
|
889
939
|
* @param {*} [options] Override http request option.
|
|
890
940
|
* @throws {RequiredError}
|
|
891
941
|
*/
|
|
892
942
|
async listWorkspaces(
|
|
893
943
|
xDaytonaOrganizationID?: string,
|
|
894
944
|
verbose?: boolean,
|
|
895
|
-
labels?:
|
|
945
|
+
labels?: string,
|
|
896
946
|
options?: RawAxiosRequestConfig,
|
|
897
947
|
): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workspace>>> {
|
|
898
948
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkspaces(
|
|
@@ -1221,14 +1271,14 @@ export const WorkspaceApiFactory = function (configuration?: Configuration, base
|
|
|
1221
1271
|
* @summary List all workspaces
|
|
1222
1272
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1223
1273
|
* @param {boolean} [verbose] Include verbose output
|
|
1224
|
-
* @param {
|
|
1274
|
+
* @param {string} [labels] JSON encoded labels to filter by
|
|
1225
1275
|
* @param {*} [options] Override http request option.
|
|
1226
1276
|
* @throws {RequiredError}
|
|
1227
1277
|
*/
|
|
1228
1278
|
listWorkspaces(
|
|
1229
1279
|
xDaytonaOrganizationID?: string,
|
|
1230
1280
|
verbose?: boolean,
|
|
1231
|
-
labels?:
|
|
1281
|
+
labels?: string,
|
|
1232
1282
|
options?: RawAxiosRequestConfig,
|
|
1233
1283
|
): AxiosPromise<Array<Workspace>> {
|
|
1234
1284
|
return localVarFp
|
|
@@ -1472,7 +1522,7 @@ export class WorkspaceApi extends BaseAPI {
|
|
|
1472
1522
|
* @summary List all workspaces
|
|
1473
1523
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1474
1524
|
* @param {boolean} [verbose] Include verbose output
|
|
1475
|
-
* @param {
|
|
1525
|
+
* @param {string} [labels] JSON encoded labels to filter by
|
|
1476
1526
|
* @param {*} [options] Override http request option.
|
|
1477
1527
|
* @throws {RequiredError}
|
|
1478
1528
|
* @memberof WorkspaceApi
|
|
@@ -1480,7 +1530,7 @@ export class WorkspaceApi extends BaseAPI {
|
|
|
1480
1530
|
public listWorkspaces(
|
|
1481
1531
|
xDaytonaOrganizationID?: string,
|
|
1482
1532
|
verbose?: boolean,
|
|
1483
|
-
labels?:
|
|
1533
|
+
labels?: string,
|
|
1484
1534
|
options?: RawAxiosRequestConfig,
|
|
1485
1535
|
) {
|
|
1486
1536
|
return WorkspaceApiFp(this.configuration)
|