@socotra/ec-react-schemas 2.19.1-next.1 → 2.19.1-next.2

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
@@ -5072,18 +5072,18 @@ export declare type Contact = z.infer<typeof ContactSchema>;
5072
5072
  export declare type ContactCreateRequest = z.infer<typeof ContactCreateRequestSchema>;
5073
5073
 
5074
5074
  export declare const ContactCreateRequestSchema: z.ZodObject<{
5075
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
5075
5076
  type: z.ZodString;
5076
5077
  region: z.ZodOptional<z.ZodString>;
5077
- data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5078
5078
  autoValidate: z.ZodBoolean;
5079
5079
  }, "strip", z.ZodTypeAny, {
5080
5080
  type: string;
5081
- data: Record<string, Record<string, unknown>>;
5081
+ data: Record<string, any>;
5082
5082
  autoValidate: boolean;
5083
5083
  region?: string | undefined;
5084
5084
  }, {
5085
5085
  type: string;
5086
- data: Record<string, Record<string, unknown>>;
5086
+ data: Record<string, any>;
5087
5087
  autoValidate: boolean;
5088
5088
  region?: string | undefined;
5089
5089
  }>;