@pushwoosh/rpc-v2-http-api-data 0.1.480 → 0.1.482
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/data.js +9 -0
- package/package.json +1 -1
- package/presets.d.ts +3 -0
package/data.js
CHANGED
|
@@ -16369,6 +16369,9 @@ export const data = {
|
|
|
16369
16369
|
"hidden": {
|
|
16370
16370
|
"type": "boolean"
|
|
16371
16371
|
},
|
|
16372
|
+
"openAction": {
|
|
16373
|
+
"type": "pushwoosh.channels.messagingApi.v2.OpenAction"
|
|
16374
|
+
},
|
|
16372
16375
|
"openActions": {
|
|
16373
16376
|
"type": "pushwoosh.channels.messagingApi.v2.OpenAction",
|
|
16374
16377
|
"mapKeyType": "number"
|
|
@@ -16486,6 +16489,9 @@ export const data = {
|
|
|
16486
16489
|
"hidden": {
|
|
16487
16490
|
"type": "boolean"
|
|
16488
16491
|
},
|
|
16492
|
+
"openAction": {
|
|
16493
|
+
"type": "pushwoosh.channels.messagingApi.v2.OpenAction"
|
|
16494
|
+
},
|
|
16489
16495
|
"openActions": {
|
|
16490
16496
|
"type": "pushwoosh.channels.messagingApi.v2.OpenAction",
|
|
16491
16497
|
"mapKeyType": "number"
|
|
@@ -16568,6 +16574,9 @@ export const data = {
|
|
|
16568
16574
|
"icon": {
|
|
16569
16575
|
"type": "string"
|
|
16570
16576
|
},
|
|
16577
|
+
"openAction": {
|
|
16578
|
+
"type": "pushwoosh.channels.messagingApi.v2.OpenAction"
|
|
16579
|
+
},
|
|
16571
16580
|
"openActions": {
|
|
16572
16581
|
"type": "pushwoosh.channels.messagingApi.v2.OpenAction",
|
|
16573
16582
|
"mapKeyType": "number"
|
package/package.json
CHANGED
package/presets.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export type Preset = {
|
|
|
53
53
|
icon: string;
|
|
54
54
|
journeyUuid: string;
|
|
55
55
|
hidden: boolean;
|
|
56
|
+
openAction: pushwoosh_channels_messagingApi_v2_OpenAction;
|
|
56
57
|
openActions: Record<number, pushwoosh_channels_messagingApi_v2_OpenAction>;
|
|
57
58
|
platformProperties: Record<string, PlatformProperties>;
|
|
58
59
|
};
|
|
@@ -90,6 +91,7 @@ export type CreatePresetRequest = {
|
|
|
90
91
|
icon?: string;
|
|
91
92
|
journeyUuid?: string;
|
|
92
93
|
hidden?: boolean;
|
|
94
|
+
openAction?: pushwoosh_channels_messagingApi_v2_OpenAction;
|
|
93
95
|
openActions?: Record<number, pushwoosh_channels_messagingApi_v2_OpenAction>;
|
|
94
96
|
platformProperties?: Record<string, PlatformProperties>;
|
|
95
97
|
};
|
|
@@ -115,6 +117,7 @@ export type UpdatePresetRequest = {
|
|
|
115
117
|
categories?: string[];
|
|
116
118
|
banner?: string;
|
|
117
119
|
icon?: string;
|
|
120
|
+
openAction?: pushwoosh_channels_messagingApi_v2_OpenAction;
|
|
118
121
|
openActions?: Record<number, pushwoosh_channels_messagingApi_v2_OpenAction>;
|
|
119
122
|
platformProperties?: Record<string, PlatformProperties>;
|
|
120
123
|
};
|