@appwrite.io/console 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +1 -1
  3. package/dist/cjs/sdk.js +99 -7
  4. package/dist/cjs/sdk.js.map +1 -1
  5. package/dist/esm/sdk.js +100 -8
  6. package/dist/esm/sdk.js.map +1 -1
  7. package/dist/iife/sdk.js +99 -7
  8. package/docs/examples/domains/list-suggestions.md +18 -0
  9. package/docs/examples/health/get-queue-audits.md +13 -0
  10. package/docs/examples/organizations/create.md +2 -2
  11. package/docs/examples/organizations/estimation-create-organization.md +2 -2
  12. package/docs/examples/organizations/estimation-update-plan.md +2 -2
  13. package/docs/examples/organizations/update-plan.md +2 -2
  14. package/package.json +1 -1
  15. package/src/client.ts +1 -1
  16. package/src/enums/billing-plan.ts +17 -0
  17. package/src/enums/filter-type.ts +4 -0
  18. package/src/enums/name.ts +1 -0
  19. package/src/enums/o-auth-provider.ts +0 -2
  20. package/src/index.ts +2 -0
  21. package/src/models.ts +437 -375
  22. package/src/services/account.ts +20 -20
  23. package/src/services/avatars.ts +117 -117
  24. package/src/services/backups.ts +18 -18
  25. package/src/services/console.ts +24 -24
  26. package/src/services/databases.ts +89 -89
  27. package/src/services/domains.ts +295 -204
  28. package/src/services/functions.ts +30 -30
  29. package/src/services/health.ts +201 -152
  30. package/src/services/messaging.ts +54 -54
  31. package/src/services/migrations.ts +36 -36
  32. package/src/services/organizations.ts +67 -66
  33. package/src/services/projects.ts +81 -81
  34. package/src/services/sites.ts +30 -30
  35. package/src/services/storage.ts +45 -45
  36. package/src/services/tables-db.ts +89 -89
  37. package/src/services/users.ts +39 -39
  38. package/types/enums/billing-plan.d.ts +17 -0
  39. package/types/enums/filter-type.d.ts +4 -0
  40. package/types/enums/name.d.ts +1 -0
  41. package/types/enums/o-auth-provider.d.ts +0 -2
  42. package/types/index.d.ts +2 -0
  43. package/types/models.d.ts +434 -375
  44. package/types/services/account.d.ts +11 -11
  45. package/types/services/avatars.d.ts +82 -82
  46. package/types/services/backups.d.ts +8 -8
  47. package/types/services/console.d.ts +14 -14
  48. package/types/services/databases.d.ts +50 -50
  49. package/types/services/domains.d.ts +139 -104
  50. package/types/services/functions.d.ts +15 -15
  51. package/types/services/health.d.ts +95 -78
  52. package/types/services/messaging.d.ts +24 -24
  53. package/types/services/migrations.d.ts +16 -16
  54. package/types/services/organizations.d.ts +37 -36
  55. package/types/services/projects.d.ts +36 -36
  56. package/types/services/sites.d.ts +15 -15
  57. package/types/services/storage.d.ts +30 -30
  58. package/types/services/tables-db.d.ts +50 -50
  59. package/types/services/users.d.ts +24 -24
