create-kumiko-app 0.4.47 → 0.4.48

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
3
- "featureCount": 45,
3
+ "featureCount": 46,
4
4
  "features": [
5
5
  {
6
6
  "name": "audit",
@@ -1096,6 +1096,31 @@
1096
1096
  "recommended": false
1097
1097
  }
1098
1098
  },
1099
+ {
1100
+ "name": "personal-access-tokens",
1101
+ "description": "Long-lived, revocable Personal Access Tokens for headless HTTP-API access. Stores SHA-256 token hashes in the `read_api_tokens` direct-write table; the plaintext is returned once at creation. `create`/`revoke`/`mine` manage a user's own tokens and `available-scopes` lists the app-declared scope catalog. Bearer tokens carrying the PAT prefix are resolved before jwt.verify (roles resolved live, granted scopes enforced fail-closed at the API boundary) — the resolver is wired via run-prod-app, not the dispatcher.",
1102
+ "toggleableDefault": null,
1103
+ "requires": [
1104
+ "user",
1105
+ "tenant"
1106
+ ],
1107
+ "optionalRequires": [],
1108
+ "configReads": [],
1109
+ "exposesApis": [],
1110
+ "usesApis": [],
1111
+ "extensionsUsed": [],
1112
+ "configKeys": [],
1113
+ "secrets": [],
1114
+ "writeHandlers": [
1115
+ "personal-access-tokens:write:create",
1116
+ "personal-access-tokens:write:revoke"
1117
+ ],
1118
+ "uiHints": {
1119
+ "displayLabel": "Personal Access Tokens",
1120
+ "category": "identity",
1121
+ "recommended": false
1122
+ }
1123
+ },
1099
1124
  {
1100
1125
  "name": "rate-limiting",
1101
1126
  "description": "Adds an ops-side `rate-limiting:query:status` query handler for inspecting current bucket state; the actual request throttling is wired automatically by the dispatcher when any handler declares a `rateLimit` option (e.g. `{ per: 'user', limit: 3, windowSeconds: 60 }`) or when you pass `context.rateLimit` to `buildServer`. Loading this feature is optional if you only need L3 per-handler rate limits and have no need for ops introspection.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.47",
3
+ "version": "0.4.48",
4
4
  "description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -30,8 +30,8 @@
30
30
  "vendor:manifest": "bun run scripts/vendor-manifest.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@cosmicdrift/kumiko-dev-server": "0.108.0",
34
- "@cosmicdrift/kumiko-framework": "0.108.0",
33
+ "@cosmicdrift/kumiko-dev-server": "0.109.0",
34
+ "@cosmicdrift/kumiko-framework": "0.109.0",
35
35
  "@inquirer/core": "^10.0.0",
36
36
  "@inquirer/prompts": "^7.4.0"
37
37
  },