@plasmicpkgs/commerce 0.0.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 (93) hide show
  1. package/README.md +0 -0
  2. package/dist/auth/use-login.d.ts +6 -0
  3. package/dist/auth/use-login.js +9 -0
  4. package/dist/auth/use-logout.d.ts +6 -0
  5. package/dist/auth/use-logout.js +9 -0
  6. package/dist/auth/use-signup.d.ts +6 -0
  7. package/dist/auth/use-signup.js +9 -0
  8. package/dist/cart/use-add-item.d.ts +6 -0
  9. package/dist/cart/use-add-item.js +9 -0
  10. package/dist/cart/use-cart.d.ts +6 -0
  11. package/dist/cart/use-cart.js +18 -0
  12. package/dist/cart/use-remove-item.d.ts +6 -0
  13. package/dist/cart/use-remove-item.js +9 -0
  14. package/dist/cart/use-update-item.d.ts +6 -0
  15. package/dist/cart/use-update-item.js +9 -0
  16. package/dist/checkout/use-checkout.d.ts +6 -0
  17. package/dist/checkout/use-checkout.js +18 -0
  18. package/dist/checkout/use-submit-checkout.d.ts +6 -0
  19. package/dist/checkout/use-submit-checkout.js +9 -0
  20. package/dist/contexts.d.ts +7 -0
  21. package/dist/contexts.js +46 -0
  22. package/dist/customer/address/use-add-item.d.ts +6 -0
  23. package/dist/customer/address/use-add-item.js +9 -0
  24. package/dist/customer/address/use-addresses.d.ts +6 -0
  25. package/dist/customer/address/use-addresses.js +18 -0
  26. package/dist/customer/address/use-remove-item.d.ts +6 -0
  27. package/dist/customer/address/use-remove-item.js +9 -0
  28. package/dist/customer/address/use-update-item.d.ts +6 -0
  29. package/dist/customer/address/use-update-item.js +9 -0
  30. package/dist/customer/card/use-add-item.d.ts +6 -0
  31. package/dist/customer/card/use-add-item.js +9 -0
  32. package/dist/customer/card/use-cards.d.ts +6 -0
  33. package/dist/customer/card/use-cards.js +18 -0
  34. package/dist/customer/card/use-remove-item.d.ts +6 -0
  35. package/dist/customer/card/use-remove-item.js +9 -0
  36. package/dist/customer/card/use-update-item.d.ts +6 -0
  37. package/dist/customer/card/use-update-item.js +9 -0
  38. package/dist/customer/use-customer.d.ts +6 -0
  39. package/dist/customer/use-customer.js +9 -0
  40. package/dist/index.d.ts +71 -0
  41. package/dist/index.js +29 -0
  42. package/dist/product/use-price.d.ts +26 -0
  43. package/dist/product/use-price.js +33 -0
  44. package/dist/product/use-search.d.ts +6 -0
  45. package/dist/product/use-search.js +9 -0
  46. package/dist/registerProductCollection.d.ts +11 -0
  47. package/dist/registerProductCollection.js +42 -0
  48. package/dist/registerProductImage.d.ts +13 -0
  49. package/dist/registerProductImage.js +37 -0
  50. package/dist/registerable.d.ts +4 -0
  51. package/dist/registerable.js +0 -0
  52. package/dist/tsconfig.tsbuildinfo +2970 -0
  53. package/dist/types/cart.d.ts +157 -0
  54. package/dist/types/cart.js +0 -0
  55. package/dist/types/checkout.d.ts +57 -0
  56. package/dist/types/checkout.js +0 -0
  57. package/dist/types/common.d.ts +13 -0
  58. package/dist/types/common.js +0 -0
  59. package/dist/types/customer/address.d.ts +110 -0
  60. package/dist/types/customer/address.js +0 -0
  61. package/dist/types/customer/card.d.ts +113 -0
  62. package/dist/types/customer/card.js +0 -0
  63. package/dist/types/customer/index.d.ts +24 -0
  64. package/dist/types/customer/index.js +2 -0
  65. package/dist/types/index.d.ts +12 -0
  66. package/dist/types/index.js +11 -0
  67. package/dist/types/login.d.ts +27 -0
  68. package/dist/types/login.js +0 -0
  69. package/dist/types/logout.d.ts +17 -0
  70. package/dist/types/logout.js +0 -0
  71. package/dist/types/page.d.ts +24 -0
  72. package/dist/types/page.js +0 -0
  73. package/dist/types/product.d.ts +99 -0
  74. package/dist/types/product.js +0 -0
  75. package/dist/types/signup.d.ts +23 -0
  76. package/dist/types/signup.js +0 -0
  77. package/dist/types/site.d.ts +17 -0
  78. package/dist/types/site.js +0 -0
  79. package/dist/types/wishlist.d.ts +83 -0
  80. package/dist/types/wishlist.js +0 -0
  81. package/dist/utils/default-fetcher.d.ts +4 -0
  82. package/dist/utils/default-fetcher.js +3 -0
  83. package/dist/utils/define-property.d.ts +21 -0
  84. package/dist/utils/define-property.js +4 -0
  85. package/dist/utils/errors.d.ts +27 -0
  86. package/dist/utils/errors.js +24 -0
  87. package/dist/utils/types.d.ts +94 -0
  88. package/dist/utils/types.js +0 -0
  89. package/dist/utils/use-data.d.ts +12 -0
  90. package/dist/utils/use-data.js +43 -0
  91. package/dist/utils/use-hook.d.ts +6 -0
  92. package/dist/utils/use-hook.js +37 -0
  93. package/package.json +42 -0
