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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "3.1.102",
3
+ "version": "3.1.103",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -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'