@vertesia/common 0.79.1 → 0.79.2
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/LICENSE +13 -0
- package/lib/cjs/project.js.map +1 -1
- package/lib/cjs/store/store.js.map +1 -1
- package/lib/esm/project.js.map +1 -1
- package/lib/esm/store/store.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/Progress.d.ts +0 -1
- package/lib/types/access-control.d.ts +0 -1
- package/lib/types/analytics.d.ts +0 -1
- package/lib/types/apikey.d.ts +0 -1
- package/lib/types/apps.d.ts +0 -1
- package/lib/types/common.d.ts +0 -1
- package/lib/types/environment.d.ts +0 -1
- package/lib/types/facets.d.ts +0 -1
- package/lib/types/group.d.ts +0 -1
- package/lib/types/index.d.ts +0 -1
- package/lib/types/integrations.d.ts +0 -1
- package/lib/types/interaction.d.ts +0 -1
- package/lib/types/json-schema.d.ts +0 -1
- package/lib/types/json.d.ts +0 -1
- package/lib/types/meters.d.ts +0 -1
- package/lib/types/model_utility.d.ts +0 -1
- package/lib/types/payload.d.ts +0 -1
- package/lib/types/project.d.ts +1 -1
- package/lib/types/project.d.ts.map +1 -1
- package/lib/types/prompt.d.ts +0 -1
- package/lib/types/query.d.ts +0 -1
- package/lib/types/rate-limiter.d.ts +0 -1
- package/lib/types/refs.d.ts +0 -1
- package/lib/types/runs.d.ts +0 -1
- package/lib/types/store/activity-catalog.d.ts +0 -1
- package/lib/types/store/agent.d.ts +0 -1
- package/lib/types/store/collections.d.ts +12 -1
- package/lib/types/store/collections.d.ts.map +1 -1
- package/lib/types/store/common.d.ts +0 -1
- package/lib/types/store/doc-analyzer.d.ts +0 -1
- package/lib/types/store/dsl-workflow.d.ts +0 -1
- package/lib/types/store/index.d.ts +0 -1
- package/lib/types/store/object-types.d.ts +0 -1
- package/lib/types/store/signals.d.ts +0 -1
- package/lib/types/store/store.d.ts +14 -1
- package/lib/types/store/store.d.ts.map +1 -1
- package/lib/types/store/temporalio.d.ts +0 -1
- package/lib/types/store/workflow.d.ts +0 -1
- package/lib/types/sts-token-types.d.ts +0 -1
- package/lib/types/tenant.d.ts +0 -1
- package/lib/types/training.d.ts +0 -1
- package/lib/types/transient-tokens.d.ts +0 -1
- package/lib/types/user.d.ts +0 -1
- package/lib/types/utils/auth.d.ts +0 -1
- package/lib/types/utils/schemas.d.ts +0 -1
- package/lib/types/utils/type-helpers.d.ts +0 -1
- package/lib/types/versions.d.ts +0 -1
- package/lib/vertesia-common.js.map +1 -1
- package/package.json +38 -38
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
"name": "@vertesia/common",
|
|
3
|
+
"version": "0.79.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"types": "./lib/types/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"lib",
|
|
8
|
+
"src",
|
|
9
|
+
"tsconfig.dist.json"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
5
12
|
"types": "./lib/types/index.d.ts",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"ajv": "^8.16.0",
|
|
35
|
-
"json-schema": "^0.4.0"
|
|
36
|
-
},
|
|
37
|
-
"ts_dual_module": {
|
|
38
|
-
"outDir": "lib"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
13
|
+
"import": "./lib/esm/index.js",
|
|
14
|
+
"require": "./lib/cjs/index.js"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
18
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
19
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
20
|
+
"@types/json-schema": "^7.0.15",
|
|
21
|
+
"rollup": "^4.40.2",
|
|
22
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
23
|
+
"ts-dual-module": "^0.6.3",
|
|
24
|
+
"typescript": "^5.0.2",
|
|
25
|
+
"vitest": "^3.0.9"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"ajv": "^8.16.0",
|
|
29
|
+
"json-schema": "^0.4.0",
|
|
30
|
+
"@llumiverse/common": "0.22.2"
|
|
31
|
+
},
|
|
32
|
+
"ts_dual_module": {
|
|
33
|
+
"outDir": "lib"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"build": "pnpm exec tsmod build && pnpm exec rollup -c",
|
|
38
|
+
"clean": "rimraf ./node_modules ./lib ./tsconfig.tsbuildinfo"
|
|
39
|
+
}
|
|
40
|
+
}
|