@genesislcap/foundation-utils 14.177.0 → 14.177.1

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +512 -512
  2. package/package.json +10 -10
@@ -159,257 +159,6 @@
159
159
  }
160
160
  ]
161
161
  },
162
- {
163
- "kind": "javascript-module",
164
- "path": "src/data/inMemoryDatabase.ts",
165
- "declarations": [
166
- {
167
- "kind": "class",
168
- "description": "An in memory database of specific DatabaseRecord types.",
169
- "name": "InMemoryDatabase",
170
- "members": [
171
- {
172
- "kind": "field",
173
- "name": "isWorking",
174
- "type": {
175
- "text": "boolean"
176
- },
177
- "privacy": "public",
178
- "default": "false"
179
- },
180
- {
181
- "kind": "field",
182
- "name": "records",
183
- "type": {
184
- "text": "Record<string, T>"
185
- },
186
- "privacy": "private",
187
- "default": "{}"
188
- },
189
- {
190
- "kind": "field",
191
- "name": "beforeUpdateListeners",
192
- "privacy": "private"
193
- },
194
- {
195
- "kind": "field",
196
- "name": "afterUpdateListeners",
197
- "privacy": "private"
198
- },
199
- {
200
- "kind": "method",
201
- "name": "create",
202
- "privacy": "public",
203
- "return": {
204
- "type": {
205
- "text": "Promise<DatabaseAccessResult.Create<T>>"
206
- }
207
- },
208
- "parameters": [
209
- {
210
- "name": "newValue",
211
- "type": {
212
- "text": "Omit<T, 'id'>"
213
- }
214
- }
215
- ]
216
- },
217
- {
218
- "kind": "method",
219
- "name": "read",
220
- "privacy": "public",
221
- "return": {
222
- "type": {
223
- "text": "Promise<DatabaseAccessResult.Read<T>>"
224
- }
225
- },
226
- "parameters": [
227
- {
228
- "name": "id",
229
- "type": {
230
- "text": "string"
231
- }
232
- }
233
- ]
234
- },
235
- {
236
- "kind": "method",
237
- "name": "update",
238
- "privacy": "public",
239
- "return": {
240
- "type": {
241
- "text": "Promise<DatabaseAccessResult.Update<T>>"
242
- }
243
- },
244
- "parameters": [
245
- {
246
- "name": "id",
247
- "type": {
248
- "text": "string"
249
- }
250
- },
251
- {
252
- "name": "newValue",
253
- "type": {
254
- "text": "Omit<Partial<T>, 'id'>"
255
- }
256
- }
257
- ]
258
- },
259
- {
260
- "kind": "method",
261
- "name": "delete",
262
- "privacy": "public",
263
- "return": {
264
- "type": {
265
- "text": "Promise<DatabaseAccessResult.Delete>"
266
- }
267
- },
268
- "parameters": [
269
- {
270
- "name": "id",
271
- "type": {
272
- "text": "string"
273
- }
274
- }
275
- ]
276
- },
277
- {
278
- "kind": "method",
279
- "name": "visit",
280
- "privacy": "public",
281
- "return": {
282
- "type": {
283
- "text": "Promise<void>"
284
- }
285
- },
286
- "parameters": [
287
- {
288
- "name": "visitor",
289
- "type": {
290
- "text": "(record: T) => void"
291
- }
292
- }
293
- ]
294
- },
295
- {
296
- "kind": "method",
297
- "name": "onBeforeUpdate",
298
- "privacy": "public",
299
- "return": {
300
- "type": {
301
- "text": "() => void"
302
- }
303
- },
304
- "parameters": [
305
- {
306
- "name": "listener",
307
- "type": {
308
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
309
- }
310
- }
311
- ]
312
- },
313
- {
314
- "kind": "method",
315
- "name": "onAfterUpdate",
316
- "privacy": "public",
317
- "return": {
318
- "type": {
319
- "text": "() => void"
320
- }
321
- },
322
- "parameters": [
323
- {
324
- "name": "listener",
325
- "type": {
326
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
327
- }
328
- }
329
- ]
330
- }
331
- ]
332
- }
333
- ],
334
- "exports": [
335
- {
336
- "kind": "js",
337
- "name": "InMemoryDatabase",
338
- "declaration": {
339
- "name": "InMemoryDatabase",
340
- "module": "src/data/inMemoryDatabase.ts"
341
- }
342
- }
343
- ]
344
- },
345
- {
346
- "kind": "javascript-module",
347
- "path": "src/data/index.ts",
348
- "declarations": [],
349
- "exports": [
350
- {
351
- "kind": "js",
352
- "name": "*",
353
- "declaration": {
354
- "name": "*",
355
- "package": "./inMemoryDatabase"
356
- }
357
- }
358
- ]
359
- },
360
- {
361
- "kind": "javascript-module",
362
- "path": "src/decorators/index.ts",
363
- "declarations": [],
364
- "exports": [
365
- {
366
- "kind": "js",
367
- "name": "*",
368
- "declaration": {
369
- "name": "*",
370
- "package": "./renderOnChange"
371
- }
372
- }
373
- ]
374
- },
375
- {
376
- "kind": "javascript-module",
377
- "path": "src/decorators/renderOnChange.ts",
378
- "declarations": [
379
- {
380
- "kind": "function",
381
- "name": "renderOnChange",
382
- "parameters": [
383
- {
384
- "name": "target",
385
- "type": {
386
- "text": "FASTElement & { render(): void }"
387
- },
388
- "description": "The target to define the property change handler on."
389
- },
390
- {
391
- "name": "name",
392
- "type": {
393
- "text": "string"
394
- },
395
- "description": "The property name."
396
- }
397
- ],
398
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
399
- "privacy": "public"
400
- }
401
- ],
402
- "exports": [
403
- {
404
- "kind": "js",
405
- "name": "renderOnChange",
406
- "declaration": {
407
- "name": "renderOnChange",
408
- "module": "src/decorators/renderOnChange.ts"
409
- }
410
- }
411
- ]
412
- },
413
162
  {
414
163
  "kind": "javascript-module",
415
164
  "path": "src/design-system/design-system.ts",
@@ -460,29 +209,6 @@
460
209
  }
