@genesislcap/foundation-utils 14.238.1 → 14.239.0

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.
@@ -711,6 +711,87 @@
711
711
  },
712
712
  "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
713
713
  "privacy": "public"
714
+ },
715
+ {
716
+ "kind": "variable",
717
+ "name": "LOGIN_URL",
718
+ "type": {
719
+ "text": "string"
720
+ },
721
+ "default": "'/sm/event-login-auth'",
722
+ "privacy": "public"
723
+ },
724
+ {
725
+ "kind": "variable",
726
+ "name": "LOGIN_REFRESH_URL",
727
+ "type": {
728
+ "text": "string"
729
+ },
730
+ "default": "'/sm/event-login-auth'",
731
+ "privacy": "public"
732
+ },
733
+ {
734
+ "kind": "variable",
735
+ "name": "LOGIN_DETAILS_URL",
736
+ "type": {
737
+ "text": "string"
738
+ },
739
+ "default": "'/sm/event-login-details'",
740
+ "privacy": "public"
741
+ },
742
+ {
743
+ "kind": "variable",
744
+ "name": "LOGOUT_URL",
745
+ "type": {
746
+ "text": "string"
747
+ },
748
+ "default": "'/sm/event-logout'",
749
+ "privacy": "public"
750
+ },
751
+ {
752
+ "kind": "variable",
753
+ "name": "CHANGE_PASSWORD_URL",
754
+ "type": {
755
+ "text": "string"
756
+ },
757
+ "default": "'/sm/event-change-user-password'",
758
+ "privacy": "public"
759
+ },
760
+ {
761
+ "kind": "variable",
762
+ "name": "FORGOT_PASSWORD_URL",
763
+ "type": {
764
+ "text": "string"
765
+ },
766
+ "default": "'/sm/event-self-service-password-reset'",
767
+ "privacy": "public"
768
+ },
769
+ {
770
+ "kind": "variable",
771
+ "name": "RESET_PASSWORD_URL",
772
+ "type": {
773
+ "text": "string"
774
+ },
775
+ "default": "'/sm/event-password-reset-action'",
776
+ "privacy": "public"
777
+ },
778
+ {
779
+ "kind": "variable",
780
+ "name": "SSO_LIST_URL",
781
+ "type": {
782
+ "text": "string"
783
+ },
784
+ "default": "'/sm/sso/list'",
785
+ "privacy": "public"
786
+ },
787
+ {
788
+ "kind": "variable",
789
+ "name": "SSO_LOGIN_URL",
790
+ "type": {
791
+ "text": "string"
792
+ },
793
+ "default": "'/sm/{type}/login?idp={id}'",
794
+ "privacy": "public"
714
795
  }
715
796
  ],
716
797
  "exports": [
@@ -793,6 +874,78 @@
793
874
  "name": "_DEFAULT_USER",
794
875
  "module": "src/env/variables.ts"
795
876
  }
877
+ },
878
+ {
879
+ "kind": "js",
880
+ "name": "LOGIN_URL",
881
+ "declaration": {
882
+ "name": "LOGIN_URL",
883
+ "module": "src/env/variables.ts"
884
+ }
885
+ },
886
+ {
887
+ "kind": "js",
888
+ "name": "LOGIN_REFRESH_URL",
889
+ "declaration": {
890
+ "name": "LOGIN_REFRESH_URL",
891
+ "module": "src/env/variables.ts"
892
+ }
893
+ },
894
+ {
895
+ "kind": "js",
896
+ "name": "LOGIN_DETAILS_URL",
897
+ "declaration": {
898
+ "name": "LOGIN_DETAILS_URL",
899
+ "module": "src/env/variables.ts"
900
+ }
901
+ },
902
+ {
903
+ "kind": "js",
904
+ "name": "LOGOUT_URL",
905
+ "declaration": {
906
+ "name": "LOGOUT_URL",
907
+ "module": "src/env/variables.ts"
908
+ }
909
+ },
910
+ {
911
+ "kind": "js",
912
+ "name": "CHANGE_PASSWORD_URL",
913
+ "declaration": {
914
+ "name": "CHANGE_PASSWORD_URL",
915
+ "module": "src/env/variables.ts"
916
+ }
917
+ },
918
+ {
919
+ "kind": "js",
920
+ "name": "FORGOT_PASSWORD_URL",
921
+ "declaration": {
922
+ "name": "FORGOT_PASSWORD_URL",
923
+ "module": "src/env/variables.ts"
924
+ }
925
+ },
926
+ {
927
+ "kind": "js",
928
+ "name": "RESET_PASSWORD_URL",
929
+ "declaration": {
930
+ "name": "RESET_PASSWORD_URL",
931
+ "module": "src/env/variables.ts"
932
+ }
933
+ },
934
+ {
935
+ "kind": "js",
936
+ "name": "SSO_LIST_URL",
937
+ "declaration": {
938
+ "name": "SSO_LIST_URL",
939
+ "module": "src/env/variables.ts"
940
+ }
941
+ },
942
+ {
943
+ "kind": "js",
944
+ "name": "SSO_LOGIN_URL",
945
+ "declaration": {
946
+ "name": "SSO_LOGIN_URL",
947
+ "module": "src/env/variables.ts"
948
+ }
796
949
  }
