mdz-enum 1.5.63 → 1.5.64
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/README.MD +7 -7
- package/dist/checkout/index.d.ts +28 -28
- package/dist/checkout/index.js +83 -83
- package/dist/commercial/index.d.ts +228 -228
- package/dist/commercial/index.js +552 -552
- package/dist/common/index.d.ts +52 -52
- package/dist/common/index.js +151 -151
- package/dist/config/index.d.ts +167 -167
- package/dist/config/index.js +481 -481
- package/dist/finance/index.d.ts +170 -170
- package/dist/finance/index.js +442 -442
- package/dist/fiscal/index.d.ts +486 -486
- package/dist/fiscal/index.js +1207 -1207
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +264 -264
- package/dist/general/index.js +509 -509
- package/dist/index.d.ts +14 -14
- package/dist/index.js +217 -217
- package/dist/integration/index.d.ts +30 -30
- package/dist/integration/index.js +89 -89
- package/dist/logistics/index.d.ts +130 -130
- package/dist/logistics/index.js +376 -376
- package/dist/marketplace/templates/components/index.d.ts +277 -277
- package/dist/marketplace/templates/components/index.js +295 -295
- package/dist/marketplace/templates/elements/index.d.ts +32 -32
- package/dist/marketplace/templates/elements/index.js +35 -35
- package/dist/marketplace/templates/index.d.ts +401 -401
- package/dist/marketplace/templates/index.js +44 -44
- package/dist/marketplace/templates/pages/index.d.ts +140 -140
- package/dist/marketplace/templates/pages/index.js +310 -310
- package/dist/marketplace/templates/reference/index.d.ts +24 -24
- package/dist/marketplace/templates/reference/index.js +26 -26
- package/dist/people/index.d.ts +42 -42
- package/dist/people/index.js +122 -122
- package/dist/platform/index.d.ts +196 -196
- package/dist/platform/index.js +567 -567
- package/dist/reports/index.d.ts +55 -55
- package/dist/reports/index.js +162 -162
- package/package.json +33 -33
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.APPEARANCE_ELEMENTS = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = exports.APPEARANCE_REFERENCE = void 0;
|
|
7
|
-
const reference_1 = __importDefault(require("./reference"));
|
|
8
|
-
exports.APPEARANCE_REFERENCE = reference_1.default;
|
|
9
|
-
const pages_1 = require("./pages");
|
|
10
|
-
const components_1 = require("./components");
|
|
11
|
-
const elements_1 = require("./elements");
|
|
12
|
-
/**
|
|
13
|
-
* Constante de configuração de aparência das páginas (blocks)
|
|
14
|
-
*/
|
|
15
|
-
const APPEARANCE_PAGES = {
|
|
16
|
-
HOME_PAGE: pages_1.HOME_PAGE,
|
|
17
|
-
PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
|
|
18
|
-
};
|
|
19
|
-
exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
|
|
20
|
-
/**
|
|
21
|
-
* Constante de configuração de aparência dos componentes (themes)
|
|
22
|
-
*/
|
|
23
|
-
const APPEARANCE_COMPONENTS = {
|
|
24
|
-
PRODUCT_CARD: components_1.PRODUCT_CARD,
|
|
25
|
-
BUTTON: components_1.BUTTON,
|
|
26
|
-
BUY_BUTTON: components_1.BUY_BUTTON,
|
|
27
|
-
FOOTER: components_1.FOOTER,
|
|
28
|
-
HEADER: components_1.HEADER,
|
|
29
|
-
SUBMENU: components_1.SUBMENU,
|
|
30
|
-
CART_BUTTON: components_1.CART_BUTTON,
|
|
31
|
-
COMBINAR_PAYMENT: components_1.COMBINAR_PAYMENT,
|
|
32
|
-
COMBINAR_ENTREGA: components_1.COMBINAR_ENTREGA,
|
|
33
|
-
ENVIAR_PEDIDO_WPP: components_1.ENVIAR_PEDIDO_WPP,
|
|
34
|
-
BANNERS_ASPECT_RATIO: components_1.BANNERS_ASPECT_RATIO,
|
|
35
|
-
HOME_PAGE_HIGHLIGHT: components_1.HOME_PAGE_HIGHLIGHT,
|
|
36
|
-
};
|
|
37
|
-
exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
|
|
38
|
-
/**
|
|
39
|
-
* Constante de configuração de referencia para elementos gerais (any)
|
|
40
|
-
*/
|
|
41
|
-
const APPEARANCE_ELEMENTS = {
|
|
42
|
-
LOGO: elements_1.LOGO,
|
|
43
|
-
};
|
|
44
|
-
exports.APPEARANCE_ELEMENTS = APPEARANCE_ELEMENTS;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.APPEARANCE_ELEMENTS = exports.APPEARANCE_COMPONENTS = exports.APPEARANCE_PAGES = exports.APPEARANCE_REFERENCE = void 0;
|
|
7
|
+
const reference_1 = __importDefault(require("./reference"));
|
|
8
|
+
exports.APPEARANCE_REFERENCE = reference_1.default;
|
|
9
|
+
const pages_1 = require("./pages");
|
|
10
|
+
const components_1 = require("./components");
|
|
11
|
+
const elements_1 = require("./elements");
|
|
12
|
+
/**
|
|
13
|
+
* Constante de configuração de aparência das páginas (blocks)
|
|
14
|
+
*/
|
|
15
|
+
const APPEARANCE_PAGES = {
|
|
16
|
+
HOME_PAGE: pages_1.HOME_PAGE,
|
|
17
|
+
PRODUCT_PAGE: pages_1.PRODUCT_PAGE,
|
|
18
|
+
};
|
|
19
|
+
exports.APPEARANCE_PAGES = APPEARANCE_PAGES;
|
|
20
|
+
/**
|
|
21
|
+
* Constante de configuração de aparência dos componentes (themes)
|
|
22
|
+
*/
|
|
23
|
+
const APPEARANCE_COMPONENTS = {
|
|
24
|
+
PRODUCT_CARD: components_1.PRODUCT_CARD,
|
|
25
|
+
BUTTON: components_1.BUTTON,
|
|
26
|
+
BUY_BUTTON: components_1.BUY_BUTTON,
|
|
27
|
+
FOOTER: components_1.FOOTER,
|
|
28
|
+
HEADER: components_1.HEADER,
|
|
29
|
+
SUBMENU: components_1.SUBMENU,
|
|
30
|
+
CART_BUTTON: components_1.CART_BUTTON,
|
|
31
|
+
COMBINAR_PAYMENT: components_1.COMBINAR_PAYMENT,
|
|
32
|
+
COMBINAR_ENTREGA: components_1.COMBINAR_ENTREGA,
|
|
33
|
+
ENVIAR_PEDIDO_WPP: components_1.ENVIAR_PEDIDO_WPP,
|
|
34
|
+
BANNERS_ASPECT_RATIO: components_1.BANNERS_ASPECT_RATIO,
|
|
35
|
+
HOME_PAGE_HIGHLIGHT: components_1.HOME_PAGE_HIGHLIGHT,
|
|
36
|
+
};
|
|
37
|
+
exports.APPEARANCE_COMPONENTS = APPEARANCE_COMPONENTS;
|
|
38
|
+
/**
|
|
39
|
+
* Constante de configuração de referencia para elementos gerais (any)
|
|
40
|
+
*/
|
|
41
|
+
const APPEARANCE_ELEMENTS = {
|
|
42
|
+
LOGO: elements_1.LOGO,
|
|
43
|
+
};
|
|
44
|
+
exports.APPEARANCE_ELEMENTS = APPEARANCE_ELEMENTS;
|
|
@@ -1,140 +1,140 @@
|
|
|
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
|
-
BLOCK_IDS: {
|
|
57
|
-
BANNERS: number;
|
|
58
|
-
CATEGORIES: number;
|
|
59
|
-
PROMOTIONS: number;
|
|
60
|
-
LATEST: number;
|
|
61
|
-
BEST_SELLERS: number;
|
|
62
|
-
MOST_VIEWED: number;
|
|
63
|
-
SELECTED_PRODUCTS_ONE: number;
|
|
64
|
-
CUSTOM_BANNERS: number;
|
|
65
|
-
SELECTED_BRANDS: number;
|
|
66
|
-
SELECTED_PRODUCTS_TWO: number;
|
|
67
|
-
FEATURED_PRODUCTS: number;
|
|
68
|
-
};
|
|
69
|
-
BLOCKS: ({
|
|
70
|
-
id: number;
|
|
71
|
-
name: string;
|
|
72
|
-
icon: {
|
|
73
|
-
type: string;
|
|
74
|
-
size: number;
|
|
75
|
-
};
|
|
76
|
-
enabled: boolean;
|
|
77
|
-
immutable: boolean;
|
|
78
|
-
configurable: boolean;
|
|
79
|
-
badge: null;
|
|
80
|
-
} | {
|
|
81
|
-
id: number;
|
|
82
|
-
name: string;
|
|
83
|
-
icon: {
|
|
84
|
-
type: string;
|
|
85
|
-
size: number;
|
|
86
|
-
};
|
|
87
|
-
enabled: boolean;
|
|
88
|
-
immutable: boolean;
|
|
89
|
-
configurable: boolean;
|
|
90
|
-
badge: {
|
|
91
|
-
color: string;
|
|
92
|
-
text: string;
|
|
93
|
-
};
|
|
94
|
-
})[];
|
|
95
|
-
};
|
|
96
|
-
/**
|
|
97
|
-
* Referencia da aparencia na pagina de produto
|
|
98
|
-
*/
|
|
99
|
-
declare const PRODUCT_PAGE: {
|
|
100
|
-
ID: number;
|
|
101
|
-
/**
|
|
102
|
-
* Blocos disponiveis na pagina
|
|
103
|
-
*/
|
|
104
|
-
ORDER: {
|
|
105
|
-
KEY: string;
|
|
106
|
-
DEFAULT: string;
|
|
107
|
-
};
|
|
108
|
-
BLOCKS_IDS: {
|
|
109
|
-
DETAILS: number;
|
|
110
|
-
DESCRIPTION: number;
|
|
111
|
-
WARRANTY: number;
|
|
112
|
-
RELATED: number;
|
|
113
|
-
BANNERS: number;
|
|
114
|
-
};
|
|
115
|
-
BLOCKS: ({
|
|
116
|
-
id: number;
|
|
117
|
-
name: string;
|
|
118
|
-
icon: {
|
|
119
|
-
type: string;
|
|
120
|
-
size: number;
|
|
121
|
-
};
|
|
122
|
-
enabled: boolean;
|
|
123
|
-
immutable: boolean;
|
|
124
|
-
badge: null;
|
|
125
|
-
} | {
|
|
126
|
-
id: number;
|
|
127
|
-
name: string;
|
|
128
|
-
icon: {
|
|
129
|
-
type: string;
|
|
130
|
-
size: number;
|
|
131
|
-
};
|
|
132
|
-
enabled: boolean;
|
|
133
|
-
immutable: boolean;
|
|
134
|
-
badge: {
|
|
135
|
-
color: string;
|
|
136
|
-
text: string;
|
|
137
|
-
};
|
|
138
|
-
})[];
|
|
139
|
-
};
|
|
140
|
-
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
|
+
BLOCK_IDS: {
|
|
57
|
+
BANNERS: number;
|
|
58
|
+
CATEGORIES: number;
|
|
59
|
+
PROMOTIONS: number;
|
|
60
|
+
LATEST: number;
|
|
61
|
+
BEST_SELLERS: number;
|
|
62
|
+
MOST_VIEWED: number;
|
|
63
|
+
SELECTED_PRODUCTS_ONE: number;
|
|
64
|
+
CUSTOM_BANNERS: number;
|
|
65
|
+
SELECTED_BRANDS: number;
|
|
66
|
+
SELECTED_PRODUCTS_TWO: number;
|
|
67
|
+
FEATURED_PRODUCTS: number;
|
|
68
|
+
};
|
|
69
|
+
BLOCKS: ({
|
|
70
|
+
id: number;
|
|
71
|
+
name: string;
|
|
72
|
+
icon: {
|
|
73
|
+
type: string;
|
|
74
|
+
size: number;
|
|
75
|
+
};
|
|
76
|
+
enabled: boolean;
|
|
77
|
+
immutable: boolean;
|
|
78
|
+
configurable: boolean;
|
|
79
|
+
badge: null;
|
|
80
|
+
} | {
|
|
81
|
+
id: number;
|
|
82
|
+
name: string;
|
|
83
|
+
icon: {
|
|
84
|
+
type: string;
|
|
85
|
+
size: number;
|
|
86
|
+
};
|
|
87
|
+
enabled: boolean;
|
|
88
|
+
immutable: boolean;
|
|
89
|
+
configurable: boolean;
|
|
90
|
+
badge: {
|
|
91
|
+
color: string;
|
|
92
|
+
text: string;
|
|
93
|
+
};
|
|
94
|
+
})[];
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Referencia da aparencia na pagina de produto
|
|
98
|
+
*/
|
|
99
|
+
declare const PRODUCT_PAGE: {
|
|
100
|
+
ID: number;
|
|
101
|
+
/**
|
|
102
|
+
* Blocos disponiveis na pagina
|
|
103
|
+
*/
|
|
104
|
+
ORDER: {
|
|
105
|
+
KEY: string;
|
|
106
|
+
DEFAULT: string;
|
|
107
|
+
};
|
|
108
|
+
BLOCKS_IDS: {
|
|
109
|
+
DETAILS: number;
|
|
110
|
+
DESCRIPTION: number;
|
|
111
|
+
WARRANTY: number;
|
|
112
|
+
RELATED: number;
|
|
113
|
+
BANNERS: number;
|
|
114
|
+
};
|
|
115
|
+
BLOCKS: ({
|
|
116
|
+
id: number;
|
|
117
|
+
name: string;
|
|
118
|
+
icon: {
|
|
119
|
+
type: string;
|
|
120
|
+
size: number;
|
|
121
|
+
};
|
|
122
|
+
enabled: boolean;
|
|
123
|
+
immutable: boolean;
|
|
124
|
+
badge: null;
|
|
125
|
+
} | {
|
|
126
|
+
id: number;
|
|
127
|
+
name: string;
|
|
128
|
+
icon: {
|
|
129
|
+
type: string;
|
|
130
|
+
size: number;
|
|
131
|
+
};
|
|
132
|
+
enabled: boolean;
|
|
133
|
+
immutable: boolean;
|
|
134
|
+
badge: {
|
|
135
|
+
color: string;
|
|
136
|
+
text: string;
|
|
137
|
+
};
|
|
138
|
+
})[];
|
|
139
|
+
};
|
|
140
|
+
export { HOME_PAGE, PRODUCT_PAGE };
|