@genesislcap/foundation-utils 14.164.1 → 14.165.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +386 -386
  2. package/package.json +10 -10
@@ -151,307 +151,6 @@
151
151
  }
152
152
  ]
153
153
  },
154
- {
155
- "kind": "javascript-module",
156
- "path": "src/decorators/index.ts",
157
- "declarations": [],
158
- "exports": [
159
- {
160
- "kind": "js",
161
- "name": "*",
162
- "declaration": {
163
- "name": "*",
164
- "package": "./renderOnChange"
165
- }
166
- }
167
- ]
168
- },
169
- {
170
- "kind": "javascript-module",
171
- "path": "src/decorators/renderOnChange.ts",
172
- "declarations": [
173
- {
174
- "kind": "function",
175
- "name": "renderOnChange",
176
- "parameters": [
177
- {
178
- "name": "target",
179
- "type": {
180
- "text": "FASTElement & { render(): void }"
181
- },
182
- "description": "The target to define the property change handler on."
183
- },
184
- {
185
- "name": "name",
186
- "type": {
187
- "text": "string"
188
- },
189
- "description": "The property name."
190
- }
191
- ],
192
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
193
- "privacy": "public"
194
- }
195
- ],
196
- "exports": [
197
- {
198
- "kind": "js",
199
- "name": "renderOnChange",
200
- "declaration": {
201
- "name": "renderOnChange",
202
- "module": "src/decorators/renderOnChange.ts"
203
- }
204
- }
205
- ]
206
- },
207
- {
208
- "kind": "javascript-module",
209
- "path": "src/data/inMemoryDatabase.ts",
210
- "declarations": [
211
- {
212
- "kind": "class",
213
- "description": "An in memory database of specific DatabaseRecord types.",
214
- "name": "InMemoryDatabase",
215
- "members": [
216
- {
217
- "kind": "field",
218
- "name": "isWorking",
219
- "type": {
220
- "text": "boolean"
221
- },
222
- "privacy": "public",
223
- "default": "false"
224
- },
225
- {
226
- "kind": "field",
227
- "name": "records",
228
- "type": {
229
- "text": "Record<string, T>"
230
- },
231
- "privacy": "private",
232
- "default": "{}"
233
- },
234
- {
235
- "kind": "field",
236
- "name": "beforeUpdateListeners",
237
- "privacy": "private"
238
- },
239
- {
240
- "kind": "field",
241
- "name": "afterUpdateListeners",
242
- "privacy": "private"
243
- },
244
- {
245
- "kind": "method",
246
- "name": "create",
247
- "privacy": "public",
248
- "return": {
249
- "type": {
250
- "text": "Promise<DatabaseAccessResult.Create<T>>"
251
- }
252
- },
253
- "parameters": [
254
- {
255
- "name": "newValue",
256
- "type": {
257
- "text": "Omit<T, 'id'>"
258
- }
259
- }
260
- ]
261
- },
262
- {
263
- "kind": "method",
264
- "name": "read",
265
- "privacy": "public",
266
- "return": {
267
- "type": {
268
- "text": "Promise<DatabaseAccessResult.Read<T>>"
269
- }
270
- },
271
- "parameters": [
272
- {
273
- "name": "id",
274
- "type": {
275
- "text": "string"
276
- }
277
- }
278
- ]
279
- },
280
- {
281
- "kind": "method",
282
- "name": "update",
283
- "privacy": "public",
284
- "return": {
285
- "type": {
286
- "text": "Promise<DatabaseAccessResult.Update<T>>"
287
- }
288
- },
289
- "parameters": [
290
- {
291
- "name": "id",
292
- "type": {
293
- "text": "string"
294
- }
295
- },
296
- {
297
- "name": "newValue",
298
- "type": {
299
- "text": "Omit<Partial<T>, 'id'>"
300
- }
301
- }
302
- ]
303
- },
304
- {
305
- "kind": "method",
306
- "name": "delete",
307
- "privacy": "public",
308
- "return": {
309
- "type": {
310
- "text": "Promise<DatabaseAccessResult.Delete>"
311
- }
312
- },
313
- "parameters": [
314
- {
315
- "name": "id",
316
- "type": {
317
- "text": "string"
318
- }
319
- }
320
- ]
321
- },
322
- {
323
- "kind": "method",
324
- "name": "visit",
325
- "privacy": "public",
326
- "return": {
327
- "type": {
328
- "text": "Promise<void>"
329
- }
330
- },
331
- "parameters": [
332
- {
333
- "name": "visitor",
334
- "type": {
335
- "text": "(record: T) => void"
336
- }
337
- }
338
- ]
339
- },
340
- {
341
- "kind": "method",
342
- "name": "onBeforeUpdate",
343
- "privacy": "public",
344
- "return": {
345
- "type": {
346
- "text": "() => void"
347
- }
348
- },
349
- "parameters": [
350
- {
351
- "name": "listener",
352
- "type": {
353
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
354
- }
355
- }
356
- ]
357
- },
358
- {
359
- "kind": "method",
360
- "name": "onAfterUpdate",
361
- "privacy": "public",
362
- "return": {
363
- "type": {
364
- "text": "() => void"
365
- }
366
- },
367
- "parameters": [
368
- {
369
- "name": "listener",
370
- "type": {
371
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
372
- }
373
- }
374
- ]
375
- }
376
- ]
377
- }
378
- ],
379
- "exports": [
380
- {
381
- "kind": "js",
382
- "name": "InMemoryDatabase",
383
- "declaration": {
384
- "name": "InMemoryDatabase",
385
- "module": "src/data/inMemoryDatabase.ts"
386
- }
387
- }
388
- ]
389
- },
390
- {
391
- "kind": "javascript-module",
392
- "path": "src/data/index.ts",
393
- "declarations": [],
394
- "exports": [
395
- {
396
- "kind": "js",
397
- "name": "*",
398
- "declaration": {
399
- "name": "*",
400
- "package": "./inMemoryDatabase"
401
- }
402
- }
403
- ]
404
- },
405
- {
406
- "kind": "javascript-module",
407
- "path": "src/design-system/design-system.ts",
408
- "declarations": [
409
- {
410
- "kind": "function",
411
- "name": "assureDesignSystem",
412
- "return": {
413
- "type": {
414
- "text": "DesignSystemModule"
415
- }
416
- },
417
- "parameters": [
418
- {
419
- "name": "module",
420
- "type": {
421
- "text": "DesignSystemModule"
422
- }
423
- }
424
- ],
425
- "description": "assureDesignSystem.",
426
- "privacy": "public"
427
- }
428
- ],
429
- "exports": [
430
- {
431
- "kind": "js",
432
- "name": "assureDesignSystem",
433
- "declaration": {
434
- "name": "assureDesignSystem",
435
- "module": "src/design-system/design-system.ts"
436
- }
437
- }
438
- ]
439
- },
440
- {
441
- "kind": "javascript-module",
442
- "path": "src/design-system/index.ts",
443
- "declarations": [],
444
- "exports": [
445
- {
446
- "kind": "js",
447
- "name": "*",
448
- "declaration": {
449
- "name": "*",
450
- "package": "./design-system"
451
- }
452
- }
453
- ]
454
- },
455
154
  {
456
155
  "kind": "javascript-module",
457
156
  "path": "src/directives/index.ts",
@@ -709,182 +408,445 @@
709
408
  "members": [
710
409
  {
711
410
  "kind": "field",
712
- "name": "map",
713
- "privacy": "private",
714
- "default": "new Map<keyof TErrorDetailMap, Error>()"
411
+ "name": "map",
412
+ "privacy": "private",
413
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
414
+ },
415
+ {
416
+ "kind": "field",
417
+ "name": "lastError",
418
+ "type": {
419
+ "text": "Error"
420
+ },
421
+ "description": "{@inheritDoc ErrorMap.lastError}"
422
+ },
423
+ {
424
+ "kind": "method",
425
+ "name": "set",
426
+ "return": {
427
+ "type": {
428
+ "text": "void"
429
+ }
430
+ },
431
+ "parameters": [
432
+ {
433
+ "name": "key",
434
+ "type": {
435
+ "text": "keyof TErrorDetailMap"
436
+ }
437
+ },
438
+ {
439
+ "name": "error",
440
+ "type": {
441
+ "text": "Error"
442
+ }
443
+ }
444
+ ],
445
+ "description": "{@inheritDoc ErrorMap.set}"
446
+ },
447
+ {
448
+ "kind": "method",
449
+ "name": "get",
450
+ "return": {
451
+ "type": {
452
+ "text": ""
453
+ }
454
+ },
455
+ "parameters": [
456
+ {
457
+ "name": "key",
458
+ "type": {
459
+ "text": "keyof TErrorDetailMap"
460
+ },
461
+ "description": "The key."
462
+ }
463
+ ],
464
+ "description": "Get an error by key.",
465
+ "privacy": "public"
466
+ },
467
+ {
468
+ "kind": "method",
469
+ "name": "has",
470
+ "return": {
471
+ "type": {
472
+ "text": ""
473
+ }
474
+ },
475
+ "parameters": [
476
+ {
477
+ "name": "key",
478
+ "type": {
479
+ "text": "keyof TErrorDetailMap"
480
+ },
481
+ "description": "The key."
482
+ }
483
+ ],
484
+ "description": "Has an error for key.",
485
+ "privacy": "public"
486
+ },
487
+ {
488
+ "kind": "method",
489
+ "name": "delete",
490
+ "return": {
491
+ "type": {
492
+ "text": ""
493
+ }
494
+ },
495
+ "parameters": [
496
+ {
497
+ "name": "key",
498
+ "type": {
499
+ "text": "keyof TErrorDetailMap"
500
+ },
501
+ "description": "The key."
502
+ }
503
+ ],
504
+ "description": "Delete an error.",
505
+ "privacy": "public"
506
+ },
507
+ {
508
+ "kind": "method",
509
+ "name": "clear",
510
+ "description": "Clear errors.",
511
+ "privacy": "public"
512
+ },
513
+ {
514
+ "kind": "field",
515
+ "name": "size",
516
+ "type": {
517
+ "text": "number"
518
+ },
519
+ "description": "The size of the error map.",
520
+ "return": {
521
+ "type": {
522
+ "text": ""
523
+ }
524
+ },
525
+ "privacy": "public",
526
+ "readonly": true
527
+ },
528
+ {
529
+ "kind": "method",
530
+ "name": "values",
531
+ "privacy": "public"
532
+ },
533
+ {
534
+ "kind": "field",
535
+ "name": "messages",
536
+ "type": {
537
+ "text": "string"
538
+ },
539
+ "description": "{@inheritDoc ErrorMap.messages}",
540
+ "readonly": true
541
+ }
542
+ ]
543
+ },
544
+ {
545
+ "kind": "function",
546
+ "name": "createErrorMap",
547
+ "return": {
548
+ "type": {
549
+ "text": ""
550
+ }
551
+ },
552
+ "parameters": [
553
+ {
554
+ "name": "logger",
555
+ "type": {
556
+ "text": "ErrorMapLogger"
557
+ },
558
+ "description": "A logger error method reference."
559
+ }
560
+ ],
561
+ "description": "A factory to create the error map.",
562
+ "privacy": "public"
563
+ }
564
+ ],
565
+ "exports": [
566
+ {
567
+ "kind": "js",
568
+ "name": "DefaultErrorMap",
569
+ "declaration": {
570
+ "name": "DefaultErrorMap",
571
+ "module": "src/error/errorMap.ts"
572
+ }
573
+ },
574
+ {
575
+ "kind": "js",
576
+ "name": "createErrorMap",
577
+ "declaration": {
578
+ "name": "createErrorMap",
579
+ "module": "src/error/errorMap.ts"
580
+ }
581
+ }
582
+ ]
583
+ },
584
+ {
585
+ "kind": "javascript-module",
586
+ "path": "src/error/index.ts",
587
+ "declarations": [],
588
+ "exports": [
589
+ {
590
+ "kind": "js",
591
+ "name": "*",
592
+ "declaration": {
593
+ "name": "*",
594
+ "package": "./errorMap"
595
+ }
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "kind": "javascript-module",
601
+ "path": "src/data/inMemoryDatabase.ts",
602
+ "declarations": [
603
+ {
604
+ "kind": "class",
605
+ "description": "An in memory database of specific DatabaseRecord types.",
606
+ "name": "InMemoryDatabase",
607
+ "members": [
608
+ {
609
+ "kind": "field",
610
+ "name": "isWorking",
611
+ "type": {
612
+ "text": "boolean"
613
+ },
614
+ "privacy": "public",
615
+ "default": "false"
616
+ },
617
+ {
618
+ "kind": "field",
619
+ "name": "records",
620
+ "type": {
621
+ "text": "Record<string, T>"
622
+ },
623
+ "privacy": "private",
624
+ "default": "{}"
625
+ },
626
+ {
627
+ "kind": "field",
628
+ "name": "beforeUpdateListeners",
629
+ "privacy": "private"
715
630
  },
716
631
  {
717
632
  "kind": "field",
718
- "name": "lastError",
719
- "type": {
720
- "text": "Error"
721
- },
722
- "description": "{@inheritDoc ErrorMap.lastError}"
633
+ "name": "afterUpdateListeners",
634
+ "privacy": "private"
723
635
  },
724
636
  {
725
637
  "kind": "method",
726
- "name": "set",
638
+ "name": "create",
639
+ "privacy": "public",
727
640
  "return": {
728
641
  "type": {
729
- "text": "void"
642
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
730
643
  }
731
644
  },
732
645
  "parameters": [
733
646
  {
734
- "name": "key",
735
- "type": {
736
- "text": "keyof TErrorDetailMap"
737
- }
738
- },
739
- {
740
- "name": "error",
647
+ "name": "newValue",
741
648
  "type": {
742
- "text": "Error"
649
+ "text": "Omit<T, 'id'>"
743
650
  }
744
651
  }
745
- ],
746
- "description": "{@inheritDoc ErrorMap.set}"
652
+ ]
747
653
  },
748
654
  {
749
655
  "kind": "method",
750
- "name": "get",
656
+ "name": "read",
657
+ "privacy": "public",
751
658
  "return": {
752
659
  "type": {
753
- "text": ""
660
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
754
661
  }
755
662
  },
756
663
  "parameters": [
757
664
  {
758
- "name": "key",
665
+ "name": "id",
759
666
  "type": {
760
- "text": "keyof TErrorDetailMap"
761
- },
762
- "description": "The key."
667
+ "text": "string"
668
+ }
763
669
  }
764
- ],
765
- "description": "Get an error by key.",
766
- "privacy": "public"
670
+ ]
767
671
  },
768
672
  {
769
673
  "kind": "method",
770
- "name": "has",
674
+ "name": "update",
675
+ "privacy": "public",
771
676
  "return": {
772
677
  "type": {
773
- "text": ""
678
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
774
679
  }
775
680
  },
776
681
  "parameters": [
777
682
  {
778
- "name": "key",
683
+ "name": "id",
779
684
  "type": {
780
- "text": "keyof TErrorDetailMap"
781
- },
782
- "description": "The key."
685
+ "text": "string"
686
+ }
687
+ },
688
+ {
689
+ "name": "newValue",
690
+ "type": {
691
+ "text": "Omit<Partial<T>, 'id'>"
692
+ }
783
693
  }
784
- ],
785
- "description": "Has an error for key.",
786
- "privacy": "public"
694
+ ]
787
695
  },
788
696
  {
789
697
  "kind": "method",
790
698
  "name": "delete",
699
+ "privacy": "public",
791
700
  "return": {
792
701
  "type": {
793
- "text": ""
702
+ "text": "Promise<DatabaseAccessResult.Delete>"
794
703
  }
795
704
  },
796
705
  "parameters": [
797
706
  {
798
- "name": "key",
707
+ "name": "id",
799
708
  "type": {
800
- "text": "keyof TErrorDetailMap"
801
- },
802
- "description": "The key."
709
+ "text": "string"
710
+ }
803
711
  }
804
- ],
805
- "description": "Delete an error.",
806
- "privacy": "public"
712
+ ]
807
713
  },
