@appwrite.io/console 2.1.0 → 2.1.1

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 (48) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +2 -2
  3. package/dist/cjs/sdk.js +55 -16
  4. package/dist/cjs/sdk.js.map +1 -1
  5. package/dist/esm/sdk.js +51 -16
  6. package/dist/esm/sdk.js.map +1 -1
  7. package/dist/iife/sdk.js +3812 -16
  8. package/docs/examples/projects/update-labels.md +14 -0
  9. package/package.json +7 -1
  10. package/rollup.config.js +40 -24
  11. package/src/client.ts +20 -10
  12. package/src/models.ts +432 -424
  13. package/src/query.ts +14 -11
  14. package/src/services/account.ts +20 -20
  15. package/src/services/avatars.ts +117 -117
  16. package/src/services/backups.ts +18 -18
  17. package/src/services/console.ts +24 -24
  18. package/src/services/databases.ts +119 -119
  19. package/src/services/domains.ts +204 -204
  20. package/src/services/functions.ts +30 -30
  21. package/src/services/health.ts +146 -146
  22. package/src/services/messaging.ts +54 -54
  23. package/src/services/migrations.ts +36 -36
  24. package/src/services/organizations.ts +42 -42
  25. package/src/services/projects.ts +146 -83
  26. package/src/services/sites.ts +30 -30
  27. package/src/services/storage.ts +49 -49
  28. package/src/services/tables-db.ts +119 -119
  29. package/src/services/users.ts +39 -39
  30. package/types/client.d.ts +8 -1
  31. package/types/models.d.ts +432 -424
  32. package/types/query.d.ts +8 -8
  33. package/types/services/account.d.ts +11 -11
  34. package/types/services/avatars.d.ts +82 -82
  35. package/types/services/backups.d.ts +8 -8
  36. package/types/services/console.d.ts +14 -14
  37. package/types/services/databases.d.ts +70 -70
  38. package/types/services/domains.d.ts +104 -104
  39. package/types/services/functions.d.ts +15 -15
  40. package/types/services/health.d.ts +72 -72
  41. package/types/services/messaging.d.ts +24 -24
  42. package/types/services/migrations.d.ts +16 -16
  43. package/types/services/organizations.d.ts +22 -22
  44. package/types/services/projects.d.ts +60 -38
  45. package/types/services/sites.d.ts +15 -15
  46. package/types/services/storage.d.ts +34 -34
  47. package/types/services/tables-db.d.ts +70 -70
  48. 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;
27
+ total: number | bigint;
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;
40
+ total: number | bigint;
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;
53
+ total: number | bigint;
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;
66
+ total: number | bigint;
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;
79
+ total: number | bigint;
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;
92
+ total: number | bigint;
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;
105
+ total: number | bigint;
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;
118
+ total: number | bigint;
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;
131
+ total: number | bigint;
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;
144
+ total: number | bigint;
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;
157
+ total: number | bigint;
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;
170
+ total: number | bigint;
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;
183
+ total: number | bigint;
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;
196
+ total: number | bigint;
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;
209
+ total: number | bigint;
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;
222
+ total: number | bigint;
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;
235
+ total: number | bigint;
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;
248
+ total: number | bigint;
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;
261
+ total: number | bigint;
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;
274
+ total: number | bigint;
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;
287
+ total: number | bigint;
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;
300
+ total: number | bigint;
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;
313
+ total: number | bigint;
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;
326
+ total: number | bigint;
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;
339
+ total: number | bigint;
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;
352
+ total: number | bigint;
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;
365
+ total: number | bigint;
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;
378
+ total: number | bigint;
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;
391
+ total: number | bigint;
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;
404
+ total: number | bigint;
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;
417
+ total: number | bigint;
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;
430
+ total: number | bigint;
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;
443
+ total: number | bigint;
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;
456
+ total: number | bigint;
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;
469
+ total: number | bigint;
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;
482
+ total: number | bigint;
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;
495
+ total: number | bigint;
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;
508
+ total: number | bigint;
509
509
  /**
510
510
  * List of phones.
511
511
  */
