een-api-toolkit 0.3.101 → 0.3.105
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/CHANGELOG.md +65 -54
- package/dist/index.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -2
- package/dist/index.js +2147 -2954
- package/dist/index.js.map +1 -1
- package/dist/service-C15aBZxB.cjs +2 -0
- package/dist/service-C15aBZxB.cjs.map +1 -0
- package/dist/service-uw8agT31.js +348 -0
- package/dist/service-uw8agT31.js.map +1 -0
- package/docs/AI-CONTEXT.md +1 -1
- package/docs/ai-reference/AI-AUTH.md +1 -1
- package/docs/ai-reference/AI-AUTOMATIONS.md +1 -1
- package/docs/ai-reference/AI-DEVICES.md +1 -1
- package/docs/ai-reference/AI-EVENT-DATA-SCHEMAS.md +2 -1
- package/docs/ai-reference/AI-EVENTS.md +1 -1
- package/docs/ai-reference/AI-GROUPING.md +1 -1
- package/docs/ai-reference/AI-JOBS.md +1 -1
- package/docs/ai-reference/AI-MEDIA.md +1 -1
- package/docs/ai-reference/AI-PTZ.md +1 -1
- package/docs/ai-reference/AI-SETUP.md +1 -1
- package/docs/ai-reference/AI-USERS.md +1 -1
- package/examples/vue-alerts-metrics/package-lock.json +7 -7
- package/examples/vue-automations/e2e/auth.spec.ts +44 -28
- package/examples/vue-automations/package-lock.json +7 -7
- package/examples/vue-bridges/package-lock.json +7 -7
- package/examples/vue-cameras/package-lock.json +7 -7
- package/examples/vue-event-subscriptions/package-lock.json +7 -7
- package/examples/vue-events/package-lock.json +7 -7
- package/examples/vue-feeds/package-lock.json +7 -7
- package/examples/vue-jobs/package-lock.json +7 -7
- package/examples/vue-layouts/package-lock.json +7 -7
- package/examples/vue-media/package-lock.json +7 -7
- package/examples/vue-ptz/package-lock.json +4 -4
- package/examples/vue-users/package-lock.json +9 -9
- package/examples/vue-users/package.json +1 -1
- package/package.json +4 -4
|
@@ -26,32 +26,32 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"../..": {
|
|
29
|
-
"version": "0.3.
|
|
29
|
+
"version": "0.3.103",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"bin": {
|
|
32
32
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@eslint/js": "^9.
|
|
35
|
+
"@eslint/js": "^9.0.0",
|
|
36
36
|
"@marp-team/marp-cli": "^4.2.3",
|
|
37
|
-
"@playwright/test": "1.58.
|
|
37
|
+
"@playwright/test": "1.58.2",
|
|
38
38
|
"@types/node": "^25.0.3",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
40
40
|
"@typescript-eslint/parser": "^8.51.0",
|
|
41
41
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
42
|
-
"@vue/tsconfig": "^0.
|
|
42
|
+
"@vue/tsconfig": "^0.9.0",
|
|
43
43
|
"dotenv": "^17.2.3",
|
|
44
|
-
"eslint": "^9.
|
|
44
|
+
"eslint": "^9.0.0",
|
|
45
45
|
"eslint-plugin-vue": "^10.6.2",
|
|
46
46
|
"globals": "^17.0.0",
|
|
47
47
|
"husky": "^9.1.7",
|
|
48
|
-
"jsdom": "^
|
|
48
|
+
"jsdom": "^29.0.1",
|
|
49
49
|
"pinia": "^3.0.4",
|
|
50
50
|
"tsx": "^4.21.0",
|
|
51
51
|
"typedoc": "^0.28.15",
|
|
52
52
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
53
53
|
"typescript": "~5.8.0",
|
|
54
|
-
"vite": "^
|
|
54
|
+
"vite": "^8.0.1",
|
|
55
55
|
"vite-plugin-dts": "^4.5.4",
|
|
56
56
|
"vitest": "^4.0.16",
|
|
57
57
|
"vue": "^3.4.0",
|
|
@@ -234,14 +234,16 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
234
234
|
await page.click('[data-testid="tab-action-rules"]')
|
|
235
235
|
await expect(page.locator('[data-testid="tab-action-rules"]')).toHaveClass(/active/)
|
|
236
236
|
|
|
237
|
-
// Wait for data to load -
|
|
237
|
+
// Wait for data to load - accept either a data table or an empty-state message
|
|
238
238
|
const table = page.locator('[data-testid="action-rules-table"]')
|
|
239
|
-
|
|
239
|
+
const noData = page.locator('[data-testid="action-rules-content"] .no-data')
|
|
240
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
240
241
|
|
|
241
|
-
//
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
242
|
+
// If table is visible, verify it has data rows
|
|
243
|
+
if (await table.isVisible()) {
|
|
244
|
+
const rowCount = await table.locator('tbody tr').count()
|
|
245
|
+
expect(rowCount).toBeGreaterThan(0)
|
|
246
|
+
}
|
|
245
247
|
|
|
246
248
|
// Verify no error state is shown
|
|
247
249
|
await expect(page.locator('[data-testid="action-rules-content"] .error')).not.toBeVisible()
|
|
@@ -271,14 +273,16 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
271
273
|
await page.click('[data-testid="tab-condition-rules"]')
|
|
272
274
|
await expect(page.locator('[data-testid="tab-condition-rules"]')).toHaveClass(/active/)
|
|
273
275
|
|
|
274
|
-
// Wait for data to load -
|
|
276
|
+
// Wait for data to load - accept either a data table or an empty-state message
|
|
275
277
|
const table = page.locator('[data-testid="condition-rules-table"]')
|
|
276
|
-
|
|
278
|
+
const noData = page.locator('[data-testid="condition-rules-content"] .no-data')
|
|
279
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
277
280
|
|
|
278
|
-
//
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
281
|
+
// If table is visible, verify it has data rows
|
|
282
|
+
if (await table.isVisible()) {
|
|
283
|
+
const rowCount = await table.locator('tbody tr').count()
|
|
284
|
+
expect(rowCount).toBeGreaterThan(0)
|
|
285
|
+
}
|
|
282
286
|
|
|
283
287
|
// Verify no error state is shown
|
|
284
288
|
await expect(page.locator('[data-testid="condition-rules-content"] .error')).not.toBeVisible()
|
|
@@ -308,14 +312,16 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
308
312
|
await page.click('[data-testid="tab-actions"]')
|
|
309
313
|
await expect(page.locator('[data-testid="tab-actions"]')).toHaveClass(/active/)
|
|
310
314
|
|
|
311
|
-
// Wait for data to load -
|
|
315
|
+
// Wait for data to load - accept either a data table or an empty-state message
|
|
312
316
|
const table = page.locator('[data-testid="actions-table"]')
|
|
313
|
-
|
|
317
|
+
const noData = page.locator('[data-testid="actions-content"] .no-data')
|
|
318
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
314
319
|
|
|
315
|
-
//
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
320
|
+
// If table is visible, verify it has data rows
|
|
321
|
+
if (await table.isVisible()) {
|
|
322
|
+
const rowCount = await table.locator('tbody tr').count()
|
|
323
|
+
expect(rowCount).toBeGreaterThan(0)
|
|
324
|
+
}
|
|
319
325
|
|
|
320
326
|
// Verify no error state is shown
|
|
321
327
|
await expect(page.locator('[data-testid="actions-content"] .error')).not.toBeVisible()
|
|
@@ -341,14 +347,16 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
341
347
|
|
|
342
348
|
await performLogin(page, TEST_USER!, TEST_PASSWORD!)
|
|
343
349
|
|
|
344
|
-
// Event alert rules is the default tab -
|
|
350
|
+
// Event alert rules is the default tab - accept either a data table or an empty-state message
|
|
345
351
|
const table = page.locator('[data-testid="event-alert-rules-table"]')
|
|
346
|
-
|
|
352
|
+
const noData = page.locator('[data-testid="event-alert-rules-content"] .no-data')
|
|
353
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
347
354
|
|
|
348
|
-
//
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
355
|
+
// If table is visible, verify it has data rows
|
|
356
|
+
if (await table.isVisible()) {
|
|
357
|
+
const rowCount = await table.locator('tbody tr').count()
|
|
358
|
+
expect(rowCount).toBeGreaterThan(0)
|
|
359
|
+
}
|
|
352
360
|
|
|
353
361
|
// Verify no error state is shown
|
|
354
362
|
await expect(page.locator('[data-testid="event-alert-rules-content"] .error')).not.toBeVisible()
|
|
@@ -366,9 +374,13 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
366
374
|
|
|
367
375
|
await performLogin(page, TEST_USER!, TEST_PASSWORD!)
|
|
368
376
|
|
|
369
|
-
// Wait for event alert rules to load (default tab)
|
|
377
|
+
// Wait for event alert rules to load (default tab) - may be empty
|
|
370
378
|
const table = page.locator('[data-testid="event-alert-rules-table"]')
|
|
371
|
-
|
|
379
|
+
const noData = page.locator('[data-testid="event-alert-rules-content"] .no-data')
|
|
380
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
381
|
+
|
|
382
|
+
// Skip modal test if no data rows exist
|
|
383
|
+
if (!(await table.isVisible())) return
|
|
372
384
|
|
|
373
385
|
// Click the first row
|
|
374
386
|
const firstRow = table.locator('tbody tr').first()
|
|
@@ -396,9 +408,13 @@ test.describe('Vue Automations Example - Auth', () => {
|
|
|
396
408
|
|
|
397
409
|
await performLogin(page, TEST_USER!, TEST_PASSWORD!)
|
|
398
410
|
|
|
399
|
-
// Wait for event alert rules to load
|
|
411
|
+
// Wait for event alert rules to load - may be empty
|
|
400
412
|
const table = page.locator('[data-testid="event-alert-rules-table"]')
|
|
401
|
-
|
|
413
|
+
const noData = page.locator('[data-testid="event-alert-rules-content"] .no-data')
|
|
414
|
+
await expect(table.or(noData)).toBeVisible({ timeout: TIMEOUTS.DATA_LOAD })
|
|
415
|
+
|
|
416
|
+
// Skip modal test if no data rows exist
|
|
417
|
+
if (!(await table.isVisible())) return
|
|
402
418
|
|
|
403
419
|
// Click the first row to open modal
|
|
404
420
|
await table.locator('tbody tr').first().click()
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"../..": {
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.103",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bin": {
|
|
29
29
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
32
|
+
"@eslint/js": "^9.0.0",
|
|
33
33
|
"@marp-team/marp-cli": "^4.2.3",
|
|
34
|
-
"@playwright/test": "1.58.
|
|
34
|
+
"@playwright/test": "1.58.2",
|
|
35
35
|
"@types/node": "^25.0.3",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
37
37
|
"@typescript-eslint/parser": "^8.51.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
39
|
-
"@vue/tsconfig": "^0.
|
|
39
|
+
"@vue/tsconfig": "^0.9.0",
|
|
40
40
|
"dotenv": "^17.2.3",
|
|
41
|
-
"eslint": "^9.
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
42
|
"eslint-plugin-vue": "^10.6.2",
|
|
43
43
|
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
|
-
"jsdom": "^
|
|
45
|
+
"jsdom": "^29.0.1",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"tsx": "^4.21.0",
|
|
48
48
|
"typedoc": "^0.28.15",
|
|
49
49
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
50
50
|
"typescript": "~5.8.0",
|
|
51
|
-
"vite": "^
|
|
51
|
+
"vite": "^8.0.1",
|
|
52
52
|
"vite-plugin-dts": "^4.5.4",
|
|
53
53
|
"vitest": "^4.0.16",
|
|
54
54
|
"vue": "^3.4.0",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"../..": {
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.103",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bin": {
|
|
29
29
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
32
|
+
"@eslint/js": "^9.0.0",
|
|
33
33
|
"@marp-team/marp-cli": "^4.2.3",
|
|
34
|
-
"@playwright/test": "1.58.
|
|
34
|
+
"@playwright/test": "1.58.2",
|
|
35
35
|
"@types/node": "^25.0.3",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
37
37
|
"@typescript-eslint/parser": "^8.51.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
39
|
-
"@vue/tsconfig": "^0.
|
|
39
|
+
"@vue/tsconfig": "^0.9.0",
|
|
40
40
|
"dotenv": "^17.2.3",
|
|
41
|
-
"eslint": "^9.
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
42
|
"eslint-plugin-vue": "^10.6.2",
|
|
43
43
|
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
|
-
"jsdom": "^
|
|
45
|
+
"jsdom": "^29.0.1",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"tsx": "^4.21.0",
|
|
48
48
|
"typedoc": "^0.28.15",
|
|
49
49
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
50
50
|
"typescript": "~5.8.0",
|
|
51
|
-
"vite": "^
|
|
51
|
+
"vite": "^8.0.1",
|
|
52
52
|
"vite-plugin-dts": "^4.5.4",
|
|
53
53
|
"vitest": "^4.0.16",
|
|
54
54
|
"vue": "^3.4.0",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"../..": {
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.103",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bin": {
|
|
29
29
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
32
|
+
"@eslint/js": "^9.0.0",
|
|
33
33
|
"@marp-team/marp-cli": "^4.2.3",
|
|
34
|
-
"@playwright/test": "1.58.
|
|
34
|
+
"@playwright/test": "1.58.2",
|
|
35
35
|
"@types/node": "^25.0.3",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
37
37
|
"@typescript-eslint/parser": "^8.51.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
39
|
-
"@vue/tsconfig": "^0.
|
|
39
|
+
"@vue/tsconfig": "^0.9.0",
|
|
40
40
|
"dotenv": "^17.2.3",
|
|
41
|
-
"eslint": "^9.
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
42
|
"eslint-plugin-vue": "^10.6.2",
|
|
43
43
|
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
|
-
"jsdom": "^
|
|
45
|
+
"jsdom": "^29.0.1",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"tsx": "^4.21.0",
|
|
48
48
|
"typedoc": "^0.28.15",
|
|
49
49
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
50
50
|
"typescript": "~5.8.0",
|
|
51
|
-
"vite": "^
|
|
51
|
+
"vite": "^8.0.1",
|
|
52
52
|
"vite-plugin-dts": "^4.5.4",
|
|
53
53
|
"vitest": "^4.0.16",
|
|
54
54
|
"vue": "^3.4.0",
|
|
@@ -24,32 +24,32 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"../..": {
|
|
27
|
-
"version": "0.3.
|
|
27
|
+
"version": "0.3.103",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"bin": {
|
|
30
30
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@eslint/js": "^9.
|
|
33
|
+
"@eslint/js": "^9.0.0",
|
|
34
34
|
"@marp-team/marp-cli": "^4.2.3",
|
|
35
|
-
"@playwright/test": "1.58.
|
|
35
|
+
"@playwright/test": "1.58.2",
|
|
36
36
|
"@types/node": "^25.0.3",
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
38
38
|
"@typescript-eslint/parser": "^8.51.0",
|
|
39
39
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
40
|
-
"@vue/tsconfig": "^0.
|
|
40
|
+
"@vue/tsconfig": "^0.9.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
|
-
"eslint": "^9.
|
|
42
|
+
"eslint": "^9.0.0",
|
|
43
43
|
"eslint-plugin-vue": "^10.6.2",
|
|
44
44
|
"globals": "^17.0.0",
|
|
45
45
|
"husky": "^9.1.7",
|
|
46
|
-
"jsdom": "^
|
|
46
|
+
"jsdom": "^29.0.1",
|
|
47
47
|
"pinia": "^3.0.4",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typedoc": "^0.28.15",
|
|
50
50
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
51
51
|
"typescript": "~5.8.0",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^8.0.1",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vitest": "^4.0.16",
|
|
55
55
|
"vue": "^3.4.0",
|
|
@@ -24,32 +24,32 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"../..": {
|
|
27
|
-
"version": "0.3.
|
|
27
|
+
"version": "0.3.103",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"bin": {
|
|
30
30
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@eslint/js": "^9.
|
|
33
|
+
"@eslint/js": "^9.0.0",
|
|
34
34
|
"@marp-team/marp-cli": "^4.2.3",
|
|
35
|
-
"@playwright/test": "1.58.
|
|
35
|
+
"@playwright/test": "1.58.2",
|
|
36
36
|
"@types/node": "^25.0.3",
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
38
38
|
"@typescript-eslint/parser": "^8.51.0",
|
|
39
39
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
40
|
-
"@vue/tsconfig": "^0.
|
|
40
|
+
"@vue/tsconfig": "^0.9.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
|
-
"eslint": "^9.
|
|
42
|
+
"eslint": "^9.0.0",
|
|
43
43
|
"eslint-plugin-vue": "^10.6.2",
|
|
44
44
|
"globals": "^17.0.0",
|
|
45
45
|
"husky": "^9.1.7",
|
|
46
|
-
"jsdom": "^
|
|
46
|
+
"jsdom": "^29.0.1",
|
|
47
47
|
"pinia": "^3.0.4",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typedoc": "^0.28.15",
|
|
50
50
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
51
51
|
"typescript": "~5.8.0",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^8.0.1",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vitest": "^4.0.16",
|
|
55
55
|
"vue": "^3.4.0",
|
|
@@ -24,32 +24,32 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"../..": {
|
|
27
|
-
"version": "0.3.
|
|
27
|
+
"version": "0.3.103",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"bin": {
|
|
30
30
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@eslint/js": "^9.
|
|
33
|
+
"@eslint/js": "^9.0.0",
|
|
34
34
|
"@marp-team/marp-cli": "^4.2.3",
|
|
35
|
-
"@playwright/test": "1.58.
|
|
35
|
+
"@playwright/test": "1.58.2",
|
|
36
36
|
"@types/node": "^25.0.3",
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
38
38
|
"@typescript-eslint/parser": "^8.51.0",
|
|
39
39
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
40
|
-
"@vue/tsconfig": "^0.
|
|
40
|
+
"@vue/tsconfig": "^0.9.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
|
-
"eslint": "^9.
|
|
42
|
+
"eslint": "^9.0.0",
|
|
43
43
|
"eslint-plugin-vue": "^10.6.2",
|
|
44
44
|
"globals": "^17.0.0",
|
|
45
45
|
"husky": "^9.1.7",
|
|
46
|
-
"jsdom": "^
|
|
46
|
+
"jsdom": "^29.0.1",
|
|
47
47
|
"pinia": "^3.0.4",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typedoc": "^0.28.15",
|
|
50
50
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
51
51
|
"typescript": "~5.8.0",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^8.0.1",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vitest": "^4.0.16",
|
|
55
55
|
"vue": "^3.4.0",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"../..": {
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.103",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bin": {
|
|
29
29
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
32
|
+
"@eslint/js": "^9.0.0",
|
|
33
33
|
"@marp-team/marp-cli": "^4.2.3",
|
|
34
|
-
"@playwright/test": "1.58.
|
|
34
|
+
"@playwright/test": "1.58.2",
|
|
35
35
|
"@types/node": "^25.0.3",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
37
37
|
"@typescript-eslint/parser": "^8.51.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
39
|
-
"@vue/tsconfig": "^0.
|
|
39
|
+
"@vue/tsconfig": "^0.9.0",
|
|
40
40
|
"dotenv": "^17.2.3",
|
|
41
|
-
"eslint": "^9.
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
42
|
"eslint-plugin-vue": "^10.6.2",
|
|
43
43
|
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
|
-
"jsdom": "^
|
|
45
|
+
"jsdom": "^29.0.1",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"tsx": "^4.21.0",
|
|
48
48
|
"typedoc": "^0.28.15",
|
|
49
49
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
50
50
|
"typescript": "~5.8.0",
|
|
51
|
-
"vite": "^
|
|
51
|
+
"vite": "^8.0.1",
|
|
52
52
|
"vite-plugin-dts": "^4.5.4",
|
|
53
53
|
"vitest": "^4.0.16",
|
|
54
54
|
"vue": "^3.4.0",
|
|
@@ -23,32 +23,32 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"../..": {
|
|
26
|
-
"version": "0.3.
|
|
26
|
+
"version": "0.3.103",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bin": {
|
|
29
29
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eslint/js": "^9.
|
|
32
|
+
"@eslint/js": "^9.0.0",
|
|
33
33
|
"@marp-team/marp-cli": "^4.2.3",
|
|
34
|
-
"@playwright/test": "1.58.
|
|
34
|
+
"@playwright/test": "1.58.2",
|
|
35
35
|
"@types/node": "^25.0.3",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
37
37
|
"@typescript-eslint/parser": "^8.51.0",
|
|
38
38
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
39
|
-
"@vue/tsconfig": "^0.
|
|
39
|
+
"@vue/tsconfig": "^0.9.0",
|
|
40
40
|
"dotenv": "^17.2.3",
|
|
41
|
-
"eslint": "^9.
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
42
|
"eslint-plugin-vue": "^10.6.2",
|
|
43
43
|
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
|
-
"jsdom": "^
|
|
45
|
+
"jsdom": "^29.0.1",
|
|
46
46
|
"pinia": "^3.0.4",
|
|
47
47
|
"tsx": "^4.21.0",
|
|
48
48
|
"typedoc": "^0.28.15",
|
|
49
49
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
50
50
|
"typescript": "~5.8.0",
|
|
51
|
-
"vite": "^
|
|
51
|
+
"vite": "^8.0.1",
|
|
52
52
|
"vite-plugin-dts": "^4.5.4",
|
|
53
53
|
"vitest": "^4.0.16",
|
|
54
54
|
"vue": "^3.4.0",
|
|
@@ -24,32 +24,32 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"../..": {
|
|
27
|
-
"version": "0.3.
|
|
27
|
+
"version": "0.3.103",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"bin": {
|
|
30
30
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@eslint/js": "^9.
|
|
33
|
+
"@eslint/js": "^9.0.0",
|
|
34
34
|
"@marp-team/marp-cli": "^4.2.3",
|
|
35
|
-
"@playwright/test": "1.58.
|
|
35
|
+
"@playwright/test": "1.58.2",
|
|
36
36
|
"@types/node": "^25.0.3",
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
38
38
|
"@typescript-eslint/parser": "^8.51.0",
|
|
39
39
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
40
|
-
"@vue/tsconfig": "^0.
|
|
40
|
+
"@vue/tsconfig": "^0.9.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
|
-
"eslint": "^9.
|
|
42
|
+
"eslint": "^9.0.0",
|
|
43
43
|
"eslint-plugin-vue": "^10.6.2",
|
|
44
44
|
"globals": "^17.0.0",
|
|
45
45
|
"husky": "^9.1.7",
|
|
46
|
-
"jsdom": "^
|
|
46
|
+
"jsdom": "^29.0.1",
|
|
47
47
|
"pinia": "^3.0.4",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typedoc": "^0.28.15",
|
|
50
50
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
51
51
|
"typescript": "~5.8.0",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^8.0.1",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vitest": "^4.0.16",
|
|
55
55
|
"vue": "^3.4.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"../..": {
|
|
27
|
-
"version": "0.3.
|
|
27
|
+
"version": "0.3.103",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"bin": {
|
|
30
30
|
"een-setup-agents": "scripts/setup-agents.ts"
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
38
38
|
"@typescript-eslint/parser": "^8.51.0",
|
|
39
39
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
40
|
-
"@vue/tsconfig": "^0.
|
|
40
|
+
"@vue/tsconfig": "^0.9.0",
|
|
41
41
|
"dotenv": "^17.2.3",
|
|
42
42
|
"eslint": "^9.0.0",
|
|
43
43
|
"eslint-plugin-vue": "^10.6.2",
|
|
44
44
|
"globals": "^17.0.0",
|
|
45
45
|
"husky": "^9.1.7",
|
|
46
|
-
"jsdom": "^
|
|
46
|
+
"jsdom": "^29.0.1",
|
|
47
47
|
"pinia": "^3.0.4",
|
|
48
48
|
"tsx": "^4.21.0",
|
|
49
49
|
"typedoc": "^0.28.15",
|
|
50
50
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
51
51
|
"typescript": "~5.8.0",
|
|
52
|
-
"vite": "^
|
|
52
|
+
"vite": "^8.0.1",
|
|
53
53
|
"vite-plugin-dts": "^4.5.4",
|
|
54
54
|
"vitest": "^4.0.16",
|
|
55
55
|
"vue": "^3.4.0",
|