@aloma.io/integration-sdk 3.3.71 → 3.3.72
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/build/internal/index.mjs
CHANGED
@@ -364,6 +364,7 @@ ${text}
|
|
364
364
|
const useAuthHeader = !!that._oauth.useAuthHeader;
|
365
365
|
const useCodeChallenge = !!that._oauth.useCodeChallenge;
|
366
366
|
let body = {
|
367
|
+
grant_type: "authorization_code",
|
367
368
|
...additionalTokenArgs,
|
368
369
|
code: arg.code,
|
369
370
|
redirect_uri: arg.redirectURI,
|
package/package.json
CHANGED
package/src/internal/index.mjs
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
import {Builder} from '@aloma.io/integration-sdk';
|
2
2
|
|
3
|
+
/*client id: 64997793570-ut08q4i4su51778vpphtl3hm13oobpjr.apps.googleusercontent.com
|
4
|
+
|
5
|
+
secret: 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
|
6
|
+
|
7
|
+
|
8
|
+
connector id: w8on98bngcjl4dlf7nk405ont68ivyap*/
|
9
|
+
|
3
10
|
const builder = new Builder();
|
4
11
|
const runtime = await builder.build();
|
5
12
|
|