n8n-nodes-syncmate 1.0.14 → 1.0.16
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.
|
@@ -18,14 +18,14 @@ class AssistroOAuth2Api {
|
|
|
18
18
|
displayName: 'Authorization URL',
|
|
19
19
|
name: 'authUrl',
|
|
20
20
|
type: 'hidden',
|
|
21
|
-
default: 'https://
|
|
21
|
+
default: 'https://app.assistro.co/oauth/authorize',
|
|
22
22
|
required: true,
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
displayName: 'Access Token URL',
|
|
26
26
|
name: 'accessTokenUrl',
|
|
27
27
|
type: 'hidden',
|
|
28
|
-
default: 'https://
|
|
28
|
+
default: 'https://app.assistro.co/oauth/token',
|
|
29
29
|
required: true,
|
|
30
30
|
},
|
|
31
31
|
{
|
|
@@ -231,7 +231,7 @@ class WhatsAuto {
|
|
|
231
231
|
}],
|
|
232
232
|
};
|
|
233
233
|
}
|
|
234
|
-
const response = await this.helpers.
|
|
234
|
+
const response = await this.helpers.httpRequestWithAuthentication.call(this, 'assistroOAuth2Api', {
|
|
235
235
|
method: 'POST',
|
|
236
236
|
url: 'https://app.assistro.co/api/v1/wapushplus/singlePass/message',
|
|
237
237
|
headers: {
|