godeep-types 1.0.0

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.
Files changed (74) hide show
  1. package/README.md +84 -0
  2. package/dist/module.d.mts +8 -0
  3. package/dist/module.json +9 -0
  4. package/dist/module.mjs +16 -0
  5. package/dist/runtime/plugin.d.ts +2 -0
  6. package/dist/runtime/plugin.js +4 -0
  7. package/dist/runtime/server/tsconfig.json +3 -0
  8. package/dist/runtime/translate/avaliacoes.d.ts +4 -0
  9. package/dist/runtime/translate/avaliacoes.js +26 -0
  10. package/dist/runtime/translate/banner.d.ts +6 -0
  11. package/dist/runtime/translate/banner.js +69 -0
  12. package/dist/runtime/translate/basket.d.ts +5 -0
  13. package/dist/runtime/translate/basket.js +40 -0
  14. package/dist/runtime/translate/busca.d.ts +8 -0
  15. package/dist/runtime/translate/busca.js +18 -0
  16. package/dist/runtime/translate/campos-cadastro.d.ts +4 -0
  17. package/dist/runtime/translate/campos-cadastro.js +95 -0
  18. package/dist/runtime/translate/carrinho.d.ts +6 -0
  19. package/dist/runtime/translate/carrinho.js +141 -0
  20. package/dist/runtime/translate/categoria.d.ts +4 -0
  21. package/dist/runtime/translate/categoria.js +75 -0
  22. package/dist/runtime/translate/cliente.d.ts +4 -0
  23. package/dist/runtime/translate/cliente.js +82 -0
  24. package/dist/runtime/translate/configuracoes.d.ts +3 -0
  25. package/dist/runtime/translate/configuracoes.js +46 -0
  26. package/dist/runtime/translate/esqueceu-senha.d.ts +4 -0
  27. package/dist/runtime/translate/esqueceu-senha.js +14 -0
  28. package/dist/runtime/translate/favoritos.d.ts +4 -0
  29. package/dist/runtime/translate/favoritos.js +13 -0
  30. package/dist/runtime/translate/frete.d.ts +3 -0
  31. package/dist/runtime/translate/frete.js +31 -0
  32. package/dist/runtime/translate/home.d.ts +4 -0
  33. package/dist/runtime/translate/home.js +26 -0
  34. package/dist/runtime/translate/index.d.ts +24 -0
  35. package/dist/runtime/translate/index.js +24 -0
  36. package/dist/runtime/translate/menu.d.ts +4 -0
  37. package/dist/runtime/translate/menu.js +124 -0
  38. package/dist/runtime/translate/newsletter.d.ts +3 -0
  39. package/dist/runtime/translate/newsletter.js +5 -0
  40. package/dist/runtime/translate/pagamento.d.ts +4 -0
  41. package/dist/runtime/translate/pagamento.js +66 -0
  42. package/dist/runtime/translate/pagina.d.ts +4 -0
  43. package/dist/runtime/translate/pagina.js +12 -0
  44. package/dist/runtime/translate/parametros.d.ts +7 -0
  45. package/dist/runtime/translate/parametros.js +115 -0
  46. package/dist/runtime/translate/pedidos.d.ts +3 -0
  47. package/dist/runtime/translate/pedidos.js +82 -0
  48. package/dist/runtime/translate/produto.d.ts +12 -0
  49. package/dist/runtime/translate/produto.js +510 -0
  50. package/dist/runtime/translate/redefinir-senha.d.ts +4 -0
  51. package/dist/runtime/translate/redefinir-senha.js +10 -0
  52. package/dist/runtime/translate/redes-sociais.d.ts +3 -0
  53. package/dist/runtime/translate/redes-sociais.js +40 -0
  54. package/dist/runtime/translate/usuario.d.ts +10 -0
  55. package/dist/runtime/translate/usuario.js +102 -0
  56. package/dist/runtime/translate/vitrine-listagem.d.ts +4 -0
  57. package/dist/runtime/translate/vitrine-listagem.js +81 -0
  58. package/dist/runtime/translate/vitrine.d.ts +6 -0
  59. package/dist/runtime/translate/vitrine.js +37 -0
  60. package/dist/runtime/types/godeep.d.ts +1449 -0
  61. package/dist/runtime/types/godeep.js +0 -0
  62. package/dist/runtime/types/index.d.ts +3 -0
  63. package/dist/runtime/types/index.js +3 -0
  64. package/dist/runtime/types/shims-vue.d.ts +10 -0
  65. package/dist/runtime/types/storefront.d.ts +1005 -0
  66. package/dist/runtime/types/storefront.js +0 -0
  67. package/dist/runtime/types/utils.d.ts +67 -0
  68. package/dist/runtime/types/utils.js +20 -0
  69. package/dist/runtime/utils/gerais.d.ts +2 -0
  70. package/dist/runtime/utils/gerais.js +13 -0
  71. package/dist/runtime/utils/index.d.ts +1 -0
  72. package/dist/runtime/utils/index.js +1 -0
  73. package/dist/types.d.mts +3 -0
  74. package/package.json +75 -0
