@_henriquewilson/gabirubi-domain 1.0.67 → 1.0.68
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/{lojaintegrada.d.mts → product.d.mts} +13 -6
- package/dist/model/integrada/{lojaintegrada.d.ts → product.d.ts} +13 -6
- package/dist/model/integrada/{lojaintegrada.js → product.js} +168 -152
- package/dist/model/integrada/product.js.map +1 -0
- package/dist/model/integrada/{lojaintegrada.mjs → product.mjs} +164 -149
- package/dist/model/integrada/product.mjs.map +1 -0
- package/dist/model/journey.d.mts +14 -14
- package/dist/model/journey.d.ts +14 -14
- 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
- package/dist/model/integrada/lojaintegrada.js.map +0 -1
- package/dist/model/integrada/lojaintegrada.mjs.map +0 -1
|
@@ -148,7 +148,12 @@ declare const StockSchema: z.ZodObject<{
|
|
|
148
148
|
situacao_em_estoque: number;
|
|
149
149
|
situacao_sem_estoque: number;
|
|
150
150
|
}>;
|
|
151
|
-
declare const ProductSchema: z.ZodObject<{
|
|
151
|
+
declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
152
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
153
|
+
order: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
154
|
+
createAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
155
|
+
updateAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
156
|
+
}, {
|
|
152
157
|
altura: z.ZodOptional<z.ZodNumber>;
|
|
153
158
|
apelido: z.ZodOptional<z.ZodString>;
|
|
154
159
|
ativo: z.ZodBoolean;
|
|
@@ -331,7 +336,7 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
331
336
|
url_video_youtube: z.ZodString;
|
|
332
337
|
usado: z.ZodBoolean;
|
|
333
338
|
variacoes: z.ZodArray<z.ZodString, "many">;
|
|
334
|
-
}
|
|
339
|
+
}>, "strip", z.ZodTypeAny, {
|
|
335
340
|
id: number;
|
|
336
341
|
resource_uri: string;
|
|
337
342
|
ativo: boolean;
|
|
@@ -389,9 +394,11 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
389
394
|
url_video_youtube: string;
|
|
390
395
|
usado: boolean;
|
|
391
396
|
variacoes: string[];
|
|
397
|
+
order?: number | null | undefined;
|
|
398
|
+
createAt?: FirebaseFirestore.Timestamp | undefined;
|
|
399
|
+
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
392
400
|
altura?: number | undefined;
|
|
393
401
|
apelido?: string | undefined;
|
|
394
|
-
createAt?: FirebaseFirestore.Timestamp | undefined;
|
|
395
402
|
filhos?: string[] | undefined;
|
|
396
403
|
grades?: string[] | undefined;
|
|
397
404
|
id_externo?: any;
|
|
@@ -417,7 +424,6 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
417
424
|
pai?: string | undefined;
|
|
418
425
|
peso?: string | undefined;
|
|
419
426
|
profundidade?: number | undefined;
|
|
420
|
-
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
421
427
|
}, {
|
|
422
428
|
id: number;
|
|
423
429
|
resource_uri: string;
|
|
@@ -476,9 +482,11 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
476
482
|
url_video_youtube: string;
|
|
477
483
|
usado: boolean;
|
|
478
484
|
variacoes: string[];
|
|
485
|
+
order?: number | null | undefined;
|
|
486
|
+
createAt?: unknown;
|
|
487
|
+
updateAt?: unknown;
|
|
479
488
|
altura?: number | undefined;
|
|
480
489
|
apelido?: string | undefined;
|
|
481
|
-
createAt?: unknown;
|
|
482
490
|
filhos?: string[] | undefined;
|
|
483
491
|
grades?: string[] | undefined;
|
|
484
492
|
id_externo?: any;
|
|
@@ -504,7 +512,6 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
504
512
|
pai?: string | undefined;
|
|
505
513
|
peso?: string | undefined;
|
|
506
514
|
profundidade?: number | undefined;
|
|
507
|
-
updateAt?: unknown;
|
|
508
515
|
}>;
|
|
509
516
|
type Product = z.infer<typeof ProductSchema>;
|
|
510
517
|
|
|
@@ -148,7 +148,12 @@ declare const StockSchema: z.ZodObject<{
|
|
|
148
148
|
situacao_em_estoque: number;
|
|
149
149
|
situacao_sem_estoque: number;
|
|
150
150
|
}>;
|
|
151
|
-
declare const ProductSchema: z.ZodObject<{
|
|
151
|
+
declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
152
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
153
|
+
order: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
154
|
+
createAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
155
|
+
updateAt: z.ZodOptional<z.ZodEffects<z.ZodType<FirebaseFirestore.Timestamp, z.ZodTypeDef, FirebaseFirestore.Timestamp>, FirebaseFirestore.Timestamp, unknown>>;
|
|
156
|
+
}, {
|
|
152
157
|
altura: z.ZodOptional<z.ZodNumber>;
|
|
153
158
|
apelido: z.ZodOptional<z.ZodString>;
|
|
154
159
|
ativo: z.ZodBoolean;
|
|
@@ -331,7 +336,7 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
331
336
|
url_video_youtube: z.ZodString;
|
|
332
337
|
usado: z.ZodBoolean;
|
|
333
338
|
variacoes: z.ZodArray<z.ZodString, "many">;
|
|
334
|
-
}
|
|
339
|
+
}>, "strip", z.ZodTypeAny, {
|
|
335
340
|
id: number;
|
|
336
341
|
resource_uri: string;
|
|
337
342
|
ativo: boolean;
|
|
@@ -389,9 +394,11 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
389
394
|
url_video_youtube: string;
|
|
390
395
|
usado: boolean;
|
|
391
396
|
variacoes: string[];
|
|
397
|
+
order?: number | null | undefined;
|
|
398
|
+
createAt?: FirebaseFirestore.Timestamp | undefined;
|
|
399
|
+
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
392
400
|
altura?: number | undefined;
|
|
393
401
|
apelido?: string | undefined;
|
|
394
|
-
createAt?: FirebaseFirestore.Timestamp | undefined;
|
|
395
402
|
filhos?: string[] | undefined;
|
|
396
403
|
grades?: string[] | undefined;
|
|
397
404
|
id_externo?: any;
|
|
@@ -417,7 +424,6 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
417
424
|
pai?: string | undefined;
|
|
418
425
|
peso?: string | undefined;
|
|
419
426
|
profundidade?: number | undefined;
|
|
420
|
-
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
421
427
|
}, {
|
|
422
428
|
id: number;
|
|
423
429
|
resource_uri: string;
|
|
@@ -476,9 +482,11 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
476
482
|
url_video_youtube: string;
|
|
477
483
|
usado: boolean;
|
|
478
484
|
variacoes: string[];
|
|
485
|
+
order?: number | null | undefined;
|
|
486
|
+
createAt?: unknown;
|
|
487
|
+
updateAt?: unknown;
|
|
479
488
|
altura?: number | undefined;
|
|
480
489
|
apelido?: string | undefined;
|
|
481
|
-
createAt?: unknown;
|
|
482
490
|
filhos?: string[] | undefined;
|
|
483
491
|
grades?: string[] | undefined;
|
|
484
492
|
id_externo?: any;
|
|
@@ -504,7 +512,6 @@ declare const ProductSchema: z.ZodObject<{
|
|
|
504
512
|
pai?: string | undefined;
|
|
505
513
|
peso?: string | undefined;
|
|
506
514
|
profundidade?: number | undefined;
|
|
507
|
-
updateAt?: unknown;
|
|
508
515
|
}>;
|
|
509
516
|
type Product = z.infer<typeof ProductSchema>;
|
|
510
517
|
|