@paroicms/public-server-lib 0.48.0 → 0.48.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/public-server-lib",
3
- "version": "0.48.0",
3
+ "version": "0.48.2",
4
4
  "description": "Common utilitaries for paroicms plugins (backend side).",
5
5
  "author": "Paroi Team",
6
6
  "repository": {
@@ -22,18 +22,18 @@
22
22
  "dev": "tsc --watch --preserveWatchOutput"
23
23
  },
24
24
  "dependencies": {
25
- "@paroicms/internal-anywhere-lib": "1.35.5",
26
- "@paroicms/public-anywhere-lib": "0.38.0",
27
- "@paroicms/script-lib": "0.3.5",
25
+ "@paroicms/internal-anywhere-lib": "1.35.6",
26
+ "@paroicms/public-anywhere-lib": "0.38.1",
27
+ "@paroicms/script-lib": "0.3.6",
28
28
  "@typeonly/validator": "~1.1.2",
29
- "arktype": "~2.1.23"
29
+ "arktype": "~2.1.26"
30
30
  },
31
31
  "devDependencies": {
32
- "@types/node": "~24.8.1",
33
- "rimraf": "~6.0.1",
32
+ "@types/node": "~24.10.1",
33
+ "rimraf": "~6.1.0",
34
34
  "typeonly": "~1.1.3",
35
35
  "typescript": "~5.9.3",
36
- "vitest": "~3.2.4"
36
+ "vitest": "~4.0.9"
37
37
  },
38
38
  "files": [
39
39
  "dist",
@@ -412,12 +412,14 @@ export interface RiLocalNewAccount {
412
412
  email: string;
413
413
  name: string;
414
414
  password: string;
415
+ roles: string[];
415
416
  }
416
417
 
417
418
  export interface RiExternalNewAccount {
418
419
  kind: "google";
419
420
  email: string;
420
421
  name: string;
422
+ roles: string[];
421
423
  }
422
424
 
423
425
  export type RiNodeContent = RiDocumentContent | RiPartContent;