@_henriquewilson/gabirubi-domain 1.0.68 → 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.
@@ -167,7 +167,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
167
167
  filhos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
168
168
  grades: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
169
169
  gtin: z.ZodString;
170
- id: z.ZodNumber;
171
170
  id_externo: z.ZodAny;
172
171
  imagem_principal: z.ZodOptional<z.ZodObject<{
173
172
  caminho: z.ZodString;
@@ -337,7 +336,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
337
336
  usado: z.ZodBoolean;
338
337
  variacoes: z.ZodArray<z.ZodString, "many">;
339
338
  }>, "strip", z.ZodTypeAny, {
340
- id: number;
341
339
  resource_uri: string;
342
340
  ativo: boolean;
343
341
  bloqueado: boolean;
@@ -394,6 +392,7 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
394
392
  url_video_youtube: string;
395
393
  usado: boolean;
396
394
  variacoes: string[];
395
+ id?: string | null | undefined;
397
396
  order?: number | null | undefined;
398
397
  createAt?: FirebaseFirestore.Timestamp | undefined;
399
398
  updateAt?: FirebaseFirestore.Timestamp | undefined;
@@ -425,7 +424,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
425
424
  peso?: string | undefined;
426
425
  profundidade?: number | undefined;
427
426
  }, {
428
- id: number;
429
427
  resource_uri: string;
430
428
  ativo: boolean;
431
429
  bloqueado: boolean;
@@ -482,6 +480,7 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
482
480
  url_video_youtube: string;
483
481
  usado: boolean;
484
482
  variacoes: string[];
483
+ id?: string | null | undefined;
485
484
  order?: number | null | undefined;
486
485
  createAt?: unknown;
487
486
  updateAt?: unknown;
@@ -167,7 +167,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
167
167
  filhos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
168
168
  grades: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
169
169
  gtin: z.ZodString;
170
- id: z.ZodNumber;
171
170
  id_externo: z.ZodAny;
172
171
  imagem_principal: z.ZodOptional<z.ZodObject<{
173
172
  caminho: z.ZodString;
@@ -337,7 +336,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
337
336
  usado: z.ZodBoolean;
338
337
  variacoes: z.ZodArray<z.ZodString, "many">;
339
338
  }>, "strip", z.ZodTypeAny, {
340
- id: number;
341
339
  resource_uri: string;
342
340
  ativo: boolean;
343
341
  bloqueado: boolean;
@@ -394,6 +392,7 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
394
392
  url_video_youtube: string;
395
393
  usado: boolean;
396
394
  variacoes: string[];
395
+ id?: string | null | undefined;
397
396
  order?: number | null | undefined;
398
397
  createAt?: FirebaseFirestore.Timestamp | undefined;
399
398
  updateAt?: FirebaseFirestore.Timestamp | undefined;
@@ -425,7 +424,6 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
425
424
  peso?: string | undefined;
426
425
  profundidade?: number | undefined;
427
426
  }, {
428
- id: number;
429
427
  resource_uri: string;
430
428
  ativo: boolean;
431
429
  bloqueado: boolean;
@@ -482,6 +480,7 @@ declare const ProductSchema: z.ZodObject<z.objectUtil.extendShape<{
482
480
  url_video_youtube: string;
483
481
  usado: boolean;
484
482
  variacoes: string[];
483
+ id?: string | null | undefined;
485
484
  order?: number | null | undefined;
486
485
  createAt?: unknown;
487
486
  updateAt?: unknown;
@@ -186870,7 +186870,6 @@ var ProductSchema = ModelSchema.extend({
186870
186870
  filhos: import_zod3.z.array(import_zod3.z.string()).optional(),
186871
186871
  grades: import_zod3.z.array(import_zod3.z.string()).optional(),
186872
186872
  gtin: import_zod3.z.string(),
186873
- id: import_zod3.z.number(),
186874
186873
  id_externo: import_zod3.z.any(),
186875
186874
  imagem_principal: ImagePrincipalSchema.optional(),
186876
186875
  imagens: import_zod3.z.array(ImageSchema),