@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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @ctx-core/auth0-management
2
2
 
3
+ ## 9.0.144
4
+
5
+ ### Patch Changes
6
+
7
+ - import type { ... } instead of import { type ... }
8
+ - Updated dependencies
9
+ - @ctx-core/auth0@35.0.87
10
+
3
11
  ## 9.0.143
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/auth0-management",
3
- "version": "9.0.143",
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.86",
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 { type Ctx } from '@ctx-core/object'
1
+ import type { Ctx } from '@ctx-core/object'
2
2
  export declare function auth0_audience_(ctx:Ctx):string
@@ -1,4 +1,4 @@
1
- import { type ManagementClient } from 'auth0'
1
+ import type { ManagementClient } from 'auth0'
2
2
  export declare function auth0_management_(
3
3
  params?:auth0_management_params_I
4
4
  ):ManagementClient<import('auth0').AppMetadata, import('auth0').UserMetadata>
@@ -1,3 +1,3 @@
1
- import { type post_auth0_oauth_token_body_I } from '@ctx-core/auth0'
2
- import { type Ctx } from '@ctx-core/object'
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 { type auth0_token_T } from '@ctx-core/auth0'
2
- import { type Ctx } from '@ctx-core/object'
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 { type Ctx } from '@ctx-core/object'
3
- import { type CreateClientGrant } from 'auth0'
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 { type Ctx } from '@ctx-core/object'
3
- import { type User } from 'auth0'
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 { type Auth0UserProfile } from 'auth0-js'
3
- import { type Ctx } from '@ctx-core/object'
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 { type Ctx } from '@ctx-core/object'
3
- import { type Client } from 'auth0'
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 { type Ctx } from '@ctx-core/object'
3
- import { type UpdateUserData, type UserData } from 'auth0'
4
- import { type Auth0Error } from 'auth0-js'
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]>