@@ -0,0 +1,2970 @@
1
+ {
2
+ "program": {
3
+ "fileInfos": {
4
+ "../node_modules/typescript/lib/lib.es5.d.ts": {
5
+ "version": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
6
+ "signature": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d",
7
+ "affectsGlobalScope": true
8
+ },
9
+ "../node_modules/typescript/lib/lib.es2015.d.ts": {
10
+ "version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
11
+ "signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
12
+ "affectsGlobalScope": false
13
+ },
14
+ "../node_modules/typescript/lib/lib.es2016.d.ts": {
15
+ "version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
16
+ "signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
17
+ "affectsGlobalScope": false
18
+ },
19
+ "../node_modules/typescript/lib/lib.es2017.d.ts": {
20
+ "version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
21
+ "signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
22
+ "affectsGlobalScope": false
23
+ },
24
+ "../node_modules/typescript/lib/lib.es2018.d.ts": {
25
+ "version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
26
+ "signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
27
+ "affectsGlobalScope": false
28
+ },
29
+ "../node_modules/typescript/lib/lib.es2019.d.ts": {
30
+ "version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
31
+ "signature": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",
32
+ "affectsGlobalScope": false
33
+ },
34
+ "../node_modules/typescript/lib/lib.es2020.d.ts": {
35
+ "version": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
36
+ "signature": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3",
37
+ "affectsGlobalScope": false
38
+ },
39
+ "../node_modules/typescript/lib/lib.esnext.d.ts": {
40
+ "version": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
41
+ "signature": "2f8f379dedbdbd96a38a1e445cb3919853a1157a950fd977f85808db8d0f8a58",
42
+ "affectsGlobalScope": false
43
+ },
44
+ "../node_modules/typescript/lib/lib.dom.d.ts": {
45
+ "version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
46
+ "signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
47
+ "affectsGlobalScope": true
48
+ },
49
+ "../node_modules/typescript/lib/lib.dom.iterable.d.ts": {
50
+ "version": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
51
+ "signature": "fb0c09b697dc42afa84d1587e3c994a2f554d2a45635e4f0618768d16a86b69a",
52
+ "affectsGlobalScope": true
53
+ },
54
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts": {
55
+ "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
56
+ "signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
57
+ "affectsGlobalScope": true
58
+ },
59
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
60
+ "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
61
+ "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
62
+ "affectsGlobalScope": true
63
+ },
64
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
65
+ "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
66
+ "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
67
+ "affectsGlobalScope": true
68
+ },
69
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
70
+ "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
71
+ "signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
72
+ "affectsGlobalScope": true
73
+ },
74
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
75
+ "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
76
+ "signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
77
+ "affectsGlobalScope": true
78
+ },
79
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
80
+ "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
81
+ "signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
82
+ "affectsGlobalScope": true
83
+ },
84
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
85
+ "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
86
+ "signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
87
+ "affectsGlobalScope": true
88
+ },
89
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
90
+ "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
91
+ "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
92
+ "affectsGlobalScope": true
93
+ },
94
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
95
+ "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
96
+ "signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
97
+ "affectsGlobalScope": true
98
+ },
99
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
100
+ "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
101
+ "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
102
+ "affectsGlobalScope": true
103
+ },
104
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts": {
105
+ "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
106
+ "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
107
+ "affectsGlobalScope": true
108
+ },
109
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
110
+ "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
111
+ "signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
112
+ "affectsGlobalScope": true
113
+ },
114
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts": {
115
+ "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
116
+ "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
117
+ "affectsGlobalScope": true
118
+ },
119
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
120
+ "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
121
+ "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
122
+ "affectsGlobalScope": true
123
+ },
124
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
125
+ "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
126
+ "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
127
+ "affectsGlobalScope": true
128
+ },
129
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
130
+ "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
131
+ "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
132
+ "affectsGlobalScope": true
133
+ },
134
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
135
+ "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
136
+ "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
137
+ "affectsGlobalScope": true
138
+ },
139
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
140
+ "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
141
+ "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
142
+ "affectsGlobalScope": true
143
+ },
144
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
145
+ "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
146
+ "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
147
+ "affectsGlobalScope": true
148
+ },
149
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
150
+ "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
151
+ "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
152
+ "affectsGlobalScope": true
153
+ },
154
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts": {
155
+ "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
156
+ "signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
157
+ "affectsGlobalScope": true
158
+ },
159
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts": {
160
+ "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
161
+ "signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
162
+ "affectsGlobalScope": true
163
+ },
164
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts": {
165
+ "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
166
+ "signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
167
+ "affectsGlobalScope": true
168
+ },
169
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
170
+ "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
171
+ "signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
172
+ "affectsGlobalScope": true
173
+ },
174
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
175
+ "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
176
+ "signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
177
+ "affectsGlobalScope": true
178
+ },
179
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
180
+ "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
181
+ "signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
182
+ "affectsGlobalScope": true
183
+ },
184
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts": {
185
+ "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
186
+ "signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
187
+ "affectsGlobalScope": true
188
+ },
189
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
190
+ "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
191
+ "signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
192
+ "affectsGlobalScope": true
193
+ },
194
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
195
+ "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
196
+ "signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
197
+ "affectsGlobalScope": true
198
+ },
199
+ "../node_modules/typescript/lib/lib.esnext.string.d.ts": {
200
+ "version": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
201
+ "signature": "fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe",
202
+ "affectsGlobalScope": true
203
+ },
204
+ "../node_modules/typescript/lib/lib.esnext.promise.d.ts": {
205
+ "version": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
206
+ "signature": "cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e",
207
+ "affectsGlobalScope": true
208
+ },
209
+ "../../../../../node_modules/@types/react/global.d.ts": {
210
+ "version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
211
+ "signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
212
+ "affectsGlobalScope": true
213
+ },
214
+ "../../../../../node_modules/csstype/index.d.ts": {
215
+ "version": "4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94",
216
+ "signature": "4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94",
217
+ "affectsGlobalScope": false
218
+ },
219
+ "../../../../../node_modules/@types/prop-types/index.d.ts": {
220
+ "version": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
221
+ "signature": "a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad",
222
+ "affectsGlobalScope": false
223
+ },
224
+ "../../../../../node_modules/@types/scheduler/tracing.d.ts": {
225
+ "version": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
226
+ "signature": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
227
+ "affectsGlobalScope": false
228
+ },
229
+ "../../../../../node_modules/@types/react/index.d.ts": {
230
+ "version": "aa0f9b45668ef0efaed8f6a9cc606d5151804f6bccd4e36129f99ee9f45ff472",
231
+ "signature": "aa0f9b45668ef0efaed8f6a9cc606d5151804f6bccd4e36129f99ee9f45ff472",
232
+ "affectsGlobalScope": true
233
+ },
234
+ "../src/types/product.ts": {
235
+ "version": "5f405d5383742bc39954abaa49916eb7a61a7667d3e412c16042f8f35752b501",
236
+ "signature": "4d4f330cbfc1a1ad0d2784b5657a5047b5aeceab37f7a59d7b95cef79efc26b5",
237
+ "affectsGlobalScope": false
238
+ },
239
+ "../src/contexts.ts": {
240
+ "version": "62ad5d6750067047f187e5241869058223e21769a11a56657aeffb2875032611",
241
+ "signature": "25739b4c9dd5d07c41ae8a41ac98ca5486c3538005aec441e6815a4fbbc9d5d6",
242
+ "affectsGlobalScope": false
243
+ },
244
+ "../src/types/common.ts": {
245
+ "version": "937e2879b6321b43e355a9387c0cb1bdb47c56af88f5d5a66ffd316d473ac3ba",
246
+ "signature": "aa428717d81179ec3549f90689442f41b02b0ec0109f14bab2476be808d7a7d2",
247
+ "affectsGlobalScope": false
248
+ },
249
+ "../src/types/cart.ts": {
250
+ "version": "f58ea84e1942f7aea1726cec09a7f76ccbaf768f363f5c20e5815b1bceef0158",
251
+ "signature": "59e2984c9e71dabd75cdfcf39f135d3038a4f61634dacc9c9e2f5312a5bbd126",
252
+ "affectsGlobalScope": false
253
+ },
254
+ "../node_modules/swr/dist/constants/revalidate-events.d.ts": {
255
+ "version": "417e6f7a6942cbe58f1fbe2698a6536eb3e494432aa7b79fb9ccb38910531769",
256
+ "signature": "417e6f7a6942cbe58f1fbe2698a6536eb3e494432aa7b79fb9ccb38910531769",
257
+ "affectsGlobalScope": false
258
+ },
259
+ "../node_modules/swr/dist/types.d.ts": {
260
+ "version": "27f46b4119ccc608202dea382258f37de44764c8cea65adf440f420793614b1a",
261
+ "signature": "27f46b4119ccc608202dea382258f37de44764c8cea65adf440f420793614b1a",
262
+ "affectsGlobalScope": false
263
+ },
264
+ "../node_modules/swr/dist/utils/config.d.ts": {
265
+ "version": "b31535ced1ad5abee25063448352c2fd7cdfb48dce94746553cc6321f2e824a5",
266
+ "signature": "b31535ced1ad5abee25063448352c2fd7cdfb48dce94746553cc6321f2e824a5",
267
+ "affectsGlobalScope": false
268
+ },
269
+ "../node_modules/swr/dist/use-swr.d.ts": {
270
+ "version": "2b511c56ee1dcc3274083b636bd0de3e01450fababebed37541d88905a23fa97",
271
+ "signature": "2b511c56ee1dcc3274083b636bd0de3e01450fababebed37541d88905a23fa97",
272
+ "affectsGlobalScope": false
273
+ },
274
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts": {
275
+ "version": "fdd339734a8fecc64523859f7b343d9aa112b9dd95912c96c84cee760b82fcbd",
276
+ "signature": "fdd339734a8fecc64523859f7b343d9aa112b9dd95912c96c84cee760b82fcbd",
277
+ "affectsGlobalScope": false
278
+ },
279
+ "../node_modules/swr/dist/index.d.ts": {
280
+ "version": "4e39971f83a72cf1fb8047e1c23f4a26200a347a76f84b316edf2fd618e1fcac",
281
+ "signature": "4e39971f83a72cf1fb8047e1c23f4a26200a347a76f84b316edf2fd618e1fcac",
282
+ "affectsGlobalScope": false
283
+ },
284
+ "../src/utils/errors.ts": {
285
+ "version": "2c951508dcf307a6441f187fc6378810ebf8514045ccd29df002ca639359c4ea",
286
+ "signature": "2b8955ef19de50cfef8c81589b1c6c5d6311eea0fc31ce10307be63e4cfadc8b",
287
+ "affectsGlobalScope": false
288
+ },
289
+ "../src/utils/define-property.ts": {
290
+ "version": "4ae807debf2878c08eb253b218669991a1161cfe4eb4bc5c96c261a596ca2472",
291
+ "signature": "b8b1b54f425f62e1931e001cc78b1d5bee1c8b4373e67ea861ce3e3be8a9af85",
292
+ "affectsGlobalScope": false
293
+ },
294
+ "../src/utils/use-data.tsx": {
295
+ "version": "13f04f3d5f4824570183fa1bea01b55b171a25b8c7cf1e2706639fa9ef6f2419",
296
+ "signature": "cc6ec3d1f66e4c2f935e005fe39a860fb91175ac394d08a1fc4e9564613af47c",
297
+ "affectsGlobalScope": false
298
+ },
299
+ "../src/utils/types.ts": {
300
+ "version": "cd259ed7730536577060da4574142417e1ebc87104690df6b9d777cd26ab0948",
301
+ "signature": "ff28b05c8f03f066888fa72c851ee3a8e532376d24fdea921d03326fc6278ed4",
302
+ "affectsGlobalScope": false
303
+ },
304
+ "../src/utils/use-hook.ts": {
305
+ "version": "68555b7f1b9578274711db2129fc465ea639078dc012fde2eb2eafdad909eee6",
306
+ "signature": "d54bc587337effdf6bac47897a19c640abb3a3ec793170c7b2fb78c326ea4324",
307
+ "affectsGlobalScope": false
308
+ },
309
+ "../src/utils/default-fetcher.ts": {
310
+ "version": "25e5d94b07b58d2f8eeeca2e841a708dd9693a5c07a9224a39b4096de0fe95f8",
311
+ "signature": "44338fb21146a0b9750f12944c25cf5358f8af95658afaad979643415fb199ae",
312
+ "affectsGlobalScope": false
313
+ },
314
+ "../src/checkout/use-submit-checkout.tsx": {
315
+ "version": "75de6bffa90c57f134e9cb2444cad04fbad5c95c98bfabaeb449cc445b1c9fcf",
316
+ "signature": "f30196f030b3e304578e9d5aa11448a8272e57c6c8cc1a9a3bba1ad6018321b8",
317
+ "affectsGlobalScope": false
318
+ },
319
+ "../src/types/customer/address.ts": {
320
+ "version": "1614f9472904b23a08409aa243d09dabffb7ebd2782880659f8ed03177fad540",
321
+ "signature": "e905f32e6faf38b6028124c8ec19f0b09cb61005c3022e3d54eb8736ec758f00",
322
+ "affectsGlobalScope": false
323
+ },
324
+ "../src/types/customer/card.ts": {
325
+ "version": "d192a7ecb539e00cb308f12c53d032d54a46e2b01bcafec59619449318621a56",
326
+ "signature": "f3a568ae10c62743923de03b60a8bedfa9e17d9589e49c0bd73e024d11c563c6",
327
+ "affectsGlobalScope": false
328
+ },
329
+ "../src/types/checkout.ts": {
330
+ "version": "9c9a52d73ea37d2bc7826235c15fe2627e91b1243c09585dfcbc5d5821e58e28",
331
+ "signature": "caae06516aa466774b55d017b936a045180e7b32e8c4d00b2de36162603daf69",
332
+ "affectsGlobalScope": false
333
+ },
334
+ "../src/types/customer/index.ts": {
335
+ "version": "00529f906c4d6139ebc3a341961f95d17d1408da64d2e93ce719b4ef6a4bf51d",
336
+ "signature": "384ee3e1ef60e5a76ab4af614a3426071b31d928ba46de6e4d0040c878d6e8ef",
337
+ "affectsGlobalScope": false
338
+ },
339
+ "../src/types/login.ts": {
340
+ "version": "f4b3be598ce6b9ae4d5942e4b075610d634fdfa2315704a15e82241e868e4f4d",
341
+ "signature": "47ca56667aa0275786bbe2010aa329bd330244640bf361504c9343748d37528f",
342
+ "affectsGlobalScope": false
343
+ },
344
+ "../src/types/logout.ts": {
345
+ "version": "f9ffe5a4b67924f028b4dfb120d327a7706c37d89cda4861fff2760d2f621268",
346
+ "signature": "8d7a19bb308af317507380e4456da9cc7827651d2fc9432f1418fb2fb3e88901",
347
+ "affectsGlobalScope": false
348
+ },
349
+ "../src/types/page.ts": {
350
+ "version": "55d8a426687c42bcdd00fcf1b5f05877e118b57971613c788ef7d05b5e91a859",
351
+ "signature": "f7d8489f6046fb0a25ac288cc843b3a291dcf08db51effe4ca8488a8e0d01174",
352
+ "affectsGlobalScope": false
353
+ },
354
+ "../src/types/signup.ts": {
355
+ "version": "9d12a4f2bca2ae284d57712bdbacf1e4b359062d5562dfe3e2729a7677403851",
356
+ "signature": "c1cc2c6af38226ebf063801adad267405154b74f778df6cdd8114a6aae2dffa5",
357
+ "affectsGlobalScope": false
358
+ },
359
+ "../src/types/site.ts": {
360
+ "version": "68e145d8d0858987dd8c58cf4b9643a2cd650f278eeaf5885a163f061baeec2d",
361
+ "signature": "fd5c9df503de5a799e9b06c765e99da9c6e92fed0d029ca743334b053da30763",
362
+ "affectsGlobalScope": false
363
+ },
364
+ "../src/types/wishlist.ts": {
365
+ "version": "aad1976c890e619cd4be134f4dca8a260e7dc8595c363a22776979be63bd7ee5",
366
+ "signature": "df5d014c319cb08fcc39b838695d8b13d1003fd77d2247d7d8b5dbc06eeaa48c",
367
+ "affectsGlobalScope": false
368
+ },
369
+ "../src/types/index.ts": {
370
+ "version": "8f3b3df0d44310811312f91acbf9ebed83d45bb6b0a417dd96a2ef958223b403",
371
+ "signature": "9844d084925724b100bd68d069fa37ecfabe188c6cc2a2c86bb592bced9a91d2",
372
+ "affectsGlobalScope": false
373
+ },
374
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts": {
375
+ "version": "cd50051c7087368c8c7982686629c98712754dd4ce8966e75cb041ad46b47cc8",
376
+ "signature": "cd50051c7087368c8c7982686629c98712754dd4ce8966e75cb041ad46b47cc8",
377
+ "affectsGlobalScope": false
378
+ },
379
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts": {
380
+ "version": "9fb42681266078e5fa5fab7e4bba56619037fee2896b5b4257b1bf3abef23564",
381
+ "signature": "9fb42681266078e5fa5fab7e4bba56619037fee2896b5b4257b1bf3abef23564",
382
+ "affectsGlobalScope": true
383
+ },
384
+ "../src/registerable.ts": {
385
+ "version": "736876593c062dd8a13437d71b357d9dca04053a8652b73f0473f980d5f41ffd",
386
+ "signature": "c9b77aabf9fd929e107c30e5104099330d2db3428682ddc751daa6b45b159edd",
387
+ "affectsGlobalScope": false
388
+ },
389
+ "../src/registerproductcollection.tsx": {
390
+ "version": "b80cde8fcb1ab576895cd464a989a64dfce48bb0d4306bfd9b34c18d961781db",
391
+ "signature": "491bc912d5c8a9839f24ad68099808fa71d752f5c0e2bfbc934c151410053b84",
392
+ "affectsGlobalScope": false
393
+ },
394
+ "../src/registerproductimage.tsx": {
395
+ "version": "e2b9b0e2f89d03e2039263aa590af8b4a2953b7b81f3b38ae706da16dd1106c1",
396
+ "signature": "2922b33ad7aefa4f10d50ce28933594a664b01e0730842b860c17fb7b123c4a6",
397
+ "affectsGlobalScope": false
398
+ },
399
+ "../src/index.tsx": {
400
+ "version": "88e11062ca0b28adc0dfe57b9fc51aa941b1c5d6b02c63a9095afcda4e637504",
401
+ "signature": "c24496919291225ce13e9a78a91ff9546c686e5e301390486acd6112230e588a",
402
+ "affectsGlobalScope": false
403
+ },
404
+ "../src/auth/use-login.tsx": {
405
+ "version": "25e3aa709cc6f2865f287584c92b5392c6fa8c4c61c9e40c39c961ef7cfccf32",
406
+ "signature": "fa27c9eca3dc2fd4269846d8d8745e92b482102397f704c7ce8ef5652734a2a2",
407
+ "affectsGlobalScope": false
408
+ },
409
+ "../src/auth/use-logout.tsx": {
410
+ "version": "a3be28a0283e79ad32c56ce9072faa7887eee8546d93c86121d30b7fc7896820",
411
+ "signature": "879b0f8a0264a6da3b936eb284c5c2ba08be002620ae4e87418db3ecec699239",
412
+ "affectsGlobalScope": false
413
+ },
414
+ "../src/auth/use-signup.tsx": {
415
+ "version": "1cc143c20f1b0aa39ac27a6a37aed500b701d54efdb1a1ec9d77e8d70c7265b7",
416
+ "signature": "4c508bd2e7edfd6e12ffa2d436a796ed4a23b380d604212d209e8d788bb48f58",
417
+ "affectsGlobalScope": false
418
+ },
419
+ "../src/cart/use-add-item.tsx": {
420
+ "version": "4cd4156c371f3523ebe4f8a67defd4348299fc04f315a6c46f9ddbceb5d2780e",
421
+ "signature": "0eb3aef608d064d9aaf5aae52693c4d108800ca2ef0ab0bad46695704fb69881",
422
+ "affectsGlobalScope": false
423
+ },
424
+ "../node_modules/@types/js-cookie/index.d.ts": {
425
+ "version": "6b0ae77d0ceedee6b4083abd5f52c766a997b6a81d1d693e9b835205d3a5a43d",
426
+ "signature": "6b0ae77d0ceedee6b4083abd5f52c766a997b6a81d1d693e9b835205d3a5a43d",
427
+ "affectsGlobalScope": false
428
+ },
429
+ "../src/cart/use-cart.tsx": {
430
+ "version": "7a2034b0c89ea8b962568084cb6797309ddafd36151ed9499036047ab21437de",
431
+ "signature": "c76bd1f53cf11f0455db7ffcf9a371c18964e53757982a06dbc3f9705dc30671",
432
+ "affectsGlobalScope": false
433
+ },
434
+ "../src/cart/use-remove-item.tsx": {
435
+ "version": "740b5aa6d512d6c57dd31d32cfb412001c06fa93e9040f95b14a0ce9adca1606",
436
+ "signature": "28657fa205a7ef65cc14264d70e06f18f2aedaed0c9849843efd53b76a2380f1",
437
+ "affectsGlobalScope": false
438
+ },
439
+ "../src/cart/use-update-item.tsx": {
440
+ "version": "08eb160aba4d9ddea360d60ba08e92d737cf16d68edc7b825cf8f679affbae55",
441
+ "signature": "534d6697e8d0998909a73d4426aae7b798a328dfebf36289695faaa4a13f4174",
442
+ "affectsGlobalScope": false
443
+ },
444
+ "../src/checkout/use-checkout.ts": {
445
+ "version": "9e57887af6a1674ff2ca5ac5635854689ed9657de1d75a42ca437cf8580b3d70",
446
+ "signature": "656a605ecbbdb920d679414e2cd28ab3382399c51e3265bd788ba4a4bbfb70c8",
447
+ "affectsGlobalScope": false
448
+ },
449
+ "../src/customer/use-customer.tsx": {
450
+ "version": "b0042e8ce96d6dd85ace2b6069ba5d3076e3f00c97889dec57ffd792f7dac616",
451
+ "signature": "f4c04692f44485d55af3fc25ebabcb148b7a8c3e8f50d08b40df0d9e8ba0629f",
452
+ "affectsGlobalScope": false
453
+ },
454
+ "../src/customer/address/use-add-item.tsx": {
455
+ "version": "422fdd8a7fdca2a922d989760e3013fa2fbd969b9cd747279a3f06fdca7443a1",
456
+ "signature": "c010199f11cad64a7b9184d7e000b3f82d4d0581cc57eba5daa2aae604371550",
457
+ "affectsGlobalScope": false
458
+ },
459
+ "../src/customer/address/use-addresses.tsx": {
460
+ "version": "834e69c3a53818fb2eb30635328a2f9509d84e85738f94af8d66952179f42f3c",
461
+ "signature": "5aa2e4df489ddb7f4920ddf35718c01bdd22ded69fc7d5fa78557d94037de046",
462
+ "affectsGlobalScope": false
463
+ },
464
+ "../src/customer/address/use-remove-item.tsx": {
465
+ "version": "9a64fac4890eb6f2bab6c51d118e47a07c1b22724b5b744b74a830e7fb84eb5b",
466
+ "signature": "57187d7cc256969702a71b62b0117a9897987cd4e365a3eba57e4f9f7d48ff5b",
467
+ "affectsGlobalScope": false
468
+ },
469
+ "../src/customer/address/use-update-item.tsx": {
470
+ "version": "49e253171d08e8c7b5cef2faf4eca7a626832514a4b4cbc19aa3a82258981726",
471
+ "signature": "af91c64b1fdf672daef888332a2d0b0150766de4b525fd8734597f1c3450744f",
472
+ "affectsGlobalScope": false
473
+ },
474
+ "../src/customer/card/use-add-item.tsx": {
475
+ "version": "e721eaf10de27082815bd56b59bd40e30c4cb7f4533a1969708ba6dc951cbdaf",
476
+ "signature": "a200231fd235b3145d6e37119be2610d9df76eb103f276cfd368a7a2b5c961a1",
477
+ "affectsGlobalScope": false
478
+ },
479
+ "../src/customer/card/use-cards.tsx": {
480
+ "version": "2126bd4a120845efc6d2d5472be8e9646d9ee6dda963b0e1b55613d9a2c7a7ff",
481
+ "signature": "ed95b21c193883239a431f6f2669d7426f0f9b53ba8fbd87e564c24cd2ab40b0",
482
+ "affectsGlobalScope": false
483
+ },
484
+ "../src/customer/card/use-remove-item.tsx": {
485
+ "version": "03ea0b3ae1da18490735ba875f2b626c148b1c38d72ba3c02f85aee9ff8265b0",
486
+ "signature": "5e67b34064221eec9f1fe594f0432249a7bad4175cc99d4ab918ccbbc7411f29",
487
+ "affectsGlobalScope": false
488
+ },
489
+ "../src/customer/card/use-update-item.tsx": {
490
+ "version": "8fd37e82207bd723ed061beb7d537a3e85f865443778bd8229ab444fb054d6ba",
491
+ "signature": "58e66a1f407e798b0b977604b8c2957e58e9de6baf335b5cbfca7fc5d7ed46f6",
492
+ "affectsGlobalScope": false
493
+ },
494
+ "../src/product/use-price.tsx": {
495
+ "version": "42b92b5d1ef1f3825bbb981b256799ada08a9c2cdc2a7c08fdbad93a028831bd",
496
+ "signature": "2ff7578cfcc07476e9a028385b74fa6d1467e942b6e8a6db07a906adae5021f5",
497
+ "affectsGlobalScope": false
498
+ },
499
+ "../src/product/use-search.tsx": {
500
+ "version": "fdf8439b4cd3d768d0547a6f2a3e99c5cded9bed79ea503d0bbcbbd75ae047d5",
501
+ "signature": "e0afe9ae54273c9dbaae7c7419d782bebc1e6a2f176253412776fbb2d8c26f03",
502
+ "affectsGlobalScope": false
503
+ },
504
+ "../node_modules/@babel/types/lib/index.d.ts": {
505
+ "version": "2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd",
506
+ "signature": "2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd",
507
+ "affectsGlobalScope": false
508
+ },
509
+ "../node_modules/@types/babel__generator/index.d.ts": {
510
+ "version": "cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb",
511
+ "signature": "cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb",
512
+ "affectsGlobalScope": false
513
+ },
514
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts": {
515
+ "version": "1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a",
516
+ "signature": "1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a",
517
+ "affectsGlobalScope": false
518
+ },
519
+ "../node_modules/@types/babel__template/index.d.ts": {
520
+ "version": "93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9",
521
+ "signature": "93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9",
522
+ "affectsGlobalScope": false
523
+ },
524
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts": {
525
+ "version": "5158403c4f6a1e0e86a5e43e9aaad3571ce270e02fcdd750b5b0ea8dc636dbe4",
526
+ "signature": "5158403c4f6a1e0e86a5e43e9aaad3571ce270e02fcdd750b5b0ea8dc636dbe4",
527
+ "affectsGlobalScope": false
528
+ },
529
+ "../node_modules/@types/babel__core/index.d.ts": {
530
+ "version": "dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",
531
+ "signature": "dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669",
532
+ "affectsGlobalScope": false
533
+ },
534
+ "../node_modules/@types/eslint-visitor-keys/index.d.ts": {
535
+ "version": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
536
+ "signature": "725d9be2fd48440256f4deb00649adffdbc5ecd282b09e89d4e200663792c34c",
537
+ "affectsGlobalScope": false
538
+ },
539
+ "../node_modules/@types/estree/index.d.ts": {
540
+ "version": "a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449",
541
+ "signature": "a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449",
542
+ "affectsGlobalScope": false
543
+ },
544
+ "../node_modules/@types/node/assert.d.ts": {
545
+ "version": "4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",
546
+ "signature": "4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",
547
+ "affectsGlobalScope": false
548
+ },
549
+ "../node_modules/@types/node/globals.d.ts": {
550
+ "version": "e71aa3dcef67c4e22d57a8ff085806b986818c27d515a6c548547dbb06153c01",
551
+ "signature": "e71aa3dcef67c4e22d57a8ff085806b986818c27d515a6c548547dbb06153c01",
552
+ "affectsGlobalScope": true
553
+ },
554
+ "../node_modules/@types/node/async_hooks.d.ts": {
555
+ "version": "64e2803203b14d7f104f570f2152fde13abb6edc17b2ddb33d81ad86cf43d494",
556
+ "signature": "64e2803203b14d7f104f570f2152fde13abb6edc17b2ddb33d81ad86cf43d494",
557
+ "affectsGlobalScope": false
558
+ },
559
+ "../node_modules/@types/node/buffer.d.ts": {
560
+ "version": "3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b",
561
+ "signature": "3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b",
562
+ "affectsGlobalScope": false
563
+ },
564
+ "../node_modules/@types/node/child_process.d.ts": {
565
+ "version": "9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43",
566
+ "signature": "9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43",
567
+ "affectsGlobalScope": false
568
+ },
569
+ "../node_modules/@types/node/cluster.d.ts": {
570
+ "version": "d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",
571
+ "signature": "d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",
572
+ "affectsGlobalScope": false
573
+ },
574
+ "../node_modules/@types/node/console.d.ts": {
575
+ "version": "1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7",
576
+ "signature": "1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7",
577
+ "affectsGlobalScope": true
578
+ },
579
+ "../node_modules/@types/node/constants.d.ts": {
580
+ "version": "3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3",
581
+ "signature": "3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3",
582
+ "affectsGlobalScope": false
583
+ },
584
+ "../node_modules/@types/node/crypto.d.ts": {
585
+ "version": "64576aba4ff801004122056ccd049f0597aa471dcfd7670a6a0b877ee8dd97c0",
586
+ "signature": "64576aba4ff801004122056ccd049f0597aa471dcfd7670a6a0b877ee8dd97c0",
587
+ "affectsGlobalScope": false
588
+ },
589
+ "../node_modules/@types/node/dgram.d.ts": {
590
+ "version": "b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45",
591
+ "signature": "b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45",
592
+ "affectsGlobalScope": false
593
+ },
594
+ "../node_modules/@types/node/dns.d.ts": {
595
+ "version": "4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",
596
+ "signature": "4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",
597
+ "affectsGlobalScope": false
598
+ },
599
+ "../node_modules/@types/node/domain.d.ts": {
600
+ "version": "60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05",
601
+ "signature": "60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05",
602
+ "affectsGlobalScope": true
603
+ },
604
+ "../node_modules/@types/node/events.d.ts": {
605
+ "version": "588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c",
606
+ "signature": "588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c",
607
+ "affectsGlobalScope": true
608
+ },
609
+ "../node_modules/@types/node/fs.d.ts": {
610
+ "version": "cc829932ffaf5c49092f878bec18af1fa5d8591b45a45e2b7f757f793cb3b4ed",
611
+ "signature": "cc829932ffaf5c49092f878bec18af1fa5d8591b45a45e2b7f757f793cb3b4ed",
612
+ "affectsGlobalScope": false
613
+ },
614
+ "../node_modules/@types/node/fs/promises.d.ts": {
615
+ "version": "47db10fdc4e76c4f4598cf7c91ba6bfde6cf6d8082c51860fe751643bf359739",
616
+ "signature": "47db10fdc4e76c4f4598cf7c91ba6bfde6cf6d8082c51860fe751643bf359739",
617
+ "affectsGlobalScope": false
618
+ },
619
+ "../node_modules/@types/node/http.d.ts": {
620
+ "version": "53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3",
621
+ "signature": "53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3",
622
+ "affectsGlobalScope": false
623
+ },
624
+ "../node_modules/@types/node/http2.d.ts": {
625
+ "version": "3be5ff21956db30c674bf2a98eb348e4ce7b4635cd9673413d86fbce761b77d8",
626
+ "signature": "3be5ff21956db30c674bf2a98eb348e4ce7b4635cd9673413d86fbce761b77d8",
627
+ "affectsGlobalScope": false
628
+ },
629
+ "../node_modules/@types/node/https.d.ts": {
630
+ "version": "0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559",
631
+ "signature": "0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559",
632
+ "affectsGlobalScope": false
633
+ },
634
+ "../node_modules/@types/node/inspector.d.ts": {
635
+ "version": "f0c33a0b325d3499cc9aded7d32886f998c9a27b465097c6cc136944d0aafdaa",
636
+ "signature": "f0c33a0b325d3499cc9aded7d32886f998c9a27b465097c6cc136944d0aafdaa",
637
+ "affectsGlobalScope": false
638
+ },
639
+ "../node_modules/@types/node/module.d.ts": {
640
+ "version": "44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d",
641
+ "signature": "44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d",
642
+ "affectsGlobalScope": false
643
+ },
644
+ "../node_modules/@types/node/net.d.ts": {
645
+ "version": "d4a0c39ece1e7c99d701e9c02a7dde8e3b75e03405f78d58d48dfea797ddbbac",
646
+ "signature": "d4a0c39ece1e7c99d701e9c02a7dde8e3b75e03405f78d58d48dfea797ddbbac",
647
+ "affectsGlobalScope": false
648
+ },
649
+ "../node_modules/@types/node/os.d.ts": {
650
+ "version": "1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f",
651
+ "signature": "1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f",
652
+ "affectsGlobalScope": false
653
+ },
654
+ "../node_modules/@types/node/path.d.ts": {
655
+ "version": "9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d",
656
+ "signature": "9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d",
657
+ "affectsGlobalScope": false
658
+ },
659
+ "../node_modules/@types/node/perf_hooks.d.ts": {
660
+ "version": "4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",
661
+ "signature": "4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",
662
+ "affectsGlobalScope": false
663
+ },
664
+ "../node_modules/@types/node/process.d.ts": {
665
+ "version": "ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5",
666
+ "signature": "ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5",
667
+ "affectsGlobalScope": true
668
+ },
669
+ "../node_modules/@types/node/punycode.d.ts": {
670
+ "version": "4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a",
671
+ "signature": "4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a",
672
+ "affectsGlobalScope": false
673
+ },
674
+ "../node_modules/@types/node/querystring.d.ts": {
675
+ "version": "9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e",
676
+ "signature": "9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e",
677
+ "affectsGlobalScope": false
678
+ },
679
+ "../node_modules/@types/node/readline.d.ts": {
680
+ "version": "f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0",
681
+ "signature": "f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0",
682
+ "affectsGlobalScope": false
683
+ },
684
+ "../node_modules/@types/node/repl.d.ts": {
685
+ "version": "e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7",
686
+ "signature": "e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7",
687
+ "affectsGlobalScope": false
688
+ },
689
+ "../node_modules/@types/node/stream.d.ts": {
690
+ "version": "c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc",
691
+ "signature": "c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc",
692
+ "affectsGlobalScope": false
693
+ },
694
+ "../node_modules/@types/node/string_decoder.d.ts": {
695
+ "version": "874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09",
696
+ "signature": "874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09",
697
+ "affectsGlobalScope": false
698
+ },
699
+ "../node_modules/@types/node/timers.d.ts": {
700
+ "version": "82e1723b20fa0b15a7da0d1a03fec88348f82f640f7a2f308d6c0fac780cfc7c",
701
+ "signature": "82e1723b20fa0b15a7da0d1a03fec88348f82f640f7a2f308d6c0fac780cfc7c",
702
+ "affectsGlobalScope": false
703
+ },
704
+ "../node_modules/@types/node/tls.d.ts": {
705
+ "version": "605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9",
706
+ "signature": "605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9",
707
+ "affectsGlobalScope": false
708
+ },
709
+ "../node_modules/@types/node/trace_events.d.ts": {
710
+ "version": "23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779",
711
+ "signature": "23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779",
712
+ "affectsGlobalScope": false
713
+ },
714
+ "../node_modules/@types/node/tty.d.ts": {
715
+ "version": "4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",
716
+ "signature": "4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",
717
+ "affectsGlobalScope": false
718
+ },
719
+ "../../../../../node_modules/querystring/decode.d.ts": {
720
+ "version": "ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa",
721
+ "signature": "ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa",
722
+ "affectsGlobalScope": false
723
+ },
724
+ "../../../../../node_modules/querystring/encode.d.ts": {
725
+ "version": "ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26",
726
+ "signature": "ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26",
727
+ "affectsGlobalScope": false
728
+ },
729
+ "../../../../../node_modules/querystring/index.d.ts": {
730
+ "version": "46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f",
731
+ "signature": "46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f",
732
+ "affectsGlobalScope": false
733
+ },
734
+ "../node_modules/@types/node/url.d.ts": {
735
+ "version": "eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d",
736
+ "signature": "eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d",
737
+ "affectsGlobalScope": true
738
+ },
739
+ "../node_modules/@types/node/util.d.ts": {
740
+ "version": "7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d",
741
+ "signature": "7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d",
742
+ "affectsGlobalScope": false
743
+ },
744
+ "../node_modules/@types/node/v8.d.ts": {
745
+ "version": "a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd",
746
+ "signature": "a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd",
747
+ "affectsGlobalScope": false
748
+ },
749
+ "../node_modules/@types/node/vm.d.ts": {
750
+ "version": "4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e",
751
+ "signature": "4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e",
752
+ "affectsGlobalScope": false
753
+ },
754
+ "../node_modules/@types/node/wasi.d.ts": {
755
+ "version": "3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13",
756
+ "signature": "3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13",
757
+ "affectsGlobalScope": false
758
+ },
759
+ "../node_modules/@types/node/worker_threads.d.ts": {
760
+ "version": "0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb",
761
+ "signature": "0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb",
762
+ "affectsGlobalScope": false
763
+ },
764
+ "../node_modules/@types/node/zlib.d.ts": {
765
+ "version": "22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",
766
+ "signature": "22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",
767
+ "affectsGlobalScope": false
768
+ },
769
+ "../node_modules/@types/node/globals.global.d.ts": {
770
+ "version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
771
+ "signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
772
+ "affectsGlobalScope": true
773
+ },
774
+ "../node_modules/@types/node/index.d.ts": {
775
+ "version": "79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6",
776
+ "signature": "79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6",
777
+ "affectsGlobalScope": false
778
+ },
779
+ "../node_modules/@types/graceful-fs/index.d.ts": {
780
+ "version": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
781
+ "signature": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba",
782
+ "affectsGlobalScope": false
783
+ },
784
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts": {
785
+ "version": "8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215",
786
+ "signature": "8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215",
787
+ "affectsGlobalScope": false
788
+ },
789
+ "../node_modules/@types/istanbul-lib-report/index.d.ts": {
790
+ "version": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
791
+ "signature": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee",
792
+ "affectsGlobalScope": false
793
+ },
794
+ "../node_modules/@types/istanbul-reports/index.d.ts": {
795
+ "version": "029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102",
796
+ "signature": "029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102",
797
+ "affectsGlobalScope": false
798
+ },
799
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts": {
800
+ "version": "e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da",
801
+ "signature": "e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da",
802
+ "affectsGlobalScope": false
803
+ },
804
+ "../node_modules/jest-diff/build/types.d.ts": {
805
+ "version": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
806
+ "signature": "69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2",
807
+ "affectsGlobalScope": false
808
+ },
809
+ "../node_modules/jest-diff/build/difflines.d.ts": {
810
+ "version": "eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7",
811
+ "signature": "eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7",
812
+ "affectsGlobalScope": false
813
+ },
814
+ "../node_modules/jest-diff/build/printdiffs.d.ts": {
815
+ "version": "b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921",
816
+ "signature": "b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921",
817
+ "affectsGlobalScope": false
818
+ },
819
+ "../node_modules/jest-diff/build/index.d.ts": {
820
+ "version": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
821
+ "signature": "b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc",
822
+ "affectsGlobalScope": false
823
+ },
824
+ "../node_modules/pretty-format/build/types.d.ts": {
825
+ "version": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
826
+ "signature": "5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09",
827
+ "affectsGlobalScope": false
828
+ },
829
+ "../node_modules/pretty-format/build/index.d.ts": {
830
+ "version": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
831
+ "signature": "02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",
832
+ "affectsGlobalScope": false
833
+ },
834
+ "../node_modules/@types/jest/index.d.ts": {
835
+ "version": "f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44",
836
+ "signature": "f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44",
837
+ "affectsGlobalScope": true
838
+ },
839
+ "../node_modules/@types/jest/ts3.2/index.d.ts": {
840
+ "version": "d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75",
841
+ "signature": "d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75",
842
+ "affectsGlobalScope": true
843
+ },
844
+ "../node_modules/@types/json-schema/index.d.ts": {
845
+ "version": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4",
846
+ "signature": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4",
847
+ "affectsGlobalScope": false
848
+ },
849
+ "../node_modules/@types/json5/index.d.ts": {
850
+ "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
851
+ "signature": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
852
+ "affectsGlobalScope": false
853
+ },
854
+ "../node_modules/@types/normalize-package-data/index.d.ts": {
855
+ "version": "6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a",
856
+ "signature": "6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a",
857
+ "affectsGlobalScope": false
858
+ },
859
+ "../node_modules/@types/parse-json/index.d.ts": {
860
+ "version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
861
+ "signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
862
+ "affectsGlobalScope": false
863
+ },
864
+ "../node_modules/@types/prettier/index.d.ts": {
865
+ "version": "29651525db5579157e617c77e869af8bfdc1130f5d811c1f759ad35b7bafc8ef",
866
+ "signature": "29651525db5579157e617c77e869af8bfdc1130f5d811c1f759ad35b7bafc8ef",
867
+ "affectsGlobalScope": false
868
+ },
869
+ "../node_modules/@types/resolve/index.d.ts": {
870
+ "version": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede",
871
+ "signature": "8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede",
872
+ "affectsGlobalScope": false
873
+ },
874
+ "../node_modules/@types/stack-utils/index.d.ts": {
875
+ "version": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49",
876
+ "signature": "41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49",
877
+ "affectsGlobalScope": false
878
+ },
879
+ "../node_modules/@types/yargs-parser/index.d.ts": {
880
+ "version": "70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e",
881
+ "signature": "70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e",
882
+ "affectsGlobalScope": false
883
+ },
884
+ "../node_modules/@types/yargs/index.d.ts": {
885
+ "version": "09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c",
886
+ "signature": "09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c",
887
+ "affectsGlobalScope": false
888
+ },
889
+ "../../../../../node_modules/@types/keyv/index.d.ts": {
890
+ "version": "82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d",
891
+ "signature": "82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d",
892
+ "affectsGlobalScope": false
893
+ },
894
+ "../../../../../node_modules/@types/http-cache-semantics/index.d.ts": {
895
+ "version": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae",
896
+ "signature": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae",
897
+ "affectsGlobalScope": false
898
+ },
899
+ "../../../../../node_modules/@types/responselike/index.d.ts": {
900
+ "version": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971",
901
+ "signature": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971",
902
+ "affectsGlobalScope": false
903
+ },
904
+ "../../../../../node_modules/@types/cacheable-request/index.d.ts": {
905
+ "version": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",
906
+ "signature": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",
907
+ "affectsGlobalScope": false
908
+ },
909
+ "../../../../../node_modules/@types/common-tags/index.d.ts": {
910
+ "version": "c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2",
911
+ "signature": "c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2",
912
+ "affectsGlobalScope": false
913
+ },
914
+ "../../../../../node_modules/@types/component-emitter/index.d.ts": {
915
+ "version": "a3a88c1869ba1022dfaefac47ff7a984ec62510e9b4d60988f91d5e523266c34",
916
+ "signature": "a3a88c1869ba1022dfaefac47ff7a984ec62510e9b4d60988f91d5e523266c34",
917
+ "affectsGlobalScope": false
918
+ },
919
+ "../../../../../node_modules/@types/configstore/index.d.ts": {
920
+ "version": "e3cb1b4d91d7fd308d69b4af172c80c9455e2ce52970d7f6f817d2132e7a72da",
921
+ "signature": "e3cb1b4d91d7fd308d69b4af172c80c9455e2ce52970d7f6f817d2132e7a72da",
922
+ "affectsGlobalScope": false
923
+ },
924
+ "../../../../../node_modules/@types/cookie/index.d.ts": {
925
+ "version": "117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e",
926
+ "signature": "117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e",
927
+ "affectsGlobalScope": false
928
+ },
929
+ "../../../../../node_modules/@types/cors/index.d.ts": {
930
+ "version": "6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612",
931
+ "signature": "6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612",
932
+ "affectsGlobalScope": false
933
+ },
934
+ "../../../../../node_modules/@types/debug/index.d.ts": {
935
+ "version": "37a4038e69fb61043e363140b58d7d517d6f99f274adad0774f226ea2ee8c903",
936
+ "signature": "37a4038e69fb61043e363140b58d7d517d6f99f274adad0774f226ea2ee8c903",
937
+ "affectsGlobalScope": false
938
+ },
939
+ "../../../../../node_modules/@types/eslint/helpers.d.ts": {
940
+ "version": "64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241",
941
+ "signature": "64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241",
942
+ "affectsGlobalScope": true
943
+ },
944
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts": {
945
+ "version": "0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0",
946
+ "signature": "0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0",
947
+ "affectsGlobalScope": false
948
+ },
949
+ "../../../../../node_modules/@types/json-schema/index.d.ts": {
950
+ "version": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4",
951
+ "signature": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4",
952
+ "affectsGlobalScope": false
953
+ },
954
+ "../../../../../node_modules/@types/estree/index.d.ts": {
955
+ "version": "9f3554130bc117f19a9d4186bd83a97145c71818c1b1c51424967e0f607324d5",
956
+ "signature": "9f3554130bc117f19a9d4186bd83a97145c71818c1b1c51424967e0f607324d5",
957
+ "affectsGlobalScope": false
958
+ },
959
+ "../../../../../node_modules/@types/eslint/index.d.ts": {
960
+ "version": "e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77",
961
+ "signature": "e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77",
962
+ "affectsGlobalScope": false
963
+ },
964
+ "../../../../../node_modules/@types/eslint-scope/index.d.ts": {
965
+ "version": "82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6",
966
+ "signature": "82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6",
967
+ "affectsGlobalScope": false
968
+ },
969
+ "../../../../../node_modules/@types/get-port/index.d.ts": {
970
+ "version": "00c886d849a8a4b7ceb0a8a6c7a36b168a7a44b2f93fe30c6c30dae71c05709f",
971
+ "signature": "00c886d849a8a4b7ceb0a8a6c7a36b168a7a44b2f93fe30c6c30dae71c05709f",
972
+ "affectsGlobalScope": false
973
+ },
974
+ "../../../../../node_modules/@types/minimatch/index.d.ts": {
975
+ "version": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
976
+ "signature": "95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2",
977
+ "affectsGlobalScope": false
978
+ },
979
+ "../../../../../node_modules/@types/glob/index.d.ts": {
980
+ "version": "5df18146efb27157c4592eade8b8b55a937ed70d6f4081f78ac613cf8d6912dc",
981
+ "signature": "5df18146efb27157c4592eade8b8b55a937ed70d6f4081f78ac613cf8d6912dc",
982
+ "affectsGlobalScope": false
983
+ },
984
+ "../../../../../node_modules/@types/http-proxy/index.d.ts": {
985
+ "version": "090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0",
986
+ "signature": "090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0",
987
+ "affectsGlobalScope": false
988
+ },
989
+ "../../../../../node_modules/@types/isomorphic-fetch/index.d.ts": {
990
+ "version": "4a5c803441d1ff74bb26073151636e3c6705fb3aac92124712533d4531839972",
991
+ "signature": "4a5c803441d1ff74bb26073151636e3c6705fb3aac92124712533d4531839972",
992
+ "affectsGlobalScope": false
993
+ },
994
+ "../../../../../node_modules/@types/json-patch/index.d.ts": {
995
+ "version": "5080b298b769b68aa0cab3187fb42b968d25df564803dcf444cbf77615def96e",
996
+ "signature": "5080b298b769b68aa0cab3187fb42b968d25df564803dcf444cbf77615def96e",
997
+ "affectsGlobalScope": false
998
+ },
999
+ "../../../../../node_modules/@types/lodash/common/common.d.ts": {
1000
+ "version": "675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8",
1001
+ "signature": "675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8",
1002
+ "affectsGlobalScope": false
1003
+ },
1004
+ "../../../../../node_modules/@types/lodash/common/array.d.ts": {
1005
+ "version": "438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2",
1006
+ "signature": "438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2",
1007
+ "affectsGlobalScope": false
1008
+ },
1009
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts": {
1010
+ "version": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
1011
+ "signature": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8",
1012
+ "affectsGlobalScope": false
1013
+ },
1014
+ "../../../../../node_modules/@types/lodash/common/date.d.ts": {
1015
+ "version": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
1016
+ "signature": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42",
1017
+ "affectsGlobalScope": false
1018
+ },
1019
+ "../../../../../node_modules/@types/lodash/common/function.d.ts": {
1020
+ "version": "c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1",
1021
+ "signature": "c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1",
1022
+ "affectsGlobalScope": false
1023
+ },
1024
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts": {
1025
+ "version": "509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32",
1026
+ "signature": "509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32",
1027
+ "affectsGlobalScope": false
1028
+ },
1029
+ "../../../../../node_modules/@types/lodash/common/math.d.ts": {
1030
+ "version": "9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb",
1031
+ "signature": "9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb",
1032
+ "affectsGlobalScope": false
1033
+ },
1034
+ "../../../../../node_modules/@types/lodash/common/number.d.ts": {
1035
+ "version": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
1036
+ "signature": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a",
1037
+ "affectsGlobalScope": false
1038
+ },
1039
+ "../../../../../node_modules/@types/lodash/common/object.d.ts": {
1040
+ "version": "82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672",
1041
+ "signature": "82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672",
1042
+ "affectsGlobalScope": false
1043
+ },
1044
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts": {
1045
+ "version": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
1046
+ "signature": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd",
1047
+ "affectsGlobalScope": false
1048
+ },
1049
+ "../../../../../node_modules/@types/lodash/common/string.d.ts": {
1050
+ "version": "3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae",
1051
+ "signature": "3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae",
1052
+ "affectsGlobalScope": false
1053
+ },
1054
+ "../../../../../node_modules/@types/lodash/common/util.d.ts": {
1055
+ "version": "9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",
1056
+ "signature": "9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",
1057
+ "affectsGlobalScope": false
1058
+ },
1059
+ "../../../../../node_modules/@types/lodash/index.d.ts": {
1060
+ "version": "0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8",
1061
+ "signature": "0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8",
1062
+ "affectsGlobalScope": true
1063
+ },
1064
+ "../../../../../node_modules/@types/minimist/index.d.ts": {
1065
+ "version": "e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",
1066
+ "signature": "e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",
1067
+ "affectsGlobalScope": false
1068
+ },
1069
+ "../../../../../node_modules/@types/mkdirp/index.d.ts": {
1070
+ "version": "6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",
1071
+ "signature": "6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f",
1072
+ "affectsGlobalScope": false
1073
+ },
1074
+ "../../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": {
1075
+ "version": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
1076
+ "signature": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
1077
+ "affectsGlobalScope": false
1078
+ },
1079
+ "../../../../../node_modules/@types/node-fetch/externals.d.ts": {
1080
+ "version": "208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71",
1081
+ "signature": "208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71",
1082
+ "affectsGlobalScope": false
1083
+ },
1084
+ "../../../../../node_modules/@types/node-fetch/index.d.ts": {
1085
+ "version": "062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b",
1086
+ "signature": "062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b",
1087
+ "affectsGlobalScope": false
1088
+ },
1089
+ "../../../../../node_modules/@types/pascalcase/index.d.ts": {
1090
+ "version": "5bcb26b1419c9b0f763038d7becf07b0f50716077da43820830b028268cf3fa4",
1091
+ "signature": "5bcb26b1419c9b0f763038d7becf07b0f50716077da43820830b028268cf3fa4",
1092
+ "affectsGlobalScope": false
1093
+ },
1094
+ "../../../../../node_modules/@types/pug/index.d.ts": {
1095
+ "version": "711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27",
1096
+ "signature": "711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27",
1097
+ "affectsGlobalScope": false
1098
+ },
1099
+ "../../../../../node_modules/@types/reach__router/index.d.ts": {
1100
+ "version": "94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f",
1101
+ "signature": "94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f",
1102
+ "affectsGlobalScope": false
1103
+ },
1104
+ "../../../../../node_modules/@types/react-dom/index.d.ts": {
1105
+ "version": "b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a",
1106
+ "signature": "b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a",
1107
+ "affectsGlobalScope": false
1108
+ },
1109
+ "../../../../../node_modules/@types/react-is/index.d.ts": {
1110
+ "version": "06c2fc0bf929858d3ee5fb8c14f0a39b48d91bb8161b6480d833f787df761672",
1111
+ "signature": "06c2fc0bf929858d3ee5fb8c14f0a39b48d91bb8161b6480d833f787df761672",
1112
+ "affectsGlobalScope": false
1113
+ },
1114
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts": {
1115
+ "version": "725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45",
1116
+ "signature": "725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45",
1117
+ "affectsGlobalScope": false
1118
+ },
1119
+ "../../../../../node_modules/@types/rimraf/index.d.ts": {
1120
+ "version": "3034db2891e04de367126370bebec88ac3b4e3b1eb8b7dc30671ccddb717eed2",
1121
+ "signature": "3034db2891e04de367126370bebec88ac3b4e3b1eb8b7dc30671ccddb717eed2",
1122
+ "affectsGlobalScope": false
1123
+ },
1124
+ "../../../../../node_modules/@types/sass/index.d.ts": {
1125
+ "version": "6dbac6abf517c4f91202a79a1653304fcbb0991d7295f9737c60109161ead972",
1126
+ "signature": "6dbac6abf517c4f91202a79a1653304fcbb0991d7295f9737c60109161ead972",
1127
+ "affectsGlobalScope": false
1128
+ },
1129
+ "../../../../../node_modules/@types/scheduler/index.d.ts": {
1130
+ "version": "3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5",
1131
+ "signature": "3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5",
1132
+ "affectsGlobalScope": false
1133
+ },
1134
+ "../../../../../node_modules/@types/tmp/index.d.ts": {
1135
+ "version": "f26c7e4aa5603123034d9ee4459f43d49daa3d96fdd12999d45d7fa16e584cfe",
1136
+ "signature": "f26c7e4aa5603123034d9ee4459f43d49daa3d96fdd12999d45d7fa16e584cfe",
1137
+ "affectsGlobalScope": false
1138
+ },
1139
+ "../../../../../node_modules/@types/unist/index.d.ts": {
1140
+ "version": "cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180",
1141
+ "signature": "cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180",
1142
+ "affectsGlobalScope": false
1143
+ },
1144
+ "../../../../../node_modules/@types/websocket/index.d.ts": {
1145
+ "version": "4266ccd2cf1d6a281efd9c7ddf9efd7daecf76575364148bd233e18919cac3ed",
1146
+ "signature": "4266ccd2cf1d6a281efd9c7ddf9efd7daecf76575364148bd233e18919cac3ed",
1147
+ "affectsGlobalScope": false
1148
+ },
1149
+ "../../../../../node_modules/@types/yoga-layout/index.d.ts": {
1150
+ "version": "7693b0547e3b004443fa1f4327b61617e7317757a3e947ccc200c91111c77eca",
1151
+ "signature": "7693b0547e3b004443fa1f4327b61617e7317757a3e947ccc200c91111c77eca",
1152
+ "affectsGlobalScope": false
1153
+ }
1154
+ },
1155
+ "options": {
1156
+ "target": 99,
1157
+ "module": 99,
1158
+ "outDir": "./",
1159
+ "baseUrl": "../src",
1160
+ "lib": [
1161
+ "lib.dom.d.ts",
1162
+ "lib.dom.iterable.d.ts",
1163
+ "lib.esnext.d.ts"
1164
+ ],
1165
+ "declaration": true,
1166
+ "allowJs": true,
1167
+ "skipLibCheck": true,
1168
+ "strict": true,
1169
+ "forceConsistentCasingInFileNames": true,
1170
+ "esModuleInterop": true,
1171
+ "moduleResolution": 2,
1172
+ "resolveJsonModule": true,
1173
+ "incremental": true,
1174
+ "jsx": 2,
1175
+ "configFilePath": "../tsconfig.json"
1176
+ },
1177
+ "referencedMap": {
1178
+ "../../../../../node_modules/@types/cacheable-request/index.d.ts": [
1179
+ "../../../../../node_modules/@types/http-cache-semantics/index.d.ts",
1180
+ "../../../../../node_modules/@types/keyv/index.d.ts",
1181
+ "../../../../../node_modules/@types/responselike/index.d.ts",
1182
+ "../node_modules/@types/node/events.d.ts",
1183
+ "../node_modules/@types/node/http.d.ts",
1184
+ "../node_modules/@types/node/index.d.ts",
1185
+ "../node_modules/@types/node/url.d.ts"
1186
+ ],
1187
+ "../../../../../node_modules/@types/cors/index.d.ts": [
1188
+ "../node_modules/@types/node/http.d.ts"
1189
+ ],
1190
+ "../../../../../node_modules/@types/eslint-scope/index.d.ts": [
1191
+ "../../../../../node_modules/@types/eslint/index.d.ts",
1192
+ "../../../../../node_modules/@types/estree/index.d.ts"
1193
+ ],
1194
+ "../../../../../node_modules/@types/eslint/index.d.ts": [
1195
+ "../../../../../node_modules/@types/eslint/helpers.d.ts",
1196
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts",
1197
+ "../../../../../node_modules/@types/estree/index.d.ts",
1198
+ "../node_modules/@types/json-schema/index.d.ts"
1199
+ ],
1200
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts": [
1201
+ "../../../../../node_modules/@types/eslint/index.d.ts"
1202
+ ],
1203
+ "../../../../../node_modules/@types/glob/index.d.ts": [
1204
+ "../../../../../node_modules/@types/minimatch/index.d.ts",
1205
+ "../node_modules/@types/node/events.d.ts",
1206
+ "../node_modules/@types/node/fs.d.ts",
1207
+ "../node_modules/@types/node/index.d.ts"
1208
+ ],
1209
+ "../../../../../node_modules/@types/http-proxy/index.d.ts": [
1210
+ "../node_modules/@types/node/events.d.ts",
1211
+ "../node_modules/@types/node/http.d.ts",
1212
+ "../node_modules/@types/node/https.d.ts",
1213
+ "../node_modules/@types/node/index.d.ts",
1214
+ "../node_modules/@types/node/net.d.ts",
1215
+ "../node_modules/@types/node/stream.d.ts",
1216
+ "../node_modules/@types/node/url.d.ts"
1217
+ ],
1218
+ "../../../../../node_modules/@types/keyv/index.d.ts": [
1219
+ "../node_modules/@types/node/events.d.ts",
1220
+ "../node_modules/@types/node/index.d.ts"
1221
+ ],
1222
+ "../../../../../node_modules/@types/lodash/common/array.d.ts": [
1223
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1224
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1225
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1226
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1227
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1228
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1229
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1230
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1231
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1232
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1233
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1234
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1235
+ ],
1236
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts": [
1237
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1238
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1239
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1240
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1241
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1242
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1243
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1244
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1245
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1246
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1247
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1248
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1249
+ ],
1250
+ "../../../../../node_modules/@types/lodash/common/common.d.ts": [
1251
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1252
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1253
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1254
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1255
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1256
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1257
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1258
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1259
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1260
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1261
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1262
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1263
+ ],
1264
+ "../../../../../node_modules/@types/lodash/common/date.d.ts": [
1265
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1266
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1267
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1268
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1269
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1270
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1271
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1272
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1273
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1274
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1275
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1276
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1277
+ ],
1278
+ "../../../../../node_modules/@types/lodash/common/function.d.ts": [
1279
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1280
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1281
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1282
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1283
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1284
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1285
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1286
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1287
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1288
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1289
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1290
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1291
+ ],
1292
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts": [
1293
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1294
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1295
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1296
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1297
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1298
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1299
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1300
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1301
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1302
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1303
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1304
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1305
+ ],
1306
+ "../../../../../node_modules/@types/lodash/common/math.d.ts": [
1307
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1308
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1309
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1310
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1311
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1312
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1313
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1314
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1315
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1316
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1317
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1318
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1319
+ ],
1320
+ "../../../../../node_modules/@types/lodash/common/number.d.ts": [
1321
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1322
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1323
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1324
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1325
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1326
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1327
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1328
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1329
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1330
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1331
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1332
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1333
+ ],
1334
+ "../../../../../node_modules/@types/lodash/common/object.d.ts": [
1335
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1336
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1337
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1338
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1339
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1340
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1341
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1342
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1343
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1344
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1345
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1346
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1347
+ ],
1348
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts": [
1349
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1350
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1351
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1352
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1353
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1354
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1355
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1356
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1357
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1358
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1359
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1360
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1361
+ ],
1362
+ "../../../../../node_modules/@types/lodash/common/string.d.ts": [
1363
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1364
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1365
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1366
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1367
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1368
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1369
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1370
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1371
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1372
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1373
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
1374
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1375
+ ],
1376
+ "../../../../../node_modules/@types/lodash/common/util.d.ts": [
1377
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1378
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1379
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1380
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1381
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1382
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1383
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1384
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1385
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1386
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1387
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1388
+ "../../../../../node_modules/@types/lodash/index.d.ts"
1389
+ ],
1390
+ "../../../../../node_modules/@types/lodash/index.d.ts": [
1391
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
1392
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
1393
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
1394
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
1395
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
1396
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
1397
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
1398
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
1399
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
1400
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
1401
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
1402
+ "../../../../../node_modules/@types/lodash/common/util.d.ts"
1403
+ ],
1404
+ "../../../../../node_modules/@types/mkdirp/index.d.ts": [
1405
+ "../node_modules/@types/node/fs.d.ts",
1406
+ "../node_modules/@types/node/index.d.ts"
1407
+ ],
1408
+ "../../../../../node_modules/@types/node-fetch/index.d.ts": [
1409
+ "../../../../../node_modules/@types/node-fetch/externals.d.ts",
1410
+ "../../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
1411
+ "../node_modules/@types/node/http.d.ts",
1412
+ "../node_modules/@types/node/index.d.ts",
1413
+ "../node_modules/@types/node/url.d.ts"
1414
+ ],
1415
+ "../../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
1416
+ "../node_modules/@types/node/http.d.ts",
1417
+ "../node_modules/@types/node/index.d.ts",
1418
+ "../node_modules/@types/node/stream.d.ts"
1419
+ ],
1420
+ "../../../../../node_modules/@types/reach__router/index.d.ts": [
1421
+ "../../../../../node_modules/@types/react/index.d.ts"
1422
+ ],
1423
+ "../../../../../node_modules/@types/react-dom/index.d.ts": [
1424
+ "../../../../../node_modules/@types/react/index.d.ts"
1425
+ ],
1426
+ "../../../../../node_modules/@types/react-is/index.d.ts": [
1427
+ "../../../../../node_modules/@types/react/index.d.ts"
1428
+ ],
1429
+ "../../../../../node_modules/@types/react/index.d.ts": [
1430
+ "../../../../../node_modules/@types/prop-types/index.d.ts",
1431
+ "../../../../../node_modules/@types/react/global.d.ts",
1432
+ "../../../../../node_modules/@types/scheduler/tracing.d.ts",
1433
+ "../../../../../node_modules/csstype/index.d.ts"
1434
+ ],
1435
+ "../../../../../node_modules/@types/responselike/index.d.ts": [
1436
+ "../node_modules/@types/node/http.d.ts",
1437
+ "../node_modules/@types/node/index.d.ts",
1438
+ "../node_modules/@types/node/stream.d.ts"
1439
+ ],
1440
+ "../../../../../node_modules/@types/rimraf/index.d.ts": [
1441
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts",
1442
+ "../node_modules/@types/node/fs.d.ts",
1443
+ "../node_modules/@types/node/index.d.ts"
1444
+ ],
1445
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts": [
1446
+ "../../../../../node_modules/@types/minimatch/index.d.ts",
1447
+ "../node_modules/@types/node/events.d.ts",
1448
+ "../node_modules/@types/node/index.d.ts"
1449
+ ],
1450
+ "../../../../../node_modules/@types/sass/index.d.ts": [
1451
+ "../node_modules/@types/node/index.d.ts"
1452
+ ],
1453
+ "../../../../../node_modules/@types/websocket/index.d.ts": [
1454
+ "../node_modules/@types/node/events.d.ts",
1455
+ "../node_modules/@types/node/http.d.ts",
1456
+ "../node_modules/@types/node/https.d.ts",
1457
+ "../node_modules/@types/node/index.d.ts",
1458
+ "../node_modules/@types/node/net.d.ts",
1459
+ "../node_modules/@types/node/url.d.ts"
1460
+ ],
1461
+ "../../../../../node_modules/querystring/index.d.ts": [
1462
+ "../../../../../node_modules/querystring/decode.d.ts",
1463
+ "../../../../../node_modules/querystring/encode.d.ts"
1464
+ ],
1465
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts": [
1466
+ "../../../../../node_modules/csstype/index.d.ts"
1467
+ ],
1468
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts": [
1469
+ "../../../../../node_modules/@types/react/index.d.ts",
1470
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts"
1471
+ ],
1472
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts": [
1473
+ "../node_modules/@babel/types/lib/index.d.ts"
1474
+ ],
1475
+ "../node_modules/@types/babel__core/index.d.ts": [
1476
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts",
1477
+ "../node_modules/@babel/types/lib/index.d.ts",
1478
+ "../node_modules/@types/babel__generator/index.d.ts",
1479
+ "../node_modules/@types/babel__template/index.d.ts",
1480
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts"
1481
+ ],
1482
+ "../node_modules/@types/babel__generator/index.d.ts": [
1483
+ "../node_modules/@babel/types/lib/index.d.ts"
1484
+ ],
1485
+ "../node_modules/@types/babel__template/index.d.ts": [
1486
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts",
1487
+ "../node_modules/@babel/types/lib/index.d.ts"
1488
+ ],
1489
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts": [
1490
+ "../node_modules/@babel/types/lib/index.d.ts"
1491
+ ],
1492
+ "../node_modules/@types/graceful-fs/index.d.ts": [
1493
+ "../node_modules/@types/node/fs.d.ts",
1494
+ "../node_modules/@types/node/index.d.ts"
1495
+ ],
1496
+ "../node_modules/@types/istanbul-lib-report/index.d.ts": [
1497
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts"
1498
+ ],
1499
+ "../node_modules/@types/istanbul-reports/index.d.ts": [
1500
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts",
1501
+ "../node_modules/@types/istanbul-lib-report/index.d.ts"
1502
+ ],
1503
+ "../node_modules/@types/jest/index.d.ts": [
1504
+ "../node_modules/jest-diff/build/index.d.ts",
1505
+ "../node_modules/pretty-format/build/index.d.ts"
1506
+ ],
1507
+ "../node_modules/@types/jest/ts3.2/index.d.ts": [
1508
+ "../node_modules/@types/jest/index.d.ts"
1509
+ ],
1510
+ "../node_modules/@types/node/assert.d.ts": [
1511
+ "../node_modules/@types/node/assert.d.ts"
1512
+ ],
1513
+ "../node_modules/@types/node/async_hooks.d.ts": [
1514
+ "../node_modules/@types/node/async_hooks.d.ts"
1515
+ ],
1516
+ "../node_modules/@types/node/buffer.d.ts": [
1517
+ "../node_modules/@types/node/buffer.d.ts",
1518
+ "../node_modules/@types/node/crypto.d.ts"
1519
+ ],
1520
+ "../node_modules/@types/node/child_process.d.ts": [
1521
+ "../node_modules/@types/node/child_process.d.ts",
1522
+ "../node_modules/@types/node/events.d.ts",
1523
+ "../node_modules/@types/node/fs.d.ts",
1524
+ "../node_modules/@types/node/net.d.ts",
1525
+ "../node_modules/@types/node/stream.d.ts"
1526
+ ],
1527
+ "../node_modules/@types/node/cluster.d.ts": [
1528
+ "../node_modules/@types/node/child_process.d.ts",
1529
+ "../node_modules/@types/node/cluster.d.ts",
1530
+ "../node_modules/@types/node/events.d.ts",
1531
+ "../node_modules/@types/node/net.d.ts"
1532
+ ],
1533
+ "../node_modules/@types/node/console.d.ts": [
1534
+ "../node_modules/@types/node/console.d.ts",
1535
+ "../node_modules/@types/node/util.d.ts"
1536
+ ],
1537
+ "../node_modules/@types/node/constants.d.ts": [
1538
+ "../node_modules/@types/node/constants.d.ts",
1539
+ "../node_modules/@types/node/crypto.d.ts",
1540
+ "../node_modules/@types/node/fs.d.ts",
1541
+ "../node_modules/@types/node/os.d.ts"
1542
+ ],
1543
+ "../node_modules/@types/node/crypto.d.ts": [
1544
+ "../node_modules/@types/node/crypto.d.ts",
1545
+ "../node_modules/@types/node/stream.d.ts"
1546
+ ],
1547
+ "../node_modules/@types/node/dgram.d.ts": [
1548
+ "../node_modules/@types/node/dgram.d.ts",
1549
+ "../node_modules/@types/node/dns.d.ts",
1550
+ "../node_modules/@types/node/events.d.ts",
1551
+ "../node_modules/@types/node/net.d.ts"
1552
+ ],
1553
+ "../node_modules/@types/node/dns.d.ts": [
1554
+ "../node_modules/@types/node/dns.d.ts"
1555
+ ],
1556
+ "../node_modules/@types/node/domain.d.ts": [
1557
+ "../node_modules/@types/node/domain.d.ts",
1558
+ "../node_modules/@types/node/events.d.ts"
1559
+ ],
1560
+ "../node_modules/@types/node/events.d.ts": [
1561
+ "../node_modules/@types/node/events.d.ts"
1562
+ ],
1563
+ "../node_modules/@types/node/fs.d.ts": [
1564
+ "../node_modules/@types/node/events.d.ts",
1565
+ "../node_modules/@types/node/fs.d.ts",
1566
+ "../node_modules/@types/node/fs/promises.d.ts",
1567
+ "../node_modules/@types/node/stream.d.ts",
1568
+ "../node_modules/@types/node/url.d.ts"
1569
+ ],
1570
+ "../node_modules/@types/node/fs/promises.d.ts": [
1571
+ "../node_modules/@types/node/fs.d.ts",
1572
+ "../node_modules/@types/node/fs/promises.d.ts"
1573
+ ],
1574
+ "../node_modules/@types/node/http.d.ts": [
1575
+ "../node_modules/@types/node/http.d.ts",
1576
+ "../node_modules/@types/node/net.d.ts",
1577
+ "../node_modules/@types/node/stream.d.ts",
1578
+ "../node_modules/@types/node/url.d.ts"
1579
+ ],
1580
+ "../node_modules/@types/node/http2.d.ts": [
1581
+ "../node_modules/@types/node/events.d.ts",
1582
+ "../node_modules/@types/node/fs.d.ts",
1583
+ "../node_modules/@types/node/http.d.ts",
1584
+ "../node_modules/@types/node/http2.d.ts",
1585
+ "../node_modules/@types/node/net.d.ts",
1586
+ "../node_modules/@types/node/stream.d.ts",
1587
+ "../node_modules/@types/node/tls.d.ts",
1588
+ "../node_modules/@types/node/url.d.ts"
1589
+ ],
1590
+ "../node_modules/@types/node/https.d.ts": [
1591
+ "../node_modules/@types/node/http.d.ts",
1592
+ "../node_modules/@types/node/https.d.ts",
1593
+ "../node_modules/@types/node/stream.d.ts",
1594
+ "../node_modules/@types/node/tls.d.ts",
1595
+ "../node_modules/@types/node/url.d.ts"
1596
+ ],
1597
+ "../node_modules/@types/node/index.d.ts": [
1598
+ "../node_modules/@types/node/assert.d.ts",
1599
+ "../node_modules/@types/node/async_hooks.d.ts",
1600
+ "../node_modules/@types/node/buffer.d.ts",
1601
+ "../node_modules/@types/node/child_process.d.ts",
1602
+ "../node_modules/@types/node/cluster.d.ts",
1603
+ "../node_modules/@types/node/console.d.ts",
1604
+ "../node_modules/@types/node/constants.d.ts",
1605
+ "../node_modules/@types/node/crypto.d.ts",
1606
+ "../node_modules/@types/node/dgram.d.ts",
1607
+ "../node_modules/@types/node/dns.d.ts",
1608
+ "../node_modules/@types/node/domain.d.ts",
1609
+ "../node_modules/@types/node/events.d.ts",
1610
+ "../node_modules/@types/node/fs.d.ts",
1611
+ "../node_modules/@types/node/fs/promises.d.ts",
1612
+ "../node_modules/@types/node/globals.d.ts",
1613
+ "../node_modules/@types/node/globals.global.d.ts",
1614
+ "../node_modules/@types/node/http.d.ts",
1615
+ "../node_modules/@types/node/http2.d.ts",
1616
+ "../node_modules/@types/node/https.d.ts",
1617
+ "../node_modules/@types/node/inspector.d.ts",
1618
+ "../node_modules/@types/node/module.d.ts",
1619
+ "../node_modules/@types/node/net.d.ts",
1620
+ "../node_modules/@types/node/os.d.ts",
1621
+ "../node_modules/@types/node/path.d.ts",
1622
+ "../node_modules/@types/node/perf_hooks.d.ts",
1623
+ "../node_modules/@types/node/process.d.ts",
1624
+ "../node_modules/@types/node/punycode.d.ts",
1625
+ "../node_modules/@types/node/querystring.d.ts",
1626
+ "../node_modules/@types/node/readline.d.ts",
1627
+ "../node_modules/@types/node/repl.d.ts",
1628
+ "../node_modules/@types/node/stream.d.ts",
1629
+ "../node_modules/@types/node/string_decoder.d.ts",
1630
+ "../node_modules/@types/node/timers.d.ts",
1631
+ "../node_modules/@types/node/tls.d.ts",
1632
+ "../node_modules/@types/node/trace_events.d.ts",
1633
+ "../node_modules/@types/node/tty.d.ts",
1634
+ "../node_modules/@types/node/url.d.ts",
1635
+ "../node_modules/@types/node/util.d.ts",
1636
+ "../node_modules/@types/node/v8.d.ts",
1637
+ "../node_modules/@types/node/vm.d.ts",
1638
+ "../node_modules/@types/node/wasi.d.ts",
1639
+ "../node_modules/@types/node/worker_threads.d.ts",
1640
+ "../node_modules/@types/node/zlib.d.ts"
1641
+ ],
1642
+ "../node_modules/@types/node/inspector.d.ts": [
1643
+ "../node_modules/@types/node/events.d.ts",
1644
+ "../node_modules/@types/node/inspector.d.ts"
1645
+ ],
1646
+ "../node_modules/@types/node/module.d.ts": [
1647
+ "../node_modules/@types/node/module.d.ts",
1648
+ "../node_modules/@types/node/url.d.ts"
1649
+ ],
1650
+ "../node_modules/@types/node/net.d.ts": [
1651
+ "../node_modules/@types/node/dns.d.ts",
1652
+ "../node_modules/@types/node/events.d.ts",
1653
+ "../node_modules/@types/node/net.d.ts",
1654
+ "../node_modules/@types/node/stream.d.ts"
1655
+ ],
1656
+ "../node_modules/@types/node/os.d.ts": [
1657
+ "../node_modules/@types/node/os.d.ts"
1658
+ ],
1659
+ "../node_modules/@types/node/path.d.ts": [
1660
+ "../node_modules/@types/node/path.d.ts"
1661
+ ],
1662
+ "../node_modules/@types/node/perf_hooks.d.ts": [
1663
+ "../node_modules/@types/node/async_hooks.d.ts",
1664
+ "../node_modules/@types/node/perf_hooks.d.ts"
1665
+ ],
1666
+ "../node_modules/@types/node/process.d.ts": [
1667
+ "../node_modules/@types/node/process.d.ts",
1668
+ "../node_modules/@types/node/tty.d.ts"
1669
+ ],
1670
+ "../node_modules/@types/node/punycode.d.ts": [
1671
+ "../node_modules/@types/node/punycode.d.ts"
1672
+ ],
1673
+ "../node_modules/@types/node/querystring.d.ts": [
1674
+ "../node_modules/@types/node/querystring.d.ts"
1675
+ ],
1676
+ "../node_modules/@types/node/readline.d.ts": [
1677
+ "../node_modules/@types/node/events.d.ts",
1678
+ "../node_modules/@types/node/readline.d.ts"
1679
+ ],
1680
+ "../node_modules/@types/node/repl.d.ts": [
1681
+ "../node_modules/@types/node/readline.d.ts",
1682
+ "../node_modules/@types/node/repl.d.ts",
1683
+ "../node_modules/@types/node/util.d.ts",
1684
+ "../node_modules/@types/node/vm.d.ts"
1685
+ ],
1686
+ "../node_modules/@types/node/stream.d.ts": [
1687
+ "../node_modules/@types/node/events.d.ts",
1688
+ "../node_modules/@types/node/stream.d.ts"
1689
+ ],
1690
+ "../node_modules/@types/node/string_decoder.d.ts": [
1691
+ "../node_modules/@types/node/string_decoder.d.ts"
1692
+ ],
1693
+ "../node_modules/@types/node/timers.d.ts": [
1694
+ "../node_modules/@types/node/timers.d.ts"
1695
+ ],
1696
+ "../node_modules/@types/node/tls.d.ts": [
1697
+ "../node_modules/@types/node/net.d.ts",
1698
+ "../node_modules/@types/node/stream.d.ts",
1699
+ "../node_modules/@types/node/tls.d.ts"
1700
+ ],
1701
+ "../node_modules/@types/node/trace_events.d.ts": [
1702
+ "../node_modules/@types/node/trace_events.d.ts"
1703
+ ],
1704
+ "../node_modules/@types/node/tty.d.ts": [
1705
+ "../node_modules/@types/node/net.d.ts",
1706
+ "../node_modules/@types/node/tty.d.ts"
1707
+ ],
1708
+ "../node_modules/@types/node/url.d.ts": [
1709
+ "../node_modules/@types/node/querystring.d.ts",
1710
+ "../node_modules/@types/node/url.d.ts"
1711
+ ],
1712
+ "../node_modules/@types/node/util.d.ts": [
1713
+ "../node_modules/@types/node/util.d.ts"
1714
+ ],
1715
+ "../node_modules/@types/node/v8.d.ts": [
1716
+ "../node_modules/@types/node/stream.d.ts",
1717
+ "../node_modules/@types/node/v8.d.ts"
1718
+ ],
1719
+ "../node_modules/@types/node/vm.d.ts": [
1720
+ "../node_modules/@types/node/vm.d.ts"
1721
+ ],
1722
+ "../node_modules/@types/node/wasi.d.ts": [
1723
+ "../node_modules/@types/node/wasi.d.ts"
1724
+ ],
1725
+ "../node_modules/@types/node/worker_threads.d.ts": [
1726
+ "../node_modules/@types/node/events.d.ts",
1727
+ "../node_modules/@types/node/fs/promises.d.ts",
1728
+ "../node_modules/@types/node/stream.d.ts",
1729
+ "../node_modules/@types/node/url.d.ts",
1730
+ "../node_modules/@types/node/vm.d.ts",
1731
+ "../node_modules/@types/node/worker_threads.d.ts"
1732
+ ],
1733
+ "../node_modules/@types/node/zlib.d.ts": [
1734
+ "../node_modules/@types/node/stream.d.ts",
1735
+ "../node_modules/@types/node/zlib.d.ts"
1736
+ ],
1737
+ "../node_modules/@types/resolve/index.d.ts": [
1738
+ "../node_modules/@types/node/index.d.ts"
1739
+ ],
1740
+ "../node_modules/@types/yargs/index.d.ts": [
1741
+ "../node_modules/@types/yargs-parser/index.d.ts"
1742
+ ],
1743
+ "../node_modules/jest-diff/build/difflines.d.ts": [
1744
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
1745
+ "../node_modules/jest-diff/build/types.d.ts"
1746
+ ],
1747
+ "../node_modules/jest-diff/build/index.d.ts": [
1748
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
1749
+ "../node_modules/jest-diff/build/difflines.d.ts",
1750
+ "../node_modules/jest-diff/build/printdiffs.d.ts",
1751
+ "../node_modules/jest-diff/build/types.d.ts"
1752
+ ],
1753
+ "../node_modules/jest-diff/build/printdiffs.d.ts": [
1754
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
1755
+ "../node_modules/jest-diff/build/types.d.ts"
1756
+ ],
1757
+ "../node_modules/pretty-format/build/index.d.ts": [
1758
+ "../node_modules/pretty-format/build/types.d.ts"
1759
+ ],
1760
+ "../node_modules/swr/dist/index.d.ts": [
1761
+ "../node_modules/swr/dist/types.d.ts",
1762
+ "../node_modules/swr/dist/use-swr.d.ts",
1763
+ "../node_modules/swr/dist/utils/config.d.ts",
1764
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts"
1765
+ ],
1766
+ "../node_modules/swr/dist/types.d.ts": [
1767
+ "../node_modules/swr/dist/constants/revalidate-events.d.ts"
1768
+ ],
1769
+ "../node_modules/swr/dist/use-swr.d.ts": [
1770
+ "../../../../../node_modules/@types/react/index.d.ts",
1771
+ "../node_modules/swr/dist/types.d.ts",
1772
+ "../node_modules/swr/dist/utils/config.d.ts"
1773
+ ],
1774
+ "../node_modules/swr/dist/utils/config.d.ts": [
1775
+ "../node_modules/swr/dist/types.d.ts"
1776
+ ],
1777
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts": [
1778
+ "../node_modules/swr/dist/types.d.ts"
1779
+ ],
1780
+ "../src/auth/use-login.tsx": [
1781
+ "../src/index.tsx",
1782
+ "../src/types/login.ts",
1783
+ "../src/utils/default-fetcher.ts",
1784
+ "../src/utils/types.ts",
1785
+ "../src/utils/use-hook.ts"
1786
+ ],
1787
+ "../src/auth/use-logout.tsx": [
1788
+ "../src/index.tsx",
1789
+ "../src/types/logout.ts",
1790
+ "../src/utils/default-fetcher.ts",
1791
+ "../src/utils/types.ts",
1792
+ "../src/utils/use-hook.ts"
1793
+ ],
1794
+ "../src/auth/use-signup.tsx": [
1795
+ "../src/index.tsx",
1796
+ "../src/types/signup.ts",
1797
+ "../src/utils/default-fetcher.ts",
1798
+ "../src/utils/types.ts",
1799
+ "../src/utils/use-hook.ts"
1800
+ ],
1801
+ "../src/cart/use-add-item.tsx": [
1802
+ "../src/index.tsx",
1803
+ "../src/types/cart.ts",
1804
+ "../src/utils/default-fetcher.ts",
1805
+ "../src/utils/types.ts",
1806
+ "../src/utils/use-hook.ts"
1807
+ ],
1808
+ "../src/cart/use-cart.tsx": [
1809
+ "../node_modules/@types/js-cookie/index.d.ts",
1810
+ "../src/index.tsx",
1811
+ "../src/types/cart.ts",
1812
+ "../src/utils/types.ts",
1813
+ "../src/utils/use-hook.ts"
1814
+ ],
1815
+ "../src/cart/use-remove-item.tsx": [
1816
+ "../src/index.tsx",
1817
+ "../src/types/cart.ts",
1818
+ "../src/utils/default-fetcher.ts",
1819
+ "../src/utils/types.ts",
1820
+ "../src/utils/use-hook.ts"
1821
+ ],
1822
+ "../src/cart/use-update-item.tsx": [
1823
+ "../src/index.tsx",
1824
+ "../src/types/cart.ts",
1825
+ "../src/utils/default-fetcher.ts",
1826
+ "../src/utils/types.ts",
1827
+ "../src/utils/use-hook.ts"
1828
+ ],
1829
+ "../src/checkout/use-checkout.ts": [
1830
+ "../node_modules/@types/js-cookie/index.d.ts",
1831
+ "../src/index.tsx",
1832
+ "../src/types/checkout.ts",
1833
+ "../src/utils/types.ts",
1834
+ "../src/utils/use-hook.ts"
1835
+ ],
1836
+ "../src/checkout/use-submit-checkout.tsx": [
1837
+ "../src/index.tsx",
1838
+ "../src/types/checkout.ts",
1839
+ "../src/utils/default-fetcher.ts",
1840
+ "../src/utils/types.ts",
1841
+ "../src/utils/use-hook.ts"
1842
+ ],
1843
+ "../src/contexts.ts": [
1844
+ "../../../../../node_modules/@types/react/index.d.ts",
1845
+ "../src/types/product.ts"
1846
+ ],
1847
+ "../src/customer/address/use-add-item.tsx": [
1848
+ "../src/index.tsx",
1849
+ "../src/types/customer/address.ts",
1850
+ "../src/utils/default-fetcher.ts",
1851
+ "../src/utils/types.ts",
1852
+ "../src/utils/use-hook.ts"
1853
+ ],
1854
+ "../src/customer/address/use-addresses.tsx": [
1855
+ "../node_modules/@types/js-cookie/index.d.ts",
1856
+ "../src/index.tsx",
1857
+ "../src/types/customer/address.ts",
1858
+ "../src/utils/types.ts",
1859
+ "../src/utils/use-hook.ts"
1860
+ ],
1861
+ "../src/customer/address/use-remove-item.tsx": [
1862
+ "../src/index.tsx",
1863
+ "../src/types/customer/address.ts",
1864
+ "../src/utils/default-fetcher.ts",
1865
+ "../src/utils/types.ts",
1866
+ "../src/utils/use-hook.ts"
1867
+ ],
1868
+ "../src/customer/address/use-update-item.tsx": [
1869
+ "../src/index.tsx",
1870
+ "../src/types/customer/address.ts",
1871
+ "../src/utils/default-fetcher.ts",
1872
+ "../src/utils/types.ts",
1873
+ "../src/utils/use-hook.ts"
1874
+ ],
1875
+ "../src/customer/card/use-add-item.tsx": [
1876
+ "../src/index.tsx",
1877
+ "../src/types/customer/card.ts",
1878
+ "../src/utils/default-fetcher.ts",
1879
+ "../src/utils/types.ts",
1880
+ "../src/utils/use-hook.ts"
1881
+ ],
1882
+ "../src/customer/card/use-cards.tsx": [
1883
+ "../node_modules/@types/js-cookie/index.d.ts",
1884
+ "../src/index.tsx",
1885
+ "../src/types/customer/card.ts",
1886
+ "../src/utils/types.ts",
1887
+ "../src/utils/use-hook.ts"
1888
+ ],
1889
+ "../src/customer/card/use-remove-item.tsx": [
1890
+ "../src/index.tsx",
1891
+ "../src/types/customer/card.ts",
1892
+ "../src/utils/default-fetcher.ts",
1893
+ "../src/utils/types.ts",
1894
+ "../src/utils/use-hook.ts"
1895
+ ],
1896
+ "../src/customer/card/use-update-item.tsx": [
1897
+ "../src/index.tsx",
1898
+ "../src/types/customer/card.ts",
1899
+ "../src/utils/default-fetcher.ts",
1900
+ "../src/utils/types.ts",
1901
+ "../src/utils/use-hook.ts"
1902
+ ],
1903
+ "../src/customer/use-customer.tsx": [
1904
+ "../src/index.tsx",
1905
+ "../src/types/customer/index.ts",
1906
+ "../src/utils/default-fetcher.ts",
1907
+ "../src/utils/types.ts",
1908
+ "../src/utils/use-hook.ts"
1909
+ ],
1910
+ "../src/index.tsx": [
1911
+ "../../../../../node_modules/@types/react/index.d.ts",
1912
+ "../src/registerable.ts",
1913
+ "../src/registerproductcollection.tsx",
1914
+ "../src/registerproductimage.tsx",
1915
+ "../src/types/index.ts",
1916
+ "../src/utils/types.ts"
1917
+ ],
1918
+ "../src/product/use-price.tsx": [
1919
+ "../../../../../node_modules/@types/react/index.d.ts",
1920
+ "../src/index.tsx"
1921
+ ],
1922
+ "../src/product/use-search.tsx": [
1923
+ "../src/index.tsx",
1924
+ "../src/types/product.ts",
1925
+ "../src/utils/default-fetcher.ts",
1926
+ "../src/utils/types.ts",
1927
+ "../src/utils/use-hook.ts"
1928
+ ],
1929
+ "../src/registerable.ts": [
1930
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts"
1931
+ ],
1932
+ "../src/registerproductcollection.tsx": [
1933
+ "../../../../../node_modules/@types/react/index.d.ts",
1934
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts",
1935
+ "../node_modules/swr/dist/index.d.ts",
1936
+ "../src/contexts.ts",
1937
+ "../src/registerable.ts"
1938
+ ],
1939
+ "../src/registerproductimage.tsx": [
1940
+ "../../../../../node_modules/@types/react/index.d.ts",
1941
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts",
1942
+ "../src/contexts.ts",
1943
+ "../src/registerable.ts"
1944
+ ],
1945
+ "../src/types/cart.ts": [
1946
+ "../src/types/common.ts"
1947
+ ],
1948
+ "../src/types/checkout.ts": [
1949
+ "../src/checkout/use-submit-checkout.tsx",
1950
+ "../src/types/customer/address.ts",
1951
+ "../src/types/customer/card.ts"
1952
+ ],
1953
+ "../src/types/customer/index.ts": [
1954
+ "../src/types/customer/address.ts",
1955
+ "../src/types/customer/card.ts"
1956
+ ],
1957
+ "../src/types/index.ts": [
1958
+ "../src/types/cart.ts",
1959
+ "../src/types/checkout.ts",
1960
+ "../src/types/common.ts",
1961
+ "../src/types/customer/index.ts",
1962
+ "../src/types/login.ts",
1963
+ "../src/types/logout.ts",
1964
+ "../src/types/page.ts",
1965
+ "../src/types/product.ts",
1966
+ "../src/types/signup.ts",
1967
+ "../src/types/site.ts",
1968
+ "../src/types/wishlist.ts"
1969
+ ],
1970
+ "../src/utils/default-fetcher.ts": [
1971
+ "../src/utils/types.ts"
1972
+ ],
1973
+ "../src/utils/types.ts": [
1974
+ "../node_modules/swr/dist/index.d.ts",
1975
+ "../src/utils/errors.ts",
1976
+ "../src/utils/use-data.tsx"
1977
+ ],
1978
+ "../src/utils/use-data.tsx": [
1979
+ "../node_modules/swr/dist/index.d.ts",
1980
+ "../src/utils/define-property.ts",
1981
+ "../src/utils/errors.ts",
1982
+ "../src/utils/types.ts"
1983
+ ],
1984
+ "../src/utils/use-hook.ts": [
1985
+ "../../../../../node_modules/@types/react/index.d.ts",
1986
+ "../src/index.tsx",
1987
+ "../src/utils/types.ts",
1988
+ "../src/utils/use-data.tsx"
1989
+ ]
1990
+ },
1991
+ "exportedModulesMap": {
1992
+ "../../../../../node_modules/@types/cacheable-request/index.d.ts": [
1993
+ "../../../../../node_modules/@types/http-cache-semantics/index.d.ts",
1994
+ "../../../../../node_modules/@types/keyv/index.d.ts",
1995
+ "../../../../../node_modules/@types/responselike/index.d.ts",
1996
+ "../node_modules/@types/node/events.d.ts",
1997
+ "../node_modules/@types/node/http.d.ts",
1998
+ "../node_modules/@types/node/index.d.ts",
1999
+ "../node_modules/@types/node/url.d.ts"
2000
+ ],
2001
+ "../../../../../node_modules/@types/cors/index.d.ts": [
2002
+ "../node_modules/@types/node/http.d.ts"
2003
+ ],
2004
+ "../../../../../node_modules/@types/eslint-scope/index.d.ts": [
2005
+ "../../../../../node_modules/@types/eslint/index.d.ts",
2006
+ "../../../../../node_modules/@types/estree/index.d.ts"
2007
+ ],
2008
+ "../../../../../node_modules/@types/eslint/index.d.ts": [
2009
+ "../../../../../node_modules/@types/eslint/helpers.d.ts",
2010
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts",
2011
+ "../../../../../node_modules/@types/estree/index.d.ts",
2012
+ "../node_modules/@types/json-schema/index.d.ts"
2013
+ ],
2014
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts": [
2015
+ "../../../../../node_modules/@types/eslint/index.d.ts"
2016
+ ],
2017
+ "../../../../../node_modules/@types/glob/index.d.ts": [
2018
+ "../../../../../node_modules/@types/minimatch/index.d.ts",
2019
+ "../node_modules/@types/node/events.d.ts",
2020
+ "../node_modules/@types/node/fs.d.ts",
2021
+ "../node_modules/@types/node/index.d.ts"
2022
+ ],
2023
+ "../../../../../node_modules/@types/http-proxy/index.d.ts": [
2024
+ "../node_modules/@types/node/events.d.ts",
2025
+ "../node_modules/@types/node/http.d.ts",
2026
+ "../node_modules/@types/node/https.d.ts",
2027
+ "../node_modules/@types/node/index.d.ts",
2028
+ "../node_modules/@types/node/net.d.ts",
2029
+ "../node_modules/@types/node/stream.d.ts",
2030
+ "../node_modules/@types/node/url.d.ts"
2031
+ ],
2032
+ "../../../../../node_modules/@types/keyv/index.d.ts": [
2033
+ "../node_modules/@types/node/events.d.ts",
2034
+ "../node_modules/@types/node/index.d.ts"
2035
+ ],
2036
+ "../../../../../node_modules/@types/lodash/common/array.d.ts": [
2037
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2038
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2039
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2040
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2041
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2042
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2043
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2044
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2045
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2046
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2047
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2048
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2049
+ ],
2050
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts": [
2051
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2052
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2053
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2054
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2055
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2056
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2057
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2058
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2059
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2060
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2061
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2062
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2063
+ ],
2064
+ "../../../../../node_modules/@types/lodash/common/common.d.ts": [
2065
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2066
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2067
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2068
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2069
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2070
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2071
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2072
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2073
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2074
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2075
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2076
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2077
+ ],
2078
+ "../../../../../node_modules/@types/lodash/common/date.d.ts": [
2079
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2080
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2081
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2082
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2083
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2084
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2085
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2086
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2087
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2088
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2089
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2090
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2091
+ ],
2092
+ "../../../../../node_modules/@types/lodash/common/function.d.ts": [
2093
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2094
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2095
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2096
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2097
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2098
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2099
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2100
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2101
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2102
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2103
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2104
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2105
+ ],
2106
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts": [
2107
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2108
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2109
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2110
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2111
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2112
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2113
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2114
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2115
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2116
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2117
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2118
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2119
+ ],
2120
+ "../../../../../node_modules/@types/lodash/common/math.d.ts": [
2121
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2122
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2123
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2124
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2125
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2126
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2127
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2128
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2129
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2130
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2131
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2132
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2133
+ ],
2134
+ "../../../../../node_modules/@types/lodash/common/number.d.ts": [
2135
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2136
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2137
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2138
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2139
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2140
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2141
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2142
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2143
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2144
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2145
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2146
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2147
+ ],
2148
+ "../../../../../node_modules/@types/lodash/common/object.d.ts": [
2149
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2150
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2151
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2152
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2153
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2154
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2155
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2156
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2157
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2158
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2159
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2160
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2161
+ ],
2162
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts": [
2163
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2164
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2165
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2166
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2167
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2168
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2169
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2170
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2171
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2172
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2173
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2174
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2175
+ ],
2176
+ "../../../../../node_modules/@types/lodash/common/string.d.ts": [
2177
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2178
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2179
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2180
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2181
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2182
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2183
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2184
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2185
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2186
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2187
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2188
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2189
+ ],
2190
+ "../../../../../node_modules/@types/lodash/common/util.d.ts": [
2191
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2192
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2193
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2194
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2195
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2196
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2197
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2198
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2199
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2200
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2201
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2202
+ "../../../../../node_modules/@types/lodash/index.d.ts"
2203
+ ],
2204
+ "../../../../../node_modules/@types/lodash/index.d.ts": [
2205
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2206
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2207
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2208
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2209
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2210
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2211
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2212
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2213
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2214
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2215
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2216
+ "../../../../../node_modules/@types/lodash/common/util.d.ts"
2217
+ ],
2218
+ "../../../../../node_modules/@types/mkdirp/index.d.ts": [
2219
+ "../node_modules/@types/node/fs.d.ts",
2220
+ "../node_modules/@types/node/index.d.ts"
2221
+ ],
2222
+ "../../../../../node_modules/@types/node-fetch/index.d.ts": [
2223
+ "../../../../../node_modules/@types/node-fetch/externals.d.ts",
2224
+ "../../../../../node_modules/form-data/index.d.ts",
2225
+ "../node_modules/@types/node/http.d.ts",
2226
+ "../node_modules/@types/node/index.d.ts",
2227
+ "../node_modules/@types/node/url.d.ts"
2228
+ ],
2229
+ "../../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
2230
+ "../node_modules/@types/node/http.d.ts",
2231
+ "../node_modules/@types/node/index.d.ts",
2232
+ "../node_modules/@types/node/stream.d.ts"
2233
+ ],
2234
+ "../../../../../node_modules/@types/reach__router/index.d.ts": [
2235
+ "../../../../../node_modules/@types/react/index.d.ts"
2236
+ ],
2237
+ "../../../../../node_modules/@types/react-dom/index.d.ts": [
2238
+ "../../../../../node_modules/@types/react/index.d.ts"
2239
+ ],
2240
+ "../../../../../node_modules/@types/react-is/index.d.ts": [
2241
+ "../../../../../node_modules/@types/react/index.d.ts"
2242
+ ],
2243
+ "../../../../../node_modules/@types/react/index.d.ts": [
2244
+ "../../../../../node_modules/@types/prop-types/index.d.ts",
2245
+ "../../../../../node_modules/@types/react/global.d.ts",
2246
+ "../../../../../node_modules/@types/scheduler/tracing.d.ts",
2247
+ "../../../../../node_modules/csstype/index.d.ts"
2248
+ ],
2249
+ "../../../../../node_modules/@types/responselike/index.d.ts": [
2250
+ "../node_modules/@types/node/http.d.ts",
2251
+ "../node_modules/@types/node/index.d.ts",
2252
+ "../node_modules/@types/node/stream.d.ts"
2253
+ ],
2254
+ "../../../../../node_modules/@types/rimraf/index.d.ts": [
2255
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts",
2256
+ "../node_modules/@types/node/fs.d.ts",
2257
+ "../node_modules/@types/node/index.d.ts"
2258
+ ],
2259
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts": [
2260
+ "../../../../../node_modules/@types/minimatch/index.d.ts",
2261
+ "../node_modules/@types/node/events.d.ts",
2262
+ "../node_modules/@types/node/index.d.ts"
2263
+ ],
2264
+ "../../../../../node_modules/@types/sass/index.d.ts": [
2265
+ "../node_modules/@types/node/index.d.ts"
2266
+ ],
2267
+ "../../../../../node_modules/@types/websocket/index.d.ts": [
2268
+ "../node_modules/@types/node/events.d.ts",
2269
+ "../node_modules/@types/node/http.d.ts",
2270
+ "../node_modules/@types/node/https.d.ts",
2271
+ "../node_modules/@types/node/index.d.ts",
2272
+ "../node_modules/@types/node/net.d.ts",
2273
+ "../node_modules/@types/node/url.d.ts"
2274
+ ],
2275
+ "../../../../../node_modules/querystring/index.d.ts": [
2276
+ "../../../../../node_modules/querystring/decode.d.ts",
2277
+ "../../../../../node_modules/querystring/encode.d.ts"
2278
+ ],
2279
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts": [
2280
+ "../../../../../node_modules/csstype/index.d.ts"
2281
+ ],
2282
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts": [
2283
+ "../../../../../node_modules/@types/react/index.d.ts",
2284
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts"
2285
+ ],
2286
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts": [
2287
+ "../node_modules/@babel/types/lib/index.d.ts"
2288
+ ],
2289
+ "../node_modules/@types/babel__core/index.d.ts": [
2290
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts",
2291
+ "../node_modules/@babel/types/lib/index.d.ts",
2292
+ "../node_modules/@types/babel__generator/index.d.ts",
2293
+ "../node_modules/@types/babel__template/index.d.ts",
2294
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts"
2295
+ ],
2296
+ "../node_modules/@types/babel__generator/index.d.ts": [
2297
+ "../node_modules/@babel/types/lib/index.d.ts"
2298
+ ],
2299
+ "../node_modules/@types/babel__template/index.d.ts": [
2300
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts",
2301
+ "../node_modules/@babel/types/lib/index.d.ts"
2302
+ ],
2303
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts": [
2304
+ "../node_modules/@babel/types/lib/index.d.ts"
2305
+ ],
2306
+ "../node_modules/@types/graceful-fs/index.d.ts": [
2307
+ "../node_modules/@types/node/fs.d.ts",
2308
+ "../node_modules/@types/node/index.d.ts"
2309
+ ],
2310
+ "../node_modules/@types/istanbul-lib-report/index.d.ts": [
2311
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts"
2312
+ ],
2313
+ "../node_modules/@types/istanbul-reports/index.d.ts": [
2314
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2315
+ "../node_modules/@types/istanbul-lib-report/index.d.ts"
2316
+ ],
2317
+ "../node_modules/@types/jest/index.d.ts": [
2318
+ "../node_modules/jest-diff/build/index.d.ts",
2319
+ "../node_modules/pretty-format/build/index.d.ts"
2320
+ ],
2321
+ "../node_modules/@types/jest/ts3.2/index.d.ts": [
2322
+ "../node_modules/@types/jest/index.d.ts"
2323
+ ],
2324
+ "../node_modules/@types/node/assert.d.ts": [
2325
+ "../node_modules/@types/node/assert.d.ts"
2326
+ ],
2327
+ "../node_modules/@types/node/async_hooks.d.ts": [
2328
+ "../node_modules/@types/node/async_hooks.d.ts"
2329
+ ],
2330
+ "../node_modules/@types/node/buffer.d.ts": [
2331
+ "../node_modules/@types/node/buffer.d.ts",
2332
+ "../node_modules/@types/node/crypto.d.ts"
2333
+ ],
2334
+ "../node_modules/@types/node/child_process.d.ts": [
2335
+ "../node_modules/@types/node/child_process.d.ts",
2336
+ "../node_modules/@types/node/events.d.ts",
2337
+ "../node_modules/@types/node/fs.d.ts",
2338
+ "../node_modules/@types/node/net.d.ts",
2339
+ "../node_modules/@types/node/stream.d.ts"
2340
+ ],
2341
+ "../node_modules/@types/node/cluster.d.ts": [
2342
+ "../node_modules/@types/node/child_process.d.ts",
2343
+ "../node_modules/@types/node/cluster.d.ts",
2344
+ "../node_modules/@types/node/events.d.ts",
2345
+ "../node_modules/@types/node/net.d.ts"
2346
+ ],
2347
+ "../node_modules/@types/node/console.d.ts": [
2348
+ "../node_modules/@types/node/console.d.ts",
2349
+ "../node_modules/@types/node/util.d.ts"
2350
+ ],
2351
+ "../node_modules/@types/node/constants.d.ts": [
2352
+ "../node_modules/@types/node/constants.d.ts",
2353
+ "../node_modules/@types/node/crypto.d.ts",
2354
+ "../node_modules/@types/node/fs.d.ts",
2355
+ "../node_modules/@types/node/os.d.ts"
2356
+ ],
2357
+ "../node_modules/@types/node/crypto.d.ts": [
2358
+ "../node_modules/@types/node/crypto.d.ts",
2359
+ "../node_modules/@types/node/stream.d.ts"
2360
+ ],
2361
+ "../node_modules/@types/node/dgram.d.ts": [
2362
+ "../node_modules/@types/node/dgram.d.ts",
2363
+ "../node_modules/@types/node/dns.d.ts",
2364
+ "../node_modules/@types/node/events.d.ts",
2365
+ "../node_modules/@types/node/net.d.ts"
2366
+ ],
2367
+ "../node_modules/@types/node/dns.d.ts": [
2368
+ "../node_modules/@types/node/dns.d.ts"
2369
+ ],
2370
+ "../node_modules/@types/node/domain.d.ts": [
2371
+ "../node_modules/@types/node/domain.d.ts",
2372
+ "../node_modules/@types/node/events.d.ts"
2373
+ ],
2374
+ "../node_modules/@types/node/events.d.ts": [
2375
+ "../node_modules/@types/node/events.d.ts"
2376
+ ],
2377
+ "../node_modules/@types/node/fs.d.ts": [
2378
+ "../node_modules/@types/node/events.d.ts",
2379
+ "../node_modules/@types/node/fs.d.ts",
2380
+ "../node_modules/@types/node/fs/promises.d.ts",
2381
+ "../node_modules/@types/node/stream.d.ts",
2382
+ "../node_modules/@types/node/url.d.ts"
2383
+ ],
2384
+ "../node_modules/@types/node/fs/promises.d.ts": [
2385
+ "../node_modules/@types/node/fs.d.ts",
2386
+ "../node_modules/@types/node/fs/promises.d.ts"
2387
+ ],
2388
+ "../node_modules/@types/node/http.d.ts": [
2389
+ "../node_modules/@types/node/http.d.ts",
2390
+ "../node_modules/@types/node/net.d.ts",
2391
+ "../node_modules/@types/node/stream.d.ts",
2392
+ "../node_modules/@types/node/url.d.ts"
2393
+ ],
2394
+ "../node_modules/@types/node/http2.d.ts": [
2395
+ "../node_modules/@types/node/events.d.ts",
2396
+ "../node_modules/@types/node/fs.d.ts",
2397
+ "../node_modules/@types/node/http.d.ts",
2398
+ "../node_modules/@types/node/http2.d.ts",
2399
+ "../node_modules/@types/node/net.d.ts",
2400
+ "../node_modules/@types/node/stream.d.ts",
2401
+ "../node_modules/@types/node/tls.d.ts",
2402
+ "../node_modules/@types/node/url.d.ts"
2403
+ ],
2404
+ "../node_modules/@types/node/https.d.ts": [
2405
+ "../node_modules/@types/node/http.d.ts",
2406
+ "../node_modules/@types/node/https.d.ts",
2407
+ "../node_modules/@types/node/stream.d.ts",
2408
+ "../node_modules/@types/node/tls.d.ts",
2409
+ "../node_modules/@types/node/url.d.ts"
2410
+ ],
2411
+ "../node_modules/@types/node/index.d.ts": [
2412
+ "../node_modules/@types/node/assert.d.ts",
2413
+ "../node_modules/@types/node/async_hooks.d.ts",
2414
+ "../node_modules/@types/node/buffer.d.ts",
2415
+ "../node_modules/@types/node/child_process.d.ts",
2416
+ "../node_modules/@types/node/cluster.d.ts",
2417
+ "../node_modules/@types/node/console.d.ts",
2418
+ "../node_modules/@types/node/constants.d.ts",
2419
+ "../node_modules/@types/node/crypto.d.ts",
2420
+ "../node_modules/@types/node/dgram.d.ts",
2421
+ "../node_modules/@types/node/dns.d.ts",
2422
+ "../node_modules/@types/node/domain.d.ts",
2423
+ "../node_modules/@types/node/events.d.ts",
2424
+ "../node_modules/@types/node/fs.d.ts",
2425
+ "../node_modules/@types/node/fs/promises.d.ts",
2426
+ "../node_modules/@types/node/globals.d.ts",
2427
+ "../node_modules/@types/node/globals.global.d.ts",
2428
+ "../node_modules/@types/node/http.d.ts",
2429
+ "../node_modules/@types/node/http2.d.ts",
2430
+ "../node_modules/@types/node/https.d.ts",
2431
+ "../node_modules/@types/node/inspector.d.ts",
2432
+ "../node_modules/@types/node/module.d.ts",
2433
+ "../node_modules/@types/node/net.d.ts",
2434
+ "../node_modules/@types/node/os.d.ts",
2435
+ "../node_modules/@types/node/path.d.ts",
2436
+ "../node_modules/@types/node/perf_hooks.d.ts",
2437
+ "../node_modules/@types/node/process.d.ts",
2438
+ "../node_modules/@types/node/punycode.d.ts",
2439
+ "../node_modules/@types/node/querystring.d.ts",
2440
+ "../node_modules/@types/node/readline.d.ts",
2441
+ "../node_modules/@types/node/repl.d.ts",
2442
+ "../node_modules/@types/node/stream.d.ts",
2443
+ "../node_modules/@types/node/string_decoder.d.ts",
2444
+ "../node_modules/@types/node/timers.d.ts",
2445
+ "../node_modules/@types/node/tls.d.ts",
2446
+ "../node_modules/@types/node/trace_events.d.ts",
2447
+ "../node_modules/@types/node/tty.d.ts",
2448
+ "../node_modules/@types/node/url.d.ts",
2449
+ "../node_modules/@types/node/util.d.ts",
2450
+ "../node_modules/@types/node/v8.d.ts",
2451
+ "../node_modules/@types/node/vm.d.ts",
2452
+ "../node_modules/@types/node/wasi.d.ts",
2453
+ "../node_modules/@types/node/worker_threads.d.ts",
2454
+ "../node_modules/@types/node/zlib.d.ts"
2455
+ ],
2456
+ "../node_modules/@types/node/inspector.d.ts": [
2457
+ "../node_modules/@types/node/events.d.ts",
2458
+ "../node_modules/@types/node/inspector.d.ts"
2459
+ ],
2460
+ "../node_modules/@types/node/module.d.ts": [
2461
+ "../node_modules/@types/node/module.d.ts",
2462
+ "../node_modules/@types/node/url.d.ts"
2463
+ ],
2464
+ "../node_modules/@types/node/net.d.ts": [
2465
+ "../node_modules/@types/node/dns.d.ts",
2466
+ "../node_modules/@types/node/events.d.ts",
2467
+ "../node_modules/@types/node/net.d.ts",
2468
+ "../node_modules/@types/node/stream.d.ts"
2469
+ ],
2470
+ "../node_modules/@types/node/os.d.ts": [
2471
+ "../node_modules/@types/node/os.d.ts"
2472
+ ],
2473
+ "../node_modules/@types/node/path.d.ts": [
2474
+ "../node_modules/@types/node/path.d.ts"
2475
+ ],
2476
+ "../node_modules/@types/node/perf_hooks.d.ts": [
2477
+ "../node_modules/@types/node/async_hooks.d.ts",
2478
+ "../node_modules/@types/node/perf_hooks.d.ts"
2479
+ ],
2480
+ "../node_modules/@types/node/process.d.ts": [
2481
+ "../node_modules/@types/node/process.d.ts",
2482
+ "../node_modules/@types/node/tty.d.ts"
2483
+ ],
2484
+ "../node_modules/@types/node/punycode.d.ts": [
2485
+ "../node_modules/@types/node/punycode.d.ts"
2486
+ ],
2487
+ "../node_modules/@types/node/querystring.d.ts": [
2488
+ "../node_modules/@types/node/querystring.d.ts"
2489
+ ],
2490
+ "../node_modules/@types/node/readline.d.ts": [
2491
+ "../node_modules/@types/node/events.d.ts",
2492
+ "../node_modules/@types/node/readline.d.ts"
2493
+ ],
2494
+ "../node_modules/@types/node/repl.d.ts": [
2495
+ "../node_modules/@types/node/readline.d.ts",
2496
+ "../node_modules/@types/node/repl.d.ts",
2497
+ "../node_modules/@types/node/util.d.ts",
2498
+ "../node_modules/@types/node/vm.d.ts"
2499
+ ],
2500
+ "../node_modules/@types/node/stream.d.ts": [
2501
+ "../node_modules/@types/node/events.d.ts",
2502
+ "../node_modules/@types/node/stream.d.ts"
2503
+ ],
2504
+ "../node_modules/@types/node/string_decoder.d.ts": [
2505
+ "../node_modules/@types/node/string_decoder.d.ts"
2506
+ ],
2507
+ "../node_modules/@types/node/timers.d.ts": [
2508
+ "../node_modules/@types/node/timers.d.ts"
2509
+ ],
2510
+ "../node_modules/@types/node/tls.d.ts": [
2511
+ "../node_modules/@types/node/net.d.ts",
2512
+ "../node_modules/@types/node/stream.d.ts",
2513
+ "../node_modules/@types/node/tls.d.ts"
2514
+ ],
2515
+ "../node_modules/@types/node/trace_events.d.ts": [
2516
+ "../node_modules/@types/node/trace_events.d.ts"
2517
+ ],
2518
+ "../node_modules/@types/node/tty.d.ts": [
2519
+ "../node_modules/@types/node/net.d.ts",
2520
+ "../node_modules/@types/node/tty.d.ts"
2521
+ ],
2522
+ "../node_modules/@types/node/url.d.ts": [
2523
+ "../node_modules/@types/node/querystring.d.ts",
2524
+ "../node_modules/@types/node/url.d.ts"
2525
+ ],
2526
+ "../node_modules/@types/node/util.d.ts": [
2527
+ "../node_modules/@types/node/util.d.ts"
2528
+ ],
2529
+ "../node_modules/@types/node/v8.d.ts": [
2530
+ "../node_modules/@types/node/stream.d.ts",
2531
+ "../node_modules/@types/node/v8.d.ts"
2532
+ ],
2533
+ "../node_modules/@types/node/vm.d.ts": [
2534
+ "../node_modules/@types/node/vm.d.ts"
2535
+ ],
2536
+ "../node_modules/@types/node/wasi.d.ts": [
2537
+ "../node_modules/@types/node/wasi.d.ts"
2538
+ ],
2539
+ "../node_modules/@types/node/worker_threads.d.ts": [
2540
+ "../node_modules/@types/node/events.d.ts",
2541
+ "../node_modules/@types/node/fs/promises.d.ts",
2542
+ "../node_modules/@types/node/stream.d.ts",
2543
+ "../node_modules/@types/node/url.d.ts",
2544
+ "../node_modules/@types/node/vm.d.ts",
2545
+ "../node_modules/@types/node/worker_threads.d.ts"
2546
+ ],
2547
+ "../node_modules/@types/node/zlib.d.ts": [
2548
+ "../node_modules/@types/node/stream.d.ts",
2549
+ "../node_modules/@types/node/zlib.d.ts"
2550
+ ],
2551
+ "../node_modules/@types/resolve/index.d.ts": [
2552
+ "../node_modules/@types/node/index.d.ts"
2553
+ ],
2554
+ "../node_modules/@types/yargs/index.d.ts": [
2555
+ "../node_modules/@types/yargs-parser/index.d.ts"
2556
+ ],
2557
+ "../node_modules/jest-diff/build/difflines.d.ts": [
2558
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
2559
+ "../node_modules/jest-diff/build/types.d.ts"
2560
+ ],
2561
+ "../node_modules/jest-diff/build/index.d.ts": [
2562
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
2563
+ "../node_modules/jest-diff/build/difflines.d.ts",
2564
+ "../node_modules/jest-diff/build/printdiffs.d.ts",
2565
+ "../node_modules/jest-diff/build/types.d.ts"
2566
+ ],
2567
+ "../node_modules/jest-diff/build/printdiffs.d.ts": [
2568
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
2569
+ "../node_modules/jest-diff/build/types.d.ts"
2570
+ ],
2571
+ "../node_modules/pretty-format/build/index.d.ts": [
2572
+ "../node_modules/pretty-format/build/types.d.ts"
2573
+ ],
2574
+ "../node_modules/swr/dist/index.d.ts": [
2575
+ "../node_modules/swr/dist/types.d.ts",
2576
+ "../node_modules/swr/dist/use-swr.d.ts",
2577
+ "../node_modules/swr/dist/utils/config.d.ts",
2578
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts"
2579
+ ],
2580
+ "../node_modules/swr/dist/types.d.ts": [
2581
+ "../node_modules/swr/dist/constants/revalidate-events.d.ts"
2582
+ ],
2583
+ "../node_modules/swr/dist/use-swr.d.ts": [
2584
+ "../../../../../node_modules/@types/react/index.d.ts",
2585
+ "../node_modules/swr/dist/types.d.ts",
2586
+ "../node_modules/swr/dist/utils/config.d.ts"
2587
+ ],
2588
+ "../node_modules/swr/dist/utils/config.d.ts": [
2589
+ "../node_modules/swr/dist/types.d.ts"
2590
+ ],
2591
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts": [
2592
+ "../node_modules/swr/dist/types.d.ts"
2593
+ ],
2594
+ "../src/auth/use-login.tsx": [
2595
+ "../src/types/login.ts",
2596
+ "../src/utils/types.ts"
2597
+ ],
2598
+ "../src/auth/use-logout.tsx": [
2599
+ "../src/types/logout.ts",
2600
+ "../src/utils/types.ts"
2601
+ ],
2602
+ "../src/auth/use-signup.tsx": [
2603
+ "../src/types/signup.ts",
2604
+ "../src/utils/types.ts"
2605
+ ],
2606
+ "../src/cart/use-add-item.tsx": [
2607
+ "../src/types/cart.ts",
2608
+ "../src/utils/types.ts"
2609
+ ],
2610
+ "../src/cart/use-cart.tsx": [
2611
+ "../src/types/cart.ts",
2612
+ "../src/utils/types.ts"
2613
+ ],
2614
+ "../src/cart/use-remove-item.tsx": [
2615
+ "../src/types/cart.ts",
2616
+ "../src/utils/types.ts"
2617
+ ],
2618
+ "../src/cart/use-update-item.tsx": [
2619
+ "../src/types/cart.ts",
2620
+ "../src/utils/types.ts"
2621
+ ],
2622
+ "../src/checkout/use-checkout.ts": [
2623
+ "../src/types/checkout.ts",
2624
+ "../src/utils/types.ts"
2625
+ ],
2626
+ "../src/checkout/use-submit-checkout.tsx": [
2627
+ "../src/types/checkout.ts",
2628
+ "../src/utils/types.ts"
2629
+ ],
2630
+ "../src/contexts.ts": [
2631
+ "../../../../../node_modules/@types/react/index.d.ts",
2632
+ "../src/types/product.ts"
2633
+ ],
2634
+ "../src/customer/address/use-add-item.tsx": [
2635
+ "../src/types/customer/address.ts",
2636
+ "../src/utils/types.ts"
2637
+ ],
2638
+ "../src/customer/address/use-addresses.tsx": [
2639
+ "../src/types/customer/address.ts",
2640
+ "../src/utils/types.ts"
2641
+ ],
2642
+ "../src/customer/address/use-remove-item.tsx": [
2643
+ "../src/types/customer/address.ts",
2644
+ "../src/utils/types.ts"
2645
+ ],
2646
+ "../src/customer/address/use-update-item.tsx": [
2647
+ "../src/types/customer/address.ts",
2648
+ "../src/utils/types.ts"
2649
+ ],
2650
+ "../src/customer/card/use-add-item.tsx": [
2651
+ "../src/types/customer/card.ts",
2652
+ "../src/utils/types.ts"
2653
+ ],
2654
+ "../src/customer/card/use-cards.tsx": [
2655
+ "../src/types/customer/card.ts",
2656
+ "../src/utils/types.ts"
2657
+ ],
2658
+ "../src/customer/card/use-remove-item.tsx": [
2659
+ "../src/types/customer/card.ts",
2660
+ "../src/utils/types.ts"
2661
+ ],
2662
+ "../src/customer/card/use-update-item.tsx": [
2663
+ "../src/types/customer/card.ts",
2664
+ "../src/utils/types.ts"
2665
+ ],
2666
+ "../src/customer/use-customer.tsx": [
2667
+ "../src/types/customer/index.ts",
2668
+ "../src/utils/types.ts"
2669
+ ],
2670
+ "../src/index.tsx": [
2671
+ "../../../../../node_modules/@types/react/index.d.ts",
2672
+ "../src/registerable.ts",
2673
+ "../src/registerproductimage.tsx",
2674
+ "../src/types/index.ts",
2675
+ "../src/utils/types.ts"
2676
+ ],
2677
+ "../src/product/use-search.tsx": [
2678
+ "../src/types/product.ts",
2679
+ "../src/utils/types.ts"
2680
+ ],
2681
+ "../src/registerable.ts": [
2682
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts"
2683
+ ],
2684
+ "../src/registerproductcollection.tsx": [
2685
+ "../../../../../node_modules/@types/react/index.d.ts",
2686
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts",
2687
+ "../src/registerable.ts"
2688
+ ],
2689
+ "../src/registerproductimage.tsx": [
2690
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts",
2691
+ "../src/registerable.ts"
2692
+ ],
2693
+ "../src/types/cart.ts": [
2694
+ "../src/types/common.ts"
2695
+ ],
2696
+ "../src/types/checkout.ts": [
2697
+ "../src/checkout/use-submit-checkout.tsx",
2698
+ "../src/types/customer/address.ts",
2699
+ "../src/types/customer/card.ts"
2700
+ ],
2701
+ "../src/types/customer/index.ts": [
2702
+ "../src/types/customer/address.ts",
2703
+ "../src/types/customer/card.ts"
2704
+ ],
2705
+ "../src/types/index.ts": [
2706
+ "../src/types/cart.ts",
2707
+ "../src/types/checkout.ts",
2708
+ "../src/types/common.ts",
2709
+ "../src/types/customer/index.ts",
2710
+ "../src/types/login.ts",
2711
+ "../src/types/logout.ts",
2712
+ "../src/types/page.ts",
2713
+ "../src/types/product.ts",
2714
+ "../src/types/signup.ts",
2715
+ "../src/types/site.ts",
2716
+ "../src/types/wishlist.ts"
2717
+ ],
2718
+ "../src/utils/default-fetcher.ts": [
2719
+ "../src/utils/types.ts"
2720
+ ],
2721
+ "../src/utils/types.ts": [
2722
+ "../node_modules/swr/dist/index.d.ts",
2723
+ "../src/utils/errors.ts",
2724
+ "../src/utils/use-data.tsx"
2725
+ ],
2726
+ "../src/utils/use-data.tsx": [
2727
+ "../node_modules/swr/dist/index.d.ts",
2728
+ "../src/utils/errors.ts",
2729
+ "../src/utils/types.ts"
2730
+ ],
2731
+ "../src/utils/use-hook.ts": [
2732
+ "../src/index.tsx",
2733
+ "../src/utils/types.ts"
2734
+ ]
2735
+ },
2736
+ "semanticDiagnosticsPerFile": [
2737
+ "../../../../../node_modules/@types/cacheable-request/index.d.ts",
2738
+ "../../../../../node_modules/@types/common-tags/index.d.ts",
2739
+ "../../../../../node_modules/@types/component-emitter/index.d.ts",
2740
+ "../../../../../node_modules/@types/configstore/index.d.ts",
2741
+ "../../../../../node_modules/@types/cookie/index.d.ts",
2742
+ "../../../../../node_modules/@types/cors/index.d.ts",
2743
+ "../../../../../node_modules/@types/debug/index.d.ts",
2744
+ "../../../../../node_modules/@types/eslint-scope/index.d.ts",
2745
+ "../../../../../node_modules/@types/eslint/helpers.d.ts",
2746
+ "../../../../../node_modules/@types/eslint/index.d.ts",
2747
+ "../../../../../node_modules/@types/eslint/lib/rules/index.d.ts",
2748
+ "../../../../../node_modules/@types/estree/index.d.ts",
2749
+ "../../../../../node_modules/@types/get-port/index.d.ts",
2750
+ "../../../../../node_modules/@types/glob/index.d.ts",
2751
+ "../../../../../node_modules/@types/http-cache-semantics/index.d.ts",
2752
+ "../../../../../node_modules/@types/http-proxy/index.d.ts",
2753
+ "../../../../../node_modules/@types/isomorphic-fetch/index.d.ts",
2754
+ "../../../../../node_modules/@types/json-patch/index.d.ts",
2755
+ "../../../../../node_modules/@types/json-schema/index.d.ts",
2756
+ "../../../../../node_modules/@types/keyv/index.d.ts",
2757
+ "../../../../../node_modules/@types/lodash/common/array.d.ts",
2758
+ "../../../../../node_modules/@types/lodash/common/collection.d.ts",
2759
+ "../../../../../node_modules/@types/lodash/common/common.d.ts",
2760
+ "../../../../../node_modules/@types/lodash/common/date.d.ts",
2761
+ "../../../../../node_modules/@types/lodash/common/function.d.ts",
2762
+ "../../../../../node_modules/@types/lodash/common/lang.d.ts",
2763
+ "../../../../../node_modules/@types/lodash/common/math.d.ts",
2764
+ "../../../../../node_modules/@types/lodash/common/number.d.ts",
2765
+ "../../../../../node_modules/@types/lodash/common/object.d.ts",
2766
+ "../../../../../node_modules/@types/lodash/common/seq.d.ts",
2767
+ "../../../../../node_modules/@types/lodash/common/string.d.ts",
2768
+ "../../../../../node_modules/@types/lodash/common/util.d.ts",
2769
+ "../../../../../node_modules/@types/lodash/index.d.ts",
2770
+ "../../../../../node_modules/@types/minimatch/index.d.ts",
2771
+ "../../../../../node_modules/@types/minimist/index.d.ts",
2772
+ "../../../../../node_modules/@types/mkdirp/index.d.ts",
2773
+ "../../../../../node_modules/@types/node-fetch/externals.d.ts",
2774
+ "../../../../../node_modules/@types/node-fetch/index.d.ts",
2775
+ "../../../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
2776
+ "../../../../../node_modules/@types/pascalcase/index.d.ts",
2777
+ "../../../../../node_modules/@types/prop-types/index.d.ts",
2778
+ "../../../../../node_modules/@types/pug/index.d.ts",
2779
+ "../../../../../node_modules/@types/reach__router/index.d.ts",
2780
+ "../../../../../node_modules/@types/react-dom/index.d.ts",
2781
+ "../../../../../node_modules/@types/react-is/index.d.ts",
2782
+ "../../../../../node_modules/@types/react/global.d.ts",
2783
+ "../../../../../node_modules/@types/react/index.d.ts",
2784
+ "../../../../../node_modules/@types/responselike/index.d.ts",
2785
+ "../../../../../node_modules/@types/rimraf/index.d.ts",
2786
+ "../../../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts",
2787
+ "../../../../../node_modules/@types/sass/index.d.ts",
2788
+ "../../../../../node_modules/@types/scheduler/index.d.ts",
2789
+ "../../../../../node_modules/@types/scheduler/tracing.d.ts",
2790
+ "../../../../../node_modules/@types/tmp/index.d.ts",
2791
+ "../../../../../node_modules/@types/unist/index.d.ts",
2792
+ "../../../../../node_modules/@types/websocket/index.d.ts",
2793
+ "../../../../../node_modules/@types/yoga-layout/index.d.ts",
2794
+ "../../../../../node_modules/csstype/index.d.ts",
2795
+ "../../../../../node_modules/querystring/decode.d.ts",
2796
+ "../../../../../node_modules/querystring/encode.d.ts",
2797
+ "../../../../../node_modules/querystring/index.d.ts",
2798
+ "../../../../../packages/host/registercomponent/dist/element-types.d.ts",
2799
+ "../../../../../packages/host/registercomponent/dist/registercomponent.d.ts",
2800
+ "../node_modules/@babel/parser/typings/babel-parser.d.ts",
2801
+ "../node_modules/@babel/types/lib/index.d.ts",
2802
+ "../node_modules/@types/babel__core/index.d.ts",
2803
+ "../node_modules/@types/babel__generator/index.d.ts",
2804
+ "../node_modules/@types/babel__template/index.d.ts",
2805
+ "../node_modules/@types/babel__traverse/ts4.1/index.d.ts",
2806
+ "../node_modules/@types/eslint-visitor-keys/index.d.ts",
2807
+ "../node_modules/@types/estree/index.d.ts",
2808
+ "../node_modules/@types/graceful-fs/index.d.ts",
2809
+ "../node_modules/@types/istanbul-lib-coverage/index.d.ts",
2810
+ "../node_modules/@types/istanbul-lib-report/index.d.ts",
2811
+ "../node_modules/@types/istanbul-reports/index.d.ts",
2812
+ "../node_modules/@types/jest/index.d.ts",
2813
+ "../node_modules/@types/jest/ts3.2/index.d.ts",
2814
+ "../node_modules/@types/js-cookie/index.d.ts",
2815
+ "../node_modules/@types/json-schema/index.d.ts",
2816
+ "../node_modules/@types/json5/index.d.ts",
2817
+ "../node_modules/@types/node/assert.d.ts",
2818
+ "../node_modules/@types/node/async_hooks.d.ts",
2819
+ "../node_modules/@types/node/buffer.d.ts",
2820
+ "../node_modules/@types/node/child_process.d.ts",
2821
+ "../node_modules/@types/node/cluster.d.ts",
2822
+ "../node_modules/@types/node/console.d.ts",
2823
+ "../node_modules/@types/node/constants.d.ts",
2824
+ "../node_modules/@types/node/crypto.d.ts",
2825
+ "../node_modules/@types/node/dgram.d.ts",
2826
+ "../node_modules/@types/node/dns.d.ts",
2827
+ "../node_modules/@types/node/domain.d.ts",
2828
+ "../node_modules/@types/node/events.d.ts",
2829
+ "../node_modules/@types/node/fs.d.ts",
2830
+ "../node_modules/@types/node/fs/promises.d.ts",
2831
+ "../node_modules/@types/node/globals.d.ts",
2832
+ "../node_modules/@types/node/globals.global.d.ts",
2833
+ "../node_modules/@types/node/http.d.ts",
2834
+ "../node_modules/@types/node/http2.d.ts",
2835
+ "../node_modules/@types/node/https.d.ts",
2836
+ "../node_modules/@types/node/index.d.ts",
2837
+ "../node_modules/@types/node/inspector.d.ts",
2838
+ "../node_modules/@types/node/module.d.ts",
2839
+ "../node_modules/@types/node/net.d.ts",
2840
+ "../node_modules/@types/node/os.d.ts",
2841
+ "../node_modules/@types/node/path.d.ts",
2842
+ "../node_modules/@types/node/perf_hooks.d.ts",
2843
+ "../node_modules/@types/node/process.d.ts",
2844
+ "../node_modules/@types/node/punycode.d.ts",
2845
+ "../node_modules/@types/node/querystring.d.ts",
2846
+ "../node_modules/@types/node/readline.d.ts",
2847
+ "../node_modules/@types/node/repl.d.ts",
2848
+ "../node_modules/@types/node/stream.d.ts",
2849
+ "../node_modules/@types/node/string_decoder.d.ts",
2850
+ "../node_modules/@types/node/timers.d.ts",
2851
+ "../node_modules/@types/node/tls.d.ts",
2852
+ "../node_modules/@types/node/trace_events.d.ts",
2853
+ "../node_modules/@types/node/tty.d.ts",
2854
+ "../node_modules/@types/node/url.d.ts",
2855
+ "../node_modules/@types/node/util.d.ts",
2856
+ "../node_modules/@types/node/v8.d.ts",
2857
+ "../node_modules/@types/node/vm.d.ts",
2858
+ "../node_modules/@types/node/wasi.d.ts",
2859
+ "../node_modules/@types/node/worker_threads.d.ts",
2860
+ "../node_modules/@types/node/zlib.d.ts",
2861
+ "../node_modules/@types/normalize-package-data/index.d.ts",
2862
+ "../node_modules/@types/parse-json/index.d.ts",
2863
+ "../node_modules/@types/prettier/index.d.ts",
2864
+ "../node_modules/@types/resolve/index.d.ts",
2865
+ "../node_modules/@types/stack-utils/index.d.ts",
2866
+ "../node_modules/@types/yargs-parser/index.d.ts",
2867
+ "../node_modules/@types/yargs/index.d.ts",
2868
+ "../node_modules/jest-diff/build/cleanupsemantic.d.ts",
2869
+ "../node_modules/jest-diff/build/difflines.d.ts",
2870
+ "../node_modules/jest-diff/build/index.d.ts",
2871
+ "../node_modules/jest-diff/build/printdiffs.d.ts",
2872
+ "../node_modules/jest-diff/build/types.d.ts",
2873
+ "../node_modules/pretty-format/build/index.d.ts",
2874
+ "../node_modules/pretty-format/build/types.d.ts",
2875
+ "../node_modules/swr/dist/constants/revalidate-events.d.ts",
2876
+ "../node_modules/swr/dist/index.d.ts",
2877
+ "../node_modules/swr/dist/types.d.ts",
2878
+ "../node_modules/swr/dist/use-swr.d.ts",
2879
+ "../node_modules/swr/dist/utils/config.d.ts",
2880
+ "../node_modules/swr/dist/utils/use-swr-config.d.ts",
2881
+ "../node_modules/typescript/lib/lib.dom.d.ts",
2882
+ "../node_modules/typescript/lib/lib.dom.iterable.d.ts",
2883
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts",
2884
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts",
2885
+ "../node_modules/typescript/lib/lib.es2015.d.ts",
2886
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts",
2887
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
2888
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts",
2889
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
2890
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
2891
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
2892
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
2893
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
2894
+ "../node_modules/typescript/lib/lib.es2016.d.ts",
2895
+ "../node_modules/typescript/lib/lib.es2017.d.ts",
2896
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts",
2897
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts",
2898
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
2899
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts",
2900
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
2901
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
2902
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
2903
+ "../node_modules/typescript/lib/lib.es2018.d.ts",
2904
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts",
2905
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts",
2906
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
2907
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts",
2908
+ "../node_modules/typescript/lib/lib.es2019.d.ts",
2909
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts",
2910
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts",
2911
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
2912
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
2913
+ "../node_modules/typescript/lib/lib.es2020.d.ts",
2914
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts",
2915
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts",
2916
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
2917
+ "../node_modules/typescript/lib/lib.es5.d.ts",
2918
+ "../node_modules/typescript/lib/lib.esnext.d.ts",
2919
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts",
2920
+ "../node_modules/typescript/lib/lib.esnext.promise.d.ts",
2921
+ "../node_modules/typescript/lib/lib.esnext.string.d.ts",
2922
+ "../src/auth/use-login.tsx",
2923
+ "../src/auth/use-logout.tsx",
2924
+ "../src/auth/use-signup.tsx",
2925
+ "../src/cart/use-add-item.tsx",
2926
+ "../src/cart/use-cart.tsx",
2927
+ "../src/cart/use-remove-item.tsx",
2928
+ "../src/cart/use-update-item.tsx",
2929
+ "../src/checkout/use-checkout.ts",
2930
+ "../src/checkout/use-submit-checkout.tsx",
2931
+ "../src/contexts.ts",
2932
+ "../src/customer/address/use-add-item.tsx",
2933
+ "../src/customer/address/use-addresses.tsx",
2934
+ "../src/customer/address/use-remove-item.tsx",
2935
+ "../src/customer/address/use-update-item.tsx",
2936
+ "../src/customer/card/use-add-item.tsx",
2937
+ "../src/customer/card/use-cards.tsx",
2938
+ "../src/customer/card/use-remove-item.tsx",
2939
+ "../src/customer/card/use-update-item.tsx",
2940
+ "../src/customer/use-customer.tsx",
2941
+ "../src/index.tsx",
2942
+ "../src/product/use-price.tsx",
2943
+ "../src/product/use-search.tsx",
2944
+ "../src/registerable.ts",
2945
+ "../src/registerproductcollection.tsx",
2946
+ "../src/registerproductimage.tsx",
2947
+ "../src/types/cart.ts",
2948
+ "../src/types/checkout.ts",
2949
+ "../src/types/common.ts",
2950
+ "../src/types/customer/address.ts",
2951
+ "../src/types/customer/card.ts",
2952
+ "../src/types/customer/index.ts",
2953
+ "../src/types/index.ts",
2954
+ "../src/types/login.ts",
2955
+ "../src/types/logout.ts",
2956
+ "../src/types/page.ts",
2957
+ "../src/types/product.ts",
2958
+ "../src/types/signup.ts",
2959
+ "../src/types/site.ts",
2960
+ "../src/types/wishlist.ts",
2961
+ "../src/utils/default-fetcher.ts",
2962
+ "../src/utils/define-property.ts",
2963
+ "../src/utils/errors.ts",
2964
+ "../src/utils/types.ts",
2965
+ "../src/utils/use-data.tsx",
2966
+ "../src/utils/use-hook.ts"
2967
+ ]
2968
+ },
2969
+ "version": "3.9.10"
2970
+ }