808
714
  {
809
715
  "kind": "method",
810
- "name": "clear",
811
- "description": "Clear errors.",
812
- "privacy": "public"
813
- },
814
- {
815
- "kind": "field",
816
- "name": "size",
817
- "type": {
818
- "text": "number"
819
- },
820
- "description": "The size of the error map.",
716
+ "name": "visit",
717
+ "privacy": "public",
821
718
  "return": {
822
719
  "type": {
823
- "text": ""
720
+ "text": "Promise<void>"
824
721
  }
825
722
  },
826
- "privacy": "public",
827
- "readonly": true
723
+ "parameters": [
724
+ {
725
+ "name": "visitor",
726
+ "type": {
727
+ "text": "(record: T) => void"
728
+ }
729
+ }
730
+ ]
828
731
  },
829
732
  {
830
733
  "kind": "method",
831
- "name": "values",
832
- "privacy": "public"
734
+ "name": "onBeforeUpdate",
735
+ "privacy": "public",
736
+ "return": {
737
+ "type": {
738
+ "text": "() => void"
739
+ }
740
+ },
741
+ "parameters": [
742
+ {
743
+ "name": "listener",
744
+ "type": {
745
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
746
+ }
747
+ }
748
+ ]
833
749
  },
834
750
  {
835
- "kind": "field",
836
- "name": "messages",
837
- "type": {
838
- "text": "string"
751
+ "kind": "method",
752
+ "name": "onAfterUpdate",
753
+ "privacy": "public",
754
+ "return": {
755
+ "type": {
756
+ "text": "() => void"
757
+ }
839
758
  },
840
- "description": "{@inheritDoc ErrorMap.messages}",
841
- "readonly": true
759
+ "parameters": [
760
+ {
761
+ "name": "listener",
762
+ "type": {
763
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
764
+ }
765
+ }
766
+ ]
842
767
  }
843
768
  ]
