@genesislcap/foundation-utils 14.375.0 → 14.375.1-FUI-2457.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 +199 -199
  2. package/package.json +11 -11
@@ -602,6 +602,205 @@
602
602
  }
603
603
  ]
604
604
  },
605
+ {
606
+ "kind": "javascript-module",
607
+ "path": "src/error/errorMap.ts",
608
+ "declarations": [
609
+ {
610
+ "kind": "class",
611
+ "description": "",
612
+ "name": "DefaultErrorMap",
613
+ "members": [
614
+ {
615
+ "kind": "field",
616
+ "name": "map",
617
+ "privacy": "private",
618
+ "default": "new Map<keyof TErrorDetailMap, Error>()"
619
+ },
620
+ {
621
+ "kind": "field",
622
+ "name": "lastError",
623
+ "type": {
624
+ "text": "Error"
625
+ },
626
+ "description": "{@inheritDoc ErrorMap.lastError}"
627
+ },
628
+ {
629
+ "kind": "method",
630
+ "name": "set",
631
+ "return": {
632
+ "type": {
633
+ "text": "void"
634
+ }
635
+ },
636
+ "parameters": [
637
+ {
638
+ "name": "key",
639
+ "type": {
640
+ "text": "keyof TErrorDetailMap"
641
+ }
642
+ },
643
+ {
644
+ "name": "error",
645
+ "type": {
646
+ "text": "Error"
647
+ }
648
+ }
649
+ ],
650
+ "description": "{@inheritDoc ErrorMap.set}"
651
+ },
652
+ {
653
+ "kind": "method",
654
+ "name": "get",
655
+ "return": {
656
+ "type": {
657
+ "text": ""
658
+ }
659
+ },
660
+ "parameters": [
661
+ {
662
+ "name": "key",
663
+ "type": {
664
+ "text": "keyof TErrorDetailMap"
665
+ },
666
+ "description": "The key."
667
+ }
668
+ ],
669
+ "description": "Get an error by key.",
670
+ "privacy": "public"
671
+ },
672
+ {
673
+ "kind": "method",
674
+ "name": "has",
675
+ "return": {
676
+ "type": {
677
+ "text": ""
678
+ }
679
+ },
680
+ "parameters": [
681
+ {
682
+ "name": "key",
683
+ "type": {
684
+ "text": "keyof TErrorDetailMap"
685
+ },
686
+ "description": "The key."
687
+ }
688
+ ],
689
+ "description": "Has an error for key.",
690
+ "privacy": "public"
691
+ },
692
+ {
693
+ "kind": "method",
694
+ "name": "delete",
695
+ "return": {
696
+ "type": {
697
+ "text": ""
698
+ }
699
+ },
700
+ "parameters": [
701
+ {
702
+ "name": "key",
703
+ "type": {
704
+ "text": "keyof TErrorDetailMap"
705
+ },
706
+ "description": "The key."
707
+ }
708
+ ],
709
+ "description": "Delete an error.",
710
+ "privacy": "public"
711
+ },
712
+ {
713
+ "kind": "method",
714
+ "name": "clear",
715
+ "description": "Clear errors.",
716
+ "privacy": "public"
717
+ },
718
+ {
719
+ "kind": "field",
720
+ "name": "size",
721
+ "type": {
722
+ "text": "number"
723
+ },
724
+ "description": "The size of the error map.",
725
+ "return": {
726
+ "type": {
727
+ "text": ""
728
+ }
729
+ },
730
+ "privacy": "public",
731
+ "readonly": true
732
+ },
733
+ {
734
+ "kind": "method",
735
+ "name": "values",
736
+ "privacy": "public"
737
+ },
738
+ {
739
+ "kind": "field",
740
+ "name": "messages",
741
+ "type": {
742
+ "text": "string"
743
+ },
744
+ "description": "{@inheritDoc ErrorMap.messages}",
745
+ "readonly": true
746
+ }
747
+ ]
748
+ },
749
+ {
750
+ "kind": "function",
751
+ "name": "createErrorMap",
752
+ "return": {
753
+ "type": {
754
+ "text": ""
755
+ }
756
+ },
757
+ "parameters": [
758
+ {
759
+ "name": "logger",
760
+ "type": {
761
+ "text": "ErrorMapLogger"
762
+ },
763
+ "description": "A logger error method reference."
764
+ }
765
+ ],
766
+ "description": "A factory to create the error map.",
767
+ "privacy": "public"
768
+ }
769
+ ],
770
+ "exports": [
771
+ {
772
+ "kind": "js",
773
+ "name": "DefaultErrorMap",
774
+ "declaration": {
775
+ "name": "DefaultErrorMap",
776
+ "module": "src/error/errorMap.ts"
777
+ }
778
+ },
779
+ {
780
+ "kind": "js",
781
+ "name": "createErrorMap",
782
+ "declaration": {
783
+ "name": "createErrorMap",
784
+ "module": "src/error/errorMap.ts"
785
+ }
786
+ }
787
+ ]
788
+ },
789
+ {
790
+ "kind": "javascript-module",
791
+ "path": "src/error/index.ts",
792
+ "declarations": [],
793
+ "exports": [
794
+ {
795
+ "kind": "js",
796
+ "name": "*",
797
+ "declaration": {
798
+ "name": "*",
799
+ "package": "./errorMap"
800
+ }
801
+ }
802
+ ]
803
+ },
605
804
  {
606
805
  "kind": "javascript-module",
607
806
  "path": "src/env/index.ts",
@@ -1077,205 +1276,6 @@
1077
1276
  }
