@_henriquewilson/gabirubi-domain 1.0.67 → 1.0.69

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.
@@ -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;
@@ -162,7 +167,6 @@ declare const ProductSchema: z.ZodObject<{
162
167
  filhos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
163
168
  grades: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
164
169
  gtin: z.ZodString;
165
- id: z.ZodNumber;
166
170
  id_externo: z.ZodAny;
167
171
  imagem_principal: z.ZodOptional<z.ZodObject<{
168
172
  caminho: z.ZodString;
@@ -331,8 +335,7 @@ declare const ProductSchema: z.ZodObject<{
331
335
  url_video_youtube: z.ZodString;
332
336
  usado: z.ZodBoolean;
333
337
  variacoes: z.ZodArray<z.ZodString, "many">;
334
- }, "strip", z.ZodTypeAny, {
335
- id: number;
338
+ }>, "strip", z.ZodTypeAny, {
336
339
  resource_uri: string;
337
340
  ativo: boolean;
338
341
  bloqueado: boolean;
@@ -389,9 +392,12 @@ declare const ProductSchema: z.ZodObject<{
389
392
  url_video_youtube: string;
390
393
  usado: boolean;
391
394
  variacoes: string[];
395
+ id?: string | null | undefined;
396
+ order?: number | null | undefined;
397
+ createAt?: FirebaseFirestore.Timestamp | undefined;
398
+ updateAt?: FirebaseFirestore.Timestamp | undefined;
392
399
  altura?: number | undefined;
393
400
  apelido?: string | undefined;
394
- createAt?: FirebaseFirestore.Timestamp | undefined;
395
401
  filhos?: string[] | undefined;
396
402
  grades?: string[] | undefined;
397
403
  id_externo?: any;
@@ -417,9 +423,7 @@ declare const ProductSchema: z.ZodObject<{
417
423
  pai?: string | undefined;
418
424
  peso?: string | undefined;
419
425
  profundidade?: number | undefined;
420
- updateAt?: FirebaseFirestore.Timestamp | undefined;
421
426
  }, {
422
- id: number;
423
427
  resource_uri: string;
424
428
  ativo: boolean;
425
429
  bloqueado: boolean;
@@ -476,9 +480,12 @@ declare const ProductSchema: z.ZodObject<{
476
480
  url_video_youtube: string;
477
481
  usado: boolean;
478
482
  variacoes: string[];
483
+ id?: string | null | undefined;
484
+ order?: number | null | undefined;
485
+ createAt?: unknown;
486
+ updateAt?: unknown;
479
487
  altura?: number | undefined;
480
488
  apelido?: string | undefined;
481
- createAt?: unknown;
482
489
  filhos?: string[] | undefined;
483
490
  grades?: string[] | undefined;
484
491
  id_externo?: any;
@@ -504,7 +511,6 @@ declare const ProductSchema: z.ZodObject<{
504
511
  pai?: string | undefined;
505
512
  peso?: string | undefined;
506
513
  profundidade?: number | undefined;
507
- updateAt?: unknown;
508
514
  }>;
509
515
  type Product = z.infer<typeof ProductSchema>;
510
516
 
@@ -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;
@@ -162,7 +167,6 @@ declare const ProductSchema: z.ZodObject<{
162
167
  filhos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
163
168
  grades: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
164
169
  gtin: z.ZodString;
165
- id: z.ZodNumber;
166
170
  id_externo: z.ZodAny;
167
171
  imagem_principal: z.ZodOptional<z.ZodObject<{
168
172
  caminho: z.ZodString;
@@ -331,8 +335,7 @@ declare const ProductSchema: z.ZodObject<{
331
335
  url_video_youtube: z.ZodString;
332
336
  usado: z.ZodBoolean;
333
337
  variacoes: z.ZodArray<z.ZodString, "many">;
334
- }, "strip", z.ZodTypeAny, {
335
- id: number;
338
+ }>, "strip", z.ZodTypeAny, {
336
339
  resource_uri: string;
337
340
  ativo: boolean;
338
341
  bloqueado: boolean;
@@ -389,9 +392,12 @@ declare const ProductSchema: z.ZodObject<{
389
392
  url_video_youtube: string;
390
393
  usado: boolean;
391
394
  variacoes: string[];
395
+ id?: string | null | undefined;
396
+ order?: number | null | undefined;
397
+ createAt?: FirebaseFirestore.Timestamp | undefined;
398
+ updateAt?: FirebaseFirestore.Timestamp | undefined;
392
399
  altura?: number | undefined;
393
400
  apelido?: string | undefined;
394
- createAt?: FirebaseFirestore.Timestamp | undefined;
395
401
  filhos?: string[] | undefined;
396
402
  grades?: string[] | undefined;
397
403
  id_externo?: any;
@@ -417,9 +423,7 @@ declare const ProductSchema: z.ZodObject<{
417
423
  pai?: string | undefined;
418
424
  peso?: string | undefined;
419
425
  profundidade?: number | undefined;
420
- updateAt?: FirebaseFirestore.Timestamp | undefined;
421
426
  }, {
422
- id: number;
423
427
  resource_uri: string;
424
428
  ativo: boolean;
425
429
  bloqueado: boolean;
@@ -476,9 +480,12 @@ declare const ProductSchema: z.ZodObject<{
476
480
  url_video_youtube: string;
477
481
  usado: boolean;
478
482
  variacoes: string[];
483
+ id?: string | null | undefined;
484
+ order?: number | null | undefined;
485
+ createAt?: unknown;
486
+ updateAt?: unknown;
479
487
  altura?: number | undefined;
480
488
  apelido?: string | undefined;
481
- createAt?: unknown;
482
489
  filhos?: string[] | undefined;
483
490
  grades?: string[] | undefined;
484
491
  id_externo?: any;
@@ -504,7 +511,6 @@ declare const ProductSchema: z.ZodObject<{
504
511
  pai?: string | undefined;
505
512
  peso?: string | undefined;
506
513
  profundidade?: number | undefined;
507
- updateAt?: unknown;
508
514
  }>;
509
515
  type Product = z.infer<typeof ProductSchema>;
510
516