461
210
  ]
462
211
  },
463
- {
464
- "kind": "javascript-module",
465
- "path": "src/directives/index.ts",
466
- "declarations": [],
467
- "exports": [
468
- {
469
- "kind": "js",
470
- "name": "*",
471
- "declaration": {
472
- "name": "*",
473
- "package": "./sync"
474
- }
475
- },
476
- {
477
- "kind": "js",
478
- "name": "*",
479
- "declaration": {
480
- "name": "*",
481
- "package": "./when-else"
482
- }
483
- }
484
- ]
485
- },
486
212
  {
487
213
  "kind": "javascript-module",
488
214
  "path": "src/env/index.ts",
@@ -676,223 +402,497 @@
676
402
  "kind": "js",
677
403
  "name": "HTTP_CONFIG",
678
404
  "declaration": {
679
- "name": "_HTTP_CONFIG",
680
- "module": "src/env/variables.ts"
405
+ "name": "_HTTP_CONFIG",
406
+ "module": "src/env/variables.ts"
407
+ }
408
+ },
409
+ {
410
+ "kind": "js",
411
+ "name": "DEFAULT_ORGANISATION",
412
+ "declaration": {
413
+ "name": "_DEFAULT_ORGANISATION",
414
+ "module": "src/env/variables.ts"
415
+ }
416
+ },
417
+ {
418
+ "kind": "js",
419
+ "name": "DEFAULT_PASSWORD",
420
+ "declaration": {
421
+ "name": "_DEFAULT_PASSWORD",
422
+ "module": "src/env/variables.ts"
423
+ }
424
+ },
425
+ {
426
+ "kind": "js",
427
+ "name": "DEFAULT_USER",
428
+ "declaration": {
429
+ "name": "_DEFAULT_USER",
430
+ "module": "src/env/variables.ts"
431
+ }
432
+ }
433
+ ]
434
+ },
435
+ {
436
+ "kind": "javascript-module",
437
+ "path": "src/error/errorMap.ts",
438
+ "declarations": [
439
+ {
440
+ "kind": "class",
441
+ "description": "",
442
+ "name": "DefaultErrorMap",
443
+ "members": [
444
+ {
445
+ "kind": "field",
446
+ "name": "map",
447
+ "privacy": "private",
448
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
449
+ },
450
+ {
451
+ "kind": "field",
452
+ "name": "lastError",
453
+ "type": {
454
+ "text": "Error"
455
+ },
456
+ "description": "{@inheritDoc ErrorMap.lastError}"
457
+ },
458
+ {
459
+ "kind": "method",
460
+ "name": "set",
461
+ "return": {
462
+ "type": {
463
+ "text": "void"
464
+ }
465
+ },
466
+ "parameters": [
467
+ {
468
+ "name": "key",
469
+ "type": {
470
+ "text": "keyof TErrorDetailMap"
471
+ }
472
+ },
473
+ {
474
+ "name": "error",
475
+ "type": {
476
+ "text": "Error"
477
+ }
478
+ }
479
+ ],
480
+ "description": "{@inheritDoc ErrorMap.set}"
481
+ },
482
+ {
483
+ "kind": "method",
484
+ "name": "get",
485
+ "return": {
486
+ "type": {
487
+ "text": ""
488
+ }
489
+ },
490
+ "parameters": [
491
+ {
492
+ "name": "key",
493
+ "type": {
494
+ "text": "keyof TErrorDetailMap"
495
+ },
496
+ "description": "The key."
497
+ }
498
+ ],
499
+ "description": "Get an error by key.",
500
+ "privacy": "public"
501
+ },
502
+ {
503
+ "kind": "method",
504
+ "name": "has",
505
+ "return": {
506
+ "type": {
507
+ "text": ""
508
+ }
509
+ },
510
+ "parameters": [
511
+ {
512
+ "name": "key",
513
+ "type": {
514
+ "text": "keyof TErrorDetailMap"
515
+ },
516
+ "description": "The key."
517
+ }
518
+ ],
519
+ "description": "Has an error for key.",
520
+ "privacy": "public"
521
+ },
522
+ {
523
+ "kind": "method",
524
+ "name": "delete",
525
+ "return": {
526
+ "type": {
527
+ "text": ""
528
+ }
529
+ },
530
+ "parameters": [
531
+ {
532
+ "name": "key",
533
+ "type": {
534
+ "text": "keyof TErrorDetailMap"
535
+ },
536
+ "description": "The key."
537
+ }
538
+ ],
539
+ "description": "Delete an error.",
540
+ "privacy": "public"
541
+ },
542
+ {
543
+ "kind": "method",
544
+ "name": "clear",
545
+ "description": "Clear errors.",
546
+ "privacy": "public"
547
+ },
548
+ {
549
+ "kind": "field",
550
+ "name": "size",
551
+ "type": {
552
+ "text": "number"
553
+ },
554
+ "description": "The size of the error map.",
555
+ "return": {
556
+ "type": {
557
+ "text": ""
558
+ }
559
+ },
560
+ "privacy": "public",
561
+ "readonly": true
562
+ },
563
+ {
564
+ "kind": "method",
565
+ "name": "values",
566
+ "privacy": "public"
567
+ },
568
+ {
569
+ "kind": "field",
570
+ "name": "messages",
571
+ "type": {
572
+ "text": "string"
573
+ },
574
+ "description": "{@inheritDoc ErrorMap.messages}",
575
+ "readonly": true
576
+ }
577
+ ]
578
+ },
579
+ {
580
+ "kind": "function",
581
+ "name": "createErrorMap",
582
+ "return": {
583
+ "type": {
584
+ "text": ""
585
+ }
586
+ },
587
+ "parameters": [
588
+ {
589
+ "name": "logger",
590
+ "type": {
591
+ "text": "ErrorMapLogger"
592
+ },
593
+ "description": "A logger error method reference."
594
+ }
595
+ ],
596
+ "description": "A factory to create the error map.",
597
+ "privacy": "public"
598
+ }
599
+ ],
600
+ "exports": [
601
+ {
602
+ "kind": "js",
603
+ "name": "DefaultErrorMap",
604
+ "declaration": {
605
+ "name": "DefaultErrorMap",
606
+ "module": "src/error/errorMap.ts"
607
+ }
608
+ },
609
+ {
610
+ "kind": "js",
611
+ "name": "createErrorMap",
612
+ "declaration": {
613
+ "name": "createErrorMap",
614
+ "module": "src/error/errorMap.ts"
615
+ }
616
+ }
617
+ ]
618
+ },
619
+ {
620
+ "kind": "javascript-module",
621
+ "path": "src/error/index.ts",
622
+ "declarations": [],
623
+ "exports": [
624
+ {
625
+ "kind": "js",
626
+ "name": "*",
627
+ "declaration": {
628
+ "name": "*",
629
+ "package": "./errorMap"
630
+ }
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "kind": "javascript-module",
636
+ "path": "src/directives/index.ts",
637
+ "declarations": [],
638
+ "exports": [
639
+ {
640
+ "kind": "js",
641
+ "name": "*",
642
+ "declaration": {
643
+ "name": "*",
644
+ "package": "./sync"
681
645
  }
682
646
  },
683
647
  {
684
648
  "kind": "js",
685
- "name": "DEFAULT_ORGANISATION",
649
+ "name": "*",
686
650
  "declaration": {
687
- "name": "_DEFAULT_ORGANISATION",
688
- "module": "src/env/variables.ts"
651
+ "name": "*",
652
+ "package": "./when-else"
689
653
  }
690
- },
654
+ }
655
+ ]
656
+ },
657
+ {
658
+ "kind": "javascript-module",
659
+ "path": "src/decorators/index.ts",
660
+ "declarations": [],
661
+ "exports": [
691
662
  {
692
663
  "kind": "js",
693
- "name": "DEFAULT_PASSWORD",
664
+ "name": "*",
694
665
  "declaration": {
695
- "name": "_DEFAULT_PASSWORD",
696
- "module": "src/env/variables.ts"
666
+ "name": "*",
667
+ "package": "./renderOnChange"
697
668
  }
698
- },
669
+ }
670
+ ]
671
+ },
672
+ {
673
+ "kind": "javascript-module",
674
+ "path": "src/decorators/renderOnChange.ts",
675
+ "declarations": [
676
+ {
677
+ "kind": "function",
678
+ "name": "renderOnChange",
679
+ "parameters": [
680
+ {
681
+ "name": "target",
682
+ "type": {
683
+ "text": "FASTElement & { render(): void }"
684
+ },
685
+ "description": "The target to define the property change handler on."
686
+ },
687
+ {
688
+ "name": "name",
689
+ "type": {
690
+ "text": "string"
691
+ },
692
+ "description": "The property name."
693
+ }
694
+ ],
695
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
696
+ "privacy": "public"
697
+ }
698
+ ],
699
+ "exports": [
699
700
  {
700
701
  "kind": "js",
701
- "name": "DEFAULT_USER",
702
+ "name": "renderOnChange",
702
703
  "declaration": {
703
- "name": "_DEFAULT_USER",
704
- "module": "src/env/variables.ts"
704
+ "name": "renderOnChange",
705
+ "module": "src/decorators/renderOnChange.ts"
705
706
  }
706
707
  }
707
708
  ]
708
709
  },
