@_henriquewilson/gabirubi-domain 1.0.95 → 1.0.96
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 -0
- package/dist/model/integrada/order.d.ts +3 -0
- package/dist/model/integrada/order.js +2 -1
- package/dist/model/integrada/order.js.map +1 -1
- package/dist/model/integrada/order.mjs +2 -1
- package/dist/model/integrada/order.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1563,6 +1563,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1563
1563
|
error?: string | undefined;
|
|
1564
1564
|
}>, "many">>;
|
|
1565
1565
|
warning: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
watching: z.ZodOptional<z.ZodBoolean>;
|
|
1566
1567
|
}>, "strip", z.ZodTypeAny, {
|
|
1567
1568
|
resource_uri: string;
|
|
1568
1569
|
numero: number;
|
|
@@ -1836,6 +1837,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1836
1837
|
error?: string | undefined;
|
|
1837
1838
|
}[] | undefined;
|
|
1838
1839
|
warning?: string | undefined;
|
|
1840
|
+
watching?: boolean | undefined;
|
|
1839
1841
|
}, {
|
|
1840
1842
|
resource_uri: string;
|
|
1841
1843
|
numero: number;
|
|
@@ -2109,6 +2111,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2109
2111
|
error?: string | undefined;
|
|
2110
2112
|
}[] | undefined;
|
|
2111
2113
|
warning?: string | undefined;
|
|
2114
|
+
watching?: boolean | undefined;
|
|
2112
2115
|
}>;
|
|
2113
2116
|
type CustomShippingInfo = z.infer<typeof CustomShippingInfoSchema>;
|
|
2114
2117
|
type Order = z.infer<typeof OrderSchema>;
|
|
@@ -1563,6 +1563,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1563
1563
|
error?: string | undefined;
|
|
1564
1564
|
}>, "many">>;
|
|
1565
1565
|
warning: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
watching: z.ZodOptional<z.ZodBoolean>;
|
|
1566
1567
|
}>, "strip", z.ZodTypeAny, {
|
|
1567
1568
|
resource_uri: string;
|
|
1568
1569
|
numero: number;
|
|
@@ -1836,6 +1837,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1836
1837
|
error?: string | undefined;
|
|
1837
1838
|
}[] | undefined;
|
|
1838
1839
|
warning?: string | undefined;
|
|
1840
|
+
watching?: boolean | undefined;
|
|
1839
1841
|
}, {
|
|
1840
1842
|
resource_uri: string;
|
|
1841
1843
|
numero: number;
|
|
@@ -2109,6 +2111,7 @@ declare const OrderSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2109
2111
|
error?: string | undefined;
|
|
2110
2112
|
}[] | undefined;
|
|
2111
2113
|
warning?: string | undefined;
|
|
2114
|
+
watching?: boolean | undefined;
|
|
2112
2115
|
}>;
|
|
2113
2116
|
type CustomShippingInfo = z.infer<typeof CustomShippingInfoSchema>;
|
|
2114
2117
|
type Order = z.infer<typeof OrderSchema>;
|
|
@@ -187118,7 +187118,8 @@ var OrderSchema = ModelSchema.extend({
|
|
|
187118
187118
|
customShippingInfo: CustomShippingInfoSchema.optional(),
|
|
187119
187119
|
shippingCalculate: MelhorEnvioCalculateSchema.optional(),
|
|
187120
187120
|
allShippingCalculates: MelhorEnvioCalculateSchema.array().optional(),
|
|
187121
|
-
warning: import_zod5.z.string().optional()
|
|
187121
|
+
warning: import_zod5.z.string().optional(),
|
|
187122
|
+
watching: import_zod5.z.boolean().optional()
|
|
187122
187123
|
});
|
|
187123
187124
|
// Annotate the CommonJS export names for ESM import in node:
|
|
187124
187125
|
0 && (module.exports = {
|