@pushwoosh/rpc-v2-http-api-data 0.1.913 → 0.1.915

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
@@ -10565,6 +10565,9 @@ export const data = {
10565
10565
  "richMediaCode": {
10566
10566
  "type": "string"
10567
10567
  },
10568
+ "richMediaName": {
10569
+ "type": "string"
10570
+ },
10568
10571
  "totalTriggered": {
10569
10572
  "type": "number"
10570
10573
  },
@@ -10928,6 +10931,9 @@ export const data = {
10928
10931
  },
10929
10932
  "example": {
10930
10933
  "type": "string"
10934
+ },
10935
+ "triggeredCount": {
10936
+ "type": "number"
10931
10937
  }
10932
10938
  }
10933
10939
  },
@@ -46,6 +46,7 @@ export type Inapp = {
46
46
  segment: string;
47
47
  priority: number;
48
48
  richMediaCode: string;
49
+ richMediaName: string;
49
50
  totalTriggered: number;
50
51
  impressions: number;
51
52
  interactions: number;
@@ -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.913",
3
+ "version": "0.1.915",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
package/presets.d.ts CHANGED
@@ -30,6 +30,7 @@ export type ListPresetsRequest = {
30
30
  /** in ['category'] */
31
31
  searchByCategory?: string[];
32
32
  showHidden?: boolean;
33
+ /** Deprecated: used only by the legacy send push form. */
33
34
  isDefault?: boolean;
34
35
  };
35
36
  export type PlatformProperties = {