709
710
  {
710
711
  "kind": "javascript-module",
711
- "path": "src/error/errorMap.ts",
712
+ "path": "src/data/inMemoryDatabase.ts",
712
713
  "declarations": [
713
714
  {
714
715
  "kind": "class",
715
- "description": "",
716
- "name": "DefaultErrorMap",
716
+ "description": "An in memory database of specific DatabaseRecord types.",
717
+ "name": "InMemoryDatabase",
717
718
  "members": [
718
719
  {
719
720
  "kind": "field",
720
- "name": "map",
721
- "privacy": "private",
722
- "default": "new Map<keyof TErrorDetailMap, Error>()"
721
+ "name": "isWorking",
722
+ "type": {
723
+ "text": "boolean"
724
+ },
725
+ "privacy": "public",
726
+ "default": "false"
723
727
  },
724
728
  {
725
729
  "kind": "field",
726
- "name": "lastError",
730
+ "name": "records",
727
731
  "type": {
728
- "text": "Error"
732
+ "text": "Record<string, T>"
729
733
  },
730
- "description": "{@inheritDoc ErrorMap.lastError}"
734
+ "privacy": "private",
735
+ "default": "{}"
736
+ },
737
+ {
738
+ "kind": "field",
739
+ "name": "beforeUpdateListeners",
740
+ "privacy": "private"
741
+ },
742
+ {
743
+ "kind": "field",
744
+ "name": "afterUpdateListeners",
745
+ "privacy": "private"
731
746
  },
732
747
  {
733
748
  "kind": "method",
734
- "name": "set",
749
+ "name": "create",
750
+ "privacy": "public",
735
751
  "return": {
736
752
  "type": {
737
- "text": "void"
753
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
738
754
  }
739
755
  },
740
756
  "parameters": [
741
757
  {
742
- "name": "key",
743
- "type": {
744
- "text": "keyof TErrorDetailMap"
745
- }
746
- },
747
- {
748
- "name": "error",
758
+ "name": "newValue",
749
759
  "type": {
750
- "text": "Error"
760
+ "text": "Omit<T, 'id'>"
751
761
  }
752
762
  }
753
- ],
754
- "description": "{@inheritDoc ErrorMap.set}"
763
+ ]
755
764
  },
756
765
  {
757
766
  "kind": "method",
758
- "name": "get",
767
+ "name": "read",
768
+ "privacy": "public",
759
769
  "return": {
760
770
  "type": {
761
- "text": ""
771
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
762
772
  }
763
773
  },
764
774
  "parameters": [
765
775
  {
766
- "name": "key",
776
+ "name": "id",
767
777
  "type": {
768
- "text": "keyof TErrorDetailMap"
769
- },
770
- "description": "The key."
778
+ "text": "string"
779
+ }
771
780
  }
772
- ],
773
- "description": "Get an error by key.",
774
- "privacy": "public"
781
+ ]
775
782
  },
776
783
  {
777
784
  "kind": "method",
778
- "name": "has",
785
+ "name": "update",
786
+ "privacy": "public",
779
787
  "return": {
780
788
  "type": {
781
- "text": ""
789
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
782
790
  }
783
791
  },
784
792
  "parameters": [
785
793
  {
786
- "name": "key",
794
+ "name": "id",
787
795
  "type": {
788
- "text": "keyof TErrorDetailMap"
789
- },
790
- "description": "The key."
796
+ "text": "string"
797
+ }
798
+ },
799
+ {
800
+ "name": "newValue",
801
+ "type": {
802
+ "text": "Omit<Partial<T>, 'id'>"
803
+ }
791
804
  }
792
- ],
793
- "description": "Has an error for key.",
794
- "privacy": "public"
805
+ ]
795
806
  },
