@appwrite.io/console 2.1.1 → 2.1.3

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 (66) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -1
  3. package/dist/cjs/sdk.js +311 -17
  4. package/dist/cjs/sdk.js.map +1 -1
  5. package/dist/esm/sdk.js +310 -18
  6. package/dist/esm/sdk.js.map +1 -1
  7. package/dist/iife/sdk.js +344 -70
  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 +3 -2
  15. package/src/channel.ts +134 -0
  16. package/src/client.ts +79 -9
  17. package/src/enums/billing-plan.ts +17 -0
  18. package/src/enums/filter-type.ts +4 -0
  19. package/src/enums/name.ts +1 -0
  20. package/src/enums/o-auth-provider.ts +0 -2
  21. package/src/index.ts +3 -0
  22. package/src/models.ts +437 -375
  23. package/src/query.ts +42 -0
  24. package/src/services/account.ts +20 -20
  25. package/src/services/avatars.ts +117 -117
  26. package/src/services/backups.ts +18 -18
  27. package/src/services/console.ts +24 -24
  28. package/src/services/databases.ts +89 -89
  29. package/src/services/domains.ts +295 -204
  30. package/src/services/functions.ts +30 -30
  31. package/src/services/health.ts +201 -152
  32. package/src/services/messaging.ts +54 -54
  33. package/src/services/migrations.ts +36 -36
  34. package/src/services/organizations.ts +67 -66
  35. package/src/services/projects.ts +81 -81
  36. package/src/services/realtime.ts +35 -12
  37. package/src/services/sites.ts +30 -30
  38. package/src/services/storage.ts +45 -45
  39. package/src/services/tables-db.ts +89 -89
  40. package/src/services/users.ts +39 -39
  41. package/types/channel.d.ts +71 -0
  42. package/types/client.d.ts +11 -3
  43. package/types/enums/billing-plan.d.ts +17 -0
  44. package/types/enums/filter-type.d.ts +4 -0
  45. package/types/enums/name.d.ts +1 -0
  46. package/types/enums/o-auth-provider.d.ts +0 -2
  47. package/types/index.d.ts +3 -0
  48. package/types/models.d.ts +434 -375
  49. package/types/query.d.ts +30 -0
  50. package/types/services/account.d.ts +11 -11
  51. package/types/services/avatars.d.ts +82 -82
  52. package/types/services/backups.d.ts +8 -8
  53. package/types/services/console.d.ts +14 -14
  54. package/types/services/databases.d.ts +50 -50
  55. package/types/services/domains.d.ts +139 -104
  56. package/types/services/functions.d.ts +15 -15
  57. package/types/services/health.d.ts +95 -78
  58. package/types/services/messaging.d.ts +24 -24
  59. package/types/services/migrations.d.ts +16 -16
  60. package/types/services/organizations.d.ts +37 -36
  61. package/types/services/projects.d.ts +36 -36
  62. package/types/services/realtime.d.ts +17 -8
  63. package/types/services/sites.d.ts +15 -15
  64. package/types/services/storage.d.ts +30 -30
  65. package/types/services/tables-db.d.ts +50 -50
  66. package/types/services/users.d.ts +24 -24
