@ctx-core/auth0-management 9.2.110 → 9.2.112
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 +18 -0
- package/package.json +6 -6
- package/src/auth0__v2_client__fetch_get/index.d.ts +2 -1
- package/src/auth0__v2_client_grants__fetch_get/index.d.ts +2 -1
- package/src/auth0__v2_user__fetch_get/index.d.ts +2 -1
- package/src/auth0__v2_user__fetch_patch/index.d.ts +3 -1
- package/src/auth0__v2_users_by_email__fetch_get/index.d.ts +2 -1
- package/src/auth0_management__client_credentials__body_/index.d.ts +3 -1
- package/src/auth0_management__init/index.d.ts +2 -1
- package/src/auth0_management__token_/index.d.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @ctx-core/auth0-management
|
|
2
2
|
|
|
3
|
+
## 9.2.112
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @ctx-core/auth0@38.0.24
|
|
9
|
+
- @ctx-core/env@17.2.57
|
|
10
|
+
- @ctx-core/nanostores@3.1.21
|
|
11
|
+
- @ctx-core/object@27.4.3
|
|
12
|
+
|
|
13
|
+
## 9.2.111
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- @ctx-core/fetch-undici: ^2.6.6 -> ^2.6.7
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @ctx-core/auth0@38.0.23
|
|
20
|
+
|
|
3
21
|
## 9.2.110
|
|
4
22
|
|
|
5
23
|
### 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.112",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ctx-core/auth0": "^38.0.
|
|
32
|
-
"@ctx-core/env": "^17.2.
|
|
31
|
+
"@ctx-core/auth0": "^38.0.24",
|
|
32
|
+
"@ctx-core/env": "^17.2.57",
|
|
33
33
|
"@ctx-core/error": "^12.3.5",
|
|
34
|
-
"@ctx-core/fetch-undici": "^2.6.
|
|
35
|
-
"@ctx-core/nanostores": "3.1.
|
|
36
|
-
"@ctx-core/object": "^27.4.
|
|
34
|
+
"@ctx-core/fetch-undici": "^2.6.7",
|
|
35
|
+
"@ctx-core/nanostores": "3.1.21",
|
|
36
|
+
"@ctx-core/object": "^27.4.3",
|
|
37
37
|
"@ctx-core/uri": "^12.4.17",
|
|
38
38
|
"auth0": "^3.3.0"
|
|
39
39
|
},
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Ctx } from '@ctx-core/object'
|
|
2
2
|
import type { Client } from 'auth0'
|
|
3
3
|
export declare function auth0__v2_client__fetch_get(
|
|
4
|
-
ctx:Ctx,
|
|
4
|
+
ctx:Ctx,
|
|
5
|
+
params:auth0__v2_client__fetch__params_T
|
|
5
6
|
):Promise<[Client, Response]>
|
|
6
7
|
export {
|
|
7
8
|
auth0__v2_client__fetch_get as patch_auth0_v2_client,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Ctx } from '@ctx-core/object'
|
|
2
2
|
import type { CreateClientGrant } from 'auth0'
|
|
3
3
|
export declare function auth0__v2_client_grants__fetch_get(
|
|
4
|
-
ctx:Ctx,
|
|
4
|
+
ctx:Ctx,
|
|
5
|
+
params:auth0__v2_client_grants__fetch__params_T
|
|
5
6
|
):Promise<[CreateClientGrant, Response]>
|
|
6
7
|
export {
|
|
7
8
|
auth0__v2_client_grants__fetch_get as get_auth0_v2_client_grants,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Ctx } from '@ctx-core/object'
|
|
2
2
|
import type { User } from 'auth0'
|
|
3
3
|
export declare function auth0__v2_user__fetch_get(
|
|
4
|
-
ctx:Ctx,
|
|
4
|
+
ctx:Ctx,
|
|
5
|
+
params:auth0__v2_user__fetch_get__params_T
|
|
5
6
|
):Promise<[User, Response]>
|
|
6
7
|
export {
|
|
7
8
|
auth0__v2_user__fetch_get as get_auth0_v2_user,
|
|
@@ -2,7 +2,9 @@ import type { Ctx } from '@ctx-core/object'
|
|
|
2
2
|
import type { UpdateUserData, UserData } from 'auth0'
|
|
3
3
|
import type { Auth0Error } from 'auth0-js'
|
|
4
4
|
export declare function auth0__v2_user__fetch_patch(
|
|
5
|
-
ctx:Ctx,
|
|
5
|
+
ctx:Ctx,
|
|
6
|
+
user_id:string,
|
|
7
|
+
data:auth0__v2_user__fetch_patch__data_T
|
|
6
8
|
):Promise<[UpdateUserData|auth0__v2_user__fetch_patch__error_T, Response]>
|
|
7
9
|
export {
|
|
8
10
|
auth0__v2_user__fetch_patch as patch_auth0_v2_user,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Auth0UserProfile } from 'auth0-js'
|
|
2
2
|
import type { Ctx } from '@ctx-core/object'
|
|
3
3
|
export declare function auth0__v2_users_by_email__fetch_get(
|
|
4
|
-
ctx:Ctx,
|
|
4
|
+
ctx:Ctx,
|
|
5
|
+
params:auth0__v2_users_by_email__fetch__params_T
|
|
5
6
|
):Promise<[Auth0UserProfile[], Response]>
|
|
6
7
|
export {
|
|
7
8
|
auth0__v2_users_by_email__fetch_get as get_auth0_v2_users_by_email,
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { auth0__oauth_token__fetch__body_T } from '@ctx-core/auth0'
|
|
2
2
|
import type { Ctx } from '@ctx-core/object'
|
|
3
|
-
export declare function auth0_management__client_credentials__body_(
|
|
3
|
+
export declare function auth0_management__client_credentials__body_(
|
|
4
|
+
ctx:Ctx
|
|
5
|
+
):auth0__oauth_token__fetch__body_T
|
|
4
6
|
export {
|
|
5
7
|
auth0_management__client_credentials__body_ as auth0_management_client_credentials_body_,
|
|
6
8
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Ctx } from '@ctx-core/object'
|
|
2
2
|
export declare function auth0_management__init(
|
|
3
|
-
ctx:Ctx,
|
|
3
|
+
ctx:Ctx,
|
|
4
|
+
params:auth0_management__init__params_T
|
|
4
5
|
):void
|
|
5
6
|
export interface auth0_management__init__params_T {
|
|
6
7
|
AUTH0_MANAGEMENT_ID?:string
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { auth0__token_T } from '@ctx-core/auth0'
|
|
2
2
|
import type { Ctx } from '@ctx-core/object'
|
|
3
|
-
export declare function auth0_management__token_(
|
|
3
|
+
export declare function auth0_management__token_(
|
|
4
|
+
ctx:Ctx
|
|
5
|
+
):Promise<auth0__token_T>
|
|
4
6
|
export {
|
|
5
7
|
auth0_management__token_ as auth0_management_token_,
|
|
6
8
|
}
|