@pushwoosh/rpc-gateway-journey-data 0.26.216 → 0.26.218
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 +12 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -0
package/data.js
CHANGED
|
@@ -1768,6 +1768,9 @@ export const data = {
|
|
|
1768
1768
|
},
|
|
1769
1769
|
"capping": {
|
|
1770
1770
|
"type": "pushwoosh.cj.journey.Capping"
|
|
1771
|
+
},
|
|
1772
|
+
"vouchersParams": {
|
|
1773
|
+
"type": "pushwoosh.cj.journey.VoucherParams"
|
|
1771
1774
|
}
|
|
1772
1775
|
}
|
|
1773
1776
|
},
|
|
@@ -1803,6 +1806,9 @@ export const data = {
|
|
|
1803
1806
|
},
|
|
1804
1807
|
"capping": {
|
|
1805
1808
|
"type": "pushwoosh.cj.journey.Capping"
|
|
1809
|
+
},
|
|
1810
|
+
"vouchersParams": {
|
|
1811
|
+
"type": "pushwoosh.cj.journey.VoucherParams"
|
|
1806
1812
|
}
|
|
1807
1813
|
}
|
|
1808
1814
|
},
|
|
@@ -1891,6 +1897,9 @@ export const data = {
|
|
|
1891
1897
|
},
|
|
1892
1898
|
"capping": {
|
|
1893
1899
|
"type": "pushwoosh.cj.journey.Capping"
|
|
1900
|
+
},
|
|
1901
|
+
"vouchersParams": {
|
|
1902
|
+
"type": "pushwoosh.cj.journey.VoucherParams"
|
|
1894
1903
|
}
|
|
1895
1904
|
}
|
|
1896
1905
|
},
|
|
@@ -1994,6 +2003,9 @@ export const data = {
|
|
|
1994
2003
|
},
|
|
1995
2004
|
"personalise": {
|
|
1996
2005
|
"type": "pushwoosh.cj.journey.PersonalisedParams"
|
|
2006
|
+
},
|
|
2007
|
+
"vouchersParams": {
|
|
2008
|
+
"type": "pushwoosh.cj.journey.VoucherParams"
|
|
1997
2009
|
}
|
|
1998
2010
|
}
|
|
1999
2011
|
},
|
package/package.json
CHANGED
|
@@ -707,6 +707,7 @@ export type PointParamsSendSms = {
|
|
|
707
707
|
liquidTemplateParams: LiquidTemplateParams;
|
|
708
708
|
personalise: PersonalisedParams;
|
|
709
709
|
capping: Capping;
|
|
710
|
+
vouchersParams: VoucherParams;
|
|
710
711
|
};
|
|
711
712
|
export type PointParamsSendLine = {
|
|
712
713
|
presetCode: string;
|
|
@@ -719,6 +720,7 @@ export type PointParamsSendLine = {
|
|
|
719
720
|
liquidTemplateParams: LiquidTemplateParams;
|
|
720
721
|
personalise: PersonalisedParams;
|
|
721
722
|
capping: Capping;
|
|
723
|
+
vouchersParams: VoucherParams;
|
|
722
724
|
};
|
|
723
725
|
export type WhatsAppPersonalisedParams = {
|
|
724
726
|
enabled: boolean;
|
|
@@ -749,6 +751,7 @@ export type PointParamsSendWhatsApp = {
|
|
|
749
751
|
sendByUserId: boolean;
|
|
750
752
|
personalise: WhatsAppPersonalisedParams;
|
|
751
753
|
capping: Capping;
|
|
754
|
+
vouchersParams: VoucherParams;
|
|
752
755
|
};
|
|
753
756
|
export type PointParamsSendEmail = {
|
|
754
757
|
applicationCode: string;
|
|
@@ -784,6 +787,7 @@ export type PointParamsSendData = {
|
|
|
784
787
|
sendByUserId: boolean;
|
|
785
788
|
liquidTemplateParams: LiquidTemplateParams;
|
|
786
789
|
personalise: PersonalisedParams;
|
|
790
|
+
vouchersParams: VoucherParams;
|
|
787
791
|
};
|
|
788
792
|
export type UnsubscribedPolicy = 'UNKNOWN' | 'IGNORE' | 'SEND';
|
|
789
793
|
export type PointParamsBooleanSplitter = {
|