@@ -0,0 +1,1449 @@
1
+ export interface GodeepVitrineDado {
2
+ id?: number;
3
+ link?: string;
4
+ nome?: string;
5
+ resumo?: string;
6
+ descricao?: string;
7
+ descricao_rodape?: string;
8
+ ordem?: number;
9
+ ordenacao?: string;
10
+ imagem?: string;
11
+ meta_redirect?: string;
12
+ meta_canonical?: string;
13
+ meta_title_pagina?: string;
14
+ meta_description?: string;
15
+ banners?: GodeepVitrineBanner[];
16
+ lista?: GodeepVitrineLista;
17
+ }
18
+ export interface GodeepVitrineBanner {
19
+ id?: number;
20
+ nome?: string;
21
+ link?: string;
22
+ imagem?: string;
23
+ posicao?: string;
24
+ localizacao?: string;
25
+ }
26
+ export interface GodeepVitrineLista {
27
+ id?: number;
28
+ qtd_itens?: number;
29
+ itens_exibir?: number;
30
+ produtos?: GodeepProdutoDetalheDado[];
31
+ order?: GodeepVitrineOrder[];
32
+ parametros?: string[];
33
+ }
34
+ export interface GodeepVitrineOrder {
35
+ label?: string;
36
+ value?: string;
37
+ }
38
+ export interface GodeepBasketProduct {
39
+ id?: number;
40
+ quantidade?: number;
41
+ }
42
+ export interface GodeepBasketBasket {
43
+ id?: number;
44
+ cart_id?: string;
45
+ id_cliente?: number | null;
46
+ token_api?: null;
47
+ data_criacao?: string;
48
+ data_modificacao?: string | null;
49
+ id_televendas_vendedores?: number | null;
50
+ televendas_token_api?: string | null;
51
+ products?: GodeepBasketProduct[];
52
+ }
53
+ export interface GodeepBasketCart {
54
+ id?: number;
55
+ quantidade?: number;
56
+ }
57
+ export interface GodeepBasketData {
58
+ valorDescontoProdutos?: number;
59
+ valorTotalEmbalagens?: number;
60
+ valorTotalAVista?: string;
61
+ valorTotalAPrazo?: string;
62
+ valorFrete?: number;
63
+ valorProdutosAPrazo?: string;
64
+ valorProdutosAVista?: string;
65
+ valorNominalProdutos?: string;
66
+ quantidadeItens?: number;
67
+ produtos?: GodeepCarrinhoProduto[];
68
+ numeroMaximoParcelas?: number;
69
+ valorParcela?: string;
70
+ }
71
+ export interface GodeepBasket {
72
+ basket?: GodeepBasketBasket;
73
+ cartId?: string;
74
+ error?: boolean;
75
+ message?: string;
76
+ cart?: GodeepBasketCart[];
77
+ data?: GodeepBasketData;
78
+ }
79
+ export interface GodeepProdutoDetalheVariacaoDisponivel {
80
+ tipo?: string;
81
+ valores?: GodeepProdutoDetalheValores[];
82
+ }
83
+ export interface GodeepProdutoDetalheModeloVariacao {
84
+ variacao?: string;
85
+ variacaoPrincipal?: string;
86
+ modelo?: string;
87
+ variacoes?: GodeepProdutoDetalheVariacao[];
88
+ multipleVariation?: GodeepProdutoDetalheMV;
89
+ variacoesAgrupadasPorModelo?: GodeepProdutoDetalheVariacoesAgrupadasPorModelo;
90
+ selecionado?: GodeepProdutoDetalheValores;
91
+ variacoesDisponiveis?: GodeepProdutoDetalheVariacaoDisponivel[];
92
+ }
93
+ export interface GodeepProdutoDetalheVariacao {
94
+ idProduto?: number;
95
+ variacaoPrincipal?: string;
96
+ variacao?: string;
97
+ variacao_tipo?: string;
98
+ thumbnails?: GodeepProdutoDetalheThumbnail[];
99
+ estoque?: number;
100
+ estoqueMultiplo?: number;
101
+ }
102
+ export interface GodeepProdutoDetalheThumbnail {
103
+ id?: number;
104
+ listagem?: string;
105
+ detalhe?: string;
106
+ real?: string;
107
+ }
108
+ export interface GodeepProdutoDetalheDisponibilidade {
109
+ precos?: GodeepProdutoDetalhePreco[];
110
+ cd?: string;
111
+ quantidade?: number;
112
+ msg_disponibilidade?: string;
113
+ produto_gratuito?: number;
114
+ estoque_multiplo?: number;
115
+ prazo_ressuprimento?: number;
116
+ maximo_itens_por_compra?: number;
117
+ minimo_itens_por_compra?: number;
118
+ estoques?: GodeepProdutoDetalheEstoque[];
119
+ }
120
+ export interface GodeepProdutoDetalhePreco {
121
+ de?: number;
122
+ por?: number;
123
+ avista?: number;
124
+ numeroParcelas?: number;
125
+ valorParcela?: number;
126
+ jurosParcela?: string;
127
+ imagem?: string;
128
+ valorDescontoBoleto?: string;
129
+ porcentagemDesconto?: number;
130
+ msgAvista?: string;
131
+ parcelas?: GodeepProdutoDetalheParcela[];
132
+ valor1xNoCartao?: string | number | undefined;
133
+ }
134
+ export interface GodeepProdutoDetalheSituacao {
135
+ nome?: string;
136
+ status?: string;
137
+ mensagem?: string;
138
+ }
139
+ export interface GodeepProdutoDetalheMV {
140
+ [key: string]: string[] | string;
141
+ }
142
+ export interface GodeepProdutoDetalheVariacoesAgrupadasPorModelo {
143
+ [key: string]: GodeepProdutoDetalheVA;
144
+ }
145
+ export interface GodeepProdutoDetalheVA {
146
+ [key: string]: string[] | string | GodeepProdutoDetalheThumbnail[] | number | GodeepProdutoDetalheSituacao | GodeepProdutoDetalheValores;
147
+ }
148
+ export interface GodeepProdutoDetalheValores {
149
+ nome?: string;
150
+ imagemAtivo?: string;
151
+ imagemInativo?: string;
152
+ situacao?: GodeepProdutoDetalheSituacao;
153
+ thumbnails?: GodeepProdutoDetalheThumbnail[];
154
+ }
155
+ export interface GodeepProdutoDetalheEbook {
156
+ nome?: string;
157
+ url?: string;
158
+ }
159
+ export interface GodeepProdutoDetalhePropriedade {
160
+ label?: string;
161
+ opcao?: string;
162
+ imagem?: {
163
+ real?: string;
164
+ urlResizer?: string;
165
+ urlParametro?: string;
166
+ };
167
+ imagemSemEstoque?: {
168
+ real?: string;
169
+ urlResizer?: string;
170
+ urlParametro?: string;
171
+ };
172
+ id?: number;
173
+ disponibilidade?: {
174
+ precos?: GodeepProdutoDetalhePreco[];
175
+ cd?: string;
176
+ msg_disponibilidade?: string;
177
+ quantidade?: number;
178
+ produto_gratuito?: number;
179
+ estoque_multiplo?: number;
180
+ prazo_ressuprimento?: number;
181
+ maximo_itens_por_compra?: number;
182
+ minimo_itens_por_compra?: number;
183
+ estoques?: GodeepProdutoDetalheEstoque[];
184
+ };
185
+ selected?: boolean;
186
+ descricao?: string;
187
+ preco?: GodeepProdutoDetalhePreco;
188
+ imagens?: GodeepProdutoDetalheImagem[];
189
+ categorias?: GodeepProdutoDetalheCategoria[];
190
+ }
191
+ export interface GodeepProdutoDetalheFiltro {
192
+ nome?: string;
193
+ url?: string;
194
+ }
195
+ export interface GodeepProdutoDetalheProducts {
196
+ products?: GodeepProdutoDetalheDado;
197
+ }
198
+ export interface GodeepProdutoDetalhe {
199
+ dados?: GodeepProdutoDetalheProducts;
200
+ }
201
+ export interface GodeepProdutoDetalheDado {
202
+ id?: number;
203
+ sellers?: GodeepProdutoDetalheSeller[];
204
+ slug?: string;
205
+ nome?: string;
206
+ idProdutoGradePai?: string;
207
+ classificacaoIten?: string;
208
+ itensGrade?: GodeepProdutoDetalheItensGrade;
209
+ modeloVariacao?: GodeepProdutoDetalheModeloVariacao;
210
+ kit?: GodeepProdutoDetalheDado[];
211
+ ebook?: GodeepProdutoDetalheEbook[];
212
+ seo?: GodeepProdutoDetalheSeo;
213
+ detalhe?: GodeepProdutoDetalheDetalhe;
214
+ disponibilidade?: GodeepProdutoDetalheDisponibilidade;
215
+ download?: GodeepProdutoDetalheDownload[];
216
+ categorias?: GodeepProdutoDetalheCategoria[];
217
+ filtros?: GodeepProdutoDetalheFiltro[];
218
+ colaboradores?: GodeepProdutoDetalheColaboradore[];
219
+ fabricante?: GodeepProdutoDetalheFabricante[];
220
+ midia?: GodeepProdutoDetalheMidia;
221
+ avaliacao?: GodeepProdutoDetalheAvaliacao;
222
+ linksParceiros?: GodeepProdutoDetalheLink[];
223
+ links?: GodeepProdutoDetalheLink[];
224
+ atributos?: GodeepProdutoDetalheAtributos[];
225
+ }
226
+ export interface GodeepProdutoDetalheSeller {
227
+ id?: number;
228
+ nome?: string;
229
+ valor_de?: number;
230
+ valor_por?: number;
231
+ valor_crossdocking?: number;
232
+ valor_ressuprimento?: number;
233
+ estoque?: number;
234
+ estoque_crossdocking?: number;
235
+ estoque_infinito?: number;
236
+ prazo_crossdocking?: number;
237
+ prazo_ressuprimento?: string;
238
+ maximo_itens_por_compra?: string;
239
+ minimo_itens_por_compra?: string;
240
+ urlFrete?: string;
241
+ }
242
+ export interface GodeepProdutoDetalheDownload {
243
+ nome?: string;
244
+ url?: string;
245
+ }
246
+ export interface GodeepDado {
247
+ id?: number;
248
+ sellers?: GodeepProdutoDetalheSeller[];
249
+ slug?: string;
250
+ idProdutoGradePai?: string;
251
+ classificacaoIten?: string;
252
+ itensGrade?: GodeepProdutoDetalheItensGrade;
253
+ modeloVariacao?: GodeepProdutoDetalheModeloVariacao;
254
+ kit?: GodeepProdutoDetalheDado[];
255
+ ebook?: GodeepProdutoDetalheEbook[];
256
+ seo?: GodeepProdutoDetalheSeo;
257
+ detalhe?: GodeepProdutoDetalheDetalhe;
258
+ disponibilidade?: GodeepProdutoDetalheDisponibilidade;
259
+ download?: GodeepProdutoDetalheDownload[];
260
+ categorias?: GodeepProdutoDetalheCategoria[];
261
+ filtros?: GodeepProdutoDetalheFiltro[];
262
+ colaboradores?: GodeepProdutoDetalheColaboradore[];
263
+ fabricante?: GodeepProdutoDetalheFabricante[];
264
+ midia?: GodeepProdutoDetalheMidia;
265
+ avaliacao?: GodeepProdutoDetalheSituacao[];
266
+ linksParceiros?: GodeepProdutoDetalheLink[];
267
+ links?: GodeepProdutoDetalheLink[];
268
+ atributos?: GodeepProdutoDetalheAtributos;
269
+ }
270
+ export interface GodeepProdutoDetalheItensGrade {
271
+ propriedades?: GodeepProdutoDetalhePropriedade[];
272
+ skus?: {
273
+ idProduto?: number;
274
+ }[];
275
+ }
276
+ export interface GodeepProdutoDetalheConteudo {
277
+ [key: string]: string[] | string;
278
+ }
279
+ export interface GodeepProdutoDetalheSeo {
280
+ metaDescription?: string;
281
+ metaTitlePagina?: string;
282
+ metaKeyword?: string;
283
+ metaCanonical?: string;
284
+ metaRedirect?: string;
285
+ slug?: string;
286
+ }
287
+ export interface GodeepProdutoDetalheDetalhe {
288
+ tipo?: string;
289
+ peso?: number;
290
+ pesoCubico?: string;
291
+ largura?: string;
292
+ altura?: string;
293
+ comprimento?: string;
294
+ codigo?: string;
295
+ status?: string;
296
+ situacao?: GodeepProdutoDetalheSituacao;
297
+ nome?: string;
298
+ descricao?: string;
299
+ linkAlternativo?: string;
300
+ dataCadastro?: string;
301
+ tipo_produto?: string;
302
+ produto_exclusivo_convenio?: number;
303
+ dataPrevenda?: string;
304
+ quantidadePedidos?: number;
305
+ garantia?: number;
306
+ }
307
+ export interface GodeepProdutoDetalheLink {
308
+ self?: string;
309
+ href?: string;
310
+ method?: string;
311
+ }
312
+ export interface GodeepProdutoDetalheComentarios {
313
+ id?: number;
314
+ idProduto?: number;
315
+ titulo?: string;
316
+ nome?: string;
317
+ nota?: number;
318
+ exibir?: number;
319
+ cidade?: string;
320
+ email?: string;
321
+ data?: string;
322
+ descricao?: string;
323
+ links?: GodeepProdutoDetalheLink;
324
+ }
325
+ export interface GodeepProdutoDetalheAvaliacao {
326
+ notaMaxima?: number;
327
+ media?: number;
328
+ quantidade?: number;
329
+ comentarios?: GodeepProdutoDetalheComentarios[];
330
+ links?: GodeepProdutoDetalheLink;
331
+ }
332
+ export interface GodeepProdutoDetalheEstoqueInfoCd {
333
+ nome?: string;
334
+ regiao?: string;
335
+ }
336
+ export interface GodeepProdutoDetalheEstoque {
337
+ infoCd?: GodeepProdutoDetalheEstoqueInfoCd;
338
+ id?: number;
339
+ quantidade?: number;
340
+ de?: number;
341
+ por?: number;
342
+ avista?: number;
343
+ porcentagemDesconto?: number;
344
+ numeroParcelas?: number;
345
+ valorParcela?: number;
346
+ jurosParcela?: string;
347
+ imagem?: string;
348
+ valor1xNoCartao?: string | number | undefined;
349
+ msgAvista?: string;
350
+ valorDescontoBoleto?: string;
351
+ parcelas?: GodeepProdutoDetalheParcela[];
352
+ }
353
+ export interface GodeepProdutoDetalheParcela {
354
+ numeroParcela?: number;
355
+ valor?: string;
356
+ juros?: string;
357
+ desconto?: boolean;
358
+ img?: string;
359
+ }
360
+ export interface GodeepProdutoDetalheCategoria {
361
+ id?: number;
362
+ nome?: string;
363
+ slug?: string;
364
+ exibeFiltros?: number;
365
+ imagem?: string;
366
+ imagem2?: string;
367
+ path?: string;
368
+ filhos?: GodeepProdutoDetalheFilho[];
369
+ }
370
+ export interface GodeepProdutoDetalheFilho {
371
+ id?: number;
372
+ nome?: string;
373
+ slug?: string;
374
+ exibeFiltros?: number;
375
+ imagem?: string;
376
+ imagem2?: string;
377
+ path?: string;
378
+ filhos?: GodeepProdutoDetalheFilho[];
379
+ }
380
+ export interface GodeepProdutoDetalheColaboradore {
381
+ id?: number;
382
+ nome?: string;
383
+ codigo_externo?: string;
384
+ descricao?: string;
385
+ imagem?: string;
386
+ link?: string;
387
+ ativo?: number;
388
+ destaque?: number;
389
+ c_criado?: string;
390
+ c_modificado?: string;
391
+ imagemOpcional?: GodeepProdutoDetalheImagemOpcional;
392
+ tipo?: string;
393
+ }
394
+ export interface GodeepProdutoDetalheImagemOpcional {
395
+ id?: string;
396
+ real?: string;
397
+ urlResizer?: string;
398
+ urlParametro?: string;
399
+ }
400
+ export interface GodeepProdutoDetalheFabricante {
401
+ id?: number;
402
+ nome?: string;
403
+ link?: string;
404
+ slug?: string;
405
+ imagem?: GodeepProdutoDetalheImagem;
406
+ metaTitlePagina?: string;
407
+ metaDescription?: string;
408
+ metaKeyword?: string;
409
+ }
410
+ export interface GodeepProdutoDetalheImagem {
411
+ id?: number;
412
+ listagem?: string;
413
+ detalhe?: string;
414
+ real?: string;
415
+ urlResizer?: string;
416
+ urlParametro?: string;
417
+ primaria?: string;
418
+ secundaria?: string;
419
+ }
420
+ export interface GodeepProdutoDetalheSelo {
421
+ id?: number;
422
+ nome?: string;
423
+ imagem?: string;
424
+ link?: string;
425
+ }
426
+ export interface GodeepProdutoDetalheVideo {
427
+ id?: number;
428
+ nome?: string;
429
+ url?: string;
430
+ }
431
+ export interface GodeepProdutoDetalheArquivo {
432
+ nome?: string;
433
+ alias?: string;
434
+ tipo?: string;
435
+ destaque?: number;
436
+ link?: string;
437
+ }
438
+ export interface GodeepProdutoDetalheMidia {
439
+ imagens?: GodeepProdutoDetalheImagem[];
440
+ selos?: GodeepProdutoDetalheSelo[];
441
+ videos?: string;
442
+ arquivos?: GodeepProdutoDetalheArquivo[];
443
+ }
444
+ export interface GodeepProdutoDetalheAtributosItem {
445
+ id?: string | number;
446
+ valor?: string;
447
+ contemConteudo?: boolean;
448
+ label?: string;
449
+ }
450
+ export interface GodeepProdutoDetalheAtributos {
451
+ [key: string]: GodeepProdutoDetalheAtributosItem;
452
+ }
453
+ export interface GodeepProdutoDetalhesExtrasWysiwyg {
454
+ id?: string;
455
+ valor?: string;
456
+ label?: string;
457
+ }
458
+ export interface GodeepProdutoDetalhesExtrasNumerico {
459
+ id?: string;
460
+ valor?: string;
461
+ label?: string;
462
+ }
463
+ export interface GodeepProdutoDetalhesExtrasTexto {
464
+ id?: string;
465
+ valor?: string;
466
+ label?: string;
467
+ }
468
+ export interface GodeepProdutoDetalhesExtrasValor {
469
+ id?: string;
470
+ valor?: string;
471
+ label?: string;
472
+ }
473
+ export interface GodeepProdutoDetalheIsbn {
474
+ id?: string;
475
+ valor?: string;
476
+ label?: string;
477
+ }
478
+ export interface GodeepProdutoDetalheIsbn13 {
479
+ id?: string;
480
+ valor?: string;
481
+ label?: string;
482
+ }
483
+ export interface GodeepProdutoDetalheCodBarras {
484
+ id?: string;
485
+ valor?: string;
486
+ label?: string;
487
+ }
488
+ export interface GodeepProdutoDetalheTipoProduto {
489
+ id?: string;
490
+ valor?: string;
491
+ label?: string;
492
+ }
493
+ export interface GodeepBasketProductDetailed {
494
+ id?: number;
495
+ nome?: string;
496
+ codigo?: string;
497
+ slug?: string;
498
+ qtd_solicitada_carrinho?: number;
499
+ valorNominal?: string;
500
+ valorPromocional?: string;
501
+ valorAvista?: string;
502
+ valorFinal?: string;
503
+ valorFinalAvista?: string;
504
+ descricao?: string;
505
+ peso?: number | null;
506
+ estoque?: number;
507
+ variacao?: string;
508
+ midia?: {
509
+ imagens?: Array<{
510
+ id?: number;
511
+ listagem?: string;
512
+ detalhe?: string;
513
+ real?: string;
514
+ }>;
515
+ };
516
+ disponibilidade?: {
517
+ precos?: Array<{
518
+ de?: number;
519
+ por?: number;
520
+ avista?: number;
521
+ porcentagemDesconto?: number;
522
+ numeroParcelas?: number;
523
+ valorParcela?: number;
524
+ msgAvista?: string;
525
+ }>;
526
+ };
527
+ }
528
+ export interface GodeepCliente {
529
+ sexo?: string;
530
+ tipo?: string;
531
+ validacao_cadastro?: string;
532
+ }
533
+ export interface GodeepClienteTelefone {
534
+ whatsapp?: string;
535
+ residencial?: string;
536
+ celular?: string;
537
+ comercial1?: string;
538
+ comercial2?: string;
539
+ }
540
+ export interface GodeepClienteEndereco {
541
+ destinatario?: string | null;
542
+ id?: number;
543
+ endereco?: string;
544
+ numero?: string;
545
+ complemento?: string;
546
+ bairro?: string;
547
+ cidade?: string;
548
+ estado?: string;
549
+ pais?: string;
550
+ cep?: string;
551
+ tipo?: string;
552
+ nomeEndereco?: string;
553
+ }
554
+ export interface GodeepClienteResponse {
555
+ id?: number;
556
+ nome?: string;
557
+ nomeFantasia?: string;
558
+ razaoSocial?: string;
559
+ responsavel?: string | null;
560
+ tipoPessoa?: string;
561
+ cpf?: string;
562
+ cnpj?: string;
563
+ dataNascimento?: string;
564
+ sexo?: string;
565
+ email?: string;
566
+ telefone?: GodeepClienteTelefone;
567
+ inscricaoEstadual?: string | null;
568
+ inscricaoMunicipal?: string | null;
569
+ contribuinte_icms?: string;
570
+ rg?: string | null;
571
+ newsletters?: string;
572
+ interesses?: string;
573
+ links?: {
574
+ self?: string;
575
+ href?: string;
576
+ method?: string;
577
+ };
578
+ enderecos?: GodeepClienteEndereco;
579
+ }
580
+ export interface GodeepClienteApiResponse {
581
+ dados?: GodeepClienteResponse;
582
+ }
583
+ export interface GodeepEnderecosApiResponse {
584
+ dados?: GodeepClienteEndereco[];
585
+ }
586
+ export interface GodeepUsuario {
587
+ id?: number;
588
+ nome?: string;
589
+ email?: string;
590
+ tipo_cli?: string;
591
+ token?: string;
592
+ cliente?: GodeepCliente;
593
+ }
594
+ export interface GodeepCategoryTree {
595
+ name?: string;
596
+ path?: string;
597
+ }
598
+ export interface GodeepOrdenacao {
599
+ label?: string;
600
+ value?: string;
601
+ }
602
+ export interface GodeepPaginador {
603
+ primeiraPagina?: number;
604
+ proximaPagina?: number | null;
605
+ paginaAtual?: number;
606
+ porPagina?: string | number;
607
+ total?: number;
608
+ ultimaPagina?: number;
609
+ }
610
+ export interface GodeepCategoriaListagem {
611
+ dados?: {
612
+ nome?: string;
613
+ descricao?: string | null;
614
+ imagem?: string;
615
+ imagem2?: string;
616
+ apelido?: string | null;
617
+ resumo?: string | null;
618
+ slug?: string;
619
+ subtitulo?: string | null;
620
+ category_tree?: GodeepCategoryTree[];
621
+ exibir_menu_todas_categorias?: number;
622
+ exibe_filtros?: number;
623
+ produtos_destaque?: number;
624
+ seo?: {
625
+ metaDescription?: string;
626
+ metaTitlePagina?: string;
627
+ metaKeyword?: string | null;
628
+ metaCanonical?: string | null;
629
+ metaRedirect?: string | null;
630
+ };
631
+ produtos?: GodeepProdutoDetalheDado[];
632
+ order?: GodeepOrdenacao[];
633
+ };
634
+ paginador?: GodeepPaginador;
635
+ }
636
+ export interface GodeepVitrineListagem {
637
+ dados?: {
638
+ nome?: string;
639
+ descricao?: string | null;
640
+ imagem?: string;
641
+ imagem2?: string;
642
+ apelido?: string | null;
643
+ resumo?: string | null;
644
+ slug?: string;
645
+ subtitulo?: string | null;
646
+ category_tree?: GodeepCategoryTree[];
647
+ exibir_menu_todas_categorias?: number;
648
+ exibe_filtros?: number;
649
+ produtos_destaque?: number;
650
+ seo?: {
651
+ metaDescription?: string;
652
+ metaTitlePagina?: string;
653
+ metaKeyword?: string | null;
654
+ metaCanonical?: string | null;
655
+ metaRedirect?: string | null;
656
+ };
657
+ produtos?: GodeepProdutoDetalheDado[];
658
+ lista?: GodeepVitrineLista;
659
+ order?: GodeepOrdenacao[];
660
+ };
661
+ links?: {
662
+ self?: string;
663
+ href?: string;
664
+ method?: string;
665
+ };
666
+ paginador?: GodeepPaginador;
667
+ }
668
+ export interface GodeepLoginResponse {
669
+ dados?: GodeepUsuario;
670
+ }
671
+ export interface GodeepEndereco {
672
+ destinatario?: string;
673
+ cep?: string;
674
+ endereco?: string;
675
+ numero?: string;
676
+ complemento?: string;
677
+ bairro?: string;
678
+ estado?: string;
679
+ cidade?: string;
680
+ nomeEndereco?: string;
681
+ }
682
+ export interface GodeepCadastroPF {
683
+ email: string;
684
+ telefone: string;
685
+ whatsapp?: string;
686
+ comercial?: string;
687
+ celular?: string;
688
+ senha: string;
689
+ endereco: GodeepEndereco;
690
+ newsletters: boolean;
691
+ nome: string;
692
+ cpf: string;
693
+ sexo?: string;
694
+ }
695
+ export interface GodeepCadastroPJ {
696
+ email: string;
697
+ telefone: string;
698
+ whatsapp?: string;
699
+ comercial?: string;
700
+ celular?: string;
701
+ senha: string;
702
+ endereco: Omit<GodeepEndereco, 'nomeEndereco'>;
703
+ nomeFantasia: string;
704
+ razaoSocial: string;
705
+ cnpj: string;
706
+ responsavel: string;
707
+ inscricaoEstadual: string;
708
+ }
709
+ export interface GodeepConfiguracoes {
710
+ parametros_gerais?: Record<string, unknown>;
711
+ dados_loja?: {
712
+ id?: number;
713
+ nome?: string;
714
+ descricao?: string;
715
+ logo?: string;
716
+ logotipo?: string;
717
+ logotipo_checkout?: string;
718
+ logotipo_email?: string;
719
+ logotipoRodape?: string;
720
+ logotipoRodape_checkout?: string;
721
+ logotipoRodape_email?: string;
722
+ logotipo_real?: string;
723
+ logotipoRodape_real?: string;
724
+ logotipo_url_resizer?: string;
725
+ logotipo_url_parametro?: string;
726
+ logotipo_rodape_url_resizer?: string;
727
+ logotipo_rodape_url_parametro?: string;
728
+ favicon?: string;
729
+ razao_social?: string;
730
+ nome_fantasia?: string;
731
+ loja_nome?: string;
732
+ frase_footer?: string;
733
+ email_sac?: string;
734
+ loja_footer_sac?: string;
735
+ telefone_sac?: string;
736
+ horario_atendimento?: string;
737
+ loja_footer_endereco?: string;
738
+ loja_google_endereco?: string;
739
+ numero_whatsapp?: string;
740
+ exibir_atendimento_via_whatsapp?: string;
741
+ atendimento_via_whatsapp?: string;
742
+ };
743
+ layout?: {
744
+ topo?: {
745
+ mensagem?: string;
746
+ };
747
+ [chave: string]: unknown;
748
+ };
749
+ modulos?: Record<string, unknown> | GodeepModulo[];
750
+ dados?: {
751
+ parametros_gerais?: Record<string, unknown>;
752
+ dados_loja?: {
753
+ logotipo?: string;
754
+ logotipo_checkout?: string;
755
+ logotipo_email?: string;
756
+ logotipoRodape?: string;
757
+ logotipoRodape_checkout?: string;
758
+ logotipoRodape_email?: string;
759
+ logotipo_real?: string;
760
+ logotipoRodape_real?: string;
761
+ logotipo_url_resizer?: string;
762
+ logotipo_url_parametro?: string;
763
+ logotipo_rodape_url_resizer?: string;
764
+ logotipo_rodape_url_parametro?: string;
765
+ favicon?: string;
766
+ razao_social?: string;
767
+ nome_fantasia?: string;
768
+ loja_nome?: string;
769
+ frase_footer?: string;
770
+ email_sac?: string;
771
+ loja_footer_sac?: string;
772
+ telefone_sac?: string;
773
+ horario_atendimento?: string;
774
+ loja_footer_endereco?: string;
775
+ loja_google_endereco?: string;
776
+ numero_whatsapp?: string;
777
+ exibir_atendimento_via_whatsapp?: string;
778
+ atendimento_via_whatsapp?: string;
779
+ };
780
+ layout?: {
781
+ topo?: {
782
+ mensagem?: string;
783
+ };
784
+ [chave: string]: unknown;
785
+ } | Record<string, unknown>;
786
+ modulos?: Record<string, unknown>;
787
+ parametros?: Record<string, unknown>;
788
+ };
789
+ }
790
+ export interface GodeepRedeSocial {
791
+ nome?: string;
792
+ icone?: string;
793
+ link?: string;
794
+ imagem?: string;
795
+ }
796
+ export interface GodeepRedesSociaisResponse {
797
+ dados?: GodeepRedeSocial[];
798
+ }
799
+ export interface GodeepOpcaoFrete {
800
+ nome?: string;
801
+ codigo?: string;
802
+ prazo_entrega?: number;
803
+ erro?: string;
804
+ produtos?: unknown[];
805
+ transportadora?: string;
806
+ valor?: number;
807
+ nome_admin?: string;
808
+ cotacao_id?: string;
809
+ cotacao?: unknown;
810
+ valor_original?: number;
811
+ dias_processamento?: number;
812
+ prazo_crossdocking?: number;
813
+ exibe?: boolean;
814
+ tipo_prazo?: string;
815
+ }
816
+ export type GodeepFreteResponse = GodeepOpcaoFrete[];
817
+ export interface GodeepProdutosRelacionados {
818
+ dados?: {
819
+ compreTambem?: GodeepProdutoDetalheDado[];
820
+ produtosSimilares?: GodeepProdutoDetalheDado[];
821
+ produtosAutor?: GodeepProdutoDetalheDado[];
822
+ };
823
+ }
824
+ export interface GodeepNewsletterResponse {
825
+ mensagens?: string[];
826
+ }
827
+ export interface GodeepPagamentoParcelas {
828
+ [parcela: string]: string;
829
+ }
830
+ export interface GodeepPagamentoDetalhe {
831
+ parcelas: GodeepPagamentoParcelas;
832
+ avista: string;
833
+ }
834
+ export interface GodeepMetodosPagamentoResponse {
835
+ pagamentos: Record<string, GodeepPagamentoDetalhe>;
836
+ fretes?: unknown;
837
+ }
838
+ export interface GodeepPedidoProduto {
839
+ id?: number;
840
+ imagem?: string;
841
+ descricao?: string;
842
+ nome?: string;
843
+ codigo?: string;
844
+ variacao?: string;
845
+ quantidade?: number;
846
+ disponibilidade?: string;
847
+ preco?: {
848
+ preco?: string;
849
+ preco_de?: string;
850
+ preco_por?: string;
851
+ preco_de_juros?: string;
852
+ preco_por_juros?: string;
853
+ preco_avista?: string;
854
+ preco_avista_juros?: string;
855
+ desconto?: string;
856
+ preco1x?: string;
857
+ preco_desconto_boleto?: string;
858
+ };
859
+ }
860
+ export interface GodeepPedidoDados {
861
+ numero?: string;
862
+ data?: string;
863
+ id_status?: number;
864
+ status?: string;
865
+ desconto?: number;
866
+ tipoDeFrete?: string;
867
+ frete?: number;
868
+ subtotal?: number;
869
+ total?: number;
870
+ }
871
+ export interface GodeepPedidoEntrega {
872
+ nomeDestinatario?: string;
873
+ endereco?: string;
874
+ numero?: string;
875
+ bairro?: string;
876
+ cidade?: string;
877
+ cep?: string;
878
+ complemento?: string;
879
+ estado?: string;
880
+ }
881
+ export interface GodeepPedidoPagamento {
882
+ nome?: string;
883
+ parametro?: string;
884
+ meioPagamento?: string;
885
+ valor?: number;
886
+ parcelas?: number;
887
+ imagem?: string;
888
+ descricao?: string;
889
+ pagamento_pix_chave?: string;
890
+ linkOrderCancel?: string;
891
+ }
892
+ export interface GodeepPedido {
893
+ id?: number;
894
+ dados?: GodeepPedidoDados;
895
+ entrega?: GodeepPedidoEntrega;
896
+ pagamento?: GodeepPedidoPagamento;
897
+ produtos?: GodeepPedidoProduto[];
898
+ }
899
+ export interface GodeepPedidosResponse {
900
+ dados?: GodeepPedido[];
901
+ paginador?: {
902
+ paginaAtual?: number;
903
+ ultimaPagina?: number;
904
+ proximaPagina?: number;
905
+ porPagina?: number;
906
+ maisPaginas?: boolean;
907
+ };
908
+ links?: unknown;
909
+ }
910
+ export interface GodeepparametrosSubcategoria {
911
+ id?: number;
912
+ nome?: string;
913
+ slug?: string;
914
+ exibeFiltros?: number;
915
+ imagem?: string;
916
+ imagem2?: string;
917
+ video?: string;
918
+ path?: string;
919
+ }
920
+ export interface GodeepparametrosFiltroPreco {
921
+ de?: string;
922
+ ate?: string;
923
+ label?: string;
924
+ link?: string;
925
+ }
926
+ export interface GodeepparametrosFiltro {
927
+ id?: number;
928
+ nome?: string;
929
+ slug?: string;
930
+ imagem?: string | null;
931
+ imagem2?: string;
932
+ parent_id?: number;
933
+ filhos?: unknown[];
934
+ }
935
+ export interface GodeepparametrosMarca {
936
+ id?: number;
937
+ nome?: string;
938
+ slug?: string;
939
+ }
940
+ export interface GodeepparametrosResponse {
941
+ precos?: {
942
+ min?: number;
943
+ max?: number;
944
+ avg?: number;
945
+ total?: number;
946
+ filtros?: GodeepparametrosFiltroPreco[];
947
+ };
948
+ subcategorias?: {
949
+ id?: number;
950
+ nome?: string;
951
+ slug?: string;
952
+ path?: string;
953
+ subcategorias?: GodeepparametrosSubcategoria[];
954
+ };
955
+ filtros?: GodeepparametrosFiltro[];
956
+ filtrosExtras?: unknown[];
957
+ marcas?: GodeepparametrosMarca[];
958
+ categoria?: unknown[];
959
+ grades?: unknown[];
960
+ }
961
+ export interface BannersDadosGodeep {
962
+ id?: number;
963
+ tipo_banner_id?: number;
964
+ categorias_id?: number[];
965
+ descricao?: string;
966
+ vitrines_id?: number[];
967
+ marcas_id?: number[];
968
+ extensao?: string;
969
+ nome?: string;
970
+ arquivo?: string;
971
+ link?: string;
972
+ html?: string;
973
+ exibe_home?: number;
974
+ localizacao?: string;
975
+ exibe_busca?: number;
976
+ abrir_link_nova_aba?: number;
977
+ tipo_cadastro?: string;
978
+ ordem?: number;
979
+ newsletter?: number;
980
+ texto_inicial?: string;
981
+ exibicao_lojas?: string;
982
+ exibe_somente_primeira_pagina?: number;
983
+ status?: number;
984
+ validade_inicial?: string | null;
985
+ validade_final?: string | null;
986
+ imagem?: string;
987
+ tipo?: {
988
+ id?: number;
989
+ nome?: string;
990
+ altura?: string;
991
+ largura?: string;
992
+ posicao?: string;
993
+ slide_show?: number;
994
+ exibe_home?: number;
995
+ exibe_categorias?: number;
996
+ exibe_marcas?: number;
997
+ exibe_vitrines?: number;
998
+ exibe_lojas_especiais?: number;
999
+ exibe_busca?: number;
1000
+ };
1001
+ order?: {
1002
+ _id?: number;
1003
+ };
1004
+ links?: {
1005
+ self?: string;
1006
+ href?: string;
1007
+ method?: string;
1008
+ };
1009
+ }
1010
+ export interface BannersRespostaGodeep {
1011
+ dados?: BannersDadosGodeep[];
1012
+ links?: {
1013
+ self?: string;
1014
+ href?: string;
1015
+ method?: string;
1016
+ };
1017
+ }
1018
+ export interface GodeepMenu {
1019
+ menu?: GodeepMenuEsquema;
1020
+ }
1021
+ export interface GodeepMenuEsquema {
1022
+ principal?: GodeepMenuPrincipal[];
1023
+ categorias?: GodeepMenuCategorias;
1024
+ links?: GodeepMenuLinks;
1025
+ rodape?: GodeepMenuRodape[];
1026
+ }
1027
+ export interface GodeepMenuPrincipal {
1028
+ id?: number;
1029
+ nome?: string;
1030
+ link?: string;
1031
+ exibir_categorias?: boolean;
1032
+ produto?: string;
1033
+ target?: string;
1034
+ image?: string;
1035
+ imageWidth?: string;
1036
+ imageHeight?: string;
1037
+ icones?: {
1038
+ ativo?: string;
1039
+ inativo?: string;
1040
+ };
1041
+ icone_principal?: string;
1042
+ icone_secundario?: string;
1043
+ submenu?: GodeepMenuSubmenu[];
1044
+ }
1045
+ export interface GodeepMenuSubmenu {
1046
+ id?: number;
1047
+ nome?: string;
1048
+ classIcone?: string;
1049
+ class_icone?: string;
1050
+ identificador?: string;
1051
+ exibir_menu_todas_categorias?: number;
1052
+ link?: string;
1053
+ slug?: string;
1054
+ imagem?: string;
1055
+ imagem2?: string;
1056
+ imageWidth?: string;
1057
+ imageHeight?: string;
1058
+ submenu?: GodeepMenuSubmenu[];
1059
+ titulo?: string;
1060
+ }
1061
+ export interface GodeepMenuCategorias {
1062
+ selecionadas?: string[];
1063
+ padrao?: GodeepMenuPadrao[];
1064
+ }
1065
+ export interface GodeepMenuPadrao {
1066
+ id?: number;
1067
+ nome?: string;
1068
+ link?: string;
1069
+ slug?: string;
1070
+ exibir_menu_todas_categorias?: number;
1071
+ imagem?: string;
1072
+ imagem2?: string;
1073
+ submenu?: GodeepMenuSubmenu[];
1074
+ }
1075
+ export interface GodeepMenuLinks {
1076
+ self?: string;
1077
+ href?: string;
1078
+ method?: string;
1079
+ }
1080
+ export interface GodeepMenuRodape {
1081
+ titulo?: string;
1082
+ identificador?: string;
1083
+ link?: string;
1084
+ tipo?: string;
1085
+ class_icone?: string;
1086
+ url_imagem?: string;
1087
+ submenu?: GodeepMenuSubmenu[];
1088
+ }
1089
+ export interface GodeepCarrinhoProduto {
1090
+ id?: number;
1091
+ id_produto_grade_pai?: string | null;
1092
+ classificacao_item?: string;
1093
+ classificacaoIten?: string;
1094
+ estilo_produto?: string;
1095
+ nome?: string;
1096
+ codigo?: string;
1097
+ slug?: string;
1098
+ valorNominal?: string;
1099
+ descricao?: string;
1100
+ valorPromocional?: string;
1101
+ valorAvista?: string;
1102
+ temDesconto?: boolean;
1103
+ temValorAvistaComDesconto?: boolean;
1104
+ valorDesconto?: number;
1105
+ valorAvistaComDesconto?: number;
1106
+ produtoDesconto?: number;
1107
+ valorFinal?: string;
1108
+ peso?: number;
1109
+ pesoCubico?: string;
1110
+ estoque?: number;
1111
+ data_alteracao_estoque?: string;
1112
+ nao_controlar_estoque?: boolean;
1113
+ freteTabela?: string;
1114
+ produtoKit?: boolean;
1115
+ estilo_kit?: boolean;
1116
+ variacao?: string;
1117
+ campanha?: string[];
1118
+ colaborador?: string[];
1119
+ id_fabricante?: number;
1120
+ avistaDescontoRevenda?: number;
1121
+ descontoRevenda?: number;
1122
+ id_segmento_revenda?: number;
1123
+ totalEmbalagens?: number;
1124
+ tipo_produto_restricao: number;
1125
+ tipo_restricao?: string;
1126
+ descontoConvenio: number;
1127
+ categoria_path?: string;
1128
+ qtd_estoque_crossdocking?: number;
1129
+ valor_vigente_crossdocking?: string;
1130
+ valor_vigente_crossdocking_avista?: string;
1131
+ valor_vigente_ressuprimento?: string;
1132
+ valor_vigente_ressuprimento_avista?: string;
1133
+ estoque_infinito_ressuprimento?: number;
1134
+ qtd_solicitada_carrinho?: number;
1135
+ detalhe?: GodeepProdutoDetalheDetalhe;
1136
+ disponibilidade?: GodeepProdutoDetalheDisponibilidade;
1137
+ fabricante?: GodeepProdutoDetalheFabricante;
1138
+ midia?: GodeepProdutoDetalheMidia;
1139
+ itensGrade?: GodeepProdutoDetalheItensGrade;
1140
+ modeloVariacao?: GodeepProdutoDetalheModeloVariacao;
1141
+ valorFinalAvista?: string;
1142
+ }
1143
+ export interface GodeepCarrinho {
1144
+ valorDescontoProdutos?: number;
1145
+ valorTotalEmbalagens?: number;
1146
+ valorTotalAVista?: string;
1147
+ valorTotalAPrazo?: string;
1148
+ valorFrete?: number;
1149
+ valorProdutosAPrazo?: string;
1150
+ valorProdutosAVista?: string;
1151
+ valorNominalProdutos?: string;
1152
+ quantidadeItens?: number;
1153
+ produtos?: GodeepCarrinhoProduto[];
1154
+ numeroMaximoParcelas?: number;
1155
+ valorParcela?: string;
1156
+ }
1157
+ export interface GodeepImagemConfig {
1158
+ id?: string;
1159
+ real?: string;
1160
+ urlResizer?: string;
1161
+ urlParametro?: string;
1162
+ url_resizer?: string;
1163
+ url_parametro?: string;
1164
+ }
1165
+ export interface GodeepDadosLoja {
1166
+ emailSAC?: string;
1167
+ nomeLoja?: string;
1168
+ enderecoLoja?: string;
1169
+ telefoneSAC?: string;
1170
+ horarioAtendimento?: string;
1171
+ emailDuvidaProduto?: string;
1172
+ exibirWhatsapp?: string;
1173
+ numeroWhatsapp?: string;
1174
+ enderecoGoogleMaps?: string;
1175
+ fraseRodape?: string;
1176
+ favicon?: string;
1177
+ razaoSocial?: string;
1178
+ cnpj?: string;
1179
+ nomeFantasia?: string;
1180
+ metaTituloPadrao?: string;
1181
+ metaDescriaoPadrao?: string;
1182
+ logotipo?: GodeepImagemConfig;
1183
+ logotipoRodape?: GodeepImagemConfig;
1184
+ domain?: string;
1185
+ urlLoja?: string;
1186
+ urlCheckout?: string;
1187
+ googleAnalytics?: string;
1188
+ facebookId?: string;
1189
+ googleTagManager?: string;
1190
+ googleAnalyticsVersionFourKey?: string;
1191
+ googleMapsToken?: string;
1192
+ ativarLoginGoogle?: string;
1193
+ rg_obrigatorio?: string;
1194
+ storeIdReclameAqui?: string;
1195
+ }
1196
+ export interface GodeepModulo {
1197
+ ativo?: boolean;
1198
+ nome?: string;
1199
+ }
1200
+ export interface GodeepConfiguracoes {
1201
+ dadosLoja?: GodeepDadosLoja;
1202
+ tokenConvenioHabilitado?: string;
1203
+ pedidosEprocessosDeCompras?: {
1204
+ preferencias?: {
1205
+ destinoDoBotaoComprar?: string;
1206
+ botaoComprarDiretoCarrinho?: boolean;
1207
+ };
1208
+ pedidos?: {
1209
+ mensagemCancelaPedido?: string;
1210
+ };
1211
+ };
1212
+ captchaPages?: string[];
1213
+ cadastro?: {
1214
+ celular_obrigatorio?: string;
1215
+ telefone_obrigatorio_pf?: string;
1216
+ telefone_obrigatorio_pj?: string;
1217
+ obrigatoriedade_icms?: string;
1218
+ telefone_obrigatorio_fale_conosco?: string;
1219
+ permitirCadastroTipoCliente?: string;
1220
+ solicitarConfirmacaoEmail?: string;
1221
+ interesses?: string[];
1222
+ bloquear_cadastro?: boolean;
1223
+ bloquear_cadastro_novo?: boolean;
1224
+ obrigatoriedade_data_nascimento?: boolean;
1225
+ obrigatoriedade_termos_de_uso?: boolean;
1226
+ };
1227
+ institucionais?: {
1228
+ video?: {
1229
+ url?: string;
1230
+ altura?: string;
1231
+ largura?: string;
1232
+ titulo?: string;
1233
+ subtitulo?: string;
1234
+ };
1235
+ filiais?: {
1236
+ nome?: string;
1237
+ slug?: string;
1238
+ };
1239
+ };
1240
+ modulos?: Record<string, unknown>;
1241
+ layout?: {
1242
+ topo?: {
1243
+ mensagem?: string;
1244
+ };
1245
+ detalheDoProduto?: {
1246
+ larguraDaImagemDoProduto?: number;
1247
+ alturaDaImagemDoProduto?: number;
1248
+ exibirNomeDoProdutoNaMigalha?: boolean;
1249
+ exibirFichaTecnica?: boolean;
1250
+ especificacoesDentroDaFichaTecnica?: boolean;
1251
+ exibirAutores?: boolean;
1252
+ exibirCompartilhamento?: boolean;
1253
+ exibirFiltros?: boolean;
1254
+ mostrarMiniaturaDeModeloVariacao?: boolean;
1255
+ habitaEmbalagem?: boolean;
1256
+ exibirQuantidadeMultipla?: boolean;
1257
+ exibirVitrineAutor?: boolean;
1258
+ exibirVitrineCategoria?: boolean;
1259
+ ordenacaoProdutos?: string;
1260
+ quantidadeProdutos?: number;
1261
+ mensagemFrete?: string;
1262
+ };
1263
+ listagemDeProdutos?: {
1264
+ larguraDaImagemDoProduto?: number;
1265
+ alturaDaImagemDoProduto?: number;
1266
+ redimensionamentoDaImagemDoProduto?: boolean;
1267
+ manterProporcaoDaImagemDoProduto?: boolean;
1268
+ numeroDeItensExibidosPorPagina?: number;
1269
+ exibirValorDePor?: boolean;
1270
+ exibirProdutoSemImagem?: boolean;
1271
+ mostrarMiniaturaDeModeloVariacao?: boolean;
1272
+ textoProdutoVitrine?: string;
1273
+ exibirCodigoListagem?: boolean;
1274
+ exibirMarcaListagem?: boolean;
1275
+ exibirFiltroMarcas?: boolean;
1276
+ };
1277
+ menu?: {
1278
+ limiteDeItensExibidos?: number;
1279
+ niveisDeCategoria?: number;
1280
+ permitirEnvioDeIcones?: boolean;
1281
+ };
1282
+ preferencias?: {
1283
+ exibirPrecoComDescontoDeBoleto?: boolean;
1284
+ exibirParcelamentoDoProduto?: boolean;
1285
+ exibirPrecoParaProdutosSemEstoque?: boolean;
1286
+ exibirValorNaVariacaoDoProduto?: boolean;
1287
+ agruparProdutosSemelhantes?: boolean;
1288
+ qualidadeDasImagensMaxima?: boolean;
1289
+ exibirDetalhesDasVariacoes?: boolean;
1290
+ exibirBotaoDeVariacoes?: boolean;
1291
+ modoDeExibicaoDeVariacoes?: string;
1292
+ exibirNewsletter?: boolean;
1293
+ ativarAberturaModal?: boolean;
1294
+ exibirCodigoAutocomplete?: boolean;
1295
+ layoutFluido?: boolean;
1296
+ quantidadeColunasVitrines?: number;
1297
+ valorFreteGratis?: string;
1298
+ exibirFiltrosVitrines?: boolean;
1299
+ zoomImagensProdutos?: boolean;
1300
+ avaliacaoAnonima?: boolean;
1301
+ avaliacaoExibicao?: string;
1302
+ exibirVariacaoSemEstoque?: boolean;
1303
+ };
1304
+ televendas?: {
1305
+ vendedor_cadastro_cliente_login?: boolean;
1306
+ };
1307
+ };
1308
+ parametros?: {
1309
+ ocultarPrecoNaoLogado?: boolean;
1310
+ permitirCadastroTipoCliente?: boolean;
1311
+ bloquearAlteracaoCpf?: boolean;
1312
+ numeroMaximoUnidadeItens?: number;
1313
+ permiteAlterarCadastroHubDoDesenvolvedor?: boolean;
1314
+ siteRestritoMenores?: boolean;
1315
+ idadeMinima?: number;
1316
+ permiteCadastroMenores?: boolean;
1317
+ mensagemCadastroMenores?: string;
1318
+ } | Record<string, unknown>;
1319
+ manutencaoLoja?: {
1320
+ manutencao?: boolean;
1321
+ corPlanoDeFundo?: string;
1322
+ imagem?: GodeepImagemConfig;
1323
+ imagemLargura?: string;
1324
+ imagemAltura?: string;
1325
+ };
1326
+ descontos?: {
1327
+ progressivos?: unknown[];
1328
+ pagamento?: unknown[];
1329
+ };
1330
+ links?: {
1331
+ self?: string;
1332
+ href?: string;
1333
+ method?: string;
1334
+ };
1335
+ }
1336
+ export interface GodeepRedeSocial {
1337
+ nome?: string;
1338
+ icone?: string;
1339
+ link?: string;
1340
+ imagem?: string;
1341
+ }
1342
+ export interface GodeepRedesSociaisResponse {
1343
+ dados?: GodeepRedeSocial[];
1344
+ links?: {
1345
+ self?: string;
1346
+ href?: string;
1347
+ method?: string;
1348
+ };
1349
+ }
1350
+ export interface GodeepPagamentos {
1351
+ dados?: GodeepPagamentosDados[];
1352
+ links?: GodeepPagamentosLinks;
1353
+ }
1354
+ export interface GodeepPagamentosDados {
1355
+ id?: number;
1356
+ nome?: string;
1357
+ imagem?: string;
1358
+ imagemCustomizada?: string;
1359
+ imagemCompleta?: string;
1360
+ condicoes?: GodeepPagamentosCondicoes[];
1361
+ }
1362
+ export interface GodeepPagamentosCondicoes {
1363
+ id_condpagto?: number;
1364
+ id_meiopagto?: number;
1365
+ parcelas_condpagto?: number;
1366
+ porcentagem?: string;
1367
+ parcela_minima?: string;
1368
+ bcash_juros?: number;
1369
+ ativo?: string;
1370
+ tipo_variacao?: number;
1371
+ habilita_2cartoes?: number;
1372
+ enviar_total_com_juros?: number;
1373
+ nome_parcela?: string;
1374
+ codigo_exportacao?: string;
1375
+ somente_televendas?: string;
1376
+ visivel_cliente?: number;
1377
+ excluido?: string;
1378
+ }
1379
+ export interface GodeepPagamentosLinks {
1380
+ self?: string;
1381
+ href?: string;
1382
+ method?: string;
1383
+ }
1384
+ export interface GodeepCmsHome {
1385
+ component_id?: number;
1386
+ component_position?: string;
1387
+ localization?: string;
1388
+ order?: number;
1389
+ slug?: string;
1390
+ type?: string;
1391
+ type_component?: string;
1392
+ }
1393
+ export interface GodeepPaginaResponse {
1394
+ dados?: {
1395
+ conteudo?: string;
1396
+ };
1397
+ }
1398
+ export interface GodeepEsqueceuSenhaTokenResponse {
1399
+ dados?: {
1400
+ token?: string;
1401
+ emailCifrado?: string;
1402
+ };
1403
+ }
1404
+ export interface GodeepRedefinirSenhaResponse {
1405
+ mensagens?: string[];
1406
+ }
1407
+ export interface GodeepFavoritosResponse {
1408
+ dados?: GodeepFavoritosDados;
1409
+ }
1410
+ export interface GodeepFavoritosDados {
1411
+ produtos?: GodeepProdutoDetalheDado[];
1412
+ }
1413
+ export interface GodeepEnviarAvaliacaoRequest {
1414
+ produto_id?: number;
1415
+ nota?: number;
1416
+ nome?: string;
1417
+ ip?: string;
1418
+ email?: string;
1419
+ titulo?: string;
1420
+ comentario?: string;
1421
+ cidade?: string;
1422
+ data_avaliacao?: string;
1423
+ }
1424
+ export interface GodeepAvisemeResponse {
1425
+ message?: string;
1426
+ }
1427
+ export interface GodeepCamposCadastroResponse {
1428
+ pf?: GodeepCamposCadastroResponsePF[];
1429
+ pj?: GodeepCamposCadastroResponsePJ[];
1430
+ endereco?: GodeepCamposCadastroResponseEndereco[];
1431
+ }
1432
+ export interface GodeepCamposCadastroResponsePF {
1433
+ nome?: string;
1434
+ cpf?: string;
1435
+ }
1436
+ export interface GodeepCamposCadastroResponsePJ {
1437
+ razaoSocial?: string;
1438
+ nomeFantasia?: string;
1439
+ responsavel?: string;
1440
+ cnpj?: string;
1441
+ inscricaoEstadual?: string;
1442
+ }
1443
+ export interface GodeepCamposCadastroResponseEndereco {
1444
+ cidade_end?: string;
1445
+ bairro_end?: string;
1446
+ logradouro_end?: string;
1447
+ numero_end?: string;
1448
+ cep_end?: string;
1449
+ }