@ctx-core/auth0-management 9.7.61 → 9.7.62
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/auth0-management",
|
|
3
|
-
"version": "9.7.
|
|
3
|
+
"version": "9.7.62",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ctx-core/auth0": "^40.0.
|
|
31
|
+
"@ctx-core/auth0": "^40.0.1",
|
|
32
32
|
"@ctx-core/env": "^17.2.128",
|
|
33
33
|
"@ctx-core/error": "^12.3.39",
|
|
34
34
|
"@ctx-core/fetch": "^12.11.15",
|
|
35
|
-
"@ctx-core/nanostores": "6.0.
|
|
35
|
+
"@ctx-core/nanostores": "6.0.5",
|
|
36
36
|
"@ctx-core/object": "^28.0.4",
|
|
37
37
|
"@ctx-core/uri": "^12.4.52",
|
|
38
38
|
"auth0": "^3.7.0"
|
|
@@ -14,10 +14,9 @@ export async function auth0_management__token__new(ctx) {
|
|
|
14
14
|
const [
|
|
15
15
|
payload,
|
|
16
16
|
response
|
|
17
|
-
] =
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
auth0_management__client_credentials__body__new(ctx))
|
|
17
|
+
] = await auth0__oauth_token__POST__fetch2(
|
|
18
|
+
ctx,
|
|
19
|
+
auth0_management__client_credentials__body__new(ctx))
|
|
21
20
|
if (!response.ok) {
|
|
22
21
|
/** @type {Auth0Error} */
|
|
23
22
|
const auth0_error = payload
|