@pushwoosh/rpc-v2-http-api-data 0.1.405 → 0.1.407
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.
- package/accounts.d.ts +6 -6
- package/api_tokens.d.ts +12 -12
- package/applications_configurations.d.ts +24 -24
- package/data.js +2318 -0
- package/events.d.ts +12 -12
- package/export_messages.d.ts +14 -0
- package/export_messages.js +2 -0
- package/filters.d.ts +4 -4
- package/google_api.d.ts +12 -12
- package/google_protobuf.d.ts +12 -12
- package/index.d.ts +2 -0
- package/messages.d.ts +4 -4
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +40 -40
- package/pushwoosh_export_messages_v2.d.ts +490 -0
- package/pushwoosh_export_messages_v2.js +2 -0
- package/pushwoosh_objects_filters_v1.d.ts +306 -306
- package/pushwoosh_objects_restrictionValues_v1.d.ts +216 -216
- package/pushwoosh_statistics_exportservice_v2.d.ts +490 -0
- package/pushwoosh_statistics_exportservice_v2.js +2 -0
package/accounts.d.ts
CHANGED
|
@@ -218,16 +218,16 @@ export type EmailContent_Raw = {
|
|
|
218
218
|
html: Record<string, string>;
|
|
219
219
|
};
|
|
220
220
|
export type EmailContent_kind_unlayer = {
|
|
221
|
-
|
|
222
|
-
|
|
221
|
+
type: 'unlayer';
|
|
222
|
+
data: EmailContent_Unlayer;
|
|
223
223
|
};
|
|
224
224
|
export type EmailContent_kind_pushwoosh = {
|
|
225
|
-
|
|
226
|
-
|
|
225
|
+
type: 'pushwoosh';
|
|
226
|
+
data: EmailContent_Pushwoosh;
|
|
227
227
|
};
|
|
228
228
|
export type EmailContent_kind_raw = {
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
type: 'raw';
|
|
230
|
+
data: EmailContent_Raw;
|
|
231
231
|
};
|
|
232
232
|
export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pushwoosh | EmailContent_kind_raw;
|
|
233
233
|
export type EmailContent = {
|
package/api_tokens.d.ts
CHANGED
|
@@ -82,28 +82,28 @@ export type GrantRightOnApplicationRequest_MessageGroups = {
|
|
|
82
82
|
applicationGroupCode: string;
|
|
83
83
|
};
|
|
84
84
|
export type GrantRightOnApplicationRequest_kind_modifyAccount = {
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
type: 'modifyAccount';
|
|
86
|
+
data: GrantRightOnApplicationRequest_ModifyAccount;
|
|
87
87
|
};
|
|
88
88
|
export type GrantRightOnApplicationRequest_kind_modifyApplication = {
|
|
89
|
-
|
|
90
|
-
|
|
89
|
+
type: 'modifyApplication';
|
|
90
|
+
data: GrantRightOnApplicationRequest_ModifyApplication;
|
|
91
91
|
};
|
|
92
92
|
export type GrantRightOnApplicationRequest_kind_modifyTag = {
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
type: 'modifyTag';
|
|
94
|
+
data: GrantRightOnApplicationRequest_ModifyTag;
|
|
95
95
|
};
|
|
96
96
|
export type GrantRightOnApplicationRequest_kind_modifyMessage = {
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
type: 'modifyMessage';
|
|
98
|
+
data: GrantRightOnApplicationRequest_ModifyMessage;
|
|
99
99
|
};
|
|
100
100
|
export type GrantRightOnApplicationRequest_kind_messageApplications = {
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
type: 'messageApplications';
|
|
102
|
+
data: GrantRightOnApplicationRequest_MessageApplications;
|
|
103
103
|
};
|
|
104
104
|
export type GrantRightOnApplicationRequest_kind_messageGroups = {
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
type: 'messageGroups';
|
|
106
|
+
data: GrantRightOnApplicationRequest_MessageGroups;
|
|
107
107
|
};
|
|
108
108
|
export type GrantRightOnApplicationRequest_kind = GrantRightOnApplicationRequest_kind_modifyAccount | GrantRightOnApplicationRequest_kind_modifyApplication | GrantRightOnApplicationRequest_kind_modifyTag | GrantRightOnApplicationRequest_kind_modifyMessage | GrantRightOnApplicationRequest_kind_messageApplications | GrantRightOnApplicationRequest_kind_messageGroups;
|
|
109
109
|
export type GrantRightOnApplicationRequest = {
|
|
@@ -71,52 +71,52 @@ export type FirefoxConfiguration = {
|
|
|
71
71
|
firefoxFcmServiceAccount: string;
|
|
72
72
|
};
|
|
73
73
|
export type ConfigurationRequest_kind_iosTokenConfiguration = {
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
type: 'iosTokenConfiguration';
|
|
75
|
+
data: IOSTokenConfiguration;
|
|
76
76
|
};
|
|
77
77
|
export type ConfigurationRequest_kind_androidConfiguration = {
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
type: 'androidConfiguration';
|
|
79
|
+
data: AndroidConfiguration;
|
|
80
80
|
};
|
|
81
81
|
export type ConfigurationRequest_kind_chromeConfiguration = {
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
type: 'chromeConfiguration';
|
|
83
|
+
data: ChromeConfiguration;
|
|
84
84
|
};
|
|
85
85
|
export type ConfigurationRequest_kind_emailConfiguration = {
|
|
86
|
-
|
|
87
|
-
|
|
86
|
+
type: 'emailConfiguration';
|
|
87
|
+
data: EmailConfiguration;
|
|
88
88
|
};
|
|
89
89
|
export type ConfigurationRequest_kind_xiaomiConfiguration = {
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
type: 'xiaomiConfiguration';
|
|
91
|
+
data: XiaomiConfiguration;
|
|
92
92
|
};
|
|
93
93
|
export type ConfigurationRequest_kind_huaweiConfiguration = {
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
type: 'huaweiConfiguration';
|
|
95
|
+
data: HuaweiConfiguration;
|
|
96
96
|
};
|
|
97
97
|
export type ConfigurationRequest_kind_safariConfiguration = {
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
type: 'safariConfiguration';
|
|
99
|
+
data: SafariConfiguration;
|
|
100
100
|
};
|
|
101
101
|
export type ConfigurationRequest_kind_windowsConfiguration = {
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
type: 'windowsConfiguration';
|
|
103
|
+
data: WindowsConfiguration;
|
|
104
104
|
};
|
|
105
105
|
export type ConfigurationRequest_kind_amazonConfiguration = {
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
type: 'amazonConfiguration';
|
|
107
|
+
data: AmazonConfiguration;
|
|
108
108
|
};
|
|
109
109
|
export type ConfigurationRequest_kind_osxConfiguration = {
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
type: 'osxConfiguration';
|
|
111
|
+
data: OSXConfiguration;
|
|
112
112
|
};
|
|
113
113
|
export type ConfigurationRequest_kind_iosConfiguration = {
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
type: 'iosConfiguration';
|
|
115
|
+
data: IOSConfiguration;
|
|
116
116
|
};
|
|
117
117
|
export type ConfigurationRequest_kind_firefoxConfiguration = {
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
type: 'firefoxConfiguration';
|
|
119
|
+
data: FirefoxConfiguration;
|
|
120
120
|
};
|
|
121
121
|
export type ConfigurationRequest_kind = ConfigurationRequest_kind_iosTokenConfiguration | ConfigurationRequest_kind_androidConfiguration | ConfigurationRequest_kind_chromeConfiguration | ConfigurationRequest_kind_emailConfiguration | ConfigurationRequest_kind_xiaomiConfiguration | ConfigurationRequest_kind_huaweiConfiguration | ConfigurationRequest_kind_safariConfiguration | ConfigurationRequest_kind_windowsConfiguration | ConfigurationRequest_kind_amazonConfiguration | ConfigurationRequest_kind_osxConfiguration | ConfigurationRequest_kind_iosConfiguration | ConfigurationRequest_kind_firefoxConfiguration;
|
|
122
122
|
export type ConfigurationRequest = {
|