@@ -518,7 +518,7 @@ export declare namespace Models {
518
518
  /**
519
519
  * Total number of variables that matched your query.
520
520
  */
521
- total: number;
521
+ total: number | bigint;
522
522
  /**
523
523
  * List of variables.
524
524
  */
@@ -531,7 +531,7 @@ export declare namespace Models {
531
531
  /**
532
532
  * Total number of rules that matched your query.
533
533
  */
534
- total: number;
534
+ total: number | bigint;
535
535
  /**
536
536
  * List of rules.
537
537
  */
@@ -544,7 +544,7 @@ export declare namespace Models {
544
544
  /**
545
545
  * Total number of localeCodes that matched your query.
546
546
  */
547
- total: number;
547
+ total: number | bigint;
548
548
  /**
549
549
  * List of localeCodes.
550
550
  */
@@ -557,7 +557,7 @@ export declare namespace Models {
557
557
  /**
558
558
  * Total number of providers that matched your query.
559
559
  */
560
- total: number;
560
+ total: number | bigint;
561
561
  /**
562
562
  * List of providers.
563
563
  */
@@ -570,7 +570,7 @@ export declare namespace Models {
570
570
  /**
571
571
  * Total number of messages that matched your query.
572
572
  */
573
- total: number;
573
+ total: number | bigint;
574
574
  /**
575
575
  * List of messages.
576
576
  */
@@ -583,7 +583,7 @@ export declare namespace Models {
583
583
  /**
584
584
  * Total number of topics that matched your query.
585
585
  */
586
- total: number;
586
+ total: number | bigint;
587
587
  /**
588
588
  * List of topics.
589
589
  */
@@ -596,7 +596,7 @@ export declare namespace Models {
596
596
  /**
597
597
  * Total number of subscribers that matched your query.
598
598
  */
599
- total: number;
599
+ total: number | bigint;
600
600
  /**
601
601
  * List of subscribers.
602
602
  */
@@ -609,7 +609,7 @@ export declare namespace Models {
609
609
  /**
610
610
  * Total number of targets that matched your query.
611
611
  */
612
- total: number;
612
+ total: number | bigint;
613
613
  /**
614
614
  * List of targets.
615
615
  */
@@ -622,7 +622,7 @@ export declare namespace Models {
622
622
  /**
623
623
  * Total number of transactions that matched your query.
624
624
  */
625
- total: number;
625
+ total: number | bigint;
626
626
  /**
627
627
  * List of transactions.
628
628
  */
@@ -635,7 +635,7 @@ export declare namespace Models {
635
635
  /**
636
636
  * Total number of migrations that matched your query.
637
637
  */
638
- total: number;
638
+ total: number | bigint;
639
639
  /**
640
640
  * List of migrations.
641
641
  */
@@ -648,7 +648,7 @@ export declare namespace Models {
648
648
  /**
649
649
  * Total number of specifications that matched your query.
650
650
  */
651
- total: number;
651
+ total: number | bigint;
652
652
  /**
653
653
  * List of specifications.
654
654
  */
@@ -661,7 +661,7 @@ export declare namespace Models {
661
661
  /**
662
662
  * Total number of contents that matched your query.
663
663
  */
664
- total: number;
664
+ total: number | bigint;
665
665
  /**
666
666
  * List of contents.
667
667
  */
@@ -756,7 +756,7 @@ export declare namespace Models {
756
756
  /**
757
757
  * Total number of attributes in the given collection.
758
758
  */
759
- total: number;
759
+ total: number | bigint;
760
760
  /**
761
761
  * List of attributes.
762
762
  */
@@ -801,7 +801,7 @@ export declare namespace Models {
801
801
  /**
802
802
  * Attribute size.
803
803
  */
804
- size: number;
804
+ size: number | bigint;
805
805
  /**
806
806
  * Default value for attribute when not provided. Cannot be set when attribute is required.
807
807
  */
@@ -850,15 +850,15 @@ export declare namespace Models {
850
850
  /**
851
851
  * Minimum value to enforce for new documents.
852
852
  */
853
- min?: number;
853
+ min?: number | bigint;
854
854
  /**
855
855
  * Maximum value to enforce for new documents.
856
856
  */
857
- max?: number;
857
+ max?: number | bigint;
858
858
  /**
859
859
  * Default value for attribute when not provided. Cannot be set when attribute is required.
860
860
  */
861
- default?: number;
861
+ default?: number | bigint;
862
862
  };
863
863
  /**
864
864
  * AttributeFloat
@@ -899,15 +899,15 @@ export declare namespace Models {
899
899
  /**
900
900
  * Minimum value to enforce for new documents.
901
901
  */
902
- min?: number;
902
+ min?: number | bigint;
903
903
  /**
904
904
  * Maximum value to enforce for new documents.
905
905
  */
906
- max?: number;
906
+ max?: number | bigint;
907
907
  /**
908
908
  * Default value for attribute when not provided. Cannot be set when attribute is required.
909
909
  */
910
- default?: number;
910
+ default?: number | bigint;
911
911
  };
912
912
  /**
913
913
  * AttributeBoolean
@@ -1415,7 +1415,7 @@ export declare namespace Models {
1415
1415
  /**
1416
1416
  * Total number of columns in the given table.
1417
1417
  */
1418
- total: number;
1418
+ total: number | bigint;
1419
1419
  /**
1420
1420
  * List of columns.
1421
1421
  */
@@ -1460,7 +1460,7 @@ export declare namespace Models {
1460
1460
  /**
1461
1461
  * Column size.
1462
1462
  */
1463
- size: number;
1463
+ size: number | bigint;
1464
1464
  /**
1465
1465
  * Default value for column when not provided. Cannot be set when column is required.
1466
1466
  */
@@ -1509,15 +1509,15 @@ export declare namespace Models {
1509
1509
  /**
1510
1510
  * Minimum value to enforce for new documents.
1511
1511
  */
1512
- min?: number;
1512
+ min?: number | bigint;
1513
1513
  /**
1514
1514
  * Maximum value to enforce for new documents.
1515
1515
  */
1516
- max?: number;
1516
+ max?: number | bigint;
1517
1517
  /**
1518
1518
  * Default value for column when not provided. Cannot be set when column is required.
1519
1519
  */
1520
- default?: number;
1520
+ default?: number | bigint;
1521
1521
  };
1522
1522
  /**
1523
1523
  * ColumnFloat
@@ -1558,15 +1558,15 @@ export declare namespace Models {
1558
1558
  /**
1559
1559
  * Minimum value to enforce for new documents.
1560
1560
  */
1561
- min?: number;
1561
+ min?: number | bigint;
1562
1562
  /**
1563
1563
  * Maximum value to enforce for new documents.
1564
1564
  */
1565
- max?: number;
1565
+ max?: number | bigint;
1566
1566
  /**
1567
1567
  * Default value for column when not provided. Cannot be set when column is required.
1568
1568
  */
1569
- default?: number;
1569
+ default?: number | bigint;
1570
1570
  };
1571
1571
  /**
1572
1572
  * ColumnBoolean
@@ -2061,7 +2061,7 @@ export declare namespace Models {
2061
2061
  /**
2062
2062
  * Index attributes length.
2063
2063
  */
2064
- lengths: number[];
2064
+ lengths: number | bigint[];
2065
2065
  /**
2066
2066
  * Index orders.
2067
2067
  */
@@ -2106,7 +2106,7 @@ export declare namespace Models {
2106
2106
  /**
2107
2107
  * Index columns length.
2108
2108
  */
2109
- lengths: number[];
2109
+ lengths: number | bigint[];
2110
2110
  /**
2111
2111
  * Index orders.
2112
2112
  */
@@ -2123,7 +2123,7 @@ export declare namespace Models {
2123
2123
  /**
2124
2124
  * Row automatically incrementing ID.
2125
2125
  */
2126
- $sequence: number;
2126
+ $sequence: number | bigint;
2127
2127
  /**
2128
2128
  * Table ID.
2129
2129
  */
@@ -2160,7 +2160,7 @@ export declare namespace Models {
2160
2160
  /**
2161
2161
  * Document automatically incrementing ID.
2162
2162
  */
2163
- $sequence: number;
2163
+ $sequence: number | bigint;
2164
2164
  /**
2165
2165
  * Collection ID.
2166
2166
  */
@@ -2403,19 +2403,19 @@ export declare namespace Models {
2403
2403
  /**
2404
2404
  * CPU complexity of computed hash.
2405
2405
  */
2406
- costCpu: number;
2406
+ costCpu: number | bigint;
2407
2407
  /**
2408
2408
  * Memory complexity of computed hash.
2409
2409
  */
2410
- costMemory: number;
2410
+ costMemory: number | bigint;
2411
2411
  /**
2412
2412
  * Parallelization of computed hash.
2413
2413
  */
2414
- costParallel: number;
2414
+ costParallel: number | bigint;
2415
2415
  /**
2416
2416
  * Length used to compute hash.
2417
2417
  */
2418
- length: number;
2418
+ length: number | bigint;
2419
2419
  };
2420
2420
  /**
2421
2421
  * AlgoScryptModified
@@ -2449,15 +2449,15 @@ export declare namespace Models {
2449
2449
  /**
2450
2450
  * Memory used to compute hash.
2451
2451
  */
2452
- memoryCost: number;
2452
+ memoryCost: number | bigint;
2453
2453
  /**
2454
2454
  * Amount of time consumed to compute hash
2455
2455
  */
2456
- timeCost: number;
2456
+ timeCost: number | bigint;
2457
2457
  /**
2458
2458
  * Number of threads used to compute hash.
2459
2459
  */
2460
- threads: number;
2460
+ threads: number | bigint;
2461
2461
  };
2462
2462
  /**
2463
2463
  * Preferences
@@ -2756,15 +2756,15 @@ export declare namespace Models {
2756
2756
  /**
2757
2757
  * File original size in bytes.
2758
2758
  */
2759
- sizeOriginal: number;
2759
+ sizeOriginal: number | bigint;
2760
2760
  /**
2761
2761
  * Total number of chunks available
2762
2762
  */
2763
- chunksTotal: number;
2763
+ chunksTotal: number | bigint;
2764
2764
  /**
2765
2765
  * Total number of chunks uploaded
2766
2766
  */
2767
- chunksUploaded: number;
2767
+ chunksUploaded: number | bigint;
2768
2768
  };
2769
2769
  /**
2770
2770
  * Bucket
@@ -2801,13 +2801,13 @@ export declare namespace Models {
2801
2801
  /**
2802
2802
  * Maximum file size supported.
2803
2803
  */
2804
- maximumFileSize: number;
2804
+ maximumFileSize: number | bigint;
2805
2805
  /**
2806
2806
  * Allowed file extensions.
2807
2807
  */
2808
2808
  allowedFileExtensions: string[];
2809
2809
  /**
2810
- * Compression algorithm choosen for compression. Will be one of none, [gzip](https://en.wikipedia.org/wiki/Gzip), or [zstd](https://en.wikipedia.org/wiki/Zstd).
2810
+ * Compression algorithm chosen for compression. Will be one of none, [gzip](https://en.wikipedia.org/wiki/Gzip), or [zstd](https://en.wikipedia.org/wiki/Zstd).
2811
2811
  */
2812
2812
  compression: string;
2813
2813
  /**
@@ -2822,6 +2822,10 @@ export declare namespace Models {
2822
2822
  * Image transformations are enabled.
2823
2823
  */
2824
2824
  transformations: boolean;
2825
+ /**
2826
+ * Total size of this bucket in bytes.
2827
+ */
2828
+ totalSize: number | bigint;
2825
2829
  };
2826
2830
  /**
2827
2831
  * ResourceToken
@@ -2879,7 +2883,7 @@ export declare namespace Models {
2879
2883
  /**
2880
2884
  * Total number of team members.
2881
2885
  */
2882
- total: number;
2886
+ total: number | bigint;
2883
2887
  /**
2884
2888
  * Team preferences as a key-value object
2885
2889
  */
@@ -3013,7 +3017,7 @@ export declare namespace Models {
3013
3017
  /**
3014
3018
  * Site request timeout in seconds.
3015
3019
  */
3016
- timeout: number;
3020
+ timeout: number | bigint;
3017
3021
  /**
3018
3022
  * The install command used to install the site dependencies.
3019
3023
  */
@@ -3240,7 +3244,7 @@ export declare namespace Models {
3240
3244
  /**
3241
3245
  * Function execution timeout in seconds.
3242
3246
  */
3243
- timeout: number;
3247
+ timeout: number | bigint;
3244
3248
  /**
3245
3249
  * The entrypoint file used to execute the deployment.
3246
3250
  */
@@ -3313,7 +3317,7 @@ export declare namespace Models {
3313
3317
  /**
3314
3318
  * Function execution timeout in seconds.
3315
3319
  */
3316
- timeout: number;
3320
+ timeout: number | bigint;
3317
3321
  /**
3318
3322
  * Function use cases.
3319
3323
  */
@@ -3619,7 +3623,7 @@ export declare namespace Models {
3619
3623
  /**
3620
3624
  * Content size in bytes. Only files have size, and for directories, 0 is returned.
3621
3625
  */
3622
- size?: number;
3626
+ size?: number | bigint;
3623
3627
  /**
3624
3628
  * If a content is a directory. Directories can be used to check nested contents.
3625
3629
  */
@@ -3760,15 +3764,15 @@ export declare namespace Models {
3760
3764
  /**
3761
3765
  * The code size in bytes.
3762
3766
  */
3763
- sourceSize: number;
3767
+ sourceSize: number | bigint;
3764
3768
  /**
3765
3769
  * The build output size in bytes.
3766
3770
  */
3767
- buildSize: number;
3771
+ buildSize: number | bigint;
3768
3772
  /**
3769
3773
  * The total size in bytes (source and build output).
3770
3774
  */
3771
- totalSize: number;
3775
+ totalSize: number | bigint;
3772
3776
  /**
3773
3777
  * The current build ID.
3774
3778
  */
@@ -3796,7 +3800,7 @@ export declare namespace Models {
3796
3800
  /**
3797
3801
  * The current build time in seconds.
3798
3802
  */
3799
- buildDuration: number;
3803
+ buildDuration: number | bigint;
3800
3804
  /**
3801
3805
  * The name of the vcs provider repository
3802
3806
  */
@@ -3889,7 +3893,7 @@ export declare namespace Models {
3889
3893
  /**
3890
3894
  * HTTP response status code.
3891
3895
  */
3892
- responseStatusCode: number;
3896
+ responseStatusCode: number | bigint;
3893
3897
  /**
3894
3898
  * HTTP response body. This will return empty unless execution is created as synchronous.
3895
3899
  */
@@ -3909,7 +3913,7 @@ export declare namespace Models {
3909
3913
  /**
3910
3914
  * Resource(function/site) execution duration in seconds.
3911
3915
  */
3912
- duration: number;
3916
+ duration: number | bigint;
3913
3917
  /**
3914
3918
  * The scheduled time for execution. If left empty, execution will be queued immediately.
3915
3919
  */
@@ -3978,19 +3982,19 @@ export declare namespace Models {
3978
3982
  /**
3979
3983
  * Session duration in seconds.
3980
3984
  */
3981
- authDuration: number;
3985
+ authDuration: number | bigint;
3982
3986
  /**
3983
3987
  * Max users allowed. 0 is unlimited.
3984
3988
  */
3985
- authLimit: number;
3989
+ authLimit: number | bigint;
3986
3990
  /**
3987
3991
  * Max sessions allowed per user. 100 maximum.
3988
3992
  */
3989
- authSessionsLimit: number;
3993
+ authSessionsLimit: number | bigint;
3990
3994
  /**
3991
3995
  * Max allowed passwords in the history list per user. Max passwords limit allowed in history is 20. Use 0 for disabling password history.
3992
3996
  */
3993
- authPasswordHistory: number;
3997
+ authPasswordHistory: number | bigint;
3994
3998
  /**
3995
3999
  * Whether or not to check user's password against most commonly used passwords.
3996
4000
  */
@@ -4066,7 +4070,7 @@ export declare namespace Models {
4066
4070
  /**
4067
4071
  * SMTP server port
4068
4072
  */
4069
- smtpPort: number;
4073
+ smtpPort: number | bigint;
4070
4074
  /**
4071
4075
  * SMTP server username
4072
4076
  */
@@ -4082,11 +4086,15 @@ export declare namespace Models {
4082
4086
  /**
4083
4087
  * Number of times the ping was received for this project.
4084
4088
  */
4085
- pingCount: number;
4089
+ pingCount: number | bigint;
4086
4090
  /**
4087
4091
  * Last ping datetime in ISO 8601 format.
4088
4092
  */
4089
4093
  pingedAt: string;
4094
+ /**
4095
+ * Labels for the project.
4096
+ */
4097
+ labels: string[];
4090
4098
  /**
4091
4099
  * Email/Password auth method status
4092
4100
  */
@@ -4239,7 +4247,7 @@ export declare namespace Models {
4239
4247
  /**
4240
4248
  * Number of consecutive failed webhook attempts.
4241
4249
  */
4242
- attempts: number;
4250
+ attempts: number | bigint;
4243
4251
  };
4244
4252
  /**
4245
4253
  * Key
@@ -4501,11 +4509,11 @@ export declare namespace Models {
4501
4509
  /**
4502
4510
  * Number of decimal digits.
4503
4511
  */
4504
- decimalDigits: number;
4512
+ decimalDigits: number | bigint;
4505
4513
  /**
4506
4514
  * Currency digit rounding.
4507
4515
  */
4508
- rounding: number;
4516
+ rounding: number | bigint;
4509
4517
  /**
4510
4518
  * Currency code in [ISO 4217-1](http://en.wikipedia.org/wiki/ISO_4217) three-character format.
4511
4519
  */
@@ -4552,7 +4560,7 @@ export declare namespace Models {
4552
4560
  /**
4553
4561
  * Amount of actions in the queue.
4554
4562
  */
4555
- size: number;
4563
+ size: number | bigint;
4556
4564
  };
4557
4565
  /**
4558
4566
  * Health Status
@@ -4565,7 +4573,7 @@ export declare namespace Models {
4565
4573
  /**
4566
4574
  * Duration in milliseconds how long the health check took.
4567
4575
  */
4568
- ping: number;
4576
+ ping: number | bigint;
4569
4577
  /**
4570
4578
  * Service status. Possible values are: `pass`, `fail`
4571
4579
  */
@@ -4607,15 +4615,15 @@ export declare namespace Models {
4607
4615
  /**
4608
4616
  * Current unix timestamp on trustful remote server.
4609
4617
  */
4610
- remoteTime: number;
4618
+ remoteTime: number | bigint;
4611
4619
  /**
4612
4620
  * Current unix timestamp of local server where Appwrite runs.
4613
4621
  */
4614
- localTime: number;
4622
+ localTime: number | bigint;
4615
4623
  /**
4616
4624
  * Difference of unix remote and local timestamps in milliseconds.
4617
4625
  */
4618
- diff: number;
4626
+ diff: number | bigint;
4619
4627
  };
4620
4628
  /**
4621
4629
  * Metric
@@ -4624,7 +4632,7 @@ export declare namespace Models {
4624
4632
  /**
4625
4633
  * The value of this metric at the timestamp.
4626
4634
  */
4627
- value: number;
4635
+ value: number | bigint;
4628
4636
  /**
4629
4637
  * The date at which this metric was aggregated in ISO 8601 format.
4630
4638
  */
@@ -4645,11 +4653,11 @@ export declare namespace Models {
4645
4653
  /**
4646
4654
  * The value of this metric at the timestamp.
4647
4655
  */
4648
- value: number;
4656
+ value: number | bigint;
4649
4657
  /**
4650
4658
  * The estimated value of this metric at the end of the period.
4651
4659
  */
4652
- estimate?: number;
4660
+ estimate?: number | bigint;
4653
4661
  };
4654
4662
  /**
4655
4663
  * UsageDatabases
@@ -4662,35 +4670,35 @@ export declare namespace Models {
4662
4670
  /**
4663
4671
  * Total aggregated number of databases.
4664
4672
  */
4665
- databasesTotal: number;
4673
+ databasesTotal: number | bigint;
4666
4674
  /**
4667
4675
  * Total aggregated number of collections.
4668
4676
  */
4669
- collectionsTotal: number;
4677
+ collectionsTotal: number | bigint;
4670
4678
  /**
4671
4679
  * Total aggregated number of tables.
4672
4680
  */
4673
- tablesTotal: number;
4681
+ tablesTotal: number | bigint;
4674
4682
  /**
4675
4683
  * Total aggregated number of documents.
4676
4684
  */
4677
- documentsTotal: number;
4685
+ documentsTotal: number | bigint;
4678
4686
  /**
4679
4687
  * Total aggregated number of rows.
4680
4688
  */
4681
- rowsTotal: number;
4689
+ rowsTotal: number | bigint;
4682
4690
  /**
4683
4691
  * Total aggregated number of total databases storage in bytes.
4684
4692
  */
4685
- storageTotal: number;
4693
+ storageTotal: number | bigint;
4686
4694
  /**
4687
4695
  * Total number of databases reads.
4688
4696
  */
4689
- databasesReadsTotal: number;
4697
+ databasesReadsTotal: number | bigint;
4690
4698
  /**
4691
4699
  * Total number of databases writes.
4692
4700
  */
4693
- databasesWritesTotal: number;
4701
+ databasesWritesTotal: number | bigint;
4694
4702
  /**
4695
4703
  * Aggregated number of databases per period.
4696
4704
  */
@@ -4735,31 +4743,31 @@ export declare namespace Models {
4735
4743
  /**
4736
4744
  * Total aggregated number of collections.
4737
4745
  */
4738
- collectionsTotal: number;
4746
+ collectionsTotal: number | bigint;
4739
4747
  /**
4740
4748
  * Total aggregated number of tables.
4741
4749
  */
4742
- tablesTotal: number;
4750
+ tablesTotal: number | bigint;
4743
4751
  /**
4744
4752
  * Total aggregated number of documents.
4745
4753
  */
4746
- documentsTotal: number;
4754
+ documentsTotal: number | bigint;
4747
4755
  /**
4748
4756
  * Total aggregated number of rows.
4749
4757
  */
4750
- rowsTotal: number;
4758
+ rowsTotal: number | bigint;
4751
4759
  /**
4752
4760
  * Total aggregated number of total storage used in bytes.
4753
4761
  */
4754
- storageTotal: number;
4762
+ storageTotal: number | bigint;
4755
4763
  /**
4756
4764
  * Total number of databases reads.
4757
4765
  */
4758
- databaseReadsTotal: number;
4766
+ databaseReadsTotal: number | bigint;
4759
4767
  /**
4760
4768
  * Total number of databases writes.
4761
4769
  */
4762
- databaseWritesTotal: number;
4770
+ databaseWritesTotal: number | bigint;
4763
4771
  /**
4764
4772
  * Aggregated number of collections per period.
4765
4773
  */
@@ -4800,7 +4808,7 @@ export declare namespace Models {
4800
4808
  /**
4801
4809
  * Total aggregated number of of rows.
4802
4810
  */
4803
- rowsTotal: number;
4811
+ rowsTotal: number | bigint;
4804
4812
  /**
4805
4813
  * Aggregated number of rows per period.
4806
4814
  */
@@ -4817,7 +4825,7 @@ export declare namespace Models {
4817
4825
  /**
4818
4826
  * Total aggregated number of of documents.
4819
4827
  */
4820
- documentsTotal: number;
4828
+ documentsTotal: number | bigint;
4821
4829
  /**
4822
4830
  * Aggregated number of documents per period.
4823
4831
  */
@@ -4834,11 +4842,11 @@ export declare namespace Models {
4834
4842
  /**
4835
4843
  * Total aggregated number of statistics of users.
4836
4844
  */
4837
- usersTotal: number;
4845
+ usersTotal: number | bigint;
4838
4846
  /**
4839
4847
  * Total aggregated number of active sessions.
4840
4848
  */
4841
- sessionsTotal: number;
4849
+ sessionsTotal: number | bigint;
4842
4850
  /**
4843
4851
  * Aggregated number of users per period.
4844
4852
  */
@@ -4859,15 +4867,15 @@ export declare namespace Models {
4859
4867
  /**
4860
4868
  * Total aggregated number of buckets
4861
4869
  */
4862
- bucketsTotal: number;
4870
+ bucketsTotal: number | bigint;
4863
4871
  /**
4864
4872
  * Total aggregated number of files.
4865
4873
  */
4866
- filesTotal: number;
4874
+ filesTotal: number | bigint;
4867
4875
  /**
4868
4876
  * Total aggregated number of files storage (in bytes).
4869
4877
  */
4870
- filesStorageTotal: number;
4878
+ filesStorageTotal: number | bigint;
4871
4879
  /**
4872
4880
  * Aggregated number of buckets per period.
4873
4881
  */
@@ -4892,11 +4900,11 @@ export declare namespace Models {
4892
4900
  /**
4893
4901
  * Total aggregated number of bucket files.
4894
4902
  */
4895
- filesTotal: number;
4903
+ filesTotal: number | bigint;
4896
4904
  /**
4897
4905
  * Total aggregated number of bucket files storage (in bytes).
4898
4906
  */
4899
- filesStorageTotal: number;
4907
+ filesStorageTotal: number | bigint;
4900
4908
  /**
4901
4909
  * Aggregated number of bucket files per period.
4902
4910
  */
@@ -4912,7 +4920,7 @@ export declare namespace Models {
4912
4920
  /**
4913
4921
  * Total aggregated number of files transformations.
4914
4922
  */
4915
- imageTransformationsTotal: number;
4923
+ imageTransformationsTotal: number | bigint;
4916
4924
  };
4917
4925
  /**
4918
4926
  * UsageFunctions
@@ -4925,43 +4933,43 @@ export declare namespace Models {
4925
4933
  /**
4926
4934
  * Total aggregated number of functions.
4927
4935
  */
4928
- functionsTotal: number;
4936
+ functionsTotal: number | bigint;
4929
4937
  /**
4930
4938
  * Total aggregated number of functions deployments.
4931
4939
  */
4932
- deploymentsTotal: number;
4940
+ deploymentsTotal: number | bigint;
4933
4941
  /**
4934
4942
  * Total aggregated sum of functions deployment storage.
4935
4943
  */
4936
- deploymentsStorageTotal: number;
4944
+ deploymentsStorageTotal: number | bigint;
4937
4945
  /**
4938
4946
  * Total aggregated number of functions build.
4939
4947
  */
4940
- buildsTotal: number;
4948
+ buildsTotal: number | bigint;
4941
4949
  /**
4942
4950
  * total aggregated sum of functions build storage.
4943
4951
  */
4944
- buildsStorageTotal: number;
4952
+ buildsStorageTotal: number | bigint;
4945
4953
  /**
4946
4954
  * Total aggregated sum of functions build compute time.
4947
4955
  */
4948
- buildsTimeTotal: number;
4956
+ buildsTimeTotal: number | bigint;
4949
4957
  /**
4950
4958
  * Total aggregated sum of functions build mbSeconds.
4951
4959
  */
4952
- buildsMbSecondsTotal: number;
4960
+ buildsMbSecondsTotal: number | bigint;
4953
4961
  /**
4954
4962
  * Total aggregated number of functions execution.
4955
4963
  */
4956
- executionsTotal: number;
4964
+ executionsTotal: number | bigint;
4957
4965
  /**
4958
4966
  * Total aggregated sum of functions execution compute time.
4959
4967
  */
4960
- executionsTimeTotal: number;
4968
+ executionsTimeTotal: number | bigint;
4961
4969
  /**
4962
4970
  * Total aggregated sum of functions execution mbSeconds.
4963
4971
  */
4964
- executionsMbSecondsTotal: number;
4972
+ executionsMbSecondsTotal: number | bigint;
4965
4973
  /**
4966
4974
  * Aggregated number of functions per period.
4967
4975
  */
@@ -4977,11 +4985,11 @@ export declare namespace Models {
4977
4985
  /**
4978
4986
  * Total aggregated number of successful function builds.
4979
4987
  */
4980
- buildsSuccessTotal: number;
4988
+ buildsSuccessTotal: number | bigint;
4981
4989
  /**
4982
4990
  * Total aggregated number of failed function builds.
4983
4991
  */
4984
- buildsFailedTotal: number;
4992
+ buildsFailedTotal: number | bigint;
4985
4993
  /**
4986
4994
  * Aggregated number of functions build per period.
4987
4995
  */
@@ -5030,51 +5038,51 @@ export declare namespace Models {
5030
5038
  /**
5031
5039
  * Total aggregated number of function deployments.
5032
5040
  */
5033
- deploymentsTotal: number;
5041
+ deploymentsTotal: number | bigint;
5034
5042
  /**
5035
5043
  * Total aggregated sum of function deployments storage.
5036
5044
  */
5037
- deploymentsStorageTotal: number;
5045
+ deploymentsStorageTotal: number | bigint;
5038
5046
  /**
5039
5047
  * Total aggregated number of function builds.
5040
5048
  */
5041
- buildsTotal: number;
5049
+ buildsTotal: number | bigint;
5042
5050
  /**
5043
5051
  * Total aggregated number of successful function builds.
5044
5052
  */
5045
- buildsSuccessTotal: number;
5053
+ buildsSuccessTotal: number | bigint;
5046
5054
  /**
5047
5055
  * Total aggregated number of failed function builds.
5048
5056
  */
5049
- buildsFailedTotal: number;
5057
+ buildsFailedTotal: number | bigint;
5050
5058
  /**
5051
5059
  * total aggregated sum of function builds storage.
5052
5060
  */
5053
- buildsStorageTotal: number;
5061
+ buildsStorageTotal: number | bigint;
5054
5062
  /**
5055
5063
  * Total aggregated sum of function builds compute time.
5056
5064
  */
5057
- buildsTimeTotal: number;
5065
+ buildsTimeTotal: number | bigint;
5058
5066
  /**
5059
5067
  * Average builds compute time.
5060
5068
  */
5061
- buildsTimeAverage: number;
5069
+ buildsTimeAverage: number | bigint;
5062
5070
  /**
5063
5071
  * Total aggregated sum of function builds mbSeconds.
5064
5072
  */
5065
- buildsMbSecondsTotal: number;
5073
+ buildsMbSecondsTotal: number | bigint;
5066
5074
  /**
5067
5075
  * Total aggregated number of function executions.
5068
5076
  */
5069
- executionsTotal: number;
5077
+ executionsTotal: number | bigint;
5070
5078
  /**
5071
5079
  * Total aggregated sum of function executions compute time.
5072
5080
  */
5073
- executionsTimeTotal: number;
5081
+ executionsTimeTotal: number | bigint;
5074
5082
  /**
5075
5083
  * Total aggregated sum of function executions mbSeconds.
5076
5084
  */
5077
- executionsMbSecondsTotal: number;
5085
+ executionsMbSecondsTotal: number | bigint;
5078
5086
  /**
5079
5087
  * Aggregated number of function deployments per period.
5080
5088
  */
@@ -5129,125 +5137,125 @@ export declare namespace Models {
5129
5137
  */
5130
5138
  range: string;
5131
5139
  /**
5132
- * Total aggregated number of functions deployments.
5140
+ * Total aggregated number of sites.
5133
5141
  */
5134
- deploymentsTotal: number;
5142
+ sitesTotal: number | bigint;
5135
5143
  /**
5136
- * Total aggregated sum of functions deployment storage.
5144
+ * Aggregated number of sites per period.
5137
5145
  */
5138
- deploymentsStorageTotal: number;
5146
+ sites: Metric[];
5139
5147
  /**
5140
- * Total aggregated number of functions build.
5148
+ * Total aggregated number of sites deployments.
5141
5149
  */
5142
- buildsTotal: number;
5150
+ deploymentsTotal: number | bigint;
5143
5151
  /**
5144
- * total aggregated sum of functions build storage.
5152
+ * Total aggregated sum of sites deployment storage.
5145
5153
  */
5146
- buildsStorageTotal: number;
5154
+ deploymentsStorageTotal: number | bigint;
5147
5155
  /**
5148
- * Total aggregated sum of functions build compute time.
5156
+ * Total aggregated number of sites build.
5149
5157
  */
5150
- buildsTimeTotal: number;
5158
+ buildsTotal: number | bigint;
5151
5159
  /**
5152
- * Total aggregated sum of functions build mbSeconds.
5160
+ * total aggregated sum of sites build storage.
5153
5161
  */
5154
- buildsMbSecondsTotal: number;
5162
+ buildsStorageTotal: number | bigint;
5155
5163
  /**
5156
- * Total aggregated number of functions execution.
5164
+ * Total aggregated sum of sites build compute time.
5157
5165
  */
5158
- executionsTotal: number;
5166
+ buildsTimeTotal: number | bigint;
5159
5167
  /**
5160
- * Total aggregated sum of functions execution compute time.
5168
+ * Total aggregated sum of sites build mbSeconds.
5161
5169
  */
5162
- executionsTimeTotal: number;
5170
+ buildsMbSecondsTotal: number | bigint;
5163
5171
  /**
5164
- * Total aggregated sum of functions execution mbSeconds.
5172
+ * Total aggregated number of sites execution.
5165
5173
  */
5166
- executionsMbSecondsTotal: number;
5174
+ executionsTotal: number | bigint;
5167
5175
  /**
5168
- * Aggregated number of functions deployment per period.
5176
+ * Total aggregated sum of sites execution compute time.
5169
5177
  */
5170
- deployments: Metric[];
5178
+ executionsTimeTotal: number | bigint;
5171
5179
  /**
5172
- * Aggregated number of functions deployment storage per period.
5180
+ * Total aggregated sum of sites execution mbSeconds.
5173
5181
  */
5174
- deploymentsStorage: Metric[];
5182
+ executionsMbSecondsTotal: number | bigint;
5175
5183
  /**
5176
- * Total aggregated number of successful function builds.
5184
+ * Total aggregated number of requests.
5177
5185
  */
5178
- buildsSuccessTotal: number;
5186
+ requestsTotal: number | bigint;
5179
5187
  /**
5180
- * Total aggregated number of failed function builds.
5188
+ * Aggregated number of requests per period.
5181
5189
  */
5182
- buildsFailedTotal: number;
5190
+ requests: Metric[];
5183
5191
  /**
5184
- * Aggregated number of functions build per period.
5192
+ * Total aggregated inbound bandwidth.
5185
5193
  */
5186
- builds: Metric[];
5194
+ inboundTotal: number | bigint;
5187
5195
  /**
5188
- * Aggregated sum of functions build storage per period.
5196
+ * Aggregated number of inbound bandwidth per period.
5189
5197
  */
5190
- buildsStorage: Metric[];
5198
+ inbound: Metric[];
5191
5199
  /**
5192
- * Aggregated sum of functions build compute time per period.
5200
+ * Total aggregated outbound bandwidth.
5193
5201
  */
5194
- buildsTime: Metric[];
5202
+ outboundTotal: number | bigint;
5195
5203
  /**
5196
- * Aggregated sum of functions build mbSeconds per period.
5204
+ * Aggregated number of outbound bandwidth per period.
5197
5205
  */
5198
- buildsMbSeconds: Metric[];
5206
+ outbound: Metric[];
5199
5207
  /**
5200
- * Aggregated number of functions execution per period.
5208
+ * Aggregated number of sites deployment per period.
5201
5209
  */
5202
- executions: Metric[];
5210
+ deployments: Metric[];
5203
5211
  /**
5204
- * Aggregated number of functions execution compute time per period.
5212
+ * Aggregated number of sites deployment storage per period.
5205
5213
  */
5206
- executionsTime: Metric[];
5214
+ deploymentsStorage: Metric[];
5207
5215
  /**
5208
- * Aggregated number of functions mbSeconds per period.
5216
+ * Total aggregated number of successful site builds.
5209
5217
  */
5210
- executionsMbSeconds: Metric[];
5218
+ buildsSuccessTotal: number | bigint;
5211
5219
  /**
5212
- * Aggregated number of successful function builds per period.
5220
+ * Total aggregated number of failed site builds.
5213
5221
  */
5214
- buildsSuccess: Metric[];
5222
+ buildsFailedTotal: number | bigint;
5215
5223
  /**
5216
- * Aggregated number of failed function builds per period.
5224
+ * Aggregated number of sites build per period.
5217
5225
  */
5218
- buildsFailed: Metric[];
5226
+ builds: Metric[];
5219
5227
  /**
5220
- * Total aggregated number of sites.
5228
+ * Aggregated sum of sites build storage per period.
5221
5229
  */
5222
- sitesTotal: number;
5230
+ buildsStorage: Metric[];
5223
5231
  /**
5224
- * Aggregated number of sites per period.
5232
+ * Aggregated sum of sites build compute time per period.
5225
5233
  */
5226
- sites: Metric[];
5234
+ buildsTime: Metric[];
5227
5235
  /**
5228
- * Total aggregated number of requests.
5236
+ * Aggregated sum of sites build mbSeconds per period.
5229
5237
  */
5230
- requestsTotal: number;
5238
+ buildsMbSeconds: Metric[];
5231
5239
  /**
5232
- * Aggregated number of requests per period.
5240
+ * Aggregated number of sites execution per period.
5233
5241
  */
5234
- requests: Metric[];
5242
+ executions: Metric[];
5235
5243
  /**
5236
- * Total aggregated inbound bandwidth.
5244
+ * Aggregated number of sites execution compute time per period.
5237
5245
  */
5238
- inboundTotal: number;
5246
+ executionsTime: Metric[];
5239
5247
  /**
5240
- * Aggregated number of inbound bandwidth per period.
5248
+ * Aggregated number of sites mbSeconds per period.
5241
5249
  */
5242
- inbound: Metric[];
5250
+ executionsMbSeconds: Metric[];
5243
5251
  /**
5244
- * Total aggregated outbound bandwidth.
5252
+ * Aggregated number of successful site builds per period.
5245
5253
  */
5246
- outboundTotal: number;
5254
+ buildsSuccess: Metric[];
5247
5255
  /**
5248
- * Aggregated number of outbound bandwidth per period.
5256
+ * Aggregated number of failed site builds per period.
5249
5257
  */
5250
- outbound: Metric[];
5258
+ buildsFailed: Metric[];
5251
5259
  };
5252
5260
  /**
5253
5261
  * UsageSite
@@ -5260,51 +5268,51 @@ export declare namespace Models {
5260
5268
  /**
5261
5269
  * Total aggregated number of function deployments.
5262
5270
  */
5263
- deploymentsTotal: number;
5271
+ deploymentsTotal: number | bigint;
5264
5272
  /**
5265
5273
  * Total aggregated sum of function deployments storage.
5266
5274
  */
5267
- deploymentsStorageTotal: number;
5275
+ deploymentsStorageTotal: number | bigint;
5268
5276
  /**
5269
5277
  * Total aggregated number of function builds.
5270
5278
  */
5271
- buildsTotal: number;
5279
+ buildsTotal: number | bigint;
5272
5280
  /**
5273
5281
  * Total aggregated number of successful function builds.
5274
5282
  */
5275
- buildsSuccessTotal: number;
5283
+ buildsSuccessTotal: number | bigint;
5276
5284
  /**
5277
5285
  * Total aggregated number of failed function builds.
5278
5286
  */
5279
- buildsFailedTotal: number;
5287
+ buildsFailedTotal: number | bigint;
5280
5288
  /**
5281
5289
  * total aggregated sum of function builds storage.
5282
5290
  */
5283
- buildsStorageTotal: number;
5291
+ buildsStorageTotal: number | bigint;
5284
5292
  /**
5285
5293
  * Total aggregated sum of function builds compute time.
5286
5294
  */
5287
- buildsTimeTotal: number;
5295
+ buildsTimeTotal: number | bigint;
5288
5296
  /**
5289
5297
  * Average builds compute time.
5290
5298
  */
5291
- buildsTimeAverage: number;
5299
+ buildsTimeAverage: number | bigint;
5292
5300
  /**
5293
5301
  * Total aggregated sum of function builds mbSeconds.
5294
5302
  */
5295
- buildsMbSecondsTotal: number;
5303
+ buildsMbSecondsTotal: number | bigint;
5296
5304
  /**
5297
5305
  * Total aggregated number of function executions.
5298
5306
  */
5299
- executionsTotal: number;
5307
+ executionsTotal: number | bigint;
5300
5308
  /**
5301
5309
  * Total aggregated sum of function executions compute time.
5302
5310
  */
5303
- executionsTimeTotal: number;
5311
+ executionsTimeTotal: number | bigint;
5304
5312
  /**
5305
5313
  * Total aggregated sum of function executions mbSeconds.
5306
5314
  */
5307
- executionsMbSecondsTotal: number;
5315
+ executionsMbSecondsTotal: number | bigint;
5308
5316
  /**
5309
5317
  * Aggregated number of function deployments per period.
5310
5318
  */
@@ -5352,7 +5360,7 @@ export declare namespace Models {
5352
5360
  /**
5353
5361
  * Total aggregated number of requests.
5354
5362
  */
5355
- requestsTotal: number;
5363
+ requestsTotal: number | bigint;
5356
5364
  /**
5357
5365
  * Aggregated number of requests per period.
5358
5366
  */
@@ -5360,7 +5368,7 @@ export declare namespace Models {
5360
5368
  /**
5361
5369
  * Total aggregated inbound bandwidth.
5362
5370
  */
5363
- inboundTotal: number;
5371
+ inboundTotal: number | bigint;
5364
5372
  /**
5365
5373
  * Aggregated number of inbound bandwidth per period.
5366
5374
  */
@@ -5368,7 +5376,7 @@ export declare namespace Models {
5368
5376
  /**
5369
5377
  * Total aggregated outbound bandwidth.
5370
5378
  */
5371
- outboundTotal: number;
5379
+ outboundTotal: number | bigint;
5372
5380
  /**
5373
5381
  * Aggregated number of outbound bandwidth per period.
5374
5382
  */
@@ -5381,63 +5389,63 @@ export declare namespace Models {
5381
5389
  /**
5382
5390
  * Total aggregated number of function executions.
5383
5391
  */
5384
- executionsTotal: number;
5392
+ executionsTotal: number | bigint;
5385
5393
  /**
5386
5394
  * Total aggregated number of documents.
5387
5395
  */
5388
- documentsTotal: number;
5396
+ documentsTotal: number | bigint;
5389
5397
  /**
5390
5398
  * Total aggregated number of rows.
5391
5399
  */
5392
- rowsTotal: number;
5400
+ rowsTotal: number | bigint;
5393
5401
  /**
5394
5402
  * Total aggregated number of databases.
5395
5403
  */
5396
- databasesTotal: number;
5404
+ databasesTotal: number | bigint;
5397
5405
  /**
5398
5406
  * Total aggregated sum of databases storage size (in bytes).
5399
5407
  */
5400
- databasesStorageTotal: number;
5408
+ databasesStorageTotal: number | bigint;
5401
5409
  /**
5402
5410
  * Total aggregated number of users.
5403
5411
  */
5404
- usersTotal: number;
5412
+ usersTotal: number | bigint;
5405
5413
  /**
5406
5414
  * Total aggregated sum of files storage size (in bytes).
5407
5415
  */
5408
- filesStorageTotal: number;
5416
+ filesStorageTotal: number | bigint;
5409
5417
  /**
5410
5418
  * Total aggregated sum of functions storage size (in bytes).
5411
5419
  */
5412
- functionsStorageTotal: number;
5420
+ functionsStorageTotal: number | bigint;
5413
5421
  /**
5414
5422
  * Total aggregated sum of builds storage size (in bytes).
5415
5423
  */
5416
- buildsStorageTotal: number;
5424
+ buildsStorageTotal: number | bigint;
5417
5425
  /**
5418
5426
  * Total aggregated sum of deployments storage size (in bytes).
5419
5427
  */
5420
- deploymentsStorageTotal: number;
5428
+ deploymentsStorageTotal: number | bigint;
5421
5429
  /**
5422
5430
  * Total aggregated number of buckets.
5423
5431
  */
5424
- bucketsTotal: number;
5432
+ bucketsTotal: number | bigint;
5425
5433
  /**
5426
5434
  * Total aggregated number of function executions mbSeconds.
5427
5435
  */
5428
- executionsMbSecondsTotal: number;
5436
+ executionsMbSecondsTotal: number | bigint;
5429
5437
  /**
5430
5438
  * Total aggregated number of function builds mbSeconds.
5431
5439
  */
5432
- buildsMbSecondsTotal: number;
5440
+ buildsMbSecondsTotal: number | bigint;
5433
5441
  /**
5434
5442
  * Aggregated stats for total databases reads.
5435
5443
  */
5436
- databasesReadsTotal: number;
5444
+ databasesReadsTotal: number | bigint;
5437
5445
  /**
5438
5446
  * Aggregated stats for total databases writes.
5439
5447
  */
5440
- databasesWritesTotal: number;
5448
+ databasesWritesTotal: number | bigint;
5441
5449
  /**
5442
5450
  * Aggregated number of requests per period.
5443
5451
  */
@@ -5481,11 +5489,11 @@ export declare namespace Models {
5481
5489
  /**
5482
5490
  * Aggregated stats for total auth phone.
5483
5491
  */
5484
- authPhoneTotal: number;
5492
+ authPhoneTotal: number | bigint;
5485
5493
  /**
5486
5494
  * Aggregated stats for total auth phone estimation.
5487
5495
  */
5488
- authPhoneEstimate: number;
5496
+ authPhoneEstimate: number | bigint;
5489
5497
  /**
5490
5498
  * Aggregated breakdown in totals of phone auth by country.
5491
5499
  */
@@ -5505,15 +5513,15 @@ export declare namespace Models {
5505
5513
  /**
5506
5514
  * Total aggregated number of image transformations.
5507
5515
  */
5508
- imageTransformationsTotal: number;
5516
+ imageTransformationsTotal: number | bigint;
5509
5517
  /**
5510
5518
  * Aggregated stats for total network bandwidth.
5511
5519
  */
5512
- networkTotal: number;
5520
+ networkTotal: number | bigint;
5513
5521
  /**
5514
5522
  * Aggregated stats for total backups storage.
5515
5523
  */
5516
- backupsStorageTotal: number;
5524
+ backupsStorageTotal: number | bigint;
5517
5525
  /**
5518
5526
  * An array of aggregated number of screenshots generated.
5519
5527
  */
@@ -5521,7 +5529,7 @@ export declare namespace Models {
5521
5529
  /**
5522
5530
  * Total aggregated number of screenshots generated.
5523
5531
  */
5524
- screenshotsGeneratedTotal: number;
5532
+ screenshotsGeneratedTotal: number | bigint;
5525
5533
  /**
5526
5534
  * An array of aggregated number of Imagine credits in the given period.
5527
5535
  */
@@ -5529,7 +5537,7 @@ export declare namespace Models {
5529
5537
  /**
5530
5538
  * Total aggregated number of Imagine credits.
5531
5539
  */
5532
- imagineCreditsTotal: number;
5540
+ imagineCreditsTotal: number | bigint;
5533
5541
  };
5534
5542
  /**
5535
5543
  * Headers
@@ -5551,11 +5559,11 @@ export declare namespace Models {
5551
5559
  /**
5552
5560
  * Memory size in MB.
5553
5561
  */
5554
- memory: number;
5562
+ memory: number | bigint;
5555
5563
  /**
5556
5564
  * Number of CPUs.
5557
5565
  */
5558
- cpus: number;
5566
+ cpus: number | bigint;
5559
5567
  /**
5560
5568
  * Is size enabled.
5561
5569
  */
@@ -5600,7 +5608,7 @@ export declare namespace Models {
5600
5608
  /**
5601
5609
  * Status code to apply during redirect. Used if type is "redirect"
5602
5610
  */
5603
- redirectStatusCode: number;
5611
+ redirectStatusCode: number | bigint;
5604
5612
  /**
5605
5613
  * ID of deployment. Used if type is "deployment"
5606
5614
  */
@@ -5695,7 +5703,7 @@ export declare namespace Models {
5695
5703
  /**
5696
5704
  * Maximum build timeout in seconds.
5697
5705
  */
5698
- _APP_COMPUTE_BUILD_TIMEOUT: number;
5706
+ _APP_COMPUTE_BUILD_TIMEOUT: number | bigint;
5699
5707
  /**
5700
5708
  * AAAA target for your Appwrite custom domains.
5701
5709
  */
@@ -5707,11 +5715,11 @@ export declare namespace Models {
5707
5715
  /**
5708
5716
  * Maximum file size allowed for file upload in bytes.
5709
5717
  */
5710
- _APP_STORAGE_LIMIT: number;
5718
+ _APP_STORAGE_LIMIT: number | bigint;
5711
5719
  /**
5712
5720
  * Maximum file size allowed for deployment in bytes.
5713
5721
  */
5714
- _APP_COMPUTE_SIZE_LIMIT: number;
5722
+ _APP_COMPUTE_SIZE_LIMIT: number | bigint;
5715
5723
  /**
5716
5724
  * Defines if usage stats are enabled. This value is set to 'enabled' by default, to disable the usage stats set the value to 'disabled'.
5717
5725
  */
@@ -5897,7 +5905,7 @@ export declare namespace Models {
5897
5905
  /**
5898
5906
  * Number of recipients the message was delivered to.
5899
5907
  */
5900
- deliveredTotal: number;
5908
+ deliveredTotal: number | bigint;
5901
5909
  /**
5902
5910
  * Data of the message.
5903
5911
  */
@@ -5930,15 +5938,15 @@ export declare namespace Models {
5930
5938
  /**
5931
5939
  * Total count of email subscribers subscribed to the topic.
5932
5940
  */
5933
- emailTotal: number;
5941
+ emailTotal: number | bigint;
5934
5942
  /**
5935
5943
  * Total count of SMS subscribers subscribed to the topic.
5936
5944
  */
5937
- smsTotal: number;
5945
+ smsTotal: number | bigint;
5938
5946
  /**
5939
5947
  * Total count of push subscribers subscribed to the topic.
5940
5948
  */
5941
- pushTotal: number;
5949
+ pushTotal: number | bigint;
5942
5950
  /**
5943
5951
  * Subscribe permissions.
5944
5952
  */
@@ -5967,7 +5975,7 @@ export declare namespace Models {
5967
5975
  /**
5968
5976
  * Number of operations in the transaction.
5969
5977
  */
5970
- operations: number;
5978
+ operations: number | bigint;
5971
5979
  /**
5972
5980
  * Expiration time in ISO 8601 format.
5973
5981
  */
@@ -6119,35 +6127,35 @@ export declare namespace Models {
6119
6127
  /**
6120
6128
  * Number of users to be migrated.
6121
6129
  */
6122
- user: number;
6130
+ user: number | bigint;
6123
6131
  /**
6124
6132
  * Number of teams to be migrated.
6125
6133
  */
6126
- team: number;
6134
+ team: number | bigint;
6127
6135
  /**
6128
6136
  * Number of databases to be migrated.
6129
6137
  */
6130
- database: number;
6138
+ database: number | bigint;
6131
6139
  /**
6132
6140
  * Number of rows to be migrated.
6133
6141
  */
6134
- row: number;
6142
+ row: number | bigint;
6135
6143
  /**
6136
6144
  * Number of files to be migrated.
6137
6145
  */
6138
- file: number;
6146
+ file: number | bigint;
6139
6147
  /**
6140
6148
  * Number of buckets to be migrated.
6141
6149
  */
6142
- bucket: number;
6150
+ bucket: number | bigint;
6143
6151
  /**
6144
6152
  * Number of functions to be migrated.
6145
6153
  */
6146
- function: number;
6154
+ function: number | bigint;
6147
6155
  /**
6148
6156
  * Size of files to be migrated in mb.
6149
6157
  */
6150
- size: number;
6158
+ size: number | bigint;
6151
6159
  /**
6152
6160
  * Version of the Appwrite instance to be migrated.
6153
6161
  */
@@ -6172,11 +6180,11 @@ export declare namespace Models {
6172
6180
  /**
6173
6181
  * Price
6174
6182
  */
6175
- price: number;
6183
+ price: number | bigint;
6176
6184
  /**
6177
6185
  * Resource value
6178
6186
  */
6179
- value: number;
6187
+ value: number | bigint;
6180
6188
  /**
6181
6189
  * Description on invoice
6182
6190
  */
@@ -6213,71 +6221,71 @@ export declare namespace Models {
6213
6221
  /**
6214
6222
  * Total storage usage
6215
6223
  */
6216
- usageStorage: number;
6224
+ usageStorage: number | bigint;
6217
6225
  /**
6218
6226
  * Total storage usage with builds storage
6219
6227
  */
6220
- usageTotalStorage: number;
6228
+ usageTotalStorage: number | bigint;
6221
6229
  /**
6222
6230
  * Total files storage usage
6223
6231
  */
6224
- usageFilesStorage: number;
6232
+ usageFilesStorage: number | bigint;
6225
6233
  /**
6226
6234
  * Total deployments storage usage
6227
6235
  */
6228
- usageDeploymentsStorage: number;
6236
+ usageDeploymentsStorage: number | bigint;
6229
6237
  /**
6230
6238
  * Total builds storage usage
6231
6239
  */
6232
- usageBuildsStorage: number;
6240
+ usageBuildsStorage: number | bigint;
6233
6241
  /**
6234
6242
  * Total databases storage usage
6235
6243
  */
6236
- usageDatabasesStorage: number;
6244
+ usageDatabasesStorage: number | bigint;
6237
6245
  /**
6238
6246
  * Total active users for the billing period
6239
6247
  */
6240
- usageUsers: number;
6248
+ usageUsers: number | bigint;
6241
6249
  /**
6242
6250
  * Total number of executions for the billing period
6243
6251
  */
6244
- usageExecutions: number;
6252
+ usageExecutions: number | bigint;
6245
6253
  /**
6246
6254
  * Total bandwidth usage for the billing period
6247
6255
  */
6248
- usageBandwidth: number;
6256
+ usageBandwidth: number | bigint;
6249
6257
  /**
6250
6258
  * Total realtime usage for the billing period
6251
6259
  */
6252
- usageRealtime: number;
6260
+ usageRealtime: number | bigint;
6253
6261
  /**
6254
6262
  * Additional members
6255
6263
  */
6256
- additionalMembers: number;
6264
+ additionalMembers: number | bigint;
6257
6265
  /**
6258
6266
  * Additional members cost
6259
6267
  */
6260
- additionalMemberAmount: number;
6268
+ additionalMemberAmount: number | bigint;
6261
6269
  /**
6262
6270
  * Additional storage usage cost
6263
6271
  */
6264
- additionalStorageAmount: number;
6272
+ additionalStorageAmount: number | bigint;
6265
6273
  /**
6266
6274
  * Additional users usage cost.
6267
6275
  */
6268
- additionalUsersAmount: number;
6276
+ additionalUsersAmount: number | bigint;
6269
6277
  /**
6270
6278
  * Additional executions usage cost
6271
6279
  */
6272
- additionalExecutionsAmount: number;
6280
+ additionalExecutionsAmount: number | bigint;
6273
6281
  /**
6274
6282
  * Additional bandwidth usage cost
6275
6283
  */
6276
- additionalBandwidthAmount: number;
6284
+ additionalBandwidthAmount: number | bigint;
6277
6285
  /**
6278
6286
  * Additional realtime usage cost
6279
6287
  */
6280
- additionalRealtimeAmount: number;
6288
+ additionalRealtimeAmount: number | bigint;
6281
6289
  /**
6282
6290
  * Billing plan
6283
6291
  */
@@ -6285,7 +6293,7 @@ export declare namespace Models {
6285
6293
  /**
6286
6294
  * Aggregated amount
6287
6295
  */
6288
- amount: number;
6296
+ amount: number | bigint;
6289
6297
  /**
6290
6298
  * Aggregation project breakdown
6291
6299
  */
@@ -6314,7 +6322,7 @@ export declare namespace Models {
6314
6322
  /**
6315
6323
  * Aggregated amount
6316
6324
  */
6317
- amount: number;
6325
+ amount: number | bigint;
6318
6326
  /**
6319
6327
  *
6320
6328
  */
@@ -6343,7 +6351,7 @@ export declare namespace Models {
6343
6351
  /**
6344
6352
  * Archive size in bytes.
6345
6353
  */
6346
- size: number;
6354
+ size: number | bigint;
6347
6355
  /**
6348
6356
  * The status of the archive creation. Possible values: pending, processing, uploading, completed, failed.
6349
6357
  */
@@ -6429,119 +6437,119 @@ export declare namespace Models {
6429
6437
  /**
6430
6438
  * Plan order
6431
6439
  */
6432
- order: number;
6440
+ order: number | bigint;
6433
6441
  /**
6434
6442
  * Price
6435
6443
  */
6436
- price: number;
6444
+ price: number | bigint;
6437
6445
  /**
6438
6446
  * Trial days
6439
6447
  */
6440
- trial: number;
6448
+ trial: number | bigint;
6441
6449
  /**
6442
6450
  * Bandwidth
6443
6451
  */
6444
- bandwidth: number;
6452
+ bandwidth: number | bigint;
6445
6453
  /**
6446
6454
  * Storage
6447
6455
  */
6448
- storage: number;
6456
+ storage: number | bigint;
6449
6457
  /**
6450
6458
  * Image Transformations
6451
6459
  */
6452
- imageTransformations: number;
6460
+ imageTransformations: number | bigint;
6453
6461
  /**
6454
6462
  * Members
6455
6463
  */
6456
- members: number;
6464
+ members: number | bigint;
6457
6465
  /**
6458
6466
  * Webhooks
6459
6467
  */
6460
- webhooks: number;
6468
+ webhooks: number | bigint;
6461
6469
  /**
6462
6470
  * Projects
6463
6471
  */
6464
- projects: number;
6472
+ projects: number | bigint;
6465
6473
  /**
6466
6474
  * Platforms
6467
6475
  */
6468
- platforms: number;
6476
+ platforms: number | bigint;
6469
6477
  /**
6470
6478
  * Users
6471
6479
  */
6472
- users: number;
6480
+ users: number | bigint;
6473
6481
  /**
6474
6482
  * Teams
6475
6483
  */
6476
- teams: number;
6484
+ teams: number | bigint;
6477
6485
  /**
6478
6486
  * Databases
6479
6487
  */
6480
- databases: number;
6488
+ databases: number | bigint;
6481
6489
  /**
6482
6490
  * Database reads per month
6483
6491
  */
6484
- databasesReads: number;
6492
+ databasesReads: number | bigint;
6485
6493
  /**
6486
6494
  * Database writes per month
6487
6495
  */
6488
- databasesWrites: number;
6496
+ databasesWrites: number | bigint;
6489
6497
  /**
6490
6498
  * Database batch size limit
6491
6499
  */
6492
- databasesBatchSize: number;
6500
+ databasesBatchSize: number | bigint;
6493
6501
  /**
6494
6502
  * Buckets
6495
6503
  */
6496
- buckets: number;
6504
+ buckets: number | bigint;
6497
6505
  /**
6498
6506
  * File size
6499
6507
  */
6500
- fileSize: number;
6508
+ fileSize: number | bigint;
6501
6509
  /**
6502
6510
  * Functions
6503
6511
  */
6504
- functions: number;
6512
+ functions: number | bigint;
6505
6513
  /**
6506
6514
  * Sites
6507
6515
  */
6508
- sites: number;
6516
+ sites: number | bigint;
6509
6517
  /**
6510
6518
  * Function executions
6511
6519
  */
6512
- executions: number;
6520
+ executions: number | bigint;
6513
6521
  /**
6514
6522
  * GB hours for functions
6515
6523
  */
6516
- GBHours: number;
6524
+ GBHours: number | bigint;
6517
6525
  /**
6518
6526
  * Realtime connections
6519
6527
  */
6520
- realtime: number;
6528
+ realtime: number | bigint;
6521
6529
  /**
6522
6530
  * Messages per month
6523
6531
  */
6524
- messages: number;
6532
+ messages: number | bigint;
6525
6533
  /**
6526
6534
  * Topics for messaging
6527
6535
  */
6528
- topics: number;
6536
+ topics: number | bigint;
6529
6537
  /**
6530
6538
  * SMS authentications per month
6531
6539
  */
6532
- authPhone: number;
6540
+ authPhone: number | bigint;
6533
6541
  /**
6534
6542
  * Custom domains
6535
6543
  */
6536
- domains: number;
6544
+ domains: number | bigint;
6537
6545
  /**
6538
6546
  * Log days
6539
6547
  */
6540
- logs: number;
6548
+ logs: number | bigint;
6541
6549
  /**
6542
6550
  * Alert threshold percentage
6543
6551
  */
6544
- alertLimit: number;
6552
+ alertLimit: number | bigint;
6545
6553
  /**
6546
6554
  * Additional resources
6547
6555
  */
@@ -6609,15 +6617,15 @@ export declare namespace Models {
6609
6617
  /**
6610
6618
  * How many policies does plan support
6611
6619
  */
6612
- backupPolicies: number;
6620
+ backupPolicies: number | bigint;
6613
6621
  /**
6614
6622
  * Maximum function and site deployment size in MB
6615
6623
  */
6616
- deploymentSize: number;
6624
+ deploymentSize: number | bigint;
6617
6625
  /**
6618
6626
  * Maximum function and site deployment size in MB
6619
6627
  */
6620
- buildSize: number;
6628
+ buildSize: number | bigint;
6621
6629
  /**
6622
6630
  * Does the plan support encrypted string attributes or not.
6623
6631
  */
@@ -6659,11 +6667,11 @@ export declare namespace Models {
6659
6667
  /**
6660
6668
  * Addon plan included value
6661
6669
  */
6662
- planIncluded: number;
6670
+ planIncluded: number | bigint;
6663
6671
  /**
6664
6672
  * Addon limit
6665
6673
  */
6666
- limit: number;
6674
+ limit: number | bigint;
6667
6675
  /**
6668
6676
  * Addon type
6669
6677
  */
@@ -6675,11 +6683,11 @@ export declare namespace Models {
6675
6683
  /**
6676
6684
  * Price
6677
6685
  */
6678
- price: number;
6686
+ price: number | bigint;
6679
6687
  /**
6680
6688
  * Resource value
6681
6689
  */
6682
- value: number;
6690
+ value: number | bigint;
6683
6691
  /**
6684
6692
  * Description on invoice
6685
6693
  */
@@ -6692,11 +6700,11 @@ export declare namespace Models {
6692
6700
  /**
6693
6701
  * Credits limit per billing cycle
6694
6702
  */
6695
- credits?: number;
6703
+ credits?: number | bigint;
6696
6704
  /**
6697
6705
  * Daily credits limit (if applicable)
6698
6706
  */
6699
- dailyCredits?: number;
6707
+ dailyCredits?: number | bigint;
6700
6708
  };
6701
6709
  /**
6702
6710
  * BillingLimits
@@ -6705,35 +6713,35 @@ export declare namespace Models {
6705
6713
  /**
6706
6714
  * Bandwidth limit
6707
6715
  */
6708
- bandwidth: number;
6716
+ bandwidth: number | bigint;
6709
6717
  /**
6710
6718
  * Storage limit
6711
6719
  */
6712
- storage: number;
6720
+ storage: number | bigint;
6713
6721
  /**
6714
6722
  * Users limit
6715
6723
  */
6716
- users: number;
6724
+ users: number | bigint;
6717
6725
  /**
6718
6726
  * Executions limit
6719
6727
  */
6720
- executions: number;
6728
+ executions: number | bigint;
6721
6729
  /**
6722
6730
  * GBHours limit
6723
6731
  */
6724
- GBHours: number;
6732
+ GBHours: number | bigint;
6725
6733
  /**
6726
6734
  * Image transformations limit
6727
6735
  */
6728
- imageTransformations: number;
6736
+ imageTransformations: number | bigint;
6729
6737
  /**
6730
6738
  * Auth phone limit
6731
6739
  */
6732
- authPhone: number;
6740
+ authPhone: number | bigint;
6733
6741
  /**
6734
6742
  * Budget limit percentage
6735
6743
  */
6736
- budgetLimit: number;
6744
+ budgetLimit: number | bigint;
6737
6745
  };
6738
6746
  /**
6739
6747
  * Block
@@ -6869,7 +6877,7 @@ export declare namespace Models {
6869
6877
  /**
6870
6878
  * Provided credit amount
6871
6879
  */
6872
- credits: number;
6880
+ credits: number | bigint;
6873
6881
  /**
6874
6882
  * Coupon expiration time in ISO 8601 format.
6875
6883
  */
@@ -6877,7 +6885,7 @@ export declare namespace Models {
6877
6885
  /**
6878
6886
  * Credit validity in days.
6879
6887
  */
6880
- validity: number;
6888
+ validity: number | bigint;
6881
6889
  /**
6882
6890
  * Campaign the coupon is associated with`.
6883
6891
  */
@@ -6926,11 +6934,11 @@ export declare namespace Models {
6926
6934
  /**
6927
6935
  * Provided credit amount
6928
6936
  */
6929
- credits: number;
6937
+ credits: number | bigint;
6930
6938
  /**
6931
6939
  * Provided credit amount
6932
6940
  */
6933
- total: number;
6941
+ total: number | bigint;
6934
6942
  /**
6935
6943
  * Credit expiration time in ISO 8601 format.
6936
6944
  */
@@ -6947,7 +6955,7 @@ export declare namespace Models {
6947
6955
  /**
6948
6956
  * Total available credits for the organization.
6949
6957
  */
6950
- available: number;
6958
+ available: number | bigint;
6951
6959
  };
6952
6960
  /**
6953
6961
  * CreditList
@@ -6960,11 +6968,11 @@ export declare namespace Models {
6960
6968
  /**
6961
6969
  * Total number of credits
6962
6970
  */
6963
- total: number;
6971
+ total: number | bigint;
6964
6972
  /**
6965
6973
  * Total available credit balance in USD
6966
6974
  */
6967
- available: number;
6975
+ available: number | bigint;
6968
6976
  };
6969
6977
  /**
6970
6978
  * Downgrade Feedback
@@ -7050,31 +7058,31 @@ export declare namespace Models {
7050
7058
  /**
7051
7059
  * Invoice Amount
7052
7060
  */
7053
- amount: number;
7061
+ amount: number | bigint;
7054
7062
  /**
7055
7063
  * Tax percentage
7056
7064
  */
7057
- tax: number;
7065
+ tax: number | bigint;
7058
7066
  /**
7059
7067
  * Tax amount
7060
7068
  */
7061
- taxAmount: number;
7069
+ taxAmount: number | bigint;
7062
7070
  /**
7063
7071
  * VAT percentage
7064
7072
  */
7065
- vat: number;
7073
+ vat: number | bigint;
7066
7074
  /**
7067
7075
  * VAT amount
7068
7076
  */
7069
- vatAmount: number;
7077
+ vatAmount: number | bigint;
7070
7078
  /**
7071
7079
  * Gross amount after vat, tax, and discounts applied.
7072
7080
  */
7073
- grossAmount: number;
7081
+ grossAmount: number | bigint;
7074
7082
  /**
7075
7083
  * Credits used.
7076
7084
  */
7077
- creditsUsed: number;
7085
+ creditsUsed: number | bigint;
7078
7086
  /**
7079
7087
  * Currency the invoice is in
7080
7088
  */
@@ -7127,7 +7135,7 @@ export declare namespace Models {
7127
7135
  /**
7128
7136
  * Total number of team members.
7129
7137
  */
7130
- total: number;
7138
+ total: number | bigint;
7131
7139
  /**
7132
7140
  * Team preferences as a key-value object
7133
7141
  */
@@ -7135,11 +7143,11 @@ export declare namespace Models {
7135
7143
  /**
7136
7144
  * Project budget limit
7137
7145
  */
7138
- billingBudget: number;
7146
+ billingBudget: number | bigint;
7139
7147
  /**
7140
7148
  * Project budget limit
7141
7149
  */
7142
- budgetAlerts: number[];
7150
+ budgetAlerts: number | bigint[];
7143
7151
  /**
7144
7152
  * Organization's billing plan ID.
7145
7153
  */
@@ -7175,7 +7183,7 @@ export declare namespace Models {
7175
7183
  /**
7176
7184
  * Number of trial days.
7177
7185
  */
7178
- billingTrialDays: number;
7186
+ billingTrialDays: number | bigint;
7179
7187
  /**
7180
7188
  * Current active aggregation id.
7181
7189
  */
@@ -7309,11 +7317,11 @@ export declare namespace Models {
7309
7317
  /**
7310
7318
  * Expiry month of the payment method.
7311
7319
  */
7312
- expiryMonth: number;
7320
+ expiryMonth: number | bigint;
7313
7321
  /**
7314
7322
  * Expiry year of the payment method.
7315
7323
  */
7316
- expiryYear: number;
7324
+ expiryYear: number | bigint;
7317
7325
  /**
7318
7326
  * Last 4 digit of the payment method
7319
7327
  */
@@ -7394,7 +7402,7 @@ export declare namespace Models {
7394
7402
  /**
7395
7403
  * How many days to keep the backup before it will be automatically deleted.
7396
7404
  */
7397
- retention: number;
7405
+ retention: number | bigint;
7398
7406
  /**
7399
7407
  * Policy backup schedule in CRON format.
7400
7408
  */
@@ -7547,7 +7555,7 @@ export declare namespace Models {
7547
7555
  /**
7548
7556
  * Aggregated stats for total file transformations.
7549
7557
  */
7550
- imageTransformationsTotal: number;
7558
+ imageTransformationsTotal: number | bigint;
7551
7559
  /**
7552
7560
  * Aggregated stats for file transformations.
7553
7561
  */
@@ -7555,7 +7563,7 @@ export declare namespace Models {
7555
7563
  /**
7556
7564
  * Aggregated stats for total file transformations.
7557
7565
  */
7558
- screenshotsGeneratedTotal: number;
7566
+ screenshotsGeneratedTotal: number | bigint;
7559
7567
  /**
7560
7568
  * Aggregated stats for imagine credits.
7561
7569
  */
@@ -7563,63 +7571,63 @@ export declare namespace Models {
7563
7571
  /**
7564
7572
  * Aggregated stats for total imagine credits.
7565
7573
  */
7566
- imagineCreditsTotal: number;
7574
+ imagineCreditsTotal: number | bigint;
7567
7575
  /**
7568
7576
  * Aggregated stats for total users.
7569
7577
  */
7570
- usersTotal: number;
7578
+ usersTotal: number | bigint;
7571
7579
  /**
7572
7580
  * Aggregated stats for total executions.
7573
7581
  */
7574
- executionsTotal: number;
7582
+ executionsTotal: number | bigint;
7575
7583
  /**
7576
7584
  * Aggregated stats for function executions in mb seconds.
7577
7585
  */
7578
- executionsMBSecondsTotal: number;
7586
+ executionsMBSecondsTotal: number | bigint;
7579
7587
  /**
7580
7588
  * Aggregated stats for function builds in mb seconds.
7581
7589
  */
7582
- buildsMBSecondsTotal: number;
7590
+ buildsMBSecondsTotal: number | bigint;
7583
7591
  /**
7584
7592
  * Aggregated stats for total file storage.
7585
7593
  */
7586
- filesStorageTotal: number;
7594
+ filesStorageTotal: number | bigint;
7587
7595
  /**
7588
7596
  * Aggregated stats for total builds storage.
7589
7597
  */
7590
- buildsStorageTotal: number;
7598
+ buildsStorageTotal: number | bigint;
7591
7599
  /**
7592
7600
  * Aggregated stats for total deployments storage.
7593
7601
  */
7594
- deploymentsStorageTotal: number;
7602
+ deploymentsStorageTotal: number | bigint;
7595
7603
  /**
7596
7604
  * Aggregated stats for total databases storage.
7597
7605
  */
7598
- databasesStorageTotal: number;
7606
+ databasesStorageTotal: number | bigint;
7599
7607
  /**
7600
7608
  * Aggregated stats for total databases reads.
7601
7609
  */
7602
- databasesReadsTotal: number;
7610
+ databasesReadsTotal: number | bigint;
7603
7611
  /**
7604
7612
  * Aggregated stats for total databases writes.
7605
7613
  */
7606
- databasesWritesTotal: number;
7614
+ databasesWritesTotal: number | bigint;
7607
7615
  /**
7608
7616
  * Aggregated stats for total backups storage.
7609
7617
  */
7610
- backupsStorageTotal: number;
7618
+ backupsStorageTotal: number | bigint;
7611
7619
  /**
7612
7620
  * Aggregated stats for total storage.
7613
7621
  */
7614
- storageTotal: number;
7622
+ storageTotal: number | bigint;
7615
7623
  /**
7616
7624
  * Aggregated stats for total auth phone.
7617
7625
  */
7618
- authPhoneTotal: number;
7626
+ authPhoneTotal: number | bigint;
7619
7627
  /**
7620
7628
  * Aggregated stats for total auth phone estimation.
7621
7629
  */
7622
- authPhoneEstimate: number;
7630
+ authPhoneEstimate: number | bigint;
7623
7631
  /**
7624
7632
  * Aggregated stats for each projects.
7625
7633
  */
@@ -7644,7 +7652,7 @@ export declare namespace Models {
7644
7652
  /**
7645
7653
  * Aggregated stats for function executions.
7646
7654
  */
7647
- executions: number;
7655
+ executions: number | bigint;
7648
7656
  /**
7649
7657
  * Aggregated stats for database reads.
7650
7658
  */
@@ -7656,31 +7664,31 @@ export declare namespace Models {
7656
7664
  /**
7657
7665
  * Aggregated stats for function executions in mb seconds.
7658
7666
  */
7659
- executionsMBSeconds: number;
7667
+ executionsMBSeconds: number | bigint;
7660
7668
  /**
7661
7669
  * Aggregated stats for function builds in mb seconds.
7662
7670
  */
7663
- buildsMBSeconds: number;
7671
+ buildsMBSeconds: number | bigint;
7664
7672
  /**
7665
7673
  * Aggregated stats for number of documents.
7666
7674
  */
7667
- storage: number;
7675
+ storage: number | bigint;
7668
7676
  /**
7669
7677
  * Aggregated stats for phone authentication.
7670
7678
  */
7671
- authPhoneTotal: number;
7679
+ authPhoneTotal: number | bigint;
7672
7680
  /**
7673
7681
  * Aggregated stats for phone authentication estimated cost.
7674
7682
  */
7675
- authPhoneEstimate: number;
7683
+ authPhoneEstimate: number | bigint;
7676
7684
  /**
7677
7685
  * Aggregated stats for total databases reads.
7678
7686
  */
7679
- databasesReadsTotal: number;
7687
+ databasesReadsTotal: number | bigint;
7680
7688
  /**
7681
7689
  * Aggregated stats for total databases writes.
7682
7690
  */
7683
- databasesWritesTotal: number;
7691
+ databasesWritesTotal: number | bigint;
7684
7692
  /**
7685
7693
  * Aggregated stats for file transformations.
7686
7694
  */
@@ -7688,7 +7696,7 @@ export declare namespace Models {
7688
7696
  /**
7689
7697
  * Aggregated stats for total file transformations.
7690
7698
  */
7691
- imageTransformationsTotal: number;
7699
+ imageTransformationsTotal: number | bigint;
7692
7700
  /**
7693
7701
  * Aggregated stats for file transformations.
7694
7702
  */
@@ -7696,11 +7704,11 @@ export declare namespace Models {
7696
7704
  /**
7697
7705
  * Aggregated stats for total file transformations.
7698
7706
  */
7699
- screenshotsGeneratedTotal: number;
7707
+ screenshotsGeneratedTotal: number | bigint;
7700
7708
  /**
7701
7709
  * Aggregated stats for imagine credits.
7702
7710
  */
7703
- imagineCredits: number;
7711
+ imagineCredits: number | bigint;
7704
7712
  };
7705
7713
  /**
7706
7714
  * Domain
@@ -7745,7 +7753,7 @@ export declare namespace Models {
7745
7753
  /**
7746
7754
  * Renewal price (in USD).
7747
7755
  */
7748
- renewalPrice: number;
7756
+ renewalPrice: number | bigint;
7749
7757
  /**
7750
7758
  * Team ID.
7751
7759
  */
@@ -7786,11 +7794,11 @@ export declare namespace Models {
7786
7794
  /**
7787
7795
  * Time to live (in seconds).
7788
7796
  */
7789
- ttl: number;
7797
+ ttl: number | bigint;
7790
7798
  /**
7791
7799
  * Record priority (commonly used for MX).
7792
7800
  */
7793
- priority: number;
7801
+ priority: number | bigint;
7794
7802
  /**
7795
7803
  * Whether this record is locked (read-only).
7796
7804
  */
@@ -7798,11 +7806,11 @@ export declare namespace Models {
7798
7806
  /**
7799
7807
  * Record weight (used for SRV records).
7800
7808
  */
7801
- weight: number;
7809
+ weight: number | bigint;
7802
7810
  /**
7803
7811
  * Target port (used for SRV records).
7804
7812
  */
7805
- port: number;
7813
+ port: number | bigint;
7806
7814
  /**
7807
7815
  * Comment for the DNS record.
7808
7816
  */
@@ -7819,15 +7827,15 @@ export declare namespace Models {
7819
7827
  /**
7820
7828
  * Invoice value
7821
7829
  */
7822
- value: number;
7830
+ value: number | bigint;
7823
7831
  /**
7824
7832
  * Invoice amount
7825
7833
  */
7826
- amount: number;
7834
+ amount: number | bigint;
7827
7835
  /**
7828
7836
  * Invoice rate
7829
7837
  */
7830
- rate: number;
7838
+ rate: number | bigint;
7831
7839
  /**
7832
7840
  * Invoice description
7833
7841
  */
@@ -7885,19 +7893,19 @@ export declare namespace Models {
7885
7893
  /**
7886
7894
  * Total amount
7887
7895
  */
7888
- amount: number;
7896
+ amount: number | bigint;
7889
7897
  /**
7890
7898
  * Gross payable amount
7891
7899
  */
7892
- grossAmount: number;
7900
+ grossAmount: number | bigint;
7893
7901
  /**
7894
7902
  * Discount amount
7895
7903
  */
7896
- discount: number;
7904
+ discount: number | bigint;
7897
7905
  /**
7898
7906
  * Credits amount
7899
7907
  */
7900
- credits: number;
7908
+ credits: number | bigint;
7901
7909
  /**
7902
7910
  * Estimation items
7903
7911
  */
@@ -7909,7 +7917,7 @@ export declare namespace Models {
7909
7917
  /**
7910
7918
  * Trial days
7911
7919
  */
7912
- trialDays: number;
7920
+ trialDays: number | bigint;
7913
7921
  /**
7914
7922
  * Trial end date
7915
7923
  */
@@ -7922,19 +7930,19 @@ export declare namespace Models {
7922
7930
  /**
7923
7931
  * Total amount
7924
7932
  */
7925
- amount: number;
7933
+ amount: number | bigint;
7926
7934
  /**
7927
7935
  * Gross payable amount
7928
7936
  */
7929
- grossAmount: number;
7937
+ grossAmount: number | bigint;
7930
7938
  /**
7931
7939
  * Discount amount
7932
7940
  */
7933
- discount: number;
7941
+ discount: number | bigint;
7934
7942
  /**
7935
7943
  * Credits amount
7936
7944
  */
7937
- credits: number;
7945
+ credits: number | bigint;
7938
7946
  /**
7939
7947
  * Estimation items
7940
7948
  */
@@ -7946,7 +7954,7 @@ export declare namespace Models {
7946
7954
  /**
7947
7955
  * Trial days
7948
7956
  */
7949
- trialDays: number;
7957
+ trialDays: number | bigint;
7950
7958
  /**
7951
7959
  * Trial end date
7952
7960
  */
@@ -7954,7 +7962,7 @@ export declare namespace Models {
7954
7962
  /**
7955
7963
  * Organization's existing credits
7956
7964
  */
7957
- organizationCredits: number;
7965
+ organizationCredits: number | bigint;
7958
7966
  };
7959
7967
  /**
7960
7968
  * EstimationDeleteOrganization
@@ -7976,7 +7984,7 @@ export declare namespace Models {
7976
7984
  /**
7977
7985
  * Gross payable amount
7978
7986
  */
7979
- value: number;
7987
+ value: number | bigint;
7980
7988
  };
7981
7989
  /**
7982
7990
  * Aggregation team list
@@ -7985,7 +7993,7 @@ export declare namespace Models {
7985
7993
  /**
7986
7994
  * Total number of aggregations that matched your query.
7987
7995
  */
7988
- total: number;
7996
+ total: number | bigint;
7989
7997
  /**
7990
7998
  * List of aggregations.
7991
7999
  */
@@ -7998,7 +8006,7 @@ export declare namespace Models {
7998
8006
  /**
7999
8007
  * Total number of archives that matched your query.
8000
8008
  */
8001
- total: number;
8009
+ total: number | bigint;
8002
8010
  /**
8003
8011
  * List of archives.
8004
8012
  */
@@ -8011,7 +8019,7 @@ export declare namespace Models {
8011
8019
  /**
8012
8020
  * Total number of policies that matched your query.
8013
8021
  */
8014
- total: number;
8022
+ total: number | bigint;
8015
8023
  /**
8016
8024
  * List of policies.
8017
8025
  */
@@ -8024,7 +8032,7 @@ export declare namespace Models {
8024
8032
  /**
8025
8033
  * Total number of restorations that matched your query.
8026
8034
  */
8027
- total: number;
8035
+ total: number | bigint;
8028
8036
  /**
8029
8037
  * List of restorations.
8030
8038
  */
@@ -8037,7 +8045,7 @@ export declare namespace Models {
8037
8045
  /**
8038
8046
  * Total number of invoices that matched your query.
8039
8047
  */
8040
- total: number;
8048
+ total: number | bigint;
8041
8049
  /**
8042
8050
  * List of invoices.
8043
8051
  */
@@ -8050,7 +8058,7 @@ export declare namespace Models {
8050
8058
  /**
8051
8059
  * Total number of billingAddresses that matched your query.
8052
8060
  */
8053
- total: number;
8061
+ total: number | bigint;
8054
8062
  /**
8055
8063
  * List of billingAddresses.
8056
8064
  */
@@ -8063,7 +8071,7 @@ export declare namespace Models {
8063
8071
  /**
8064
8072
  * Total number of plans that matched your query.
8065
8073
  */
8066
- total: number;
8074
+ total: number | bigint;
8067
8075
  /**
8068
8076
  * List of plans.
8069
8077
  */
@@ -8076,7 +8084,7 @@ export declare namespace Models {
8076
8084
  /**
8077
8085
  * Total number of teams that matched your query.
8078
8086
  */
8079
- total: number;
8087
+ total: number | bigint;
8080
8088
  /**
8081
8089
  * List of teams.
8082
8090
  */
@@ -8089,7 +8097,7 @@ export declare namespace Models {
8089
8097
  /**
8090
8098
  * Total number of paymentMethods that matched your query.
8091
8099
  */
8092
- total: number;
8100
+ total: number | bigint;
8093
8101
  /**
8094
8102
  * List of paymentMethods.
8095
8103
  */
@@ -8102,7 +8110,7 @@ export declare namespace Models {
8102
8110
  /**
8103
8111
  * Total number of regions that matched your query.
8104
8112
  */
8105
- total: number;
8113
+ total: number | bigint;
8106
8114
  /**
8107
8115
  * List of regions.
8108
8116
  */
@@ -8115,7 +8123,7 @@ export declare namespace Models {
8115
8123
  /**
8116
8124
  * Total number of domains that matched your query.
8117
8125
  */
8118
- total: number;
8126
+ total: number | bigint;
8119
8127
  /**
8120
8128
  * List of domains.
8121
8129
  */
@@ -8128,7 +8136,7 @@ export declare namespace Models {
8128
8136
  /**
8129
8137
  * Total number of dnsRecords that matched your query.
8130
8138
  */
8131
- total: number;
8139
+ total: number | bigint;
8132
8140
  /**
8133
8141
  * List of dnsRecords.
8134
8142
  */