@ctx-core/auth0-management 9.4.12 → 9.4.15

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,35 @@
1
1
  # @ctx-core/auth0-management
2
2
 
3
+ ## 9.4.15
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: types:
8
+
9
+ AUTH0_MANAGEMENT_ID__
10
+ AUTH0_MANAGEMENT_ID_
11
+ AUTH0_MANAGEMENT_ID__set
12
+ AUTH0_MANAGEMENT_SECRET__
13
+ AUTH0_MANAGEMENT_SECRET_
14
+ AUTH0_MANAGEMENT_SECRET__set
15
+
16
+ - Updated dependencies
17
+ - @ctx-core/auth0@38.2.20
18
+
19
+ ## 9.4.14
20
+
21
+ ### Patch Changes
22
+
23
+ - @ctx-core/auth0: ^38.2.18 -> ^38.2.19
24
+ - @ctx-core/env: ^17.2.93 -> ^17.2.94
25
+
26
+ ## 9.4.13
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @ctx-core/nanostores@4.0.2
32
+
3
33
  ## 9.4.12
4
34
 
5
35
  ### Patch Changes
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.4.12",
3
+ "version": "9.4.15",
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.2.18",
32
- "@ctx-core/env": "^17.2.93",
31
+ "@ctx-core/auth0": "^38.2.20",
32
+ "@ctx-core/env": "^17.2.94",
33
33
  "@ctx-core/error": "^12.3.29",
34
34
  "@ctx-core/fetch": "^12.10.5",
35
35
  "@ctx-core/fetch-undici": "^2.6.61",
36
- "@ctx-core/nanostores": "4.0.1",
36
+ "@ctx-core/nanostores": "4.0.2",
37
37
  "@ctx-core/object": "^27.4.26",
38
38
  "@ctx-core/uri": "^12.4.41",
39
39
  "auth0": "^3.4.0"
@@ -1,6 +1,8 @@
1
- import type { be_atom_triple_T } from '@ctx-core/nanostores'
1
+ import type { be_atom_triple_T, WritableAtom_ } from '@ctx-core/nanostores'
2
2
  export declare const [
3
3
  AUTH0_MANAGEMENT_ID__,
4
4
  AUTH0_MANAGEMENT_ID_,
5
5
  AUTH0_MANAGEMENT_ID__set,
6
- ]:be_atom_triple_T<string>
6
+ ]:be_atom_triple_T<
7
+ WritableAtom_<string>
8
+ >
@@ -1,6 +1,8 @@
1
- import type { be_atom_triple_T } from '@ctx-core/nanostores'
1
+ import type { be_atom_triple_T, WritableAtom_ } from '@ctx-core/nanostores'
2
2
  export declare const [
3
3
  AUTH0_MANAGEMENT_SECRET__,
4
4
  AUTH0_MANAGEMENT_SECRET_,
5
5
  AUTH0_MANAGEMENT_SECRET__set,
6
- ]:be_atom_triple_T<string>
6
+ ]:be_atom_triple_T<
7
+ WritableAtom_<string>
8
+ >