844
- },
769
+ }
770
+ ],
771
+ "exports": [
772
+ {
773
+ "kind": "js",
774
+ "name": "InMemoryDatabase",
775
+ "declaration": {
776
+ "name": "InMemoryDatabase",
777
+ "module": "src/data/inMemoryDatabase.ts"
778
+ }
779
+ }
780
+ ]
781
+ },
782
+ {
783
+ "kind": "javascript-module",
784
+ "path": "src/data/index.ts",
785
+ "declarations": [],
786
+ "exports": [
787
+ {
788
+ "kind": "js",
789
+ "name": "*",
790
+ "declaration": {
791
+ "name": "*",
792
+ "package": "./inMemoryDatabase"
793
+ }
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "kind": "javascript-module",
799
+ "path": "src/design-system/design-system.ts",
800
+ "declarations": [
845
801
  {
846
802
  "kind": "function",
847
- "name": "createErrorMap",
803
+ "name": "assureDesignSystem",
848
804
  "return": {
849
805
  "type": {
850
- "text": ""
806
+ "text": "DesignSystemModule"
851
807
  }
852
808
  },
853
809
  "parameters": [
854
810
  {
855
- "name": "logger",
811
+ "name": "module",
856
812
  "type": {
857
- "text": "ErrorMapLogger"
858
- },
859
- "description": "A logger error method reference."
813
+ "text": "DesignSystemModule"
814
+ }
860
815
  }
861
816
  ],
862
- "description": "A factory to create the error map.",
817
+ "description": "assureDesignSystem.",
863
818
  "privacy": "public"
864
819
  }
865
820
  ],
866
821
  "exports": [
867
822
  {
868
823
  "kind": "js",
869
- "name": "DefaultErrorMap",
824
+ "name": "assureDesignSystem",
870
825
  "declaration": {
871
- "name": "DefaultErrorMap",
872
- "module": "src/error/errorMap.ts"
826
+ "name": "assureDesignSystem",
827
+ "module": "src/design-system/design-system.ts"
873
828
  }
874
- },
829
+ }
830
+ ]
831
+ },
832
+ {
833
+ "kind": "javascript-module",
834
+ "path": "src/design-system/index.ts",
835
+ "declarations": [],
836
+ "exports": [
875
837
  {
876
838
  "kind": "js",
877
- "name": "createErrorMap",
839
+ "name": "*",
878
840
  "declaration": {
879
- "name": "createErrorMap",
880
- "module": "src/error/errorMap.ts"
841
+ "name": "*",
842
+ "package": "./design-system"
881
843
  }
882
844
  }
883
845
  ]
884
846
  },
