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.
- 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 +227 -227
- package/dist/commercial/index.js +549 -549
- package/dist/common/index.d.ts +47 -47
- package/dist/common/index.js +137 -137
- package/dist/config/index.d.ts +166 -138
- package/dist/config/index.js +478 -395
- package/dist/finance/index.d.ts +164 -164
- package/dist/finance/index.js +425 -425
- package/dist/fiscal/index.d.ts +468 -468
- package/dist/fiscal/index.js +1165 -1165
- package/dist/functions.d.ts +11 -11
- package/dist/functions.js +74 -74
- package/dist/general/index.d.ts +257 -257
- package/dist/general/index.js +489 -489
- package/dist/index.d.ts +14 -14
- package/dist/index.js +208 -208
- package/dist/integration/index.d.ts +19 -19
- package/dist/integration/index.js +57 -57
- package/dist/logistics/index.d.ts +124 -124
- package/dist/logistics/index.js +359 -359
- package/dist/marketplace/templates/components/index.d.ts +158 -158
- package/dist/marketplace/templates/components/index.js +171 -171
- 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 +292 -295
- package/dist/marketplace/templates/index.js +40 -40
- 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 +16 -16
- package/dist/marketplace/templates/reference/index.js +18 -18
- package/dist/people/index.d.ts +36 -36
- package/dist/people/index.js +105 -105
- package/dist/platform/index.d.ts +189 -189
- package/dist/platform/index.js +548 -548
- package/dist/reports/index.d.ts +49 -49
- package/dist/reports/index.js +145 -145
- package/package.json +33 -32
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Referencia da aparencia do logo
|
|
3
|
-
*/
|
|
4
|
-
declare const LOGO: {
|
|
5
|
-
URL: {
|
|
6
|
-
DESKTOP: {
|
|
7
|
-
KEY: string;
|
|
8
|
-
};
|
|
9
|
-
MOBILE: {
|
|
10
|
-
KEY: string;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
TYPE: {
|
|
14
|
-
DESKTOP: {
|
|
15
|
-
KEY: string;
|
|
16
|
-
DEFAULT: string;
|
|
17
|
-
};
|
|
18
|
-
MOBILE: {
|
|
19
|
-
KEY: string;
|
|
20
|
-
DEFAULT: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
DESCRIPTION: {
|
|
24
|
-
MOBILE: {
|
|
25
|
-
KEY: string;
|
|
26
|
-
};
|
|
27
|
-
DESKTOP: {
|
|
28
|
-
KEY: string;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
export { LOGO };
|
|
1
|
+
/**
|
|
2
|
+
* Referencia da aparencia do logo
|
|
3
|
+
*/
|
|
4
|
+
declare const LOGO: {
|
|
5
|
+
URL: {
|
|
6
|
+
DESKTOP: {
|
|
7
|
+
KEY: string;
|
|
8
|
+
};
|
|
9
|
+
MOBILE: {
|
|
10
|
+
KEY: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
TYPE: {
|
|
14
|
+
DESKTOP: {
|
|
15
|
+
KEY: string;
|
|
16
|
+
DEFAULT: string;
|
|
17
|
+
};
|
|
18
|
+
MOBILE: {
|
|
19
|
+
KEY: string;
|
|
20
|
+
DEFAULT: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
DESCRIPTION: {
|
|
24
|
+
MOBILE: {
|
|
25
|
+
KEY: string;
|
|
26
|
+
};
|
|
27
|
+
DESKTOP: {
|
|
28
|
+
KEY: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
export { LOGO };
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LOGO = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* Referencia da aparencia do logo
|
|
6
|
-
*/
|
|
7
|
-
const LOGO = {
|
|
8
|
-
URL: {
|
|
9
|
-
DESKTOP: {
|
|
10
|
-
KEY: 'logo_desktop',
|
|
11
|
-
},
|
|
12
|
-
MOBILE: {
|
|
13
|
-
KEY: 'logo_mobile',
|
|
14
|
-
},
|
|
15
|
-
},
|
|
16
|
-
TYPE: {
|
|
17
|
-
DESKTOP: {
|
|
18
|
-
KEY: 'logo_type_desktop',
|
|
19
|
-
DEFAULT: '1',
|
|
20
|
-
},
|
|
21
|
-
MOBILE: {
|
|
22
|
-
KEY: 'logo_type_mobile',
|
|
23
|
-
DEFAULT: '0',
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
DESCRIPTION: {
|
|
27
|
-
MOBILE: {
|
|
28
|
-
KEY: 'logo_mobile_description',
|
|
29
|
-
},
|
|
30
|
-
DESKTOP: {
|
|
31
|
-
KEY: 'logo_desktop_description',
|
|
32
|
-
},
|
|
33
|
-
},
|
|
34
|
-
};
|
|
35
|
-
exports.LOGO = LOGO;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LOGO = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Referencia da aparencia do logo
|
|
6
|
+
*/
|
|
7
|
+
const LOGO = {
|
|
8
|
+
URL: {
|
|
9
|
+
DESKTOP: {
|
|
10
|
+
KEY: 'logo_desktop',
|
|
11
|
+
},
|
|
12
|
+
MOBILE: {
|
|
13
|
+
KEY: 'logo_mobile',
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
TYPE: {
|
|
17
|
+
DESKTOP: {
|
|
18
|
+
KEY: 'logo_type_desktop',
|
|
19
|
+
DEFAULT: '1',
|
|
20
|
+
},
|
|
21
|
+
MOBILE: {
|
|
22
|
+
KEY: 'logo_type_mobile',
|
|
23
|
+
DEFAULT: '0',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
DESCRIPTION: {
|
|
27
|
+
MOBILE: {
|
|
28
|
+
KEY: 'logo_mobile_description',
|
|
29
|
+
},
|
|
30
|
+
DESKTOP: {
|
|
31
|
+
KEY: 'logo_desktop_description',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
exports.LOGO = LOGO;
|