@pushwoosh/rpc-gateway-journey-data 0.26.392 → 0.26.393
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/commonTypes.js +0 -1
- package/data.js +3 -4
- package/index.js +0 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -1
- package/pushwoosh_cj_journey.js +0 -1
- package/pushwoosh_cj_journey_category.js +0 -1
- package/pushwoosh_objects_filters_v1.js +0 -1
package/commonTypes.js
CHANGED
package/data.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
/* Autogenerated code */
|
|
3
2
|
export const data = {
|
|
4
3
|
"pushwoosh.cj.journey.Journey": {
|
|
5
4
|
"type": "S",
|
|
@@ -297,7 +296,7 @@ export const data = {
|
|
|
297
296
|
"request": "pushwoosh.cj.journey.GetEventAttributeValuesRequest",
|
|
298
297
|
"response": "pushwoosh.cj.journey.GetEventAttributeValuesResponse",
|
|
299
298
|
"method": "get",
|
|
300
|
-
"path": "/api/v2/application/
|
|
299
|
+
"path": "/api/v2/application/event-attribute-values"
|
|
301
300
|
},
|
|
302
301
|
"GetRichMediaByApplicationCode": {
|
|
303
302
|
"request": "pushwoosh.cj.journey.GetRichMediaByApplicationCodeRequest",
|
|
@@ -309,7 +308,7 @@ export const data = {
|
|
|
309
308
|
"request": "pushwoosh.cj.journey.GetRichMediaByCodeRequest",
|
|
310
309
|
"response": "pushwoosh.cj.journey.GetRichMediaByCodeResponse",
|
|
311
310
|
"method": "get",
|
|
312
|
-
"path": "/api/v2/application/
|
|
311
|
+
"path": "/api/v2/application/richmedia-by-code"
|
|
313
312
|
},
|
|
314
313
|
"TestWebhook": {
|
|
315
314
|
"request": "pushwoosh.cj.journey.TestWebhookRequest",
|
|
@@ -948,7 +947,7 @@ export const data = {
|
|
|
948
947
|
"type": "number"
|
|
949
948
|
},
|
|
950
949
|
"avrCTR": {
|
|
951
|
-
"type": "
|
|
950
|
+
"type": "google.protobuf.DoubleValue"
|
|
952
951
|
}
|
|
953
952
|
}
|
|
954
953
|
},
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DoubleValue as google_protobuf_DoubleValue } from './google_protobuf';
|
|
1
2
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
2
3
|
export interface Journey {
|
|
3
4
|
GetJourneysList(request: GetJourneysListRequest): Promise<GetJourneysListResponse>;
|
|
@@ -313,7 +314,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
313
314
|
export type JourneySummaryStats = {
|
|
314
315
|
in: number;
|
|
315
316
|
goals: number;
|
|
316
|
-
avrCTR:
|
|
317
|
+
avrCTR: google_protobuf_DoubleValue;
|
|
317
318
|
};
|
|
318
319
|
export type RenameRequest = {
|
|
319
320
|
uuid?: string;
|
package/pushwoosh_cj_journey.js
CHANGED