mdz-enum 1.5.93 → 1.5.94
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/platform/index.d.ts
CHANGED
|
@@ -133,8 +133,10 @@ export declare const Aplicativos: {
|
|
|
133
133
|
Shopee: number;
|
|
134
134
|
MagazineLuiza: number;
|
|
135
135
|
Tray: number;
|
|
136
|
+
TEFDestaxa: number;
|
|
137
|
+
GestaoContabil: number;
|
|
136
138
|
Nuvemshop: number;
|
|
137
|
-
description(val: number): "enum not found" | "TEF" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee" | "Modershop" | "Modershop Light" | "Modershop PDV" | "Marketplace" | "Loja Virtual" | "Sped" | "Cake ERP" | "Módulo Ótica" | "Nuvemshop";
|
|
139
|
+
description(val: number): "enum not found" | "TEF" | "Mercado Livre" | "Tray" | "Magazine Luiza" | "Amazon" | "Shopee" | "Modershop" | "Modershop Light" | "Modershop PDV" | "Marketplace" | "Loja Virtual" | "Sped" | "Cake ERP" | "Módulo Ótica" | "Nuvemshop" | "TEF Destaxa" | "Gestão Contábil";
|
|
138
140
|
};
|
|
139
141
|
export declare const IsDemonstracao: {
|
|
140
142
|
Demonstracao: boolean;
|
package/dist/platform/index.js
CHANGED
|
@@ -360,6 +360,8 @@ exports.Aplicativos = {
|
|
|
360
360
|
Shopee: 16,
|
|
361
361
|
MagazineLuiza: 17,
|
|
362
362
|
Tray: 18,
|
|
363
|
+
TEFDestaxa: 19,
|
|
364
|
+
GestaoContabil: 20,
|
|
363
365
|
Nuvemshop: 70,
|
|
364
366
|
description(val) {
|
|
365
367
|
switch (val) {
|
|
@@ -393,6 +395,10 @@ exports.Aplicativos = {
|
|
|
393
395
|
return 'Tray';
|
|
394
396
|
case this.Nuvemshop:
|
|
395
397
|
return 'Nuvemshop';
|
|
398
|
+
case this.TEFDestaxa:
|
|
399
|
+
return 'TEF Destaxa';
|
|
400
|
+
case this.GestaoContabil:
|
|
401
|
+
return 'Gestão Contábil';
|
|
396
402
|
default:
|
|
397
403
|
return 'enum not found';
|
|
398
404
|
}
|