@workglow/test 0.0.59 → 0.0.60
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/binding/IndexedDbModelRepository.d.ts +2 -5
- package/dist/binding/IndexedDbModelRepository.d.ts.map +1 -1
- package/dist/binding/PostgresModelRepository.d.ts +2 -5
- package/dist/binding/PostgresModelRepository.d.ts.map +1 -1
- package/dist/binding/SqliteModelRepository.d.ts +2 -5
- package/dist/binding/SqliteModelRepository.d.ts.map +1 -1
- package/package.json +17 -17
|
@@ -3,15 +3,12 @@
|
|
|
3
3
|
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
7
|
-
import { IndexedDbTabularRepository } from "@workglow/storage";
|
|
6
|
+
import { ModelRepository } from "@workglow/ai";
|
|
8
7
|
/**
|
|
9
8
|
* IndexedDB implementation of a model repository.
|
|
10
9
|
* Provides storage and retrieval for models and task-to-model mappings.
|
|
11
10
|
*/
|
|
12
11
|
export declare class IndexedDbModelRepository extends ModelRepository {
|
|
13
|
-
|
|
14
|
-
type: "IndexedDbModelRepository";
|
|
15
|
-
constructor(tableModels?: string, tableTask2Models?: string);
|
|
12
|
+
constructor(tableModels?: string);
|
|
16
13
|
}
|
|
17
14
|
//# sourceMappingURL=IndexedDbModelRepository.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IndexedDbModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/IndexedDbModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"IndexedDbModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/IndexedDbModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAwB,eAAe,EAAe,MAAM,cAAc,CAAC;AAGlF;;;GAGG;AACH,qBAAa,wBAAyB,SAAQ,eAAe;gBAC/C,WAAW,GAAE,MAAiB;CAG3C"}
|
|
@@ -3,16 +3,13 @@
|
|
|
3
3
|
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
7
|
-
import { PostgresTabularRepository } from "@workglow/storage";
|
|
6
|
+
import { ModelRepository } from "@workglow/ai";
|
|
8
7
|
import { Pool } from "pg";
|
|
9
8
|
/**
|
|
10
9
|
* PostgreSQL implementation of a model repository.
|
|
11
10
|
* Provides storage and retrieval for models and task-to-model mappings using PostgreSQL.
|
|
12
11
|
*/
|
|
13
12
|
export declare class PostgresModelRepository extends ModelRepository {
|
|
14
|
-
|
|
15
|
-
modelTabularRepository: PostgresTabularRepository<typeof ModelSchema, typeof ModelPrimaryKeyNames>;
|
|
16
|
-
constructor(db: Pool, tableModels?: string, tableTask2Models?: string);
|
|
13
|
+
constructor(db: Pool, tableModels?: string);
|
|
17
14
|
}
|
|
18
15
|
//# sourceMappingURL=PostgresModelRepository.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostgresModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/PostgresModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"PostgresModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/PostgresModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAwB,eAAe,EAAe,MAAM,cAAc,CAAC;AAElF,OAAO,EAAE,IAAI,EAAE,MAAM,IAAI,CAAC;AAE1B;;;GAGG;AACH,qBAAa,uBAAwB,SAAQ,eAAe;gBAC9C,EAAE,EAAE,IAAI,EAAE,WAAW,GAAE,MAAkB;CAGtD"}
|
|
@@ -3,15 +3,12 @@
|
|
|
3
3
|
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
7
|
-
import { SqliteTabularRepository } from "@workglow/storage";
|
|
6
|
+
import { ModelRepository } from "@workglow/ai";
|
|
8
7
|
/**
|
|
9
8
|
* SQLite implementation of a model repository.
|
|
10
9
|
* Provides storage and retrieval for models and task-to-model mappings using SQLite.
|
|
11
10
|
*/
|
|
12
11
|
export declare class SqliteModelRepository extends ModelRepository {
|
|
13
|
-
|
|
14
|
-
modelTabularRepository: SqliteTabularRepository<typeof ModelSchema, typeof ModelPrimaryKeyNames>;
|
|
15
|
-
constructor(dbOrPath: string, tableModels?: string, tableTask2Models?: string);
|
|
12
|
+
constructor(dbOrPath: string, tableModels?: string);
|
|
16
13
|
}
|
|
17
14
|
//# sourceMappingURL=SqliteModelRepository.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SqliteModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/SqliteModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"SqliteModelRepository.d.ts","sourceRoot":"","sources":["../../src/binding/SqliteModelRepository.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAwB,eAAe,EAAe,MAAM,cAAc,CAAC;AAGlF;;;GAGG;AACH,qBAAa,qBAAsB,SAAQ,eAAe;gBAC5C,QAAQ,EAAE,MAAM,EAAE,WAAW,GAAE,MAAkB;CAG9D"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workglow/test",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.60",
|
|
5
5
|
"description": "Testing utilities and test suites for Workglow packages, providing comprehensive testing infrastructure.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"watch": "concurrently -c 'auto' 'bun:watch-*'",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"src/**/*.md"
|
|
34
34
|
],
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@workglow/ai": "0.0.
|
|
37
|
-
"@workglow/ai-provider": "0.0.
|
|
38
|
-
"@workglow/job-queue": "0.0.
|
|
39
|
-
"@workglow/storage": "0.0.
|
|
40
|
-
"@workglow/task-graph": "0.0.
|
|
41
|
-
"@workglow/tasks": "0.0.
|
|
42
|
-
"@workglow/util": "0.0.
|
|
43
|
-
"@workglow/sqlite": "0.0.
|
|
36
|
+
"@workglow/ai": "0.0.60",
|
|
37
|
+
"@workglow/ai-provider": "0.0.60",
|
|
38
|
+
"@workglow/job-queue": "0.0.60",
|
|
39
|
+
"@workglow/storage": "0.0.60",
|
|
40
|
+
"@workglow/task-graph": "0.0.60",
|
|
41
|
+
"@workglow/tasks": "0.0.60",
|
|
42
|
+
"@workglow/util": "0.0.60",
|
|
43
|
+
"@workglow/sqlite": "0.0.60",
|
|
44
44
|
"@electric-sql/pglite": "^0.3.11",
|
|
45
45
|
"pg": "^8.16.3",
|
|
46
46
|
"@supabase/supabase-js": "^2.86.2"
|
|
@@ -73,14 +73,14 @@
|
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@electric-sql/pglite": "^0.3.11",
|
|
76
|
-
"@workglow/ai": "0.0.
|
|
77
|
-
"@workglow/ai-provider": "0.0.
|
|
78
|
-
"@workglow/job-queue": "0.0.
|
|
79
|
-
"@workglow/sqlite": "0.0.
|
|
80
|
-
"@workglow/storage": "0.0.
|
|
81
|
-
"@workglow/task-graph": "0.0.
|
|
82
|
-
"@workglow/tasks": "0.0.
|
|
83
|
-
"@workglow/util": "0.0.
|
|
76
|
+
"@workglow/ai": "0.0.60",
|
|
77
|
+
"@workglow/ai-provider": "0.0.60",
|
|
78
|
+
"@workglow/job-queue": "0.0.60",
|
|
79
|
+
"@workglow/sqlite": "0.0.60",
|
|
80
|
+
"@workglow/storage": "0.0.60",
|
|
81
|
+
"@workglow/task-graph": "0.0.60",
|
|
82
|
+
"@workglow/tasks": "0.0.60",
|
|
83
|
+
"@workglow/util": "0.0.60",
|
|
84
84
|
"@supabase/supabase-js": "^2.86.2",
|
|
85
85
|
"@types/pg": "^8.15.5",
|
|
86
86
|
"fake-indexeddb": "^6.2.4",
|