@pushwoosh/rpc-v2-http-api-data 0.1.918 → 0.1.920

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 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
  },
@@ -24659,9 +24670,6 @@ export const data = {
24659
24670
  "system": {
24660
24671
  "type": "boolean"
24661
24672
  },
24662
- "appSpecific": {
24663
- "type": "boolean"
24664
- },
24665
24673
  "userSpecific": {
24666
24674
  "type": "boolean"
24667
24675
  },
@@ -24679,9 +24687,6 @@ export const data = {
24679
24687
  "type": {
24680
24688
  "type": "pushwoosh.rpc_v2.tags.Tag.Type"
24681
24689
  },
24682
- "appSpecific": {
24683
- "type": "boolean"
24684
- },
24685
24690
  "userSpecific": {
24686
24691
  "type": "boolean"
24687
24692
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.918",
3
+ "version": "0.1.920",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
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;
package/tags.d.ts CHANGED
@@ -21,14 +21,12 @@ export type Tag = {
21
21
  name: string;
22
22
  type: Tag_Type;
23
23
  system: boolean;
24
- appSpecific: boolean;
25
24
  userSpecific: boolean;
26
25
  hasRightAceModify: boolean;
27
26
  };
28
27
  export type CreateTagRequest = {
29
28
  name?: string;
30
29
  type?: Tag_Type;
31
- appSpecific?: boolean;
32
30
  userSpecific?: boolean;
33
31
  };
34
32
  export type CreateTagResponse = {