@_henriquewilson/gabirubi-domain 1.0.77 → 1.0.78

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.
@@ -929,7 +929,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
929
929
  valor_envio: z.ZodString;
930
930
  valor_subtotal: z.ZodString;
931
931
  valor_total: z.ZodString;
932
- tags: z.ZodAny;
932
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
933
933
  }>, "strip", z.ZodTypeAny, {
934
934
  resource_uri: string;
935
935
  numero: number;
@@ -1071,7 +1071,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
1071
1071
  id_externo?: any;
1072
1072
  integration_data?: any;
1073
1073
  utm_campaign?: any;
1074
- tags?: any;
1074
+ tags?: string[] | undefined;
1075
1075
  }, {
1076
1076
  resource_uri: string;
1077
1077
  numero: number;
@@ -1213,7 +1213,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
1213
1213
  id_externo?: any;
1214
1214
  integration_data?: any;
1215
1215
  utm_campaign?: any;
1216
- tags?: any;
1216
+ tags?: string[] | undefined;
1217
1217
  }>;
1218
1218
  type Order = z.infer<typeof OrderSchema>;
1219
1219
  type Item = z.infer<typeof ItemSchema>;
@@ -929,7 +929,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
929
929
  valor_envio: z.ZodString;
930
930
  valor_subtotal: z.ZodString;
931
931
  valor_total: z.ZodString;
932
- tags: z.ZodAny;
932
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
933
933
  }>, "strip", z.ZodTypeAny, {
934
934
  resource_uri: string;
935
935
  numero: number;
@@ -1071,7 +1071,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
1071
1071
  id_externo?: any;
1072
1072
  integration_data?: any;
1073
1073
  utm_campaign?: any;
1074
- tags?: any;
1074
+ tags?: string[] | undefined;
1075
1075
  }, {
1076
1076
  resource_uri: string;
1077
1077
  numero: number;
@@ -1213,7 +1213,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
1213
1213
  id_externo?: any;
1214
1214
  integration_data?: any;
1215
1215
  utm_campaign?: any;
1216
- tags?: any;
1216
+ tags?: string[] | undefined;
1217
1217
  }>;
1218
1218
  type Order = z.infer<typeof OrderSchema>;
1219
1219
  type Item = z.infer<typeof ItemSchema>;
@@ -186977,7 +186977,7 @@ var OrderSchema = ModelSchema.extend({
186977
186977
  valor_envio: import_zod3.z.string(),
186978
186978
  valor_subtotal: import_zod3.z.string(),
186979
186979
  valor_total: import_zod3.z.string(),
186980
- tags: import_zod3.z.any()
186980
+ tags: import_zod3.z.string().array().optional()
186981
186981
  });
186982
186982
  // Annotate the CommonJS export names for ESM import in node:
186983
186983
  0 && (module.exports = {