796
807
  {
797
808
  "kind": "method",
798
809
  "name": "delete",
810
+ "privacy": "public",
799
811
  "return": {
800
812
  "type": {
801
- "text": ""
813
+ "text": "Promise<DatabaseAccessResult.Delete>"
802
814
  }
803
815
  },
804
816
  "parameters": [
805
817
  {
806
- "name": "key",
818
+ "name": "id",
807
819
  "type": {
808
- "text": "keyof TErrorDetailMap"
809
- },
810
- "description": "The key."
820
+ "text": "string"
821
+ }
811
822
  }
812
- ],
813
- "description": "Delete an error.",
814
- "privacy": "public"
823
+ ]
815
824
  },
816
825
  {
817
826
  "kind": "method",
818
- "name": "clear",
819
- "description": "Clear errors.",
820
- "privacy": "public"
821
- },
822
- {
823
- "kind": "field",
824
- "name": "size",
825
- "type": {
826
- "text": "number"
827
- },
828
- "description": "The size of the error map.",
827
+ "name": "visit",
828
+ "privacy": "public",
829
829
  "return": {
830
830
  "type": {
831
- "text": ""
831
+ "text": "Promise<void>"
832
832
  }
833
833
  },
834
- "privacy": "public",
835
- "readonly": true
834
+ "parameters": [
835
+ {
836
+ "name": "visitor",
837
+ "type": {
838
+ "text": "(record: T) => void"
839
+ }
840
+ }
841
+ ]
836
842
  },
