@faable/deploy-sdk 1.0.0 → 1.0.2
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/.github/workflows/release.yml +1 -0
- package/dist/FaableDeployApi.d.ts +60 -0
- package/dist/FaableDeployApi.d.ts.map +1 -0
- package/dist/FaableDeployApi.js +29 -0
- package/{src/api/api-types.ts → dist/api/api-types.d.ts} +5 -15
- package/dist/api/api-types.d.ts.map +1 -0
- package/dist/api/api-types.js +1 -0
- package/dist/auth/apikey.d.ts +3 -0
- package/dist/auth/apikey.d.ts.map +1 -0
- package/dist/auth/apikey.js +7 -0
- package/dist/fetcher/Fetcher.d.ts +21 -0
- package/dist/fetcher/Fetcher.d.ts.map +1 -0
- package/dist/fetcher/Fetcher.js +1 -0
- package/dist/fetcher/fetcher_axios.d.ts +3 -0
- package/dist/fetcher/fetcher_axios.d.ts.map +1 -0
- package/dist/fetcher/fetcher_axios.js +43 -0
- package/dist/helpers/authorize-client-credentials.d.ts +17 -0
- package/dist/helpers/authorize-client-credentials.d.ts.map +1 -0
- package/dist/helpers/authorize-client-credentials.js +38 -0
- package/dist/helpers/authorize.d.ts +9 -0
- package/dist/helpers/authorize.d.ts.map +1 -0
- package/dist/helpers/authorize.js +39 -0
- package/dist/helpers/error_handler.d.ts +4 -0
- package/dist/helpers/error_handler.d.ts.map +1 -0
- package/dist/helpers/error_handler.js +7 -0
- package/dist/helpers/paginator.d.ts +15 -0
- package/dist/helpers/paginator.d.ts.map +1 -0
- package/dist/helpers/paginator.js +28 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
- package/src/FaableDeployApi.test.ts +0 -13
- package/src/FaableDeployApi.ts +0 -40
- package/src/api/types.d.ts +0 -2021
- package/src/auth/apikey.ts +0 -11
- package/src/fetcher/Fetcher.ts +0 -42
- package/src/fetcher/fetcher_axios.ts +0 -50
- package/src/helpers/authorize-client-credentials.ts +0 -54
- package/src/helpers/authorize.ts +0 -58
- package/src/helpers/error_handler.ts +0 -7
- package/src/helpers/paginator.ts +0 -37
- package/src/index.ts +0 -1
- package/tsconfig.json +0 -16
package/src/api/types.d.ts
DELETED
|
@@ -1,2021 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by openapi-typescript.
|
|
3
|
-
* Do not make direct changes to the file.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export interface paths {
|
|
7
|
-
"/profile": {
|
|
8
|
-
parameters: {
|
|
9
|
-
query?: never;
|
|
10
|
-
header?: never;
|
|
11
|
-
path?: never;
|
|
12
|
-
cookie?: never;
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* List profiles user can access to
|
|
16
|
-
* @description List profiles user can access to
|
|
17
|
-
*/
|
|
18
|
-
get: operations["profile/list"];
|
|
19
|
-
put?: never;
|
|
20
|
-
/**
|
|
21
|
-
* Creates a Team
|
|
22
|
-
* @description Creates a Team
|
|
23
|
-
*/
|
|
24
|
-
post: operations["profile/create"];
|
|
25
|
-
delete?: never;
|
|
26
|
-
options?: never;
|
|
27
|
-
head?: never;
|
|
28
|
-
patch?: never;
|
|
29
|
-
trace?: never;
|
|
30
|
-
};
|
|
31
|
-
"/profile/{profile_id}": {
|
|
32
|
-
parameters: {
|
|
33
|
-
query?: never;
|
|
34
|
-
header?: never;
|
|
35
|
-
path?: never;
|
|
36
|
-
cookie?: never;
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* Get a profile
|
|
40
|
-
* @description Get a profile
|
|
41
|
-
*/
|
|
42
|
-
get: operations["profiles/get"];
|
|
43
|
-
put?: never;
|
|
44
|
-
post?: never;
|
|
45
|
-
delete?: never;
|
|
46
|
-
options?: never;
|
|
47
|
-
head?: never;
|
|
48
|
-
patch?: never;
|
|
49
|
-
trace?: never;
|
|
50
|
-
};
|
|
51
|
-
"/profile/slug/{slug}": {
|
|
52
|
-
parameters: {
|
|
53
|
-
query?: never;
|
|
54
|
-
header?: never;
|
|
55
|
-
path?: never;
|
|
56
|
-
cookie?: never;
|
|
57
|
-
};
|
|
58
|
-
/**
|
|
59
|
-
* Get Profile by slug
|
|
60
|
-
* @description Get Profile by slug
|
|
61
|
-
*/
|
|
62
|
-
get: operations["profile/getbyslug"];
|
|
63
|
-
put?: never;
|
|
64
|
-
post?: never;
|
|
65
|
-
delete?: never;
|
|
66
|
-
options?: never;
|
|
67
|
-
head?: never;
|
|
68
|
-
patch?: never;
|
|
69
|
-
trace?: never;
|
|
70
|
-
};
|
|
71
|
-
"/apikey": {
|
|
72
|
-
parameters: {
|
|
73
|
-
query?: never;
|
|
74
|
-
header?: never;
|
|
75
|
-
path?: never;
|
|
76
|
-
cookie?: never;
|
|
77
|
-
};
|
|
78
|
-
/**
|
|
79
|
-
* List user ApiKeys
|
|
80
|
-
* @description List user ApiKeys
|
|
81
|
-
*/
|
|
82
|
-
get: operations["apikey/list"];
|
|
83
|
-
put?: never;
|
|
84
|
-
/**
|
|
85
|
-
* Create apikeys for user
|
|
86
|
-
* @description Create apikeys for user
|
|
87
|
-
*/
|
|
88
|
-
post: operations["apikey/create"];
|
|
89
|
-
delete?: never;
|
|
90
|
-
options?: never;
|
|
91
|
-
head?: never;
|
|
92
|
-
patch?: never;
|
|
93
|
-
trace?: never;
|
|
94
|
-
};
|
|
95
|
-
"/status/{related_id}": {
|
|
96
|
-
parameters: {
|
|
97
|
-
query?: never;
|
|
98
|
-
header?: never;
|
|
99
|
-
path?: never;
|
|
100
|
-
cookie?: never;
|
|
101
|
-
};
|
|
102
|
-
get?: never;
|
|
103
|
-
put?: never;
|
|
104
|
-
/**
|
|
105
|
-
* Update status resource
|
|
106
|
-
* @description Update status resource
|
|
107
|
-
*/
|
|
108
|
-
post: operations["status/update"];
|
|
109
|
-
delete?: never;
|
|
110
|
-
options?: never;
|
|
111
|
-
head?: never;
|
|
112
|
-
patch?: never;
|
|
113
|
-
trace?: never;
|
|
114
|
-
};
|
|
115
|
-
"/app": {
|
|
116
|
-
parameters: {
|
|
117
|
-
query?: never;
|
|
118
|
-
header?: never;
|
|
119
|
-
path?: never;
|
|
120
|
-
cookie?: never;
|
|
121
|
-
};
|
|
122
|
-
/**
|
|
123
|
-
* Query Apps
|
|
124
|
-
* @description Query Apps
|
|
125
|
-
*/
|
|
126
|
-
get: operations["app/query"];
|
|
127
|
-
put?: never;
|
|
128
|
-
/**
|
|
129
|
-
* Create an App
|
|
130
|
-
* @description Create an App
|
|
131
|
-
*/
|
|
132
|
-
post: operations["app/create"];
|
|
133
|
-
delete?: never;
|
|
134
|
-
options?: never;
|
|
135
|
-
head?: never;
|
|
136
|
-
patch?: never;
|
|
137
|
-
trace?: never;
|
|
138
|
-
};
|
|
139
|
-
"/app/id/{app_id}": {
|
|
140
|
-
parameters: {
|
|
141
|
-
query?: never;
|
|
142
|
-
header?: never;
|
|
143
|
-
path?: never;
|
|
144
|
-
cookie?: never;
|
|
145
|
-
};
|
|
146
|
-
/**
|
|
147
|
-
* Get App
|
|
148
|
-
* @description Get App
|
|
149
|
-
*/
|
|
150
|
-
get: operations["app/getbyid"];
|
|
151
|
-
put?: never;
|
|
152
|
-
post?: never;
|
|
153
|
-
delete?: never;
|
|
154
|
-
options?: never;
|
|
155
|
-
head?: never;
|
|
156
|
-
patch?: never;
|
|
157
|
-
trace?: never;
|
|
158
|
-
};
|
|
159
|
-
"/app/{app_id}": {
|
|
160
|
-
parameters: {
|
|
161
|
-
query?: never;
|
|
162
|
-
header?: never;
|
|
163
|
-
path?: never;
|
|
164
|
-
cookie?: never;
|
|
165
|
-
};
|
|
166
|
-
/**
|
|
167
|
-
* Get App
|
|
168
|
-
* @description Get App
|
|
169
|
-
*/
|
|
170
|
-
get: operations["app/get"];
|
|
171
|
-
put?: never;
|
|
172
|
-
/**
|
|
173
|
-
* Update App
|
|
174
|
-
* @description Update App
|
|
175
|
-
*/
|
|
176
|
-
post: operations["app/update"];
|
|
177
|
-
/**
|
|
178
|
-
* Delete app
|
|
179
|
-
* @description Delete app
|
|
180
|
-
*/
|
|
181
|
-
delete: operations["app/remove"];
|
|
182
|
-
options?: never;
|
|
183
|
-
head?: never;
|
|
184
|
-
patch?: never;
|
|
185
|
-
trace?: never;
|
|
186
|
-
};
|
|
187
|
-
"/app/slug/{slug}": {
|
|
188
|
-
parameters: {
|
|
189
|
-
query?: never;
|
|
190
|
-
header?: never;
|
|
191
|
-
path?: never;
|
|
192
|
-
cookie?: never;
|
|
193
|
-
};
|
|
194
|
-
/**
|
|
195
|
-
* Get App by unique slug
|
|
196
|
-
* @description Get App by unique slug
|
|
197
|
-
*/
|
|
198
|
-
get: operations["app/getbyslug"];
|
|
199
|
-
put?: never;
|
|
200
|
-
post?: never;
|
|
201
|
-
delete?: never;
|
|
202
|
-
options?: never;
|
|
203
|
-
head?: never;
|
|
204
|
-
patch?: never;
|
|
205
|
-
trace?: never;
|
|
206
|
-
};
|
|
207
|
-
"/app/checkname": {
|
|
208
|
-
parameters: {
|
|
209
|
-
query?: never;
|
|
210
|
-
header?: never;
|
|
211
|
-
path?: never;
|
|
212
|
-
cookie?: never;
|
|
213
|
-
};
|
|
214
|
-
/**
|
|
215
|
-
* Check if an app name is availiable
|
|
216
|
-
* @description Check if an app name is availiable
|
|
217
|
-
*/
|
|
218
|
-
get: operations["app/checkname"];
|
|
219
|
-
put?: never;
|
|
220
|
-
post?: never;
|
|
221
|
-
delete?: never;
|
|
222
|
-
options?: never;
|
|
223
|
-
head?: never;
|
|
224
|
-
patch?: never;
|
|
225
|
-
trace?: never;
|
|
226
|
-
};
|
|
227
|
-
"/app/{app_id}/registry": {
|
|
228
|
-
parameters: {
|
|
229
|
-
query?: never;
|
|
230
|
-
header?: never;
|
|
231
|
-
path?: never;
|
|
232
|
-
cookie?: never;
|
|
233
|
-
};
|
|
234
|
-
/**
|
|
235
|
-
* Get app registry
|
|
236
|
-
* @description Get app registry
|
|
237
|
-
*/
|
|
238
|
-
get: operations["app/get_registry"];
|
|
239
|
-
put?: never;
|
|
240
|
-
post?: never;
|
|
241
|
-
delete?: never;
|
|
242
|
-
options?: never;
|
|
243
|
-
head?: never;
|
|
244
|
-
patch?: never;
|
|
245
|
-
trace?: never;
|
|
246
|
-
};
|
|
247
|
-
"/app/{app_id}/logs": {
|
|
248
|
-
parameters: {
|
|
249
|
-
query?: never;
|
|
250
|
-
header?: never;
|
|
251
|
-
path?: never;
|
|
252
|
-
cookie?: never;
|
|
253
|
-
};
|
|
254
|
-
/**
|
|
255
|
-
* Get app logs
|
|
256
|
-
* @description Get app logs
|
|
257
|
-
*/
|
|
258
|
-
get: operations["app/logs"];
|
|
259
|
-
put?: never;
|
|
260
|
-
post?: never;
|
|
261
|
-
delete?: never;
|
|
262
|
-
options?: never;
|
|
263
|
-
head?: never;
|
|
264
|
-
patch?: never;
|
|
265
|
-
trace?: never;
|
|
266
|
-
};
|
|
267
|
-
"/app/{app_id}/traffic": {
|
|
268
|
-
parameters: {
|
|
269
|
-
query?: never;
|
|
270
|
-
header?: never;
|
|
271
|
-
path?: never;
|
|
272
|
-
cookie?: never;
|
|
273
|
-
};
|
|
274
|
-
/**
|
|
275
|
-
* Get App Traffic
|
|
276
|
-
* @description Get App Traffic
|
|
277
|
-
*/
|
|
278
|
-
get: operations["app/traffic"];
|
|
279
|
-
put?: never;
|
|
280
|
-
post?: never;
|
|
281
|
-
delete?: never;
|
|
282
|
-
options?: never;
|
|
283
|
-
head?: never;
|
|
284
|
-
patch?: never;
|
|
285
|
-
trace?: never;
|
|
286
|
-
};
|
|
287
|
-
"/domain/{domain_id}": {
|
|
288
|
-
parameters: {
|
|
289
|
-
query?: never;
|
|
290
|
-
header?: never;
|
|
291
|
-
path?: never;
|
|
292
|
-
cookie?: never;
|
|
293
|
-
};
|
|
294
|
-
/**
|
|
295
|
-
* Get a domain
|
|
296
|
-
* @description Get a domain
|
|
297
|
-
*/
|
|
298
|
-
get: operations["domain/get"];
|
|
299
|
-
put?: never;
|
|
300
|
-
/**
|
|
301
|
-
* Update a Domain
|
|
302
|
-
* @description Update a Domain
|
|
303
|
-
*/
|
|
304
|
-
post: operations["domain/update"];
|
|
305
|
-
/**
|
|
306
|
-
* Delete a domain
|
|
307
|
-
* @description Delete a domain
|
|
308
|
-
*/
|
|
309
|
-
delete: operations["domain/delete"];
|
|
310
|
-
options?: never;
|
|
311
|
-
head?: never;
|
|
312
|
-
patch?: never;
|
|
313
|
-
trace?: never;
|
|
314
|
-
};
|
|
315
|
-
"/domain": {
|
|
316
|
-
parameters: {
|
|
317
|
-
query?: never;
|
|
318
|
-
header?: never;
|
|
319
|
-
path?: never;
|
|
320
|
-
cookie?: never;
|
|
321
|
-
};
|
|
322
|
-
/**
|
|
323
|
-
* List all domains
|
|
324
|
-
* @description List all domains
|
|
325
|
-
*/
|
|
326
|
-
get: operations["domain/list"];
|
|
327
|
-
put?: never;
|
|
328
|
-
/**
|
|
329
|
-
* Create a domain
|
|
330
|
-
* @description Create a domain
|
|
331
|
-
*/
|
|
332
|
-
post: operations["domain/create"];
|
|
333
|
-
delete?: never;
|
|
334
|
-
options?: never;
|
|
335
|
-
head?: never;
|
|
336
|
-
patch?: never;
|
|
337
|
-
trace?: never;
|
|
338
|
-
};
|
|
339
|
-
"/domain/fqdn/{fqdn}": {
|
|
340
|
-
parameters: {
|
|
341
|
-
query?: never;
|
|
342
|
-
header?: never;
|
|
343
|
-
path?: never;
|
|
344
|
-
cookie?: never;
|
|
345
|
-
};
|
|
346
|
-
/**
|
|
347
|
-
* Get domain by FQDN
|
|
348
|
-
* @description Get domain by FQDN
|
|
349
|
-
*/
|
|
350
|
-
get: operations["domain/fqdn"];
|
|
351
|
-
put?: never;
|
|
352
|
-
post?: never;
|
|
353
|
-
delete?: never;
|
|
354
|
-
options?: never;
|
|
355
|
-
head?: never;
|
|
356
|
-
patch?: never;
|
|
357
|
-
trace?: never;
|
|
358
|
-
};
|
|
359
|
-
"/secret": {
|
|
360
|
-
parameters: {
|
|
361
|
-
query?: never;
|
|
362
|
-
header?: never;
|
|
363
|
-
path?: never;
|
|
364
|
-
cookie?: never;
|
|
365
|
-
};
|
|
366
|
-
get?: never;
|
|
367
|
-
put?: never;
|
|
368
|
-
/**
|
|
369
|
-
* Upsert a secret
|
|
370
|
-
* @description Upsert a secret
|
|
371
|
-
*/
|
|
372
|
-
post: operations["secrets/upsert"];
|
|
373
|
-
delete?: never;
|
|
374
|
-
options?: never;
|
|
375
|
-
head?: never;
|
|
376
|
-
patch?: never;
|
|
377
|
-
trace?: never;
|
|
378
|
-
};
|
|
379
|
-
"/secret/{context_id}": {
|
|
380
|
-
parameters: {
|
|
381
|
-
query?: never;
|
|
382
|
-
header?: never;
|
|
383
|
-
path?: never;
|
|
384
|
-
cookie?: never;
|
|
385
|
-
};
|
|
386
|
-
/**
|
|
387
|
-
* List all secrets assigned to an App or Profile contexts
|
|
388
|
-
* @description List all app secrets assigned to an App or Profile contexts
|
|
389
|
-
*/
|
|
390
|
-
get: operations["secrets/list_app"];
|
|
391
|
-
put?: never;
|
|
392
|
-
post?: never;
|
|
393
|
-
delete?: never;
|
|
394
|
-
options?: never;
|
|
395
|
-
head?: never;
|
|
396
|
-
patch?: never;
|
|
397
|
-
trace?: never;
|
|
398
|
-
};
|
|
399
|
-
"/secret/{secret_id}": {
|
|
400
|
-
parameters: {
|
|
401
|
-
query?: never;
|
|
402
|
-
header?: never;
|
|
403
|
-
path?: never;
|
|
404
|
-
cookie?: never;
|
|
405
|
-
};
|
|
406
|
-
get?: never;
|
|
407
|
-
put?: never;
|
|
408
|
-
post?: never;
|
|
409
|
-
/**
|
|
410
|
-
* Delete a secret
|
|
411
|
-
* @description Delete a secret
|
|
412
|
-
*/
|
|
413
|
-
delete: operations["secrets/delete"];
|
|
414
|
-
options?: never;
|
|
415
|
-
head?: never;
|
|
416
|
-
patch?: never;
|
|
417
|
-
trace?: never;
|
|
418
|
-
};
|
|
419
|
-
"/secret/createbatch": {
|
|
420
|
-
parameters: {
|
|
421
|
-
query?: never;
|
|
422
|
-
header?: never;
|
|
423
|
-
path?: never;
|
|
424
|
-
cookie?: never;
|
|
425
|
-
};
|
|
426
|
-
get?: never;
|
|
427
|
-
put?: never;
|
|
428
|
-
/**
|
|
429
|
-
* Create secrets in batch
|
|
430
|
-
* @description Create a secrets in batch
|
|
431
|
-
*/
|
|
432
|
-
post: operations["secrets/create_batch"];
|
|
433
|
-
delete?: never;
|
|
434
|
-
options?: never;
|
|
435
|
-
head?: never;
|
|
436
|
-
patch?: never;
|
|
437
|
-
trace?: never;
|
|
438
|
-
};
|
|
439
|
-
"/deployment": {
|
|
440
|
-
parameters: {
|
|
441
|
-
query?: never;
|
|
442
|
-
header?: never;
|
|
443
|
-
path?: never;
|
|
444
|
-
cookie?: never;
|
|
445
|
-
};
|
|
446
|
-
/**
|
|
447
|
-
* List app deployments
|
|
448
|
-
* @description List app deployments
|
|
449
|
-
*/
|
|
450
|
-
get: operations["deployment/list"];
|
|
451
|
-
put?: never;
|
|
452
|
-
/**
|
|
453
|
-
* Create a Deployment
|
|
454
|
-
* @description Create a Deployment
|
|
455
|
-
*/
|
|
456
|
-
post: operations["deployment/create"];
|
|
457
|
-
delete?: never;
|
|
458
|
-
options?: never;
|
|
459
|
-
head?: never;
|
|
460
|
-
patch?: never;
|
|
461
|
-
trace?: never;
|
|
462
|
-
};
|
|
463
|
-
"/deployment/{deployment_id}": {
|
|
464
|
-
parameters: {
|
|
465
|
-
query?: never;
|
|
466
|
-
header?: never;
|
|
467
|
-
path?: never;
|
|
468
|
-
cookie?: never;
|
|
469
|
-
};
|
|
470
|
-
/**
|
|
471
|
-
* Get Deployment
|
|
472
|
-
* @description Get Deployment
|
|
473
|
-
*/
|
|
474
|
-
get: operations["deployment/get"];
|
|
475
|
-
put?: never;
|
|
476
|
-
post?: never;
|
|
477
|
-
delete?: never;
|
|
478
|
-
options?: never;
|
|
479
|
-
head?: never;
|
|
480
|
-
patch?: never;
|
|
481
|
-
trace?: never;
|
|
482
|
-
};
|
|
483
|
-
"/volume": {
|
|
484
|
-
parameters: {
|
|
485
|
-
query?: never;
|
|
486
|
-
header?: never;
|
|
487
|
-
path?: never;
|
|
488
|
-
cookie?: never;
|
|
489
|
-
};
|
|
490
|
-
get?: never;
|
|
491
|
-
put?: never;
|
|
492
|
-
/**
|
|
493
|
-
* Create a Volume
|
|
494
|
-
* @description Create a Volume
|
|
495
|
-
*/
|
|
496
|
-
post: operations["volume/create"];
|
|
497
|
-
delete?: never;
|
|
498
|
-
options?: never;
|
|
499
|
-
head?: never;
|
|
500
|
-
patch?: never;
|
|
501
|
-
trace?: never;
|
|
502
|
-
};
|
|
503
|
-
"/volume/{volume_id}": {
|
|
504
|
-
parameters: {
|
|
505
|
-
query?: never;
|
|
506
|
-
header?: never;
|
|
507
|
-
path?: never;
|
|
508
|
-
cookie?: never;
|
|
509
|
-
};
|
|
510
|
-
get?: never;
|
|
511
|
-
put?: never;
|
|
512
|
-
post?: never;
|
|
513
|
-
/**
|
|
514
|
-
* Remove a Volume
|
|
515
|
-
* @description Remove a Volume
|
|
516
|
-
*/
|
|
517
|
-
delete: operations["volume/delete"];
|
|
518
|
-
options?: never;
|
|
519
|
-
head?: never;
|
|
520
|
-
patch?: never;
|
|
521
|
-
trace?: never;
|
|
522
|
-
};
|
|
523
|
-
"/stats": {
|
|
524
|
-
parameters: {
|
|
525
|
-
query?: never;
|
|
526
|
-
header?: never;
|
|
527
|
-
path?: never;
|
|
528
|
-
cookie?: never;
|
|
529
|
-
};
|
|
530
|
-
/**
|
|
531
|
-
* Get User Stats
|
|
532
|
-
* @description Get User Stats
|
|
533
|
-
*/
|
|
534
|
-
get: operations["statistics/get"];
|
|
535
|
-
put?: never;
|
|
536
|
-
post?: never;
|
|
537
|
-
delete?: never;
|
|
538
|
-
options?: never;
|
|
539
|
-
head?: never;
|
|
540
|
-
patch?: never;
|
|
541
|
-
trace?: never;
|
|
542
|
-
};
|
|
543
|
-
"/user/billing_portal": {
|
|
544
|
-
parameters: {
|
|
545
|
-
query?: never;
|
|
546
|
-
header?: never;
|
|
547
|
-
path?: never;
|
|
548
|
-
cookie?: never;
|
|
549
|
-
};
|
|
550
|
-
/**
|
|
551
|
-
* Redirect to Stripe billing portal
|
|
552
|
-
* @description Redirect to Stripe billing portal
|
|
553
|
-
*/
|
|
554
|
-
get: operations["users/billing_portal"];
|
|
555
|
-
put?: never;
|
|
556
|
-
post?: never;
|
|
557
|
-
delete?: never;
|
|
558
|
-
options?: never;
|
|
559
|
-
head?: never;
|
|
560
|
-
patch?: never;
|
|
561
|
-
trace?: never;
|
|
562
|
-
};
|
|
563
|
-
"/user/payment_methods": {
|
|
564
|
-
parameters: {
|
|
565
|
-
query?: never;
|
|
566
|
-
header?: never;
|
|
567
|
-
path?: never;
|
|
568
|
-
cookie?: never;
|
|
569
|
-
};
|
|
570
|
-
/**
|
|
571
|
-
* List Stripe Payment Methods
|
|
572
|
-
* @description List Stripe Payment Methods
|
|
573
|
-
*/
|
|
574
|
-
get: operations["users/payment_methods"];
|
|
575
|
-
put?: never;
|
|
576
|
-
post?: never;
|
|
577
|
-
delete?: never;
|
|
578
|
-
options?: never;
|
|
579
|
-
head?: never;
|
|
580
|
-
patch?: never;
|
|
581
|
-
trace?: never;
|
|
582
|
-
};
|
|
583
|
-
"/user/setup_intent": {
|
|
584
|
-
parameters: {
|
|
585
|
-
query?: never;
|
|
586
|
-
header?: never;
|
|
587
|
-
path?: never;
|
|
588
|
-
cookie?: never;
|
|
589
|
-
};
|
|
590
|
-
get: operations["users/setup_intent"];
|
|
591
|
-
put?: never;
|
|
592
|
-
post?: never;
|
|
593
|
-
delete?: never;
|
|
594
|
-
options?: never;
|
|
595
|
-
head?: never;
|
|
596
|
-
patch?: never;
|
|
597
|
-
trace?: never;
|
|
598
|
-
};
|
|
599
|
-
"/user/list_invoices": {
|
|
600
|
-
parameters: {
|
|
601
|
-
query?: never;
|
|
602
|
-
header?: never;
|
|
603
|
-
path?: never;
|
|
604
|
-
cookie?: never;
|
|
605
|
-
};
|
|
606
|
-
get: operations["users/list_invoices"];
|
|
607
|
-
put?: never;
|
|
608
|
-
post?: never;
|
|
609
|
-
delete?: never;
|
|
610
|
-
options?: never;
|
|
611
|
-
head?: never;
|
|
612
|
-
patch?: never;
|
|
613
|
-
trace?: never;
|
|
614
|
-
};
|
|
615
|
-
}
|
|
616
|
-
export type webhooks = Record<string, never>;
|
|
617
|
-
export interface components {
|
|
618
|
-
schemas: {
|
|
619
|
-
/** @description Event secret.create_batch */
|
|
620
|
-
"Event_secret.create_batch": {
|
|
621
|
-
/** @enum {string} */
|
|
622
|
-
type: "secret.create_batch";
|
|
623
|
-
produced_at: number;
|
|
624
|
-
payload: {
|
|
625
|
-
/** @enum {string} */
|
|
626
|
-
type: "app";
|
|
627
|
-
context: components["schemas"]["App"];
|
|
628
|
-
secrets: components["schemas"]["Secret"][];
|
|
629
|
-
};
|
|
630
|
-
};
|
|
631
|
-
/** @description Event deployment.created */
|
|
632
|
-
"Event_deployment.created": {
|
|
633
|
-
/** @enum {string} */
|
|
634
|
-
type: "deployment.created";
|
|
635
|
-
produced_at: number;
|
|
636
|
-
payload: {
|
|
637
|
-
deployment: components["schemas"]["Deployment"];
|
|
638
|
-
app: components["schemas"]["App"];
|
|
639
|
-
secrets: components["schemas"]["Secret"][];
|
|
640
|
-
};
|
|
641
|
-
};
|
|
642
|
-
/** @description Event app.create */
|
|
643
|
-
"Event_app.create": {
|
|
644
|
-
/** @enum {string} */
|
|
645
|
-
type: "app.create";
|
|
646
|
-
produced_at: number;
|
|
647
|
-
payload: components["schemas"]["App"];
|
|
648
|
-
};
|
|
649
|
-
/** @description Event app.delete */
|
|
650
|
-
"Event_app.delete": {
|
|
651
|
-
/** @enum {string} */
|
|
652
|
-
type: "app.delete";
|
|
653
|
-
produced_at: number;
|
|
654
|
-
payload: components["schemas"]["App"];
|
|
655
|
-
};
|
|
656
|
-
/** @description Event app.update */
|
|
657
|
-
"Event_app.update": {
|
|
658
|
-
/** @enum {string} */
|
|
659
|
-
type: "app.update";
|
|
660
|
-
produced_at: number;
|
|
661
|
-
payload: components["schemas"]["App"];
|
|
662
|
-
};
|
|
663
|
-
/** @description Event domain.create */
|
|
664
|
-
"Event_domain.create": {
|
|
665
|
-
/** @enum {string} */
|
|
666
|
-
type: "domain.create";
|
|
667
|
-
produced_at: number;
|
|
668
|
-
payload: {
|
|
669
|
-
domain: components["schemas"]["Domain"];
|
|
670
|
-
app: components["schemas"]["App"];
|
|
671
|
-
};
|
|
672
|
-
};
|
|
673
|
-
/** @description Event domain.update */
|
|
674
|
-
"Event_domain.update": {
|
|
675
|
-
/** @enum {string} */
|
|
676
|
-
type: "domain.update";
|
|
677
|
-
produced_at: number;
|
|
678
|
-
payload: {
|
|
679
|
-
domain: components["schemas"]["Domain"];
|
|
680
|
-
app: components["schemas"]["App"];
|
|
681
|
-
};
|
|
682
|
-
};
|
|
683
|
-
/** @description Event volume.create */
|
|
684
|
-
"Event_volume.create": {
|
|
685
|
-
/** @enum {string} */
|
|
686
|
-
type: "volume.create";
|
|
687
|
-
produced_at: number;
|
|
688
|
-
payload: components["schemas"]["Volume"];
|
|
689
|
-
};
|
|
690
|
-
/** @description Event volume.delete */
|
|
691
|
-
"Event_volume.delete": {
|
|
692
|
-
/** @enum {string} */
|
|
693
|
-
type: "volume.delete";
|
|
694
|
-
produced_at: number;
|
|
695
|
-
payload: components["schemas"]["Volume"];
|
|
696
|
-
};
|
|
697
|
-
/** @description Event deployment.update_status */
|
|
698
|
-
"Event_deployment.update_status": {
|
|
699
|
-
/** @enum {string} */
|
|
700
|
-
type: "deployment.update_status";
|
|
701
|
-
produced_at: number;
|
|
702
|
-
payload: {
|
|
703
|
-
id: string;
|
|
704
|
-
status: components["schemas"]["DeploymentStatus"];
|
|
705
|
-
};
|
|
706
|
-
};
|
|
707
|
-
/** @description Profile */
|
|
708
|
-
Profile: {
|
|
709
|
-
/** @description Profile ID */
|
|
710
|
-
id: string;
|
|
711
|
-
slug: string;
|
|
712
|
-
name?: string;
|
|
713
|
-
description: string;
|
|
714
|
-
is_team: boolean;
|
|
715
|
-
owner_id: string;
|
|
716
|
-
stripe_sub?: string | null;
|
|
717
|
-
/** @description Profile creation date */
|
|
718
|
-
createdAt: string;
|
|
719
|
-
};
|
|
720
|
-
/** @description PaginatedResponse */
|
|
721
|
-
ProfilePage: {
|
|
722
|
-
/** @description next cursor */
|
|
723
|
-
next: string | null;
|
|
724
|
-
/** @description list of results */
|
|
725
|
-
results: {
|
|
726
|
-
/** @description Profile ID */
|
|
727
|
-
id: string;
|
|
728
|
-
slug: string;
|
|
729
|
-
name?: string;
|
|
730
|
-
description: string;
|
|
731
|
-
is_team: boolean;
|
|
732
|
-
owner_id: string;
|
|
733
|
-
stripe_sub?: string | null;
|
|
734
|
-
/** @description Profile creation date */
|
|
735
|
-
createdAt: string;
|
|
736
|
-
}[];
|
|
737
|
-
};
|
|
738
|
-
ApiKey: {
|
|
739
|
-
id: string;
|
|
740
|
-
apikey: string;
|
|
741
|
-
user_id: string;
|
|
742
|
-
team: string;
|
|
743
|
-
description?: string;
|
|
744
|
-
createdAt: string;
|
|
745
|
-
};
|
|
746
|
-
/** @description PaginatedResponse */
|
|
747
|
-
ApiKeyPage: {
|
|
748
|
-
/** @description next cursor */
|
|
749
|
-
next: string | null;
|
|
750
|
-
/** @description list of results */
|
|
751
|
-
results: {
|
|
752
|
-
id: string;
|
|
753
|
-
apikey: string;
|
|
754
|
-
user_id: string;
|
|
755
|
-
team: string;
|
|
756
|
-
description?: string;
|
|
757
|
-
createdAt: string;
|
|
758
|
-
}[];
|
|
759
|
-
};
|
|
760
|
-
AppRuntimeStrategy: "next" | "wordpress";
|
|
761
|
-
AppRuntime: "node" | "php";
|
|
762
|
-
AppStatus: {
|
|
763
|
-
/**
|
|
764
|
-
* @description High-level summary of where the Database is in its lifecycle
|
|
765
|
-
* @default UNKNOWN
|
|
766
|
-
*/
|
|
767
|
-
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
768
|
-
/**
|
|
769
|
-
* @description Deployment for this app
|
|
770
|
-
* @default null
|
|
771
|
-
*/
|
|
772
|
-
deployment: string;
|
|
773
|
-
/**
|
|
774
|
-
* @description Deployment for this app
|
|
775
|
-
* @default null
|
|
776
|
-
*/
|
|
777
|
-
deployment_previous: string;
|
|
778
|
-
/**
|
|
779
|
-
* @description Last commited cache Purge
|
|
780
|
-
* @default null
|
|
781
|
-
*/
|
|
782
|
-
last_commited_purge: string;
|
|
783
|
-
};
|
|
784
|
-
/** @description App */
|
|
785
|
-
App: {
|
|
786
|
-
/** @description App ID */
|
|
787
|
-
id: string;
|
|
788
|
-
/** @description Profile */
|
|
789
|
-
profile?: {
|
|
790
|
-
/** @description Profile ID */
|
|
791
|
-
id: string;
|
|
792
|
-
slug: string;
|
|
793
|
-
name?: string;
|
|
794
|
-
description: string;
|
|
795
|
-
is_team: boolean;
|
|
796
|
-
owner_id: string;
|
|
797
|
-
stripe_sub?: string | null;
|
|
798
|
-
/** @description Profile creation date */
|
|
799
|
-
createdAt: string;
|
|
800
|
-
} | string | unknown;
|
|
801
|
-
team: string;
|
|
802
|
-
name: string;
|
|
803
|
-
description: string;
|
|
804
|
-
slug: string;
|
|
805
|
-
url: string;
|
|
806
|
-
active: boolean;
|
|
807
|
-
runtime: components["schemas"]["AppRuntime"];
|
|
808
|
-
runtime_strategy: ("next" | "wordpress") | null;
|
|
809
|
-
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
810
|
-
instance_type: string;
|
|
811
|
-
/** @description Deploy region */
|
|
812
|
-
region: string;
|
|
813
|
-
/** @description User that created the app */
|
|
814
|
-
creator: string;
|
|
815
|
-
metadata: {
|
|
816
|
-
[key: string]: unknown;
|
|
817
|
-
};
|
|
818
|
-
status: components["schemas"]["AppStatus"];
|
|
819
|
-
/** @description App creation date */
|
|
820
|
-
createdAt: string;
|
|
821
|
-
};
|
|
822
|
-
/** @description PaginatedResponse */
|
|
823
|
-
AppPage: {
|
|
824
|
-
/** @description next cursor */
|
|
825
|
-
next: string | null;
|
|
826
|
-
/** @description list of results */
|
|
827
|
-
results: {
|
|
828
|
-
/** @description App ID */
|
|
829
|
-
id: string;
|
|
830
|
-
/** @description Profile */
|
|
831
|
-
profile?: {
|
|
832
|
-
/** @description Profile ID */
|
|
833
|
-
id: string;
|
|
834
|
-
slug: string;
|
|
835
|
-
name?: string;
|
|
836
|
-
description: string;
|
|
837
|
-
is_team: boolean;
|
|
838
|
-
owner_id: string;
|
|
839
|
-
stripe_sub?: string | null;
|
|
840
|
-
/** @description Profile creation date */
|
|
841
|
-
createdAt: string;
|
|
842
|
-
} | string | unknown;
|
|
843
|
-
team: string;
|
|
844
|
-
name: string;
|
|
845
|
-
description: string;
|
|
846
|
-
slug: string;
|
|
847
|
-
url: string;
|
|
848
|
-
active: boolean;
|
|
849
|
-
runtime: components["schemas"]["AppRuntime"];
|
|
850
|
-
runtime_strategy: ("next" | "wordpress") | null;
|
|
851
|
-
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
852
|
-
instance_type: string;
|
|
853
|
-
/** @description Deploy region */
|
|
854
|
-
region: string;
|
|
855
|
-
/** @description User that created the app */
|
|
856
|
-
creator: string;
|
|
857
|
-
metadata: {
|
|
858
|
-
[key: string]: unknown;
|
|
859
|
-
};
|
|
860
|
-
status: components["schemas"]["AppStatus"];
|
|
861
|
-
/** @description App creation date */
|
|
862
|
-
createdAt: string;
|
|
863
|
-
}[];
|
|
864
|
-
};
|
|
865
|
-
AppUpdate: {
|
|
866
|
-
name?: string;
|
|
867
|
-
description?: string;
|
|
868
|
-
runtime?: components["schemas"]["AppRuntime"];
|
|
869
|
-
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
870
|
-
instance_type?: string;
|
|
871
|
-
};
|
|
872
|
-
AppCreate: {
|
|
873
|
-
name: string;
|
|
874
|
-
team: string;
|
|
875
|
-
runtime?: string;
|
|
876
|
-
description?: string;
|
|
877
|
-
};
|
|
878
|
-
/** @description Domain */
|
|
879
|
-
Domain: {
|
|
880
|
-
/** @description Domain ID */
|
|
881
|
-
id: string;
|
|
882
|
-
/** @description Profile */
|
|
883
|
-
profile?: {
|
|
884
|
-
/** @description Profile ID */
|
|
885
|
-
id: string;
|
|
886
|
-
slug: string;
|
|
887
|
-
name?: string;
|
|
888
|
-
description: string;
|
|
889
|
-
is_team: boolean;
|
|
890
|
-
owner_id: string;
|
|
891
|
-
stripe_sub?: string | null;
|
|
892
|
-
/** @description Profile creation date */
|
|
893
|
-
createdAt: string;
|
|
894
|
-
} | string | unknown;
|
|
895
|
-
team: string;
|
|
896
|
-
/** @description Unique identifier of the domain */
|
|
897
|
-
fqdn: string;
|
|
898
|
-
/** @description TLS is enabled for this domain */
|
|
899
|
-
tls: boolean;
|
|
900
|
-
/** @description Linked App */
|
|
901
|
-
app_id?: string | null;
|
|
902
|
-
/** @description If the domain has the ownership verified */
|
|
903
|
-
verified: boolean;
|
|
904
|
-
/** @description Domain creation date */
|
|
905
|
-
createdAt: string;
|
|
906
|
-
};
|
|
907
|
-
/** @description PaginatedResponse */
|
|
908
|
-
DomainPage: {
|
|
909
|
-
/** @description next cursor */
|
|
910
|
-
next: string | null;
|
|
911
|
-
/** @description list of results */
|
|
912
|
-
results: {
|
|
913
|
-
/** @description Domain ID */
|
|
914
|
-
id: string;
|
|
915
|
-
/** @description Profile */
|
|
916
|
-
profile?: {
|
|
917
|
-
/** @description Profile ID */
|
|
918
|
-
id: string;
|
|
919
|
-
slug: string;
|
|
920
|
-
name?: string;
|
|
921
|
-
description: string;
|
|
922
|
-
is_team: boolean;
|
|
923
|
-
owner_id: string;
|
|
924
|
-
stripe_sub?: string | null;
|
|
925
|
-
/** @description Profile creation date */
|
|
926
|
-
createdAt: string;
|
|
927
|
-
} | string | unknown;
|
|
928
|
-
team: string;
|
|
929
|
-
/** @description Unique identifier of the domain */
|
|
930
|
-
fqdn: string;
|
|
931
|
-
/** @description TLS is enabled for this domain */
|
|
932
|
-
tls: boolean;
|
|
933
|
-
/** @description Linked App */
|
|
934
|
-
app_id?: string | null;
|
|
935
|
-
/** @description If the domain has the ownership verified */
|
|
936
|
-
verified: boolean;
|
|
937
|
-
/** @description Domain creation date */
|
|
938
|
-
createdAt: string;
|
|
939
|
-
}[];
|
|
940
|
-
};
|
|
941
|
-
/** @description A Secret object */
|
|
942
|
-
Secret: {
|
|
943
|
-
/** @description Secret ID */
|
|
944
|
-
id: string;
|
|
945
|
-
/** @description Secret is linked to App */
|
|
946
|
-
app_id?: string;
|
|
947
|
-
/** @description Secret is linked to App */
|
|
948
|
-
profile_id?: string;
|
|
949
|
-
/** @description Secret is linked to App */
|
|
950
|
-
related: string;
|
|
951
|
-
related_model: string;
|
|
952
|
-
/** @description Secret name */
|
|
953
|
-
name: string;
|
|
954
|
-
/** @description Secret value */
|
|
955
|
-
value: string;
|
|
956
|
-
createdAt: string;
|
|
957
|
-
};
|
|
958
|
-
/** @description PaginatedResponse */
|
|
959
|
-
SecretPage: {
|
|
960
|
-
/** @description next cursor */
|
|
961
|
-
next: string | null;
|
|
962
|
-
/** @description list of results */
|
|
963
|
-
results: {
|
|
964
|
-
/** @description Secret ID */
|
|
965
|
-
id: string;
|
|
966
|
-
/** @description Secret is linked to App */
|
|
967
|
-
app_id?: string;
|
|
968
|
-
/** @description Secret is linked to App */
|
|
969
|
-
profile_id?: string;
|
|
970
|
-
/** @description Secret is linked to App */
|
|
971
|
-
related: string;
|
|
972
|
-
related_model: string;
|
|
973
|
-
/** @description Secret name */
|
|
974
|
-
name: string;
|
|
975
|
-
/** @description Secret value */
|
|
976
|
-
value: string;
|
|
977
|
-
createdAt: string;
|
|
978
|
-
}[];
|
|
979
|
-
};
|
|
980
|
-
/** @description Create Secrets by Batch */
|
|
981
|
-
SecretCreateBatch: {
|
|
982
|
-
context_id: string;
|
|
983
|
-
secrets: {
|
|
984
|
-
name: string;
|
|
985
|
-
value: string;
|
|
986
|
-
}[];
|
|
987
|
-
};
|
|
988
|
-
/** @description Upsert Secret */
|
|
989
|
-
SecretUpsert: {
|
|
990
|
-
app_id: string;
|
|
991
|
-
name: string;
|
|
992
|
-
value: string;
|
|
993
|
-
};
|
|
994
|
-
/** @description Deployment */
|
|
995
|
-
Deployment: {
|
|
996
|
-
/** @description Deployment ID */
|
|
997
|
-
id: string;
|
|
998
|
-
app_id: string;
|
|
999
|
-
image: string;
|
|
1000
|
-
status: components["schemas"]["DeploymentStatus"];
|
|
1001
|
-
/**
|
|
1002
|
-
* @description user id of deployment creator
|
|
1003
|
-
* @default
|
|
1004
|
-
*/
|
|
1005
|
-
user: string | null;
|
|
1006
|
-
/** @description Deployment creation date */
|
|
1007
|
-
createdAt: string;
|
|
1008
|
-
};
|
|
1009
|
-
/** @description PaginatedResponse */
|
|
1010
|
-
DeploymentPage: {
|
|
1011
|
-
/** @description next cursor */
|
|
1012
|
-
next: string | null;
|
|
1013
|
-
/** @description list of results */
|
|
1014
|
-
results: {
|
|
1015
|
-
/** @description Deployment ID */
|
|
1016
|
-
id: string;
|
|
1017
|
-
app_id: string;
|
|
1018
|
-
image: string;
|
|
1019
|
-
status: components["schemas"]["DeploymentStatus"];
|
|
1020
|
-
/**
|
|
1021
|
-
* @description user id of deployment creator
|
|
1022
|
-
* @default
|
|
1023
|
-
*/
|
|
1024
|
-
user: string | null;
|
|
1025
|
-
/** @description Deployment creation date */
|
|
1026
|
-
createdAt: string;
|
|
1027
|
-
}[];
|
|
1028
|
-
};
|
|
1029
|
-
DeploymentCreate: {
|
|
1030
|
-
app_id: string;
|
|
1031
|
-
image: string;
|
|
1032
|
-
};
|
|
1033
|
-
DeploymentStatus: {
|
|
1034
|
-
/**
|
|
1035
|
-
* @description High-level summary of where the Deployment is in its lifecycle
|
|
1036
|
-
* @default UNKNOWN
|
|
1037
|
-
*/
|
|
1038
|
-
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
1039
|
-
};
|
|
1040
|
-
/** @description Volume */
|
|
1041
|
-
Volume: {
|
|
1042
|
-
id: string;
|
|
1043
|
-
/** @description Profile */
|
|
1044
|
-
profile?: {
|
|
1045
|
-
/** @description Profile ID */
|
|
1046
|
-
id: string;
|
|
1047
|
-
slug: string;
|
|
1048
|
-
name?: string;
|
|
1049
|
-
description: string;
|
|
1050
|
-
is_team: boolean;
|
|
1051
|
-
owner_id: string;
|
|
1052
|
-
stripe_sub?: string | null;
|
|
1053
|
-
/** @description Profile creation date */
|
|
1054
|
-
createdAt: string;
|
|
1055
|
-
} | string | unknown;
|
|
1056
|
-
team: string;
|
|
1057
|
-
name: string;
|
|
1058
|
-
description: string;
|
|
1059
|
-
slug: string;
|
|
1060
|
-
/** @description App which has this volume mounted */
|
|
1061
|
-
app_id: string | null;
|
|
1062
|
-
/** @description The size of the block storage volume in GiB */
|
|
1063
|
-
size_gb: number;
|
|
1064
|
-
/** @description Region where is deployed */
|
|
1065
|
-
region: string;
|
|
1066
|
-
/** @description State */
|
|
1067
|
-
status: "pending" | "ready";
|
|
1068
|
-
/** @description User creator of this volume */
|
|
1069
|
-
creator: string;
|
|
1070
|
-
/** @description Volume creation date */
|
|
1071
|
-
createdAt: string;
|
|
1072
|
-
};
|
|
1073
|
-
/** @description PaginatedResponse */
|
|
1074
|
-
VolumePage: {
|
|
1075
|
-
/** @description next cursor */
|
|
1076
|
-
next: string | null;
|
|
1077
|
-
/** @description list of results */
|
|
1078
|
-
results: {
|
|
1079
|
-
id: string;
|
|
1080
|
-
/** @description Profile */
|
|
1081
|
-
profile?: {
|
|
1082
|
-
/** @description Profile ID */
|
|
1083
|
-
id: string;
|
|
1084
|
-
slug: string;
|
|
1085
|
-
name?: string;
|
|
1086
|
-
description: string;
|
|
1087
|
-
is_team: boolean;
|
|
1088
|
-
owner_id: string;
|
|
1089
|
-
stripe_sub?: string | null;
|
|
1090
|
-
/** @description Profile creation date */
|
|
1091
|
-
createdAt: string;
|
|
1092
|
-
} | string | unknown;
|
|
1093
|
-
team: string;
|
|
1094
|
-
name: string;
|
|
1095
|
-
description: string;
|
|
1096
|
-
slug: string;
|
|
1097
|
-
/** @description App which has this volume mounted */
|
|
1098
|
-
app_id: string | null;
|
|
1099
|
-
/** @description The size of the block storage volume in GiB */
|
|
1100
|
-
size_gb: number;
|
|
1101
|
-
/** @description Region where is deployed */
|
|
1102
|
-
region: string;
|
|
1103
|
-
/** @description State */
|
|
1104
|
-
status: "pending" | "ready";
|
|
1105
|
-
/** @description User creator of this volume */
|
|
1106
|
-
creator: string;
|
|
1107
|
-
/** @description Volume creation date */
|
|
1108
|
-
createdAt: string;
|
|
1109
|
-
}[];
|
|
1110
|
-
};
|
|
1111
|
-
VolumeCreate: {
|
|
1112
|
-
name: string;
|
|
1113
|
-
/** @description Who owns this Volume */
|
|
1114
|
-
profile_id: string;
|
|
1115
|
-
/** @description The size of the block storage volume in GiB */
|
|
1116
|
-
size_gb: number;
|
|
1117
|
-
/**
|
|
1118
|
-
* @description Region where is deployed
|
|
1119
|
-
* @default poz1
|
|
1120
|
-
*/
|
|
1121
|
-
region: string;
|
|
1122
|
-
description?: string;
|
|
1123
|
-
};
|
|
1124
|
-
ApiKeyCreate: {
|
|
1125
|
-
description?: string;
|
|
1126
|
-
};
|
|
1127
|
-
AppChecknameResponse: {
|
|
1128
|
-
name: string;
|
|
1129
|
-
slug: string;
|
|
1130
|
-
url?: string;
|
|
1131
|
-
/** @description check if slug is availiable */
|
|
1132
|
-
availiable: boolean;
|
|
1133
|
-
error?: string;
|
|
1134
|
-
};
|
|
1135
|
-
DomainCreate: {
|
|
1136
|
-
profile_id: string;
|
|
1137
|
-
fqdn: string;
|
|
1138
|
-
/** @description Linked App */
|
|
1139
|
-
app_id?: string;
|
|
1140
|
-
/** @default true */
|
|
1141
|
-
tls: boolean;
|
|
1142
|
-
};
|
|
1143
|
-
DomainUpdate: {
|
|
1144
|
-
/** @description Link domain to this App */
|
|
1145
|
-
app_id?: string;
|
|
1146
|
-
};
|
|
1147
|
-
};
|
|
1148
|
-
responses: never;
|
|
1149
|
-
parameters: never;
|
|
1150
|
-
requestBodies: never;
|
|
1151
|
-
headers: {
|
|
1152
|
-
/** @description Faable Team */
|
|
1153
|
-
"": unknown;
|
|
1154
|
-
};
|
|
1155
|
-
pathItems: never;
|
|
1156
|
-
}
|
|
1157
|
-
export type $defs = Record<string, never>;
|
|
1158
|
-
export interface operations {
|
|
1159
|
-
"profile/list": {
|
|
1160
|
-
parameters: {
|
|
1161
|
-
query?: {
|
|
1162
|
-
/** @description Start from this cursor */
|
|
1163
|
-
cursor?: string;
|
|
1164
|
-
/** @description Size of the results array */
|
|
1165
|
-
pageSize?: number;
|
|
1166
|
-
};
|
|
1167
|
-
header?: never;
|
|
1168
|
-
path?: never;
|
|
1169
|
-
cookie?: never;
|
|
1170
|
-
};
|
|
1171
|
-
requestBody?: never;
|
|
1172
|
-
responses: {
|
|
1173
|
-
/** @description PaginatedResponse */
|
|
1174
|
-
200: {
|
|
1175
|
-
headers: {
|
|
1176
|
-
[name: string]: unknown;
|
|
1177
|
-
};
|
|
1178
|
-
content: {
|
|
1179
|
-
"application/json": {
|
|
1180
|
-
/** @description next cursor */
|
|
1181
|
-
next: string | null;
|
|
1182
|
-
/** @description list of results */
|
|
1183
|
-
results: unknown[];
|
|
1184
|
-
};
|
|
1185
|
-
};
|
|
1186
|
-
};
|
|
1187
|
-
};
|
|
1188
|
-
};
|
|
1189
|
-
"profile/create": {
|
|
1190
|
-
parameters: {
|
|
1191
|
-
query?: never;
|
|
1192
|
-
header?: never;
|
|
1193
|
-
path?: never;
|
|
1194
|
-
cookie?: never;
|
|
1195
|
-
};
|
|
1196
|
-
requestBody: {
|
|
1197
|
-
content: {
|
|
1198
|
-
"application/json": {
|
|
1199
|
-
name: string;
|
|
1200
|
-
description?: string;
|
|
1201
|
-
};
|
|
1202
|
-
};
|
|
1203
|
-
};
|
|
1204
|
-
responses: {
|
|
1205
|
-
/** @description Default Response */
|
|
1206
|
-
201: {
|
|
1207
|
-
headers: {
|
|
1208
|
-
[name: string]: unknown;
|
|
1209
|
-
};
|
|
1210
|
-
content: {
|
|
1211
|
-
"application/json": components["schemas"]["Profile"];
|
|
1212
|
-
};
|
|
1213
|
-
};
|
|
1214
|
-
};
|
|
1215
|
-
};
|
|
1216
|
-
"profiles/get": {
|
|
1217
|
-
parameters: {
|
|
1218
|
-
query?: never;
|
|
1219
|
-
header?: never;
|
|
1220
|
-
path: {
|
|
1221
|
-
profile_id: string;
|
|
1222
|
-
};
|
|
1223
|
-
cookie?: never;
|
|
1224
|
-
};
|
|
1225
|
-
requestBody?: never;
|
|
1226
|
-
responses: never;
|
|
1227
|
-
};
|
|
1228
|
-
"profile/getbyslug": {
|
|
1229
|
-
parameters: {
|
|
1230
|
-
query?: never;
|
|
1231
|
-
header?: never;
|
|
1232
|
-
path: {
|
|
1233
|
-
slug: string;
|
|
1234
|
-
};
|
|
1235
|
-
cookie?: never;
|
|
1236
|
-
};
|
|
1237
|
-
requestBody?: never;
|
|
1238
|
-
responses: {
|
|
1239
|
-
/** @description Default Response */
|
|
1240
|
-
200: {
|
|
1241
|
-
headers: {
|
|
1242
|
-
[name: string]: unknown;
|
|
1243
|
-
};
|
|
1244
|
-
content: {
|
|
1245
|
-
"application/json": components["schemas"]["Profile"];
|
|
1246
|
-
};
|
|
1247
|
-
};
|
|
1248
|
-
};
|
|
1249
|
-
};
|
|
1250
|
-
"apikey/list": {
|
|
1251
|
-
parameters: {
|
|
1252
|
-
query?: {
|
|
1253
|
-
/** @description Start from this cursor */
|
|
1254
|
-
cursor?: string;
|
|
1255
|
-
/** @description Size of the results array */
|
|
1256
|
-
pageSize?: number;
|
|
1257
|
-
};
|
|
1258
|
-
header?: never;
|
|
1259
|
-
path?: never;
|
|
1260
|
-
cookie?: never;
|
|
1261
|
-
};
|
|
1262
|
-
requestBody?: never;
|
|
1263
|
-
responses: {
|
|
1264
|
-
/** @description Default Response */
|
|
1265
|
-
200: {
|
|
1266
|
-
headers: {
|
|
1267
|
-
[name: string]: unknown;
|
|
1268
|
-
};
|
|
1269
|
-
content: {
|
|
1270
|
-
"application/json": components["schemas"]["ApiKeyPage"];
|
|
1271
|
-
};
|
|
1272
|
-
};
|
|
1273
|
-
};
|
|
1274
|
-
};
|
|
1275
|
-
"apikey/create": {
|
|
1276
|
-
parameters: {
|
|
1277
|
-
query?: never;
|
|
1278
|
-
header?: never;
|
|
1279
|
-
path?: never;
|
|
1280
|
-
cookie?: never;
|
|
1281
|
-
};
|
|
1282
|
-
requestBody?: {
|
|
1283
|
-
content: {
|
|
1284
|
-
"application/json": components["schemas"]["ApiKeyCreate"];
|
|
1285
|
-
};
|
|
1286
|
-
};
|
|
1287
|
-
responses: {
|
|
1288
|
-
/** @description Default Response */
|
|
1289
|
-
200: {
|
|
1290
|
-
headers: {
|
|
1291
|
-
[name: string]: unknown;
|
|
1292
|
-
};
|
|
1293
|
-
content: {
|
|
1294
|
-
"application/json": components["schemas"]["ApiKey"];
|
|
1295
|
-
};
|
|
1296
|
-
};
|
|
1297
|
-
};
|
|
1298
|
-
};
|
|
1299
|
-
"status/update": {
|
|
1300
|
-
parameters: {
|
|
1301
|
-
query?: never;
|
|
1302
|
-
header?: never;
|
|
1303
|
-
path: {
|
|
1304
|
-
related_id: string;
|
|
1305
|
-
};
|
|
1306
|
-
cookie?: never;
|
|
1307
|
-
};
|
|
1308
|
-
/** @description Update Status */
|
|
1309
|
-
requestBody?: {
|
|
1310
|
-
content: {
|
|
1311
|
-
"application/json": {
|
|
1312
|
-
[key: string]: unknown;
|
|
1313
|
-
};
|
|
1314
|
-
};
|
|
1315
|
-
};
|
|
1316
|
-
responses: {
|
|
1317
|
-
/** @description Default Response */
|
|
1318
|
-
200: {
|
|
1319
|
-
headers: {
|
|
1320
|
-
[name: string]: unknown;
|
|
1321
|
-
};
|
|
1322
|
-
content?: never;
|
|
1323
|
-
};
|
|
1324
|
-
};
|
|
1325
|
-
};
|
|
1326
|
-
"app/query": {
|
|
1327
|
-
parameters: {
|
|
1328
|
-
query?: {
|
|
1329
|
-
/** @description Start from this cursor */
|
|
1330
|
-
cursor?: string;
|
|
1331
|
-
/** @description Size of the results array */
|
|
1332
|
-
pageSize?: number;
|
|
1333
|
-
query?: string;
|
|
1334
|
-
};
|
|
1335
|
-
header?: never;
|
|
1336
|
-
path?: never;
|
|
1337
|
-
cookie?: never;
|
|
1338
|
-
};
|
|
1339
|
-
requestBody?: never;
|
|
1340
|
-
responses: {
|
|
1341
|
-
/** @description Default Response */
|
|
1342
|
-
200: {
|
|
1343
|
-
headers: {
|
|
1344
|
-
[name: string]: unknown;
|
|
1345
|
-
};
|
|
1346
|
-
content: {
|
|
1347
|
-
"application/json": components["schemas"]["AppPage"];
|
|
1348
|
-
};
|
|
1349
|
-
};
|
|
1350
|
-
};
|
|
1351
|
-
};
|
|
1352
|
-
"app/create": {
|
|
1353
|
-
parameters: {
|
|
1354
|
-
query?: never;
|
|
1355
|
-
header?: never;
|
|
1356
|
-
path?: never;
|
|
1357
|
-
cookie?: never;
|
|
1358
|
-
};
|
|
1359
|
-
requestBody?: {
|
|
1360
|
-
content: {
|
|
1361
|
-
"application/json": components["schemas"]["AppCreate"];
|
|
1362
|
-
};
|
|
1363
|
-
};
|
|
1364
|
-
responses: {
|
|
1365
|
-
/** @description Default Response */
|
|
1366
|
-
201: {
|
|
1367
|
-
headers: {
|
|
1368
|
-
[name: string]: unknown;
|
|
1369
|
-
};
|
|
1370
|
-
content: {
|
|
1371
|
-
"application/json": components["schemas"]["App"];
|
|
1372
|
-
};
|
|
1373
|
-
};
|
|
1374
|
-
};
|
|
1375
|
-
};
|
|
1376
|
-
"app/getbyid": {
|
|
1377
|
-
parameters: {
|
|
1378
|
-
query?: never;
|
|
1379
|
-
header?: never;
|
|
1380
|
-
path: {
|
|
1381
|
-
app_id: string;
|
|
1382
|
-
};
|
|
1383
|
-
cookie?: never;
|
|
1384
|
-
};
|
|
1385
|
-
requestBody?: never;
|
|
1386
|
-
responses: {
|
|
1387
|
-
/** @description Default Response */
|
|
1388
|
-
200: {
|
|
1389
|
-
headers: {
|
|
1390
|
-
[name: string]: unknown;
|
|
1391
|
-
};
|
|
1392
|
-
content: {
|
|
1393
|
-
"application/json": components["schemas"]["App"];
|
|
1394
|
-
};
|
|
1395
|
-
};
|
|
1396
|
-
};
|
|
1397
|
-
};
|
|
1398
|
-
"app/get": {
|
|
1399
|
-
parameters: {
|
|
1400
|
-
query?: never;
|
|
1401
|
-
header?: never;
|
|
1402
|
-
path: {
|
|
1403
|
-
app_id: string;
|
|
1404
|
-
};
|
|
1405
|
-
cookie?: never;
|
|
1406
|
-
};
|
|
1407
|
-
requestBody?: never;
|
|
1408
|
-
responses: {
|
|
1409
|
-
/** @description Default Response */
|
|
1410
|
-
200: {
|
|
1411
|
-
headers: {
|
|
1412
|
-
[name: string]: unknown;
|
|
1413
|
-
};
|
|
1414
|
-
content: {
|
|
1415
|
-
"application/json": components["schemas"]["App"];
|
|
1416
|
-
};
|
|
1417
|
-
};
|
|
1418
|
-
};
|
|
1419
|
-
};
|
|
1420
|
-
"app/update": {
|
|
1421
|
-
parameters: {
|
|
1422
|
-
query?: never;
|
|
1423
|
-
header?: never;
|
|
1424
|
-
path: {
|
|
1425
|
-
app_id: string;
|
|
1426
|
-
};
|
|
1427
|
-
cookie?: never;
|
|
1428
|
-
};
|
|
1429
|
-
requestBody?: {
|
|
1430
|
-
content: {
|
|
1431
|
-
"application/json": components["schemas"]["AppUpdate"];
|
|
1432
|
-
};
|
|
1433
|
-
};
|
|
1434
|
-
responses: {
|
|
1435
|
-
/** @description Default Response */
|
|
1436
|
-
200: {
|
|
1437
|
-
headers: {
|
|
1438
|
-
[name: string]: unknown;
|
|
1439
|
-
};
|
|
1440
|
-
content: {
|
|
1441
|
-
"application/json": components["schemas"]["App"];
|
|
1442
|
-
};
|
|
1443
|
-
};
|
|
1444
|
-
};
|
|
1445
|
-
};
|
|
1446
|
-
"app/remove": {
|
|
1447
|
-
parameters: {
|
|
1448
|
-
query?: never;
|
|
1449
|
-
header?: never;
|
|
1450
|
-
path: {
|
|
1451
|
-
app_id: string;
|
|
1452
|
-
};
|
|
1453
|
-
cookie?: never;
|
|
1454
|
-
};
|
|
1455
|
-
requestBody?: never;
|
|
1456
|
-
responses: {
|
|
1457
|
-
/** @description Default Response */
|
|
1458
|
-
200: {
|
|
1459
|
-
headers: {
|
|
1460
|
-
[name: string]: unknown;
|
|
1461
|
-
};
|
|
1462
|
-
content?: never;
|
|
1463
|
-
};
|
|
1464
|
-
};
|
|
1465
|
-
};
|
|
1466
|
-
"app/getbyslug": {
|
|
1467
|
-
parameters: {
|
|
1468
|
-
query?: never;
|
|
1469
|
-
header?: never;
|
|
1470
|
-
path: {
|
|
1471
|
-
slug: string;
|
|
1472
|
-
};
|
|
1473
|
-
cookie?: never;
|
|
1474
|
-
};
|
|
1475
|
-
requestBody?: never;
|
|
1476
|
-
responses: {
|
|
1477
|
-
/** @description Default Response */
|
|
1478
|
-
200: {
|
|
1479
|
-
headers: {
|
|
1480
|
-
[name: string]: unknown;
|
|
1481
|
-
};
|
|
1482
|
-
content: {
|
|
1483
|
-
"application/json": components["schemas"]["App"];
|
|
1484
|
-
};
|
|
1485
|
-
};
|
|
1486
|
-
};
|
|
1487
|
-
};
|
|
1488
|
-
"app/checkname": {
|
|
1489
|
-
parameters: {
|
|
1490
|
-
query: {
|
|
1491
|
-
/** @description Slug to test */
|
|
1492
|
-
name: string;
|
|
1493
|
-
};
|
|
1494
|
-
header?: never;
|
|
1495
|
-
path?: never;
|
|
1496
|
-
cookie?: never;
|
|
1497
|
-
};
|
|
1498
|
-
requestBody?: never;
|
|
1499
|
-
responses: {
|
|
1500
|
-
/** @description Default Response */
|
|
1501
|
-
200: {
|
|
1502
|
-
headers: {
|
|
1503
|
-
[name: string]: unknown;
|
|
1504
|
-
};
|
|
1505
|
-
content: {
|
|
1506
|
-
"application/json": components["schemas"]["AppChecknameResponse"];
|
|
1507
|
-
};
|
|
1508
|
-
};
|
|
1509
|
-
};
|
|
1510
|
-
};
|
|
1511
|
-
"app/get_registry": {
|
|
1512
|
-
parameters: {
|
|
1513
|
-
query?: never;
|
|
1514
|
-
header?: never;
|
|
1515
|
-
path: {
|
|
1516
|
-
app_id: string;
|
|
1517
|
-
};
|
|
1518
|
-
cookie?: never;
|
|
1519
|
-
};
|
|
1520
|
-
requestBody?: never;
|
|
1521
|
-
responses: {
|
|
1522
|
-
/** @description Default Response */
|
|
1523
|
-
200: {
|
|
1524
|
-
headers: {
|
|
1525
|
-
[name: string]: unknown;
|
|
1526
|
-
};
|
|
1527
|
-
content: {
|
|
1528
|
-
"application/json": {
|
|
1529
|
-
id: string;
|
|
1530
|
-
app_id: string;
|
|
1531
|
-
hostname: string;
|
|
1532
|
-
image: string;
|
|
1533
|
-
user: string;
|
|
1534
|
-
password: string;
|
|
1535
|
-
};
|
|
1536
|
-
};
|
|
1537
|
-
};
|
|
1538
|
-
};
|
|
1539
|
-
};
|
|
1540
|
-
"app/logs": {
|
|
1541
|
-
parameters: {
|
|
1542
|
-
query?: {
|
|
1543
|
-
download?: boolean;
|
|
1544
|
-
deployment_id?: string;
|
|
1545
|
-
};
|
|
1546
|
-
header?: never;
|
|
1547
|
-
path: {
|
|
1548
|
-
app_id: string;
|
|
1549
|
-
};
|
|
1550
|
-
cookie?: never;
|
|
1551
|
-
};
|
|
1552
|
-
requestBody?: never;
|
|
1553
|
-
responses: {
|
|
1554
|
-
/** @description Default Response */
|
|
1555
|
-
200: {
|
|
1556
|
-
headers: {
|
|
1557
|
-
[name: string]: unknown;
|
|
1558
|
-
};
|
|
1559
|
-
content?: never;
|
|
1560
|
-
};
|
|
1561
|
-
};
|
|
1562
|
-
};
|
|
1563
|
-
"app/traffic": {
|
|
1564
|
-
parameters: {
|
|
1565
|
-
query?: never;
|
|
1566
|
-
header?: never;
|
|
1567
|
-
path: {
|
|
1568
|
-
app_id: string;
|
|
1569
|
-
};
|
|
1570
|
-
cookie?: never;
|
|
1571
|
-
};
|
|
1572
|
-
requestBody?: never;
|
|
1573
|
-
responses: {
|
|
1574
|
-
/** @description Default Response */
|
|
1575
|
-
200: {
|
|
1576
|
-
headers: {
|
|
1577
|
-
[name: string]: unknown;
|
|
1578
|
-
};
|
|
1579
|
-
content?: never;
|
|
1580
|
-
};
|
|
1581
|
-
};
|
|
1582
|
-
};
|
|
1583
|
-
"domain/get": {
|
|
1584
|
-
parameters: {
|
|
1585
|
-
query?: never;
|
|
1586
|
-
header?: never;
|
|
1587
|
-
path: {
|
|
1588
|
-
domain_id: string;
|
|
1589
|
-
};
|
|
1590
|
-
cookie?: never;
|
|
1591
|
-
};
|
|
1592
|
-
requestBody?: never;
|
|
1593
|
-
responses: {
|
|
1594
|
-
/** @description Default Response */
|
|
1595
|
-
200: {
|
|
1596
|
-
headers: {
|
|
1597
|
-
[name: string]: unknown;
|
|
1598
|
-
};
|
|
1599
|
-
content: {
|
|
1600
|
-
"application/json": components["schemas"]["Domain"];
|
|
1601
|
-
};
|
|
1602
|
-
};
|
|
1603
|
-
};
|
|
1604
|
-
};
|
|
1605
|
-
"domain/update": {
|
|
1606
|
-
parameters: {
|
|
1607
|
-
query?: never;
|
|
1608
|
-
header?: never;
|
|
1609
|
-
path: {
|
|
1610
|
-
domain_id: string;
|
|
1611
|
-
};
|
|
1612
|
-
cookie?: never;
|
|
1613
|
-
};
|
|
1614
|
-
requestBody?: {
|
|
1615
|
-
content: {
|
|
1616
|
-
"application/json": components["schemas"]["DomainUpdate"];
|
|
1617
|
-
};
|
|
1618
|
-
};
|
|
1619
|
-
responses: {
|
|
1620
|
-
/** @description Default Response */
|
|
1621
|
-
201: {
|
|
1622
|
-
headers: {
|
|
1623
|
-
[name: string]: unknown;
|
|
1624
|
-
};
|
|
1625
|
-
content: {
|
|
1626
|
-
"application/json": components["schemas"]["Domain"];
|
|
1627
|
-
};
|
|
1628
|
-
};
|
|
1629
|
-
};
|
|
1630
|
-
};
|
|
1631
|
-
"domain/delete": {
|
|
1632
|
-
parameters: {
|
|
1633
|
-
query?: never;
|
|
1634
|
-
header?: never;
|
|
1635
|
-
path: {
|
|
1636
|
-
domain_id: string;
|
|
1637
|
-
};
|
|
1638
|
-
cookie?: never;
|
|
1639
|
-
};
|
|
1640
|
-
requestBody?: never;
|
|
1641
|
-
responses: {
|
|
1642
|
-
/** @description Default Response */
|
|
1643
|
-
200: {
|
|
1644
|
-
headers: {
|
|
1645
|
-
[name: string]: unknown;
|
|
1646
|
-
};
|
|
1647
|
-
content?: never;
|
|
1648
|
-
};
|
|
1649
|
-
};
|
|
1650
|
-
};
|
|
1651
|
-
"domain/list": {
|
|
1652
|
-
parameters: {
|
|
1653
|
-
query?: {
|
|
1654
|
-
/** @description Start from this cursor */
|
|
1655
|
-
cursor?: string;
|
|
1656
|
-
/** @description Size of the results array */
|
|
1657
|
-
pageSize?: number;
|
|
1658
|
-
query?: string;
|
|
1659
|
-
};
|
|
1660
|
-
header?: never;
|
|
1661
|
-
path?: never;
|
|
1662
|
-
cookie?: never;
|
|
1663
|
-
};
|
|
1664
|
-
requestBody?: never;
|
|
1665
|
-
responses: {
|
|
1666
|
-
/** @description Default Response */
|
|
1667
|
-
200: {
|
|
1668
|
-
headers: {
|
|
1669
|
-
[name: string]: unknown;
|
|
1670
|
-
};
|
|
1671
|
-
content: {
|
|
1672
|
-
"application/json": components["schemas"]["DomainPage"];
|
|
1673
|
-
};
|
|
1674
|
-
};
|
|
1675
|
-
};
|
|
1676
|
-
};
|
|
1677
|
-
"domain/create": {
|
|
1678
|
-
parameters: {
|
|
1679
|
-
query?: never;
|
|
1680
|
-
header?: never;
|
|
1681
|
-
path?: never;
|
|
1682
|
-
cookie?: never;
|
|
1683
|
-
};
|
|
1684
|
-
requestBody?: {
|
|
1685
|
-
content: {
|
|
1686
|
-
"application/json": components["schemas"]["DomainCreate"];
|
|
1687
|
-
};
|
|
1688
|
-
};
|
|
1689
|
-
responses: {
|
|
1690
|
-
/** @description Default Response */
|
|
1691
|
-
201: {
|
|
1692
|
-
headers: {
|
|
1693
|
-
[name: string]: unknown;
|
|
1694
|
-
};
|
|
1695
|
-
content: {
|
|
1696
|
-
"application/json": components["schemas"]["Domain"];
|
|
1697
|
-
};
|
|
1698
|
-
};
|
|
1699
|
-
};
|
|
1700
|
-
};
|
|
1701
|
-
"domain/fqdn": {
|
|
1702
|
-
parameters: {
|
|
1703
|
-
query?: never;
|
|
1704
|
-
header?: never;
|
|
1705
|
-
path: {
|
|
1706
|
-
fqdn: string;
|
|
1707
|
-
};
|
|
1708
|
-
cookie?: never;
|
|
1709
|
-
};
|
|
1710
|
-
requestBody?: never;
|
|
1711
|
-
responses: {
|
|
1712
|
-
/** @description Default Response */
|
|
1713
|
-
200: {
|
|
1714
|
-
headers: {
|
|
1715
|
-
[name: string]: unknown;
|
|
1716
|
-
};
|
|
1717
|
-
content: {
|
|
1718
|
-
"application/json": components["schemas"]["Domain"];
|
|
1719
|
-
};
|
|
1720
|
-
};
|
|
1721
|
-
};
|
|
1722
|
-
};
|
|
1723
|
-
"secrets/upsert": {
|
|
1724
|
-
parameters: {
|
|
1725
|
-
query?: never;
|
|
1726
|
-
header?: never;
|
|
1727
|
-
path?: never;
|
|
1728
|
-
cookie?: never;
|
|
1729
|
-
};
|
|
1730
|
-
requestBody?: {
|
|
1731
|
-
content: {
|
|
1732
|
-
"application/json": components["schemas"]["SecretUpsert"];
|
|
1733
|
-
};
|
|
1734
|
-
};
|
|
1735
|
-
responses: {
|
|
1736
|
-
/** @description Default Response */
|
|
1737
|
-
200: {
|
|
1738
|
-
headers: {
|
|
1739
|
-
[name: string]: unknown;
|
|
1740
|
-
};
|
|
1741
|
-
content: {
|
|
1742
|
-
"application/json": components["schemas"]["Secret"];
|
|
1743
|
-
};
|
|
1744
|
-
};
|
|
1745
|
-
};
|
|
1746
|
-
};
|
|
1747
|
-
"secrets/list_app": {
|
|
1748
|
-
parameters: {
|
|
1749
|
-
query?: {
|
|
1750
|
-
/** @description Start from this cursor */
|
|
1751
|
-
cursor?: string;
|
|
1752
|
-
/** @description Size of the results array */
|
|
1753
|
-
pageSize?: number;
|
|
1754
|
-
};
|
|
1755
|
-
header?: never;
|
|
1756
|
-
path: {
|
|
1757
|
-
context_id: string;
|
|
1758
|
-
};
|
|
1759
|
-
cookie?: never;
|
|
1760
|
-
};
|
|
1761
|
-
requestBody?: never;
|
|
1762
|
-
responses: {
|
|
1763
|
-
/** @description Default Response */
|
|
1764
|
-
200: {
|
|
1765
|
-
headers: {
|
|
1766
|
-
[name: string]: unknown;
|
|
1767
|
-
};
|
|
1768
|
-
content: {
|
|
1769
|
-
"application/json": components["schemas"]["SecretPage"];
|
|
1770
|
-
};
|
|
1771
|
-
};
|
|
1772
|
-
};
|
|
1773
|
-
};
|
|
1774
|
-
"secrets/delete": {
|
|
1775
|
-
parameters: {
|
|
1776
|
-
query?: never;
|
|
1777
|
-
header?: never;
|
|
1778
|
-
path: {
|
|
1779
|
-
secret_id: string;
|
|
1780
|
-
};
|
|
1781
|
-
cookie?: never;
|
|
1782
|
-
};
|
|
1783
|
-
requestBody?: never;
|
|
1784
|
-
responses: {
|
|
1785
|
-
/** @description Default Response */
|
|
1786
|
-
200: {
|
|
1787
|
-
headers: {
|
|
1788
|
-
[name: string]: unknown;
|
|
1789
|
-
};
|
|
1790
|
-
content?: never;
|
|
1791
|
-
};
|
|
1792
|
-
};
|
|
1793
|
-
};
|
|
1794
|
-
"secrets/create_batch": {
|
|
1795
|
-
parameters: {
|
|
1796
|
-
query?: never;
|
|
1797
|
-
header?: never;
|
|
1798
|
-
path?: never;
|
|
1799
|
-
cookie?: never;
|
|
1800
|
-
};
|
|
1801
|
-
requestBody?: {
|
|
1802
|
-
content: {
|
|
1803
|
-
"application/json": components["schemas"]["SecretCreateBatch"];
|
|
1804
|
-
};
|
|
1805
|
-
};
|
|
1806
|
-
responses: {
|
|
1807
|
-
/** @description Default Response */
|
|
1808
|
-
201: {
|
|
1809
|
-
headers: {
|
|
1810
|
-
[name: string]: unknown;
|
|
1811
|
-
};
|
|
1812
|
-
content: {
|
|
1813
|
-
"application/json": components["schemas"]["Secret"][];
|
|
1814
|
-
};
|
|
1815
|
-
};
|
|
1816
|
-
};
|
|
1817
|
-
};
|
|
1818
|
-
"deployment/list": {
|
|
1819
|
-
parameters: {
|
|
1820
|
-
query?: {
|
|
1821
|
-
/** @description Start from this cursor */
|
|
1822
|
-
cursor?: string;
|
|
1823
|
-
/** @description Size of the results array */
|
|
1824
|
-
pageSize?: number;
|
|
1825
|
-
query?: string;
|
|
1826
|
-
app?: string;
|
|
1827
|
-
};
|
|
1828
|
-
header?: never;
|
|
1829
|
-
path?: never;
|
|
1830
|
-
cookie?: never;
|
|
1831
|
-
};
|
|
1832
|
-
requestBody?: never;
|
|
1833
|
-
responses: {
|
|
1834
|
-
/** @description Default Response */
|
|
1835
|
-
200: {
|
|
1836
|
-
headers: {
|
|
1837
|
-
[name: string]: unknown;
|
|
1838
|
-
};
|
|
1839
|
-
content: {
|
|
1840
|
-
"application/json": components["schemas"]["DeploymentPage"];
|
|
1841
|
-
};
|
|
1842
|
-
};
|
|
1843
|
-
};
|
|
1844
|
-
};
|
|
1845
|
-
"deployment/create": {
|
|
1846
|
-
parameters: {
|
|
1847
|
-
query?: never;
|
|
1848
|
-
header?: never;
|
|
1849
|
-
path?: never;
|
|
1850
|
-
cookie?: never;
|
|
1851
|
-
};
|
|
1852
|
-
requestBody?: {
|
|
1853
|
-
content: {
|
|
1854
|
-
"application/json": components["schemas"]["DeploymentCreate"];
|
|
1855
|
-
};
|
|
1856
|
-
};
|
|
1857
|
-
responses: {
|
|
1858
|
-
/** @description Default Response */
|
|
1859
|
-
201: {
|
|
1860
|
-
headers: {
|
|
1861
|
-
[name: string]: unknown;
|
|
1862
|
-
};
|
|
1863
|
-
content: {
|
|
1864
|
-
"application/json": components["schemas"]["Deployment"];
|
|
1865
|
-
};
|
|
1866
|
-
};
|
|
1867
|
-
};
|
|
1868
|
-
};
|
|
1869
|
-
"deployment/get": {
|
|
1870
|
-
parameters: {
|
|
1871
|
-
query?: never;
|
|
1872
|
-
header?: never;
|
|
1873
|
-
path: {
|
|
1874
|
-
deployment_id: string;
|
|
1875
|
-
};
|
|
1876
|
-
cookie?: never;
|
|
1877
|
-
};
|
|
1878
|
-
requestBody?: never;
|
|
1879
|
-
responses: {
|
|
1880
|
-
/** @description Default Response */
|
|
1881
|
-
200: {
|
|
1882
|
-
headers: {
|
|
1883
|
-
[name: string]: unknown;
|
|
1884
|
-
};
|
|
1885
|
-
content: {
|
|
1886
|
-
"application/json": components["schemas"]["Deployment"];
|
|
1887
|
-
};
|
|
1888
|
-
};
|
|
1889
|
-
};
|
|
1890
|
-
};
|
|
1891
|
-
"volume/create": {
|
|
1892
|
-
parameters: {
|
|
1893
|
-
query?: never;
|
|
1894
|
-
header?: never;
|
|
1895
|
-
path?: never;
|
|
1896
|
-
cookie?: never;
|
|
1897
|
-
};
|
|
1898
|
-
requestBody?: {
|
|
1899
|
-
content: {
|
|
1900
|
-
"application/json": components["schemas"]["VolumeCreate"];
|
|
1901
|
-
};
|
|
1902
|
-
};
|
|
1903
|
-
responses: {
|
|
1904
|
-
/** @description Default Response */
|
|
1905
|
-
201: {
|
|
1906
|
-
headers: {
|
|
1907
|
-
[name: string]: unknown;
|
|
1908
|
-
};
|
|
1909
|
-
content: {
|
|
1910
|
-
"application/json": components["schemas"]["Volume"];
|
|
1911
|
-
};
|
|
1912
|
-
};
|
|
1913
|
-
};
|
|
1914
|
-
};
|
|
1915
|
-
"volume/delete": {
|
|
1916
|
-
parameters: {
|
|
1917
|
-
query?: never;
|
|
1918
|
-
header?: never;
|
|
1919
|
-
path: {
|
|
1920
|
-
volume_id: string;
|
|
1921
|
-
};
|
|
1922
|
-
cookie?: never;
|
|
1923
|
-
};
|
|
1924
|
-
requestBody?: never;
|
|
1925
|
-
responses: {
|
|
1926
|
-
/** @description Default Response */
|
|
1927
|
-
201: {
|
|
1928
|
-
headers: {
|
|
1929
|
-
[name: string]: unknown;
|
|
1930
|
-
};
|
|
1931
|
-
content: {
|
|
1932
|
-
"application/json": components["schemas"]["Volume"];
|
|
1933
|
-
};
|
|
1934
|
-
};
|
|
1935
|
-
};
|
|
1936
|
-
};
|
|
1937
|
-
"statistics/get": {
|
|
1938
|
-
parameters: {
|
|
1939
|
-
query?: never;
|
|
1940
|
-
header?: never;
|
|
1941
|
-
path?: never;
|
|
1942
|
-
cookie?: never;
|
|
1943
|
-
};
|
|
1944
|
-
requestBody?: never;
|
|
1945
|
-
responses: never;
|
|
1946
|
-
};
|
|
1947
|
-
"users/billing_portal": {
|
|
1948
|
-
parameters: {
|
|
1949
|
-
query: {
|
|
1950
|
-
return_to: string;
|
|
1951
|
-
};
|
|
1952
|
-
header?: never;
|
|
1953
|
-
path?: never;
|
|
1954
|
-
cookie?: never;
|
|
1955
|
-
};
|
|
1956
|
-
requestBody?: never;
|
|
1957
|
-
responses: {
|
|
1958
|
-
/** @description Default Response */
|
|
1959
|
-
200: {
|
|
1960
|
-
headers: {
|
|
1961
|
-
[name: string]: unknown;
|
|
1962
|
-
};
|
|
1963
|
-
content?: never;
|
|
1964
|
-
};
|
|
1965
|
-
};
|
|
1966
|
-
};
|
|
1967
|
-
"users/payment_methods": {
|
|
1968
|
-
parameters: {
|
|
1969
|
-
query?: never;
|
|
1970
|
-
header?: never;
|
|
1971
|
-
path?: never;
|
|
1972
|
-
cookie?: never;
|
|
1973
|
-
};
|
|
1974
|
-
requestBody?: never;
|
|
1975
|
-
responses: {
|
|
1976
|
-
/** @description Default Response */
|
|
1977
|
-
200: {
|
|
1978
|
-
headers: {
|
|
1979
|
-
[name: string]: unknown;
|
|
1980
|
-
};
|
|
1981
|
-
content?: never;
|
|
1982
|
-
};
|
|
1983
|
-
};
|
|
1984
|
-
};
|
|
1985
|
-
"users/setup_intent": {
|
|
1986
|
-
parameters: {
|
|
1987
|
-
query?: never;
|
|
1988
|
-
header?: never;
|
|
1989
|
-
path?: never;
|
|
1990
|
-
cookie?: never;
|
|
1991
|
-
};
|
|
1992
|
-
requestBody?: never;
|
|
1993
|
-
responses: {
|
|
1994
|
-
/** @description Default Response */
|
|
1995
|
-
200: {
|
|
1996
|
-
headers: {
|
|
1997
|
-
[name: string]: unknown;
|
|
1998
|
-
};
|
|
1999
|
-
content?: never;
|
|
2000
|
-
};
|
|
2001
|
-
};
|
|
2002
|
-
};
|
|
2003
|
-
"users/list_invoices": {
|
|
2004
|
-
parameters: {
|
|
2005
|
-
query?: never;
|
|
2006
|
-
header?: never;
|
|
2007
|
-
path?: never;
|
|
2008
|
-
cookie?: never;
|
|
2009
|
-
};
|
|
2010
|
-
requestBody?: never;
|
|
2011
|
-
responses: {
|
|
2012
|
-
/** @description Default Response */
|
|
2013
|
-
200: {
|
|
2014
|
-
headers: {
|
|
2015
|
-
[name: string]: unknown;
|
|
2016
|
-
};
|
|
2017
|
-
content?: never;
|
|
2018
|
-
};
|
|
2019
|
-
};
|
|
2020
|
-
};
|
|
2021
|
-
}
|