@pushwoosh/rpc-gateway-journey-data 0.26.268 → 0.26.270
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 +3246 -2
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -1
- package/pushwoosh_objects_filters_v1.d.ts +1485 -0
- package/pushwoosh_objects_filters_v1.js +2 -0
package/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Journey as pushwoosh_cj_journey_Journey } from './pushwoosh_cj_journey';
|
|
2
2
|
import { Category as pushwoosh_cj_journey_category_Category } from './pushwoosh_cj_journey_category';
|
|
3
|
+
import { FiltersCrudService as pushwoosh_objects_filters_v1_FiltersCrudService } from './pushwoosh_objects_filters_v1';
|
|
3
4
|
export type API = {
|
|
4
5
|
journey: pushwoosh_cj_journey_Journey;
|
|
5
6
|
category: pushwoosh_cj_journey_category_Category;
|
|
7
|
+
filtersCrud: pushwoosh_objects_filters_v1_FiltersCrudService;
|
|
6
8
|
};
|
|
7
9
|
export { data } from './data';
|
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DoubleValue as google_protobuf_DoubleValue } from './google_protobuf';
|
|
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>;
|
|
4
5
|
GetJourneyByUUID(request: GetJourneyByUUIDRequest): Promise<GetJourneyByUUIDResponse>;
|
|
@@ -892,7 +893,7 @@ export type PointParamsBooleanSplitter = {
|
|
|
892
893
|
filterCode: string;
|
|
893
894
|
loadPolicy: PointParamsBooleanSplitter_LoadPolicy;
|
|
894
895
|
splitStrategy: PointParamsBooleanSplitter_SplitStrategy;
|
|
895
|
-
|
|
896
|
+
filterExpressions: pushwoosh_objects_filters_v1_FilterExpression[];
|
|
896
897
|
};
|
|
897
898
|
export type PointParamsWaitEvent = {
|
|
898
899
|
events: PointWaitEventInfo[];
|