mdz-enum 1.5.83 → 1.5.85
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/config/index.d.ts
CHANGED
|
@@ -117,7 +117,8 @@ export declare const TipoImportacao: {
|
|
|
117
117
|
CodigoBarras: string;
|
|
118
118
|
Grade: string;
|
|
119
119
|
DocumentoFinanceiro: string;
|
|
120
|
-
|
|
120
|
+
PrecoProdutos: string;
|
|
121
|
+
description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade" | "Documento Financeiro" | "Preço de Produtos";
|
|
121
122
|
};
|
|
122
123
|
export declare const ModeloImportacao: {
|
|
123
124
|
Importacao: string;
|
package/dist/config/index.js
CHANGED
|
@@ -327,6 +327,7 @@ exports.TipoImportacao = {
|
|
|
327
327
|
CodigoBarras: '4',
|
|
328
328
|
Grade: '5',
|
|
329
329
|
DocumentoFinanceiro: '6',
|
|
330
|
+
PrecoProdutos: '7',
|
|
330
331
|
description(val) {
|
|
331
332
|
switch (val) {
|
|
332
333
|
case this.Produto:
|
|
@@ -341,6 +342,8 @@ exports.TipoImportacao = {
|
|
|
341
342
|
return 'Grade';
|
|
342
343
|
case this.DocumentoFinanceiro:
|
|
343
344
|
return 'Documento Financeiro';
|
|
345
|
+
case this.PrecoProdutos:
|
|
346
|
+
return 'Preço de Produtos';
|
|
344
347
|
default:
|
|
345
348
|
return 'enum not found';
|
|
346
349
|
}
|
|
@@ -59,8 +59,8 @@ exports.TipoPagamentoSafeTwoPay = {
|
|
|
59
59
|
},
|
|
60
60
|
};
|
|
61
61
|
exports.TipoProcessamentoPlugFourMarket = {
|
|
62
|
-
CadastroProduto: 1,
|
|
63
|
-
AtualizacaoEstoque: 2,
|
|
62
|
+
CadastroProduto: 1,
|
|
63
|
+
AtualizacaoEstoque: 2,
|
|
64
64
|
ReceberPedido: 4,
|
|
65
65
|
ParearCategorias: 9,
|
|
66
66
|
description(val) {
|
|
@@ -30,7 +30,7 @@ const HOME_PAGE = {
|
|
|
30
30
|
},
|
|
31
31
|
HOME_PAGE_CATEGORY_BORDER: {
|
|
32
32
|
KEY: 'home_page_categories_border',
|
|
33
|
-
DEFAULT: 'none',
|
|
33
|
+
DEFAULT: 'none',
|
|
34
34
|
VALUES: ['none', 'solid'],
|
|
35
35
|
},
|
|
36
36
|
HOME_PAGE_BRANDS: {
|
|
@@ -51,7 +51,7 @@ const HOME_PAGE = {
|
|
|
51
51
|
},
|
|
52
52
|
HOME_PAGE_BRANDS_BORDER: {
|
|
53
53
|
KEY: 'home_page_brands_border',
|
|
54
|
-
DEFAULT: 'none',
|
|
54
|
+
DEFAULT: 'none',
|
|
55
55
|
VALUES: ['none', 'solid'],
|
|
56
56
|
},
|
|
57
57
|
/**
|
package/dist/platform/index.d.ts
CHANGED
|
@@ -133,7 +133,8 @@ export declare const Aplicativos: {
|
|
|
133
133
|
Shopee: number;
|
|
134
134
|
MagazineLuiza: number;
|
|
135
135
|
Tray: number;
|
|
136
|
-
|
|
136
|
+
Nuvemshop: number;
|
|
137
|
+
description(val: number): "enum not found" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee" | "Modershop" | "Modershop Light" | "Modershop PDV" | "Marketplace" | "Loja Virtual" | "Sped" | "TEF" | "Cake ERP" | "Módulo Ótica" | "Nuvemshop";
|
|
137
138
|
};
|
|
138
139
|
export declare const IsDemonstracao: {
|
|
139
140
|
Demonstracao: boolean;
|
package/dist/platform/index.js
CHANGED
|
@@ -360,6 +360,7 @@ exports.Aplicativos = {
|
|
|
360
360
|
Shopee: 16,
|
|
361
361
|
MagazineLuiza: 17,
|
|
362
362
|
Tray: 18,
|
|
363
|
+
Nuvemshop: 70,
|
|
363
364
|
description(val) {
|
|
364
365
|
switch (val) {
|
|
365
366
|
case this.Modershop:
|
|
@@ -390,6 +391,8 @@ exports.Aplicativos = {
|
|
|
390
391
|
return 'Magazine Luiza';
|
|
391
392
|
case this.Tray:
|
|
392
393
|
return 'Tray';
|
|
394
|
+
case this.Nuvemshop:
|
|
395
|
+
return 'Nuvemshop';
|
|
393
396
|
default:
|
|
394
397
|
return 'enum not found';
|
|
395
398
|
}
|