@genesislcap/foundation-store 14.203.0 → 14.203.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,3 @@
1
1
  export * from './store';
2
+ export * from './utils';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
@@ -1,2 +1,6 @@
1
+ /**
2
+ * Logger for the foundation-store package
3
+ * @public
4
+ */
1
5
  export declare const logger: import("@genesislcap/foundation-logger").Logger;
2
6
  //# sourceMappingURL=logger.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logger.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,iDAAmC,CAAC"}
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../../src/utils/logger.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,MAAM,iDAAmC,CAAC"}
package/dist/esm/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export * from './store';
2
+ export * from './utils';
@@ -1,2 +1,6 @@
1
1
  import { createLogger } from '@genesislcap/foundation-logger';
2
+ /**
3
+ * Logger for the foundation-store package
4
+ * @public
5
+ */
2
6
  export const logger = createLogger('foundation-store');
@@ -2023,6 +2023,34 @@
2023
2023
  "endIndex": 2
2024
2024
  }
2025
2025
  },
2026
+ {
2027
+ "kind": "Variable",
2028
+ "canonicalReference": "@genesislcap/foundation-store!logger:var",
2029
+ "docComment": "/**\n * Logger for the foundation-store package\n *\n * @public\n */\n",
2030
+ "excerptTokens": [
2031
+ {
2032
+ "kind": "Content",
2033
+ "text": "logger: "
2034
+ },
2035
+ {
2036
+ "kind": "Content",
2037
+ "text": "import(\"@genesislcap/foundation-logger\")."
2038
+ },
2039
+ {
2040
+ "kind": "Reference",
2041
+ "text": "Logger",
2042
+ "canonicalReference": "@genesislcap/foundation-logger!Logger:interface"
2043
+ }
2044
+ ],
2045
+ "fileUrlPath": "src/utils/logger.ts",
2046
+ "isReadonly": true,
2047
+ "releaseTag": "Public",
2048
+ "name": "logger",
2049
+ "variableTypeTokenRange": {
2050
+ "startIndex": 1,
2051
+ "endIndex": 3
2052
+ }
2053
+ },
2026
2054
  {
2027
2055
  "kind": "Variable",
2028
2056
  "canonicalReference": "@genesislcap/foundation-store!registerStore:var",
@@ -5,6 +5,7 @@ import type { EventDetailMap } from '@genesislcap/foundation-events';
5
5
  import { ExecutionContext } from '@microsoft/fast-element';
6
6
  import { InterfaceSymbol } from '@microsoft/fast-foundation';
7
7
  import { Key } from '@microsoft/fast-foundation';
8
+ import { Logger } from '@genesislcap/foundation-logger';
8
9
  import { Observable } from 'rxjs';
9
10
 
10
11
  /**
@@ -379,6 +380,12 @@ export declare enum EventListenerType {
379
380
  */
380
381
  export declare type KeyOrKeys<TEventDetailMaps extends EventDetailMap> = keyof TEventDetailMaps | (keyof TEventDetailMaps)[];
381
382
 
383
+ /**
384
+ * Logger for the foundation-store package
385
+ * @public
386
+ */
387
+ export declare const logger: Logger;
388
+
382
389
  /**
383
390
  * Creates a dependency injection key for the store being registered.
384
391
  * @param Base - The store fragment class.
@@ -0,0 +1,13 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-store](./foundation-store.md) &gt; [logger](./foundation-store.logger.md)
4
+
5
+ ## logger variable
6
+
7
+ Logger for the foundation-store package
8
+
9
+ **Signature:**
10
+
11
+ ```typescript
12
+ logger: import("@genesislcap/foundation-logger").Logger
13
+ ```
@@ -26,6 +26,7 @@
26
26
  | Variable | Description |
27
27
  | --- | --- |
28
28
  | [createErrorMap](./foundation-store.createerrormap.md) | A factory to create the error map. |
29
+ | [logger](./foundation-store.logger.md) | Logger for the foundation-store package |
29
30
  | [registerStore](./foundation-store.registerstore.md) | Creates a dependency injection key for the store being registered. |
30
31
 
31
32
  ## Type Aliases
@@ -11,6 +11,7 @@ import type { EventDetailMap } from '@genesislcap/foundation-events';
11
11
  import { ExecutionContext } from '@microsoft/fast-element';
12
12
  import { InterfaceSymbol } from '@microsoft/fast-foundation';
13
13
  import { Key } from '@microsoft/fast-foundation';
14
+ import { Logger } from '@genesislcap/foundation-logger';
14
15
  import { Observable } from 'rxjs';
15
16
 
16
17
  // @public
@@ -108,6 +109,9 @@ export enum EventListenerType {
108
109
  // @internal (undocumented)
109
110
  export type KeyOrKeys<TEventDetailMaps extends EventDetailMap> = keyof TEventDetailMaps | (keyof TEventDetailMaps)[];
110
111
 
112
+ // @public
113
+ export const logger: Logger;
114
+
111
115
  // @public
112
116
  export const registerStore: <K extends Key>(Base: Constructable<Store>, name?: string) => InterfaceSymbol<K>;
113
117
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-store",
3
3
  "description": "Genesis Foundation Store",
4
- "version": "14.203.0",
4
+ "version": "14.203.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -36,19 +36,19 @@
36
36
  }
37
37
  },
38
38
  "devDependencies": {
39
- "@genesislcap/foundation-testing": "14.203.0",
40
- "@genesislcap/genx": "14.203.0",
41
- "@genesislcap/rollup-builder": "14.203.0",
42
- "@genesislcap/ts-builder": "14.203.0",
43
- "@genesislcap/uvu-playwright-builder": "14.203.0",
44
- "@genesislcap/vite-builder": "14.203.0",
45
- "@genesislcap/webpack-builder": "14.203.0",
39
+ "@genesislcap/foundation-testing": "14.203.1",
40
+ "@genesislcap/genx": "14.203.1",
41
+ "@genesislcap/rollup-builder": "14.203.1",
42
+ "@genesislcap/ts-builder": "14.203.1",
43
+ "@genesislcap/uvu-playwright-builder": "14.203.1",
44
+ "@genesislcap/vite-builder": "14.203.1",
45
+ "@genesislcap/webpack-builder": "14.203.1",
46
46
  "rimraf": "^5.0.0"
47
47
  },
48
48
  "dependencies": {
49
- "@genesislcap/foundation-events": "14.203.0",
50
- "@genesislcap/foundation-logger": "14.203.0",
51
- "@genesislcap/foundation-utils": "14.203.0",
49
+ "@genesislcap/foundation-events": "14.203.1",
50
+ "@genesislcap/foundation-logger": "14.203.1",
51
+ "@genesislcap/foundation-utils": "14.203.1",
52
52
  "@microsoft/fast-element": "^1.12.0",
53
53
  "@microsoft/fast-foundation": "^2.49.4",
54
54
  "@microsoft/fast-web-utilities": "^5.4.1",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "3f779b9e65169135dc8fea0605f21d0d65ce263b"
67
+ "gitHead": "2d342adc330f867e7bd44979d1e3d8b4d94b14da"
68
68
  }