@faable/deploy-sdk 1.0.20 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/FaableDeployApi.d.ts +28 -12
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/FaableDeployApi.js +12 -0
- package/dist/api/api-types.d.ts +55 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/types.d.ts +1046 -464
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -31,14 +31,14 @@ export interface paths {
|
|
|
31
31
|
cookie?: never;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
|
-
* List
|
|
35
|
-
* @description List
|
|
34
|
+
* List Projects
|
|
35
|
+
* @description List Projects
|
|
36
36
|
*/
|
|
37
37
|
get: operations["project/list"];
|
|
38
38
|
put?: never;
|
|
39
39
|
/**
|
|
40
|
-
* Create
|
|
41
|
-
* @description Create
|
|
40
|
+
* Create Project
|
|
41
|
+
* @description Create Project
|
|
42
42
|
*/
|
|
43
43
|
post: operations["project/create"];
|
|
44
44
|
delete?: never;
|
|
@@ -55,21 +55,21 @@ export interface paths {
|
|
|
55
55
|
cookie?: never;
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
|
-
* Get
|
|
59
|
-
* @description Get
|
|
58
|
+
* Get Project
|
|
59
|
+
* @description Get Project
|
|
60
60
|
*/
|
|
61
61
|
get: operations["project/get"];
|
|
62
62
|
put?: never;
|
|
63
63
|
/**
|
|
64
|
-
* Update
|
|
65
|
-
* @description Update
|
|
64
|
+
* Update Project
|
|
65
|
+
* @description Update Project
|
|
66
66
|
*/
|
|
67
67
|
post: operations["project/update"];
|
|
68
68
|
/**
|
|
69
|
-
* Delete
|
|
70
|
-
* @description Delete
|
|
69
|
+
* Delete Project
|
|
70
|
+
* @description Delete Project
|
|
71
71
|
*/
|
|
72
|
-
delete: operations["project/
|
|
72
|
+
delete: operations["project/delete"];
|
|
73
73
|
options?: never;
|
|
74
74
|
head?: never;
|
|
75
75
|
patch?: never;
|
|
@@ -83,14 +83,14 @@ export interface paths {
|
|
|
83
83
|
cookie?: never;
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
|
-
* List
|
|
87
|
-
* @description List
|
|
86
|
+
* List Apps
|
|
87
|
+
* @description List Apps
|
|
88
88
|
*/
|
|
89
89
|
get: operations["app/list"];
|
|
90
90
|
put?: never;
|
|
91
91
|
/**
|
|
92
|
-
* Create
|
|
93
|
-
* @description Create
|
|
92
|
+
* Create App
|
|
93
|
+
* @description Create App
|
|
94
94
|
*/
|
|
95
95
|
post: operations["app/create"];
|
|
96
96
|
delete?: never;
|
|
@@ -107,21 +107,21 @@ export interface paths {
|
|
|
107
107
|
cookie?: never;
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
|
-
* Get
|
|
111
|
-
* @description Get
|
|
110
|
+
* Get App
|
|
111
|
+
* @description Get App
|
|
112
112
|
*/
|
|
113
113
|
get: operations["app/get"];
|
|
114
114
|
put?: never;
|
|
115
115
|
/**
|
|
116
|
-
* Update
|
|
117
|
-
* @description Update
|
|
116
|
+
* Update App
|
|
117
|
+
* @description Update App
|
|
118
118
|
*/
|
|
119
119
|
post: operations["app/update"];
|
|
120
120
|
/**
|
|
121
|
-
* Delete
|
|
122
|
-
* @description Delete
|
|
121
|
+
* Delete App
|
|
122
|
+
* @description Delete App
|
|
123
123
|
*/
|
|
124
|
-
delete: operations["app/
|
|
124
|
+
delete: operations["app/delete"];
|
|
125
125
|
options?: never;
|
|
126
126
|
head?: never;
|
|
127
127
|
patch?: never;
|
|
@@ -227,6 +227,70 @@ export interface paths {
|
|
|
227
227
|
patch?: never;
|
|
228
228
|
trace?: never;
|
|
229
229
|
};
|
|
230
|
+
"/app/{id}/link-repository": {
|
|
231
|
+
parameters: {
|
|
232
|
+
query?: never;
|
|
233
|
+
header?: never;
|
|
234
|
+
path?: never;
|
|
235
|
+
cookie?: never;
|
|
236
|
+
};
|
|
237
|
+
get?: never;
|
|
238
|
+
put?: never;
|
|
239
|
+
/**
|
|
240
|
+
* Link a GitHub repository to an app
|
|
241
|
+
* @description Link a GitHub repository to an app after verifying the user has a connected GitHub identity with access to the repository.
|
|
242
|
+
*/
|
|
243
|
+
post: operations["app/link_repository"];
|
|
244
|
+
delete?: never;
|
|
245
|
+
options?: never;
|
|
246
|
+
head?: never;
|
|
247
|
+
patch?: never;
|
|
248
|
+
trace?: never;
|
|
249
|
+
};
|
|
250
|
+
"/app/{id}/unlink-repository": {
|
|
251
|
+
parameters: {
|
|
252
|
+
query?: never;
|
|
253
|
+
header?: never;
|
|
254
|
+
path?: never;
|
|
255
|
+
cookie?: never;
|
|
256
|
+
};
|
|
257
|
+
get?: never;
|
|
258
|
+
put?: never;
|
|
259
|
+
/**
|
|
260
|
+
* Unlink the GitHub repository from an app
|
|
261
|
+
* @description Unlink the GitHub repository from an app.
|
|
262
|
+
*/
|
|
263
|
+
post: operations["app/unlink_repository"];
|
|
264
|
+
delete?: never;
|
|
265
|
+
options?: never;
|
|
266
|
+
head?: never;
|
|
267
|
+
patch?: never;
|
|
268
|
+
trace?: never;
|
|
269
|
+
};
|
|
270
|
+
"/app/{id}/deploy-workflow": {
|
|
271
|
+
parameters: {
|
|
272
|
+
query?: never;
|
|
273
|
+
header?: never;
|
|
274
|
+
path?: never;
|
|
275
|
+
cookie?: never;
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* Get deploy workflow status
|
|
279
|
+
* @description Check whether the app’s linked repository has a GitHub Actions workflow that deploys to Faable.
|
|
280
|
+
*/
|
|
281
|
+
get: operations["app/get_deploy_workflow"];
|
|
282
|
+
put?: never;
|
|
283
|
+
/**
|
|
284
|
+
* Set up deploy workflow
|
|
285
|
+
* @description Commit the Faable deploy GitHub Actions workflow to the app’s linked repository (no-op if already present).
|
|
286
|
+
*/
|
|
287
|
+
post: operations["app/setup_deploy_workflow"];
|
|
288
|
+
delete?: never;
|
|
289
|
+
options?: never;
|
|
290
|
+
head?: never;
|
|
291
|
+
patch?: never;
|
|
292
|
+
trace?: never;
|
|
293
|
+
};
|
|
230
294
|
"/deployment": {
|
|
231
295
|
parameters: {
|
|
232
296
|
query?: never;
|
|
@@ -235,14 +299,14 @@ export interface paths {
|
|
|
235
299
|
cookie?: never;
|
|
236
300
|
};
|
|
237
301
|
/**
|
|
238
|
-
* List
|
|
239
|
-
* @description List
|
|
302
|
+
* List Deployments
|
|
303
|
+
* @description List Deployments
|
|
240
304
|
*/
|
|
241
305
|
get: operations["deployment/list"];
|
|
242
306
|
put?: never;
|
|
243
307
|
/**
|
|
244
|
-
* Create
|
|
245
|
-
* @description Create
|
|
308
|
+
* Create Deployment
|
|
309
|
+
* @description Create Deployment
|
|
246
310
|
*/
|
|
247
311
|
post: operations["deployment/create"];
|
|
248
312
|
delete?: never;
|
|
@@ -259,17 +323,17 @@ export interface paths {
|
|
|
259
323
|
cookie?: never;
|
|
260
324
|
};
|
|
261
325
|
/**
|
|
262
|
-
* Get
|
|
263
|
-
* @description Get
|
|
326
|
+
* Get Deployment
|
|
327
|
+
* @description Get Deployment
|
|
264
328
|
*/
|
|
265
329
|
get: operations["deployment/get"];
|
|
266
330
|
put?: never;
|
|
267
331
|
post?: never;
|
|
268
332
|
/**
|
|
269
|
-
* Delete
|
|
270
|
-
* @description Delete
|
|
333
|
+
* Delete Deployment
|
|
334
|
+
* @description Delete Deployment
|
|
271
335
|
*/
|
|
272
|
-
delete: operations["deployment/
|
|
336
|
+
delete: operations["deployment/delete"];
|
|
273
337
|
options?: never;
|
|
274
338
|
head?: never;
|
|
275
339
|
patch?: never;
|
|
@@ -283,14 +347,14 @@ export interface paths {
|
|
|
283
347
|
cookie?: never;
|
|
284
348
|
};
|
|
285
349
|
/**
|
|
286
|
-
* List
|
|
287
|
-
* @description List
|
|
350
|
+
* List Domains
|
|
351
|
+
* @description List Domains
|
|
288
352
|
*/
|
|
289
353
|
get: operations["domain/list"];
|
|
290
354
|
put?: never;
|
|
291
355
|
/**
|
|
292
|
-
* Create
|
|
293
|
-
* @description Create
|
|
356
|
+
* Create Domain
|
|
357
|
+
* @description Create Domain
|
|
294
358
|
*/
|
|
295
359
|
post: operations["domain/create"];
|
|
296
360
|
delete?: never;
|
|
@@ -307,21 +371,21 @@ export interface paths {
|
|
|
307
371
|
cookie?: never;
|
|
308
372
|
};
|
|
309
373
|
/**
|
|
310
|
-
* Get
|
|
311
|
-
* @description Get
|
|
374
|
+
* Get Domain
|
|
375
|
+
* @description Get Domain
|
|
312
376
|
*/
|
|
313
377
|
get: operations["domain/get"];
|
|
314
378
|
put?: never;
|
|
315
379
|
/**
|
|
316
|
-
* Update
|
|
317
|
-
* @description Update
|
|
380
|
+
* Update Domain
|
|
381
|
+
* @description Update Domain
|
|
318
382
|
*/
|
|
319
383
|
post: operations["domain/update"];
|
|
320
384
|
/**
|
|
321
|
-
* Delete
|
|
322
|
-
* @description Delete
|
|
385
|
+
* Delete Domain
|
|
386
|
+
* @description Delete Domain
|
|
323
387
|
*/
|
|
324
|
-
delete: operations["domain/
|
|
388
|
+
delete: operations["domain/delete"];
|
|
325
389
|
options?: never;
|
|
326
390
|
head?: never;
|
|
327
391
|
patch?: never;
|
|
@@ -435,14 +499,14 @@ export interface paths {
|
|
|
435
499
|
cookie?: never;
|
|
436
500
|
};
|
|
437
501
|
/**
|
|
438
|
-
* List
|
|
439
|
-
* @description List
|
|
502
|
+
* List Contacts
|
|
503
|
+
* @description List Contacts
|
|
440
504
|
*/
|
|
441
505
|
get: operations["contact/list"];
|
|
442
506
|
put?: never;
|
|
443
507
|
/**
|
|
444
|
-
* Create
|
|
445
|
-
* @description Create
|
|
508
|
+
* Create Contact
|
|
509
|
+
* @description Create Contact
|
|
446
510
|
*/
|
|
447
511
|
post: operations["contact/create"];
|
|
448
512
|
delete?: never;
|
|
@@ -459,21 +523,21 @@ export interface paths {
|
|
|
459
523
|
cookie?: never;
|
|
460
524
|
};
|
|
461
525
|
/**
|
|
462
|
-
* Get
|
|
463
|
-
* @description Get
|
|
526
|
+
* Get Contact
|
|
527
|
+
* @description Get Contact
|
|
464
528
|
*/
|
|
465
529
|
get: operations["contact/get"];
|
|
466
530
|
put?: never;
|
|
467
531
|
/**
|
|
468
|
-
* Update
|
|
469
|
-
* @description Update
|
|
532
|
+
* Update Contact
|
|
533
|
+
* @description Update Contact
|
|
470
534
|
*/
|
|
471
535
|
post: operations["contact/update"];
|
|
472
536
|
/**
|
|
473
|
-
* Delete
|
|
474
|
-
* @description Delete
|
|
537
|
+
* Delete Contact
|
|
538
|
+
* @description Delete Contact
|
|
475
539
|
*/
|
|
476
|
-
delete: operations["contact/
|
|
540
|
+
delete: operations["contact/delete"];
|
|
477
541
|
options?: never;
|
|
478
542
|
head?: never;
|
|
479
543
|
patch?: never;
|
|
@@ -487,14 +551,14 @@ export interface paths {
|
|
|
487
551
|
cookie?: never;
|
|
488
552
|
};
|
|
489
553
|
/**
|
|
490
|
-
* List
|
|
491
|
-
* @description List
|
|
554
|
+
* List Apikeys
|
|
555
|
+
* @description List Apikeys
|
|
492
556
|
*/
|
|
493
557
|
get: operations["apikey/list"];
|
|
494
558
|
put?: never;
|
|
495
559
|
/**
|
|
496
|
-
* Create
|
|
497
|
-
* @description Create
|
|
560
|
+
* Create Apikey
|
|
561
|
+
* @description Create Apikey
|
|
498
562
|
*/
|
|
499
563
|
post: operations["apikey/create"];
|
|
500
564
|
delete?: never;
|
|
@@ -511,21 +575,21 @@ export interface paths {
|
|
|
511
575
|
cookie?: never;
|
|
512
576
|
};
|
|
513
577
|
/**
|
|
514
|
-
* Get
|
|
515
|
-
* @description Get
|
|
578
|
+
* Get Apikey
|
|
579
|
+
* @description Get Apikey
|
|
516
580
|
*/
|
|
517
581
|
get: operations["apikey/get"];
|
|
518
582
|
put?: never;
|
|
519
583
|
/**
|
|
520
|
-
* Update
|
|
521
|
-
* @description Update
|
|
584
|
+
* Update Apikey
|
|
585
|
+
* @description Update Apikey
|
|
522
586
|
*/
|
|
523
587
|
post: operations["apikey/update"];
|
|
524
588
|
/**
|
|
525
|
-
* Delete
|
|
526
|
-
* @description Delete
|
|
589
|
+
* Delete Apikey
|
|
590
|
+
* @description Delete Apikey
|
|
527
591
|
*/
|
|
528
|
-
delete: operations["apikey/
|
|
592
|
+
delete: operations["apikey/delete"];
|
|
529
593
|
options?: never;
|
|
530
594
|
head?: never;
|
|
531
595
|
patch?: never;
|
|
@@ -659,6 +723,46 @@ export interface paths {
|
|
|
659
723
|
patch?: never;
|
|
660
724
|
trace?: never;
|
|
661
725
|
};
|
|
726
|
+
"/github/installations": {
|
|
727
|
+
parameters: {
|
|
728
|
+
query?: never;
|
|
729
|
+
header?: never;
|
|
730
|
+
path?: never;
|
|
731
|
+
cookie?: never;
|
|
732
|
+
};
|
|
733
|
+
/**
|
|
734
|
+
* List GitHub installations (organizations)
|
|
735
|
+
* @description List the GitHub organizations/accounts where the Faable GitHub App is installed for the authenticated user.
|
|
736
|
+
*/
|
|
737
|
+
get: operations["github/installations"];
|
|
738
|
+
put?: never;
|
|
739
|
+
post?: never;
|
|
740
|
+
delete?: never;
|
|
741
|
+
options?: never;
|
|
742
|
+
head?: never;
|
|
743
|
+
patch?: never;
|
|
744
|
+
trace?: never;
|
|
745
|
+
};
|
|
746
|
+
"/github/installations/{installation_id}/repositories": {
|
|
747
|
+
parameters: {
|
|
748
|
+
query?: never;
|
|
749
|
+
header?: never;
|
|
750
|
+
path?: never;
|
|
751
|
+
cookie?: never;
|
|
752
|
+
};
|
|
753
|
+
/**
|
|
754
|
+
* List repositories for an installation
|
|
755
|
+
* @description List the top repositories for a GitHub installation (organization), optionally filtered by a search term.
|
|
756
|
+
*/
|
|
757
|
+
get: operations["github/installation_repositories"];
|
|
758
|
+
put?: never;
|
|
759
|
+
post?: never;
|
|
760
|
+
delete?: never;
|
|
761
|
+
options?: never;
|
|
762
|
+
head?: never;
|
|
763
|
+
patch?: never;
|
|
764
|
+
trace?: never;
|
|
765
|
+
};
|
|
662
766
|
"/github/webhook": {
|
|
663
767
|
parameters: {
|
|
664
768
|
query?: never;
|
|
@@ -713,21 +817,10 @@ export interface components {
|
|
|
713
817
|
team: string;
|
|
714
818
|
user_id?: string;
|
|
715
819
|
collaborators: string[];
|
|
716
|
-
/** @description Project creation
|
|
820
|
+
/** @description Project creation date */
|
|
717
821
|
createdAt: string;
|
|
718
|
-
/** @description Project
|
|
719
|
-
updatedAt
|
|
720
|
-
};
|
|
721
|
-
ProjectCreate: {
|
|
722
|
-
name: string;
|
|
723
|
-
description?: string;
|
|
724
|
-
slug?: string;
|
|
725
|
-
collaborators?: string[];
|
|
726
|
-
};
|
|
727
|
-
ProjectUpdate: {
|
|
728
|
-
name?: string;
|
|
729
|
-
description?: string;
|
|
730
|
-
collaborators?: string[];
|
|
822
|
+
/** @description Project updated date */
|
|
823
|
+
updatedAt?: string;
|
|
731
824
|
};
|
|
732
825
|
/** @description Event Project Create */
|
|
733
826
|
EventProjectCreate: {
|
|
@@ -737,26 +830,38 @@ export interface components {
|
|
|
737
830
|
produced_at: number;
|
|
738
831
|
payload: components["schemas"]["Project"];
|
|
739
832
|
};
|
|
740
|
-
/** @description Event Project
|
|
741
|
-
|
|
833
|
+
/** @description Event Project Update */
|
|
834
|
+
EventProjectUpdate: {
|
|
742
835
|
/** @enum {string} */
|
|
743
|
-
type: "project.
|
|
836
|
+
type: "project.update";
|
|
744
837
|
/** @description Timestamp */
|
|
745
838
|
produced_at: number;
|
|
746
839
|
payload: components["schemas"]["Project"];
|
|
747
840
|
};
|
|
748
|
-
/** @description Event Project
|
|
749
|
-
|
|
841
|
+
/** @description Event Project Delete */
|
|
842
|
+
EventProjectDelete: {
|
|
750
843
|
/** @enum {string} */
|
|
751
|
-
type: "project.
|
|
844
|
+
type: "project.delete";
|
|
752
845
|
/** @description Timestamp */
|
|
753
846
|
produced_at: number;
|
|
754
847
|
payload: components["schemas"]["Project"];
|
|
755
848
|
};
|
|
849
|
+
ProjectCreate: {
|
|
850
|
+
name: string;
|
|
851
|
+
description?: string;
|
|
852
|
+
slug?: string;
|
|
853
|
+
collaborators?: string[];
|
|
854
|
+
};
|
|
855
|
+
ProjectUpdate: {
|
|
856
|
+
name?: string;
|
|
857
|
+
description?: string;
|
|
858
|
+
collaborators?: string[];
|
|
859
|
+
};
|
|
756
860
|
AppStatus: {
|
|
757
861
|
/**
|
|
758
862
|
* @description High-level summary of where the Database is in its lifecycle
|
|
759
863
|
* @default UNKNOWN
|
|
864
|
+
* @enum {unknown}
|
|
760
865
|
*/
|
|
761
866
|
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
762
867
|
/**
|
|
@@ -786,6 +891,7 @@ export interface components {
|
|
|
786
891
|
last_commited_purge_service: string | null;
|
|
787
892
|
};
|
|
788
893
|
AppRuntimeStrategy: string;
|
|
894
|
+
/** @enum {unknown} */
|
|
789
895
|
AppRuntime: "node" | "php";
|
|
790
896
|
/** @description App */
|
|
791
897
|
App: {
|
|
@@ -804,6 +910,7 @@ export interface components {
|
|
|
804
910
|
/**
|
|
805
911
|
* @description High-level summary of where the Database is in its lifecycle
|
|
806
912
|
* @default UNKNOWN
|
|
913
|
+
* @enum {unknown}
|
|
807
914
|
*/
|
|
808
915
|
region: "gui1" | "poz1" | "ams1";
|
|
809
916
|
status: components["schemas"]["AppStatus"];
|
|
@@ -814,28 +921,10 @@ export interface components {
|
|
|
814
921
|
metadata: {
|
|
815
922
|
[key: string]: unknown;
|
|
816
923
|
};
|
|
817
|
-
/** @description App creation
|
|
924
|
+
/** @description App creation date */
|
|
818
925
|
createdAt: string;
|
|
819
|
-
/** @description App
|
|
820
|
-
updatedAt
|
|
821
|
-
};
|
|
822
|
-
AppCreate: {
|
|
823
|
-
name: string;
|
|
824
|
-
runtime?: string;
|
|
825
|
-
description?: string;
|
|
826
|
-
github_repo?: string;
|
|
827
|
-
github_branch?: string;
|
|
828
|
-
github_installation_id?: string;
|
|
829
|
-
};
|
|
830
|
-
AppUpdate: {
|
|
831
|
-
name?: string;
|
|
832
|
-
description?: string;
|
|
833
|
-
runtime?: components["schemas"]["AppRuntime"];
|
|
834
|
-
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
835
|
-
instance_type?: string;
|
|
836
|
-
repository?: string;
|
|
837
|
-
github_branch?: string;
|
|
838
|
-
github_installation_id?: string;
|
|
926
|
+
/** @description App updated date */
|
|
927
|
+
updatedAt?: string;
|
|
839
928
|
};
|
|
840
929
|
/** @description Event App Create */
|
|
841
930
|
EventAppCreate: {
|
|
@@ -845,26 +934,43 @@ export interface components {
|
|
|
845
934
|
produced_at: number;
|
|
846
935
|
payload: components["schemas"]["App"];
|
|
847
936
|
};
|
|
848
|
-
/** @description Event App
|
|
849
|
-
|
|
937
|
+
/** @description Event App Update */
|
|
938
|
+
EventAppUpdate: {
|
|
850
939
|
/** @enum {string} */
|
|
851
|
-
type: "app.
|
|
940
|
+
type: "app.update";
|
|
852
941
|
/** @description Timestamp */
|
|
853
942
|
produced_at: number;
|
|
854
943
|
payload: components["schemas"]["App"];
|
|
855
944
|
};
|
|
856
|
-
/** @description Event App
|
|
857
|
-
|
|
945
|
+
/** @description Event App Delete */
|
|
946
|
+
EventAppDelete: {
|
|
858
947
|
/** @enum {string} */
|
|
859
|
-
type: "app.
|
|
948
|
+
type: "app.delete";
|
|
860
949
|
/** @description Timestamp */
|
|
861
950
|
produced_at: number;
|
|
862
951
|
payload: components["schemas"]["App"];
|
|
863
952
|
};
|
|
953
|
+
AppCreate: {
|
|
954
|
+
name: string;
|
|
955
|
+
runtime?: string;
|
|
956
|
+
description?: string;
|
|
957
|
+
};
|
|
958
|
+
AppUpdate: {
|
|
959
|
+
name?: string;
|
|
960
|
+
description?: string;
|
|
961
|
+
runtime?: components["schemas"]["AppRuntime"];
|
|
962
|
+
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
963
|
+
instance_type?: string;
|
|
964
|
+
};
|
|
965
|
+
DeployWorkflowStatus: {
|
|
966
|
+
configured: boolean;
|
|
967
|
+
workflow_path?: string;
|
|
968
|
+
};
|
|
864
969
|
DeploymentStatus: {
|
|
865
970
|
/**
|
|
866
971
|
* @description High-level summary of where the Deployment is in its lifecycle
|
|
867
972
|
* @default UNKNOWN
|
|
973
|
+
* @enum {unknown}
|
|
868
974
|
*/
|
|
869
975
|
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
870
976
|
};
|
|
@@ -877,21 +983,17 @@ export interface components {
|
|
|
877
983
|
image?: string;
|
|
878
984
|
github_commit?: string;
|
|
879
985
|
github_ref?: string;
|
|
986
|
+
github_actor?: string;
|
|
987
|
+
github_commit_message?: string;
|
|
880
988
|
status: components["schemas"]["DeploymentStatus"];
|
|
881
989
|
/** @default {} */
|
|
882
990
|
metadata: {
|
|
883
991
|
[key: string]: unknown;
|
|
884
992
|
};
|
|
885
|
-
/** @description Deployment creation
|
|
993
|
+
/** @description Deployment creation date */
|
|
886
994
|
createdAt: string;
|
|
887
|
-
/** @description Deployment
|
|
888
|
-
updatedAt
|
|
889
|
-
};
|
|
890
|
-
DeploymentCreate: {
|
|
891
|
-
app_id: string;
|
|
892
|
-
image?: string;
|
|
893
|
-
github_commit?: string;
|
|
894
|
-
github_ref?: string;
|
|
995
|
+
/** @description Deployment updated date */
|
|
996
|
+
updatedAt?: string;
|
|
895
997
|
};
|
|
896
998
|
/** @description Event Deployment Create */
|
|
897
999
|
EventDeploymentCreate: {
|
|
@@ -901,22 +1003,31 @@ export interface components {
|
|
|
901
1003
|
produced_at: number;
|
|
902
1004
|
payload: components["schemas"]["Deployment"];
|
|
903
1005
|
};
|
|
904
|
-
/** @description Event Deployment
|
|
905
|
-
|
|
1006
|
+
/** @description Event Deployment Update */
|
|
1007
|
+
EventDeploymentUpdate: {
|
|
906
1008
|
/** @enum {string} */
|
|
907
|
-
type: "deployment.
|
|
1009
|
+
type: "deployment.update";
|
|
908
1010
|
/** @description Timestamp */
|
|
909
1011
|
produced_at: number;
|
|
910
1012
|
payload: components["schemas"]["Deployment"];
|
|
911
1013
|
};
|
|
912
|
-
/** @description Event Deployment
|
|
913
|
-
|
|
1014
|
+
/** @description Event Deployment Delete */
|
|
1015
|
+
EventDeploymentDelete: {
|
|
914
1016
|
/** @enum {string} */
|
|
915
|
-
type: "deployment.
|
|
1017
|
+
type: "deployment.delete";
|
|
916
1018
|
/** @description Timestamp */
|
|
917
1019
|
produced_at: number;
|
|
918
1020
|
payload: components["schemas"]["Deployment"];
|
|
919
1021
|
};
|
|
1022
|
+
DeploymentCreate: {
|
|
1023
|
+
app_id: string;
|
|
1024
|
+
image?: string;
|
|
1025
|
+
github_commit?: string;
|
|
1026
|
+
github_ref?: string;
|
|
1027
|
+
github_actor?: string;
|
|
1028
|
+
github_commit_message?: string;
|
|
1029
|
+
type?: string;
|
|
1030
|
+
};
|
|
920
1031
|
/** @description Domain */
|
|
921
1032
|
Domain: {
|
|
922
1033
|
/** @description Domain ID */
|
|
@@ -938,25 +1049,10 @@ export interface components {
|
|
|
938
1049
|
metadata: {
|
|
939
1050
|
[key: string]: unknown;
|
|
940
1051
|
};
|
|
941
|
-
/** @description Domain creation
|
|
1052
|
+
/** @description Domain creation date */
|
|
942
1053
|
createdAt: string;
|
|
943
|
-
/** @description Domain
|
|
944
|
-
updatedAt
|
|
945
|
-
};
|
|
946
|
-
DomainCreate: {
|
|
947
|
-
fqdn: string;
|
|
948
|
-
/** @description Linked App */
|
|
949
|
-
app_id?: string;
|
|
950
|
-
/** @default true */
|
|
951
|
-
tls: boolean;
|
|
952
|
-
};
|
|
953
|
-
DomainUpdate: {
|
|
954
|
-
/**
|
|
955
|
-
* @description Link domain to this App
|
|
956
|
-
* @default null
|
|
957
|
-
*/
|
|
958
|
-
app_id: string | null;
|
|
959
|
-
active?: boolean;
|
|
1054
|
+
/** @description Domain updated date */
|
|
1055
|
+
updatedAt?: string;
|
|
960
1056
|
};
|
|
961
1057
|
/** @description Event Domain Create */
|
|
962
1058
|
EventDomainCreate: {
|
|
@@ -966,22 +1062,37 @@ export interface components {
|
|
|
966
1062
|
produced_at: number;
|
|
967
1063
|
payload: components["schemas"]["Domain"];
|
|
968
1064
|
};
|
|
969
|
-
/** @description Event Domain
|
|
970
|
-
|
|
1065
|
+
/** @description Event Domain Update */
|
|
1066
|
+
EventDomainUpdate: {
|
|
971
1067
|
/** @enum {string} */
|
|
972
|
-
type: "domain.
|
|
1068
|
+
type: "domain.update";
|
|
973
1069
|
/** @description Timestamp */
|
|
974
1070
|
produced_at: number;
|
|
975
1071
|
payload: components["schemas"]["Domain"];
|
|
976
1072
|
};
|
|
977
|
-
/** @description Event Domain
|
|
978
|
-
|
|
1073
|
+
/** @description Event Domain Delete */
|
|
1074
|
+
EventDomainDelete: {
|
|
979
1075
|
/** @enum {string} */
|
|
980
|
-
type: "domain.
|
|
1076
|
+
type: "domain.delete";
|
|
981
1077
|
/** @description Timestamp */
|
|
982
1078
|
produced_at: number;
|
|
983
1079
|
payload: components["schemas"]["Domain"];
|
|
984
1080
|
};
|
|
1081
|
+
DomainCreate: {
|
|
1082
|
+
fqdn: string;
|
|
1083
|
+
/** @description Linked App */
|
|
1084
|
+
app_id?: string;
|
|
1085
|
+
/** @default true */
|
|
1086
|
+
tls: boolean;
|
|
1087
|
+
};
|
|
1088
|
+
DomainUpdate: {
|
|
1089
|
+
/**
|
|
1090
|
+
* @description Link domain to this App
|
|
1091
|
+
* @default null
|
|
1092
|
+
*/
|
|
1093
|
+
app_id: string | null;
|
|
1094
|
+
active?: boolean;
|
|
1095
|
+
};
|
|
985
1096
|
/** @description Event Secret Create_batch */
|
|
986
1097
|
EventSecretCreate_batch: {
|
|
987
1098
|
/** @enum {string} */
|
|
@@ -1015,43 +1126,17 @@ export interface components {
|
|
|
1015
1126
|
metadata: {
|
|
1016
1127
|
[key: string]: unknown;
|
|
1017
1128
|
};
|
|
1018
|
-
/** @description Secret creation
|
|
1129
|
+
/** @description Secret creation date */
|
|
1019
1130
|
createdAt: string;
|
|
1020
|
-
/** @description Secret
|
|
1021
|
-
updatedAt
|
|
1131
|
+
/** @description Secret updated date */
|
|
1132
|
+
updatedAt?: string;
|
|
1022
1133
|
};
|
|
1023
1134
|
/** @description PaginatedResponse */
|
|
1024
1135
|
SecretPage: {
|
|
1025
|
-
/**
|
|
1026
|
-
* @description next cursor
|
|
1027
|
-
* @default null
|
|
1028
|
-
*/
|
|
1136
|
+
/** @description next cursor */
|
|
1029
1137
|
next: string | null;
|
|
1030
|
-
/** @description
|
|
1031
|
-
results:
|
|
1032
|
-
/** @description Secret ID */
|
|
1033
|
-
id: string;
|
|
1034
|
-
team: string;
|
|
1035
|
-
/** @description Secret is linked to App */
|
|
1036
|
-
app_id?: string;
|
|
1037
|
-
/** @description Secret is linked to App */
|
|
1038
|
-
profile_id?: string;
|
|
1039
|
-
/** @description Secret is linked to App */
|
|
1040
|
-
related: string;
|
|
1041
|
-
related_model: string;
|
|
1042
|
-
/** @description Secret name */
|
|
1043
|
-
name: string;
|
|
1044
|
-
/** @description Secret value */
|
|
1045
|
-
value: string;
|
|
1046
|
-
/** @default {} */
|
|
1047
|
-
metadata: {
|
|
1048
|
-
[key: string]: unknown;
|
|
1049
|
-
};
|
|
1050
|
-
/** @description Secret creation time */
|
|
1051
|
-
createdAt: string;
|
|
1052
|
-
/** @description Secret update time */
|
|
1053
|
-
updatedAt: string;
|
|
1054
|
-
}[];
|
|
1138
|
+
/** @description List of results */
|
|
1139
|
+
results: components["schemas"]["Secret"][];
|
|
1055
1140
|
};
|
|
1056
1141
|
/** @description Create Secrets by Batch */
|
|
1057
1142
|
SecretCreateBatch: {
|
|
@@ -1076,6 +1161,7 @@ export interface components {
|
|
|
1076
1161
|
/** @description Contact ID */
|
|
1077
1162
|
id: string;
|
|
1078
1163
|
team: string;
|
|
1164
|
+
/** @enum {unknown} */
|
|
1079
1165
|
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1080
1166
|
email?: string;
|
|
1081
1167
|
phone?: string;
|
|
@@ -1083,22 +1169,13 @@ export interface components {
|
|
|
1083
1169
|
metadata: {
|
|
1084
1170
|
[key: string]: unknown;
|
|
1085
1171
|
};
|
|
1086
|
-
/** @description Contact creation
|
|
1172
|
+
/** @description Contact creation date */
|
|
1087
1173
|
createdAt: string;
|
|
1088
|
-
/** @description Contact
|
|
1089
|
-
updatedAt
|
|
1174
|
+
/** @description Contact updated date */
|
|
1175
|
+
updatedAt?: string;
|
|
1090
1176
|
};
|
|
1177
|
+
/** @enum {unknown} */
|
|
1091
1178
|
ContactType: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1092
|
-
ContactCreate: {
|
|
1093
|
-
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1094
|
-
email?: string;
|
|
1095
|
-
phone?: string;
|
|
1096
|
-
};
|
|
1097
|
-
ContactUpdate: {
|
|
1098
|
-
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1099
|
-
email?: string;
|
|
1100
|
-
phone?: string;
|
|
1101
|
-
};
|
|
1102
1179
|
/** @description Event Contact Create */
|
|
1103
1180
|
EventContactCreate: {
|
|
1104
1181
|
/** @enum {string} */
|
|
@@ -1107,24 +1184,36 @@ export interface components {
|
|
|
1107
1184
|
produced_at: number;
|
|
1108
1185
|
payload: components["schemas"]["Contact"];
|
|
1109
1186
|
};
|
|
1110
|
-
/** @description Event Contact
|
|
1111
|
-
|
|
1187
|
+
/** @description Event Contact Update */
|
|
1188
|
+
EventContactUpdate: {
|
|
1112
1189
|
/** @enum {string} */
|
|
1113
|
-
type: "contact.
|
|
1190
|
+
type: "contact.update";
|
|
1114
1191
|
/** @description Timestamp */
|
|
1115
1192
|
produced_at: number;
|
|
1116
1193
|
payload: components["schemas"]["Contact"];
|
|
1117
1194
|
};
|
|
1118
|
-
/** @description Event Contact
|
|
1119
|
-
|
|
1195
|
+
/** @description Event Contact Delete */
|
|
1196
|
+
EventContactDelete: {
|
|
1120
1197
|
/** @enum {string} */
|
|
1121
|
-
type: "contact.
|
|
1198
|
+
type: "contact.delete";
|
|
1122
1199
|
/** @description Timestamp */
|
|
1123
1200
|
produced_at: number;
|
|
1124
1201
|
payload: components["schemas"]["Contact"];
|
|
1125
1202
|
};
|
|
1126
|
-
|
|
1127
|
-
|
|
1203
|
+
ContactCreate: {
|
|
1204
|
+
/** @enum {unknown} */
|
|
1205
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1206
|
+
email?: string;
|
|
1207
|
+
phone?: string;
|
|
1208
|
+
};
|
|
1209
|
+
ContactUpdate: {
|
|
1210
|
+
/** @enum {unknown} */
|
|
1211
|
+
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1212
|
+
email?: string;
|
|
1213
|
+
phone?: string;
|
|
1214
|
+
};
|
|
1215
|
+
/** @description ApiKey */
|
|
1216
|
+
ApiKey: {
|
|
1128
1217
|
/** @description ApiKey ID */
|
|
1129
1218
|
id: string;
|
|
1130
1219
|
team: string;
|
|
@@ -1136,16 +1225,10 @@ export interface components {
|
|
|
1136
1225
|
metadata: {
|
|
1137
1226
|
[key: string]: unknown;
|
|
1138
1227
|
};
|
|
1139
|
-
/** @description ApiKey creation
|
|
1228
|
+
/** @description ApiKey creation date */
|
|
1140
1229
|
createdAt: string;
|
|
1141
|
-
/** @description ApiKey
|
|
1142
|
-
updatedAt
|
|
1143
|
-
};
|
|
1144
|
-
ApiKeyCreate: {
|
|
1145
|
-
description?: string;
|
|
1146
|
-
};
|
|
1147
|
-
ApiKeyUpdate: {
|
|
1148
|
-
description?: string;
|
|
1230
|
+
/** @description ApiKey updated date */
|
|
1231
|
+
updatedAt?: string;
|
|
1149
1232
|
};
|
|
1150
1233
|
/** @description Event Apikey Create */
|
|
1151
1234
|
EventApikeyCreate: {
|
|
@@ -1155,22 +1238,28 @@ export interface components {
|
|
|
1155
1238
|
produced_at: number;
|
|
1156
1239
|
payload: components["schemas"]["ApiKey"];
|
|
1157
1240
|
};
|
|
1158
|
-
/** @description Event Apikey
|
|
1159
|
-
|
|
1241
|
+
/** @description Event Apikey Update */
|
|
1242
|
+
EventApikeyUpdate: {
|
|
1160
1243
|
/** @enum {string} */
|
|
1161
|
-
type: "apikey.
|
|
1244
|
+
type: "apikey.update";
|
|
1162
1245
|
/** @description Timestamp */
|
|
1163
1246
|
produced_at: number;
|
|
1164
1247
|
payload: components["schemas"]["ApiKey"];
|
|
1165
1248
|
};
|
|
1166
|
-
/** @description Event Apikey
|
|
1167
|
-
|
|
1249
|
+
/** @description Event Apikey Delete */
|
|
1250
|
+
EventApikeyDelete: {
|
|
1168
1251
|
/** @enum {string} */
|
|
1169
|
-
type: "apikey.
|
|
1252
|
+
type: "apikey.delete";
|
|
1170
1253
|
/** @description Timestamp */
|
|
1171
1254
|
produced_at: number;
|
|
1172
1255
|
payload: components["schemas"]["ApiKey"];
|
|
1173
1256
|
};
|
|
1257
|
+
ApiKeyCreate: {
|
|
1258
|
+
description?: string;
|
|
1259
|
+
};
|
|
1260
|
+
ApiKeyUpdate: {
|
|
1261
|
+
description?: string;
|
|
1262
|
+
};
|
|
1174
1263
|
AppChecknameResponse: {
|
|
1175
1264
|
name: string;
|
|
1176
1265
|
slug: string;
|
|
@@ -1205,6 +1294,31 @@ export interface components {
|
|
|
1205
1294
|
status: components["schemas"]["DeploymentStatus"];
|
|
1206
1295
|
};
|
|
1207
1296
|
};
|
|
1297
|
+
GithubRepo: {
|
|
1298
|
+
id: number;
|
|
1299
|
+
/** @description owner/repo */
|
|
1300
|
+
full_name: string;
|
|
1301
|
+
private: boolean;
|
|
1302
|
+
default_branch: string;
|
|
1303
|
+
/** @description Id of the Faable GitHub App installation that grants access */
|
|
1304
|
+
installation_id: number;
|
|
1305
|
+
permissions?: {
|
|
1306
|
+
admin: boolean;
|
|
1307
|
+
push: boolean;
|
|
1308
|
+
pull: boolean;
|
|
1309
|
+
};
|
|
1310
|
+
};
|
|
1311
|
+
GithubInstallation: {
|
|
1312
|
+
installation_id: number;
|
|
1313
|
+
/** @description Org or user that owns the installation */
|
|
1314
|
+
account_login: string;
|
|
1315
|
+
/** @description Organization | User */
|
|
1316
|
+
account_type: string;
|
|
1317
|
+
/** @description Avatar of the org/user that owns the install */
|
|
1318
|
+
account_avatar_url?: string;
|
|
1319
|
+
/** @description GitHub App slug — used to build the install/configure URL */
|
|
1320
|
+
app_slug: string;
|
|
1321
|
+
};
|
|
1208
1322
|
};
|
|
1209
1323
|
responses: never;
|
|
1210
1324
|
parameters: never;
|
|
@@ -1246,12 +1360,16 @@ export interface operations {
|
|
|
1246
1360
|
"project/list": {
|
|
1247
1361
|
parameters: {
|
|
1248
1362
|
query?: {
|
|
1249
|
-
/** @description
|
|
1363
|
+
/** @description Number of items per page (max 200) */
|
|
1364
|
+
pageSize?: number;
|
|
1365
|
+
/** @description Cursor for next page */
|
|
1250
1366
|
cursor?: string;
|
|
1251
|
-
/** @description
|
|
1367
|
+
/** @description Cursor returned by the previous page */
|
|
1252
1368
|
next?: string;
|
|
1253
|
-
/** @description
|
|
1254
|
-
|
|
1369
|
+
/** @description Filter using a FaableQL query */
|
|
1370
|
+
query?: string;
|
|
1371
|
+
/** @description Full-text search across: `name`, `description`, `slug`. */
|
|
1372
|
+
q?: string;
|
|
1255
1373
|
};
|
|
1256
1374
|
header?: never;
|
|
1257
1375
|
path?: never;
|
|
@@ -1259,33 +1377,15 @@ export interface operations {
|
|
|
1259
1377
|
};
|
|
1260
1378
|
requestBody?: never;
|
|
1261
1379
|
responses: {
|
|
1262
|
-
/** @description
|
|
1380
|
+
/** @description Default Response */
|
|
1263
1381
|
200: {
|
|
1264
1382
|
headers: {
|
|
1265
1383
|
[name: string]: unknown;
|
|
1266
1384
|
};
|
|
1267
1385
|
content: {
|
|
1268
1386
|
"application/json": {
|
|
1269
|
-
/**
|
|
1270
|
-
* @description next cursor
|
|
1271
|
-
* @default null
|
|
1272
|
-
*/
|
|
1273
1387
|
next: string | null;
|
|
1274
|
-
|
|
1275
|
-
results: {
|
|
1276
|
-
/** @description Project ID */
|
|
1277
|
-
id: string;
|
|
1278
|
-
name: string;
|
|
1279
|
-
description: string;
|
|
1280
|
-
slug: string;
|
|
1281
|
-
team: string;
|
|
1282
|
-
user_id?: string;
|
|
1283
|
-
collaborators: string[];
|
|
1284
|
-
/** @description Project creation time */
|
|
1285
|
-
createdAt: string;
|
|
1286
|
-
/** @description Project update time */
|
|
1287
|
-
updatedAt: string;
|
|
1288
|
-
}[];
|
|
1388
|
+
results: components["schemas"]["Project"][];
|
|
1289
1389
|
};
|
|
1290
1390
|
};
|
|
1291
1391
|
};
|
|
@@ -1300,7 +1400,12 @@ export interface operations {
|
|
|
1300
1400
|
};
|
|
1301
1401
|
requestBody: {
|
|
1302
1402
|
content: {
|
|
1303
|
-
"application/json":
|
|
1403
|
+
"application/json": {
|
|
1404
|
+
name: string;
|
|
1405
|
+
description?: string;
|
|
1406
|
+
slug?: string;
|
|
1407
|
+
collaborators?: string[];
|
|
1408
|
+
};
|
|
1304
1409
|
};
|
|
1305
1410
|
};
|
|
1306
1411
|
responses: {
|
|
@@ -1310,7 +1415,20 @@ export interface operations {
|
|
|
1310
1415
|
[name: string]: unknown;
|
|
1311
1416
|
};
|
|
1312
1417
|
content: {
|
|
1313
|
-
"application/json":
|
|
1418
|
+
"application/json": {
|
|
1419
|
+
/** @description Project ID */
|
|
1420
|
+
id: string;
|
|
1421
|
+
name: string;
|
|
1422
|
+
description: string;
|
|
1423
|
+
slug: string;
|
|
1424
|
+
team: string;
|
|
1425
|
+
user_id?: string;
|
|
1426
|
+
collaborators: string[];
|
|
1427
|
+
/** @description Project creation date */
|
|
1428
|
+
createdAt: string;
|
|
1429
|
+
/** @description Project updated date */
|
|
1430
|
+
updatedAt?: string;
|
|
1431
|
+
};
|
|
1314
1432
|
};
|
|
1315
1433
|
};
|
|
1316
1434
|
};
|
|
@@ -1341,10 +1459,10 @@ export interface operations {
|
|
|
1341
1459
|
team: string;
|
|
1342
1460
|
user_id?: string;
|
|
1343
1461
|
collaborators: string[];
|
|
1344
|
-
/** @description Project creation
|
|
1462
|
+
/** @description Project creation date */
|
|
1345
1463
|
createdAt: string;
|
|
1346
|
-
/** @description Project
|
|
1347
|
-
updatedAt
|
|
1464
|
+
/** @description Project updated date */
|
|
1465
|
+
updatedAt?: string;
|
|
1348
1466
|
};
|
|
1349
1467
|
};
|
|
1350
1468
|
};
|
|
@@ -1361,7 +1479,11 @@ export interface operations {
|
|
|
1361
1479
|
};
|
|
1362
1480
|
requestBody: {
|
|
1363
1481
|
content: {
|
|
1364
|
-
"application/json":
|
|
1482
|
+
"application/json": {
|
|
1483
|
+
name?: string;
|
|
1484
|
+
description?: string;
|
|
1485
|
+
collaborators?: string[];
|
|
1486
|
+
};
|
|
1365
1487
|
};
|
|
1366
1488
|
};
|
|
1367
1489
|
responses: {
|
|
@@ -1371,12 +1493,25 @@ export interface operations {
|
|
|
1371
1493
|
[name: string]: unknown;
|
|
1372
1494
|
};
|
|
1373
1495
|
content: {
|
|
1374
|
-
"application/json":
|
|
1496
|
+
"application/json": {
|
|
1497
|
+
/** @description Project ID */
|
|
1498
|
+
id: string;
|
|
1499
|
+
name: string;
|
|
1500
|
+
description: string;
|
|
1501
|
+
slug: string;
|
|
1502
|
+
team: string;
|
|
1503
|
+
user_id?: string;
|
|
1504
|
+
collaborators: string[];
|
|
1505
|
+
/** @description Project creation date */
|
|
1506
|
+
createdAt: string;
|
|
1507
|
+
/** @description Project updated date */
|
|
1508
|
+
updatedAt?: string;
|
|
1509
|
+
};
|
|
1375
1510
|
};
|
|
1376
1511
|
};
|
|
1377
1512
|
};
|
|
1378
1513
|
};
|
|
1379
|
-
"project/
|
|
1514
|
+
"project/delete": {
|
|
1380
1515
|
parameters: {
|
|
1381
1516
|
query?: never;
|
|
1382
1517
|
header?: never;
|
|
@@ -1393,7 +1528,20 @@ export interface operations {
|
|
|
1393
1528
|
[name: string]: unknown;
|
|
1394
1529
|
};
|
|
1395
1530
|
content: {
|
|
1396
|
-
"application/json":
|
|
1531
|
+
"application/json": {
|
|
1532
|
+
/** @description Project ID */
|
|
1533
|
+
id: string;
|
|
1534
|
+
name: string;
|
|
1535
|
+
description: string;
|
|
1536
|
+
slug: string;
|
|
1537
|
+
team: string;
|
|
1538
|
+
user_id?: string;
|
|
1539
|
+
collaborators: string[];
|
|
1540
|
+
/** @description Project creation date */
|
|
1541
|
+
createdAt: string;
|
|
1542
|
+
/** @description Project updated date */
|
|
1543
|
+
updatedAt?: string;
|
|
1544
|
+
};
|
|
1397
1545
|
};
|
|
1398
1546
|
};
|
|
1399
1547
|
};
|
|
@@ -1401,12 +1549,14 @@ export interface operations {
|
|
|
1401
1549
|
"app/list": {
|
|
1402
1550
|
parameters: {
|
|
1403
1551
|
query?: {
|
|
1404
|
-
/** @description
|
|
1552
|
+
/** @description Number of items per page (max 200) */
|
|
1553
|
+
pageSize?: number;
|
|
1554
|
+
/** @description Cursor for next page */
|
|
1405
1555
|
cursor?: string;
|
|
1406
|
-
/** @description
|
|
1556
|
+
/** @description Cursor returned by the previous page */
|
|
1407
1557
|
next?: string;
|
|
1408
|
-
/** @description
|
|
1409
|
-
|
|
1558
|
+
/** @description Filter using a FaableQL query */
|
|
1559
|
+
query?: string;
|
|
1410
1560
|
};
|
|
1411
1561
|
header?: never;
|
|
1412
1562
|
path?: never;
|
|
@@ -1414,50 +1564,15 @@ export interface operations {
|
|
|
1414
1564
|
};
|
|
1415
1565
|
requestBody?: never;
|
|
1416
1566
|
responses: {
|
|
1417
|
-
/** @description
|
|
1567
|
+
/** @description Default Response */
|
|
1418
1568
|
200: {
|
|
1419
1569
|
headers: {
|
|
1420
1570
|
[name: string]: unknown;
|
|
1421
1571
|
};
|
|
1422
1572
|
content: {
|
|
1423
1573
|
"application/json": {
|
|
1424
|
-
/**
|
|
1425
|
-
* @description next cursor
|
|
1426
|
-
* @default null
|
|
1427
|
-
*/
|
|
1428
1574
|
next: string | null;
|
|
1429
|
-
|
|
1430
|
-
results: {
|
|
1431
|
-
/** @description App ID */
|
|
1432
|
-
id: string;
|
|
1433
|
-
team: string;
|
|
1434
|
-
name: string;
|
|
1435
|
-
description: string;
|
|
1436
|
-
slug: string;
|
|
1437
|
-
url: string;
|
|
1438
|
-
active: boolean;
|
|
1439
|
-
runtime: components["schemas"]["AppRuntime"];
|
|
1440
|
-
runtime_strategy: string | null;
|
|
1441
|
-
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1442
|
-
instance_type: string;
|
|
1443
|
-
/**
|
|
1444
|
-
* @description High-level summary of where the Database is in its lifecycle
|
|
1445
|
-
* @default UNKNOWN
|
|
1446
|
-
*/
|
|
1447
|
-
region: "gui1" | "poz1" | "ams1";
|
|
1448
|
-
status: components["schemas"]["AppStatus"];
|
|
1449
|
-
repository?: string;
|
|
1450
|
-
github_branch?: string;
|
|
1451
|
-
github_installation_id?: string;
|
|
1452
|
-
/** @default {} */
|
|
1453
|
-
metadata: {
|
|
1454
|
-
[key: string]: unknown;
|
|
1455
|
-
};
|
|
1456
|
-
/** @description App creation time */
|
|
1457
|
-
createdAt: string;
|
|
1458
|
-
/** @description App update time */
|
|
1459
|
-
updatedAt: string;
|
|
1460
|
-
}[];
|
|
1575
|
+
results: components["schemas"]["App"][];
|
|
1461
1576
|
};
|
|
1462
1577
|
};
|
|
1463
1578
|
};
|
|
@@ -1472,7 +1587,11 @@ export interface operations {
|
|
|
1472
1587
|
};
|
|
1473
1588
|
requestBody: {
|
|
1474
1589
|
content: {
|
|
1475
|
-
"application/json":
|
|
1590
|
+
"application/json": {
|
|
1591
|
+
name: string;
|
|
1592
|
+
runtime?: string;
|
|
1593
|
+
description?: string;
|
|
1594
|
+
};
|
|
1476
1595
|
};
|
|
1477
1596
|
};
|
|
1478
1597
|
responses: {
|
|
@@ -1482,7 +1601,38 @@ export interface operations {
|
|
|
1482
1601
|
[name: string]: unknown;
|
|
1483
1602
|
};
|
|
1484
1603
|
content: {
|
|
1485
|
-
"application/json":
|
|
1604
|
+
"application/json": {
|
|
1605
|
+
/** @description App ID */
|
|
1606
|
+
id: string;
|
|
1607
|
+
team: string;
|
|
1608
|
+
name: string;
|
|
1609
|
+
description: string;
|
|
1610
|
+
slug: string;
|
|
1611
|
+
url: string;
|
|
1612
|
+
active: boolean;
|
|
1613
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1614
|
+
runtime_strategy: string | null;
|
|
1615
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1616
|
+
instance_type: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1619
|
+
* @default UNKNOWN
|
|
1620
|
+
* @enum {unknown}
|
|
1621
|
+
*/
|
|
1622
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1623
|
+
status: components["schemas"]["AppStatus"];
|
|
1624
|
+
repository?: string;
|
|
1625
|
+
github_branch?: string;
|
|
1626
|
+
github_installation_id?: string;
|
|
1627
|
+
/** @default {} */
|
|
1628
|
+
metadata: {
|
|
1629
|
+
[key: string]: unknown;
|
|
1630
|
+
};
|
|
1631
|
+
/** @description App creation date */
|
|
1632
|
+
createdAt: string;
|
|
1633
|
+
/** @description App updated date */
|
|
1634
|
+
updatedAt?: string;
|
|
1635
|
+
};
|
|
1486
1636
|
};
|
|
1487
1637
|
};
|
|
1488
1638
|
};
|
|
@@ -1520,6 +1670,7 @@ export interface operations {
|
|
|
1520
1670
|
/**
|
|
1521
1671
|
* @description High-level summary of where the Database is in its lifecycle
|
|
1522
1672
|
* @default UNKNOWN
|
|
1673
|
+
* @enum {unknown}
|
|
1523
1674
|
*/
|
|
1524
1675
|
region: "gui1" | "poz1" | "ams1";
|
|
1525
1676
|
status: components["schemas"]["AppStatus"];
|
|
@@ -1530,10 +1681,10 @@ export interface operations {
|
|
|
1530
1681
|
metadata: {
|
|
1531
1682
|
[key: string]: unknown;
|
|
1532
1683
|
};
|
|
1533
|
-
/** @description App creation
|
|
1684
|
+
/** @description App creation date */
|
|
1534
1685
|
createdAt: string;
|
|
1535
|
-
/** @description App
|
|
1536
|
-
updatedAt
|
|
1686
|
+
/** @description App updated date */
|
|
1687
|
+
updatedAt?: string;
|
|
1537
1688
|
};
|
|
1538
1689
|
};
|
|
1539
1690
|
};
|
|
@@ -1550,7 +1701,13 @@ export interface operations {
|
|
|
1550
1701
|
};
|
|
1551
1702
|
requestBody: {
|
|
1552
1703
|
content: {
|
|
1553
|
-
"application/json":
|
|
1704
|
+
"application/json": {
|
|
1705
|
+
name?: string;
|
|
1706
|
+
description?: string;
|
|
1707
|
+
runtime?: components["schemas"]["AppRuntime"];
|
|
1708
|
+
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
1709
|
+
instance_type?: string;
|
|
1710
|
+
};
|
|
1554
1711
|
};
|
|
1555
1712
|
};
|
|
1556
1713
|
responses: {
|
|
@@ -1560,12 +1717,43 @@ export interface operations {
|
|
|
1560
1717
|
[name: string]: unknown;
|
|
1561
1718
|
};
|
|
1562
1719
|
content: {
|
|
1563
|
-
"application/json":
|
|
1720
|
+
"application/json": {
|
|
1721
|
+
/** @description App ID */
|
|
1722
|
+
id: string;
|
|
1723
|
+
team: string;
|
|
1724
|
+
name: string;
|
|
1725
|
+
description: string;
|
|
1726
|
+
slug: string;
|
|
1727
|
+
url: string;
|
|
1728
|
+
active: boolean;
|
|
1729
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1730
|
+
runtime_strategy: string | null;
|
|
1731
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1732
|
+
instance_type: string;
|
|
1733
|
+
/**
|
|
1734
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1735
|
+
* @default UNKNOWN
|
|
1736
|
+
* @enum {unknown}
|
|
1737
|
+
*/
|
|
1738
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1739
|
+
status: components["schemas"]["AppStatus"];
|
|
1740
|
+
repository?: string;
|
|
1741
|
+
github_branch?: string;
|
|
1742
|
+
github_installation_id?: string;
|
|
1743
|
+
/** @default {} */
|
|
1744
|
+
metadata: {
|
|
1745
|
+
[key: string]: unknown;
|
|
1746
|
+
};
|
|
1747
|
+
/** @description App creation date */
|
|
1748
|
+
createdAt: string;
|
|
1749
|
+
/** @description App updated date */
|
|
1750
|
+
updatedAt?: string;
|
|
1751
|
+
};
|
|
1564
1752
|
};
|
|
1565
1753
|
};
|
|
1566
1754
|
};
|
|
1567
1755
|
};
|
|
1568
|
-
"app/
|
|
1756
|
+
"app/delete": {
|
|
1569
1757
|
parameters: {
|
|
1570
1758
|
query?: never;
|
|
1571
1759
|
header?: never;
|
|
@@ -1582,7 +1770,38 @@ export interface operations {
|
|
|
1582
1770
|
[name: string]: unknown;
|
|
1583
1771
|
};
|
|
1584
1772
|
content: {
|
|
1585
|
-
"application/json":
|
|
1773
|
+
"application/json": {
|
|
1774
|
+
/** @description App ID */
|
|
1775
|
+
id: string;
|
|
1776
|
+
team: string;
|
|
1777
|
+
name: string;
|
|
1778
|
+
description: string;
|
|
1779
|
+
slug: string;
|
|
1780
|
+
url: string;
|
|
1781
|
+
active: boolean;
|
|
1782
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1783
|
+
runtime_strategy: string | null;
|
|
1784
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1785
|
+
instance_type: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1788
|
+
* @default UNKNOWN
|
|
1789
|
+
* @enum {unknown}
|
|
1790
|
+
*/
|
|
1791
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1792
|
+
status: components["schemas"]["AppStatus"];
|
|
1793
|
+
repository?: string;
|
|
1794
|
+
github_branch?: string;
|
|
1795
|
+
github_installation_id?: string;
|
|
1796
|
+
/** @default {} */
|
|
1797
|
+
metadata: {
|
|
1798
|
+
[key: string]: unknown;
|
|
1799
|
+
};
|
|
1800
|
+
/** @description App creation date */
|
|
1801
|
+
createdAt: string;
|
|
1802
|
+
/** @description App updated date */
|
|
1803
|
+
updatedAt?: string;
|
|
1804
|
+
};
|
|
1586
1805
|
};
|
|
1587
1806
|
};
|
|
1588
1807
|
};
|
|
@@ -1686,7 +1905,12 @@ export interface operations {
|
|
|
1686
1905
|
};
|
|
1687
1906
|
"app/traffic": {
|
|
1688
1907
|
parameters: {
|
|
1689
|
-
query?:
|
|
1908
|
+
query?: {
|
|
1909
|
+
from?: number;
|
|
1910
|
+
to?: number;
|
|
1911
|
+
interval?: number;
|
|
1912
|
+
deployment_id?: string;
|
|
1913
|
+
};
|
|
1690
1914
|
header?: never;
|
|
1691
1915
|
path: {
|
|
1692
1916
|
app_id: string;
|
|
@@ -1700,19 +1924,154 @@ export interface operations {
|
|
|
1700
1924
|
headers: {
|
|
1701
1925
|
[name: string]: unknown;
|
|
1702
1926
|
};
|
|
1703
|
-
content
|
|
1927
|
+
content: {
|
|
1928
|
+
"application/json": {
|
|
1929
|
+
range: {
|
|
1930
|
+
from: number;
|
|
1931
|
+
to: number;
|
|
1932
|
+
interval: number;
|
|
1933
|
+
deployment_id?: string;
|
|
1934
|
+
};
|
|
1935
|
+
top_endpoints: {
|
|
1936
|
+
path: string;
|
|
1937
|
+
requests: number;
|
|
1938
|
+
resp_bytes: number;
|
|
1939
|
+
}[];
|
|
1940
|
+
status_codes: {
|
|
1941
|
+
status: number;
|
|
1942
|
+
requests: number;
|
|
1943
|
+
}[];
|
|
1944
|
+
methods: {
|
|
1945
|
+
method: string;
|
|
1946
|
+
requests: number;
|
|
1947
|
+
}[];
|
|
1948
|
+
transfer: {
|
|
1949
|
+
ts: string;
|
|
1950
|
+
inbound_bytes: number;
|
|
1951
|
+
outbound_bytes: number;
|
|
1952
|
+
requests: number;
|
|
1953
|
+
}[];
|
|
1954
|
+
};
|
|
1955
|
+
};
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
"app/link_repository": {
|
|
1960
|
+
parameters: {
|
|
1961
|
+
query?: never;
|
|
1962
|
+
header?: never;
|
|
1963
|
+
path: {
|
|
1964
|
+
id: string;
|
|
1965
|
+
};
|
|
1966
|
+
cookie?: never;
|
|
1967
|
+
};
|
|
1968
|
+
requestBody: {
|
|
1969
|
+
content: {
|
|
1970
|
+
"application/json": {
|
|
1971
|
+
/** @description GitHub repository in "owner/repo" form */
|
|
1972
|
+
repository: string;
|
|
1973
|
+
/** @description Branch to deploy from. Defaults to the repo default. */
|
|
1974
|
+
github_branch?: string;
|
|
1975
|
+
/** @description Installation the repo belongs to. When provided, verification is scoped to it (faster) instead of scanning every installation. */
|
|
1976
|
+
github_installation_id?: string;
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
};
|
|
1980
|
+
responses: {
|
|
1981
|
+
/** @description App */
|
|
1982
|
+
200: {
|
|
1983
|
+
headers: {
|
|
1984
|
+
[name: string]: unknown;
|
|
1985
|
+
};
|
|
1986
|
+
content: {
|
|
1987
|
+
"application/json": components["schemas"]["App"];
|
|
1988
|
+
};
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
};
|
|
1992
|
+
"app/unlink_repository": {
|
|
1993
|
+
parameters: {
|
|
1994
|
+
query?: never;
|
|
1995
|
+
header?: never;
|
|
1996
|
+
path: {
|
|
1997
|
+
id: string;
|
|
1998
|
+
};
|
|
1999
|
+
cookie?: never;
|
|
2000
|
+
};
|
|
2001
|
+
requestBody?: never;
|
|
2002
|
+
responses: {
|
|
2003
|
+
/** @description App */
|
|
2004
|
+
200: {
|
|
2005
|
+
headers: {
|
|
2006
|
+
[name: string]: unknown;
|
|
2007
|
+
};
|
|
2008
|
+
content: {
|
|
2009
|
+
"application/json": components["schemas"]["App"];
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
};
|
|
2013
|
+
};
|
|
2014
|
+
"app/get_deploy_workflow": {
|
|
2015
|
+
parameters: {
|
|
2016
|
+
query?: never;
|
|
2017
|
+
header?: never;
|
|
2018
|
+
path: {
|
|
2019
|
+
id: string;
|
|
2020
|
+
};
|
|
2021
|
+
cookie?: never;
|
|
2022
|
+
};
|
|
2023
|
+
requestBody?: never;
|
|
2024
|
+
responses: {
|
|
2025
|
+
/** @description Default Response */
|
|
2026
|
+
200: {
|
|
2027
|
+
headers: {
|
|
2028
|
+
[name: string]: unknown;
|
|
2029
|
+
};
|
|
2030
|
+
content: {
|
|
2031
|
+
"application/json": {
|
|
2032
|
+
configured: boolean;
|
|
2033
|
+
workflow_path?: string;
|
|
2034
|
+
};
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
};
|
|
2038
|
+
};
|
|
2039
|
+
"app/setup_deploy_workflow": {
|
|
2040
|
+
parameters: {
|
|
2041
|
+
query?: never;
|
|
2042
|
+
header?: never;
|
|
2043
|
+
path: {
|
|
2044
|
+
id: string;
|
|
2045
|
+
};
|
|
2046
|
+
cookie?: never;
|
|
2047
|
+
};
|
|
2048
|
+
requestBody?: never;
|
|
2049
|
+
responses: {
|
|
2050
|
+
/** @description Default Response */
|
|
2051
|
+
200: {
|
|
2052
|
+
headers: {
|
|
2053
|
+
[name: string]: unknown;
|
|
2054
|
+
};
|
|
2055
|
+
content: {
|
|
2056
|
+
"application/json": {
|
|
2057
|
+
configured: boolean;
|
|
2058
|
+
workflow_path?: string;
|
|
2059
|
+
};
|
|
2060
|
+
};
|
|
1704
2061
|
};
|
|
1705
2062
|
};
|
|
1706
2063
|
};
|
|
1707
2064
|
"deployment/list": {
|
|
1708
2065
|
parameters: {
|
|
1709
2066
|
query?: {
|
|
1710
|
-
/** @description
|
|
2067
|
+
/** @description Number of items per page (max 200) */
|
|
2068
|
+
pageSize?: number;
|
|
2069
|
+
/** @description Cursor for next page */
|
|
1711
2070
|
cursor?: string;
|
|
1712
|
-
/** @description
|
|
2071
|
+
/** @description Cursor returned by the previous page */
|
|
1713
2072
|
next?: string;
|
|
1714
|
-
/** @description
|
|
1715
|
-
|
|
2073
|
+
/** @description Filter using a FaableQL query */
|
|
2074
|
+
query?: string;
|
|
1716
2075
|
};
|
|
1717
2076
|
header?: never;
|
|
1718
2077
|
path?: never;
|
|
@@ -1720,37 +2079,15 @@ export interface operations {
|
|
|
1720
2079
|
};
|
|
1721
2080
|
requestBody?: never;
|
|
1722
2081
|
responses: {
|
|
1723
|
-
/** @description
|
|
2082
|
+
/** @description Default Response */
|
|
1724
2083
|
200: {
|
|
1725
2084
|
headers: {
|
|
1726
2085
|
[name: string]: unknown;
|
|
1727
2086
|
};
|
|
1728
2087
|
content: {
|
|
1729
2088
|
"application/json": {
|
|
1730
|
-
/**
|
|
1731
|
-
* @description next cursor
|
|
1732
|
-
* @default null
|
|
1733
|
-
*/
|
|
1734
2089
|
next: string | null;
|
|
1735
|
-
|
|
1736
|
-
results: {
|
|
1737
|
-
/** @description Deployment ID */
|
|
1738
|
-
id: string;
|
|
1739
|
-
team: string;
|
|
1740
|
-
app_id: string;
|
|
1741
|
-
image?: string;
|
|
1742
|
-
github_commit?: string;
|
|
1743
|
-
github_ref?: string;
|
|
1744
|
-
status: components["schemas"]["DeploymentStatus"];
|
|
1745
|
-
/** @default {} */
|
|
1746
|
-
metadata: {
|
|
1747
|
-
[key: string]: unknown;
|
|
1748
|
-
};
|
|
1749
|
-
/** @description Deployment creation time */
|
|
1750
|
-
createdAt: string;
|
|
1751
|
-
/** @description Deployment update time */
|
|
1752
|
-
updatedAt: string;
|
|
1753
|
-
}[];
|
|
2090
|
+
results: components["schemas"]["Deployment"][];
|
|
1754
2091
|
};
|
|
1755
2092
|
};
|
|
1756
2093
|
};
|
|
@@ -1765,7 +2102,15 @@ export interface operations {
|
|
|
1765
2102
|
};
|
|
1766
2103
|
requestBody: {
|
|
1767
2104
|
content: {
|
|
1768
|
-
"application/json":
|
|
2105
|
+
"application/json": {
|
|
2106
|
+
app_id: string;
|
|
2107
|
+
image?: string;
|
|
2108
|
+
github_commit?: string;
|
|
2109
|
+
github_ref?: string;
|
|
2110
|
+
github_actor?: string;
|
|
2111
|
+
github_commit_message?: string;
|
|
2112
|
+
type?: string;
|
|
2113
|
+
};
|
|
1769
2114
|
};
|
|
1770
2115
|
};
|
|
1771
2116
|
responses: {
|
|
@@ -1775,7 +2120,26 @@ export interface operations {
|
|
|
1775
2120
|
[name: string]: unknown;
|
|
1776
2121
|
};
|
|
1777
2122
|
content: {
|
|
1778
|
-
"application/json":
|
|
2123
|
+
"application/json": {
|
|
2124
|
+
/** @description Deployment ID */
|
|
2125
|
+
id: string;
|
|
2126
|
+
team: string;
|
|
2127
|
+
app_id: string;
|
|
2128
|
+
image?: string;
|
|
2129
|
+
github_commit?: string;
|
|
2130
|
+
github_ref?: string;
|
|
2131
|
+
github_actor?: string;
|
|
2132
|
+
github_commit_message?: string;
|
|
2133
|
+
status: components["schemas"]["DeploymentStatus"];
|
|
2134
|
+
/** @default {} */
|
|
2135
|
+
metadata: {
|
|
2136
|
+
[key: string]: unknown;
|
|
2137
|
+
};
|
|
2138
|
+
/** @description Deployment creation date */
|
|
2139
|
+
createdAt: string;
|
|
2140
|
+
/** @description Deployment updated date */
|
|
2141
|
+
updatedAt?: string;
|
|
2142
|
+
};
|
|
1779
2143
|
};
|
|
1780
2144
|
};
|
|
1781
2145
|
};
|
|
@@ -1805,21 +2169,23 @@ export interface operations {
|
|
|
1805
2169
|
image?: string;
|
|
1806
2170
|
github_commit?: string;
|
|
1807
2171
|
github_ref?: string;
|
|
2172
|
+
github_actor?: string;
|
|
2173
|
+
github_commit_message?: string;
|
|
1808
2174
|
status: components["schemas"]["DeploymentStatus"];
|
|
1809
2175
|
/** @default {} */
|
|
1810
2176
|
metadata: {
|
|
1811
2177
|
[key: string]: unknown;
|
|
1812
2178
|
};
|
|
1813
|
-
/** @description Deployment creation
|
|
2179
|
+
/** @description Deployment creation date */
|
|
1814
2180
|
createdAt: string;
|
|
1815
|
-
/** @description Deployment
|
|
1816
|
-
updatedAt
|
|
2181
|
+
/** @description Deployment updated date */
|
|
2182
|
+
updatedAt?: string;
|
|
1817
2183
|
};
|
|
1818
2184
|
};
|
|
1819
2185
|
};
|
|
1820
2186
|
};
|
|
1821
2187
|
};
|
|
1822
|
-
"deployment/
|
|
2188
|
+
"deployment/delete": {
|
|
1823
2189
|
parameters: {
|
|
1824
2190
|
query?: never;
|
|
1825
2191
|
header?: never;
|
|
@@ -1836,7 +2202,26 @@ export interface operations {
|
|
|
1836
2202
|
[name: string]: unknown;
|
|
1837
2203
|
};
|
|
1838
2204
|
content: {
|
|
1839
|
-
"application/json":
|
|
2205
|
+
"application/json": {
|
|
2206
|
+
/** @description Deployment ID */
|
|
2207
|
+
id: string;
|
|
2208
|
+
team: string;
|
|
2209
|
+
app_id: string;
|
|
2210
|
+
image?: string;
|
|
2211
|
+
github_commit?: string;
|
|
2212
|
+
github_ref?: string;
|
|
2213
|
+
github_actor?: string;
|
|
2214
|
+
github_commit_message?: string;
|
|
2215
|
+
status: components["schemas"]["DeploymentStatus"];
|
|
2216
|
+
/** @default {} */
|
|
2217
|
+
metadata: {
|
|
2218
|
+
[key: string]: unknown;
|
|
2219
|
+
};
|
|
2220
|
+
/** @description Deployment creation date */
|
|
2221
|
+
createdAt: string;
|
|
2222
|
+
/** @description Deployment updated date */
|
|
2223
|
+
updatedAt?: string;
|
|
2224
|
+
};
|
|
1840
2225
|
};
|
|
1841
2226
|
};
|
|
1842
2227
|
};
|
|
@@ -1844,12 +2229,14 @@ export interface operations {
|
|
|
1844
2229
|
"domain/list": {
|
|
1845
2230
|
parameters: {
|
|
1846
2231
|
query?: {
|
|
1847
|
-
/** @description
|
|
2232
|
+
/** @description Number of items per page (max 200) */
|
|
2233
|
+
pageSize?: number;
|
|
2234
|
+
/** @description Cursor for next page */
|
|
1848
2235
|
cursor?: string;
|
|
1849
|
-
/** @description
|
|
2236
|
+
/** @description Cursor returned by the previous page */
|
|
1850
2237
|
next?: string;
|
|
1851
|
-
/** @description
|
|
1852
|
-
|
|
2238
|
+
/** @description Filter using a FaableQL query */
|
|
2239
|
+
query?: string;
|
|
1853
2240
|
};
|
|
1854
2241
|
header?: never;
|
|
1855
2242
|
path?: never;
|
|
@@ -1857,44 +2244,15 @@ export interface operations {
|
|
|
1857
2244
|
};
|
|
1858
2245
|
requestBody?: never;
|
|
1859
2246
|
responses: {
|
|
1860
|
-
/** @description
|
|
2247
|
+
/** @description Default Response */
|
|
1861
2248
|
200: {
|
|
1862
2249
|
headers: {
|
|
1863
2250
|
[name: string]: unknown;
|
|
1864
2251
|
};
|
|
1865
2252
|
content: {
|
|
1866
2253
|
"application/json": {
|
|
1867
|
-
/**
|
|
1868
|
-
* @description next cursor
|
|
1869
|
-
* @default null
|
|
1870
|
-
*/
|
|
1871
2254
|
next: string | null;
|
|
1872
|
-
|
|
1873
|
-
results: {
|
|
1874
|
-
/** @description Domain ID */
|
|
1875
|
-
id: string;
|
|
1876
|
-
team: string;
|
|
1877
|
-
/** @description Unique identifier of the domain */
|
|
1878
|
-
fqdn: string;
|
|
1879
|
-
/** @description TLS is enabled for this domain */
|
|
1880
|
-
tls: boolean;
|
|
1881
|
-
/**
|
|
1882
|
-
* @description Linked App
|
|
1883
|
-
* @default null
|
|
1884
|
-
*/
|
|
1885
|
-
app_id: string | null;
|
|
1886
|
-
/** @description If the domain has the ownership verified */
|
|
1887
|
-
verified: boolean;
|
|
1888
|
-
active: boolean;
|
|
1889
|
-
/** @default {} */
|
|
1890
|
-
metadata: {
|
|
1891
|
-
[key: string]: unknown;
|
|
1892
|
-
};
|
|
1893
|
-
/** @description Domain creation time */
|
|
1894
|
-
createdAt: string;
|
|
1895
|
-
/** @description Domain update time */
|
|
1896
|
-
updatedAt: string;
|
|
1897
|
-
}[];
|
|
2255
|
+
results: components["schemas"]["Domain"][];
|
|
1898
2256
|
};
|
|
1899
2257
|
};
|
|
1900
2258
|
};
|
|
@@ -1909,7 +2267,13 @@ export interface operations {
|
|
|
1909
2267
|
};
|
|
1910
2268
|
requestBody: {
|
|
1911
2269
|
content: {
|
|
1912
|
-
"application/json":
|
|
2270
|
+
"application/json": {
|
|
2271
|
+
fqdn: string;
|
|
2272
|
+
/** @description Linked App */
|
|
2273
|
+
app_id?: string;
|
|
2274
|
+
/** @default true */
|
|
2275
|
+
tls?: boolean;
|
|
2276
|
+
};
|
|
1913
2277
|
};
|
|
1914
2278
|
};
|
|
1915
2279
|
responses: {
|
|
@@ -1919,7 +2283,31 @@ export interface operations {
|
|
|
1919
2283
|
[name: string]: unknown;
|
|
1920
2284
|
};
|
|
1921
2285
|
content: {
|
|
1922
|
-
"application/json":
|
|
2286
|
+
"application/json": {
|
|
2287
|
+
/** @description Domain ID */
|
|
2288
|
+
id: string;
|
|
2289
|
+
team: string;
|
|
2290
|
+
/** @description Unique identifier of the domain */
|
|
2291
|
+
fqdn: string;
|
|
2292
|
+
/** @description TLS is enabled for this domain */
|
|
2293
|
+
tls: boolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* @description Linked App
|
|
2296
|
+
* @default null
|
|
2297
|
+
*/
|
|
2298
|
+
app_id: string | null;
|
|
2299
|
+
/** @description If the domain has the ownership verified */
|
|
2300
|
+
verified: boolean;
|
|
2301
|
+
active: boolean;
|
|
2302
|
+
/** @default {} */
|
|
2303
|
+
metadata: {
|
|
2304
|
+
[key: string]: unknown;
|
|
2305
|
+
};
|
|
2306
|
+
/** @description Domain creation date */
|
|
2307
|
+
createdAt: string;
|
|
2308
|
+
/** @description Domain updated date */
|
|
2309
|
+
updatedAt?: string;
|
|
2310
|
+
};
|
|
1923
2311
|
};
|
|
1924
2312
|
};
|
|
1925
2313
|
};
|
|
@@ -1961,10 +2349,10 @@ export interface operations {
|
|
|
1961
2349
|
metadata: {
|
|
1962
2350
|
[key: string]: unknown;
|
|
1963
2351
|
};
|
|
1964
|
-
/** @description Domain creation
|
|
2352
|
+
/** @description Domain creation date */
|
|
1965
2353
|
createdAt: string;
|
|
1966
|
-
/** @description Domain
|
|
1967
|
-
updatedAt
|
|
2354
|
+
/** @description Domain updated date */
|
|
2355
|
+
updatedAt?: string;
|
|
1968
2356
|
};
|
|
1969
2357
|
};
|
|
1970
2358
|
};
|
|
@@ -1981,7 +2369,14 @@ export interface operations {
|
|
|
1981
2369
|
};
|
|
1982
2370
|
requestBody: {
|
|
1983
2371
|
content: {
|
|
1984
|
-
"application/json":
|
|
2372
|
+
"application/json": {
|
|
2373
|
+
/**
|
|
2374
|
+
* @description Link domain to this App
|
|
2375
|
+
* @default null
|
|
2376
|
+
*/
|
|
2377
|
+
app_id?: string | null;
|
|
2378
|
+
active?: boolean;
|
|
2379
|
+
};
|
|
1985
2380
|
};
|
|
1986
2381
|
};
|
|
1987
2382
|
responses: {
|
|
@@ -1991,12 +2386,36 @@ export interface operations {
|
|
|
1991
2386
|
[name: string]: unknown;
|
|
1992
2387
|
};
|
|
1993
2388
|
content: {
|
|
1994
|
-
"application/json":
|
|
2389
|
+
"application/json": {
|
|
2390
|
+
/** @description Domain ID */
|
|
2391
|
+
id: string;
|
|
2392
|
+
team: string;
|
|
2393
|
+
/** @description Unique identifier of the domain */
|
|
2394
|
+
fqdn: string;
|
|
2395
|
+
/** @description TLS is enabled for this domain */
|
|
2396
|
+
tls: boolean;
|
|
2397
|
+
/**
|
|
2398
|
+
* @description Linked App
|
|
2399
|
+
* @default null
|
|
2400
|
+
*/
|
|
2401
|
+
app_id: string | null;
|
|
2402
|
+
/** @description If the domain has the ownership verified */
|
|
2403
|
+
verified: boolean;
|
|
2404
|
+
active: boolean;
|
|
2405
|
+
/** @default {} */
|
|
2406
|
+
metadata: {
|
|
2407
|
+
[key: string]: unknown;
|
|
2408
|
+
};
|
|
2409
|
+
/** @description Domain creation date */
|
|
2410
|
+
createdAt: string;
|
|
2411
|
+
/** @description Domain updated date */
|
|
2412
|
+
updatedAt?: string;
|
|
2413
|
+
};
|
|
1995
2414
|
};
|
|
1996
2415
|
};
|
|
1997
2416
|
};
|
|
1998
2417
|
};
|
|
1999
|
-
"domain/
|
|
2418
|
+
"domain/delete": {
|
|
2000
2419
|
parameters: {
|
|
2001
2420
|
query?: never;
|
|
2002
2421
|
header?: never;
|
|
@@ -2013,7 +2432,31 @@ export interface operations {
|
|
|
2013
2432
|
[name: string]: unknown;
|
|
2014
2433
|
};
|
|
2015
2434
|
content: {
|
|
2016
|
-
"application/json":
|
|
2435
|
+
"application/json": {
|
|
2436
|
+
/** @description Domain ID */
|
|
2437
|
+
id: string;
|
|
2438
|
+
team: string;
|
|
2439
|
+
/** @description Unique identifier of the domain */
|
|
2440
|
+
fqdn: string;
|
|
2441
|
+
/** @description TLS is enabled for this domain */
|
|
2442
|
+
tls: boolean;
|
|
2443
|
+
/**
|
|
2444
|
+
* @description Linked App
|
|
2445
|
+
* @default null
|
|
2446
|
+
*/
|
|
2447
|
+
app_id: string | null;
|
|
2448
|
+
/** @description If the domain has the ownership verified */
|
|
2449
|
+
verified: boolean;
|
|
2450
|
+
active: boolean;
|
|
2451
|
+
/** @default {} */
|
|
2452
|
+
metadata: {
|
|
2453
|
+
[key: string]: unknown;
|
|
2454
|
+
};
|
|
2455
|
+
/** @description Domain creation date */
|
|
2456
|
+
createdAt: string;
|
|
2457
|
+
/** @description Domain updated date */
|
|
2458
|
+
updatedAt?: string;
|
|
2459
|
+
};
|
|
2017
2460
|
};
|
|
2018
2461
|
};
|
|
2019
2462
|
};
|
|
@@ -2140,12 +2583,14 @@ export interface operations {
|
|
|
2140
2583
|
"contact/list": {
|
|
2141
2584
|
parameters: {
|
|
2142
2585
|
query?: {
|
|
2143
|
-
/** @description
|
|
2586
|
+
/** @description Number of items per page (max 200) */
|
|
2587
|
+
pageSize?: number;
|
|
2588
|
+
/** @description Cursor for next page */
|
|
2144
2589
|
cursor?: string;
|
|
2145
|
-
/** @description
|
|
2590
|
+
/** @description Cursor returned by the previous page */
|
|
2146
2591
|
next?: string;
|
|
2147
|
-
/** @description
|
|
2148
|
-
|
|
2592
|
+
/** @description Filter using a FaableQL query */
|
|
2593
|
+
query?: string;
|
|
2149
2594
|
};
|
|
2150
2595
|
header?: never;
|
|
2151
2596
|
path?: never;
|
|
@@ -2153,35 +2598,15 @@ export interface operations {
|
|
|
2153
2598
|
};
|
|
2154
2599
|
requestBody?: never;
|
|
2155
2600
|
responses: {
|
|
2156
|
-
/** @description
|
|
2601
|
+
/** @description Default Response */
|
|
2157
2602
|
200: {
|
|
2158
2603
|
headers: {
|
|
2159
2604
|
[name: string]: unknown;
|
|
2160
2605
|
};
|
|
2161
2606
|
content: {
|
|
2162
2607
|
"application/json": {
|
|
2163
|
-
/**
|
|
2164
|
-
* @description next cursor
|
|
2165
|
-
* @default null
|
|
2166
|
-
*/
|
|
2167
2608
|
next: string | null;
|
|
2168
|
-
|
|
2169
|
-
results: {
|
|
2170
|
-
/** @description Contact ID */
|
|
2171
|
-
id: string;
|
|
2172
|
-
team: string;
|
|
2173
|
-
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2174
|
-
email?: string;
|
|
2175
|
-
phone?: string;
|
|
2176
|
-
/** @default {} */
|
|
2177
|
-
metadata: {
|
|
2178
|
-
[key: string]: unknown;
|
|
2179
|
-
};
|
|
2180
|
-
/** @description Contact creation time */
|
|
2181
|
-
createdAt: string;
|
|
2182
|
-
/** @description Contact update time */
|
|
2183
|
-
updatedAt: string;
|
|
2184
|
-
}[];
|
|
2609
|
+
results: components["schemas"]["Contact"][];
|
|
2185
2610
|
};
|
|
2186
2611
|
};
|
|
2187
2612
|
};
|
|
@@ -2196,7 +2621,12 @@ export interface operations {
|
|
|
2196
2621
|
};
|
|
2197
2622
|
requestBody: {
|
|
2198
2623
|
content: {
|
|
2199
|
-
"application/json":
|
|
2624
|
+
"application/json": {
|
|
2625
|
+
/** @enum {unknown} */
|
|
2626
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2627
|
+
email?: string;
|
|
2628
|
+
phone?: string;
|
|
2629
|
+
};
|
|
2200
2630
|
};
|
|
2201
2631
|
};
|
|
2202
2632
|
responses: {
|
|
@@ -2206,7 +2636,23 @@ export interface operations {
|
|
|
2206
2636
|
[name: string]: unknown;
|
|
2207
2637
|
};
|
|
2208
2638
|
content: {
|
|
2209
|
-
"application/json":
|
|
2639
|
+
"application/json": {
|
|
2640
|
+
/** @description Contact ID */
|
|
2641
|
+
id: string;
|
|
2642
|
+
team: string;
|
|
2643
|
+
/** @enum {unknown} */
|
|
2644
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2645
|
+
email?: string;
|
|
2646
|
+
phone?: string;
|
|
2647
|
+
/** @default {} */
|
|
2648
|
+
metadata: {
|
|
2649
|
+
[key: string]: unknown;
|
|
2650
|
+
};
|
|
2651
|
+
/** @description Contact creation date */
|
|
2652
|
+
createdAt: string;
|
|
2653
|
+
/** @description Contact updated date */
|
|
2654
|
+
updatedAt?: string;
|
|
2655
|
+
};
|
|
2210
2656
|
};
|
|
2211
2657
|
};
|
|
2212
2658
|
};
|
|
@@ -2232,6 +2678,7 @@ export interface operations {
|
|
|
2232
2678
|
/** @description Contact ID */
|
|
2233
2679
|
id: string;
|
|
2234
2680
|
team: string;
|
|
2681
|
+
/** @enum {unknown} */
|
|
2235
2682
|
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2236
2683
|
email?: string;
|
|
2237
2684
|
phone?: string;
|
|
@@ -2239,10 +2686,10 @@ export interface operations {
|
|
|
2239
2686
|
metadata: {
|
|
2240
2687
|
[key: string]: unknown;
|
|
2241
2688
|
};
|
|
2242
|
-
/** @description Contact creation
|
|
2689
|
+
/** @description Contact creation date */
|
|
2243
2690
|
createdAt: string;
|
|
2244
|
-
/** @description Contact
|
|
2245
|
-
updatedAt
|
|
2691
|
+
/** @description Contact updated date */
|
|
2692
|
+
updatedAt?: string;
|
|
2246
2693
|
};
|
|
2247
2694
|
};
|
|
2248
2695
|
};
|
|
@@ -2259,7 +2706,12 @@ export interface operations {
|
|
|
2259
2706
|
};
|
|
2260
2707
|
requestBody: {
|
|
2261
2708
|
content: {
|
|
2262
|
-
"application/json":
|
|
2709
|
+
"application/json": {
|
|
2710
|
+
/** @enum {unknown} */
|
|
2711
|
+
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2712
|
+
email?: string;
|
|
2713
|
+
phone?: string;
|
|
2714
|
+
};
|
|
2263
2715
|
};
|
|
2264
2716
|
};
|
|
2265
2717
|
responses: {
|
|
@@ -2269,12 +2721,28 @@ export interface operations {
|
|
|
2269
2721
|
[name: string]: unknown;
|
|
2270
2722
|
};
|
|
2271
2723
|
content: {
|
|
2272
|
-
"application/json":
|
|
2724
|
+
"application/json": {
|
|
2725
|
+
/** @description Contact ID */
|
|
2726
|
+
id: string;
|
|
2727
|
+
team: string;
|
|
2728
|
+
/** @enum {unknown} */
|
|
2729
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2730
|
+
email?: string;
|
|
2731
|
+
phone?: string;
|
|
2732
|
+
/** @default {} */
|
|
2733
|
+
metadata: {
|
|
2734
|
+
[key: string]: unknown;
|
|
2735
|
+
};
|
|
2736
|
+
/** @description Contact creation date */
|
|
2737
|
+
createdAt: string;
|
|
2738
|
+
/** @description Contact updated date */
|
|
2739
|
+
updatedAt?: string;
|
|
2740
|
+
};
|
|
2273
2741
|
};
|
|
2274
2742
|
};
|
|
2275
2743
|
};
|
|
2276
2744
|
};
|
|
2277
|
-
"contact/
|
|
2745
|
+
"contact/delete": {
|
|
2278
2746
|
parameters: {
|
|
2279
2747
|
query?: never;
|
|
2280
2748
|
header?: never;
|
|
@@ -2291,7 +2759,23 @@ export interface operations {
|
|
|
2291
2759
|
[name: string]: unknown;
|
|
2292
2760
|
};
|
|
2293
2761
|
content: {
|
|
2294
|
-
"application/json":
|
|
2762
|
+
"application/json": {
|
|
2763
|
+
/** @description Contact ID */
|
|
2764
|
+
id: string;
|
|
2765
|
+
team: string;
|
|
2766
|
+
/** @enum {unknown} */
|
|
2767
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2768
|
+
email?: string;
|
|
2769
|
+
phone?: string;
|
|
2770
|
+
/** @default {} */
|
|
2771
|
+
metadata: {
|
|
2772
|
+
[key: string]: unknown;
|
|
2773
|
+
};
|
|
2774
|
+
/** @description Contact creation date */
|
|
2775
|
+
createdAt: string;
|
|
2776
|
+
/** @description Contact updated date */
|
|
2777
|
+
updatedAt?: string;
|
|
2778
|
+
};
|
|
2295
2779
|
};
|
|
2296
2780
|
};
|
|
2297
2781
|
};
|
|
@@ -2299,12 +2783,14 @@ export interface operations {
|
|
|
2299
2783
|
"apikey/list": {
|
|
2300
2784
|
parameters: {
|
|
2301
2785
|
query?: {
|
|
2302
|
-
/** @description
|
|
2786
|
+
/** @description Number of items per page (max 200) */
|
|
2787
|
+
pageSize?: number;
|
|
2788
|
+
/** @description Cursor for next page */
|
|
2303
2789
|
cursor?: string;
|
|
2304
|
-
/** @description
|
|
2790
|
+
/** @description Cursor returned by the previous page */
|
|
2305
2791
|
next?: string;
|
|
2306
|
-
/** @description
|
|
2307
|
-
|
|
2792
|
+
/** @description Filter using a FaableQL query */
|
|
2793
|
+
query?: string;
|
|
2308
2794
|
};
|
|
2309
2795
|
header?: never;
|
|
2310
2796
|
path?: never;
|
|
@@ -2312,36 +2798,15 @@ export interface operations {
|
|
|
2312
2798
|
};
|
|
2313
2799
|
requestBody?: never;
|
|
2314
2800
|
responses: {
|
|
2315
|
-
/** @description
|
|
2801
|
+
/** @description Default Response */
|
|
2316
2802
|
200: {
|
|
2317
2803
|
headers: {
|
|
2318
2804
|
[name: string]: unknown;
|
|
2319
2805
|
};
|
|
2320
2806
|
content: {
|
|
2321
2807
|
"application/json": {
|
|
2322
|
-
/**
|
|
2323
|
-
* @description next cursor
|
|
2324
|
-
* @default null
|
|
2325
|
-
*/
|
|
2326
2808
|
next: string | null;
|
|
2327
|
-
|
|
2328
|
-
results: {
|
|
2329
|
-
/** @description ApiKey ID */
|
|
2330
|
-
id: string;
|
|
2331
|
-
team: string;
|
|
2332
|
-
apikey: string;
|
|
2333
|
-
user_id: string;
|
|
2334
|
-
description?: string;
|
|
2335
|
-
scopes?: string[];
|
|
2336
|
-
/** @default {} */
|
|
2337
|
-
metadata: {
|
|
2338
|
-
[key: string]: unknown;
|
|
2339
|
-
};
|
|
2340
|
-
/** @description ApiKey creation time */
|
|
2341
|
-
createdAt: string;
|
|
2342
|
-
/** @description ApiKey update time */
|
|
2343
|
-
updatedAt: string;
|
|
2344
|
-
}[];
|
|
2809
|
+
results: components["schemas"]["ApiKey"][];
|
|
2345
2810
|
};
|
|
2346
2811
|
};
|
|
2347
2812
|
};
|
|
@@ -2356,7 +2821,9 @@ export interface operations {
|
|
|
2356
2821
|
};
|
|
2357
2822
|
requestBody: {
|
|
2358
2823
|
content: {
|
|
2359
|
-
"application/json":
|
|
2824
|
+
"application/json": {
|
|
2825
|
+
description?: string;
|
|
2826
|
+
};
|
|
2360
2827
|
};
|
|
2361
2828
|
};
|
|
2362
2829
|
responses: {
|
|
@@ -2366,7 +2833,23 @@ export interface operations {
|
|
|
2366
2833
|
[name: string]: unknown;
|
|
2367
2834
|
};
|
|
2368
2835
|
content: {
|
|
2369
|
-
"application/json":
|
|
2836
|
+
"application/json": {
|
|
2837
|
+
/** @description ApiKey ID */
|
|
2838
|
+
id: string;
|
|
2839
|
+
team: string;
|
|
2840
|
+
apikey: string;
|
|
2841
|
+
user_id: string;
|
|
2842
|
+
description?: string;
|
|
2843
|
+
scopes?: string[];
|
|
2844
|
+
/** @default {} */
|
|
2845
|
+
metadata: {
|
|
2846
|
+
[key: string]: unknown;
|
|
2847
|
+
};
|
|
2848
|
+
/** @description ApiKey creation date */
|
|
2849
|
+
createdAt: string;
|
|
2850
|
+
/** @description ApiKey updated date */
|
|
2851
|
+
updatedAt?: string;
|
|
2852
|
+
};
|
|
2370
2853
|
};
|
|
2371
2854
|
};
|
|
2372
2855
|
};
|
|
@@ -2400,10 +2883,10 @@ export interface operations {
|
|
|
2400
2883
|
metadata: {
|
|
2401
2884
|
[key: string]: unknown;
|
|
2402
2885
|
};
|
|
2403
|
-
/** @description ApiKey creation
|
|
2886
|
+
/** @description ApiKey creation date */
|
|
2404
2887
|
createdAt: string;
|
|
2405
|
-
/** @description ApiKey
|
|
2406
|
-
updatedAt
|
|
2888
|
+
/** @description ApiKey updated date */
|
|
2889
|
+
updatedAt?: string;
|
|
2407
2890
|
};
|
|
2408
2891
|
};
|
|
2409
2892
|
};
|
|
@@ -2420,7 +2903,9 @@ export interface operations {
|
|
|
2420
2903
|
};
|
|
2421
2904
|
requestBody: {
|
|
2422
2905
|
content: {
|
|
2423
|
-
"application/json":
|
|
2906
|
+
"application/json": {
|
|
2907
|
+
description?: string;
|
|
2908
|
+
};
|
|
2424
2909
|
};
|
|
2425
2910
|
};
|
|
2426
2911
|
responses: {
|
|
@@ -2430,12 +2915,28 @@ export interface operations {
|
|
|
2430
2915
|
[name: string]: unknown;
|
|
2431
2916
|
};
|
|
2432
2917
|
content: {
|
|
2433
|
-
"application/json":
|
|
2918
|
+
"application/json": {
|
|
2919
|
+
/** @description ApiKey ID */
|
|
2920
|
+
id: string;
|
|
2921
|
+
team: string;
|
|
2922
|
+
apikey: string;
|
|
2923
|
+
user_id: string;
|
|
2924
|
+
description?: string;
|
|
2925
|
+
scopes?: string[];
|
|
2926
|
+
/** @default {} */
|
|
2927
|
+
metadata: {
|
|
2928
|
+
[key: string]: unknown;
|
|
2929
|
+
};
|
|
2930
|
+
/** @description ApiKey creation date */
|
|
2931
|
+
createdAt: string;
|
|
2932
|
+
/** @description ApiKey updated date */
|
|
2933
|
+
updatedAt?: string;
|
|
2934
|
+
};
|
|
2434
2935
|
};
|
|
2435
2936
|
};
|
|
2436
2937
|
};
|
|
2437
2938
|
};
|
|
2438
|
-
"apikey/
|
|
2939
|
+
"apikey/delete": {
|
|
2439
2940
|
parameters: {
|
|
2440
2941
|
query?: never;
|
|
2441
2942
|
header?: never;
|
|
@@ -2452,7 +2953,23 @@ export interface operations {
|
|
|
2452
2953
|
[name: string]: unknown;
|
|
2453
2954
|
};
|
|
2454
2955
|
content: {
|
|
2455
|
-
"application/json":
|
|
2956
|
+
"application/json": {
|
|
2957
|
+
/** @description ApiKey ID */
|
|
2958
|
+
id: string;
|
|
2959
|
+
team: string;
|
|
2960
|
+
apikey: string;
|
|
2961
|
+
user_id: string;
|
|
2962
|
+
description?: string;
|
|
2963
|
+
scopes?: string[];
|
|
2964
|
+
/** @default {} */
|
|
2965
|
+
metadata: {
|
|
2966
|
+
[key: string]: unknown;
|
|
2967
|
+
};
|
|
2968
|
+
/** @description ApiKey creation date */
|
|
2969
|
+
createdAt: string;
|
|
2970
|
+
/** @description ApiKey updated date */
|
|
2971
|
+
updatedAt?: string;
|
|
2972
|
+
};
|
|
2456
2973
|
};
|
|
2457
2974
|
};
|
|
2458
2975
|
};
|
|
@@ -2560,6 +3077,7 @@ export interface operations {
|
|
|
2560
3077
|
query?: {
|
|
2561
3078
|
installation_id?: string;
|
|
2562
3079
|
setup_action?: string;
|
|
3080
|
+
state?: string;
|
|
2563
3081
|
};
|
|
2564
3082
|
header?: never;
|
|
2565
3083
|
path?: never;
|
|
@@ -2602,6 +3120,56 @@ export interface operations {
|
|
|
2602
3120
|
};
|
|
2603
3121
|
};
|
|
2604
3122
|
};
|
|
3123
|
+
"github/installations": {
|
|
3124
|
+
parameters: {
|
|
3125
|
+
query?: never;
|
|
3126
|
+
header?: never;
|
|
3127
|
+
path?: never;
|
|
3128
|
+
cookie?: never;
|
|
3129
|
+
};
|
|
3130
|
+
requestBody?: never;
|
|
3131
|
+
responses: {
|
|
3132
|
+
/** @description Default Response */
|
|
3133
|
+
200: {
|
|
3134
|
+
headers: {
|
|
3135
|
+
[name: string]: unknown;
|
|
3136
|
+
};
|
|
3137
|
+
content: {
|
|
3138
|
+
"application/json": {
|
|
3139
|
+
installations: components["schemas"]["GithubInstallation"][];
|
|
3140
|
+
};
|
|
3141
|
+
};
|
|
3142
|
+
};
|
|
3143
|
+
};
|
|
3144
|
+
};
|
|
3145
|
+
"github/installation_repositories": {
|
|
3146
|
+
parameters: {
|
|
3147
|
+
query?: {
|
|
3148
|
+
/** @description Filter repos by name */
|
|
3149
|
+
q?: string;
|
|
3150
|
+
limit?: number;
|
|
3151
|
+
};
|
|
3152
|
+
header?: never;
|
|
3153
|
+
path: {
|
|
3154
|
+
installation_id: string;
|
|
3155
|
+
};
|
|
3156
|
+
cookie?: never;
|
|
3157
|
+
};
|
|
3158
|
+
requestBody?: never;
|
|
3159
|
+
responses: {
|
|
3160
|
+
/** @description Default Response */
|
|
3161
|
+
200: {
|
|
3162
|
+
headers: {
|
|
3163
|
+
[name: string]: unknown;
|
|
3164
|
+
};
|
|
3165
|
+
content: {
|
|
3166
|
+
"application/json": {
|
|
3167
|
+
repositories: components["schemas"]["GithubRepo"][];
|
|
3168
|
+
};
|
|
3169
|
+
};
|
|
3170
|
+
};
|
|
3171
|
+
};
|
|
3172
|
+
};
|
|
2605
3173
|
"github/webhook": {
|
|
2606
3174
|
parameters: {
|
|
2607
3175
|
query?: never;
|
|
@@ -2636,16 +3204,6 @@ export interface operations {
|
|
|
2636
3204
|
};
|
|
2637
3205
|
content: {
|
|
2638
3206
|
"application/json": {
|
|
2639
|
-
period: {
|
|
2640
|
-
/** Format: date-time */
|
|
2641
|
-
start: string;
|
|
2642
|
-
/** Format: date-time */
|
|
2643
|
-
end: string;
|
|
2644
|
-
};
|
|
2645
|
-
subscription: {
|
|
2646
|
-
plan: string | null;
|
|
2647
|
-
status: string;
|
|
2648
|
-
} | null;
|
|
2649
3207
|
resources: {
|
|
2650
3208
|
apps: number;
|
|
2651
3209
|
domains: number;
|
|
@@ -2654,7 +3212,31 @@ export interface operations {
|
|
|
2654
3212
|
traffic: {
|
|
2655
3213
|
used_gb: number;
|
|
2656
3214
|
cost_estimate_cents: number;
|
|
2657
|
-
}
|
|
3215
|
+
};
|
|
3216
|
+
teams: {
|
|
3217
|
+
id: string;
|
|
3218
|
+
name: string;
|
|
3219
|
+
slug: string;
|
|
3220
|
+
period: {
|
|
3221
|
+
/** Format: date-time */
|
|
3222
|
+
start: string;
|
|
3223
|
+
/** Format: date-time */
|
|
3224
|
+
end: string;
|
|
3225
|
+
};
|
|
3226
|
+
subscription: {
|
|
3227
|
+
plan: string | null;
|
|
3228
|
+
status: string;
|
|
3229
|
+
} | null;
|
|
3230
|
+
resources: {
|
|
3231
|
+
apps: number;
|
|
3232
|
+
domains: number;
|
|
3233
|
+
deployments: number;
|
|
3234
|
+
};
|
|
3235
|
+
traffic: {
|
|
3236
|
+
used_gb: number;
|
|
3237
|
+
cost_estimate_cents: number;
|
|
3238
|
+
} | null;
|
|
3239
|
+
}[];
|
|
2658
3240
|
};
|
|
2659
3241
|
};
|
|
2660
3242
|
};
|