@common-stack/server-core 3.0.2-alpha.0 → 3.0.2-alpha.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.
@@ -15,9 +15,6 @@ export declare enum ConfigurationScope {
15
15
  export interface IWebsocketConfig {
16
16
  [key: string]: any;
17
17
  }
18
- export interface IPreferences<T = ConfigurationScope> {
19
- [key: string]: IPreferencesData<T>;
20
- }
21
18
  export interface IPreferencesData<T = ConfigurationScope> {
22
19
  type?: string | string[];
23
20
  default?: string | boolean | number | any;
@@ -32,6 +29,9 @@ export interface IPreferencesData<T = ConfigurationScope> {
32
29
  };
33
30
  [key: string]: any;
34
31
  }
32
+ export interface IPreferences<T = ConfigurationScope> {
33
+ [key: string]: IPreferencesData<T>;
34
+ }
35
35
  /**
36
36
  * Formatted preferences data
37
37
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/server-core",
3
- "version": "3.0.2-alpha.0",
3
+ "version": "3.0.2-alpha.1",
4
4
  "description": "common core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -50,7 +50,7 @@
50
50
  "publishConfig": {
51
51
  "access": "public"
52
52
  },
53
- "gitHead": "2a52080d7cfede62388ca718a8dfcaf238aeaf51",
53
+ "gitHead": "0304005c45dc61ac15df54ba07ef76e475213c01",
54
54
  "typescript": {
55
55
  "definition": "lib/index.d.ts"
56
56
  }