@genesislcap/foundation-utils 14.381.1 → 14.382.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 +606 -606
  2. package/package.json +11 -11
@@ -393,30 +393,127 @@
393
393
  },
394
394
  {
395
395
  "kind": "javascript-module",
396
- "path": "src/directives/index.ts",
397
- "declarations": [],
396
+ "path": "src/design-system/design-system.ts",
397
+ "declarations": [
398
+ {
399
+ "kind": "function",
400
+ "name": "assureDesignSystem",
401
+ "return": {
402
+ "type": {
403
+ "text": "DesignSystemModule"
404
+ }
405
+ },
406
+ "parameters": [
407
+ {
408
+ "name": "module",
409
+ "type": {
410
+ "text": "DesignSystemModule"
411
+ }
412
+ }
413
+ ],
414
+ "description": "assureDesignSystem.",
415
+ "privacy": "public"
416
+ },
417
+ {
418
+ "kind": "function",
419
+ "name": "getCurrentDesignSystem",
420
+ "return": {
421
+ "type": {
422
+ "text": ""
423
+ }
424
+ },
425
+ "parameters": [
426
+ {
427
+ "name": "element",
428
+ "type": {
429
+ "text": "HTMLElement"
430
+ },
431
+ "description": "The starting HTML element"
432
+ },
433
+ {
434
+ "name": "fallbackPrefix",
435
+ "type": {
436
+ "text": "string"
437
+ },
438
+ "description": "The prefix to fallback to if the provider is not available"
439
+ }
440
+ ],
441
+ "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.",
442
+ "privacy": "public"
443
+ },
444
+ {
445
+ "kind": "function",
446
+ "name": "getCurrentDesignSystemPrefix",
447
+ "return": {
448
+ "type": {
449
+ "text": ""
450
+ }
451
+ },
452
+ "parameters": [
453
+ {
454
+ "name": "element",
455
+ "type": {
456
+ "text": "HTMLElement"
457
+ },
458
+ "description": "The starting HTML element"
459
+ },
460
+ {
461
+ "name": "fallbackPrefix",
462
+ "type": {
463
+ "text": "string"
464
+ },
465
+ "description": "The prefix to fallback to if the provider is not available"
466
+ }
467
+ ],
468
+ "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
469
+ "privacy": "public"
470
+ }
471
+ ],
398
472
  "exports": [
399
473
  {
400
474
  "kind": "js",
401
- "name": "*",
475
+ "name": "assureDesignSystem",
402
476
  "declaration": {
403
- "name": "*",
404
- "package": "./sync"
477
+ "name": "assureDesignSystem",
478
+ "module": "src/design-system/design-system.ts"
479
+ }
480
+ },
481
+ {
482
+ "kind": "js",
483
+ "name": "getCurrentDesignSystem",
484
+ "declaration": {
485
+ "name": "getCurrentDesignSystem",
486
+ "module": "src/design-system/design-system.ts"
405
487
  }
406
488
  },
489
+ {
490
+ "kind": "js",
491
+ "name": "getCurrentDesignSystemPrefix",
492
+ "declaration": {
493
+ "name": "getCurrentDesignSystemPrefix",
494
+ "module": "src/design-system/design-system.ts"
495
+ }
496
+ }
497
+ ]
498
+ },
499
+ {
500
+ "kind": "javascript-module",
501
+ "path": "src/design-system/index.ts",
502
+ "declarations": [],
503
+ "exports": [
407
504
  {
408
505
  "kind": "js",
409
506
  "name": "*",
410
507
  "declaration": {
411
508
  "name": "*",
412
- "package": "./when-else"
509
+ "package": "./design-system"
413
510
  }
414
511
  }
415
512
  ]
416
513
  },
417
514
  {
418
515
  "kind": "javascript-module",
419
- "path": "src/env/index.ts",
516
+ "path": "src/directives/index.ts",
420
517
  "declarations": [],
421
518
  "exports": [
422
519
  {
@@ -424,7 +521,7 @@
424
521
  "name": "*",
425
522
  "declaration": {
426
523
  "name": "*",
427
- "package": "./is-dev"
524
+ "package": "./sync"
428
525
  }
429
526
  },
430
527
  {
@@ -432,838 +529,741 @@
432
529
  "name": "*",
433
530
  "declaration": {
434
531
  "name": "*",
435
- "package": "./variables"
532
+ "package": "./when-else"
436
533
  }
437
534
  }
438
535
  ]
439
536
  },