837
843
  {
838
844
  "kind": "method",
839
- "name": "values",
840
- "privacy": "public"
845
+ "name": "onBeforeUpdate",
846
+ "privacy": "public",
847
+ "return": {
848
+ "type": {
849
+ "text": "() => void"
850
+ }
851
+ },
852
+ "parameters": [
853
+ {
854
+ "name": "listener",
855
+ "type": {
856
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
857
+ }
858
+ }
859
+ ]
841
860
  },
842
861
  {
843
- "kind": "field",
844
- "name": "messages",
845
- "type": {
846
- "text": "string"
862
+ "kind": "method",
863
+ "name": "onAfterUpdate",
864
+ "privacy": "public",
865
+ "return": {
866
+ "type": {
867
+ "text": "() => void"
868
+ }
847
869
  },
848
- "description": "{@inheritDoc ErrorMap.messages}",
849
- "readonly": true
870
+ "parameters": [
871
+ {
872
+ "name": "listener",
873
+ "type": {
874
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
875
+ }
876
+ }
877
+ ]
850
878
  }
851
879
  ]
852
- },
853
- {
854
- "kind": "function",
855
- "name": "createErrorMap",
856
- "return": {
857
- "type": {
858
- "text": ""
859
- }
860
- },
861
- "parameters": [
862
- {
863
- "name": "logger",
864
- "type": {
865
- "text": "ErrorMapLogger"
866
- },
867
- "description": "A logger error method reference."
868
- }
869
- ],
870
- "description": "A factory to create the error map.",
871
- "privacy": "public"
872
880
  }
