@pushwoosh/rpc-v2-http-api-data 0.1.914 → 0.1.916

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
@@ -10931,6 +10931,9 @@ export const data = {
10931
10931
  },
10932
10932
  "example": {
10933
10933
  "type": "string"
10934
+ },
10935
+ "triggeredCount": {
10936
+ "type": "number"
10934
10937
  }
10935
10938
  }
10936
10939
  },
@@ -22316,6 +22319,9 @@ export const data = {
22316
22319
  "categories": {
22317
22320
  "type": "string",
22318
22321
  "array": true
22322
+ },
22323
+ "closeButtonType": {
22324
+ "type": "boolean"
22319
22325
  }
22320
22326
  }
22321
22327
  },
@@ -34,6 +34,8 @@ export type InboundWebhook = {
34
34
  attributesMapping: EventAttributeItem[];
35
35
  status: Status;
36
36
  example: string;
37
+ /** Number of webhook triggers in the last 30 days */
38
+ triggeredCount: number;
37
39
  };
38
40
  export type GetInboundWebhookRequest = {
39
41
  application?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.914",
3
+ "version": "0.1.916",
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
@@ -55,6 +55,7 @@ export type RichMedia = {
55
55
  updateDate: Date;
56
56
  createdType: RichMedia_CreatedType;
57
57
  categories: string[];
58
+ closeButtonType: boolean;
58
59
  };
59
60
  export type GetRequest = {
60
61
  application?: string;