@roastery/terroir 0.0.6 → 0.0.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.
package/dist/index.cjs CHANGED
@@ -30,11 +30,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // src/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
- t: () => t
33
+ t: () => t,
34
+ uuid: () => uuid
34
35
  });
35
36
  module.exports = __toCommonJS(index_exports);
36
37
  var t = __toESM(require("@sinclair/typebox"), 1);
38
+ var uuid = __toESM(require("uuid"), 1);
37
39
  // Annotate the CommonJS export names for ESM import in node:
38
40
  0 && (module.exports = {
39
- t
41
+ t,
42
+ uuid
40
43
  });
package/dist/index.d.cts CHANGED
@@ -1,2 +1,4 @@
1
1
  import * as typebox from '@sinclair/typebox';
2
2
  export { typebox as t };
3
+ import * as uuid from 'uuid';
4
+ export { uuid };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
1
  import * as typebox from '@sinclair/typebox';
2
2
  export { typebox as t };
3
+ import * as uuid from 'uuid';
4
+ export { uuid };
package/dist/index.js CHANGED
@@ -1,5 +1,7 @@
1
1
  // src/index.ts
2
2
  import * as t from "@sinclair/typebox";
3
+ import * as uuid from "uuid";
3
4
  export {
4
- t
5
+ t,
6
+ uuid
5
7
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@roastery/terroir",
3
3
  "description": "Layered exception hierarchy and runtime schema validation for the Roastery CMS ecosystem",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Alan Reis",