@futdevpro/fsm-dynamo 1.9.9 → 1.9.12
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/.github/workflows/main.yml +196 -0
- package/HOWTO.md +15 -15
- package/README.md +17 -17
- package/build/_collections/constants/country-divisions.const.d.ts +1 -1
- package/build/_collections/constants/country-divisions.const.d.ts.map +1 -1
- package/build/_collections/constants/country-divisions.const.js +2 -2
- package/build/_collections/constants/country-divisions.const.js.map +1 -1
- package/build/_collections/constants/courtry-isos.const.d.ts +1 -1
- package/build/_collections/constants/courtry-isos.const.d.ts.map +1 -1
- package/build/_collections/constants/courtry-isos.const.js +2 -2
- package/build/_collections/constants/courtry-isos.const.js.map +1 -1
- package/build/_collections/constants/error-defaults.const.d.ts +1 -1
- package/build/_collections/constants/error-defaults.const.d.ts.map +1 -1
- package/build/_collections/constants/module-settings/usage-module-settings.const.js +1 -1
- package/build/_collections/constants/pipe-transforms.const.js +12 -12
- package/build/_collections/constants/pipe-transforms.const.js.map +1 -1
- package/build/_collections/utils/pipe-transforms/division-pipe.util.js +1 -1
- package/build/_collections/utils/pipe-transforms/division-pipe.util.js.map +1 -1
- package/build/_collections/utils/pipe-transforms/list-pipe.util.d.ts.map +1 -1
- package/build/_collections/utils/pipe-transforms/list-pipe.util.js.map +1 -1
- package/build/_collections/utils/pipe-transforms/range-pipe.util.d.ts +2 -2
- package/build/_collections/utils/pipe-transforms/range-pipe.util.d.ts.map +1 -1
- package/build/_collections/utils/pipe-transforms/range-pipe.util.js +11 -11
- package/build/_collections/utils/pipe-transforms/range-pipe.util.js.map +1 -1
- package/build/_collections/utils/regions.util.d.ts.map +1 -1
- package/build/_collections/utils/regions.util.js +3 -0
- package/build/_collections/utils/regions.util.js.map +1 -1
- package/build/_enums/range-pipe-setting.enum.d.ts +1 -1
- package/build/_enums/range-pipe-setting.enum.d.ts.map +1 -1
- package/build/_enums/range-pipe-setting.enum.js +12 -12
- package/build/_enums/range-pipe-setting.enum.js.map +1 -1
- package/build/_models/control-models/error.control-model.js +1 -1
- package/build/_models/control-models/error.control-model.js.map +1 -1
- package/build/_models/control-models/error.control-model.spec.js +25 -6
- package/build/_models/control-models/error.control-model.spec.js.map +1 -1
- package/build/_models/interfaces/index.d.ts +3 -0
- package/build/_models/interfaces/index.d.ts.map +1 -1
- package/build/_models/interfaces/index.js +3 -0
- package/build/_models/interfaces/index.js.map +1 -1
- package/build/_models/interfaces/pipe-transforms.interface.d.ts +2 -2
- package/build/_models/interfaces/pipe-transforms.interface.d.ts.map +1 -1
- package/futdevpro-fsm-dynamo-01.09.12.tgz +0 -0
- package/nodemon.json +11 -11
- package/package.json +151 -151
- package/src/_collections/assets/location/country-codes-ISO-3166.json +3239 -3239
- package/src/_collections/assets/location/country-divisions-ISO-3166-all-list.json +19035 -19035
- package/src/_collections/assets/location/country-divisions-ISO-3166.json +4993 -4993
- package/src/_collections/assets/location/country-phone-codes.json +1203 -1203
- package/src/_collections/constants/country-divisions.const.ts +9 -9
- package/src/_collections/constants/courtry-isos.const.ts +8 -8
- package/src/_collections/constants/error-defaults.const.ts +11 -11
- package/src/_collections/constants/index.ts +15 -15
- package/src/_collections/constants/module-settings/custom-data-module-settings.const.ts +15 -15
- package/src/_collections/constants/module-settings/index.ts +8 -8
- package/src/_collections/constants/module-settings/test-module-settings.const.ts +19 -19
- package/src/_collections/constants/module-settings/usage-module-settings.const.ts +19 -19
- package/src/_collections/constants/pipe-transforms.const.ts +35 -35
- package/src/_collections/constants/times.const.ts +8 -8
- package/src/_collections/index.ts +6 -6
- package/src/_collections/utils/array.util.spec.ts +39 -39
- package/src/_collections/utils/array.util.ts +137 -137
- package/src/_collections/utils/index.ts +18 -18
- package/src/_collections/utils/location.util.ts +55 -55
- package/src/_collections/utils/log.util.ts +239 -239
- package/src/_collections/utils/math/box-bounds.util.ts +85 -85
- package/src/_collections/utils/math/index.ts +5 -5
- package/src/_collections/utils/math/math.util.ts +53 -53
- package/src/_collections/utils/math/random.util.ts +80 -80
- package/src/_collections/utils/math/trigonometry.util.ts +73 -73
- package/src/_collections/utils/math/vector2.util.ts +197 -197
- package/src/_collections/utils/pipe-transforms/country-pipe.util.ts +18 -18
- package/src/_collections/utils/pipe-transforms/custom-pipe.util.ts +9 -9
- package/src/_collections/utils/pipe-transforms/division-pipe.util.ts +20 -20
- package/src/_collections/utils/pipe-transforms/index.ts +15 -15
- package/src/_collections/utils/pipe-transforms/list-pipe.util.ts +10 -14
- package/src/_collections/utils/pipe-transforms/multi-pipe-pipe.util.ts +160 -160
- package/src/_collections/utils/pipe-transforms/obj-key-pipe.util.ts +9 -9
- package/src/_collections/utils/pipe-transforms/range-pipe.util.ts +94 -94
- package/src/_collections/utils/pipe-transforms/region-pipe.util.ts +18 -18
- package/src/_collections/utils/pipe-transforms/replace-pipe.util.ts +11 -11
- package/src/_collections/utils/pipe-transforms/slider-pipe.util.ts +20 -20
- package/src/_collections/utils/pipe-transforms/smart-replace-pipe.util.ts +71 -71
- package/src/_collections/utils/regex/index.ts +4 -4
- package/src/_collections/utils/regex/password-regex.util.ts +52 -52
- package/src/_collections/utils/regex/regex.util.ts +6 -6
- package/src/_collections/utils/regex/username-regex.util.ts +33 -33
- package/src/_collections/utils/regions.util.ts +100 -97
- package/src/_collections/utils/round-list.util.ts +44 -44
- package/src/_collections/utils/shared.static-service.ts +177 -177
- package/src/_collections/utils/time.util.spec.ts +50 -50
- package/src/_collections/utils/time.util.ts +219 -219
- package/src/_collections/utils/type-cloning-facility.util.ts +121 -121
- package/src/_collections/utils/utilities.util.ts +130 -130
- package/src/_enums/basic-property-type.enum.ts +9 -9
- package/src/_enums/data-model-type.enum.ts +13 -13
- package/src/_enums/day-of-week.enum.ts +28 -28
- package/src/_enums/error-level.enum.ts +17 -17
- package/src/_enums/index.ts +16 -16
- package/src/_enums/location/index.ts +3 -3
- package/src/_enums/location/region.enum.ts +9 -9
- package/src/_enums/location/sub-region.enum.ts +26 -26
- package/src/_enums/location/subdivision-region-type.enum.ts +44 -44
- package/src/_enums/log-style.enum.ts +30 -30
- package/src/_enums/month.enum.ts +16 -16
- package/src/_enums/pipe.enum.ts +45 -45
- package/src/_enums/range-pipe-setting.enum.ts +11 -11
- package/src/_enums/time/day-of-week.enum.ts +28 -28
- package/src/_enums/time/index.ts +3 -3
- package/src/_enums/time/month.enum.ts +16 -16
- package/src/_enums/time/relative-date.enum.ts +13 -13
- package/src/_models/control-models/daily-usage-data.control-model.ts +21 -21
- package/src/_models/control-models/data-model-params.control-model.ts +39 -39
- package/src/_models/control-models/data-property-params.control-model.ts +106 -106
- package/src/_models/control-models/error.control-model.spec.ts +753 -716
- package/src/_models/control-models/error.control-model.ts +722 -722
- package/src/_models/control-models/index.ts +10 -10
- package/src/_models/control-models/poll.control-model.ts +113 -113
- package/src/_models/control-models/range-value.control-model.ts +142 -142
- package/src/_models/control-models/usage-action.control-model.ts +15 -15
- package/src/_models/control-models/usage-data.control-model.ts +20 -20
- package/src/_models/data-models/custom-data.data-model.ts +28 -28
- package/src/_models/data-models/index.ts +5 -5
- package/src/_models/data-models/metadata.data-model.ts +83 -83
- package/src/_models/data-models/usage-session.data-model.ts +53 -53
- package/src/_models/index.ts +12 -12
- package/src/_models/interfaces/error-defaults.interface.ts +11 -11
- package/src/_models/interfaces/index.ts +11 -8
- package/src/_models/interfaces/location/country-division.interface.ts +7 -7
- package/src/_models/interfaces/location/country-iso.interface.ts +21 -21
- package/src/_models/interfaces/location/country-phone-code.interface.ts +7 -7
- package/src/_models/interfaces/location/division-collection.interface.ts +10 -10
- package/src/_models/interfaces/location/division-region-data.interface.ts +8 -8
- package/src/_models/interfaces/location/geo-ip-location.interface.ts +26 -26
- package/src/_models/interfaces/location/index.ts +10 -10
- package/src/_models/interfaces/location/location-coordinates.interface.ts +5 -5
- package/src/_models/interfaces/multi-pipe-settings.type.ts +7 -7
- package/src/_models/interfaces/paged.interface.ts +11 -11
- package/src/_models/interfaces/pipe-transforms.interface.ts +29 -29
- package/src/_models/interfaces/random-weight.interface.ts +7 -7
- package/src/_models/interfaces/route-settings.interface.ts +11 -11
- package/src/_modules/collections.index.ts +2 -2
- package/src/_modules/constants.index.ts +2 -2
- package/src/_modules/custom-data-module.index.ts +6 -6
- package/src/_modules/data-modules.index.ts +9 -9
- package/src/_modules/enums.index.ts +2 -2
- package/src/_modules/error-module.index.ts +8 -8
- package/src/_modules/location.index.ts +15 -15
- package/src/_modules/models.index.ts +2 -2
- package/src/_modules/shared-service.index.ts +9 -9
- package/src/_modules/test-module.index.ts +5 -5
- package/src/_modules/usage-module.index.ts +10 -10
- package/tsconfig.json +29 -29
- package/tslint.json +153 -153
- package/build/_enums/region.enum.d.ts +0 -8
- package/build/_enums/region.enum.d.ts.map +0 -1
- package/build/_enums/region.enum.js +0 -12
- package/build/_enums/region.enum.js.map +0 -1
- package/build/_enums/relative-date.enum.d.ts +0 -9
- package/build/_enums/relative-date.enum.d.ts.map +0 -1
- package/build/_enums/relative-date.enum.js +0 -13
- package/build/_enums/relative-date.enum.js.map +0 -1
- package/build/_enums/sub-region.enum.d.ts +0 -20
- package/build/_enums/sub-region.enum.d.ts.map +0 -1
- package/build/_enums/sub-region.enum.js +0 -24
- package/build/_enums/sub-region.enum.js.map +0 -1
- package/build/_enums/subdivision-region-type.enum.d.ts +0 -41
- package/build/_enums/subdivision-region-type.enum.d.ts.map +0 -1
- package/build/_enums/subdivision-region-type.enum.js +0 -46
- package/build/_enums/subdivision-region-type.enum.js.map +0 -1
- package/src/_enums/region.enum.ts +0 -9
- package/src/_enums/relative-date.enum.ts +0 -13
- package/src/_enums/sub-region.enum.ts +0 -26
- package/src/_enums/subdivision-region-type.enum.ts +0 -44
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export type DFM_RouteSettings<T> = DynamoFM_Route_Settings<T>;
|
|
3
|
-
export type DFM_RouteS<T> = DynamoFM_Route_Settings<T>;
|
|
4
|
-
export interface DynamoFM_Route_Settings<T> {
|
|
5
|
-
mainRoute: string;
|
|
6
|
-
|
|
7
|
-
/** TODO ezitten tökszar mert nem ellenőriz típust */
|
|
8
|
-
endPoints: {
|
|
9
|
-
[key in T as string]: string
|
|
10
|
-
};
|
|
11
|
-
}
|
|
1
|
+
|
|
2
|
+
export type DFM_RouteSettings<T> = DynamoFM_Route_Settings<T>;
|
|
3
|
+
export type DFM_RouteS<T> = DynamoFM_Route_Settings<T>;
|
|
4
|
+
export interface DynamoFM_Route_Settings<T> {
|
|
5
|
+
mainRoute: string;
|
|
6
|
+
|
|
7
|
+
/** TODO ezitten tökszar mert nem ellenőriz típust */
|
|
8
|
+
endPoints: {
|
|
9
|
+
[key in T as string]: string
|
|
10
|
+
};
|
|
11
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export * from '../_collections/utils';
|
|
1
|
+
|
|
2
|
+
export * from '../_collections/utils';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export * from '../_collections/constants';
|
|
1
|
+
|
|
2
|
+
export * from '../_collections/constants';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
// CUSTOM-DATA MODULE
|
|
3
|
-
export * from '../_models/data-models/custom-data.data-model';
|
|
4
|
-
export * from '../_collections/constants/module-settings/custom-data-module-settings.const';
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
|
|
2
|
+
// CUSTOM-DATA MODULE
|
|
3
|
+
export * from '../_models/data-models/custom-data.data-model';
|
|
4
|
+
export * from '../_collections/constants/module-settings/custom-data-module-settings.const';
|
|
5
|
+
|
|
6
|
+
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
// DATA MODULE
|
|
3
|
-
export * from '../_models/data-models/metadata.data-model';
|
|
4
|
-
export * from '../_models/control-models/data-model-params.control-model';
|
|
5
|
-
export * from '../_models/control-models/data-property-params.control-model';
|
|
6
|
-
export * from '../_models/control-models/error.control-model';
|
|
7
|
-
export * from '../_enums/data-model-type.enum';
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
|
|
2
|
+
// DATA MODULE
|
|
3
|
+
export * from '../_models/data-models/metadata.data-model';
|
|
4
|
+
export * from '../_models/control-models/data-model-params.control-model';
|
|
5
|
+
export * from '../_models/control-models/data-property-params.control-model';
|
|
6
|
+
export * from '../_models/control-models/error.control-model';
|
|
7
|
+
export * from '../_enums/data-model-type.enum';
|
|
8
|
+
|
|
9
|
+
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export * from '../_enums';
|
|
1
|
+
|
|
2
|
+
export * from '../_enums';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
// ERROR MODULE
|
|
3
|
-
export * from '../_models/control-models/error.control-model';
|
|
4
|
-
export * from '../_collections/constants/error-defaults.const';
|
|
5
|
-
export * from '../_models/interfaces/error-defaults.interface';
|
|
6
|
-
export * from '../_enums/error-level.enum';
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
|
|
2
|
+
// ERROR MODULE
|
|
3
|
+
export * from '../_models/control-models/error.control-model';
|
|
4
|
+
export * from '../_collections/constants/error-defaults.const';
|
|
5
|
+
export * from '../_models/interfaces/error-defaults.interface';
|
|
6
|
+
export * from '../_enums/error-level.enum';
|
|
7
|
+
|
|
8
|
+
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
// INTERFACES
|
|
3
|
-
export * from '../_models/interfaces/location';
|
|
4
|
-
|
|
5
|
-
// ENUMS
|
|
6
|
-
export * from '../_enums/location/region.enum';
|
|
7
|
-
export * from '../_enums/location/sub-region.enum';
|
|
8
|
-
export * from '../_enums/location/subdivision-region-type.enum';
|
|
9
|
-
|
|
10
|
-
// UTILS
|
|
11
|
-
export * from '../_collections/utils/location.util';
|
|
12
|
-
export * from '../_collections/utils/regions.util';
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
|
|
2
|
+
// INTERFACES
|
|
3
|
+
export * from '../_models/interfaces/location';
|
|
4
|
+
|
|
5
|
+
// ENUMS
|
|
6
|
+
export * from '../_enums/location/region.enum';
|
|
7
|
+
export * from '../_enums/location/sub-region.enum';
|
|
8
|
+
export * from '../_enums/location/subdivision-region-type.enum';
|
|
9
|
+
|
|
10
|
+
// UTILS
|
|
11
|
+
export * from '../_collections/utils/location.util';
|
|
12
|
+
export * from '../_collections/utils/regions.util';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export * from '../_models';
|
|
1
|
+
|
|
2
|
+
export * from '../_models';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
// SHARED SERVICE MODULE
|
|
3
|
-
export * from '../_collections/utils/shared.static-service';
|
|
4
|
-
export * from '../_collections/constants/times.const';
|
|
5
|
-
export * from '../_enums/log-style.enum';
|
|
6
|
-
export * from '../_models/control-models/error.control-model';
|
|
7
|
-
export * from '../_models/control-models/poll.control-model';
|
|
8
|
-
export * from '../_models/interfaces/location/location-coordinates.interface';
|
|
9
|
-
export * from '../_models/interfaces/location/geo-ip-location.interface';
|
|
1
|
+
|
|
2
|
+
// SHARED SERVICE MODULE
|
|
3
|
+
export * from '../_collections/utils/shared.static-service';
|
|
4
|
+
export * from '../_collections/constants/times.const';
|
|
5
|
+
export * from '../_enums/log-style.enum';
|
|
6
|
+
export * from '../_models/control-models/error.control-model';
|
|
7
|
+
export * from '../_models/control-models/poll.control-model';
|
|
8
|
+
export * from '../_models/interfaces/location/location-coordinates.interface';
|
|
9
|
+
export * from '../_models/interfaces/location/geo-ip-location.interface';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
// TEST MODULE
|
|
3
|
-
export * from '../_collections/constants/module-settings/test-module-settings.const';
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
|
|
2
|
+
// TEST MODULE
|
|
3
|
+
export * from '../_collections/constants/module-settings/test-module-settings.const';
|
|
4
|
+
|
|
5
|
+
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
// USAGE MODULE
|
|
3
|
-
export * from '../_models/data-models/usage-session.data-model';
|
|
4
|
-
export * from '../_collections/constants/module-settings/usage-module-settings.const';
|
|
5
|
-
export * from '../_models/control-models/usage-data.control-model';
|
|
6
|
-
export * from '../_models/control-models/daily-usage-data.control-model';
|
|
7
|
-
export * from '../_models/control-models/usage-action.control-model';
|
|
8
|
-
export * from '../_enums/time/relative-date.enum';
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
|
|
2
|
+
// USAGE MODULE
|
|
3
|
+
export * from '../_models/data-models/usage-session.data-model';
|
|
4
|
+
export * from '../_collections/constants/module-settings/usage-module-settings.const';
|
|
5
|
+
export * from '../_models/control-models/usage-data.control-model';
|
|
6
|
+
export * from '../_models/control-models/daily-usage-data.control-model';
|
|
7
|
+
export * from '../_models/control-models/usage-action.control-model';
|
|
8
|
+
export * from '../_enums/time/relative-date.enum';
|
|
9
|
+
|
|
10
|
+
|
package/tsconfig.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"incremental": false,
|
|
4
|
-
"module": "commonjs",
|
|
5
|
-
"target": "es2022",
|
|
6
|
-
"lib": [
|
|
7
|
-
"es6",
|
|
8
|
-
"es2018",
|
|
9
|
-
"es2022",
|
|
10
|
-
"dom"
|
|
11
|
-
],
|
|
12
|
-
"allowJs": true,
|
|
13
|
-
"declaration": true,
|
|
14
|
-
"declarationMap": true,
|
|
15
|
-
"sourceMap": true,
|
|
16
|
-
"outDir": "./build",
|
|
17
|
-
"importHelpers": true,
|
|
18
|
-
"moduleResolution": "node",
|
|
19
|
-
"esModuleInterop": true,
|
|
20
|
-
"skipLibCheck": true,
|
|
21
|
-
"noImplicitOverride": true,
|
|
22
|
-
"allowSyntheticDefaultImports": true,
|
|
23
|
-
"forceConsistentCasingInFileNames": true,
|
|
24
|
-
"resolveJsonModule": true
|
|
25
|
-
},
|
|
26
|
-
"include": [
|
|
27
|
-
"src",
|
|
28
|
-
"src/_collections/assets/*"
|
|
29
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"incremental": false,
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"target": "es2022",
|
|
6
|
+
"lib": [
|
|
7
|
+
"es6",
|
|
8
|
+
"es2018",
|
|
9
|
+
"es2022",
|
|
10
|
+
"dom"
|
|
11
|
+
],
|
|
12
|
+
"allowJs": true,
|
|
13
|
+
"declaration": true,
|
|
14
|
+
"declarationMap": true,
|
|
15
|
+
"sourceMap": true,
|
|
16
|
+
"outDir": "./build",
|
|
17
|
+
"importHelpers": true,
|
|
18
|
+
"moduleResolution": "node",
|
|
19
|
+
"esModuleInterop": true,
|
|
20
|
+
"skipLibCheck": true,
|
|
21
|
+
"noImplicitOverride": true,
|
|
22
|
+
"allowSyntheticDefaultImports": true,
|
|
23
|
+
"forceConsistentCasingInFileNames": true,
|
|
24
|
+
"resolveJsonModule": true
|
|
25
|
+
},
|
|
26
|
+
"include": [
|
|
27
|
+
"src",
|
|
28
|
+
"src/_collections/assets/*"
|
|
29
|
+
]
|
|
30
30
|
}
|
package/tslint.json
CHANGED
|
@@ -1,153 +1,153 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:recommended",
|
|
3
|
-
"rulesDirectory": [
|
|
4
|
-
"codelyzer"
|
|
5
|
-
],
|
|
6
|
-
"rules": {
|
|
7
|
-
"align": {
|
|
8
|
-
"options": [
|
|
9
|
-
"parameters",
|
|
10
|
-
"statements"
|
|
11
|
-
]
|
|
12
|
-
},
|
|
13
|
-
"array-type": false,
|
|
14
|
-
"arrow-return-shorthand": true,
|
|
15
|
-
"curly": true,
|
|
16
|
-
"deprecation": {
|
|
17
|
-
"severity": "warning"
|
|
18
|
-
},
|
|
19
|
-
"eofline": true,
|
|
20
|
-
"import-blacklist": [
|
|
21
|
-
true,
|
|
22
|
-
"rxjs/Rx"
|
|
23
|
-
],
|
|
24
|
-
"import-spacing": true,
|
|
25
|
-
"indent": {
|
|
26
|
-
"options": [
|
|
27
|
-
"spaces"
|
|
28
|
-
]
|
|
29
|
-
},
|
|
30
|
-
"max-classes-per-file": false,
|
|
31
|
-
"max-line-length": [
|
|
32
|
-
true,
|
|
33
|
-
140
|
|
34
|
-
],
|
|
35
|
-
"member-ordering": [
|
|
36
|
-
true,
|
|
37
|
-
{
|
|
38
|
-
"order": [
|
|
39
|
-
"static-field",
|
|
40
|
-
"instance-field",
|
|
41
|
-
"static-method",
|
|
42
|
-
"instance-method"
|
|
43
|
-
]
|
|
44
|
-
}
|
|
45
|
-
],
|
|
46
|
-
"no-console": [
|
|
47
|
-
true,
|
|
48
|
-
"debug",
|
|
49
|
-
"info",
|
|
50
|
-
"time",
|
|
51
|
-
"timeEnd",
|
|
52
|
-
"trace"
|
|
53
|
-
],
|
|
54
|
-
"no-empty": false,
|
|
55
|
-
"no-inferrable-types": [
|
|
56
|
-
true,
|
|
57
|
-
"ignore-params"
|
|
58
|
-
],
|
|
59
|
-
"no-non-null-assertion": true,
|
|
60
|
-
"no-redundant-jsdoc": true,
|
|
61
|
-
"no-switch-case-fall-through": true,
|
|
62
|
-
"no-var-requires": false,
|
|
63
|
-
"object-literal-key-quotes": [
|
|
64
|
-
true,
|
|
65
|
-
"as-needed"
|
|
66
|
-
],
|
|
67
|
-
"quotemark": [
|
|
68
|
-
true,
|
|
69
|
-
"single"
|
|
70
|
-
],
|
|
71
|
-
"semicolon": {
|
|
72
|
-
"options": [
|
|
73
|
-
"always"
|
|
74
|
-
]
|
|
75
|
-
},
|
|
76
|
-
"space-before-function-paren": {
|
|
77
|
-
"options": {
|
|
78
|
-
"anonymous": "never",
|
|
79
|
-
"asyncArrow": "always",
|
|
80
|
-
"constructor": "never",
|
|
81
|
-
"method": "never",
|
|
82
|
-
"named": "never"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"typedef": [
|
|
86
|
-
true,
|
|
87
|
-
"call-signature"
|
|
88
|
-
],
|
|
89
|
-
"typedef-whitespace": {
|
|
90
|
-
"options": [
|
|
91
|
-
{
|
|
92
|
-
"call-signature": "nospace",
|
|
93
|
-
"index-signature": "nospace",
|
|
94
|
-
"parameter": "nospace",
|
|
95
|
-
"property-declaration": "nospace",
|
|
96
|
-
"variable-declaration": "nospace"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"call-signature": "onespace",
|
|
100
|
-
"index-signature": "onespace",
|
|
101
|
-
"parameter": "onespace",
|
|
102
|
-
"property-declaration": "onespace",
|
|
103
|
-
"variable-declaration": "onespace"
|
|
104
|
-
}
|
|
105
|
-
]
|
|
106
|
-
},
|
|
107
|
-
"variable-name": {
|
|
108
|
-
"options": [
|
|
109
|
-
"ban-keywords",
|
|
110
|
-
"check-format",
|
|
111
|
-
"allow-pascal-case"
|
|
112
|
-
]
|
|
113
|
-
},
|
|
114
|
-
"whitespace": {
|
|
115
|
-
"options": [
|
|
116
|
-
"check-branch",
|
|
117
|
-
"check-decl",
|
|
118
|
-
"check-operator",
|
|
119
|
-
"check-separator",
|
|
120
|
-
"check-type",
|
|
121
|
-
"check-typecast"
|
|
122
|
-
]
|
|
123
|
-
},
|
|
124
|
-
"component-class-suffix": true,
|
|
125
|
-
"contextual-lifecycle": true,
|
|
126
|
-
"directive-class-suffix": true,
|
|
127
|
-
"no-conflicting-lifecycle": true,
|
|
128
|
-
"no-host-metadata-property": true,
|
|
129
|
-
"no-input-rename": true,
|
|
130
|
-
"no-inputs-metadata-property": true,
|
|
131
|
-
"no-output-native": true,
|
|
132
|
-
"no-output-on-prefix": true,
|
|
133
|
-
"no-output-rename": true,
|
|
134
|
-
"no-outputs-metadata-property": true,
|
|
135
|
-
"template-banana-in-box": true,
|
|
136
|
-
"template-no-negated-async": true,
|
|
137
|
-
"use-lifecycle-interface": true,
|
|
138
|
-
"use-pipe-transform-interface": true,
|
|
139
|
-
|
|
140
|
-
"directive-selector": [
|
|
141
|
-
true,
|
|
142
|
-
"attribute",
|
|
143
|
-
"app",
|
|
144
|
-
"camelCase"
|
|
145
|
-
],
|
|
146
|
-
"component-selector": [
|
|
147
|
-
false,
|
|
148
|
-
"element",
|
|
149
|
-
"app",
|
|
150
|
-
"kebab-case"
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends": "tslint:recommended",
|
|
3
|
+
"rulesDirectory": [
|
|
4
|
+
"codelyzer"
|
|
5
|
+
],
|
|
6
|
+
"rules": {
|
|
7
|
+
"align": {
|
|
8
|
+
"options": [
|
|
9
|
+
"parameters",
|
|
10
|
+
"statements"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"array-type": false,
|
|
14
|
+
"arrow-return-shorthand": true,
|
|
15
|
+
"curly": true,
|
|
16
|
+
"deprecation": {
|
|
17
|
+
"severity": "warning"
|
|
18
|
+
},
|
|
19
|
+
"eofline": true,
|
|
20
|
+
"import-blacklist": [
|
|
21
|
+
true,
|
|
22
|
+
"rxjs/Rx"
|
|
23
|
+
],
|
|
24
|
+
"import-spacing": true,
|
|
25
|
+
"indent": {
|
|
26
|
+
"options": [
|
|
27
|
+
"spaces"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"max-classes-per-file": false,
|
|
31
|
+
"max-line-length": [
|
|
32
|
+
true,
|
|
33
|
+
140
|
|
34
|
+
],
|
|
35
|
+
"member-ordering": [
|
|
36
|
+
true,
|
|
37
|
+
{
|
|
38
|
+
"order": [
|
|
39
|
+
"static-field",
|
|
40
|
+
"instance-field",
|
|
41
|
+
"static-method",
|
|
42
|
+
"instance-method"
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"no-console": [
|
|
47
|
+
true,
|
|
48
|
+
"debug",
|
|
49
|
+
"info",
|
|
50
|
+
"time",
|
|
51
|
+
"timeEnd",
|
|
52
|
+
"trace"
|
|
53
|
+
],
|
|
54
|
+
"no-empty": false,
|
|
55
|
+
"no-inferrable-types": [
|
|
56
|
+
true,
|
|
57
|
+
"ignore-params"
|
|
58
|
+
],
|
|
59
|
+
"no-non-null-assertion": true,
|
|
60
|
+
"no-redundant-jsdoc": true,
|
|
61
|
+
"no-switch-case-fall-through": true,
|
|
62
|
+
"no-var-requires": false,
|
|
63
|
+
"object-literal-key-quotes": [
|
|
64
|
+
true,
|
|
65
|
+
"as-needed"
|
|
66
|
+
],
|
|
67
|
+
"quotemark": [
|
|
68
|
+
true,
|
|
69
|
+
"single"
|
|
70
|
+
],
|
|
71
|
+
"semicolon": {
|
|
72
|
+
"options": [
|
|
73
|
+
"always"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
"space-before-function-paren": {
|
|
77
|
+
"options": {
|
|
78
|
+
"anonymous": "never",
|
|
79
|
+
"asyncArrow": "always",
|
|
80
|
+
"constructor": "never",
|
|
81
|
+
"method": "never",
|
|
82
|
+
"named": "never"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"typedef": [
|
|
86
|
+
true,
|
|
87
|
+
"call-signature"
|
|
88
|
+
],
|
|
89
|
+
"typedef-whitespace": {
|
|
90
|
+
"options": [
|
|
91
|
+
{
|
|
92
|
+
"call-signature": "nospace",
|
|
93
|
+
"index-signature": "nospace",
|
|
94
|
+
"parameter": "nospace",
|
|
95
|
+
"property-declaration": "nospace",
|
|
96
|
+
"variable-declaration": "nospace"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"call-signature": "onespace",
|
|
100
|
+
"index-signature": "onespace",
|
|
101
|
+
"parameter": "onespace",
|
|
102
|
+
"property-declaration": "onespace",
|
|
103
|
+
"variable-declaration": "onespace"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"variable-name": {
|
|
108
|
+
"options": [
|
|
109
|
+
"ban-keywords",
|
|
110
|
+
"check-format",
|
|
111
|
+
"allow-pascal-case"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
"whitespace": {
|
|
115
|
+
"options": [
|
|
116
|
+
"check-branch",
|
|
117
|
+
"check-decl",
|
|
118
|
+
"check-operator",
|
|
119
|
+
"check-separator",
|
|
120
|
+
"check-type",
|
|
121
|
+
"check-typecast"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"component-class-suffix": true,
|
|
125
|
+
"contextual-lifecycle": true,
|
|
126
|
+
"directive-class-suffix": true,
|
|
127
|
+
"no-conflicting-lifecycle": true,
|
|
128
|
+
"no-host-metadata-property": true,
|
|
129
|
+
"no-input-rename": true,
|
|
130
|
+
"no-inputs-metadata-property": true,
|
|
131
|
+
"no-output-native": true,
|
|
132
|
+
"no-output-on-prefix": true,
|
|
133
|
+
"no-output-rename": true,
|
|
134
|
+
"no-outputs-metadata-property": true,
|
|
135
|
+
"template-banana-in-box": true,
|
|
136
|
+
"template-no-negated-async": true,
|
|
137
|
+
"use-lifecycle-interface": true,
|
|
138
|
+
"use-pipe-transform-interface": true,
|
|
139
|
+
|
|
140
|
+
"directive-selector": [
|
|
141
|
+
true,
|
|
142
|
+
"attribute",
|
|
143
|
+
"app",
|
|
144
|
+
"camelCase"
|
|
145
|
+
],
|
|
146
|
+
"component-selector": [
|
|
147
|
+
false,
|
|
148
|
+
"element",
|
|
149
|
+
"app",
|
|
150
|
+
"kebab-case"
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"region.enum.d.ts","sourceRoot":"","sources":["../../src/_enums/region.enum.ts"],"names":[],"mappings":"AACA,oBAAY,eAAe;IACzB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,QAAQ,aAAa;CACtB"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DynamoFM_Region = void 0;
|
|
4
|
-
var DynamoFM_Region;
|
|
5
|
-
(function (DynamoFM_Region) {
|
|
6
|
-
DynamoFM_Region["europe"] = "Europe";
|
|
7
|
-
DynamoFM_Region["asia"] = "Asia";
|
|
8
|
-
DynamoFM_Region["africa"] = "Africa";
|
|
9
|
-
DynamoFM_Region["oceania"] = "Oceania";
|
|
10
|
-
DynamoFM_Region["americas"] = "Americas";
|
|
11
|
-
})(DynamoFM_Region || (exports.DynamoFM_Region = DynamoFM_Region = {}));
|
|
12
|
-
//# sourceMappingURL=region.enum.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"region.enum.js","sourceRoot":"","sources":["../../src/_enums/region.enum.ts"],"names":[],"mappings":";;;AACA,IAAY,eAMX;AAND,WAAY,eAAe;IACzB,oCAAiB,CAAA;IACjB,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;AACvB,CAAC,EANW,eAAe,+BAAf,eAAe,QAM1B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"relative-date.enum.d.ts","sourceRoot":"","sources":["../../src/_enums/relative-date.enum.ts"],"names":[],"mappings":"AAEA,oBAAY,qBAAqB;IAC/B,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;CACpB"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DynamoFM_RelativeDate = void 0;
|
|
4
|
-
var DynamoFM_RelativeDate;
|
|
5
|
-
(function (DynamoFM_RelativeDate) {
|
|
6
|
-
DynamoFM_RelativeDate["lastDay"] = "lastDay";
|
|
7
|
-
DynamoFM_RelativeDate["lastWeek"] = "lastWeek";
|
|
8
|
-
DynamoFM_RelativeDate["lastMonth"] = "lastMonth";
|
|
9
|
-
DynamoFM_RelativeDate["lastYear"] = "lastYear";
|
|
10
|
-
DynamoFM_RelativeDate["last10Years"] = "last10Years";
|
|
11
|
-
DynamoFM_RelativeDate["allTime"] = "allTime";
|
|
12
|
-
})(DynamoFM_RelativeDate || (exports.DynamoFM_RelativeDate = DynamoFM_RelativeDate = {}));
|
|
13
|
-
//# sourceMappingURL=relative-date.enum.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"relative-date.enum.js","sourceRoot":"","sources":["../../src/_enums/relative-date.enum.ts"],"names":[],"mappings":";;;AAEA,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAC/B,4CAAmB,CAAA;IACnB,8CAAqB,CAAA;IACrB,gDAAuB,CAAA;IACvB,8CAAqB,CAAA;IACrB,oDAA2B,CAAA;IAC3B,4CAAmB,CAAA;AACrB,CAAC,EAPW,qBAAqB,qCAArB,qBAAqB,QAOhC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare enum DynamoFM_SubRegion {
|
|
2
|
-
northernEurope = "Northern Europe",
|
|
3
|
-
southernEurope = "Southern Europe",
|
|
4
|
-
westernEurope = "Western Europe",
|
|
5
|
-
easternEurope = "Eastern Europe",
|
|
6
|
-
northernAfrica = "Northern Africa",
|
|
7
|
-
subSaharanAfrica = "Sub-Saharan Africa",
|
|
8
|
-
northernAmerica = "Northern America",
|
|
9
|
-
latinAmericaAndTheCaribbean = "Latin America and the Caribbean",
|
|
10
|
-
southEasternAsia = "South-eastern Asia",
|
|
11
|
-
easternAsia = "Eastern Asia",
|
|
12
|
-
southernAsia = "Southern Asia",
|
|
13
|
-
westernAsia = "Western Asia",
|
|
14
|
-
centralAsia = "Central Asia",
|
|
15
|
-
australiaAndNewZealand = "Australia and New Zealand",
|
|
16
|
-
melanesia = "Melanesia",
|
|
17
|
-
micronesia = "Micronesia",
|
|
18
|
-
polynesia = "Polynesia"
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=sub-region.enum.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sub-region.enum.d.ts","sourceRoot":"","sources":["../../src/_enums/sub-region.enum.ts"],"names":[],"mappings":"AACA,oBAAY,kBAAkB;IAC5B,cAAc,oBAAoB;IAClC,cAAc,oBAAoB;IAClC,aAAa,mBAAmB;IAChC,aAAa,mBAAmB;IAEhC,cAAc,oBAAoB;IAClC,gBAAgB,uBAAuB;IAEvC,eAAe,qBAAqB;IACpC,2BAA2B,oCAAoC;IAE/D,gBAAgB,uBAAuB;IACvC,WAAW,iBAAiB;IAC5B,YAAY,kBAAkB;IAE9B,WAAW,iBAAiB;IAC5B,WAAW,iBAAiB;IAE5B,sBAAsB,8BAA8B;IACpD,SAAS,cAAc;IACvB,UAAU,eAAe;IACzB,SAAS,cAAc;CACxB"}
|