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