codify-plugin-lib 1.0.182-beta43 → 1.0.182-beta46

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
@@ -14,4 +14,5 @@ export * from './utils/file-utils.js';
14
14
  export * from './utils/functions.js';
15
15
  export * from './utils/index.js';
16
16
  export * from './utils/verbosity-level.js';
17
+ export * from 'zod/v4';
17
18
  export declare function runPlugin(plugin: Plugin): Promise<void>;
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ export * from './utils/file-utils.js';
14
14
  export * from './utils/functions.js';
15
15
  export * from './utils/index.js';
16
16
  export * from './utils/verbosity-level.js';
17
+ export * from 'zod/v4';
17
18
  export async function runPlugin(plugin) {
18
19
  const messageHandler = new MessageHandler(plugin);
19
20
  process.on('message', (message) => messageHandler.onMessage(message));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta43",
3
+ "version": "1.0.182-beta46",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -16,6 +16,7 @@ export * from './utils/file-utils.js'
16
16
  export * from './utils/functions.js'
17
17
  export * from './utils/index.js'
18
18
  export * from './utils/verbosity-level.js'
19
+ export * from 'zod/v4';
19
20
 
20
21
  export async function runPlugin(plugin: Plugin) {
21
22
  const messageHandler = new MessageHandler(plugin);