@_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.
- package/dist/model/integrada/order.d.mts +3 -3
- package/dist/model/integrada/order.d.ts +3 -3
- package/dist/model/integrada/order.js +1 -1
- package/dist/model/integrada/order.js.map +1 -1
- package/dist/model/integrada/order.mjs +1 -1
- package/dist/model/integrada/order.mjs.map +1 -1
- package/dist/model/iugu/iugu-charge.d.mts +2 -2
- package/dist/model/iugu/iugu-charge.d.ts +2 -2
- package/dist/model/iugu/iugu-client.d.mts +12 -12
- package/dist/model/iugu/iugu-client.d.ts +12 -12
- package/dist/model/journey.d.mts +18 -18
- package/dist/model/journey.d.ts +18 -18
- package/dist/model/subscription.model.d.mts +8 -8
- package/dist/model/subscription.model.d.ts +8 -8
- package/dist/model/user.model.d.mts +4 -4
- package/dist/model/user.model.d.ts +4 -4
- package/package.json +1 -1
|
@@ -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.
|
|
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?:
|
|
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?:
|
|
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.
|
|
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?:
|
|
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?:
|
|
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.
|
|
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 = {
|