@meistrari/auth-nuxt 3.31.2 → 4.1.0

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/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meistrari/auth-nuxt",
3
3
  "configKey": "telaAuth",
4
- "version": "3.31.2",
4
+ "version": "4.1.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -233,9 +233,10 @@ export interface UseTelaAdminReturn {
233
233
  /**
234
234
  * Invites several users to an organization in one call, or — with
235
235
  * `sendInvite: false` — adds them as members immediately, creating user
236
- * accounts as needed. Failures are isolated per email in the results
236
+ * accounts as needed (optionally with an initial password for accounts
237
+ * that have none). Failures are isolated per email in the results
237
238
  * payload.
238
- * @param options - Organization, emails, role, and optional teams/application
239
+ * @param options - Organization, emails, role, and optional teams/application/password
239
240
  */
240
241
  inviteOrganizationUsers: (options: InviteAdminOrganizationUsersOptions) => Promise<InviteAdminOrganizationUsersResult>;
241
242
  }
package/package.json CHANGED
@@ -1,63 +1,63 @@
1
1
  {
2
- "name": "@meistrari/auth-nuxt",
3
- "version": "3.31.2",
4
- "type": "module",
5
- "exports": {
6
- ".": {
7
- "types": "./dist/types.d.mts",
8
- "import": "./dist/module.mjs"
2
+ "name": "@meistrari/auth-nuxt",
3
+ "version": "4.1.0",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./dist/types.d.mts",
8
+ "import": "./dist/module.mjs"
9
+ },
10
+ "./server/middleware/auth": {
11
+ "types": "./dist/runtime/server/middleware/auth.d.ts",
12
+ "import": "./dist/runtime/server/middleware/auth.js"
13
+ },
14
+ "./server/middleware/application-auth": {
15
+ "types": "./dist/runtime/server/middleware/application-auth.d.ts",
16
+ "import": "./dist/runtime/server/middleware/application-auth.js"
17
+ },
18
+ "./core": {
19
+ "types": "./dist/core.d.mts",
20
+ "import": "./dist/core.mjs"
21
+ }
9
22
  },
10
- "./server/middleware/auth": {
11
- "types": "./dist/runtime/server/middleware/auth.d.ts",
12
- "import": "./dist/runtime/server/middleware/auth.js"
23
+ "main": "./dist/module.mjs",
24
+ "typesVersions": {
25
+ "*": {
26
+ ".": [
27
+ "./dist/types.d.mts"
28
+ ]
29
+ }
13
30
  },
14
- "./server/middleware/application-auth": {
15
- "types": "./dist/runtime/server/middleware/application-auth.d.ts",
16
- "import": "./dist/runtime/server/middleware/application-auth.js"
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "scripts": {
35
+ "build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
36
+ "docs": "nuxt-module-build prepare && typedoc"
17
37
  },
18
- "./core": {
19
- "types": "./dist/core.d.mts",
20
- "import": "./dist/core.mjs"
21
- }
22
- },
23
- "main": "./dist/module.mjs",
24
- "typesVersions": {
25
- "*": {
26
- ".": [
27
- "./dist/types.d.mts"
28
- ]
38
+ "dependencies": {
39
+ "@meistrari/auth-core": "1.42.0",
40
+ "jose": "6.1.3"
41
+ },
42
+ "peerDependencies": {
43
+ "nuxt": "^3.10.0 || ^4.0.0",
44
+ "vue": "^3.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@nuxt/devtools": "3.4.1",
48
+ "@nuxt/eslint-config": "1.9.0",
49
+ "@nuxt/kit": "4.0.3",
50
+ "@nuxt/module-builder": "1.0.2",
51
+ "@nuxt/schema": "4.0.3",
52
+ "@nuxt/test-utils": "3.19.2",
53
+ "@types/node": "latest",
54
+ "changelogen": "0.6.2",
55
+ "nuxt": "4.5.2",
56
+ "typescript": "5.9.2",
57
+ "unbuild": "3.6.1",
58
+ "typedoc": "0.28.18",
59
+ "typedoc-plugin-markdown": "4.11.0",
60
+ "vitest": "4.1.11",
61
+ "vue-tsc": "3.0.6"
29
62
  }
30
- },
31
- "files": [
32
- "dist"
33
- ],
34
- "scripts": {
35
- "build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
36
- "docs": "nuxt-module-build prepare && typedoc"
37
- },
38
- "dependencies": {
39
- "@meistrari/auth-core": "1.41.2",
40
- "jose": "6.1.3"
41
- },
42
- "peerDependencies": {
43
- "nuxt": "^3.10.0 || ^4.0.0",
44
- "vue": "^3.0.0"
45
- },
46
- "devDependencies": {
47
- "@nuxt/devtools": "3.4.1",
48
- "@nuxt/eslint-config": "1.9.0",
49
- "@nuxt/kit": "4.0.3",
50
- "@nuxt/module-builder": "1.0.2",
51
- "@nuxt/schema": "4.0.3",
52
- "@nuxt/test-utils": "3.19.2",
53
- "@types/node": "latest",
54
- "changelogen": "0.6.2",
55
- "nuxt": "4.5.2",
56
- "typescript": "5.9.2",
57
- "unbuild": "3.6.1",
58
- "typedoc": "0.28.18",
59
- "typedoc-plugin-markdown": "4.11.0",
60
- "vitest": "4.1.11",
61
- "vue-tsc": "3.0.6"
62
- }
63
63
  }