@pushwoosh/rpc-v2-http-api-data 0.1.541 → 0.1.542
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 +19 -2
- package/line_presets.d.ts +8 -2
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -8105,7 +8105,7 @@ export const data = {
|
|
|
8105
8105
|
"type": "pushwoosh.rpc_v2.line_presets.ImageCarouselTemplate"
|
|
8106
8106
|
},
|
|
8107
8107
|
"raw": {
|
|
8108
|
-
"type": "
|
|
8108
|
+
"type": "pushwoosh.rpc_v2.line_presets.RawTemplate"
|
|
8109
8109
|
}
|
|
8110
8110
|
},
|
|
8111
8111
|
"oneofs": {
|
|
@@ -8121,7 +8121,10 @@ export const data = {
|
|
|
8121
8121
|
"pushwoosh.rpc_v2.line_presets.ImageTemplate": {
|
|
8122
8122
|
"type": "I",
|
|
8123
8123
|
"fields": {
|
|
8124
|
-
"
|
|
8124
|
+
"imageUrl": {
|
|
8125
|
+
"type": "string"
|
|
8126
|
+
},
|
|
8127
|
+
"previewImageUrl": {
|
|
8125
8128
|
"type": "string"
|
|
8126
8129
|
}
|
|
8127
8130
|
}
|
|
@@ -8129,12 +8132,26 @@ export const data = {
|
|
|
8129
8132
|
"pushwoosh.rpc_v2.line_presets.ImageCarouselTemplate": {
|
|
8130
8133
|
"type": "I",
|
|
8131
8134
|
"fields": {
|
|
8135
|
+
"altText": {
|
|
8136
|
+
"type": "string"
|
|
8137
|
+
},
|
|
8132
8138
|
"columns": {
|
|
8133
8139
|
"type": "pushwoosh.rpc_v2.line_presets.ImageTemplate",
|
|
8134
8140
|
"array": true
|
|
8135
8141
|
}
|
|
8136
8142
|
}
|
|
8137
8143
|
},
|
|
8144
|
+
"pushwoosh.rpc_v2.line_presets.RawTemplate": {
|
|
8145
|
+
"type": "I",
|
|
8146
|
+
"fields": {
|
|
8147
|
+
"altText": {
|
|
8148
|
+
"type": "string"
|
|
8149
|
+
},
|
|
8150
|
+
"content": {
|
|
8151
|
+
"type": "object"
|
|
8152
|
+
}
|
|
8153
|
+
}
|
|
8154
|
+
},
|
|
8138
8155
|
"pushwoosh.rpc_v2.line_presets.LinePreset": {
|
|
8139
8156
|
"type": "I",
|
|
8140
8157
|
"fields": {
|
package/line_presets.d.ts
CHANGED
|
@@ -26,18 +26,24 @@ export type Template_kind_imageCarousel = {
|
|
|
26
26
|
};
|
|
27
27
|
export type Template_kind_raw = {
|
|
28
28
|
type: 'raw';
|
|
29
|
-
data:
|
|
29
|
+
data: RawTemplate;
|
|
30
30
|
};
|
|
31
31
|
export type Template_kind = Template_kind_image | Template_kind_imageCarousel | Template_kind_raw;
|
|
32
32
|
export type Template = {
|
|
33
33
|
kind: Template_kind;
|
|
34
34
|
};
|
|
35
35
|
export type ImageTemplate = {
|
|
36
|
-
|
|
36
|
+
imageUrl: string;
|
|
37
|
+
previewImageUrl: string;
|
|
37
38
|
};
|
|
38
39
|
export type ImageCarouselTemplate = {
|
|
40
|
+
altText: string;
|
|
39
41
|
columns: ImageTemplate[];
|
|
40
42
|
};
|
|
43
|
+
export type RawTemplate = {
|
|
44
|
+
altText: string;
|
|
45
|
+
content: object;
|
|
46
|
+
};
|
|
41
47
|
export type LinePreset = {
|
|
42
48
|
name: string;
|
|
43
49
|
code: string;
|