mdz-enum 1.1.95 → 1.1.97
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/fiscal/index.d.ts +1 -5
- package/dist/fiscal/index.js +2 -14
- package/dist/logistics/index.js +12 -12
- package/package.json +1 -1
package/dist/fiscal/index.d.ts
CHANGED
|
@@ -298,9 +298,5 @@ export declare const PerfilSped: {
|
|
|
298
298
|
export declare const TipoAtividade: {
|
|
299
299
|
IndustrialEquiparadoIndustrial: string;
|
|
300
300
|
Outros: string;
|
|
301
|
-
|
|
302
|
-
AtivComercio: string;
|
|
303
|
-
AtivFinanceira: string;
|
|
304
|
-
AtivImobiliaria: string;
|
|
305
|
-
description(val: string): "enum not found" | "Outros" | "Industrial ou equiparado a industrial" | "Prestador de Serviços" | "Atividade de Comércio" | "Atividade Financeira" | "Atividade Imobiliária";
|
|
301
|
+
description(val: string): "enum not found" | "Outros" | "Industrial ou equiparado a industrial";
|
|
306
302
|
};
|
package/dist/fiscal/index.js
CHANGED
|
@@ -878,26 +878,14 @@ exports.PerfilSped = {
|
|
|
878
878
|
},
|
|
879
879
|
};
|
|
880
880
|
exports.TipoAtividade = {
|
|
881
|
-
IndustrialEquiparadoIndustrial: '
|
|
882
|
-
Outros: '
|
|
883
|
-
PrestadorServicos: '3',
|
|
884
|
-
AtivComercio: '4',
|
|
885
|
-
AtivFinanceira: '5',
|
|
886
|
-
AtivImobiliaria: '6',
|
|
881
|
+
IndustrialEquiparadoIndustrial: '0',
|
|
882
|
+
Outros: '1',
|
|
887
883
|
description(val) {
|
|
888
884
|
switch (val) {
|
|
889
885
|
case this.IndustrialEquiparadoIndustrial:
|
|
890
886
|
return 'Industrial ou equiparado a industrial';
|
|
891
887
|
case this.Outros:
|
|
892
888
|
return 'Outros';
|
|
893
|
-
case this.PrestadorServicos:
|
|
894
|
-
return 'Prestador de Serviços';
|
|
895
|
-
case this.AtivComercio:
|
|
896
|
-
return 'Atividade de Comércio';
|
|
897
|
-
case this.AtivFinanceira:
|
|
898
|
-
return 'Atividade Financeira';
|
|
899
|
-
case this.AtivImobiliaria:
|
|
900
|
-
return 'Atividade Imobiliária';
|
|
901
889
|
default:
|
|
902
890
|
return 'enum not found';
|
|
903
891
|
}
|
package/dist/logistics/index.js
CHANGED
|
@@ -173,18 +173,18 @@ exports.TipoQuantidadeInfoNutricional = {
|
|
|
173
173
|
},
|
|
174
174
|
};
|
|
175
175
|
exports.TipoItem = {
|
|
176
|
-
MercadoriaRevenda: '
|
|
177
|
-
MateriaPrima: '
|
|
178
|
-
Embalagem: '
|
|
179
|
-
ProdutoProcesso: '
|
|
180
|
-
ProdutoAcabado: '
|
|
181
|
-
Subproduto: '
|
|
182
|
-
ProdutoIntermediario: '
|
|
183
|
-
MaterialUsoConsumo: '
|
|
184
|
-
AtivoImobilizado: '
|
|
185
|
-
Servicos: '
|
|
186
|
-
OutrosInsumos: '
|
|
187
|
-
Outras: '
|
|
176
|
+
MercadoriaRevenda: '00',
|
|
177
|
+
MateriaPrima: '01',
|
|
178
|
+
Embalagem: '02',
|
|
179
|
+
ProdutoProcesso: '03',
|
|
180
|
+
ProdutoAcabado: '04',
|
|
181
|
+
Subproduto: '05',
|
|
182
|
+
ProdutoIntermediario: '06',
|
|
183
|
+
MaterialUsoConsumo: '07',
|
|
184
|
+
AtivoImobilizado: '08',
|
|
185
|
+
Servicos: '09',
|
|
186
|
+
OutrosInsumos: '10',
|
|
187
|
+
Outras: '99',
|
|
188
188
|
description(val) {
|
|
189
189
|
switch (val) {
|
|
190
190
|
case this.MercadoriaRevenda:
|