@coffer-org/plugin-transit 6.0.0 → 7.0.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/index.js CHANGED
@@ -14,6 +14,7 @@ export default definePlugin({
14
14
  label: 'transit.library.label',
15
15
  icon: 'lucide:bus',
16
16
  agent: 'Local bus routes and their departure schedules (bus_route).',
17
+ starterHint: 'the next departures on the saved routes',
17
18
  }),
18
19
  shelves: [bus_route],
19
20
  },
package/dist/schema.js CHANGED
@@ -8556,6 +8556,12 @@ function divider(o) {
8556
8556
  /**
8557
8557
  * Reference markdown block by i18n key.
8558
8558
  *
8559
+ * The key is resolved WITH the variables of the running instance, so the locale string
8560
+ * may name facts that are not constants: `{{origin}}` is this instance's own address
8561
+ * (`https://coffer.example`), which is how a block documents an endpoint without
8562
+ * freezing a developer's `localhost` into every translation. The set is fixed and
8563
+ * ambient — the block declares only its key. See `web-ui/src/render/info-text.ts`.
8564
+ *
8559
8565
  * @layer primitive
8560
8566
  * @prim —
8561
8567
  * @widget info
@@ -11085,7 +11091,8 @@ var src_default = definePlugin({
11085
11091
  id: "transit",
11086
11092
  label: "transit.library.label",
11087
11093
  icon: "lucide:bus",
11088
- agent: "Local bus routes and their departure schedules (bus_route)."
11094
+ agent: "Local bus routes and their departure schedules (bus_route).",
11095
+ starterHint: "the next departures on the saved routes"
11089
11096
  }),
11090
11097
  shelves: [bus_route_default]
11091
11098
  }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coffer-org/plugin-transit",
3
- "version": "6.0.0",
3
+ "version": "7.0.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24"
@@ -26,9 +26,9 @@
26
26
  "test": "node --import tsx/esm --test 'src/runtime/*.test.ts'"
27
27
  },
28
28
  "dependencies": {
29
- "@coffer-org/sdk": "^6.0.0",
30
- "@coffer-org/server": "^6.0.0",
31
- "@coffer-org/helper-dav": "^6.0.0"
29
+ "@coffer-org/sdk": "^7.0.0",
30
+ "@coffer-org/server": "^7.0.0",
31
+ "@coffer-org/helper-dav": "^7.0.0"
32
32
  },
33
33
  "coffer": {
34
34
  "runtime": "node",