@pushwoosh/rpc-v2-http-api-data 0.1.770 → 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",
@@ -10013,6 +10413,30 @@ export const data = {
10013
10413
  "response": "pushwoosh.rpc_v2.integrations.GetShopifyConfigurationResponse",
10014
10414
  "method": "get",
10015
10415
  "path": "/api/integrations/configurations/shopify/{application}"
10416
+ },
10417
+ "GetStripeAuthURL": {
10418
+ "request": "pushwoosh.rpc_v2.integrations.GetStripeAuthURLRequest",
10419
+ "response": "pushwoosh.rpc_v2.integrations.GetStripeAuthURLResponse",
10420
+ "method": "get",
10421
+ "path": "/api/integrations/stripe/auth"
10422
+ },
10423
+ "HandleStripeAuthCallback": {
10424
+ "request": "pushwoosh.rpc_v2.integrations.HandleStripeAuthCallbackRequest",
10425
+ "response": "pushwoosh.rpc_v2.integrations.HandleStripeAuthCallbackResponse",
10426
+ "method": "get",
10427
+ "path": "/api/integrations/stripe/auth/callback"
10428
+ },
10429
+ "GetStripeConfiguration": {
10430
+ "request": "pushwoosh.rpc_v2.integrations.GetStripeConfigurationRequest",
10431
+ "response": "pushwoosh.rpc_v2.integrations.GetStripeConfigurationResponse",
10432
+ "method": "get",
10433
+ "path": "/api/integrations/configurations/stripe"
10434
+ },
10435
+ "DeleteStripeConfiguration": {
10436
+ "request": "pushwoosh.rpc_v2.integrations.DeleteStripeConfigurationRequest",
10437
+ "response": "pushwoosh.rpc_v2.integrations.DeleteStripeConfigurationResponse",
10438
+ "method": "delete",
10439
+ "path": "/api/integrations/configurations/stripe"
10016
10440
  }
10017
10441
  }
10018
10442
  },
@@ -10024,7 +10448,8 @@ export const data = {
10024
10448
  "PIANO",
10025
10449
  "WEBHOOK",
10026
10450
  "HUBSPOT",
10027
- "SHOPIFY"
10451
+ "SHOPIFY",
10452
+ "STRIPE"
10028
10453
  ]
10029
10454
  },
10030
10455
  "pushwoosh.rpc_v2.integrations.ImportSegmentPianoRequest": {
@@ -10356,6 +10781,60 @@ export const data = {
10356
10781
  }
10357
10782
  }
10358
10783
  },
10784
+ "pushwoosh.rpc_v2.integrations.GetStripeAuthURLRequest": {
10785
+ "type": "I",
10786
+ "fields": {
10787
+ "redirectUri": {
10788
+ "type": "string"
10789
+ }
10790
+ }
10791
+ },
10792
+ "pushwoosh.rpc_v2.integrations.GetStripeAuthURLResponse": {
10793
+ "type": "I",
10794
+ "fields": {
10795
+ "authUrl": {
10796
+ "type": "string"
10797
+ }
10798
+ }
10799
+ },
10800
+ "pushwoosh.rpc_v2.integrations.HandleStripeAuthCallbackRequest": {
10801
+ "type": "I",
10802
+ "fields": {
10803
+ "code": {
10804
+ "type": "string"
10805
+ },
10806
+ "applicationCode": {
10807
+ "type": "string"
10808
+ }
10809
+ }
10810
+ },
10811
+ "pushwoosh.rpc_v2.integrations.HandleStripeAuthCallbackResponse": {
10812
+ "type": "I",
10813
+ "fields": {}
10814
+ },
10815
+ "pushwoosh.rpc_v2.integrations.GetStripeConfigurationRequest": {
10816
+ "type": "I",
10817
+ "fields": {}
10818
+ },
10819
+ "pushwoosh.rpc_v2.integrations.GetStripeConfigurationResponse": {
10820
+ "type": "I",
10821
+ "fields": {
10822
+ "email": {
10823
+ "type": "string"
10824
+ },
10825
+ "businessName": {
10826
+ "type": "string"
10827
+ }
10828
+ }
10829
+ },
10830
+ "pushwoosh.rpc_v2.integrations.DeleteStripeConfigurationRequest": {
10831
+ "type": "I",
10832
+ "fields": {}
10833
+ },
10834
+ "pushwoosh.rpc_v2.integrations.DeleteStripeConfigurationResponse": {
10835
+ "type": "I",
10836
+ "fields": {}
10837
+ },
10359
10838
  "pushwoosh.rpc_v2.internal_alerts.InternalAlertsService": {
10360
10839
  "type": "S",
10361
10840
  "key": "internalAlerts",
@@ -11391,7 +11870,8 @@ export const data = {
11391
11870
  "processing",
11392
11871
  "done",
11393
11872
  "canceled",
11394
- "fail"
11873
+ "fail",
11874
+ "deleted"
11395
11875
  ]
11396
11876
  },
11397
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/integrations.d.ts CHANGED
@@ -9,8 +9,12 @@ export interface IntegrationsService {
9
9
  ImportSegmentPiano(request: ImportSegmentPianoRequest): Promise<ImportSegmentPianoResponse>;
10
10
  GetHubspotConfiguration(request: GetHubspotConfigurationRequest): Promise<GetHubspotConfigurationResponse>;
11
11
  GetShopifyConfiguration(request: GetShopifyConfigurationRequest): Promise<GetShopifyConfigurationResponse>;
12
+ GetStripeAuthURL(request: GetStripeAuthURLRequest): Promise<GetStripeAuthURLResponse>;
13
+ HandleStripeAuthCallback(request: HandleStripeAuthCallbackRequest): Promise<HandleStripeAuthCallbackResponse>;
14
+ GetStripeConfiguration(request: GetStripeConfigurationRequest): Promise<GetStripeConfigurationResponse>;
15
+ DeleteStripeConfiguration(request: DeleteStripeConfigurationRequest): Promise<DeleteStripeConfigurationResponse>;
12
16
  }
13
- export type Integration = 'UNKNOWN' | 'SEGMENT' | 'PIANO' | 'WEBHOOK' | 'HUBSPOT' | 'SHOPIFY';
17
+ export type Integration = 'UNKNOWN' | 'SEGMENT' | 'PIANO' | 'WEBHOOK' | 'HUBSPOT' | 'SHOPIFY' | 'STRIPE';
14
18
  export type ImportSegmentPianoRequest = {
15
19
  application?: string;
16
20
  segmentKey?: string;
@@ -120,3 +124,21 @@ export type GetShopifyConfigurationResponse = {
120
124
  deviceApiKey: string;
121
125
  mainApplication: boolean;
122
126
  };
127
+ export type GetStripeAuthURLRequest = {
128
+ redirectUri?: string;
129
+ };
130
+ export type GetStripeAuthURLResponse = {
131
+ authUrl: string;
132
+ };
133
+ export type HandleStripeAuthCallbackRequest = {
134
+ code?: string;
135
+ applicationCode?: string;
136
+ };
137
+ export type HandleStripeAuthCallbackResponse = {};
138
+ export type GetStripeConfigurationRequest = {};
139
+ export type GetStripeConfigurationResponse = {
140
+ email: string;
141
+ businessName: string;
142
+ };
143
+ export type DeleteStripeConfigurationRequest = {};
144
+ export type DeleteStripeConfigurationResponse = {};
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.770",
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",