797
950
  ]
798
951
  },
@@ -84,4 +84,49 @@ export { _DEFAULT_PASSWORD as DEFAULT_PASSWORD };
84
84
  */
85
85
  declare let _DEFAULT_USER: string;
86
86
  export { _DEFAULT_USER as DEFAULT_USER };
87
+ /**
88
+ * @public
89
+ */
90
+ declare let LOGIN_URL: string;
91
+ export { LOGIN_URL };
92
+ /**
93
+ * @public
94
+ */
95
+ declare let LOGIN_REFRESH_URL: string;
96
+ export { LOGIN_REFRESH_URL };
97
+ /**
98
+ * @public
99
+ */
100
+ declare let LOGIN_DETAILS_URL: string;
101
+ export { LOGIN_DETAILS_URL };
102
+ /**
103
+ * @public
104
+ */
105
+ declare let LOGOUT_URL: string;
106
+ export { LOGOUT_URL };
107
+ /**
108
+ * @public
109
+ */
110
+ declare let CHANGE_PASSWORD_URL: string;
111
+ export { CHANGE_PASSWORD_URL };
112
+ /**
113
+ * @public
114
+ */
115
+ declare let FORGOT_PASSWORD_URL: string;
116
+ export { FORGOT_PASSWORD_URL };
117
+ /**
118
+ * @public
119
+ */
120
+ declare let RESET_PASSWORD_URL: string;
121
+ export { RESET_PASSWORD_URL };
122
+ /**
123
+ * @public
124
+ */
125
+ declare let SSO_LIST_URL: string;
126
+ export { SSO_LIST_URL };
127
+ /**
128
+ * @public
129
+ */
130
+ declare let SSO_LOGIN_URL: string;
131
+ export { SSO_LOGIN_URL };
87
132
  //# sourceMappingURL=variables.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAS/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAErC;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAiF,CAAC;AAOjH;;;;;;GAMG;AACH,QAAA,IAAI,SAAS,EAAE,MAAwD,CAAC;AAQxE,OAAO,EAAE,SAAS,IAAI,QAAQ,EAAE,CAAC;AAGjC;;;;GAIG;AACH,QAAA,IAAI,YAAY,EAAE,MAAM,CAAC;AAMzB,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAKvC;;;;GAIG;AACH,QAAA,IAAI,qBAAqB,EAAE,MAAM,CAAC;AAMlC,OAAO,EAAE,qBAAqB,IAAI,oBAAoB,EAAE,CAAC;AAGzD;;;;GAIG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAM,CAAC;AAM9B,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAGjD;;;;GAIG;AACH,QAAA,IAAI,aAAa,EAAE,MAAM,CAAC;AAM1B,OAAO,EAAE,aAAa,IAAI,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAQA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAS/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAErC;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAiF,CAAC;AAOjH;;;;;;GAMG;AACH,QAAA,IAAI,SAAS,EAAE,MAAwD,CAAC;AAQxE,OAAO,EAAE,SAAS,IAAI,QAAQ,EAAE,CAAC;AAGjC;;;;GAIG;AACH,QAAA,IAAI,YAAY,EAAE,MAAM,CAAC;AAMzB,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAKvC;;;;GAIG;AACH,QAAA,IAAI,qBAAqB,EAAE,MAAM,CAAC;AAMlC,OAAO,EAAE,qBAAqB,IAAI,oBAAoB,EAAE,CAAC;AAGzD;;;;GAIG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAM,CAAC;AAM9B,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAGjD;;;;GAIG;AACH,QAAA,IAAI,aAAa,EAAE,MAAM,CAAC;AAM1B,OAAO,EAAE,aAAa,IAAI,YAAY,EAAE,CAAC;AAGzC;;GAEG;AACH,QAAA,IAAI,SAAS,EAAE,MAA+B,CAAC;AAQ/C,OAAO,EAAE,SAAS,EAAE,CAAC;AAGrB;;GAEG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAA+B,CAAC;AAQvD,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAG7B;;GAEG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAkC,CAAC;AAQ1D,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAG7B;;GAEG;AACH,QAAA,IAAI,UAAU,EAAE,MAA2B,CAAC;AAQ5C,OAAO,EAAE,UAAU,EAAE,CAAC;AAGtB;;GAEG;AACH,QAAA,IAAI,mBAAmB,EAAE,MAAyC,CAAC;AAQnE,OAAO,EAAE,mBAAmB,EAAE,CAAC;AAG/B;;GAEG;AACH,QAAA,IAAI,mBAAmB,EAAE,MAAgD,CAAC;AAQ1E,OAAO,EAAE,mBAAmB,EAAE,CAAC;AAG/B;;GAEG;AACH,QAAA,IAAI,kBAAkB,EAAE,MAA0C,CAAC;AAQnE,OAAO,EAAE,kBAAkB,EAAE,CAAC;AAG9B;;GAEG;AACH,QAAA,IAAI,YAAY,EAAE,MAAuB,CAAC;AAQ1C,OAAO,EAAE,YAAY,EAAE,CAAC;AAGxB;;GAEG;AACH,QAAA,IAAI,aAAa,EAAE,MAAoC,CAAC;AAQxD,OAAO,EAAE,aAAa,EAAE,CAAC"}
