@ctx-core/auth0-management 9.7.77 → 9.7.78
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 +9 -0
- package/COMMIT_EDITMSG +1 -0
- package/package.json +3 -3
- package/src/auth0__v2_client__GET__fetch/index.js +2 -2
- package/src/auth0__v2_client_grants__GET__fetch/index.js +2 -2
- package/src/auth0__v2_user__GET__fetch/index.js +2 -2
- package/src/auth0__v2_user__PATCH__fetch/index.js +2 -2
- package/src/auth0__v2_users_by_email__GET__fetch/index.js +2 -2
package/CHANGELOG.md
CHANGED
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.78",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,10 +28,10 @@
|
|
|
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.18",
|
|
32
32
|
"@ctx-core/env": "^17.3.5",
|
|
33
33
|
"@ctx-core/error": "^12.3.42",
|
|
34
|
-
"@ctx-core/fetch": "^12.
|
|
34
|
+
"@ctx-core/fetch": "^12.12.0",
|
|
35
35
|
"@ctx-core/nanostores": "6.0.8",
|
|
36
36
|
"@ctx-core/object": "^28.0.7",
|
|
37
37
|
"@ctx-core/uri": "^12.4.55",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AUTH0_CLIENT_ID_, AUTH0_DOMAIN_, header__access_token__verify } from '@ctx-core/auth0'
|
|
2
|
-
import {
|
|
2
|
+
import { fetch__template_pair__new } from '@ctx-core/fetch'
|
|
3
3
|
import { auth0_management__token__new } from '../auth0_management__token__new/index.js'
|
|
4
4
|
/** @typedef {import('@ctx-core/fetch').response_pair_T}response_pair_T */
|
|
5
5
|
/** @typedef {import('@ctx-core/object').Ctx}Ctx */
|
|
@@ -8,7 +8,7 @@ import { auth0_management__token__new } from '../auth0_management__token__new/in
|
|
|
8
8
|
export const [
|
|
9
9
|
auth0__v2_client__GET__fetch,
|
|
10
10
|
auth0__v2_client__GET__fetch2,
|
|
11
|
-
] =
|
|
11
|
+
] = fetch__template_pair__new(
|
|
12
12
|
/**
|
|
13
13
|
* @param {Ctx}ctx
|
|
14
14
|
* @param {auth0__v2_client__GET__fetch__params_T}params
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AUTH0_DOMAIN_, header__access_token__verify } from '@ctx-core/auth0'
|
|
2
|
-
import {
|
|
2
|
+
import { fetch__template_pair__new } from '@ctx-core/fetch'
|
|
3
3
|
import { query_str_ } from '@ctx-core/uri'
|
|
4
4
|
import { auth0_management__token__new } from '../auth0_management__token__new/index.js'
|
|
5
5
|
/** @typedef {import('@ctx-core/fetch').response_pair_T}response_pair_T */
|
|
@@ -9,7 +9,7 @@ import { auth0_management__token__new } from '../auth0_management__token__new/in
|
|
|
9
9
|
export const [
|
|
10
10
|
auth0__v2_client_grants__GET__fetch,
|
|
11
11
|
auth0__v2_client_grants__GET__fetch2,
|
|
12
|
-
] =
|
|
12
|
+
] = fetch__template_pair__new(
|
|
13
13
|
/**
|
|
14
14
|
* @param {Ctx}ctx
|
|
15
15
|
* @param {auth0__v2_client_grants__GET__fetch__params_T}params
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AUTH0_DOMAIN_, header__access_token__verify } from '@ctx-core/auth0'
|
|
2
|
-
import {
|
|
2
|
+
import { fetch__template_pair__new } from '@ctx-core/fetch'
|
|
3
3
|
import { auth0_management__token__new } from '../auth0_management__token__new/index.js'
|
|
4
4
|
/** @typedef {import('@ctx-core/object').Ctx}Ctx */
|
|
5
5
|
/** @typedef {import('auth0').User}User */
|
|
@@ -7,7 +7,7 @@ import { auth0_management__token__new } from '../auth0_management__token__new/in
|
|
|
7
7
|
export const [
|
|
8
8
|
auth0__v2_user__GET__fetch,
|
|
9
9
|
auth0__v2_user__GET__fetch2,
|
|
10
|
-
] =
|
|
10
|
+
] = fetch__template_pair__new(
|
|
11
11
|
/**
|
|
12
12
|
* @param {Ctx}ctx
|
|
13
13
|
* @param {auth0__v2_user__GET__fetch__params_T}params
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AUTH0_DOMAIN_, header__access_token__verify } from '@ctx-core/auth0'
|
|
2
|
-
import {
|
|
2
|
+
import { fetch__template_pair__new } from '@ctx-core/fetch'
|
|
3
3
|
import {
|
|
4
4
|
auth0_management__token__new
|
|
5
5
|
} from '../auth0_management__token__new/index.js'
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
export const [
|
|
11
11
|
auth0__v2_user__PATCH__fetch,
|
|
12
12
|
auth0__v2_user__PATCH__fetch2,
|
|
13
|
-
] =
|
|
13
|
+
] = fetch__template_pair__new(
|
|
14
14
|
/**
|
|
15
15
|
* @param {Ctx}ctx
|
|
16
16
|
* @param {string}user_id
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AUTH0_DOMAIN_, header__access_token__verify } from '@ctx-core/auth0'
|
|
2
|
-
import {
|
|
2
|
+
import { fetch__template_pair__new } from '@ctx-core/fetch'
|
|
3
3
|
import { auth0_management__token__new } from '../auth0_management__token__new/index.js'
|
|
4
4
|
/** @typedef {import('@ctx-core/object').Ctx}Ctx */
|
|
5
5
|
/** @type {import('auth0-js').Auth0UserProfile}Auth0UserProfile */
|
|
@@ -7,7 +7,7 @@ import { auth0_management__token__new } from '../auth0_management__token__new/in
|
|
|
7
7
|
export const [
|
|
8
8
|
auth0__v2_users_by_email__GET__fetch,
|
|
9
9
|
auth0__v2_users_by_email__GET__fetch2,
|
|
10
|
-
] =
|
|
10
|
+
] = fetch__template_pair__new(
|
|
11
11
|
/**
|
|
12
12
|
* @param {Ctx}ctx
|
|
13
13
|
* @param {auth0__v2_users_by_email__GET__fetch__params_T}params
|