@friggframework/schemas 2.0.0--canary.461.9c16b2e.0 → 2.0.0--canary.461.41b7566.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friggframework/schemas",
3
- "version": "2.0.0--canary.461.9c16b2e.0",
3
+ "version": "2.0.0--canary.461.41b7566.0",
4
4
  "description": "Canonical JSON Schema definitions for Frigg Framework",
5
5
  "main": "index.js",
6
6
  "author": "",
@@ -39,5 +39,5 @@
39
39
  "validators/",
40
40
  "index.js"
41
41
  ],
42
- "gitHead": "9c16b2ef70b6600db5b3b58b85210236ffec88ad"
42
+ "gitHead": "41b7566abaa46939705d52e01904022e52cdd06a"
43
43
  }
@@ -79,21 +79,21 @@
79
79
  },
80
80
  "authModes": {
81
81
  "type": "object",
82
- "description": "Authentication mode configuration - enables multiple authentication strategies",
82
+ "description": "Authentication mode configuration - enables multiple authentication strategies. x-frigg-appUserId and x-frigg-appOrgId headers are automatically supported for user identification with any auth mode.",
83
83
  "properties": {
84
84
  "friggToken": {
85
85
  "type": "boolean",
86
86
  "description": "Enable Frigg native bearer token authentication (from /user/login)",
87
87
  "default": true
88
88
  },
89
- "xFriggHeaders": {
89
+ "sharedSecret": {
90
90
  "type": "boolean",
91
- "description": "Enable backend-to-backend authentication using x-frigg-appUserId and x-frigg-appOrgId headers",
91
+ "description": "Enable shared secret authentication for backend-to-backend communication (requires FRIGG_API_KEY env var and x-frigg-api-key header)",
92
92
  "default": false
93
93
  },
94
94
  "adopterJwt": {
95
95
  "type": "boolean",
96
- "description": "Enable custom JWT authentication from adopter's auth system (NOT YET IMPLEMENTED)",
96
+ "description": "Enable custom JWT authentication from adopter's auth system (requires jwtConfig)",
97
97
  "default": false
98
98
  }
99
99
  },