@_henriquewilson/gabirubi-domain 1.0.70 → 1.0.71
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/model/integrada/order.d.mts +3 -2
- package/dist/model/integrada/order.d.ts +3 -2
- package/dist/model/integrada/order.js +6 -6
- package/dist/model/integrada/order.js.map +1 -1
- package/dist/model/integrada/order.mjs +3 -3
- package/dist/model/integrada/order.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -273,7 +273,7 @@ declare const formaPagamentoSchema: z.ZodObject<{
|
|
|
273
273
|
};
|
|
274
274
|
imagem: string;
|
|
275
275
|
}>;
|
|
276
|
-
declare const
|
|
276
|
+
declare const ItemSchema: z.ZodObject<{
|
|
277
277
|
altura: z.ZodNumber;
|
|
278
278
|
disponibilidade: z.ZodNumber;
|
|
279
279
|
id: z.ZodNumber;
|
|
@@ -1177,5 +1177,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1177
1177
|
utm_campaign?: any;
|
|
1178
1178
|
}>;
|
|
1179
1179
|
type Order = z.infer<typeof OrderSchema>;
|
|
1180
|
+
type Item = z.infer<typeof ItemSchema>;
|
|
1180
1181
|
|
|
1181
|
-
export { Order, OrderSchema, clienteSchema, configuracoesSchema, enderecoEntregaSchema, envioSchema, formaEnvioSchema, formaPagamentoSchema,
|
|
1182
|
+
export { Item, ItemSchema, Order, OrderSchema, clienteSchema, configuracoesSchema, enderecoEntregaSchema, envioSchema, formaEnvioSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, parcelamentoSchema, situacaoSchema, variacaoSchema };
|
|
@@ -273,7 +273,7 @@ declare const formaPagamentoSchema: z.ZodObject<{
|
|
|
273
273
|
};
|
|
274
274
|
imagem: string;
|
|
275
275
|
}>;
|
|
276
|
-
declare const
|
|
276
|
+
declare const ItemSchema: z.ZodObject<{
|
|
277
277
|
altura: z.ZodNumber;
|
|
278
278
|
disponibilidade: z.ZodNumber;
|
|
279
279
|
id: z.ZodNumber;
|
|
@@ -1177,5 +1177,6 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1177
1177
|
utm_campaign?: any;
|
|
1178
1178
|
}>;
|
|
1179
1179
|
type Order = z.infer<typeof OrderSchema>;
|
|
1180
|
+
type Item = z.infer<typeof ItemSchema>;
|
|
1180
1181
|
|
|
1181
|
-
export { Order, OrderSchema, clienteSchema, configuracoesSchema, enderecoEntregaSchema, envioSchema, formaEnvioSchema, formaPagamentoSchema,
|
|
1182
|
+
export { Item, ItemSchema, Order, OrderSchema, clienteSchema, configuracoesSchema, enderecoEntregaSchema, envioSchema, formaEnvioSchema, formaPagamentoSchema, kitsSchema, pagamentoSchema, parcelamentoSchema, situacaoSchema, variacaoSchema };
|
|
@@ -186763,6 +186763,9 @@ var require_src11 = __commonJS({
|
|
|
186763
186763
|
// src/model/integrada/order.ts
|
|
186764
186764
|
var order_exports = {};
|
|
186765
186765
|
__export(order_exports, {
|
|
186766
|
+
ItemSchema: function() {
|
|
186767
|
+
return ItemSchema;
|
|
186768
|
+
},
|
|
186766
186769
|
OrderSchema: function() {
|
|
186767
186770
|
return OrderSchema;
|
|
186768
186771
|
},
|
|
@@ -186784,9 +186787,6 @@ __export(order_exports, {
|
|
|
186784
186787
|
formaPagamentoSchema: function() {
|
|
186785
186788
|
return formaPagamentoSchema;
|
|
186786
186789
|
},
|
|
186787
|
-
itenSchema: function() {
|
|
186788
|
-
return itenSchema;
|
|
186789
|
-
},
|
|
186790
186790
|
kitsSchema: function() {
|
|
186791
186791
|
return kitsSchema;
|
|
186792
186792
|
},
|
|
@@ -186909,7 +186909,7 @@ var formaPagamentoSchema = import_zod3.z.object({
|
|
|
186909
186909
|
nome: import_zod3.z.string(),
|
|
186910
186910
|
resource_uri: import_zod3.z.string()
|
|
186911
186911
|
});
|
|
186912
|
-
var
|
|
186912
|
+
var ItemSchema = import_zod3.z.object({
|
|
186913
186913
|
altura: import_zod3.z.number(),
|
|
186914
186914
|
disponibilidade: import_zod3.z.number(),
|
|
186915
186915
|
id: import_zod3.z.number(),
|
|
@@ -186963,7 +186963,7 @@ var OrderSchema = ModelSchema.extend({
|
|
|
186963
186963
|
id_anymarket: import_zod3.z.any(),
|
|
186964
186964
|
id_externo: import_zod3.z.any(),
|
|
186965
186965
|
integration_data: import_zod3.z.any(),
|
|
186966
|
-
itens: import_zod3.z.array(
|
|
186966
|
+
itens: import_zod3.z.array(ItemSchema),
|
|
186967
186967
|
numero: import_zod3.z.number(),
|
|
186968
186968
|
pagamentos: import_zod3.z.array(pagamentoSchema),
|
|
186969
186969
|
peso_real: import_zod3.z.string(),
|
|
@@ -186978,6 +186978,7 @@ var OrderSchema = ModelSchema.extend({
|
|
|
186978
186978
|
});
|
|
186979
186979
|
// Annotate the CommonJS export names for ESM import in node:
|
|
186980
186980
|
0 && (module.exports = {
|
|
186981
|
+
ItemSchema: ItemSchema,
|
|
186981
186982
|
OrderSchema: OrderSchema,
|
|
186982
186983
|
clienteSchema: clienteSchema,
|
|
186983
186984
|
configuracoesSchema: configuracoesSchema,
|
|
@@ -186985,7 +186986,6 @@ var OrderSchema = ModelSchema.extend({
|
|
|
186985
186986
|
envioSchema: envioSchema,
|
|
186986
186987
|
formaEnvioSchema: formaEnvioSchema,
|
|
186987
186988
|
formaPagamentoSchema: formaPagamentoSchema,
|
|
186988
|
-
itenSchema: itenSchema,
|
|
186989
186989
|
kitsSchema: kitsSchema,
|
|
186990
186990
|
pagamentoSchema: pagamentoSchema,
|
|
186991
186991
|
parcelamentoSchema: parcelamentoSchema,
|