mdz-enum 1.5.83 → 1.5.84
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.
|
@@ -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
|
}
|