mdz-enum 1.5.49 → 1.5.50
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
|
@@ -125,9 +125,9 @@ export declare const Aplicativos: {
|
|
|
125
125
|
MercadoLivre: number;
|
|
126
126
|
Sped: number;
|
|
127
127
|
TEF: number;
|
|
128
|
-
|
|
128
|
+
ModershopPDV: number;
|
|
129
129
|
CakeERP: number;
|
|
130
|
-
description(val: number): "enum not found" | "Mercado Livre" | "Modershop" | "Marketplace" | "Loja Virtual" | "Sped" | "TEF" | "Modershop
|
|
130
|
+
description(val: number): "enum not found" | "Mercado Livre" | "Modershop" | "Marketplace" | "Loja Virtual" | "Sped" | "TEF" | "Modershop PDV" | "Cake ERP";
|
|
131
131
|
};
|
|
132
132
|
export declare const IsDemonstracao: {
|
|
133
133
|
Demonstracao: boolean;
|
package/dist/platform/index.js
CHANGED
|
@@ -352,7 +352,7 @@ exports.Aplicativos = {
|
|
|
352
352
|
MercadoLivre: 7,
|
|
353
353
|
Sped: 8,
|
|
354
354
|
TEF: 9,
|
|
355
|
-
|
|
355
|
+
ModershopPDV: 10,
|
|
356
356
|
CakeERP: 13,
|
|
357
357
|
description(val) {
|
|
358
358
|
switch (val) {
|
|
@@ -368,8 +368,8 @@ exports.Aplicativos = {
|
|
|
368
368
|
return 'Sped';
|
|
369
369
|
case this.TEF:
|
|
370
370
|
return 'TEF';
|
|
371
|
-
case this.
|
|
372
|
-
return 'Modershop
|
|
371
|
+
case this.ModershopPDV:
|
|
372
|
+
return 'Modershop PDV';
|
|
373
373
|
case this.CakeERP:
|
|
374
374
|
return 'Cake ERP';
|
|
375
375
|
default:
|