@jskit-ai/assistant 0.1.65 → 0.1.67

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,7 +1,7 @@
1
1
  export default Object.freeze({
2
2
  packageVersion: 1,
3
3
  packageId: "@jskit-ai/assistant",
4
- version: "0.1.65",
4
+ version: "0.1.67",
5
5
  kind: "generator",
6
6
  description: "Install assistant runtime/config for one surface and scaffold assistant pages at explicit target files.",
7
7
  options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/assistant",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -9,6 +9,6 @@
9
9
  "./server/buildTemplateContext": "./src/server/buildTemplateContext.js"
10
10
  },
11
11
  "dependencies": {
12
- "@jskit-ai/kernel": "0.1.56"
12
+ "@jskit-ai/kernel": "0.1.58"
13
13
  }
14
14
  }
@@ -138,7 +138,7 @@ test("assistant settings-page subcommand uses the target assistant surface and i
138
138
  const placementSource = await readFile(path.join(appRoot, "src/placement.js"), "utf8");
139
139
  assert.match(placementSource, /jskit:assistant\.settings-page\.link:admin:\/settings\/assistant:console/);
140
140
  assert.match(placementSource, /target: "admin-settings:sub-pages"/);
141
- assert.match(placementSource, /componentToken: "local\.main\.ui\.tab-link-item"/);
141
+ assert.match(placementSource, /componentToken: "local\.main\.ui\.surface-aware-menu-link-item"/);
142
142
  assert.match(placementSource, /to: "\.\/assistant"/);
143
143
  assert.match(placementSource, /label: "Assistant"/);
144
144
  });