873
881
  ],
874
882
  "exports": [
875
883
  {
876
884
  "kind": "js",
877
- "name": "DefaultErrorMap",
878
- "declaration": {
879
- "name": "DefaultErrorMap",
880
- "module": "src/error/errorMap.ts"
881
- }
882
- },
883
- {
884
- "kind": "js",
885
- "name": "createErrorMap",
885
+ "name": "InMemoryDatabase",
886
886
  "declaration": {
887
- "name": "createErrorMap",
888
- "module": "src/error/errorMap.ts"
887
+ "name": "InMemoryDatabase",
888
+ "module": "src/data/inMemoryDatabase.ts"
889
889
  }
890
890
  }
891
891
  ]
892
892
  },
893
893
  {
894
894
  "kind": "javascript-module",
895
- "path": "src/error/index.ts",
895
+ "path": "src/data/index.ts",
896
896
  "declarations": [],
897
897
  "exports": [
898
898
  {
@@ -900,7 +900,7 @@
900
900
  "name": "*",
901
901
  "declaration": {
902
902
  "name": "*",
903
- "package": "./errorMap"
903
+ "package": "./inMemoryDatabase"
904
904
  }
905
905
  }
906
906
  ]
@@ -1218,6 +1218,29 @@
1218
1218
  }
1219
1219
  ]
1220
1220
  },
1221
+ {
1222
+ "kind": "javascript-module",
1223
+ "path": "src/mixins/index.ts",
1224
+ "declarations": [],
1225
+ "exports": [
1226
+ {
1227
+ "kind": "js",
1228
+ "name": "*",
1229
+ "declaration": {
1230
+ "name": "*",
1231
+ "package": "./pendingState"
1232
+ }
1233
+ },
1234
+ {
1235
+ "kind": "js",
1236
+ "name": "*",
1237
+ "declaration": {
1238
+ "name": "*",
1239
+ "package": "./lifecycle"
1240
+ }
1241
+ }
1242
+ ]
1243
+ },
1221
1244
  {
1222
1245
  "kind": "javascript-module",
1223
1246
  "path": "src/observer/index.ts",
@@ -1290,29 +1313,6 @@
1290
1313
  }
1291
1314
  ]
1292
1315
  },
1293
- {
1294
- "kind": "javascript-module",
1295
- "path": "src/mixins/index.ts",
1296
- "declarations": [],
1297
- "exports": [
1298
- {
1299
- "kind": "js",
1300
- "name": "*",
1301
- "declaration": {
1302
- "name": "*",
1303
- "package": "./pendingState"
1304
- }
1305
- },
1306
- {
1307
- "kind": "js",
1308
- "name": "*",
1309
- "declaration": {
1310
- "name": "*",
1311
- "package": "./lifecycle"
1312
- }
1313
- }
1314
- ]
1315
- },
1316
1316
  {
1317
1317
  "kind": "javascript-module",
1318
1318
  "path": "src/promise/index.ts",
@@ -2272,106 +2272,6 @@
2272
2272
  }
