@appwrite.io/console 0.4.2 → 0.6.0-rc.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 (83) hide show
  1. package/.github/workflows/publish.yml +2 -2
  2. package/LICENSE +1 -1
  3. package/README.md +1 -1
  4. package/dist/cjs/sdk.js +2115 -109
  5. package/dist/cjs/sdk.js.map +1 -1
  6. package/dist/esm/sdk.js +2115 -110
  7. package/dist/esm/sdk.js.map +1 -1
  8. package/dist/iife/sdk.js +2115 -109
  9. package/docs/examples/account/add-authenticator.md +18 -0
  10. package/docs/examples/account/create-challenge.md +18 -0
  11. package/docs/examples/account/list-providers.md +18 -0
  12. package/docs/examples/account/update-challenge.md +18 -0
  13. package/docs/examples/account/update-m-f-a.md +18 -0
  14. package/docs/examples/account/update-recovery.md +1 -1
  15. package/docs/examples/account/verify-authenticator.md +18 -0
  16. package/docs/examples/messaging/create-apns-provider.md +18 -0
  17. package/docs/examples/messaging/create-email-message.md +18 -0
  18. package/docs/examples/messaging/create-fcm-provider.md +18 -0
  19. package/docs/examples/messaging/create-mailgun-provider.md +18 -0
  20. package/docs/examples/messaging/create-msg91provider.md +18 -0
  21. package/docs/examples/messaging/create-push-message.md +18 -0
  22. package/docs/examples/messaging/create-s-m-s-message.md +18 -0
  23. package/docs/examples/messaging/create-sendgrid-provider.md +18 -0
  24. package/docs/examples/messaging/create-subscriber.md +18 -0
  25. package/docs/examples/messaging/create-telesign-provider.md +18 -0
  26. package/docs/examples/messaging/create-textmagic-provider.md +18 -0
  27. package/docs/examples/messaging/create-topic.md +18 -0
  28. package/docs/examples/messaging/create-twilio-provider.md +18 -0
  29. package/docs/examples/messaging/create-vonage-provider.md +18 -0
  30. package/docs/examples/messaging/delete-provider.md +18 -0
  31. package/docs/examples/messaging/delete-subscriber.md +18 -0
  32. package/docs/examples/messaging/delete-topic.md +18 -0
  33. package/docs/examples/messaging/get-message.md +18 -0
  34. package/docs/examples/messaging/get-provider.md +18 -0
  35. package/docs/examples/messaging/get-subscriber.md +18 -0
  36. package/docs/examples/messaging/get-topic.md +18 -0
  37. package/docs/examples/messaging/list-message-logs.md +18 -0
  38. package/docs/examples/messaging/list-messages.md +18 -0
  39. package/docs/examples/messaging/list-provider-logs.md +18 -0
  40. package/docs/examples/messaging/list-providers.md +18 -0
  41. package/docs/examples/messaging/list-subscriber-logs.md +18 -0
  42. package/docs/examples/messaging/list-subscribers.md +18 -0
  43. package/docs/examples/messaging/list-topic-logs.md +18 -0
  44. package/docs/examples/messaging/list-topics.md +18 -0
  45. package/docs/examples/messaging/update-apns-provider.md +18 -0
  46. package/docs/examples/messaging/update-email.md +18 -0
  47. package/docs/examples/messaging/update-fcm-provider.md +18 -0
  48. package/docs/examples/messaging/update-mailgun-provider.md +18 -0
  49. package/docs/examples/messaging/update-msg91provider.md +18 -0
  50. package/docs/examples/messaging/update-push-notification.md +18 -0
  51. package/docs/examples/messaging/update-s-m-s.md +18 -0
  52. package/docs/examples/messaging/update-sendgrid-provider.md +18 -0
  53. package/docs/examples/messaging/update-telesign-provider.md +18 -0
  54. package/docs/examples/messaging/update-textmagic-provider.md +18 -0
  55. package/docs/examples/messaging/update-topic.md +18 -0
  56. package/docs/examples/messaging/update-twilio-provider.md +18 -0
  57. package/docs/examples/messaging/update-vonage-provider.md +18 -0
  58. package/docs/examples/project/get-usage.md +1 -1
  59. package/docs/examples/projects/get-usage.md +18 -0
  60. package/docs/examples/projects/update-auth-mfa-factors.md +18 -0
  61. package/docs/examples/users/create-target.md +18 -0
  62. package/docs/examples/users/delete-target.md +18 -0
  63. package/docs/examples/users/get-target.md +18 -0
  64. package/docs/examples/users/list-targets.md +18 -0
  65. package/docs/examples/users/update-target.md +18 -0
  66. package/package.json +1 -1
  67. package/src/client.ts +1 -1
  68. package/src/index.ts +1 -0
  69. package/src/models.ts +547 -151
  70. package/src/services/account.ts +158 -0
  71. package/src/services/messaging.ts +1901 -0
  72. package/src/services/project.ts +4 -22
  73. package/src/services/projects.ts +58 -0
  74. package/src/services/storage.ts +1 -1
  75. package/src/services/users.ts +188 -1
  76. package/types/index.d.ts +1 -0
  77. package/types/models.d.ts +547 -151
  78. package/types/services/account.d.ts +56 -0
  79. package/types/services/messaging.d.ts +553 -0
  80. package/types/services/project.d.ts +2 -4
  81. package/types/services/projects.d.ts +20 -0
  82. package/types/services/storage.d.ts +1 -1
  83. package/types/services/users.d.ts +59 -1
