mdz-enum 1.5.2 → 1.5.4

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 (37) hide show
  1. package/dist/checkout/index.d.ts +28 -28
  2. package/dist/checkout/index.js +83 -83
  3. package/dist/commercial/index.d.ts +221 -221
  4. package/dist/commercial/index.js +532 -532
  5. package/dist/common/index.d.ts +47 -47
  6. package/dist/common/index.js +137 -137
  7. package/dist/config/index.d.ts +137 -137
  8. package/dist/config/index.js +392 -392
  9. package/dist/finance/index.d.ts +164 -164
  10. package/dist/finance/index.js +425 -425
  11. package/dist/fiscal/index.d.ts +461 -461
  12. package/dist/fiscal/index.js +1156 -1156
  13. package/dist/functions.d.ts +11 -11
  14. package/dist/functions.js +74 -74
  15. package/dist/general/index.d.ts +243 -243
  16. package/dist/general/index.js +449 -449
  17. package/dist/index.d.ts +14 -14
  18. package/dist/index.js +203 -201
  19. package/dist/integration/index.d.ts +19 -19
  20. package/dist/integration/index.js +57 -57
  21. package/dist/logistics/index.d.ts +124 -119
  22. package/dist/logistics/index.js +359 -345
  23. package/dist/marketplace/templates/components/index.d.ts +189 -189
  24. package/dist/marketplace/templates/components/index.js +201 -201
  25. package/dist/marketplace/templates/index.d.ts +275 -270
  26. package/dist/marketplace/templates/index.js +31 -31
  27. package/dist/marketplace/templates/pages/index.d.ts +120 -120
  28. package/dist/marketplace/templates/pages/index.js +290 -290
  29. package/dist/marketplace/templates/reference/index.d.ts +16 -16
  30. package/dist/marketplace/templates/reference/index.js +18 -18
  31. package/dist/people/index.d.ts +35 -35
  32. package/dist/people/index.js +102 -102
  33. package/dist/platform/index.d.ts +184 -177
  34. package/dist/platform/index.js +534 -514
  35. package/dist/reports/index.d.ts +46 -46
  36. package/dist/reports/index.js +136 -136
  37. package/package.json +1 -1
