@objectstack/runtime 1.0.9 → 1.0.11

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@1.0.9 build /home/runner/work/spec/spec/packages/runtime
2
+ > @objectstack/runtime@1.0.11 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
- CJS dist/index.cjs 51.31 KB
14
- CJS dist/index.cjs.map 116.84 KB
15
- CJS ⚡️ Build success in 123ms
13
+ CJS dist/index.cjs 51.30 KB
14
+ CJS dist/index.cjs.map 116.83 KB
15
+ CJS ⚡️ Build success in 109ms
16
16
  ESM dist/index.js 49.57 KB
17
- ESM dist/index.js.map 116.74 KB
18
- ESM ⚡️ Build success in 132ms
17
+ ESM dist/index.js.map 116.73 KB
18
+ ESM ⚡️ Build success in 114ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 7807ms
20
+ DTS ⚡️ Build success in 7833ms
21
21
  DTS dist/index.d.ts 17.82 KB
22
22
  DTS dist/index.d.cts 17.82 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @objectstack/runtime
2
2
 
3
+ ## 1.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - @objectstack/spec@1.0.11
8
+ - @objectstack/core@1.0.11
9
+ - @objectstack/types@1.0.11
10
+
11
+ ## 1.0.10
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [10f52e1]
16
+ - @objectstack/core@1.0.10
17
+ - @objectstack/spec@1.0.10
18
+ - @objectstack/types@1.0.10
19
+
3
20
  ## 1.0.9
4
21
 
5
22
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1056,7 +1056,7 @@ var HttpDispatcher = class {
1056
1056
  environment: (0, import_core2.getEnv)("NODE_ENV", "development"),
1057
1057
  routes: {
1058
1058
  data: `${prefix}/data`,
1059
- metadata: `${prefix}/metadata`,
1059
+ metadata: `${prefix}/meta`,
1060
1060
  auth: `${prefix}/auth`,
1061
1061
  graphql: hasGraphQL ? `${prefix}/graphql` : void 0,
1062
1062
  storage: hasFiles ? `${prefix}/storage` : void 0,
@@ -1386,8 +1386,8 @@ var HttpDispatcher = class {
1386
1386
  if (cleanPath.startsWith("/auth")) {
1387
1387
  return this.handleAuth(cleanPath.substring(5), method, body, context);
1388
1388
  }
1389
- if (cleanPath.startsWith("/metadata")) {
1390
- return this.handleMetadata(cleanPath.substring(9), context);
1389
+ if (cleanPath.startsWith("/meta")) {
1390
+ return this.handleMetadata(cleanPath.substring(5), context);
1391
1391
  }
1392
1392
  if (cleanPath.startsWith("/data")) {
1393
1393
  return this.handleData(cleanPath.substring(5), method, body, query, context);