@genesislcap/blank-app-seed 3.40.0-prerelease.3 → 3.40.0-prerelease.4

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.40.0-prerelease.3",
4
+ "version": "3.40.0-prerelease.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.40.0-prerelease.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.40.0-prerelease.3...v3.40.0-prerelease.4) (2025-02-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * include auth in config [FUI-2196](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2196) 1c549d5
9
+
3
10
  ## [3.40.0-prerelease.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.40.0-prerelease.2...v3.40.0-prerelease.3) (2025-02-14)
4
11
 
5
12
 
@@ -1,5 +1,5 @@
1
1
  import { getUser, navigateTo } from '@genesislcap/foundation-auth';
2
- import { Connect } from '@genesislcap/foundation-comms';
2
+ import { Auth, Connect } from '@genesislcap/foundation-comms';
3
3
  import { FoundationRouterConfiguration } from '@genesislcap/foundation-ui';
4
4
  import { GENESIS_SOCKET_URL, PUBLIC_PATH } from '@genesislcap/foundation-utils';
5
5
  import { defaultLayout, loginLayout } from '../layouts';
@@ -28,6 +28,7 @@ const publicPath = typeof PUBLIC_PATH !== 'undefined' ? PUBLIC_PATH : '';
28
28
 
29
29
  export class MainRouterConfig extends FoundationRouterConfiguration<LoginSettings> {
30
30
  @Connect private connect: Connect;
31
+ @Auth private auth: Auth;
31
32
 
32
33
  async configure() {
33
34
  this.configureAnalytics();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.40.0-prerelease.3",
4
+ "version": "3.40.0-prerelease.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"