@pushwoosh/rpc-gateway-journey-data 0.27.86 → 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 +21 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +5 -0
package/data.js
CHANGED
|
@@ -4138,6 +4138,14 @@ export const data = {
|
|
|
4138
4138
|
}
|
|
4139
4139
|
}
|
|
4140
4140
|
},
|
|
4141
|
+
"pushwoosh.cj.journey.PointParamsFilter.LoadPolicy": {
|
|
4142
|
+
"type": "E",
|
|
4143
|
+
"values": [
|
|
4144
|
+
"UNKNOWN",
|
|
4145
|
+
"ALL",
|
|
4146
|
+
"FILTER"
|
|
4147
|
+
]
|
|
4148
|
+
},
|
|
4141
4149
|
"pushwoosh.cj.journey.PointParamsFilter": {
|
|
4142
4150
|
"type": "I",
|
|
4143
4151
|
"fields": {
|
|
@@ -4150,6 +4158,9 @@ export const data = {
|
|
|
4150
4158
|
"channels": {
|
|
4151
4159
|
"type": "pushwoosh.cj.journey.ChannelCheck",
|
|
4152
4160
|
"array": true
|
|
4161
|
+
},
|
|
4162
|
+
"loadPolicy": {
|
|
4163
|
+
"type": "pushwoosh.cj.journey.PointParamsFilter.LoadPolicy"
|
|
4153
4164
|
}
|
|
4154
4165
|
}
|
|
4155
4166
|
},
|
|
@@ -4450,6 +4461,10 @@ export const data = {
|
|
|
4450
4461
|
"responseMapping": {
|
|
4451
4462
|
"type": "pushwoosh.cj.journey.WebhookResponseMapping",
|
|
4452
4463
|
"array": true
|
|
4464
|
+
},
|
|
4465
|
+
"secretHeaders": {
|
|
4466
|
+
"type": "string",
|
|
4467
|
+
"array": true
|
|
4453
4468
|
}
|
|
4454
4469
|
}
|
|
4455
4470
|
},
|
|
@@ -5168,6 +5183,9 @@ export const data = {
|
|
|
5168
5183
|
},
|
|
5169
5184
|
"allowJourneyVersioning": {
|
|
5170
5185
|
"type": "boolean"
|
|
5186
|
+
},
|
|
5187
|
+
"allowCjSplitterDeviceCheck": {
|
|
5188
|
+
"type": "boolean"
|
|
5171
5189
|
}
|
|
5172
5190
|
}
|
|
5173
5191
|
},
|
|
@@ -6032,6 +6050,9 @@ export const data = {
|
|
|
6032
6050
|
"type": "string",
|
|
6033
6051
|
"mapKeyType": "string"
|
|
6034
6052
|
},
|
|
6053
|
+
"pointUuid": {
|
|
6054
|
+
"type": "string"
|
|
6055
|
+
},
|
|
6035
6056
|
"templateData": {
|
|
6036
6057
|
"type": "pushwoosh.cj.journey.TestWebhookRequest.TemplateData"
|
|
6037
6058
|
}
|
package/package.json
CHANGED
|
@@ -1503,10 +1503,12 @@ export type ChannelCheck = {
|
|
|
1503
1503
|
channel: ReachabilityChannel;
|
|
1504
1504
|
platformGroups: PlatformGroup[];
|
|
1505
1505
|
};
|
|
1506
|
+
export type PointParamsFilter_LoadPolicy = 'UNKNOWN' | 'ALL' | 'FILTER';
|
|
1506
1507
|
export type PointParamsFilter = {
|
|
1507
1508
|
filter: Filter;
|
|
1508
1509
|
filterRaw: string;
|
|
1509
1510
|
channels: ChannelCheck[];
|
|
1511
|
+
loadPolicy: PointParamsFilter_LoadPolicy;
|
|
1510
1512
|
};
|
|
1511
1513
|
export type BehaviorSplitter = {
|
|
1512
1514
|
enabled: boolean;
|
|
@@ -1619,6 +1621,7 @@ export type PointParamsWebHook = {
|
|
|
1619
1621
|
disabled: boolean;
|
|
1620
1622
|
reactivate: boolean;
|
|
1621
1623
|
responseMapping: WebhookResponseMapping[];
|
|
1624
|
+
secretHeaders: string[];
|
|
1622
1625
|
};
|
|
1623
1626
|
export type AudienceSyncAction = 'AUDIENCE_SYNC_ACTION_UNSPECIFIED' | 'AUDIENCE_SYNC_ACTION_ADD' | 'AUDIENCE_SYNC_ACTION_REMOVE';
|
|
1624
1627
|
export type PointParamsAudienceSync = {
|
|
@@ -1868,6 +1871,7 @@ export type AccountRestrictionValues = {
|
|
|
1868
1871
|
allowCjEmailBcc: boolean;
|
|
1869
1872
|
allowCjLine: boolean;
|
|
1870
1873
|
allowJourneyVersioning: boolean;
|
|
1874
|
+
allowCjSplitterDeviceCheck: boolean;
|
|
1871
1875
|
};
|
|
1872
1876
|
export type GetJourneyGeneralTimeStatisticsRequest = {
|
|
1873
1877
|
uuid?: string;
|
|
@@ -2148,6 +2152,7 @@ export type TestWebhookRequest = {
|
|
|
2148
2152
|
url?: string;
|
|
2149
2153
|
template?: string;
|
|
2150
2154
|
headers?: Record<string, string>;
|
|
2155
|
+
pointUuid?: string;
|
|
2151
2156
|
templateData?: TestWebhookRequest_TemplateData;
|
|
2152
2157
|
};
|
|
2153
2158
|
export type TestWebhookResponse = {
|