spine-framework-portal 0.2.4 → 0.2.6

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.
Files changed (2) hide show
  1. package/manifest.json +4 -3
  2. package/package.json +4 -1
package/manifest.json CHANGED
@@ -2,7 +2,8 @@
2
2
  "name": "Portal",
3
3
  "slug": "portal",
4
4
  "description": "Self-service portal for customers to access tickets, knowledge base, courses, and community",
5
- "version": "1.0.0",
5
+ "version": "0.2.6",
6
+ "app_type": "full",
6
7
  "required_roles": ["member"],
7
8
  "routes": [
8
9
  "/portal",
@@ -61,12 +62,12 @@
61
62
  "features": ["tickets", "kb", "courses", "community", "marketplace"],
62
63
  "dependencies": ["items", "threads", "messages"],
63
64
  "entry_point": "./index.tsx",
64
- "directories": ["pages", "components", "hooks", "config", "utils", "seed", "functions"],
65
65
  "is_public": true,
66
66
  "auth_required": true,
67
67
  "registration": {
68
68
  "enabled": true,
69
69
  "default_role": "member",
70
- "redirect_path": "/portal"
70
+ "redirect_path": "/portal",
71
+ "account_strategy": "new"
71
72
  }
72
73
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework-portal",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Customer Portal — self-service portal app for Spine Framework",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -24,6 +24,9 @@
24
24
  "README.md",
25
25
  "LICENSE.md"
26
26
  ],
27
+ "scripts": {
28
+ "validate": "npx spine-framework validate-app ."
29
+ },
27
30
  "spine": {
28
31
  "type": "app",
29
32
  "slug": "portal",