1078
1277
  ]
1079
1278
  },
1080
- {
1081
- "kind": "javascript-module",
1082
- "path": "src/error/errorMap.ts",
1083
- "declarations": [
1084
- {
1085
- "kind": "class",
1086
- "description": "",
1087
- "name": "DefaultErrorMap",
1088
- "members": [
1089
- {
1090
- "kind": "field",
1091
- "name": "map",
1092
- "privacy": "private",
1093
- "default": "new Map<keyof TErrorDetailMap, Error>()"
1094
- },
1095
- {
1096
- "kind": "field",
1097
- "name": "lastError",
1098
- "type": {
1099
- "text": "Error"
1100
- },
1101
- "description": "{@inheritDoc ErrorMap.lastError}"
1102
- },
1103
- {
1104
- "kind": "method",
1105
- "name": "set",
1106
- "return": {
1107
- "type": {
1108
- "text": "void"
1109
- }
1110
- },
1111
- "parameters": [
1112
- {
1113
- "name": "key",
1114
- "type": {
1115
- "text": "keyof TErrorDetailMap"
1116
- }
1117
- },
1118
- {
1119
- "name": "error",
1120
- "type": {
1121
- "text": "Error"
1122
- }
1123
- }
1124
- ],
1125
- "description": "{@inheritDoc ErrorMap.set}"
1126
- },
1127
- {
1128
- "kind": "method",
1129
- "name": "get",
1130
- "return": {
1131
- "type": {
1132
- "text": ""
1133
- }
1134
- },
1135
- "parameters": [
1136
- {
1137
- "name": "key",
1138
- "type": {
1139
- "text": "keyof TErrorDetailMap"
1140
- },
1141
- "description": "The key."
1142
- }
1143
- ],
1144
- "description": "Get an error by key.",
1145
- "privacy": "public"
1146
- },
1147
- {
1148
- "kind": "method",
1149
- "name": "has",
1150
- "return": {
1151
- "type": {
1152
- "text": ""
1153
- }
1154
- },
1155
- "parameters": [
1156
- {
1157
- "name": "key",
1158
- "type": {
1159
- "text": "keyof TErrorDetailMap"
1160
- },
1161
- "description": "The key."
1162
- }
1163
- ],
1164
- "description": "Has an error for key.",
1165
- "privacy": "public"
1166
- },
1167
- {
1168
- "kind": "method",
1169
- "name": "delete",
1170
- "return": {
1171
- "type": {
1172
- "text": ""
1173
- }
1174
- },
1175
- "parameters": [
1176
- {
1177
- "name": "key",
1178
- "type": {
1179
- "text": "keyof TErrorDetailMap"
1180
- },
1181
- "description": "The key."
1182
- }
1183
- ],
1184
- "description": "Delete an error.",
1185
- "privacy": "public"
1186
- },
1187
- {
1188
- "kind": "method",
1189
- "name": "clear",
1190
- "description": "Clear errors.",
1191
- "privacy": "public"
1192
- },
1193
- {
1194
- "kind": "field",
1195
- "name": "size",
1196
- "type": {
1197
- "text": "number"
1198
- },
1199
- "description": "The size of the error map.",
1200
- "return": {
1201
- "type": {
1202
- "text": ""
1203
- }
1204
- },
1205
- "privacy": "public",
1206
- "readonly": true
1207
- },
1208
- {
1209
- "kind": "method",
1210
- "name": "values",
1211
- "privacy": "public"
1212
- },
1213
- {
1214
- "kind": "field",
1215
- "name": "messages",
1216
- "type": {
1217
- "text": "string"
1218
- },
1219
- "description": "{@inheritDoc ErrorMap.messages}",
1220
- "readonly": true
1221
- }
1222
- ]
1223
- },
1224
- {
1225
- "kind": "function",
1226
- "name": "createErrorMap",
1227
- "return": {
1228
- "type": {
1229
- "text": ""
1230
- }
1231
- },
1232
- "parameters": [
1233
- {
1234
- "name": "logger",
1235
- "type": {
1236
- "text": "ErrorMapLogger"
1237
- },
1238
- "description": "A logger error method reference."
1239
- }
1240
- ],
1241
- "description": "A factory to create the error map.",
1242
- "privacy": "public"
1243
- }
1244
- ],
1245
- "exports": [
1246
- {
1247
- "kind": "js",
1248
- "name": "DefaultErrorMap",
1249
- "declaration": {
1250
- "name": "DefaultErrorMap",
1251
- "module": "src/error/errorMap.ts"
1252
- }
1253
- },
1254
- {
1255
- "kind": "js",
1256
- "name": "createErrorMap",
1257
- "declaration": {
1258
- "name": "createErrorMap",
1259
- "module": "src/error/errorMap.ts"
1260
- }
1261
- }
1262
- ]
1263
- },
1264
- {
1265
- "kind": "javascript-module",
1266
- "path": "src/error/index.ts",
1267
- "declarations": [],
1268
- "exports": [
1269
- {
1270
- "kind": "js",
1271
- "name": "*",
1272
- "declaration": {
1273
- "name": "*",
1274
- "package": "./errorMap"
1275
- }
1276
- }
1277
- ]
1278
- },
1279
1279
  {
1280
1280
  "kind": "javascript-module",
1281
1281
  "path": "src/feature-flags/featureFlags.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.375.0",
4
+ "version": "14.375.1-FUI-2457.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,18 +27,18 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.375.0",
31
- "@genesislcap/genx": "14.375.0",
32
- "@genesislcap/rollup-builder": "14.375.0",
33
- "@genesislcap/ts-builder": "14.375.0",
34
- "@genesislcap/uvu-playwright-builder": "14.375.0",
35
- "@genesislcap/vite-builder": "14.375.0",
36
- "@genesislcap/webpack-builder": "14.375.0",
30
+ "@genesislcap/foundation-testing": "14.375.1-FUI-2457.1",
31
+ "@genesislcap/genx": "14.375.1-FUI-2457.1",
32
+ "@genesislcap/rollup-builder": "14.375.1-FUI-2457.1",
33
+ "@genesislcap/ts-builder": "14.375.1-FUI-2457.1",
34
+ "@genesislcap/uvu-playwright-builder": "14.375.1-FUI-2457.1",
35
+ "@genesislcap/vite-builder": "14.375.1-FUI-2457.1",
36
+ "@genesislcap/webpack-builder": "14.375.1-FUI-2457.1",
37
37
  "@types/json-schema": "^7.0.11"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/expression-builder": "14.375.0",
41
- "@genesislcap/foundation-logger": "14.375.0",
40
+ "@genesislcap/expression-builder": "14.375.1-FUI-2457.1",
41
+ "@genesislcap/foundation-logger": "14.375.1-FUI-2457.1",
42
42
  "@microsoft/fast-components": "2.30.6",
43
43
  "@microsoft/fast-element": "1.14.0",
44
44
  "@microsoft/fast-foundation": "2.49.6",
@@ -56,5 +56,5 @@
56
56
  "access": "public"
57
57
  },
58
58
  "customElements": "dist/custom-elements.json",
59
- "gitHead": "08b47a11ea26fb21fb0ad3ad8b6206ba881d7ad3"
59
+ "gitHead": "d10fbb47a99300b8419e4f16c12ca1141235fafc"
60
60
  }