@@ -1,120 +1,120 @@
1
- /** Referencia da aparencia na pagina inicial */
2
- declare const HOME_PAGE: {
3
- ID: number;
4
- /**
5
- * Blocos disponiveis na pagina
6
- */
7
- ORDER: {
8
- KEY: string;
9
- DEFAULT: string;
10
- };
11
- HOME_PAGE_CATEGORY: {
12
- KEY: string;
13
- DEFAULT: string;
14
- };
15
- HOME_PAGE_CATEGORY_TITLE: {
16
- KEY: string;
17
- DEFAULT: string;
18
- };
19
- HOME_PAGE_BRANDS: {
20
- KEY: string;
21
- DEFAULT: string;
22
- };
23
- HOME_PAGE_BRANDS_TITLE: {
24
- KEY: string;
25
- DEFAULT: string;
26
- };
27
- /**
28
- * Produtos selecionados (1)
29
- */
30
- HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
- KEY: string;
32
- DEFAULT: string;
33
- };
34
- HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
35
- KEY: string;
36
- DEFAULT: string;
37
- };
38
- /**
39
- * Produtos selecionados (2)
40
- */
41
- HOME_PAGE_SELECTED_PRODUCTS_TWO: {
42
- KEY: string;
43
- DEFAULT: string;
44
- };
45
- HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
46
- KEY: string;
47
- DEFAULT: string;
48
- };
49
- /**
50
- * Produtos em destaque
51
- */
52
- HOME_PAGE_FEATURED_PRODUCTS: {
53
- KEY: string;
54
- DEFAULT: string;
55
- };
56
- BLOCKS: ({
57
- id: number;
58
- name: string;
59
- icon: {
60
- type: string;
61
- size: number;
62
- };
63
- enabled: boolean;
64
- immutable: boolean;
65
- configurable: boolean;
66
- badge: null;
67
- } | {
68
- id: number;
69
- name: string;
70
- icon: {
71
- type: string;
72
- size: number;
73
- };
74
- enabled: boolean;
75
- immutable: boolean;
76
- configurable: boolean;
77
- badge: {
78
- color: string;
79
- text: string;
80
- };
81
- })[];
82
- };
83
- /**
84
- * Referencia da aparencia na pagina de produto
85
- */
86
- declare const PRODUCT_PAGE: {
87
- ID: number;
88
- /**
89
- * Blocos disponiveis na pagina
90
- */
91
- ORDER: {
92
- KEY: string;
93
- DEFAULT: string;
94
- };
95
- BLOCKS: ({
96
- id: number;
97
- name: string;
98
- icon: {
99
- type: string;
100
- size: number;
101
- };
102
- enabled: boolean;
103
- immutable: boolean;
104
- badge: null;
105
- } | {
106
- id: number;
107
- name: string;
108
- icon: {
109
- type: string;
110
- size: number;
111
- };
112
- enabled: boolean;
113
- immutable: boolean;
114
- badge: {
115
- color: string;
116
- text: string;
117
- };
118
- })[];
119
- };
120
- export { HOME_PAGE, PRODUCT_PAGE };
1
+ /** Referencia da aparencia na pagina inicial */
2
+ declare const HOME_PAGE: {
3
+ ID: number;
4
+ /**
5
+ * Blocos disponiveis na pagina
6
+ */
7
+ ORDER: {
8
+ KEY: string;
9
+ DEFAULT: string;
10
+ };
11
+ HOME_PAGE_CATEGORY: {
12
+ KEY: string;
13
+ DEFAULT: string;
14
+ };
15
+ HOME_PAGE_CATEGORY_TITLE: {
16
+ KEY: string;
17
+ DEFAULT: string;
18
+ };
19
+ HOME_PAGE_BRANDS: {
20
+ KEY: string;
21
+ DEFAULT: string;
22
+ };
23
+ HOME_PAGE_BRANDS_TITLE: {
24
+ KEY: string;
25
+ DEFAULT: string;
26
+ };
27
+ /**
28
+ * Produtos selecionados (1)
29
+ */
30
+ HOME_PAGE_SELECTED_PRODUCTS_ONE: {
31
+ KEY: string;
32
+ DEFAULT: string;
33
+ };
34
+ HOME_PAGE_SELECTED_PRODUCTS_ONE_TITLE: {
35
+ KEY: string;
36
+ DEFAULT: string;
37
+ };
38
+ /**
39
+ * Produtos selecionados (2)
40
+ */
41
+ HOME_PAGE_SELECTED_PRODUCTS_TWO: {
42
+ KEY: string;
43
+ DEFAULT: string;
44
+ };
45
+ HOME_PAGE_SELECTED_PRODUCTS_TWO_TITLE: {
46
+ KEY: string;
47
+ DEFAULT: string;
48
+ };
49
+ /**
50
+ * Produtos em destaque
51
+ */
52
+ HOME_PAGE_FEATURED_PRODUCTS: {
53
+ KEY: string;
54
+ DEFAULT: string;
55
+ };
56
+ BLOCKS: ({
57
+ id: number;
58
+ name: string;
59
+ icon: {
60
+ type: string;
61
+ size: number;
62
+ };
63
+ enabled: boolean;
64
+ immutable: boolean;
65
+ configurable: boolean;
66
+ badge: null;
67
+ } | {
68
+ id: number;
69
+ name: string;
70
+ icon: {
71
+ type: string;
72
+ size: number;
73
+ };
74
+ enabled: boolean;
75
+ immutable: boolean;
76
+ configurable: boolean;
77
+ badge: {
78
+ color: string;
79
+ text: string;
80
+ };
81
+ })[];
82
+ };
83
+ /**
84
+ * Referencia da aparencia na pagina de produto
85
+ */
86
+ declare const PRODUCT_PAGE: {
87
+ ID: number;
88
+ /**
89
+ * Blocos disponiveis na pagina
90
+ */
91
+ ORDER: {
92
+ KEY: string;
93
+ DEFAULT: string;
94
+ };
95
+ BLOCKS: ({
96
+ id: number;
97
+ name: string;
98
+ icon: {
99
+ type: string;
100
+ size: number;
101
+ };
102
+ enabled: boolean;
103
+ immutable: boolean;
104
+ badge: null;
105
+ } | {
106
+ id: number;
107
+ name: string;
108
+ icon: {
109
+ type: string;
110
+ size: number;
111
+ };
112
+ enabled: boolean;
113
+ immutable: boolean;
114
+ badge: {
115
+ color: string;
116
+ text: string;
117
+ };
118
+ })[];
119
+ };
120
+ export { HOME_PAGE, PRODUCT_PAGE };