@candlerip/shared3 0.0.15 → 0.0.17
Sign up to get free protection for your applications and to get access to all the features.
- package/_devops/npm/npm-update-packages.sh +2 -1
- package/package.json +1 -1
- package/src/environment/environment-variables/domains/index.d.ts +4 -0
- package/src/project/config/domains/cache-service-config/index.d.ts +2 -0
- package/src/project/config/domains/cache-service-config/index.js +1 -0
- package/src/project/config/domains/index.d.ts +2 -0
- package/src/project/config/domains/index.js +2 -0
- package/src/project/config/domains/redis-config/index.d.ts +2 -0
- package/src/project/config/domains/redis-config/index.js +1 -0
- package/src/project/config-name/domains/config-name/index.d.ts +1 -1
- package/src/project/config-name/domains/config-name-type-map/index.d.ts +3 -1
- package/src/project/sub-project/sub-project-name/configs/index.d.ts +1 -1
- package/src/project/sub-project/sub-project-name/configs/index.js +1 -1
package/package.json
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { SubProjectName } from '../../../sub-project/index.js';
|
2
|
-
export type ConfigName = Exclude<SubProjectName, 'config'>;
|
2
|
+
export type ConfigName = Exclude<SubProjectName, 'backend' | 'config'>;
|
@@ -1,5 +1,7 @@
|
|
1
|
-
import { BackendInitConfig, DictionaryServiceConfig } from '../../../sub-project/index.js';
|
1
|
+
import { BackendInitConfig, CacheServiceConfig, DictionaryServiceConfig, RedisConfig } from '../../../sub-project/index.js';
|
2
2
|
export type ConfigNameTypeMap = {
|
3
3
|
'backend-init': BackendInitConfig;
|
4
|
+
'cache-service': CacheServiceConfig;
|
4
5
|
'dictionary-service': DictionaryServiceConfig;
|
6
|
+
redis: RedisConfig;
|
5
7
|
};
|
@@ -1 +1 @@
|
|
1
|
-
export declare const SUB_PROJECT_NAMES: readonly ["backend-init", "dictionary-service", "config"];
|
1
|
+
export declare const SUB_PROJECT_NAMES: readonly ["backend-init", "backend", "dictionary-service", "cache-service", "config", "redis"];
|
@@ -1 +1 @@
|
|
1
|
-
export const SUB_PROJECT_NAMES = ['backend-init', 'dictionary-service', 'config'];
|
1
|
+
export const SUB_PROJECT_NAMES = ['backend-init', 'backend', 'dictionary-service', 'cache-service', 'config', 'redis'];
|