@pushwoosh/rpc-gateway-journey-data 0.27.87 → 0.27.88

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
@@ -4461,6 +4461,10 @@ export const data = {
4461
4461
  "responseMapping": {
4462
4462
  "type": "pushwoosh.cj.journey.WebhookResponseMapping",
4463
4463
  "array": true
4464
+ },
4465
+ "secretHeaders": {
4466
+ "type": "string",
4467
+ "array": true
4464
4468
  }
4465
4469
  }
4466
4470
  },
@@ -6046,6 +6050,9 @@ export const data = {
6046
6050
  "type": "string",
6047
6051
  "mapKeyType": "string"
6048
6052
  },
6053
+ "pointUuid": {
6054
+ "type": "string"
6055
+ },
6049
6056
  "templateData": {
6050
6057
  "type": "pushwoosh.cj.journey.TestWebhookRequest.TemplateData"
6051
6058
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.87",
3
+ "version": "0.27.88",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1621,6 +1621,7 @@ export type PointParamsWebHook = {
1621
1621
  disabled: boolean;
1622
1622
  reactivate: boolean;
1623
1623
  responseMapping: WebhookResponseMapping[];
1624
+ secretHeaders: string[];
1624
1625
  };
1625
1626
  export type AudienceSyncAction = 'AUDIENCE_SYNC_ACTION_UNSPECIFIED' | 'AUDIENCE_SYNC_ACTION_ADD' | 'AUDIENCE_SYNC_ACTION_REMOVE';
1626
1627
  export type PointParamsAudienceSync = {
@@ -2151,6 +2152,7 @@ export type TestWebhookRequest = {
2151
2152
  url?: string;
2152
2153
  template?: string;
2153
2154
  headers?: Record<string, string>;
2155
+ pointUuid?: string;
2154
2156
  templateData?: TestWebhookRequest_TemplateData;
2155
2157
  };
2156
2158
  export type TestWebhookResponse = {