@pushwoosh/rpc-v2-http-api-data 0.1.796 → 0.1.798
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 +9 -0
- package/frequency_capping.d.ts +3 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -9615,6 +9615,9 @@ export const data = {
|
|
|
9615
9615
|
},
|
|
9616
9616
|
"inApp": {
|
|
9617
9617
|
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9618
|
+
},
|
|
9619
|
+
"whatsApp": {
|
|
9620
|
+
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9618
9621
|
}
|
|
9619
9622
|
}
|
|
9620
9623
|
},
|
|
@@ -9651,6 +9654,9 @@ export const data = {
|
|
|
9651
9654
|
},
|
|
9652
9655
|
"inApp": {
|
|
9653
9656
|
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9657
|
+
},
|
|
9658
|
+
"whatsApp": {
|
|
9659
|
+
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9654
9660
|
}
|
|
9655
9661
|
}
|
|
9656
9662
|
},
|
|
@@ -9679,6 +9685,9 @@ export const data = {
|
|
|
9679
9685
|
},
|
|
9680
9686
|
"inApp": {
|
|
9681
9687
|
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9688
|
+
},
|
|
9689
|
+
"whatsApp": {
|
|
9690
|
+
"type": "pushwoosh.rpc_v2.frequency_capping.Capping"
|
|
9682
9691
|
}
|
|
9683
9692
|
}
|
|
9684
9693
|
},
|
package/frequency_capping.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type FrequencyCapping = {
|
|
|
12
12
|
email: Capping;
|
|
13
13
|
sms: Capping;
|
|
14
14
|
inApp: Capping;
|
|
15
|
+
whatsApp: Capping;
|
|
15
16
|
};
|
|
16
17
|
export type GetFrequencyCappingRequest = {
|
|
17
18
|
application?: string;
|
|
@@ -25,6 +26,7 @@ export type CreateFrequencyCappingRequest = {
|
|
|
25
26
|
email?: Capping;
|
|
26
27
|
sms?: Capping;
|
|
27
28
|
inApp?: Capping;
|
|
29
|
+
whatsApp?: Capping;
|
|
28
30
|
};
|
|
29
31
|
export type CreateFrequencyCappingResponse = {
|
|
30
32
|
frequencyCapping: FrequencyCapping;
|
|
@@ -35,5 +37,6 @@ export type UpdateFrequencyCappingRequest = {
|
|
|
35
37
|
email?: Capping;
|
|
36
38
|
sms?: Capping;
|
|
37
39
|
inApp?: Capping;
|
|
40
|
+
whatsApp?: Capping;
|
|
38
41
|
};
|
|
39
42
|
export type UpdateFrequencyCappingResponse = {};
|