885
847
  {
886
848
  "kind": "javascript-module",
887
- "path": "src/error/index.ts",
849
+ "path": "src/decorators/index.ts",
888
850
  "declarations": [],
889
851
  "exports": [
890
852
  {
@@ -892,7 +854,45 @@
892
854
  "name": "*",
893
855
  "declaration": {
894
856
  "name": "*",
895
- "package": "./errorMap"
857
+ "package": "./renderOnChange"
858
+ }
859
+ }
860
+ ]
861
+ },
862
+ {
863
+ "kind": "javascript-module",
864
+ "path": "src/decorators/renderOnChange.ts",
865
+ "declarations": [
866
+ {
867
+ "kind": "function",
868
+ "name": "renderOnChange",
869
+ "parameters": [
870
+ {
871
+ "name": "target",
872
+ "type": {
873
+ "text": "FASTElement & { render(): void }"
874
+ },
875
+ "description": "The target to define the property change handler on."
876
+ },
877
+ {
878
+ "name": "name",
879
+ "type": {
880
+ "text": "string"
881
+ },
882
+ "description": "The property name."
883
+ }
884
+ ],
885
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
886
+ "privacy": "public"
887
+ }
888
+ ],
889
+ "exports": [
890
+ {
891
+ "kind": "js",
892
+ "name": "renderOnChange",
893
+ "declaration": {
894
+ "name": "renderOnChange",
895
+ "module": "src/decorators/renderOnChange.ts"
896
896
  }
897
897
  }
898
898
  ]
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.164.1",
4
+ "version": "14.165.0",
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.164.1",
23
- "@genesislcap/genx": "14.164.1",
24
- "@genesislcap/rollup-builder": "14.164.1",
25
- "@genesislcap/ts-builder": "14.164.1",
26
- "@genesislcap/uvu-playwright-builder": "14.164.1",
27
- "@genesislcap/vite-builder": "14.164.1",
28
- "@genesislcap/webpack-builder": "14.164.1",
22
+ "@genesislcap/foundation-testing": "14.165.0",
23
+ "@genesislcap/genx": "14.165.0",
24
+ "@genesislcap/rollup-builder": "14.165.0",
25
+ "@genesislcap/ts-builder": "14.165.0",
26
+ "@genesislcap/uvu-playwright-builder": "14.165.0",
27
+ "@genesislcap/vite-builder": "14.165.0",
28
+ "@genesislcap/webpack-builder": "14.165.0",
29
29
  "rimraf": "^3.0.2"
30
30
  },
31
31
  "dependencies": {
32
- "@genesislcap/foundation-logger": "14.164.1",
32
+ "@genesislcap/foundation-logger": "14.165.0",
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": "d175a3b7a55dd99fd709201d0212253a1c93c9f4"
50
+ "gitHead": "f4216db92f3b5bd64262dc6fe95f4feebac48502"
51
51
  }