@absolutejs/auth 0.49.1 → 0.49.3
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/cli/migrate.js +8 -2
- package/dist/cli/migrate.js.map +3 -3
- package/dist/htmx/index.js +8 -2
- package/dist/htmx/index.js.map +3 -3
- package/dist/index.js +14 -2
- package/dist/index.js.map +4 -4
- package/dist/providers/index.js +8 -2
- package/dist/providers/index.js.map +3 -3
- package/package.json +2 -2
package/dist/cli/migrate.js
CHANGED
|
@@ -1128,11 +1128,17 @@ var providers = defineProviders({
|
|
|
1128
1128
|
profileRequest: {
|
|
1129
1129
|
authIn: "header",
|
|
1130
1130
|
encoding: "application/json",
|
|
1131
|
+
headers: {
|
|
1132
|
+
Version: "2021-07-28"
|
|
1133
|
+
},
|
|
1131
1134
|
method: "GET",
|
|
1132
1135
|
url: "https://services.leadconnectorhq.com/users/me"
|
|
1133
1136
|
},
|
|
1134
1137
|
scopeRequired: true,
|
|
1135
|
-
subject: ["
|
|
1138
|
+
subject: ["locationId"],
|
|
1139
|
+
subjectBySource: {
|
|
1140
|
+
tokenResponse: ["locationId"]
|
|
1141
|
+
},
|
|
1136
1142
|
subjectType: "string",
|
|
1137
1143
|
tokenRequest: {
|
|
1138
1144
|
authIn: "body",
|
|
@@ -3212,5 +3218,5 @@ var main = async () => {
|
|
|
3212
3218
|
};
|
|
3213
3219
|
await main();
|
|
3214
3220
|
|
|
3215
|
-
//# debugId=
|
|
3221
|
+
//# debugId=4000B53DA36B192364756E2164756E21
|
|
3216
3222
|
//# sourceMappingURL=migrate.js.map
|