@genesislcap/foundation-utils 14.143.3-alpha-b3a864d.0 → 14.144.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.
@@ -151,6 +151,204 @@
151
151
  }
152
152
  ]
153
153
  },
154
+ {
155
+ "kind": "javascript-module",
156
+ "path": "src/data/inMemoryDatabase.ts",
157
+ "declarations": [
158
+ {
159
+ "kind": "class",
160
+ "description": "An in memory database of specific DatabaseRecord types.",
161
+ "name": "InMemoryDatabase",
162
+ "members": [
163
+ {
164
+ "kind": "field",
165
+ "name": "isWorking",
166
+ "type": {
167
+ "text": "boolean"
168
+ },
169
+ "privacy": "public",
170
+ "default": "false"
171
+ },
172
+ {
173
+ "kind": "field",
174
+ "name": "records",
175
+ "type": {
176
+ "text": "Record<string, T>"
177
+ },
178
+ "privacy": "private",
179
+ "default": "{}"
180
+ },
181
+ {
182
+ "kind": "field",
183
+ "name": "beforeUpdateListeners",
184
+ "privacy": "private"
185
+ },
186
+ {
187
+ "kind": "field",
188
+ "name": "afterUpdateListeners",
189
+ "privacy": "private"
190
+ },
191
+ {
192
+ "kind": "method",
193
+ "name": "create",
194
+ "privacy": "public",
195
+ "return": {
196
+ "type": {
197
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
198
+ }
199
+ },
200
+ "parameters": [
201
+ {
202
+ "name": "newValue",
203
+ "type": {
204
+ "text": "Omit<T, 'id'>"
205
+ }
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "kind": "method",
211
+ "name": "read",
212
+ "privacy": "public",
213
+ "return": {
214
+ "type": {
215
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
216
+ }
217
+ },
218
+ "parameters": [
219
+ {
220
+ "name": "id",
221
+ "type": {
222
+ "text": "string"
223
+ }
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "kind": "method",
229
+ "name": "update",
230
+ "privacy": "public",
231
+ "return": {
232
+ "type": {
233
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
234
+ }
235
+ },
236
+ "parameters": [
237
+ {
238
+ "name": "id",
239
+ "type": {
240
+ "text": "string"
241
+ }
242
+ },
243
+ {
244
+ "name": "newValue",
245
+ "type": {
246
+ "text": "Omit<Partial<T>, 'id'>"
247
+ }
248
+ }
249
+ ]
250
+ },
251
+ {
252
+ "kind": "method",
253
+ "name": "delete",
254
+ "privacy": "public",
255
+ "return": {
256
+ "type": {
257
+ "text": "Promise<DatabaseAccessResult.Delete>"
258
+ }
259
+ },
260
+ "parameters": [
261
+ {
262
+ "name": "id",
263
+ "type": {
264
+ "text": "string"
265
+ }
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "kind": "method",
271
+ "name": "visit",
272
+ "privacy": "public",
273
+ "return": {
274
+ "type": {
275
+ "text": "Promise<void>"
276
+ }
277
+ },
278
+ "parameters": [
279
+ {
280
+ "name": "visitor",
281
+ "type": {
282
+ "text": "(record: T) => void"
283
+ }
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "kind": "method",
289
+ "name": "onBeforeUpdate",
290
+ "privacy": "public",
291
+ "return": {
292
+ "type": {
293
+ "text": "() => void"
294
+ }
295
+ },
296
+ "parameters": [
297
+ {
298
+ "name": "listener",
299
+ "type": {
300
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
301
+ }
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "kind": "method",
307
+ "name": "onAfterUpdate",
308
+ "privacy": "public",
309
+ "return": {
310
+ "type": {
311
+ "text": "() => void"
312
+ }
313
+ },
314
+ "parameters": [
315
+ {
316
+ "name": "listener",
317
+ "type": {
318
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
319
+ }
320
+ }
321
+ ]
322
+ }
323
+ ]
324
+ }
325
+ ],
326
+ "exports": [
327
+ {
328
+ "kind": "js",
329
+ "name": "InMemoryDatabase",
330
+ "declaration": {
331
+ "name": "InMemoryDatabase",
332
+ "module": "src/data/inMemoryDatabase.ts"
333
+ }
334
+ }
335
+ ]
336
+ },
337
+ {
338
+ "kind": "javascript-module",
339
+ "path": "src/data/index.ts",
340
+ "declarations": [],
341
+ "exports": [
342
+ {
343
+ "kind": "js",
344
+ "name": "*",
345
+ "declaration": {
346
+ "name": "*",
347
+ "package": "./inMemoryDatabase"
348
+ }
349
+ }
350
+ ]
351
+ },
154
352
  {
155
353
  "kind": "javascript-module",
156
354
  "path": "src/design-system/design-system.ts",
@@ -203,7 +401,7 @@
203
401
  },
204
402
  {
205
403
  "kind": "javascript-module",
206
- "path": "src/directives/index.ts",
404
+ "path": "src/decorators/index.ts",
207
405
  "declarations": [],
208
406
  "exports": [
209
407
  {
@@ -211,22 +409,52 @@
211
409
  "name": "*",
212
410
  "declaration": {
213
411
  "name": "*",
214
- "package": "./sync"
412
+ "package": "./renderOnChange"
215
413
  }
216
- },
414
+ }
415
+ ]
416
+ },
417
+ {
418
+ "kind": "javascript-module",
419
+ "path": "src/decorators/renderOnChange.ts",
420
+ "declarations": [
421
+ {
422
+ "kind": "function",
423
+ "name": "renderOnChange",
424
+ "parameters": [
425
+ {
426
+ "name": "target",
427
+ "type": {
428
+ "text": "FASTElement & { render(): void }"
429
+ },
430
+ "description": "The target to define the property change handler on."
431
+ },
432
+ {
433
+ "name": "name",
434
+ "type": {
435
+ "text": "string"
436
+ },
437
+ "description": "The property name."
438
+ }
439
+ ],
440
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
441
+ "privacy": "public"
442
+ }
443
+ ],
444
+ "exports": [
217
445
  {
218
446
  "kind": "js",
219
- "name": "*",
447
+ "name": "renderOnChange",
220
448
  "declaration": {
221
- "name": "*",
222
- "package": "./when-else"
449
+ "name": "renderOnChange",
450
+ "module": "src/decorators/renderOnChange.ts"
223
451
  }
224
452
  }
225
453
  ]
226
454
  },
227
455
  {
228
456
  "kind": "javascript-module",
229
- "path": "src/env/index.ts",
457
+ "path": "src/directives/index.ts",
230
458
  "declarations": [],
231
459
  "exports": [
232
460
  {
@@ -234,7 +462,7 @@
234
462
  "name": "*",
235
463
  "declaration": {
236
464
  "name": "*",
237
- "package": "./is-dev"
465
+ "package": "./sync"
238
466
  }
239
467
  },
240
468
  {
@@ -242,267 +470,14 @@
242
470
  "name": "*",
243
471
  "declaration": {
244
472
  "name": "*",
245
- "package": "./variables"
473
+ "package": "./when-else"
246
474
  }
247
475
  }
248
476
  ]
249
477
  },
250
478
  {
251
479
  "kind": "javascript-module",
252
- "path": "src/env/is-dev.ts",
253
- "declarations": [
254
- {
255
- "kind": "function",
256
- "name": "isDev",
257
- "description": "Determines if the current environment is a development environment.",
258
- "privacy": "public"
259
- }
260
- ],
261
- "exports": [
262
- {
263
- "kind": "js",
264
- "name": "isDev",
265
- "declaration": {
266
- "name": "isDev",
267
- "module": "src/env/is-dev.ts"
268
- }
269
- }
270
- ]
271
- },
272
- {
273
- "kind": "javascript-module",
274
- "path": "src/env/variables.ts",
275
- "declarations": [
276
- {
277
- "kind": "variable",
278
- "name": "SOCKET_EXT",
279
- "type": {
280
- "text": "string"
281
- }
282
- },
283
- {
284
- "kind": "variable",
285
- "name": "_SOCKET_EXT",
286
- "type": {
287
- "text": "string"
288
- },
289
- "default": "'gwf'",
290
- "description": "The sub-path used for WebSocket connections when API_HOST is not set",
291
- "privacy": "public"
292
- },
293
- {
294
- "kind": "variable",
295
- "name": "FORCE_HTTP",
296
- "type": {
297
- "text": "string"
298
- }
299
- },
300
- {
301
- "kind": "variable",
302
- "name": "_FORCE_HTTP",
303
- "type": {
304
- "text": "string"
305
- },
306
- "description": "The path to a JSON config file for the HTTP mode.",
307
- "privacy": "public"
308
- },
309
- {
310
- "kind": "variable",
311
- "name": "API_HOST",
312
- "type": {
313
- "text": "string"
314
- }
315
- },
316
- {
317
- "kind": "variable",
318
- "name": "_API_HOST",
319
- "type": {
320
- "text": "string"
321
- },
322
- "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
323
- "description": "The Genesis Server URL (WebSocket or HTTP).",
324
- "privacy": "public"
325
- },
326
- {
327
- "kind": "variable",
328
- "name": "HTTP_CONFIG",
329
- "type": {
330
- "text": "string"
331
- }
332
- },
333
- {
334
- "kind": "variable",
335
- "name": "_HTTP_CONFIG",
336
- "type": {
337
- "text": "string"
338
- },
339
- "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
340
- "privacy": "public"
341
- },
342
- {
343
- "kind": "variable",
344
- "name": "DEFAULT_ORGANISATION",
345
- "type": {
346
- "text": "string"
347
- }
348
- },
349
- {
350
- "kind": "variable",
351
- "name": "_DEFAULT_ORGANISATION",
352
- "type": {
353
- "text": "string"
354
- },
355
- "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
356
- "privacy": "public"
357
- },
358
- {
359
- "kind": "variable",
360
- "name": "DEFAULT_PASSWORD",
361
- "type": {
362
- "text": "string"
363
- }
364
- },
365
- {
366
- "kind": "variable",
367
- "name": "_DEFAULT_PASSWORD",
368
- "type": {
369
- "text": "string"
370
- },
371
- "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
372
- "privacy": "public"
373
- },
374
- {
375
- "kind": "variable",
376
- "name": "DEFAULT_USER",
377
- "type": {
378
- "text": "string"
379
- }
380
- },
381
- {
382
- "kind": "variable",
383
- "name": "_DEFAULT_USER",
384
- "type": {
385
- "text": "string"
386
- },
387
- "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
388
- "privacy": "public"
389
- }
390
- ],
391
- "exports": [
392
- {
393
- "kind": "js",
394
- "name": "SOCKET_EXT",
395
- "declaration": {
396
- "name": "_SOCKET_EXT",
397
- "module": "src/env/variables.ts"
398
- }
399
- },
400
- {
401
- "kind": "js",
402
- "name": "FORCE_HTTP",
403
- "declaration": {
404
- "name": "_FORCE_HTTP",
405
- "module": "src/env/variables.ts"
406
- }
407
- },
408
- {
409
- "kind": "js",
410
- "name": "API_HOST",
411
- "declaration": {
412
- "name": "_API_HOST",
413
- "module": "src/env/variables.ts"
414
- }
415
- },
416
- {
417
- "kind": "js",
418
- "name": "HTTP_CONFIG",
419
- "declaration": {
420
- "name": "_HTTP_CONFIG",
421
- "module": "src/env/variables.ts"
422
- }
423
- },
424
- {
425
- "kind": "js",
426
- "name": "DEFAULT_ORGANISATION",
427
- "declaration": {
428
- "name": "_DEFAULT_ORGANISATION",
429
- "module": "src/env/variables.ts"
430
- }
431
- },
432
- {
433
- "kind": "js",
434
- "name": "DEFAULT_PASSWORD",
435
- "declaration": {
436
- "name": "_DEFAULT_PASSWORD",
437
- "module": "src/env/variables.ts"
438
- }
439
- },
440
- {
441
- "kind": "js",
442
- "name": "DEFAULT_USER",
443
- "declaration": {
444
- "name": "_DEFAULT_USER",
445
- "module": "src/env/variables.ts"
446
- }
447
- }
448
- ]
449
- },
450
- {
451
- "kind": "javascript-module",
452
- "path": "src/decorators/index.ts",
453
- "declarations": [],
454
- "exports": [
455
- {
456
- "kind": "js",
457
- "name": "*",
458
- "declaration": {
459
- "name": "*",
460
- "package": "./renderOnChange"
461
- }
462
- }
463
- ]
464
- },
465
- {
466
- "kind": "javascript-module",
467
- "path": "src/decorators/renderOnChange.ts",
468
- "declarations": [
469
- {
470
- "kind": "function",
471
- "name": "renderOnChange",
472
- "parameters": [
473
- {
474
- "name": "target",
475
- "type": {
476
- "text": "FASTElement & { render(): void }"
477
- },
478
- "description": "The target to define the property change handler on."
479
- },
480
- {
481
- "name": "name",
482
- "type": {
483
- "text": "string"
484
- },
485
- "description": "The property name."
486
- }
487
- ],
488
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
489
- "privacy": "public"
490
- }
491
- ],
492
- "exports": [
493
- {
494
- "kind": "js",
495
- "name": "renderOnChange",
496
- "declaration": {
497
- "name": "renderOnChange",
498
- "module": "src/decorators/renderOnChange.ts"
499
- }
500
- }
501
- ]
502
- },
503
- {
504
- "kind": "javascript-module",
505
- "path": "src/error/errorMap.ts",
480
+ "path": "src/error/errorMap.ts",
506
481
  "declarations": [
507
482
  {
508
483
  "kind": "class",
@@ -913,198 +888,223 @@
913
888
  },
914
889
  {
915
890
  "kind": "javascript-module",
916
- "path": "src/data/inMemoryDatabase.ts",
917
- "declarations": [
891
+ "path": "src/env/index.ts",
892
+ "declarations": [],
893
+ "exports": [
918
894
  {
919
- "kind": "class",
920
- "description": "An in memory database of specific DatabaseRecord types.",
921
- "name": "InMemoryDatabase",
922
- "members": [
923
- {
924
- "kind": "field",
925
- "name": "isWorking",
926
- "type": {
927
- "text": "boolean"
928
- },
929
- "privacy": "public",
930
- "default": "false"
931
- },
932
- {
933
- "kind": "field",
934
- "name": "records",
935
- "type": {
936
- "text": "Record<string, T>"
937
- },
938
- "privacy": "private",
939
- "default": "{}"
940
- },
941
- {
942
- "kind": "field",
943
- "name": "beforeUpdateListeners",
944
- "privacy": "private"
945
- },
946
- {
947
- "kind": "field",
948
- "name": "afterUpdateListeners",
949
- "privacy": "private"
950
- },
951
- {
952
- "kind": "method",
953
- "name": "create",
954
- "privacy": "public",
955
- "return": {
956
- "type": {
957
- "text": "Promise<DatabaseAccessResult.Create<T>>"
958
- }
959
- },
960
- "parameters": [
961
- {
962
- "name": "newValue",
963
- "type": {
964
- "text": "Omit<T, 'id'>"
965
- }
966
- }
967
- ]
968
- },
969
- {
970
- "kind": "method",
971
- "name": "read",
972
- "privacy": "public",
973
- "return": {
974
- "type": {
975
- "text": "Promise<DatabaseAccessResult.Read<T>>"
976
- }
977
- },
978
- "parameters": [
979
- {
980
- "name": "id",
981
- "type": {
982
- "text": "string"
983
- }
984
- }
985
- ]
986
- },
987
- {
988
- "kind": "method",
989
- "name": "update",
990
- "privacy": "public",
991
- "return": {
992
- "type": {
993
- "text": "Promise<DatabaseAccessResult.Update<T>>"
994
- }
995
- },
996
- "parameters": [
997
- {
998
- "name": "id",
999
- "type": {
1000
- "text": "string"
1001
- }
1002
- },
1003
- {
1004
- "name": "newValue",
1005
- "type": {
1006
- "text": "Omit<Partial<T>, 'id'>"
1007
- }
1008
- }
1009
- ]
1010
- },
1011
- {
1012
- "kind": "method",
1013
- "name": "delete",
1014
- "privacy": "public",
1015
- "return": {
1016
- "type": {
1017
- "text": "Promise<DatabaseAccessResult.Delete>"
1018
- }
1019
- },
1020
- "parameters": [
1021
- {
1022
- "name": "id",
1023
- "type": {
1024
- "text": "string"
1025
- }
1026
- }
1027
- ]
1028
- },
1029
- {
1030
- "kind": "method",
1031
- "name": "visit",
1032
- "privacy": "public",
1033
- "return": {
1034
- "type": {
1035
- "text": "Promise<void>"
1036
- }
1037
- },
1038
- "parameters": [
1039
- {
1040
- "name": "visitor",
1041
- "type": {
1042
- "text": "(record: T) => void"
1043
- }
1044
- }
1045
- ]
1046
- },
1047
- {
1048
- "kind": "method",
1049
- "name": "onBeforeUpdate",
1050
- "privacy": "public",
1051
- "return": {
1052
- "type": {
1053
- "text": "() => void"
1054
- }
1055
- },
1056
- "parameters": [
1057
- {
1058
- "name": "listener",
1059
- "type": {
1060
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
1061
- }
1062
- }
1063
- ]
1064
- },
1065
- {
1066
- "kind": "method",
1067
- "name": "onAfterUpdate",
1068
- "privacy": "public",
1069
- "return": {
1070
- "type": {
1071
- "text": "() => void"
1072
- }
1073
- },
1074
- "parameters": [
1075
- {
1076
- "name": "listener",
1077
- "type": {
1078
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
1079
- }
1080
- }
1081
- ]
1082
- }
1083
- ]
895
+ "kind": "js",
896
+ "name": "*",
897
+ "declaration": {
898
+ "name": "*",
899
+ "package": "./is-dev"
900
+ }
901
+ },
902
+ {
903
+ "kind": "js",
904
+ "name": "*",
905
+ "declaration": {
906
+ "name": "*",
907
+ "package": "./variables"
908
+ }
909
+ }
910
+ ]
911
+ },
912
+ {
913
+ "kind": "javascript-module",
914
+ "path": "src/env/is-dev.ts",
915
+ "declarations": [
916
+ {
917
+ "kind": "function",
918
+ "name": "isDev",
919
+ "description": "Determines if the current environment is a development environment.",
920
+ "privacy": "public"
921
+ }
922
+ ],
923
+ "exports": [
924
+ {
925
+ "kind": "js",
926
+ "name": "isDev",
927
+ "declaration": {
928
+ "name": "isDev",
929
+ "module": "src/env/is-dev.ts"
930
+ }
931
+ }
932
+ ]
933
+ },
934
+ {
935
+ "kind": "javascript-module",
936
+ "path": "src/env/variables.ts",
937
+ "declarations": [
938
+ {
939
+ "kind": "variable",
940
+ "name": "SOCKET_EXT",
941
+ "type": {
942
+ "text": "string"
943
+ }
944
+ },
945
+ {
946
+ "kind": "variable",
947
+ "name": "_SOCKET_EXT",
948
+ "type": {
949
+ "text": "string"
950
+ },
951
+ "default": "'gwf'",
952
+ "description": "The sub-path used for WebSocket connections when API_HOST is not set",
953
+ "privacy": "public"
954
+ },
955
+ {
956
+ "kind": "variable",
957
+ "name": "FORCE_HTTP",
958
+ "type": {
959
+ "text": "string"
960
+ }
961
+ },
962
+ {
963
+ "kind": "variable",
964
+ "name": "_FORCE_HTTP",
965
+ "type": {
966
+ "text": "string"
967
+ },
968
+ "description": "The path to a JSON config file for the HTTP mode.",
969
+ "privacy": "public"
970
+ },
971
+ {
972
+ "kind": "variable",
973
+ "name": "API_HOST",
974
+ "type": {
975
+ "text": "string"
976
+ }
977
+ },
978
+ {
979
+ "kind": "variable",
980
+ "name": "_API_HOST",
981
+ "type": {
982
+ "text": "string"
983
+ },
984
+ "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
985
+ "description": "The Genesis Server URL (WebSocket or HTTP).",
986
+ "privacy": "public"
987
+ },
988
+ {
989
+ "kind": "variable",
990
+ "name": "HTTP_CONFIG",
991
+ "type": {
992
+ "text": "string"
993
+ }
994
+ },
995
+ {
996
+ "kind": "variable",
997
+ "name": "_HTTP_CONFIG",
998
+ "type": {
999
+ "text": "string"
1000
+ },
1001
+ "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
1002
+ "privacy": "public"
1003
+ },
1004
+ {
1005
+ "kind": "variable",
1006
+ "name": "DEFAULT_ORGANISATION",
1007
+ "type": {
1008
+ "text": "string"
1009
+ }
1010
+ },
1011
+ {
1012
+ "kind": "variable",
1013
+ "name": "_DEFAULT_ORGANISATION",
1014
+ "type": {
1015
+ "text": "string"
1016
+ },
1017
+ "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
1018
+ "privacy": "public"
1019
+ },
1020
+ {
1021
+ "kind": "variable",
1022
+ "name": "DEFAULT_PASSWORD",
1023
+ "type": {
1024
+ "text": "string"
1025
+ }
1026
+ },
1027
+ {
1028
+ "kind": "variable",
1029
+ "name": "_DEFAULT_PASSWORD",
1030
+ "type": {
1031
+ "text": "string"
1032
+ },
1033
+ "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
1034
+ "privacy": "public"
1035
+ },
1036
+ {
1037
+ "kind": "variable",
1038
+ "name": "DEFAULT_USER",
1039
+ "type": {
1040
+ "text": "string"
1041
+ }
1042
+ },
1043
+ {
1044
+ "kind": "variable",
1045
+ "name": "_DEFAULT_USER",
1046
+ "type": {
1047
+ "text": "string"
1048
+ },
1049
+ "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
1050
+ "privacy": "public"
1084
1051
  }
1085
1052
  ],
1086
1053
  "exports": [
1087
1054
  {
1088
1055
  "kind": "js",
1089
- "name": "InMemoryDatabase",
1056
+ "name": "SOCKET_EXT",
1090
1057
  "declaration": {
1091
- "name": "InMemoryDatabase",
1092
- "module": "src/data/inMemoryDatabase.ts"
1058
+ "name": "_SOCKET_EXT",
1059
+ "module": "src/env/variables.ts"
1093
1060
  }
1094
- }
1095
- ]
1096
- },
1097
- {
1098
- "kind": "javascript-module",
1099
- "path": "src/data/index.ts",
1100
- "declarations": [],
1101
- "exports": [
1061
+ },
1102
1062
  {
1103
1063
  "kind": "js",
1104
- "name": "*",
1064
+ "name": "FORCE_HTTP",
1105
1065
  "declaration": {
1106
- "name": "*",
1107
- "package": "./inMemoryDatabase"
1066
+ "name": "_FORCE_HTTP",
1067
+ "module": "src/env/variables.ts"
1068
+ }
1069
+ },
1070
+ {
1071
+ "kind": "js",
1072
+ "name": "API_HOST",
1073
+ "declaration": {
1074
+ "name": "_API_HOST",
1075
+ "module": "src/env/variables.ts"
1076
+ }
1077
+ },
1078
+ {
1079
+ "kind": "js",
1080
+ "name": "HTTP_CONFIG",
1081
+ "declaration": {
1082
+ "name": "_HTTP_CONFIG",
1083
+ "module": "src/env/variables.ts"
1084
+ }
1085
+ },
1086
+ {
1087
+ "kind": "js",
1088
+ "name": "DEFAULT_ORGANISATION",
1089
+ "declaration": {
1090
+ "name": "_DEFAULT_ORGANISATION",
1091
+ "module": "src/env/variables.ts"
1092
+ }
1093
+ },
1094
+ {
1095
+ "kind": "js",
1096
+ "name": "DEFAULT_PASSWORD",
1097
+ "declaration": {
1098
+ "name": "_DEFAULT_PASSWORD",
1099
+ "module": "src/env/variables.ts"
1100
+ }
1101
+ },
1102
+ {
1103
+ "kind": "js",
1104
+ "name": "DEFAULT_USER",
1105
+ "declaration": {
1106
+ "name": "_DEFAULT_USER",
1107
+ "module": "src/env/variables.ts"
1108
1108
  }
1109
1109
  }
1110
1110
  ]
@@ -1487,78 +1487,6 @@
1487
1487
  }
1488
1488
  ]
1489
1489
  },
1490
- {
1491
- "kind": "javascript-module",
1492
- "path": "src/utils/index.ts",
1493
- "declarations": [],
1494
- "exports": [
1495
- {
1496
- "kind": "js",
1497
- "name": "*",
1498
- "declaration": {
1499
- "name": "*",
1500
- "package": "./logger"
1501
- }
1502
- }
1503
- ]
1504
- },
1505
- {
1506
- "kind": "javascript-module",
1507
- "path": "src/utils/logger.ts",
1508
- "declarations": [
1509
- {
1510
- "kind": "variable",
1511
- "name": "logger"
1512
- }
1513
- ],
1514
- "exports": [
1515
- {
1516
- "kind": "js",
1517
- "name": "logger",
1518
- "declaration": {
1519
- "name": "logger",
1520
- "module": "src/utils/logger.ts"
1521
- }
1522
- }
1523
- ]
1524
- },
1525
- {
1526
- "kind": "javascript-module",
1527
- "path": "src/uuid/index.ts",
1528
- "declarations": [],
1529
- "exports": [
1530
- {
1531
- "kind": "js",
1532
- "name": "*",
1533
- "declaration": {
1534
- "name": "*",
1535
- "package": "./uuid"
1536
- }
1537
- }
1538
- ]
1539
- },
1540
- {
1541
- "kind": "javascript-module",
1542
- "path": "src/uuid/uuid.ts",
1543
- "declarations": [
1544
- {
1545
- "kind": "variable",
1546
- "name": "UUID",
1547
- "description": "A dependency injection token for the UUID interface.",
1548
- "privacy": "public"
1549
- }
1550
- ],
1551
- "exports": [
1552
- {
1553
- "kind": "js",
1554
- "name": "UUID",
1555
- "declaration": {
1556
- "name": "UUID",
1557
- "module": "src/uuid/uuid.ts"
1558
- }
1559
- }
1560
- ]
1561
- },
1562
1490
  {
1563
1491
  "kind": "javascript-module",
1564
1492
  "path": "src/styles/color.ts",
@@ -1906,6 +1834,78 @@
1906
1834
  }
1907
1835
  ]
1908
1836
  },
1837
+ {
1838
+ "kind": "javascript-module",
1839
+ "path": "src/utils/index.ts",
1840
+ "declarations": [],
1841
+ "exports": [
1842
+ {
1843
+ "kind": "js",
1844
+ "name": "*",
1845
+ "declaration": {
1846
+ "name": "*",
1847
+ "package": "./logger"
1848
+ }
1849
+ }
1850
+ ]
1851
+ },
1852
+ {
1853
+ "kind": "javascript-module",
1854
+ "path": "src/utils/logger.ts",
1855
+ "declarations": [
1856
+ {
1857
+ "kind": "variable",
1858
+ "name": "logger"
1859
+ }
1860
+ ],
1861
+ "exports": [
1862
+ {
1863
+ "kind": "js",
1864
+ "name": "logger",
1865
+ "declaration": {
1866
+ "name": "logger",
1867
+ "module": "src/utils/logger.ts"
1868
+ }
1869
+ }
1870
+ ]
1871
+ },
1872
+ {
1873
+ "kind": "javascript-module",
1874
+ "path": "src/uuid/index.ts",
1875
+ "declarations": [],
1876
+ "exports": [
1877
+ {
1878
+ "kind": "js",
1879
+ "name": "*",
1880
+ "declaration": {
1881
+ "name": "*",
1882
+ "package": "./uuid"
1883
+ }
1884
+ }
1885
+ ]
1886
+ },
1887
+ {
1888
+ "kind": "javascript-module",
1889
+ "path": "src/uuid/uuid.ts",
1890
+ "declarations": [
1891
+ {
1892
+ "kind": "variable",
1893
+ "name": "UUID",
1894
+ "description": "A dependency injection token for the UUID interface.",
1895
+ "privacy": "public"
1896
+ }
1897
+ ],
1898
+ "exports": [
1899
+ {
1900
+ "kind": "js",
1901
+ "name": "UUID",
1902
+ "declaration": {
1903
+ "name": "UUID",
1904
+ "module": "src/uuid/uuid.ts"
1905
+ }
1906
+ }
1907
+ ]
1908
+ },
1909
1909
  {
1910
1910
  "kind": "javascript-module",
1911
1911
  "path": "src/window/index.ts",
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.143.3-alpha-b3a864d.0",
4
+ "version": "14.144.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,12 +19,12 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.143.3-alpha-b3a864d.0",
23
- "@genesislcap/genx": "14.143.3-alpha-b3a864d.0",
22
+ "@genesislcap/foundation-testing": "14.144.0",
23
+ "@genesislcap/genx": "14.144.0",
24
24
  "rimraf": "^3.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@genesislcap/foundation-logger": "14.143.3-alpha-b3a864d.0",
27
+ "@genesislcap/foundation-logger": "14.144.0",
28
28
  "@microsoft/fast-components": "^2.30.6",
29
29
  "@microsoft/fast-element": "^1.12.0",
30
30
  "@microsoft/fast-foundation": "^2.49.4",
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "customElements": "dist/custom-elements.json",
45
- "gitHead": "0c0a289115ff94106d6f8d18306b357d00e32f29"
45
+ "gitHead": "df7a6ecc6ef4278d7354c939f9560746a32bc4cf"
46
46
  }