@genesislcap/blank-app-seed 3.30.0-prerelease.19 → 3.30.0-prerelease.20
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.
- package/.genx/package.json +1 -1
- package/.genx/prompts/api.js +2 -9
- package/.genx/static.js +0 -1
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
package/.genx/package.json
CHANGED
package/.genx/prompts/api.js
CHANGED
|
@@ -7,19 +7,12 @@ const ssoIntro = () => console.log(TEXTS.INTRO_API_SSO);
|
|
|
7
7
|
module.exports = async (inquirer, prevAns = {}) => {
|
|
8
8
|
apiHostIntro();
|
|
9
9
|
const { apiHost = prevAns.apiHost } = await inquirer.prompt([
|
|
10
|
-
{
|
|
11
|
-
name: 'setApiHost',
|
|
12
|
-
type: 'confirm',
|
|
13
|
-
message: TEXTS.MESSAGE_API_SET_HOST,
|
|
14
|
-
when: !prevAns.apiHost,
|
|
15
|
-
default: true,
|
|
16
|
-
},
|
|
17
10
|
{
|
|
18
11
|
name: 'apiHost',
|
|
19
12
|
type: 'input',
|
|
20
13
|
message: TEXTS.MESSAGE_API_HOST,
|
|
21
|
-
when:
|
|
22
|
-
default:
|
|
14
|
+
when: !prevAns.apiHost,
|
|
15
|
+
default: 'ws://localhost:9064',
|
|
23
16
|
validate: websocketValidator,
|
|
24
17
|
},
|
|
25
18
|
]);
|
package/.genx/static.js
CHANGED
|
@@ -67,7 +67,6 @@ const TEXTS = {
|
|
|
67
67
|
'You can override the default Genesis server URL used during local developent.',
|
|
68
68
|
INTRO_API_SSO:
|
|
69
69
|
'Optionally, you can enable the SSO function, which will redirect to identity provider before starting the application (given we only have one identity provider).',
|
|
70
|
-
MESSAGE_API_SET_HOST: 'Set API Host',
|
|
71
70
|
MESSAGE_API_HOST: 'API Host (with WebSocket prefix and suffix if any)',
|
|
72
71
|
MESSAGE_API_SSO: 'Init SSO connection before loading application',
|
|
73
72
|
MESSAGE_SERVER_DESCRIPTION: 'Project Description',
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.30.0-prerelease.20](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.19...v3.30.0-prerelease.20) (2024-10-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* reduce apiHost steps when using genx in prompt mode - [FUI-2207](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2207) (#343) f6ce411
|
|
9
|
+
|
|
3
10
|
## [3.30.0-prerelease.19](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.18...v3.30.0-prerelease.19) (2024-10-03)
|
|
4
11
|
|
|
5
12
|
|