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

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,135 @@
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
+ };
58
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary = {
59
+ total: number;
60
+ richMedias: GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary_RichMediaInfo[];
61
+ };
62
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary_EmailTemplateInfo = {
63
+ name: string;
64
+ label: string;
65
+ };
66
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary = {
67
+ total: number;
68
+ emailTemplates: GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary_EmailTemplateInfo[];
69
+ };
70
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary_InAppMessageInfo = {
71
+ name: string;
72
+ status: string;
73
+ };
74
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary = {
75
+ total: number;
76
+ inappMessages: GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary_InAppMessageInfo[];
77
+ };
78
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary_EventInfo = {
79
+ name: string;
80
+ description: string;
81
+ };
82
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary = {
83
+ total: number;
84
+ events: GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary_EventInfo[];
85
+ };
86
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary_GeozoneInfo = {
87
+ name: string;
88
+ isActive: boolean;
89
+ };
90
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary = {
91
+ total: number;
92
+ geozones: GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary_GeozoneInfo[];
93
+ };
94
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary_CustomerJourneyInfo = {
95
+ uuid: string;
96
+ title: string;
97
+ status: number;
98
+ };
99
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary = {
100
+ total: number;
101
+ customerJourneys: GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary_CustomerJourneyInfo[];
102
+ };
103
+ export type GetAccountEntitiesOverviewResponse_EntitiesOverview = {
104
+ messages: GetAccountEntitiesOverviewResponse_EntitiesOverview_MessagesSummary;
105
+ campaigns: GetAccountEntitiesOverviewResponse_EntitiesOverview_CampaignsSummary;
106
+ presets: GetAccountEntitiesOverviewResponse_EntitiesOverview_PresetsSummary;
107
+ richMedias: GetAccountEntitiesOverviewResponse_EntitiesOverview_RichMediasSummary;
108
+ emailTemplates: GetAccountEntitiesOverviewResponse_EntitiesOverview_EmailTemplatesSummary;
109
+ inappMessages: GetAccountEntitiesOverviewResponse_EntitiesOverview_InAppMessagesSummary;
110
+ events: GetAccountEntitiesOverviewResponse_EntitiesOverview_EventsSummary;
111
+ geozones: GetAccountEntitiesOverviewResponse_EntitiesOverview_GeozonesSummary;
112
+ customerJourneys: GetAccountEntitiesOverviewResponse_EntitiesOverview_CustomerJourneysSummary;
113
+ };
114
+ export type GetAccountEntitiesOverviewResponse_TagsSummary_TagInfo = {
115
+ name: string;
116
+ type: string;
117
+ };
118
+ export type GetAccountEntitiesOverviewResponse_TagsSummary = {
119
+ total: number;
120
+ tags: GetAccountEntitiesOverviewResponse_TagsSummary_TagInfo[];
121
+ };
122
+ export type GetAccountEntitiesOverviewResponse_SegmentsSummary_FilterInfo = {
123
+ name: string;
124
+ };
125
+ export type GetAccountEntitiesOverviewResponse_SegmentsSummary = {
126
+ total: number;
127
+ filters: GetAccountEntitiesOverviewResponse_SegmentsSummary_FilterInfo[];
128
+ };
129
+ export type GetAccountEntitiesOverviewResponse = {
130
+ account: GetAccountEntitiesOverviewResponse_AccountInfo;
131
+ applications: GetAccountEntitiesOverviewResponse_ApplicationsSummary;
132
+ users: GetAccountEntitiesOverviewResponse_UsersSummary;
133
+ tags: GetAccountEntitiesOverviewResponse_TagsSummary;
134
+ filters: GetAccountEntitiesOverviewResponse_SegmentsSummary;
135
+ };
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export {};
package/data.js CHANGED
@@ -402,6 +402,400 @@ 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
+ }
573
+ },
574
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary": {
575
+ "type": "I",
576
+ "fields": {
577
+ "total": {
578
+ "type": "number"
579
+ },
580
+ "richMedias": {
581
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary.RichMediaInfo",
582
+ "array": true
583
+ }
584
+ }
585
+ },
586
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary.EmailTemplateInfo": {
587
+ "type": "I",
588
+ "fields": {
589
+ "name": {
590
+ "type": "string"
591
+ },
592
+ "label": {
593
+ "type": "string"
594
+ }
595
+ }
596
+ },
597
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary": {
598
+ "type": "I",
599
+ "fields": {
600
+ "total": {
601
+ "type": "number"
602
+ },
603
+ "emailTemplates": {
604
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary.EmailTemplateInfo",
605
+ "array": true
606
+ }
607
+ }
608
+ },
609
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary.InAppMessageInfo": {
610
+ "type": "I",
611
+ "fields": {
612
+ "name": {
613
+ "type": "string"
614
+ },
615
+ "status": {
616
+ "type": "string"
617
+ }
618
+ }
619
+ },
620
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary": {
621
+ "type": "I",
622
+ "fields": {
623
+ "total": {
624
+ "type": "number"
625
+ },
626
+ "inappMessages": {
627
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary.InAppMessageInfo",
628
+ "array": true
629
+ }
630
+ }
631
+ },
632
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary.EventInfo": {
633
+ "type": "I",
634
+ "fields": {
635
+ "name": {
636
+ "type": "string"
637
+ },
638
+ "description": {
639
+ "type": "string"
640
+ }
641
+ }
642
+ },
643
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary": {
644
+ "type": "I",
645
+ "fields": {
646
+ "total": {
647
+ "type": "number"
648
+ },
649
+ "events": {
650
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary.EventInfo",
651
+ "array": true
652
+ }
653
+ }
654
+ },
655
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary.GeozoneInfo": {
656
+ "type": "I",
657
+ "fields": {
658
+ "name": {
659
+ "type": "string"
660
+ },
661
+ "isActive": {
662
+ "type": "boolean"
663
+ }
664
+ }
665
+ },
666
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary": {
667
+ "type": "I",
668
+ "fields": {
669
+ "total": {
670
+ "type": "number"
671
+ },
672
+ "geozones": {
673
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary.GeozoneInfo",
674
+ "array": true
675
+ }
676
+ }
677
+ },
678
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary.CustomerJourneyInfo": {
679
+ "type": "I",
680
+ "fields": {
681
+ "uuid": {
682
+ "type": "string"
683
+ },
684
+ "title": {
685
+ "type": "string"
686
+ },
687
+ "status": {
688
+ "type": "number"
689
+ }
690
+ }
691
+ },
692
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary": {
693
+ "type": "I",
694
+ "fields": {
695
+ "total": {
696
+ "type": "number"
697
+ },
698
+ "customerJourneys": {
699
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary.CustomerJourneyInfo",
700
+ "array": true
701
+ }
702
+ }
703
+ },
704
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview": {
705
+ "type": "I",
706
+ "fields": {
707
+ "messages": {
708
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.MessagesSummary"
709
+ },
710
+ "campaigns": {
711
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CampaignsSummary"
712
+ },
713
+ "presets": {
714
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.PresetsSummary"
715
+ },
716
+ "richMedias": {
717
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.RichMediasSummary"
718
+ },
719
+ "emailTemplates": {
720
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EmailTemplatesSummary"
721
+ },
722
+ "inappMessages": {
723
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.InAppMessagesSummary"
724
+ },
725
+ "events": {
726
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.EventsSummary"
727
+ },
728
+ "geozones": {
729
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.GeozonesSummary"
730
+ },
731
+ "customerJourneys": {
732
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.EntitiesOverview.CustomerJourneysSummary"
733
+ }
734
+ }
735
+ },
736
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary.TagInfo": {
737
+ "type": "I",
738
+ "fields": {
739
+ "name": {
740
+ "type": "string"
741
+ },
742
+ "type": {
743
+ "type": "string"
744
+ }
745
+ }
746
+ },
747
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary": {
748
+ "type": "I",
749
+ "fields": {
750
+ "total": {
751
+ "type": "number"
752
+ },
753
+ "tags": {
754
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary.TagInfo",
755
+ "array": true
756
+ }
757
+ }
758
+ },
759
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary.FilterInfo": {
760
+ "type": "I",
761
+ "fields": {
762
+ "name": {
763
+ "type": "string"
764
+ }
765
+ }
766
+ },
767
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary": {
768
+ "type": "I",
769
+ "fields": {
770
+ "total": {
771
+ "type": "number"
772
+ },
773
+ "filters": {
774
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary.FilterInfo",
775
+ "array": true
776
+ }
777
+ }
778
+ },
779
+ "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse": {
780
+ "type": "I",
781
+ "fields": {
782
+ "account": {
783
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.AccountInfo"
784
+ },
785
+ "applications": {
786
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.ApplicationsSummary"
787
+ },
788
+ "users": {
789
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.UsersSummary"
790
+ },
791
+ "tags": {
792
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.TagsSummary"
793
+ },
794
+ "filters": {
795
+ "type": "pushwoosh.rpc_v2.account_overview.GetAccountEntitiesOverviewResponse.SegmentsSummary"
796
+ }
797
+ }
798
+ },
405
799
  "pushwoosh.rpc_v2.account_users.AccountUsersService": {
406
800
  "type": "S",
407
801
  "key": "accountUsers",
@@ -11470,7 +11864,8 @@ export const data = {
11470
11864
  "processing",
11471
11865
  "done",
11472
11866
  "canceled",
11473
- "fail"
11867
+ "fail",
11868
+ "deleted"
11474
11869
  ]
11475
11870
  },
11476
11871
  "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.773",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",