@candlerip/shared3 0.0.19 → 0.0.21

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -2,4 +2,5 @@ export * from './backend-project-config/index.js';
2
2
  export * from './backend-init-project-config/index.js';
3
3
  export * from './cache-service-project-config/index.js';
4
4
  export * from './dictionary-service-poject-config/index.js';
5
+ export * from './project-config-type-map/index.js';
5
6
  export * from './redis-project-config/index.js';
@@ -2,4 +2,5 @@ export * from './backend-project-config/index.js';
2
2
  export * from './backend-init-project-config/index.js';
3
3
  export * from './cache-service-project-config/index.js';
4
4
  export * from './dictionary-service-poject-config/index.js';
5
+ export * from './project-config-type-map/index.js';
5
6
  export * from './redis-project-config/index.js';
@@ -0,0 +1,12 @@
1
+ import { BackendInitProjectConfig } from '../backend-init-project-config/index.js';
2
+ import { BackendProjectConfig } from '../backend-project-config/index.js';
3
+ import { CacheServiceProjectConfig } from '../cache-service-project-config/index.js';
4
+ import { DictionaryServiceProjectConfig } from '../dictionary-service-poject-config/index.js';
5
+ import { RedisProjectConfig } from '../redis-project-config/index.js';
6
+ export type ProjectConfigTypeMap = {
7
+ 'backend-project-config': BackendProjectConfig;
8
+ 'backend-init-project-config': BackendInitProjectConfig;
9
+ 'cache-service-project-config': CacheServiceProjectConfig;
10
+ 'dictionary-service-project-config': DictionaryServiceProjectConfig;
11
+ 'redis-project-config': RedisProjectConfig;
12
+ };
@@ -1 +1 @@
1
- export declare const PROJECT_CONFIG_NAMES: readonly ["backend-init-config", "backend-config", "dictionary-sevrice", "cache-service", "config", "redis", "shared", "shared-aws"];
1
+ export declare const PROJECT_CONFIG_NAMES: readonly ["backend-init-project-config", "backend-project-config", "dictionary-service-project-config", "cache-service-project-config", "redis-project-config"];
@@ -1,10 +1,7 @@
1
1
  export const PROJECT_CONFIG_NAMES = [
2
- 'backend-init-config',
3
- 'backend-config',
4
- 'dictionary-sevrice',
5
- 'cache-service',
6
- 'config',
7
- 'redis',
8
- 'shared',
9
- 'shared-aws',
2
+ 'backend-init-project-config',
3
+ 'backend-project-config',
4
+ 'dictionary-service-project-config',
5
+ 'cache-service-project-config',
6
+ 'redis-project-config',
10
7
  ];