@powfix/core-js 0.14.4 → 0.15.0-beta-1
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/dist/client/constants/index.browser.d.ts +6 -0
- package/dist/{src → client}/constants/index.browser.js +6 -6
- package/dist/client/index.browser.d.ts +7 -0
- package/dist/{src → client}/index.browser.js +7 -7
- package/dist/{src → client}/interfaces/Point3.d.ts +1 -1
- package/dist/client/interfaces/index.browser.d.ts +4 -0
- package/dist/{src → client}/interfaces/index.browser.js +4 -4
- package/dist/{src/services/SessionService.d.ts → client/managers/SessionManager.d.ts} +4 -12
- package/dist/{src/services/SessionService.js → client/managers/SessionManager.js} +7 -6
- package/dist/client/managers/SessionManager.type.d.ts +9 -0
- package/dist/client/managers/index.browser.d.ts +2 -0
- package/dist/client/managers/index.browser.js +18 -0
- package/dist/client/scripts/index.browser.d.ts +1 -0
- package/dist/{src → client}/scripts/index.browser.js +1 -1
- package/dist/client/services/index.browser.d.ts +1 -0
- package/dist/{src/scripts/index.js → client/services/index.browser.js} +1 -1
- package/dist/{src → client}/services/time/TimeService.d.ts +1 -1
- package/dist/client/services/time/index.d.ts +2 -0
- package/dist/client/services/time/index.js +18 -0
- package/dist/client/types/index.browser.d.ts +2 -0
- package/dist/{src/services → client/types}/index.browser.js +2 -2
- package/dist/{src → client}/utils/ArrayUtils.js +2 -2
- package/dist/{src → client}/utils/CoordinateUtils.d.ts +1 -1
- package/dist/{src → client}/utils/DateUtils.d.ts +1 -1
- package/dist/{src → client}/utils/DateUtils.js +17 -17
- package/dist/{src → client}/utils/JuminNumberUtils.js +2 -2
- package/dist/{src → client}/utils/ObjectIdUtils.js +3 -3
- package/dist/{src → client}/utils/Point3Utils.d.ts +1 -1
- package/dist/{src → client}/utils/Sequencer.js +2 -2
- package/dist/{src → client}/utils/UuidUtils.js +5 -2
- package/dist/{src → client}/utils/global/fallbackIfNull.js +2 -2
- package/dist/{src → client}/utils/global/fallbackIfUndefined.js +2 -2
- package/dist/client/utils/global/index.d.ts +11 -0
- package/dist/client/utils/global/index.js +27 -0
- package/dist/{src → client}/utils/global/processFirstNonNullish.js +2 -2
- package/dist/client/utils/index.browser.d.ts +17 -0
- package/dist/client/utils/index.browser.js +33 -0
- package/dist/client/utils/try-catch/index.d.ts +1 -0
- package/dist/{src/interfaces/nodejs/db → client/utils/try-catch}/index.js +1 -1
- package/dist/server/constants/COORDINATE.d.ts +7 -0
- package/dist/server/constants/COORDINATE.js +10 -0
- package/dist/server/constants/CRUD.d.ts +9 -0
- package/dist/server/constants/CRUD.js +22 -0
- package/dist/server/constants/DATE.d.ts +13 -0
- package/dist/server/constants/DATE.js +26 -0
- package/dist/server/constants/DISTANCE.d.ts +13 -0
- package/dist/server/constants/DISTANCE.js +18 -0
- package/dist/server/constants/DURATION.d.ts +16 -0
- package/dist/server/constants/DURATION.js +21 -0
- package/dist/server/constants/NOT_NULL.d.ts +1 -0
- package/dist/server/constants/NOT_NULL.js +4 -0
- package/dist/server/constants/index.browser.d.ts +6 -0
- package/dist/server/constants/index.browser.js +22 -0
- package/dist/server/constants/index.d.ts +2 -0
- package/dist/{src/interfaces → server/constants}/index.js +2 -2
- package/dist/server/constants/nodejs/index.d.ts +2 -0
- package/dist/{src → server}/constants/nodejs/index.js +2 -2
- package/dist/server/index.browser.d.ts +7 -0
- package/dist/server/index.browser.js +23 -0
- package/dist/server/index.d.ts +8 -0
- package/dist/{src → server}/index.js +8 -8
- package/dist/server/interfaces/Coordinate.d.ts +8 -0
- package/dist/server/interfaces/Point2.d.ts +4 -0
- package/dist/server/interfaces/Point3.d.ts +4 -0
- package/dist/server/interfaces/StorageProvider.d.ts +7 -0
- package/dist/server/interfaces/index.browser.d.ts +4 -0
- package/dist/server/interfaces/index.browser.js +20 -0
- package/dist/server/interfaces/index.d.ts +2 -0
- package/dist/server/interfaces/index.js +18 -0
- package/dist/server/interfaces/nodejs/db/index.d.ts +1 -0
- package/dist/server/interfaces/nodejs/db/index.js +17 -0
- package/dist/{src → server}/interfaces/nodejs/db/sequelize/Hook.d.ts +2 -2
- package/dist/{src → server}/interfaces/nodejs/db/sequelize/HookFn.d.ts +1 -1
- package/dist/server/interfaces/nodejs/db/sequelize/UpsertOptions.d.ts +4 -0
- package/dist/server/interfaces/nodejs/db/sequelize/UpsertOptions.js +2 -0
- package/dist/server/interfaces/nodejs/db/sequelize/index.d.ts +6 -0
- package/dist/server/interfaces/nodejs/db/sequelize/index.js +22 -0
- package/dist/server/interfaces/nodejs/index.d.ts +1 -0
- package/dist/{src/utils/try-catch → server/interfaces/nodejs}/index.js +1 -1
- package/dist/server/managers/SessionManager.d.ts +15 -0
- package/dist/server/managers/SessionManager.js +134 -0
- package/dist/server/managers/SessionManager.type.d.ts +9 -0
- package/dist/server/managers/SessionManager.type.js +2 -0
- package/dist/{src → server}/managers/TransactionManager.d.ts +2 -2
- package/dist/{src → server}/managers/TransactionManager.js +13 -13
- package/dist/{src → server}/managers/TransactionManager.types.d.ts +1 -1
- package/dist/server/managers/TransactionManager.types.js +2 -0
- package/dist/server/managers/index.browser.d.ts +2 -0
- package/dist/server/managers/index.browser.js +18 -0
- package/dist/server/managers/index.d.ts +2 -0
- package/dist/server/managers/index.js +18 -0
- package/dist/server/scripts/base64Polyfill.d.ts +1 -0
- package/dist/server/scripts/base64Polyfill.js +14 -0
- package/dist/server/scripts/index.browser.d.ts +1 -0
- package/dist/{index.browser.js → server/scripts/index.browser.js} +1 -1
- package/dist/server/scripts/index.d.ts +1 -0
- package/dist/server/scripts/index.js +17 -0
- package/dist/server/services/index.browser.d.ts +1 -0
- package/dist/{index.js → server/services/index.browser.js} +1 -1
- package/dist/server/services/index.d.ts +2 -0
- package/dist/{src/constants → server/services}/index.js +2 -2
- package/dist/{src → server}/services/redis/RedisPublisher.d.ts +1 -1
- package/dist/{src → server}/services/redis/RedisPublisher.js +2 -2
- package/dist/{src → server}/services/redis/RedisSubscriber.d.ts +2 -2
- package/dist/{src → server}/services/redis/RedisSubscriber.js +5 -5
- package/dist/server/services/redis/index.d.ts +3 -0
- package/dist/{src → server}/services/redis/index.js +3 -3
- package/dist/server/services/time/TimeService.d.ts +31 -0
- package/dist/server/services/time/TimeService.js +180 -0
- package/dist/server/services/time/TimeService.type.d.ts +21 -0
- package/dist/server/services/time/TimeService.type.js +2 -0
- package/dist/server/services/time/index.d.ts +2 -0
- package/dist/server/services/time/index.js +18 -0
- package/dist/server/types/IntRage.d.ts +3 -0
- package/dist/server/types/IntRage.js +2 -0
- package/dist/server/types/PartialExcept.d.ts +1 -0
- package/dist/server/types/PartialExcept.js +2 -0
- package/dist/server/types/UpsertResult.js +2 -0
- package/dist/server/types/index.browser.d.ts +2 -0
- package/dist/{src → server}/types/index.browser.js +2 -2
- package/dist/server/types/index.d.ts +2 -0
- package/dist/server/types/index.js +18 -0
- package/dist/server/utils/ArrayUtils.d.ts +12 -0
- package/dist/server/utils/ArrayUtils.js +30 -0
- package/dist/server/utils/AxiosUtils.d.ts +5 -0
- package/dist/server/utils/AxiosUtils.js +53 -0
- package/dist/server/utils/BooleanUtils.d.ts +1 -0
- package/dist/server/utils/BooleanUtils.js +8 -0
- package/dist/server/utils/Calc.d.ts +4 -0
- package/dist/server/utils/Calc.js +27 -0
- package/dist/server/utils/CoordinateUtils.d.ts +8 -0
- package/dist/server/utils/CoordinateUtils.js +42 -0
- package/dist/server/utils/DateUtils.d.ts +24 -0
- package/dist/server/utils/DateUtils.js +310 -0
- package/dist/server/utils/JuminNumberUtils.d.ts +4 -0
- package/dist/server/utils/JuminNumberUtils.js +50 -0
- package/dist/server/utils/NumberUtils.d.ts +4 -0
- package/dist/server/utils/NumberUtils.js +25 -0
- package/dist/server/utils/ObjectIdUtils.d.ts +4 -0
- package/dist/server/utils/ObjectIdUtils.js +24 -0
- package/dist/server/utils/Point3Utils.d.ts +4 -0
- package/dist/server/utils/Point3Utils.js +12 -0
- package/dist/server/utils/RandomUtils.d.ts +8 -0
- package/dist/server/utils/RandomUtils.js +64 -0
- package/dist/server/utils/Sequencer.d.ts +38 -0
- package/dist/server/utils/Sequencer.js +148 -0
- package/dist/server/utils/StringUtils.d.ts +5 -0
- package/dist/server/utils/StringUtils.js +37 -0
- package/dist/server/utils/UuidUtils.d.ts +14 -0
- package/dist/server/utils/UuidUtils.js +49 -0
- package/dist/server/utils/Validator.d.ts +48 -0
- package/dist/server/utils/Validator.js +118 -0
- package/dist/server/utils/global/between.d.ts +1 -0
- package/dist/server/utils/global/between.js +7 -0
- package/dist/server/utils/global/castArray.d.ts +1 -0
- package/dist/server/utils/global/castArray.js +6 -0
- package/dist/server/utils/global/circularDistance.d.ts +1 -0
- package/dist/server/utils/global/circularDistance.js +14 -0
- package/dist/server/utils/global/fallbackIfEqual.d.ts +1 -0
- package/dist/server/utils/global/fallbackIfEqual.js +9 -0
- package/dist/server/utils/global/fallbackIfNull.d.ts +1 -0
- package/dist/server/utils/global/fallbackIfNull.js +7 -0
- package/dist/server/utils/global/fallbackIfUndefined.d.ts +1 -0
- package/dist/server/utils/global/fallbackIfUndefined.js +7 -0
- package/dist/server/utils/global/firstNonNullish.d.ts +1 -0
- package/dist/server/utils/global/firstNonNullish.js +13 -0
- package/dist/server/utils/global/flat.d.ts +14 -0
- package/dist/server/utils/global/flat.js +117 -0
- package/dist/server/utils/global/index.d.ts +11 -0
- package/dist/server/utils/global/index.js +27 -0
- package/dist/server/utils/global/processFirstNonNullish.d.ts +1 -0
- package/dist/server/utils/global/processFirstNonNullish.js +11 -0
- package/dist/server/utils/global/pureEnum.d.ts +8 -0
- package/dist/server/utils/global/pureEnum.js +14 -0
- package/dist/server/utils/global/sleep.d.ts +1 -0
- package/dist/server/utils/global/sleep.js +5 -0
- package/dist/server/utils/index.browser.d.ts +17 -0
- package/dist/server/utils/index.browser.js +33 -0
- package/dist/server/utils/index.d.ts +2 -0
- package/dist/server/utils/index.js +18 -0
- package/dist/{src → server}/utils/nodejs/HookUtils.d.ts +1 -1
- package/dist/server/utils/nodejs/index.d.ts +2 -0
- package/dist/{src → server}/utils/nodejs/index.js +3 -3
- package/dist/{src → server}/utils/nodejs/sequelize-utils/SequelizeUtils.d.ts +1 -1
- package/dist/{src → server}/utils/nodejs/sequelize-utils/SequelizeUtils.js +8 -8
- package/dist/server/utils/nodejs/sequelize-utils/index.d.ts +1 -0
- package/dist/{src → server}/utils/nodejs/sequelize-utils/index.js +2 -2
- package/dist/server/utils/nodejs/sequelize-utils/types.js +2 -0
- package/dist/server/utils/try-catch/TryCatch.d.ts +24 -0
- package/dist/server/utils/try-catch/TryCatch.js +78 -0
- package/dist/server/utils/try-catch/index.d.ts +1 -0
- package/dist/{src/interfaces/nodejs → server/utils/try-catch}/index.js +1 -1
- package/package.json +56 -47
- package/dist/index.browser.d.ts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/src/constants/index.browser.d.ts +0 -6
- package/dist/src/constants/index.d.ts +0 -2
- package/dist/src/constants/nodejs/index.d.ts +0 -2
- package/dist/src/index.browser.d.ts +0 -7
- package/dist/src/index.d.ts +0 -8
- package/dist/src/interfaces/index.browser.d.ts +0 -4
- package/dist/src/interfaces/index.d.ts +0 -2
- package/dist/src/interfaces/nodejs/db/index.d.ts +0 -1
- package/dist/src/interfaces/nodejs/db/sequelize/UpsertOptions.d.ts +0 -4
- package/dist/src/interfaces/nodejs/db/sequelize/index.d.ts +0 -6
- package/dist/src/interfaces/nodejs/db/sequelize/index.js +0 -22
- package/dist/src/interfaces/nodejs/index.d.ts +0 -1
- package/dist/src/managers/index.browser.d.ts +0 -1
- package/dist/src/managers/index.d.ts +0 -2
- package/dist/src/managers/index.js +0 -18
- package/dist/src/scripts/index.browser.d.ts +0 -1
- package/dist/src/scripts/index.d.ts +0 -1
- package/dist/src/services/index.browser.d.ts +0 -2
- package/dist/src/services/index.d.ts +0 -2
- package/dist/src/services/index.js +0 -18
- package/dist/src/services/redis/index.d.ts +0 -3
- package/dist/src/services/time/index.d.ts +0 -2
- package/dist/src/services/time/index.js +0 -18
- package/dist/src/types/index.browser.d.ts +0 -2
- package/dist/src/types/index.d.ts +0 -2
- package/dist/src/types/index.js +0 -18
- package/dist/src/utils/global/index.d.ts +0 -11
- package/dist/src/utils/global/index.js +0 -27
- package/dist/src/utils/index.browser.d.ts +0 -17
- package/dist/src/utils/index.browser.js +0 -33
- package/dist/src/utils/index.d.ts +0 -2
- package/dist/src/utils/index.js +0 -18
- package/dist/src/utils/nodejs/index.d.ts +0 -2
- package/dist/src/utils/nodejs/sequelize-utils/index.d.ts +0 -1
- package/dist/src/utils/try-catch/index.d.ts +0 -1
- /package/dist/{src → client}/constants/COORDINATE.d.ts +0 -0
- /package/dist/{src → client}/constants/COORDINATE.js +0 -0
- /package/dist/{src → client}/constants/CRUD.d.ts +0 -0
- /package/dist/{src → client}/constants/CRUD.js +0 -0
- /package/dist/{src → client}/constants/DATE.d.ts +0 -0
- /package/dist/{src → client}/constants/DATE.js +0 -0
- /package/dist/{src → client}/constants/DISTANCE.d.ts +0 -0
- /package/dist/{src → client}/constants/DISTANCE.js +0 -0
- /package/dist/{src → client}/constants/DURATION.d.ts +0 -0
- /package/dist/{src → client}/constants/DURATION.js +0 -0
- /package/dist/{src → client}/constants/NOT_NULL.d.ts +0 -0
- /package/dist/{src → client}/constants/NOT_NULL.js +0 -0
- /package/dist/{src → client}/interfaces/Coordinate.d.ts +0 -0
- /package/dist/{src → client}/interfaces/Coordinate.js +0 -0
- /package/dist/{src → client}/interfaces/Point2.d.ts +0 -0
- /package/dist/{src → client}/interfaces/Point2.js +0 -0
- /package/dist/{src → client}/interfaces/Point3.js +0 -0
- /package/dist/{src → client}/interfaces/StorageProvider.d.ts +0 -0
- /package/dist/{src → client}/interfaces/StorageProvider.js +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/Hook.js → client/managers/SessionManager.type.js} +0 -0
- /package/dist/{src → client}/scripts/base64Polyfill.d.ts +0 -0
- /package/dist/{src → client}/scripts/base64Polyfill.js +0 -0
- /package/dist/{src → client}/services/time/TimeService.js +0 -0
- /package/dist/{src → client}/services/time/TimeService.type.d.ts +0 -0
- /package/dist/{src → client}/services/time/TimeService.type.js +0 -0
- /package/dist/{src → client}/types/IntRage.d.ts +0 -0
- /package/dist/{src → client}/types/IntRage.js +0 -0
- /package/dist/{src → client}/types/PartialExcept.d.ts +0 -0
- /package/dist/{src → client}/types/PartialExcept.js +0 -0
- /package/dist/{src → client}/utils/ArrayUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/AxiosUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/AxiosUtils.js +0 -0
- /package/dist/{src → client}/utils/BooleanUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/BooleanUtils.js +0 -0
- /package/dist/{src → client}/utils/Calc.d.ts +0 -0
- /package/dist/{src → client}/utils/Calc.js +0 -0
- /package/dist/{src → client}/utils/CoordinateUtils.js +0 -0
- /package/dist/{src → client}/utils/JuminNumberUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/NumberUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/NumberUtils.js +0 -0
- /package/dist/{src → client}/utils/ObjectIdUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/Point3Utils.js +0 -0
- /package/dist/{src → client}/utils/RandomUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/RandomUtils.js +0 -0
- /package/dist/{src → client}/utils/Sequencer.d.ts +0 -0
- /package/dist/{src → client}/utils/StringUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/StringUtils.js +0 -0
- /package/dist/{src → client}/utils/UuidUtils.d.ts +0 -0
- /package/dist/{src → client}/utils/Validator.d.ts +0 -0
- /package/dist/{src → client}/utils/Validator.js +0 -0
- /package/dist/{src → client}/utils/global/between.d.ts +0 -0
- /package/dist/{src → client}/utils/global/between.js +0 -0
- /package/dist/{src → client}/utils/global/castArray.d.ts +0 -0
- /package/dist/{src → client}/utils/global/castArray.js +0 -0
- /package/dist/{src → client}/utils/global/circularDistance.d.ts +0 -0
- /package/dist/{src → client}/utils/global/circularDistance.js +0 -0
- /package/dist/{src → client}/utils/global/fallbackIfEqual.d.ts +0 -0
- /package/dist/{src → client}/utils/global/fallbackIfEqual.js +0 -0
- /package/dist/{src → client}/utils/global/fallbackIfNull.d.ts +0 -0
- /package/dist/{src → client}/utils/global/fallbackIfUndefined.d.ts +0 -0
- /package/dist/{src → client}/utils/global/firstNonNullish.d.ts +0 -0
- /package/dist/{src → client}/utils/global/firstNonNullish.js +0 -0
- /package/dist/{src → client}/utils/global/flat.d.ts +0 -0
- /package/dist/{src → client}/utils/global/flat.js +0 -0
- /package/dist/{src → client}/utils/global/processFirstNonNullish.d.ts +0 -0
- /package/dist/{src → client}/utils/global/pureEnum.d.ts +0 -0
- /package/dist/{src → client}/utils/global/pureEnum.js +0 -0
- /package/dist/{src → client}/utils/global/sleep.d.ts +0 -0
- /package/dist/{src → client}/utils/global/sleep.js +0 -0
- /package/dist/{src → client}/utils/try-catch/TryCatch.d.ts +0 -0
- /package/dist/{src → client}/utils/try-catch/TryCatch.js +0 -0
- /package/dist/{src → server}/constants/nodejs/TransactionManagerLogLevel.d.ts +0 -0
- /package/dist/{src → server}/constants/nodejs/TransactionManagerLogLevel.js +0 -0
- /package/dist/{src → server}/constants/nodejs/TransactionManagerTimeoutAction.d.ts +0 -0
- /package/dist/{src → server}/constants/nodejs/TransactionManagerTimeoutAction.js +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/HookFn.js → server/interfaces/Coordinate.js} +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/HookType.js → server/interfaces/Point2.js} +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/ReloadOption.js → server/interfaces/Point3.js} +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/TransactionOption.js → server/interfaces/StorageProvider.js} +0 -0
- /package/dist/{src/interfaces/nodejs/db/sequelize/UpsertOptions.js → server/interfaces/nodejs/db/sequelize/Hook.js} +0 -0
- /package/dist/{src/managers/TransactionManager.types.js → server/interfaces/nodejs/db/sequelize/HookFn.js} +0 -0
- /package/dist/{src → server}/interfaces/nodejs/db/sequelize/HookType.d.ts +0 -0
- /package/dist/{src/managers/index.browser.js → server/interfaces/nodejs/db/sequelize/HookType.js} +0 -0
- /package/dist/{src → server}/interfaces/nodejs/db/sequelize/ReloadOption.d.ts +0 -0
- /package/dist/{src/types/UpsertResult.js → server/interfaces/nodejs/db/sequelize/ReloadOption.js} +0 -0
- /package/dist/{src → server}/interfaces/nodejs/db/sequelize/TransactionOption.d.ts +0 -0
- /package/dist/{src/utils/nodejs/sequelize-utils/types.js → server/interfaces/nodejs/db/sequelize/TransactionOption.js} +0 -0
- /package/dist/{src → server}/services/redis/RedisClient.d.ts +0 -0
- /package/dist/{src → server}/services/redis/RedisClient.js +0 -0
- /package/dist/{src → server}/types/UpsertResult.d.ts +0 -0
- /package/dist/{src → server}/utils/nodejs/HookUtils.js +0 -0
- /package/dist/{src → server}/utils/nodejs/sequelize-utils/types.d.ts +0 -0
package/dist/src/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './sequelize';
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./Hook"), exports);
|
|
18
|
-
__exportStar(require("./HookFn"), exports);
|
|
19
|
-
__exportStar(require("./HookType"), exports);
|
|
20
|
-
__exportStar(require("./ReloadOption"), exports);
|
|
21
|
-
__exportStar(require("./TransactionOption"), exports);
|
|
22
|
-
__exportStar(require("./UpsertOptions"), exports);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './db';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./TransactionManager"), exports);
|
|
18
|
-
__exportStar(require("./TransactionManager.types"), exports);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './base64Polyfill';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './index.browser';
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./index.browser"), exports);
|
|
18
|
-
__exportStar(require("./redis"), exports);
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./TimeService"), exports);
|
|
18
|
-
__exportStar(require("./TimeService.type"), exports);
|
package/dist/src/types/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./index.browser"), exports);
|
|
18
|
-
__exportStar(require("./UpsertResult"), exports);
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './between';
|
|
2
|
-
export * from './castArray';
|
|
3
|
-
export * from './circularDistance';
|
|
4
|
-
export * from './sleep';
|
|
5
|
-
export * from './fallbackIfEqual';
|
|
6
|
-
export * from './fallbackIfNull';
|
|
7
|
-
export * from './fallbackIfUndefined';
|
|
8
|
-
export * from './firstNonNullish';
|
|
9
|
-
export * from './flat';
|
|
10
|
-
export * from './processFirstNonNullish';
|
|
11
|
-
export * from './pureEnum';
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./between"), exports);
|
|
18
|
-
__exportStar(require("./castArray"), exports);
|
|
19
|
-
__exportStar(require("./circularDistance"), exports);
|
|
20
|
-
__exportStar(require("./sleep"), exports);
|
|
21
|
-
__exportStar(require("./fallbackIfEqual"), exports);
|
|
22
|
-
__exportStar(require("./fallbackIfNull"), exports);
|
|
23
|
-
__exportStar(require("./fallbackIfUndefined"), exports);
|
|
24
|
-
__exportStar(require("./firstNonNullish"), exports);
|
|
25
|
-
__exportStar(require("./flat"), exports);
|
|
26
|
-
__exportStar(require("./processFirstNonNullish"), exports);
|
|
27
|
-
__exportStar(require("./pureEnum"), exports);
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export * from './global';
|
|
2
|
-
export * from './ArrayUtils';
|
|
3
|
-
export * from './AxiosUtils';
|
|
4
|
-
export * from './StringUtils';
|
|
5
|
-
export * from './UuidUtils';
|
|
6
|
-
export * from './BooleanUtils';
|
|
7
|
-
export * from './Calc';
|
|
8
|
-
export * from './CoordinateUtils';
|
|
9
|
-
export * from './DateUtils';
|
|
10
|
-
export * from './NumberUtils';
|
|
11
|
-
export * from './ObjectIdUtils';
|
|
12
|
-
export * from './Point3Utils';
|
|
13
|
-
export * from './RandomUtils';
|
|
14
|
-
export * from './Validator';
|
|
15
|
-
export * from './JuminNumberUtils';
|
|
16
|
-
export * from './Sequencer';
|
|
17
|
-
export * from './try-catch';
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./global"), exports);
|
|
18
|
-
__exportStar(require("./ArrayUtils"), exports);
|
|
19
|
-
__exportStar(require("./AxiosUtils"), exports);
|
|
20
|
-
__exportStar(require("./StringUtils"), exports);
|
|
21
|
-
__exportStar(require("./UuidUtils"), exports);
|
|
22
|
-
__exportStar(require("./BooleanUtils"), exports);
|
|
23
|
-
__exportStar(require("./Calc"), exports);
|
|
24
|
-
__exportStar(require("./CoordinateUtils"), exports);
|
|
25
|
-
__exportStar(require("./DateUtils"), exports);
|
|
26
|
-
__exportStar(require("./NumberUtils"), exports);
|
|
27
|
-
__exportStar(require("./ObjectIdUtils"), exports);
|
|
28
|
-
__exportStar(require("./Point3Utils"), exports);
|
|
29
|
-
__exportStar(require("./RandomUtils"), exports);
|
|
30
|
-
__exportStar(require("./Validator"), exports);
|
|
31
|
-
__exportStar(require("./JuminNumberUtils"), exports);
|
|
32
|
-
__exportStar(require("./Sequencer"), exports);
|
|
33
|
-
__exportStar(require("./try-catch"), exports);
|
package/dist/src/utils/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./index.browser"), exports);
|
|
18
|
-
__exportStar(require("./nodejs"), exports);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { SequelizeUtils } from './SequelizeUtils';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./TryCatch";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{src/interfaces/nodejs/db/sequelize/Hook.js → client/managers/SessionManager.type.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{src/interfaces/nodejs/db/sequelize/HookFn.js → server/interfaces/Coordinate.js}
RENAMED
|
File without changes
|
/package/dist/{src/interfaces/nodejs/db/sequelize/HookType.js → server/interfaces/Point2.js}
RENAMED
|
File without changes
|
/package/dist/{src/interfaces/nodejs/db/sequelize/ReloadOption.js → server/interfaces/Point3.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{src/managers/index.browser.js → server/interfaces/nodejs/db/sequelize/HookType.js}
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/{src/types/UpsertResult.js → server/interfaces/nodejs/db/sequelize/ReloadOption.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|