@ctx-core/auth0-management 9.0.68 → 9.0.70
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 +13 -0
- package/package.json +8 -8
- package/src/patch_auth0_v2_user/index.d.ts +1 -1
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.70",
|
|
4
4
|
"description": "ctx-core auth0 management api",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -28,18 +28,18 @@
|
|
|
28
28
|
"getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@ctx-core/auth0": "^
|
|
32
|
-
"@ctx-core/fetch-undici": "^2.
|
|
33
|
-
"@ctx-core/object": "^22.2.
|
|
31
|
+
"@ctx-core/auth0": "^35.0.0",
|
|
32
|
+
"@ctx-core/fetch-undici": "^2.3.0",
|
|
33
|
+
"@ctx-core/object": "^22.2.4",
|
|
34
34
|
"@ctx-core/uri": "^12.0.51",
|
|
35
35
|
"auth0": "^2.42.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/auth0": "^2.35.
|
|
38
|
+
"@types/auth0": "^2.35.3",
|
|
39
39
|
"@types/auth0-js": "^9.14.6",
|
|
40
|
-
"c8": "^7.
|
|
40
|
+
"c8": "^7.12.0",
|
|
41
41
|
"check-dts": "^0.6.7",
|
|
42
|
-
"
|
|
42
|
+
"tsx": "^3.8.0",
|
|
43
43
|
"typescript": "next",
|
|
44
44
|
"uvu": "^0.5.6"
|
|
45
45
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"clean": ":",
|
|
55
55
|
"exec": "$@",
|
|
56
56
|
"test": "pnpm test-unit && check-dts",
|
|
57
|
-
"test-unit": "
|
|
57
|
+
"test-unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
|
|
58
58
|
"test-unit-coverage": "c8 pnpm test-unit"
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
2
|
import { type Ctx } from '@ctx-core/object'
|
|
3
|
-
import type
|
|
3
|
+
import { type UpdateUserData, type UserData } from 'auth0'
|
|
4
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
|