@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.
Files changed (45) hide show
  1. package/account_groups.d.ts +9 -0
  2. package/account_invites.d.ts +2 -0
  3. package/account_overview.d.ts +21 -0
  4. package/account_users.d.ts +3 -0
  5. package/accounts.d.ts +29 -0
  6. package/accounts_get_auth_info.d.ts +4 -0
  7. package/api_tokens.d.ts +1 -0
  8. package/applications.d.ts +7 -0
  9. package/applications_alerts.d.ts +7 -1
  10. package/applications_groups.d.ts +2 -0
  11. package/applications_statistics.d.ts +28 -0
  12. package/categories.d.ts +1 -0
  13. package/cloud_pages.d.ts +2 -0
  14. package/data.js +330 -1314
  15. package/deeplinks.d.ts +3 -0
  16. package/devices.d.ts +5 -0
  17. package/email_categories.d.ts +3 -0
  18. package/emails_configurations.d.ts +1 -0
  19. package/events.d.ts +3 -0
  20. package/filters.d.ts +28 -0
  21. package/inapp_messages.d.ts +13 -0
  22. package/integrations.d.ts +38 -0
  23. package/ios_categories.d.ts +1 -0
  24. package/kakao_presets.d.ts +2 -0
  25. package/line_presets.d.ts +5 -0
  26. package/messages.d.ts +15 -2
  27. package/package.json +1 -1
  28. package/presets.d.ts +71 -0
  29. package/pushwoosh_accounts_alerts_v1.d.ts +2 -0
  30. package/pushwoosh_channels_messagingApi_v2.d.ts +51 -2
  31. package/pushwoosh_export_messages_v2.d.ts +17 -2
  32. package/pushwoosh_objects_filters_v1.d.ts +70 -11
  33. package/pushwoosh_objects_restrictionValues_v1.d.ts +86 -427
  34. package/pushwoosh_rpc_errors_v3.d.ts +20 -0
  35. package/pushwoosh_rpc_popup_forms_contents_v3.d.ts +48 -0
  36. package/pushwoosh_rpc_segments_v3.d.ts +54 -0
  37. package/referral_partners.d.ts +1 -0
  38. package/rich_medias.d.ts +6 -0
  39. package/sms_presets.d.ts +5 -0
  40. package/statistics_dashboards_widgets.d.ts +291 -3
  41. package/tags.d.ts +3 -0
  42. package/test_devices.d.ts +37 -0
  43. package/types.d.ts +6 -0
  44. package/whatsapp.d.ts +10 -0
  45. package/whatsapp_presets.d.ts +3 -0
@@ -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 = {