package/types/models.d.ts CHANGED
@@ -24,7 +24,7 @@ export declare namespace Models {
24
24
  /**
25
25
  * Total number of rows that matched your query.
26
26
  */
27
- total: number | bigint;
27
+ total: number;
28
28
  /**
29
29
  * List of rows.
30
30
  */
@@ -37,7 +37,7 @@ export declare namespace Models {
37
37
  /**
38
38
  * Total number of documents that matched your query.
39
39
  */
40
- total: number | bigint;
40
+ total: number;
41
41
  /**
42
42
  * List of documents.
43
43
  */
@@ -50,7 +50,7 @@ export declare namespace Models {
50
50
  /**
51
51
  * Total number of tables that matched your query.
52
52
  */
53
- total: number | bigint;
53
+ total: number;
54
54
  /**
55
55
  * List of tables.
56
56
  */
@@ -63,7 +63,7 @@ export declare namespace Models {
63
63
  /**
64
64
  * Total number of collections that matched your query.
65
65
  */
66
- total: number | bigint;
66
+ total: number;
67
67
  /**
68
68
  * List of collections.
69
69
  */
@@ -76,7 +76,7 @@ export declare namespace Models {
76
76
  /**
77
77
  * Total number of databases that matched your query.
78
78
  */
79
- total: number | bigint;
79
+ total: number;
80
80
  /**
81
81
  * List of databases.
82
82
  */
@@ -89,7 +89,7 @@ export declare namespace Models {
89
89
  /**
90
90
  * Total number of indexes that matched your query.
91
91
  */
92
- total: number | bigint;
92
+ total: number;
93
93
  /**
94
94
  * List of indexes.
95
95
  */
@@ -102,7 +102,7 @@ export declare namespace Models {
102
102
  /**
103
103
  * Total number of indexes that matched your query.
104
104
  */
105
- total: number | bigint;
105
+ total: number;
106
106
  /**
107
107
  * List of indexes.
108
108
  */
@@ -115,7 +115,7 @@ export declare namespace Models {
115
115
  /**
116
116
  * Total number of users that matched your query.
117
117
  */
118
- total: number | bigint;
118
+ total: number;
119
119
  /**
120
120
  * List of users.
121
121
  */
@@ -128,7 +128,7 @@ export declare namespace Models {
128
128
  /**
129
129
  * Total number of sessions that matched your query.
130
130
  */
131
- total: number | bigint;
131
+ total: number;
132
132
  /**
133
133
  * List of sessions.
134
134
  */
@@ -141,7 +141,7 @@ export declare namespace Models {
141
141
  /**
142
142
  * Total number of identities that matched your query.
143
143
  */
144
- total: number | bigint;
144
+ total: number;
145
145
  /**
146
146
  * List of identities.
147
147
  */
@@ -154,7 +154,7 @@ export declare namespace Models {
154
154
  /**
155
155
  * Total number of logs that matched your query.
156
156
  */
157
- total: number | bigint;
157
+ total: number;
158
158
  /**
159
159
  * List of logs.
160
160
  */
@@ -167,7 +167,7 @@ export declare namespace Models {
167
167
  /**
168
168
  * Total number of files that matched your query.
169
169
  */
170
- total: number | bigint;
170
+ total: number;
171
171
  /**
172
172
  * List of files.
173
173
  */
@@ -180,7 +180,7 @@ export declare namespace Models {
180
180
  /**
181
181
  * Total number of buckets that matched your query.
182
182
  */
183
- total: number | bigint;
183
+ total: number;
184
184
  /**
185
185
  * List of buckets.
186
186
  */
@@ -193,7 +193,7 @@ export declare namespace Models {
193
193
  /**
194
194
  * Total number of tokens that matched your query.
195
195
  */
196
- total: number | bigint;
196
+ total: number;
197
197
  /**
198
198
  * List of tokens.
199
199
  */
@@ -206,7 +206,7 @@ export declare namespace Models {
206
206
  /**
207
207
  * Total number of teams that matched your query.
208
208
  */
209
- total: number | bigint;
209
+ total: number;
210
210
  /**
211
211
  * List of teams.
212
212
  */
@@ -219,7 +219,7 @@ export declare namespace Models {
219
219
  /**
220
220
  * Total number of memberships that matched your query.
221
221
  */
222
- total: number | bigint;
222
+ total: number;
223
223
  /**
224
224
  * List of memberships.
225
225
  */
@@ -232,7 +232,7 @@ export declare namespace Models {
232
232
  /**
233
233
  * Total number of sites that matched your query.
234
234
  */
235
- total: number | bigint;
235
+ total: number;
236
236
  /**
237
237
  * List of sites.
238
238
  */
@@ -245,7 +245,7 @@ export declare namespace Models {
245
245
  /**
246
246
  * Total number of templates that matched your query.
247
247
  */
248
- total: number | bigint;
248
+ total: number;
249
249
  /**
250
250
  * List of templates.
251
251
  */
@@ -258,7 +258,7 @@ export declare namespace Models {
258
258
  /**
259
259
  * Total number of functions that matched your query.
260
260
  */
261
- total: number | bigint;
261
+ total: number;
262
262
  /**
263
263
  * List of functions.
264
264
  */
@@ -271,7 +271,7 @@ export declare namespace Models {
271
271
  /**
272
272
  * Total number of templates that matched your query.
273
273
  */
274
- total: number | bigint;
274
+ total: number;
275
275
  /**
276
276
  * List of templates.
277
277
  */
@@ -284,7 +284,7 @@ export declare namespace Models {
284
284
  /**
285
285
  * Total number of installations that matched your query.
286
286
  */
287
- total: number | bigint;
287
+ total: number;
288
288
  /**
289
289
  * List of installations.
290
290
  */
@@ -297,7 +297,7 @@ export declare namespace Models {
297
297
  /**
298
298
  * Total number of frameworkProviderRepositories that matched your query.
299
299
  */
300
- total: number | bigint;
300
+ total: number;
301
301
  /**
302
302
  * List of frameworkProviderRepositories.
303
303
  */
@@ -310,7 +310,7 @@ export declare namespace Models {
310
310
  /**
311
311
  * Total number of runtimeProviderRepositories that matched your query.
312
312
  */
313
- total: number | bigint;
313
+ total: number;
314
314
  /**
315
315
  * List of runtimeProviderRepositories.
316
316
  */
@@ -323,7 +323,7 @@ export declare namespace Models {
323
323
  /**
324
324
  * Total number of branches that matched your query.
325
325
  */
326
- total: number | bigint;
326
+ total: number;
327
327
  /**
328
328
  * List of branches.
329
329
  */
@@ -336,7 +336,7 @@ export declare namespace Models {
336
336
  /**
337
337
  * Total number of frameworks that matched your query.
338
338
  */
339
- total: number | bigint;
339
+ total: number;
340
340
  /**
341
341
  * List of frameworks.
342
342
  */
@@ -349,7 +349,7 @@ export declare namespace Models {
349
349
  /**
350
350
  * Total number of runtimes that matched your query.
351
351
  */
352
- total: number | bigint;
352
+ total: number;
353
353
  /**
354
354
  * List of runtimes.
355
355
  */
@@ -362,7 +362,7 @@ export declare namespace Models {
362
362
  /**
363
363
  * Total number of deployments that matched your query.
364
364
  */
365
- total: number | bigint;
365
+ total: number;
366
366
  /**
367
367
  * List of deployments.
368
368
  */
@@ -375,7 +375,7 @@ export declare namespace Models {
375
375
  /**
376
376
  * Total number of executions that matched your query.
377
377
  */
378
- total: number | bigint;
378
+ total: number;
379
379
  /**
380
380
  * List of executions.
381
381
  */
@@ -388,7 +388,7 @@ export declare namespace Models {
388
388
  /**
389
389
  * Total number of projects that matched your query.
390
390
  */
391
- total: number | bigint;
391
+ total: number;
392
392
  /**
393
393
  * List of projects.
394
394
  */
@@ -401,7 +401,7 @@ export declare namespace Models {
401
401
  /**
402
402
  * Total number of webhooks that matched your query.
403
403
  */
404
- total: number | bigint;
404
+ total: number;
405
405
  /**
406
406
  * List of webhooks.
407
407
  */
@@ -414,7 +414,7 @@ export declare namespace Models {
414
414
  /**
415
415
  * Total number of keys that matched your query.
416
416
  */
417
- total: number | bigint;
417
+ total: number;
418
418
  /**
419
419
  * List of keys.
420
420
  */
@@ -427,7 +427,7 @@ export declare namespace Models {
427
427
  /**
428
428
  * Total number of devKeys that matched your query.
429
429
  */
430
- total: number | bigint;
430
+ total: number;
431
431
  /**
432
432
  * List of devKeys.
433
433
  */
@@ -440,7 +440,7 @@ export declare namespace Models {
440
440
  /**
441
441
  * Total number of platforms that matched your query.
442
442
  */
443
- total: number | bigint;
443
+ total: number;
444
444
  /**
445
445
  * List of platforms.
446
446
  */
@@ -453,7 +453,7 @@ export declare namespace Models {
453
453
  /**
454
454
  * Total number of countries that matched your query.
455
455
  */
456
- total: number | bigint;
456
+ total: number;
457
457
  /**
458
458
  * List of countries.
459
459
  */
@@ -466,7 +466,7 @@ export declare namespace Models {
466
466
  /**
467
467
  * Total number of continents that matched your query.
468
468
  */
469
- total: number | bigint;
469
+ total: number;
470
470
  /**
471
471
  * List of continents.
472
472
  */
@@ -479,7 +479,7 @@ export declare namespace Models {
479
479
  /**
480
480
  * Total number of languages that matched your query.
481
481
  */
482
- total: number | bigint;
482
+ total: number;
483
483
  /**
484
484
  * List of languages.
485
485
  */
@@ -492,7 +492,7 @@ export declare namespace Models {
492
492
  /**
493
493
  * Total number of currencies that matched your query.
494
494
  */
495
- total: number | bigint;
495
+ total: number;
496
496
  /**
497
497
  * List of currencies.
498
498
  */
@@ -505,7 +505,7 @@ export declare namespace Models {
505
505
  /**
506
506
  * Total number of phones that matched your query.
507
507
  */
508
- total: number | bigint;
508
+ total: number;
509
509
  /**
510
510
  * List of phones.
511
511
  */
@@ -518,12 +518,25 @@ export declare namespace Models {
518
518
  /**
519
519
  * Total number of variables that matched your query.
520
520
  */
521
- total: number | bigint;
521
+ total: number;
522
522
  /**
523
523
  * List of variables.
524
524
  */
525
525
  variables: Variable[];
526
526
  };
527
+ /**
528
+ * Status List
529
+ */
530
+ export type HealthStatusList = {
531
+ /**
532
+ * Total number of statuses that matched your query.
533
+ */
534
+ total: number;
535
+ /**
536
+ * List of statuses.
537
+ */
538
+ statuses: HealthStatus[];
539
+ };
527
540
  /**
528
541
  * Rule List
529
542
  */
@@ -531,7 +544,7 @@ export declare namespace Models {
531
544
  /**
532
545
  * Total number of rules that matched your query.
533
546
  */
534
- total: number | bigint;
547
+ total: number;
535
548
  /**
536
549
  * List of rules.
537
550
  */
@@ -544,7 +557,7 @@ export declare namespace Models {
544
557
  /**
545
558
  * Total number of localeCodes that matched your query.
546
559
  */
547
- total: number | bigint;
560
+ total: number;
548
561
  /**
549
562
  * List of localeCodes.
550
563
  */
@@ -557,7 +570,7 @@ export declare namespace Models {
557
570
  /**
558
571
  * Total number of providers that matched your query.
559
572
  */
560
- total: number | bigint;
573
+ total: number;
561
574
  /**
562
575
  * List of providers.
563
576
  */
@@ -570,7 +583,7 @@ export declare namespace Models {
570
583
  /**
571
584
  * Total number of messages that matched your query.
572
585
  */
573
- total: number | bigint;
586
+ total: number;
574
587
  /**
575
588
  * List of messages.
576
589
  */
@@ -583,7 +596,7 @@ export declare namespace Models {
583
596
  /**
584
597
  * Total number of topics that matched your query.
585
598
  */
586
- total: number | bigint;
599
+ total: number;
587
600
  /**
588
601
  * List of topics.
589
602
  */
@@ -596,7 +609,7 @@ export declare namespace Models {
596
609
  /**
597
610
  * Total number of subscribers that matched your query.
598
611
  */
599
- total: number | bigint;
612
+ total: number;
600
613
  /**
601
614
  * List of subscribers.
602
615
  */
@@ -609,7 +622,7 @@ export declare namespace Models {
609
622
  /**
610
623
  * Total number of targets that matched your query.
611
624
  */
612
- total: number | bigint;
625
+ total: number;
613
626
  /**
614
627
  * List of targets.
615
628
  */
@@ -622,7 +635,7 @@ export declare namespace Models {
622
635
  /**
623
636
  * Total number of transactions that matched your query.
624
637
  */
625
- total: number | bigint;
638
+ total: number;
626
639
  /**
627
640
  * List of transactions.
628
641
  */
@@ -635,7 +648,7 @@ export declare namespace Models {
635
648
  /**
636
649
  * Total number of migrations that matched your query.
637
650
  */
638
- total: number | bigint;
651
+ total: number;
639
652
  /**
640
653
  * List of migrations.
641
654
  */
@@ -648,7 +661,7 @@ export declare namespace Models {
648
661
  /**
649
662
  * Total number of specifications that matched your query.
650
663
  */
651
- total: number | bigint;
664
+ total: number;
652
665
  /**
653
666
  * List of specifications.
654
667
  */
@@ -661,7 +674,7 @@ export declare namespace Models {
661
674
  /**
662
675
  * Total number of contents that matched your query.
663
676
  */
664
- total: number | bigint;
677
+ total: number;
665
678
  /**
666
679
  * List of contents.
667
680
  */
@@ -756,7 +769,7 @@ export declare namespace Models {
756
769
  /**
757
770
  * Total number of attributes in the given collection.
758
771
  */
759
- total: number | bigint;
772
+ total: number;
760
773
  /**
761
774
  * List of attributes.
762
775
  */
@@ -801,7 +814,7 @@ export declare namespace Models {
801
814
  /**
802
815
  * Attribute size.
803
816
  */
804
- size: number | bigint;
817
+ size: number;
805
818
  /**
806
819
  * Default value for attribute when not provided. Cannot be set when attribute is required.
807
820
  */
@@ -858,7 +871,7 @@ export declare namespace Models {
858
871
  /**
859
872
  * Default value for attribute when not provided. Cannot be set when attribute is required.
860
873
  */
861
- default?: number | bigint;
874
+ default?: number;
862
875
  };
863
876
  /**
864
877
  * AttributeFloat
@@ -899,15 +912,15 @@ export declare namespace Models {
899
912
  /**
900
913
  * Minimum value to enforce for new documents.
901
914
  */
902
- min?: number | bigint;
915
+ min?: number;
903
916
  /**
904
917
  * Maximum value to enforce for new documents.
905
918
  */
906
- max?: number | bigint;
919
+ max?: number;
907
920
  /**
908
921
  * Default value for attribute when not provided. Cannot be set when attribute is required.
909
922
  */
910
- default?: number | bigint;
923
+ default?: number;
911
924
  };
912
925
  /**
913
926
  * AttributeBoolean
@@ -1415,7 +1428,7 @@ export declare namespace Models {
1415
1428
  /**
1416
1429
  * Total number of columns in the given table.
1417
1430
  */
1418
- total: number | bigint;
1431
+ total: number;
1419
1432
  /**
1420
1433
  * List of columns.
1421
1434
  */
@@ -1460,7 +1473,7 @@ export declare namespace Models {
1460
1473
  /**
1461
1474
  * Column size.
1462
1475
  */
1463
- size: number | bigint;
1476
+ size: number;
1464
1477
  /**
1465
1478
  * Default value for column when not provided. Cannot be set when column is required.
1466
1479
  */
@@ -1517,7 +1530,7 @@ export declare namespace Models {
1517
1530
  /**
1518
1531
  * Default value for column when not provided. Cannot be set when column is required.
1519
1532
  */
1520
- default?: number | bigint;
1533
+ default?: number;
1521
1534
  };
1522
1535
  /**
1523
1536
  * ColumnFloat
@@ -1558,15 +1571,15 @@ export declare namespace Models {
1558
1571
  /**
1559
1572
  * Minimum value to enforce for new documents.
1560
1573
  */
1561
- min?: number | bigint;
1574
+ min?: number;
1562
1575
  /**
1563
1576
  * Maximum value to enforce for new documents.
1564
1577
  */
1565
- max?: number | bigint;
1578
+ max?: number;
1566
1579
  /**
1567
1580
  * Default value for column when not provided. Cannot be set when column is required.
1568
1581
  */
1569
- default?: number | bigint;
1582
+ default?: number;
1570
1583
  };
1571
1584
  /**
1572
1585
  * ColumnBoolean
@@ -2061,7 +2074,7 @@ export declare namespace Models {
2061
2074
  /**
2062
2075
  * Index attributes length.
2063
2076
  */
2064
- lengths: number | bigint[];
2077
+ lengths: number[];
2065
2078
  /**
2066
2079
  * Index orders.
2067
2080
  */
@@ -2106,7 +2119,7 @@ export declare namespace Models {
2106
2119
  /**
2107
2120
  * Index columns length.
2108
2121
  */
2109
- lengths: number | bigint[];
2122
+ lengths: number[];
2110
2123
  /**
2111
2124
  * Index orders.
2112
2125
  */
@@ -2123,7 +2136,7 @@ export declare namespace Models {
2123
2136
  /**
2124
2137
  * Row automatically incrementing ID.
2125
2138
  */
2126
- $sequence: number | bigint;
2139
+ $sequence: number;
2127
2140
  /**
2128
2141
  * Table ID.
2129
2142
  */
@@ -2160,7 +2173,7 @@ export declare namespace Models {
2160
2173
  /**
2161
2174
  * Document automatically incrementing ID.
2162
2175
  */
2163
- $sequence: number | bigint;
2176
+ $sequence: number;
2164
2177
  /**
2165
2178
  * Collection ID.
2166
2179
  */
@@ -2403,19 +2416,19 @@ export declare namespace Models {
2403
2416
  /**
2404
2417
  * CPU complexity of computed hash.
2405
2418
  */
2406
- costCpu: number | bigint;
2419
+ costCpu: number;
2407
2420
  /**
2408
2421
  * Memory complexity of computed hash.
2409
2422
  */
2410
- costMemory: number | bigint;
2423
+ costMemory: number;
2411
2424
  /**
2412
2425
  * Parallelization of computed hash.
2413
2426
  */
2414
- costParallel: number | bigint;
2427
+ costParallel: number;
2415
2428
  /**
2416
2429
  * Length used to compute hash.
2417
2430
  */
2418
- length: number | bigint;
2431
+ length: number;
2419
2432
  };
2420
2433
  /**
2421
2434
  * AlgoScryptModified
@@ -2449,15 +2462,15 @@ export declare namespace Models {
2449
2462
  /**
2450
2463
  * Memory used to compute hash.
2451
2464
  */
2452
- memoryCost: number | bigint;
2465
+ memoryCost: number;
2453
2466
  /**
2454
2467
  * Amount of time consumed to compute hash
2455
2468
  */
2456
- timeCost: number | bigint;
2469
+ timeCost: number;
2457
2470
  /**
2458
2471
  * Number of threads used to compute hash.
2459
2472
  */
2460
- threads: number | bigint;
2473
+ threads: number;
2461
2474
  };
2462
2475
  /**
2463
2476
  * Preferences
@@ -2756,15 +2769,23 @@ export declare namespace Models {
2756
2769
  /**
2757
2770
  * File original size in bytes.
2758
2771
  */
2759
- sizeOriginal: number | bigint;
2772
+ sizeOriginal: number;
2760
2773
  /**
2761
2774
  * Total number of chunks available
2762
2775
  */
2763
- chunksTotal: number | bigint;
2776
+ chunksTotal: number;
2764
2777
  /**
2765
2778
  * Total number of chunks uploaded
2766
2779
  */
2767
- chunksUploaded: number | bigint;
2780
+ chunksUploaded: number;
2781
+ /**
2782
+ * Whether file contents are encrypted at rest.
2783
+ */
2784
+ encryption: boolean;
2785
+ /**
2786
+ * Compression algorithm used for the file. Will be one of none, [gzip](https://en.wikipedia.org/wiki/Gzip), or [zstd](https://en.wikipedia.org/wiki/Zstd).
2787
+ */
2788
+ compression: string;
2768
2789
  };
2769
2790
  /**
2770
2791
  * Bucket
@@ -2801,7 +2822,7 @@ export declare namespace Models {
2801
2822
  /**
2802
2823
  * Maximum file size supported.
2803
2824
  */
2804
- maximumFileSize: number | bigint;
2825
+ maximumFileSize: number;
2805
2826
  /**
2806
2827
  * Allowed file extensions.
2807
2828
  */
@@ -2825,7 +2846,7 @@ export declare namespace Models {
2825
2846
  /**
2826
2847
  * Total size of this bucket in bytes.
2827
2848
  */
2828
- totalSize: number | bigint;
2849
+ totalSize: number;
2829
2850
  };
2830
2851
  /**
2831
2852
  * ResourceToken
@@ -2883,7 +2904,7 @@ export declare namespace Models {
2883
2904
  /**
2884
2905
  * Total number of team members.
2885
2906
  */
2886
- total: number | bigint;
2907
+ total: number;
2887
2908
  /**
2888
2909
  * Team preferences as a key-value object
2889
2910
  */
@@ -3017,7 +3038,7 @@ export declare namespace Models {
3017
3038
  /**
3018
3039
  * Site request timeout in seconds.
3019
3040
  */
3020
- timeout: number | bigint;
3041
+ timeout: number;
3021
3042
  /**
3022
3043
  * The install command used to install the site dependencies.
3023
3044
  */
@@ -3244,7 +3265,7 @@ export declare namespace Models {
3244
3265
  /**
3245
3266
  * Function execution timeout in seconds.
3246
3267
  */
3247
- timeout: number | bigint;
3268
+ timeout: number;
3248
3269
  /**
3249
3270
  * The entrypoint file used to execute the deployment.
3250
3271
  */
@@ -3317,7 +3338,7 @@ export declare namespace Models {
3317
3338
  /**
3318
3339
  * Function execution timeout in seconds.
3319
3340
  */
3320
- timeout: number | bigint;
3341
+ timeout: number;
3321
3342
  /**
3322
3343
  * Function use cases.
3323
3344
  */
@@ -3623,7 +3644,7 @@ export declare namespace Models {
3623
3644
  /**
3624
3645
  * Content size in bytes. Only files have size, and for directories, 0 is returned.
3625
3646
  */
3626
- size?: number | bigint;
3647
+ size?: number;
3627
3648
  /**
3628
3649
  * If a content is a directory. Directories can be used to check nested contents.
3629
3650
  */
@@ -3764,15 +3785,15 @@ export declare namespace Models {
3764
3785
  /**
3765
3786
  * The code size in bytes.
3766
3787
  */
3767
- sourceSize: number | bigint;
3788
+ sourceSize: number;
3768
3789
  /**
3769
3790
  * The build output size in bytes.
3770
3791
  */
3771
- buildSize: number | bigint;
3792
+ buildSize: number;
3772
3793
  /**
3773
3794
  * The total size in bytes (source and build output).
3774
3795
  */
3775
- totalSize: number | bigint;
3796
+ totalSize: number;
3776
3797
  /**
3777
3798
  * The current build ID.
3778
3799
  */
@@ -3800,7 +3821,7 @@ export declare namespace Models {
3800
3821
  /**
3801
3822
  * The current build time in seconds.
3802
3823
  */
3803
- buildDuration: number | bigint;
3824
+ buildDuration: number;
3804
3825
  /**
3805
3826
  * The name of the vcs provider repository
3806
3827
  */
@@ -3893,7 +3914,7 @@ export declare namespace Models {
3893
3914
  /**
3894
3915
  * HTTP response status code.
3895
3916
  */
3896
- responseStatusCode: number | bigint;
3917
+ responseStatusCode: number;
3897
3918
  /**
3898
3919
  * HTTP response body. This will return empty unless execution is created as synchronous.
3899
3920
  */
@@ -3913,7 +3934,7 @@ export declare namespace Models {
3913
3934
  /**
3914
3935
  * Resource(function/site) execution duration in seconds.
3915
3936
  */
3916
- duration: number | bigint;
3937
+ duration: number;
3917
3938
  /**
3918
3939
  * The scheduled time for execution. If left empty, execution will be queued immediately.
3919
3940
  */
@@ -3982,19 +4003,19 @@ export declare namespace Models {
3982
4003
  /**
3983
4004
  * Session duration in seconds.
3984
4005
  */
3985
- authDuration: number | bigint;
4006
+ authDuration: number;
3986
4007
  /**
3987
4008
  * Max users allowed. 0 is unlimited.
3988
4009
  */
3989
- authLimit: number | bigint;
4010
+ authLimit: number;
3990
4011
  /**
3991
4012
  * Max sessions allowed per user. 100 maximum.
3992
4013
  */
3993
- authSessionsLimit: number | bigint;
4014
+ authSessionsLimit: number;
3994
4015
  /**
3995
4016
  * Max allowed passwords in the history list per user. Max passwords limit allowed in history is 20. Use 0 for disabling password history.
3996
4017
  */
3997
- authPasswordHistory: number | bigint;
4018
+ authPasswordHistory: number;
3998
4019
  /**
3999
4020
  * Whether or not to check user's password against most commonly used passwords.
4000
4021
  */
@@ -4070,7 +4091,7 @@ export declare namespace Models {
4070
4091
  /**
4071
4092
  * SMTP server port
4072
4093
  */
4073
- smtpPort: number | bigint;
4094
+ smtpPort: number;
4074
4095
  /**
4075
4096
  * SMTP server username
4076
4097
  */
@@ -4086,7 +4107,7 @@ export declare namespace Models {
4086
4107
  /**
4087
4108
  * Number of times the ping was received for this project.
4088
4109
  */
4089
- pingCount: number | bigint;
4110
+ pingCount: number;
4090
4111
  /**
4091
4112
  * Last ping datetime in ISO 8601 format.
4092
4113
  */
@@ -4247,7 +4268,7 @@ export declare namespace Models {
4247
4268
  /**
4248
4269
  * Number of consecutive failed webhook attempts.
4249
4270
  */
4250
- attempts: number | bigint;
4271
+ attempts: number;
4251
4272
  };
4252
4273
  /**
4253
4274
  * Key
@@ -4509,11 +4530,11 @@ export declare namespace Models {
4509
4530
  /**
4510
4531
  * Number of decimal digits.
4511
4532
  */
4512
- decimalDigits: number | bigint;
4533
+ decimalDigits: number;
4513
4534
  /**
4514
4535
  * Currency digit rounding.
4515
4536
  */
4516
- rounding: number | bigint;
4537
+ rounding: number;
4517
4538
  /**
4518
4539
  * Currency code in [ISO 4217-1](http://en.wikipedia.org/wiki/ISO_4217) three-character format.
4519
4540
  */
@@ -4560,7 +4581,7 @@ export declare namespace Models {
4560
4581
  /**
4561
4582
  * Amount of actions in the queue.
4562
4583
  */
4563
- size: number | bigint;
4584
+ size: number;
4564
4585
  };
4565
4586
  /**
4566
4587
  * Health Status
@@ -4573,7 +4594,7 @@ export declare namespace Models {
4573
4594
  /**
4574
4595
  * Duration in milliseconds how long the health check took.
4575
4596
  */
4576
- ping: number | bigint;
4597
+ ping: number;
4577
4598
  /**
4578
4599
  * Service status. Possible values are: `pass`, `fail`
4579
4600
  */
@@ -4615,15 +4636,15 @@ export declare namespace Models {
4615
4636
  /**
4616
4637
  * Current unix timestamp on trustful remote server.
4617
4638
  */
4618
- remoteTime: number | bigint;
4639
+ remoteTime: number;
4619
4640
  /**
4620
4641
  * Current unix timestamp of local server where Appwrite runs.
4621
4642
  */
4622
- localTime: number | bigint;
4643
+ localTime: number;
4623
4644
  /**
4624
4645
  * Difference of unix remote and local timestamps in milliseconds.
4625
4646
  */
4626
- diff: number | bigint;
4647
+ diff: number;
4627
4648
  };
4628
4649
  /**
4629
4650
  * Metric
@@ -4632,7 +4653,7 @@ export declare namespace Models {
4632
4653
  /**
4633
4654
  * The value of this metric at the timestamp.
4634
4655
  */
4635
- value: number | bigint;
4656
+ value: number;
4636
4657
  /**
4637
4658
  * The date at which this metric was aggregated in ISO 8601 format.
4638
4659
  */
@@ -4653,11 +4674,11 @@ export declare namespace Models {
4653
4674
  /**
4654
4675
  * The value of this metric at the timestamp.
4655
4676
  */
4656
- value: number | bigint;
4677
+ value: number;
4657
4678
  /**
4658
4679
  * The estimated value of this metric at the end of the period.
4659
4680
  */
4660
- estimate?: number | bigint;
4681
+ estimate?: number;
4661
4682
  };
4662
4683
  /**
4663
4684
  * UsageDatabases
@@ -4670,35 +4691,35 @@ export declare namespace Models {
4670
4691
  /**
4671
4692
  * Total aggregated number of databases.
4672
4693
  */
4673
- databasesTotal: number | bigint;
4694
+ databasesTotal: number;
4674
4695
  /**
4675
4696
  * Total aggregated number of collections.
4676
4697
  */
4677
- collectionsTotal: number | bigint;
4698
+ collectionsTotal: number;
4678
4699
  /**
4679
4700
  * Total aggregated number of tables.
4680
4701
  */
4681
- tablesTotal: number | bigint;
4702
+ tablesTotal: number;
4682
4703
  /**
4683
4704
  * Total aggregated number of documents.
4684
4705
  */
4685
- documentsTotal: number | bigint;
4706
+ documentsTotal: number;
4686
4707
  /**
4687
4708
  * Total aggregated number of rows.
4688
4709
  */
4689
- rowsTotal: number | bigint;
4710
+ rowsTotal: number;
4690
4711
  /**
4691
4712
  * Total aggregated number of total databases storage in bytes.
4692
4713
  */
4693
- storageTotal: number | bigint;
4714
+ storageTotal: number;
4694
4715
  /**
4695
4716
  * Total number of databases reads.
4696
4717
  */
4697
- databasesReadsTotal: number | bigint;
4718
+ databasesReadsTotal: number;
4698
4719
  /**
4699
4720
  * Total number of databases writes.
4700
4721
  */
4701
- databasesWritesTotal: number | bigint;
4722
+ databasesWritesTotal: number;
4702
4723
  /**
4703
4724
  * Aggregated number of databases per period.
4704
4725
  */
@@ -4743,31 +4764,31 @@ export declare namespace Models {
4743
4764
  /**
4744
4765
  * Total aggregated number of collections.
4745
4766
  */
4746
- collectionsTotal: number | bigint;
4767
+ collectionsTotal: number;
4747
4768
  /**
4748
4769
  * Total aggregated number of tables.
4749
4770
  */
4750
- tablesTotal: number | bigint;
4771
+ tablesTotal: number;
4751
4772
  /**
4752
4773
  * Total aggregated number of documents.
4753
4774
  */
4754
- documentsTotal: number | bigint;
4775
+ documentsTotal: number;
4755
4776
  /**
4756
4777
  * Total aggregated number of rows.
4757
4778
  */
4758
- rowsTotal: number | bigint;
4779
+ rowsTotal: number;
4759
4780
  /**
4760
4781
  * Total aggregated number of total storage used in bytes.
4761
4782
  */
4762
- storageTotal: number | bigint;
4783
+ storageTotal: number;
4763
4784
  /**
4764
4785
  * Total number of databases reads.
4765
4786
  */
4766
- databaseReadsTotal: number | bigint;
4787
+ databaseReadsTotal: number;
4767
4788
  /**
4768
4789
  * Total number of databases writes.
4769
4790
  */
4770
- databaseWritesTotal: number | bigint;
4791
+ databaseWritesTotal: number;
4771
4792
  /**
4772
4793
  * Aggregated number of collections per period.
4773
4794
  */
@@ -4808,7 +4829,7 @@ export declare namespace Models {
4808
4829
  /**
4809
4830
  * Total aggregated number of of rows.
4810
4831
  */
4811
- rowsTotal: number | bigint;
4832
+ rowsTotal: number;
4812
4833
  /**
4813
4834
  * Aggregated number of rows per period.
4814
4835
  */
@@ -4825,7 +4846,7 @@ export declare namespace Models {
4825
4846
  /**
4826
4847
  * Total aggregated number of of documents.
4827
4848
  */
4828
- documentsTotal: number | bigint;
4849
+ documentsTotal: number;
4829
4850
  /**
4830
4851
  * Aggregated number of documents per period.
4831
4852
  */
@@ -4842,11 +4863,11 @@ export declare namespace Models {
4842
4863
  /**
4843
4864
  * Total aggregated number of statistics of users.
4844
4865
  */
4845
- usersTotal: number | bigint;
4866
+ usersTotal: number;
4846
4867
  /**
4847
4868
  * Total aggregated number of active sessions.
4848
4869
  */
4849
- sessionsTotal: number | bigint;
4870
+ sessionsTotal: number;
4850
4871
  /**
4851
4872
  * Aggregated number of users per period.
4852
4873
  */
@@ -4867,15 +4888,15 @@ export declare namespace Models {
4867
4888
  /**
4868
4889
  * Total aggregated number of buckets
4869
4890
  */
4870
- bucketsTotal: number | bigint;
4891
+ bucketsTotal: number;
4871
4892
  /**
4872
4893
  * Total aggregated number of files.
4873
4894
  */
4874
- filesTotal: number | bigint;
4895
+ filesTotal: number;
4875
4896
  /**
4876
4897
  * Total aggregated number of files storage (in bytes).
4877
4898
  */
4878
- filesStorageTotal: number | bigint;
4899
+ filesStorageTotal: number;
4879
4900
  /**
4880
4901
  * Aggregated number of buckets per period.
4881
4902
  */
@@ -4900,11 +4921,11 @@ export declare namespace Models {
4900
4921
  /**
4901
4922
  * Total aggregated number of bucket files.
4902
4923
  */
4903
- filesTotal: number | bigint;
4924
+ filesTotal: number;
4904
4925
  /**
4905
4926
  * Total aggregated number of bucket files storage (in bytes).
4906
4927
  */
4907
- filesStorageTotal: number | bigint;
4928
+ filesStorageTotal: number;
4908
4929
  /**
4909
4930
  * Aggregated number of bucket files per period.
4910
4931
  */
@@ -4920,7 +4941,7 @@ export declare namespace Models {
4920
4941
  /**
4921
4942
  * Total aggregated number of files transformations.
4922
4943
  */
4923
- imageTransformationsTotal: number | bigint;
4944
+ imageTransformationsTotal: number;
4924
4945
  };
4925
4946
  /**
4926
4947
  * UsageFunctions
@@ -4933,43 +4954,43 @@ export declare namespace Models {
4933
4954
  /**
4934
4955
  * Total aggregated number of functions.
4935
4956
  */
4936
- functionsTotal: number | bigint;
4957
+ functionsTotal: number;
4937
4958
  /**
4938
4959
  * Total aggregated number of functions deployments.
4939
4960
  */
4940
- deploymentsTotal: number | bigint;
4961
+ deploymentsTotal: number;
4941
4962
  /**
4942
4963
  * Total aggregated sum of functions deployment storage.
4943
4964
  */
4944
- deploymentsStorageTotal: number | bigint;
4965
+ deploymentsStorageTotal: number;
4945
4966
  /**
4946
4967
  * Total aggregated number of functions build.
4947
4968
  */
4948
- buildsTotal: number | bigint;
4969
+ buildsTotal: number;
4949
4970
  /**
4950
4971
  * total aggregated sum of functions build storage.
4951
4972
  */
4952
- buildsStorageTotal: number | bigint;
4973
+ buildsStorageTotal: number;
4953
4974
  /**
4954
4975
  * Total aggregated sum of functions build compute time.
4955
4976
  */
4956
- buildsTimeTotal: number | bigint;
4977
+ buildsTimeTotal: number;
4957
4978
  /**
4958
4979
  * Total aggregated sum of functions build mbSeconds.
4959
4980
  */
4960
- buildsMbSecondsTotal: number | bigint;
4981
+ buildsMbSecondsTotal: number;
4961
4982
  /**
4962
4983
  * Total aggregated number of functions execution.
4963
4984
  */
4964
- executionsTotal: number | bigint;
4985
+ executionsTotal: number;
4965
4986
  /**
4966
4987
  * Total aggregated sum of functions execution compute time.
4967
4988
  */
4968
- executionsTimeTotal: number | bigint;
4989
+ executionsTimeTotal: number;
4969
4990
  /**
4970
4991
  * Total aggregated sum of functions execution mbSeconds.
4971
4992
  */
4972
- executionsMbSecondsTotal: number | bigint;
4993
+ executionsMbSecondsTotal: number;
4973
4994
  /**
4974
4995
  * Aggregated number of functions per period.
4975
4996
  */
@@ -4985,11 +5006,11 @@ export declare namespace Models {
4985
5006
  /**
4986
5007
  * Total aggregated number of successful function builds.
4987
5008
  */
4988
- buildsSuccessTotal: number | bigint;
5009
+ buildsSuccessTotal: number;
4989
5010
  /**
4990
5011
  * Total aggregated number of failed function builds.
4991
5012
  */
4992
- buildsFailedTotal: number | bigint;
5013
+ buildsFailedTotal: number;
4993
5014
  /**
4994
5015
  * Aggregated number of functions build per period.
4995
5016
  */
@@ -5038,51 +5059,51 @@ export declare namespace Models {
5038
5059
  /**
5039
5060
  * Total aggregated number of function deployments.
5040
5061
  */
5041
- deploymentsTotal: number | bigint;
5062
+ deploymentsTotal: number;
5042
5063
  /**
5043
5064
  * Total aggregated sum of function deployments storage.
5044
5065
  */
5045
- deploymentsStorageTotal: number | bigint;
5066
+ deploymentsStorageTotal: number;
5046
5067
  /**
5047
5068
  * Total aggregated number of function builds.
5048
5069
  */
5049
- buildsTotal: number | bigint;
5070
+ buildsTotal: number;
5050
5071
  /**
5051
5072
  * Total aggregated number of successful function builds.
5052
5073
  */
5053
- buildsSuccessTotal: number | bigint;
5074
+ buildsSuccessTotal: number;
5054
5075
  /**
5055
5076
  * Total aggregated number of failed function builds.
5056
5077
  */
5057
- buildsFailedTotal: number | bigint;
5078
+ buildsFailedTotal: number;
5058
5079
  /**
5059
5080
  * total aggregated sum of function builds storage.
5060
5081
  */
5061
- buildsStorageTotal: number | bigint;
5082
+ buildsStorageTotal: number;
5062
5083
  /**
5063
5084
  * Total aggregated sum of function builds compute time.
5064
5085
  */
5065
- buildsTimeTotal: number | bigint;
5086
+ buildsTimeTotal: number;
5066
5087
  /**
5067
5088
  * Average builds compute time.
5068
5089
  */
5069
- buildsTimeAverage: number | bigint;
5090
+ buildsTimeAverage: number;
5070
5091
  /**
5071
5092
  * Total aggregated sum of function builds mbSeconds.
5072
5093
  */
5073
- buildsMbSecondsTotal: number | bigint;
5094
+ buildsMbSecondsTotal: number;
5074
5095
  /**
5075
5096
  * Total aggregated number of function executions.
5076
5097
  */
5077
- executionsTotal: number | bigint;
5098
+ executionsTotal: number;
5078
5099
  /**
5079
5100
  * Total aggregated sum of function executions compute time.
5080
5101
  */
5081
- executionsTimeTotal: number | bigint;
5102
+ executionsTimeTotal: number;
5082
5103
  /**
5083
5104
  * Total aggregated sum of function executions mbSeconds.
5084
5105
  */
5085
- executionsMbSecondsTotal: number | bigint;
5106
+ executionsMbSecondsTotal: number;
5086
5107
  /**
5087
5108
  * Aggregated number of function deployments per period.
5088
5109
  */
@@ -5139,7 +5160,7 @@ export declare namespace Models {
5139
5160
  /**
5140
5161
  * Total aggregated number of sites.
5141
5162
  */
5142
- sitesTotal: number | bigint;
5163
+ sitesTotal: number;
5143
5164
  /**
5144
5165
  * Aggregated number of sites per period.
5145
5166
  */
@@ -5147,43 +5168,43 @@ export declare namespace Models {
5147
5168
  /**
5148
5169
  * Total aggregated number of sites deployments.
5149
5170
  */
5150
- deploymentsTotal: number | bigint;
5171
+ deploymentsTotal: number;
5151
5172
  /**
5152
5173
  * Total aggregated sum of sites deployment storage.
5153
5174
  */
5154
- deploymentsStorageTotal: number | bigint;
5175
+ deploymentsStorageTotal: number;
5155
5176
  /**
5156
5177
  * Total aggregated number of sites build.
5157
5178
  */
5158
- buildsTotal: number | bigint;
5179
+ buildsTotal: number;
5159
5180
  /**
5160
5181
  * total aggregated sum of sites build storage.
5161
5182
  */
5162
- buildsStorageTotal: number | bigint;
5183
+ buildsStorageTotal: number;
5163
5184
  /**
5164
5185
  * Total aggregated sum of sites build compute time.
5165
5186
  */
5166
- buildsTimeTotal: number | bigint;
5187
+ buildsTimeTotal: number;
5167
5188
  /**
5168
5189
  * Total aggregated sum of sites build mbSeconds.
5169
5190
  */
5170
- buildsMbSecondsTotal: number | bigint;
5191
+ buildsMbSecondsTotal: number;
5171
5192
  /**
5172
5193
  * Total aggregated number of sites execution.
5173
5194
  */
5174
- executionsTotal: number | bigint;
5195
+ executionsTotal: number;
5175
5196
  /**
5176
5197
  * Total aggregated sum of sites execution compute time.
5177
5198
  */
5178
- executionsTimeTotal: number | bigint;
5199
+ executionsTimeTotal: number;
5179
5200
  /**
5180
5201
  * Total aggregated sum of sites execution mbSeconds.
5181
5202
  */
5182
- executionsMbSecondsTotal: number | bigint;
5203
+ executionsMbSecondsTotal: number;
5183
5204
  /**
5184
5205
  * Total aggregated number of requests.
5185
5206
  */
5186
- requestsTotal: number | bigint;
5207
+ requestsTotal: number;
5187
5208
  /**
5188
5209
  * Aggregated number of requests per period.
5189
5210
  */
@@ -5191,7 +5212,7 @@ export declare namespace Models {
5191
5212
  /**
5192
5213
  * Total aggregated inbound bandwidth.
5193
5214
  */
5194
- inboundTotal: number | bigint;
5215
+ inboundTotal: number;
5195
5216
  /**
5196
5217
  * Aggregated number of inbound bandwidth per period.
5197
5218
  */
@@ -5199,7 +5220,7 @@ export declare namespace Models {
5199
5220
  /**
5200
5221
  * Total aggregated outbound bandwidth.
5201
5222
  */
5202
- outboundTotal: number | bigint;
5223
+ outboundTotal: number;
5203
5224
  /**
5204
5225
  * Aggregated number of outbound bandwidth per period.
5205
5226
  */
@@ -5215,11 +5236,11 @@ export declare namespace Models {
5215
5236
  /**
5216
5237
  * Total aggregated number of successful site builds.
5217
5238
  */
5218
- buildsSuccessTotal: number | bigint;
5239
+ buildsSuccessTotal: number;
5219
5240
  /**
5220
5241
  * Total aggregated number of failed site builds.
5221
5242
  */
5222
- buildsFailedTotal: number | bigint;
5243
+ buildsFailedTotal: number;
5223
5244
  /**
5224
5245
  * Aggregated number of sites build per period.
5225
5246
  */
@@ -5268,51 +5289,51 @@ export declare namespace Models {
5268
5289
  /**
5269
5290
  * Total aggregated number of function deployments.
5270
5291
  */
5271
- deploymentsTotal: number | bigint;
5292
+ deploymentsTotal: number;
5272
5293
  /**
5273
5294
  * Total aggregated sum of function deployments storage.
5274
5295
  */
5275
- deploymentsStorageTotal: number | bigint;
5296
+ deploymentsStorageTotal: number;
5276
5297
  /**
5277
5298
  * Total aggregated number of function builds.
5278
5299
  */
5279
- buildsTotal: number | bigint;
5300
+ buildsTotal: number;
5280
5301
  /**
5281
5302
  * Total aggregated number of successful function builds.
5282
5303
  */
5283
- buildsSuccessTotal: number | bigint;
5304
+ buildsSuccessTotal: number;
5284
5305
  /**
5285
5306
  * Total aggregated number of failed function builds.
5286
5307
  */
5287
- buildsFailedTotal: number | bigint;
5308
+ buildsFailedTotal: number;
5288
5309
  /**
5289
5310
  * total aggregated sum of function builds storage.
5290
5311
  */
5291
- buildsStorageTotal: number | bigint;
5312
+ buildsStorageTotal: number;
5292
5313
  /**
5293
5314
  * Total aggregated sum of function builds compute time.
5294
5315
  */
5295
- buildsTimeTotal: number | bigint;
5316
+ buildsTimeTotal: number;
5296
5317
  /**
5297
5318
  * Average builds compute time.
5298
5319
  */
5299
- buildsTimeAverage: number | bigint;
5320
+ buildsTimeAverage: number;
5300
5321
  /**
5301
5322
  * Total aggregated sum of function builds mbSeconds.
5302
5323
  */
5303
- buildsMbSecondsTotal: number | bigint;
5324
+ buildsMbSecondsTotal: number;
5304
5325
  /**
5305
5326
  * Total aggregated number of function executions.
5306
5327
  */
5307
- executionsTotal: number | bigint;
5328
+ executionsTotal: number;
5308
5329
  /**
5309
5330
  * Total aggregated sum of function executions compute time.
5310
5331
  */
5311
- executionsTimeTotal: number | bigint;
5332
+ executionsTimeTotal: number;
5312
5333
  /**
5313
5334
  * Total aggregated sum of function executions mbSeconds.
5314
5335
  */
5315
- executionsMbSecondsTotal: number | bigint;
5336
+ executionsMbSecondsTotal: number;
5316
5337
  /**
5317
5338
  * Aggregated number of function deployments per period.
5318
5339
  */
@@ -5360,7 +5381,7 @@ export declare namespace Models {
5360
5381
  /**
5361
5382
  * Total aggregated number of requests.
5362
5383
  */
5363
- requestsTotal: number | bigint;
5384
+ requestsTotal: number;
5364
5385
  /**
5365
5386
  * Aggregated number of requests per period.
5366
5387
  */
@@ -5368,7 +5389,7 @@ export declare namespace Models {
5368
5389
  /**
5369
5390
  * Total aggregated inbound bandwidth.
5370
5391
  */
5371
- inboundTotal: number | bigint;
5392
+ inboundTotal: number;
5372
5393
  /**
5373
5394
  * Aggregated number of inbound bandwidth per period.
5374
5395
  */
@@ -5376,7 +5397,7 @@ export declare namespace Models {
5376
5397
  /**
5377
5398
  * Total aggregated outbound bandwidth.
5378
5399
  */
5379
- outboundTotal: number | bigint;
5400
+ outboundTotal: number;
5380
5401
  /**
5381
5402
  * Aggregated number of outbound bandwidth per period.
5382
5403
  */
@@ -5389,63 +5410,63 @@ export declare namespace Models {
5389
5410
  /**
5390
5411
  * Total aggregated number of function executions.
5391
5412
  */
5392
- executionsTotal: number | bigint;
5413
+ executionsTotal: number;
5393
5414
  /**
5394
5415
  * Total aggregated number of documents.
5395
5416
  */
5396
- documentsTotal: number | bigint;
5417
+ documentsTotal: number;
5397
5418
  /**
5398
5419
  * Total aggregated number of rows.
5399
5420
  */
5400
- rowsTotal: number | bigint;
5421
+ rowsTotal: number;
5401
5422
  /**
5402
5423
  * Total aggregated number of databases.
5403
5424
  */
5404
- databasesTotal: number | bigint;
5425
+ databasesTotal: number;
5405
5426
  /**
5406
5427
  * Total aggregated sum of databases storage size (in bytes).
5407
5428
  */
5408
- databasesStorageTotal: number | bigint;
5429
+ databasesStorageTotal: number;
5409
5430
  /**
5410
5431
  * Total aggregated number of users.
5411
5432
  */
5412
- usersTotal: number | bigint;
5433
+ usersTotal: number;
5413
5434
  /**
5414
5435
  * Total aggregated sum of files storage size (in bytes).
5415
5436
  */
5416
- filesStorageTotal: number | bigint;
5437
+ filesStorageTotal: number;
5417
5438
  /**
5418
5439
  * Total aggregated sum of functions storage size (in bytes).
5419
5440
  */
5420
- functionsStorageTotal: number | bigint;
5441
+ functionsStorageTotal: number;
5421
5442
  /**
5422
5443
  * Total aggregated sum of builds storage size (in bytes).
5423
5444
  */
5424
- buildsStorageTotal: number | bigint;
5445
+ buildsStorageTotal: number;
5425
5446
  /**
5426
5447
  * Total aggregated sum of deployments storage size (in bytes).
5427
5448
  */
5428
- deploymentsStorageTotal: number | bigint;
5449
+ deploymentsStorageTotal: number;
5429
5450
  /**
5430
5451
  * Total aggregated number of buckets.
5431
5452
  */
5432
- bucketsTotal: number | bigint;
5453
+ bucketsTotal: number;
5433
5454
  /**
5434
5455
  * Total aggregated number of function executions mbSeconds.
5435
5456
  */
5436
- executionsMbSecondsTotal: number | bigint;
5457
+ executionsMbSecondsTotal: number;
5437
5458
  /**
5438
5459
  * Total aggregated number of function builds mbSeconds.
5439
5460
  */
5440
- buildsMbSecondsTotal: number | bigint;
5461
+ buildsMbSecondsTotal: number;
5441
5462
  /**
5442
5463
  * Aggregated stats for total databases reads.
5443
5464
  */
5444
- databasesReadsTotal: number | bigint;
5465
+ databasesReadsTotal: number;
5445
5466
  /**
5446
5467
  * Aggregated stats for total databases writes.
5447
5468
  */
5448
- databasesWritesTotal: number | bigint;
5469
+ databasesWritesTotal: number;
5449
5470
  /**
5450
5471
  * Aggregated number of requests per period.
5451
5472
  */
@@ -5489,11 +5510,11 @@ export declare namespace Models {
5489
5510
  /**
5490
5511
  * Aggregated stats for total auth phone.
5491
5512
  */
5492
- authPhoneTotal: number | bigint;
5513
+ authPhoneTotal: number;
5493
5514
  /**
5494
5515
  * Aggregated stats for total auth phone estimation.
5495
5516
  */
5496
- authPhoneEstimate: number | bigint;
5517
+ authPhoneEstimate: number;
5497
5518
  /**
5498
5519
  * Aggregated breakdown in totals of phone auth by country.
5499
5520
  */
@@ -5513,15 +5534,15 @@ export declare namespace Models {
5513
5534
  /**
5514
5535
  * Total aggregated number of image transformations.
5515
5536
  */
5516
- imageTransformationsTotal: number | bigint;
5537
+ imageTransformationsTotal: number;
5517
5538
  /**
5518
5539
  * Aggregated stats for total network bandwidth.
5519
5540
  */
5520
- networkTotal: number | bigint;
5541
+ networkTotal: number;
5521
5542
  /**
5522
5543
  * Aggregated stats for total backups storage.
5523
5544
  */
5524
- backupsStorageTotal: number | bigint;
5545
+ backupsStorageTotal: number;
5525
5546
  /**
5526
5547
  * An array of aggregated number of screenshots generated.
5527
5548
  */
@@ -5529,7 +5550,7 @@ export declare namespace Models {
5529
5550
  /**
5530
5551
  * Total aggregated number of screenshots generated.
5531
5552
  */
5532
- screenshotsGeneratedTotal: number | bigint;
5553
+ screenshotsGeneratedTotal: number;
5533
5554
  /**
5534
5555
  * An array of aggregated number of Imagine credits in the given period.
5535
5556
  */
@@ -5537,7 +5558,7 @@ export declare namespace Models {
5537
5558
  /**
5538
5559
  * Total aggregated number of Imagine credits.
5539
5560
  */
5540
- imagineCreditsTotal: number | bigint;
5561
+ imagineCreditsTotal: number;
5541
5562
  };
5542
5563
  /**
5543
5564
  * Headers
@@ -5559,11 +5580,11 @@ export declare namespace Models {
5559
5580
  /**
5560
5581
  * Memory size in MB.
5561
5582
  */
5562
- memory: number | bigint;
5583
+ memory: number;
5563
5584
  /**
5564
5585
  * Number of CPUs.
5565
5586
  */
5566
- cpus: number | bigint;
5587
+ cpus: number;
5567
5588
  /**
5568
5589
  * Is size enabled.
5569
5590
  */
@@ -5608,7 +5629,7 @@ export declare namespace Models {
5608
5629
  /**
5609
5630
  * Status code to apply during redirect. Used if type is "redirect"
5610
5631
  */
5611
- redirectStatusCode: number | bigint;
5632
+ redirectStatusCode: number;
5612
5633
  /**
5613
5634
  * ID of deployment. Used if type is "deployment"
5614
5635
  */
@@ -5703,7 +5724,7 @@ export declare namespace Models {
5703
5724
  /**
5704
5725
  * Maximum build timeout in seconds.
5705
5726
  */
5706
- _APP_COMPUTE_BUILD_TIMEOUT: number | bigint;
5727
+ _APP_COMPUTE_BUILD_TIMEOUT: number;
5707
5728
  /**
5708
5729
  * AAAA target for your Appwrite custom domains.
5709
5730
  */
@@ -5715,11 +5736,11 @@ export declare namespace Models {
5715
5736
  /**
5716
5737
  * Maximum file size allowed for file upload in bytes.
5717
5738
  */
5718
- _APP_STORAGE_LIMIT: number | bigint;
5739
+ _APP_STORAGE_LIMIT: number;
5719
5740
  /**
5720
5741
  * Maximum file size allowed for deployment in bytes.
5721
5742
  */
5722
- _APP_COMPUTE_SIZE_LIMIT: number | bigint;
5743
+ _APP_COMPUTE_SIZE_LIMIT: number;
5723
5744
  /**
5724
5745
  * Defines if usage stats are enabled. This value is set to 'enabled' by default, to disable the usage stats set the value to 'disabled'.
5725
5746
  */
@@ -5905,7 +5926,7 @@ export declare namespace Models {
5905
5926
  /**
5906
5927
  * Number of recipients the message was delivered to.
5907
5928
  */
5908
- deliveredTotal: number | bigint;
5929
+ deliveredTotal: number;
5909
5930
  /**
5910
5931
  * Data of the message.
5911
5932
  */
@@ -5938,15 +5959,15 @@ export declare namespace Models {
5938
5959
  /**
5939
5960
  * Total count of email subscribers subscribed to the topic.
5940
5961
  */
5941
- emailTotal: number | bigint;
5962
+ emailTotal: number;
5942
5963
  /**
5943
5964
  * Total count of SMS subscribers subscribed to the topic.
5944
5965
  */
5945
- smsTotal: number | bigint;
5966
+ smsTotal: number;
5946
5967
  /**
5947
5968
  * Total count of push subscribers subscribed to the topic.
5948
5969
  */
5949
- pushTotal: number | bigint;
5970
+ pushTotal: number;
5950
5971
  /**
5951
5972
  * Subscribe permissions.
5952
5973
  */
@@ -5975,7 +5996,7 @@ export declare namespace Models {
5975
5996
  /**
5976
5997
  * Number of operations in the transaction.
5977
5998
  */
5978
- operations: number | bigint;
5999
+ operations: number;
5979
6000
  /**
5980
6001
  * Expiration time in ISO 8601 format.
5981
6002
  */
@@ -6127,35 +6148,35 @@ export declare namespace Models {
6127
6148
  /**
6128
6149
  * Number of users to be migrated.
6129
6150
  */
6130
- user: number | bigint;
6151
+ user: number;
6131
6152
  /**
6132
6153
  * Number of teams to be migrated.
6133
6154
  */
6134
- team: number | bigint;
6155
+ team: number;
6135
6156
  /**
6136
6157
  * Number of databases to be migrated.
6137
6158
  */
6138
- database: number | bigint;
6159
+ database: number;
6139
6160
  /**
6140
6161
  * Number of rows to be migrated.
6141
6162
  */
6142
- row: number | bigint;
6163
+ row: number;
6143
6164
  /**
6144
6165
  * Number of files to be migrated.
6145
6166
  */
6146
- file: number | bigint;
6167
+ file: number;
6147
6168
  /**
6148
6169
  * Number of buckets to be migrated.
6149
6170
  */
6150
- bucket: number | bigint;
6171
+ bucket: number;
6151
6172
  /**
6152
6173
  * Number of functions to be migrated.
6153
6174
  */
6154
- function: number | bigint;
6175
+ function: number;
6155
6176
  /**
6156
6177
  * Size of files to be migrated in mb.
6157
6178
  */
6158
- size: number | bigint;
6179
+ size: number;
6159
6180
  /**
6160
6181
  * Version of the Appwrite instance to be migrated.
6161
6182
  */
@@ -6180,11 +6201,11 @@ export declare namespace Models {
6180
6201
  /**
6181
6202
  * Price
6182
6203
  */
6183
- price: number | bigint;
6204
+ price: number;
6184
6205
  /**
6185
6206
  * Resource value
6186
6207
  */
6187
- value: number | bigint;
6208
+ value: number;
6188
6209
  /**
6189
6210
  * Description on invoice
6190
6211
  */
@@ -6221,71 +6242,71 @@ export declare namespace Models {
6221
6242
  /**
6222
6243
  * Total storage usage
6223
6244
  */
6224
- usageStorage: number | bigint;
6245
+ usageStorage: number;
6225
6246
  /**
6226
6247
  * Total storage usage with builds storage
6227
6248
  */
6228
- usageTotalStorage: number | bigint;
6249
+ usageTotalStorage: number;
6229
6250
  /**
6230
6251
  * Total files storage usage
6231
6252
  */
6232
- usageFilesStorage: number | bigint;
6253
+ usageFilesStorage: number;
6233
6254
  /**
6234
6255
  * Total deployments storage usage
6235
6256
  */
6236
- usageDeploymentsStorage: number | bigint;
6257
+ usageDeploymentsStorage: number;
6237
6258
  /**
6238
6259
  * Total builds storage usage
6239
6260
  */
6240
- usageBuildsStorage: number | bigint;
6261
+ usageBuildsStorage: number;
6241
6262
  /**
6242
6263
  * Total databases storage usage
6243
6264
  */
6244
- usageDatabasesStorage: number | bigint;
6265
+ usageDatabasesStorage: number;
6245
6266
  /**
6246
6267
  * Total active users for the billing period
6247
6268
  */
6248
- usageUsers: number | bigint;
6269
+ usageUsers: number;
6249
6270
  /**
6250
6271
  * Total number of executions for the billing period
6251
6272
  */
6252
- usageExecutions: number | bigint;
6273
+ usageExecutions: number;
6253
6274
  /**
6254
6275
  * Total bandwidth usage for the billing period
6255
6276
  */
6256
- usageBandwidth: number | bigint;
6277
+ usageBandwidth: number;
6257
6278
  /**
6258
6279
  * Total realtime usage for the billing period
6259
6280
  */
6260
- usageRealtime: number | bigint;
6281
+ usageRealtime: number;
6261
6282
  /**
6262
6283
  * Additional members
6263
6284
  */
6264
- additionalMembers: number | bigint;
6285
+ additionalMembers: number;
6265
6286
  /**
6266
6287
  * Additional members cost
6267
6288
  */
6268
- additionalMemberAmount: number | bigint;
6289
+ additionalMemberAmount: number;
6269
6290
  /**
6270
6291
  * Additional storage usage cost
6271
6292
  */
6272
- additionalStorageAmount: number | bigint;
6293
+ additionalStorageAmount: number;
6273
6294
  /**
6274
6295
  * Additional users usage cost.
6275
6296
  */
6276
- additionalUsersAmount: number | bigint;
6297
+ additionalUsersAmount: number;
6277
6298
  /**
6278
6299
  * Additional executions usage cost
6279
6300
  */
6280
- additionalExecutionsAmount: number | bigint;
6301
+ additionalExecutionsAmount: number;
6281
6302
  /**
6282
6303
  * Additional bandwidth usage cost
6283
6304
  */
6284
- additionalBandwidthAmount: number | bigint;
6305
+ additionalBandwidthAmount: number;
6285
6306
  /**
6286
6307
  * Additional realtime usage cost
6287
6308
  */
6288
- additionalRealtimeAmount: number | bigint;
6309
+ additionalRealtimeAmount: number;
6289
6310
  /**
6290
6311
  * Billing plan
6291
6312
  */
@@ -6293,7 +6314,7 @@ export declare namespace Models {
6293
6314
  /**
6294
6315
  * Aggregated amount
6295
6316
  */
6296
- amount: number | bigint;
6317
+ amount: number;
6297
6318
  /**
6298
6319
  * Aggregation project breakdown
6299
6320
  */
@@ -6322,7 +6343,7 @@ export declare namespace Models {
6322
6343
  /**
6323
6344
  * Aggregated amount
6324
6345
  */
6325
- amount: number | bigint;
6346
+ amount: number;
6326
6347
  /**
6327
6348
  *
6328
6349
  */
@@ -6351,7 +6372,7 @@ export declare namespace Models {
6351
6372
  /**
6352
6373
  * Archive size in bytes.
6353
6374
  */
6354
- size: number | bigint;
6375
+ size: number;
6355
6376
  /**
6356
6377
  * The status of the archive creation. Possible values: pending, processing, uploading, completed, failed.
6357
6378
  */
@@ -6437,119 +6458,123 @@ export declare namespace Models {
6437
6458
  /**
6438
6459
  * Plan order
6439
6460
  */
6440
- order: number | bigint;
6461
+ order: number;
6441
6462
  /**
6442
6463
  * Price
6443
6464
  */
6444
- price: number | bigint;
6465
+ price: number;
6445
6466
  /**
6446
6467
  * Trial days
6447
6468
  */
6448
- trial: number | bigint;
6469
+ trial: number;
6449
6470
  /**
6450
6471
  * Bandwidth
6451
6472
  */
6452
- bandwidth: number | bigint;
6473
+ bandwidth: number;
6453
6474
  /**
6454
6475
  * Storage
6455
6476
  */
6456
- storage: number | bigint;
6477
+ storage: number;
6457
6478
  /**
6458
6479
  * Image Transformations
6459
6480
  */
6460
- imageTransformations: number | bigint;
6481
+ imageTransformations: number;
6461
6482
  /**
6462
6483
  * Members
6463
6484
  */
6464
- members: number | bigint;
6485
+ members: number;
6465
6486
  /**
6466
6487
  * Webhooks
6467
6488
  */
6468
- webhooks: number | bigint;
6489
+ webhooks: number;
6469
6490
  /**
6470
6491
  * Projects
6471
6492
  */
6472
- projects: number | bigint;
6493
+ projects: number;
6473
6494
  /**
6474
6495
  * Platforms
6475
6496
  */
6476
- platforms: number | bigint;
6497
+ platforms: number;
6477
6498
  /**
6478
6499
  * Users
6479
6500
  */
6480
- users: number | bigint;
6501
+ users: number;
6481
6502
  /**
6482
6503
  * Teams
6483
6504
  */
6484
- teams: number | bigint;
6505
+ teams: number;
6485
6506
  /**
6486
6507
  * Databases
6487
6508
  */
6488
- databases: number | bigint;
6509
+ databases: number;
6489
6510
  /**
6490
6511
  * Database reads per month
6491
6512
  */
6492
- databasesReads: number | bigint;
6513
+ databasesReads: number;
6493
6514
  /**
6494
6515
  * Database writes per month
6495
6516
  */
6496
- databasesWrites: number | bigint;
6517
+ databasesWrites: number;
6497
6518
  /**
6498
6519
  * Database batch size limit
6499
6520
  */
6500
- databasesBatchSize: number | bigint;
6521
+ databasesBatchSize: number;
6501
6522
  /**
6502
6523
  * Buckets
6503
6524
  */
6504
- buckets: number | bigint;
6525
+ buckets: number;
6505
6526
  /**
6506
6527
  * File size
6507
6528
  */
6508
- fileSize: number | bigint;
6529
+ fileSize: number;
6509
6530
  /**
6510
6531
  * Functions
6511
6532
  */
6512
- functions: number | bigint;
6533
+ functions: number;
6513
6534
  /**
6514
6535
  * Sites
6515
6536
  */
6516
- sites: number | bigint;
6537
+ sites: number;
6517
6538
  /**
6518
6539
  * Function executions
6519
6540
  */
6520
- executions: number | bigint;
6541
+ executions: number;
6542
+ /**
6543
+ * Rolling max executions retained per function/site
6544
+ */
6545
+ executionsRetentionCount: number;
6521
6546
  /**
6522
6547
  * GB hours for functions
6523
6548
  */
6524
- GBHours: number | bigint;
6549
+ GBHours: number;
6525
6550
  /**
6526
6551
  * Realtime connections
6527
6552
  */
6528
- realtime: number | bigint;
6553
+ realtime: number;
6529
6554
  /**
6530
6555
  * Messages per month
6531
6556
  */
6532
- messages: number | bigint;
6557
+ messages: number;
6533
6558
  /**
6534
6559
  * Topics for messaging
6535
6560
  */
6536
- topics: number | bigint;
6561
+ topics: number;
6537
6562
  /**
6538
6563
  * SMS authentications per month
6539
6564
  */
6540
- authPhone: number | bigint;
6565
+ authPhone: number;
6541
6566
  /**
6542
6567
  * Custom domains
6543
6568
  */
6544
- domains: number | bigint;
6569
+ domains: number;
6545
6570
  /**
6546
6571
  * Log days
6547
6572
  */
6548
- logs: number | bigint;
6573
+ logs: number;
6549
6574
  /**
6550
6575
  * Alert threshold percentage
6551
6576
  */
6552
- alertLimit: number | bigint;
6577
+ alertLimit: number;
6553
6578
  /**
6554
6579
  * Additional resources
6555
6580
  */
@@ -6617,15 +6642,15 @@ export declare namespace Models {
6617
6642
  /**
6618
6643
  * How many policies does plan support
6619
6644
  */
6620
- backupPolicies: number | bigint;
6645
+ backupPolicies: number;
6621
6646
  /**
6622
6647
  * Maximum function and site deployment size in MB
6623
6648
  */
6624
- deploymentSize: number | bigint;
6649
+ deploymentSize: number;
6625
6650
  /**
6626
6651
  * Maximum function and site deployment size in MB
6627
6652
  */
6628
- buildSize: number | bigint;
6653
+ buildSize: number;
6629
6654
  /**
6630
6655
  * Does the plan support encrypted string attributes or not.
6631
6656
  */
@@ -6667,11 +6692,11 @@ export declare namespace Models {
6667
6692
  /**
6668
6693
  * Addon plan included value
6669
6694
  */
6670
- planIncluded: number | bigint;
6695
+ planIncluded: number;
6671
6696
  /**
6672
6697
  * Addon limit
6673
6698
  */
6674
- limit: number | bigint;
6699
+ limit: number;
6675
6700
  /**
6676
6701
  * Addon type
6677
6702
  */
@@ -6683,11 +6708,11 @@ export declare namespace Models {
6683
6708
  /**
6684
6709
  * Price
6685
6710
  */
6686
- price: number | bigint;
6711
+ price: number;
6687
6712
  /**
6688
6713
  * Resource value
6689
6714
  */
6690
- value: number | bigint;
6715
+ value: number;
6691
6716
  /**
6692
6717
  * Description on invoice
6693
6718
  */
@@ -6700,11 +6725,11 @@ export declare namespace Models {
6700
6725
  /**
6701
6726
  * Credits limit per billing cycle
6702
6727
  */
6703
- credits?: number | bigint;
6728
+ credits?: number;
6704
6729
  /**
6705
6730
  * Daily credits limit (if applicable)
6706
6731
  */
6707
- dailyCredits?: number | bigint;
6732
+ dailyCredits?: number;
6708
6733
  };
6709
6734
  /**
6710
6735
  * BillingLimits
@@ -6713,35 +6738,35 @@ export declare namespace Models {
6713
6738
  /**
6714
6739
  * Bandwidth limit
6715
6740
  */
6716
- bandwidth: number | bigint;
6741
+ bandwidth: number;
6717
6742
  /**
6718
6743
  * Storage limit
6719
6744
  */
6720
- storage: number | bigint;
6745
+ storage: number;
6721
6746
  /**
6722
6747
  * Users limit
6723
6748
  */
6724
- users: number | bigint;
6749
+ users: number;
6725
6750
  /**
6726
6751
  * Executions limit
6727
6752
  */
6728
- executions: number | bigint;
6753
+ executions: number;
6729
6754
  /**
6730
6755
  * GBHours limit
6731
6756
  */
6732
- GBHours: number | bigint;
6757
+ GBHours: number;
6733
6758
  /**
6734
6759
  * Image transformations limit
6735
6760
  */
6736
- imageTransformations: number | bigint;
6761
+ imageTransformations: number;
6737
6762
  /**
6738
6763
  * Auth phone limit
6739
6764
  */
6740
- authPhone: number | bigint;
6765
+ authPhone: number;
6741
6766
  /**
6742
6767
  * Budget limit percentage
6743
6768
  */
6744
- budgetLimit: number | bigint;
6769
+ budgetLimit: number;
6745
6770
  };
6746
6771
  /**
6747
6772
  * Block
@@ -6877,7 +6902,7 @@ export declare namespace Models {
6877
6902
  /**
6878
6903
  * Provided credit amount
6879
6904
  */
6880
- credits: number | bigint;
6905
+ credits: number;
6881
6906
  /**
6882
6907
  * Coupon expiration time in ISO 8601 format.
6883
6908
  */
@@ -6885,7 +6910,7 @@ export declare namespace Models {
6885
6910
  /**
6886
6911
  * Credit validity in days.
6887
6912
  */
6888
- validity: number | bigint;
6913
+ validity: number;
6889
6914
  /**
6890
6915
  * Campaign the coupon is associated with`.
6891
6916
  */
@@ -6934,11 +6959,11 @@ export declare namespace Models {
6934
6959
  /**
6935
6960
  * Provided credit amount
6936
6961
  */
6937
- credits: number | bigint;
6962
+ credits: number;
6938
6963
  /**
6939
6964
  * Provided credit amount
6940
6965
  */
6941
- total: number | bigint;
6966
+ total: number;
6942
6967
  /**
6943
6968
  * Credit expiration time in ISO 8601 format.
6944
6969
  */
@@ -6955,7 +6980,7 @@ export declare namespace Models {
6955
6980
  /**
6956
6981
  * Total available credits for the organization.
6957
6982
  */
6958
- available: number | bigint;
6983
+ available: number;
6959
6984
  };
6960
6985
  /**
6961
6986
  * CreditList
@@ -6968,11 +6993,11 @@ export declare namespace Models {
6968
6993
  /**
6969
6994
  * Total number of credits
6970
6995
  */
6971
- total: number | bigint;
6996
+ total: number;
6972
6997
  /**
6973
6998
  * Total available credit balance in USD
6974
6999
  */
6975
- available: number | bigint;
7000
+ available: number;
6976
7001
  };
6977
7002
  /**
6978
7003
  * Downgrade Feedback
@@ -7058,31 +7083,31 @@ export declare namespace Models {
7058
7083
  /**
7059
7084
  * Invoice Amount
7060
7085
  */
7061
- amount: number | bigint;
7086
+ amount: number;
7062
7087
  /**
7063
7088
  * Tax percentage
7064
7089
  */
7065
- tax: number | bigint;
7090
+ tax: number;
7066
7091
  /**
7067
7092
  * Tax amount
7068
7093
  */
7069
- taxAmount: number | bigint;
7094
+ taxAmount: number;
7070
7095
  /**
7071
7096
  * VAT percentage
7072
7097
  */
7073
- vat: number | bigint;
7098
+ vat: number;
7074
7099
  /**
7075
7100
  * VAT amount
7076
7101
  */
7077
- vatAmount: number | bigint;
7102
+ vatAmount: number;
7078
7103
  /**
7079
7104
  * Gross amount after vat, tax, and discounts applied.
7080
7105
  */
7081
- grossAmount: number | bigint;
7106
+ grossAmount: number;
7082
7107
  /**
7083
7108
  * Credits used.
7084
7109
  */
7085
- creditsUsed: number | bigint;
7110
+ creditsUsed: number;
7086
7111
  /**
7087
7112
  * Currency the invoice is in
7088
7113
  */
@@ -7135,7 +7160,7 @@ export declare namespace Models {
7135
7160
  /**
7136
7161
  * Total number of team members.
7137
7162
  */
7138
- total: number | bigint;
7163
+ total: number;
7139
7164
  /**
7140
7165
  * Team preferences as a key-value object
7141
7166
  */
@@ -7143,11 +7168,11 @@ export declare namespace Models {
7143
7168
  /**
7144
7169
  * Project budget limit
7145
7170
  */
7146
- billingBudget: number | bigint;
7171
+ billingBudget: number;
7147
7172
  /**
7148
7173
  * Project budget limit
7149
7174
  */
7150
- budgetAlerts: number | bigint[];
7175
+ budgetAlerts: number[];
7151
7176
  /**
7152
7177
  * Organization's billing plan ID.
7153
7178
  */
@@ -7183,7 +7208,7 @@ export declare namespace Models {
7183
7208
  /**
7184
7209
  * Number of trial days.
7185
7210
  */
7186
- billingTrialDays: number | bigint;
7211
+ billingTrialDays: number;
7187
7212
  /**
7188
7213
  * Current active aggregation id.
7189
7214
  */
@@ -7317,11 +7342,11 @@ export declare namespace Models {
7317
7342
  /**
7318
7343
  * Expiry month of the payment method.
7319
7344
  */
7320
- expiryMonth: number | bigint;
7345
+ expiryMonth: number;
7321
7346
  /**
7322
7347
  * Expiry year of the payment method.
7323
7348
  */
7324
- expiryYear: number | bigint;
7349
+ expiryYear: number;
7325
7350
  /**
7326
7351
  * Last 4 digit of the payment method
7327
7352
  */
@@ -7402,7 +7427,7 @@ export declare namespace Models {
7402
7427
  /**
7403
7428
  * How many days to keep the backup before it will be automatically deleted.
7404
7429
  */
7405
- retention: number | bigint;
7430
+ retention: number;
7406
7431
  /**
7407
7432
  * Policy backup schedule in CRON format.
7408
7433
  */
@@ -7555,7 +7580,7 @@ export declare namespace Models {
7555
7580
  /**
7556
7581
  * Aggregated stats for total file transformations.
7557
7582
  */
7558
- imageTransformationsTotal: number | bigint;
7583
+ imageTransformationsTotal: number;
7559
7584
  /**
7560
7585
  * Aggregated stats for file transformations.
7561
7586
  */
@@ -7563,7 +7588,7 @@ export declare namespace Models {
7563
7588
  /**
7564
7589
  * Aggregated stats for total file transformations.
7565
7590
  */
7566
- screenshotsGeneratedTotal: number | bigint;
7591
+ screenshotsGeneratedTotal: number;
7567
7592
  /**
7568
7593
  * Aggregated stats for imagine credits.
7569
7594
  */
@@ -7571,63 +7596,63 @@ export declare namespace Models {
7571
7596
  /**
7572
7597
  * Aggregated stats for total imagine credits.
7573
7598
  */
7574
- imagineCreditsTotal: number | bigint;
7599
+ imagineCreditsTotal: number;
7575
7600
  /**
7576
7601
  * Aggregated stats for total users.
7577
7602
  */
7578
- usersTotal: number | bigint;
7603
+ usersTotal: number;
7579
7604
  /**
7580
7605
  * Aggregated stats for total executions.
7581
7606
  */
7582
- executionsTotal: number | bigint;
7607
+ executionsTotal: number;
7583
7608
  /**
7584
7609
  * Aggregated stats for function executions in mb seconds.
7585
7610
  */
7586
- executionsMBSecondsTotal: number | bigint;
7611
+ executionsMBSecondsTotal: number;
7587
7612
  /**
7588
7613
  * Aggregated stats for function builds in mb seconds.
7589
7614
  */
7590
- buildsMBSecondsTotal: number | bigint;
7615
+ buildsMBSecondsTotal: number;
7591
7616
  /**
7592
7617
  * Aggregated stats for total file storage.
7593
7618
  */
7594
- filesStorageTotal: number | bigint;
7619
+ filesStorageTotal: number;
7595
7620
  /**
7596
7621
  * Aggregated stats for total builds storage.
7597
7622
  */
7598
- buildsStorageTotal: number | bigint;
7623
+ buildsStorageTotal: number;
7599
7624
  /**
7600
7625
  * Aggregated stats for total deployments storage.
7601
7626
  */
7602
- deploymentsStorageTotal: number | bigint;
7627
+ deploymentsStorageTotal: number;
7603
7628
  /**
7604
7629
  * Aggregated stats for total databases storage.
7605
7630
  */
7606
- databasesStorageTotal: number | bigint;
7631
+ databasesStorageTotal: number;
7607
7632
  /**
7608
7633
  * Aggregated stats for total databases reads.
7609
7634
  */
7610
- databasesReadsTotal: number | bigint;
7635
+ databasesReadsTotal: number;
7611
7636
  /**
7612
7637
  * Aggregated stats for total databases writes.
7613
7638
  */
7614
- databasesWritesTotal: number | bigint;
7639
+ databasesWritesTotal: number;
7615
7640
  /**
7616
7641
  * Aggregated stats for total backups storage.
7617
7642
  */
7618
- backupsStorageTotal: number | bigint;
7643
+ backupsStorageTotal: number;
7619
7644
  /**
7620
7645
  * Aggregated stats for total storage.
7621
7646
  */
7622
- storageTotal: number | bigint;
7647
+ storageTotal: number;
7623
7648
  /**
7624
7649
  * Aggregated stats for total auth phone.
7625
7650
  */
7626
- authPhoneTotal: number | bigint;
7651
+ authPhoneTotal: number;
7627
7652
  /**
7628
7653
  * Aggregated stats for total auth phone estimation.
7629
7654
  */
7630
- authPhoneEstimate: number | bigint;
7655
+ authPhoneEstimate: number;
7631
7656
  /**
7632
7657
  * Aggregated stats for each projects.
7633
7658
  */
@@ -7652,7 +7677,7 @@ export declare namespace Models {
7652
7677
  /**
7653
7678
  * Aggregated stats for function executions.
7654
7679
  */
7655
- executions: number | bigint;
7680
+ executions: number;
7656
7681
  /**
7657
7682
  * Aggregated stats for database reads.
7658
7683
  */
@@ -7664,31 +7689,31 @@ export declare namespace Models {
7664
7689
  /**
7665
7690
  * Aggregated stats for function executions in mb seconds.
7666
7691
  */
7667
- executionsMBSeconds: number | bigint;
7692
+ executionsMBSeconds: number;
7668
7693
  /**
7669
7694
  * Aggregated stats for function builds in mb seconds.
7670
7695
  */
7671
- buildsMBSeconds: number | bigint;
7696
+ buildsMBSeconds: number;
7672
7697
  /**
7673
7698
  * Aggregated stats for number of documents.
7674
7699
  */
7675
- storage: number | bigint;
7700
+ storage: number;
7676
7701
  /**
7677
7702
  * Aggregated stats for phone authentication.
7678
7703
  */
7679
- authPhoneTotal: number | bigint;
7704
+ authPhoneTotal: number;
7680
7705
  /**
7681
7706
  * Aggregated stats for phone authentication estimated cost.
7682
7707
  */
7683
- authPhoneEstimate: number | bigint;
7708
+ authPhoneEstimate: number;
7684
7709
  /**
7685
7710
  * Aggregated stats for total databases reads.
7686
7711
  */
7687
- databasesReadsTotal: number | bigint;
7712
+ databasesReadsTotal: number;
7688
7713
  /**
7689
7714
  * Aggregated stats for total databases writes.
7690
7715
  */
7691
- databasesWritesTotal: number | bigint;
7716
+ databasesWritesTotal: number;
7692
7717
  /**
7693
7718
  * Aggregated stats for file transformations.
7694
7719
  */
@@ -7696,7 +7721,7 @@ export declare namespace Models {
7696
7721
  /**
7697
7722
  * Aggregated stats for total file transformations.
7698
7723
  */
7699
- imageTransformationsTotal: number | bigint;
7724
+ imageTransformationsTotal: number;
7700
7725
  /**
7701
7726
  * Aggregated stats for file transformations.
7702
7727
  */
@@ -7704,11 +7729,11 @@ export declare namespace Models {
7704
7729
  /**
7705
7730
  * Aggregated stats for total file transformations.
7706
7731
  */
7707
- screenshotsGeneratedTotal: number | bigint;
7732
+ screenshotsGeneratedTotal: number;
7708
7733
  /**
7709
7734
  * Aggregated stats for imagine credits.
7710
7735
  */
7711
- imagineCredits: number | bigint;
7736
+ imagineCredits: number;
7712
7737
  };
7713
7738
  /**
7714
7739
  * Domain
@@ -7753,7 +7778,7 @@ export declare namespace Models {
7753
7778
  /**
7754
7779
  * Renewal price (in USD).
7755
7780
  */
7756
- renewalPrice: number | bigint;
7781
+ renewalPrice: number;
7757
7782
  /**
7758
7783
  * Team ID.
7759
7784
  */
@@ -7794,11 +7819,11 @@ export declare namespace Models {
7794
7819
  /**
7795
7820
  * Time to live (in seconds).
7796
7821
  */
7797
- ttl: number | bigint;
7822
+ ttl: number;
7798
7823
  /**
7799
7824
  * Record priority (commonly used for MX).
7800
7825
  */
7801
- priority: number | bigint;
7826
+ priority: number;
7802
7827
  /**
7803
7828
  * Whether this record is locked (read-only).
7804
7829
  */
@@ -7806,11 +7831,11 @@ export declare namespace Models {
7806
7831
  /**
7807
7832
  * Record weight (used for SRV records).
7808
7833
  */
7809
- weight: number | bigint;
7834
+ weight: number;
7810
7835
  /**
7811
7836
  * Target port (used for SRV records).
7812
7837
  */
7813
- port: number | bigint;
7838
+ port: number;
7814
7839
  /**
7815
7840
  * Comment for the DNS record.
7816
7841
  */
@@ -7827,15 +7852,15 @@ export declare namespace Models {
7827
7852
  /**
7828
7853
  * Invoice value
7829
7854
  */
7830
- value: number | bigint;
7855
+ value: number;
7831
7856
  /**
7832
7857
  * Invoice amount
7833
7858
  */
7834
- amount: number | bigint;
7859
+ amount: number;
7835
7860
  /**
7836
7861
  * Invoice rate
7837
7862
  */
7838
- rate: number | bigint;
7863
+ rate: number;
7839
7864
  /**
7840
7865
  * Invoice description
7841
7866
  */
@@ -7893,19 +7918,19 @@ export declare namespace Models {
7893
7918
  /**
7894
7919
  * Total amount
7895
7920
  */
7896
- amount: number | bigint;
7921
+ amount: number;
7897
7922
  /**
7898
7923
  * Gross payable amount
7899
7924
  */
7900
- grossAmount: number | bigint;
7925
+ grossAmount: number;
7901
7926
  /**
7902
7927
  * Discount amount
7903
7928
  */
7904
- discount: number | bigint;
7929
+ discount: number;
7905
7930
  /**
7906
7931
  * Credits amount
7907
7932
  */
7908
- credits: number | bigint;
7933
+ credits: number;
7909
7934
  /**
7910
7935
  * Estimation items
7911
7936
  */
@@ -7917,7 +7942,7 @@ export declare namespace Models {
7917
7942
  /**
7918
7943
  * Trial days
7919
7944
  */
7920
- trialDays: number | bigint;
7945
+ trialDays: number;
7921
7946
  /**
7922
7947
  * Trial end date
7923
7948
  */
@@ -7930,19 +7955,19 @@ export declare namespace Models {
7930
7955
  /**
7931
7956
  * Total amount
7932
7957
  */
7933
- amount: number | bigint;
7958
+ amount: number;
7934
7959
  /**
7935
7960
  * Gross payable amount
7936
7961
  */
7937
- grossAmount: number | bigint;
7962
+ grossAmount: number;
7938
7963
  /**
7939
7964
  * Discount amount
7940
7965
  */
7941
- discount: number | bigint;
7966
+ discount: number;
7942
7967
  /**
7943
7968
  * Credits amount
7944
7969
  */
7945
- credits: number | bigint;
7970
+ credits: number;
7946
7971
  /**
7947
7972
  * Estimation items
7948
7973
  */
@@ -7954,7 +7979,7 @@ export declare namespace Models {
7954
7979
  /**
7955
7980
  * Trial days
7956
7981
  */
7957
- trialDays: number | bigint;
7982
+ trialDays: number;
7958
7983
  /**
7959
7984
  * Trial end date
7960
7985
  */
@@ -7962,7 +7987,7 @@ export declare namespace Models {
7962
7987
  /**
7963
7988
  * Organization's existing credits
7964
7989
  */
7965
- organizationCredits: number | bigint;
7990
+ organizationCredits: number;
7966
7991
  };
7967
7992
  /**
7968
7993
  * EstimationDeleteOrganization
@@ -7984,7 +8009,28 @@ export declare namespace Models {
7984
8009
  /**
7985
8010
  * Gross payable amount
7986
8011
  */
7987
- value: number | bigint;
8012
+ value: number;
8013
+ };
8014
+ /**
8015
+ * DomainSuggestion
8016
+ */
8017
+ export type DomainSuggestion = {
8018
+ /**
8019
+ * Domain suggestion.
8020
+ */
8021
+ domain: string;
8022
+ /**
8023
+ * Is the domain premium?
8024
+ */
8025
+ premium: boolean;
8026
+ /**
8027
+ * Domain price.
8028
+ */
8029
+ price?: number;
8030
+ /**
8031
+ * Is the domain available?
8032
+ */
8033
+ available: boolean;
7988
8034
  };
7989
8035
  /**
7990
8036
  * Aggregation team list
@@ -7993,7 +8039,7 @@ export declare namespace Models {
7993
8039
  /**
7994
8040
  * Total number of aggregations that matched your query.
7995
8041
  */
7996
- total: number | bigint;
8042
+ total: number;
7997
8043
  /**
7998
8044
  * List of aggregations.
7999
8045
  */
@@ -8006,7 +8052,7 @@ export declare namespace Models {
8006
8052
  /**
8007
8053
  * Total number of archives that matched your query.
8008
8054
  */
8009
- total: number | bigint;
8055
+ total: number;
8010
8056
  /**
8011
8057
  * List of archives.
8012
8058
  */
@@ -8019,7 +8065,7 @@ export declare namespace Models {
8019
8065
  /**
8020
8066
  * Total number of policies that matched your query.
8021
8067
  */
8022
- total: number | bigint;
8068
+ total: number;
8023
8069
  /**
8024
8070
  * List of policies.
8025
8071
  */
@@ -8032,7 +8078,7 @@ export declare namespace Models {
8032
8078
  /**
8033
8079
  * Total number of restorations that matched your query.
8034
8080
  */
8035
- total: number | bigint;
8081
+ total: number;
8036
8082
  /**
8037
8083
  * List of restorations.
8038
8084
  */
@@ -8045,7 +8091,7 @@ export declare namespace Models {
8045
8091
  /**
8046
8092
  * Total number of invoices that matched your query.
8047
8093
  */
8048
- total: number | bigint;
8094
+ total: number;
8049
8095
  /**
8050
8096
  * List of invoices.
8051
8097
  */
@@ -8058,7 +8104,7 @@ export declare namespace Models {
8058
8104
  /**
8059
8105
  * Total number of billingAddresses that matched your query.
8060
8106
  */
8061
- total: number | bigint;
8107
+ total: number;
8062
8108
  /**
8063
8109
  * List of billingAddresses.
8064
8110
  */
@@ -8071,7 +8117,7 @@ export declare namespace Models {
8071
8117
  /**
8072
8118
  * Total number of plans that matched your query.
8073
8119
  */
8074
- total: number | bigint;
8120
+ total: number;
8075
8121
  /**
8076
8122
  * List of plans.
8077
8123
  */
@@ -8084,7 +8130,7 @@ export declare namespace Models {
8084
8130
  /**
8085
8131
  * Total number of teams that matched your query.
8086
8132
  */
8087
- total: number | bigint;
8133
+ total: number;
8088
8134
  /**
8089
8135
  * List of teams.
8090
8136
  */
@@ -8097,7 +8143,7 @@ export declare namespace Models {
8097
8143
  /**
8098
8144
  * Total number of paymentMethods that matched your query.
8099
8145
  */
8100
- total: number | bigint;
8146
+ total: number;
8101
8147
  /**
8102
8148
  * List of paymentMethods.
8103
8149
  */
@@ -8110,7 +8156,7 @@ export declare namespace Models {
8110
8156
  /**
8111
8157
  * Total number of regions that matched your query.
8112
8158
  */
8113
- total: number | bigint;
8159
+ total: number;
8114
8160
  /**
8115
8161
  * List of regions.
8116
8162
  */
@@ -8123,7 +8169,7 @@ export declare namespace Models {
8123
8169
  /**
8124
8170
  * Total number of domains that matched your query.
8125
8171
  */
8126
- total: number | bigint;
8172
+ total: number;
8127
8173
  /**
8128
8174
  * List of domains.
8129
8175
  */
@@ -8136,11 +8182,24 @@ export declare namespace Models {
8136
8182
  /**
8137
8183
  * Total number of dnsRecords that matched your query.
8138
8184
  */
8139
- total: number | bigint;
8185
+ total: number;
8140
8186
  /**
8141
8187
  * List of dnsRecords.
8142
8188
  */
8143
8189
  dnsRecords: DnsRecord[];
8144
8190
  };
8191
+ /**
8192
+ * Domain suggestions list
8193
+ */
8194
+ export type DomainSuggestionsList = {
8195
+ /**
8196
+ * Total number of suggestions that matched your query.
8197
+ */
8198
+ total: number;
8199
+ /**
8200
+ * List of suggestions.
8201
+ */
8202
+ suggestions: DomainSuggestion[];
8203
+ };
8145
8204
  export {};
8146
8205
  }