@pushwoosh/rpc-v2-http-api-data 0.1.771 → 0.1.772

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.
@@ -0,0 +1,137 @@
1
+ export interface AccountOverviewService {
2
+ GetAccountEntitiesOverview(request: GetAccountEntitiesOverviewRequest): Promise<GetAccountEntitiesOverviewResponse>;
3
+ }
4
+ export type GetAccountEntitiesOverviewRequest = {};
5
+ export type GetAccountEntitiesOverviewResponse_AccountInfo = {
6
+ name: string;
7
+ };
8
+ export type GetAccountEntitiesOverviewResponse_ApplicationsSummary_ApplicationInfo = {
9
+ title: string;
10
+ configuredPlatforms: number[];
11
+ totalSubscribers: number;
12
+ isDemo: boolean;
13
+ entities: GetAccountEntitiesOverviewResponse_EntitiesOverview;
14
+ };
15
+ export type GetAccountEntitiesOverviewResponse_ApplicationsSummary = {
16
+ totalCount: number;
17
+ applications: GetAccountEntitiesOverviewResponse_ApplicationsSummary_ApplicationInfo[];
18
+ };
19
+ export type GetAccountEntitiesOverviewResponse_UsersSummary = {
20
+ totalUsers: number;
21
+ totalGroups: number;
22
+ };
23
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_MessagesSummary_MessageInfo = {
24
+ name: string;
25
+ type: string;
26
+ status: string;
27
+ };
28
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_MessagesSummary = {
29
+ total: number;
30
+ pushCount: number;
31
+ emailCount: number;
32
+ recentMessages: GetAccountEntitiesOverviewResponse_EntitiesOverview_MessagesSummary_MessageInfo[];
33
+ };
34
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CampaignsSummary_CampaignInfo = {
35
+ name: string;
36
+ description: string;
37
+ };
38
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CampaignsSummary = {
39
+ total: number;
40
+ campaigns: GetAccountEntitiesOverviewResponse_EntitiesOverview_CampaignsSummary_CampaignInfo[];
41
+ };
42
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary_PresetInfo = {
43
+ name: string;
44
+ };
45
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary = {
46
+ total: number;
47
+ pushPresets: number;
48
+ emailPresets: number;
49
+ smsPresets: number;
50
+ whatsappPresets: number;
51
+ linePresets: number;
52
+ kakaoPresets: number;
53
+ presets: GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary_PresetInfo[];
54
+ };
55
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary_RichMediaInfo = {
56
+ name: string;
57
+ isSystem: boolean;
58
+ };
59
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary = {
60
+ total: number;
61
+ richMedias: GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary_RichMediaInfo[];
62
+ };
63
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary_EmailTemplateInfo = {
64
+ name: string;
65
+ label: string;
66
+ };
67
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary = {
68
+ total: number;
69
+ emailTemplates: GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary_EmailTemplateInfo[];
70
+ };
71
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary_InAppMessageInfo = {
72
+ name: string;
73
+ status: string;
74
+ };
75
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary = {
76
+ total: number;
77
+ inappMessages: GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary_InAppMessageInfo[];
78
+ };
79
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary_EventInfo = {
80
+ name: string;
81
+ description: string;
82
+ };
83
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary = {
84
+ total: number;
85
+ events: GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary_EventInfo[];
86
+ };
87
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary_GeozoneInfo = {
88
+ name: string;
89
+ isActive: boolean;
90
+ };
91
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary = {
92
+ total: number;
93
+ geozones: GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary_GeozoneInfo[];
94
+ };
95
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary_CustomerJourneyInfo = {
96
+ uuid: string;
97
+ title: string;
98
+ status: number;
99
+ };
100
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary = {
101
+ total: number;
102
+ customerJourneys: GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary_CustomerJourneyInfo[];
103
+ };
104
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview = {
105
+ messages: GetAccountEntitiesOverviewResponse_EntitiesOverview_MessagesSummary;
106
+ campaigns: GetAccountEntitiesOverviewResponse_EntitiesOverview_CampaignsSummary;
107
+ presets: GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary;
108
+ richMedias: GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary;
109
+ emailTemplates: GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary;
110
+ inappMessages: GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary;
111
+ events: GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary;
112
+ geozones: GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary;
113
+ customerJourneys: GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary;
114
+ };
115
+ export type GetAccountEntitiesOverviewResponse_TagsSummary_TagInfo = {
116
+ name: string;
117
+ type: string;
118
+ system: boolean;
119
+ };
120
+ export type GetAccountEntitiesOverviewResponse_TagsSummary = {
121
+ total: number;
122
+ tags: GetAccountEntitiesOverviewResponse_TagsSummary_TagInfo[];
123
+ };
124
+ export type GetAccountEntitiesOverviewResponse_SegmentsSummary_FilterInfo = {
125
+ name: string;
126
+ };
127
+ export type GetAccountEntitiesOverviewResponse_SegmentsSummary = {
128
+ total: number;
129
+ filters: GetAccountEntitiesOverviewResponse_SegmentsSummary_FilterInfo[];
130
+ };
131
+ export type GetAccountEntitiesOverviewResponse = {
132
+ account: GetAccountEntitiesOverviewResponse_AccountInfo;
133
+ applications: GetAccountEntitiesOverviewResponse_ApplicationsSummary;
134
+ users: GetAccountEntitiesOverviewResponse_UsersSummary;
135
+ tags: GetAccountEntitiesOverviewResponse_TagsSummary;
136
+ filters: GetAccountEntitiesOverviewResponse_SegmentsSummary;
137
+ };
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export {};
package/data.js CHANGED
@@ -402,6 +402,406 @@ export const data = {
402
402
  "type": "I",
403
403
  "fields": {}
404
404
  },
