@pushwoosh/rpc-v2-http-api-data 0.1.740 → 0.1.742
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 +24 -2
- package/filters.d.ts +6 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -8631,6 +8631,9 @@ export const data = {
|
|
|
8631
8631
|
"fields": {
|
|
8632
8632
|
"filter": {
|
|
8633
8633
|
"type": "string"
|
|
8634
|
+
},
|
|
8635
|
+
"onlyActiveCampaigns": {
|
|
8636
|
+
"type": "boolean"
|
|
8634
8637
|
}
|
|
8635
8638
|
}
|
|
8636
8639
|
},
|
|
@@ -8649,8 +8652,13 @@ export const data = {
|
|
|
8649
8652
|
"pointsType": {
|
|
8650
8653
|
"type": "number",
|
|
8651
8654
|
"array": true
|
|
8655
|
+
},
|
|
8656
|
+
"activationDate": {
|
|
8657
|
+
"type": "Date",
|
|
8658
|
+
"optional": true
|
|
8652
8659
|
}
|
|
8653
|
-
}
|
|
8660
|
+
},
|
|
8661
|
+
"oneofs": {}
|
|
8654
8662
|
},
|
|
8655
8663
|
"pushwoosh.rpc_v2.filters.GetFilterUsageResponse.OTM": {
|
|
8656
8664
|
"type": "I",
|
|
@@ -8663,6 +8671,12 @@ export const data = {
|
|
|
8663
8671
|
},
|
|
8664
8672
|
"status": {
|
|
8665
8673
|
"type": "number"
|
|
8674
|
+
},
|
|
8675
|
+
"sendDate": {
|
|
8676
|
+
"type": "Date"
|
|
8677
|
+
},
|
|
8678
|
+
"platform": {
|
|
8679
|
+
"type": "number"
|
|
8666
8680
|
}
|
|
8667
8681
|
}
|
|
8668
8682
|
},
|
|
@@ -8677,8 +8691,13 @@ export const data = {
|
|
|
8677
8691
|
},
|
|
8678
8692
|
"status": {
|
|
8679
8693
|
"type": "string"
|
|
8694
|
+
},
|
|
8695
|
+
"activationDate": {
|
|
8696
|
+
"type": "Date",
|
|
8697
|
+
"optional": true
|
|
8680
8698
|
}
|
|
8681
|
-
}
|
|
8699
|
+
},
|
|
8700
|
+
"oneofs": {}
|
|
8682
8701
|
},
|
|
8683
8702
|
"pushwoosh.rpc_v2.filters.GetFilterUsageResponse.Preset": {
|
|
8684
8703
|
"type": "I",
|
|
@@ -8688,6 +8707,9 @@ export const data = {
|
|
|
8688
8707
|
},
|
|
8689
8708
|
"name": {
|
|
8690
8709
|
"type": "string"
|
|
8710
|
+
},
|
|
8711
|
+
"creationDate": {
|
|
8712
|
+
"type": "Date"
|
|
8691
8713
|
}
|
|
8692
8714
|
}
|
|
8693
8715
|
},
|
package/filters.d.ts
CHANGED
|
@@ -156,26 +156,32 @@ export type GetMatchedSegmentsResponse = {
|
|
|
156
156
|
};
|
|
157
157
|
export type GetFilterUsageRequest = {
|
|
158
158
|
filter?: string;
|
|
159
|
+
onlyActiveCampaigns?: boolean;
|
|
159
160
|
};
|
|
160
161
|
export type GetFilterUsageResponse_Journey = {
|
|
161
162
|
uuid: string;
|
|
162
163
|
title: string;
|
|
163
164
|
status: number;
|
|
164
165
|
pointsType: number[];
|
|
166
|
+
activationDate?: Date;
|
|
165
167
|
};
|
|
166
168
|
export type GetFilterUsageResponse_OTM = {
|
|
167
169
|
code: string;
|
|
168
170
|
name: string;
|
|
169
171
|
status: number;
|
|
172
|
+
sendDate: Date;
|
|
173
|
+
platform: number;
|
|
170
174
|
};
|
|
171
175
|
export type GetFilterUsageResponse_Inapp = {
|
|
172
176
|
code: string;
|
|
173
177
|
name: string;
|
|
174
178
|
status: string;
|
|
179
|
+
activationDate?: Date;
|
|
175
180
|
};
|
|
176
181
|
export type GetFilterUsageResponse_Preset = {
|
|
177
182
|
code: string;
|
|
178
183
|
name: string;
|
|
184
|
+
creationDate: Date;
|
|
179
185
|
};
|
|
180
186
|
export type GetFilterUsageResponse = {
|
|
181
187
|
journeys: GetFilterUsageResponse_Journey[];
|