@ctx-core/auth0-management 9.0.143 → 9.0.144
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 +8 -0
- package/package.json +2 -2
- package/src/auth0_audience_/index.d.ts +1 -1
- package/src/auth0_management_/index.d.ts +1 -1
- package/src/auth0_management_client_credentials_body_/index.d.ts +2 -2
- package/src/auth0_management_token_/index.d.ts +2 -2
- package/src/get_auth0_v2_client_grants/index.d.ts +2 -2
- package/src/get_auth0_v2_user/index.d.ts +2 -2
- package/src/get_auth0_v2_users_by_email/index.d.ts +2 -2
- package/src/patch_auth0_v2_client/index.d.ts +2 -2
- package/src/patch_auth0_v2_user/index.d.ts +3 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/auth0-management",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.144",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ctx-core/auth0": "^35.0.
|
|
31
|
+
"@ctx-core/auth0": "^35.0.87",
|
|
32
32
|
"@ctx-core/fetch-undici": "^2.3.63",
|
|
33
33
|
"@ctx-core/object": "^24.1.2",
|
|
34
34
|
"@ctx-core/uri": "^12.0.67",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { Ctx } from '@ctx-core/object'
|
|
2
2
|
export declare function auth0_audience_(ctx:Ctx):string
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { post_auth0_oauth_token_body_I } from '@ctx-core/auth0'
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
3
|
export declare function auth0_management_client_credentials_body_(ctx:Ctx):post_auth0_oauth_token_body_I
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { auth0_token_T } from '@ctx-core/auth0'
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
3
|
export declare function auth0_management_token_(ctx:Ctx):Promise<auth0_token_T>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
|
+
import type { CreateClientGrant } from 'auth0'
|
|
4
4
|
export declare function get_auth0_v2_client_grants(
|
|
5
5
|
ctx:Ctx, params:get_auth0_v2_client_grants_params_T
|
|
6
6
|
):Promise<[CreateClientGrant, Response]>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
|
+
import type { User } from 'auth0'
|
|
4
4
|
export declare function get_auth0_v2_user(
|
|
5
5
|
ctx:Ctx, params:get_auth0_v2_user_params_T
|
|
6
6
|
):Promise<[User, Response]>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { Auth0UserProfile } from 'auth0-js'
|
|
3
|
+
import type { Ctx } from '@ctx-core/object'
|
|
4
4
|
export declare function get_auth0_v2_users_by_email(
|
|
5
5
|
ctx:Ctx, params:get_auth0_v2_users_by_email_params_T
|
|
6
6
|
):Promise<[Auth0UserProfile[], Response]>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
|
+
import type { Client } from 'auth0'
|
|
4
4
|
export declare function patch_auth0_v2_client(
|
|
5
5
|
ctx:Ctx, params:patch_auth0_v2_client_params_T
|
|
6
6
|
):Promise<[Client, Response]>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
2
|
+
import type { Ctx } from '@ctx-core/object'
|
|
3
|
+
import type { UpdateUserData, UserData } from 'auth0'
|
|
4
|
+
import type { Auth0Error } from 'auth0-js'
|
|
5
5
|
export declare function patch_auth0_v2_user(
|
|
6
6
|
ctx:Ctx, user_id:string, data:patch_auth0_v2_user_data_T
|
|
7
7
|
):Promise<[UpdateUserData|Auth0Error, Response]>
|