@pushwoosh/rpc-v2-http-api-data 0.1.917 → 0.1.919
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 +11 -0
- package/package.json +1 -1
- package/rich_medias.d.ts +3 -0
package/data.js
CHANGED
|
@@ -22887,6 +22887,10 @@ export const data = {
|
|
|
22887
22887
|
},
|
|
22888
22888
|
"editorJson": {
|
|
22889
22889
|
"type": "string"
|
|
22890
|
+
},
|
|
22891
|
+
"closeButtonType": {
|
|
22892
|
+
"type": "boolean",
|
|
22893
|
+
"optional": true
|
|
22890
22894
|
}
|
|
22891
22895
|
}
|
|
22892
22896
|
},
|
|
@@ -22914,6 +22918,13 @@ export const data = {
|
|
|
22914
22918
|
"styleSettings": {
|
|
22915
22919
|
"type": "string",
|
|
22916
22920
|
"optional": true
|
|
22921
|
+
},
|
|
22922
|
+
"closeButtonType": {
|
|
22923
|
+
"type": "boolean",
|
|
22924
|
+
"optional": true
|
|
22925
|
+
},
|
|
22926
|
+
"inputGroups": {
|
|
22927
|
+
"type": "string"
|
|
22917
22928
|
}
|
|
22918
22929
|
}
|
|
22919
22930
|
},
|
package/package.json
CHANGED
package/rich_medias.d.ts
CHANGED
|
@@ -247,6 +247,7 @@ export type GetBlockTemplateResponse = {
|
|
|
247
247
|
defaultLanguage: string;
|
|
248
248
|
inputGroups: string;
|
|
249
249
|
editorJson: string;
|
|
250
|
+
closeButtonType?: boolean;
|
|
250
251
|
};
|
|
251
252
|
export type SaveBlockTemplateRequest = {
|
|
252
253
|
code?: string;
|
|
@@ -256,6 +257,8 @@ export type SaveBlockTemplateRequest = {
|
|
|
256
257
|
localization?: string;
|
|
257
258
|
defaultLanguage?: string;
|
|
258
259
|
styleSettings?: string;
|
|
260
|
+
closeButtonType?: boolean;
|
|
261
|
+
inputGroups?: string;
|
|
259
262
|
};
|
|
260
263
|
export type SaveBlockTemplateResponse = {
|
|
261
264
|
code: string;
|