@@ -1,4 +1,7 @@
1
1
  /* eslint-disable import/no-mutable-exports */
2
+ // Core
3
+ /* eslint-disable import/no-mutable-exports */
4
+ import { logger } from '../utils';
2
5
  /**
3
6
  * The builder aka file bundler.
4
7
  * @privateRemarks
@@ -131,3 +134,102 @@ try {
131
134
  }
132
135
  catch (_j) { }
133
136
  export { _DEFAULT_USER as DEFAULT_USER };
137
+ /**
138
+ * @public
139
+ */
140
+ let LOGIN_URL = '/sm/event-login-auth';
141
+ if (typeof GENX_LOGIN_URL !== 'undefined') {
142
+ LOGIN_URL = GENX_LOGIN_URL;
143
+ }
144
+ else {
145
+ logger.debug(`GENX_LOGIN_URL unset, defaulting to ${LOGIN_URL}`);
146
+ }
147
+ export { LOGIN_URL };
148
+ /**
149
+ * @public
150
+ */
151
+ let LOGIN_REFRESH_URL = '/sm/event-login-auth';
152
+ if (typeof GENX_LOGIN_REFRESH_URL !== 'undefined') {
153
+ LOGIN_REFRESH_URL = GENX_LOGIN_REFRESH_URL;
154
+ }
155
+ else {
156
+ logger.debug(`GENX_LOGIN_REFRESH_URL unset, defaulting to ${LOGIN_REFRESH_URL}`);
157
+ }
158
+ export { LOGIN_REFRESH_URL };
159
+ /**
160
+ * @public
161
+ */
162
+ let LOGIN_DETAILS_URL = '/sm/event-login-details';
163
+ if (typeof GENX_LOGIN_DETAILS_URL !== 'undefined') {
164
+ LOGIN_DETAILS_URL = GENX_LOGIN_DETAILS_URL;
165
+ }
166
+ else {
167
+ logger.debug(`GENX_LOGIN_DETAILS_URL unset, defaulting to ${LOGIN_DETAILS_URL}`);
168
+ }
169
+ export { LOGIN_DETAILS_URL };
170
+ /**
171
+ * @public
172
+ */
173
+ let LOGOUT_URL = '/sm/event-logout';
174
+ if (typeof GENX_LOGOUT_URL !== 'undefined') {
175
+ LOGOUT_URL = GENX_LOGOUT_URL;
176
+ }
177
+ else {
178
+ logger.debug(`GENX_LOGOUT_URL unset, defaulting to ${LOGOUT_URL}`);
179
+ }
180
+ export { LOGOUT_URL };
181
+ /**
182
+ * @public
183
+ */
184
+ let CHANGE_PASSWORD_URL = '/sm/event-change-user-password';
185
+ if (typeof GENX_CHANGE_PASSWORD_URL !== 'undefined') {
186
+ CHANGE_PASSWORD_URL = GENX_CHANGE_PASSWORD_URL;
187
+ }
188
+ else {
189
+ logger.debug(`GENX_CHANGE_PASSWORD_URL unset, defaulting to ${CHANGE_PASSWORD_URL}`);
190
+ }
191
+ export { CHANGE_PASSWORD_URL };
192
+ /**
193
+ * @public
194
+ */
195
+ let FORGOT_PASSWORD_URL = '/sm/event-self-service-password-reset';
196
+ if (typeof GENX_FORGOT_PASSWORD_URL !== 'undefined') {
197
+ FORGOT_PASSWORD_URL = GENX_FORGOT_PASSWORD_URL;
198
+ }
199
+ else {
200
+ logger.debug(`GENX_FORGOT_PASSWORD_URL unset, defaulting to ${FORGOT_PASSWORD_URL}`);
201
+ }
202
+ export { FORGOT_PASSWORD_URL };
203
+ /**
204
+ * @public
205
+ */
206
+ let RESET_PASSWORD_URL = '/sm/event-password-reset-action';
207
+ if (typeof GENX_RESET_PASSWORD_URL !== 'undefined') {
208
+ RESET_PASSWORD_URL = GENX_RESET_PASSWORD_URL;
209
+ }
210
+ else {
211
+ logger.debug(`GENX_RESET_PASSWORD_URL unset, defaulting to ${RESET_PASSWORD_URL}`);
212
+ }
213
+ export { RESET_PASSWORD_URL };
214
+ /**
215
+ * @public
216
+ */
217
+ let SSO_LIST_URL = '/sm/sso/list';
218
+ if (typeof GENX_SSO_LIST_URL !== 'undefined') {
219
+ SSO_LIST_URL = GENX_SSO_LIST_URL;
220
+ }
221
+ else {
222
+ logger.debug(`GENX_SSO_LIST_URL unset, defaulting to ${SSO_LIST_URL}`);
223
+ }
224
+ export { SSO_LIST_URL };
225
+ /**
226
+ * @public
227
+ */
228
+ let SSO_LOGIN_URL = '/sm/{type}/login?idp={id}';
229
+ if (typeof GENX_SSO_LOGIN_URL !== 'undefined') {
230
+ SSO_LOGIN_URL = GENX_SSO_LOGIN_URL;
231
+ }
232
+ else {
233
+ logger.debug(`GENX_SSO_LOGIN_URL unset, defaulting to ${SSO_LOGIN_URL}`);
234
+ }
235
+ export { SSO_LOGIN_URL };
@@ -297,6 +297,29 @@
297
297
  "endIndex": 2
