@pushwoosh/rpc-v2-http-api-data 0.1.883 → 0.1.885
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/account_groups.d.ts +9 -0
- package/account_invites.d.ts +2 -0
- package/account_overview.d.ts +21 -0
- package/account_users.d.ts +3 -0
- package/accounts.d.ts +29 -0
- package/accounts_get_auth_info.d.ts +4 -0
- package/api_tokens.d.ts +1 -0
- package/applications.d.ts +7 -0
- package/applications_alerts.d.ts +7 -1
- package/applications_groups.d.ts +2 -0
- package/applications_statistics.d.ts +28 -0
- package/categories.d.ts +1 -0
- package/cloud_pages.d.ts +2 -0
- package/data.js +330 -1314
- package/deeplinks.d.ts +3 -0
- package/devices.d.ts +5 -0
- package/email_categories.d.ts +3 -0
- package/emails_configurations.d.ts +1 -0
- package/events.d.ts +3 -0
- package/filters.d.ts +28 -0
- package/inapp_messages.d.ts +13 -0
- package/integrations.d.ts +38 -0
- package/ios_categories.d.ts +1 -0
- package/kakao_presets.d.ts +2 -0
- package/line_presets.d.ts +5 -0
- package/messages.d.ts +15 -2
- package/package.json +1 -1
- package/presets.d.ts +71 -0
- package/pushwoosh_accounts_alerts_v1.d.ts +2 -0
- package/pushwoosh_channels_messagingApi_v2.d.ts +51 -2
- package/pushwoosh_export_messages_v2.d.ts +17 -2
- package/pushwoosh_objects_filters_v1.d.ts +70 -11
- package/pushwoosh_objects_restrictionValues_v1.d.ts +86 -427
- package/pushwoosh_rpc_errors_v3.d.ts +20 -0
- package/pushwoosh_rpc_popup_forms_contents_v3.d.ts +48 -0
- package/pushwoosh_rpc_segments_v3.d.ts +54 -0
- package/referral_partners.d.ts +1 -0
- package/rich_medias.d.ts +6 -0
- package/sms_presets.d.ts +5 -0
- package/statistics_dashboards_widgets.d.ts +291 -3
- package/tags.d.ts +3 -0
- package/test_devices.d.ts +37 -0
- package/types.d.ts +6 -0
- package/whatsapp.d.ts +10 -0
- package/whatsapp_presets.d.ts +3 -0
package/whatsapp_presets.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface WhatsAppPresetsService {
|
|
|
7
7
|
}
|
|
8
8
|
export type ListWhatsAppPresetsRequest = {
|
|
9
9
|
application?: string;
|
|
10
|
+
/** like %name% or content */
|
|
10
11
|
searchByName?: string;
|
|
11
12
|
};
|
|
12
13
|
export type WhatsAppPreset = {
|
|
@@ -19,12 +20,14 @@ export type WhatsAppPreset = {
|
|
|
19
20
|
export type WhatsAppPresetProperties = {
|
|
20
21
|
contentId: string;
|
|
21
22
|
text: string;
|
|
23
|
+
/** field not set in the code, maybe used in clients */
|
|
22
24
|
variables: Record<string, string>;
|
|
23
25
|
quickReplies: string[];
|
|
24
26
|
buttonUrlVariables: ButtonVariable[];
|
|
25
27
|
headerType: string;
|
|
26
28
|
headerText: string;
|
|
27
29
|
headerVariables: string[];
|
|
30
|
+
/** New field to replace 'variables' without changing type */
|
|
28
31
|
variableList: string[];
|
|
29
32
|
};
|
|
30
33
|
export type ButtonVariable = {
|