2273
2273
  ]
2274
2274
  },
2275
- {
2276
- "kind": "javascript-module",
2277
- "path": "src/mappers/dto/index.ts",
2278
- "declarations": [],
2279
- "exports": [
2280
- {
2281
- "kind": "js",
2282
- "name": "*",
2283
- "declaration": {
2284
- "name": "*",
2285
- "package": "./serverRow"
2286
- }
2287
- },
2288
- {
2289
- "kind": "js",
2290
- "name": "*",
2291
- "declaration": {
2292
- "name": "*",
2293
- "package": "./types"
2294
- }
2295
- }
2296
- ]
2297
- },
2298
- {
2299
- "kind": "javascript-module",
2300
- "path": "src/mappers/dto/serverRow.ts",
2301
- "declarations": [
2302
- {
2303
- "kind": "class",
2304
- "description": "The default `ServerRowDTOMapper`.",
2305
- "name": "DefaultServerRowDTOMapper",
2306
- "members": [
2307
- {
2308
- "kind": "field",
2309
- "name": "fromDTO",
2310
- "description": "Converts a server row DTO to an entity.",
2311
- "parameters": [
2312
- {
2313
- "description": "The DTO to convert.",
2314
- "name": "dto"
2315
- }
2316
- ],
2317
- "return": {
2318
- "type": {
2319
- "text": ""
2320
- }
2321
- },
2322
- "privacy": "public"
2323
- },
2324
- {
2325
- "kind": "field",
2326
- "name": "toDTO",
2327
- "description": "Converts a server row entity to a DTO.",
2328
- "parameters": [
2329
- {
2330
- "description": "The entity to convert.",
2331
- "name": "entity"
2332
- }
2333
- ],
2334
- "return": {
2335
- "type": {
2336
- "text": ""
2337
- }
2338
- },
2339
- "privacy": "public"
2340
- }
2341
- ]
2342
- },
2343
- {
2344
- "kind": "variable",
2345
- "name": "ServerRowDTOMapper",
2346
- "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2347
- "privacy": "public"
2348
- }
2349
- ],
2350
- "exports": [
2351
- {
2352
- "kind": "js",
2353
- "name": "DefaultServerRowDTOMapper",
2354
- "declaration": {
2355
- "name": "DefaultServerRowDTOMapper",
2356
- "module": "src/mappers/dto/serverRow.ts"
2357
- }
2358
- },
2359
- {
2360
- "kind": "js",
2361
- "name": "ServerRowDTOMapper",
2362
- "declaration": {
2363
- "name": "ServerRowDTOMapper",
2364
- "module": "src/mappers/dto/serverRow.ts"
2365
- }
2366
- }
2367
- ]
2368
- },
2369
- {
2370
- "kind": "javascript-module",
2371
- "path": "src/mappers/dto/types.ts",
2372
- "declarations": [],
2373
- "exports": []
2374
- },
2375
2275
  {
2376
2276
  "kind": "javascript-module",
2377
2277
  "path": "src/mixins/lifecycle/index.ts",
@@ -2809,6 +2709,106 @@
2809
2709
  "path": "src/serializers/json/types.ts",
2810
2710
  "declarations": [],
2811
2711
  "exports": []
2712
+ },
2713
+ {
2714
+ "kind": "javascript-module",
2715
+ "path": "src/mappers/dto/index.ts",
2716
+ "declarations": [],
2717
+ "exports": [
2718
+ {
2719
+ "kind": "js",
2720
+ "name": "*",
2721
+ "declaration": {
2722
+ "name": "*",
2723
+ "package": "./serverRow"
2724
+ }
2725
+ },
2726
+ {
2727
+ "kind": "js",
2728
+ "name": "*",
2729
+ "declaration": {
2730
+ "name": "*",
2731
+ "package": "./types"
2732
+ }
2733
+ }
2734
+ ]
2735
+ },
2736
+ {
2737
+ "kind": "javascript-module",
2738
+ "path": "src/mappers/dto/serverRow.ts",
2739
+ "declarations": [
2740
+ {
2741
+ "kind": "class",
2742
+ "description": "The default `ServerRowDTOMapper`.",
2743
+ "name": "DefaultServerRowDTOMapper",
2744
+ "members": [
2745
+ {
2746
+ "kind": "field",
2747
+ "name": "fromDTO",
2748
+ "description": "Converts a server row DTO to an entity.",
2749
+ "parameters": [
2750
+ {
2751
+ "description": "The DTO to convert.",
2752
+ "name": "dto"
2753
+ }
2754
+ ],
2755
+ "return": {
2756
+ "type": {
2757
+ "text": ""
2758
+ }
2759
+ },
2760
+ "privacy": "public"
2761
+ },
2762
+ {
2763
+ "kind": "field",
2764
+ "name": "toDTO",
2765
+ "description": "Converts a server row entity to a DTO.",
2766
+ "parameters": [
2767
+ {
2768
+ "description": "The entity to convert.",
2769
+ "name": "entity"
2770
+ }
2771
+ ],
2772
+ "return": {
2773
+ "type": {
2774
+ "text": ""
2775
+ }
2776
+ },
2777
+ "privacy": "public"
2778
+ }
2779
+ ]
2780
+ },
2781
+ {
2782
+ "kind": "variable",
2783
+ "name": "ServerRowDTOMapper",
2784
+ "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2785
+ "privacy": "public"
2786
+ }
2787
+ ],
2788
+ "exports": [
2789
+ {
2790
+ "kind": "js",
2791
+ "name": "DefaultServerRowDTOMapper",
2792
+ "declaration": {
2793
+ "name": "DefaultServerRowDTOMapper",
2794
+ "module": "src/mappers/dto/serverRow.ts"
2795
+ }
2796
+ },
2797
+ {
2798
+ "kind": "js",
2799
+ "name": "ServerRowDTOMapper",
2800
+ "declaration": {
2801
+ "name": "ServerRowDTOMapper",
2802
+ "module": "src/mappers/dto/serverRow.ts"
2803
+ }
2804
+ }
2805
+ ]
2806
+ },
2807
+ {
2808
+ "kind": "javascript-module",
2809
+ "path": "src/mappers/dto/types.ts",
2810
+ "declarations": [],
2811
+ "exports": []
2812
2812
  }