298
298
  }
299
299
  },
300
+ {
301
+ "kind": "Variable",
302
+ "canonicalReference": "@genesislcap/foundation-utils!CHANGE_PASSWORD_URL:var",
303
+ "docComment": "/**\n * @public\n */\n",
304
+ "excerptTokens": [
305
+ {
306
+ "kind": "Content",
307
+ "text": "CHANGE_PASSWORD_URL: "
308
+ },
309
+ {
310
+ "kind": "Content",
311
+ "text": "string"
312
+ }
313
+ ],
314
+ "fileUrlPath": "src/env/variables.ts",
315
+ "isReadonly": false,
316
+ "releaseTag": "Public",
317
+ "name": "CHANGE_PASSWORD_URL",
318
+ "variableTypeTokenRange": {
319
+ "startIndex": 1,
320
+ "endIndex": 2
321
+ }
322
+ },
300
323
  {
301
324
  "kind": "TypeAlias",
302
325
  "canonicalReference": "@genesislcap/foundation-utils!ConstructableLifecycleHandler:type",
@@ -3345,6 +3368,29 @@
3345
3368
  "endIndex": 2
3346
3369
  }
3347
3370
  },
3371
+ {
3372
+ "kind": "Variable",
3373
+ "canonicalReference": "@genesislcap/foundation-utils!FORGOT_PASSWORD_URL:var",
3374
+ "docComment": "/**\n * @public\n */\n",
3375
+ "excerptTokens": [
3376
+ {
3377
+ "kind": "Content",
3378
+ "text": "FORGOT_PASSWORD_URL: "
3379
+ },
3380
+ {
3381
+ "kind": "Content",
3382
+ "text": "string"
3383
+ }
3384
+ ],
3385
+ "fileUrlPath": "src/env/variables.ts",
3386
+ "isReadonly": false,
3387
+ "releaseTag": "Public",
3388
+ "name": "FORGOT_PASSWORD_URL",
3389
+ "variableTypeTokenRange": {
3390
+ "startIndex": 1,
3391
+ "endIndex": 2
3392
+ }
3393
+ },
3348
3394
  {
3349
3395
  "kind": "Function",
3350
3396
  "canonicalReference": "@genesislcap/foundation-utils!formatDateTimestamp:function(1)",
@@ -8336,6 +8382,98 @@
8336
8382
  }
8337
8383
  ]
8338
8384
  },
