shoal-web-sdk 1.0.62 → 1.0.63
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/dist/sdk/sdk.gen.js +400 -0
- package/package.json +1 -1
package/dist/sdk/sdk.gen.js
CHANGED
|
@@ -9,6 +9,10 @@ export const getServiceHealth = (options) => {
|
|
|
9
9
|
{
|
|
10
10
|
scheme: 'bearer',
|
|
11
11
|
type: 'http'
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'X-Api-Key',
|
|
15
|
+
type: 'apiKey'
|
|
12
16
|
}
|
|
13
17
|
],
|
|
14
18
|
url: '/health',
|
|
@@ -21,6 +25,10 @@ export const deleteEnvironmentM2M = (options) => {
|
|
|
21
25
|
{
|
|
22
26
|
scheme: 'bearer',
|
|
23
27
|
type: 'http'
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
name: 'X-Api-Key',
|
|
31
|
+
type: 'apiKey'
|
|
24
32
|
}
|
|
25
33
|
],
|
|
26
34
|
url: '/m2m/environment/{environmentUUID}',
|
|
@@ -33,6 +41,10 @@ export const getEnvironmentVariablesM2M = (options) => {
|
|
|
33
41
|
{
|
|
34
42
|
scheme: 'bearer',
|
|
35
43
|
type: 'http'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'X-Api-Key',
|
|
47
|
+
type: 'apiKey'
|
|
36
48
|
}
|
|
37
49
|
],
|
|
38
50
|
url: '/m2m/environment/{environmentUUID}/variables',
|
|
@@ -45,6 +57,10 @@ export const setEnvironmentGcpProjectId = (options) => {
|
|
|
45
57
|
{
|
|
46
58
|
scheme: 'bearer',
|
|
47
59
|
type: 'http'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'X-Api-Key',
|
|
63
|
+
type: 'apiKey'
|
|
48
64
|
}
|
|
49
65
|
],
|
|
50
66
|
url: '/m2m/environment/{environmentUUID}/gcp-project-id',
|
|
@@ -61,6 +77,10 @@ export const getVersionM2M = (options) => {
|
|
|
61
77
|
{
|
|
62
78
|
scheme: 'bearer',
|
|
63
79
|
type: 'http'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'X-Api-Key',
|
|
83
|
+
type: 'apiKey'
|
|
64
84
|
}
|
|
65
85
|
],
|
|
66
86
|
url: '/m2m/version/{versionUUID}',
|
|
@@ -73,6 +93,10 @@ export const updateDeploymentStatusM2M = (options) => {
|
|
|
73
93
|
{
|
|
74
94
|
scheme: 'bearer',
|
|
75
95
|
type: 'http'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'X-Api-Key',
|
|
99
|
+
type: 'apiKey'
|
|
76
100
|
}
|
|
77
101
|
],
|
|
78
102
|
url: '/m2m/graph/{versionUUID}/status',
|
|
@@ -92,6 +116,10 @@ export const fetchGraphM2M = (options) => {
|
|
|
92
116
|
{
|
|
93
117
|
scheme: 'bearer',
|
|
94
118
|
type: 'http'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
name: 'X-Api-Key',
|
|
122
|
+
type: 'apiKey'
|
|
95
123
|
}
|
|
96
124
|
],
|
|
97
125
|
url: '/m2m/graph/{versionUUID}',
|
|
@@ -107,6 +135,10 @@ export const updateGraphM2M = (options) => {
|
|
|
107
135
|
{
|
|
108
136
|
scheme: 'bearer',
|
|
109
137
|
type: 'http'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
name: 'X-Api-Key',
|
|
141
|
+
type: 'apiKey'
|
|
110
142
|
}
|
|
111
143
|
],
|
|
112
144
|
url: '/m2m/graph/{versionUUID}',
|
|
@@ -126,6 +158,10 @@ export const fetchNodeM2M = (options) => {
|
|
|
126
158
|
{
|
|
127
159
|
scheme: 'bearer',
|
|
128
160
|
type: 'http'
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
name: 'X-Api-Key',
|
|
164
|
+
type: 'apiKey'
|
|
129
165
|
}
|
|
130
166
|
],
|
|
131
167
|
url: '/m2m/graph/{versionUUID}/nodes/{nodeUUID}',
|
|
@@ -141,6 +177,10 @@ export const updateNodeM2M = (options) => {
|
|
|
141
177
|
{
|
|
142
178
|
scheme: 'bearer',
|
|
143
179
|
type: 'http'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'X-Api-Key',
|
|
183
|
+
type: 'apiKey'
|
|
144
184
|
}
|
|
145
185
|
],
|
|
146
186
|
url: '/m2m/graph/{versionUUID}/nodes/{nodeUUID}',
|
|
@@ -160,6 +200,10 @@ export const viewBlueprintsM2M = (options) => {
|
|
|
160
200
|
{
|
|
161
201
|
scheme: 'bearer',
|
|
162
202
|
type: 'http'
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
name: 'X-Api-Key',
|
|
206
|
+
type: 'apiKey'
|
|
163
207
|
}
|
|
164
208
|
],
|
|
165
209
|
url: '/m2m/blueprints/view',
|
|
@@ -175,6 +219,10 @@ export const createSecretM2M = (options) => {
|
|
|
175
219
|
{
|
|
176
220
|
scheme: 'bearer',
|
|
177
221
|
type: 'http'
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
name: 'X-Api-Key',
|
|
225
|
+
type: 'apiKey'
|
|
178
226
|
}
|
|
179
227
|
],
|
|
180
228
|
url: '/m2m/graph/{versionUUID}/secret',
|
|
@@ -194,6 +242,10 @@ export const getBlueprintM2M = (options) => {
|
|
|
194
242
|
{
|
|
195
243
|
scheme: 'bearer',
|
|
196
244
|
type: 'http'
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: 'X-Api-Key',
|
|
248
|
+
type: 'apiKey'
|
|
197
249
|
}
|
|
198
250
|
],
|
|
199
251
|
url: '/m2m/blueprints/{blueprint}',
|
|
@@ -209,6 +261,10 @@ export const createNeonProjectM2M = (options) => {
|
|
|
209
261
|
{
|
|
210
262
|
scheme: 'bearer',
|
|
211
263
|
type: 'http'
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
name: 'X-Api-Key',
|
|
267
|
+
type: 'apiKey'
|
|
212
268
|
}
|
|
213
269
|
],
|
|
214
270
|
url: '/m2m/graph/{versionUUID}/neon-project',
|
|
@@ -228,6 +284,10 @@ export const requestAccountPasswordReset = (options) => {
|
|
|
228
284
|
{
|
|
229
285
|
scheme: 'bearer',
|
|
230
286
|
type: 'http'
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
name: 'X-Api-Key',
|
|
290
|
+
type: 'apiKey'
|
|
231
291
|
}
|
|
232
292
|
],
|
|
233
293
|
url: '/auth/account/request-password-reset',
|
|
@@ -243,6 +303,10 @@ export const updateUsername = (options) => {
|
|
|
243
303
|
{
|
|
244
304
|
scheme: 'bearer',
|
|
245
305
|
type: 'http'
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
name: 'X-Api-Key',
|
|
309
|
+
type: 'apiKey'
|
|
246
310
|
}
|
|
247
311
|
],
|
|
248
312
|
url: '/auth/account/username',
|
|
@@ -262,6 +326,10 @@ export const createUsername = (options) => {
|
|
|
262
326
|
{
|
|
263
327
|
scheme: 'bearer',
|
|
264
328
|
type: 'http'
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
name: 'X-Api-Key',
|
|
332
|
+
type: 'apiKey'
|
|
265
333
|
}
|
|
266
334
|
],
|
|
267
335
|
url: '/auth/account/username',
|
|
@@ -281,6 +349,10 @@ export const getUserProfile = (options) => {
|
|
|
281
349
|
{
|
|
282
350
|
scheme: 'bearer',
|
|
283
351
|
type: 'http'
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
name: 'X-Api-Key',
|
|
355
|
+
type: 'apiKey'
|
|
284
356
|
}
|
|
285
357
|
],
|
|
286
358
|
url: '/auth/account/profile',
|
|
@@ -296,6 +368,10 @@ export const updateUserProfile = (options) => {
|
|
|
296
368
|
{
|
|
297
369
|
scheme: 'bearer',
|
|
298
370
|
type: 'http'
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
name: 'X-Api-Key',
|
|
374
|
+
type: 'apiKey'
|
|
299
375
|
}
|
|
300
376
|
],
|
|
301
377
|
url: '/auth/account/profile',
|
|
@@ -315,6 +391,10 @@ export const getUserIdentities = (options) => {
|
|
|
315
391
|
{
|
|
316
392
|
scheme: 'bearer',
|
|
317
393
|
type: 'http'
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
name: 'X-Api-Key',
|
|
397
|
+
type: 'apiKey'
|
|
318
398
|
}
|
|
319
399
|
],
|
|
320
400
|
url: '/auth/account/identities',
|
|
@@ -330,6 +410,10 @@ export const deleteAccountIdentity = (options) => {
|
|
|
330
410
|
{
|
|
331
411
|
scheme: 'bearer',
|
|
332
412
|
type: 'http'
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
name: 'X-Api-Key',
|
|
416
|
+
type: 'apiKey'
|
|
333
417
|
}
|
|
334
418
|
],
|
|
335
419
|
url: '/auth/account/identities/{identityId}',
|
|
@@ -345,6 +429,10 @@ export const getConnectedAppUrl = (options) => {
|
|
|
345
429
|
{
|
|
346
430
|
scheme: 'bearer',
|
|
347
431
|
type: 'http'
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
name: 'X-Api-Key',
|
|
435
|
+
type: 'apiKey'
|
|
348
436
|
}
|
|
349
437
|
],
|
|
350
438
|
url: '/auth/account/connected-app-url',
|
|
@@ -360,6 +448,10 @@ export const updateConnectedAppToken = (options) => {
|
|
|
360
448
|
{
|
|
361
449
|
scheme: 'bearer',
|
|
362
450
|
type: 'http'
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
name: 'X-Api-Key',
|
|
454
|
+
type: 'apiKey'
|
|
363
455
|
}
|
|
364
456
|
],
|
|
365
457
|
url: '/auth/account/connected-app-token/{sessionId}',
|
|
@@ -375,6 +467,10 @@ export const listInstallationRepositories = (options) => {
|
|
|
375
467
|
{
|
|
376
468
|
scheme: 'bearer',
|
|
377
469
|
type: 'http'
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
name: 'X-Api-Key',
|
|
473
|
+
type: 'apiKey'
|
|
378
474
|
}
|
|
379
475
|
],
|
|
380
476
|
url: '/auth/installations/{installationID}/repositories',
|
|
@@ -390,6 +486,10 @@ export const listInstallationBranches = (options) => {
|
|
|
390
486
|
{
|
|
391
487
|
scheme: 'bearer',
|
|
392
488
|
type: 'http'
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
name: 'X-Api-Key',
|
|
492
|
+
type: 'apiKey'
|
|
393
493
|
}
|
|
394
494
|
],
|
|
395
495
|
url: '/auth/installations/{installationID}/branches',
|
|
@@ -405,6 +505,10 @@ export const listUserInstallations = (options) => {
|
|
|
405
505
|
{
|
|
406
506
|
scheme: 'bearer',
|
|
407
507
|
type: 'http'
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
name: 'X-Api-Key',
|
|
511
|
+
type: 'apiKey'
|
|
408
512
|
}
|
|
409
513
|
],
|
|
410
514
|
url: '/auth/installations',
|
|
@@ -420,6 +524,10 @@ export const fetchNeonOrganizations = (options) => {
|
|
|
420
524
|
{
|
|
421
525
|
scheme: 'bearer',
|
|
422
526
|
type: 'http'
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: 'X-Api-Key',
|
|
530
|
+
type: 'apiKey'
|
|
423
531
|
}
|
|
424
532
|
],
|
|
425
533
|
url: '/auth/neon/organizations',
|
|
@@ -435,6 +543,10 @@ export const fetchNeonRegions = (options) => {
|
|
|
435
543
|
{
|
|
436
544
|
scheme: 'bearer',
|
|
437
545
|
type: 'http'
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
name: 'X-Api-Key',
|
|
549
|
+
type: 'apiKey'
|
|
438
550
|
}
|
|
439
551
|
],
|
|
440
552
|
url: '/auth/neon/regions',
|
|
@@ -450,6 +562,10 @@ export const fetchMongoOrganizations = (options) => {
|
|
|
450
562
|
{
|
|
451
563
|
scheme: 'bearer',
|
|
452
564
|
type: 'http'
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
name: 'X-Api-Key',
|
|
568
|
+
type: 'apiKey'
|
|
453
569
|
}
|
|
454
570
|
],
|
|
455
571
|
url: '/auth/mongo/organizations',
|
|
@@ -465,6 +581,10 @@ export const fetchMongoRegions = (options) => {
|
|
|
465
581
|
{
|
|
466
582
|
scheme: 'bearer',
|
|
467
583
|
type: 'http'
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
name: 'X-Api-Key',
|
|
587
|
+
type: 'apiKey'
|
|
468
588
|
}
|
|
469
589
|
],
|
|
470
590
|
url: '/auth/mongo/regions',
|
|
@@ -480,6 +600,10 @@ export const listMongoProjects = (options) => {
|
|
|
480
600
|
{
|
|
481
601
|
scheme: 'bearer',
|
|
482
602
|
type: 'http'
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
name: 'X-Api-Key',
|
|
606
|
+
type: 'apiKey'
|
|
483
607
|
}
|
|
484
608
|
],
|
|
485
609
|
url: '/auth/mongo/projects',
|
|
@@ -495,6 +619,10 @@ export const listMongoClusters = (options) => {
|
|
|
495
619
|
{
|
|
496
620
|
scheme: 'bearer',
|
|
497
621
|
type: 'http'
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
name: 'X-Api-Key',
|
|
625
|
+
type: 'apiKey'
|
|
498
626
|
}
|
|
499
627
|
],
|
|
500
628
|
url: '/auth/mongo/projects/{projectId}/clusters',
|
|
@@ -510,6 +638,10 @@ export const fetchMongoOrganizationTier = (options) => {
|
|
|
510
638
|
{
|
|
511
639
|
scheme: 'bearer',
|
|
512
640
|
type: 'http'
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
name: 'X-Api-Key',
|
|
644
|
+
type: 'apiKey'
|
|
513
645
|
}
|
|
514
646
|
],
|
|
515
647
|
url: '/auth/mongo/organizations/{orgId}/tier',
|
|
@@ -525,6 +657,10 @@ export const fetchNeonConnectionUri = (options) => {
|
|
|
525
657
|
{
|
|
526
658
|
scheme: 'bearer',
|
|
527
659
|
type: 'http'
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
name: 'X-Api-Key',
|
|
663
|
+
type: 'apiKey'
|
|
528
664
|
}
|
|
529
665
|
],
|
|
530
666
|
url: '/auth/neon/projects/{projectId}/connection-uri',
|
|
@@ -540,6 +676,10 @@ export const listNeonProjects = (options) => {
|
|
|
540
676
|
{
|
|
541
677
|
scheme: 'bearer',
|
|
542
678
|
type: 'http'
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
name: 'X-Api-Key',
|
|
682
|
+
type: 'apiKey'
|
|
543
683
|
}
|
|
544
684
|
],
|
|
545
685
|
url: '/auth/neon/projects',
|
|
@@ -555,6 +695,10 @@ export const createNeonProject = (options) => {
|
|
|
555
695
|
{
|
|
556
696
|
scheme: 'bearer',
|
|
557
697
|
type: 'http'
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
name: 'X-Api-Key',
|
|
701
|
+
type: 'apiKey'
|
|
558
702
|
}
|
|
559
703
|
],
|
|
560
704
|
url: '/auth/neon/projects',
|
|
@@ -574,6 +718,10 @@ export const listNeonBranches = (options) => {
|
|
|
574
718
|
{
|
|
575
719
|
scheme: 'bearer',
|
|
576
720
|
type: 'http'
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
name: 'X-Api-Key',
|
|
724
|
+
type: 'apiKey'
|
|
577
725
|
}
|
|
578
726
|
],
|
|
579
727
|
url: '/auth/neon/projects/{projectId}/branches',
|
|
@@ -589,6 +737,10 @@ export const createNeonBranch = (options) => {
|
|
|
589
737
|
{
|
|
590
738
|
scheme: 'bearer',
|
|
591
739
|
type: 'http'
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
name: 'X-Api-Key',
|
|
743
|
+
type: 'apiKey'
|
|
592
744
|
}
|
|
593
745
|
],
|
|
594
746
|
url: '/auth/neon/projects/{projectId}/branches',
|
|
@@ -608,6 +760,10 @@ export const listNeonDatabases = (options) => {
|
|
|
608
760
|
{
|
|
609
761
|
scheme: 'bearer',
|
|
610
762
|
type: 'http'
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
name: 'X-Api-Key',
|
|
766
|
+
type: 'apiKey'
|
|
611
767
|
}
|
|
612
768
|
],
|
|
613
769
|
url: '/auth/neon/projects/{projectId}/branches/{branchId}/databases',
|
|
@@ -623,6 +779,10 @@ export const createNeonDatabase = (options) => {
|
|
|
623
779
|
{
|
|
624
780
|
scheme: 'bearer',
|
|
625
781
|
type: 'http'
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: 'X-Api-Key',
|
|
785
|
+
type: 'apiKey'
|
|
626
786
|
}
|
|
627
787
|
],
|
|
628
788
|
url: '/auth/neon/projects/{projectId}/branches/{branchId}/databases',
|
|
@@ -642,6 +802,10 @@ export const listNeonRoles = (options) => {
|
|
|
642
802
|
{
|
|
643
803
|
scheme: 'bearer',
|
|
644
804
|
type: 'http'
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
name: 'X-Api-Key',
|
|
808
|
+
type: 'apiKey'
|
|
645
809
|
}
|
|
646
810
|
],
|
|
647
811
|
url: '/auth/neon/projects/{projectId}/branches/{branchId}/roles',
|
|
@@ -657,6 +821,10 @@ export const deleteNeonDatabase = (options) => {
|
|
|
657
821
|
{
|
|
658
822
|
scheme: 'bearer',
|
|
659
823
|
type: 'http'
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
name: 'X-Api-Key',
|
|
827
|
+
type: 'apiKey'
|
|
660
828
|
}
|
|
661
829
|
],
|
|
662
830
|
url: '/auth/neon/projects/{projectId}/branches/{branchId}/databases/{databaseName}',
|
|
@@ -672,6 +840,10 @@ export const listUserSpaces = (options) => {
|
|
|
672
840
|
{
|
|
673
841
|
scheme: 'bearer',
|
|
674
842
|
type: 'http'
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
name: 'X-Api-Key',
|
|
846
|
+
type: 'apiKey'
|
|
675
847
|
}
|
|
676
848
|
],
|
|
677
849
|
url: '/auth/spaces/view',
|
|
@@ -687,6 +859,10 @@ export const getFeatureFlags = (options) => {
|
|
|
687
859
|
{
|
|
688
860
|
scheme: 'bearer',
|
|
689
861
|
type: 'http'
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
name: 'X-Api-Key',
|
|
865
|
+
type: 'apiKey'
|
|
690
866
|
}
|
|
691
867
|
],
|
|
692
868
|
url: '/auth/feature-flags',
|
|
@@ -702,6 +878,10 @@ export const createFeatureRequest = (options) => {
|
|
|
702
878
|
{
|
|
703
879
|
scheme: 'bearer',
|
|
704
880
|
type: 'http'
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
name: 'X-Api-Key',
|
|
884
|
+
type: 'apiKey'
|
|
705
885
|
}
|
|
706
886
|
],
|
|
707
887
|
url: '/auth/feature-request',
|
|
@@ -721,6 +901,10 @@ export const recordOnboardingAnalytics = (options) => {
|
|
|
721
901
|
{
|
|
722
902
|
scheme: 'bearer',
|
|
723
903
|
type: 'http'
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
name: 'X-Api-Key',
|
|
907
|
+
type: 'apiKey'
|
|
724
908
|
}
|
|
725
909
|
],
|
|
726
910
|
url: '/auth/onboarding/analytics',
|
|
@@ -767,6 +951,10 @@ export const createSpace = (options) => {
|
|
|
767
951
|
{
|
|
768
952
|
scheme: 'bearer',
|
|
769
953
|
type: 'http'
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
name: 'X-Api-Key',
|
|
957
|
+
type: 'apiKey'
|
|
770
958
|
}
|
|
771
959
|
],
|
|
772
960
|
url: '/auth/spaces/create',
|
|
@@ -786,6 +974,10 @@ export const getPublicInvite = (options) => {
|
|
|
786
974
|
{
|
|
787
975
|
scheme: 'bearer',
|
|
788
976
|
type: 'http'
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
name: 'X-Api-Key',
|
|
980
|
+
type: 'apiKey'
|
|
789
981
|
}
|
|
790
982
|
],
|
|
791
983
|
url: '/invites/{inviteUUID}',
|
|
@@ -801,6 +993,10 @@ export const getUserInvites = (options) => {
|
|
|
801
993
|
{
|
|
802
994
|
scheme: 'bearer',
|
|
803
995
|
type: 'http'
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
name: 'X-Api-Key',
|
|
999
|
+
type: 'apiKey'
|
|
804
1000
|
}
|
|
805
1001
|
],
|
|
806
1002
|
url: '/auth/spaces/invites',
|
|
@@ -816,6 +1012,10 @@ export const joinSpace = (options) => {
|
|
|
816
1012
|
{
|
|
817
1013
|
scheme: 'bearer',
|
|
818
1014
|
type: 'http'
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
name: 'X-Api-Key',
|
|
1018
|
+
type: 'apiKey'
|
|
819
1019
|
}
|
|
820
1020
|
],
|
|
821
1021
|
url: '/auth/spaces/join/{inviteUUID}',
|
|
@@ -831,6 +1031,10 @@ export const rejectSpaceInvite = (options) => {
|
|
|
831
1031
|
{
|
|
832
1032
|
scheme: 'bearer',
|
|
833
1033
|
type: 'http'
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
name: 'X-Api-Key',
|
|
1037
|
+
type: 'apiKey'
|
|
834
1038
|
}
|
|
835
1039
|
],
|
|
836
1040
|
url: '/auth/spaces/reject/{inviteUUID}',
|
|
@@ -846,6 +1050,10 @@ export const getSpaceOverview = (options) => {
|
|
|
846
1050
|
{
|
|
847
1051
|
scheme: 'bearer',
|
|
848
1052
|
type: 'http'
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
name: 'X-Api-Key',
|
|
1056
|
+
type: 'apiKey'
|
|
849
1057
|
}
|
|
850
1058
|
],
|
|
851
1059
|
url: '/auth/{spaceHandle}/overview',
|
|
@@ -861,6 +1069,10 @@ export const getSpaceOrgCode = (options) => {
|
|
|
861
1069
|
{
|
|
862
1070
|
scheme: 'bearer',
|
|
863
1071
|
type: 'http'
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
name: 'X-Api-Key',
|
|
1075
|
+
type: 'apiKey'
|
|
864
1076
|
}
|
|
865
1077
|
],
|
|
866
1078
|
url: '/auth/{spaceHandle}/org-code',
|
|
@@ -876,6 +1088,10 @@ export const getSpaceStats = (options) => {
|
|
|
876
1088
|
{
|
|
877
1089
|
scheme: 'bearer',
|
|
878
1090
|
type: 'http'
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
name: 'X-Api-Key',
|
|
1094
|
+
type: 'apiKey'
|
|
879
1095
|
}
|
|
880
1096
|
],
|
|
881
1097
|
url: '/auth/{spaceHandle}/stats',
|
|
@@ -891,6 +1107,10 @@ export const fetchKindeOrganisationBillingAgreements = (options) => {
|
|
|
891
1107
|
{
|
|
892
1108
|
scheme: 'bearer',
|
|
893
1109
|
type: 'http'
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
name: 'X-Api-Key',
|
|
1113
|
+
type: 'apiKey'
|
|
894
1114
|
}
|
|
895
1115
|
],
|
|
896
1116
|
url: '/auth/{spaceHandle}/billing-agreements',
|
|
@@ -906,6 +1126,10 @@ export const getSpaceInvites = (options) => {
|
|
|
906
1126
|
{
|
|
907
1127
|
scheme: 'bearer',
|
|
908
1128
|
type: 'http'
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
name: 'X-Api-Key',
|
|
1132
|
+
type: 'apiKey'
|
|
909
1133
|
}
|
|
910
1134
|
],
|
|
911
1135
|
url: '/auth/{spaceHandle}/invites/view',
|
|
@@ -921,6 +1145,10 @@ export const createSpaceInvite = (options) => {
|
|
|
921
1145
|
{
|
|
922
1146
|
scheme: 'bearer',
|
|
923
1147
|
type: 'http'
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
name: 'X-Api-Key',
|
|
1151
|
+
type: 'apiKey'
|
|
924
1152
|
}
|
|
925
1153
|
],
|
|
926
1154
|
url: '/auth/{spaceHandle}/invites/create',
|
|
@@ -940,6 +1168,10 @@ export const revokeSpaceInvite = (options) => {
|
|
|
940
1168
|
{
|
|
941
1169
|
scheme: 'bearer',
|
|
942
1170
|
type: 'http'
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
name: 'X-Api-Key',
|
|
1174
|
+
type: 'apiKey'
|
|
943
1175
|
}
|
|
944
1176
|
],
|
|
945
1177
|
url: '/auth/{spaceHandle}/invites/revoke/{inviteUUID}',
|
|
@@ -955,6 +1187,10 @@ export const getApiKeys = (options) => {
|
|
|
955
1187
|
{
|
|
956
1188
|
scheme: 'bearer',
|
|
957
1189
|
type: 'http'
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
name: 'X-Api-Key',
|
|
1193
|
+
type: 'apiKey'
|
|
958
1194
|
}
|
|
959
1195
|
],
|
|
960
1196
|
url: '/auth/{spaceHandle}/api-keys/view',
|
|
@@ -970,6 +1206,10 @@ export const createApiKey = (options) => {
|
|
|
970
1206
|
{
|
|
971
1207
|
scheme: 'bearer',
|
|
972
1208
|
type: 'http'
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
name: 'X-Api-Key',
|
|
1212
|
+
type: 'apiKey'
|
|
973
1213
|
}
|
|
974
1214
|
],
|
|
975
1215
|
url: '/auth/{spaceHandle}/api-keys/create',
|
|
@@ -989,6 +1229,10 @@ export const revokeApiKey = (options) => {
|
|
|
989
1229
|
{
|
|
990
1230
|
scheme: 'bearer',
|
|
991
1231
|
type: 'http'
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
name: 'X-Api-Key',
|
|
1235
|
+
type: 'apiKey'
|
|
992
1236
|
}
|
|
993
1237
|
],
|
|
994
1238
|
url: '/auth/{spaceHandle}/api-keys/revoke/{apiKeyUUID}',
|
|
@@ -1004,6 +1248,10 @@ export const listSpaceMembers = (options) => {
|
|
|
1004
1248
|
{
|
|
1005
1249
|
scheme: 'bearer',
|
|
1006
1250
|
type: 'http'
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
name: 'X-Api-Key',
|
|
1254
|
+
type: 'apiKey'
|
|
1007
1255
|
}
|
|
1008
1256
|
],
|
|
1009
1257
|
url: '/auth/{spaceHandle}/members/view',
|
|
@@ -1019,6 +1267,10 @@ export const listSpaceMemberRoles = (options) => {
|
|
|
1019
1267
|
{
|
|
1020
1268
|
scheme: 'bearer',
|
|
1021
1269
|
type: 'http'
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
name: 'X-Api-Key',
|
|
1273
|
+
type: 'apiKey'
|
|
1022
1274
|
}
|
|
1023
1275
|
],
|
|
1024
1276
|
url: '/auth/{spaceHandle}/members/roles/view',
|
|
@@ -1034,6 +1286,10 @@ export const leaveSpace = (options) => {
|
|
|
1034
1286
|
{
|
|
1035
1287
|
scheme: 'bearer',
|
|
1036
1288
|
type: 'http'
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
name: 'X-Api-Key',
|
|
1292
|
+
type: 'apiKey'
|
|
1037
1293
|
}
|
|
1038
1294
|
],
|
|
1039
1295
|
url: '/auth/{spaceHandle}/members/leave',
|
|
@@ -1049,6 +1305,10 @@ export const createProject = (options) => {
|
|
|
1049
1305
|
{
|
|
1050
1306
|
scheme: 'bearer',
|
|
1051
1307
|
type: 'http'
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
name: 'X-Api-Key',
|
|
1311
|
+
type: 'apiKey'
|
|
1052
1312
|
}
|
|
1053
1313
|
],
|
|
1054
1314
|
url: '/auth/{spaceHandle}/projects/create',
|
|
@@ -1068,6 +1328,10 @@ export const getProjectOverview = (options) => {
|
|
|
1068
1328
|
{
|
|
1069
1329
|
scheme: 'bearer',
|
|
1070
1330
|
type: 'http'
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
name: 'X-Api-Key',
|
|
1334
|
+
type: 'apiKey'
|
|
1071
1335
|
}
|
|
1072
1336
|
],
|
|
1073
1337
|
url: '/auth/{spaceHandle}/{projectHandle}/overview',
|
|
@@ -1083,6 +1347,10 @@ export const createEnvironment = (options) => {
|
|
|
1083
1347
|
{
|
|
1084
1348
|
scheme: 'bearer',
|
|
1085
1349
|
type: 'http'
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
name: 'X-Api-Key',
|
|
1353
|
+
type: 'apiKey'
|
|
1086
1354
|
}
|
|
1087
1355
|
],
|
|
1088
1356
|
url: '/auth/{spaceHandle}/{projectHandle}/environments/create',
|
|
@@ -1102,6 +1370,10 @@ export const createSecret = (options) => {
|
|
|
1102
1370
|
{
|
|
1103
1371
|
scheme: 'bearer',
|
|
1104
1372
|
type: 'http'
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
name: 'X-Api-Key',
|
|
1376
|
+
type: 'apiKey'
|
|
1105
1377
|
}
|
|
1106
1378
|
],
|
|
1107
1379
|
url: '/auth/{spaceHandle}/{projectHandle}/secrets/create',
|
|
@@ -1121,6 +1393,10 @@ export const getSecretValue = (options) => {
|
|
|
1121
1393
|
{
|
|
1122
1394
|
scheme: 'bearer',
|
|
1123
1395
|
type: 'http'
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
name: 'X-Api-Key',
|
|
1399
|
+
type: 'apiKey'
|
|
1124
1400
|
}
|
|
1125
1401
|
],
|
|
1126
1402
|
url: '/auth/{spaceHandle}/{projectHandle}/secrets/{secretUUID}/value',
|
|
@@ -1136,6 +1412,10 @@ export const deleteEnvironment = (options) => {
|
|
|
1136
1412
|
{
|
|
1137
1413
|
scheme: 'bearer',
|
|
1138
1414
|
type: 'http'
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
name: 'X-Api-Key',
|
|
1418
|
+
type: 'apiKey'
|
|
1139
1419
|
}
|
|
1140
1420
|
],
|
|
1141
1421
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}',
|
|
@@ -1151,6 +1431,10 @@ export const getEnvironmentOverview = (options) => {
|
|
|
1151
1431
|
{
|
|
1152
1432
|
scheme: 'bearer',
|
|
1153
1433
|
type: 'http'
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
name: 'X-Api-Key',
|
|
1437
|
+
type: 'apiKey'
|
|
1154
1438
|
}
|
|
1155
1439
|
],
|
|
1156
1440
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/overview',
|
|
@@ -1166,6 +1450,10 @@ export const getEnvironmentVersions = (options) => {
|
|
|
1166
1450
|
{
|
|
1167
1451
|
scheme: 'bearer',
|
|
1168
1452
|
type: 'http'
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
name: 'X-Api-Key',
|
|
1456
|
+
type: 'apiKey'
|
|
1169
1457
|
}
|
|
1170
1458
|
],
|
|
1171
1459
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/versions',
|
|
@@ -1181,6 +1469,10 @@ export const deleteEnvironmentVariable = (options) => {
|
|
|
1181
1469
|
{
|
|
1182
1470
|
scheme: 'bearer',
|
|
1183
1471
|
type: 'http'
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
name: 'X-Api-Key',
|
|
1475
|
+
type: 'apiKey'
|
|
1184
1476
|
}
|
|
1185
1477
|
],
|
|
1186
1478
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/variables',
|
|
@@ -1196,6 +1488,10 @@ export const getEnvironmentVariables = (options) => {
|
|
|
1196
1488
|
{
|
|
1197
1489
|
scheme: 'bearer',
|
|
1198
1490
|
type: 'http'
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
name: 'X-Api-Key',
|
|
1494
|
+
type: 'apiKey'
|
|
1199
1495
|
}
|
|
1200
1496
|
],
|
|
1201
1497
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/variables',
|
|
@@ -1211,6 +1507,10 @@ export const updateEnvironmentVariable = (options) => {
|
|
|
1211
1507
|
{
|
|
1212
1508
|
scheme: 'bearer',
|
|
1213
1509
|
type: 'http'
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
name: 'X-Api-Key',
|
|
1513
|
+
type: 'apiKey'
|
|
1214
1514
|
}
|
|
1215
1515
|
],
|
|
1216
1516
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/variables',
|
|
@@ -1230,6 +1530,10 @@ export const createEnvironmentVariable = (options) => {
|
|
|
1230
1530
|
{
|
|
1231
1531
|
scheme: 'bearer',
|
|
1232
1532
|
type: 'http'
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
name: 'X-Api-Key',
|
|
1536
|
+
type: 'apiKey'
|
|
1233
1537
|
}
|
|
1234
1538
|
],
|
|
1235
1539
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/variables',
|
|
@@ -1249,6 +1553,10 @@ export const deleteBlueprint = (options) => {
|
|
|
1249
1553
|
{
|
|
1250
1554
|
scheme: 'bearer',
|
|
1251
1555
|
type: 'http'
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
name: 'X-Api-Key',
|
|
1559
|
+
type: 'apiKey'
|
|
1252
1560
|
}
|
|
1253
1561
|
],
|
|
1254
1562
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/blueprints/{blueprint}',
|
|
@@ -1264,6 +1572,10 @@ export const updateBlueprint = (options) => {
|
|
|
1264
1572
|
{
|
|
1265
1573
|
scheme: 'bearer',
|
|
1266
1574
|
type: 'http'
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
name: 'X-Api-Key',
|
|
1578
|
+
type: 'apiKey'
|
|
1267
1579
|
}
|
|
1268
1580
|
],
|
|
1269
1581
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/blueprints/{blueprint}',
|
|
@@ -1283,6 +1595,10 @@ export const createBlueprint = (options) => {
|
|
|
1283
1595
|
{
|
|
1284
1596
|
scheme: 'bearer',
|
|
1285
1597
|
type: 'http'
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
name: 'X-Api-Key',
|
|
1601
|
+
type: 'apiKey'
|
|
1286
1602
|
}
|
|
1287
1603
|
],
|
|
1288
1604
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/blueprints/create',
|
|
@@ -1302,6 +1618,10 @@ export const getVersion = (options) => {
|
|
|
1302
1618
|
{
|
|
1303
1619
|
scheme: 'bearer',
|
|
1304
1620
|
type: 'http'
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
name: 'X-Api-Key',
|
|
1624
|
+
type: 'apiKey'
|
|
1305
1625
|
}
|
|
1306
1626
|
],
|
|
1307
1627
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}',
|
|
@@ -1317,6 +1637,10 @@ export const importBlueprint = (options) => {
|
|
|
1317
1637
|
{
|
|
1318
1638
|
scheme: 'bearer',
|
|
1319
1639
|
type: 'http'
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
name: 'X-Api-Key',
|
|
1643
|
+
type: 'apiKey'
|
|
1320
1644
|
}
|
|
1321
1645
|
],
|
|
1322
1646
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/import',
|
|
@@ -1332,6 +1656,10 @@ export const getGraphOverview = (options) => {
|
|
|
1332
1656
|
{
|
|
1333
1657
|
scheme: 'bearer',
|
|
1334
1658
|
type: 'http'
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
name: 'X-Api-Key',
|
|
1662
|
+
type: 'apiKey'
|
|
1335
1663
|
}
|
|
1336
1664
|
],
|
|
1337
1665
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph',
|
|
@@ -1347,6 +1675,10 @@ export const updateGraphState = (options) => {
|
|
|
1347
1675
|
{
|
|
1348
1676
|
scheme: 'bearer',
|
|
1349
1677
|
type: 'http'
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
name: 'X-Api-Key',
|
|
1681
|
+
type: 'apiKey'
|
|
1350
1682
|
}
|
|
1351
1683
|
],
|
|
1352
1684
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph',
|
|
@@ -1366,6 +1698,10 @@ export const deployVersion = (options) => {
|
|
|
1366
1698
|
{
|
|
1367
1699
|
scheme: 'bearer',
|
|
1368
1700
|
type: 'http'
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
name: 'X-Api-Key',
|
|
1704
|
+
type: 'apiKey'
|
|
1369
1705
|
}
|
|
1370
1706
|
],
|
|
1371
1707
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/deploy',
|
|
@@ -1381,6 +1717,10 @@ export const requestSignedDownloadUrl = (options) => {
|
|
|
1381
1717
|
{
|
|
1382
1718
|
scheme: 'bearer',
|
|
1383
1719
|
type: 'http'
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
name: 'X-Api-Key',
|
|
1723
|
+
type: 'apiKey'
|
|
1384
1724
|
}
|
|
1385
1725
|
],
|
|
1386
1726
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/signed-download-url/{fileNameUUID}',
|
|
@@ -1396,6 +1736,10 @@ export const getNodeEnvironmentVariables = (options) => {
|
|
|
1396
1736
|
{
|
|
1397
1737
|
scheme: 'bearer',
|
|
1398
1738
|
type: 'http'
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
name: 'X-Api-Key',
|
|
1742
|
+
type: 'apiKey'
|
|
1399
1743
|
}
|
|
1400
1744
|
],
|
|
1401
1745
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/{nodeUUID}/variables',
|
|
@@ -1411,6 +1755,10 @@ export const requestSignedUploadUrl = (options) => {
|
|
|
1411
1755
|
{
|
|
1412
1756
|
scheme: 'bearer',
|
|
1413
1757
|
type: 'http'
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
name: 'X-Api-Key',
|
|
1761
|
+
type: 'apiKey'
|
|
1414
1762
|
}
|
|
1415
1763
|
],
|
|
1416
1764
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/signed-upload-url',
|
|
@@ -1426,6 +1774,10 @@ export const checkSubdomainUniqueness = (options) => {
|
|
|
1426
1774
|
{
|
|
1427
1775
|
scheme: 'bearer',
|
|
1428
1776
|
type: 'http'
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
name: 'X-Api-Key',
|
|
1780
|
+
type: 'apiKey'
|
|
1429
1781
|
}
|
|
1430
1782
|
],
|
|
1431
1783
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/{nodeUUID}/check-subdomain/{subdomain}',
|
|
@@ -1441,6 +1793,10 @@ export const pingNode = (options) => {
|
|
|
1441
1793
|
{
|
|
1442
1794
|
scheme: 'bearer',
|
|
1443
1795
|
type: 'http'
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
name: 'X-Api-Key',
|
|
1799
|
+
type: 'apiKey'
|
|
1444
1800
|
}
|
|
1445
1801
|
],
|
|
1446
1802
|
url: '/auth/{spaceHandle}/{projectHandle}/{environmentHandle}/{version}/graph/{nodeUUID}/ping',
|
|
@@ -1475,6 +1831,10 @@ export const getBillingPlan = (options) => {
|
|
|
1475
1831
|
{
|
|
1476
1832
|
scheme: 'bearer',
|
|
1477
1833
|
type: 'http'
|
|
1834
|
+
},
|
|
1835
|
+
{
|
|
1836
|
+
name: 'X-Api-Key',
|
|
1837
|
+
type: 'apiKey'
|
|
1478
1838
|
}
|
|
1479
1839
|
],
|
|
1480
1840
|
url: '/auth/{spaceHandle}/billing/plan',
|
|
@@ -1490,6 +1850,10 @@ export const updateBillingPlan = (options) => {
|
|
|
1490
1850
|
{
|
|
1491
1851
|
scheme: 'bearer',
|
|
1492
1852
|
type: 'http'
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
name: 'X-Api-Key',
|
|
1856
|
+
type: 'apiKey'
|
|
1493
1857
|
}
|
|
1494
1858
|
],
|
|
1495
1859
|
url: '/auth/{spaceHandle}/billing/plan',
|
|
@@ -1509,6 +1873,10 @@ export const createSetupIntent = (options) => {
|
|
|
1509
1873
|
{
|
|
1510
1874
|
scheme: 'bearer',
|
|
1511
1875
|
type: 'http'
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
name: 'X-Api-Key',
|
|
1879
|
+
type: 'apiKey'
|
|
1512
1880
|
}
|
|
1513
1881
|
],
|
|
1514
1882
|
url: '/auth/{spaceHandle}/billing/setup-intent',
|
|
@@ -1524,6 +1892,10 @@ export const listPaymentMethods = (options) => {
|
|
|
1524
1892
|
{
|
|
1525
1893
|
scheme: 'bearer',
|
|
1526
1894
|
type: 'http'
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
name: 'X-Api-Key',
|
|
1898
|
+
type: 'apiKey'
|
|
1527
1899
|
}
|
|
1528
1900
|
],
|
|
1529
1901
|
url: '/auth/{spaceHandle}/billing/payment-methods',
|
|
@@ -1539,6 +1911,10 @@ export const removePaymentMethod = (options) => {
|
|
|
1539
1911
|
{
|
|
1540
1912
|
scheme: 'bearer',
|
|
1541
1913
|
type: 'http'
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
name: 'X-Api-Key',
|
|
1917
|
+
type: 'apiKey'
|
|
1542
1918
|
}
|
|
1543
1919
|
],
|
|
1544
1920
|
url: '/auth/{spaceHandle}/billing/payment-methods/{pmId}',
|
|
@@ -1554,6 +1930,10 @@ export const setDefaultPaymentMethod = (options) => {
|
|
|
1554
1930
|
{
|
|
1555
1931
|
scheme: 'bearer',
|
|
1556
1932
|
type: 'http'
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
name: 'X-Api-Key',
|
|
1936
|
+
type: 'apiKey'
|
|
1557
1937
|
}
|
|
1558
1938
|
],
|
|
1559
1939
|
url: '/auth/{spaceHandle}/billing/payment-methods/{pmId}/default',
|
|
@@ -1569,6 +1949,10 @@ export const getBillingUsage = (options) => {
|
|
|
1569
1949
|
{
|
|
1570
1950
|
scheme: 'bearer',
|
|
1571
1951
|
type: 'http'
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
name: 'X-Api-Key',
|
|
1955
|
+
type: 'apiKey'
|
|
1572
1956
|
}
|
|
1573
1957
|
],
|
|
1574
1958
|
url: '/auth/{spaceHandle}/billing/usage',
|
|
@@ -1584,6 +1968,10 @@ export const fetchBillingPrices = (options) => {
|
|
|
1584
1968
|
{
|
|
1585
1969
|
scheme: 'bearer',
|
|
1586
1970
|
type: 'http'
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
name: 'X-Api-Key',
|
|
1974
|
+
type: 'apiKey'
|
|
1587
1975
|
}
|
|
1588
1976
|
],
|
|
1589
1977
|
url: '/auth/{spaceHandle}/billing/prices',
|
|
@@ -1599,6 +1987,10 @@ export const listBillingInvoices = (options) => {
|
|
|
1599
1987
|
{
|
|
1600
1988
|
scheme: 'bearer',
|
|
1601
1989
|
type: 'http'
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
name: 'X-Api-Key',
|
|
1993
|
+
type: 'apiKey'
|
|
1602
1994
|
}
|
|
1603
1995
|
],
|
|
1604
1996
|
url: '/auth/{spaceHandle}/billing/invoices',
|
|
@@ -1614,6 +2006,10 @@ export const getSpaceProperties = (options) => {
|
|
|
1614
2006
|
{
|
|
1615
2007
|
scheme: 'bearer',
|
|
1616
2008
|
type: 'http'
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
name: 'X-Api-Key',
|
|
2012
|
+
type: 'apiKey'
|
|
1617
2013
|
}
|
|
1618
2014
|
],
|
|
1619
2015
|
url: '/auth/{spaceHandle}/properties',
|
|
@@ -1629,6 +2025,10 @@ export const setSpaceProperty = (options) => {
|
|
|
1629
2025
|
{
|
|
1630
2026
|
scheme: 'bearer',
|
|
1631
2027
|
type: 'http'
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
name: 'X-Api-Key',
|
|
2031
|
+
type: 'apiKey'
|
|
1632
2032
|
}
|
|
1633
2033
|
],
|
|
1634
2034
|
url: '/auth/{spaceHandle}/properties',
|