package/src/models.ts CHANGED
@@ -27,7 +27,7 @@ export namespace Models {
27
27
  /**
28
28
  * Total number of rows that matched your query.
29
29
  */
30
- total: number | bigint;
30
+ total: number;
31
31
  /**
32
32
  * List of rows.
33
33
  */
@@ -41,7 +41,7 @@ export namespace Models {
41
41
  /**
42
42
  * Total number of documents that matched your query.
43
43
  */
44
- total: number | bigint;
44
+ total: number;
45
45
  /**
46
46
  * List of documents.
47
47
  */
@@ -55,7 +55,7 @@ export namespace Models {
55
55
  /**
56
56
  * Total number of tables that matched your query.
57
57
  */
58
- total: number | bigint;
58
+ total: number;
59
59
  /**
60
60
  * List of tables.
61
61
  */
@@ -69,7 +69,7 @@ export namespace Models {
69
69
  /**
70
70
  * Total number of collections that matched your query.
71
71
  */
72
- total: number | bigint;
72
+ total: number;
73
73
  /**
74
74
  * List of collections.
75
75
  */
@@ -83,7 +83,7 @@ export namespace Models {
83
83
  /**
84
84
  * Total number of databases that matched your query.
85
85
  */
86
- total: number | bigint;
86
+ total: number;
87
87
  /**
88
88
  * List of databases.
89
89
  */
@@ -97,7 +97,7 @@ export namespace Models {
97
97
  /**
98
98
  * Total number of indexes that matched your query.
99
99
  */
100
- total: number | bigint;
100
+ total: number;
101
101
  /**
102
102
  * List of indexes.
103
103
  */
@@ -111,7 +111,7 @@ export namespace Models {
111
111
  /**
112
112
  * Total number of indexes that matched your query.
113
113
  */
114
- total: number | bigint;
114
+ total: number;
115
115
  /**
116
116
  * List of indexes.
117
117
  */
@@ -125,7 +125,7 @@ export namespace Models {
125
125
  /**
126
126
  * Total number of users that matched your query.
127
127
  */
128
- total: number | bigint;
128
+ total: number;
129
129
  /**
130
130
  * List of users.
131
131
  */
@@ -139,7 +139,7 @@ export namespace Models {
139
139
  /**
140
140
  * Total number of sessions that matched your query.
141
141
  */
142
- total: number | bigint;
142
+ total: number;
143
143
  /**
144
144
  * List of sessions.
145
145
  */
@@ -153,7 +153,7 @@ export namespace Models {
153
153
  /**
154
154
  * Total number of identities that matched your query.
155
155
  */
156
- total: number | bigint;
156
+ total: number;
157
157
  /**
158
158
  * List of identities.
159
159
  */
@@ -167,7 +167,7 @@ export namespace Models {
167
167
  /**
168
168
  * Total number of logs that matched your query.
169
169
  */
170
- total: number | bigint;
170
+ total: number;
171
171
  /**
172
172
  * List of logs.
173
173
  */
@@ -181,7 +181,7 @@ export namespace Models {
181
181
  /**
182
182
  * Total number of files that matched your query.
183
183
  */
184
- total: number | bigint;
184
+ total: number;
185
185
  /**
186
186
  * List of files.
187
187
  */
@@ -195,7 +195,7 @@ export namespace Models {
195
195
  /**
196
196
  * Total number of buckets that matched your query.
197
197
  */
198
- total: number | bigint;
198
+ total: number;
199
199
  /**
200
200
  * List of buckets.
201
201
  */
@@ -209,7 +209,7 @@ export namespace Models {
209
209
  /**
210
210
  * Total number of tokens that matched your query.
211
211
  */
212
- total: number | bigint;
212
+ total: number;
213
213
  /**
214
214
  * List of tokens.
215
215
  */
@@ -223,7 +223,7 @@ export namespace Models {
223
223
  /**
224
224
  * Total number of teams that matched your query.
225
225
  */
226
- total: number | bigint;
226
+ total: number;
227
227
  /**
228
228
  * List of teams.
229
229
  */
@@ -237,7 +237,7 @@ export namespace Models {
237
237
  /**
238
238
  * Total number of memberships that matched your query.
239
239
  */
240
- total: number | bigint;
240
+ total: number;
241
241
  /**
242
242
  * List of memberships.
243
243
  */
@@ -251,7 +251,7 @@ export namespace Models {
251
251
  /**
252
252
  * Total number of sites that matched your query.
253
253
  */
254
- total: number | bigint;
254
+ total: number;
255
255
  /**
256
256
  * List of sites.
257
257
  */
@@ -265,7 +265,7 @@ export namespace Models {
265
265
  /**
266
266
  * Total number of templates that matched your query.
267
267
  */
268
- total: number | bigint;
268
+ total: number;
269
269
  /**
270
270
  * List of templates.
271
271
  */
@@ -279,7 +279,7 @@ export namespace Models {
279
279
  /**
280
280
  * Total number of functions that matched your query.
281
281
  */
282
- total: number | bigint;
282
+ total: number;
283
283
  /**
284
284
  * List of functions.
285
285
  */
@@ -293,7 +293,7 @@ export namespace Models {
293
293
  /**
294
294
  * Total number of templates that matched your query.
295
295
  */
296
- total: number | bigint;
296
+ total: number;
297
297
  /**
298
298
  * List of templates.
299
299
  */
@@ -307,7 +307,7 @@ export namespace Models {
307
307
  /**
308
308
  * Total number of installations that matched your query.
309
309
  */
310
- total: number | bigint;
310
+ total: number;
311
311
  /**
312
312
  * List of installations.
313
313
  */
@@ -321,7 +321,7 @@ export namespace Models {
321
321
  /**
322
322
  * Total number of frameworkProviderRepositories that matched your query.
323
323
  */
324
- total: number | bigint;
324
+ total: number;
325
325
  /**
326
326
  * List of frameworkProviderRepositories.
327
327
  */
@@ -335,7 +335,7 @@ export namespace Models {
335
335
  /**
336
336
  * Total number of runtimeProviderRepositories that matched your query.
337
337
  */
338
- total: number | bigint;
338
+ total: number;
339
339
  /**
340
340
  * List of runtimeProviderRepositories.
341
341
  */
@@ -349,7 +349,7 @@ export namespace Models {
349
349
  /**
350
350
  * Total number of branches that matched your query.
351
351
  */
352
- total: number | bigint;
352
+ total: number;
353
353
  /**
354
354
  * List of branches.
355
355
  */
@@ -363,7 +363,7 @@ export namespace Models {
363
363
  /**
364
364
  * Total number of frameworks that matched your query.
365
365
  */
366
- total: number | bigint;
366
+ total: number;
367
367
  /**
368
368
  * List of frameworks.
369
369
  */
@@ -377,7 +377,7 @@ export namespace Models {
377
377
  /**
378
378
  * Total number of runtimes that matched your query.
379
379
  */
380
- total: number | bigint;
380
+ total: number;
381
381
  /**
382
382
  * List of runtimes.
383
383
  */
@@ -391,7 +391,7 @@ export namespace Models {
391
391
  /**
392
392
  * Total number of deployments that matched your query.
393
393
  */
394
- total: number | bigint;
394
+ total: number;
395
395
  /**
396
396
  * List of deployments.
397
397
  */
@@ -405,7 +405,7 @@ export namespace Models {
405
405
  /**
406
406
  * Total number of executions that matched your query.
407
407
  */
408
- total: number | bigint;
408
+ total: number;
409
409
  /**
410
410
  * List of executions.
411
411
  */
@@ -419,7 +419,7 @@ export namespace Models {
419
419
  /**
420
420
  * Total number of projects that matched your query.
421
421
  */
422
- total: number | bigint;
422
+ total: number;
423
423
  /**
424
424
  * List of projects.
425
425
  */
@@ -433,7 +433,7 @@ export namespace Models {
433
433
  /**
434
434
  * Total number of webhooks that matched your query.
435
435
  */
436
- total: number | bigint;
436
+ total: number;
437
437
  /**
438
438
  * List of webhooks.
439
439
  */
@@ -447,7 +447,7 @@ export namespace Models {
447
447
  /**
448
448
  * Total number of keys that matched your query.
449
449
  */
450
- total: number | bigint;
450
+ total: number;
451
451
  /**
452
452
  * List of keys.
453
453
  */
@@ -461,7 +461,7 @@ export namespace Models {
461
461
  /**
462
462
  * Total number of devKeys that matched your query.
463
463
  */
464
- total: number | bigint;
464
+ total: number;
465
465
  /**
466
466
  * List of devKeys.
467
467
  */
@@ -475,7 +475,7 @@ export namespace Models {
475
475
  /**
476
476
  * Total number of platforms that matched your query.
477
477
  */
478
- total: number | bigint;
478
+ total: number;
479
479
  /**
480
480
  * List of platforms.
481
481
  */
@@ -489,7 +489,7 @@ export namespace Models {
489
489
  /**
490
490
  * Total number of countries that matched your query.
491
491
  */
492
- total: number | bigint;
492
+ total: number;
493
493
  /**
494
494
  * List of countries.
495
495
  */
@@ -503,7 +503,7 @@ export namespace Models {
503
503
  /**
504
504
  * Total number of continents that matched your query.
505
505
  */
506
- total: number | bigint;
506
+ total: number;
507
507
  /**
508
508
  * List of continents.
509
509
  */
@@ -517,7 +517,7 @@ export namespace Models {
517
517
  /**
518
518
  * Total number of languages that matched your query.
519
519
  */
520
- total: number | bigint;
520
+ total: number;
521
521
  /**
522
522
  * List of languages.
523
523
  */
@@ -531,7 +531,7 @@ export namespace Models {
531
531
  /**
532
532
  * Total number of currencies that matched your query.
533
533
  */
534
- total: number | bigint;
534
+ total: number;
535
535
  /**
536
536
  * List of currencies.
537
537
  */
@@ -545,7 +545,7 @@ export namespace Models {
545
545
  /**
546
546
  * Total number of phones that matched your query.
547
547
  */
548
- total: number | bigint;
548
+ total: number;
549
549
  /**
550
550
  * List of phones.
551
551
  */
@@ -559,13 +559,27 @@ export namespace Models {
559
559
  /**
560
560
  * Total number of variables that matched your query.
561
561
  */
562
- total: number | bigint;
562
+ total: number;
563
563
  /**
564
564
  * List of variables.
565
565
  */
566
566
  variables: Variable[];
567
567
  }
568
568
 
569
+ /**
570
+ * Status List
571
+ */
572
+ export type HealthStatusList = {
573
+ /**
574
+ * Total number of statuses that matched your query.
575
+ */
576
+ total: number;
577
+ /**
578
+ * List of statuses.
579
+ */
580
+ statuses: HealthStatus[];
581
+ }
582
+
569
583
  /**
570
584
  * Rule List
571
585
  */
@@ -573,7 +587,7 @@ export namespace Models {
573
587
  /**
574
588
  * Total number of rules that matched your query.
575
589
  */
576
- total: number | bigint;
590
+ total: number;
577
591
  /**
578
592
  * List of rules.
579
593
  */
@@ -587,7 +601,7 @@ export namespace Models {
587
601
  /**
588
602
  * Total number of localeCodes that matched your query.
589
603
  */
590
- total: number | bigint;
604
+ total: number;
591
605
  /**
592
606
  * List of localeCodes.
593
607
  */
@@ -601,7 +615,7 @@ export namespace Models {
601
615
  /**
602
616
  * Total number of providers that matched your query.
603
617
  */
604
- total: number | bigint;
618
+ total: number;
605
619
  /**
606
620
  * List of providers.
607
621
  */
@@ -615,7 +629,7 @@ export namespace Models {
615
629
  /**
616
630
  * Total number of messages that matched your query.
617
631
  */
618
- total: number | bigint;
632
+ total: number;
619
633
  /**
620
634
  * List of messages.
621
635
  */
@@ -629,7 +643,7 @@ export namespace Models {
629
643
  /**
630
644
  * Total number of topics that matched your query.
631
645
  */
632
- total: number | bigint;
646
+ total: number;
633
647
  /**
634
648
  * List of topics.
635
649
  */
@@ -643,7 +657,7 @@ export namespace Models {
643
657
  /**
644
658
  * Total number of subscribers that matched your query.
645
659
  */
646
- total: number | bigint;
660
+ total: number;
647
661
  /**
648
662
  * List of subscribers.
649
663
  */
@@ -657,7 +671,7 @@ export namespace Models {
657
671
  /**
658
672
  * Total number of targets that matched your query.
659
673
  */
660
- total: number | bigint;
674
+ total: number;
661
675
  /**
662
676
  * List of targets.
663
677
  */
@@ -671,7 +685,7 @@ export namespace Models {
671
685
  /**
672
686
  * Total number of transactions that matched your query.
673
687
  */
674
- total: number | bigint;
688
+ total: number;
675
689
  /**
676
690
  * List of transactions.
677
691
  */
@@ -685,7 +699,7 @@ export namespace Models {
685
699
  /**
686
700
  * Total number of migrations that matched your query.
687
701
  */
688
- total: number | bigint;
702
+ total: number;
689
703
  /**
690
704
  * List of migrations.
691
705
  */
@@ -699,7 +713,7 @@ export namespace Models {
699
713
  /**
700
714
  * Total number of specifications that matched your query.
701
715
  */
702
- total: number | bigint;
716
+ total: number;
703
717
  /**
704
718
  * List of specifications.
705
719
  */
@@ -713,7 +727,7 @@ export namespace Models {
713
727
  /**
714
728
  * Total number of contents that matched your query.
715
729
  */
716
- total: number | bigint;
730
+ total: number;
717
731
  /**
718
732
  * List of contents.
719
733
  */
@@ -811,7 +825,7 @@ export namespace Models {
811
825
  /**
812
826
  * Total number of attributes in the given collection.
813
827
  */
814
- total: number | bigint;
828
+ total: number;
815
829
  /**
816
830
  * List of attributes.
817
831
  */
@@ -857,7 +871,7 @@ export namespace Models {
857
871
  /**
858
872
  * Attribute size.
859
873
  */
860
- size: number | bigint;
874
+ size: number;
861
875
  /**
862
876
  * Default value for attribute when not provided. Cannot be set when attribute is required.
863
877
  */
@@ -915,7 +929,7 @@ export namespace Models {
915
929
  /**
916
930
  * Default value for attribute when not provided. Cannot be set when attribute is required.
917
931
  */
918
- default?: number | bigint;
932
+ default?: number;
919
933
  }
920
934
 
921
935
  /**
@@ -957,15 +971,15 @@ export namespace Models {
957
971
  /**
958
972
  * Minimum value to enforce for new documents.
959
973
  */
960
- min?: number | bigint;
974
+ min?: number;
961
975
  /**
962
976
  * Maximum value to enforce for new documents.
963
977
  */
964
- max?: number | bigint;
978
+ max?: number;
965
979
  /**
966
980
  * Default value for attribute when not provided. Cannot be set when attribute is required.
967
981
  */
968
- default?: number | bigint;
982
+ default?: number;
969
983
  }
970
984
 
971
985
  /**
@@ -1485,7 +1499,7 @@ export namespace Models {
1485
1499
  /**
1486
1500
  * Total number of columns in the given table.
1487
1501
  */
1488
- total: number | bigint;
1502
+ total: number;
1489
1503
  /**
1490
1504
  * List of columns.
1491
1505
  */
@@ -1531,7 +1545,7 @@ export namespace Models {
1531
1545
  /**
1532
1546
  * Column size.
1533
1547
  */
1534
- size: number | bigint;
1548
+ size: number;
1535
1549
  /**
1536
1550
  * Default value for column when not provided. Cannot be set when column is required.
1537
1551
  */
@@ -1589,7 +1603,7 @@ export namespace Models {
1589
1603
  /**
1590
1604
  * Default value for column when not provided. Cannot be set when column is required.
1591
1605
  */
1592
- default?: number | bigint;
1606
+ default?: number;
1593
1607
  }
1594
1608
 
1595
1609
  /**
@@ -1631,15 +1645,15 @@ export namespace Models {
1631
1645
  /**
1632
1646
  * Minimum value to enforce for new documents.
1633
1647
  */
1634
- min?: number | bigint;
1648
+ min?: number;
1635
1649
  /**
1636
1650
  * Maximum value to enforce for new documents.
1637
1651
  */
1638
- max?: number | bigint;
1652
+ max?: number;
1639
1653
  /**
1640
1654
  * Default value for column when not provided. Cannot be set when column is required.
1641
1655
  */
1642
- default?: number | bigint;
1656
+ default?: number;
1643
1657
  }
1644
1658
 
1645
1659
  /**
@@ -2145,7 +2159,7 @@ export namespace Models {
2145
2159
  /**
2146
2160
  * Index attributes length.
2147
2161
  */
2148
- lengths: number | bigint[];
2162
+ lengths: number[];
2149
2163
  /**
2150
2164
  * Index orders.
2151
2165
  */
@@ -2191,7 +2205,7 @@ export namespace Models {
2191
2205
  /**
2192
2206
  * Index columns length.
2193
2207
  */
2194
- lengths: number | bigint[];
2208
+ lengths: number[];
2195
2209
  /**
2196
2210
  * Index orders.
2197
2211
  */
@@ -2209,7 +2223,7 @@ export namespace Models {
2209
2223
  /**
2210
2224
  * Row automatically incrementing ID.
2211
2225
  */
2212
- $sequence: number | bigint;
2226
+ $sequence: number;
2213
2227
  /**
2214
2228
  * Table ID.
2215
2229
  */
@@ -2248,7 +2262,7 @@ export namespace Models {
2248
2262
  /**
2249
2263
  * Document automatically incrementing ID.
2250
2264
  */
2251
- $sequence: number | bigint;
2265
+ $sequence: number;
2252
2266
  /**
2253
2267
  * Collection ID.
2254
2268
  */
@@ -2499,19 +2513,19 @@ export namespace Models {
2499
2513
  /**
2500
2514
  * CPU complexity of computed hash.
2501
2515
  */
2502
- costCpu: number | bigint;
2516
+ costCpu: number;
2503
2517
  /**
2504
2518
  * Memory complexity of computed hash.
2505
2519
  */
2506
- costMemory: number | bigint;
2520
+ costMemory: number;
2507
2521
  /**
2508
2522
  * Parallelization of computed hash.
2509
2523
  */
2510
- costParallel: number | bigint;
2524
+ costParallel: number;
2511
2525
  /**
2512
2526
  * Length used to compute hash.
2513
2527
  */
2514
- length: number | bigint;
2528
+ length: number;
2515
2529
  }
2516
2530
 
2517
2531
  /**
@@ -2547,15 +2561,15 @@ export namespace Models {
2547
2561
  /**
2548
2562
  * Memory used to compute hash.
2549
2563
  */
2550
- memoryCost: number | bigint;
2564
+ memoryCost: number;
2551
2565
  /**
2552
2566
  * Amount of time consumed to compute hash
2553
2567
  */
2554
- timeCost: number | bigint;
2568
+ timeCost: number;
2555
2569
  /**
2556
2570
  * Number of threads used to compute hash.
2557
2571
  */
2558
- threads: number | bigint;
2572
+ threads: number;
2559
2573
  }
2560
2574
 
2561
2575
  /**
@@ -2864,15 +2878,23 @@ export namespace Models {
2864
2878
  /**
2865
2879
  * File original size in bytes.
2866
2880
  */
2867
- sizeOriginal: number | bigint;
2881
+ sizeOriginal: number;
2868
2882
  /**
2869
2883
  * Total number of chunks available
2870
2884
  */
2871
- chunksTotal: number | bigint;
2885
+ chunksTotal: number;
2872
2886
  /**
2873
2887
  * Total number of chunks uploaded
2874
2888
  */
2875
- chunksUploaded: number | bigint;
2889
+ chunksUploaded: number;
2890
+ /**
2891
+ * Whether file contents are encrypted at rest.
2892
+ */
2893
+ encryption: boolean;
2894
+ /**
2895
+ * 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).
2896
+ */
2897
+ compression: string;
2876
2898
  }
2877
2899
 
2878
2900
  /**
@@ -2910,7 +2932,7 @@ export namespace Models {
2910
2932
  /**
2911
2933
  * Maximum file size supported.
2912
2934
  */
2913
- maximumFileSize: number | bigint;
2935
+ maximumFileSize: number;
2914
2936
  /**
2915
2937
  * Allowed file extensions.
2916
2938
  */
@@ -2934,7 +2956,7 @@ export namespace Models {
2934
2956
  /**
2935
2957
  * Total size of this bucket in bytes.
2936
2958
  */
2937
- totalSize: number | bigint;
2959
+ totalSize: number;
2938
2960
  }
2939
2961
 
2940
2962
  /**
@@ -2994,7 +3016,7 @@ export namespace Models {
2994
3016
  /**
2995
3017
  * Total number of team members.
2996
3018
  */
2997
- total: number | bigint;
3019
+ total: number;
2998
3020
  /**
2999
3021
  * Team preferences as a key-value object
3000
3022
  */
@@ -3130,7 +3152,7 @@ export namespace Models {
3130
3152
  /**
3131
3153
  * Site request timeout in seconds.
3132
3154
  */
3133
- timeout: number | bigint;
3155
+ timeout: number;
3134
3156
  /**
3135
3157
  * The install command used to install the site dependencies.
3136
3158
  */
@@ -3360,7 +3382,7 @@ export namespace Models {
3360
3382
  /**
3361
3383
  * Function execution timeout in seconds.
3362
3384
  */
3363
- timeout: number | bigint;
3385
+ timeout: number;
3364
3386
  /**
3365
3387
  * The entrypoint file used to execute the deployment.
3366
3388
  */
@@ -3434,7 +3456,7 @@ export namespace Models {
3434
3456
  /**
3435
3457
  * Function execution timeout in seconds.
3436
3458
  */
3437
- timeout: number | bigint;
3459
+ timeout: number;
3438
3460
  /**
3439
3461
  * Function use cases.
3440
3462
  */
@@ -3750,7 +3772,7 @@ export namespace Models {
3750
3772
  /**
3751
3773
  * Content size in bytes. Only files have size, and for directories, 0 is returned.
3752
3774
  */
3753
- size?: number | bigint;
3775
+ size?: number;
3754
3776
  /**
3755
3777
  * If a content is a directory. Directories can be used to check nested contents.
3756
3778
  */
@@ -3896,15 +3918,15 @@ export namespace Models {
3896
3918
  /**
3897
3919
  * The code size in bytes.
3898
3920
  */
3899
- sourceSize: number | bigint;
3921
+ sourceSize: number;
3900
3922
  /**
3901
3923
  * The build output size in bytes.
3902
3924
  */
3903
- buildSize: number | bigint;
3925
+ buildSize: number;
3904
3926
  /**
3905
3927
  * The total size in bytes (source and build output).
3906
3928
  */
3907
- totalSize: number | bigint;
3929
+ totalSize: number;
3908
3930
  /**
3909
3931
  * The current build ID.
3910
3932
  */
@@ -3932,7 +3954,7 @@ export namespace Models {
3932
3954
  /**
3933
3955
  * The current build time in seconds.
3934
3956
  */
3935
- buildDuration: number | bigint;
3957
+ buildDuration: number;
3936
3958
  /**
3937
3959
  * The name of the vcs provider repository
3938
3960
  */
@@ -4026,7 +4048,7 @@ export namespace Models {
4026
4048
  /**
4027
4049
  * HTTP response status code.
4028
4050
  */
4029
- responseStatusCode: number | bigint;
4051
+ responseStatusCode: number;
4030
4052
  /**
4031
4053
  * HTTP response body. This will return empty unless execution is created as synchronous.
4032
4054
  */
@@ -4046,7 +4068,7 @@ export namespace Models {
4046
4068
  /**
4047
4069
  * Resource(function/site) execution duration in seconds.
4048
4070
  */
4049
- duration: number | bigint;
4071
+ duration: number;
4050
4072
  /**
4051
4073
  * The scheduled time for execution. If left empty, execution will be queued immediately.
4052
4074
  */
@@ -4116,19 +4138,19 @@ export namespace Models {
4116
4138
  /**
4117
4139
  * Session duration in seconds.
4118
4140
  */
4119
- authDuration: number | bigint;
4141
+ authDuration: number;
4120
4142
  /**
4121
4143
  * Max users allowed. 0 is unlimited.
4122
4144
  */
4123
- authLimit: number | bigint;
4145
+ authLimit: number;
4124
4146
  /**
4125
4147
  * Max sessions allowed per user. 100 maximum.
4126
4148
  */
4127
- authSessionsLimit: number | bigint;
4149
+ authSessionsLimit: number;
4128
4150
  /**
4129
4151
  * Max allowed passwords in the history list per user. Max passwords limit allowed in history is 20. Use 0 for disabling password history.
4130
4152
  */
4131
- authPasswordHistory: number | bigint;
4153
+ authPasswordHistory: number;
4132
4154
  /**
4133
4155
  * Whether or not to check user's password against most commonly used passwords.
4134
4156
  */
@@ -4204,7 +4226,7 @@ export namespace Models {
4204
4226
  /**
4205
4227
  * SMTP server port
4206
4228
  */
4207
- smtpPort: number | bigint;
4229
+ smtpPort: number;
4208
4230
  /**
4209
4231
  * SMTP server username
4210
4232
  */
@@ -4220,7 +4242,7 @@ export namespace Models {
4220
4242
  /**
4221
4243
  * Number of times the ping was received for this project.
4222
4244
  */
4223
- pingCount: number | bigint;
4245
+ pingCount: number;
4224
4246
  /**
4225
4247
  * Last ping datetime in ISO 8601 format.
4226
4248
  */
@@ -4382,7 +4404,7 @@ export namespace Models {
4382
4404
  /**
4383
4405
  * Number of consecutive failed webhook attempts.
4384
4406
  */
4385
- attempts: number | bigint;
4407
+ attempts: number;
4386
4408
  }
4387
4409
 
4388
4410
  /**
@@ -4654,11 +4676,11 @@ export namespace Models {
4654
4676
  /**
4655
4677
  * Number of decimal digits.
4656
4678
  */
4657
- decimalDigits: number | bigint;
4679
+ decimalDigits: number;
4658
4680
  /**
4659
4681
  * Currency digit rounding.
4660
4682
  */
4661
- rounding: number | bigint;
4683
+ rounding: number;
4662
4684
  /**
4663
4685
  * Currency code in [ISO 4217-1](http://en.wikipedia.org/wiki/ISO_4217) three-character format.
4664
4686
  */
@@ -4708,7 +4730,7 @@ export namespace Models {
4708
4730
  /**
4709
4731
  * Amount of actions in the queue.
4710
4732
  */
4711
- size: number | bigint;
4733
+ size: number;
4712
4734
  }
4713
4735
 
4714
4736
  /**
@@ -4722,7 +4744,7 @@ export namespace Models {
4722
4744
  /**
4723
4745
  * Duration in milliseconds how long the health check took.
4724
4746
  */
4725
- ping: number | bigint;
4747
+ ping: number;
4726
4748
  /**
4727
4749
  * Service status. Possible values are: `pass`, `fail`
4728
4750
  */
@@ -4766,15 +4788,15 @@ export namespace Models {
4766
4788
  /**
4767
4789
  * Current unix timestamp on trustful remote server.
4768
4790
  */
4769
- remoteTime: number | bigint;
4791
+ remoteTime: number;
4770
4792
  /**
4771
4793
  * Current unix timestamp of local server where Appwrite runs.
4772
4794
  */
4773
- localTime: number | bigint;
4795
+ localTime: number;
4774
4796
  /**
4775
4797
  * Difference of unix remote and local timestamps in milliseconds.
4776
4798
  */
4777
- diff: number | bigint;
4799
+ diff: number;
4778
4800
  }
4779
4801
 
4780
4802
  /**
@@ -4784,7 +4806,7 @@ export namespace Models {
4784
4806
  /**
4785
4807
  * The value of this metric at the timestamp.
4786
4808
  */
4787
- value: number | bigint;
4809
+ value: number;
4788
4810
  /**
4789
4811
  * The date at which this metric was aggregated in ISO 8601 format.
4790
4812
  */
@@ -4806,11 +4828,11 @@ export namespace Models {
4806
4828
  /**
4807
4829
  * The value of this metric at the timestamp.
4808
4830
  */
4809
- value: number | bigint;
4831
+ value: number;
4810
4832
  /**
4811
4833
  * The estimated value of this metric at the end of the period.
4812
4834
  */
4813
- estimate?: number | bigint;
4835
+ estimate?: number;
4814
4836
  }
4815
4837
 
4816
4838
  /**
@@ -4824,35 +4846,35 @@ export namespace Models {
4824
4846
  /**
4825
4847
  * Total aggregated number of databases.
4826
4848
  */
4827
- databasesTotal: number | bigint;
4849
+ databasesTotal: number;
4828
4850
  /**
4829
4851
  * Total aggregated number of collections.
4830
4852
  */
4831
- collectionsTotal: number | bigint;
4853
+ collectionsTotal: number;
4832
4854
  /**
4833
4855
  * Total aggregated number of tables.
4834
4856
  */
4835
- tablesTotal: number | bigint;
4857
+ tablesTotal: number;
4836
4858
  /**
4837
4859
  * Total aggregated number of documents.
4838
4860
  */
4839
- documentsTotal: number | bigint;
4861
+ documentsTotal: number;
4840
4862
  /**
4841
4863
  * Total aggregated number of rows.
4842
4864
  */
4843
- rowsTotal: number | bigint;
4865
+ rowsTotal: number;
4844
4866
  /**
4845
4867
  * Total aggregated number of total databases storage in bytes.
4846
4868
  */
4847
- storageTotal: number | bigint;
4869
+ storageTotal: number;
4848
4870
  /**
4849
4871
  * Total number of databases reads.
4850
4872
  */
4851
- databasesReadsTotal: number | bigint;
4873
+ databasesReadsTotal: number;
4852
4874
  /**
4853
4875
  * Total number of databases writes.
4854
4876
  */
4855
- databasesWritesTotal: number | bigint;
4877
+ databasesWritesTotal: number;
4856
4878
  /**
4857
4879
  * Aggregated number of databases per period.
4858
4880
  */
@@ -4898,31 +4920,31 @@ export namespace Models {
4898
4920
  /**
4899
4921
  * Total aggregated number of collections.
4900
4922
  */
4901
- collectionsTotal: number | bigint;
4923
+ collectionsTotal: number;
4902
4924
  /**
4903
4925
  * Total aggregated number of tables.
4904
4926
  */
4905
- tablesTotal: number | bigint;
4927
+ tablesTotal: number;
4906
4928
  /**
4907
4929
  * Total aggregated number of documents.
4908
4930
  */
4909
- documentsTotal: number | bigint;
4931
+ documentsTotal: number;
4910
4932
  /**
4911
4933
  * Total aggregated number of rows.
4912
4934
  */
4913
- rowsTotal: number | bigint;
4935
+ rowsTotal: number;
4914
4936
  /**
4915
4937
  * Total aggregated number of total storage used in bytes.
4916
4938
  */
4917
- storageTotal: number | bigint;
4939
+ storageTotal: number;
4918
4940
  /**
4919
4941
  * Total number of databases reads.
4920
4942
  */
4921
- databaseReadsTotal: number | bigint;
4943
+ databaseReadsTotal: number;
4922
4944
  /**
4923
4945
  * Total number of databases writes.
4924
4946
  */
4925
- databaseWritesTotal: number | bigint;
4947
+ databaseWritesTotal: number;
4926
4948
  /**
4927
4949
  * Aggregated number of collections per period.
4928
4950
  */
@@ -4964,7 +4986,7 @@ export namespace Models {
4964
4986
  /**
4965
4987
  * Total aggregated number of of rows.
4966
4988
  */
4967
- rowsTotal: number | bigint;
4989
+ rowsTotal: number;
4968
4990
  /**
4969
4991
  * Aggregated number of rows per period.
4970
4992
  */
@@ -4982,7 +5004,7 @@ export namespace Models {
4982
5004
  /**
4983
5005
  * Total aggregated number of of documents.
4984
5006
  */
4985
- documentsTotal: number | bigint;
5007
+ documentsTotal: number;
4986
5008
  /**
4987
5009
  * Aggregated number of documents per period.
4988
5010
  */
@@ -5000,11 +5022,11 @@ export namespace Models {
5000
5022
  /**
5001
5023
  * Total aggregated number of statistics of users.
5002
5024
  */
5003
- usersTotal: number | bigint;
5025
+ usersTotal: number;
5004
5026
  /**
5005
5027
  * Total aggregated number of active sessions.
5006
5028
  */
5007
- sessionsTotal: number | bigint;
5029
+ sessionsTotal: number;
5008
5030
  /**
5009
5031
  * Aggregated number of users per period.
5010
5032
  */
@@ -5026,15 +5048,15 @@ export namespace Models {
5026
5048
  /**
5027
5049
  * Total aggregated number of buckets
5028
5050
  */
5029
- bucketsTotal: number | bigint;
5051
+ bucketsTotal: number;
5030
5052
  /**
5031
5053
  * Total aggregated number of files.
5032
5054
  */
5033
- filesTotal: number | bigint;
5055
+ filesTotal: number;
5034
5056
  /**
5035
5057
  * Total aggregated number of files storage (in bytes).
5036
5058
  */
5037
- filesStorageTotal: number | bigint;
5059
+ filesStorageTotal: number;
5038
5060
  /**
5039
5061
  * Aggregated number of buckets per period.
5040
5062
  */
@@ -5060,11 +5082,11 @@ export namespace Models {
5060
5082
  /**
5061
5083
  * Total aggregated number of bucket files.
5062
5084
  */
5063
- filesTotal: number | bigint;
5085
+ filesTotal: number;
5064
5086
  /**
5065
5087
  * Total aggregated number of bucket files storage (in bytes).
5066
5088
  */
5067
- filesStorageTotal: number | bigint;
5089
+ filesStorageTotal: number;
5068
5090
  /**
5069
5091
  * Aggregated number of bucket files per period.
5070
5092
  */
@@ -5080,7 +5102,7 @@ export namespace Models {
5080
5102
  /**
5081
5103
  * Total aggregated number of files transformations.
5082
5104
  */
5083
- imageTransformationsTotal: number | bigint;
5105
+ imageTransformationsTotal: number;
5084
5106
  }
5085
5107
 
5086
5108
  /**
@@ -5094,43 +5116,43 @@ export namespace Models {
5094
5116
  /**
5095
5117
  * Total aggregated number of functions.
5096
5118
  */
5097
- functionsTotal: number | bigint;
5119
+ functionsTotal: number;
5098
5120
  /**
5099
5121
  * Total aggregated number of functions deployments.
5100
5122
  */
5101
- deploymentsTotal: number | bigint;
5123
+ deploymentsTotal: number;
5102
5124
  /**
5103
5125
  * Total aggregated sum of functions deployment storage.
5104
5126
  */
5105
- deploymentsStorageTotal: number | bigint;
5127
+ deploymentsStorageTotal: number;
5106
5128
  /**
5107
5129
  * Total aggregated number of functions build.
5108
5130
  */
5109
- buildsTotal: number | bigint;
5131
+ buildsTotal: number;
5110
5132
  /**
5111
5133
  * total aggregated sum of functions build storage.
5112
5134
  */
5113
- buildsStorageTotal: number | bigint;
5135
+ buildsStorageTotal: number;
5114
5136
  /**
5115
5137
  * Total aggregated sum of functions build compute time.
5116
5138
  */
5117
- buildsTimeTotal: number | bigint;
5139
+ buildsTimeTotal: number;
5118
5140
  /**
5119
5141
  * Total aggregated sum of functions build mbSeconds.
5120
5142
  */
5121
- buildsMbSecondsTotal: number | bigint;
5143
+ buildsMbSecondsTotal: number;
5122
5144
  /**
5123
5145
  * Total aggregated number of functions execution.
5124
5146
  */
5125
- executionsTotal: number | bigint;
5147
+ executionsTotal: number;
5126
5148
  /**
5127
5149
  * Total aggregated sum of functions execution compute time.
5128
5150
  */
5129
- executionsTimeTotal: number | bigint;
5151
+ executionsTimeTotal: number;
5130
5152
  /**
5131
5153
  * Total aggregated sum of functions execution mbSeconds.
5132
5154
  */
5133
- executionsMbSecondsTotal: number | bigint;
5155
+ executionsMbSecondsTotal: number;
5134
5156
  /**
5135
5157
  * Aggregated number of functions per period.
5136
5158
  */
@@ -5146,11 +5168,11 @@ export namespace Models {
5146
5168
  /**
5147
5169
  * Total aggregated number of successful function builds.
5148
5170
  */
5149
- buildsSuccessTotal: number | bigint;
5171
+ buildsSuccessTotal: number;
5150
5172
  /**
5151
5173
  * Total aggregated number of failed function builds.
5152
5174
  */
5153
- buildsFailedTotal: number | bigint;
5175
+ buildsFailedTotal: number;
5154
5176
  /**
5155
5177
  * Aggregated number of functions build per period.
5156
5178
  */
@@ -5200,51 +5222,51 @@ export namespace Models {
5200
5222
  /**
5201
5223
  * Total aggregated number of function deployments.
5202
5224
  */
5203
- deploymentsTotal: number | bigint;
5225
+ deploymentsTotal: number;
5204
5226
  /**
5205
5227
  * Total aggregated sum of function deployments storage.
5206
5228
  */
5207
- deploymentsStorageTotal: number | bigint;
5229
+ deploymentsStorageTotal: number;
5208
5230
  /**
5209
5231
  * Total aggregated number of function builds.
5210
5232
  */
5211
- buildsTotal: number | bigint;
5233
+ buildsTotal: number;
5212
5234
  /**
5213
5235
  * Total aggregated number of successful function builds.
5214
5236
  */
5215
- buildsSuccessTotal: number | bigint;
5237
+ buildsSuccessTotal: number;
5216
5238
  /**
5217
5239
  * Total aggregated number of failed function builds.
5218
5240
  */
5219
- buildsFailedTotal: number | bigint;
5241
+ buildsFailedTotal: number;
5220
5242
  /**
5221
5243
  * total aggregated sum of function builds storage.
5222
5244
  */
5223
- buildsStorageTotal: number | bigint;
5245
+ buildsStorageTotal: number;
5224
5246
  /**
5225
5247
  * Total aggregated sum of function builds compute time.
5226
5248
  */
5227
- buildsTimeTotal: number | bigint;
5249
+ buildsTimeTotal: number;
5228
5250
  /**
5229
5251
  * Average builds compute time.
5230
5252
  */
5231
- buildsTimeAverage: number | bigint;
5253
+ buildsTimeAverage: number;
5232
5254
  /**
5233
5255
  * Total aggregated sum of function builds mbSeconds.
5234
5256
  */
5235
- buildsMbSecondsTotal: number | bigint;
5257
+ buildsMbSecondsTotal: number;
5236
5258
  /**
5237
5259
  * Total aggregated number of function executions.
5238
5260
  */
5239
- executionsTotal: number | bigint;
5261
+ executionsTotal: number;
5240
5262
  /**
5241
5263
  * Total aggregated sum of function executions compute time.
5242
5264
  */
5243
- executionsTimeTotal: number | bigint;
5265
+ executionsTimeTotal: number;
5244
5266
  /**
5245
5267
  * Total aggregated sum of function executions mbSeconds.
5246
5268
  */
5247
- executionsMbSecondsTotal: number | bigint;
5269
+ executionsMbSecondsTotal: number;
5248
5270
  /**
5249
5271
  * Aggregated number of function deployments per period.
5250
5272
  */
@@ -5302,7 +5324,7 @@ export namespace Models {
5302
5324
  /**
5303
5325
  * Total aggregated number of sites.
5304
5326
  */
5305
- sitesTotal: number | bigint;
5327
+ sitesTotal: number;
5306
5328
  /**
5307
5329
  * Aggregated number of sites per period.
5308
5330
  */
@@ -5310,43 +5332,43 @@ export namespace Models {
5310
5332
  /**
5311
5333
  * Total aggregated number of sites deployments.
5312
5334
  */
5313
- deploymentsTotal: number | bigint;
5335
+ deploymentsTotal: number;
5314
5336
  /**
5315
5337
  * Total aggregated sum of sites deployment storage.
5316
5338
  */
5317
- deploymentsStorageTotal: number | bigint;
5339
+ deploymentsStorageTotal: number;
5318
5340
  /**
5319
5341
  * Total aggregated number of sites build.
5320
5342
  */
5321
- buildsTotal: number | bigint;
5343
+ buildsTotal: number;
5322
5344
  /**
5323
5345
  * total aggregated sum of sites build storage.
5324
5346
  */
5325
- buildsStorageTotal: number | bigint;
5347
+ buildsStorageTotal: number;
5326
5348
  /**
5327
5349
  * Total aggregated sum of sites build compute time.
5328
5350
  */
5329
- buildsTimeTotal: number | bigint;
5351
+ buildsTimeTotal: number;
5330
5352
  /**
5331
5353
  * Total aggregated sum of sites build mbSeconds.
5332
5354
  */
5333
- buildsMbSecondsTotal: number | bigint;
5355
+ buildsMbSecondsTotal: number;
5334
5356
  /**
5335
5357
  * Total aggregated number of sites execution.
5336
5358
  */
5337
- executionsTotal: number | bigint;
5359
+ executionsTotal: number;
5338
5360
  /**
5339
5361
  * Total aggregated sum of sites execution compute time.
5340
5362
  */
5341
- executionsTimeTotal: number | bigint;
5363
+ executionsTimeTotal: number;
5342
5364
  /**
5343
5365
  * Total aggregated sum of sites execution mbSeconds.
5344
5366
  */
5345
- executionsMbSecondsTotal: number | bigint;
5367
+ executionsMbSecondsTotal: number;
5346
5368
  /**
5347
5369
  * Total aggregated number of requests.
5348
5370
  */
5349
- requestsTotal: number | bigint;
5371
+ requestsTotal: number;
5350
5372
  /**
5351
5373
  * Aggregated number of requests per period.
5352
5374
  */
@@ -5354,7 +5376,7 @@ export namespace Models {
5354
5376
  /**
5355
5377
  * Total aggregated inbound bandwidth.
5356
5378
  */
5357
- inboundTotal: number | bigint;
5379
+ inboundTotal: number;
5358
5380
  /**
5359
5381
  * Aggregated number of inbound bandwidth per period.
5360
5382
  */
@@ -5362,7 +5384,7 @@ export namespace Models {
5362
5384
  /**
5363
5385
  * Total aggregated outbound bandwidth.
5364
5386
  */
5365
- outboundTotal: number | bigint;
5387
+ outboundTotal: number;
5366
5388
  /**
5367
5389
  * Aggregated number of outbound bandwidth per period.
5368
5390
  */
@@ -5378,11 +5400,11 @@ export namespace Models {
5378
5400
  /**
5379
5401
  * Total aggregated number of successful site builds.
5380
5402
  */
5381
- buildsSuccessTotal: number | bigint;
5403
+ buildsSuccessTotal: number;
5382
5404
  /**
5383
5405
  * Total aggregated number of failed site builds.
5384
5406
  */
5385
- buildsFailedTotal: number | bigint;
5407
+ buildsFailedTotal: number;
5386
5408
  /**
5387
5409
  * Aggregated number of sites build per period.
5388
5410
  */
@@ -5432,51 +5454,51 @@ export namespace Models {
5432
5454
  /**
5433
5455
  * Total aggregated number of function deployments.
5434
5456
  */
5435
- deploymentsTotal: number | bigint;
5457
+ deploymentsTotal: number;
5436
5458
  /**
5437
5459
  * Total aggregated sum of function deployments storage.
5438
5460
  */
5439
- deploymentsStorageTotal: number | bigint;
5461
+ deploymentsStorageTotal: number;
5440
5462
  /**
5441
5463
  * Total aggregated number of function builds.
5442
5464
  */
5443
- buildsTotal: number | bigint;
5465
+ buildsTotal: number;
5444
5466
  /**
5445
5467
  * Total aggregated number of successful function builds.
5446
5468
  */
5447
- buildsSuccessTotal: number | bigint;
5469
+ buildsSuccessTotal: number;
5448
5470
  /**
5449
5471
  * Total aggregated number of failed function builds.
5450
5472
  */
5451
- buildsFailedTotal: number | bigint;
5473
+ buildsFailedTotal: number;
5452
5474
  /**
5453
5475
  * total aggregated sum of function builds storage.
5454
5476
  */
5455
- buildsStorageTotal: number | bigint;
5477
+ buildsStorageTotal: number;
5456
5478
  /**
5457
5479
  * Total aggregated sum of function builds compute time.
5458
5480
  */
5459
- buildsTimeTotal: number | bigint;
5481
+ buildsTimeTotal: number;
5460
5482
  /**
5461
5483
  * Average builds compute time.
5462
5484
  */
5463
- buildsTimeAverage: number | bigint;
5485
+ buildsTimeAverage: number;
5464
5486
  /**
5465
5487
  * Total aggregated sum of function builds mbSeconds.
5466
5488
  */
5467
- buildsMbSecondsTotal: number | bigint;
5489
+ buildsMbSecondsTotal: number;
5468
5490
  /**
5469
5491
  * Total aggregated number of function executions.
5470
5492
  */
5471
- executionsTotal: number | bigint;
5493
+ executionsTotal: number;
5472
5494
  /**
5473
5495
  * Total aggregated sum of function executions compute time.
5474
5496
  */
5475
- executionsTimeTotal: number | bigint;
5497
+ executionsTimeTotal: number;
5476
5498
  /**
5477
5499
  * Total aggregated sum of function executions mbSeconds.
5478
5500
  */
5479
- executionsMbSecondsTotal: number | bigint;
5501
+ executionsMbSecondsTotal: number;
5480
5502
  /**
5481
5503
  * Aggregated number of function deployments per period.
5482
5504
  */
@@ -5524,7 +5546,7 @@ export namespace Models {
5524
5546
  /**
5525
5547
  * Total aggregated number of requests.
5526
5548
  */
5527
- requestsTotal: number | bigint;
5549
+ requestsTotal: number;
5528
5550
  /**
5529
5551
  * Aggregated number of requests per period.
5530
5552
  */
@@ -5532,7 +5554,7 @@ export namespace Models {
5532
5554
  /**
5533
5555
  * Total aggregated inbound bandwidth.
5534
5556
  */
5535
- inboundTotal: number | bigint;
5557
+ inboundTotal: number;
5536
5558
  /**
5537
5559
  * Aggregated number of inbound bandwidth per period.
5538
5560
  */
@@ -5540,7 +5562,7 @@ export namespace Models {
5540
5562
  /**
5541
5563
  * Total aggregated outbound bandwidth.
5542
5564
  */
5543
- outboundTotal: number | bigint;
5565
+ outboundTotal: number;
5544
5566
  /**
5545
5567
  * Aggregated number of outbound bandwidth per period.
5546
5568
  */
@@ -5554,63 +5576,63 @@ export namespace Models {
5554
5576
  /**
5555
5577
  * Total aggregated number of function executions.
5556
5578
  */
5557
- executionsTotal: number | bigint;
5579
+ executionsTotal: number;
5558
5580
  /**
5559
5581
  * Total aggregated number of documents.
5560
5582
  */
5561
- documentsTotal: number | bigint;
5583
+ documentsTotal: number;
5562
5584
  /**
5563
5585
  * Total aggregated number of rows.
5564
5586
  */
5565
- rowsTotal: number | bigint;
5587
+ rowsTotal: number;
5566
5588
  /**
5567
5589
  * Total aggregated number of databases.
5568
5590
  */
5569
- databasesTotal: number | bigint;
5591
+ databasesTotal: number;
5570
5592
  /**
5571
5593
  * Total aggregated sum of databases storage size (in bytes).
5572
5594
  */
5573
- databasesStorageTotal: number | bigint;
5595
+ databasesStorageTotal: number;
5574
5596
  /**
5575
5597
  * Total aggregated number of users.
5576
5598
  */
5577
- usersTotal: number | bigint;
5599
+ usersTotal: number;
5578
5600
  /**
5579
5601
  * Total aggregated sum of files storage size (in bytes).
5580
5602
  */
5581
- filesStorageTotal: number | bigint;
5603
+ filesStorageTotal: number;
5582
5604
  /**
5583
5605
  * Total aggregated sum of functions storage size (in bytes).
5584
5606
  */
5585
- functionsStorageTotal: number | bigint;
5607
+ functionsStorageTotal: number;
5586
5608
  /**
5587
5609
  * Total aggregated sum of builds storage size (in bytes).
5588
5610
  */
5589
- buildsStorageTotal: number | bigint;
5611
+ buildsStorageTotal: number;
5590
5612
  /**
5591
5613
  * Total aggregated sum of deployments storage size (in bytes).
5592
5614
  */
5593
- deploymentsStorageTotal: number | bigint;
5615
+ deploymentsStorageTotal: number;
5594
5616
  /**
5595
5617
  * Total aggregated number of buckets.
5596
5618
  */
5597
- bucketsTotal: number | bigint;
5619
+ bucketsTotal: number;
5598
5620
  /**
5599
5621
  * Total aggregated number of function executions mbSeconds.
5600
5622
  */
5601
- executionsMbSecondsTotal: number | bigint;
5623
+ executionsMbSecondsTotal: number;
5602
5624
  /**
5603
5625
  * Total aggregated number of function builds mbSeconds.
5604
5626
  */
5605
- buildsMbSecondsTotal: number | bigint;
5627
+ buildsMbSecondsTotal: number;
5606
5628
  /**
5607
5629
  * Aggregated stats for total databases reads.
5608
5630
  */
5609
- databasesReadsTotal: number | bigint;
5631
+ databasesReadsTotal: number;
5610
5632
  /**
5611
5633
  * Aggregated stats for total databases writes.
5612
5634
  */
5613
- databasesWritesTotal: number | bigint;
5635
+ databasesWritesTotal: number;
5614
5636
  /**
5615
5637
  * Aggregated number of requests per period.
5616
5638
  */
@@ -5654,11 +5676,11 @@ export namespace Models {
5654
5676
  /**
5655
5677
  * Aggregated stats for total auth phone.
5656
5678
  */
5657
- authPhoneTotal: number | bigint;
5679
+ authPhoneTotal: number;
5658
5680
  /**
5659
5681
  * Aggregated stats for total auth phone estimation.
5660
5682
  */
5661
- authPhoneEstimate: number | bigint;
5683
+ authPhoneEstimate: number;
5662
5684
  /**
5663
5685
  * Aggregated breakdown in totals of phone auth by country.
5664
5686
  */
@@ -5678,15 +5700,15 @@ export namespace Models {
5678
5700
  /**
5679
5701
  * Total aggregated number of image transformations.
5680
5702
  */
5681
- imageTransformationsTotal: number | bigint;
5703
+ imageTransformationsTotal: number;
5682
5704
  /**
5683
5705
  * Aggregated stats for total network bandwidth.
5684
5706
  */
5685
- networkTotal: number | bigint;
5707
+ networkTotal: number;
5686
5708
  /**
5687
5709
  * Aggregated stats for total backups storage.
5688
5710
  */
5689
- backupsStorageTotal: number | bigint;
5711
+ backupsStorageTotal: number;
5690
5712
  /**
5691
5713
  * An array of aggregated number of screenshots generated.
5692
5714
  */
@@ -5694,7 +5716,7 @@ export namespace Models {
5694
5716
  /**
5695
5717
  * Total aggregated number of screenshots generated.
5696
5718
  */
5697
- screenshotsGeneratedTotal: number | bigint;
5719
+ screenshotsGeneratedTotal: number;
5698
5720
  /**
5699
5721
  * An array of aggregated number of Imagine credits in the given period.
5700
5722
  */
@@ -5702,7 +5724,7 @@ export namespace Models {
5702
5724
  /**
5703
5725
  * Total aggregated number of Imagine credits.
5704
5726
  */
5705
- imagineCreditsTotal: number | bigint;
5727
+ imagineCreditsTotal: number;
5706
5728
  }
5707
5729
 
5708
5730
  /**
@@ -5726,11 +5748,11 @@ export namespace Models {
5726
5748
  /**
5727
5749
  * Memory size in MB.
5728
5750
  */
5729
- memory: number | bigint;
5751
+ memory: number;
5730
5752
  /**
5731
5753
  * Number of CPUs.
5732
5754
  */
5733
- cpus: number | bigint;
5755
+ cpus: number;
5734
5756
  /**
5735
5757
  * Is size enabled.
5736
5758
  */
@@ -5776,7 +5798,7 @@ export namespace Models {
5776
5798
  /**
5777
5799
  * Status code to apply during redirect. Used if type is "redirect"
5778
5800
  */
5779
- redirectStatusCode: number | bigint;
5801
+ redirectStatusCode: number;
5780
5802
  /**
5781
5803
  * ID of deployment. Used if type is "deployment"
5782
5804
  */
@@ -5874,7 +5896,7 @@ export namespace Models {
5874
5896
  /**
5875
5897
  * Maximum build timeout in seconds.
5876
5898
  */
5877
- _APP_COMPUTE_BUILD_TIMEOUT: number | bigint;
5899
+ _APP_COMPUTE_BUILD_TIMEOUT: number;
5878
5900
  /**
5879
5901
  * AAAA target for your Appwrite custom domains.
5880
5902
  */
@@ -5886,11 +5908,11 @@ export namespace Models {
5886
5908
  /**
5887
5909
  * Maximum file size allowed for file upload in bytes.
5888
5910
  */
5889
- _APP_STORAGE_LIMIT: number | bigint;
5911
+ _APP_STORAGE_LIMIT: number;
5890
5912
  /**
5891
5913
  * Maximum file size allowed for deployment in bytes.
5892
5914
  */
5893
- _APP_COMPUTE_SIZE_LIMIT: number | bigint;
5915
+ _APP_COMPUTE_SIZE_LIMIT: number;
5894
5916
  /**
5895
5917
  * Defines if usage stats are enabled. This value is set to 'enabled' by default, to disable the usage stats set the value to 'disabled'.
5896
5918
  */
@@ -6082,7 +6104,7 @@ export namespace Models {
6082
6104
  /**
6083
6105
  * Number of recipients the message was delivered to.
6084
6106
  */
6085
- deliveredTotal: number | bigint;
6107
+ deliveredTotal: number;
6086
6108
  /**
6087
6109
  * Data of the message.
6088
6110
  */
@@ -6116,15 +6138,15 @@ export namespace Models {
6116
6138
  /**
6117
6139
  * Total count of email subscribers subscribed to the topic.
6118
6140
  */
6119
- emailTotal: number | bigint;
6141
+ emailTotal: number;
6120
6142
  /**
6121
6143
  * Total count of SMS subscribers subscribed to the topic.
6122
6144
  */
6123
- smsTotal: number | bigint;
6145
+ smsTotal: number;
6124
6146
  /**
6125
6147
  * Total count of push subscribers subscribed to the topic.
6126
6148
  */
6127
- pushTotal: number | bigint;
6149
+ pushTotal: number;
6128
6150
  /**
6129
6151
  * Subscribe permissions.
6130
6152
  */
@@ -6154,7 +6176,7 @@ export namespace Models {
6154
6176
  /**
6155
6177
  * Number of operations in the transaction.
6156
6178
  */
6157
- operations: number | bigint;
6179
+ operations: number;
6158
6180
  /**
6159
6181
  * Expiration time in ISO 8601 format.
6160
6182
  */
@@ -6310,35 +6332,35 @@ export namespace Models {
6310
6332
  /**
6311
6333
  * Number of users to be migrated.
6312
6334
  */
6313
- user: number | bigint;
6335
+ user: number;
6314
6336
  /**
6315
6337
  * Number of teams to be migrated.
6316
6338
  */
6317
- team: number | bigint;
6339
+ team: number;
6318
6340
  /**
6319
6341
  * Number of databases to be migrated.
6320
6342
  */
6321
- database: number | bigint;
6343
+ database: number;
6322
6344
  /**
6323
6345
  * Number of rows to be migrated.
6324
6346
  */
6325
- row: number | bigint;
6347
+ row: number;
6326
6348
  /**
6327
6349
  * Number of files to be migrated.
6328
6350
  */
6329
- file: number | bigint;
6351
+ file: number;
6330
6352
  /**
6331
6353
  * Number of buckets to be migrated.
6332
6354
  */
6333
- bucket: number | bigint;
6355
+ bucket: number;
6334
6356
  /**
6335
6357
  * Number of functions to be migrated.
6336
6358
  */
6337
- function: number | bigint;
6359
+ function: number;
6338
6360
  /**
6339
6361
  * Size of files to be migrated in mb.
6340
6362
  */
6341
- size: number | bigint;
6363
+ size: number;
6342
6364
  /**
6343
6365
  * Version of the Appwrite instance to be migrated.
6344
6366
  */
@@ -6364,11 +6386,11 @@ export namespace Models {
6364
6386
  /**
6365
6387
  * Price
6366
6388
  */
6367
- price: number | bigint;
6389
+ price: number;
6368
6390
  /**
6369
6391
  * Resource value
6370
6392
  */
6371
- value: number | bigint;
6393
+ value: number;
6372
6394
  /**
6373
6395
  * Description on invoice
6374
6396
  */
@@ -6406,71 +6428,71 @@ export namespace Models {
6406
6428
  /**
6407
6429
  * Total storage usage
6408
6430
  */
6409
- usageStorage: number | bigint;
6431
+ usageStorage: number;
6410
6432
  /**
6411
6433
  * Total storage usage with builds storage
6412
6434
  */
6413
- usageTotalStorage: number | bigint;
6435
+ usageTotalStorage: number;
6414
6436
  /**
6415
6437
  * Total files storage usage
6416
6438
  */
6417
- usageFilesStorage: number | bigint;
6439
+ usageFilesStorage: number;
6418
6440
  /**
6419
6441
  * Total deployments storage usage
6420
6442
  */
6421
- usageDeploymentsStorage: number | bigint;
6443
+ usageDeploymentsStorage: number;
6422
6444
  /**
6423
6445
  * Total builds storage usage
6424
6446
  */
6425
- usageBuildsStorage: number | bigint;
6447
+ usageBuildsStorage: number;
6426
6448
  /**
6427
6449
  * Total databases storage usage
6428
6450
  */
6429
- usageDatabasesStorage: number | bigint;
6451
+ usageDatabasesStorage: number;
6430
6452
  /**
6431
6453
  * Total active users for the billing period
6432
6454
  */
6433
- usageUsers: number | bigint;
6455
+ usageUsers: number;
6434
6456
  /**
6435
6457
  * Total number of executions for the billing period
6436
6458
  */
6437
- usageExecutions: number | bigint;
6459
+ usageExecutions: number;
6438
6460
  /**
6439
6461
  * Total bandwidth usage for the billing period
6440
6462
  */
6441
- usageBandwidth: number | bigint;
6463
+ usageBandwidth: number;
6442
6464
  /**
6443
6465
  * Total realtime usage for the billing period
6444
6466
  */
6445
- usageRealtime: number | bigint;
6467
+ usageRealtime: number;
6446
6468
  /**
6447
6469
  * Additional members
6448
6470
  */
6449
- additionalMembers: number | bigint;
6471
+ additionalMembers: number;
6450
6472
  /**
6451
6473
  * Additional members cost
6452
6474
  */
6453
- additionalMemberAmount: number | bigint;
6475
+ additionalMemberAmount: number;
6454
6476
  /**
6455
6477
  * Additional storage usage cost
6456
6478
  */
6457
- additionalStorageAmount: number | bigint;
6479
+ additionalStorageAmount: number;
6458
6480
  /**
6459
6481
  * Additional users usage cost.
6460
6482
  */
6461
- additionalUsersAmount: number | bigint;
6483
+ additionalUsersAmount: number;
6462
6484
  /**
6463
6485
  * Additional executions usage cost
6464
6486
  */
6465
- additionalExecutionsAmount: number | bigint;
6487
+ additionalExecutionsAmount: number;
6466
6488
  /**
6467
6489
  * Additional bandwidth usage cost
6468
6490
  */
6469
- additionalBandwidthAmount: number | bigint;
6491
+ additionalBandwidthAmount: number;
6470
6492
  /**
6471
6493
  * Additional realtime usage cost
6472
6494
  */
6473
- additionalRealtimeAmount: number | bigint;
6495
+ additionalRealtimeAmount: number;
6474
6496
  /**
6475
6497
  * Billing plan
6476
6498
  */
@@ -6478,7 +6500,7 @@ export namespace Models {
6478
6500
  /**
6479
6501
  * Aggregated amount
6480
6502
  */
6481
- amount: number | bigint;
6503
+ amount: number;
6482
6504
  /**
6483
6505
  * Aggregation project breakdown
6484
6506
  */
@@ -6508,7 +6530,7 @@ export namespace Models {
6508
6530
  /**
6509
6531
  * Aggregated amount
6510
6532
  */
6511
- amount: number | bigint;
6533
+ amount: number;
6512
6534
  /**
6513
6535
  *
6514
6536
  */
@@ -6538,7 +6560,7 @@ export namespace Models {
6538
6560
  /**
6539
6561
  * Archive size in bytes.
6540
6562
  */
6541
- size: number | bigint;
6563
+ size: number;
6542
6564
  /**
6543
6565
  * The status of the archive creation. Possible values: pending, processing, uploading, completed, failed.
6544
6566
  */
@@ -6626,119 +6648,123 @@ export namespace Models {
6626
6648
  /**
6627
6649
  * Plan order
6628
6650
  */
6629
- order: number | bigint;
6651
+ order: number;
6630
6652
  /**
6631
6653
  * Price
6632
6654
  */
6633
- price: number | bigint;
6655
+ price: number;
6634
6656
  /**
6635
6657
  * Trial days
6636
6658
  */
6637
- trial: number | bigint;
6659
+ trial: number;
6638
6660
  /**
6639
6661
  * Bandwidth
6640
6662
  */
6641
- bandwidth: number | bigint;
6663
+ bandwidth: number;
6642
6664
  /**
6643
6665
  * Storage
6644
6666
  */
6645
- storage: number | bigint;
6667
+ storage: number;
6646
6668
  /**
6647
6669
  * Image Transformations
6648
6670
  */
6649
- imageTransformations: number | bigint;
6671
+ imageTransformations: number;
6650
6672
  /**
6651
6673
  * Members
6652
6674
  */
6653
- members: number | bigint;
6675
+ members: number;
6654
6676
  /**
6655
6677
  * Webhooks
6656
6678
  */
6657
- webhooks: number | bigint;
6679
+ webhooks: number;
6658
6680
  /**
6659
6681
  * Projects
6660
6682
  */
6661
- projects: number | bigint;
6683
+ projects: number;
6662
6684
  /**
6663
6685
  * Platforms
6664
6686
  */
6665
- platforms: number | bigint;
6687
+ platforms: number;
6666
6688
  /**
6667
6689
  * Users
6668
6690
  */
6669
- users: number | bigint;
6691
+ users: number;
6670
6692
  /**
6671
6693
  * Teams
6672
6694
  */
6673
- teams: number | bigint;
6695
+ teams: number;
6674
6696
  /**
6675
6697
  * Databases
6676
6698
  */
6677
- databases: number | bigint;
6699
+ databases: number;
6678
6700
  /**
6679
6701
  * Database reads per month
6680
6702
  */
6681
- databasesReads: number | bigint;
6703
+ databasesReads: number;
6682
6704
  /**
6683
6705
  * Database writes per month
6684
6706
  */
6685
- databasesWrites: number | bigint;
6707
+ databasesWrites: number;
6686
6708
  /**
6687
6709
  * Database batch size limit
6688
6710
  */
6689
- databasesBatchSize: number | bigint;
6711
+ databasesBatchSize: number;
6690
6712
  /**
6691
6713
  * Buckets
6692
6714
  */
6693
- buckets: number | bigint;
6715
+ buckets: number;
6694
6716
  /**
6695
6717
  * File size
6696
6718
  */
6697
- fileSize: number | bigint;
6719
+ fileSize: number;
6698
6720
  /**
6699
6721
  * Functions
6700
6722
  */
6701
- functions: number | bigint;
6723
+ functions: number;
6702
6724
  /**
6703
6725
  * Sites
6704
6726
  */
6705
- sites: number | bigint;
6727
+ sites: number;
6706
6728
  /**
6707
6729
  * Function executions
6708
6730
  */
6709
- executions: number | bigint;
6731
+ executions: number;
6732
+ /**
6733
+ * Rolling max executions retained per function/site
6734
+ */
6735
+ executionsRetentionCount: number;
6710
6736
  /**
6711
6737
  * GB hours for functions
6712
6738
  */
6713
- GBHours: number | bigint;
6739
+ GBHours: number;
6714
6740
  /**
6715
6741
  * Realtime connections
6716
6742
  */
6717
- realtime: number | bigint;
6743
+ realtime: number;
6718
6744
  /**
6719
6745
  * Messages per month
6720
6746
  */
6721
- messages: number | bigint;
6747
+ messages: number;
6722
6748
  /**
6723
6749
  * Topics for messaging
6724
6750
  */
6725
- topics: number | bigint;
6751
+ topics: number;
6726
6752
  /**
6727
6753
  * SMS authentications per month
6728
6754
  */
6729
- authPhone: number | bigint;
6755
+ authPhone: number;
6730
6756
  /**
6731
6757
  * Custom domains
6732
6758
  */
6733
- domains: number | bigint;
6759
+ domains: number;
6734
6760
  /**
6735
6761
  * Log days
6736
6762
  */
6737
- logs: number | bigint;
6763
+ logs: number;
6738
6764
  /**
6739
6765
  * Alert threshold percentage
6740
6766
  */
6741
- alertLimit: number | bigint;
6767
+ alertLimit: number;
6742
6768
  /**
6743
6769
  * Additional resources
6744
6770
  */
@@ -6806,15 +6832,15 @@ export namespace Models {
6806
6832
  /**
6807
6833
  * How many policies does plan support
6808
6834
  */
6809
- backupPolicies: number | bigint;
6835
+ backupPolicies: number;
6810
6836
  /**
6811
6837
  * Maximum function and site deployment size in MB
6812
6838
  */
6813
- deploymentSize: number | bigint;
6839
+ deploymentSize: number;
6814
6840
  /**
6815
6841
  * Maximum function and site deployment size in MB
6816
6842
  */
6817
- buildSize: number | bigint;
6843
+ buildSize: number;
6818
6844
  /**
6819
6845
  * Does the plan support encrypted string attributes or not.
6820
6846
  */
@@ -6858,11 +6884,11 @@ export namespace Models {
6858
6884
  /**
6859
6885
  * Addon plan included value
6860
6886
  */
6861
- planIncluded: number | bigint;
6887
+ planIncluded: number;
6862
6888
  /**
6863
6889
  * Addon limit
6864
6890
  */
6865
- limit: number | bigint;
6891
+ limit: number;
6866
6892
  /**
6867
6893
  * Addon type
6868
6894
  */
@@ -6874,11 +6900,11 @@ export namespace Models {
6874
6900
  /**
6875
6901
  * Price
6876
6902
  */
6877
- price: number | bigint;
6903
+ price: number;
6878
6904
  /**
6879
6905
  * Resource value
6880
6906
  */
6881
- value: number | bigint;
6907
+ value: number;
6882
6908
  /**
6883
6909
  * Description on invoice
6884
6910
  */
@@ -6892,11 +6918,11 @@ export namespace Models {
6892
6918
  /**
6893
6919
  * Credits limit per billing cycle
6894
6920
  */
6895
- credits?: number | bigint;
6921
+ credits?: number;
6896
6922
  /**
6897
6923
  * Daily credits limit (if applicable)
6898
6924
  */
6899
- dailyCredits?: number | bigint;
6925
+ dailyCredits?: number;
6900
6926
  }
6901
6927
 
6902
6928
  /**
@@ -6906,35 +6932,35 @@ export namespace Models {
6906
6932
  /**
6907
6933
  * Bandwidth limit
6908
6934
  */
6909
- bandwidth: number | bigint;
6935
+ bandwidth: number;
6910
6936
  /**
6911
6937
  * Storage limit
6912
6938
  */
6913
- storage: number | bigint;
6939
+ storage: number;
6914
6940
  /**
6915
6941
  * Users limit
6916
6942
  */
6917
- users: number | bigint;
6943
+ users: number;
6918
6944
  /**
6919
6945
  * Executions limit
6920
6946
  */
6921
- executions: number | bigint;
6947
+ executions: number;
6922
6948
  /**
6923
6949
  * GBHours limit
6924
6950
  */
6925
- GBHours: number | bigint;
6951
+ GBHours: number;
6926
6952
  /**
6927
6953
  * Image transformations limit
6928
6954
  */
6929
- imageTransformations: number | bigint;
6955
+ imageTransformations: number;
6930
6956
  /**
6931
6957
  * Auth phone limit
6932
6958
  */
6933
- authPhone: number | bigint;
6959
+ authPhone: number;
6934
6960
  /**
6935
6961
  * Budget limit percentage
6936
6962
  */
6937
- budgetLimit: number | bigint;
6963
+ budgetLimit: number;
6938
6964
  }
6939
6965
 
6940
6966
  /**
@@ -7074,7 +7100,7 @@ export namespace Models {
7074
7100
  /**
7075
7101
  * Provided credit amount
7076
7102
  */
7077
- credits: number | bigint;
7103
+ credits: number;
7078
7104
  /**
7079
7105
  * Coupon expiration time in ISO 8601 format.
7080
7106
  */
@@ -7082,7 +7108,7 @@ export namespace Models {
7082
7108
  /**
7083
7109
  * Credit validity in days.
7084
7110
  */
7085
- validity: number | bigint;
7111
+ validity: number;
7086
7112
  /**
7087
7113
  * Campaign the coupon is associated with`.
7088
7114
  */
@@ -7132,11 +7158,11 @@ export namespace Models {
7132
7158
  /**
7133
7159
  * Provided credit amount
7134
7160
  */
7135
- credits: number | bigint;
7161
+ credits: number;
7136
7162
  /**
7137
7163
  * Provided credit amount
7138
7164
  */
7139
- total: number | bigint;
7165
+ total: number;
7140
7166
  /**
7141
7167
  * Credit expiration time in ISO 8601 format.
7142
7168
  */
@@ -7154,7 +7180,7 @@ export namespace Models {
7154
7180
  /**
7155
7181
  * Total available credits for the organization.
7156
7182
  */
7157
- available: number | bigint;
7183
+ available: number;
7158
7184
  }
7159
7185
 
7160
7186
  /**
@@ -7168,11 +7194,11 @@ export namespace Models {
7168
7194
  /**
7169
7195
  * Total number of credits
7170
7196
  */
7171
- total: number | bigint;
7197
+ total: number;
7172
7198
  /**
7173
7199
  * Total available credit balance in USD
7174
7200
  */
7175
- available: number | bigint;
7201
+ available: number;
7176
7202
  }
7177
7203
 
7178
7204
  /**
@@ -7260,31 +7286,31 @@ export namespace Models {
7260
7286
  /**
7261
7287
  * Invoice Amount
7262
7288
  */
7263
- amount: number | bigint;
7289
+ amount: number;
7264
7290
  /**
7265
7291
  * Tax percentage
7266
7292
  */
7267
- tax: number | bigint;
7293
+ tax: number;
7268
7294
  /**
7269
7295
  * Tax amount
7270
7296
  */
7271
- taxAmount: number | bigint;
7297
+ taxAmount: number;
7272
7298
  /**
7273
7299
  * VAT percentage
7274
7300
  */
7275
- vat: number | bigint;
7301
+ vat: number;
7276
7302
  /**
7277
7303
  * VAT amount
7278
7304
  */
7279
- vatAmount: number | bigint;
7305
+ vatAmount: number;
7280
7306
  /**
7281
7307
  * Gross amount after vat, tax, and discounts applied.
7282
7308
  */
7283
- grossAmount: number | bigint;
7309
+ grossAmount: number;
7284
7310
  /**
7285
7311
  * Credits used.
7286
7312
  */
7287
- creditsUsed: number | bigint;
7313
+ creditsUsed: number;
7288
7314
  /**
7289
7315
  * Currency the invoice is in
7290
7316
  */
@@ -7338,7 +7364,7 @@ export namespace Models {
7338
7364
  /**
7339
7365
  * Total number of team members.
7340
7366
  */
7341
- total: number | bigint;
7367
+ total: number;
7342
7368
  /**
7343
7369
  * Team preferences as a key-value object
7344
7370
  */
@@ -7346,11 +7372,11 @@ export namespace Models {
7346
7372
  /**
7347
7373
  * Project budget limit
7348
7374
  */
7349
- billingBudget: number | bigint;
7375
+ billingBudget: number;
7350
7376
  /**
7351
7377
  * Project budget limit
7352
7378
  */
7353
- budgetAlerts: number | bigint[];
7379
+ budgetAlerts: number[];
7354
7380
  /**
7355
7381
  * Organization's billing plan ID.
7356
7382
  */
@@ -7386,7 +7412,7 @@ export namespace Models {
7386
7412
  /**
7387
7413
  * Number of trial days.
7388
7414
  */
7389
- billingTrialDays: number | bigint;
7415
+ billingTrialDays: number;
7390
7416
  /**
7391
7417
  * Current active aggregation id.
7392
7418
  */
@@ -7522,11 +7548,11 @@ export namespace Models {
7522
7548
  /**
7523
7549
  * Expiry month of the payment method.
7524
7550
  */
7525
- expiryMonth: number | bigint;
7551
+ expiryMonth: number;
7526
7552
  /**
7527
7553
  * Expiry year of the payment method.
7528
7554
  */
7529
- expiryYear: number | bigint;
7555
+ expiryYear: number;
7530
7556
  /**
7531
7557
  * Last 4 digit of the payment method
7532
7558
  */
@@ -7608,7 +7634,7 @@ export namespace Models {
7608
7634
  /**
7609
7635
  * How many days to keep the backup before it will be automatically deleted.
7610
7636
  */
7611
- retention: number | bigint;
7637
+ retention: number;
7612
7638
  /**
7613
7639
  * Policy backup schedule in CRON format.
7614
7640
  */
@@ -7766,7 +7792,7 @@ export namespace Models {
7766
7792
  /**
7767
7793
  * Aggregated stats for total file transformations.
7768
7794
  */
7769
- imageTransformationsTotal: number | bigint;
7795
+ imageTransformationsTotal: number;
7770
7796
  /**
7771
7797
  * Aggregated stats for file transformations.
7772
7798
  */
@@ -7774,7 +7800,7 @@ export namespace Models {
7774
7800
  /**
7775
7801
  * Aggregated stats for total file transformations.
7776
7802
  */
7777
- screenshotsGeneratedTotal: number | bigint;
7803
+ screenshotsGeneratedTotal: number;
7778
7804
  /**
7779
7805
  * Aggregated stats for imagine credits.
7780
7806
  */
@@ -7782,63 +7808,63 @@ export namespace Models {
7782
7808
  /**
7783
7809
  * Aggregated stats for total imagine credits.
7784
7810
  */
7785
- imagineCreditsTotal: number | bigint;
7811
+ imagineCreditsTotal: number;
7786
7812
  /**
7787
7813
  * Aggregated stats for total users.
7788
7814
  */
7789
- usersTotal: number | bigint;
7815
+ usersTotal: number;
7790
7816
  /**
7791
7817
  * Aggregated stats for total executions.
7792
7818
  */
7793
- executionsTotal: number | bigint;
7819
+ executionsTotal: number;
7794
7820
  /**
7795
7821
  * Aggregated stats for function executions in mb seconds.
7796
7822
  */
7797
- executionsMBSecondsTotal: number | bigint;
7823
+ executionsMBSecondsTotal: number;
7798
7824
  /**
7799
7825
  * Aggregated stats for function builds in mb seconds.
7800
7826
  */
7801
- buildsMBSecondsTotal: number | bigint;
7827
+ buildsMBSecondsTotal: number;
7802
7828
  /**
7803
7829
  * Aggregated stats for total file storage.
7804
7830
  */
7805
- filesStorageTotal: number | bigint;
7831
+ filesStorageTotal: number;
7806
7832
  /**
7807
7833
  * Aggregated stats for total builds storage.
7808
7834
  */
7809
- buildsStorageTotal: number | bigint;
7835
+ buildsStorageTotal: number;
7810
7836
  /**
7811
7837
  * Aggregated stats for total deployments storage.
7812
7838
  */
7813
- deploymentsStorageTotal: number | bigint;
7839
+ deploymentsStorageTotal: number;
7814
7840
  /**
7815
7841
  * Aggregated stats for total databases storage.
7816
7842
  */
7817
- databasesStorageTotal: number | bigint;
7843
+ databasesStorageTotal: number;
7818
7844
  /**
7819
7845
  * Aggregated stats for total databases reads.
7820
7846
  */
7821
- databasesReadsTotal: number | bigint;
7847
+ databasesReadsTotal: number;
7822
7848
  /**
7823
7849
  * Aggregated stats for total databases writes.
7824
7850
  */
7825
- databasesWritesTotal: number | bigint;
7851
+ databasesWritesTotal: number;
7826
7852
  /**
7827
7853
  * Aggregated stats for total backups storage.
7828
7854
  */
7829
- backupsStorageTotal: number | bigint;
7855
+ backupsStorageTotal: number;
7830
7856
  /**
7831
7857
  * Aggregated stats for total storage.
7832
7858
  */
7833
- storageTotal: number | bigint;
7859
+ storageTotal: number;
7834
7860
  /**
7835
7861
  * Aggregated stats for total auth phone.
7836
7862
  */
7837
- authPhoneTotal: number | bigint;
7863
+ authPhoneTotal: number;
7838
7864
  /**
7839
7865
  * Aggregated stats for total auth phone estimation.
7840
7866
  */
7841
- authPhoneEstimate: number | bigint;
7867
+ authPhoneEstimate: number;
7842
7868
  /**
7843
7869
  * Aggregated stats for each projects.
7844
7870
  */
@@ -7864,7 +7890,7 @@ export namespace Models {
7864
7890
  /**
7865
7891
  * Aggregated stats for function executions.
7866
7892
  */
7867
- executions: number | bigint;
7893
+ executions: number;
7868
7894
  /**
7869
7895
  * Aggregated stats for database reads.
7870
7896
  */
@@ -7876,31 +7902,31 @@ export namespace Models {
7876
7902
  /**
7877
7903
  * Aggregated stats for function executions in mb seconds.
7878
7904
  */
7879
- executionsMBSeconds: number | bigint;
7905
+ executionsMBSeconds: number;
7880
7906
  /**
7881
7907
  * Aggregated stats for function builds in mb seconds.
7882
7908
  */
7883
- buildsMBSeconds: number | bigint;
7909
+ buildsMBSeconds: number;
7884
7910
  /**
7885
7911
  * Aggregated stats for number of documents.
7886
7912
  */
7887
- storage: number | bigint;
7913
+ storage: number;
7888
7914
  /**
7889
7915
  * Aggregated stats for phone authentication.
7890
7916
  */
7891
- authPhoneTotal: number | bigint;
7917
+ authPhoneTotal: number;
7892
7918
  /**
7893
7919
  * Aggregated stats for phone authentication estimated cost.
7894
7920
  */
7895
- authPhoneEstimate: number | bigint;
7921
+ authPhoneEstimate: number;
7896
7922
  /**
7897
7923
  * Aggregated stats for total databases reads.
7898
7924
  */
7899
- databasesReadsTotal: number | bigint;
7925
+ databasesReadsTotal: number;
7900
7926
  /**
7901
7927
  * Aggregated stats for total databases writes.
7902
7928
  */
7903
- databasesWritesTotal: number | bigint;
7929
+ databasesWritesTotal: number;
7904
7930
  /**
7905
7931
  * Aggregated stats for file transformations.
7906
7932
  */
@@ -7908,7 +7934,7 @@ export namespace Models {
7908
7934
  /**
7909
7935
  * Aggregated stats for total file transformations.
7910
7936
  */
7911
- imageTransformationsTotal: number | bigint;
7937
+ imageTransformationsTotal: number;
7912
7938
  /**
7913
7939
  * Aggregated stats for file transformations.
7914
7940
  */
@@ -7916,11 +7942,11 @@ export namespace Models {
7916
7942
  /**
7917
7943
  * Aggregated stats for total file transformations.
7918
7944
  */
7919
- screenshotsGeneratedTotal: number | bigint;
7945
+ screenshotsGeneratedTotal: number;
7920
7946
  /**
7921
7947
  * Aggregated stats for imagine credits.
7922
7948
  */
7923
- imagineCredits: number | bigint;
7949
+ imagineCredits: number;
7924
7950
  }
7925
7951
 
7926
7952
  /**
@@ -7966,7 +7992,7 @@ export namespace Models {
7966
7992
  /**
7967
7993
  * Renewal price (in USD).
7968
7994
  */
7969
- renewalPrice: number | bigint;
7995
+ renewalPrice: number;
7970
7996
  /**
7971
7997
  * Team ID.
7972
7998
  */
@@ -8008,11 +8034,11 @@ export namespace Models {
8008
8034
  /**
8009
8035
  * Time to live (in seconds).
8010
8036
  */
8011
- ttl: number | bigint;
8037
+ ttl: number;
8012
8038
  /**
8013
8039
  * Record priority (commonly used for MX).
8014
8040
  */
8015
- priority: number | bigint;
8041
+ priority: number;
8016
8042
  /**
8017
8043
  * Whether this record is locked (read-only).
8018
8044
  */
@@ -8020,11 +8046,11 @@ export namespace Models {
8020
8046
  /**
8021
8047
  * Record weight (used for SRV records).
8022
8048
  */
8023
- weight: number | bigint;
8049
+ weight: number;
8024
8050
  /**
8025
8051
  * Target port (used for SRV records).
8026
8052
  */
8027
- port: number | bigint;
8053
+ port: number;
8028
8054
  /**
8029
8055
  * Comment for the DNS record.
8030
8056
  */
@@ -8042,15 +8068,15 @@ export namespace Models {
8042
8068
  /**
8043
8069
  * Invoice value
8044
8070
  */
8045
- value: number | bigint;
8071
+ value: number;
8046
8072
  /**
8047
8073
  * Invoice amount
8048
8074
  */
8049
- amount: number | bigint;
8075
+ amount: number;
8050
8076
  /**
8051
8077
  * Invoice rate
8052
8078
  */
8053
- rate: number | bigint;
8079
+ rate: number;
8054
8080
  /**
8055
8081
  * Invoice description
8056
8082
  */
@@ -8110,19 +8136,19 @@ export namespace Models {
8110
8136
  /**
8111
8137
  * Total amount
8112
8138
  */
8113
- amount: number | bigint;
8139
+ amount: number;
8114
8140
  /**
8115
8141
  * Gross payable amount
8116
8142
  */
8117
- grossAmount: number | bigint;
8143
+ grossAmount: number;
8118
8144
  /**
8119
8145
  * Discount amount
8120
8146
  */
8121
- discount: number | bigint;
8147
+ discount: number;
8122
8148
  /**
8123
8149
  * Credits amount
8124
8150
  */
8125
- credits: number | bigint;
8151
+ credits: number;
8126
8152
  /**
8127
8153
  * Estimation items
8128
8154
  */
@@ -8134,7 +8160,7 @@ export namespace Models {
8134
8160
  /**
8135
8161
  * Trial days
8136
8162
  */
8137
- trialDays: number | bigint;
8163
+ trialDays: number;
8138
8164
  /**
8139
8165
  * Trial end date
8140
8166
  */
@@ -8148,19 +8174,19 @@ export namespace Models {
8148
8174
  /**
8149
8175
  * Total amount
8150
8176
  */
8151
- amount: number | bigint;
8177
+ amount: number;
8152
8178
  /**
8153
8179
  * Gross payable amount
8154
8180
  */
8155
- grossAmount: number | bigint;
8181
+ grossAmount: number;
8156
8182
  /**
8157
8183
  * Discount amount
8158
8184
  */
8159
- discount: number | bigint;
8185
+ discount: number;
8160
8186
  /**
8161
8187
  * Credits amount
8162
8188
  */
8163
- credits: number | bigint;
8189
+ credits: number;
8164
8190
  /**
8165
8191
  * Estimation items
8166
8192
  */
@@ -8172,7 +8198,7 @@ export namespace Models {
8172
8198
  /**
8173
8199
  * Trial days
8174
8200
  */
8175
- trialDays: number | bigint;
8201
+ trialDays: number;
8176
8202
  /**
8177
8203
  * Trial end date
8178
8204
  */
@@ -8180,7 +8206,7 @@ export namespace Models {
8180
8206
  /**
8181
8207
  * Organization's existing credits
8182
8208
  */
8183
- organizationCredits: number | bigint;
8209
+ organizationCredits: number;
8184
8210
  }
8185
8211
 
8186
8212
  /**
@@ -8204,7 +8230,29 @@ export namespace Models {
8204
8230
  /**
8205
8231
  * Gross payable amount
8206
8232
  */
8207
- value: number | bigint;
8233
+ value: number;
8234
+ }
8235
+
8236
+ /**
8237
+ * DomainSuggestion
8238
+ */
8239
+ export type DomainSuggestion = {
8240
+ /**
8241
+ * Domain suggestion.
8242
+ */
8243
+ domain: string;
8244
+ /**
8245
+ * Is the domain premium?
8246
+ */
8247
+ premium: boolean;
8248
+ /**
8249
+ * Domain price.
8250
+ */
8251
+ price?: number;
8252
+ /**
8253
+ * Is the domain available?
8254
+ */
8255
+ available: boolean;
8208
8256
  }
8209
8257
 
8210
8258
  /**
@@ -8214,7 +8262,7 @@ export namespace Models {
8214
8262
  /**
8215
8263
  * Total number of aggregations that matched your query.
8216
8264
  */
8217
- total: number | bigint;
8265
+ total: number;
8218
8266
  /**
8219
8267
  * List of aggregations.
8220
8268
  */
@@ -8228,7 +8276,7 @@ export namespace Models {
8228
8276
  /**
8229
8277
  * Total number of archives that matched your query.
8230
8278
  */
8231
- total: number | bigint;
8279
+ total: number;
8232
8280
  /**
8233
8281
  * List of archives.
8234
8282
  */
@@ -8242,7 +8290,7 @@ export namespace Models {
8242
8290
  /**
8243
8291
  * Total number of policies that matched your query.
8244
8292
  */
8245
- total: number | bigint;
8293
+ total: number;
8246
8294
  /**
8247
8295
  * List of policies.
8248
8296
  */
@@ -8256,7 +8304,7 @@ export namespace Models {
8256
8304
  /**
8257
8305
  * Total number of restorations that matched your query.
8258
8306
  */
8259
- total: number | bigint;
8307
+ total: number;
8260
8308
  /**
8261
8309
  * List of restorations.
8262
8310
  */
@@ -8270,7 +8318,7 @@ export namespace Models {
8270
8318
  /**
8271
8319
  * Total number of invoices that matched your query.
8272
8320
  */
8273
- total: number | bigint;
8321
+ total: number;
8274
8322
  /**
8275
8323
  * List of invoices.
8276
8324
  */
@@ -8284,7 +8332,7 @@ export namespace Models {
8284
8332
  /**
8285
8333
  * Total number of billingAddresses that matched your query.
8286
8334
  */
8287
- total: number | bigint;
8335
+ total: number;
8288
8336
  /**
8289
8337
  * List of billingAddresses.
8290
8338
  */
@@ -8298,7 +8346,7 @@ export namespace Models {
8298
8346
  /**
8299
8347
  * Total number of plans that matched your query.
8300
8348
  */
8301
- total: number | bigint;
8349
+ total: number;
8302
8350
  /**
8303
8351
  * List of plans.
8304
8352
  */
@@ -8312,7 +8360,7 @@ export namespace Models {
8312
8360
  /**
8313
8361
  * Total number of teams that matched your query.
8314
8362
  */
8315
- total: number | bigint;
8363
+ total: number;
8316
8364
  /**
8317
8365
  * List of teams.
8318
8366
  */
@@ -8326,7 +8374,7 @@ export namespace Models {
8326
8374
  /**
8327
8375
  * Total number of paymentMethods that matched your query.
8328
8376
  */
8329
- total: number | bigint;
8377
+ total: number;
8330
8378
  /**
8331
8379
  * List of paymentMethods.
8332
8380
  */
@@ -8340,7 +8388,7 @@ export namespace Models {
8340
8388
  /**
8341
8389
  * Total number of regions that matched your query.
8342
8390
  */
8343
- total: number | bigint;
8391
+ total: number;
8344
8392
  /**
8345
8393
  * List of regions.
8346
8394
  */
@@ -8354,7 +8402,7 @@ export namespace Models {
8354
8402
  /**
8355
8403
  * Total number of domains that matched your query.
8356
8404
  */
8357
- total: number | bigint;
8405
+ total: number;
8358
8406
  /**
8359
8407
  * List of domains.
8360
8408
  */
@@ -8368,10 +8416,24 @@ export namespace Models {
8368
8416
  /**
8369
8417
  * Total number of dnsRecords that matched your query.
8370
8418
  */
8371
- total: number | bigint;
8419
+ total: number;
8372
8420
  /**
8373
8421
  * List of dnsRecords.
8374
8422
  */
8375
8423
  dnsRecords: DnsRecord[];
8376
8424
  }
8425
+
8426
+ /**
8427
+ * Domain suggestions list
8428
+ */
8429
+ export type DomainSuggestionsList = {
8430
+ /**
8431
+ * Total number of suggestions that matched your query.
8432
+ */
8433
+ total: number;
8434
+ /**
8435
+ * List of suggestions.
8436
+ */
8437
+ suggestions: DomainSuggestion[];
8438
+ }
8377
8439
  }