@futdevpro/fsm-dynamo 1.15.15 → 1.15.16

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.
@@ -5,7 +5,7 @@ export interface DyFM_RequireEnv_Options {
5
5
  /**
6
6
  * Stable error code emitted on the DyFM_Error when the env-var is missing
7
7
  * and no fallback is configured. Convention: `<PACKAGE>-ENV-MISSING-<KEY>`,
8
- * e.g. `DyNM-ENV-MISSING-STORAGE-KEY`, `FDP-ENV-MISSING-AUTH-KEY`.
8
+ * e.g. `DyNM-ENV-MISSING-STORAGE-KEY`, `FDP-ENV-MISSING-CORE-FE-AUTH-KEY`.
9
9
  */
10
10
  errorCode: string;
11
11
  /**
@@ -60,8 +60,8 @@ export interface DyFM_RequireEnv_Options {
60
60
  * import { DyFM_requireEnv } from '@futdevpro/fsm-dynamo';
61
61
  *
62
62
  * export const FDP_keysEnv_settingsBase = {
63
- * authKey: DyFM_requireEnv('FDP_AUTH_KEY', {
64
- * errorCode: 'FDP-ENV-MISSING-AUTH-KEY',
63
+ * authKey: DyFM_requireEnv('FDP_CORE_FE_AUTH_KEY', {
64
+ * errorCode: 'FDP-ENV-MISSING-CORE-FE-AUTH-KEY',
65
65
  * issuerService: 'fdp-templates',
66
66
  * fallback: '<inherit literal>', // remove for Wave 3
67
67
  * }),
@@ -33,8 +33,8 @@ const global_settings_const_1 = require("../constants/global-settings.const");
33
33
  * import { DyFM_requireEnv } from '@futdevpro/fsm-dynamo';
34
34
  *
35
35
  * export const FDP_keysEnv_settingsBase = {
36
- * authKey: DyFM_requireEnv('FDP_AUTH_KEY', {
37
- * errorCode: 'FDP-ENV-MISSING-AUTH-KEY',
36
+ * authKey: DyFM_requireEnv('FDP_CORE_FE_AUTH_KEY', {
37
+ * errorCode: 'FDP-ENV-MISSING-CORE-FE-AUTH-KEY',
38
38
  * issuerService: 'fdp-templates',
39
39
  * fallback: '<inherit literal>', // remove for Wave 3
40
40
  * }),
@@ -29,7 +29,7 @@ export interface DyFM_Global_Settings {
29
29
  * import { environment } from './environments/environment';
30
30
  *
31
31
  * DyFM_global_settings.envOverrides = {
32
- * FDP_AUTH_KEY: environment.authKey,
32
+ * FDP_CORE_FE_AUTH_KEY: environment.authKey,
33
33
  * FDP_EXTRA_AUTH_STORAGE_KEY: environment.extraAuthStorageKey,
34
34
  * DyNM_STORAGE_ENCRYPTION_KEY: environment.storageEncryptionKey,
35
35
  * };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.15.15",
3
+ "version": "01.15.16",
4
4
  "description": "Full Stack Model Collection for Dynamic (NodeJS-Typescript) Framework called Dynamo, by Future Development Ltd.",
5
5
  "DyBu_settings": {
6
6
  "packageType": "full-stack-package",
@@ -9,7 +9,7 @@ export interface DyFM_RequireEnv_Options {
9
9
  /**
10
10
  * Stable error code emitted on the DyFM_Error when the env-var is missing
11
11
  * and no fallback is configured. Convention: `<PACKAGE>-ENV-MISSING-<KEY>`,
12
- * e.g. `DyNM-ENV-MISSING-STORAGE-KEY`, `FDP-ENV-MISSING-AUTH-KEY`.
12
+ * e.g. `DyNM-ENV-MISSING-STORAGE-KEY`, `FDP-ENV-MISSING-CORE-FE-AUTH-KEY`.
13
13
  */
14
14
  errorCode: string;
15
15
 
@@ -69,8 +69,8 @@ export interface DyFM_RequireEnv_Options {
69
69
  * import { DyFM_requireEnv } from '@futdevpro/fsm-dynamo';
70
70
  *
71
71
  * export const FDP_keysEnv_settingsBase = {
72
- * authKey: DyFM_requireEnv('FDP_AUTH_KEY', {
73
- * errorCode: 'FDP-ENV-MISSING-AUTH-KEY',
72
+ * authKey: DyFM_requireEnv('FDP_CORE_FE_AUTH_KEY', {
73
+ * errorCode: 'FDP-ENV-MISSING-CORE-FE-AUTH-KEY',
74
74
  * issuerService: 'fdp-templates',
75
75
  * fallback: '<inherit literal>', // remove for Wave 3
76
76
  * }),
@@ -34,7 +34,7 @@ export interface DyFM_Global_Settings {
34
34
  * import { environment } from './environments/environment';
35
35
  *
36
36
  * DyFM_global_settings.envOverrides = {
37
- * FDP_AUTH_KEY: environment.authKey,
37
+ * FDP_CORE_FE_AUTH_KEY: environment.authKey,
38
38
  * FDP_EXTRA_AUTH_STORAGE_KEY: environment.extraAuthStorageKey,
39
39
  * DyNM_STORAGE_ENCRYPTION_KEY: environment.storageEncryptionKey,
40
40
  * };