@appwrite.io/console 1.8.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 +532 -200
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +533 -201
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +532 -200
- package/docs/examples/databases/create-document.md +1 -3
- package/docs/examples/databases/create-documents.md +1 -1
- package/docs/examples/databases/decrement-document-attribute.md +18 -0
- package/docs/examples/databases/increment-document-attribute.md +18 -0
- package/docs/examples/databases/upsert-documents.md +1 -1
- package/docs/examples/domains/create-record-a-a-a-a.md +1 -1
- package/docs/examples/domains/create-record-a.md +1 -1
- package/docs/examples/domains/create-record-alias.md +1 -1
- package/docs/examples/domains/create-record-c-a-a.md +1 -1
- package/docs/examples/domains/create-record-c-n-a-m-e.md +1 -1
- package/docs/examples/domains/create-record-h-t-t-p-s.md +1 -1
- package/docs/examples/domains/create-record-m-x.md +1 -1
- package/docs/examples/domains/create-record-n-s.md +1 -1
- package/docs/examples/domains/create-record-s-r-v.md +1 -1
- package/docs/examples/domains/create-record-t-x-t.md +1 -1
- package/docs/examples/domains/update-record-a-a-a-a.md +1 -1
- package/docs/examples/domains/update-record-a.md +1 -1
- package/docs/examples/domains/update-record-alias.md +1 -1
- package/docs/examples/domains/update-record-c-a-a.md +1 -1
- package/docs/examples/domains/update-record-c-n-a-m-e.md +1 -1
- package/docs/examples/domains/update-record-h-t-t-p-s.md +1 -1
- package/docs/examples/domains/update-record-m-x.md +1 -1
- package/docs/examples/domains/update-record-n-s.md +1 -1
- package/docs/examples/domains/update-record-s-r-v.md +1 -1
- package/docs/examples/domains/update-record-t-x-t.md +1 -1
- package/docs/examples/functions/create-execution.md +1 -1
- package/docs/examples/health/{get-queue-stats-usage-dump.md → get-queue-billing-project-aggregation.md} +2 -2
- package/docs/examples/health/{get-queue-billing-aggregation.md → get-queue-billing-team-aggregation.md} +1 -1
- package/docs/examples/organizations/cancel-downgrade.md +13 -0
- package/docs/examples/organizations/estimation-create-organization.md +16 -0
- package/docs/examples/organizations/estimation-delete-organization.md +13 -0
- package/docs/examples/organizations/estimation-update-plan.md +16 -0
- package/docs/examples/organizations/get-available-credits.md +13 -0
- package/docs/examples/organizations/get-usage.md +1 -1
- package/docs/examples/organizations/update-projects.md +14 -0
- package/docs/examples/organizations/validate-payment.md +14 -0
- package/docs/examples/proxy/create-redirect-rule.md +4 -2
- package/docs/examples/vcs/get-repository-contents.md +2 -1
- package/package.json +1 -1
- package/src/client.ts +5 -4
- package/src/enums/build-runtime.ts +2 -0
- package/src/enums/image-format.ts +1 -0
- package/src/enums/proxy-resource-type.ts +4 -0
- package/src/enums/runtime.ts +2 -0
- package/src/index.ts +1 -0
- package/src/models.ts +513 -11
- 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 +190 -31
- 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 +54 -4
- 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 +301 -14
- package/src/services/project.ts +5 -0
- package/src/services/projects.ts +50 -0
- package/src/services/proxy.ts +23 -1
- 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/enums/build-runtime.d.ts +3 -1
- package/types/enums/image-format.d.ts +2 -1
- package/types/enums/proxy-resource-type.d.ts +4 -0
- package/types/enums/runtime.d.ts +3 -1
- package/types/index.d.ts +1 -0
- package/types/models.d.ts +494 -188
- 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 +67 -31
- package/types/services/domains.d.ts +69 -69
- package/types/services/functions.d.ts +8 -8
- package/types/services/health.d.ts +11 -3
- package/types/services/locale.d.ts +2 -2
- package/types/services/messaging.d.ts +8 -8
- package/types/services/organizations.d.ts +88 -14
- package/types/services/proxy.d.ts +4 -1
- 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/docs/examples/functions/create-build.md +0 -15
- package/docs/examples/functions/get-function-usage.md +0 -14
- package/docs/examples/functions/update-deployment-build.md +0 -14
- package/docs/examples/functions/update-deployment.md +0 -14
- package/docs/examples/proxy/create-rule.md +0 -15
- package/src/enums/resource-type.ts +0 -4
- package/types/enums/resource-type.d.ts +0 -4
package/types/models.d.ts
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
* Appwrite Models
|
|
3
3
|
*/
|
|
4
4
|
export declare namespace Models {
|
|
5
|
+
const __default: unique symbol;
|
|
5
6
|
/**
|
|
6
7
|
* Documents List
|
|
7
8
|
*/
|
|
8
|
-
type DocumentList<Document extends Models.Document> = {
|
|
9
|
+
export type DocumentList<Document extends Models.Document = Models.DefaultDocument> = {
|
|
9
10
|
/**
|
|
10
11
|
* Total number of documents documents that matched your query.
|
|
11
12
|
*/
|
|
@@ -18,7 +19,7 @@ export declare namespace Models {
|
|
|
18
19
|
/**
|
|
19
20
|
* Collections List
|
|
20
21
|
*/
|
|
21
|
-
type CollectionList = {
|
|
22
|
+
export type CollectionList = {
|
|
22
23
|
/**
|
|
23
24
|
* Total number of collections documents that matched your query.
|
|
24
25
|
*/
|
|
@@ -31,7 +32,7 @@ export declare namespace Models {
|
|
|
31
32
|
/**
|
|
32
33
|
* Databases List
|
|
33
34
|
*/
|
|
34
|
-
type DatabaseList = {
|
|
35
|
+
export type DatabaseList = {
|
|
35
36
|
/**
|
|
36
37
|
* Total number of databases documents that matched your query.
|
|
37
38
|
*/
|
|
@@ -44,7 +45,7 @@ export declare namespace Models {
|
|
|
44
45
|
/**
|
|
45
46
|
* Indexes List
|
|
46
47
|
*/
|
|
47
|
-
type IndexList = {
|
|
48
|
+
export type IndexList = {
|
|
48
49
|
/**
|
|
49
50
|
* Total number of indexes documents that matched your query.
|
|
50
51
|
*/
|
|
@@ -57,7 +58,7 @@ export declare namespace Models {
|
|
|
57
58
|
/**
|
|
58
59
|
* Users List
|
|
59
60
|
*/
|
|
60
|
-
type UserList<Preferences extends Models.Preferences> = {
|
|
61
|
+
export type UserList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
61
62
|
/**
|
|
62
63
|
* Total number of users documents that matched your query.
|
|
63
64
|
*/
|
|
@@ -70,7 +71,7 @@ export declare namespace Models {
|
|
|
70
71
|
/**
|
|
71
72
|
* Sessions List
|
|
72
73
|
*/
|
|
73
|
-
type SessionList = {
|
|
74
|
+
export type SessionList = {
|
|
74
75
|
/**
|
|
75
76
|
* Total number of sessions documents that matched your query.
|
|
76
77
|
*/
|
|
@@ -83,7 +84,7 @@ export declare namespace Models {
|
|
|
83
84
|
/**
|
|
84
85
|
* Identities List
|
|
85
86
|
*/
|
|
86
|
-
type IdentityList = {
|
|
87
|
+
export type IdentityList = {
|
|
87
88
|
/**
|
|
88
89
|
* Total number of identities documents that matched your query.
|
|
89
90
|
*/
|
|
@@ -96,7 +97,7 @@ export declare namespace Models {
|
|
|
96
97
|
/**
|
|
97
98
|
* Logs List
|
|
98
99
|
*/
|
|
99
|
-
type LogList = {
|
|
100
|
+
export type LogList = {
|
|
100
101
|
/**
|
|
101
102
|
* Total number of logs documents that matched your query.
|
|
102
103
|
*/
|
|
@@ -109,7 +110,7 @@ export declare namespace Models {
|
|
|
109
110
|
/**
|
|
110
111
|
* Files List
|
|
111
112
|
*/
|
|
112
|
-
type FileList = {
|
|
113
|
+
export type FileList = {
|
|
113
114
|
/**
|
|
114
115
|
* Total number of files documents that matched your query.
|
|
115
116
|
*/
|
|
@@ -122,7 +123,7 @@ export declare namespace Models {
|
|
|
122
123
|
/**
|
|
123
124
|
* Buckets List
|
|
124
125
|
*/
|
|
125
|
-
type BucketList = {
|
|
126
|
+
export type BucketList = {
|
|
126
127
|
/**
|
|
127
128
|
* Total number of buckets documents that matched your query.
|
|
128
129
|
*/
|
|
@@ -135,7 +136,7 @@ export declare namespace Models {
|
|
|
135
136
|
/**
|
|
136
137
|
* Resource Tokens List
|
|
137
138
|
*/
|
|
138
|
-
type ResourceTokenList = {
|
|
139
|
+
export type ResourceTokenList = {
|
|
139
140
|
/**
|
|
140
141
|
* Total number of tokens documents that matched your query.
|
|
141
142
|
*/
|
|
@@ -148,7 +149,7 @@ export declare namespace Models {
|
|
|
148
149
|
/**
|
|
149
150
|
* Teams List
|
|
150
151
|
*/
|
|
151
|
-
type TeamList<Preferences extends Models.Preferences> = {
|
|
152
|
+
export type TeamList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
152
153
|
/**
|
|
153
154
|
* Total number of teams documents that matched your query.
|
|
154
155
|
*/
|
|
@@ -161,7 +162,7 @@ export declare namespace Models {
|
|
|
161
162
|
/**
|
|
162
163
|
* Memberships List
|
|
163
164
|
*/
|
|
164
|
-
type MembershipList = {
|
|
165
|
+
export type MembershipList = {
|
|
165
166
|
/**
|
|
166
167
|
* Total number of memberships documents that matched your query.
|
|
167
168
|
*/
|
|
@@ -174,7 +175,7 @@ export declare namespace Models {
|
|
|
174
175
|
/**
|
|
175
176
|
* Sites List
|
|
176
177
|
*/
|
|
177
|
-
type SiteList = {
|
|
178
|
+
export type SiteList = {
|
|
178
179
|
/**
|
|
179
180
|
* Total number of sites documents that matched your query.
|
|
180
181
|
*/
|
|
@@ -187,7 +188,7 @@ export declare namespace Models {
|
|
|
187
188
|
/**
|
|
188
189
|
* Site Templates List
|
|
189
190
|
*/
|
|
190
|
-
type TemplateSiteList = {
|
|
191
|
+
export type TemplateSiteList = {
|
|
191
192
|
/**
|
|
192
193
|
* Total number of templates documents that matched your query.
|
|
193
194
|
*/
|
|
@@ -200,7 +201,7 @@ export declare namespace Models {
|
|
|
200
201
|
/**
|
|
201
202
|
* Functions List
|
|
202
203
|
*/
|
|
203
|
-
type FunctionList = {
|
|
204
|
+
export type FunctionList = {
|
|
204
205
|
/**
|
|
205
206
|
* Total number of functions documents that matched your query.
|
|
206
207
|
*/
|
|
@@ -213,7 +214,7 @@ export declare namespace Models {
|
|
|
213
214
|
/**
|
|
214
215
|
* Function Templates List
|
|
215
216
|
*/
|
|
216
|
-
type TemplateFunctionList = {
|
|
217
|
+
export type TemplateFunctionList = {
|
|
217
218
|
/**
|
|
218
219
|
* Total number of templates documents that matched your query.
|
|
219
220
|
*/
|
|
@@ -226,7 +227,7 @@ export declare namespace Models {
|
|
|
226
227
|
/**
|
|
227
228
|
* Installations List
|
|
228
229
|
*/
|
|
229
|
-
type InstallationList = {
|
|
230
|
+
export type InstallationList = {
|
|
230
231
|
/**
|
|
231
232
|
* Total number of installations documents that matched your query.
|
|
232
233
|
*/
|
|
@@ -239,7 +240,7 @@ export declare namespace Models {
|
|
|
239
240
|
/**
|
|
240
241
|
* Framework Provider Repositories List
|
|
241
242
|
*/
|
|
242
|
-
type ProviderRepositoryFrameworkList = {
|
|
243
|
+
export type ProviderRepositoryFrameworkList = {
|
|
243
244
|
/**
|
|
244
245
|
* Total number of frameworkProviderRepositories documents that matched your query.
|
|
245
246
|
*/
|
|
@@ -252,7 +253,7 @@ export declare namespace Models {
|
|
|
252
253
|
/**
|
|
253
254
|
* Runtime Provider Repositories List
|
|
254
255
|
*/
|
|
255
|
-
type ProviderRepositoryRuntimeList = {
|
|
256
|
+
export type ProviderRepositoryRuntimeList = {
|
|
256
257
|
/**
|
|
257
258
|
* Total number of runtimeProviderRepositories documents that matched your query.
|
|
258
259
|
*/
|
|
@@ -265,7 +266,7 @@ export declare namespace Models {
|
|
|
265
266
|
/**
|
|
266
267
|
* Branches List
|
|
267
268
|
*/
|
|
268
|
-
type BranchList = {
|
|
269
|
+
export type BranchList = {
|
|
269
270
|
/**
|
|
270
271
|
* Total number of branches documents that matched your query.
|
|
271
272
|
*/
|
|
@@ -278,7 +279,7 @@ export declare namespace Models {
|
|
|
278
279
|
/**
|
|
279
280
|
* Frameworks List
|
|
280
281
|
*/
|
|
281
|
-
type FrameworkList = {
|
|
282
|
+
export type FrameworkList = {
|
|
282
283
|
/**
|
|
283
284
|
* Total number of frameworks documents that matched your query.
|
|
284
285
|
*/
|
|
@@ -291,7 +292,7 @@ export declare namespace Models {
|
|
|
291
292
|
/**
|
|
292
293
|
* Runtimes List
|
|
293
294
|
*/
|
|
294
|
-
type RuntimeList = {
|
|
295
|
+
export type RuntimeList = {
|
|
295
296
|
/**
|
|
296
297
|
* Total number of runtimes documents that matched your query.
|
|
297
298
|
*/
|
|
@@ -304,7 +305,7 @@ export declare namespace Models {
|
|
|
304
305
|
/**
|
|
305
306
|
* Deployments List
|
|
306
307
|
*/
|
|
307
|
-
type DeploymentList = {
|
|
308
|
+
export type DeploymentList = {
|
|
308
309
|
/**
|
|
309
310
|
* Total number of deployments documents that matched your query.
|
|
310
311
|
*/
|
|
@@ -317,7 +318,7 @@ export declare namespace Models {
|
|
|
317
318
|
/**
|
|
318
319
|
* Executions List
|
|
319
320
|
*/
|
|
320
|
-
type ExecutionList = {
|
|
321
|
+
export type ExecutionList = {
|
|
321
322
|
/**
|
|
322
323
|
* Total number of executions documents that matched your query.
|
|
323
324
|
*/
|
|
@@ -330,7 +331,7 @@ export declare namespace Models {
|
|
|
330
331
|
/**
|
|
331
332
|
* Projects List
|
|
332
333
|
*/
|
|
333
|
-
type ProjectList = {
|
|
334
|
+
export type ProjectList = {
|
|
334
335
|
/**
|
|
335
336
|
* Total number of projects documents that matched your query.
|
|
336
337
|
*/
|
|
@@ -343,7 +344,7 @@ export declare namespace Models {
|
|
|
343
344
|
/**
|
|
344
345
|
* Webhooks List
|
|
345
346
|
*/
|
|
346
|
-
type WebhookList = {
|
|
347
|
+
export type WebhookList = {
|
|
347
348
|
/**
|
|
348
349
|
* Total number of webhooks documents that matched your query.
|
|
349
350
|
*/
|
|
@@ -356,7 +357,7 @@ export declare namespace Models {
|
|
|
356
357
|
/**
|
|
357
358
|
* API Keys List
|
|
358
359
|
*/
|
|
359
|
-
type KeyList = {
|
|
360
|
+
export type KeyList = {
|
|
360
361
|
/**
|
|
361
362
|
* Total number of keys documents that matched your query.
|
|
362
363
|
*/
|
|
@@ -369,7 +370,7 @@ export declare namespace Models {
|
|
|
369
370
|
/**
|
|
370
371
|
* Dev Keys List
|
|
371
372
|
*/
|
|
372
|
-
type DevKeyList = {
|
|
373
|
+
export type DevKeyList = {
|
|
373
374
|
/**
|
|
374
375
|
* Total number of devKeys documents that matched your query.
|
|
375
376
|
*/
|
|
@@ -382,7 +383,7 @@ export declare namespace Models {
|
|
|
382
383
|
/**
|
|
383
384
|
* Platforms List
|
|
384
385
|
*/
|
|
385
|
-
type PlatformList = {
|
|
386
|
+
export type PlatformList = {
|
|
386
387
|
/**
|
|
387
388
|
* Total number of platforms documents that matched your query.
|
|
388
389
|
*/
|
|
@@ -395,7 +396,7 @@ export declare namespace Models {
|
|
|
395
396
|
/**
|
|
396
397
|
* Countries List
|
|
397
398
|
*/
|
|
398
|
-
type CountryList = {
|
|
399
|
+
export type CountryList = {
|
|
399
400
|
/**
|
|
400
401
|
* Total number of countries documents that matched your query.
|
|
401
402
|
*/
|
|
@@ -408,7 +409,7 @@ export declare namespace Models {
|
|
|
408
409
|
/**
|
|
409
410
|
* Continents List
|
|
410
411
|
*/
|
|
411
|
-
type ContinentList = {
|
|
412
|
+
export type ContinentList = {
|
|
412
413
|
/**
|
|
413
414
|
* Total number of continents documents that matched your query.
|
|
414
415
|
*/
|
|
@@ -421,7 +422,7 @@ export declare namespace Models {
|
|
|
421
422
|
/**
|
|
422
423
|
* Languages List
|
|
423
424
|
*/
|
|
424
|
-
type LanguageList = {
|
|
425
|
+
export type LanguageList = {
|
|
425
426
|
/**
|
|
426
427
|
* Total number of languages documents that matched your query.
|
|
427
428
|
*/
|
|
@@ -434,7 +435,7 @@ export declare namespace Models {
|
|
|
434
435
|
/**
|
|
435
436
|
* Currencies List
|
|
436
437
|
*/
|
|
437
|
-
type CurrencyList = {
|
|
438
|
+
export type CurrencyList = {
|
|
438
439
|
/**
|
|
439
440
|
* Total number of currencies documents that matched your query.
|
|
440
441
|
*/
|
|
@@ -447,7 +448,7 @@ export declare namespace Models {
|
|
|
447
448
|
/**
|
|
448
449
|
* Phones List
|
|
449
450
|
*/
|
|
450
|
-
type PhoneList = {
|
|
451
|
+
export type PhoneList = {
|
|
451
452
|
/**
|
|
452
453
|
* Total number of phones documents that matched your query.
|
|
453
454
|
*/
|
|
@@ -460,7 +461,7 @@ export declare namespace Models {
|
|
|
460
461
|
/**
|
|
461
462
|
* Variables List
|
|
462
463
|
*/
|
|
463
|
-
type VariableList = {
|
|
464
|
+
export type VariableList = {
|
|
464
465
|
/**
|
|
465
466
|
* Total number of variables documents that matched your query.
|
|
466
467
|
*/
|
|
@@ -473,7 +474,7 @@ export declare namespace Models {
|
|
|
473
474
|
/**
|
|
474
475
|
* Rule List
|
|
475
476
|
*/
|
|
476
|
-
type ProxyRuleList = {
|
|
477
|
+
export type ProxyRuleList = {
|
|
477
478
|
/**
|
|
478
479
|
* Total number of rules documents that matched your query.
|
|
479
480
|
*/
|
|
@@ -486,7 +487,7 @@ export declare namespace Models {
|
|
|
486
487
|
/**
|
|
487
488
|
* Locale codes list
|
|
488
489
|
*/
|
|
489
|
-
type LocaleCodeList = {
|
|
490
|
+
export type LocaleCodeList = {
|
|
490
491
|
/**
|
|
491
492
|
* Total number of localeCodes documents that matched your query.
|
|
492
493
|
*/
|
|
@@ -499,7 +500,7 @@ export declare namespace Models {
|
|
|
499
500
|
/**
|
|
500
501
|
* Provider list
|
|
501
502
|
*/
|
|
502
|
-
type ProviderList = {
|
|
503
|
+
export type ProviderList = {
|
|
503
504
|
/**
|
|
504
505
|
* Total number of providers documents that matched your query.
|
|
505
506
|
*/
|
|
@@ -512,7 +513,7 @@ export declare namespace Models {
|
|
|
512
513
|
/**
|
|
513
514
|
* Message list
|
|
514
515
|
*/
|
|
515
|
-
type MessageList = {
|
|
516
|
+
export type MessageList = {
|
|
516
517
|
/**
|
|
517
518
|
* Total number of messages documents that matched your query.
|
|
518
519
|
*/
|
|
@@ -525,7 +526,7 @@ export declare namespace Models {
|
|
|
525
526
|
/**
|
|
526
527
|
* Topic list
|
|
527
528
|
*/
|
|
528
|
-
type TopicList = {
|
|
529
|
+
export type TopicList = {
|
|
529
530
|
/**
|
|
530
531
|
* Total number of topics documents that matched your query.
|
|
531
532
|
*/
|
|
@@ -538,7 +539,7 @@ export declare namespace Models {
|
|
|
538
539
|
/**
|
|
539
540
|
* Subscriber list
|
|
540
541
|
*/
|
|
541
|
-
type SubscriberList = {
|
|
542
|
+
export type SubscriberList = {
|
|
542
543
|
/**
|
|
543
544
|
* Total number of subscribers documents that matched your query.
|
|
544
545
|
*/
|
|
@@ -551,7 +552,7 @@ export declare namespace Models {
|
|
|
551
552
|
/**
|
|
552
553
|
* Target list
|
|
553
554
|
*/
|
|
554
|
-
type TargetList = {
|
|
555
|
+
export type TargetList = {
|
|
555
556
|
/**
|
|
556
557
|
* Total number of targets documents that matched your query.
|
|
557
558
|
*/
|
|
@@ -564,7 +565,7 @@ export declare namespace Models {
|
|
|
564
565
|
/**
|
|
565
566
|
* Migrations List
|
|
566
567
|
*/
|
|
567
|
-
type MigrationList = {
|
|
568
|
+
export type MigrationList = {
|
|
568
569
|
/**
|
|
569
570
|
* Total number of migrations documents that matched your query.
|
|
570
571
|
*/
|
|
@@ -577,7 +578,7 @@ export declare namespace Models {
|
|
|
577
578
|
/**
|
|
578
579
|
* Specifications List
|
|
579
580
|
*/
|
|
580
|
-
type SpecificationList = {
|
|
581
|
+
export type SpecificationList = {
|
|
581
582
|
/**
|
|
582
583
|
* Total number of specifications documents that matched your query.
|
|
583
584
|
*/
|
|
@@ -590,7 +591,7 @@ export declare namespace Models {
|
|
|
590
591
|
/**
|
|
591
592
|
* VCS Content List
|
|
592
593
|
*/
|
|
593
|
-
type VcsContentList = {
|
|
594
|
+
export type VcsContentList = {
|
|
594
595
|
/**
|
|
595
596
|
* Total number of contents documents that matched your query.
|
|
596
597
|
*/
|
|
@@ -603,7 +604,7 @@ export declare namespace Models {
|
|
|
603
604
|
/**
|
|
604
605
|
* Database
|
|
605
606
|
*/
|
|
606
|
-
type Database = {
|
|
607
|
+
export type Database = {
|
|
607
608
|
/**
|
|
608
609
|
* Database ID.
|
|
609
610
|
*/
|
|
@@ -636,7 +637,7 @@ export declare namespace Models {
|
|
|
636
637
|
/**
|
|
637
638
|
* Collection
|
|
638
639
|
*/
|
|
639
|
-
type Collection = {
|
|
640
|
+
export type Collection = {
|
|
640
641
|
/**
|
|
641
642
|
* Collection ID.
|
|
642
643
|
*/
|
|
@@ -681,7 +682,7 @@ export declare namespace Models {
|
|
|
681
682
|
/**
|
|
682
683
|
* Attributes List
|
|
683
684
|
*/
|
|
684
|
-
type AttributeList = {
|
|
685
|
+
export type AttributeList = {
|
|
685
686
|
/**
|
|
686
687
|
* Total number of attributes in the given collection.
|
|
687
688
|
*/
|
|
@@ -694,7 +695,7 @@ export declare namespace Models {
|
|
|
694
695
|
/**
|
|
695
696
|
* AttributeString
|
|
696
697
|
*/
|
|
697
|
-
type AttributeString = {
|
|
698
|
+
export type AttributeString = {
|
|
698
699
|
/**
|
|
699
700
|
* Attribute Key.
|
|
700
701
|
*/
|
|
@@ -743,7 +744,7 @@ export declare namespace Models {
|
|
|
743
744
|
/**
|
|
744
745
|
* AttributeInteger
|
|
745
746
|
*/
|
|
746
|
-
type AttributeInteger = {
|
|
747
|
+
export type AttributeInteger = {
|
|
747
748
|
/**
|
|
748
749
|
* Attribute Key.
|
|
749
750
|
*/
|
|
@@ -792,7 +793,7 @@ export declare namespace Models {
|
|
|
792
793
|
/**
|
|
793
794
|
* AttributeFloat
|
|
794
795
|
*/
|
|
795
|
-
type AttributeFloat = {
|
|
796
|
+
export type AttributeFloat = {
|
|
796
797
|
/**
|
|
797
798
|
* Attribute Key.
|
|
798
799
|
*/
|
|
@@ -841,7 +842,7 @@ export declare namespace Models {
|
|
|
841
842
|
/**
|
|
842
843
|
* AttributeBoolean
|
|
843
844
|
*/
|
|
844
|
-
type AttributeBoolean = {
|
|
845
|
+
export type AttributeBoolean = {
|
|
845
846
|
/**
|
|
846
847
|
* Attribute Key.
|
|
847
848
|
*/
|
|
@@ -882,7 +883,7 @@ export declare namespace Models {
|
|
|
882
883
|
/**
|
|
883
884
|
* AttributeEmail
|
|
884
885
|
*/
|
|
885
|
-
type AttributeEmail = {
|
|
886
|
+
export type AttributeEmail = {
|
|
886
887
|
/**
|
|
887
888
|
* Attribute Key.
|
|
888
889
|
*/
|
|
@@ -927,7 +928,7 @@ export declare namespace Models {
|
|
|
927
928
|
/**
|
|
928
929
|
* AttributeEnum
|
|
929
930
|
*/
|
|
930
|
-
type AttributeEnum = {
|
|
931
|
+
export type AttributeEnum = {
|
|
931
932
|
/**
|
|
932
933
|
* Attribute Key.
|
|
933
934
|
*/
|
|
@@ -976,7 +977,7 @@ export declare namespace Models {
|
|
|
976
977
|
/**
|
|
977
978
|
* AttributeIP
|
|
978
979
|
*/
|
|
979
|
-
type AttributeIp = {
|
|
980
|
+
export type AttributeIp = {
|
|
980
981
|
/**
|
|
981
982
|
* Attribute Key.
|
|
982
983
|
*/
|
|
@@ -1021,7 +1022,7 @@ export declare namespace Models {
|
|
|
1021
1022
|
/**
|
|
1022
1023
|
* AttributeURL
|
|
1023
1024
|
*/
|
|
1024
|
-
type AttributeUrl = {
|
|
1025
|
+
export type AttributeUrl = {
|
|
1025
1026
|
/**
|
|
1026
1027
|
* Attribute Key.
|
|
1027
1028
|
*/
|
|
@@ -1066,7 +1067,7 @@ export declare namespace Models {
|
|
|
1066
1067
|
/**
|
|
1067
1068
|
* AttributeDatetime
|
|
1068
1069
|
*/
|
|
1069
|
-
type AttributeDatetime = {
|
|
1070
|
+
export type AttributeDatetime = {
|
|
1070
1071
|
/**
|
|
1071
1072
|
* Attribute Key.
|
|
1072
1073
|
*/
|
|
@@ -1111,7 +1112,7 @@ export declare namespace Models {
|
|
|
1111
1112
|
/**
|
|
1112
1113
|
* AttributeRelationship
|
|
1113
1114
|
*/
|
|
1114
|
-
type AttributeRelationship = {
|
|
1115
|
+
export type AttributeRelationship = {
|
|
1115
1116
|
/**
|
|
1116
1117
|
* Attribute Key.
|
|
1117
1118
|
*/
|
|
@@ -1172,7 +1173,7 @@ export declare namespace Models {
|
|
|
1172
1173
|
/**
|
|
1173
1174
|
* Index
|
|
1174
1175
|
*/
|
|
1175
|
-
type Index = {
|
|
1176
|
+
export type Index = {
|
|
1176
1177
|
/**
|
|
1177
1178
|
* Index Key.
|
|
1178
1179
|
*/
|
|
@@ -1213,11 +1214,15 @@ export declare namespace Models {
|
|
|
1213
1214
|
/**
|
|
1214
1215
|
* Document
|
|
1215
1216
|
*/
|
|
1216
|
-
type Document = {
|
|
1217
|
+
export type Document = {
|
|
1217
1218
|
/**
|
|
1218
1219
|
* Document ID.
|
|
1219
1220
|
*/
|
|
1220
1221
|
$id: string;
|
|
1222
|
+
/**
|
|
1223
|
+
* Document automatically incrementing ID.
|
|
1224
|
+
*/
|
|
1225
|
+
$sequence: number;
|
|
1221
1226
|
/**
|
|
1222
1227
|
* Collection ID.
|
|
1223
1228
|
*/
|
|
@@ -1238,12 +1243,15 @@ export declare namespace Models {
|
|
|
1238
1243
|
* Document permissions. [Learn more about permissions](https://appwrite.io/docs/permissions).
|
|
1239
1244
|
*/
|
|
1240
1245
|
$permissions: string[];
|
|
1246
|
+
};
|
|
1247
|
+
export type DefaultDocument = Document & {
|
|
1241
1248
|
[key: string]: any;
|
|
1249
|
+
[__default]: true;
|
|
1242
1250
|
};
|
|
1243
1251
|
/**
|
|
1244
1252
|
* Log
|
|
1245
1253
|
*/
|
|
1246
|
-
type Log = {
|
|
1254
|
+
export type Log = {
|
|
1247
1255
|
/**
|
|
1248
1256
|
* Event name.
|
|
1249
1257
|
*/
|
|
@@ -1332,7 +1340,7 @@ export declare namespace Models {
|
|
|
1332
1340
|
/**
|
|
1333
1341
|
* User
|
|
1334
1342
|
*/
|
|
1335
|
-
type User<Preferences extends Models.Preferences> = {
|
|
1343
|
+
export type User<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
1336
1344
|
/**
|
|
1337
1345
|
* User ID.
|
|
1338
1346
|
*/
|
|
@@ -1413,7 +1421,7 @@ export declare namespace Models {
|
|
|
1413
1421
|
/**
|
|
1414
1422
|
* AlgoMD5
|
|
1415
1423
|
*/
|
|
1416
|
-
type AlgoMd5 = {
|
|
1424
|
+
export type AlgoMd5 = {
|
|
1417
1425
|
/**
|
|
1418
1426
|
* Algo type.
|
|
1419
1427
|
*/
|
|
@@ -1422,7 +1430,7 @@ export declare namespace Models {
|
|
|
1422
1430
|
/**
|
|
1423
1431
|
* AlgoSHA
|
|
1424
1432
|
*/
|
|
1425
|
-
type AlgoSha = {
|
|
1433
|
+
export type AlgoSha = {
|
|
1426
1434
|
/**
|
|
1427
1435
|
* Algo type.
|
|
1428
1436
|
*/
|
|
@@ -1431,7 +1439,7 @@ export declare namespace Models {
|
|
|
1431
1439
|
/**
|
|
1432
1440
|
* AlgoPHPass
|
|
1433
1441
|
*/
|
|
1434
|
-
type AlgoPhpass = {
|
|
1442
|
+
export type AlgoPhpass = {
|
|
1435
1443
|
/**
|
|
1436
1444
|
* Algo type.
|
|
1437
1445
|
*/
|
|
@@ -1440,7 +1448,7 @@ export declare namespace Models {
|
|
|
1440
1448
|
/**
|
|
1441
1449
|
* AlgoBcrypt
|
|
1442
1450
|
*/
|
|
1443
|
-
type AlgoBcrypt = {
|
|
1451
|
+
export type AlgoBcrypt = {
|
|
1444
1452
|
/**
|
|
1445
1453
|
* Algo type.
|
|
1446
1454
|
*/
|
|
@@ -1449,7 +1457,7 @@ export declare namespace Models {
|
|
|
1449
1457
|
/**
|
|
1450
1458
|
* AlgoScrypt
|
|
1451
1459
|
*/
|
|
1452
|
-
type AlgoScrypt = {
|
|
1460
|
+
export type AlgoScrypt = {
|
|
1453
1461
|
/**
|
|
1454
1462
|
* Algo type.
|
|
1455
1463
|
*/
|
|
@@ -1474,7 +1482,7 @@ export declare namespace Models {
|
|
|
1474
1482
|
/**
|
|
1475
1483
|
* AlgoScryptModified
|
|
1476
1484
|
*/
|
|
1477
|
-
type AlgoScryptModified = {
|
|
1485
|
+
export type AlgoScryptModified = {
|
|
1478
1486
|
/**
|
|
1479
1487
|
* Algo type.
|
|
1480
1488
|
*/
|
|
@@ -1495,7 +1503,7 @@ export declare namespace Models {
|
|
|
1495
1503
|
/**
|
|
1496
1504
|
* AlgoArgon2
|
|
1497
1505
|
*/
|
|
1498
|
-
type AlgoArgon2 = {
|
|
1506
|
+
export type AlgoArgon2 = {
|
|
1499
1507
|
/**
|
|
1500
1508
|
* Algo type.
|
|
1501
1509
|
*/
|
|
@@ -1516,13 +1524,15 @@ export declare namespace Models {
|
|
|
1516
1524
|
/**
|
|
1517
1525
|
* Preferences
|
|
1518
1526
|
*/
|
|
1519
|
-
type Preferences = {
|
|
1527
|
+
export type Preferences = {};
|
|
1528
|
+
export type DefaultPreferences = Preferences & {
|
|
1520
1529
|
[key: string]: any;
|
|
1530
|
+
[__default]: true;
|
|
1521
1531
|
};
|
|
1522
1532
|
/**
|
|
1523
1533
|
* Session
|
|
1524
1534
|
*/
|
|
1525
|
-
type Session = {
|
|
1535
|
+
export type Session = {
|
|
1526
1536
|
/**
|
|
1527
1537
|
* Session ID.
|
|
1528
1538
|
*/
|
|
@@ -1643,7 +1653,7 @@ export declare namespace Models {
|
|
|
1643
1653
|
/**
|
|
1644
1654
|
* Identity
|
|
1645
1655
|
*/
|
|
1646
|
-
type Identity = {
|
|
1656
|
+
export type Identity = {
|
|
1647
1657
|
/**
|
|
1648
1658
|
* Identity ID.
|
|
1649
1659
|
*/
|
|
@@ -1688,7 +1698,7 @@ export declare namespace Models {
|
|
|
1688
1698
|
/**
|
|
1689
1699
|
* Token
|
|
1690
1700
|
*/
|
|
1691
|
-
type Token = {
|
|
1701
|
+
export type Token = {
|
|
1692
1702
|
/**
|
|
1693
1703
|
* Token ID.
|
|
1694
1704
|
*/
|
|
@@ -1717,7 +1727,7 @@ export declare namespace Models {
|
|
|
1717
1727
|
/**
|
|
1718
1728
|
* JWT
|
|
1719
1729
|
*/
|
|
1720
|
-
type Jwt = {
|
|
1730
|
+
export type Jwt = {
|
|
1721
1731
|
/**
|
|
1722
1732
|
* JWT encoded string.
|
|
1723
1733
|
*/
|
|
@@ -1726,7 +1736,7 @@ export declare namespace Models {
|
|
|
1726
1736
|
/**
|
|
1727
1737
|
* Locale
|
|
1728
1738
|
*/
|
|
1729
|
-
type Locale = {
|
|
1739
|
+
export type Locale = {
|
|
1730
1740
|
/**
|
|
1731
1741
|
* User IP address.
|
|
1732
1742
|
*/
|
|
@@ -1759,7 +1769,7 @@ export declare namespace Models {
|
|
|
1759
1769
|
/**
|
|
1760
1770
|
* LocaleCode
|
|
1761
1771
|
*/
|
|
1762
|
-
type LocaleCode = {
|
|
1772
|
+
export type LocaleCode = {
|
|
1763
1773
|
/**
|
|
1764
1774
|
* Locale codes in [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)
|
|
1765
1775
|
*/
|
|
@@ -1772,7 +1782,7 @@ export declare namespace Models {
|
|
|
1772
1782
|
/**
|
|
1773
1783
|
* File
|
|
1774
1784
|
*/
|
|
1775
|
-
type File = {
|
|
1785
|
+
export type File = {
|
|
1776
1786
|
/**
|
|
1777
1787
|
* File ID.
|
|
1778
1788
|
*/
|
|
@@ -1821,7 +1831,7 @@ export declare namespace Models {
|
|
|
1821
1831
|
/**
|
|
1822
1832
|
* Bucket
|
|
1823
1833
|
*/
|
|
1824
|
-
type Bucket = {
|
|
1834
|
+
export type Bucket = {
|
|
1825
1835
|
/**
|
|
1826
1836
|
* Bucket ID.
|
|
1827
1837
|
*/
|
|
@@ -1874,7 +1884,7 @@ export declare namespace Models {
|
|
|
1874
1884
|
/**
|
|
1875
1885
|
* ResourceToken
|
|
1876
1886
|
*/
|
|
1877
|
-
type ResourceToken = {
|
|
1887
|
+
export type ResourceToken = {
|
|
1878
1888
|
/**
|
|
1879
1889
|
* Token ID.
|
|
1880
1890
|
*/
|
|
@@ -1907,7 +1917,7 @@ export declare namespace Models {
|
|
|
1907
1917
|
/**
|
|
1908
1918
|
* Team
|
|
1909
1919
|
*/
|
|
1910
|
-
type Team<Preferences extends Models.Preferences> = {
|
|
1920
|
+
export type Team<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
1911
1921
|
/**
|
|
1912
1922
|
* Team ID.
|
|
1913
1923
|
*/
|
|
@@ -1936,7 +1946,7 @@ export declare namespace Models {
|
|
|
1936
1946
|
/**
|
|
1937
1947
|
* Membership
|
|
1938
1948
|
*/
|
|
1939
|
-
type Membership = {
|
|
1949
|
+
export type Membership = {
|
|
1940
1950
|
/**
|
|
1941
1951
|
* Membership ID.
|
|
1942
1952
|
*/
|
|
@@ -1993,7 +2003,7 @@ export declare namespace Models {
|
|
|
1993
2003
|
/**
|
|
1994
2004
|
* Site
|
|
1995
2005
|
*/
|
|
1996
|
-
type Site = {
|
|
2006
|
+
export type Site = {
|
|
1997
2007
|
/**
|
|
1998
2008
|
* Site ID.
|
|
1999
2009
|
*/
|
|
@@ -2114,7 +2124,7 @@ export declare namespace Models {
|
|
|
2114
2124
|
/**
|
|
2115
2125
|
* Template Site
|
|
2116
2126
|
*/
|
|
2117
|
-
type TemplateSite = {
|
|
2127
|
+
export type TemplateSite = {
|
|
2118
2128
|
/**
|
|
2119
2129
|
* Site Template ID.
|
|
2120
2130
|
*/
|
|
@@ -2171,7 +2181,7 @@ export declare namespace Models {
|
|
|
2171
2181
|
/**
|
|
2172
2182
|
* Template Framework
|
|
2173
2183
|
*/
|
|
2174
|
-
type TemplateFramework = {
|
|
2184
|
+
export type TemplateFramework = {
|
|
2175
2185
|
/**
|
|
2176
2186
|
* Parent framework key.
|
|
2177
2187
|
*/
|
|
@@ -2212,7 +2222,7 @@ export declare namespace Models {
|
|
|
2212
2222
|
/**
|
|
2213
2223
|
* Function
|
|
2214
2224
|
*/
|
|
2215
|
-
type Function = {
|
|
2225
|
+
export type Function = {
|
|
2216
2226
|
/**
|
|
2217
2227
|
* Function ID.
|
|
2218
2228
|
*/
|
|
@@ -2329,7 +2339,7 @@ export declare namespace Models {
|
|
|
2329
2339
|
/**
|
|
2330
2340
|
* Template Function
|
|
2331
2341
|
*/
|
|
2332
|
-
type TemplateFunction = {
|
|
2342
|
+
export type TemplateFunction = {
|
|
2333
2343
|
/**
|
|
2334
2344
|
* Function Template Icon.
|
|
2335
2345
|
*/
|
|
@@ -2402,7 +2412,7 @@ export declare namespace Models {
|
|
|
2402
2412
|
/**
|
|
2403
2413
|
* Template Runtime
|
|
2404
2414
|
*/
|
|
2405
|
-
type TemplateRuntime = {
|
|
2415
|
+
export type TemplateRuntime = {
|
|
2406
2416
|
/**
|
|
2407
2417
|
* Runtime Name.
|
|
2408
2418
|
*/
|
|
@@ -2423,7 +2433,7 @@ export declare namespace Models {
|
|
|
2423
2433
|
/**
|
|
2424
2434
|
* Template Variable
|
|
2425
2435
|
*/
|
|
2426
|
-
type TemplateVariable = {
|
|
2436
|
+
export type TemplateVariable = {
|
|
2427
2437
|
/**
|
|
2428
2438
|
* Variable Name.
|
|
2429
2439
|
*/
|
|
@@ -2456,7 +2466,7 @@ export declare namespace Models {
|
|
|
2456
2466
|
/**
|
|
2457
2467
|
* Installation
|
|
2458
2468
|
*/
|
|
2459
|
-
type Installation = {
|
|
2469
|
+
export type Installation = {
|
|
2460
2470
|
/**
|
|
2461
2471
|
* Function ID.
|
|
2462
2472
|
*/
|
|
@@ -2485,7 +2495,7 @@ export declare namespace Models {
|
|
|
2485
2495
|
/**
|
|
2486
2496
|
* ProviderRepository
|
|
2487
2497
|
*/
|
|
2488
|
-
type ProviderRepository = {
|
|
2498
|
+
export type ProviderRepository = {
|
|
2489
2499
|
/**
|
|
2490
2500
|
* VCS (Version Control System) repository ID.
|
|
2491
2501
|
*/
|
|
@@ -2506,6 +2516,10 @@ export declare namespace Models {
|
|
|
2506
2516
|
* Is VCS (Version Control System) repository private?
|
|
2507
2517
|
*/
|
|
2508
2518
|
private: boolean;
|
|
2519
|
+
/**
|
|
2520
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2521
|
+
*/
|
|
2522
|
+
defaultBranch: string;
|
|
2509
2523
|
/**
|
|
2510
2524
|
* Last commit date in ISO 8601 format.
|
|
2511
2525
|
*/
|
|
@@ -2514,7 +2528,7 @@ export declare namespace Models {
|
|
|
2514
2528
|
/**
|
|
2515
2529
|
* ProviderRepositoryFramework
|
|
2516
2530
|
*/
|
|
2517
|
-
type ProviderRepositoryFramework = {
|
|
2531
|
+
export type ProviderRepositoryFramework = {
|
|
2518
2532
|
/**
|
|
2519
2533
|
* VCS (Version Control System) repository ID.
|
|
2520
2534
|
*/
|
|
@@ -2535,6 +2549,10 @@ export declare namespace Models {
|
|
|
2535
2549
|
* Is VCS (Version Control System) repository private?
|
|
2536
2550
|
*/
|
|
2537
2551
|
private: boolean;
|
|
2552
|
+
/**
|
|
2553
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2554
|
+
*/
|
|
2555
|
+
defaultBranch: string;
|
|
2538
2556
|
/**
|
|
2539
2557
|
* Last commit date in ISO 8601 format.
|
|
2540
2558
|
*/
|
|
@@ -2547,7 +2565,7 @@ export declare namespace Models {
|
|
|
2547
2565
|
/**
|
|
2548
2566
|
* ProviderRepositoryRuntime
|
|
2549
2567
|
*/
|
|
2550
|
-
type ProviderRepositoryRuntime = {
|
|
2568
|
+
export type ProviderRepositoryRuntime = {
|
|
2551
2569
|
/**
|
|
2552
2570
|
* VCS (Version Control System) repository ID.
|
|
2553
2571
|
*/
|
|
@@ -2568,6 +2586,10 @@ export declare namespace Models {
|
|
|
2568
2586
|
* Is VCS (Version Control System) repository private?
|
|
2569
2587
|
*/
|
|
2570
2588
|
private: boolean;
|
|
2589
|
+
/**
|
|
2590
|
+
* VCS (Version Control System) repository's default branch name.
|
|
2591
|
+
*/
|
|
2592
|
+
defaultBranch: string;
|
|
2571
2593
|
/**
|
|
2572
2594
|
* Last commit date in ISO 8601 format.
|
|
2573
2595
|
*/
|
|
@@ -2580,7 +2602,7 @@ export declare namespace Models {
|
|
|
2580
2602
|
/**
|
|
2581
2603
|
* DetectionFramework
|
|
2582
2604
|
*/
|
|
2583
|
-
type DetectionFramework = {
|
|
2605
|
+
export type DetectionFramework = {
|
|
2584
2606
|
/**
|
|
2585
2607
|
* Framework
|
|
2586
2608
|
*/
|
|
@@ -2601,7 +2623,7 @@ export declare namespace Models {
|
|
|
2601
2623
|
/**
|
|
2602
2624
|
* DetectionRuntime
|
|
2603
2625
|
*/
|
|
2604
|
-
type DetectionRuntime = {
|
|
2626
|
+
export type DetectionRuntime = {
|
|
2605
2627
|
/**
|
|
2606
2628
|
* Runtime
|
|
2607
2629
|
*/
|
|
@@ -2618,7 +2640,7 @@ export declare namespace Models {
|
|
|
2618
2640
|
/**
|
|
2619
2641
|
* VcsContents
|
|
2620
2642
|
*/
|
|
2621
|
-
type VcsContent = {
|
|
2643
|
+
export type VcsContent = {
|
|
2622
2644
|
/**
|
|
2623
2645
|
* Content size in bytes. Only files have size, and for directories, 0 is returned.
|
|
2624
2646
|
*/
|
|
@@ -2635,7 +2657,7 @@ export declare namespace Models {
|
|
|
2635
2657
|
/**
|
|
2636
2658
|
* Branch
|
|
2637
2659
|
*/
|
|
2638
|
-
type Branch = {
|
|
2660
|
+
export type Branch = {
|
|
2639
2661
|
/**
|
|
2640
2662
|
* Branch Name.
|
|
2641
2663
|
*/
|
|
@@ -2644,7 +2666,7 @@ export declare namespace Models {
|
|
|
2644
2666
|
/**
|
|
2645
2667
|
* Runtime
|
|
2646
2668
|
*/
|
|
2647
|
-
type Runtime = {
|
|
2669
|
+
export type Runtime = {
|
|
2648
2670
|
/**
|
|
2649
2671
|
* Runtime ID.
|
|
2650
2672
|
*/
|
|
@@ -2681,7 +2703,7 @@ export declare namespace Models {
|
|
|
2681
2703
|
/**
|
|
2682
2704
|
* Framework
|
|
2683
2705
|
*/
|
|
2684
|
-
type Framework = {
|
|
2706
|
+
export type Framework = {
|
|
2685
2707
|
/**
|
|
2686
2708
|
* Framework key.
|
|
2687
2709
|
*/
|
|
@@ -2706,7 +2728,7 @@ export declare namespace Models {
|
|
|
2706
2728
|
/**
|
|
2707
2729
|
* Framework Adapter
|
|
2708
2730
|
*/
|
|
2709
|
-
type FrameworkAdapter = {
|
|
2731
|
+
export type FrameworkAdapter = {
|
|
2710
2732
|
/**
|
|
2711
2733
|
* Adapter key.
|
|
2712
2734
|
*/
|
|
@@ -2731,7 +2753,7 @@ export declare namespace Models {
|
|
|
2731
2753
|
/**
|
|
2732
2754
|
* Deployment
|
|
2733
2755
|
*/
|
|
2734
|
-
type Deployment = {
|
|
2756
|
+
export type Deployment = {
|
|
2735
2757
|
/**
|
|
2736
2758
|
* Deployment ID.
|
|
2737
2759
|
*/
|
|
@@ -2844,7 +2866,7 @@ export declare namespace Models {
|
|
|
2844
2866
|
/**
|
|
2845
2867
|
* Execution
|
|
2846
2868
|
*/
|
|
2847
|
-
type Execution = {
|
|
2869
|
+
export type Execution = {
|
|
2848
2870
|
/**
|
|
2849
2871
|
* Execution ID.
|
|
2850
2872
|
*/
|
|
@@ -2917,7 +2939,7 @@ export declare namespace Models {
|
|
|
2917
2939
|
/**
|
|
2918
2940
|
* Project
|
|
2919
2941
|
*/
|
|
2920
|
-
type Project = {
|
|
2942
|
+
export type Project = {
|
|
2921
2943
|
/**
|
|
2922
2944
|
* Project ID.
|
|
2923
2945
|
*/
|
|
@@ -3166,7 +3188,7 @@ export declare namespace Models {
|
|
|
3166
3188
|
/**
|
|
3167
3189
|
* Webhook
|
|
3168
3190
|
*/
|
|
3169
|
-
type Webhook = {
|
|
3191
|
+
export type Webhook = {
|
|
3170
3192
|
/**
|
|
3171
3193
|
* Webhook ID.
|
|
3172
3194
|
*/
|
|
@@ -3223,7 +3245,7 @@ export declare namespace Models {
|
|
|
3223
3245
|
/**
|
|
3224
3246
|
* Key
|
|
3225
3247
|
*/
|
|
3226
|
-
type Key = {
|
|
3248
|
+
export type Key = {
|
|
3227
3249
|
/**
|
|
3228
3250
|
* Key ID.
|
|
3229
3251
|
*/
|
|
@@ -3264,7 +3286,7 @@ export declare namespace Models {
|
|
|
3264
3286
|
/**
|
|
3265
3287
|
* DevKey
|
|
3266
3288
|
*/
|
|
3267
|
-
type DevKey = {
|
|
3289
|
+
export type DevKey = {
|
|
3268
3290
|
/**
|
|
3269
3291
|
* Key ID.
|
|
3270
3292
|
*/
|
|
@@ -3301,7 +3323,7 @@ export declare namespace Models {
|
|
|
3301
3323
|
/**
|
|
3302
3324
|
* Mock Number
|
|
3303
3325
|
*/
|
|
3304
|
-
type MockNumber = {
|
|
3326
|
+
export type MockNumber = {
|
|
3305
3327
|
/**
|
|
3306
3328
|
* Mock phone number for testing phone authentication. Useful for testing phone authentication without sending an SMS.
|
|
3307
3329
|
*/
|
|
@@ -3314,7 +3336,7 @@ export declare namespace Models {
|
|
|
3314
3336
|
/**
|
|
3315
3337
|
* AuthProvider
|
|
3316
3338
|
*/
|
|
3317
|
-
type AuthProvider = {
|
|
3339
|
+
export type AuthProvider = {
|
|
3318
3340
|
/**
|
|
3319
3341
|
* Auth Provider.
|
|
3320
3342
|
*/
|
|
@@ -3339,7 +3361,7 @@ export declare namespace Models {
|
|
|
3339
3361
|
/**
|
|
3340
3362
|
* Platform
|
|
3341
3363
|
*/
|
|
3342
|
-
type Platform = {
|
|
3364
|
+
export type Platform = {
|
|
3343
3365
|
/**
|
|
3344
3366
|
* Platform ID.
|
|
3345
3367
|
*/
|
|
@@ -3384,7 +3406,7 @@ export declare namespace Models {
|
|
|
3384
3406
|
/**
|
|
3385
3407
|
* Variable
|
|
3386
3408
|
*/
|
|
3387
|
-
type Variable = {
|
|
3409
|
+
export type Variable = {
|
|
3388
3410
|
/**
|
|
3389
3411
|
* Variable ID.
|
|
3390
3412
|
*/
|
|
@@ -3421,7 +3443,7 @@ export declare namespace Models {
|
|
|
3421
3443
|
/**
|
|
3422
3444
|
* Country
|
|
3423
3445
|
*/
|
|
3424
|
-
type Country = {
|
|
3446
|
+
export type Country = {
|
|
3425
3447
|
/**
|
|
3426
3448
|
* Country name.
|
|
3427
3449
|
*/
|
|
@@ -3434,7 +3456,7 @@ export declare namespace Models {
|
|
|
3434
3456
|
/**
|
|
3435
3457
|
* Continent
|
|
3436
3458
|
*/
|
|
3437
|
-
type Continent = {
|
|
3459
|
+
export type Continent = {
|
|
3438
3460
|
/**
|
|
3439
3461
|
* Continent name.
|
|
3440
3462
|
*/
|
|
@@ -3447,7 +3469,7 @@ export declare namespace Models {
|
|
|
3447
3469
|
/**
|
|
3448
3470
|
* Language
|
|
3449
3471
|
*/
|
|
3450
|
-
type Language = {
|
|
3472
|
+
export type Language = {
|
|
3451
3473
|
/**
|
|
3452
3474
|
* Language name.
|
|
3453
3475
|
*/
|
|
@@ -3464,7 +3486,7 @@ export declare namespace Models {
|
|
|
3464
3486
|
/**
|
|
3465
3487
|
* Currency
|
|
3466
3488
|
*/
|
|
3467
|
-
type Currency = {
|
|
3489
|
+
export type Currency = {
|
|
3468
3490
|
/**
|
|
3469
3491
|
* Currency symbol.
|
|
3470
3492
|
*/
|
|
@@ -3497,7 +3519,7 @@ export declare namespace Models {
|
|
|
3497
3519
|
/**
|
|
3498
3520
|
* Phone
|
|
3499
3521
|
*/
|
|
3500
|
-
type Phone = {
|
|
3522
|
+
export type Phone = {
|
|
3501
3523
|
/**
|
|
3502
3524
|
* Phone code.
|
|
3503
3525
|
*/
|
|
@@ -3514,7 +3536,7 @@ export declare namespace Models {
|
|
|
3514
3536
|
/**
|
|
3515
3537
|
* Health Antivirus
|
|
3516
3538
|
*/
|
|
3517
|
-
type HealthAntivirus = {
|
|
3539
|
+
export type HealthAntivirus = {
|
|
3518
3540
|
/**
|
|
3519
3541
|
* Antivirus version.
|
|
3520
3542
|
*/
|
|
@@ -3527,7 +3549,7 @@ export declare namespace Models {
|
|
|
3527
3549
|
/**
|
|
3528
3550
|
* Health Queue
|
|
3529
3551
|
*/
|
|
3530
|
-
type HealthQueue = {
|
|
3552
|
+
export type HealthQueue = {
|
|
3531
3553
|
/**
|
|
3532
3554
|
* Amount of actions in the queue.
|
|
3533
3555
|
*/
|
|
@@ -3536,7 +3558,7 @@ export declare namespace Models {
|
|
|
3536
3558
|
/**
|
|
3537
3559
|
* Health Status
|
|
3538
3560
|
*/
|
|
3539
|
-
type HealthStatus = {
|
|
3561
|
+
export type HealthStatus = {
|
|
3540
3562
|
/**
|
|
3541
3563
|
* Name of the service.
|
|
3542
3564
|
*/
|
|
@@ -3553,7 +3575,7 @@ export declare namespace Models {
|
|
|
3553
3575
|
/**
|
|
3554
3576
|
* Health Certificate
|
|
3555
3577
|
*/
|
|
3556
|
-
type HealthCertificate = {
|
|
3578
|
+
export type HealthCertificate = {
|
|
3557
3579
|
/**
|
|
3558
3580
|
* Certificate name
|
|
3559
3581
|
*/
|
|
@@ -3582,7 +3604,7 @@ export declare namespace Models {
|
|
|
3582
3604
|
/**
|
|
3583
3605
|
* Health Time
|
|
3584
3606
|
*/
|
|
3585
|
-
type HealthTime = {
|
|
3607
|
+
export type HealthTime = {
|
|
3586
3608
|
/**
|
|
3587
3609
|
* Current unix timestamp on trustful remote server.
|
|
3588
3610
|
*/
|
|
@@ -3599,7 +3621,7 @@ export declare namespace Models {
|
|
|
3599
3621
|
/**
|
|
3600
3622
|
* Metric
|
|
3601
3623
|
*/
|
|
3602
|
-
type Metric = {
|
|
3624
|
+
export type Metric = {
|
|
3603
3625
|
/**
|
|
3604
3626
|
* The value of this metric at the timestamp.
|
|
3605
3627
|
*/
|
|
@@ -3612,7 +3634,7 @@ export declare namespace Models {
|
|
|
3612
3634
|
/**
|
|
3613
3635
|
* Metric Breakdown
|
|
3614
3636
|
*/
|
|
3615
|
-
type MetricBreakdown = {
|
|
3637
|
+
export type MetricBreakdown = {
|
|
3616
3638
|
/**
|
|
3617
3639
|
* Resource ID.
|
|
3618
3640
|
*/
|
|
@@ -3633,7 +3655,7 @@ export declare namespace Models {
|
|
|
3633
3655
|
/**
|
|
3634
3656
|
* UsageDatabases
|
|
3635
3657
|
*/
|
|
3636
|
-
type UsageDatabases = {
|
|
3658
|
+
export type UsageDatabases = {
|
|
3637
3659
|
/**
|
|
3638
3660
|
* Time range of the usage stats.
|
|
3639
3661
|
*/
|
|
@@ -3690,7 +3712,7 @@ export declare namespace Models {
|
|
|
3690
3712
|
/**
|
|
3691
3713
|
* UsageDatabase
|
|
3692
3714
|
*/
|
|
3693
|
-
type UsageDatabase = {
|
|
3715
|
+
export type UsageDatabase = {
|
|
3694
3716
|
/**
|
|
3695
3717
|
* Time range of the usage stats.
|
|
3696
3718
|
*/
|
|
@@ -3739,7 +3761,7 @@ export declare namespace Models {
|
|
|
3739
3761
|
/**
|
|
3740
3762
|
* UsageCollection
|
|
3741
3763
|
*/
|
|
3742
|
-
type UsageCollection = {
|
|
3764
|
+
export type UsageCollection = {
|
|
3743
3765
|
/**
|
|
3744
3766
|
* Time range of the usage stats.
|
|
3745
3767
|
*/
|
|
@@ -3756,7 +3778,7 @@ export declare namespace Models {
|
|
|
3756
3778
|
/**
|
|
3757
3779
|
* UsageUsers
|
|
3758
3780
|
*/
|
|
3759
|
-
type UsageUsers = {
|
|
3781
|
+
export type UsageUsers = {
|
|
3760
3782
|
/**
|
|
3761
3783
|
* Time range of the usage stats.
|
|
3762
3784
|
*/
|
|
@@ -3781,7 +3803,7 @@ export declare namespace Models {
|
|
|
3781
3803
|
/**
|
|
3782
3804
|
* StorageUsage
|
|
3783
3805
|
*/
|
|
3784
|
-
type UsageStorage = {
|
|
3806
|
+
export type UsageStorage = {
|
|
3785
3807
|
/**
|
|
3786
3808
|
* Time range of the usage stats.
|
|
3787
3809
|
*/
|
|
@@ -3814,7 +3836,7 @@ export declare namespace Models {
|
|
|
3814
3836
|
/**
|
|
3815
3837
|
* UsageBuckets
|
|
3816
3838
|
*/
|
|
3817
|
-
type UsageBuckets = {
|
|
3839
|
+
export type UsageBuckets = {
|
|
3818
3840
|
/**
|
|
3819
3841
|
* Time range of the usage stats.
|
|
3820
3842
|
*/
|
|
@@ -3847,7 +3869,7 @@ export declare namespace Models {
|
|
|
3847
3869
|
/**
|
|
3848
3870
|
* UsageFunctions
|
|
3849
3871
|
*/
|
|
3850
|
-
type UsageFunctions = {
|
|
3872
|
+
export type UsageFunctions = {
|
|
3851
3873
|
/**
|
|
3852
3874
|
* Time range of the usage stats.
|
|
3853
3875
|
*/
|
|
@@ -3952,7 +3974,7 @@ export declare namespace Models {
|
|
|
3952
3974
|
/**
|
|
3953
3975
|
* UsageFunction
|
|
3954
3976
|
*/
|
|
3955
|
-
type UsageFunction = {
|
|
3977
|
+
export type UsageFunction = {
|
|
3956
3978
|
/**
|
|
3957
3979
|
* The time range of the usage stats.
|
|
3958
3980
|
*/
|
|
@@ -4053,7 +4075,7 @@ export declare namespace Models {
|
|
|
4053
4075
|
/**
|
|
4054
4076
|
* UsageSites
|
|
4055
4077
|
*/
|
|
4056
|
-
type UsageSites = {
|
|
4078
|
+
export type UsageSites = {
|
|
4057
4079
|
/**
|
|
4058
4080
|
* Time range of the usage stats.
|
|
4059
4081
|
*/
|
|
@@ -4182,7 +4204,7 @@ export declare namespace Models {
|
|
|
4182
4204
|
/**
|
|
4183
4205
|
* UsageSite
|
|
4184
4206
|
*/
|
|
4185
|
-
type UsageSite = {
|
|
4207
|
+
export type UsageSite = {
|
|
4186
4208
|
/**
|
|
4187
4209
|
* The time range of the usage stats.
|
|
4188
4210
|
*/
|
|
@@ -4307,7 +4329,7 @@ export declare namespace Models {
|
|
|
4307
4329
|
/**
|
|
4308
4330
|
* UsageProject
|
|
4309
4331
|
*/
|
|
4310
|
-
type UsageProject = {
|
|
4332
|
+
export type UsageProject = {
|
|
4311
4333
|
/**
|
|
4312
4334
|
* Total aggregated number of function executions.
|
|
4313
4335
|
*/
|
|
@@ -4444,7 +4466,7 @@ export declare namespace Models {
|
|
|
4444
4466
|
/**
|
|
4445
4467
|
* Headers
|
|
4446
4468
|
*/
|
|
4447
|
-
type Headers = {
|
|
4469
|
+
export type Headers = {
|
|
4448
4470
|
/**
|
|
4449
4471
|
* Header name.
|
|
4450
4472
|
*/
|
|
@@ -4457,7 +4479,7 @@ export declare namespace Models {
|
|
|
4457
4479
|
/**
|
|
4458
4480
|
* Specification
|
|
4459
4481
|
*/
|
|
4460
|
-
type Specification = {
|
|
4482
|
+
export type Specification = {
|
|
4461
4483
|
/**
|
|
4462
4484
|
* Memory size in MB.
|
|
4463
4485
|
*/
|
|
@@ -4478,7 +4500,7 @@ export declare namespace Models {
|
|
|
4478
4500
|
/**
|
|
4479
4501
|
* Rule
|
|
4480
4502
|
*/
|
|
4481
|
-
type ProxyRule = {
|
|
4503
|
+
export type ProxyRule = {
|
|
4482
4504
|
/**
|
|
4483
4505
|
* Rule ID.
|
|
4484
4506
|
*/
|
|
@@ -4543,7 +4565,7 @@ export declare namespace Models {
|
|
|
4543
4565
|
/**
|
|
4544
4566
|
* SmsTemplate
|
|
4545
4567
|
*/
|
|
4546
|
-
type SmsTemplate = {
|
|
4568
|
+
export type SmsTemplate = {
|
|
4547
4569
|
/**
|
|
4548
4570
|
* Template type
|
|
4549
4571
|
*/
|
|
@@ -4560,7 +4582,7 @@ export declare namespace Models {
|
|
|
4560
4582
|
/**
|
|
4561
4583
|
* EmailTemplate
|
|
4562
4584
|
*/
|
|
4563
|
-
type EmailTemplate = {
|
|
4585
|
+
export type EmailTemplate = {
|
|
4564
4586
|
/**
|
|
4565
4587
|
* Template type
|
|
4566
4588
|
*/
|
|
@@ -4593,7 +4615,7 @@ export declare namespace Models {
|
|
|
4593
4615
|
/**
|
|
4594
4616
|
* Console Variables
|
|
4595
4617
|
*/
|
|
4596
|
-
type ConsoleVariables = {
|
|
4618
|
+
export type ConsoleVariables = {
|
|
4597
4619
|
/**
|
|
4598
4620
|
* CNAME target for your Appwrite custom domains.
|
|
4599
4621
|
*/
|
|
@@ -4650,7 +4672,7 @@ export declare namespace Models {
|
|
|
4650
4672
|
/**
|
|
4651
4673
|
* MFA Challenge
|
|
4652
4674
|
*/
|
|
4653
|
-
type MfaChallenge = {
|
|
4675
|
+
export type MfaChallenge = {
|
|
4654
4676
|
/**
|
|
4655
4677
|
* Token ID.
|
|
4656
4678
|
*/
|
|
@@ -4671,7 +4693,7 @@ export declare namespace Models {
|
|
|
4671
4693
|
/**
|
|
4672
4694
|
* MFA Recovery Codes
|
|
4673
4695
|
*/
|
|
4674
|
-
type MfaRecoveryCodes = {
|
|
4696
|
+
export type MfaRecoveryCodes = {
|
|
4675
4697
|
/**
|
|
4676
4698
|
* Recovery codes.
|
|
4677
4699
|
*/
|
|
@@ -4680,7 +4702,7 @@ export declare namespace Models {
|
|
|
4680
4702
|
/**
|
|
4681
4703
|
* MFAType
|
|
4682
4704
|
*/
|
|
4683
|
-
type MfaType = {
|
|
4705
|
+
export type MfaType = {
|
|
4684
4706
|
/**
|
|
4685
4707
|
* Secret token used for TOTP factor.
|
|
4686
4708
|
*/
|
|
@@ -4693,7 +4715,7 @@ export declare namespace Models {
|
|
|
4693
4715
|
/**
|
|
4694
4716
|
* MFAFactors
|
|
4695
4717
|
*/
|
|
4696
|
-
type MfaFactors = {
|
|
4718
|
+
export type MfaFactors = {
|
|
4697
4719
|
/**
|
|
4698
4720
|
* Can TOTP be used for MFA challenge for this account.
|
|
4699
4721
|
*/
|
|
@@ -4714,7 +4736,7 @@ export declare namespace Models {
|
|
|
4714
4736
|
/**
|
|
4715
4737
|
* Provider
|
|
4716
4738
|
*/
|
|
4717
|
-
type Provider = {
|
|
4739
|
+
export type Provider = {
|
|
4718
4740
|
/**
|
|
4719
4741
|
* Provider ID.
|
|
4720
4742
|
*/
|
|
@@ -4755,7 +4777,7 @@ export declare namespace Models {
|
|
|
4755
4777
|
/**
|
|
4756
4778
|
* Message
|
|
4757
4779
|
*/
|
|
4758
|
-
type Message = {
|
|
4780
|
+
export type Message = {
|
|
4759
4781
|
/**
|
|
4760
4782
|
* Message ID.
|
|
4761
4783
|
*/
|
|
@@ -4812,7 +4834,7 @@ export declare namespace Models {
|
|
|
4812
4834
|
/**
|
|
4813
4835
|
* Topic
|
|
4814
4836
|
*/
|
|
4815
|
-
type Topic = {
|
|
4837
|
+
export type Topic = {
|
|
4816
4838
|
/**
|
|
4817
4839
|
* Topic ID.
|
|
4818
4840
|
*/
|
|
@@ -4849,7 +4871,7 @@ export declare namespace Models {
|
|
|
4849
4871
|
/**
|
|
4850
4872
|
* Subscriber
|
|
4851
4873
|
*/
|
|
4852
|
-
type Subscriber = {
|
|
4874
|
+
export type Subscriber = {
|
|
4853
4875
|
/**
|
|
4854
4876
|
* Subscriber ID.
|
|
4855
4877
|
*/
|
|
@@ -4890,7 +4912,7 @@ export declare namespace Models {
|
|
|
4890
4912
|
/**
|
|
4891
4913
|
* Target
|
|
4892
4914
|
*/
|
|
4893
|
-
type Target = {
|
|
4915
|
+
export type Target = {
|
|
4894
4916
|
/**
|
|
4895
4917
|
* Target ID.
|
|
4896
4918
|
*/
|
|
@@ -4931,7 +4953,7 @@ export declare namespace Models {
|
|
|
4931
4953
|
/**
|
|
4932
4954
|
* Migration
|
|
4933
4955
|
*/
|
|
4934
|
-
type Migration = {
|
|
4956
|
+
export type Migration = {
|
|
4935
4957
|
/**
|
|
4936
4958
|
* Migration ID.
|
|
4937
4959
|
*/
|
|
@@ -4984,7 +5006,7 @@ export declare namespace Models {
|
|
|
4984
5006
|
/**
|
|
4985
5007
|
* Migration Report
|
|
4986
5008
|
*/
|
|
4987
|
-
type MigrationReport = {
|
|
5009
|
+
export type MigrationReport = {
|
|
4988
5010
|
/**
|
|
4989
5011
|
* Number of users to be migrated.
|
|
4990
5012
|
*/
|
|
@@ -5025,7 +5047,7 @@ export declare namespace Models {
|
|
|
5025
5047
|
/**
|
|
5026
5048
|
* AdditionalResource
|
|
5027
5049
|
*/
|
|
5028
|
-
type AdditionalResource = {
|
|
5050
|
+
export type AdditionalResource = {
|
|
5029
5051
|
/**
|
|
5030
5052
|
* Resource unit
|
|
5031
5053
|
*/
|
|
@@ -5046,7 +5068,7 @@ export declare namespace Models {
|
|
|
5046
5068
|
/**
|
|
5047
5069
|
* AggregationTeam
|
|
5048
5070
|
*/
|
|
5049
|
-
type AggregationTeam = {
|
|
5071
|
+
export type AggregationTeam = {
|
|
5050
5072
|
/**
|
|
5051
5073
|
* Aggregation ID.
|
|
5052
5074
|
*/
|
|
@@ -5151,7 +5173,7 @@ export declare namespace Models {
|
|
|
5151
5173
|
/**
|
|
5152
5174
|
* Archive
|
|
5153
5175
|
*/
|
|
5154
|
-
type BackupArchive = {
|
|
5176
|
+
export type BackupArchive = {
|
|
5155
5177
|
/**
|
|
5156
5178
|
* Archive ID.
|
|
5157
5179
|
*/
|
|
@@ -5204,7 +5226,7 @@ export declare namespace Models {
|
|
|
5204
5226
|
/**
|
|
5205
5227
|
* BillingAddress
|
|
5206
5228
|
*/
|
|
5207
|
-
type BillingAddress = {
|
|
5229
|
+
export type BillingAddress = {
|
|
5208
5230
|
/**
|
|
5209
5231
|
* Region ID
|
|
5210
5232
|
*/
|
|
@@ -5241,7 +5263,7 @@ export declare namespace Models {
|
|
|
5241
5263
|
/**
|
|
5242
5264
|
* billingPlan
|
|
5243
5265
|
*/
|
|
5244
|
-
type BillingPlan = {
|
|
5266
|
+
export type BillingPlan = {
|
|
5245
5267
|
/**
|
|
5246
5268
|
* Plan ID.
|
|
5247
5269
|
*/
|
|
@@ -5286,6 +5308,10 @@ export declare namespace Models {
|
|
|
5286
5308
|
* Webhooks
|
|
5287
5309
|
*/
|
|
5288
5310
|
webhooks: number;
|
|
5311
|
+
/**
|
|
5312
|
+
* Projects
|
|
5313
|
+
*/
|
|
5314
|
+
projects: number;
|
|
5289
5315
|
/**
|
|
5290
5316
|
* Platofrms
|
|
5291
5317
|
*/
|
|
@@ -5374,6 +5400,10 @@ export declare namespace Models {
|
|
|
5374
5400
|
* Does plan support mock numbers
|
|
5375
5401
|
*/
|
|
5376
5402
|
supportsMockNumbers: boolean;
|
|
5403
|
+
/**
|
|
5404
|
+
* Does plan support organization roles
|
|
5405
|
+
*/
|
|
5406
|
+
supportsOrganizationRoles: boolean;
|
|
5377
5407
|
/**
|
|
5378
5408
|
* Does plan support credit
|
|
5379
5409
|
*/
|
|
@@ -5394,11 +5424,15 @@ export declare namespace Models {
|
|
|
5394
5424
|
* Maximum function and site deployment size in MB
|
|
5395
5425
|
*/
|
|
5396
5426
|
buildSize: number;
|
|
5427
|
+
/**
|
|
5428
|
+
* Does the plan support encrypted string attributes or not.
|
|
5429
|
+
*/
|
|
5430
|
+
databasesAllowEncrypt: boolean;
|
|
5397
5431
|
};
|
|
5398
5432
|
/**
|
|
5399
5433
|
* BillingPlanAddon
|
|
5400
5434
|
*/
|
|
5401
|
-
type BillingPlanAddon = {
|
|
5435
|
+
export type BillingPlanAddon = {
|
|
5402
5436
|
/**
|
|
5403
5437
|
* Addon seats
|
|
5404
5438
|
*/
|
|
@@ -5407,7 +5441,7 @@ export declare namespace Models {
|
|
|
5407
5441
|
/**
|
|
5408
5442
|
* BillingPlanAddonDetails
|
|
5409
5443
|
*/
|
|
5410
|
-
type BillingPlanAddonDetails = {
|
|
5444
|
+
export type BillingPlanAddonDetails = {
|
|
5411
5445
|
/**
|
|
5412
5446
|
* Is the addon supported in the plan?
|
|
5413
5447
|
*/
|
|
@@ -5436,7 +5470,7 @@ export declare namespace Models {
|
|
|
5436
5470
|
/**
|
|
5437
5471
|
* BillingLimits
|
|
5438
5472
|
*/
|
|
5439
|
-
type BillingLimits = {
|
|
5473
|
+
export type BillingLimits = {
|
|
5440
5474
|
/**
|
|
5441
5475
|
* Bandwidth limit
|
|
5442
5476
|
*/
|
|
@@ -5469,7 +5503,7 @@ export declare namespace Models {
|
|
|
5469
5503
|
/**
|
|
5470
5504
|
* Campaign
|
|
5471
5505
|
*/
|
|
5472
|
-
type Campaign = {
|
|
5506
|
+
export type Campaign = {
|
|
5473
5507
|
/**
|
|
5474
5508
|
* Campaign ID
|
|
5475
5509
|
*/
|
|
@@ -5522,7 +5556,7 @@ export declare namespace Models {
|
|
|
5522
5556
|
/**
|
|
5523
5557
|
* Coupon
|
|
5524
5558
|
*/
|
|
5525
|
-
type Coupon = {
|
|
5559
|
+
export type Coupon = {
|
|
5526
5560
|
/**
|
|
5527
5561
|
* coupon ID
|
|
5528
5562
|
*/
|
|
@@ -5559,7 +5593,7 @@ export declare namespace Models {
|
|
|
5559
5593
|
/**
|
|
5560
5594
|
* Credit
|
|
5561
5595
|
*/
|
|
5562
|
-
type Credit = {
|
|
5596
|
+
export type Credit = {
|
|
5563
5597
|
/**
|
|
5564
5598
|
* Credit ID.
|
|
5565
5599
|
*/
|
|
@@ -5605,10 +5639,19 @@ export declare namespace Models {
|
|
|
5605
5639
|
*/
|
|
5606
5640
|
status: string;
|
|
5607
5641
|
};
|
|
5642
|
+
/**
|
|
5643
|
+
* CreditAvailable
|
|
5644
|
+
*/
|
|
5645
|
+
export type CreditAvailable = {
|
|
5646
|
+
/**
|
|
5647
|
+
* Total available credits for the organization.
|
|
5648
|
+
*/
|
|
5649
|
+
available: number;
|
|
5650
|
+
};
|
|
5608
5651
|
/**
|
|
5609
5652
|
* CreditList
|
|
5610
5653
|
*/
|
|
5611
|
-
type CreditList = {
|
|
5654
|
+
export type CreditList = {
|
|
5612
5655
|
/**
|
|
5613
5656
|
* Credits
|
|
5614
5657
|
*/
|
|
@@ -5625,7 +5668,7 @@ export declare namespace Models {
|
|
|
5625
5668
|
/**
|
|
5626
5669
|
* Invoice
|
|
5627
5670
|
*/
|
|
5628
|
-
type Invoice = {
|
|
5671
|
+
export type Invoice = {
|
|
5629
5672
|
/**
|
|
5630
5673
|
* Invoice ID.
|
|
5631
5674
|
*/
|
|
@@ -5718,7 +5761,7 @@ export declare namespace Models {
|
|
|
5718
5761
|
/**
|
|
5719
5762
|
* Organization
|
|
5720
5763
|
*/
|
|
5721
|
-
type Organization<Preferences extends Models.Preferences> = {
|
|
5764
|
+
export type Organization<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
5722
5765
|
/**
|
|
5723
5766
|
* Team ID.
|
|
5724
5767
|
*/
|
|
@@ -5832,9 +5875,9 @@ export declare namespace Models {
|
|
|
5832
5875
|
*/
|
|
5833
5876
|
billingLimits: BillingLimits;
|
|
5834
5877
|
/**
|
|
5835
|
-
* Billing plan downgrade
|
|
5878
|
+
* Billing plan selected for downgrade.
|
|
5836
5879
|
*/
|
|
5837
|
-
billingPlanDowngrade:
|
|
5880
|
+
billingPlanDowngrade: string;
|
|
5838
5881
|
/**
|
|
5839
5882
|
* Tax Id
|
|
5840
5883
|
*/
|
|
@@ -5843,11 +5886,15 @@ export declare namespace Models {
|
|
|
5843
5886
|
* Marked for deletion
|
|
5844
5887
|
*/
|
|
5845
5888
|
markedForDeletion: boolean;
|
|
5889
|
+
/**
|
|
5890
|
+
* Selected projects
|
|
5891
|
+
*/
|
|
5892
|
+
projects: string[];
|
|
5846
5893
|
};
|
|
5847
5894
|
/**
|
|
5848
5895
|
* paymentMethod
|
|
5849
5896
|
*/
|
|
5850
|
-
type PaymentMethod = {
|
|
5897
|
+
export type PaymentMethod = {
|
|
5851
5898
|
/**
|
|
5852
5899
|
* Payment Method ID.
|
|
5853
5900
|
*/
|
|
@@ -5928,7 +5975,7 @@ export declare namespace Models {
|
|
|
5928
5975
|
/**
|
|
5929
5976
|
* backup
|
|
5930
5977
|
*/
|
|
5931
|
-
type BackupPolicy = {
|
|
5978
|
+
export type BackupPolicy = {
|
|
5932
5979
|
/**
|
|
5933
5980
|
* Backup policy ID.
|
|
5934
5981
|
*/
|
|
@@ -5977,7 +6024,7 @@ export declare namespace Models {
|
|
|
5977
6024
|
/**
|
|
5978
6025
|
* Region
|
|
5979
6026
|
*/
|
|
5980
|
-
type ConsoleRegion = {
|
|
6027
|
+
export type ConsoleRegion = {
|
|
5981
6028
|
/**
|
|
5982
6029
|
* Region ID
|
|
5983
6030
|
*/
|
|
@@ -6006,7 +6053,7 @@ export declare namespace Models {
|
|
|
6006
6053
|
/**
|
|
6007
6054
|
* Restoration
|
|
6008
6055
|
*/
|
|
6009
|
-
type BackupRestoration = {
|
|
6056
|
+
export type BackupRestoration = {
|
|
6010
6057
|
/**
|
|
6011
6058
|
* Restoration ID.
|
|
6012
6059
|
*/
|
|
@@ -6055,7 +6102,7 @@ export declare namespace Models {
|
|
|
6055
6102
|
/**
|
|
6056
6103
|
* Review
|
|
6057
6104
|
*/
|
|
6058
|
-
type Review = {
|
|
6105
|
+
export type Review = {
|
|
6059
6106
|
/**
|
|
6060
6107
|
* Name of user
|
|
6061
6108
|
*/
|
|
@@ -6076,7 +6123,7 @@ export declare namespace Models {
|
|
|
6076
6123
|
/**
|
|
6077
6124
|
* Roles
|
|
6078
6125
|
*/
|
|
6079
|
-
type Roles = {
|
|
6126
|
+
export type Roles = {
|
|
6080
6127
|
/**
|
|
6081
6128
|
* Array of scopes accessible to current user.
|
|
6082
6129
|
*/
|
|
@@ -6086,10 +6133,168 @@ export declare namespace Models {
|
|
|
6086
6133
|
*/
|
|
6087
6134
|
roles: string[];
|
|
6088
6135
|
};
|
|
6136
|
+
/**
|
|
6137
|
+
* UsageOrganization
|
|
6138
|
+
*/
|
|
6139
|
+
export type UsageOrganization = {
|
|
6140
|
+
/**
|
|
6141
|
+
* Aggregated stats for number of requests.
|
|
6142
|
+
*/
|
|
6143
|
+
bandwidth: Metric[];
|
|
6144
|
+
/**
|
|
6145
|
+
* Aggregated stats for consumed bandwidth.
|
|
6146
|
+
*/
|
|
6147
|
+
users: Metric[];
|
|
6148
|
+
/**
|
|
6149
|
+
* Aggregated stats for function executions.
|
|
6150
|
+
*/
|
|
6151
|
+
executions: Metric[];
|
|
6152
|
+
/**
|
|
6153
|
+
* Aggregated stats for database reads.
|
|
6154
|
+
*/
|
|
6155
|
+
databasesReads: Metric[];
|
|
6156
|
+
/**
|
|
6157
|
+
* Aggregated stats for database writes.
|
|
6158
|
+
*/
|
|
6159
|
+
databasesWrites: Metric[];
|
|
6160
|
+
/**
|
|
6161
|
+
* Aggregated stats for file transformations.
|
|
6162
|
+
*/
|
|
6163
|
+
imageTransformations: Metric[];
|
|
6164
|
+
/**
|
|
6165
|
+
* Aggregated stats for total file transformations.
|
|
6166
|
+
*/
|
|
6167
|
+
imageTransformationsTotal: number;
|
|
6168
|
+
/**
|
|
6169
|
+
* Aggregated stats for total users.
|
|
6170
|
+
*/
|
|
6171
|
+
usersTotal: number;
|
|
6172
|
+
/**
|
|
6173
|
+
* Aggregated stats for total executions.
|
|
6174
|
+
*/
|
|
6175
|
+
executionsTotal: number;
|
|
6176
|
+
/**
|
|
6177
|
+
* Aggregated stats for function executions in mb seconds.
|
|
6178
|
+
*/
|
|
6179
|
+
executionsMBSecondsTotal: number;
|
|
6180
|
+
/**
|
|
6181
|
+
* Aggregated stats for function builds in mb seconds.
|
|
6182
|
+
*/
|
|
6183
|
+
buildsMBSecondsTotal: number;
|
|
6184
|
+
/**
|
|
6185
|
+
* Aggregated stats for total file storage.
|
|
6186
|
+
*/
|
|
6187
|
+
filesStorageTotal: number;
|
|
6188
|
+
/**
|
|
6189
|
+
* Aggregated stats for total builds storage.
|
|
6190
|
+
*/
|
|
6191
|
+
buildsStorageTotal: number;
|
|
6192
|
+
/**
|
|
6193
|
+
* Aggregated stats for total deployments storage.
|
|
6194
|
+
*/
|
|
6195
|
+
deploymentsStorageTotal: number;
|
|
6196
|
+
/**
|
|
6197
|
+
* Aggregated stats for total databases storage.
|
|
6198
|
+
*/
|
|
6199
|
+
databasesStorageTotal: number;
|
|
6200
|
+
/**
|
|
6201
|
+
* Aggregated stats for total databases reads.
|
|
6202
|
+
*/
|
|
6203
|
+
databasesReadsTotal: number;
|
|
6204
|
+
/**
|
|
6205
|
+
* Aggregated stats for total databases writes.
|
|
6206
|
+
*/
|
|
6207
|
+
databasesWritesTotal: number;
|
|
6208
|
+
/**
|
|
6209
|
+
* Aggregated stats for total backups storage.
|
|
6210
|
+
*/
|
|
6211
|
+
backupsStorageTotal: number;
|
|
6212
|
+
/**
|
|
6213
|
+
* Aggregated stats for total storage.
|
|
6214
|
+
*/
|
|
6215
|
+
storageTotal: number;
|
|
6216
|
+
/**
|
|
6217
|
+
* Aggregated stats for total auth phone.
|
|
6218
|
+
*/
|
|
6219
|
+
authPhoneTotal: number;
|
|
6220
|
+
/**
|
|
6221
|
+
* Aggregated stats for total auth phone estimation.
|
|
6222
|
+
*/
|
|
6223
|
+
authPhoneEstimate: number;
|
|
6224
|
+
/**
|
|
6225
|
+
* Aggregated stats for each projects.
|
|
6226
|
+
*/
|
|
6227
|
+
projects: UsageOrganizationProject[];
|
|
6228
|
+
};
|
|
6229
|
+
/**
|
|
6230
|
+
* UsageOrganizationProject
|
|
6231
|
+
*/
|
|
6232
|
+
export type UsageOrganizationProject = {
|
|
6233
|
+
/**
|
|
6234
|
+
* projectId
|
|
6235
|
+
*/
|
|
6236
|
+
projectId: string;
|
|
6237
|
+
/**
|
|
6238
|
+
* Aggregated stats for number of requests.
|
|
6239
|
+
*/
|
|
6240
|
+
bandwidth: Metric[];
|
|
6241
|
+
/**
|
|
6242
|
+
* Aggregated stats for consumed bandwidth.
|
|
6243
|
+
*/
|
|
6244
|
+
users: Metric[];
|
|
6245
|
+
/**
|
|
6246
|
+
* Aggregated stats for function executions.
|
|
6247
|
+
*/
|
|
6248
|
+
executions: number;
|
|
6249
|
+
/**
|
|
6250
|
+
* Aggregated stats for database reads.
|
|
6251
|
+
*/
|
|
6252
|
+
databasesReads: Metric[];
|
|
6253
|
+
/**
|
|
6254
|
+
* Aggregated stats for database writes.
|
|
6255
|
+
*/
|
|
6256
|
+
databasesWrites: Metric[];
|
|
6257
|
+
/**
|
|
6258
|
+
* Aggregated stats for function executions in mb seconds.
|
|
6259
|
+
*/
|
|
6260
|
+
executionsMBSeconds: number;
|
|
6261
|
+
/**
|
|
6262
|
+
* Aggregated stats for function builds in mb seconds.
|
|
6263
|
+
*/
|
|
6264
|
+
buildsMBSeconds: number;
|
|
6265
|
+
/**
|
|
6266
|
+
* Aggregated stats for number of documents.
|
|
6267
|
+
*/
|
|
6268
|
+
storage: number;
|
|
6269
|
+
/**
|
|
6270
|
+
* Aggregated stats for phone authentication.
|
|
6271
|
+
*/
|
|
6272
|
+
authPhoneTotal: number;
|
|
6273
|
+
/**
|
|
6274
|
+
* Aggregated stats for phone authentication estimated cost.
|
|
6275
|
+
*/
|
|
6276
|
+
authPhoneEstimate: number;
|
|
6277
|
+
/**
|
|
6278
|
+
* Aggregated stats for total databases reads.
|
|
6279
|
+
*/
|
|
6280
|
+
databasesReadsTotal: number;
|
|
6281
|
+
/**
|
|
6282
|
+
* Aggregated stats for total databases writes.
|
|
6283
|
+
*/
|
|
6284
|
+
databasesWritesTotal: number;
|
|
6285
|
+
/**
|
|
6286
|
+
* Aggregated stats for file transformations.
|
|
6287
|
+
*/
|
|
6288
|
+
imageTransformations: Metric[];
|
|
6289
|
+
/**
|
|
6290
|
+
* Aggregated stats for total file transformations.
|
|
6291
|
+
*/
|
|
6292
|
+
imageTransformationsTotal: number;
|
|
6293
|
+
};
|
|
6089
6294
|
/**
|
|
6090
6295
|
* Domain
|
|
6091
6296
|
*/
|
|
6092
|
-
type Domain = {
|
|
6297
|
+
export type Domain = {
|
|
6093
6298
|
/**
|
|
6094
6299
|
* Domain ID.
|
|
6095
6300
|
*/
|
|
@@ -6142,7 +6347,7 @@ export declare namespace Models {
|
|
|
6142
6347
|
/**
|
|
6143
6348
|
* DNSRecord
|
|
6144
6349
|
*/
|
|
6145
|
-
type DnsRecord = {
|
|
6350
|
+
export type DnsRecord = {
|
|
6146
6351
|
/**
|
|
6147
6352
|
* DNS Record ID.
|
|
6148
6353
|
*/
|
|
@@ -6195,7 +6400,7 @@ export declare namespace Models {
|
|
|
6195
6400
|
/**
|
|
6196
6401
|
* UsageInvoice
|
|
6197
6402
|
*/
|
|
6198
|
-
type UsageInvoice = {
|
|
6403
|
+
export type UsageInvoice = {
|
|
6199
6404
|
/**
|
|
6200
6405
|
* Invoice name
|
|
6201
6406
|
*/
|
|
@@ -6220,7 +6425,7 @@ export declare namespace Models {
|
|
|
6220
6425
|
/**
|
|
6221
6426
|
* usageBillingPlan
|
|
6222
6427
|
*/
|
|
6223
|
-
type UsageBillingPlan = {
|
|
6428
|
+
export type UsageBillingPlan = {
|
|
6224
6429
|
/**
|
|
6225
6430
|
* Bandwidth additional resources
|
|
6226
6431
|
*/
|
|
@@ -6254,10 +6459,110 @@ export declare namespace Models {
|
|
|
6254
6459
|
*/
|
|
6255
6460
|
imageTransformations: AdditionalResource;
|
|
6256
6461
|
};
|
|
6462
|
+
/**
|
|
6463
|
+
* Estimation
|
|
6464
|
+
*/
|
|
6465
|
+
export type Estimation = {
|
|
6466
|
+
/**
|
|
6467
|
+
* Total amount
|
|
6468
|
+
*/
|
|
6469
|
+
amount: number;
|
|
6470
|
+
/**
|
|
6471
|
+
* Gross payable amount
|
|
6472
|
+
*/
|
|
6473
|
+
grossAmount: number;
|
|
6474
|
+
/**
|
|
6475
|
+
* Discount amount
|
|
6476
|
+
*/
|
|
6477
|
+
discount: number;
|
|
6478
|
+
/**
|
|
6479
|
+
* Credits amount
|
|
6480
|
+
*/
|
|
6481
|
+
credits: number;
|
|
6482
|
+
/**
|
|
6483
|
+
* Estimation items
|
|
6484
|
+
*/
|
|
6485
|
+
items: EstimationItem[];
|
|
6486
|
+
/**
|
|
6487
|
+
* Estimation discount items
|
|
6488
|
+
*/
|
|
6489
|
+
discounts: EstimationItem[];
|
|
6490
|
+
/**
|
|
6491
|
+
* Trial days
|
|
6492
|
+
*/
|
|
6493
|
+
trialDays: number;
|
|
6494
|
+
/**
|
|
6495
|
+
* Trial end date
|
|
6496
|
+
*/
|
|
6497
|
+
trialEndDate?: string;
|
|
6498
|
+
};
|
|
6499
|
+
/**
|
|
6500
|
+
* EstimationUpdatePlan
|
|
6501
|
+
*/
|
|
6502
|
+
export type EstimationUpdatePlan = {
|
|
6503
|
+
/**
|
|
6504
|
+
* Total amount
|
|
6505
|
+
*/
|
|
6506
|
+
amount: number;
|
|
6507
|
+
/**
|
|
6508
|
+
* Gross payable amount
|
|
6509
|
+
*/
|
|
6510
|
+
grossAmount: number;
|
|
6511
|
+
/**
|
|
6512
|
+
* Discount amount
|
|
6513
|
+
*/
|
|
6514
|
+
discount: number;
|
|
6515
|
+
/**
|
|
6516
|
+
* Credits amount
|
|
6517
|
+
*/
|
|
6518
|
+
credits: number;
|
|
6519
|
+
/**
|
|
6520
|
+
* Estimation items
|
|
6521
|
+
*/
|
|
6522
|
+
items: EstimationItem[];
|
|
6523
|
+
/**
|
|
6524
|
+
* Estimation discount items
|
|
6525
|
+
*/
|
|
6526
|
+
discounts: EstimationItem[];
|
|
6527
|
+
/**
|
|
6528
|
+
* Trial days
|
|
6529
|
+
*/
|
|
6530
|
+
trialDays: number;
|
|
6531
|
+
/**
|
|
6532
|
+
* Trial end date
|
|
6533
|
+
*/
|
|
6534
|
+
trialEndDate?: string;
|
|
6535
|
+
/**
|
|
6536
|
+
* Organization's existing credits
|
|
6537
|
+
*/
|
|
6538
|
+
organizationCredits: number;
|
|
6539
|
+
};
|
|
6540
|
+
/**
|
|
6541
|
+
* EstimationDeleteOrganization
|
|
6542
|
+
*/
|
|
6543
|
+
export type EstimationDeleteOrganization = {
|
|
6544
|
+
/**
|
|
6545
|
+
* List of unpaid invoices
|
|
6546
|
+
*/
|
|
6547
|
+
unpaidInvoices: Invoice[];
|
|
6548
|
+
};
|
|
6549
|
+
/**
|
|
6550
|
+
* EstimationItem
|
|
6551
|
+
*/
|
|
6552
|
+
export type EstimationItem = {
|
|
6553
|
+
/**
|
|
6554
|
+
* Label
|
|
6555
|
+
*/
|
|
6556
|
+
label: string;
|
|
6557
|
+
/**
|
|
6558
|
+
* Gross payable amount
|
|
6559
|
+
*/
|
|
6560
|
+
value: number;
|
|
6561
|
+
};
|
|
6257
6562
|
/**
|
|
6258
6563
|
* Aggregation team list
|
|
6259
6564
|
*/
|
|
6260
|
-
type AggregationTeamList = {
|
|
6565
|
+
export type AggregationTeamList = {
|
|
6261
6566
|
/**
|
|
6262
6567
|
* Total number of aggregations documents that matched your query.
|
|
6263
6568
|
*/
|
|
@@ -6270,7 +6575,7 @@ export declare namespace Models {
|
|
|
6270
6575
|
/**
|
|
6271
6576
|
* Backup archive list
|
|
6272
6577
|
*/
|
|
6273
|
-
type BackupArchiveList = {
|
|
6578
|
+
export type BackupArchiveList = {
|
|
6274
6579
|
/**
|
|
6275
6580
|
* Total number of archives documents that matched your query.
|
|
6276
6581
|
*/
|
|
@@ -6283,7 +6588,7 @@ export declare namespace Models {
|
|
|
6283
6588
|
/**
|
|
6284
6589
|
* Backup policy list
|
|
6285
6590
|
*/
|
|
6286
|
-
type BackupPolicyList = {
|
|
6591
|
+
export type BackupPolicyList = {
|
|
6287
6592
|
/**
|
|
6288
6593
|
* Total number of policies documents that matched your query.
|
|
6289
6594
|
*/
|
|
@@ -6296,7 +6601,7 @@ export declare namespace Models {
|
|
|
6296
6601
|
/**
|
|
6297
6602
|
* Backup restoration list
|
|
6298
6603
|
*/
|
|
6299
|
-
type BackupRestorationList = {
|
|
6604
|
+
export type BackupRestorationList = {
|
|
6300
6605
|
/**
|
|
6301
6606
|
* Total number of restorations documents that matched your query.
|
|
6302
6607
|
*/
|
|
@@ -6309,7 +6614,7 @@ export declare namespace Models {
|
|
|
6309
6614
|
/**
|
|
6310
6615
|
* Billing invoices list
|
|
6311
6616
|
*/
|
|
6312
|
-
type InvoiceList = {
|
|
6617
|
+
export type InvoiceList = {
|
|
6313
6618
|
/**
|
|
6314
6619
|
* Total number of invoices documents that matched your query.
|
|
6315
6620
|
*/
|
|
@@ -6322,7 +6627,7 @@ export declare namespace Models {
|
|
|
6322
6627
|
/**
|
|
6323
6628
|
* Billing address list
|
|
6324
6629
|
*/
|
|
6325
|
-
type BillingAddressList = {
|
|
6630
|
+
export type BillingAddressList = {
|
|
6326
6631
|
/**
|
|
6327
6632
|
* Total number of billingAddresses documents that matched your query.
|
|
6328
6633
|
*/
|
|
@@ -6335,7 +6640,7 @@ export declare namespace Models {
|
|
|
6335
6640
|
/**
|
|
6336
6641
|
* Billing plan list
|
|
6337
6642
|
*/
|
|
6338
|
-
type BillingPlanList = {
|
|
6643
|
+
export type BillingPlanList = {
|
|
6339
6644
|
/**
|
|
6340
6645
|
* Total number of plans documents that matched your query.
|
|
6341
6646
|
*/
|
|
@@ -6348,7 +6653,7 @@ export declare namespace Models {
|
|
|
6348
6653
|
/**
|
|
6349
6654
|
* Organizations List
|
|
6350
6655
|
*/
|
|
6351
|
-
type OrganizationList<Preferences extends Models.Preferences> = {
|
|
6656
|
+
export type OrganizationList<Preferences extends Models.Preferences = Models.DefaultPreferences> = {
|
|
6352
6657
|
/**
|
|
6353
6658
|
* Total number of teams documents that matched your query.
|
|
6354
6659
|
*/
|
|
@@ -6361,7 +6666,7 @@ export declare namespace Models {
|
|
|
6361
6666
|
/**
|
|
6362
6667
|
* Payment methods list
|
|
6363
6668
|
*/
|
|
6364
|
-
type PaymentMethodList = {
|
|
6669
|
+
export type PaymentMethodList = {
|
|
6365
6670
|
/**
|
|
6366
6671
|
* Total number of paymentMethods documents that matched your query.
|
|
6367
6672
|
*/
|
|
@@ -6374,7 +6679,7 @@ export declare namespace Models {
|
|
|
6374
6679
|
/**
|
|
6375
6680
|
* Regions list
|
|
6376
6681
|
*/
|
|
6377
|
-
type ConsoleRegionList = {
|
|
6682
|
+
export type ConsoleRegionList = {
|
|
6378
6683
|
/**
|
|
6379
6684
|
* Total number of regions documents that matched your query.
|
|
6380
6685
|
*/
|
|
@@ -6387,7 +6692,7 @@ export declare namespace Models {
|
|
|
6387
6692
|
/**
|
|
6388
6693
|
* Domains list
|
|
6389
6694
|
*/
|
|
6390
|
-
type DomainsList = {
|
|
6695
|
+
export type DomainsList = {
|
|
6391
6696
|
/**
|
|
6392
6697
|
* Total number of domains documents that matched your query.
|
|
6393
6698
|
*/
|
|
@@ -6400,7 +6705,7 @@ export declare namespace Models {
|
|
|
6400
6705
|
/**
|
|
6401
6706
|
* DNS records list
|
|
6402
6707
|
*/
|
|
6403
|
-
type DnsRecordsList = {
|
|
6708
|
+
export type DnsRecordsList = {
|
|
6404
6709
|
/**
|
|
6405
6710
|
* Total number of dnsRecords documents that matched your query.
|
|
6406
6711
|
*/
|
|
@@ -6410,4 +6715,5 @@ export declare namespace Models {
|
|
|
6410
6715
|
*/
|
|
6411
6716
|
dnsRecords: DnsRecord[];
|
|
6412
6717
|
};
|
|
6718
|
+
export {};
|
|
6413
6719
|
}
|