mdz-enum 1.5.21 → 1.5.22

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.
Files changed (40) hide show
  1. package/README.MD +7 -7
  2. package/dist/checkout/index.d.ts +28 -28
  3. package/dist/checkout/index.js +83 -83
  4. package/dist/commercial/index.d.ts +227 -227
  5. package/dist/commercial/index.js +549 -549
  6. package/dist/common/index.d.ts +47 -47
  7. package/dist/common/index.js +137 -137
  8. package/dist/config/index.d.ts +166 -138
  9. package/dist/config/index.js +478 -395
  10. package/dist/finance/index.d.ts +164 -164
  11. package/dist/finance/index.js +425 -425
  12. package/dist/fiscal/index.d.ts +468 -468
  13. package/dist/fiscal/index.js +1165 -1165
  14. package/dist/functions.d.ts +11 -11
  15. package/dist/functions.js +74 -74
  16. package/dist/general/index.d.ts +257 -257
  17. package/dist/general/index.js +489 -489
  18. package/dist/index.d.ts +14 -14
  19. package/dist/index.js +208 -208
  20. package/dist/integration/index.d.ts +19 -19
  21. package/dist/integration/index.js +57 -57
  22. package/dist/logistics/index.d.ts +124 -124
  23. package/dist/logistics/index.js +359 -359
  24. package/dist/marketplace/templates/components/index.d.ts +158 -158
  25. package/dist/marketplace/templates/components/index.js +171 -171
  26. package/dist/marketplace/templates/elements/index.d.ts +32 -32
  27. package/dist/marketplace/templates/elements/index.js +35 -35
  28. package/dist/marketplace/templates/index.d.ts +292 -295
  29. package/dist/marketplace/templates/index.js +40 -40
  30. package/dist/marketplace/templates/pages/index.d.ts +140 -140
  31. package/dist/marketplace/templates/pages/index.js +310 -310
  32. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  33. package/dist/marketplace/templates/reference/index.js +18 -18
  34. package/dist/people/index.d.ts +36 -36
  35. package/dist/people/index.js +105 -105
  36. package/dist/platform/index.d.ts +189 -189
  37. package/dist/platform/index.js +548 -548
  38. package/dist/reports/index.d.ts +49 -49
  39. package/dist/reports/index.js +145 -145
  40. package/package.json +33 -32
