@genesislcap/foundation-utils 14.230.1-alpha-f8e36b3.0 → 14.230.1-alpha-542ce67.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/custom-elements.json +428 -428
- package/package.json +10 -10
@@ -169,307 +169,6 @@
|
|
169
169
|
}
|
170
170
|
]
|
171
171
|
},
|
172
|
-
{
|
173
|
-
"kind": "javascript-module",
|
174
|
-
"path": "src/data/inMemoryDatabase.ts",
|
175
|
-
"declarations": [
|
176
|
-
{
|
177
|
-
"kind": "class",
|
178
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
179
|
-
"name": "InMemoryDatabase",
|
180
|
-
"members": [
|
181
|
-
{
|
182
|
-
"kind": "field",
|
183
|
-
"name": "isWorking",
|
184
|
-
"type": {
|
185
|
-
"text": "boolean"
|
186
|
-
},
|
187
|
-
"privacy": "public",
|
188
|
-
"default": "false"
|
189
|
-
},
|
190
|
-
{
|
191
|
-
"kind": "field",
|
192
|
-
"name": "records",
|
193
|
-
"type": {
|
194
|
-
"text": "Record<string, T>"
|
195
|
-
},
|
196
|
-
"privacy": "private",
|
197
|
-
"default": "{}"
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"kind": "field",
|
201
|
-
"name": "beforeUpdateListeners",
|
202
|
-
"privacy": "private"
|
203
|
-
},
|
204
|
-
{
|
205
|
-
"kind": "field",
|
206
|
-
"name": "afterUpdateListeners",
|
207
|
-
"privacy": "private"
|
208
|
-
},
|
209
|
-
{
|
210
|
-
"kind": "method",
|
211
|
-
"name": "create",
|
212
|
-
"privacy": "public",
|
213
|
-
"return": {
|
214
|
-
"type": {
|
215
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
216
|
-
}
|
217
|
-
},
|
218
|
-
"parameters": [
|
219
|
-
{
|
220
|
-
"name": "newValue",
|
221
|
-
"type": {
|
222
|
-
"text": "Omit<T, 'id'>"
|
223
|
-
}
|
224
|
-
}
|
225
|
-
]
|
226
|
-
},
|
227
|
-
{
|
228
|
-
"kind": "method",
|
229
|
-
"name": "read",
|
230
|
-
"privacy": "public",
|
231
|
-
"return": {
|
232
|
-
"type": {
|
233
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
234
|
-
}
|
235
|
-
},
|
236
|
-
"parameters": [
|
237
|
-
{
|
238
|
-
"name": "id",
|
239
|
-
"type": {
|
240
|
-
"text": "string"
|
241
|
-
}
|
242
|
-
}
|
243
|
-
]
|
244
|
-
},
|
245
|
-
{
|
246
|
-
"kind": "method",
|
247
|
-
"name": "update",
|
248
|
-
"privacy": "public",
|
249
|
-
"return": {
|
250
|
-
"type": {
|
251
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
252
|
-
}
|
253
|
-
},
|
254
|
-
"parameters": [
|
255
|
-
{
|
256
|
-
"name": "id",
|
257
|
-
"type": {
|
258
|
-
"text": "string"
|
259
|
-
}
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"name": "newValue",
|
263
|
-
"type": {
|
264
|
-
"text": "Omit<Partial<T>, 'id'>"
|
265
|
-
}
|
266
|
-
}
|
267
|
-
]
|
268
|
-
},
|
269
|
-
{
|
270
|
-
"kind": "method",
|
271
|
-
"name": "delete",
|
272
|
-
"privacy": "public",
|
273
|
-
"return": {
|
274
|
-
"type": {
|
275
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
276
|
-
}
|
277
|
-
},
|
278
|
-
"parameters": [
|
279
|
-
{
|
280
|
-
"name": "id",
|
281
|
-
"type": {
|
282
|
-
"text": "string"
|
283
|
-
}
|
284
|
-
}
|
285
|
-
]
|
286
|
-
},
|
287
|
-
{
|
288
|
-
"kind": "method",
|
289
|
-
"name": "visit",
|
290
|
-
"privacy": "public",
|
291
|
-
"return": {
|
292
|
-
"type": {
|
293
|
-
"text": "Promise<void>"
|
294
|
-
}
|
295
|
-
},
|
296
|
-
"parameters": [
|
297
|
-
{
|
298
|
-
"name": "visitor",
|
299
|
-
"type": {
|
300
|
-
"text": "(record: T) => void"
|
301
|
-
}
|
302
|
-
}
|
303
|
-
]
|
304
|
-
},
|
305
|
-
{
|
306
|
-
"kind": "method",
|
307
|
-
"name": "onBeforeUpdate",
|
308
|
-
"privacy": "public",
|
309
|
-
"return": {
|
310
|
-
"type": {
|
311
|
-
"text": "() => void"
|
312
|
-
}
|
313
|
-
},
|
314
|
-
"parameters": [
|
315
|
-
{
|
316
|
-
"name": "listener",
|
317
|
-
"type": {
|
318
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
319
|
-
}
|
320
|
-
}
|
321
|
-
]
|
322
|
-
},
|
323
|
-
{
|
324
|
-
"kind": "method",
|
325
|
-
"name": "onAfterUpdate",
|
326
|
-
"privacy": "public",
|
327
|
-
"return": {
|
328
|
-
"type": {
|
329
|
-
"text": "() => void"
|
330
|
-
}
|
331
|
-
},
|
332
|
-
"parameters": [
|
333
|
-
{
|
334
|
-
"name": "listener",
|
335
|
-
"type": {
|
336
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
337
|
-
}
|
338
|
-
}
|
339
|
-
]
|
340
|
-
}
|
341
|
-
]
|
342
|
-
}
|
343
|
-
],
|
344
|
-
"exports": [
|
345
|
-
{
|
346
|
-
"kind": "js",
|
347
|
-
"name": "InMemoryDatabase",
|
348
|
-
"declaration": {
|
349
|
-
"name": "InMemoryDatabase",
|
350
|
-
"module": "src/data/inMemoryDatabase.ts"
|
351
|
-
}
|
352
|
-
}
|
353
|
-
]
|
354
|
-
},
|
355
|
-
{
|
356
|
-
"kind": "javascript-module",
|
357
|
-
"path": "src/data/index.ts",
|
358
|
-
"declarations": [],
|
359
|
-
"exports": [
|
360
|
-
{
|
361
|
-
"kind": "js",
|
362
|
-
"name": "*",
|
363
|
-
"declaration": {
|
364
|
-
"name": "*",
|
365
|
-
"package": "./inMemoryDatabase"
|
366
|
-
}
|
367
|
-
}
|
368
|
-
]
|
369
|
-
},
|
370
|
-
{
|
371
|
-
"kind": "javascript-module",
|
372
|
-
"path": "src/decorators/index.ts",
|
373
|
-
"declarations": [],
|
374
|
-
"exports": [
|
375
|
-
{
|
376
|
-
"kind": "js",
|
377
|
-
"name": "*",
|
378
|
-
"declaration": {
|
379
|
-
"name": "*",
|
380
|
-
"package": "./renderOnChange"
|
381
|
-
}
|
382
|
-
}
|
383
|
-
]
|
384
|
-
},
|
385
|
-
{
|
386
|
-
"kind": "javascript-module",
|
387
|
-
"path": "src/decorators/renderOnChange.ts",
|
388
|
-
"declarations": [
|
389
|
-
{
|
390
|
-
"kind": "function",
|
391
|
-
"name": "renderOnChange",
|
392
|
-
"parameters": [
|
393
|
-
{
|
394
|
-
"name": "target",
|
395
|
-
"type": {
|
396
|
-
"text": "FASTElement & { render(): void }"
|
397
|
-
},
|
398
|
-
"description": "The target to define the property change handler on."
|
399
|
-
},
|
400
|
-
{
|
401
|
-
"name": "name",
|
402
|
-
"type": {
|
403
|
-
"text": "string"
|
404
|
-
},
|
405
|
-
"description": "The property name."
|
406
|
-
}
|
407
|
-
],
|
408
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
409
|
-
"privacy": "public"
|
410
|
-
}
|
411
|
-
],
|
412
|
-
"exports": [
|
413
|
-
{
|
414
|
-
"kind": "js",
|
415
|
-
"name": "renderOnChange",
|
416
|
-
"declaration": {
|
417
|
-
"name": "renderOnChange",
|
418
|
-
"module": "src/decorators/renderOnChange.ts"
|
419
|
-
}
|
420
|
-
}
|
421
|
-
]
|
422
|
-
},
|
423
|
-
{
|
424
|
-
"kind": "javascript-module",
|
425
|
-
"path": "src/design-system/design-system.ts",
|
426
|
-
"declarations": [
|
427
|
-
{
|
428
|
-
"kind": "function",
|
429
|
-
"name": "assureDesignSystem",
|
430
|
-
"return": {
|
431
|
-
"type": {
|
432
|
-
"text": "DesignSystemModule"
|
433
|
-
}
|
434
|
-
},
|
435
|
-
"parameters": [
|
436
|
-
{
|
437
|
-
"name": "module",
|
438
|
-
"type": {
|
439
|
-
"text": "DesignSystemModule"
|
440
|
-
}
|
441
|
-
}
|
442
|
-
],
|
443
|
-
"description": "assureDesignSystem.",
|
444
|
-
"privacy": "public"
|
445
|
-
}
|
446
|
-
],
|
447
|
-
"exports": [
|
448
|
-
{
|
449
|
-
"kind": "js",
|
450
|
-
"name": "assureDesignSystem",
|
451
|
-
"declaration": {
|
452
|
-
"name": "assureDesignSystem",
|
453
|
-
"module": "src/design-system/design-system.ts"
|
454
|
-
}
|
455
|
-
}
|
456
|
-
]
|
457
|
-
},
|
458
|
-
{
|
459
|
-
"kind": "javascript-module",
|
460
|
-
"path": "src/design-system/index.ts",
|
461
|
-
"declarations": [],
|
462
|
-
"exports": [
|
463
|
-
{
|
464
|
-
"kind": "js",
|
465
|
-
"name": "*",
|
466
|
-
"declaration": {
|
467
|
-
"name": "*",
|
468
|
-
"package": "./design-system"
|
469
|
-
}
|
470
|
-
}
|
471
|
-
]
|
472
|
-
},
|
473
172
|
{
|
474
173
|
"kind": "javascript-module",
|
475
174
|
"path": "src/directives/index.ts",
|
@@ -788,10 +487,60 @@
|
|
788
487
|
},
|
789
488
|
{
|
790
489
|
"kind": "js",
|
791
|
-
"name": "DEFAULT_USER",
|
490
|
+
"name": "DEFAULT_USER",
|
491
|
+
"declaration": {
|
492
|
+
"name": "_DEFAULT_USER",
|
493
|
+
"module": "src/env/variables.ts"
|
494
|
+
}
|
495
|
+
}
|
496
|
+
]
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"kind": "javascript-module",
|
500
|
+
"path": "src/design-system/design-system.ts",
|
501
|
+
"declarations": [
|
502
|
+
{
|
503
|
+
"kind": "function",
|
504
|
+
"name": "assureDesignSystem",
|
505
|
+
"return": {
|
506
|
+
"type": {
|
507
|
+
"text": "DesignSystemModule"
|
508
|
+
}
|
509
|
+
},
|
510
|
+
"parameters": [
|
511
|
+
{
|
512
|
+
"name": "module",
|
513
|
+
"type": {
|
514
|
+
"text": "DesignSystemModule"
|
515
|
+
}
|
516
|
+
}
|
517
|
+
],
|
518
|
+
"description": "assureDesignSystem.",
|
519
|
+
"privacy": "public"
|
520
|
+
}
|
521
|
+
],
|
522
|
+
"exports": [
|
523
|
+
{
|
524
|
+
"kind": "js",
|
525
|
+
"name": "assureDesignSystem",
|
526
|
+
"declaration": {
|
527
|
+
"name": "assureDesignSystem",
|
528
|
+
"module": "src/design-system/design-system.ts"
|
529
|
+
}
|
530
|
+
}
|
531
|
+
]
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"kind": "javascript-module",
|
535
|
+
"path": "src/design-system/index.ts",
|
536
|
+
"declarations": [],
|
537
|
+
"exports": [
|
538
|
+
{
|
539
|
+
"kind": "js",
|
540
|
+
"name": "*",
|
792
541
|
"declaration": {
|
793
|
-
"name": "
|
794
|
-
"
|
542
|
+
"name": "*",
|
543
|
+
"package": "./design-system"
|
795
544
|
}
|
796
545
|
}
|
797
546
|
]
|
@@ -978,19 +727,270 @@
|
|
978
727
|
"module": "src/error/errorMap.ts"
|
979
728
|
}
|
980
729
|
}
|
981
|
-
]
|
982
|
-
},
|
983
|
-
{
|
984
|
-
"kind": "javascript-module",
|
985
|
-
"path": "src/error/index.ts",
|
986
|
-
"declarations": [],
|
730
|
+
]
|
731
|
+
},
|
732
|
+
{
|
733
|
+
"kind": "javascript-module",
|
734
|
+
"path": "src/error/index.ts",
|
735
|
+
"declarations": [],
|
736
|
+
"exports": [
|
737
|
+
{
|
738
|
+
"kind": "js",
|
739
|
+
"name": "*",
|
740
|
+
"declaration": {
|
741
|
+
"name": "*",
|
742
|
+
"package": "./errorMap"
|
743
|
+
}
|
744
|
+
}
|
745
|
+
]
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"kind": "javascript-module",
|
749
|
+
"path": "src/data/inMemoryDatabase.ts",
|
750
|
+
"declarations": [
|
751
|
+
{
|
752
|
+
"kind": "class",
|
753
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
754
|
+
"name": "InMemoryDatabase",
|
755
|
+
"members": [
|
756
|
+
{
|
757
|
+
"kind": "field",
|
758
|
+
"name": "isWorking",
|
759
|
+
"type": {
|
760
|
+
"text": "boolean"
|
761
|
+
},
|
762
|
+
"privacy": "public",
|
763
|
+
"default": "false"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"kind": "field",
|
767
|
+
"name": "records",
|
768
|
+
"type": {
|
769
|
+
"text": "Record<string, T>"
|
770
|
+
},
|
771
|
+
"privacy": "private",
|
772
|
+
"default": "{}"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"kind": "field",
|
776
|
+
"name": "beforeUpdateListeners",
|
777
|
+
"privacy": "private"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"kind": "field",
|
781
|
+
"name": "afterUpdateListeners",
|
782
|
+
"privacy": "private"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"kind": "method",
|
786
|
+
"name": "create",
|
787
|
+
"privacy": "public",
|
788
|
+
"return": {
|
789
|
+
"type": {
|
790
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
791
|
+
}
|
792
|
+
},
|
793
|
+
"parameters": [
|
794
|
+
{
|
795
|
+
"name": "newValue",
|
796
|
+
"type": {
|
797
|
+
"text": "Omit<T, 'id'>"
|
798
|
+
}
|
799
|
+
}
|
800
|
+
]
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"kind": "method",
|
804
|
+
"name": "read",
|
805
|
+
"privacy": "public",
|
806
|
+
"return": {
|
807
|
+
"type": {
|
808
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
809
|
+
}
|
810
|
+
},
|
811
|
+
"parameters": [
|
812
|
+
{
|
813
|
+
"name": "id",
|
814
|
+
"type": {
|
815
|
+
"text": "string"
|
816
|
+
}
|
817
|
+
}
|
818
|
+
]
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"kind": "method",
|
822
|
+
"name": "update",
|
823
|
+
"privacy": "public",
|
824
|
+
"return": {
|
825
|
+
"type": {
|
826
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
827
|
+
}
|
828
|
+
},
|
829
|
+
"parameters": [
|
830
|
+
{
|
831
|
+
"name": "id",
|
832
|
+
"type": {
|
833
|
+
"text": "string"
|
834
|
+
}
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"name": "newValue",
|
838
|
+
"type": {
|
839
|
+
"text": "Omit<Partial<T>, 'id'>"
|
840
|
+
}
|
841
|
+
}
|
842
|
+
]
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"kind": "method",
|
846
|
+
"name": "delete",
|
847
|
+
"privacy": "public",
|
848
|
+
"return": {
|
849
|
+
"type": {
|
850
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
851
|
+
}
|
852
|
+
},
|
853
|
+
"parameters": [
|
854
|
+
{
|
855
|
+
"name": "id",
|
856
|
+
"type": {
|
857
|
+
"text": "string"
|
858
|
+
}
|
859
|
+
}
|
860
|
+
]
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"kind": "method",
|
864
|
+
"name": "visit",
|
865
|
+
"privacy": "public",
|
866
|
+
"return": {
|
867
|
+
"type": {
|
868
|
+
"text": "Promise<void>"
|
869
|
+
}
|
870
|
+
},
|
871
|
+
"parameters": [
|
872
|
+
{
|
873
|
+
"name": "visitor",
|
874
|
+
"type": {
|
875
|
+
"text": "(record: T) => void"
|
876
|
+
}
|
877
|
+
}
|
878
|
+
]
|
879
|
+
},
|
880
|
+
{
|
881
|
+
"kind": "method",
|
882
|
+
"name": "onBeforeUpdate",
|
883
|
+
"privacy": "public",
|
884
|
+
"return": {
|
885
|
+
"type": {
|
886
|
+
"text": "() => void"
|
887
|
+
}
|
888
|
+
},
|
889
|
+
"parameters": [
|
890
|
+
{
|
891
|
+
"name": "listener",
|
892
|
+
"type": {
|
893
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
894
|
+
}
|
895
|
+
}
|
896
|
+
]
|
897
|
+
},
|
898
|
+
{
|
899
|
+
"kind": "method",
|
900
|
+
"name": "onAfterUpdate",
|
901
|
+
"privacy": "public",
|
902
|
+
"return": {
|
903
|
+
"type": {
|
904
|
+
"text": "() => void"
|
905
|
+
}
|
906
|
+
},
|
907
|
+
"parameters": [
|
908
|
+
{
|
909
|
+
"name": "listener",
|
910
|
+
"type": {
|
911
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
912
|
+
}
|
913
|
+
}
|
914
|
+
]
|
915
|
+
}
|
916
|
+
]
|
917
|
+
}
|
918
|
+
],
|
919
|
+
"exports": [
|
920
|
+
{
|
921
|
+
"kind": "js",
|
922
|
+
"name": "InMemoryDatabase",
|
923
|
+
"declaration": {
|
924
|
+
"name": "InMemoryDatabase",
|
925
|
+
"module": "src/data/inMemoryDatabase.ts"
|
926
|
+
}
|
927
|
+
}
|
928
|
+
]
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"kind": "javascript-module",
|
932
|
+
"path": "src/data/index.ts",
|
933
|
+
"declarations": [],
|
934
|
+
"exports": [
|
935
|
+
{
|
936
|
+
"kind": "js",
|
937
|
+
"name": "*",
|
938
|
+
"declaration": {
|
939
|
+
"name": "*",
|
940
|
+
"package": "./inMemoryDatabase"
|
941
|
+
}
|
942
|
+
}
|
943
|
+
]
|
944
|
+
},
|
945
|
+
{
|
946
|
+
"kind": "javascript-module",
|
947
|
+
"path": "src/decorators/index.ts",
|
948
|
+
"declarations": [],
|
949
|
+
"exports": [
|
950
|
+
{
|
951
|
+
"kind": "js",
|
952
|
+
"name": "*",
|
953
|
+
"declaration": {
|
954
|
+
"name": "*",
|
955
|
+
"package": "./renderOnChange"
|
956
|
+
}
|
957
|
+
}
|
958
|
+
]
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"kind": "javascript-module",
|
962
|
+
"path": "src/decorators/renderOnChange.ts",
|
963
|
+
"declarations": [
|
964
|
+
{
|
965
|
+
"kind": "function",
|
966
|
+
"name": "renderOnChange",
|
967
|
+
"parameters": [
|
968
|
+
{
|
969
|
+
"name": "target",
|
970
|
+
"type": {
|
971
|
+
"text": "FASTElement & { render(): void }"
|
972
|
+
},
|
973
|
+
"description": "The target to define the property change handler on."
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"name": "name",
|
977
|
+
"type": {
|
978
|
+
"text": "string"
|
979
|
+
},
|
980
|
+
"description": "The property name."
|
981
|
+
}
|
982
|
+
],
|
983
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
984
|
+
"privacy": "public"
|
985
|
+
}
|
986
|
+
],
|
987
987
|
"exports": [
|
988
988
|
{
|
989
989
|
"kind": "js",
|
990
|
-
"name": "
|
990
|
+
"name": "renderOnChange",
|
991
991
|
"declaration": {
|
992
|
-
"name": "
|
993
|
-
"
|
992
|
+
"name": "renderOnChange",
|
993
|
+
"module": "src/decorators/renderOnChange.ts"
|
994
994
|
}
|
995
995
|
}
|
996
996
|
]
|
@@ -1366,21 +1366,6 @@
|
|
1366
1366
|
}
|
1367
1367
|
]
|
1368
1368
|
},
|
1369
|
-
{
|
1370
|
-
"kind": "javascript-module",
|
1371
|
-
"path": "src/mappers/index.ts",
|
1372
|
-
"declarations": [],
|
1373
|
-
"exports": [
|
1374
|
-
{
|
1375
|
-
"kind": "js",
|
1376
|
-
"name": "*",
|
1377
|
-
"declaration": {
|
1378
|
-
"name": "*",
|
1379
|
-
"package": "./dto"
|
1380
|
-
}
|
1381
|
-
}
|
1382
|
-
]
|
1383
|
-
},
|
1384
1369
|
{
|
1385
1370
|
"kind": "javascript-module",
|
1386
1371
|
"path": "src/mixins/index.ts",
|
@@ -1476,6 +1461,21 @@
|
|
1476
1461
|
}
|
1477
1462
|
]
|
1478
1463
|
},
|
1464
|
+
{
|
1465
|
+
"kind": "javascript-module",
|
1466
|
+
"path": "src/mappers/index.ts",
|
1467
|
+
"declarations": [],
|
1468
|
+
"exports": [
|
1469
|
+
{
|
1470
|
+
"kind": "js",
|
1471
|
+
"name": "*",
|
1472
|
+
"declaration": {
|
1473
|
+
"name": "*",
|
1474
|
+
"package": "./dto"
|
1475
|
+
}
|
1476
|
+
}
|
1477
|
+
]
|
1478
|
+
},
|
1479
1479
|
{
|
1480
1480
|
"kind": "javascript-module",
|
1481
1481
|
"path": "src/promise/index.ts",
|
@@ -2591,106 +2591,6 @@
|
|
2591
2591
|
}
|
2592
2592
|
]
|
2593
2593
|
},
|
2594
|
-
{
|
2595
|
-
"kind": "javascript-module",
|
2596
|
-
"path": "src/mappers/dto/index.ts",
|
2597
|
-
"declarations": [],
|
2598
|
-
"exports": [
|
2599
|
-
{
|
2600
|
-
"kind": "js",
|
2601
|
-
"name": "*",
|
2602
|
-
"declaration": {
|
2603
|
-
"name": "*",
|
2604
|
-
"package": "./serverRow"
|
2605
|
-
}
|
2606
|
-
},
|
2607
|
-
{
|
2608
|
-
"kind": "js",
|
2609
|
-
"name": "*",
|
2610
|
-
"declaration": {
|
2611
|
-
"name": "*",
|
2612
|
-
"package": "./types"
|
2613
|
-
}
|
2614
|
-
}
|
2615
|
-
]
|
2616
|
-
},
|
2617
|
-
{
|
2618
|
-
"kind": "javascript-module",
|
2619
|
-
"path": "src/mappers/dto/serverRow.ts",
|
2620
|
-
"declarations": [
|
2621
|
-
{
|
2622
|
-
"kind": "class",
|
2623
|
-
"description": "The default `ServerRowDTOMapper`.",
|
2624
|
-
"name": "DefaultServerRowDTOMapper",
|
2625
|
-
"members": [
|
2626
|
-
{
|
2627
|
-
"kind": "field",
|
2628
|
-
"name": "fromDTO",
|
2629
|
-
"description": "Converts a server row DTO to an entity.",
|
2630
|
-
"parameters": [
|
2631
|
-
{
|
2632
|
-
"description": "The DTO to convert.",
|
2633
|
-
"name": "dto"
|
2634
|
-
}
|
2635
|
-
],
|
2636
|
-
"return": {
|
2637
|
-
"type": {
|
2638
|
-
"text": ""
|
2639
|
-
}
|
2640
|
-
},
|
2641
|
-
"privacy": "public"
|
2642
|
-
},
|
2643
|
-
{
|
2644
|
-
"kind": "field",
|
2645
|
-
"name": "toDTO",
|
2646
|
-
"description": "Converts a server row entity to a DTO.",
|
2647
|
-
"parameters": [
|
2648
|
-
{
|
2649
|
-
"description": "The entity to convert.",
|
2650
|
-
"name": "entity"
|
2651
|
-
}
|
2652
|
-
],
|
2653
|
-
"return": {
|
2654
|
-
"type": {
|
2655
|
-
"text": ""
|
2656
|
-
}
|
2657
|
-
},
|
2658
|
-
"privacy": "public"
|
2659
|
-
}
|
2660
|
-
]
|
2661
|
-
},
|
2662
|
-
{
|
2663
|
-
"kind": "variable",
|
2664
|
-
"name": "ServerRowDTOMapper",
|
2665
|
-
"description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
|
2666
|
-
"privacy": "public"
|
2667
|
-
}
|
2668
|
-
],
|
2669
|
-
"exports": [
|
2670
|
-
{
|
2671
|
-
"kind": "js",
|
2672
|
-
"name": "DefaultServerRowDTOMapper",
|
2673
|
-
"declaration": {
|
2674
|
-
"name": "DefaultServerRowDTOMapper",
|
2675
|
-
"module": "src/mappers/dto/serverRow.ts"
|
2676
|
-
}
|
2677
|
-
},
|
2678
|
-
{
|
2679
|
-
"kind": "js",
|
2680
|
-
"name": "ServerRowDTOMapper",
|
2681
|
-
"declaration": {
|
2682
|
-
"name": "ServerRowDTOMapper",
|
2683
|
-
"module": "src/mappers/dto/serverRow.ts"
|
2684
|
-
}
|
2685
|
-
}
|
2686
|
-
]
|
2687
|
-
},
|
2688
|
-
{
|
2689
|
-
"kind": "javascript-module",
|
2690
|
-
"path": "src/mappers/dto/types.ts",
|
2691
|
-
"declarations": [],
|
2692
|
-
"exports": []
|
2693
|
-
},
|
2694
2594
|
{
|
2695
2595
|
"kind": "javascript-module",
|
2696
2596
|
"path": "src/mixins/lifecycle/index.ts",
|
@@ -2902,6 +2802,106 @@
|
|
2902
2802
|
}
|
2903
2803
|
]
|
2904
2804
|
},
|
2805
|
+
{
|
2806
|
+
"kind": "javascript-module",
|
2807
|
+
"path": "src/mappers/dto/index.ts",
|
2808
|
+
"declarations": [],
|
2809
|
+
"exports": [
|
2810
|
+
{
|
2811
|
+
"kind": "js",
|
2812
|
+
"name": "*",
|
2813
|
+
"declaration": {
|
2814
|
+
"name": "*",
|
2815
|
+
"package": "./serverRow"
|
2816
|
+
}
|
2817
|
+
},
|
2818
|
+
{
|
2819
|
+
"kind": "js",
|
2820
|
+
"name": "*",
|
2821
|
+
"declaration": {
|
2822
|
+
"name": "*",
|
2823
|
+
"package": "./types"
|
2824
|
+
}
|
2825
|
+
}
|
2826
|
+
]
|
2827
|
+
},
|
2828
|
+
{
|
2829
|
+
"kind": "javascript-module",
|
2830
|
+
"path": "src/mappers/dto/serverRow.ts",
|
2831
|
+
"declarations": [
|
2832
|
+
{
|
2833
|
+
"kind": "class",
|
2834
|
+
"description": "The default `ServerRowDTOMapper`.",
|
2835
|
+
"name": "DefaultServerRowDTOMapper",
|
2836
|
+
"members": [
|
2837
|
+
{
|
2838
|
+
"kind": "field",
|
2839
|
+
"name": "fromDTO",
|
2840
|
+
"description": "Converts a server row DTO to an entity.",
|
2841
|
+
"parameters": [
|
2842
|
+
{
|
2843
|
+
"description": "The DTO to convert.",
|
2844
|
+
"name": "dto"
|
2845
|
+
}
|
2846
|
+
],
|
2847
|
+
"return": {
|
2848
|
+
"type": {
|
2849
|
+
"text": ""
|
2850
|
+
}
|
2851
|
+
},
|
2852
|
+
"privacy": "public"
|
2853
|
+
},
|
2854
|
+
{
|
2855
|
+
"kind": "field",
|
2856
|
+
"name": "toDTO",
|
2857
|
+
"description": "Converts a server row entity to a DTO.",
|
2858
|
+
"parameters": [
|
2859
|
+
{
|
2860
|
+
"description": "The entity to convert.",
|
2861
|
+
"name": "entity"
|
2862
|
+
}
|
2863
|
+
],
|
2864
|
+
"return": {
|
2865
|
+
"type": {
|
2866
|
+
"text": ""
|
2867
|
+
}
|
2868
|
+
},
|
2869
|
+
"privacy": "public"
|
2870
|
+
}
|
2871
|
+
]
|
2872
|
+
},
|
2873
|
+
{
|
2874
|
+
"kind": "variable",
|
2875
|
+
"name": "ServerRowDTOMapper",
|
2876
|
+
"description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
|
2877
|
+
"privacy": "public"
|
2878
|
+
}
|
2879
|
+
],
|
2880
|
+
"exports": [
|
2881
|
+
{
|
2882
|
+
"kind": "js",
|
2883
|
+
"name": "DefaultServerRowDTOMapper",
|
2884
|
+
"declaration": {
|
2885
|
+
"name": "DefaultServerRowDTOMapper",
|
2886
|
+
"module": "src/mappers/dto/serverRow.ts"
|
2887
|
+
}
|
2888
|
+
},
|
2889
|
+
{
|
2890
|
+
"kind": "js",
|
2891
|
+
"name": "ServerRowDTOMapper",
|
2892
|
+
"declaration": {
|
2893
|
+
"name": "ServerRowDTOMapper",
|
2894
|
+
"module": "src/mappers/dto/serverRow.ts"
|
2895
|
+
}
|
2896
|
+
}
|
2897
|
+
]
|
2898
|
+
},
|
2899
|
+
{
|
2900
|
+
"kind": "javascript-module",
|
2901
|
+
"path": "src/mappers/dto/types.ts",
|
2902
|
+
"declarations": [],
|
2903
|
+
"exports": []
|
2904
|
+
},
|
2905
2905
|
{
|
2906
2906
|
"kind": "javascript-module",
|
2907
2907
|
"path": "src/serializers/json/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.230.1-alpha-
|
4
|
+
"version": "14.230.1-alpha-542ce67.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -27,17 +27,17 @@
|
|
27
27
|
}
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.230.1-alpha-
|
31
|
-
"@genesislcap/genx": "14.230.1-alpha-
|
32
|
-
"@genesislcap/rollup-builder": "14.230.1-alpha-
|
33
|
-
"@genesislcap/ts-builder": "14.230.1-alpha-
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.230.1-alpha-
|
35
|
-
"@genesislcap/vite-builder": "14.230.1-alpha-
|
36
|
-
"@genesislcap/webpack-builder": "14.230.1-alpha-
|
30
|
+
"@genesislcap/foundation-testing": "14.230.1-alpha-542ce67.0",
|
31
|
+
"@genesislcap/genx": "14.230.1-alpha-542ce67.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.230.1-alpha-542ce67.0",
|
33
|
+
"@genesislcap/ts-builder": "14.230.1-alpha-542ce67.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.230.1-alpha-542ce67.0",
|
35
|
+
"@genesislcap/vite-builder": "14.230.1-alpha-542ce67.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.230.1-alpha-542ce67.0",
|
37
37
|
"rimraf": "^5.0.0"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/foundation-logger": "14.230.1-alpha-
|
40
|
+
"@genesislcap/foundation-logger": "14.230.1-alpha-542ce67.0",
|
41
41
|
"@microsoft/fast-components": "2.30.6",
|
42
42
|
"@microsoft/fast-element": "1.14.0",
|
43
43
|
"@microsoft/fast-foundation": "2.49.6",
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"access": "public"
|
56
56
|
},
|
57
57
|
"customElements": "dist/custom-elements.json",
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "43d28d9fedc64734013ecdab2c89b6bb5442f006"
|
59
59
|
}
|