@forklaunch/validator 0.1.8 → 0.1.10

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.d.ts CHANGED
@@ -80,4 +80,4 @@ export type ValidSchemaObject<SV extends AnySchemaValidator> = SchemaObject<Sche
80
80
  * @template SV - SchemaValidator type.
81
81
  */
82
82
  export type Schema<T extends ValidSchemaObject<SV> | IdiomaticSchema<SchemaCatchall<SV>>, SV extends AnySchemaValidator> = SchemaPrettify<SchemaResolve<T, SV>, SV>;
83
- export {};
83
+ export * from './interfaces/schemaValidator.interfaces';
package/dist/index.js CHANGED
@@ -5,5 +5,20 @@
5
5
  *
6
6
  * @module SchemaTypes
7
7
  */
8
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
9
+ if (k2 === undefined) k2 = k;
10
+ var desc = Object.getOwnPropertyDescriptor(m, k);
11
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
12
+ desc = { enumerable: true, get: function() { return m[k]; } };
13
+ }
14
+ Object.defineProperty(o, k2, desc);
15
+ }) : (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ o[k2] = m[k];
18
+ }));
19
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
20
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
21
+ };
8
22
  Object.defineProperty(exports, "__esModule", { value: true });
23
+ __exportStar(require("./interfaces/schemaValidator.interfaces"), exports);
9
24
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;;;;;;;;;;;;;AAgHH,0EAAwD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/validator",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Schema validator for ForkLaunch components.",
5
5
  "files": ["dist/**"],
6
6
  "types": "dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
24
24
  "dependencies": {
25
25
  "@anatine/zod-openapi": "^2.2.6",
26
- "@forklaunch/common": "^0.1.1",
26
+ "@forklaunch/common": "^0.1.2",
27
27
  "@sinclair/typebox": "^0.32.34",
28
28
  "zod": "^3.23.8"
29
29
  },