440
537
  {
441
538
  "kind": "javascript-module",
442
- "path": "src/env/is-dev.ts",
539
+ "path": "src/decorators/index.ts",
540
+ "declarations": [],
541
+ "exports": [
542
+ {
543
+ "kind": "js",
544
+ "name": "*",
545
+ "declaration": {
546
+ "name": "*",
547
+ "package": "./renderOnChange"
548
+ }
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "kind": "javascript-module",
554
+ "path": "src/decorators/renderOnChange.ts",
443
555
  "declarations": [
444
556
  {
445
557
  "kind": "function",
446
- "name": "isDev",
447
- "description": "Determines if the current environment is a development environment.",
558
+ "name": "renderOnChange",
559
+ "parameters": [
560
+ {
561
+ "name": "target",
562
+ "type": {
563
+ "text": "FASTElement & { render(): void }"
564
+ },
565
+ "description": "The target to define the property change handler on."
566
+ },
567
+ {
568
+ "name": "name",
569
+ "type": {
570
+ "text": "string"
571
+ },
572
+ "description": "The property name."
573
+ }
574
+ ],
575
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
448
576
  "privacy": "public"
449
577
  }
450
578
  ],
451
579
  "exports": [
452
580
  {
453
581
  "kind": "js",
454
- "name": "isDev",
582
+ "name": "renderOnChange",
455
583
  "declaration": {
456
- "name": "isDev",
457
- "module": "src/env/is-dev.ts"
584
+ "name": "renderOnChange",
585
+ "module": "src/decorators/renderOnChange.ts"
458
586
  }
459
587
  }
460
588
  ]
461
589
  },
462
590
  {
463
591
  "kind": "javascript-module",
464
- "path": "src/env/variables.ts",
592
+ "path": "src/error/errorMap.ts",
465
593
  "declarations": [
466
594
  {
467
- "kind": "variable",
468
- "name": "BUILDER",
469
- "type": {
470
- "text": "string"
471
- }
472
- },
473
- {
474
- "kind": "variable",
475
- "name": "_BUILDER",
476
- "type": {
477
- "text": "string"
478
- },
479
- "default": "'webpack'",
480
- "description": "The builder aka file bundler.",
481
- "privacy": "public"
482
- },
483
- {
484
- "kind": "variable",
485
- "name": "PUBLIC_PATH",
486
- "type": {
487
- "text": "string"
488
- }
489
- },
490
- {
491
- "kind": "variable",
492
- "name": "_PUBLIC_PATH",
493
- "type": {
494
- "text": "string"
495
- },
496
- "default": "'/'",
497
- "description": "The public path.",
498
- "privacy": "public"
499
- },
500
- {
501
- "kind": "variable",
502
- "name": "SOCKET_EXT",
503
- "type": {
504
- "text": "string"
505
- }
506
- },
507
- {
508
- "kind": "variable",
509
- "name": "_SOCKET_EXT",
510
- "type": {
511
- "text": "string"
512
- },
513
- "default": "'gwf'",
514
- "description": "The sub-path used for WebSocket connections when API_HOST is not set",
515
- "privacy": "public"
516
- },
517
- {
518
- "kind": "variable",
519
- "name": "FORCE_HTTP",
520
- "type": {
521
- "text": "string"
522
- }
523
- },
524
- {
525
- "kind": "variable",
526
- "name": "_FORCE_HTTP",
527
- "type": {
528
- "text": "string"
529
- },
530
- "description": "The path to a JSON config file for the HTTP mode.",
531
- "privacy": "public"
532
- },
533
- {
534
- "kind": "variable",
535
- "name": "GENESIS_SOCKET_URL",
536
- "default": "`${location.protocol.replace('http', 'ws')}//${location.host}${_PUBLIC_PATH}/${_SOCKET_EXT}/`",
537
- "description": "Genesis Socket URL",
538
- "privacy": "public"
539
- },
540
- {
541
- "kind": "variable",
542
- "name": "API_HOST",
543
- "type": {
544
- "text": "string"
545
- }
546
- },
547
- {
548
- "kind": "variable",
549
- "name": "_API_HOST",
550
- "type": {
551
- "text": "string"
552
- },
553
- "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
554
- "description": "The Genesis Server URL (WebSocket or HTTP).",
555
- "privacy": "public"
556
- },
557
- {
558
- "kind": "variable",
559
- "name": "HTTP_CONFIG",
560
- "type": {
561
- "text": "string"
562
- }
595
+ "kind": "class",
596
+ "description": "",
597
+ "name": "DefaultErrorMap",
598
+ "members": [
599
+ {
600
+ "kind": "field",
601
+ "name": "map",
602
+ "privacy": "private",
603
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
604
+ },
605
+ {
606
+ "kind": "field",
607
+ "name": "lastError",
608
+ "type": {
609
+ "text": "Error"
610
+ },
611
+ "description": "{@inheritDoc ErrorMap.lastError}"
612
+ },
613
+ {
614
+ "kind": "method",
615
+ "name": "set",
616
+ "return": {
617
+ "type": {
618
+ "text": "void"
619
+ }
620
+ },
621
+ "parameters": [
622
+ {
623
+ "name": "key",
624
+ "type": {
625
+ "text": "keyof TErrorDetailMap"
626
+ }
627
+ },
628
+ {
629
+ "name": "error",
630
+ "type": {
631
+ "text": "Error"
632
+ }
633
+ }
634
+ ],
635
+ "description": "{@inheritDoc ErrorMap.set}"
636
+ },
637
+ {
638
+ "kind": "method",
639
+ "name": "get",
640
+ "return": {
641
+ "type": {
642
+ "text": ""
643
+ }
644
+ },
645
+ "parameters": [
646
+ {
647
+ "name": "key",
648
+ "type": {
649
+ "text": "keyof TErrorDetailMap"
650
+ },
651
+ "description": "The key."
652
+ }
653
+ ],
654
+ "description": "Get an error by key.",
655
+ "privacy": "public"
656
+ },
657
+ {
658
+ "kind": "method",
659
+ "name": "has",
660
+ "return": {
661
+ "type": {
662
+ "text": ""
663
+ }
664
+ },
665
+ "parameters": [
666
+ {
667
+ "name": "key",
668
+ "type": {
669
+ "text": "keyof TErrorDetailMap"
670
+ },
671
+ "description": "The key."
672
+ }
673
+ ],
674
+ "description": "Has an error for key.",
675
+ "privacy": "public"
676
+ },
677
+ {
678
+ "kind": "method",
679
+ "name": "delete",
680
+ "return": {
681
+ "type": {
682
+ "text": ""
683
+ }
684
+ },
685
+ "parameters": [
686
+ {
687
+ "name": "key",
688
+ "type": {
689
+ "text": "keyof TErrorDetailMap"
690
+ },
691
+ "description": "The key."
692
+ }
693
+ ],
694
+ "description": "Delete an error.",
695
+ "privacy": "public"
696
+ },
697
+ {
698
+ "kind": "method",
699
+ "name": "clear",
700
+ "description": "Clear errors.",
701
+ "privacy": "public"
702
+ },
703
+ {
704
+ "kind": "field",
705
+ "name": "size",
706
+ "type": {
707
+ "text": "number"
708
+ },
709
+ "description": "The size of the error map.",
710
+ "return": {
711
+ "type": {
712
+ "text": ""
713
+ }
714
+ },
715
+ "privacy": "public",
716
+ "readonly": true
717
+ },
718
+ {
719
+ "kind": "method",
720
+ "name": "values",
721
+ "privacy": "public"
722
+ },
723
+ {
724
+ "kind": "field",
725
+ "name": "messages",
726
+ "type": {
727
+ "text": "string"
728
+ },
729
+ "description": "{@inheritDoc ErrorMap.messages}",
730
+ "readonly": true
731
+ }
732
+ ]
563
733
  },
564
734
  {
565
- "kind": "variable",
566
- "name": "_HTTP_CONFIG",
567
- "type": {
568
- "text": "string"
735
+ "kind": "function",
736
+ "name": "createErrorMap",
737
+ "return": {
738
+ "type": {
739
+ "text": ""
740
+ }
569
741
  },
570
- "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
742
+ "parameters": [
743
+ {
744
+ "name": "logger",
745
+ "type": {
746
+ "text": "ErrorMapLogger"
747
+ },
748
+ "description": "A logger error method reference."
749
+ }
750
+ ],
751
+ "description": "A factory to create the error map.",
571
752
  "privacy": "public"
753
+ }
754
+ ],
755
+ "exports": [
756
+ {
757
+ "kind": "js",
758
+ "name": "DefaultErrorMap",
759
+ "declaration": {
760
+ "name": "DefaultErrorMap",
761
+ "module": "src/error/errorMap.ts"
762
+ }
572
763
  },
764
+ {
765
+ "kind": "js",
766
+ "name": "createErrorMap",
767
+ "declaration": {
768
+ "name": "createErrorMap",
769
+ "module": "src/error/errorMap.ts"
770
+ }
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "kind": "javascript-module",
776
+ "path": "src/error/index.ts",
777
+ "declarations": [],
778
+ "exports": [
779
+ {
780
+ "kind": "js",
781
+ "name": "*",
782
+ "declaration": {
783
+ "name": "*",
784
+ "package": "./errorMap"
785
+ }
786
+ }
787
+ ]
788
+ },
789
+ {
790
+ "kind": "javascript-module",
791
+ "path": "src/env/index.ts",
792
+ "declarations": [],
793
+ "exports": [
794
+ {
795
+ "kind": "js",
796
+ "name": "*",
797
+ "declaration": {
798
+ "name": "*",
799
+ "package": "./is-dev"
800
+ }
801
+ },
802
+ {
803
+ "kind": "js",
804
+ "name": "*",
805
+ "declaration": {
806
+ "name": "*",
807
+ "package": "./variables"
808
+ }
809
+ }
810
+ ]
811
+ },
812
+ {
813
+ "kind": "javascript-module",
814
+ "path": "src/env/is-dev.ts",
815
+ "declarations": [
816
+ {
817
+ "kind": "function",
818
+ "name": "isDev",
819
+ "description": "Determines if the current environment is a development environment.",
820
+ "privacy": "public"
821
+ }
822
+ ],
823
+ "exports": [
824
+ {
825
+ "kind": "js",
826
+ "name": "isDev",
827
+ "declaration": {
828
+ "name": "isDev",
829
+ "module": "src/env/is-dev.ts"
830
+ }
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "kind": "javascript-module",
836
+ "path": "src/env/variables.ts",
837
+ "declarations": [
573
838
  {
574
839
  "kind": "variable",
575
- "name": "DEFAULT_ORGANISATION",
840
+ "name": "BUILDER",
576
841
  "type": {
577
842
  "text": "string"
578
843
  }
579
844
  },
580
845
  {
581
846
  "kind": "variable",
582
- "name": "_DEFAULT_ORGANISATION",
847
+ "name": "_BUILDER",
583
848
  "type": {
584
849
  "text": "string"
585
850
  },
586
- "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
851
+ "default": "'webpack'",
852
+ "description": "The builder aka file bundler.",
587
853
  "privacy": "public"
588
854
  },
589
855
  {
590
856
  "kind": "variable",
591
- "name": "DEFAULT_PASSWORD",
857
+ "name": "PUBLIC_PATH",
592
858
  "type": {
593
859
  "text": "string"
594
860
  }
595
861
  },
596
862
  {
597
863
  "kind": "variable",
598
- "name": "_DEFAULT_PASSWORD",
864
+ "name": "_PUBLIC_PATH",
599
865
  "type": {
600
866
  "text": "string"
601
867
  },
602
- "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
868
+ "default": "'/'",
869
+ "description": "The public path.",
603
870
  "privacy": "public"
604
871
  },
605
872
  {
606
873
  "kind": "variable",
607
- "name": "DEFAULT_USER",
874
+ "name": "SOCKET_EXT",
608
875
  "type": {
609
876
  "text": "string"
610
877
  }
611
878
  },
612
879
  {
613
880
  "kind": "variable",
614
- "name": "_DEFAULT_USER",
881
+ "name": "_SOCKET_EXT",
615
882
  "type": {
616
883
  "text": "string"
617
884
  },
618
- "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
885
+ "default": "'gwf'",
886
+ "description": "The sub-path used for WebSocket connections when API_HOST is not set",
619
887
  "privacy": "public"
620
888
  },
621
889
  {
622
890
  "kind": "variable",
623
- "name": "LOGIN_URL",
891
+ "name": "FORCE_HTTP",
624
892
  "type": {
625
893
  "text": "string"
626
- },
627
- "default": "'gwf/event-login-auth'",
628
- "privacy": "public"
894
+ }
629
895
  },
630
896
  {
631
897
  "kind": "variable",
632
- "name": "LOGIN_REFRESH_URL",
898
+ "name": "_FORCE_HTTP",
633
899
  "type": {
634
900
  "text": "string"
635
901
  },
636
- "default": "'gwf/event-login-auth'",
902
+ "description": "The path to a JSON config file for the HTTP mode.",
637
903
  "privacy": "public"
638
904
  },
639
905
  {
640
906
  "kind": "variable",
641
- "name": "LOGIN_DETAILS_URL",
642
- "type": {
643
- "text": "string"
644
- },
645
- "default": "'gwf/event-login-details'",
907
+ "name": "GENESIS_SOCKET_URL",
908
+ "default": "`${location.protocol.replace('http', 'ws')}//${location.host}${_PUBLIC_PATH}/${_SOCKET_EXT}/`",
909
+ "description": "Genesis Socket URL",
646
910
  "privacy": "public"
647
911
  },
648
912
  {
649
913
  "kind": "variable",
650
- "name": "LOGOUT_URL",
914
+ "name": "API_HOST",
651
915
  "type": {
652
916
  "text": "string"
653
- },
654
- "default": "'gwf/event-logout'",
655
- "privacy": "public"
917
+ }
656
918
  },
657
919
  {
658
920
  "kind": "variable",
659
- "name": "CHANGE_PASSWORD_URL",
921
+ "name": "_API_HOST",
660
922
  "type": {
661
923
  "text": "string"
662
924
  },
663
- "default": "'gwf/event-change-user-password'",
925
+ "default": "`${PROTOCOL}//${location.host}/${_SOCKET_EXT}/`",
926
+ "description": "The Genesis Server URL (WebSocket or HTTP).",
664
927
  "privacy": "public"
665
928
  },
666
929
  {
667
930
  "kind": "variable",
668
- "name": "FORGOT_PASSWORD_URL",
931
+ "name": "HTTP_CONFIG",
669
932
  "type": {
670
933
  "text": "string"
671
- },
672
- "default": "'gwf/event-self-service-password-reset'",
673
- "privacy": "public"
934
+ }
674
935
  },
675
936
  {
676
937
  "kind": "variable",
677
- "name": "RESET_PASSWORD_URL",
938
+ "name": "_HTTP_CONFIG",
678
939
  "type": {
679
940
  "text": "string"
680
941
  },
681
- "default": "'gwf/event-password-reset-action'",
942
+ "description": "Configuration settings for HTTP, used in http connect flow [`genesislcap-foundation-comms.HttpConnectConfig`](https://link-to-docs).",
682
943
  "privacy": "public"
683
944
  },
684
945
  {
685
946
  "kind": "variable",
686
- "name": "SSO_LIST_URL",
947
+ "name": "DEFAULT_ORGANISATION",
687
948
  "type": {
688
949
  "text": "string"
689
- },
690
- "default": "'gwf/sso/list'",
691
- "privacy": "public"
950
+ }
692
951
  },
693
952
  {
694
953
  "kind": "variable",
695
- "name": "SSO_LOGIN_URL",
954
+ "name": "_DEFAULT_ORGANISATION",
696
955
  "type": {
697
956
  "text": "string"
698
957
  },
699
- "default": "'gwf/{type}/login?idp={id}'",
958
+ "description": "The default Organisation value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
700
959
  "privacy": "public"
701
960
  },
702
961
  {
703
962
  "kind": "variable",
704
- "name": "ENVIRONMENT_LEVEL",
963
+ "name": "DEFAULT_PASSWORD",
705
964
  "type": {
706
965
  "text": "string"
707
- },
708
- "default": "'default'",
709
- "privacy": "public"
966
+ }
710
967
  },
711
968
  {
712
969
  "kind": "variable",
713
- "name": "ACCEPT_TERMS_URL",
970
+ "name": "_DEFAULT_PASSWORD",
714
971
  "type": {
715
972
  "text": "string"
716
973
  },
717
- "default": "'gwf/auth/accept-terms'",
974
+ "description": "The default Password value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
718
975
  "privacy": "public"
719
- }
720
- ],
721
- "exports": [
722
- {
723
- "kind": "js",
724
- "name": "BUILDER",
725
- "declaration": {
726
- "name": "_BUILDER",
727
- "module": "src/env/variables.ts"
728
- }
729
976
  },
730
977
  {
731
- "kind": "js",
732
- "name": "PUBLIC_PATH",
733
- "declaration": {
734
- "name": "_PUBLIC_PATH",
735
- "module": "src/env/variables.ts"
736
- }
737
- },
738
- {
739
- "kind": "js",
740
- "name": "SOCKET_EXT",
741
- "declaration": {
742
- "name": "_SOCKET_EXT",
743
- "module": "src/env/variables.ts"
744
- }
745
- },
746
- {
747
- "kind": "js",
748
- "name": "FORCE_HTTP",
749
- "declaration": {
750
- "name": "_FORCE_HTTP",
751
- "module": "src/env/variables.ts"
978
+ "kind": "variable",
979
+ "name": "DEFAULT_USER",
980
+ "type": {
981
+ "text": "string"
752
982
  }
753
983
  },
754
984
  {
755
- "kind": "js",
756
- "name": "GENESIS_SOCKET_URL",
757
- "declaration": {
758
- "name": "GENESIS_SOCKET_URL",
759
- "module": "src/env/variables.ts"
760
- }
985
+ "kind": "variable",
986
+ "name": "_DEFAULT_USER",
987
+ "type": {
988
+ "text": "string"
989
+ },
990
+ "description": "The default Username value, used in auth/login flow [`genesislcap-foundation-login`](https://link-to-docs).",
991
+ "privacy": "public"
761
992
  },
762
993
  {
763
- "kind": "js",
764
- "name": "API_HOST",
765
- "declaration": {
766
- "name": "_API_HOST",
767
- "module": "src/env/variables.ts"
768
- }
994
+ "kind": "variable",
995
+ "name": "LOGIN_URL",
996
+ "type": {
997
+ "text": "string"
998
+ },
999
+ "default": "'gwf/event-login-auth'",
1000
+ "privacy": "public"
769
1001
  },
770
1002
  {
771
- "kind": "js",
772
- "name": "HTTP_CONFIG",
773
- "declaration": {
774
- "name": "_HTTP_CONFIG",
775
- "module": "src/env/variables.ts"
776
- }
1003
+ "kind": "variable",
1004
+ "name": "LOGIN_REFRESH_URL",
1005
+ "type": {
1006
+ "text": "string"
1007
+ },
1008
+ "default": "'gwf/event-login-auth'",
1009
+ "privacy": "public"
777
1010
  },
778
1011
  {
779
- "kind": "js",
780
- "name": "DEFAULT_ORGANISATION",
781
- "declaration": {
782
- "name": "_DEFAULT_ORGANISATION",
783
- "module": "src/env/variables.ts"
784
- }
1012
+ "kind": "variable",
1013
+ "name": "LOGIN_DETAILS_URL",
1014
+ "type": {
1015
+ "text": "string"
1016
+ },
1017
+ "default": "'gwf/event-login-details'",
1018
+ "privacy": "public"
785
1019
  },
786
1020
  {
787
- "kind": "js",
788
- "name": "DEFAULT_PASSWORD",
789
- "declaration": {
790
- "name": "_DEFAULT_PASSWORD",
791
- "module": "src/env/variables.ts"
792
- }
1021
+ "kind": "variable",
1022
+ "name": "LOGOUT_URL",
1023
+ "type": {
1024
+ "text": "string"
1025
+ },
1026
+ "default": "'gwf/event-logout'",
1027
+ "privacy": "public"
793
1028
  },
794
1029
  {
795
- "kind": "js",
796
- "name": "DEFAULT_USER",
797
- "declaration": {
798
- "name": "_DEFAULT_USER",
799
- "module": "src/env/variables.ts"
800
- }
1030
+ "kind": "variable",
1031
+ "name": "CHANGE_PASSWORD_URL",
1032
+ "type": {
1033
+ "text": "string"
1034
+ },
1035
+ "default": "'gwf/event-change-user-password'",
1036
+ "privacy": "public"
801
1037
  },
802
1038
  {
803
- "kind": "js",
804
- "name": "LOGIN_URL",
805
- "declaration": {
806
- "name": "LOGIN_URL",
807
- "module": "src/env/variables.ts"
808
- }
1039
+ "kind": "variable",
1040
+ "name": "FORGOT_PASSWORD_URL",
1041
+ "type": {
1042
+ "text": "string"
1043
+ },
1044
+ "default": "'gwf/event-self-service-password-reset'",
1045
+ "privacy": "public"
809
1046
  },
810
1047
  {
811
- "kind": "js",
812
- "name": "LOGIN_REFRESH_URL",
813
- "declaration": {
814
- "name": "LOGIN_REFRESH_URL",
815
- "module": "src/env/variables.ts"
816
- }
1048
+ "kind": "variable",
1049
+ "name": "RESET_PASSWORD_URL",
1050
+ "type": {
1051
+ "text": "string"
1052
+ },
1053
+ "default": "'gwf/event-password-reset-action'",
1054
+ "privacy": "public"
817
1055
  },
818
1056
  {
819
- "kind": "js",
820
- "name": "LOGIN_DETAILS_URL",
821
- "declaration": {
822
- "name": "LOGIN_DETAILS_URL",
823
- "module": "src/env/variables.ts"
824
- }
1057
+ "kind": "variable",
1058
+ "name": "SSO_LIST_URL",
1059
+ "type": {
1060
+ "text": "string"
1061
+ },
1062
+ "default": "'gwf/sso/list'",
1063
+ "privacy": "public"
825
1064
  },
826
1065
  {
827
- "kind": "js",
828
- "name": "LOGOUT_URL",
829
- "declaration": {
830
- "name": "LOGOUT_URL",
831
- "module": "src/env/variables.ts"
832
- }
1066
+ "kind": "variable",
1067
+ "name": "SSO_LOGIN_URL",
1068
+ "type": {
1069
+ "text": "string"
1070
+ },
1071
+ "default": "'gwf/{type}/login?idp={id}'",
1072
+ "privacy": "public"
833
1073
  },
834
1074
  {
835
- "kind": "js",
836
- "name": "CHANGE_PASSWORD_URL",
837
- "declaration": {
838
- "name": "CHANGE_PASSWORD_URL",
839
- "module": "src/env/variables.ts"
840
- }
1075
+ "kind": "variable",
1076
+ "name": "ENVIRONMENT_LEVEL",
1077
+ "type": {
1078
+ "text": "string"
1079
+ },
1080
+ "default": "'default'",
1081
+ "privacy": "public"
841
1082
  },
842
1083
  {
843
- "kind": "js",
844
- "name": "FORGOT_PASSWORD_URL",
845
- "declaration": {
846
- "name": "FORGOT_PASSWORD_URL",
847
- "module": "src/env/variables.ts"
848
- }
849
- },
1084
+ "kind": "variable",
1085
+ "name": "ACCEPT_TERMS_URL",
1086
+ "type": {
1087
+ "text": "string"
1088
+ },
1089
+ "default": "'gwf/auth/accept-terms'",
1090
+ "privacy": "public"
1091
+ }
1092
+ ],
1093
+ "exports": [
850
1094
  {
851
1095
  "kind": "js",
852
- "name": "RESET_PASSWORD_URL",
1096
+ "name": "BUILDER",
853
1097
  "declaration": {
854
- "name": "RESET_PASSWORD_URL",
1098
+ "name": "_BUILDER",
855
1099
  "module": "src/env/variables.ts"
856
1100
  }
857
1101
  },
858
1102
  {
859
1103
  "kind": "js",
860
- "name": "SSO_LIST_URL",
1104
+ "name": "PUBLIC_PATH",
861
1105
  "declaration": {
862
- "name": "SSO_LIST_URL",
1106
+ "name": "_PUBLIC_PATH",
863
1107
  "module": "src/env/variables.ts"
864
1108
  }
865
1109
  },
866
1110
  {
867
1111
  "kind": "js",
868
- "name": "SSO_LOGIN_URL",
1112
+ "name": "SOCKET_EXT",
869
1113
  "declaration": {
870
- "name": "SSO_LOGIN_URL",
1114
+ "name": "_SOCKET_EXT",
871
1115
  "module": "src/env/variables.ts"
872
1116
  }
873
1117
  },
874
1118
  {
875
1119
  "kind": "js",
876
- "name": "ENVIRONMENT_LEVEL",
1120
+ "name": "FORCE_HTTP",
877
1121
  "declaration": {
878
- "name": "ENVIRONMENT_LEVEL",
1122
+ "name": "_FORCE_HTTP",
879
1123
  "module": "src/env/variables.ts"
880
1124
  }
881
1125
  },
882
1126
  {
883
1127
  "kind": "js",
884
- "name": "ACCEPT_TERMS_URL",
1128
+ "name": "GENESIS_SOCKET_URL",
885
1129
  "declaration": {
886
- "name": "ACCEPT_TERMS_URL",
1130
+ "name": "GENESIS_SOCKET_URL",
1131
+ "module": "src/env/variables.ts"
1132
+ }
1133
+ },
1134
+ {
1135
+ "kind": "js",
1136
+ "name": "API_HOST",
1137
+ "declaration": {
1138
+ "name": "_API_HOST",
887
1139
  "module": "src/env/variables.ts"
888
1140
  }
889
- }
890
- ]
891
- },
892
- {
893
- "kind": "javascript-module",
894
- "path": "src/encoding/index.ts",
895
- "declarations": [],
896
- "exports": [
897
- {
898
- "kind": "js",
899
- "name": "*",
900
- "declaration": {
901
- "name": "*",
902
- "package": "./base64"
903
- }
904
- }
905
- ]
906
- },
907
- {
908
- "kind": "javascript-module",
909
- "path": "src/error/errorMap.ts",
910
- "declarations": [
911
- {
912
- "kind": "class",
913
- "description": "",
914
- "name": "DefaultErrorMap",
915
- "members": [
916
- {
917
- "kind": "field",
918
- "name": "map",
919
- "privacy": "private",
920
- "default": "new Map<keyof TErrorDetailMap, Error>()"
921
- },
922
- {
923
- "kind": "field",
924
- "name": "lastError",
925
- "type": {
926
- "text": "Error"
927
- },
928
- "description": "{@inheritDoc ErrorMap.lastError}"
929
- },
930
- {
931
- "kind": "method",
932
- "name": "set",
933
- "return": {
934
- "type": {
935
- "text": "void"
936
- }
937
- },
938
- "parameters": [
939
- {
940
- "name": "key",
941
- "type": {
942
- "text": "keyof TErrorDetailMap"
943
- }
944
- },
945
- {
946
- "name": "error",
947
- "type": {
948
- "text": "Error"
949
- }
950
- }
951
- ],
952
- "description": "{@inheritDoc ErrorMap.set}"
953
- },
954
- {
955
- "kind": "method",
956
- "name": "get",
957
- "return": {
958
- "type": {
959
- "text": ""
960
- }
961
- },
962
- "parameters": [
963
- {
964
- "name": "key",
965
- "type": {
966
- "text": "keyof TErrorDetailMap"
967
- },
968
- "description": "The key."
969
- }
970
- ],
971
- "description": "Get an error by key.",
972
- "privacy": "public"
973
- },
974
- {
975
- "kind": "method",
976
- "name": "has",
977
- "return": {
978
- "type": {
979
- "text": ""
980
- }
981
- },
982
- "parameters": [
983
- {
984
- "name": "key",
985
- "type": {
986
- "text": "keyof TErrorDetailMap"
987
- },
988
- "description": "The key."
989
- }
990
- ],
991
- "description": "Has an error for key.",
992
- "privacy": "public"
993
- },
994
- {
995
- "kind": "method",
996
- "name": "delete",
997
- "return": {
998
- "type": {
999
- "text": ""
1000
- }
1001
- },
1002
- "parameters": [
1003
- {
1004
- "name": "key",
1005
- "type": {
1006
- "text": "keyof TErrorDetailMap"
1007
- },
1008
- "description": "The key."
1009
- }
1010
- ],
1011
- "description": "Delete an error.",
1012
- "privacy": "public"
1013
- },
1014
- {
1015
- "kind": "method",
1016
- "name": "clear",
1017
- "description": "Clear errors.",
1018
- "privacy": "public"
1019
- },
1020
- {
1021
- "kind": "field",
1022
- "name": "size",
1023
- "type": {
1024
- "text": "number"
1025
- },
1026
- "description": "The size of the error map.",
1027
- "return": {
1028
- "type": {
1029
- "text": ""
1030
- }
1031
- },
1032
- "privacy": "public",
1033
- "readonly": true
1034
- },
1035
- {
1036
- "kind": "method",
1037
- "name": "values",
1038
- "privacy": "public"
1039
- },
1040
- {
1041
- "kind": "field",
1042
- "name": "messages",
1043
- "type": {
1044
- "text": "string"
1045
- },
1046
- "description": "{@inheritDoc ErrorMap.messages}",
1047
- "readonly": true
1048
- }
1049
- ]
1050
1141
  },
1051
1142
  {
1052
- "kind": "function",
1053
- "name": "createErrorMap",
1054
- "return": {
1055
- "type": {
1056
- "text": ""
1057
- }
1058
- },
1059
- "parameters": [
1060
- {
1061
- "name": "logger",
1062
- "type": {
1063
- "text": "ErrorMapLogger"
1064
- },
1065
- "description": "A logger error method reference."
1066
- }
1067
- ],
1068
- "description": "A factory to create the error map.",
1069
- "privacy": "public"
1070
- }
1071
- ],
1072
- "exports": [
1143
+ "kind": "js",
1144
+ "name": "HTTP_CONFIG",
1145
+ "declaration": {
1146
+ "name": "_HTTP_CONFIG",
1147
+ "module": "src/env/variables.ts"
1148
+ }
1149
+ },
1073
1150
  {
1074
1151
  "kind": "js",
1075
- "name": "DefaultErrorMap",
1152
+ "name": "DEFAULT_ORGANISATION",
1076
1153
  "declaration": {
1077
- "name": "DefaultErrorMap",
1078
- "module": "src/error/errorMap.ts"
1154
+ "name": "_DEFAULT_ORGANISATION",
1155
+ "module": "src/env/variables.ts"
1079
1156
  }
1080
1157
  },
1081
1158
  {
1082
1159
  "kind": "js",
1083
- "name": "createErrorMap",
1160
+ "name": "DEFAULT_PASSWORD",
1084
1161
  "declaration": {
1085
- "name": "createErrorMap",
1086
- "module": "src/error/errorMap.ts"
1162
+ "name": "_DEFAULT_PASSWORD",
1163
+ "module": "src/env/variables.ts"
1087
1164
  }
1088
- }
1089
- ]
1090
- },
1091
- {
1092
- "kind": "javascript-module",
1093
- "path": "src/error/index.ts",
1094
- "declarations": [],
1095
- "exports": [
1165
+ },
1096
1166
  {
1097
1167
  "kind": "js",
1098
- "name": "*",
1168
+ "name": "DEFAULT_USER",
1099
1169
  "declaration": {
1100
- "name": "*",
1101
- "package": "./errorMap"
1170
+ "name": "_DEFAULT_USER",
1171
+ "module": "src/env/variables.ts"
1102
1172
  }
1103
- }
1104
- ]
1105
- },
1106
- {
1107
- "kind": "javascript-module",
1108
- "path": "src/decorators/index.ts",
1109
- "declarations": [],
1110
- "exports": [
1173
+ },
1111
1174
  {
1112
1175
  "kind": "js",
1113
- "name": "*",
1176
+ "name": "LOGIN_URL",
1114
1177
  "declaration": {
1115
- "name": "*",
1116
- "package": "./renderOnChange"
1178
+ "name": "LOGIN_URL",
1179
+ "module": "src/env/variables.ts"
1117
1180
  }
1118
- }
1119
- ]
1120
- },
1121
- {
1122
- "kind": "javascript-module",
1123
- "path": "src/decorators/renderOnChange.ts",
1124
- "declarations": [
1181
+ },
1125
1182
  {
1126
- "kind": "function",
1127
- "name": "renderOnChange",
1128
- "parameters": [
1129
- {
1130
- "name": "target",
1131
- "type": {
1132
- "text": "FASTElement & { render(): void }"
1133
- },
1134
- "description": "The target to define the property change handler on."
1135
- },
1136
- {
1137
- "name": "name",
1138
- "type": {
1139
- "text": "string"
1140
- },
1141
- "description": "The property name."
1142
- }
1143
- ],
1144
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1145
- "privacy": "public"
1146
- }
1147
- ],
1148
- "exports": [
1183
+ "kind": "js",
1184
+ "name": "LOGIN_REFRESH_URL",
1185
+ "declaration": {
1186
+ "name": "LOGIN_REFRESH_URL",
1187
+ "module": "src/env/variables.ts"
1188
+ }
1189
+ },
1149
1190
  {
1150
1191
  "kind": "js",
1151
- "name": "renderOnChange",
1192
+ "name": "LOGIN_DETAILS_URL",
1152
1193
  "declaration": {
1153
- "name": "renderOnChange",
1154
- "module": "src/decorators/renderOnChange.ts"
1194
+ "name": "LOGIN_DETAILS_URL",
1195
+ "module": "src/env/variables.ts"
1155
1196
  }
1156
- }
1157
- ]
1158
- },
1159
- {
1160
- "kind": "javascript-module",
1161
- "path": "src/design-system/design-system.ts",
1162
- "declarations": [
1197
+ },
1163
1198
  {
1164
- "kind": "function",
1165
- "name": "assureDesignSystem",
1166
- "return": {
1167
- "type": {
1168
- "text": "DesignSystemModule"
1169
- }
1170
- },
1171
- "parameters": [
1172
- {
1173
- "name": "module",
1174
- "type": {
1175
- "text": "DesignSystemModule"
1176
- }
1177
- }
1178
- ],
1179
- "description": "assureDesignSystem.",
1180
- "privacy": "public"
1199
+ "kind": "js",
1200
+ "name": "LOGOUT_URL",
1201
+ "declaration": {
1202
+ "name": "LOGOUT_URL",
1203
+ "module": "src/env/variables.ts"
1204
+ }
1181
1205
  },
1182
1206
  {
1183
- "kind": "function",
1184
- "name": "getCurrentDesignSystem",
1185
- "return": {
1186
- "type": {
1187
- "text": ""
1188
- }
1189
- },
1190
- "parameters": [
1191
- {
1192
- "name": "element",
1193
- "type": {
1194
- "text": "HTMLElement"
1195
- },
1196
- "description": "The starting HTML element"
1197
- },
1198
- {
1199
- "name": "fallbackPrefix",
1200
- "type": {
1201
- "text": "string"
1202
- },
1203
- "description": "The prefix to fallback to if the provider is not available"
1204
- }
1205
- ],
1206
- "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.",
1207
- "privacy": "public"
1207
+ "kind": "js",
1208
+ "name": "CHANGE_PASSWORD_URL",
1209
+ "declaration": {
1210
+ "name": "CHANGE_PASSWORD_URL",
1211
+ "module": "src/env/variables.ts"
1212
+ }
1208
1213
  },
1209
1214
  {
1210
- "kind": "function",
1211
- "name": "getCurrentDesignSystemPrefix",
1212
- "return": {
1213
- "type": {
1214
- "text": ""
1215
- }
1216
- },
1217
- "parameters": [
1218
- {
1219
- "name": "element",
1220
- "type": {
1221
- "text": "HTMLElement"
1222
- },
1223
- "description": "The starting HTML element"
1224
- },
1225
- {
1226
- "name": "fallbackPrefix",
1227
- "type": {
1228
- "text": "string"
1229
- },
1230
- "description": "The prefix to fallback to if the provider is not available"
1231
- }
1232
- ],
1233
- "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
1234
- "privacy": "public"
1235
- }
1236
- ],
1237
- "exports": [
1215
+ "kind": "js",
1216
+ "name": "FORGOT_PASSWORD_URL",
1217
+ "declaration": {
1218
+ "name": "FORGOT_PASSWORD_URL",
1219
+ "module": "src/env/variables.ts"
1220
+ }
1221
+ },
1238
1222
  {
1239
1223
  "kind": "js",
1240
- "name": "assureDesignSystem",
1224
+ "name": "RESET_PASSWORD_URL",
1241
1225
  "declaration": {
1242
- "name": "assureDesignSystem",
1243
- "module": "src/design-system/design-system.ts"
1226
+ "name": "RESET_PASSWORD_URL",
1227
+ "module": "src/env/variables.ts"
1244
1228
  }
1245
1229
  },
