rez_core 3.1.102 → 3.1.103
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/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js +2 -0
- package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +3 -0
package/package.json
CHANGED
|
@@ -56,6 +56,8 @@ export class TubelightWhatsAppStrategy implements IntegrationStrategy {
|
|
|
56
56
|
|
|
57
57
|
const payload = [this.prepareMessagePayload(to, message, config)];
|
|
58
58
|
|
|
59
|
+
console.log(payload)
|
|
60
|
+
|
|
59
61
|
const response: AxiosResponse<TubelightApiResponse> = await axios.post(
|
|
60
62
|
url,
|
|
61
63
|
payload,
|
|
@@ -172,6 +174,7 @@ export class TubelightWhatsAppStrategy implements IntegrationStrategy {
|
|
|
172
174
|
|
|
173
175
|
// Add body_params if provided
|
|
174
176
|
if (config.variables) {
|
|
177
|
+
console.log("variables", config.variables)
|
|
175
178
|
try {
|
|
176
179
|
// Parse JSON string
|
|
177
180
|
const parsedVariables = typeof config.variables === 'string'
|