405
+ "pushwoosh.rpc_v2.account_overview.AccountOverviewService": {
406
+ "type": "S",
407
+ "key": "accountOverview",
408
+ "methods": {
409
+ "GetAccountEntitiesOverview": {
410
+ "request": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewRequest",
411
+ "response": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse",
412
+ "method": "get",
413
+ "path": "/api/account_overview/entities"
414
+ }
415
+ }
416
+ },
417
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewRequest": {
418
+ "type": "I",
419
+ "fields": {}
420
+ },
421
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.AccountInfo": {
422
+ "type": "I",
423
+ "fields": {
424
+ "name": {
425
+ "type": "string"
426
+ }
427
+ }
428
+ },
429
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.ApplicationsSummary.ApplicationInfo": {
430
+ "type": "I",
431
+ "fields": {
432
+ "title": {
433
+ "type": "string"
434
+ },
435
+ "configuredPlatforms": {
436
+ "type": "number",
437
+ "array": true
438
+ },
439
+ "totalSubscribers": {
440
+ "type": "number"
441
+ },
442
+ "isDemo": {
443
+ "type": "boolean"
444
+ },
445
+ "entities": {
446
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview"
447
+ }
448
+ }
449
+ },
450
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.ApplicationsSummary": {
451
+ "type": "I",
452
+ "fields": {
453
+ "totalCount": {
454
+ "type": "number"
455
+ },
456
+ "applications": {
457
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.ApplicationsSummary.ApplicationInfo",
458
+ "array": true
459
+ }
460
+ }
461
+ },
462
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.UsersSummary": {
463
+ "type": "I",
464
+ "fields": {
465
+ "totalUsers": {
466
+ "type": "number"
467
+ },
468
+ "totalGroups": {
469
+ "type": "number"
470
+ }
471
+ }
472
+ },
473
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.MessagesSummary.MessageInfo": {
474
+ "type": "I",
475
+ "fields": {
476
+ "name": {
477
+ "type": "string"
478
+ },
479
+ "type": {
480
+ "type": "string"
481
+ },
482
+ "status": {
483
+ "type": "string"
484
+ }
485
+ }
486
+ },
487
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.MessagesSummary": {
488
+ "type": "I",
489
+ "fields": {
490
+ "total": {
491
+ "type": "number"
492
+ },
493
+ "pushCount": {
494
+ "type": "number"
495
+ },
496
+ "emailCount": {
497
+ "type": "number"
498
+ },
499
+ "recentMessages": {
500
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.MessagesSummary.MessageInfo",
501
+ "array": true
502
+ }
503
+ }
504
+ },
505
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CampaignsSummary.CampaignInfo": {
506
+ "type": "I",
507
+ "fields": {
508
+ "name": {
509
+ "type": "string"
510
+ },
511
+ "description": {
512
+ "type": "string"
513
+ }
514
+ }
515
+ },
516
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CampaignsSummary": {
517
+ "type": "I",
518
+ "fields": {
519
+ "total": {
520
+ "type": "number"
521
+ },
522
+ "campaigns": {
523
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CampaignsSummary.CampaignInfo",
524
+ "array": true
525
+ }
526
+ }
527
+ },
528
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.PresetsSummary.PresetInfo": {
529
+ "type": "I",
530
+ "fields": {
531
+ "name": {
532
+ "type": "string"
533
+ }
534
+ }
535
+ },
536
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.PresetsSummary": {
537
+ "type": "I",
538
+ "fields": {
539
+ "total": {
540
+ "type": "number"
541
+ },
542
+ "pushPresets": {
543
+ "type": "number"
544
+ },
545
+ "emailPresets": {
546
+ "type": "number"
547
+ },
548
+ "smsPresets": {
549
+ "type": "number"
550
+ },
551
+ "whatsappPresets": {
552
+ "type": "number"
553
+ },
554
+ "linePresets": {
555
+ "type": "number"
556
+ },
557
+ "kakaoPresets": {
558
+ "type": "number"
559
+ },
560
+ "presets": {
561
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.PresetsSummary.PresetInfo",
562
+ "array": true
563
+ }
564
+ }
565
+ },
566
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary.RichMediaInfo": {
567
+ "type": "I",
568
+ "fields": {
569
+ "name": {
570
+ "type": "string"
571
+ },
572
+ "isSystem": {
573
+ "type": "boolean"
574
+ }
575
+ }
576
+ },
577
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary": {
578
+ "type": "I",
579
+ "fields": {
580
+ "total": {
581
+ "type": "number"
582
+ },
583
+ "richMedias": {
584
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary.RichMediaInfo",
585
+ "array": true
586
+ }
587
+ }
588
+ },
589
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary.EmailTemplateInfo": {
590
+ "type": "I",
591
+ "fields": {
592
+ "name": {
593
+ "type": "string"
594
+ },
595
+ "label": {
596
+ "type": "string"
597
+ }
598
+ }
599
+ },
600
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary": {
601
+ "type": "I",
602
+ "fields": {
603
+ "total": {
604
+ "type": "number"
605
+ },
606
+ "emailTemplates": {
607
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary.EmailTemplateInfo",
608
+ "array": true
609
+ }
610
+ }
611
+ },
612
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary.InAppMessageInfo": {
613
+ "type": "I",
614
+ "fields": {
615
+ "name": {
616
+ "type": "string"
617
+ },
618
+ "status": {
619
+ "type": "string"
620
+ }
621
+ }
622
+ },
623
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary": {
624
+ "type": "I",
625
+ "fields": {
626
+ "total": {
627
+ "type": "number"
628
+ },
629
+ "inappMessages": {
630
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary.InAppMessageInfo",
631
+ "array": true
632
+ }
633
+ }
634
+ },
635
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary.EventInfo": {
636
+ "type": "I",
637
+ "fields": {
638
+ "name": {
639
+ "type": "string"
640
+ },
641
+ "description": {
642
+ "type": "string"
643
+ }
644
+ }
645
+ },
646
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary": {
647
+ "type": "I",
648
+ "fields": {
649
+ "total": {
650
+ "type": "number"
651
+ },
652
+ "events": {
653
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary.EventInfo",
654
+ "array": true
655
+ }
656
+ }
657
+ },
658
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary.GeozoneInfo": {
659
+ "type": "I",
660
+ "fields": {
661
+ "name": {
662
+ "type": "string"
663
+ },
664
+ "isActive": {
665
+ "type": "boolean"
666
+ }
667
+ }
668
+ },
669
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary": {
670
+ "type": "I",
671
+ "fields": {
672
+ "total": {
673
+ "type": "number"
674
+ },
675
+ "geozones": {
676
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary.GeozoneInfo",
677
+ "array": true
678
+ }
679
+ }
680
+ },
681
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary.CustomerJourneyInfo": {
682
+ "type": "I",
683
+ "fields": {
684
+ "uuid": {
685
+ "type": "string"
686
+ },
687
+ "title": {
688
+ "type": "string"
689
+ },
690
+ "status": {
691
+ "type": "number"
692
+ }
693
+ }
694
+ },
695
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary": {
696
+ "type": "I",
697
+ "fields": {
698
+ "total": {
699
+ "type": "number"
700
+ },
701
+ "customerJourneys": {
702
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary.CustomerJourneyInfo",
703
+ "array": true
704
+ }
705
+ }
706
+ },
707
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview": {
708
+ "type": "I",
709
+ "fields": {
710
+ "messages": {
711
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.MessagesSummary"
712
+ },
713
+ "campaigns": {
714
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CampaignsSummary"
715
+ },
716
+ "presets": {
717
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.PresetsSummary"
718
+ },
719
+ "richMedias": {
720
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary"
721
+ },
722
+ "emailTemplates": {
723
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary"
724
+ },
725
+ "inappMessages": {
726
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary"
727
+ },
728
+ "events": {
729
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary"
730
+ },
731
+ "geozones": {
732
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary"
733
+ },
734
+ "customerJourneys": {
735
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary"
736
+ }
737
+ }
738
+ },
739
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary.TagInfo": {
740
+ "type": "I",
741
+ "fields": {
742
+ "name": {
743
+ "type": "string"
744
+ },
745
+ "type": {
746
+ "type": "string"
747
+ },
748
+ "system": {
749
+ "type": "boolean"
750
+ }
751
+ }
752
+ },
753
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary": {
754
+ "type": "I",
755
+ "fields": {
756
+ "total": {
757
+ "type": "number"
758
+ },
759
+ "tags": {
760
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary.TagInfo",
761
+ "array": true
762
+ }
763
+ }
764
+ },
765
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary.FilterInfo": {
766
+ "type": "I",
767
+ "fields": {
768
+ "name": {
769
+ "type": "string"
770
+ }
771
+ }
772
+ },
773
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary": {
774
+ "type": "I",
775
+ "fields": {
776
+ "total": {
777
+ "type": "number"
778
+ },
779
+ "filters": {
780
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary.FilterInfo",
781
+ "array": true
782
+ }
783
+ }
784
+ },
785
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse": {
786
+ "type": "I",
787
+ "fields": {
788
+ "account": {
789
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.AccountInfo"
790
+ },
791
+ "applications": {
792
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.ApplicationsSummary"
793
+ },
794
+ "users": {
795
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.UsersSummary"
796
+ },
797
+ "tags": {
798
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary"
799
+ },
800
+ "filters": {
801
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary"
802
+ }
803
+ }
804
+ },
405
805
  "pushwoosh.rpc_v2.account_users.AccountUsersService": {
406
806
  "type": "S",
407
807
  "key": "accountUsers",
@@ -11470,7 +11870,8 @@ export const data = {
11470
11870
  "processing",
11471
11871
  "done",
11472
11872
  "canceled",
11473
- "fail"
11873
+ "fail",
11874
+ "deleted"
11474
11875
  ]
11475
11876
  },