1246
1230
  {
1247
1231
  "kind": "js",
1248
- "name": "getCurrentDesignSystem",
1232
+ "name": "SSO_LIST_URL",
1249
1233
  "declaration": {
1250
- "name": "getCurrentDesignSystem",
1251
- "module": "src/design-system/design-system.ts"
1234
+ "name": "SSO_LIST_URL",
1235
+ "module": "src/env/variables.ts"
1252
1236
  }
1253
1237
  },
1254
1238
  {
1255
1239
  "kind": "js",
1256
- "name": "getCurrentDesignSystemPrefix",
1240
+ "name": "SSO_LOGIN_URL",
1257
1241
  "declaration": {
1258
- "name": "getCurrentDesignSystemPrefix",
1259
- "module": "src/design-system/design-system.ts"
1242
+ "name": "SSO_LOGIN_URL",
1243
+ "module": "src/env/variables.ts"
1244
+ }
1245
+ },
1246
+ {
1247
+ "kind": "js",
1248
+ "name": "ENVIRONMENT_LEVEL",
1249
+ "declaration": {
1250
+ "name": "ENVIRONMENT_LEVEL",
1251
+ "module": "src/env/variables.ts"
1252
+ }
1253
+ },
1254
+ {
1255
+ "kind": "js",
1256
+ "name": "ACCEPT_TERMS_URL",
1257
+ "declaration": {
1258
+ "name": "ACCEPT_TERMS_URL",
1259
+ "module": "src/env/variables.ts"
1260
1260
  }
1261
1261
  }
1262
1262
  ]
1263
1263
  },
1264
1264
  {
1265
1265
  "kind": "javascript-module",
1266
- "path": "src/design-system/index.ts",
1266
+ "path": "src/encoding/index.ts",
1267
1267
  "declarations": [],
1268
1268
  "exports": [
1269
1269
  {
@@ -1271,7 +1271,7 @@
1271
1271
  "name": "*",
1272
1272
  "declaration": {
1273
1273
  "name": "*",
1274
- "package": "./design-system"
1274
+ "package": "./base64"
1275
1275
  }
1276
1276
  }
1277
1277
  ]