@ctx-core/auth0-management 9.2.169 → 9.2.173
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 +28 -0
- package/package.json +5 -5
- package/src/auth0_management__token_/index.js +2 -2
- package/COMMIT_EDITMSG +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @ctx-core/auth0-management
|
|
2
2
|
|
|
3
|
+
## 9.2.173
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ctx-core/auth0: ^38.1.0 -> ^38.1.1
|
|
8
|
+
|
|
9
|
+
## 9.2.172
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @ctx-core/auth0: ^38.0.77 -> ^38.1.0
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @ctx-core/fetch-undici@2.6.50
|
|
16
|
+
|
|
17
|
+
## 9.2.171
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- @ctx-core/auth0: ^38.0.76 -> ^38.0.77
|
|
22
|
+
- @ctx-core/env: ^17.2.87 -> ^17.2.88
|
|
23
|
+
|
|
24
|
+
## 9.2.170
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @ctx-core/nanostores@3.4.1
|
|
30
|
+
|
|
3
31
|
## 9.2.169
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/auth0-management",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.173",
|
|
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": "^38.
|
|
32
|
-
"@ctx-core/env": "^17.2.
|
|
31
|
+
"@ctx-core/auth0": "^38.1.1",
|
|
32
|
+
"@ctx-core/env": "^17.2.88",
|
|
33
33
|
"@ctx-core/error": "^12.3.28",
|
|
34
|
-
"@ctx-core/fetch-undici": "^2.6.
|
|
35
|
-
"@ctx-core/nanostores": "3.4.
|
|
34
|
+
"@ctx-core/fetch-undici": "^2.6.50",
|
|
35
|
+
"@ctx-core/nanostores": "3.4.1",
|
|
36
36
|
"@ctx-core/object": "^27.4.25",
|
|
37
37
|
"@ctx-core/uri": "^12.4.40",
|
|
38
38
|
"auth0": "^3.3.0"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { auth0__oauth_token__POST__fetch2 } from '@ctx-core/auth0'
|
|
2
2
|
import { http_error__throw } from '@ctx-core/error'
|
|
3
3
|
import { auth0_management__client_credentials__body_ } from '../auth0_management__client_credentials__body_/index.js'
|
|
4
4
|
/** @typedef {import('@ctx-core/auth0').auth0__token_T}auth0__token_T */
|
|
@@ -9,7 +9,7 @@ import { auth0_management__client_credentials__body_ } from '../auth0_management
|
|
|
9
9
|
*/
|
|
10
10
|
export async function auth0_management__token_(ctx) {
|
|
11
11
|
const [payload, response] =
|
|
12
|
-
await
|
|
12
|
+
await auth0__oauth_token__POST__fetch2(
|
|
13
13
|
ctx, auth0_management__client_credentials__body_(ctx))
|
|
14
14
|
if (!response.ok) {
|
|
15
15
|
/** @type {Auth0Error} */
|
package/COMMIT_EDITMSG
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|