11476
11877
  "pushwoosh.rpc_v2.messages.Message": {
package/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { AccountGroupsService as pushwoosh_rpc_v2_account_groups_AccountGroupsService } from './account_groups';
2
2
  import { AccountInvitesService as pushwoosh_rpc_v2_account_invites_AccountInvitesService } from './account_invites';
3
+ import { AccountOverviewService as pushwoosh_rpc_v2_account_overview_AccountOverviewService } from './account_overview';
3
4
  import { AccountUsersService as pushwoosh_rpc_v2_account_users_AccountUsersService } from './account_users';
4
5
  import { AccountsService as pushwoosh_rpc_v2_accounts_AccountsService } from './accounts';
5
6
  import { AlertsService as pushwoosh_accounts_alerts_v1_AlertsService } from './pushwoosh_accounts_alerts_v1';
@@ -58,6 +59,7 @@ import { WhatsAppPresetsService as pushwoosh_rpc_v2_whatsapp_presets_WhatsAppPre
58
59
  export type API = {
59
60
  accountGroups: pushwoosh_rpc_v2_account_groups_AccountGroupsService;
60
61
  accountInvites: pushwoosh_rpc_v2_account_invites_AccountInvitesService;
62
+ accountOverview: pushwoosh_rpc_v2_account_overview_AccountOverviewService;
61
63
  accountUsers: pushwoosh_rpc_v2_account_users_AccountUsersService;
62
64
  accounts: pushwoosh_rpc_v2_accounts_AccountsService;
63
65
  alerts: pushwoosh_accounts_alerts_v1_AlertsService;
package/messages.d.ts CHANGED
@@ -23,7 +23,7 @@ export type EmailInfo = {
23
23
  sendFromName: string;
24
24
  };
25
25
  export type Message_SchedulingType = 'now' | 'device_tz' | 'custom_tz' | 'optimal_time';
26
- export type Message_Status = 'status_unknown' | 'creating' | 'waiting' | 'pending' | 'processing' | 'done' | 'canceled' | 'fail';
26
+ export type Message_Status = 'status_unknown' | 'creating' | 'waiting' | 'pending' | 'processing' | 'done' | 'canceled' | 'fail' | 'deleted';
27
27
  export type Message_info_pushInfo = {
28
28
  type: 'pushInfo';
29
29
  data: PushInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.771",
3
+ "version": "0.1.772",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",