@pushwoosh/rpc-gateway-journey-data 0.26.377 → 0.26.379

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
@@ -1887,7 +1887,8 @@ export const data = {
1887
1887
  "POINT_TYPE_AB_SPLITTER",
1888
1888
  "POINT_TYPE_SET_TAGS",
1889
1889
  "POINT_TYPE_WEBHOOK",
1890
- "POINT_TYPE_START_BY_API"
1890
+ "POINT_TYPE_START_BY_API",
1891
+ "POINT_TYPE_SEND_KAKAO"
1891
1892
  ]
1892
1893
  },
1893
1894
  "pushwoosh.cj.journey.Point": {
@@ -1976,6 +1977,9 @@ export const data = {
1976
1977
  },
1977
1978
  "sendLine": {
1978
1979
  "type": "pushwoosh.cj.journey.PointParamsSendLine"
1980
+ },
1981
+ "sendKakao": {
1982
+ "type": "pushwoosh.cj.journey.PointParamsSendKakao"
1979
1983
  }
1980
1984
  },
1981
1985
  "oneofs": {
@@ -1999,7 +2003,8 @@ export const data = {
1999
2003
  "startByApi",
2000
2004
  "sendWhatsapp",
2001
2005
  "sendData",
2002
- "sendLine"
2006
+ "sendLine",
2007
+ "sendKakao"
2003
2008
  ]
2004
2009
  }
2005
2010
  }
@@ -2359,6 +2364,41 @@ export const data = {
2359
2364
  },
2360
2365
  "oneofs": {}
2361
2366
  },
2367
+ "pushwoosh.cj.journey.PointParamsSendKakao": {
2368
+ "type": "I",
2369
+ "fields": {
2370
+ "presetCode": {
2371
+ "type": "string"
2372
+ },
2373
+ "applicationCode": {
2374
+ "type": "string"
2375
+ },
2376
+ "campaignCode": {
2377
+ "type": "string",
2378
+ "optional": true
2379
+ },
2380
+ "campaignUid": {
2381
+ "type": "number",
2382
+ "optional": true
2383
+ },
2384
+ "personalise": {
2385
+ "type": "pushwoosh.cj.journey.PersonalisedParams"
2386
+ },
2387
+ "vouchersParams": {
2388
+ "type": "pushwoosh.cj.journey.VoucherParams"
2389
+ },
2390
+ "sendByUserId": {
2391
+ "type": "boolean"
2392
+ },
2393
+ "capping": {
2394
+ "type": "pushwoosh.cj.journey.Capping"
2395
+ },
2396
+ "sendRate": {
2397
+ "type": "pushwoosh.cj.journey.SendRate"
2398
+ }
2399
+ },
2400
+ "oneofs": {}
2401
+ },
2362
2402
  "pushwoosh.cj.journey.WhatsAppPersonalisedParams": {
2363
2403
  "type": "I",
2364
2404
  "fields": {
@@ -3361,6 +3401,9 @@ export const data = {
3361
3401
  },
3362
3402
  "applicationTitle": {
3363
3403
  "type": "string"
3404
+ },
3405
+ "startAt": {
3406
+ "type": "Date"
3364
3407
  }
3365
3408
  },
3366
3409
  "oneofs": {}
@@ -5395,7 +5438,11 @@ export const data = {
5395
5438
  "values": [
5396
5439
  "INVALID",
5397
5440
  "ASC",
5398
- "DESC"
5441
+ "DESC",
5442
+ "ASC_NULLS_LAST",
5443
+ "DESC_NULLS_LAST",
5444
+ "ASC_NULLS_FIRST",
5445
+ "DESC_NULLS_FIRST"
5399
5446
  ]
5400
5447
  },
5401
5448
  "pushwoosh.objects.filters.v1.SortExpression": {
@@ -6328,6 +6375,25 @@ export const data = {
6328
6375
  }
6329
6376
  }
6330
6377
  },
