@ctx-core/auth0-management 9.7.61 → 9.7.64
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 +36 -0
- package/COMMIT_EDITMSG +1 -0
- package/package.json +8 -8
- package/src/auth0_management__token__new/index.js +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @ctx-core/auth0-management
|
|
2
2
|
|
|
3
|
+
## 9.7.64
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ctx-core/auth0: ^40.0.3 -> ^40.0.4
|
|
8
|
+
|
|
9
|
+
## 9.7.63
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @ctx-core/object: ^28.0.4 -> ^28.0.5
|
|
14
|
+
- @ctx-core/auth0: ^40.0.1 -> ^40.0.2
|
|
15
|
+
- @ctx-core/env: ^17.2.128 -> ^17.3.0
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @ctx-core/auth0@40.0.3
|
|
24
|
+
- @ctx-core/fetch@12.11.16
|
|
25
|
+
- @ctx-core/error@12.3.40
|
|
26
|
+
- @ctx-core/nanostores@6.0.6
|
|
27
|
+
- @ctx-core/uri@12.4.53
|
|
28
|
+
- @ctx-core/env@17.3.1
|
|
29
|
+
|
|
30
|
+
## 9.7.62
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- nanostores: + id
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @ctx-core/auth0@40.0.1
|
|
37
|
+
- @ctx-core/nanostores@6.0.5
|
|
38
|
+
|
|
3
39
|
## 9.7.61
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/COMMIT_EDITMSG
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
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.64",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ctx-core/auth0": "^40.0.
|
|
32
|
-
"@ctx-core/env": "^17.
|
|
33
|
-
"@ctx-core/error": "^12.3.
|
|
34
|
-
"@ctx-core/fetch": "^12.11.
|
|
35
|
-
"@ctx-core/nanostores": "6.0.
|
|
36
|
-
"@ctx-core/object": "^28.0.
|
|
37
|
-
"@ctx-core/uri": "^12.4.
|
|
31
|
+
"@ctx-core/auth0": "^40.0.4",
|
|
32
|
+
"@ctx-core/env": "^17.3.1",
|
|
33
|
+
"@ctx-core/error": "^12.3.40",
|
|
34
|
+
"@ctx-core/fetch": "^12.11.16",
|
|
35
|
+
"@ctx-core/nanostores": "6.0.6",
|
|
36
|
+
"@ctx-core/object": "^28.0.5",
|
|
37
|
+
"@ctx-core/uri": "^12.4.53",
|
|
38
38
|
"auth0": "^3.7.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
@@ -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
|