@@ -1,138 +1,166 @@
1
- export declare const TipoPermissao: {
2
- Visualizacao: string;
3
- Funcao: string;
4
- description(val: string): "enum not found" | "Visualização" | "Função";
5
- };
6
- export declare const TipoDispositivo: {
7
- Cliente: string;
8
- Servidor: string;
9
- description(val: string): "enum not found" | "Cliente" | "Servidor";
10
- };
11
- export declare const TipoPeriferico: {
12
- ImpressoraA4: string;
13
- Balanca: string;
14
- Sat: string;
15
- ImpressoraComprovante: string;
16
- ImpressoraEtiqueta: string;
17
- POS: string;
18
- description(val: string): "enum not found" | "Impressora A4" | "Impressora Comprovante" | "Impressora Etiqueta" | "Balanca" | "Sat" | "POS";
19
- };
20
- export declare const ModeloPOS: {
21
- Vero: string;
22
- description(val: string): "enum not found" | "VERO";
23
- };
24
- export declare const ModeloSat: {
25
- Bematech: string;
26
- Gertec: string;
27
- Urano: string;
28
- Generica: string;
29
- Sweda: string;
30
- Tanca: string;
31
- Dimep: string;
32
- Nitere: string;
33
- Elgin: string;
34
- Care: string;
35
- Epson: string;
36
- ControlId: string;
37
- MFe: string;
38
- description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId" | "MFe";
39
- };
40
- export declare const VersaoLayoutSat: {
41
- Layout007: string;
42
- Layout008: string;
43
- description(val: string): "enum not found" | "Layout 0.07" | "Layout 0.08";
44
- };
45
- export declare const ModoFinalizacao: {
46
- ImprimirDireto: string;
47
- SolicitarModal: string;
48
- description(val: string): "enum not found" | "Imprimir Direto" | "Solicitar Compartilhamento";
49
- };
50
- export declare const TipoPrecoPadrao: {
51
- Varejo: string;
52
- Atacado: string;
53
- description(val: string): "enum not found" | "Varejo" | "Atacado";
54
- };
55
- export declare const TipoEtiqueta: {
56
- Produto: string;
57
- Pedido: string;
58
- description(val: string): "enum not found" | "Produto" | "Pedido";
59
- };
60
- export declare const ModeloEtiqueta: {
61
- Personalizada: string;
62
- PreDefinida: string;
63
- description(val: string): "enum not found" | "Pré Definida" | "Personalizada";
64
- };
65
- export declare const ParametroEtiquetaProduto: {
66
- Sku: string;
67
- Nome: string;
68
- Barra: string;
69
- Marca: string;
70
- Grade: string;
71
- Pv: string;
72
- Pa: string;
73
- Pvp: string;
74
- Pap: string;
75
- Nomel2: string;
76
- Gradel2: string;
77
- description(val: string): "enum not found" | "Sku" | "Descrição" | "Descrição Linha 2" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional" | "Descrição Variação Linha 2";
78
- };
79
- export declare const ModeloPimaco: {
80
- M6187: string;
81
- A4351: string;
82
- description(val: string): "enum not found" | "6187" | "A4351";
83
- };
84
- export declare const TipoImpressao: {
85
- Arquivo: string;
86
- Texto: string;
87
- description(val: string): "enum not found" | "Texto" | "Arquivo";
88
- };
89
- export declare const ModeloBalanca: {
90
- Filizola: string;
91
- Toledo: string;
92
- description(val: string): "enum not found" | "Filizola" | "Toledo";
93
- };
94
- export declare const TipoInformacaoBalanca: {
95
- Peso: string;
96
- PrecoTotal: string;
97
- description(val: string): "enum not found" | "Peso" | "Preço Total";
98
- };
99
- export declare const TipoAtualizacaoSocket: {
100
- Produto: string;
101
- TabelaPreco: string;
102
- Promocao: string;
103
- description(val: string): "enum not found" | "Produto" | "Tabela de Preço" | "Promoção";
104
- };
105
- export declare const TipoImportacao: {
106
- Produto: string;
107
- Pessoa: string;
108
- Estoque: string;
109
- CodigoBarras: string;
110
- Grade: string;
111
- description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade";
112
- };
113
- export declare const ModeloImportacao: {
114
- Importacao: string;
115
- Atualizacao: string;
116
- description(val: string): "enum not found" | "Importação" | "Atualização";
117
- };
118
- export declare const TipoArquivoExportacao: {
119
- Pdf: string;
120
- Excel: string;
121
- description(val: string): "enum not found" | "PDF" | "EXCEL";
122
- };
123
- export declare const OrigemAutorizacao: {
124
- Nota: string;
125
- Pedido: string;
126
- description(val: string): "enum not found" | "Nota" | "Pedido";
127
- };
128
- export declare const SituacaoAutorizacao: {
129
- Pendente: string;
130
- Aprovado: string;
131
- Rejeitado: string;
132
- description(val: string): "enum not found" | "Pendente" | "Aprovado" | "Rejeitado";
133
- };
134
- export declare const TipoOperacaoComprovanteTroca: {
135
- Imprimir: string;
136
- Solicitar: string;
137
- description(val: string): "enum not found" | "Sempre Imprimir" | "Solicitar Impressão";
138
- };
1
+ export declare const TipoPermissao: {
2
+ Visualizacao: string;
3
+ Funcao: string;
4
+ description(val: string): "enum not found" | "Visualização" | "Função";
5
+ };
6
+ export declare const TipoDispositivo: {
7
+ Cliente: string;
8
+ Servidor: string;
9
+ description(val: string): "enum not found" | "Cliente" | "Servidor";
10
+ };
11
+ export declare const TipoPeriferico: {
12
+ ImpressoraA4: string;
13
+ Balanca: string;
14
+ Sat: string;
15
+ ImpressoraComprovante: string;
16
+ ImpressoraEtiqueta: string;
17
+ POS: string;
18
+ description(val: string): "enum not found" | "Impressora A4" | "Impressora Comprovante" | "Impressora Etiqueta" | "Balanca" | "Sat" | "POS";
19
+ };
20
+ export declare const ModeloPOS: {
21
+ Vero: string;
22
+ description(val: string): "enum not found" | "VERO";
23
+ };
24
+ export declare const ModeloSat: {
25
+ Bematech: string;
26
+ Gertec: string;
27
+ Urano: string;
28
+ Generica: string;
29
+ Sweda: string;
30
+ Tanca: string;
31
+ Dimep: string;
32
+ Nitere: string;
33
+ Elgin: string;
34
+ Care: string;
35
+ Epson: string;
36
+ ControlId: string;
37
+ MFe: string;
38
+ description(val: string): "enum not found" | "Bematech" | "Gertec" | "Urano" | "Generica" | "Sweda" | "Tanca" | "Dimep" | "Nitere" | "Elgin" | "Care" | "Epson" | "ControlId" | "MFe";
39
+ };
40
+ export declare const VersaoLayoutSat: {
41
+ Layout007: string;
42
+ Layout008: string;
43
+ description(val: string): "enum not found" | "Layout 0.07" | "Layout 0.08";
44
+ };
45
+ export declare const ModoFinalizacao: {
46
+ ImprimirDireto: string;
47
+ SolicitarModal: string;
48
+ description(val: string): "enum not found" | "Imprimir Direto" | "Solicitar Compartilhamento";
49
+ };
50
+ export declare const TipoPrecoPadrao: {
51
+ Varejo: string;
52
+ Atacado: string;
53
+ description(val: string): "enum not found" | "Varejo" | "Atacado";
54
+ };
55
+ export declare const TipoEtiqueta: {
56
+ Produto: string;
57
+ Pedido: string;
58
+ description(val: string): "enum not found" | "Produto" | "Pedido";
59
+ };
60
+ export declare const ModeloEtiqueta: {
61
+ Personalizada: string;
62
+ PreDefinida: string;
63
+ description(val: string): "enum not found" | "Pré Definida" | "Personalizada";
64
+ };
65
+ export declare const ParametroEtiquetaProduto: {
66
+ Sku: string;
67
+ Nome: string;
68
+ Barra: string;
69
+ Marca: string;
70
+ Grade: string;
71
+ Pv: string;
72
+ Pa: string;
73
+ Pvp: string;
74
+ Pap: string;
75
+ Nomel2: string;
76
+ Gradel2: string;
77
+ description(val: string): "enum not found" | "Sku" | "Descrição" | "Descrição Linha 2" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional" | "Descrição Variação Linha 2";
78
+ };
79
+ export declare const ModeloPimaco: {
80
+ M6187: string;
81
+ A4351: string;
82
+ description(val: string): "enum not found" | "6187" | "A4351";
83
+ };
84
+ export declare const TipoImpressao: {
85
+ Arquivo: string;
86
+ Texto: string;
87
+ description(val: string): "enum not found" | "Texto" | "Arquivo";
88
+ };
89
+ export declare const ModeloBalanca: {
90
+ Filizola: string;
91
+ Toledo: string;
92
+ description(val: string): "enum not found" | "Filizola" | "Toledo";
93
+ };
94
+ export declare const TipoInformacaoBalanca: {
95
+ Peso: string;
96
+ PrecoTotal: string;
97
+ description(val: string): "enum not found" | "Peso" | "Preço Total";
98
+ };
99
+ export declare const TipoAtualizacaoSocket: {
100
+ Produto: string;
101
+ TabelaPreco: string;
102
+ Promocao: string;
103
+ description(val: string): "enum not found" | "Produto" | "Tabela de Preço" | "Promoção";
104
+ };
105
+ export declare const TipoImportacao: {
106
+ Produto: string;
107
+ Pessoa: string;
108
+ Estoque: string;
109
+ CodigoBarras: string;
110
+ Grade: string;
111
+ description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade";
112
+ };
113
+ export declare const ModeloImportacao: {
114
+ Importacao: string;
115
+ Atualizacao: string;
116
+ description(val: string): "enum not found" | "Importação" | "Atualização";
117
+ };
118
+ export declare const TipoArquivoExportacao: {
119
+ Pdf: string;
120
+ Excel: string;
121
+ description(val: string): "enum not found" | "PDF" | "EXCEL";
122
+ };
123
+ export declare const OrigemAutorizacao: {
124
+ Nota: string;
125
+ Pedido: string;
126
+ description(val: string): "enum not found" | "Nota" | "Pedido";
127
+ };
128
+ export declare const SituacaoAutorizacao: {
129
+ Pendente: string;
130
+ Aprovado: string;
131
+ Rejeitado: string;
132
+ description(val: string): "enum not found" | "Pendente" | "Aprovado" | "Rejeitado";
133
+ };
134
+ export declare const TipoOperacaoComprovanteTroca: {
135
+ Imprimir: string;
136
+ Solicitar: string;
137
+ description(val: string): "enum not found" | "Sempre Imprimir" | "Solicitar Impressão";
138
+ };
139
+ export declare const FusoHorario: {
140
+ UTC_M12: number;
141
+ UTC_M11: number;
142
+ UTC_M10: number;
143
+ UTC_M9: number;
144
+ UTC_M8: number;
145
+ UTC_M7: number;
146
+ UTC_M6: number;
147
+ UTC_M5: number;
148
+ UTC_M4: number;
149
+ UTC_M3: number;
150
+ UTC_M2: number;
151
+ UTC_M1: number;
152
+ UTC_0: number;
153
+ UTC_P1: number;
154
+ UTC_P2: number;
155
+ UTC_P3: number;
156
+ UTC_P4: number;
157
+ UTC_P5: number;
158
+ UTC_P6: number;
159
+ UTC_P7: number;
160
+ UTC_P8: number;
161
+ UTC_P9: number;
162
+ UTC_P10: number;
163
+ UTC_P11: number;
164
+ UTC_P12: number;
165
+ description(val: number): "UTC -12: Baker Island, Howland Island" | "UTC -11: Samoa Americana, Niue" | "UTC -10: Havaí, Polinésia Francesa" | "UTC -9: Alasca" | "UTC -8: Los Angeles, Vancouver, Tijuana" | "UTC -7: Denver, Calgary, Arizona" | "UTC -6: México, Chicago, Costa Rica" | "UTC -5: Nova York, Bogotá, Lima" | "UTC -4: Caracas, Santiago, La Paz" | "UTC -3: Brasília, Buenos Aires, Montevidéu" | "UTC -2: Ilha da Geórgia do Sul" | "UTC -1: Açores, Cabo Verde" | "UTC 0: Londres, Lisboa, Accra" | "UTC +1: Paris, Berlim, Roma, Madri" | "UTC +2: Atenas, Cairo, Joanesburgo" | "UTC +3: Moscou, Riad, Nairóbi" | "UTC +4: Dubai, Baku" | "UTC +5: Islamabad, Maldivas" | "UTC +6: Dhaka, Butão" | "UTC +7: Bancoc, Jacarta, Hanói" | "UTC +8: Pequim, Hong Kong, Perth" | "UTC +9: Tóquio, Seul" | "UTC +10: Sydney, Vladivostok" | "UTC +11: Ilhas Salomão, Nova Caledônia" | "UTC +12: Nova Zelândia, Fiji" | "Fuso horário não encontrado";
166
+ };