6378
+ "pushwoosh.objects.filters.v1.FilterExpression.List": {
6379
+ "type": "I",
6380
+ "fields": {
6381
+ "application": {
6382
+ "type": "string"
6383
+ },
6384
+ "kind": {
6385
+ "type": "string"
6386
+ },
6387
+ "users": {
6388
+ "type": "string",
6389
+ "array": true
6390
+ },
6391
+ "devices": {
6392
+ "type": "string",
6393
+ "array": true
6394
+ }
6395
+ }
6396
+ },
6331
6397
  "pushwoosh.objects.filters.v1.FilterExpression.Static": {
6332
6398
  "type": "I",
6333
6399
  "fields": {
@@ -8175,6 +8241,9 @@ export const data = {
8175
8241
  },
8176
8242
  "segment": {
8177
8243
  "type": "pushwoosh.objects.filters.v1.FilterExpression.Segment"
8244
+ },
8245
+ "list": {
8246
+ "type": "pushwoosh.objects.filters.v1.FilterExpression.List"
8178
8247
  }
8179
8248
  },
8180
8249
  "oneofs": {
@@ -8189,7 +8258,8 @@ export const data = {
8189
8258
  "updated",
8190
8259
  "bestTimeToSend",
8191
8260
  "tagDateMatch",
8192
- "segment"
8261
+ "segment",
8262
+ "list"
8193
8263
  ]
8194
8264
  }
8195
8265
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.377",
3
+ "version": "0.26.379",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -670,7 +670,7 @@ export type User = {
670
670
  email: string;
671
671
  username: string;
672
672
  };
673
- export type PointType = 'POINT_TYPE_UNKNOWN' | 'POINT_TYPE_WAIT' | 'POINT_TYPE_EVENT' | 'POINT_TYPE_EXIT' | 'POINT_TYPE_SEND_PUSH' | 'POINT_TYPE_GOAL_EVENT' | 'POINT_TYPE_SEND_EMAIL' | 'POINT_TYPE_SEND_SMS' | 'POINT_TYPE_SEND_WHATSAPP' | 'POINT_TYPE_SEND_LINE' | 'POINT_TYPE_SEND_DATA' | 'POINT_TYPE_BOOLEAN_SPLITTER' | 'POINT_TYPE_FILTER' | 'POINT_TYPE_WAIT_EVENT' | 'POINT_TYPE_INAPP' | 'POINT_TYPE_START_BY_SEGMENT' | 'POINT_TYPE_AB_SPLITTER' | 'POINT_TYPE_SET_TAGS' | 'POINT_TYPE_WEBHOOK' | 'POINT_TYPE_START_BY_API';
673
+ export type PointType = 'POINT_TYPE_UNKNOWN' | 'POINT_TYPE_WAIT' | 'POINT_TYPE_EVENT' | 'POINT_TYPE_EXIT' | 'POINT_TYPE_SEND_PUSH' | 'POINT_TYPE_GOAL_EVENT' | 'POINT_TYPE_SEND_EMAIL' | 'POINT_TYPE_SEND_SMS' | 'POINT_TYPE_SEND_WHATSAPP' | 'POINT_TYPE_SEND_LINE' | 'POINT_TYPE_SEND_DATA' | 'POINT_TYPE_BOOLEAN_SPLITTER' | 'POINT_TYPE_FILTER' | 'POINT_TYPE_WAIT_EVENT' | 'POINT_TYPE_INAPP' | 'POINT_TYPE_START_BY_SEGMENT' | 'POINT_TYPE_AB_SPLITTER' | 'POINT_TYPE_SET_TAGS' | 'POINT_TYPE_WEBHOOK' | 'POINT_TYPE_START_BY_API' | 'POINT_TYPE_SEND_KAKAO';
674
674
  export type Point = {
675
675
  uuid: string;
676
676
  title: string;
@@ -756,7 +756,11 @@ export type PointDataWrapper_data_sendLine = {
756
756
  type: 'sendLine';
757
757
  data: PointParamsSendLine;
758
758
  };
759
- export type PointDataWrapper_data = PointDataWrapper_data_messageBus | PointDataWrapper_data_delay | PointDataWrapper_data_terminator | PointDataWrapper_data_sendPush | PointDataWrapper_data_goalEvent | PointDataWrapper_data_sendEmail | PointDataWrapper_data_booleanSplitter | PointDataWrapper_data_waitEvent | PointDataWrapper_data_inapp | PointDataWrapper_data_startBySegment | PointDataWrapper_data_abSplitter | PointDataWrapper_data_setTags | PointDataWrapper_data_webHook | PointDataWrapper_data_filter | PointDataWrapper_data_sendSms | PointDataWrapper_data_startByApi | PointDataWrapper_data_sendWhatsapp | PointDataWrapper_data_sendData | PointDataWrapper_data_sendLine;
759
+ export type PointDataWrapper_data_sendKakao = {
760
+ type: 'sendKakao';
761
+ data: PointParamsSendKakao;
762
+ };
763
+ export type PointDataWrapper_data = PointDataWrapper_data_messageBus | PointDataWrapper_data_delay | PointDataWrapper_data_terminator | PointDataWrapper_data_sendPush | PointDataWrapper_data_goalEvent | PointDataWrapper_data_sendEmail | PointDataWrapper_data_booleanSplitter | PointDataWrapper_data_waitEvent | PointDataWrapper_data_inapp | PointDataWrapper_data_startBySegment | PointDataWrapper_data_abSplitter | PointDataWrapper_data_setTags | PointDataWrapper_data_webHook | PointDataWrapper_data_filter | PointDataWrapper_data_sendSms | PointDataWrapper_data_startByApi | PointDataWrapper_data_sendWhatsapp | PointDataWrapper_data_sendData | PointDataWrapper_data_sendLine | PointDataWrapper_data_sendKakao;
760
764
  export type PointDataWrapper = {
761
765
  data: PointDataWrapper_data;
762
766
  };
@@ -871,6 +875,17 @@ export type PointParamsSendLine = {
871
875
  capping: Capping;
872
876
  vouchersParams: VoucherParams;
873
877
  };
878
+ export type PointParamsSendKakao = {
879
+ presetCode: string;
880
+ applicationCode: string;
881
+ campaignCode?: string;
882
+ campaignUid?: number;
883
+ personalise: PersonalisedParams;
884
+ vouchersParams: VoucherParams;
885
+ sendByUserId: boolean;
886
+ capping: Capping;
887
+ sendRate: SendRate;
888
+ };
874
889
  export type WhatsAppPersonalisedParams = {
875
890
  enabled: boolean;
876
891
  placeholders: WhatsAppPlaceholder[];
@@ -1255,6 +1270,7 @@ export type PointParamsStartBySegment = {
1255
1270
  isDeactivated: boolean;
1256
1271
  filterTitle: string;
1257
1272
  applicationTitle: string;
1273
+ startAt: Date;
1258
1274
  };
1259
1275
  export type SegmentRepeat = {
1260
1276
  enabled: boolean;
@@ -201,7 +201,7 @@ export type Sort = {
201
201
  field: string;
202
202
  order: SortOrder;
203
203
  };
204
- export type SortOrder = 'INVALID' | 'ASC' | 'DESC';
204
+ export type SortOrder = 'INVALID' | 'ASC' | 'DESC' | 'ASC_NULLS_LAST' | 'DESC_NULLS_LAST' | 'ASC_NULLS_FIRST' | 'DESC_NULLS_FIRST';
205
205
  export type SortExpression = {
206
206
  sorts: Sort[];
207
207
  };
@@ -499,6 +499,12 @@ export type FilterExpression_Segment = {
499
499
  application: string;
500
500
  segment: string;
501
501
  };
502
+ export type FilterExpression_List = {
503
+ application: string;
504
+ kind: string;
505
+ users: string[];
506
+ devices: string[];
507
+ };
502
508
  export type FilterExpression_Static = {
503
509
  application: string;
504
510
  segment: string;
@@ -1488,7 +1494,11 @@ export type FilterExpression_kind_segment = {
1488
1494
  type: 'segment';
1489
1495
  data: FilterExpression_Segment;
1490
1496
  };
1491
- export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch | FilterExpression_kind_segment;
1497
+ export type FilterExpression_kind_list = {
1498
+ type: 'list';
1499
+ data: FilterExpression_List;
1500
+ };
1501
+ export type FilterExpression_kind = FilterExpression_kind_operation | FilterExpression_kind_application | FilterExpression_kind_tag | FilterExpression_kind_geo | FilterExpression_kind_static | FilterExpression_kind_event | FilterExpression_kind_updated | FilterExpression_kind_bestTimeToSend | FilterExpression_kind_tagDateMatch | FilterExpression_kind_segment | FilterExpression_kind_list;
1492
1502
  export type FilterExpression = {
1493
1503
  kind: FilterExpression_kind;
1494
1504
  };