@objectstack/runtime 3.2.6 → 3.2.7

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @objectstack/runtime@3.2.6 build /home/runner/work/spec/spec/packages/runtime
2
+ > @objectstack/runtime@3.2.7 build /home/runner/work/spec/spec/packages/runtime
3
3
  > tsup --config ../../tsup.config.ts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,13 +10,13 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/index.js 85.70 KB
14
- ESM dist/index.js.map 184.26 KB
15
- ESM ⚡️ Build success in 64ms
16
- CJS dist/index.cjs 88.28 KB
17
- CJS dist/index.cjs.map 184.34 KB
18
- CJS ⚡️ Build success in 64ms
13
+ CJS dist/index.cjs 88.26 KB
14
+ CJS dist/index.cjs.map 184.29 KB
15
+ CJS ⚡️ Build success in 192ms
16
+ ESM dist/index.js 85.68 KB
17
+ ESM dist/index.js.map 184.22 KB
18
+ ESM ⚡️ Build success in 226ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 2485ms
20
+ DTS ⚡️ Build success in 7678ms
21
21
  DTS dist/index.d.ts 24.35 KB
22
22
  DTS dist/index.d.cts 24.35 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @objectstack/runtime
2
2
 
3
+ ## 3.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - @objectstack/spec@3.2.7
8
+ - @objectstack/core@3.2.7
9
+ - @objectstack/types@3.2.7
10
+ - @objectstack/rest@3.2.7
11
+
3
12
  ## 3.2.6
4
13
 
5
14
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -123,6 +123,7 @@ var DriverPlugin = class {
123
123
  };
124
124
 
125
125
  // src/seed-loader.ts
126
+ var import_data = require("@objectstack/spec/data");
126
127
  var DEFAULT_EXTERNAL_ID_FIELD = "name";
127
128
  var SeedLoaderService = class {
128
129
  constructor(engine, metadata, logger) {
@@ -207,8 +208,7 @@ var SeedLoaderService = class {
207
208
  return { nodes, insertOrder, circularDependencies };
208
209
  }
209
210
  async validate(datasets, config) {
210
- const { SeedLoaderConfigSchema } = await import("@objectstack/spec/data");
211
- const parsedConfig = SeedLoaderConfigSchema.parse({ ...config, dryRun: true });
211
+ const parsedConfig = import_data.SeedLoaderConfigSchema.parse({ ...config, dryRun: true });
212
212
  return this.load({ datasets, config: parsedConfig });
213
213
  }
214
214
  // ==========================================================================