@_henriquewilson/gabirubi-domain 1.0.94 → 1.0.95

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.
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
 
3
- declare const ClienteSchema: z.ZodObject<{
3
+ declare const CustomerOrderSchema: z.ZodObject<{
4
4
  cnpj: z.ZodAny;
5
5
  cpf: z.ZodString;
6
6
  data_nascimento: z.ZodAny;
@@ -2114,5 +2114,7 @@ type CustomShippingInfo = z.infer<typeof CustomShippingInfoSchema>;
2114
2114
  type Order = z.infer<typeof OrderSchema>;
2115
2115
  type Item = z.infer<typeof ItemSchema>;
2116
2116
  type OrderStatus = z.infer<typeof SituacaoSchema>;
2117
+ type AddressShipping = z.infer<typeof EnderecoEntregaSchema>;
2118
+ type CustomerOrder = z.infer<typeof CustomerOrderSchema>;
2117
2119
 
2118
- export { ClienteSchema, ConfiguracoesSchema, CustomShippingInfo, CustomShippingInfoSchema, EnderecoEntregaSchema, EnvioSchema, FormaEnvioSchema, Item, ItemSchema, Order, OrderSchema, OrderStatus, ParcelamentoSchema, SituacaoSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, variacaoSchema };
2120
+ export { AddressShipping, ConfiguracoesSchema, CustomShippingInfo, CustomShippingInfoSchema, CustomerOrder, CustomerOrderSchema, EnderecoEntregaSchema, EnvioSchema, FormaEnvioSchema, Item, ItemSchema, Order, OrderSchema, OrderStatus, ParcelamentoSchema, SituacaoSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, variacaoSchema };
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
 
3
- declare const ClienteSchema: z.ZodObject<{
3
+ declare const CustomerOrderSchema: z.ZodObject<{
4
4
  cnpj: z.ZodAny;
5
5
  cpf: z.ZodString;
6
6
  data_nascimento: z.ZodAny;
@@ -2114,5 +2114,7 @@ type CustomShippingInfo = z.infer<typeof CustomShippingInfoSchema>;
2114
2114
  type Order = z.infer<typeof OrderSchema>;
2115
2115
  type Item = z.infer<typeof ItemSchema>;
2116
2116
  type OrderStatus = z.infer<typeof SituacaoSchema>;
2117
+ type AddressShipping = z.infer<typeof EnderecoEntregaSchema>;
2118
+ type CustomerOrder = z.infer<typeof CustomerOrderSchema>;
2117
2119
 
2118
- export { ClienteSchema, ConfiguracoesSchema, CustomShippingInfo, CustomShippingInfoSchema, EnderecoEntregaSchema, EnvioSchema, FormaEnvioSchema, Item, ItemSchema, Order, OrderSchema, OrderStatus, ParcelamentoSchema, SituacaoSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, variacaoSchema };
2120
+ export { AddressShipping, ConfiguracoesSchema, CustomShippingInfo, CustomShippingInfoSchema, CustomerOrder, CustomerOrderSchema, EnderecoEntregaSchema, EnvioSchema, FormaEnvioSchema, Item, ItemSchema, Order, OrderSchema, OrderStatus, ParcelamentoSchema, SituacaoSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, variacaoSchema };
@@ -186763,15 +186763,15 @@ var require_src11 = __commonJS({
186763
186763
  // src/model/integrada/order.ts
186764
186764
  var order_exports = {};
186765
186765
  __export(order_exports, {
186766
- ClienteSchema: function() {
186767
- return ClienteSchema;
186768
- },
186769
186766
  ConfiguracoesSchema: function() {
186770
186767
  return ConfiguracoesSchema;
186771
186768
  },
186772
186769
  CustomShippingInfoSchema: function() {
186773
186770
  return CustomShippingInfoSchema;
186774
186771
  },
186772
+ CustomerOrderSchema: function() {
186773
+ return CustomerOrderSchema;
186774
+ },
186775
186775
  EnderecoEntregaSchema: function() {
186776
186776
  return EnderecoEntregaSchema;
186777
186777
  },
@@ -186946,7 +186946,7 @@ var MelhorEnvioCalculateSchema = import_zod4.z.object({
186946
186946
  company: CompanySchema2
186947
186947
  });
186948
186948
  // src/model/integrada/order.ts
186949
- var ClienteSchema = import_zod5.z.object({
186949
+ var CustomerOrderSchema = import_zod5.z.object({
186950
186950
  cnpj: import_zod5.z.any(),
186951
186951
  cpf: import_zod5.z.string(),
186952
186952
  data_nascimento: import_zod5.z.any(),
@@ -187090,7 +187090,7 @@ var CustomShippingInfoSchema = ModelSchema.extend({
187090
187090
  insurance: import_zod5.z.number().optional()
187091
187091
  });
187092
187092
  var OrderSchema = ModelSchema.extend({
187093
- cliente: ClienteSchema,
187093
+ cliente: CustomerOrderSchema,
187094
187094
  cliente_obs: import_zod5.z.any(),
187095
187095
  createAt: TimestampOrNow,
187096
187096
  cupom_desconto: import_zod5.z.any(),
@@ -187122,9 +187122,9 @@ var OrderSchema = ModelSchema.extend({
187122
187122
  });
187123
187123
  // Annotate the CommonJS export names for ESM import in node:
187124
187124
  0 && (module.exports = {
187125
- ClienteSchema: ClienteSchema,
187126
187125
  ConfiguracoesSchema: ConfiguracoesSchema,
187127
187126
  CustomShippingInfoSchema: CustomShippingInfoSchema,
187127
+ CustomerOrderSchema: CustomerOrderSchema,
187128
187128
  EnderecoEntregaSchema: EnderecoEntregaSchema,
187129
187129
  EnvioSchema: EnvioSchema,
187130
187130
  FormaEnvioSchema: FormaEnvioSchema,