package/types/models.d.ts CHANGED
@@ -402,6 +402,71 @@ export declare namespace Models {
402
402
  */
403
403
  localeCodes: LocaleCode[];
404
404
  };
405
+ /**
406
+ * Provider list
407
+ */
408
+ type ProviderList = {
409
+ /**
410
+ * Total number of providers documents that matched your query.
411
+ */
412
+ total: number;
413
+ /**
414
+ * List of providers.
415
+ */
416
+ providers: Provider[];
417
+ };
418
+ /**
419
+ * Message list
420
+ */
421
+ type MessageList = {
422
+ /**
423
+ * Total number of messages documents that matched your query.
424
+ */
425
+ total: number;
426
+ /**
427
+ * List of messages.
428
+ */
429
+ messages: Message[];
430
+ };
431
+ /**
432
+ * Topic list
433
+ */
434
+ type TopicList = {
435
+ /**
436
+ * Total number of topics documents that matched your query.
437
+ */
438
+ total: number;
439
+ /**
440
+ * List of topics.
441
+ */
442
+ topics: Topic[];
443
+ };
444
+ /**
445
+ * Subscriber list
446
+ */
447
+ type SubscriberList = {
448
+ /**
449
+ * Total number of subscribers documents that matched your query.
450
+ */
451
+ total: number;
452
+ /**
453
+ * List of subscribers.
454
+ */
455
+ subscribers: Subscriber[];
456
+ };
457
+ /**
458
+ * Target list
459
+ */
460
+ type TargetList = {
461
+ /**
462
+ * Total number of targets documents that matched your query.
463
+ */
464
+ total: number;
465
+ /**
466
+ * List of targets.
467
+ */
468
+ targets: Target[];
469
+ };
405
470
  /**
406
471
  * Migrations List
407
472
  */
