@genesislcap/foundation-utils 14.416.1 → 14.416.2-alpha-a775978.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.
- package/dist/custom-elements.json +616 -616
- package/package.json +11 -11
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"kind": "javascript-module",
|
|
214
|
-
"path": "src/
|
|
214
|
+
"path": "src/converters/index.ts",
|
|
215
215
|
"declarations": [],
|
|
216
216
|
"exports": [
|
|
217
217
|
{
|
|
@@ -219,116 +219,145 @@
|
|
|
219
219
|
"name": "*",
|
|
220
220
|
"declaration": {
|
|
221
221
|
"name": "*",
|
|
222
|
-
"package": "./
|
|
222
|
+
"package": "./string-array-converter"
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
]
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
"kind": "javascript-module",
|
|
229
|
-
"path": "src/
|
|
229
|
+
"path": "src/converters/string-array-converter.ts",
|
|
230
|
+
"declarations": [
|
|
231
|
+
{
|
|
232
|
+
"kind": "variable",
|
|
233
|
+
"name": "stringArrayConverter",
|
|
234
|
+
"type": {
|
|
235
|
+
"text": "ValueConverter"
|
|
236
|
+
},
|
|
237
|
+
"default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
|
|
238
|
+
"description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
|
|
239
|
+
"privacy": "public"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"exports": [
|
|
243
|
+
{
|
|
244
|
+
"kind": "js",
|
|
245
|
+
"name": "stringArrayConverter",
|
|
246
|
+
"declaration": {
|
|
247
|
+
"name": "stringArrayConverter",
|
|
248
|
+
"module": "src/converters/string-array-converter.ts"
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"kind": "javascript-module",
|
|
255
|
+
"path": "src/design-system/design-system.ts",
|
|
230
256
|
"declarations": [
|
|
231
257
|
{
|
|
232
258
|
"kind": "function",
|
|
233
|
-
"name": "
|
|
259
|
+
"name": "assureDesignSystem",
|
|
260
|
+
"return": {
|
|
261
|
+
"type": {
|
|
262
|
+
"text": "DesignSystemModule"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
234
265
|
"parameters": [
|
|
235
266
|
{
|
|
236
|
-
"name": "
|
|
267
|
+
"name": "module",
|
|
237
268
|
"type": {
|
|
238
|
-
"text": "
|
|
269
|
+
"text": "DesignSystemModule"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"description": "assureDesignSystem.",
|
|
274
|
+
"privacy": "public"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"kind": "function",
|
|
278
|
+
"name": "getCurrentDesignSystem",
|
|
279
|
+
"return": {
|
|
280
|
+
"type": {
|
|
281
|
+
"text": ""
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"parameters": [
|
|
285
|
+
{
|
|
286
|
+
"name": "element",
|
|
287
|
+
"type": {
|
|
288
|
+
"text": "HTMLElement"
|
|
239
289
|
},
|
|
240
|
-
"description": "The
|
|
290
|
+
"description": "The starting HTML element"
|
|
241
291
|
},
|
|
242
292
|
{
|
|
243
|
-
"name": "
|
|
293
|
+
"name": "fallbackPrefix",
|
|
244
294
|
"type": {
|
|
245
295
|
"text": "string"
|
|
246
296
|
},
|
|
247
|
-
"description": "The
|
|
297
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
248
298
|
}
|
|
249
299
|
],
|
|
250
|
-
"description": "
|
|
300
|
+
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
251
301
|
"privacy": "public"
|
|
252
|
-
}
|
|
253
|
-
],
|
|
254
|
-
"exports": [
|
|
302
|
+
},
|
|
255
303
|
{
|
|
256
|
-
"kind": "
|
|
257
|
-
"name": "
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
|
|
261
|
-
|
|
304
|
+
"kind": "function",
|
|
305
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
306
|
+
"return": {
|
|
307
|
+
"type": {
|
|
308
|
+
"text": ""
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"parameters": [
|
|
312
|
+
{
|
|
313
|
+
"name": "element",
|
|
314
|
+
"type": {
|
|
315
|
+
"text": "HTMLElement"
|
|
316
|
+
},
|
|
317
|
+
"description": "The starting HTML element"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "fallbackPrefix",
|
|
321
|
+
"type": {
|
|
322
|
+
"text": "string"
|
|
323
|
+
},
|
|
324
|
+
"description": "The prefix to fallback to if the provider is not available"
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
328
|
+
"privacy": "public"
|
|
262
329
|
}
|
|
263
|
-
]
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"kind": "javascript-module",
|
|
267
|
-
"path": "src/directives/index.ts",
|
|
268
|
-
"declarations": [],
|
|
330
|
+
],
|
|
269
331
|
"exports": [
|
|
270
332
|
{
|
|
271
333
|
"kind": "js",
|
|
272
|
-
"name": "
|
|
334
|
+
"name": "assureDesignSystem",
|
|
273
335
|
"declaration": {
|
|
274
|
-
"name": "
|
|
275
|
-
"
|
|
336
|
+
"name": "assureDesignSystem",
|
|
337
|
+
"module": "src/design-system/design-system.ts"
|
|
276
338
|
}
|
|
277
339
|
},
|
|
278
340
|
{
|
|
279
341
|
"kind": "js",
|
|
280
|
-
"name": "
|
|
281
|
-
"declaration": {
|
|
282
|
-
"name": "*",
|
|
283
|
-
"package": "./when-else"
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
]
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
"kind": "javascript-module",
|
|
290
|
-
"path": "src/converters/index.ts",
|
|
291
|
-
"declarations": [],
|
|
292
|
-
"exports": [
|
|
293
|
-
{
|
|
294
|
-
"kind": "js",
|
|
295
|
-
"name": "*",
|
|
342
|
+
"name": "getCurrentDesignSystem",
|
|
296
343
|
"declaration": {
|
|
297
|
-
"name": "
|
|
298
|
-
"
|
|
344
|
+
"name": "getCurrentDesignSystem",
|
|
345
|
+
"module": "src/design-system/design-system.ts"
|
|
299
346
|
}
|
|
300
|
-
}
|
|
301
|
-
]
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"kind": "javascript-module",
|
|
305
|
-
"path": "src/converters/string-array-converter.ts",
|
|
306
|
-
"declarations": [
|
|
307
|
-
{
|
|
308
|
-
"kind": "variable",
|
|
309
|
-
"name": "stringArrayConverter",
|
|
310
|
-
"type": {
|
|
311
|
-
"text": "ValueConverter"
|
|
312
|
-
},
|
|
313
|
-
"default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
|
|
314
|
-
"description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
|
|
315
|
-
"privacy": "public"
|
|
316
|
-
}
|
|
317
|
-
],
|
|
318
|
-
"exports": [
|
|
347
|
+
},
|
|
319
348
|
{
|
|
320
349
|
"kind": "js",
|
|
321
|
-
"name": "
|
|
350
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
322
351
|
"declaration": {
|
|
323
|
-
"name": "
|
|
324
|
-
"module": "src/
|
|
352
|
+
"name": "getCurrentDesignSystemPrefix",
|
|
353
|
+
"module": "src/design-system/design-system.ts"
|
|
325
354
|
}
|
|
326
355
|
}
|
|
327
356
|
]
|
|
328
357
|
},
|
|
329
358
|
{
|
|
330
359
|
"kind": "javascript-module",
|
|
331
|
-
"path": "src/
|
|
360
|
+
"path": "src/design-system/index.ts",
|
|
332
361
|
"declarations": [],
|
|
333
362
|
"exports": [
|
|
334
363
|
{
|
|
@@ -336,14 +365,14 @@
|
|
|
336
365
|
"name": "*",
|
|
337
366
|
"declaration": {
|
|
338
367
|
"name": "*",
|
|
339
|
-
"package": "./
|
|
368
|
+
"package": "./design-system"
|
|
340
369
|
}
|
|
341
370
|
}
|
|
342
371
|
]
|
|
343
372
|
},
|
|
344
373
|
{
|
|
345
374
|
"kind": "javascript-module",
|
|
346
|
-
"path": "src/
|
|
375
|
+
"path": "src/directives/index.ts",
|
|
347
376
|
"declarations": [],
|
|
348
377
|
"exports": [
|
|
349
378
|
{
|
|
@@ -351,7 +380,7 @@
|
|
|
351
380
|
"name": "*",
|
|
352
381
|
"declaration": {
|
|
353
382
|
"name": "*",
|
|
354
|
-
"package": "./
|
|
383
|
+
"package": "./sync"
|
|
355
384
|
}
|
|
356
385
|
},
|
|
357
386
|
{
|
|
@@ -359,649 +388,702 @@
|
|
|
359
388
|
"name": "*",
|
|
360
389
|
"declaration": {
|
|
361
390
|
"name": "*",
|
|
362
|
-
"package": "./
|
|
391
|
+
"package": "./when-else"
|
|
363
392
|
}
|
|
364
393
|
}
|
|
365
394
|
]
|
|
366
395
|
},
|
|
367
396
|
{
|
|
368
397
|
"kind": "javascript-module",
|
|
369
|
-
"path": "src/
|
|
370
|
-
"declarations": [
|
|
371
|
-
{
|
|
372
|
-
"kind": "function",
|
|
373
|
-
"name": "isDev",
|
|
374
|
-
"description": "Determines if the current environment is a development environment.",
|
|
375
|
-
"privacy": "public"
|
|
376
|
-
}
|
|
377
|
-
],
|
|
398
|
+
"path": "src/encoding/index.ts",
|
|
399
|
+
"declarations": [],
|
|
378
400
|
"exports": [
|
|
379
401
|
{
|
|
380
402
|
"kind": "js",
|
|
381
|
-
"name": "
|
|
403
|
+
"name": "*",
|
|
382
404
|
"declaration": {
|
|
383
|
-
"name": "
|
|
384
|
-
"
|
|
405
|
+
"name": "*",
|
|
406
|
+
"package": "./base64"
|
|
385
407
|
}
|
|
386
408
|
}
|
|
387
409
|
]
|
|
388
410
|
},
|
|
389
411
|
{
|
|
390
412
|
"kind": "javascript-module",
|
|
391
|
-
"path": "src/
|
|
413
|
+
"path": "src/data/inMemoryDatabase.ts",
|
|
392
414
|
"declarations": [
|
|
393
415
|
{
|
|
394
|
-
"kind": "
|
|
395
|
-
"
|
|
396
|
-
"
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
416
|
+
"kind": "class",
|
|
417
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
|
418
|
+
"name": "InMemoryDatabase",
|
|
419
|
+
"members": [
|
|
420
|
+
{
|
|
421
|
+
"kind": "field",
|
|
422
|
+
"name": "isWorking",
|
|
423
|
+
"type": {
|
|
424
|
+
"text": "boolean"
|
|
425
|
+
},
|
|
426
|
+
"privacy": "public",
|
|
427
|
+
"default": "false"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"kind": "field",
|
|
431
|
+
"name": "records",
|
|
432
|
+
"type": {
|
|
433
|
+
"text": "Record<string, T>"
|
|
434
|
+
},
|
|
435
|
+
"privacy": "private",
|
|
436
|
+
"default": "{}"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"kind": "field",
|
|
440
|
+
"name": "beforeUpdateListeners",
|
|
441
|
+
"privacy": "private"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"kind": "field",
|
|
445
|
+
"name": "afterUpdateListeners",
|
|
446
|
+
"privacy": "private"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"kind": "method",
|
|
450
|
+
"name": "create",
|
|
451
|
+
"privacy": "public",
|
|
452
|
+
"return": {
|
|
453
|
+
"type": {
|
|
454
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"parameters": [
|
|
458
|
+
{
|
|
459
|
+
"name": "newValue",
|
|
460
|
+
"type": {
|
|
461
|
+
"text": "Omit<T, 'id'>"
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
]
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"kind": "method",
|
|
468
|
+
"name": "read",
|
|
469
|
+
"privacy": "public",
|
|
470
|
+
"return": {
|
|
471
|
+
"type": {
|
|
472
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"parameters": [
|
|
476
|
+
{
|
|
477
|
+
"name": "id",
|
|
478
|
+
"type": {
|
|
479
|
+
"text": "string"
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"kind": "method",
|
|
486
|
+
"name": "update",
|
|
487
|
+
"privacy": "public",
|
|
488
|
+
"return": {
|
|
489
|
+
"type": {
|
|
490
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"parameters": [
|
|
494
|
+
{
|
|
495
|
+
"name": "id",
|
|
496
|
+
"type": {
|
|
497
|
+
"text": "string"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "newValue",
|
|
502
|
+
"type": {
|
|
503
|
+
"text": "Omit<Partial<T>, 'id'>"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"kind": "method",
|
|
510
|
+
"name": "delete",
|
|
511
|
+
"privacy": "public",
|
|
512
|
+
"return": {
|
|
513
|
+
"type": {
|
|
514
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"parameters": [
|
|
518
|
+
{
|
|
519
|
+
"name": "id",
|
|
520
|
+
"type": {
|
|
521
|
+
"text": "string"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"kind": "method",
|
|
528
|
+
"name": "visit",
|
|
529
|
+
"privacy": "public",
|
|
530
|
+
"return": {
|
|
531
|
+
"type": {
|
|
532
|
+
"text": "Promise<void>"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
"parameters": [
|
|
536
|
+
{
|
|
537
|
+
"name": "visitor",
|
|
538
|
+
"type": {
|
|
539
|
+
"text": "(record: T) => void"
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
]
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"kind": "method",
|
|
546
|
+
"name": "onBeforeUpdate",
|
|
547
|
+
"privacy": "public",
|
|
548
|
+
"return": {
|
|
549
|
+
"type": {
|
|
550
|
+
"text": "() => void"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"parameters": [
|
|
554
|
+
{
|
|
555
|
+
"name": "listener",
|
|
556
|
+
"type": {
|
|
557
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"kind": "method",
|
|
564
|
+
"name": "onAfterUpdate",
|
|
565
|
+
"privacy": "public",
|
|
566
|
+
"return": {
|
|
567
|
+
"type": {
|
|
568
|
+
"text": "() => void"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"parameters": [
|
|
572
|
+
{
|
|
573
|
+
"name": "listener",
|
|
574
|
+
"type": {
|
|
575
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
}
|
|
580
|
+
]
|
|
581
|
+
}
|
|
582
|
+
],
|
|
583
|
+
"exports": [
|
|
584
|
+
{
|
|
585
|
+
"kind": "js",
|
|
586
|
+
"name": "InMemoryDatabase",
|
|
587
|
+
"declaration": {
|
|
588
|
+
"name": "InMemoryDatabase",
|
|
589
|
+
"module": "src/data/inMemoryDatabase.ts"
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
]
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"kind": "javascript-module",
|
|
596
|
+
"path": "src/data/index.ts",
|
|
597
|
+
"declarations": [],
|
|
598
|
+
"exports": [
|
|
599
|
+
{
|
|
600
|
+
"kind": "js",
|
|
601
|
+
"name": "*",
|
|
602
|
+
"declaration": {
|
|
603
|
+
"name": "*",
|
|
604
|
+
"package": "./inMemoryDatabase"
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"kind": "javascript-module",
|
|
611
|
+
"path": "src/env/index.ts",
|
|
612
|
+
"declarations": [],
|
|
613
|
+
"exports": [
|
|
614
|
+
{
|
|
615
|
+
"kind": "js",
|
|
616
|
+
"name": "*",
|
|
617
|
+
"declaration": {
|
|
618
|
+
"name": "*",
|
|
619
|
+
"package": "./is-dev"
|
|
620
|
+
}
|
|
459
621
|
},
|
|
460
622
|
{
|
|
461
|
-
"kind": "
|
|
462
|
-
"name": "
|
|
463
|
-
"
|
|
464
|
-
|
|
623
|
+
"kind": "js",
|
|
624
|
+
"name": "*",
|
|
625
|
+
"declaration": {
|
|
626
|
+
"name": "*",
|
|
627
|
+
"package": "./variables"
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"kind": "javascript-module",
|
|
634
|
+
"path": "src/env/is-dev.ts",
|
|
635
|
+
"declarations": [
|
|
636
|
+
{
|
|
637
|
+
"kind": "function",
|
|
638
|
+
"name": "isDev",
|
|
639
|
+
"description": "Determines if the current environment is a development environment.",
|
|
465
640
|
"privacy": "public"
|
|
466
|
-
}
|
|
641
|
+
}
|
|
642
|
+
],
|
|
643
|
+
"exports": [
|
|
644
|
+
{
|
|
645
|
+
"kind": "js",
|
|
646
|
+
"name": "isDev",
|
|
647
|
+
"declaration": {
|
|
648
|
+
"name": "isDev",
|
|
649
|
+
"module": "src/env/is-dev.ts"
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
]
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"kind": "javascript-module",
|
|
656
|
+
"path": "src/env/variables.ts",
|
|
657
|
+
"declarations": [
|
|
467
658
|
{
|
|
468
659
|
"kind": "variable",
|
|
469
|
-
"name": "
|
|
660
|
+
"name": "BUILDER",
|
|
470
661
|
"type": {
|
|
471
662
|
"text": "string"
|
|
472
663
|
}
|
|
473
664
|
},
|
|
474
665
|
{
|
|
475
666
|
"kind": "variable",
|
|
476
|
-
"name": "
|
|
667
|
+
"name": "_BUILDER",
|
|
477
668
|
"type": {
|
|
478
669
|
"text": "string"
|
|
479
670
|
},
|
|
480
|
-
"default": "
|
|
481
|
-
"description": "The
|
|
671
|
+
"default": "'webpack'",
|
|
672
|
+
"description": "The builder aka file bundler.",
|
|
482
673
|
"privacy": "public"
|
|
483
674
|
},
|
|
484
675
|
{
|
|
485
676
|
"kind": "variable",
|
|
486
|
-
"name": "
|
|
677
|
+
"name": "PUBLIC_PATH",
|
|
487
678
|
"type": {
|
|
488
679
|
"text": "string"
|
|
489
680
|
}
|
|
490
681
|
},
|
|
491
682
|
{
|
|
492
683
|
"kind": "variable",
|
|
493
|
-
"name": "
|
|
684
|
+
"name": "_PUBLIC_PATH",
|
|
494
685
|
"type": {
|
|
495
686
|
"text": "string"
|
|
496
687
|
},
|
|
497
|
-
"
|
|
688
|
+
"default": "'/'",
|
|
689
|
+
"description": "The public path.",
|
|
498
690
|
"privacy": "public"
|
|
499
691
|
},
|
|
500
692
|
{
|
|
501
693
|
"kind": "variable",
|
|
502
|
-
"name": "
|
|
694
|
+
"name": "SOCKET_EXT",
|
|
503
695
|
"type": {
|
|
504
696
|
"text": "string"
|
|
505
697
|
}
|
|
506
698
|
},
|
|
507
699
|
{
|
|
508
700
|
"kind": "variable",
|
|
509
|
-
"name": "
|
|
701
|
+
"name": "_SOCKET_EXT",
|
|
510
702
|
"type": {
|
|
511
703
|
"text": "string"
|
|
512
704
|
},
|
|
513
|
-
"
|
|
705
|
+
"default": "'gwf'",
|
|
706
|
+
"description": "The sub-path used for WebSocket connections when API_HOST is not set",
|
|
514
707
|
"privacy": "public"
|
|
515
708
|
},
|
|
516
709
|
{
|
|
517
710
|
"kind": "variable",
|
|
518
|
-
"name": "
|
|
711
|
+
"name": "FORCE_HTTP",
|
|
519
712
|
"type": {
|
|
520
713
|
"text": "string"
|
|
521
714
|
}
|
|
522
715
|
},
|
|
523
716
|
{
|
|
524
717
|
"kind": "variable",
|
|
525
|
-
"name": "
|
|
718
|
+
"name": "_FORCE_HTTP",
|
|
526
719
|
"type": {
|
|
527
720
|
"text": "string"
|
|
528
721
|
},
|
|
529
|
-
"description": "The
|
|
722
|
+
"description": "The path to a JSON config file for the HTTP mode.",
|
|
530
723
|
"privacy": "public"
|
|
531
724
|
},
|
|
532
725
|
{
|
|
533
726
|
"kind": "variable",
|
|
534
|
-
"name": "
|
|
727
|
+
"name": "GENESIS_SOCKET_URL",
|
|
728
|
+
"default": "`${location.protocol.replace('http', 'ws')}//${location.host}${_PUBLIC_PATH}/${_SOCKET_EXT}/`",
|
|
729
|
+
"description": "Genesis Socket URL",
|
|
730
|
+
"privacy": "public"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"kind": "variable",
|
|
734
|
+
"name": "API_HOST",
|
|
535
735
|
"type": {
|
|
536
736
|
"text": "string"
|
|
537
737
|
}
|
|
538
738
|
},
|
|
539
739
|
{
|
|
540
740
|
"kind": "variable",
|
|
541
|
-
"name": "
|
|
741
|
+
"name": "_API_HOST",
|
|
542
742
|
"type": {
|
|
543
743
|
"text": "string"
|
|
544
744
|
},
|
|
545
|
-
"
|
|
745
|
+
"default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
|
|
746
|
+
"description": "The Genesis Server URL (WebSocket or HTTP).",
|
|
546
747
|
"privacy": "public"
|
|
547
748
|
},
|
|
548
749
|
{
|
|
549
750
|
"kind": "variable",
|
|
550
|
-
"name": "
|
|
751
|
+
"name": "HTTP_CONFIG",
|
|
551
752
|
"type": {
|
|
552
753
|
"text": "string"
|
|
553
|
-
}
|
|
554
|
-
"default": "'gwf/event-login-auth'",
|
|
555
|
-
"privacy": "public"
|
|
754
|
+
}
|
|
556
755
|
},
|
|
557
756
|
{
|
|
558
757
|
"kind": "variable",
|
|
559
|
-
"name": "
|
|
758
|
+
"name": "_HTTP_CONFIG",
|
|
560
759
|
"type": {
|
|
561
760
|
"text": "string"
|
|
562
761
|
},
|
|
563
|
-
"
|
|
762
|
+
"description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
|
|
564
763
|
"privacy": "public"
|
|
565
764
|
},
|
|
566
765
|
{
|
|
567
766
|
"kind": "variable",
|
|
568
|
-
"name": "
|
|
767
|
+
"name": "DEFAULT_ORGANISATION",
|
|
569
768
|
"type": {
|
|
570
769
|
"text": "string"
|
|
571
|
-
}
|
|
572
|
-
"default": "'gwf/event-login-details'",
|
|
573
|
-
"privacy": "public"
|
|
770
|
+
}
|
|
574
771
|
},
|
|
575
772
|
{
|
|
576
773
|
"kind": "variable",
|
|
577
|
-
"name": "
|
|
774
|
+
"name": "_DEFAULT_ORGANISATION",
|
|
578
775
|
"type": {
|
|
579
776
|
"text": "string"
|
|
580
777
|
},
|
|
581
|
-
"
|
|
778
|
+
"description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
582
779
|
"privacy": "public"
|
|
583
780
|
},
|
|
584
781
|
{
|
|
585
782
|
"kind": "variable",
|
|
586
|
-
"name": "
|
|
783
|
+
"name": "DEFAULT_PASSWORD",
|
|
587
784
|
"type": {
|
|
588
785
|
"text": "string"
|
|
589
|
-
}
|
|
590
|
-
"default": "'gwf/event-change-user-password'",
|
|
591
|
-
"privacy": "public"
|
|
786
|
+
}
|
|
592
787
|
},
|
|
593
788
|
{
|
|
594
789
|
"kind": "variable",
|
|
595
|
-
"name": "
|
|
790
|
+
"name": "_DEFAULT_PASSWORD",
|
|
596
791
|
"type": {
|
|
597
792
|
"text": "string"
|
|
598
793
|
},
|
|
599
|
-
"
|
|
794
|
+
"description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
600
795
|
"privacy": "public"
|
|
601
796
|
},
|
|
602
797
|
{
|
|
603
798
|
"kind": "variable",
|
|
604
|
-
"name": "
|
|
799
|
+
"name": "DEFAULT_USER",
|
|
605
800
|
"type": {
|
|
606
801
|
"text": "string"
|
|
607
|
-
}
|
|
608
|
-
"default": "'gwf/event-password-reset-action'",
|
|
609
|
-
"privacy": "public"
|
|
802
|
+
}
|
|
610
803
|
},
|
|
611
804
|
{
|
|
612
805
|
"kind": "variable",
|
|
613
|
-
"name": "
|
|
806
|
+
"name": "_DEFAULT_USER",
|
|
614
807
|
"type": {
|
|
615
808
|
"text": "string"
|
|
616
809
|
},
|
|
617
|
-
"
|
|
810
|
+
"description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
|
|
618
811
|
"privacy": "public"
|
|
619
812
|
},
|
|
620
813
|
{
|
|
621
814
|
"kind": "variable",
|
|
622
|
-
"name": "
|
|
815
|
+
"name": "LOGIN_URL",
|
|
623
816
|
"type": {
|
|
624
817
|
"text": "string"
|
|
625
818
|
},
|
|
626
|
-
"default": "'gwf/
|
|
819
|
+
"default": "'gwf/event-login-auth'",
|
|
627
820
|
"privacy": "public"
|
|
628
821
|
},
|
|
629
822
|
{
|
|
630
823
|
"kind": "variable",
|
|
631
|
-
"name": "
|
|
824
|
+
"name": "LOGIN_REFRESH_URL",
|
|
632
825
|
"type": {
|
|
633
826
|
"text": "string"
|
|
634
827
|
},
|
|
635
|
-
"default": "'
|
|
828
|
+
"default": "'gwf/event-login-auth'",
|
|
636
829
|
"privacy": "public"
|
|
637
830
|
},
|
|
638
831
|
{
|
|
639
832
|
"kind": "variable",
|
|
640
|
-
"name": "
|
|
833
|
+
"name": "LOGIN_DETAILS_URL",
|
|
641
834
|
"type": {
|
|
642
835
|
"text": "string"
|
|
643
836
|
},
|
|
644
|
-
"default": "'gwf/
|
|
837
|
+
"default": "'gwf/event-login-details'",
|
|
645
838
|
"privacy": "public"
|
|
646
|
-
}
|
|
647
|
-
],
|
|
648
|
-
"exports": [
|
|
649
|
-
{
|
|
650
|
-
"kind": "js",
|
|
651
|
-
"name": "BUILDER",
|
|
652
|
-
"declaration": {
|
|
653
|
-
"name": "_BUILDER",
|
|
654
|
-
"module": "src/env/variables.ts"
|
|
655
|
-
}
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"kind": "js",
|
|
659
|
-
"name": "PUBLIC_PATH",
|
|
660
|
-
"declaration": {
|
|
661
|
-
"name": "_PUBLIC_PATH",
|
|
662
|
-
"module": "src/env/variables.ts"
|
|
663
|
-
}
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"kind": "js",
|
|
667
|
-
"name": "SOCKET_EXT",
|
|
668
|
-
"declaration": {
|
|
669
|
-
"name": "_SOCKET_EXT",
|
|
670
|
-
"module": "src/env/variables.ts"
|
|
671
|
-
}
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
"kind": "js",
|
|
675
|
-
"name": "FORCE_HTTP",
|
|
676
|
-
"declaration": {
|
|
677
|
-
"name": "_FORCE_HTTP",
|
|
678
|
-
"module": "src/env/variables.ts"
|
|
679
|
-
}
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"kind": "js",
|
|
683
|
-
"name": "GENESIS_SOCKET_URL",
|
|
684
|
-
"declaration": {
|
|
685
|
-
"name": "GENESIS_SOCKET_URL",
|
|
686
|
-
"module": "src/env/variables.ts"
|
|
687
|
-
}
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
"kind": "js",
|
|
691
|
-
"name": "API_HOST",
|
|
692
|
-
"declaration": {
|
|
693
|
-
"name": "_API_HOST",
|
|
694
|
-
"module": "src/env/variables.ts"
|
|
695
|
-
}
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"kind": "js",
|
|
699
|
-
"name": "HTTP_CONFIG",
|
|
700
|
-
"declaration": {
|
|
701
|
-
"name": "_HTTP_CONFIG",
|
|
702
|
-
"module": "src/env/variables.ts"
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"kind": "js",
|
|
707
|
-
"name": "DEFAULT_ORGANISATION",
|
|
708
|
-
"declaration": {
|
|
709
|
-
"name": "_DEFAULT_ORGANISATION",
|
|
710
|
-
"module": "src/env/variables.ts"
|
|
711
|
-
}
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
"kind": "js",
|
|
715
|
-
"name": "DEFAULT_PASSWORD",
|
|
716
|
-
"declaration": {
|
|
717
|
-
"name": "_DEFAULT_PASSWORD",
|
|
718
|
-
"module": "src/env/variables.ts"
|
|
719
|
-
}
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"kind": "js",
|
|
723
|
-
"name": "DEFAULT_USER",
|
|
724
|
-
"declaration": {
|
|
725
|
-
"name": "_DEFAULT_USER",
|
|
726
|
-
"module": "src/env/variables.ts"
|
|
727
|
-
}
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
"kind": "js",
|
|
731
|
-
"name": "LOGIN_URL",
|
|
732
|
-
"declaration": {
|
|
733
|
-
"name": "LOGIN_URL",
|
|
734
|
-
"module": "src/env/variables.ts"
|
|
735
|
-
}
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"kind": "js",
|
|
739
|
-
"name": "LOGIN_REFRESH_URL",
|
|
740
|
-
"declaration": {
|
|
741
|
-
"name": "LOGIN_REFRESH_URL",
|
|
742
|
-
"module": "src/env/variables.ts"
|
|
743
|
-
}
|
|
744
839
|
},
|
|
745
840
|
{
|
|
746
|
-
"kind": "
|
|
747
|
-
"name": "LOGIN_DETAILS_URL",
|
|
748
|
-
"declaration": {
|
|
749
|
-
"name": "LOGIN_DETAILS_URL",
|
|
750
|
-
"module": "src/env/variables.ts"
|
|
751
|
-
}
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"kind": "js",
|
|
841
|
+
"kind": "variable",
|
|
755
842
|
"name": "LOGOUT_URL",
|
|
756
|
-
"
|
|
757
|
-
"
|
|
758
|
-
|
|
759
|
-
|
|
843
|
+
"type": {
|
|
844
|
+
"text": "string"
|
|
845
|
+
},
|
|
846
|
+
"default": "'gwf/event-logout'",
|
|
847
|
+
"privacy": "public"
|
|
760
848
|
},
|
|
761
849
|
{
|
|
762
|
-
"kind": "
|
|
763
|
-
"name": "CHANGE_PASSWORD_URL",
|
|
764
|
-
"
|
|
765
|
-
"
|
|
766
|
-
|
|
767
|
-
|
|
850
|
+
"kind": "variable",
|
|
851
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
852
|
+
"type": {
|
|
853
|
+
"text": "string"
|
|
854
|
+
},
|
|
855
|
+
"default": "'gwf/event-change-user-password'",
|
|
856
|
+
"privacy": "public"
|
|
768
857
|
},
|
|
769
858
|
{
|
|
770
|
-
"kind": "
|
|
859
|
+
"kind": "variable",
|
|
771
860
|
"name": "FORGOT_PASSWORD_URL",
|
|
772
|
-
"
|
|
773
|
-
"
|
|
774
|
-
|
|
775
|
-
|
|
861
|
+
"type": {
|
|
862
|
+
"text": "string"
|
|
863
|
+
},
|
|
864
|
+
"default": "'gwf/event-self-service-password-reset'",
|
|
865
|
+
"privacy": "public"
|
|
776
866
|
},
|
|
777
867
|
{
|
|
778
|
-
"kind": "
|
|
868
|
+
"kind": "variable",
|
|
779
869
|
"name": "RESET_PASSWORD_URL",
|
|
780
|
-
"
|
|
781
|
-
"
|
|
782
|
-
|
|
783
|
-
|
|
870
|
+
"type": {
|
|
871
|
+
"text": "string"
|
|
872
|
+
},
|
|
873
|
+
"default": "'gwf/event-password-reset-action'",
|
|
874
|
+
"privacy": "public"
|
|
784
875
|
},
|
|
785
876
|
{
|
|
786
|
-
"kind": "
|
|
877
|
+
"kind": "variable",
|
|
787
878
|
"name": "SSO_LIST_URL",
|
|
788
|
-
"
|
|
789
|
-
"
|
|
790
|
-
|
|
791
|
-
|
|
879
|
+
"type": {
|
|
880
|
+
"text": "string"
|
|
881
|
+
},
|
|
882
|
+
"default": "'gwf/sso/list'",
|
|
883
|
+
"privacy": "public"
|
|
792
884
|
},
|
|
793
885
|
{
|
|
794
|
-
"kind": "
|
|
886
|
+
"kind": "variable",
|
|
795
887
|
"name": "SSO_LOGIN_URL",
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
|
|
799
|
-
}
|
|
888
|
+
"type": {
|
|
889
|
+
"text": "string"
|
|
890
|
+
},
|
|
891
|
+
"default": "'gwf/{type}/login?idp={id}'",
|
|
892
|
+
"privacy": "public"
|
|
800
893
|
},
|
|
801
894
|
{
|
|
802
|
-
"kind": "
|
|
895
|
+
"kind": "variable",
|
|
803
896
|
"name": "ENVIRONMENT_LEVEL",
|
|
897
|
+
"type": {
|
|
898
|
+
"text": "string"
|
|
899
|
+
},
|
|
900
|
+
"default": "'default'",
|
|
901
|
+
"privacy": "public"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"kind": "variable",
|
|
905
|
+
"name": "ACCEPT_TERMS_URL",
|
|
906
|
+
"type": {
|
|
907
|
+
"text": "string"
|
|
908
|
+
},
|
|
909
|
+
"default": "'gwf/auth/accept-terms'",
|
|
910
|
+
"privacy": "public"
|
|
911
|
+
}
|
|
912
|
+
],
|
|
913
|
+
"exports": [
|
|
914
|
+
{
|
|
915
|
+
"kind": "js",
|
|
916
|
+
"name": "BUILDER",
|
|
804
917
|
"declaration": {
|
|
805
|
-
"name": "
|
|
918
|
+
"name": "_BUILDER",
|
|
806
919
|
"module": "src/env/variables.ts"
|
|
807
920
|
}
|
|
808
921
|
},
|
|
809
922
|
{
|
|
810
923
|
"kind": "js",
|
|
811
|
-
"name": "
|
|
924
|
+
"name": "PUBLIC_PATH",
|
|
812
925
|
"declaration": {
|
|
813
|
-
"name": "
|
|
926
|
+
"name": "_PUBLIC_PATH",
|
|
814
927
|
"module": "src/env/variables.ts"
|
|
815
928
|
}
|
|
816
|
-
}
|
|
817
|
-
]
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
"kind": "javascript-module",
|
|
821
|
-
"path": "src/data/inMemoryDatabase.ts",
|
|
822
|
-
"declarations": [
|
|
929
|
+
},
|
|
823
930
|
{
|
|
824
|
-
"kind": "
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
"type": {
|
|
832
|
-
"text": "boolean"
|
|
833
|
-
},
|
|
834
|
-
"privacy": "public",
|
|
835
|
-
"default": "false"
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"kind": "field",
|
|
839
|
-
"name": "records",
|
|
840
|
-
"type": {
|
|
841
|
-
"text": "Record<string, T>"
|
|
842
|
-
},
|
|
843
|
-
"privacy": "private",
|
|
844
|
-
"default": "{}"
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"kind": "field",
|
|
848
|
-
"name": "beforeUpdateListeners",
|
|
849
|
-
"privacy": "private"
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
"kind": "field",
|
|
853
|
-
"name": "afterUpdateListeners",
|
|
854
|
-
"privacy": "private"
|
|
855
|
-
},
|
|
856
|
-
{
|
|
857
|
-
"kind": "method",
|
|
858
|
-
"name": "create",
|
|
859
|
-
"privacy": "public",
|
|
860
|
-
"return": {
|
|
861
|
-
"type": {
|
|
862
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
|
863
|
-
}
|
|
864
|
-
},
|
|
865
|
-
"parameters": [
|
|
866
|
-
{
|
|
867
|
-
"name": "newValue",
|
|
868
|
-
"type": {
|
|
869
|
-
"text": "Omit<T, 'id'>"
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
]
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"kind": "method",
|
|
876
|
-
"name": "read",
|
|
877
|
-
"privacy": "public",
|
|
878
|
-
"return": {
|
|
879
|
-
"type": {
|
|
880
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
|
881
|
-
}
|
|
882
|
-
},
|
|
883
|
-
"parameters": [
|
|
884
|
-
{
|
|
885
|
-
"name": "id",
|
|
886
|
-
"type": {
|
|
887
|
-
"text": "string"
|
|
888
|
-
}
|
|
889
|
-
}
|
|
890
|
-
]
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"kind": "method",
|
|
894
|
-
"name": "update",
|
|
895
|
-
"privacy": "public",
|
|
896
|
-
"return": {
|
|
897
|
-
"type": {
|
|
898
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
|
899
|
-
}
|
|
900
|
-
},
|
|
901
|
-
"parameters": [
|
|
902
|
-
{
|
|
903
|
-
"name": "id",
|
|
904
|
-
"type": {
|
|
905
|
-
"text": "string"
|
|
906
|
-
}
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
"name": "newValue",
|
|
910
|
-
"type": {
|
|
911
|
-
"text": "Omit<Partial<T>, 'id'>"
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
|
-
]
|
|
915
|
-
},
|
|
916
|
-
{
|
|
917
|
-
"kind": "method",
|
|
918
|
-
"name": "delete",
|
|
919
|
-
"privacy": "public",
|
|
920
|
-
"return": {
|
|
921
|
-
"type": {
|
|
922
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
|
923
|
-
}
|
|
924
|
-
},
|
|
925
|
-
"parameters": [
|
|
926
|
-
{
|
|
927
|
-
"name": "id",
|
|
928
|
-
"type": {
|
|
929
|
-
"text": "string"
|
|
930
|
-
}
|
|
931
|
-
}
|
|
932
|
-
]
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
"kind": "method",
|
|
936
|
-
"name": "visit",
|
|
937
|
-
"privacy": "public",
|
|
938
|
-
"return": {
|
|
939
|
-
"type": {
|
|
940
|
-
"text": "Promise<void>"
|
|
941
|
-
}
|
|
942
|
-
},
|
|
943
|
-
"parameters": [
|
|
944
|
-
{
|
|
945
|
-
"name": "visitor",
|
|
946
|
-
"type": {
|
|
947
|
-
"text": "(record: T) => void"
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
]
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"kind": "method",
|
|
954
|
-
"name": "onBeforeUpdate",
|
|
955
|
-
"privacy": "public",
|
|
956
|
-
"return": {
|
|
957
|
-
"type": {
|
|
958
|
-
"text": "() => void"
|
|
959
|
-
}
|
|
960
|
-
},
|
|
961
|
-
"parameters": [
|
|
962
|
-
{
|
|
963
|
-
"name": "listener",
|
|
964
|
-
"type": {
|
|
965
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
|
966
|
-
}
|
|
967
|
-
}
|
|
968
|
-
]
|
|
969
|
-
},
|
|
970
|
-
{
|
|
971
|
-
"kind": "method",
|
|
972
|
-
"name": "onAfterUpdate",
|
|
973
|
-
"privacy": "public",
|
|
974
|
-
"return": {
|
|
975
|
-
"type": {
|
|
976
|
-
"text": "() => void"
|
|
977
|
-
}
|
|
978
|
-
},
|
|
979
|
-
"parameters": [
|
|
980
|
-
{
|
|
981
|
-
"name": "listener",
|
|
982
|
-
"type": {
|
|
983
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
]
|
|
987
|
-
}
|
|
988
|
-
]
|
|
989
|
-
}
|
|
990
|
-
],
|
|
991
|
-
"exports": [
|
|
931
|
+
"kind": "js",
|
|
932
|
+
"name": "SOCKET_EXT",
|
|
933
|
+
"declaration": {
|
|
934
|
+
"name": "_SOCKET_EXT",
|
|
935
|
+
"module": "src/env/variables.ts"
|
|
936
|
+
}
|
|
937
|
+
},
|
|
992
938
|
{
|
|
993
939
|
"kind": "js",
|
|
994
|
-
"name": "
|
|
940
|
+
"name": "FORCE_HTTP",
|
|
995
941
|
"declaration": {
|
|
996
|
-
"name": "
|
|
997
|
-
"module": "src/
|
|
942
|
+
"name": "_FORCE_HTTP",
|
|
943
|
+
"module": "src/env/variables.ts"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"kind": "js",
|
|
948
|
+
"name": "GENESIS_SOCKET_URL",
|
|
949
|
+
"declaration": {
|
|
950
|
+
"name": "GENESIS_SOCKET_URL",
|
|
951
|
+
"module": "src/env/variables.ts"
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"kind": "js",
|
|
956
|
+
"name": "API_HOST",
|
|
957
|
+
"declaration": {
|
|
958
|
+
"name": "_API_HOST",
|
|
959
|
+
"module": "src/env/variables.ts"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"kind": "js",
|
|
964
|
+
"name": "HTTP_CONFIG",
|
|
965
|
+
"declaration": {
|
|
966
|
+
"name": "_HTTP_CONFIG",
|
|
967
|
+
"module": "src/env/variables.ts"
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"kind": "js",
|
|
972
|
+
"name": "DEFAULT_ORGANISATION",
|
|
973
|
+
"declaration": {
|
|
974
|
+
"name": "_DEFAULT_ORGANISATION",
|
|
975
|
+
"module": "src/env/variables.ts"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"kind": "js",
|
|
980
|
+
"name": "DEFAULT_PASSWORD",
|
|
981
|
+
"declaration": {
|
|
982
|
+
"name": "_DEFAULT_PASSWORD",
|
|
983
|
+
"module": "src/env/variables.ts"
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"kind": "js",
|
|
988
|
+
"name": "DEFAULT_USER",
|
|
989
|
+
"declaration": {
|
|
990
|
+
"name": "_DEFAULT_USER",
|
|
991
|
+
"module": "src/env/variables.ts"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"kind": "js",
|
|
996
|
+
"name": "LOGIN_URL",
|
|
997
|
+
"declaration": {
|
|
998
|
+
"name": "LOGIN_URL",
|
|
999
|
+
"module": "src/env/variables.ts"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"kind": "js",
|
|
1004
|
+
"name": "LOGIN_REFRESH_URL",
|
|
1005
|
+
"declaration": {
|
|
1006
|
+
"name": "LOGIN_REFRESH_URL",
|
|
1007
|
+
"module": "src/env/variables.ts"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"kind": "js",
|
|
1012
|
+
"name": "LOGIN_DETAILS_URL",
|
|
1013
|
+
"declaration": {
|
|
1014
|
+
"name": "LOGIN_DETAILS_URL",
|
|
1015
|
+
"module": "src/env/variables.ts"
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"kind": "js",
|
|
1020
|
+
"name": "LOGOUT_URL",
|
|
1021
|
+
"declaration": {
|
|
1022
|
+
"name": "LOGOUT_URL",
|
|
1023
|
+
"module": "src/env/variables.ts"
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"kind": "js",
|
|
1028
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
1029
|
+
"declaration": {
|
|
1030
|
+
"name": "CHANGE_PASSWORD_URL",
|
|
1031
|
+
"module": "src/env/variables.ts"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"kind": "js",
|
|
1036
|
+
"name": "FORGOT_PASSWORD_URL",
|
|
1037
|
+
"declaration": {
|
|
1038
|
+
"name": "FORGOT_PASSWORD_URL",
|
|
1039
|
+
"module": "src/env/variables.ts"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"kind": "js",
|
|
1044
|
+
"name": "RESET_PASSWORD_URL",
|
|
1045
|
+
"declaration": {
|
|
1046
|
+
"name": "RESET_PASSWORD_URL",
|
|
1047
|
+
"module": "src/env/variables.ts"
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"kind": "js",
|
|
1052
|
+
"name": "SSO_LIST_URL",
|
|
1053
|
+
"declaration": {
|
|
1054
|
+
"name": "SSO_LIST_URL",
|
|
1055
|
+
"module": "src/env/variables.ts"
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"kind": "js",
|
|
1060
|
+
"name": "SSO_LOGIN_URL",
|
|
1061
|
+
"declaration": {
|
|
1062
|
+
"name": "SSO_LOGIN_URL",
|
|
1063
|
+
"module": "src/env/variables.ts"
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"kind": "js",
|
|
1068
|
+
"name": "ENVIRONMENT_LEVEL",
|
|
1069
|
+
"declaration": {
|
|
1070
|
+
"name": "ENVIRONMENT_LEVEL",
|
|
1071
|
+
"module": "src/env/variables.ts"
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"kind": "js",
|
|
1076
|
+
"name": "ACCEPT_TERMS_URL",
|
|
1077
|
+
"declaration": {
|
|
1078
|
+
"name": "ACCEPT_TERMS_URL",
|
|
1079
|
+
"module": "src/env/variables.ts"
|
|
998
1080
|
}
|
|
999
1081
|
}
|
|
1000
1082
|
]
|
|
1001
1083
|
},
|
|
1002
1084
|
{
|
|
1003
1085
|
"kind": "javascript-module",
|
|
1004
|
-
"path": "src/
|
|
1086
|
+
"path": "src/decorators/index.ts",
|
|
1005
1087
|
"declarations": [],
|
|
1006
1088
|
"exports": [
|
|
1007
1089
|
{
|
|
@@ -1009,127 +1091,45 @@
|
|
|
1009
1091
|
"name": "*",
|
|
1010
1092
|
"declaration": {
|
|
1011
1093
|
"name": "*",
|
|
1012
|
-
"package": "./
|
|
1094
|
+
"package": "./renderOnChange"
|
|
1013
1095
|
}
|
|
1014
1096
|
}
|
|
1015
1097
|
]
|
|
1016
1098
|
},
|
|
1017
1099
|
{
|
|
1018
1100
|
"kind": "javascript-module",
|
|
1019
|
-
"path": "src/
|
|
1101
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
1020
1102
|
"declarations": [
|
|
1021
1103
|
{
|
|
1022
1104
|
"kind": "function",
|
|
1023
|
-
"name": "
|
|
1024
|
-
"return": {
|
|
1025
|
-
"type": {
|
|
1026
|
-
"text": "DesignSystemModule"
|
|
1027
|
-
}
|
|
1028
|
-
},
|
|
1029
|
-
"parameters": [
|
|
1030
|
-
{
|
|
1031
|
-
"name": "module",
|
|
1032
|
-
"type": {
|
|
1033
|
-
"text": "DesignSystemModule"
|
|
1034
|
-
}
|
|
1035
|
-
}
|
|
1036
|
-
],
|
|
1037
|
-
"description": "assureDesignSystem.",
|
|
1038
|
-
"privacy": "public"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"kind": "function",
|
|
1042
|
-
"name": "getCurrentDesignSystem",
|
|
1043
|
-
"return": {
|
|
1044
|
-
"type": {
|
|
1045
|
-
"text": ""
|
|
1046
|
-
}
|
|
1047
|
-
},
|
|
1048
|
-
"parameters": [
|
|
1049
|
-
{
|
|
1050
|
-
"name": "element",
|
|
1051
|
-
"type": {
|
|
1052
|
-
"text": "HTMLElement"
|
|
1053
|
-
},
|
|
1054
|
-
"description": "The starting HTML element"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"name": "fallbackPrefix",
|
|
1058
|
-
"type": {
|
|
1059
|
-
"text": "string"
|
|
1060
|
-
},
|
|
1061
|
-
"description": "The prefix to fallback to if the provider is not available"
|
|
1062
|
-
}
|
|
1063
|
-
],
|
|
1064
|
-
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
|
1065
|
-
"privacy": "public"
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"kind": "function",
|
|
1069
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1070
|
-
"return": {
|
|
1071
|
-
"type": {
|
|
1072
|
-
"text": ""
|
|
1073
|
-
}
|
|
1074
|
-
},
|
|
1105
|
+
"name": "renderOnChange",
|
|
1075
1106
|
"parameters": [
|
|
1076
1107
|
{
|
|
1077
|
-
"name": "
|
|
1108
|
+
"name": "target",
|
|
1078
1109
|
"type": {
|
|
1079
|
-
"text": "
|
|
1110
|
+
"text": "FASTElement & { render(): void }"
|
|
1080
1111
|
},
|
|
1081
|
-
"description": "The
|
|
1112
|
+
"description": "The target to define the property change handler on."
|
|
1082
1113
|
},
|
|
1083
1114
|
{
|
|
1084
|
-
"name": "
|
|
1115
|
+
"name": "name",
|
|
1085
1116
|
"type": {
|
|
1086
1117
|
"text": "string"
|
|
1087
1118
|
},
|
|
1088
|
-
"description": "The
|
|
1119
|
+
"description": "The property name."
|
|
1089
1120
|
}
|
|
1090
1121
|
],
|
|
1091
|
-
"description": "
|
|
1122
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
1092
1123
|
"privacy": "public"
|
|
1093
1124
|
}
|
|
1094
1125
|
],
|
|
1095
1126
|
"exports": [
|
|
1096
1127
|
{
|
|
1097
1128
|
"kind": "js",
|
|
1098
|
-
"name": "
|
|
1099
|
-
"declaration": {
|
|
1100
|
-
"name": "assureDesignSystem",
|
|
1101
|
-
"module": "src/design-system/design-system.ts"
|
|
1102
|
-
}
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"kind": "js",
|
|
1106
|
-
"name": "getCurrentDesignSystem",
|
|
1107
|
-
"declaration": {
|
|
1108
|
-
"name": "getCurrentDesignSystem",
|
|
1109
|
-
"module": "src/design-system/design-system.ts"
|
|
1110
|
-
}
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"kind": "js",
|
|
1114
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1115
|
-
"declaration": {
|
|
1116
|
-
"name": "getCurrentDesignSystemPrefix",
|
|
1117
|
-
"module": "src/design-system/design-system.ts"
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
]
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"kind": "javascript-module",
|
|
1124
|
-
"path": "src/design-system/index.ts",
|
|
1125
|
-
"declarations": [],
|
|
1126
|
-
"exports": [
|
|
1127
|
-
{
|
|
1128
|
-
"kind": "js",
|
|
1129
|
-
"name": "*",
|
|
1129
|
+
"name": "renderOnChange",
|
|
1130
1130
|
"declaration": {
|
|
1131
|
-
"name": "
|
|
1132
|
-
"
|
|
1131
|
+
"name": "renderOnChange",
|
|
1132
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
1133
1133
|
}
|
|
1134
1134
|
}
|
|
1135
1135
|
]
|