@zapier/kitcore 0.17.0 → 0.17.1

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.mts CHANGED
@@ -676,7 +676,9 @@ interface NegatableMetadata {
676
676
  * of the chain.
677
677
  */
678
678
  declare function getNegatable(schema: z.ZodType): NegatableMetadata["negatable"] | undefined;
679
- declare function openEnum<const T extends readonly [string, ...string[]]>(values: T, description: string): z.ZodUnion<readonly [z.ZodEnum<{ [k_1 in T[number]]: k_1; } extends infer T_1 ? { [k in keyof T_1]: { [k_1 in T[number]]: k_1; }[k]; } : never>, z.ZodString]>;
679
+ declare function openEnum<const T extends readonly [string, ...string[]]>(values: T, description: string): z.ZodUnion<readonly [z.ZodEnum<{
680
+ [K in T[number]]: K;
681
+ }>, z.ZodString]>;
680
682
 
681
683
  /**
682
684
  * Descriptive metadata a leaf carries for the registry / CLI / MCP / docs:
package/dist/index.d.ts CHANGED
@@ -676,7 +676,9 @@ interface NegatableMetadata {
676
676
  * of the chain.
677
677
  */
678
678
  declare function getNegatable(schema: z.ZodType): NegatableMetadata["negatable"] | undefined;
679
- declare function openEnum<const T extends readonly [string, ...string[]]>(values: T, description: string): z.ZodUnion<readonly [z.ZodEnum<{ [k_1 in T[number]]: k_1; } extends infer T_1 ? { [k in keyof T_1]: { [k_1 in T[number]]: k_1; }[k]; } : never>, z.ZodString]>;
679
+ declare function openEnum<const T extends readonly [string, ...string[]]>(values: T, description: string): z.ZodUnion<readonly [z.ZodEnum<{
680
+ [K in T[number]]: K;
681
+ }>, z.ZodString]>;
680
682
 
681
683
  /**
682
684
  * Descriptive metadata a leaf carries for the registry / CLI / MCP / docs: