@jskit-ai/assistant-runtime 0.1.181 → 0.1.182

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": "@jskit-ai/assistant-runtime",
3
- "version": "0.1.181",
3
+ "version": "0.1.182",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -11,15 +11,15 @@
11
11
  "./server/actionIds": "./src/server/actionIds.js"
12
12
  },
13
13
  "dependencies": {
14
- "@jskit-ai/assistant-core": "0.1.188",
15
- "@jskit-ai/database-runtime": "0.1.210",
14
+ "@jskit-ai/assistant-core": "0.1.189",
15
+ "@jskit-ai/database-runtime": "0.1.211",
16
16
  "json-rest-schema": "^1.0.17"
17
17
  },
18
18
  "peerDependencies": {
19
- "@jskit-ai/http-runtime": "0.1.208",
20
- "@jskit-ai/http-web": "0.1.55",
21
- "@jskit-ai/kernel": "0.1.210",
22
- "@jskit-ai/shell-web": "0.1.214",
19
+ "@jskit-ai/http-runtime": "0.1.209",
20
+ "@jskit-ai/http-web": "0.1.56",
21
+ "@jskit-ai/kernel": "0.1.211",
22
+ "@jskit-ai/shell-web": "0.1.215",
23
23
  "@tanstack/vue-query": "^5.90.5",
24
24
  "vue": "^3.5.13",
25
25
  "vuetify": "^4.0.0"
@@ -330,14 +330,14 @@ test("pending delivery appears immediately and retries the original request with
330
330
  await expect(input).toHaveValue("");
331
331
  await input.fill("Keep this newer draft.");
332
332
  held.resolve();
333
- await expect(page.getByRole("button", { name: "Resend", exact: true })).toBeVisible();
333
+ await expect(page.getByRole("button", { name: "Retry", exact: true })).toBeVisible();
334
334
  await expect(input).toHaveValue("Keep this newer draft.");
335
- await page.getByRole("button", { name: "Resend", exact: true }).click();
335
+ await page.getByRole("button", { name: "Retry", exact: true }).click();
336
336
  await expect(page.getByLabel("Fixture assistant progress")).toBeVisible();
337
337
  assert.equal(requests.length, 2);
338
338
  assert.deepEqual(requests[1], requests[0]);
339
339
  await expect(page.getByText("Show this immediately.", { exact: true })).toHaveCount(1);
340
- await expect(page.getByRole("button", { name: "Resend", exact: true })).toHaveCount(0);
340
+ await expect(page.getByRole("button", { name: "Retry", exact: true })).toHaveCount(0);
341
341
  await expect(input).toHaveValue("Keep this newer draft.");
342
342
  await page.request.get(`${vite.baseURL}/fixture/next?finish=1`);
343
343
  await expect(page.getByRole("button", { name: "Stop", exact: true })).toHaveCount(0);