@@ -1121,6 +1186,10 @@ export declare namespace Models {
1121
1186
  * User preferences as a key-value object
1122
1187
  */
1123
1188
  prefs: Preferences;
1189
+ /**
1190
+ * A user-owned message receiver. A single user may have multiple e.g. emails, phones, and a browser. Each target is registered with a single provider.
1191
+ */
1192
+ targets: Target[];
1124
1193
  /**
1125
1194
  * Most recent access date in ISO 8601 format. This attribute is only updated again after 24 hours.
1126
1195
  */
@@ -1339,6 +1408,10 @@ export declare namespace Models {
1339
1408
  * Returns true if this the current user session.
1340
1409
  */
1341
1410
  current: boolean;
1411
+ /**
1412
+ * Returns true if this the current user session.
1413
+ */
1414
+ factors: number;
1342
1415
  };
1343
1416
  /**
1344
1417
  * Identity
@@ -2106,9 +2179,9 @@ export declare namespace Models {
2106
2179
  */
2107
2180
  authPersonalDataCheck: boolean;
2108
2181
  /**
2109
- * List of Providers.
2182
+ * List of Auth Providers.
2110
2183
  */
2111
- providers: Provider[];
2184
+ oAuthProviders: AuthProvider[];
2112
2185
  /**
2113
2186
  * List of Platforms.
2114
2187
  */
@@ -2221,6 +2294,10 @@ export declare namespace Models {
2221
2294
  * GraphQL service status
2222
2295
  */
2223
2296
  serviceStatusForGraphql: boolean;
2297
+ /**
2298
+ * Messaging service status
2299
+ */
2300
+ serviceStatusForMessaging: boolean;
2224
2301
  };
2225
2302
  /**
2226
2303
  * Webhook
@@ -2309,15 +2386,15 @@ export declare namespace Models {
2309
2386
  sdks: string[];
2310
2387
  };
2311
2388
  /**
2312
- * Provider
2389
+ * AuthProvider
2313
2390
  */
2314
- type Provider = {
2391
+ type AuthProvider = {
2315
2392
  /**
2316
- * Provider.
2393
+ * Auth Provider.
2317
2394
  */
2318
2395
  key: string;
2319
2396
  /**
2320
- * Provider name.
2397
+ * Auth Provider name.
2321
2398
  */
2322
2399
  name: string;
2323
2400
  /**
@@ -2329,7 +2406,7 @@ export declare namespace Models {
2329
2406
  */
2330
2407
  secret: string;
2331
2408
  /**
2332
- * Provider is active and can be used to create session.
2409
+ * Auth Provider is active and can be used to create session.
2333
2410
  */
2334
2411
  enabled: boolean;
2335
2412
  };
@@ -2574,305 +2651,360 @@ export declare namespace Models {
2574
2651
  date: string;
2575
2652
  };
2576
2653
  /**
2577
- * Metric Breakdown
2654
+ * UsageDatabases
2578
2655
  */
2579
- type MetricBreakdown = {
2656
+ type UsageDatabases = {
2580
2657
  /**
2581
- * Resource ID.
2658
+ * The time range of the usage stats.
2582
2659
  */
2583
- resourceId: string;
2660
+ range: string;
2584
2661
  /**
2585
- * Resource name.
2662
+ * Aggregated stats for total number of documents.
2586
2663
  */
2587
- name: string;
2664
+ databasesCount: Metric[];
2588
2665
  /**
2589
- * The value of this metric at the timestamp.
2666
+ * Aggregated stats for total number of documents.
2590
2667
  */
2591
- value: number;
2592
- };
2593
- /**
2594
- * UsageDatabases
2595
- */
2596
- type UsageDatabases = {
2668
+ documentsCount: Metric[];
2597
2669
  /**
2598
- * Time range of the usage stats.
2670
+ * Aggregated stats for total number of collections.
2599
2671
  */
2600
- range: string;
2672
+ collectionsCount: Metric[];
2601
2673
  /**
2602
- * Total aggregated number of databases.
2674
+ * Aggregated stats for documents created.
2603
2675
  */
2604
- databasesTotal: number;
2676
+ databasesCreate: Metric[];
2605
2677
  /**
2606
- * Total aggregated number of collections.
2678
+ * Aggregated stats for documents read.
2607
2679
  */
2608
- collectionsTotal: number;
2680
+ databasesRead: Metric[];
2609
2681
  /**
2610
- * Total aggregated number of documents.
2682
+ * Aggregated stats for documents updated.
2611
2683
  */
2612
- documentsTotal: number;
2684
+ databasesUpdate: Metric[];
2613
2685
  /**
2614
- * Aggregated number of databases per period.
2686
+ * Aggregated stats for total number of collections.
2615
2687
  */
2616
- databases: Metric[];
2688
+ databasesDelete: Metric[];
2617
2689
  /**
2618
- * Aggregated number of collections per period.
2690
+ * Aggregated stats for documents created.
2619
2691
  */
2620
- collections: Metric[];
2692
+ documentsCreate: Metric[];
2621
2693
  /**
2622
- * Aggregated number of documents per period.
2694
+ * Aggregated stats for documents read.
2623
2695
  */
2624
- documents: Metric[];
2696
+ documentsRead: Metric[];
2697
+ /**
2698
+ * Aggregated stats for documents updated.
2699
+ */
2700
+ documentsUpdate: Metric[];
2701
+ /**
2702
+ * Aggregated stats for documents deleted.
2703
+ */
2704
+ documentsDelete: Metric[];
2705
+ /**
2706
+ * Aggregated stats for collections created.
2707
+ */
2708
+ collectionsCreate: Metric[];
2709
+ /**
2710
+ * Aggregated stats for collections read.
2711
+ */
2712
+ collectionsRead: Metric[];
2713
+ /**
2714
+ * Aggregated stats for collections updated.
2715
+ */
2716
+ collectionsUpdate: Metric[];
2717
+ /**
2718
+ * Aggregated stats for collections delete.
2719
+ */
2720
+ collectionsDelete: Metric[];
2625
2721
  };
2626
2722
  /**
2627
2723
  * UsageDatabase
2628
2724
  */
2629
2725
  type UsageDatabase = {
2630
2726
  /**
2631
- * Time range of the usage stats.
2727
+ * The time range of the usage stats.
2632
2728
  */
2633
2729
  range: string;
2634
2730
  /**
2635
- * Total aggregated number of collections.
2731
+ * Aggregated stats for total number of documents.
2636
2732
  */
2637
- collectionsTotal: number;
2733
+ documentsCount: Metric[];
2638
2734
  /**
2639
- * Total aggregated number of documents.
2735
+ * Aggregated stats for total number of collections.
2640
2736
  */
2641
- documentsTotal: number;
2737
+ collectionsCount: Metric[];
2642
2738
  /**
2643
- * Aggregated number of collections per period.
2739
+ * Aggregated stats for documents created.
2644
2740
  */
2645
- collections: Metric[];
2741
+ documentsCreate: Metric[];
2646
2742
  /**
2647
- * Aggregated number of documents per period.
2743
+ * Aggregated stats for documents read.
2648
2744
  */
2649
- documents: Metric[];
2745
+ documentsRead: Metric[];
2746
+ /**
2747
+ * Aggregated stats for documents updated.
2748
+ */
2749
+ documentsUpdate: Metric[];
2750
+ /**
2751
+ * Aggregated stats for documents deleted.
2752
+ */
2753
+ documentsDelete: Metric[];
2754
+ /**
2755
+ * Aggregated stats for collections created.
2756
+ */
2757
+ collectionsCreate: Metric[];
2758
+ /**
2759
+ * Aggregated stats for collections read.
2760
+ */
2761
+ collectionsRead: Metric[];
2762
+ /**
2763
+ * Aggregated stats for collections updated.
2764
+ */
2765
+ collectionsUpdate: Metric[];
2766
+ /**
2767
+ * Aggregated stats for collections delete.
2768
+ */
2769
+ collectionsDelete: Metric[];
2650
2770
  };
2651
2771
  /**
2652
2772
  * UsageCollection
2653
2773
  */
2654
2774
  type UsageCollection = {
2655
2775
  /**
2656
- * Time range of the usage stats.
2776
+ * The time range of the usage stats.
2657
2777
  */
2658
2778
  range: string;
2659
2779
  /**
2660
- * Total aggregated number of of documents.
2780
+ * Aggregated stats for total number of documents.
2661
2781
  */
2662
- documentsTotal: number;
2782
+ documentsCount: Metric[];
2663
2783
  /**
2664
- * Aggregated number of documents per period.
2784
+ * Aggregated stats for documents created.
2665
2785
  */
2666
- documents: Metric[];
2786
+ documentsCreate: Metric[];
2787
+ /**
2788
+ * Aggregated stats for documents read.
2789
+ */
2790
+ documentsRead: Metric[];
2791
+ /**
2792
+ * Aggregated stats for documents updated.
2793
+ */
2794
+ documentsUpdate: Metric[];
2795
+ /**
2796
+ * Aggregated stats for documents deleted.
2797
+ */
2798
+ documentsDelete: Metric[];
2667
2799
  };
2668
2800
  /**
2669
2801
  * UsageUsers
2670
2802
  */
2671
2803
  type UsageUsers = {
2672
2804
  /**
2673
- * Time range of the usage stats.
2805
+ * The time range of the usage stats.
2674
2806
  */
2675
2807
  range: string;
2676
2808
  /**
2677
- * Total aggregated number of statistics of users.
2809
+ * Aggregated stats for total number of users.
2678
2810
  */
2679
- usersTotal: number;
2811
+ usersCount: Metric[];
2680
2812
  /**
2681
- * Total aggregated number of active sessions.
2813
+ * Aggregated stats for users created.
2682
2814
  */
2683
- sessionsTotal: number;
2815
+ usersCreate: Metric[];
2684
2816
  /**
2685
- * Aggregated number of users per period.
2817
+ * Aggregated stats for users read.
2686
2818
  */
2687
- users: Metric[];
2819
+ usersRead: Metric[];
2688
2820
  /**
2689
- * Aggregated number of active sessions per period.
2821
+ * Aggregated stats for users updated.
2690
2822
  */
2691
- sessions: Metric[];
2823
+ usersUpdate: Metric[];
2824
+ /**
2825
+ * Aggregated stats for users deleted.
2826
+ */
2827
+ usersDelete: Metric[];
2828
+ /**
2829
+ * Aggregated stats for sessions created.
2830
+ */
2831
+ sessionsCreate: Metric[];
2832
+ /**
2833
+ * Aggregated stats for sessions created for a provider ( email, anonymous or oauth2 ).
2834
+ */
2835
+ sessionsProviderCreate: Metric[];
2836
+ /**
2837
+ * Aggregated stats for sessions deleted.
2838
+ */
2839
+ sessionsDelete: Metric[];
2692
2840
  };
2693
2841
  /**
2694
2842
  * StorageUsage
2695
2843
  */
2696
2844
  type UsageStorage = {
2697
2845
  /**
2698
- * Time range of the usage stats.
2846
+ * The time range of the usage stats.
2699
2847
  */
2700
2848
  range: string;
2701
2849
  /**
2702
- * Total aggregated number of buckets
2850
+ * Aggregated stats for the occupied storage size (in bytes).
2703
2851
  */
2704
- bucketsTotal: number;
2852
+ storage: Metric[];
2705
2853
  /**
2706
- * Total aggregated number of files.
2854
+ * Aggregated stats for total number of files.
2707
2855
  */
2708
- filesTotal: number;
2856
+ filesCount: Metric[];
2709
2857
  /**
2710
- * Total aggregated number of files storage (in bytes).
2858
+ * Aggregated stats for total number of buckets.
2711
2859
  */
2712
- filesStorageTotal: number;
2860
+ bucketsCount: Metric[];
2713
2861
  /**
2714
- * Aggregated number of buckets per period.
2862
+ * Aggregated stats for buckets created.
2715
2863
  */
2716
- buckets: Metric[];
2864
+ bucketsCreate: Metric[];
2717
2865
  /**
2718
- * Aggregated number of files per period.
2866
+ * Aggregated stats for buckets read.
2719
2867
  */
2720
- files: Metric[];
2868
+ bucketsRead: Metric[];
2721
2869
  /**
2722
- * Aggregated number of files storage (in bytes) per period .
2870
+ * Aggregated stats for buckets updated.
2723
2871
  */
2724
- storage: Metric[];
2725
- };
2726
- /**
2727
- * UsageBuckets
2728
- */
2729
- type UsageBuckets = {
2872
+ bucketsUpdate: Metric[];
2730
2873
  /**
2731
- * Time range of the usage stats.
2874
+ * Aggregated stats for buckets deleted.
2732
2875
  */
2733
- range: string;
2876
+ bucketsDelete: Metric[];
2734
2877
  /**
2735
- * Total aggregated number of bucket files.
2878
+ * Aggregated stats for files created.
2736
2879
  */
2737
- filesTotal: number;
2880
+ filesCreate: Metric[];
2738
2881
  /**
2739
- * Total aggregated number of bucket files storage (in bytes).
2882
+ * Aggregated stats for files read.
2740
2883
  */
2741
- filesStorageTotal: number;
2884
+ filesRead: Metric[];
2742
2885
  /**
2743
- * Aggregated number of bucket files per period.
2886
+ * Aggregated stats for files updated.
2744
2887
  */
2745
- files: Metric[];
2888
+ filesUpdate: Metric[];
2746
2889
  /**
2747
- * Aggregated number of bucket storage files (in bytes) per period.
2890
+ * Aggregated stats for files deleted.
2748
2891
  */
2749
- storage: Metric[];
2892
+ filesDelete: Metric[];
2750
2893
  };
2751
2894
  /**
2752
- * UsageFunctions
2895
+ * UsageBuckets
2753
2896
  */
2754
- type UsageFunctions = {
2897
+ type UsageBuckets = {
2755
2898
  /**
2756
- * Time range of the usage stats.
2899
+ * The time range of the usage stats.
2757
2900
  */
2758
2901
  range: string;
2759
2902
  /**
2760
- * Total aggregated number of functions.
2761
- */
2762
- functionsTotal: number;
2763
- /**
2764
- * Total aggregated number of functions deployments.
2903
+ * Aggregated stats for total number of files in this bucket.
2765
2904
  */
2766
- deploymentsTotal: number;
2905
+ filesCount: Metric[];
2767
2906
  /**
2768
- * Total aggregated sum of functions deployment storage.
2907
+ * Aggregated stats for total storage of files in this bucket.
2769
2908
  */
2770
- deploymentsStorageTotal: number;
2909
+ filesStorage: Metric[];
2771
2910
  /**
2772
- * Total aggregated number of functions build.
2911
+ * Aggregated stats for files created.
2773
2912
  */
2774
- buildsTotal: number;
2913
+ filesCreate: Metric[];
2775
2914
  /**
2776
- * total aggregated sum of functions build storage.
2915
+ * Aggregated stats for files read.
2777
2916
  */
2778
- buildsStorageTotal: number;
2917
+ filesRead: Metric[];
2779
2918
  /**
2780
- * Total aggregated sum of functions build compute time.
2919
+ * Aggregated stats for files updated.
2781
2920
  */
2782
- buildsTimeTotal: number;
2921
+ filesUpdate: Metric[];
2783
2922
  /**
2784
- * Total aggregated number of functions execution.
2923
+ * Aggregated stats for files deleted.
2785
2924
  */
2786
- executionsTotal: number;
2925
+ filesDelete: Metric[];
2926
+ };
2927
+ /**
2928
+ * UsageFunctions
2929
+ */
2930
+ type UsageFunctions = {
2787
2931
  /**
2788
- * Total aggregated sum of functions execution compute time.
2932
+ * The time range of the usage stats.
2789
2933
  */
2790
- executionsTimeTotal: number;
2934
+ range: string;
2791
2935
  /**
2792
- * Aggregated number of functions per period.
2936
+ * Aggregated stats for number of function executions.
2793
2937
  */
2794
- functions: Metric[];
2938
+ executionsTotal: Metric[];
2795
2939
  /**
2796
- * Aggregated number of functions deployment per period.
2940
+ * Aggregated stats for function execution failures.
2797
2941
  */
2798
- deployments: Metric[];
2942
+ executionsFailure: Metric[];
2799
2943
  /**
2800
- * Aggregated number of functions deployment storage per period.
2944
+ * Aggregated stats for function execution successes.
2801
2945
  */
2802
- deploymentsStorage: Metric[];
2946
+ executionsSuccess: Metric[];
2803
2947
  /**
2804
- * Aggregated number of functions build per period.
2948
+ * Aggregated stats for function execution duration.
2805
2949
  */
2806
- builds: Metric[];
2950
+ executionsTime: Metric[];
2807
2951
  /**
2808
- * Aggregated sum of functions build storage per period.
2952
+ * Aggregated stats for number of function builds.
2809
2953
  */
2810
- buildsStorage: Metric[];
2954
+ buildsTotal: Metric[];
2811
2955
  /**
2812
- * Aggregated sum of functions build compute time per period.
2956
+ * Aggregated stats for function build failures.
2813
2957
  */
2814
- buildsTime: Metric[];
2958
+ buildsFailure: Metric[];
2815
2959
  /**
2816
- * Aggregated number of functions execution per period.
2960
+ * Aggregated stats for function build successes.
2817
2961
  */
2818
- executions: Metric[];
2962
+ buildsSuccess: Metric[];
2819
2963
  /**
2820
- * Aggregated number of functions execution compute time per period.
2964
+ * Aggregated stats for function build duration.
2821
2965
  */
2822
- executionsTime: Metric[];
2966
+ buildsTime: Metric[];
2823
2967
  };
2824
2968
  /**
2825
2969
  * UsageProject
2826
2970
  */
2827
2971
  type UsageProject = {
2828
2972
  /**
2829
- * Total aggregated number of function executions.
2830
- */
2831
- executionsTotal: number;
2832
- /**
2833
- * Total aggregated number of documents.
2834
- */
2835
- documentsTotal: number;
2836
- /**
2837
- * Total aggregated number of databases.
2973
+ * The time range of the usage stats.
2838
2974
  */
2839
- databasesTotal: number;
2975
+ range: string;
2840
2976
  /**
2841
- * Total aggregated number of users.
2977
+ * Aggregated stats for number of requests.
2842
2978
  */
2843
- usersTotal: number;
2979
+ requests: Metric[];
2844
2980
  /**
2845
- * Total aggregated sum of files storage size (in bytes).
2981
+ * Aggregated stats for consumed bandwidth.
2846
2982
  */
2847
- filesStorageTotal: number;
2983
+ network: Metric[];
2848
2984
  /**
2849
- * Total aggregated number of buckets.
2985
+ * Aggregated stats for function executions.
2850
2986
  */
2851
- bucketsTotal: number;
2987
+ executions: Metric[];
2852
2988
  /**
2853
- * Aggregated number of requests per period.
2989
+ * Aggregated stats for number of documents.
2854
2990
  */
2855
- requests: Metric[];
2991
+ documents: Metric[];
2856
2992
  /**
2857
- * Aggregated number of consumed bandwidth per period.
2993
+ * Aggregated stats for number of databases.
2858
2994
  */
2859
- network: Metric[];
2995
+ databases: Metric[];
2860
2996
  /**
2861
- * Aggregated number of users per period.
2997
+ * Aggregated stats for number of users.
2862
2998
  */
2863
2999
  users: Metric[];
2864
3000
  /**
2865
- * Aggregated number of executions per period.
2866
- */
2867
- executions: Metric[];
2868
- /**
2869
- * Aggregated breakdown in totals of executions by functions.
3001
+ * Aggregated stats for the occupied storage size (in bytes).
2870
3002
  */
2871
- executionsBreakdown: MetricBreakdown[];
3003
+ storage: Metric[];
2872
3004
  /**
2873
- * Aggregated breakdown in totals of usage by buckets.
3005
+ * Aggregated stats for number of buckets.
2874
3006
  */
2875
- bucketsBreakdown: MetricBreakdown[];
3007
+ buckets: Metric[];
2876
3008
  };
2877
3009
  /**
2878
3010
  * Headers
@@ -3011,6 +3143,270 @@ export declare namespace Models {
3011
3143
  */
3012
3144
  _APP_ASSISTANT_ENABLED: boolean;
3013
3145
  };
3146
+ /**
3147
+ * MFA Challenge
3148
+ */
3149
+ type MfaChallenge = {
3150
+ /**
3151
+ * Token ID.
3152
+ */
3153
+ $id: string;
3154
+ /**
3155
+ * Token creation date in ISO 8601 format.
3156
+ */
3157
+ $createdAt: string;
3158
+ /**
3159
+ * User ID.
3160
+ */
3161
+ userId: string;
3162
+ /**
3163
+ * Token expiration date in ISO 8601 format.
3164
+ */
3165
+ expire: string;
3166
+ };
3167
+ /**
3168
+ * MFAProvider
3169
+ */
3170
+ type MfaProvider = {
3171
+ /**
3172
+ * backup codes
3173
+ */
3174
+ backups: string[];
3175
+ /**
3176
+ * secret used for top auth
3177
+ */
3178
+ secret: string;
3179
+ /**
3180
+ * uri for otp app
3181
+ */
3182
+ uri: string;
3183
+ };
3184
+ /**
3185
+ * MFAProviders
3186
+ */
3187
+ type MfaProviders = {
3188
+ /**
3189
+ * TOTP
3190
+ */
3191
+ totp: boolean;
3192
+ /**
3193
+ * Phone
3194
+ */
3195
+ phone: boolean;
3196
+ /**
3197
+ * Email
3198
+ */
3199
+ email: boolean;
3200
+ };
3201
+ /**
3202
+ * Provider
3203
+ */
3204
+ type Provider = {
3205
+ /**
3206
+ * Provider ID.
3207
+ */
3208
+ $id: string;
3209
+ /**
3210
+ * Provider creation time in ISO 8601 format.
3211
+ */
3212
+ $createdAt: string;
3213
+ /**
3214
+ * Provider update date in ISO 8601 format.
3215
+ */
3216
+ $updatedAt: string;
3217
+ /**
3218
+ * The name for the provider instance.
3219
+ */
3220
+ name: string;
3221
+ /**
3222
+ * The name of the provider service.
3223
+ */
3224
+ provider: string;
3225
+ /**
3226
+ * Is provider enabled?
3227
+ */
3228
+ enabled: boolean;
3229
+ /**
3230
+ * Type of provider.
3231
+ */
3232
+ type: string;
3233
+ /**
3234
+ * Provider credentials.
3235
+ */
3236
+ credentials: object;
3237
+ /**
3238
+ * Provider options.
3239
+ */
3240
+ options?: object;
3241
+ };
3242
+ /**
3243
+ * Message
3244
+ */
3245
+ type Message = {
3246
+ /**
3247
+ * Message ID.
3248
+ */
3249
+ $id: string;
3250
+ /**
3251
+ * Message creation time in ISO 8601 format.
3252
+ */
3253
+ $createdAt: string;
3254
+ /**
3255
+ * Message update date in ISO 8601 format.
3256
+ */
3257
+ $updatedAt: string;
3258
+ /**
3259
+ * Message provider type.
3260
+ */
3261
+ providerType: string;
3262
+ /**
3263
+ * Topic IDs set as recipients.
3264
+ */
3265
+ topics: string[];
3266
+ /**
3267
+ * User IDs set as recipients.
3268
+ */
3269
+ users: string[];
3270
+ /**
3271
+ * Target IDs set as recipients.
3272
+ */
3273
+ targets: string[];
3274
+ /**
3275
+ * The scheduled time for message.
3276
+ */
3277
+ scheduledAt?: string;
3278
+ /**
3279
+ * The time when the message was delivered.
3280
+ */
3281
+ deliveredAt?: string;
3282
+ /**
3283
+ * Delivery errors if any.
3284
+ */
3285
+ deliveryErrors?: string[];
3286
+ /**
3287
+ * Number of recipients the message was delivered to.
3288
+ */
3289
+ deliveredTotal: number;
3290
+ /**
3291
+ * Data of the message.
3292
+ */
3293
+ data: object;
3294
+ /**
3295
+ * Status of delivery.
3296
+ */
3297
+ status: string;
3298
+ /**
3299
+ * Message description.
3300
+ */
3301
+ description?: string;
3302
+ };
3303
+ /**
3304
+ * Topic
3305
+ */
3306
+ type Topic = {
3307
+ /**
3308
+ * Topic ID.
3309
+ */
3310
+ $id: string;
3311
+ /**
3312
+ * Topic creation time in ISO 8601 format.
3313
+ */
3314
+ $createdAt: string;
3315
+ /**
3316
+ * Topic update date in ISO 8601 format.
3317
+ */
3318
+ $updatedAt: string;
3319
+ /**
3320
+ * The name of the topic.
3321
+ */
3322
+ name: string;
3323
+ /**
3324
+ * Total count of subscribers subscribed to topic.
3325
+ */
3326
+ total: number;
3327
+ /**
3328
+ * Description of the topic.
3329
+ */
3330
+ description?: string;
3331
+ };
3332
+ /**
3333
+ * Subscriber
3334
+ */
3335
+ type Subscriber = {
3336
+ /**
3337
+ * Subscriber ID.
3338
+ */
3339
+ $id: string;
3340
+ /**
3341
+ * Subscriber creation time in ISO 8601 format.
3342
+ */
3343
+ $createdAt: string;
3344
+ /**
3345
+ * Subscriber update date in ISO 8601 format.
3346
+ */
3347
+ $updatedAt: string;
3348
+ /**
3349
+ * Target ID.
3350
+ */
3351
+ targetId: string;
3352
+ /**
3353
+ * Target.
3354
+ */
3355
+ target: Target;
3356
+ /**
3357
+ * Topic ID.
3358
+ */
3359
+ userId: string;
3360
+ /**
3361
+ * User Name.
3362
+ */
3363
+ userName: string;
3364
+ /**
3365
+ * Topic ID.
3366
+ */
3367
+ topicId: string;
3368
+ /**
3369
+ * The target provider type. Can be one of the following: `email`, `sms` or `push`.
3370
+ */
3371
+ providerType: string;
3372
+ };
3373
+ /**
3374
+ * Target
3375
+ */
3376
+ type Target = {
3377
+ /**
3378
+ * Target ID.
3379
+ */
3380
+ $id: string;
3381
+ /**
3382
+ * Target creation time in ISO 8601 format.
3383
+ */
3384
+ $createdAt: string;
3385
+ /**
3386
+ * Target update date in ISO 8601 format.
3387
+ */
3388
+ $updatedAt: string;
3389
+ /**
3390
+ * Target Name.
3391
+ */
3392
+ name: string;
3393
+ /**
3394
+ * User ID.
3395
+ */
3396
+ userId: string;
3397
+ /**
3398
+ * Provider ID.
3399
+ */
3400
+ providerId?: string;
3401
+ /**
3402
+ * The target provider type. Can be one of the following: `email`, `sms` or `push`.
3403
+ */
3404
+ providerType: string;
3405
+ /**
3406
+ * The target identifier.
3407
+ */
3408
+ identifier: string;
3409
+ };
3014
3410
  /**
3015
3411
  * Migration
3016
3412
  */