2813
2813
  ]
2814
2814
  }
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.177.0",
4
+ "version": "14.177.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,17 +19,17 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.177.0",
23
- "@genesislcap/genx": "14.177.0",
24
- "@genesislcap/rollup-builder": "14.177.0",
25
- "@genesislcap/ts-builder": "14.177.0",
26
- "@genesislcap/uvu-playwright-builder": "14.177.0",
27
- "@genesislcap/vite-builder": "14.177.0",
28
- "@genesislcap/webpack-builder": "14.177.0",
22
+ "@genesislcap/foundation-testing": "14.177.1",
23
+ "@genesislcap/genx": "14.177.1",
24
+ "@genesislcap/rollup-builder": "14.177.1",
25
+ "@genesislcap/ts-builder": "14.177.1",
26
+ "@genesislcap/uvu-playwright-builder": "14.177.1",
27
+ "@genesislcap/vite-builder": "14.177.1",
28
+ "@genesislcap/webpack-builder": "14.177.1",
29
29
  "rimraf": "^3.0.2"
30
30
  },
31
31
  "dependencies": {
32
- "@genesislcap/foundation-logger": "14.177.0",
32
+ "@genesislcap/foundation-logger": "14.177.1",
33
33
  "@microsoft/fast-components": "^2.30.6",
34
34
  "@microsoft/fast-element": "^1.12.0",
35
35
  "@microsoft/fast-foundation": "^2.49.4",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "customElements": "dist/custom-elements.json",
50
- "gitHead": "b3c0ce3e0fa58bae562c2c9bec96beee6a4a2ed4"
50
+ "gitHead": "c07c95144c7ef605e038161300877aea756dcc28"
51
51
  }