@navservice/core 1.62.0 → 1.64.0
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/build/es/index.browser.d.ts +1 -0
- package/build/es/index.browser.js +520 -1
- package/build/es/utils.js +106 -106
- package/build/lib/index.browser.cjs +717 -42
- package/build/lib/index.browser.d.ts +1 -0
- package/build/lib/utils.cjs +71 -66
- package/package.json +2 -3
package/build/lib/utils.cjs
CHANGED
|
@@ -14,7 +14,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
14
14
|
config_env_core: () => (/* reexport */ src_config_env)
|
|
15
15
|
});
|
|
16
16
|
|
|
17
|
-
// UNUSED EXPORTS: TypesCore
|
|
17
|
+
// UNUSED EXPORTS: TypesCore, utils
|
|
18
18
|
|
|
19
19
|
;// CONCATENATED MODULE: ./src/config_env/index.ts
|
|
20
20
|
class config_env {
|
|
@@ -151,76 +151,16 @@ var _type_response_TypeControllerResponse;
|
|
|
151
151
|
/* export default */ const types = ((/* unused pure expression or super */ null && (types_t)));
|
|
152
152
|
var types_t;
|
|
153
153
|
|
|
154
|
+
// EXTERNAL MODULE: ./src/utils/index.ts + 11 modules
|
|
155
|
+
var utils = __webpack_require__("./src/utils/index.ts");
|
|
154
156
|
;// CONCATENATED MODULE: ./src/index.browser.ts
|
|
155
157
|
|
|
156
158
|
|
|
157
159
|
|
|
158
160
|
|
|
159
|
-
},
|
|
160
|
-
|
|
161
|
-
});
|
|
162
|
-
// The module cache
|
|
163
|
-
var __webpack_module_cache__ = {};
|
|
164
|
-
|
|
165
|
-
// The require function
|
|
166
|
-
function __webpack_require__(moduleId) {
|
|
167
|
-
|
|
168
|
-
// Check if module is in cache
|
|
169
|
-
var cachedModule = __webpack_module_cache__[moduleId];
|
|
170
|
-
if (cachedModule !== undefined) {
|
|
171
|
-
return cachedModule.exports;
|
|
172
|
-
}
|
|
173
|
-
// Create a new module (and put it into the cache)
|
|
174
|
-
var module = (__webpack_module_cache__[moduleId] = {
|
|
175
|
-
exports: {}
|
|
176
|
-
});
|
|
177
|
-
// Execute the module function
|
|
178
|
-
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
179
|
-
|
|
180
|
-
// Return the exports of the module
|
|
181
|
-
return module.exports;
|
|
182
|
-
|
|
183
|
-
}
|
|
184
161
|
|
|
185
|
-
|
|
186
|
-
(
|
|
187
|
-
// getDefaultExport function for compatibility with non-ESM modules
|
|
188
|
-
__webpack_require__.n = (module) => {
|
|
189
|
-
var getter = module && module.__esModule ?
|
|
190
|
-
() => (module['default']) :
|
|
191
|
-
() => (module);
|
|
192
|
-
__webpack_require__.d(getter, { a: getter });
|
|
193
|
-
return getter;
|
|
194
|
-
};
|
|
195
|
-
|
|
196
|
-
})();
|
|
197
|
-
// webpack/runtime/define_property_getters
|
|
198
|
-
(() => {
|
|
199
|
-
__webpack_require__.d = (exports, definition) => {
|
|
200
|
-
for(var key in definition) {
|
|
201
|
-
if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
202
|
-
Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
};
|
|
206
|
-
})();
|
|
207
|
-
// webpack/runtime/has_own_property
|
|
208
|
-
(() => {
|
|
209
|
-
__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
210
|
-
})();
|
|
211
|
-
// webpack/runtime/make_namespace_object
|
|
212
|
-
(() => {
|
|
213
|
-
// define __esModule on exports
|
|
214
|
-
__webpack_require__.r = (exports) => {
|
|
215
|
-
if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
216
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
217
|
-
}
|
|
218
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
219
|
-
};
|
|
220
|
-
})();
|
|
221
|
-
var __webpack_exports__ = {};
|
|
222
|
-
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other modules in the chunk.
|
|
223
|
-
(() => {
|
|
162
|
+
},
|
|
163
|
+
"./src/utils/index.ts"(__unused_rspack_module, __webpack_exports__, __webpack_require__) {
|
|
224
164
|
// ESM COMPAT FLAG
|
|
225
165
|
__webpack_require__.r(__webpack_exports__);
|
|
226
166
|
|
|
@@ -861,8 +801,73 @@ const utils = {
|
|
|
861
801
|
};
|
|
862
802
|
/* export default */ const src_utils = (utils);
|
|
863
803
|
|
|
864
|
-
})();
|
|
865
804
|
|
|
805
|
+
},
|
|
806
|
+
|
|
807
|
+
});
|
|
808
|
+
// The module cache
|
|
809
|
+
var __webpack_module_cache__ = {};
|
|
810
|
+
|
|
811
|
+
// The require function
|
|
812
|
+
function __webpack_require__(moduleId) {
|
|
813
|
+
|
|
814
|
+
// Check if module is in cache
|
|
815
|
+
var cachedModule = __webpack_module_cache__[moduleId];
|
|
816
|
+
if (cachedModule !== undefined) {
|
|
817
|
+
return cachedModule.exports;
|
|
818
|
+
}
|
|
819
|
+
// Create a new module (and put it into the cache)
|
|
820
|
+
var module = (__webpack_module_cache__[moduleId] = {
|
|
821
|
+
exports: {}
|
|
822
|
+
});
|
|
823
|
+
// Execute the module function
|
|
824
|
+
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
825
|
+
|
|
826
|
+
// Return the exports of the module
|
|
827
|
+
return module.exports;
|
|
828
|
+
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
// webpack/runtime/compat_get_default_export
|
|
832
|
+
(() => {
|
|
833
|
+
// getDefaultExport function for compatibility with non-ESM modules
|
|
834
|
+
__webpack_require__.n = (module) => {
|
|
835
|
+
var getter = module && module.__esModule ?
|
|
836
|
+
() => (module['default']) :
|
|
837
|
+
() => (module);
|
|
838
|
+
__webpack_require__.d(getter, { a: getter });
|
|
839
|
+
return getter;
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
})();
|
|
843
|
+
// webpack/runtime/define_property_getters
|
|
844
|
+
(() => {
|
|
845
|
+
__webpack_require__.d = (exports, definition) => {
|
|
846
|
+
for(var key in definition) {
|
|
847
|
+
if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
848
|
+
Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
};
|
|
852
|
+
})();
|
|
853
|
+
// webpack/runtime/has_own_property
|
|
854
|
+
(() => {
|
|
855
|
+
__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
856
|
+
})();
|
|
857
|
+
// webpack/runtime/make_namespace_object
|
|
858
|
+
(() => {
|
|
859
|
+
// define __esModule on exports
|
|
860
|
+
__webpack_require__.r = (exports) => {
|
|
861
|
+
if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
862
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
863
|
+
}
|
|
864
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
865
|
+
};
|
|
866
|
+
})();
|
|
867
|
+
// startup
|
|
868
|
+
// Load entry module and return exports
|
|
869
|
+
// This entry module is referenced by other modules so it can't be inlined
|
|
870
|
+
var __webpack_exports__ = __webpack_require__("./src/utils/index.ts");
|
|
866
871
|
exports["default"] = __webpack_exports__["default"];
|
|
867
872
|
for(var __rspack_i in __webpack_exports__) {
|
|
868
873
|
if(["default"].indexOf(__rspack_i) === -1) {
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navservice/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.64.0",
|
|
4
4
|
"description": "Service core de todos os micro serviços",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"browser": "./build/es/index.browser.js",
|
|
9
|
-
"node": "./build/es/index.node.js",
|
|
10
8
|
"import": "./build/es/index.browser.js",
|
|
9
|
+
"default": "./build/es/index.browser.js",
|
|
11
10
|
"types": "./build/es/index.browser.d.ts"
|
|
12
11
|
},
|
|
13
12
|
"./utils": {
|