8385
+ {
8386
+ "kind": "Variable",
8387
+ "canonicalReference": "@genesislcap/foundation-utils!LOGIN_DETAILS_URL:var",
8388
+ "docComment": "/**\n * @public\n */\n",
8389
+ "excerptTokens": [
8390
+ {
8391
+ "kind": "Content",
8392
+ "text": "LOGIN_DETAILS_URL: "
8393
+ },
8394
+ {
8395
+ "kind": "Content",
8396
+ "text": "string"
8397
+ }
8398
+ ],
8399
+ "fileUrlPath": "src/env/variables.ts",
8400
+ "isReadonly": false,
8401
+ "releaseTag": "Public",
8402
+ "name": "LOGIN_DETAILS_URL",
8403
+ "variableTypeTokenRange": {
8404
+ "startIndex": 1,
8405
+ "endIndex": 2
8406
+ }
8407
+ },
8408
+ {
8409
+ "kind": "Variable",
8410
+ "canonicalReference": "@genesislcap/foundation-utils!LOGIN_REFRESH_URL:var",
8411
+ "docComment": "/**\n * @public\n */\n",
8412
+ "excerptTokens": [
8413
+ {
8414
+ "kind": "Content",
8415
+ "text": "LOGIN_REFRESH_URL: "
8416
+ },
8417
+ {
8418
+ "kind": "Content",
8419
+ "text": "string"
8420
+ }
8421
+ ],
8422
+ "fileUrlPath": "src/env/variables.ts",
8423
+ "isReadonly": false,
8424
+ "releaseTag": "Public",
8425
+ "name": "LOGIN_REFRESH_URL",
8426
+ "variableTypeTokenRange": {
8427
+ "startIndex": 1,
8428
+ "endIndex": 2
8429
+ }
8430
+ },
8431
+ {
8432
+ "kind": "Variable",
8433
+ "canonicalReference": "@genesislcap/foundation-utils!LOGIN_URL:var",
8434
+ "docComment": "/**\n * @public\n */\n",
8435
+ "excerptTokens": [
8436
+ {
8437
+ "kind": "Content",
8438
+ "text": "LOGIN_URL: "
8439
+ },
8440
+ {
8441
+ "kind": "Content",
8442
+ "text": "string"
8443
+ }
8444
+ ],
8445
+ "fileUrlPath": "src/env/variables.ts",
8446
+ "isReadonly": false,
8447
+ "releaseTag": "Public",
8448
+ "name": "LOGIN_URL",
8449
+ "variableTypeTokenRange": {
8450
+ "startIndex": 1,
8451
+ "endIndex": 2
8452
+ }
8453
+ },
8454
+ {
8455
+ "kind": "Variable",
8456
+ "canonicalReference": "@genesislcap/foundation-utils!LOGOUT_URL:var",
8457
+ "docComment": "/**\n * @public\n */\n",
8458
+ "excerptTokens": [
8459
+ {
8460
+ "kind": "Content",
8461
+ "text": "LOGOUT_URL: "
8462
+ },
8463
+ {
8464
+ "kind": "Content",
8465
+ "text": "string"
8466
+ }
8467
+ ],
8468
+ "fileUrlPath": "src/env/variables.ts",
8469
+ "isReadonly": false,
8470
+ "releaseTag": "Public",
8471
+ "name": "LOGOUT_URL",
8472
+ "variableTypeTokenRange": {
8473
+ "startIndex": 1,
8474
+ "endIndex": 2
8475
+ }
8476
+ },
8339
8477
  {
8340
8478
  "kind": "Class",
8341
8479
  "canonicalReference": "@genesislcap/foundation-utils!NumberParser:class",
@@ -12151,6 +12289,29 @@
12151
12289
  ],
12152
12290
  "name": "renderOnChange"
12153
12291
  },
12292
+ {
12293
+ "kind": "Variable",
12294
+ "canonicalReference": "@genesislcap/foundation-utils!RESET_PASSWORD_URL:var",
12295
+ "docComment": "/**\n * @public\n */\n",
12296
+ "excerptTokens": [
12297
+ {
12298
+ "kind": "Content",
12299
+ "text": "RESET_PASSWORD_URL: "
12300
+ },
12301
+ {
12302
+ "kind": "Content",
12303
+ "text": "string"
12304
+ }
12305
+ ],
12306
+ "fileUrlPath": "src/env/variables.ts",
12307
+ "isReadonly": false,
12308
+ "releaseTag": "Public",
12309
+ "name": "RESET_PASSWORD_URL",
12310
+ "variableTypeTokenRange": {
12311
+ "startIndex": 1,
12312
+ "endIndex": 2
12313
+ }
12314
+ },
12154
12315
  {
12155
12316
  "kind": "Variable",
12156
12317
  "canonicalReference": "@genesislcap/foundation-utils!resolveAfter:var",
@@ -12598,6 +12759,52 @@
12598
12759
  "endIndex": 2
12599
12760
  }
12600
12761
  },
