@appwrite.io/console 1.9.0 → 1.10.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/.github/workflows/publish.yml +1 -1
- package/CHANGELOG.md +45 -6
- package/README.md +82 -2
- package/dist/cjs/sdk.js +246 -193
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +246 -193
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +246 -193
- package/docs/examples/databases/create-document.md +1 -3
- package/docs/examples/databases/create-documents.md +1 -1
- package/docs/examples/functions/create-execution.md +1 -1
- package/docs/examples/organizations/get-available-credits.md +13 -0
- package/docs/examples/organizations/update-projects.md +14 -0
- package/docs/examples/vcs/get-repository-contents.md +2 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/models.ts +241 -9
- package/src/services/account.ts +97 -36
- package/src/services/avatars.ts +26 -20
- package/src/services/backups.ts +11 -0
- package/src/services/console.ts +8 -1
- package/src/services/databases.ts +97 -33
- package/src/services/domains.ts +111 -69
- package/src/services/functions.ts +37 -8
- package/src/services/graphql.ts +1 -0
- package/src/services/health.ts +26 -1
- package/src/services/locale.ts +9 -2
- package/src/services/messaging.ts +53 -8
- package/src/services/migrations.ts +12 -0
- package/src/services/organizations.ts +106 -16
- package/src/services/project.ts +5 -0
- package/src/services/projects.ts +50 -0
- package/src/services/proxy.ts +7 -0
- package/src/services/sites.ts +32 -4
- package/src/services/storage.ts +23 -9
- package/src/services/teams.ts +30 -17
- package/src/services/tokens.ts +4 -0
- package/src/services/users.ts +69 -27
- package/src/services/vcs.ts +16 -4
- package/types/models.d.ts +228 -192
- package/types/services/account.d.ts +36 -36
- package/types/services/avatars.d.ts +20 -20
- package/types/services/console.d.ts +1 -1
- package/types/services/databases.d.ts +43 -33
- package/types/services/domains.d.ts +69 -69
- package/types/services/functions.d.ts +8 -8
- package/types/services/health.d.ts +1 -1
- package/types/services/locale.d.ts +2 -2
- package/types/services/messaging.d.ts +8 -8
- package/types/services/organizations.d.ts +33 -16
- package/types/services/sites.d.ts +4 -4
- package/types/services/storage.d.ts +9 -9
- package/types/services/teams.d.ts +17 -17
- package/types/services/users.d.ts +27 -27
- package/types/services/vcs.d.ts +4 -4
package/src/models.ts
CHANGED
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
* Appwrite Models
|
|
3
3
|
*/
|
|
4
4
|
export namespace Models {
|
|
5
|
+
|
|
6
|
+
declare const __default: unique symbol;
|
|
7
|
+
|
|
5
8
|
/**
|
|
6
9
|
* Documents List
|
|
7
10
|
*/
|
|
8
|
-
export type DocumentList<Document extends Models.Document> = {
|
|
11
|
+
export type DocumentList<Document extends Models.Document = Models.DefaultDocument> = {
|
|
9
12
|
/**
|
|
10
13
|
* Total number of documents documents that matched your query.
|
|
11
14
|
*/
|
|
@@ -15,6 +18,7 @@ export namespace Models {
|
|
|
15
18
|
*/
|
|
16
19
|
documents: Document[];
|
|
17
20
|
}
|
|
21
|
+
|
|
18
22
|
/**
|
|
19
23
|
* Collections List
|
|
20
24
|
*/
|
|
@@ -28,6 +32,7 @@ export namespace Models {
|
|
|
28
32
|
*/
|
|
29
33
|
collections: Collection[];
|
|
30
34
|
}
|
|
35
|
+
|
|
31
36
|
/**
|
|
32
37
|
* Databases List
|
|
33
38
|
*/
|
|
@@ -41,6 +46,7 @@ export namespace Models {
|
|
|
41
46
|
*/
|
|
42
47
|
databases: Database[];
|
|
43
48
|
}
|
|
49
|
+
|
|
44
50
|
/**
|
|
45
51
|
* Indexes List
|
|
46
52
|
*/
|
|
@@ -54,10 +60,11 @@ export namespace Models {
|
|
|
54
60
|
*/
|
|
55
61
|
indexes: Index[];
|
|
56
62
|
}
|
|
63
|
+
|
|
57
64
|
/**
|
|
58
65
|
* Users List
|
|
59
66
|
*/
|
|
60
|
-
export type UserList<Preferences extends Models.Preferences> = {
|
|
67
|
+
export type UserList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
61
68
|
/**
|
|
62
69
|
* Total number of users documents that matched your query.
|
|
63
70
|
*/
|
|
@@ -67,6 +74,7 @@ export namespace Models {
|
|
|
67
74
|
*/
|
|
68
75
|
users: User<Preferences>[];
|
|
69
76
|
}
|
|
77
|
+
|
|
70
78
|
/**
|
|
71
79
|
* Sessions List
|
|
72
80
|
*/
|
|
@@ -80,6 +88,7 @@ export namespace Models {
|
|
|
80
88
|
*/
|
|
81
89
|
sessions: Session[];
|
|
82
90
|
}
|
|
91
|
+
|
|
83
92
|
/**
|
|
84
93
|
* Identities List
|
|
85
94
|
*/
|
|
@@ -93,6 +102,7 @@ export namespace Models {
|
|
|
93
102
|
*/
|
|
94
103
|
identities: Identity[];
|
|
95
104
|
}
|
|
105
|
+
|
|
96
106
|
/**
|
|
97
107
|
* Logs List
|
|
98
108
|
*/
|
|
@@ -106,6 +116,7 @@ export namespace Models {
|
|
|
106
116
|
*/
|
|
107
117
|
logs: Log[];
|
|
108
118
|
}
|
|
119
|
+
|
|
109
120
|
/**
|
|
110
121
|
* Files List
|
|
111
122
|
*/
|
|
@@ -119,6 +130,7 @@ export namespace Models {
|
|
|
119
130
|
*/
|
|
120
131
|
files: File[];
|
|
121
132
|
}
|
|
133
|
+
|
|
122
134
|
/**
|
|
123
135
|
* Buckets List
|
|
124
136
|
*/
|
|
@@ -132,6 +144,7 @@ export namespace Models {
|
|
|
132
144
|
*/
|
|
133
145
|
buckets: Bucket[];
|
|
134
146
|
}
|
|
147
|
+
|
|
135
148
|
/**
|
|
136
149
|
* Resource Tokens List
|
|
137
150
|
*/
|
|
@@ -145,10 +158,11 @@ export namespace Models {
|
|
|
145
158
|
*/
|
|
146
159
|
tokens: ResourceToken[];
|
|
147
160
|
}
|
|
161
|
+
|
|
148
162
|
/**
|
|
149
163
|
* Teams List
|
|
150
164
|
*/
|
|
151
|
-
export type TeamList<Preferences extends Models.Preferences> = {
|
|
165
|
+
export type TeamList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
152
166
|
/**
|
|
153
167
|
* Total number of teams documents that matched your query.
|
|
154
168
|
*/
|
|
@@ -158,6 +172,7 @@ export namespace Models {
|
|
|
158
172
|
*/
|
|
159
173
|
teams: Team<Preferences>[];
|
|
160
174
|
}
|
|
175
|
+
|
|
161
176
|
/**
|
|
162
177
|
* Memberships List
|
|
163
178
|
*/
|
|
@@ -171,6 +186,7 @@ export namespace Models {
|
|
|
171
186
|
*/
|
|
172
187
|
memberships: Membership[];
|
|
173
188
|
}
|
|
189
|
+
|
|
174
190
|
/**
|
|
175
191
|
* Sites List
|
|
176
192
|
*/
|
|
@@ -184,6 +200,7 @@ export namespace Models {
|
|
|
184
200
|
*/
|
|
185
201
|
sites: Site[];
|
|
186
202
|
}
|
|
203
|
+
|
|
187
204
|
/**
|
|
188
205
|
* Site Templates List
|
|
189
206
|
*/
|
|
@@ -197,6 +214,7 @@ export namespace Models {
|
|
|
197
214
|
*/
|
|
198
215
|
templates: TemplateSite[];
|
|
199
216
|
}
|
|
217
|
+
|
|
200
218
|
/**
|
|
201
219
|
* Functions List
|
|
202
220
|
*/
|
|
@@ -210,6 +228,7 @@ export namespace Models {
|
|
|
210
228
|
*/
|
|
211
229
|
functions: Function[];
|
|
212
230
|
}
|
|
231
|
+
|
|
213
232
|
/**
|
|
214
233
|
* Function Templates List
|
|
215
234
|
*/
|
|
@@ -223,6 +242,7 @@ export namespace Models {
|
|
|
223
242
|
*/
|
|
224
243
|
templates: TemplateFunction[];
|
|
225
244
|
}
|
|
245
|
+
|
|
226
246
|
/**
|
|
227
247
|
* Installations List
|
|
228
248
|
*/
|
|
@@ -236,6 +256,7 @@ export namespace Models {
|
|
|
236
256
|
*/
|
|
237
257
|
installations: Installation[];
|
|
238
258
|
}
|
|
259
|
+
|
|
239
260
|
/**
|
|
240
261
|
* Framework Provider Repositories List
|
|
241
262
|
*/
|
|
@@ -249,6 +270,7 @@ export namespace Models {
|
|
|
249
270
|
*/
|
|
250
271
|
frameworkProviderRepositories: ProviderRepositoryFramework[];
|
|
251
272
|
}
|
|
273
|
+
|
|
252
274
|
/**
|
|
253
275
|
* Runtime Provider Repositories List
|
|
254
276
|
*/
|
|
@@ -262,6 +284,7 @@ export namespace Models {
|
|
|
262
284
|
*/
|
|
263
285
|
runtimeProviderRepositories: ProviderRepositoryRuntime[];
|
|
264
286
|
}
|
|
287
|
+
|
|
265
288
|
/**
|
|
266
289
|
* Branches List
|
|
267
290
|
*/
|
|
@@ -275,6 +298,7 @@ export namespace Models {
|
|
|
275
298
|
*/
|
|
276
299
|
branches: Branch[];
|
|
277
300
|
}
|
|
301
|
+
|
|
278
302
|
/**
|
|
279
303
|
* Frameworks List
|
|
280
304
|
*/
|
|
@@ -288,6 +312,7 @@ export namespace Models {
|
|
|
288
312
|
*/
|
|
289
313
|
frameworks: Framework[];
|
|
290
314
|
}
|
|
315
|
+
|
|
291
316
|
/**
|
|
292
317
|
* Runtimes List
|
|
293
318
|
*/
|
|
@@ -301,6 +326,7 @@ export namespace Models {
|
|
|
301
326
|
*/
|
|
302
327
|
runtimes: Runtime[];
|
|
303
328
|
}
|
|
329
|
+
|
|
304
330
|
/**
|
|
305
331
|
* Deployments List
|
|
306
332
|
*/
|
|
@@ -314,6 +340,7 @@ export namespace Models {
|
|
|
314
340
|
*/
|
|
315
341
|
deployments: Deployment[];
|
|
316
342
|
}
|
|
343
|
+
|
|
317
344
|
/**
|
|
318
345
|
* Executions List
|
|
319
346
|
*/
|
|
@@ -327,6 +354,7 @@ export namespace Models {
|
|
|
327
354
|
*/
|
|
328
355
|
executions: Execution[];
|
|
329
356
|
}
|
|
357
|
+
|
|
330
358
|
/**
|
|
331
359
|
* Projects List
|
|
332
360
|
*/
|
|
@@ -340,6 +368,7 @@ export namespace Models {
|
|
|
340
368
|
*/
|
|
341
369
|
projects: Project[];
|
|
342
370
|
}
|
|
371
|
+
|
|
343
372
|
/**
|
|
344
373
|
* Webhooks List
|
|
345
374
|
*/
|
|
@@ -353,6 +382,7 @@ export namespace Models {
|
|
|
353
382
|
*/
|
|
354
383
|
webhooks: Webhook[];
|
|
355
384
|
}
|
|
385
|
+
|
|
356
386
|
/**
|
|
357
387
|
* API Keys List
|
|
358
388
|
*/
|
|
@@ -366,6 +396,7 @@ export namespace Models {
|
|
|
366
396
|
*/
|
|
367
397
|
keys: Key[];
|
|
368
398
|
}
|
|
399
|
+
|
|
369
400
|
/**
|
|
370
401
|
* Dev Keys List
|
|
371
402
|
*/
|
|
@@ -379,6 +410,7 @@ export namespace Models {
|
|
|
379
410
|
*/
|
|
380
411
|
devKeys: DevKey[];
|
|
381
412
|
}
|
|
413
|
+
|
|
382
414
|
/**
|
|
383
415
|
* Platforms List
|
|
384
416
|
*/
|
|
@@ -392,6 +424,7 @@ export namespace Models {
|
|
|
392
424
|
*/
|
|
393
425
|
platforms: Platform[];
|
|
394
426
|
}
|
|
427
|
+
|
|
395
428
|
/**
|
|
396
429
|
* Countries List
|
|
397
430
|
*/
|
|
@@ -405,6 +438,7 @@ export namespace Models {
|
|
|
405
438
|
*/
|
|
406
439
|
countries: Country[];
|
|
407
440
|
}
|
|
441
|
+
|
|
408
442
|
/**
|
|
409
443
|
* Continents List
|
|
410
444
|
*/
|
|
@@ -418,6 +452,7 @@ export namespace Models {
|
|
|
418
452
|
*/
|
|
419
453
|
continents: Continent[];
|
|
420
454
|
}
|
|
455
|
+
|
|
421
456
|
/**
|
|
422
457
|
* Languages List
|
|
423
458
|
*/
|
|
@@ -431,6 +466,7 @@ export namespace Models {
|
|
|
431
466
|
*/
|
|
432
467
|
languages: Language[];
|
|
433
468
|
}
|
|
469
|
+
|
|
434
470
|
/**
|
|
435
471
|
* Currencies List
|
|
436
472
|
*/
|
|
@@ -444,6 +480,7 @@ export namespace Models {
|
|
|
444
480
|
*/
|
|
445
481
|
currencies: Currency[];
|
|
446
482
|
}
|
|
483
|
+
|
|
447
484
|
/**
|
|
448
485
|
* Phones List
|
|
449
486
|
*/
|
|
@@ -457,6 +494,7 @@ export namespace Models {
|
|
|
457
494
|
*/
|
|
458
495
|
phones: Phone[];
|
|
459
496
|
}
|
|
497
|
+
|
|
460
498
|
/**
|
|
461
499
|
* Variables List
|
|
462
500
|
*/
|
|
@@ -470,6 +508,7 @@ export namespace Models {
|
|
|
470
508
|
*/
|
|
471
509
|
variables: Variable[];
|
|
472
510
|
}
|
|
511
|
+
|
|
473
512
|
/**
|
|
474
513
|
* Rule List
|
|
475
514
|
*/
|
|
@@ -483,6 +522,7 @@ export namespace Models {
|
|
|
483
522
|
*/
|
|
484
523
|
rules: ProxyRule[];
|
|
485
524
|
}
|
|
525
|
+
|
|
486
526
|
/**
|
|
487
527
|
* Locale codes list
|
|
488
528
|
*/
|
|
@@ -496,6 +536,7 @@ export namespace Models {
|
|
|
496
536
|
*/
|
|
497
537
|
localeCodes: LocaleCode[];
|
|
498
538
|
}
|
|
539
|
+
|
|
499
540
|
/**
|
|
500
541
|
* Provider list
|
|
501
542
|
*/
|
|
@@ -509,6 +550,7 @@ export namespace Models {
|
|
|
509
550
|
*/
|
|
510
551
|
providers: Provider[];
|
|
511
552
|
}
|
|
553
|
+
|
|
512
554
|
/**
|
|
513
555
|
* Message list
|
|
514
556
|
*/
|
|
@@ -522,6 +564,7 @@ export namespace Models {
|
|
|
522
564
|
*/
|
|
523
565
|
messages: Message[];
|
|
524
566
|
}
|
|
567
|
+
|
|
525
568
|
/**
|
|
526
569
|
* Topic list
|
|
527
570
|
*/
|
|
@@ -535,6 +578,7 @@ export namespace Models {
|
|
|
535
578
|
*/
|
|
536
579
|
topics: Topic[];
|
|
537
580
|
}
|
|
581
|
+
|
|
538
582
|
/**
|
|
539
583
|
* Subscriber list
|
|
540
584
|
*/
|
|
@@ -548,6 +592,7 @@ export namespace Models {
|
|
|
548
592
|
*/
|
|
549
593
|
subscribers: Subscriber[];
|
|
550
594
|
}
|
|
595
|
+
|
|
551
596
|
/**
|
|
552
597
|
* Target list
|
|
553
598
|
*/
|
|
@@ -561,6 +606,7 @@ export namespace Models {
|
|
|
561
606
|
*/
|
|
562
607
|
targets: Target[];
|
|
563
608
|
}
|
|
609
|
+
|
|
564
610
|
/**
|
|
565
611
|
* Migrations List
|
|
566
612
|
*/
|
|
@@ -574,6 +620,7 @@ export namespace Models {
|
|
|
574
620
|
*/
|
|
575
621
|
migrations: Migration[];
|
|
576
622
|
}
|
|
623
|
+
|
|
577
624
|
/**
|
|
578
625
|
* Specifications List
|
|
579
626
|
*/
|
|
@@ -587,6 +634,7 @@ export namespace Models {
|
|
|
587
634
|
*/
|
|
588
635
|
specifications: Specification[];
|
|
589
636
|
}
|
|
637
|
+
|
|
590
638
|
/**
|
|
591
639
|
* VCS Content List
|
|
592
640
|
*/
|
|
@@ -600,6 +648,7 @@ export namespace Models {
|
|
|
600
648
|
*/
|
|
601
649
|
contents: VcsContent[];
|
|
602
650
|
}
|
|
651
|
+
|
|
603
652
|
/**
|
|
604
653
|
* Database
|
|
605
654
|
*/
|
|
@@ -633,6 +682,7 @@ export namespace Models {
|
|
|
633
682
|
*/
|
|
634
683
|
archives: Collection[];
|
|
635
684
|
}
|
|
685
|
+
|
|
636
686
|
/**
|
|
637
687
|
* Collection
|
|
638
688
|
*/
|
|
@@ -678,6 +728,7 @@ export namespace Models {
|
|
|
678
728
|
*/
|
|
679
729
|
indexes: Index[];
|
|
680
730
|
}
|
|
731
|
+
|
|
681
732
|
/**
|
|
682
733
|
* Attributes List
|
|
683
734
|
*/
|
|
@@ -691,6 +742,7 @@ export namespace Models {
|
|
|
691
742
|
*/
|
|
692
743
|
attributes: (Models.AttributeBoolean | Models.AttributeInteger | Models.AttributeFloat | Models.AttributeEmail | Models.AttributeEnum | Models.AttributeUrl | Models.AttributeIp | Models.AttributeDatetime | Models.AttributeRelationship | Models.AttributeString)[];
|
|
693
744
|
}
|
|
745
|
+
|
|
694
746
|
/**
|
|
695
747
|
* AttributeString
|
|
696
748
|
*/
|
|
@@ -740,6 +792,7 @@ export namespace Models {
|
|
|
740
792
|
*/
|
|
741
793
|
encrypt?: boolean;
|
|
742
794
|
}
|
|
795
|
+
|
|
743
796
|
/**
|
|
744
797
|
* AttributeInteger
|
|
745
798
|
*/
|
|
@@ -789,6 +842,7 @@ export namespace Models {
|
|
|
789
842
|
*/
|
|
790
843
|
default?: number;
|
|
791
844
|
}
|
|
845
|
+
|
|
792
846
|
/**
|
|
793
847
|
* AttributeFloat
|
|
794
848
|
*/
|
|
@@ -838,6 +892,7 @@ export namespace Models {
|
|
|
838
892
|
*/
|
|
839
893
|
default?: number;
|
|
840
894
|
}
|
|
895
|
+
|
|
841
896
|
/**
|
|
842
897
|
* AttributeBoolean
|
|
843
898
|
*/
|
|
@@ -879,6 +934,7 @@ export namespace Models {
|
|
|
879
934
|
*/
|
|
880
935
|
default?: boolean;
|
|
881
936
|
}
|
|
937
|
+
|
|
882
938
|
/**
|
|
883
939
|
* AttributeEmail
|
|
884
940
|
*/
|
|
@@ -924,6 +980,7 @@ export namespace Models {
|
|
|
924
980
|
*/
|
|
925
981
|
default?: string;
|
|
926
982
|
}
|
|
983
|
+
|
|
927
984
|
/**
|
|
928
985
|
* AttributeEnum
|
|
929
986
|
*/
|
|
@@ -973,6 +1030,7 @@ export namespace Models {
|
|
|
973
1030
|
*/
|
|
974
1031
|
default?: string;
|
|
975
1032
|
}
|
|
1033
|
+
|
|
976
1034
|
/**
|
|
977
1035
|
* AttributeIP
|
|
978
1036
|
*/
|
|
@@ -1018,6 +1076,7 @@ export namespace Models {
|
|
|
1018
1076
|
*/
|
|
1019
1077
|
default?: string;
|
|
1020
1078
|
}
|
|
1079
|
+
|
|
1021
1080
|
/**
|
|
1022
1081
|
* AttributeURL
|
|
1023
1082
|
*/
|
|
@@ -1063,6 +1122,7 @@ export namespace Models {
|
|
|
1063
1122
|
*/
|
|
1064
1123
|
default?: string;
|
|
1065
1124
|
}
|
|
1125
|
+
|
|
1066
1126
|
/**
|
|
1067
1127
|
* AttributeDatetime
|
|
1068
1128
|
*/
|
|
@@ -1108,6 +1168,7 @@ export namespace Models {
|
|
|
1108
1168
|
*/
|
|
1109
1169
|
default?: string;
|
|
1110
1170
|
}
|
|
1171
|
+
|
|
1111
1172
|
/**
|
|
1112
1173
|
* AttributeRelationship
|
|
1113
1174
|
*/
|
|
@@ -1169,6 +1230,7 @@ export namespace Models {
|
|
|
1169
1230
|
*/
|
|
1170
1231
|
side: string;
|
|
1171
1232
|
}
|
|
1233
|
+
|
|
1172
1234
|
/**
|
|
1173
1235
|
* Index
|
|
1174
1236
|
*/
|
|
@@ -1210,6 +1272,7 @@ export namespace Models {
|
|
|
1210
1272
|
*/
|
|
1211
1273
|
$updatedAt: string;
|
|
1212
1274
|
}
|
|
1275
|
+
|
|
1213
1276
|
/**
|
|
1214
1277
|
* Document
|
|
1215
1278
|
*/
|
|
@@ -1242,8 +1305,13 @@ export namespace Models {
|
|
|
1242
1305
|
* Document permissions. [Learn more about permissions](https://appwrite.io/docs/permissions).
|
|
1243
1306
|
*/
|
|
1244
1307
|
$permissions: string[];
|
|
1245
|
-
[key: string]: any;
|
|
1246
1308
|
}
|
|
1309
|
+
|
|
1310
|
+
export type DefaultDocument = Document & {
|
|
1311
|
+
[key: string]: any;
|
|
1312
|
+
[__default]: true;
|
|
1313
|
+
};
|
|
1314
|
+
|
|
1247
1315
|
/**
|
|
1248
1316
|
* Log
|
|
1249
1317
|
*/
|
|
@@ -1333,10 +1401,11 @@ export namespace Models {
|
|
|
1333
1401
|
*/
|
|
1334
1402
|
countryName: string;
|
|
1335
1403
|
}
|
|
1404
|
+
|
|
1336
1405
|
/**
|
|
1337
1406
|
* User
|
|
1338
1407
|
*/
|
|
1339
|
-
export type User<Preferences extends Models.Preferences> = {
|
|
1408
|
+
export type User<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
1340
1409
|
/**
|
|
1341
1410
|
* User ID.
|
|
1342
1411
|
*/
|
|
@@ -1414,6 +1483,7 @@ export namespace Models {
|
|
|
1414
1483
|
*/
|
|
1415
1484
|
accessedAt: string;
|
|
1416
1485
|
}
|
|
1486
|
+
|
|
1417
1487
|
/**
|
|
1418
1488
|
* AlgoMD5
|
|
1419
1489
|
*/
|
|
@@ -1423,6 +1493,7 @@ export namespace Models {
|
|
|
1423
1493
|
*/
|
|
1424
1494
|
type: string;
|
|
1425
1495
|
}
|
|
1496
|
+
|
|
1426
1497
|
/**
|
|
1427
1498
|
* AlgoSHA
|
|
1428
1499
|
*/
|
|
@@ -1432,6 +1503,7 @@ export namespace Models {
|
|
|
1432
1503
|
*/
|
|
1433
1504
|
type: string;
|
|
1434
1505
|
}
|
|
1506
|
+
|
|
1435
1507
|
/**
|
|
1436
1508
|
* AlgoPHPass
|
|
1437
1509
|
*/
|
|
@@ -1441,6 +1513,7 @@ export namespace Models {
|
|
|
1441
1513
|
*/
|
|
1442
1514
|
type: string;
|
|
1443
1515
|
}
|
|
1516
|
+
|
|
1444
1517
|
/**
|
|
1445
1518
|
* AlgoBcrypt
|
|
1446
1519
|
*/
|
|
@@ -1450,6 +1523,7 @@ export namespace Models {
|
|
|
1450
1523
|
*/
|
|
1451
1524
|
type: string;
|
|
1452
1525
|
}
|
|
1526
|
+
|
|
1453
1527
|
/**
|
|
1454
1528
|
* AlgoScrypt
|
|
1455
1529
|
*/
|
|
@@ -1475,6 +1549,7 @@ export namespace Models {
|
|
|
1475
1549
|
*/
|
|
1476
1550
|
length: number;
|
|
1477
1551
|
}
|
|
1552
|
+
|
|
1478
1553
|
/**
|
|
1479
1554
|
* AlgoScryptModified
|
|
1480
1555
|
*/
|
|
@@ -1496,6 +1571,7 @@ export namespace Models {
|
|
|
1496
1571
|
*/
|
|
1497
1572
|
signerKey: string;
|
|
1498
1573
|
}
|
|
1574
|
+
|
|
1499
1575
|
/**
|
|
1500
1576
|
* AlgoArgon2
|
|
1501
1577
|
*/
|
|
@@ -1517,12 +1593,18 @@ export namespace Models {
|
|
|
1517
1593
|
*/
|
|
1518
1594
|
threads: number;
|
|
1519
1595
|
}
|
|
1596
|
+
|
|
1520
1597
|
/**
|
|
1521
1598
|
* Preferences
|
|
1522
1599
|
*/
|
|
1523
1600
|
export type Preferences = {
|
|
1524
|
-
[key: string]: any;
|
|
1525
1601
|
}
|
|
1602
|
+
|
|
1603
|
+
export type DefaultPreferences = Preferences & {
|
|
1604
|
+
[key: string]: any;
|
|
1605
|
+
[__default]: true;
|
|
1606
|
+
};
|
|
1607
|
+
|
|
1526
1608
|
/**
|
|
1527
1609
|
* Session
|
|
1528
1610
|
*/
|
|
@@ -1644,6 +1726,7 @@ export namespace Models {
|
|
|
1644
1726
|
*/
|
|
1645
1727
|
mfaUpdatedAt: string;
|
|
1646
1728
|
}
|
|
1729
|
+
|
|
1647
1730
|
/**
|
|
1648
1731
|
* Identity
|
|
1649
1732
|
*/
|
|
@@ -1689,6 +1772,7 @@ export namespace Models {
|
|
|
1689
1772
|
*/
|
|
1690
1773
|
providerRefreshToken: string;
|
|
1691
1774
|
}
|
|
1775
|
+
|
|
1692
1776
|
/**
|
|
1693
1777
|
* Token
|
|
1694
1778
|
*/
|
|
@@ -1718,6 +1802,7 @@ export namespace Models {
|
|
|
1718
1802
|
*/
|
|
1719
1803
|
phrase: string;
|
|
1720
1804
|
}
|
|
1805
|
+
|
|
1721
1806
|
/**
|
|
1722
1807
|
* JWT
|
|
1723
1808
|
*/
|
|
@@ -1727,6 +1812,7 @@ export namespace Models {
|
|
|
1727
1812
|
*/
|
|
1728
1813
|
jwt: string;
|
|
1729
1814
|
}
|
|
1815
|
+
|
|
1730
1816
|
/**
|
|
1731
1817
|
* Locale
|
|
1732
1818
|
*/
|
|
@@ -1760,6 +1846,7 @@ export namespace Models {
|
|
|
1760
1846
|
*/
|
|
1761
1847
|
currency: string;
|
|
1762
1848
|
}
|
|
1849
|
+
|
|
1763
1850
|
/**
|
|
1764
1851
|
* LocaleCode
|
|
1765
1852
|
*/
|
|
@@ -1773,6 +1860,7 @@ export namespace Models {
|
|
|
1773
1860
|
*/
|
|
1774
1861
|
name: string;
|
|
1775
1862
|
}
|
|
1863
|
+
|
|
1776
1864
|
/**
|
|
1777
1865
|
* File
|
|
1778
1866
|
*/
|
|
@@ -1822,6 +1910,7 @@ export namespace Models {
|
|
|
1822
1910
|
*/
|
|
1823
1911
|
chunksUploaded: number;
|
|
1824
1912
|
}
|
|
1913
|
+
|
|
1825
1914
|
/**
|
|
1826
1915
|
* Bucket
|
|
1827
1916
|
*/
|
|
@@ -1875,6 +1964,7 @@ export namespace Models {
|
|
|
1875
1964
|
*/
|
|
1876
1965
|
antivirus: boolean;
|
|
1877
1966
|
}
|
|
1967
|
+
|
|
1878
1968
|
/**
|
|
1879
1969
|
* ResourceToken
|
|
1880
1970
|
*/
|
|
@@ -1908,10 +1998,11 @@ export namespace Models {
|
|
|
1908
1998
|
*/
|
|
1909
1999
|
accessedAt: string;
|
|
1910
2000
|
}
|
|
2001
|
+
|
|
1911
2002
|
/**
|
|
1912
2003
|
* Team
|
|
1913
2004
|
*/
|
|
1914
|
-
export type Team<Preferences extends Models.Preferences> = {
|
|
2005
|
+
export type Team<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
1915
2006
|
/**
|
|
1916
2007
|
* Team ID.
|
|
1917
2008
|
*/
|
|
@@ -1937,6 +2028,7 @@ export namespace Models {
|
|
|
1937
2028
|
*/
|
|
1938
2029
|
prefs: Preferences;
|
|
1939
2030
|
}
|
|
2031
|
+
|
|
1940
2032
|
/**
|
|
1941
2033
|
* Membership
|
|
1942
2034
|
*/
|
|
@@ -1994,6 +2086,7 @@ export namespace Models {
|
|
|
1994
2086
|
*/
|
|
1995
2087
|
roles: string[];
|
|
1996
2088
|
}
|
|
2089
|
+
|
|
1997
2090
|
/**
|
|
1998
2091
|
* Site
|
|
1999
2092
|
*/
|
|
@@ -2115,6 +2208,7 @@ export namespace Models {
|
|
|
2115
2208
|
*/
|
|
2116
2209
|
fallbackFile: string;
|
|
2117
2210
|
}
|
|
2211
|
+
|
|
2118
2212
|
/**
|
|
2119
2213
|
* Template Site
|
|
2120
2214
|
*/
|
|
@@ -2172,6 +2266,7 @@ export namespace Models {
|
|
|
2172
2266
|
*/
|
|
2173
2267
|
variables: TemplateVariable[];
|
|
2174
2268
|
}
|
|
2269
|
+
|
|
2175
2270
|
/**
|
|
2176
2271
|
* Template Framework
|
|
2177
2272
|
*/
|
|
@@ -2213,6 +2308,7 @@ export namespace Models {
|
|
|
2213
2308
|
*/
|
|
2214
2309
|
fallbackFile: string;
|
|
2215
2310
|
}
|
|
2311
|
+
|
|
2216
2312
|
/**
|
|
2217
2313
|
* Function
|
|
2218
2314
|
*/
|
|
@@ -2330,6 +2426,7 @@ export namespace Models {
|
|
|
2330
2426
|
*/
|
|
2331
2427
|
specification: string;
|
|
2332
2428
|
}
|
|
2429
|
+
|
|
2333
2430
|
/**
|
|
2334
2431
|
* Template Function
|
|
2335
2432
|
*/
|
|
@@ -2403,6 +2500,7 @@ export namespace Models {
|
|
|
2403
2500
|
*/
|
|
2404
2501
|
scopes: string[];
|
|
2405
2502
|
}
|
|
2503
|
+
|
|
2406
2504
|
/**
|
|
2407
2505
|
* Template Runtime
|
|
2408
2506
|
*/
|
|
@@ -2424,6 +2522,7 @@ export namespace Models {
|
|
|
2424
2522
|
*/
|
|
2425
2523
|
providerRootDirectory: string;
|
|
2426
2524
|
}
|
|
2525
|
+
|
|
2427
2526
|
/**
|
|
2428
2527
|
* Template Variable
|
|
2429
2528
|
*/
|
|
@@ -2457,6 +2556,7 @@ export namespace Models {
|
|
|
2457
2556
|
*/
|
|
2458
2557
|
type: string;
|
|
2459
2558
|
}
|
|
2559
|
+
|
|
2460
2560
|
/**
|
|
2461
2561
|
* Installation
|
|
2462
2562
|
*/
|
|
@@ -2486,6 +2586,7 @@ export namespace Models {
|
|
|
2486
2586
|
*/
|
|
2487
2587
|
providerInstallationId: string;
|
|
2488
2588
|
}
|
|
2589
|
+
|
|
2489
2590
|
/**
|
|
2490
2591
|
* ProviderRepository
|
|
2491
2592
|
*/
|
|
@@ -2510,11 +2611,16 @@ export namespace Models {
|
|
|
2510
2611
|
* Is VCS (Version Control System) repository private?
|
|
2511
2612
|
*/
|
|
2512
2613
|
private: boolean;
|
|
2614
|
+
/**
|
|
2615
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2616
|
+
*/
|
|
2617
|
+
defaultBranch: string;
|
|
2513
2618
|
/**
|
|
2514
2619
|
* Last commit date in ISO 8601 format.
|
|
2515
2620
|
*/
|
|
2516
2621
|
pushedAt: string;
|
|
2517
2622
|
}
|
|
2623
|
+
|
|
2518
2624
|
/**
|
|
2519
2625
|
* ProviderRepositoryFramework
|
|
2520
2626
|
*/
|
|
@@ -2539,6 +2645,10 @@ export namespace Models {
|
|
|
2539
2645
|
* Is VCS (Version Control System) repository private?
|
|
2540
2646
|
*/
|
|
2541
2647
|
private: boolean;
|
|
2648
|
+
/**
|
|
2649
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2650
|
+
*/
|
|
2651
|
+
defaultBranch: string;
|
|
2542
2652
|
/**
|
|
2543
2653
|
* Last commit date in ISO 8601 format.
|
|
2544
2654
|
*/
|
|
@@ -2548,6 +2658,7 @@ export namespace Models {
|
|
|
2548
2658
|
*/
|
|
2549
2659
|
framework: string;
|
|
2550
2660
|
}
|
|
2661
|
+
|
|
2551
2662
|
/**
|
|
2552
2663
|
* ProviderRepositoryRuntime
|
|
2553
2664
|
*/
|
|
@@ -2572,6 +2683,10 @@ export namespace Models {
|
|
|
2572
2683
|
* Is VCS (Version Control System) repository private?
|
|
2573
2684
|
*/
|
|
2574
2685
|
private: boolean;
|
|
2686
|
+
/**
|
|
2687
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2688
|
+
*/
|
|
2689
|
+
defaultBranch: string;
|
|
2575
2690
|
/**
|
|
2576
2691
|
* Last commit date in ISO 8601 format.
|
|
2577
2692
|
*/
|
|
@@ -2581,6 +2696,7 @@ export namespace Models {
|
|
|
2581
2696
|
*/
|
|
2582
2697
|
runtime: string;
|
|
2583
2698
|
}
|
|
2699
|
+
|
|
2584
2700
|
/**
|
|
2585
2701
|
* DetectionFramework
|
|
2586
2702
|
*/
|
|
@@ -2602,6 +2718,7 @@ export namespace Models {
|
|
|
2602
2718
|
*/
|
|
2603
2719
|
outputDirectory: string;
|
|
2604
2720
|
}
|
|
2721
|
+
|
|
2605
2722
|
/**
|
|
2606
2723
|
* DetectionRuntime
|
|
2607
2724
|
*/
|
|
@@ -2619,6 +2736,7 @@ export namespace Models {
|
|
|
2619
2736
|
*/
|
|
2620
2737
|
commands: string;
|
|
2621
2738
|
}
|
|
2739
|
+
|
|
2622
2740
|
/**
|
|
2623
2741
|
* VcsContents
|
|
2624
2742
|
*/
|
|
@@ -2636,6 +2754,7 @@ export namespace Models {
|
|
|
2636
2754
|
*/
|
|
2637
2755
|
name: string;
|
|
2638
2756
|
}
|
|
2757
|
+
|
|
2639
2758
|
/**
|
|
2640
2759
|
* Branch
|
|
2641
2760
|
*/
|
|
@@ -2645,6 +2764,7 @@ export namespace Models {
|
|
|
2645
2764
|
*/
|
|
2646
2765
|
name: string;
|
|
2647
2766
|
}
|
|
2767
|
+
|
|
2648
2768
|
/**
|
|
2649
2769
|
* Runtime
|
|
2650
2770
|
*/
|
|
@@ -2682,6 +2802,7 @@ export namespace Models {
|
|
|
2682
2802
|
*/
|
|
2683
2803
|
supports: string[];
|
|
2684
2804
|
}
|
|
2805
|
+
|
|
2685
2806
|
/**
|
|
2686
2807
|
* Framework
|
|
2687
2808
|
*/
|
|
@@ -2707,6 +2828,7 @@ export namespace Models {
|
|
|
2707
2828
|
*/
|
|
2708
2829
|
adapters: FrameworkAdapter[];
|
|
2709
2830
|
}
|
|
2831
|
+
|
|
2710
2832
|
/**
|
|
2711
2833
|
* Framework Adapter
|
|
2712
2834
|
*/
|
|
@@ -2732,6 +2854,7 @@ export namespace Models {
|
|
|
2732
2854
|
*/
|
|
2733
2855
|
fallbackFile: string;
|
|
2734
2856
|
}
|
|
2857
|
+
|
|
2735
2858
|
/**
|
|
2736
2859
|
* Deployment
|
|
2737
2860
|
*/
|
|
@@ -2845,6 +2968,7 @@ export namespace Models {
|
|
|
2845
2968
|
*/
|
|
2846
2969
|
providerBranchUrl: string;
|
|
2847
2970
|
}
|
|
2971
|
+
|
|
2848
2972
|
/**
|
|
2849
2973
|
* Execution
|
|
2850
2974
|
*/
|
|
@@ -2918,6 +3042,7 @@ export namespace Models {
|
|
|
2918
3042
|
*/
|
|
2919
3043
|
scheduledAt?: string;
|
|
2920
3044
|
}
|
|
3045
|
+
|
|
2921
3046
|
/**
|
|
2922
3047
|
* Project
|
|
2923
3048
|
*/
|
|
@@ -3167,6 +3292,7 @@ export namespace Models {
|
|
|
3167
3292
|
*/
|
|
3168
3293
|
region: string;
|
|
3169
3294
|
}
|
|
3295
|
+
|
|
3170
3296
|
/**
|
|
3171
3297
|
* Webhook
|
|
3172
3298
|
*/
|
|
@@ -3224,6 +3350,7 @@ export namespace Models {
|
|
|
3224
3350
|
*/
|
|
3225
3351
|
attempts: number;
|
|
3226
3352
|
}
|
|
3353
|
+
|
|
3227
3354
|
/**
|
|
3228
3355
|
* Key
|
|
3229
3356
|
*/
|
|
@@ -3265,6 +3392,7 @@ export namespace Models {
|
|
|
3265
3392
|
*/
|
|
3266
3393
|
sdks: string[];
|
|
3267
3394
|
}
|
|
3395
|
+
|
|
3268
3396
|
/**
|
|
3269
3397
|
* DevKey
|
|
3270
3398
|
*/
|
|
@@ -3302,6 +3430,7 @@ export namespace Models {
|
|
|
3302
3430
|
*/
|
|
3303
3431
|
sdks: string[];
|
|
3304
3432
|
}
|
|
3433
|
+
|
|
3305
3434
|
/**
|
|
3306
3435
|
* Mock Number
|
|
3307
3436
|
*/
|
|
@@ -3315,6 +3444,7 @@ export namespace Models {
|
|
|
3315
3444
|
*/
|
|
3316
3445
|
otp: string;
|
|
3317
3446
|
}
|
|
3447
|
+
|
|
3318
3448
|
/**
|
|
3319
3449
|
* AuthProvider
|
|
3320
3450
|
*/
|
|
@@ -3340,6 +3470,7 @@ export namespace Models {
|
|
|
3340
3470
|
*/
|
|
3341
3471
|
enabled: boolean;
|
|
3342
3472
|
}
|
|
3473
|
+
|
|
3343
3474
|
/**
|
|
3344
3475
|
* Platform
|
|
3345
3476
|
*/
|
|
@@ -3385,6 +3516,7 @@ export namespace Models {
|
|
|
3385
3516
|
*/
|
|
3386
3517
|
httpPass: string;
|
|
3387
3518
|
}
|
|
3519
|
+
|
|
3388
3520
|
/**
|
|
3389
3521
|
* Variable
|
|
3390
3522
|
*/
|
|
@@ -3422,6 +3554,7 @@ export namespace Models {
|
|
|
3422
3554
|
*/
|
|
3423
3555
|
resourceId: string;
|
|
3424
3556
|
}
|
|
3557
|
+
|
|
3425
3558
|
/**
|
|
3426
3559
|
* Country
|
|
3427
3560
|
*/
|
|
@@ -3435,6 +3568,7 @@ export namespace Models {
|
|
|
3435
3568
|
*/
|
|
3436
3569
|
code: string;
|
|
3437
3570
|
}
|
|
3571
|
+
|
|
3438
3572
|
/**
|
|
3439
3573
|
* Continent
|
|
3440
3574
|
*/
|
|
@@ -3448,6 +3582,7 @@ export namespace Models {
|
|
|
3448
3582
|
*/
|
|
3449
3583
|
code: string;
|
|
3450
3584
|
}
|
|
3585
|
+
|
|
3451
3586
|
/**
|
|
3452
3587
|
* Language
|
|
3453
3588
|
*/
|
|
@@ -3465,6 +3600,7 @@ export namespace Models {
|
|
|
3465
3600
|
*/
|
|
3466
3601
|
nativeName: string;
|
|
3467
3602
|
}
|
|
3603
|
+
|
|
3468
3604
|
/**
|
|
3469
3605
|
* Currency
|
|
3470
3606
|
*/
|
|
@@ -3498,6 +3634,7 @@ export namespace Models {
|
|
|
3498
3634
|
*/
|
|
3499
3635
|
namePlural: string;
|
|
3500
3636
|
}
|
|
3637
|
+
|
|
3501
3638
|
/**
|
|
3502
3639
|
* Phone
|
|
3503
3640
|
*/
|
|
@@ -3515,6 +3652,7 @@ export namespace Models {
|
|
|
3515
3652
|
*/
|
|
3516
3653
|
countryName: string;
|
|
3517
3654
|
}
|
|
3655
|
+
|
|
3518
3656
|
/**
|
|
3519
3657
|
* Health Antivirus
|
|
3520
3658
|
*/
|
|
@@ -3528,6 +3666,7 @@ export namespace Models {
|
|
|
3528
3666
|
*/
|
|
3529
3667
|
status: string;
|
|
3530
3668
|
}
|
|
3669
|
+
|
|
3531
3670
|
/**
|
|
3532
3671
|
* Health Queue
|
|
3533
3672
|
*/
|
|
@@ -3537,6 +3676,7 @@ export namespace Models {
|
|
|
3537
3676
|
*/
|
|
3538
3677
|
size: number;
|
|
3539
3678
|
}
|
|
3679
|
+
|
|
3540
3680
|
/**
|
|
3541
3681
|
* Health Status
|
|
3542
3682
|
*/
|
|
@@ -3554,6 +3694,7 @@ export namespace Models {
|
|
|
3554
3694
|
*/
|
|
3555
3695
|
status: string;
|
|
3556
3696
|
}
|
|
3697
|
+
|
|
3557
3698
|
/**
|
|
3558
3699
|
* Health Certificate
|
|
3559
3700
|
*/
|
|
@@ -3583,6 +3724,7 @@ export namespace Models {
|
|
|
3583
3724
|
*/
|
|
3584
3725
|
signatureTypeSN: string;
|
|
3585
3726
|
}
|
|
3727
|
+
|
|
3586
3728
|
/**
|
|
3587
3729
|
* Health Time
|
|
3588
3730
|
*/
|
|
@@ -3600,6 +3742,7 @@ export namespace Models {
|
|
|
3600
3742
|
*/
|
|
3601
3743
|
diff: number;
|
|
3602
3744
|
}
|
|
3745
|
+
|
|
3603
3746
|
/**
|
|
3604
3747
|
* Metric
|
|
3605
3748
|
*/
|
|
@@ -3613,6 +3756,7 @@ export namespace Models {
|
|
|
3613
3756
|
*/
|
|
3614
3757
|
date: string;
|
|
3615
3758
|
}
|
|
3759
|
+
|
|
3616
3760
|
/**
|
|
3617
3761
|
* Metric Breakdown
|
|
3618
3762
|
*/
|
|
@@ -3634,6 +3778,7 @@ export namespace Models {
|
|
|
3634
3778
|
*/
|
|
3635
3779
|
estimate?: number;
|
|
3636
3780
|
}
|
|
3781
|
+
|
|
3637
3782
|
/**
|
|
3638
3783
|
* UsageDatabases
|
|
3639
3784
|
*/
|
|
@@ -3691,6 +3836,7 @@ export namespace Models {
|
|
|
3691
3836
|
*/
|
|
3692
3837
|
databasesWrites: Metric[];
|
|
3693
3838
|
}
|
|
3839
|
+
|
|
3694
3840
|
/**
|
|
3695
3841
|
* UsageDatabase
|
|
3696
3842
|
*/
|
|
@@ -3740,6 +3886,7 @@ export namespace Models {
|
|
|
3740
3886
|
*/
|
|
3741
3887
|
databaseWrites: Metric[];
|
|
3742
3888
|
}
|
|
3889
|
+
|
|
3743
3890
|
/**
|
|
3744
3891
|
* UsageCollection
|
|
3745
3892
|
*/
|
|
@@ -3757,6 +3904,7 @@ export namespace Models {
|
|
|
3757
3904
|
*/
|
|
3758
3905
|
documents: Metric[];
|
|
3759
3906
|
}
|
|
3907
|
+
|
|
3760
3908
|
/**
|
|
3761
3909
|
* UsageUsers
|
|
3762
3910
|
*/
|
|
@@ -3782,6 +3930,7 @@ export namespace Models {
|
|
|
3782
3930
|
*/
|
|
3783
3931
|
sessions: Metric[];
|
|
3784
3932
|
}
|
|
3933
|
+
|
|
3785
3934
|
/**
|
|
3786
3935
|
* StorageUsage
|
|
3787
3936
|
*/
|
|
@@ -3815,6 +3964,7 @@ export namespace Models {
|
|
|
3815
3964
|
*/
|
|
3816
3965
|
storage: Metric[];
|
|
3817
3966
|
}
|
|
3967
|
+
|
|
3818
3968
|
/**
|
|
3819
3969
|
* UsageBuckets
|
|
3820
3970
|
*/
|
|
@@ -3848,6 +3998,7 @@ export namespace Models {
|
|
|
3848
3998
|
*/
|
|
3849
3999
|
imageTransformationsTotal: number;
|
|
3850
4000
|
}
|
|
4001
|
+
|
|
3851
4002
|
/**
|
|
3852
4003
|
* UsageFunctions
|
|
3853
4004
|
*/
|
|
@@ -3953,6 +4104,7 @@ export namespace Models {
|
|
|
3953
4104
|
*/
|
|
3954
4105
|
buildsFailed: Metric[];
|
|
3955
4106
|
}
|
|
4107
|
+
|
|
3956
4108
|
/**
|
|
3957
4109
|
* UsageFunction
|
|
3958
4110
|
*/
|
|
@@ -4054,6 +4206,7 @@ export namespace Models {
|
|
|
4054
4206
|
*/
|
|
4055
4207
|
buildsFailed: Metric[];
|
|
4056
4208
|
}
|
|
4209
|
+
|
|
4057
4210
|
/**
|
|
4058
4211
|
* UsageSites
|
|
4059
4212
|
*/
|
|
@@ -4183,6 +4336,7 @@ export namespace Models {
|
|
|
4183
4336
|
*/
|
|
4184
4337
|
outbound: Metric[];
|
|
4185
4338
|
}
|
|
4339
|
+
|
|
4186
4340
|
/**
|
|
4187
4341
|
* UsageSite
|
|
4188
4342
|
*/
|
|
@@ -4308,6 +4462,7 @@ export namespace Models {
|
|
|
4308
4462
|
*/
|
|
4309
4463
|
outbound: Metric[];
|
|
4310
4464
|
}
|
|
4465
|
+
|
|
4311
4466
|
/**
|
|
4312
4467
|
* UsageProject
|
|
4313
4468
|
*/
|
|
@@ -4445,6 +4600,7 @@ export namespace Models {
|
|
|
4445
4600
|
*/
|
|
4446
4601
|
backupsStorageTotal: number;
|
|
4447
4602
|
}
|
|
4603
|
+
|
|
4448
4604
|
/**
|
|
4449
4605
|
* Headers
|
|
4450
4606
|
*/
|
|
@@ -4458,6 +4614,7 @@ export namespace Models {
|
|
|
4458
4614
|
*/
|
|
4459
4615
|
value: string;
|
|
4460
4616
|
}
|
|
4617
|
+
|
|
4461
4618
|
/**
|
|
4462
4619
|
* Specification
|
|
4463
4620
|
*/
|
|
@@ -4479,6 +4636,7 @@ export namespace Models {
|
|
|
4479
4636
|
*/
|
|
4480
4637
|
slug: string;
|
|
4481
4638
|
}
|
|
4639
|
+
|
|
4482
4640
|
/**
|
|
4483
4641
|
* Rule
|
|
4484
4642
|
*/
|
|
@@ -4544,6 +4702,7 @@ export namespace Models {
|
|
|
4544
4702
|
*/
|
|
4545
4703
|
renewAt: string;
|
|
4546
4704
|
}
|
|
4705
|
+
|
|
4547
4706
|
/**
|
|
4548
4707
|
* SmsTemplate
|
|
4549
4708
|
*/
|
|
@@ -4561,6 +4720,7 @@ export namespace Models {
|
|
|
4561
4720
|
*/
|
|
4562
4721
|
message: string;
|
|
4563
4722
|
}
|
|
4723
|
+
|
|
4564
4724
|
/**
|
|
4565
4725
|
* EmailTemplate
|
|
4566
4726
|
*/
|
|
@@ -4594,6 +4754,7 @@ export namespace Models {
|
|
|
4594
4754
|
*/
|
|
4595
4755
|
subject: string;
|
|
4596
4756
|
}
|
|
4757
|
+
|
|
4597
4758
|
/**
|
|
4598
4759
|
* Console Variables
|
|
4599
4760
|
*/
|
|
@@ -4651,6 +4812,7 @@ export namespace Models {
|
|
|
4651
4812
|
*/
|
|
4652
4813
|
_APP_DOMAINS_NAMESERVERS: string;
|
|
4653
4814
|
}
|
|
4815
|
+
|
|
4654
4816
|
/**
|
|
4655
4817
|
* MFA Challenge
|
|
4656
4818
|
*/
|
|
@@ -4672,6 +4834,7 @@ export namespace Models {
|
|
|
4672
4834
|
*/
|
|
4673
4835
|
expire: string;
|
|
4674
4836
|
}
|
|
4837
|
+
|
|
4675
4838
|
/**
|
|
4676
4839
|
* MFA Recovery Codes
|
|
4677
4840
|
*/
|
|
@@ -4681,6 +4844,7 @@ export namespace Models {
|
|
|
4681
4844
|
*/
|
|
4682
4845
|
recoveryCodes: string[];
|
|
4683
4846
|
}
|
|
4847
|
+
|
|
4684
4848
|
/**
|
|
4685
4849
|
* MFAType
|
|
4686
4850
|
*/
|
|
@@ -4694,6 +4858,7 @@ export namespace Models {
|
|
|
4694
4858
|
*/
|
|
4695
4859
|
uri: string;
|
|
4696
4860
|
}
|
|
4861
|
+
|
|
4697
4862
|
/**
|
|
4698
4863
|
* MFAFactors
|
|
4699
4864
|
*/
|
|
@@ -4715,6 +4880,7 @@ export namespace Models {
|
|
|
4715
4880
|
*/
|
|
4716
4881
|
recoveryCode: boolean;
|
|
4717
4882
|
}
|
|
4883
|
+
|
|
4718
4884
|
/**
|
|
4719
4885
|
* Provider
|
|
4720
4886
|
*/
|
|
@@ -4756,6 +4922,7 @@ export namespace Models {
|
|
|
4756
4922
|
*/
|
|
4757
4923
|
options?: object;
|
|
4758
4924
|
}
|
|
4925
|
+
|
|
4759
4926
|
/**
|
|
4760
4927
|
* Message
|
|
4761
4928
|
*/
|
|
@@ -4813,6 +4980,7 @@ export namespace Models {
|
|
|
4813
4980
|
*/
|
|
4814
4981
|
status: string;
|
|
4815
4982
|
}
|
|
4983
|
+
|
|
4816
4984
|
/**
|
|
4817
4985
|
* Topic
|
|
4818
4986
|
*/
|
|
@@ -4850,6 +5018,7 @@ export namespace Models {
|
|
|
4850
5018
|
*/
|
|
4851
5019
|
subscribe: string[];
|
|
4852
5020
|
}
|
|
5021
|
+
|
|
4853
5022
|
/**
|
|
4854
5023
|
* Subscriber
|
|
4855
5024
|
*/
|
|
@@ -4891,6 +5060,7 @@ export namespace Models {
|
|
|
4891
5060
|
*/
|
|
4892
5061
|
providerType: string;
|
|
4893
5062
|
}
|
|
5063
|
+
|
|
4894
5064
|
/**
|
|
4895
5065
|
* Target
|
|
4896
5066
|
*/
|
|
@@ -4932,6 +5102,7 @@ export namespace Models {
|
|
|
4932
5102
|
*/
|
|
4933
5103
|
expired: boolean;
|
|
4934
5104
|
}
|
|
5105
|
+
|
|
4935
5106
|
/**
|
|
4936
5107
|
* Migration
|
|
4937
5108
|
*/
|
|
@@ -4985,6 +5156,7 @@ export namespace Models {
|
|
|
4985
5156
|
*/
|
|
4986
5157
|
errors: string[];
|
|
4987
5158
|
}
|
|
5159
|
+
|
|
4988
5160
|
/**
|
|
4989
5161
|
* Migration Report
|
|
4990
5162
|
*/
|
|
@@ -5026,6 +5198,7 @@ export namespace Models {
|
|
|
5026
5198
|
*/
|
|
5027
5199
|
version: string;
|
|
5028
5200
|
}
|
|
5201
|
+
|
|
5029
5202
|
/**
|
|
5030
5203
|
* AdditionalResource
|
|
5031
5204
|
*/
|
|
@@ -5047,6 +5220,7 @@ export namespace Models {
|
|
|
5047
5220
|
*/
|
|
5048
5221
|
value: number;
|
|
5049
5222
|
}
|
|
5223
|
+
|
|
5050
5224
|
/**
|
|
5051
5225
|
* AggregationTeam
|
|
5052
5226
|
*/
|
|
@@ -5152,6 +5326,7 @@ export namespace Models {
|
|
|
5152
5326
|
*/
|
|
5153
5327
|
amount: number;
|
|
5154
5328
|
}
|
|
5329
|
+
|
|
5155
5330
|
/**
|
|
5156
5331
|
* Archive
|
|
5157
5332
|
*/
|
|
@@ -5205,6 +5380,7 @@ export namespace Models {
|
|
|
5205
5380
|
*/
|
|
5206
5381
|
resourceType?: string;
|
|
5207
5382
|
}
|
|
5383
|
+
|
|
5208
5384
|
/**
|
|
5209
5385
|
* BillingAddress
|
|
5210
5386
|
*/
|
|
@@ -5242,6 +5418,7 @@ export namespace Models {
|
|
|
5242
5418
|
*/
|
|
5243
5419
|
postalCode: string;
|
|
5244
5420
|
}
|
|
5421
|
+
|
|
5245
5422
|
/**
|
|
5246
5423
|
* billingPlan
|
|
5247
5424
|
*/
|
|
@@ -5290,6 +5467,10 @@ export namespace Models {
|
|
|
5290
5467
|
* Webhooks
|
|
5291
5468
|
*/
|
|
5292
5469
|
webhooks: number;
|
|
5470
|
+
/**
|
|
5471
|
+
* Projects
|
|
5472
|
+
*/
|
|
5473
|
+
projects: number;
|
|
5293
5474
|
/**
|
|
5294
5475
|
* Platofrms
|
|
5295
5476
|
*/
|
|
@@ -5407,6 +5588,7 @@ export namespace Models {
|
|
|
5407
5588
|
*/
|
|
5408
5589
|
databasesAllowEncrypt: boolean;
|
|
5409
5590
|
}
|
|
5591
|
+
|
|
5410
5592
|
/**
|
|
5411
5593
|
* BillingPlanAddon
|
|
5412
5594
|
*/
|
|
@@ -5416,6 +5598,7 @@ export namespace Models {
|
|
|
5416
5598
|
*/
|
|
5417
5599
|
seats: BillingPlanAddonDetails;
|
|
5418
5600
|
}
|
|
5601
|
+
|
|
5419
5602
|
/**
|
|
5420
5603
|
* BillingPlanAddonDetails
|
|
5421
5604
|
*/
|
|
@@ -5445,6 +5628,7 @@ export namespace Models {
|
|
|
5445
5628
|
*/
|
|
5446
5629
|
value: number;
|
|
5447
5630
|
}
|
|
5631
|
+
|
|
5448
5632
|
/**
|
|
5449
5633
|
* BillingLimits
|
|
5450
5634
|
*/
|
|
@@ -5478,6 +5662,7 @@ export namespace Models {
|
|
|
5478
5662
|
*/
|
|
5479
5663
|
authPhone: number;
|
|
5480
5664
|
}
|
|
5665
|
+
|
|
5481
5666
|
/**
|
|
5482
5667
|
* Campaign
|
|
5483
5668
|
*/
|
|
@@ -5531,6 +5716,7 @@ export namespace Models {
|
|
|
5531
5716
|
*/
|
|
5532
5717
|
footer?: boolean;
|
|
5533
5718
|
}
|
|
5719
|
+
|
|
5534
5720
|
/**
|
|
5535
5721
|
* Coupon
|
|
5536
5722
|
*/
|
|
@@ -5568,6 +5754,7 @@ export namespace Models {
|
|
|
5568
5754
|
*/
|
|
5569
5755
|
onlyNewOrgs: boolean;
|
|
5570
5756
|
}
|
|
5757
|
+
|
|
5571
5758
|
/**
|
|
5572
5759
|
* Credit
|
|
5573
5760
|
*/
|
|
@@ -5617,6 +5804,17 @@ export namespace Models {
|
|
|
5617
5804
|
*/
|
|
5618
5805
|
status: string;
|
|
5619
5806
|
}
|
|
5807
|
+
|
|
5808
|
+
/**
|
|
5809
|
+
* CreditAvailable
|
|
5810
|
+
*/
|
|
5811
|
+
export type CreditAvailable = {
|
|
5812
|
+
/**
|
|
5813
|
+
* Total available credits for the organization.
|
|
5814
|
+
*/
|
|
5815
|
+
available: number;
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5620
5818
|
/**
|
|
5621
5819
|
* CreditList
|
|
5622
5820
|
*/
|
|
@@ -5634,6 +5832,7 @@ export namespace Models {
|
|
|
5634
5832
|
*/
|
|
5635
5833
|
available: number;
|
|
5636
5834
|
}
|
|
5835
|
+
|
|
5637
5836
|
/**
|
|
5638
5837
|
* Invoice
|
|
5639
5838
|
*/
|
|
@@ -5727,10 +5926,11 @@ export namespace Models {
|
|
|
5727
5926
|
*/
|
|
5728
5927
|
to: string;
|
|
5729
5928
|
}
|
|
5929
|
+
|
|
5730
5930
|
/**
|
|
5731
5931
|
* Organization
|
|
5732
5932
|
*/
|
|
5733
|
-
export type Organization<Preferences extends Models.Preferences> = {
|
|
5933
|
+
export type Organization<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
5734
5934
|
/**
|
|
5735
5935
|
* Team ID.
|
|
5736
5936
|
*/
|
|
@@ -5855,7 +6055,12 @@ export namespace Models {
|
|
|
5855
6055
|
* Marked for deletion
|
|
5856
6056
|
*/
|
|
5857
6057
|
markedForDeletion: boolean;
|
|
6058
|
+
/**
|
|
6059
|
+
* Selected projects
|
|
6060
|
+
*/
|
|
6061
|
+
projects: string[];
|
|
5858
6062
|
}
|
|
6063
|
+
|
|
5859
6064
|
/**
|
|
5860
6065
|
* paymentMethod
|
|
5861
6066
|
*/
|
|
@@ -5937,6 +6142,7 @@ export namespace Models {
|
|
|
5937
6142
|
*/
|
|
5938
6143
|
failed: boolean;
|
|
5939
6144
|
}
|
|
6145
|
+
|
|
5940
6146
|
/**
|
|
5941
6147
|
* backup
|
|
5942
6148
|
*/
|
|
@@ -5986,6 +6192,7 @@ export namespace Models {
|
|
|
5986
6192
|
*/
|
|
5987
6193
|
enabled: boolean;
|
|
5988
6194
|
}
|
|
6195
|
+
|
|
5989
6196
|
/**
|
|
5990
6197
|
* Region
|
|
5991
6198
|
*/
|
|
@@ -6015,6 +6222,7 @@ export namespace Models {
|
|
|
6015
6222
|
*/
|
|
6016
6223
|
flag: string;
|
|
6017
6224
|
}
|
|
6225
|
+
|
|
6018
6226
|
/**
|
|
6019
6227
|
* Restoration
|
|
6020
6228
|
*/
|
|
@@ -6064,6 +6272,7 @@ export namespace Models {
|
|
|
6064
6272
|
*/
|
|
6065
6273
|
options: string;
|
|
6066
6274
|
}
|
|
6275
|
+
|
|
6067
6276
|
/**
|
|
6068
6277
|
* Review
|
|
6069
6278
|
*/
|
|
@@ -6085,6 +6294,7 @@ export namespace Models {
|
|
|
6085
6294
|
*/
|
|
6086
6295
|
review: string;
|
|
6087
6296
|
}
|
|
6297
|
+
|
|
6088
6298
|
/**
|
|
6089
6299
|
* Roles
|
|
6090
6300
|
*/
|
|
@@ -6098,6 +6308,7 @@ export namespace Models {
|
|
|
6098
6308
|
*/
|
|
6099
6309
|
roles: string[];
|
|
6100
6310
|
}
|
|
6311
|
+
|
|
6101
6312
|
/**
|
|
6102
6313
|
* UsageOrganization
|
|
6103
6314
|
*/
|
|
@@ -6191,6 +6402,7 @@ export namespace Models {
|
|
|
6191
6402
|
*/
|
|
6192
6403
|
projects: UsageOrganizationProject[];
|
|
6193
6404
|
}
|
|
6405
|
+
|
|
6194
6406
|
/**
|
|
6195
6407
|
* UsageOrganizationProject
|
|
6196
6408
|
*/
|
|
@@ -6256,6 +6468,7 @@ export namespace Models {
|
|
|
6256
6468
|
*/
|
|
6257
6469
|
imageTransformationsTotal: number;
|
|
6258
6470
|
}
|
|
6471
|
+
|
|
6259
6472
|
/**
|
|
6260
6473
|
* Domain
|
|
6261
6474
|
*/
|
|
@@ -6309,6 +6522,7 @@ export namespace Models {
|
|
|
6309
6522
|
*/
|
|
6310
6523
|
dnsRecords: DnsRecord[];
|
|
6311
6524
|
}
|
|
6525
|
+
|
|
6312
6526
|
/**
|
|
6313
6527
|
* DNSRecord
|
|
6314
6528
|
*/
|
|
@@ -6362,6 +6576,7 @@ export namespace Models {
|
|
|
6362
6576
|
*/
|
|
6363
6577
|
comment: string;
|
|
6364
6578
|
}
|
|
6579
|
+
|
|
6365
6580
|
/**
|
|
6366
6581
|
* UsageInvoice
|
|
6367
6582
|
*/
|
|
@@ -6387,6 +6602,7 @@ export namespace Models {
|
|
|
6387
6602
|
*/
|
|
6388
6603
|
desc: string;
|
|
6389
6604
|
}
|
|
6605
|
+
|
|
6390
6606
|
/**
|
|
6391
6607
|
* usageBillingPlan
|
|
6392
6608
|
*/
|
|
@@ -6424,6 +6640,7 @@ export namespace Models {
|
|
|
6424
6640
|
*/
|
|
6425
6641
|
imageTransformations: AdditionalResource;
|
|
6426
6642
|
}
|
|
6643
|
+
|
|
6427
6644
|
/**
|
|
6428
6645
|
* Estimation
|
|
6429
6646
|
*/
|
|
@@ -6461,6 +6678,7 @@ export namespace Models {
|
|
|
6461
6678
|
*/
|
|
6462
6679
|
trialEndDate?: string;
|
|
6463
6680
|
}
|
|
6681
|
+
|
|
6464
6682
|
/**
|
|
6465
6683
|
* EstimationUpdatePlan
|
|
6466
6684
|
*/
|
|
@@ -6502,6 +6720,7 @@ export namespace Models {
|
|
|
6502
6720
|
*/
|
|
6503
6721
|
organizationCredits: number;
|
|
6504
6722
|
}
|
|
6723
|
+
|
|
6505
6724
|
/**
|
|
6506
6725
|
* EstimationDeleteOrganization
|
|
6507
6726
|
*/
|
|
@@ -6511,6 +6730,7 @@ export namespace Models {
|
|
|
6511
6730
|
*/
|
|
6512
6731
|
unpaidInvoices: Invoice[];
|
|
6513
6732
|
}
|
|
6733
|
+
|
|
6514
6734
|
/**
|
|
6515
6735
|
* EstimationItem
|
|
6516
6736
|
*/
|
|
@@ -6524,6 +6744,7 @@ export namespace Models {
|
|
|
6524
6744
|
*/
|
|
6525
6745
|
value: number;
|
|
6526
6746
|
}
|
|
6747
|
+
|
|
6527
6748
|
/**
|
|
6528
6749
|
* Aggregation team list
|
|
6529
6750
|
*/
|
|
@@ -6537,6 +6758,7 @@ export namespace Models {
|
|
|
6537
6758
|
*/
|
|
6538
6759
|
aggregations: AggregationTeam[];
|
|
6539
6760
|
}
|
|
6761
|
+
|
|
6540
6762
|
/**
|
|
6541
6763
|
* Backup archive list
|
|
6542
6764
|
*/
|
|
@@ -6550,6 +6772,7 @@ export namespace Models {
|
|
|
6550
6772
|
*/
|
|
6551
6773
|
archives: BackupArchive[];
|
|
6552
6774
|
}
|
|
6775
|
+
|
|
6553
6776
|
/**
|
|
6554
6777
|
* Backup policy list
|
|
6555
6778
|
*/
|
|
@@ -6563,6 +6786,7 @@ export namespace Models {
|
|
|
6563
6786
|
*/
|
|
6564
6787
|
policies: BackupPolicy[];
|
|
6565
6788
|
}
|
|
6789
|
+
|
|
6566
6790
|
/**
|
|
6567
6791
|
* Backup restoration list
|
|
6568
6792
|
*/
|
|
@@ -6576,6 +6800,7 @@ export namespace Models {
|
|
|
6576
6800
|
*/
|
|
6577
6801
|
restorations: BackupRestoration[];
|
|
6578
6802
|
}
|
|
6803
|
+
|
|
6579
6804
|
/**
|
|
6580
6805
|
* Billing invoices list
|
|
6581
6806
|
*/
|
|
@@ -6589,6 +6814,7 @@ export namespace Models {
|
|
|
6589
6814
|
*/
|
|
6590
6815
|
invoices: Invoice[];
|
|
6591
6816
|
}
|
|
6817
|
+
|
|
6592
6818
|
/**
|
|
6593
6819
|
* Billing address list
|
|
6594
6820
|
*/
|
|
@@ -6602,6 +6828,7 @@ export namespace Models {
|
|
|
6602
6828
|
*/
|
|
6603
6829
|
billingAddresses: BillingAddress[];
|
|
6604
6830
|
}
|
|
6831
|
+
|
|
6605
6832
|
/**
|
|
6606
6833
|
* Billing plan list
|
|
6607
6834
|
*/
|
|
@@ -6615,10 +6842,11 @@ export namespace Models {
|
|
|
6615
6842
|
*/
|
|
6616
6843
|
plans: BillingPlan[];
|
|
6617
6844
|
}
|
|
6845
|
+
|
|
6618
6846
|
/**
|
|
6619
6847
|
* Organizations List
|
|
6620
6848
|
*/
|
|
6621
|
-
export type OrganizationList<Preferences extends Models.Preferences> = {
|
|
6849
|
+
export type OrganizationList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
6622
6850
|
/**
|
|
6623
6851
|
* Total number of teams documents that matched your query.
|
|
6624
6852
|
*/
|
|
@@ -6628,6 +6856,7 @@ export namespace Models {
|
|
|
6628
6856
|
*/
|
|
6629
6857
|
teams: Organization<Preferences>[];
|
|
6630
6858
|
}
|
|
6859
|
+
|
|
6631
6860
|
/**
|
|
6632
6861
|
* Payment methods list
|
|
6633
6862
|
*/
|
|
@@ -6641,6 +6870,7 @@ export namespace Models {
|
|
|
6641
6870
|
*/
|
|
6642
6871
|
paymentMethods: PaymentMethod[];
|
|
6643
6872
|
}
|
|
6873
|
+
|
|
6644
6874
|
/**
|
|
6645
6875
|
* Regions list
|
|
6646
6876
|
*/
|
|
@@ -6654,6 +6884,7 @@ export namespace Models {
|
|
|
6654
6884
|
*/
|
|
6655
6885
|
regions: ConsoleRegion[];
|
|
6656
6886
|
}
|
|
6887
|
+
|
|
6657
6888
|
/**
|
|
6658
6889
|
* Domains list
|
|
6659
6890
|
*/
|
|
@@ -6667,6 +6898,7 @@ export namespace Models {
|
|
|
6667
6898
|
*/
|
|
6668
6899
|
domains: Domain[];
|
|
6669
6900
|
}
|
|
6901
|
+
|
|
6670
6902
|
/**
|
|
6671
6903
|
* DNS records list
|
|
6672
6904
|
*/
|