12762
+ {
12763
+ "kind": "Variable",
12764
+ "canonicalReference": "@genesislcap/foundation-utils!SSO_LIST_URL:var",
12765
+ "docComment": "/**\n * @public\n */\n",
12766
+ "excerptTokens": [
12767
+ {
12768
+ "kind": "Content",
12769
+ "text": "SSO_LIST_URL: "
12770
+ },
12771
+ {
12772
+ "kind": "Content",
12773
+ "text": "string"
12774
+ }
12775
+ ],
12776
+ "fileUrlPath": "src/env/variables.ts",
12777
+ "isReadonly": false,
12778
+ "releaseTag": "Public",
12779
+ "name": "SSO_LIST_URL",
12780
+ "variableTypeTokenRange": {
12781
+ "startIndex": 1,
12782
+ "endIndex": 2
12783
+ }
12784
+ },
12785
+ {
12786
+ "kind": "Variable",
12787
+ "canonicalReference": "@genesislcap/foundation-utils!SSO_LOGIN_URL:var",
12788
+ "docComment": "/**\n * @public\n */\n",
12789
+ "excerptTokens": [
12790
+ {
12791
+ "kind": "Content",
12792
+ "text": "SSO_LOGIN_URL: "
12793
+ },
12794
+ {
12795
+ "kind": "Content",
12796
+ "text": "string"
12797
+ }
12798
+ ],
12799
+ "fileUrlPath": "src/env/variables.ts",
12800
+ "isReadonly": false,
12801
+ "releaseTag": "Public",
12802
+ "name": "SSO_LOGIN_URL",
12803
+ "variableTypeTokenRange": {
12804
+ "startIndex": 1,
12805
+ "endIndex": 2
12806
+ }
12807
+ },
12601
12808
  {
12602
12809
  "kind": "TypeAlias",
12603
12810
  "canonicalReference": "@genesislcap/foundation-utils!Subscribe:type",
@@ -83,6 +83,11 @@ export declare const BIG_INT_64_BITS = 64;
83
83
  */
84
84
  export declare let BUILDER: string;
85
85
 
86
+ /**
87
+ * @public
88
+ */
89
+ export declare let CHANGE_PASSWORD_URL: string;
90
+
86
91
  /**
87
92
  * @public
88
93
  */
@@ -451,6 +456,11 @@ export declare enum FontWeight {
451
456
  */
452
457
  export declare let FORCE_HTTP: string;
453
458
 
459
+ /**
460
+ * @public
461
+ */
462
+ export declare let FORGOT_PASSWORD_URL: string;
463
+
454
464
  /**
455
465
  * Formats [DATE] UNIX Timestamps (without time) to readable strings
456
466
  * @public
@@ -1117,8 +1127,28 @@ export declare const logger: Logger_2;
1117
1127
  export declare interface LoggerOptions extends LoggerOptions_2 {
1118
1128
  }
1119
1129
 
1130
+ /**
1131
+ * @public
1132
+ */
1133
+ export declare let LOGIN_DETAILS_URL: string;
1134
+
1135
+ /**
1136
+ * @public
1137
+ */
1138
+ export declare let LOGIN_REFRESH_URL: string;
1139
+
1140
+ /**
1141
+ * @public
1142
+ */
1143
+ export declare let LOGIN_URL: string;
1144
+
1120
1145
  export { LogLevel }
1121
1146
 
1147
+ /**
1148
+ * @public
1149
+ */
1150
+ export declare let LOGOUT_URL: string;
1151
+
1122
1152
  /**
1123
1153
  * @internal
1124
1154
  */
@@ -1691,6 +1721,11 @@ export declare function renderOnChange(target: FASTElement & {
1691
1721
  render(): void;
1692
1722
  }, name: string): void;
1693
1723
 
1724
+ /**
1725
+ * @public
1726
+ */
1727
+ export declare let RESET_PASSWORD_URL: string;
1728
+
1694
1729
  /**
1695
1730
  * Resolve a promise after a timeout.
1696
1731
  *
@@ -1797,6 +1832,16 @@ export declare class SlottedStyles extends FASTElement {
1797
1832
  */
1798
1833
  export declare let SOCKET_EXT: string;
1799
1834
 
1835
+ /**
1836
+ * @public
1837
+ */
1838
+ export declare let SSO_LIST_URL: string;
1839
+
1840
+ /**
1841
+ * @public
1842
+ */
1843
+ export declare let SSO_LOGIN_URL: string;
1844
+
1800
1845
  /**
1801
1846
  * Subscribes a listener function to receive events of a specific type.
1802
1847
  * @returns An unsubscribe function.
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [CHANGE\_PASSWORD\_URL](./foundation-utils.change_password_url.md)
4
+
5
+ ## CHANGE\_PASSWORD\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ CHANGE_PASSWORD_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [FORGOT\_PASSWORD\_URL](./foundation-utils.forgot_password_url.md)
4
+
5
+ ## FORGOT\_PASSWORD\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ FORGOT_PASSWORD_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [LOGIN\_DETAILS\_URL](./foundation-utils.login_details_url.md)
4
+
5
+ ## LOGIN\_DETAILS\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ LOGIN_DETAILS_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [LOGIN\_REFRESH\_URL](./foundation-utils.login_refresh_url.md)
4
+
5
+ ## LOGIN\_REFRESH\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ LOGIN_REFRESH_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [LOGIN\_URL](./foundation-utils.login_url.md)
4
+
5
+ ## LOGIN\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ LOGIN_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [LOGOUT\_URL](./foundation-utils.logout_url.md)
4
+
5
+ ## LOGOUT\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ LOGOUT_URL: string
12
+ ```
@@ -76,6 +76,7 @@
76
76
  | [activeColorScheme](./foundation-utils.activecolorscheme.md) | A design token that represents the active color scheme (light or dark). |
77
77
  | [API\_HOST](./foundation-utils.api_host.md) | The Genesis Server URL (WebSocket or HTTP). |
78
78
  | [BUILDER](./foundation-utils.builder.md) | The builder aka file bundler. |
79
+ | [CHANGE\_PASSWORD\_URL](./foundation-utils.change_password_url.md) | |
79
80
  | [createErrorMap](./foundation-utils.createerrormap.md) | A factory to create the error map. |
80
81
  | [createObserver](./foundation-utils.createobserver.md) | Creates a new event observer instance. |
81
82
  | [decodeFromBase64](./foundation-utils.decodefrombase64.md) | Decodes a value from base64. |
@@ -89,6 +90,7 @@
89
90
  | [encodeToBase64](./foundation-utils.encodetobase64.md) | Encodes the given value to base64. |
90
91
  | [encodeToBase64WithPrefix](./foundation-utils.encodetobase64withprefix.md) | Encodes the given value with a prefix to base64. |
91
92
  | [FORCE\_HTTP](./foundation-utils.force_http.md) | The path to a JSON config file for the HTTP mode. |
93
+ | [FORGOT\_PASSWORD\_URL](./foundation-utils.forgot_password_url.md) | |
92
94
  | [GENESIS\_SOCKET\_URL](./foundation-utils.genesis_socket_url.md) | Genesis Socket URL |
93
95
  | [getFontMixin](./foundation-utils.getfontmixin.md) | Generates a CSS mixin for the specified font family, style, and weight. |
94
96
  | [HTTP\_CONFIG](./foundation-utils.http_config.md) | Configuration settings for HTTP, used in http connect flow \[<code>genesislcap-foundation-comms.HttpConnectConfig</code>\](https://link-to-docs). |
@@ -102,16 +104,23 @@
102
104
  | [LifecycleMixin](./foundation-utils.lifecyclemixin.md) | **_(BETA)_** Mixin class to expose <code>shouldRunConnect</code> and <code>shouldRunDisconnect</code> |
103
105
  | [loadFontFaces](./foundation-utils.loadfontfaces.md) | Loads font faces by inserting a style element with the specified font face rules into the document. |
104
106
  | [logger](./foundation-utils.logger.md) | Logger for the foundation-utils package |
107
+ | [LOGIN\_DETAILS\_URL](./foundation-utils.login_details_url.md) | |
108
+ | [LOGIN\_REFRESH\_URL](./foundation-utils.login_refresh_url.md) | |
109
+ | [LOGIN\_URL](./foundation-utils.login_url.md) | |
110
+ | [LOGOUT\_URL](./foundation-utils.logout_url.md) | |
105
111
  | [openPopup](./foundation-utils.openpopup.md) | Opens a new browser window with the specified URL, target, width, and height. |
106
112
  | [PendingState](./foundation-utils.pendingstate.md) | The <code>PendingState</code> mixin. |
107
113
  | [POPUP\_DEFAULT\_HEIGHT](./foundation-utils.popup_default_height.md) | The default height (in pixels) for pop-up windows. |
108
114
  | [POPUP\_DEFAULT\_WIDTH](./foundation-utils.popup_default_width.md) | The default width (in pixels) for pop-up windows. |
109
115
  | [PUBLIC\_PATH](./foundation-utils.public_path.md) | The public path. |
116
+ | [RESET\_PASSWORD\_URL](./foundation-utils.reset_password_url.md) | |
110
117
  | [resolveAfter](./foundation-utils.resolveafter.md) | Resolve a promise after a timeout. |
111
118
  | [ResourceType](./foundation-utils.resourcetype.md) | An object that defines two resource types: "local" and "remote". |
112
119
  | [respondToVisibility](./foundation-utils.respondtovisibility.md) | Setup an <code>IntersectionObserver</code> which will activate a callback function when an element becomes visible on screen |
113
120
  | [ServerRowDTOMapper](./foundation-utils.serverrowdtomapper.md) | A DI token used to obtain a <code>ServerRowDTOMapper</code> instance. |
114
121
  | [SOCKET\_EXT](./foundation-utils.socket_ext.md) | The sub-path used for WebSocket connections when API\_HOST is not set |
122
+ | [SSO\_LIST\_URL](./foundation-utils.sso_list_url.md) | |
123
+ | [SSO\_LOGIN\_URL](./foundation-utils.sso_login_url.md) | |
115
124
  | [TypeRampValues](./foundation-utils.typerampvalues.md) | An object containing type ramp values. |
116
125
  | [UUID](./foundation-utils.uuid.md) | A dependency injection token for the UUID interface. |
117
126
 
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [RESET\_PASSWORD\_URL](./foundation-utils.reset_password_url.md)
4
+
5
+ ## RESET\_PASSWORD\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ RESET_PASSWORD_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [SSO\_LIST\_URL](./foundation-utils.sso_list_url.md)
4
+
5
+ ## SSO\_LIST\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ SSO_LIST_URL: string
12
+ ```
@@ -0,0 +1,12 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/foundation-utils](./foundation-utils.md) &gt; [SSO\_LOGIN\_URL](./foundation-utils.sso_login_url.md)
4
+
5
+ ## SSO\_LOGIN\_URL variable
6
+
7
+
8
+ **Signature:**
9
+
10
+ ```typescript
11
+ SSO_LOGIN_URL: string
12
+ ```
@@ -36,6 +36,9 @@ export const BIG_INT_64_BITS = 64;
36
36
  // @public
37
37
  export let BUILDER: string;
38
38
 
39
+ // @public (undocumented)
40
+ export let CHANGE_PASSWORD_URL: string;
41
+
39
42
  // @public (undocumented)
40
43
  export type ConstructableLifecycleHandler = Constructable<FASTElement & HTMLElement>;
41
44
 
@@ -249,6 +252,9 @@ export enum FontWeight {
249
252
  // @public
250
253
  export let FORCE_HTTP: string;
251
254
 
255
+ // @public (undocumented)
256
+ export let FORGOT_PASSWORD_URL: string;
257
+
252
258
  // @public
253
259
  export function formatDateTimestamp(timestamp: number): string;
254
260
 
@@ -710,8 +716,20 @@ export const logger: Logger_2;
710
716
  export interface LoggerOptions extends LoggerOptions_2 {
711
717
  }
712
718
 
719
+ // @public (undocumented)
720
+ export let LOGIN_DETAILS_URL: string;
721
+
722
+ // @public (undocumented)
723
+ export let LOGIN_REFRESH_URL: string;
724
+
725
+ // @public (undocumented)
726
+ export let LOGIN_URL: string;
727
+
713
728
  export { LogLevel }
714
729
 
730
+ // @public (undocumented)
731
+ export let LOGOUT_URL: string;
732
+
715
733
  // @public (undocumented)
716
734
  export class NumberParser {
717
735
  constructor(locale: string);
@@ -1104,6 +1122,9 @@ export function renderOnChange(target: FASTElement & {
1104
1122
  render(): void;
1105
1123
  }, name: string): void;
1106
1124
 
1125
+ // @public (undocumented)
1126
+ export let RESET_PASSWORD_URL: string;
1127
+
1107
1128
  // @public
1108
1129
  export const resolveAfter: <T = any>(ms: number, valueCreator: () => T) => Promise<T>;
1109
1130
 
@@ -1151,6 +1172,12 @@ export class SlottedStyles extends FASTElement {
1151
1172
  // @public
1152
1173
  export let SOCKET_EXT: string;
1153
1174
 
1175
+ // @public (undocumented)
1176
+ export let SSO_LIST_URL: string;
1177
+
1178
+ // @public (undocumented)
1179
+ export let SSO_LOGIN_URL: string;
1180
+
1154
1181
  // @public
1155
1182
  export type Subscribe<EventType> = (listener: Listener<EventType>) => () => void;
1156
1183
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.238.1",
4
+ "version": "14.239.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.238.1",
31
- "@genesislcap/genx": "14.238.1",
32
- "@genesislcap/rollup-builder": "14.238.1",
33
- "@genesislcap/ts-builder": "14.238.1",
34
- "@genesislcap/uvu-playwright-builder": "14.238.1",
35
- "@genesislcap/vite-builder": "14.238.1",
36
- "@genesislcap/webpack-builder": "14.238.1",
30
+ "@genesislcap/foundation-testing": "14.239.0",
31
+ "@genesislcap/genx": "14.239.0",
32
+ "@genesislcap/rollup-builder": "14.239.0",
33
+ "@genesislcap/ts-builder": "14.239.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.239.0",
35
+ "@genesislcap/vite-builder": "14.239.0",
36
+ "@genesislcap/webpack-builder": "14.239.0",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.238.1",
40
+ "@genesislcap/foundation-logger": "14.239.0",
41
41
  "@microsoft/fast-components": "2.30.6",
42
42
  "@microsoft/fast-element": "1.14.0",
43
43
  "@microsoft/fast-foundation": "2.49.6",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "c0de8cfef19e4e0e11ea5799cb7d43d7bea6ff49"
58
+ "gitHead": "6a5e5991ace04e212c5d5d7e9cf69cd641677849"
59
59
  }