@futdevpro/fsm-dynamo 1.0.14 → 1.0.16

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 (120) hide show
  1. package/BuildPackage.bat +1 -0
  2. package/HOWTO.md +15 -0
  3. package/LICENSE +21 -0
  4. package/README.md +17 -24
  5. package/lib/_constants/module-settings/test-module-settings.d.ts +1 -0
  6. package/lib/_constants/module-settings/test-module-settings.d.ts.map +1 -0
  7. package/lib/_constants/module-settings/test-module-settings.js +16 -0
  8. package/lib/_constants/module-settings/test-module-settings.js.map +1 -0
  9. package/lib/_constants/module-settings/usage-module-settings.d.ts +1 -0
  10. package/lib/_constants/module-settings/usage-module-settings.d.ts.map +1 -0
  11. package/lib/_constants/module-settings/usage-module-settings.js +13 -0
  12. package/lib/_constants/module-settings/usage-module-settings.js.map +1 -0
  13. package/lib/_constants/times.d.ts +1 -0
  14. package/lib/_constants/times.d.ts.map +1 -0
  15. package/lib/_constants/times.js +11 -0
  16. package/lib/_constants/times.js.map +1 -0
  17. package/lib/_models/control-models/daily-usage-data.d.ts +1 -0
  18. package/lib/_models/control-models/daily-usage-data.d.ts.map +1 -0
  19. package/lib/_models/control-models/daily-usage-data.js +22 -0
  20. package/lib/_models/control-models/daily-usage-data.js.map +1 -0
  21. package/lib/_models/control-models/dynamo-module-settings.d.ts +1 -0
  22. package/lib/_models/control-models/dynamo-module-settings.d.ts.map +1 -0
  23. package/lib/_models/control-models/dynamo-module-settings.js +3 -0
  24. package/lib/_models/control-models/dynamo-module-settings.js.map +1 -0
  25. package/lib/_models/control-models/dynamobe-data-params.d.ts +1 -0
  26. package/lib/_models/control-models/dynamobe-data-params.d.ts.map +1 -0
  27. package/lib/_models/control-models/dynamobe-data-params.js +12 -0
  28. package/lib/_models/control-models/dynamobe-data-params.js.map +1 -0
  29. package/lib/_models/control-models/dynamobe-data-property-params.d.ts +1 -0
  30. package/lib/_models/control-models/dynamobe-data-property-params.d.ts.map +1 -0
  31. package/lib/_models/control-models/dynamobe-data-property-params.js +68 -0
  32. package/lib/_models/control-models/dynamobe-data-property-params.js.map +1 -0
  33. package/lib/_models/control-models/dynamobe-error.d.ts +1 -0
  34. package/lib/_models/control-models/dynamobe-error.d.ts.map +1 -0
  35. package/lib/_models/control-models/dynamobe-error.js +188 -0
  36. package/lib/_models/control-models/dynamobe-error.js.map +1 -0
  37. package/lib/_models/control-models/geo-ip-location.d.ts +1 -0
  38. package/lib/_models/control-models/geo-ip-location.d.ts.map +1 -0
  39. package/lib/_models/control-models/geo-ip-location.js +3 -0
  40. package/lib/_models/control-models/geo-ip-location.js.map +1 -0
  41. package/lib/_models/control-models/location-coordinates.d.ts +1 -0
  42. package/lib/_models/control-models/location-coordinates.d.ts.map +1 -0
  43. package/lib/_models/control-models/location-coordinates.js +3 -0
  44. package/lib/_models/control-models/location-coordinates.js.map +1 -0
  45. package/lib/_models/control-models/usage-action.d.ts +1 -0
  46. package/lib/_models/control-models/usage-action.d.ts.map +1 -0
  47. package/lib/_models/control-models/usage-action.js +13 -0
  48. package/lib/_models/control-models/usage-action.js.map +1 -0
  49. package/lib/_models/control-models/usage-data.d.ts +1 -0
  50. package/lib/_models/control-models/usage-data.d.ts.map +1 -0
  51. package/lib/_models/control-models/usage-data.js +16 -0
  52. package/lib/_models/control-models/usage-data.js.map +1 -0
  53. package/lib/_models/data-models/custom-data.d.ts +1 -0
  54. package/lib/_models/data-models/custom-data.d.ts.map +1 -0
  55. package/lib/_models/data-models/custom-data.js +28 -0
  56. package/lib/_models/data-models/custom-data.js.map +1 -0
  57. package/lib/_models/data-models/metadata.d.ts +1 -0
  58. package/lib/_models/data-models/metadata.d.ts.map +1 -0
  59. package/lib/_models/data-models/metadata.js +17 -0
  60. package/lib/_models/data-models/metadata.js.map +1 -0
  61. package/lib/_models/data-models/usage-session.d.ts +1 -0
  62. package/lib/_models/data-models/usage-session.d.ts.map +1 -0
  63. package/lib/_models/data-models/usage-session.js +53 -0
  64. package/lib/_models/data-models/usage-session.js.map +1 -0
  65. package/lib/data-models.d.ts +3 -0
  66. package/lib/data-models.d.ts.map +1 -0
  67. package/lib/data-models.js +7 -0
  68. package/lib/data-models.js.map +1 -0
  69. package/lib/index.d.ts +15 -0
  70. package/lib/index.d.ts.map +1 -0
  71. package/lib/index.js +23 -0
  72. package/lib/index.js.map +1 -0
  73. package/lib/tsconfig.tsbuildinfo +2515 -0
  74. package/nodemon.json +6 -0
  75. package/package.json +45 -48
  76. package/src/_constants/module-settings/test-module-settings.ts +15 -0
  77. package/src/_constants/module-settings/usage-module-settings.ts +12 -0
  78. package/src/_constants/times.ts +8 -0
  79. package/src/_models/control-models/daily-usage-data.ts +34 -0
  80. package/src/_models/control-models/dynamo-module-settings.ts +8 -0
  81. package/src/_models/control-models/dynamobe-data-params.ts +19 -0
  82. package/src/_models/control-models/dynamobe-data-property-params.ts +97 -0
  83. package/src/_models/control-models/dynamobe-error.ts +200 -0
  84. package/src/_models/control-models/geo-ip-location.ts +26 -0
  85. package/src/_models/control-models/location-coordinates.ts +5 -0
  86. package/src/_models/control-models/usage-action.ts +18 -0
  87. package/src/_models/control-models/usage-data.ts +26 -0
  88. package/src/_models/data-models/custom-data.ts +41 -0
  89. package/src/_models/data-models/metadata.ts +30 -0
  90. package/src/_models/data-models/usage-session.ts +85 -0
  91. package/src/data-models.ts +6 -0
  92. package/src/index.ts +22 -0
  93. package/src/sync.ffs_db +0 -0
  94. package/src/version.json +2 -0
  95. package/tsconfig.app.json +12 -0
  96. package/tsconfig.json +27 -0
  97. package/esm2020/futdevpro-fsm-dynamo.mjs +0 -8
  98. package/esm2020/lib/_constants/module-settings/test-module-settings.mjs +0 -16
  99. package/esm2020/lib/_constants/module-settings/usage-module-settings.mjs +0 -13
  100. package/esm2020/lib/_constants/times.mjs +0 -11
  101. package/esm2020/lib/_models/control-models/daily-usage-data.mjs +0 -22
  102. package/esm2020/lib/_models/control-models/dynamo-module-settings.mjs +0 -3
  103. package/esm2020/lib/_models/control-models/dynamobe-data-params.mjs +0 -12
  104. package/esm2020/lib/_models/control-models/dynamobe-data-property-params.mjs +0 -67
  105. package/esm2020/lib/_models/control-models/dynamobe-error.mjs +0 -187
  106. package/esm2020/lib/_models/control-models/geo-ip-location.mjs +0 -3
  107. package/esm2020/lib/_models/control-models/location-coordinates.mjs +0 -3
  108. package/esm2020/lib/_models/control-models/usage-action.mjs +0 -13
  109. package/esm2020/lib/_models/control-models/usage-data.mjs +0 -16
  110. package/esm2020/lib/_models/data-models/custom-data.mjs +0 -28
  111. package/esm2020/lib/_models/data-models/metadata.mjs +0 -17
  112. package/esm2020/lib/_models/data-models/usage-session.mjs +0 -53
  113. package/esm2020/public-api.mjs +0 -23
  114. package/fesm2015/futdevpro-fsm-dynamo.mjs +0 -8
  115. package/fesm2015/futdevpro-fsm-dynamo.mjs.map +0 -1
  116. package/fesm2020/futdevpro-fsm-dynamo.mjs +0 -8
  117. package/fesm2020/futdevpro-fsm-dynamo.mjs.map +0 -1
  118. package/futdevpro-fsm-dynamo-01.00.14.tgz +0 -0
  119. package/futdevpro-fsm-dynamo.d.ts +0 -5
  120. package/public-api.d.ts +0 -14
@@ -0,0 +1,2515 @@
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.dom.d.ts": {
40
+ "version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
41
+ "signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
42
+ "affectsGlobalScope": true
43
+ },
44
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts": {
45
+ "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
46
+ "signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
47
+ "affectsGlobalScope": true
48
+ },
49
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
50
+ "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
51
+ "signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
52
+ "affectsGlobalScope": true
53
+ },
54
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
55
+ "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
56
+ "signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
57
+ "affectsGlobalScope": true
58
+ },
59
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
60
+ "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
61
+ "signature": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf",
62
+ "affectsGlobalScope": true
63
+ },
64
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
65
+ "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
66
+ "signature": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4",
67
+ "affectsGlobalScope": true
68
+ },
69
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
70
+ "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
71
+ "signature": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315",
72
+ "affectsGlobalScope": true
73
+ },
74
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
75
+ "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
76
+ "signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
77
+ "affectsGlobalScope": true
78
+ },
79
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
80
+ "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
81
+ "signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
82
+ "affectsGlobalScope": true
83
+ },
84
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
85
+ "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
86
+ "signature": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce",
87
+ "affectsGlobalScope": true
88
+ },
89
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
90
+ "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
91
+ "signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
92
+ "affectsGlobalScope": true
93
+ },
94
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts": {
95
+ "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
96
+ "signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
97
+ "affectsGlobalScope": true
98
+ },
99
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
100
+ "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
101
+ "signature": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232",
102
+ "affectsGlobalScope": true
103
+ },
104
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts": {
105
+ "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
106
+ "signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
107
+ "affectsGlobalScope": true
108
+ },
109
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
110
+ "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
111
+ "signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
112
+ "affectsGlobalScope": true
113
+ },
114
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
115
+ "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
116
+ "signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
117
+ "affectsGlobalScope": true
118
+ },
119
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
120
+ "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
121
+ "signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
122
+ "affectsGlobalScope": true
123
+ },
124
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
125
+ "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
126
+ "signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
127
+ "affectsGlobalScope": true
128
+ },
129
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
130
+ "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
131
+ "signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
132
+ "affectsGlobalScope": true
133
+ },
134
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
135
+ "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
136
+ "signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
137
+ "affectsGlobalScope": true
138
+ },
139
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
140
+ "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
141
+ "signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
142
+ "affectsGlobalScope": true
143
+ },
144
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts": {
145
+ "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
146
+ "signature": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951",
147
+ "affectsGlobalScope": true
148
+ },
149
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts": {
150
+ "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
151
+ "signature": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de",
152
+ "affectsGlobalScope": true
153
+ },
154
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts": {
155
+ "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
156
+ "signature": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1",
157
+ "affectsGlobalScope": true
158
+ },
159
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
160
+ "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
161
+ "signature": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993",
162
+ "affectsGlobalScope": true
163
+ },
164
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
165
+ "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
166
+ "signature": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa",
167
+ "affectsGlobalScope": true
168
+ },
169
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts": {
170
+ "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
171
+ "signature": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862",
172
+ "affectsGlobalScope": true
173
+ },
174
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts": {
175
+ "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
176
+ "signature": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e",
177
+ "affectsGlobalScope": true
178
+ },
179
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": {
180
+ "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
181
+ "signature": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a",
182
+ "affectsGlobalScope": true
183
+ },
184
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
185
+ "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
186
+ "signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
187
+ "affectsGlobalScope": true
188
+ },
189
+ "../node_modules/tslib/tslib.d.ts": {
190
+ "version": "9eb0ae9fa333acfc2dcbe6a7eaa2ab8be46b97ca259982c797c39167823235d5",
191
+ "signature": "9eb0ae9fa333acfc2dcbe6a7eaa2ab8be46b97ca259982c797c39167823235d5",
192
+ "affectsGlobalScope": false
193
+ },
194
+ "../src/_models/data-models/metadata.ts": {
195
+ "version": "3516e88bb340706b4e5e0c75ff24ec79621cec501d7fd6ff5af3fe809efa173f",
196
+ "signature": "3a6ad5b0efc28eef16cc0568bce7fb02abb8231bb6430fbe40c1c6252e6ab910",
197
+ "affectsGlobalScope": false
198
+ },
199
+ "../src/_models/control-models/dynamobe-error.ts": {
200
+ "version": "c00e2a11553aa7589bfba4b3ba33b9b812c542e726903f79fb8c356822c39da6",
201
+ "signature": "f28694141d3063a88c9fc291fc7f939c413ce8bcdb08f4414fd19383e885c2c8",
202
+ "affectsGlobalScope": false
203
+ },
204
+ "../src/_models/control-models/dynamobe-data-property-params.ts": {
205
+ "version": "3f6fd09b7022558e926cbd4eb8e2e1b47f10ba8e4276c880e55f8b61504e7644",
206
+ "signature": "df9c1f50654e34f0e4255c8f880dfde3af6531db086c70755382840a0011b8d4",
207
+ "affectsGlobalScope": false
208
+ },
209
+ "../src/_models/control-models/dynamobe-data-params.ts": {
210
+ "version": "d6bf7cd97c4e1da5fc2a97079d728c787743bb6631ad2d0bf8926432b3b00266",
211
+ "signature": "e790d724a82ff7e44382964941364b15709ba05845219a1dff6fd9226e6ee27d",
212
+ "affectsGlobalScope": false
213
+ },
214
+ "../src/data-models.ts": {
215
+ "version": "65c227f470c44b7ca6664b1678a2236341f084427ec51313dc5f5d74de69c145",
216
+ "signature": "076bc547d701f0e22c4ac10488cc0d3b515ef3b64646d030d3afada40d20fae5",
217
+ "affectsGlobalScope": false
218
+ },
219
+ "../src/_constants/times.ts": {
220
+ "version": "47dadc52b4ae7850a822786f403d3d8f14fb5a85c188e51301d418d63ba24d6e",
221
+ "signature": "23550ca7aef25dfa8dc22d24e60c391af2c6a5ae53ae76524f42ec3cb69e7f04",
222
+ "affectsGlobalScope": false
223
+ },
224
+ "../src/_models/control-models/dynamo-module-settings.ts": {
225
+ "version": "087910fea21e5dd14f24b3703a7f1f02d5990cb3251be69981339cbb19ea535e",
226
+ "signature": "42ad9b0c32049a150a16417db052c7a31b3ec0d5a8f4007ff13f9200a11996ae",
227
+ "affectsGlobalScope": false
228
+ },
229
+ "../src/_constants/module-settings/test-module-settings.ts": {
230
+ "version": "bfc08ef90df8804ba3155ec56e6e1baa5edd21673b46ee889feb582e4f4452f5",
231
+ "signature": "fe10f9c5c26936be4c4519a4005d0b65ae628e6e0878659e58e354a6c8fd53e9",
232
+ "affectsGlobalScope": false
233
+ },
234
+ "../src/_constants/module-settings/usage-module-settings.ts": {
235
+ "version": "e3e605f0d6df17aaf1737b9fab5e42156823b67407afc4dc749396d1fc6239d3",
236
+ "signature": "3f54dafcdb39a4a467d3034d0beee9dfacc72933374f7e41c94eee4aa2edd8b9",
237
+ "affectsGlobalScope": false
238
+ },
239
+ "../src/_models/control-models/geo-ip-location.ts": {
240
+ "version": "b8d36b7c50887f1a2bcd802c388d89983be5eb85f88e67e69d7febe849e63ee9",
241
+ "signature": "634f58c42bbb700eeb2c5741eb0ab67b21452cf98bfdfa733d61d087c1c75db4",
242
+ "affectsGlobalScope": false
243
+ },
244
+ "../src/_models/control-models/usage-action.ts": {
245
+ "version": "b5a70801bee8995ab4e4833514df24adba3b3d0cfae6a607f9c5bb93dff77cfa",
246
+ "signature": "753d1fbf27e2e3430bcce195669181bf357719bf417947a7a0faec715c084bef",
247
+ "affectsGlobalScope": false
248
+ },
249
+ "../src/_models/control-models/usage-data.ts": {
250
+ "version": "60692eaa9d89ff3979b916361625c4038f1246de1247c20ee117f425a1ecb1a6",
251
+ "signature": "aeff79d75f92b9be69e35cc640830b27ed8323789b13839e7f80bb503ac45f32",
252
+ "affectsGlobalScope": false
253
+ },
254
+ "../src/_models/data-models/usage-session.ts": {
255
+ "version": "8cd50fa8903f15c40f8cccbadf3a4bc197366ea7e9cf80ed4fea0fbdfc55c6a7",
256
+ "signature": "c16a6dd5d48f6cb7b3de76cbcd34c24e992beaaa91679b6b9a3e99189d0659e4",
257
+ "affectsGlobalScope": false
258
+ },
259
+ "../src/_models/control-models/daily-usage-data.ts": {
260
+ "version": "272b96ce5e1f1aa968b77534d644a13f7f3021fa4f2b9b20c0fb30341d5e39c5",
261
+ "signature": "8381932a1179a1144130d5b8ddfd7c4e430c53397b451baad85a5edf58109855",
262
+ "affectsGlobalScope": false
263
+ },
264
+ "../src/_models/control-models/location-coordinates.ts": {
265
+ "version": "c67beb74dd95cd9d0b08e98e0fb3d7b0f94d04834069a0f9d585e8c1dc14d8e7",
266
+ "signature": "ce6d673d643e705c8fa8695de2d9ca91985a8826db38718b48ac4b27806fd10c",
267
+ "affectsGlobalScope": false
268
+ },
269
+ "../src/_models/data-models/custom-data.ts": {
270
+ "version": "a9c7842a3b4b85d98aec9690e2fe6eb76e7614513fef85cbf0a83908628fd917",
271
+ "signature": "71f8fa5a038bec8bc0890a45542391059a73b0020522d443081e3f188bc88880",
272
+ "affectsGlobalScope": false
273
+ },
274
+ "../src/index.ts": {
275
+ "version": "287d6db57a5cac3df3bbb32edd6d8766a341ef206682a22c35404e08d20f1cea",
276
+ "signature": "dae186da8b3e4bdf33621ad0e04473b5a8395a2e8c9774fc27e0dd5fe1283998",
277
+ "affectsGlobalScope": false
278
+ },
279
+ "../node_modules/@types/node/globals.d.ts": {
280
+ "version": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
281
+ "signature": "6fc83519155969f2457d2454908d68830a6f6480974914c024eaf4e3248a2fd1",
282
+ "affectsGlobalScope": true
283
+ },
284
+ "../node_modules/@types/node/async_hooks.d.ts": {
285
+ "version": "4ed9f71ddbb5753771ee391f64297078a88f7dfd1480646dcf08c31395778682",
286
+ "signature": "4ed9f71ddbb5753771ee391f64297078a88f7dfd1480646dcf08c31395778682",
287
+ "affectsGlobalScope": false
288
+ },
289
+ "../node_modules/@types/node/buffer.d.ts": {
290
+ "version": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
291
+ "signature": "bc6a78961535181265845bf9b9e8a147ffd0ca275097ceb670a9b92afa825152",
292
+ "affectsGlobalScope": false
293
+ },
294
+ "../node_modules/@types/node/child_process.d.ts": {
295
+ "version": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
296
+ "signature": "714e21572208da98a16594de5e42ee54dbbebca7e69e956d2dac010564378c45",
297
+ "affectsGlobalScope": false
298
+ },
299
+ "../node_modules/@types/node/cluster.d.ts": {
300
+ "version": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
301
+ "signature": "123ec69e4b3a686eb49afd94ebe3292a5c84a867ecbcb6bb84bdd720a12af803",
302
+ "affectsGlobalScope": false
303
+ },
304
+ "../node_modules/@types/node/console.d.ts": {
305
+ "version": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
306
+ "signature": "51851805d06a6878796c3a00ccf0839fe18111a38d1bae84964c269f16bcc2b7",
307
+ "affectsGlobalScope": true
308
+ },
309
+ "../node_modules/@types/node/constants.d.ts": {
310
+ "version": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
311
+ "signature": "90c85ddbb8de82cd19198bda062065fc51b7407c0f206f2e399e65a52e979720",
312
+ "affectsGlobalScope": false
313
+ },
314
+ "../node_modules/@types/node/crypto.d.ts": {
315
+ "version": "bc99370962c617000b3f66ba97426142bf49daa5467c081c64a57ad7bc6bcc14",
316
+ "signature": "bc99370962c617000b3f66ba97426142bf49daa5467c081c64a57ad7bc6bcc14",
317
+ "affectsGlobalScope": false
318
+ },
319
+ "../node_modules/@types/node/dgram.d.ts": {
320
+ "version": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
321
+ "signature": "7ecfe97b43aa6c8b8f90caa599d5648bb559962e74e6f038f73a77320569dd78",
322
+ "affectsGlobalScope": false
323
+ },
324
+ "../node_modules/@types/node/dns.d.ts": {
325
+ "version": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
326
+ "signature": "7db7569fbb3e2b01ba8751c761cdd3f0debd104170d5665b7dc20a11630df3a9",
327
+ "affectsGlobalScope": false
328
+ },
329
+ "../node_modules/@types/node/domain.d.ts": {
330
+ "version": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
331
+ "signature": "cde4d7f6274468180fa39847b183aec22626e8212ff885d535c53f4cd7c225fd",
332
+ "affectsGlobalScope": true
333
+ },
334
+ "../node_modules/@types/node/events.d.ts": {
335
+ "version": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
336
+ "signature": "072b0ac82ae8fe05b0d4f2eadb7f6edd0ebd84175ecad2f9e09261290a86bcee",
337
+ "affectsGlobalScope": true
338
+ },
339
+ "../node_modules/@types/node/fs.d.ts": {
340
+ "version": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
341
+ "signature": "5a1eba6d050430241b27463e4917e1d30d3f5e242f47cab42619e4f7c5dea486",
342
+ "affectsGlobalScope": false
343
+ },
344
+ "../node_modules/@types/node/fs/promises.d.ts": {
345
+ "version": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
346
+ "signature": "fb28748ff8d015f52e99daee4f454e57cec1a22141f1257c317f3630a15edeb7",
347
+ "affectsGlobalScope": false
348
+ },
349
+ "../node_modules/@types/node/http.d.ts": {
350
+ "version": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
351
+ "signature": "27534007150d3d80f12fe48dc815b32bf9b92a7de058b52bfc21a256e9d18966",
352
+ "affectsGlobalScope": false
353
+ },
354
+ "../node_modules/@types/node/http2.d.ts": {
355
+ "version": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
356
+ "signature": "5d9394b829cfd504b2fe17287aaad8ce1dcfb2a2183c962a90a85b96da2c1c90",
357
+ "affectsGlobalScope": false
358
+ },
359
+ "../node_modules/@types/node/https.d.ts": {
360
+ "version": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
361
+ "signature": "c969bf4c7cdfe4d5dd28aa09432f99d09ad1d8d8b839959646579521d0467d1a",
362
+ "affectsGlobalScope": false
363
+ },
364
+ "../node_modules/@types/node/inspector.d.ts": {
365
+ "version": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
366
+ "signature": "6c3857edaeeaaf43812f527830ebeece9266b6e8eb5271ab6d2f0008306c9947",
367
+ "affectsGlobalScope": false
368
+ },
369
+ "../node_modules/@types/node/module.d.ts": {
370
+ "version": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
371
+ "signature": "bc6a77e750f4d34584e46b1405b771fb69a224197dd6bafe5b0392a29a70b665",
372
+ "affectsGlobalScope": false
373
+ },
374
+ "../node_modules/@types/node/net.d.ts": {
375
+ "version": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
376
+ "signature": "46cac76114704902baa535b30fb66a26aeaf9430f3b3ab44746e329f12e85498",
377
+ "affectsGlobalScope": false
378
+ },
379
+ "../node_modules/@types/node/os.d.ts": {
380
+ "version": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
381
+ "signature": "ed4ae81196cccc10f297d228bca8d02e31058e6d723a3c5bc4be5fb3c61c6a34",
382
+ "affectsGlobalScope": false
383
+ },
384
+ "../node_modules/@types/node/path.d.ts": {
385
+ "version": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
386
+ "signature": "84044697c8b3e08ef24e4b32cfe6440143d07e469a5e34bda0635276d32d9f35",
387
+ "affectsGlobalScope": false
388
+ },
389
+ "../node_modules/@types/node/perf_hooks.d.ts": {
390
+ "version": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
391
+ "signature": "0b6098fedb648cab8091cca2b022a5c729b6ef18da923852033f495907cb1a45",
392
+ "affectsGlobalScope": false
393
+ },
394
+ "../node_modules/@types/node/process.d.ts": {
395
+ "version": "6eaee45c02a226f96d34e0c6a7542873d0160af179bbf9ead42e05f6fc36f9e5",
396
+ "signature": "6eaee45c02a226f96d34e0c6a7542873d0160af179bbf9ead42e05f6fc36f9e5",
397
+ "affectsGlobalScope": true
398
+ },
399
+ "../node_modules/@types/node/punycode.d.ts": {
400
+ "version": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
401
+ "signature": "30ec6f9c683b988c3cfaa0c4690692049c4e7ed7dc6f6e94f56194c06b86f5e1",
402
+ "affectsGlobalScope": false
403
+ },
404
+ "../node_modules/@types/node/querystring.d.ts": {
405
+ "version": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
406
+ "signature": "884560fda6c3868f925f022adc3a1289fe6507bbb45adb10fa1bbcc73a941bb0",
407
+ "affectsGlobalScope": false
408
+ },
409
+ "../node_modules/@types/node/readline.d.ts": {
410
+ "version": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
411
+ "signature": "6b2bb67b0942bcfce93e1d6fad5f70afd54940a2b13df7f311201fba54b2cbe9",
412
+ "affectsGlobalScope": false
413
+ },
414
+ "../node_modules/@types/node/repl.d.ts": {
415
+ "version": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
416
+ "signature": "dd3706b25d06fe23c73d16079e8c66ac775831ef419da00716bf2aee530a04a4",
417
+ "affectsGlobalScope": false
418
+ },
419
+ "../node_modules/@types/node/stream.d.ts": {
420
+ "version": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
421
+ "signature": "1298327149e93a60c24a3b5db6048f7cc8fd4e3259e91d05fc44306a04b1b873",
422
+ "affectsGlobalScope": false
423
+ },
424
+ "../node_modules/@types/node/string_decoder.d.ts": {
425
+ "version": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
426
+ "signature": "d67e08745494b000da9410c1ae2fdc9965fc6d593fe0f381a47491f75417d457",
427
+ "affectsGlobalScope": false
428
+ },
429
+ "../node_modules/@types/node/timers.d.ts": {
430
+ "version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
431
+ "signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
432
+ "affectsGlobalScope": false
433
+ },
434
+ "../node_modules/@types/node/tls.d.ts": {
435
+ "version": "b268804feea68616eb0daad944359f46a2eac9b53a72a3d12bf328ef01207805",
436
+ "signature": "b268804feea68616eb0daad944359f46a2eac9b53a72a3d12bf328ef01207805",
437
+ "affectsGlobalScope": false
438
+ },
439
+ "../node_modules/@types/node/trace_events.d.ts": {
440
+ "version": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
441
+ "signature": "a77fdb357c78b70142b2fdbbfb72958d69e8f765fd2a3c69946c1018e89d4638",
442
+ "affectsGlobalScope": false
443
+ },
444
+ "../node_modules/@types/node/tty.d.ts": {
445
+ "version": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
446
+ "signature": "3c2ac350c3baa61fd2b1925844109e098f4376d0768a4643abc82754fd752748",
447
+ "affectsGlobalScope": false
448
+ },
449
+ "../node_modules/@types/node/url.d.ts": {
450
+ "version": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
451
+ "signature": "826d48e49c905cedb906cbde6ccaf758827ff5867d4daa006b5a79e0fb489357",
452
+ "affectsGlobalScope": false
453
+ },
454
+ "../node_modules/@types/node/util.d.ts": {
455
+ "version": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
456
+ "signature": "baa711b17f67390c60eac3c70a1391b23a8e3833cb723b2d7336d4817a22455c",
457
+ "affectsGlobalScope": false
458
+ },
459
+ "../node_modules/@types/node/v8.d.ts": {
460
+ "version": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
461
+ "signature": "289be113bad7ee27ee7fa5b1e373c964c9789a5e9ed7db5ddcb631371120b953",
462
+ "affectsGlobalScope": false
463
+ },
464
+ "../node_modules/@types/node/vm.d.ts": {
465
+ "version": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e",
466
+ "signature": "e4abb8eaa8a7d78236be0f8342404aab076668d20590209e32fdeb924588531e",
467
+ "affectsGlobalScope": false
468
+ },
469
+ "../node_modules/@types/node/worker_threads.d.ts": {
470
+ "version": "086bfc0710b044ce1586108ee56c6e1c0d9ca2d325c153bb026cbc850169f593",
471
+ "signature": "086bfc0710b044ce1586108ee56c6e1c0d9ca2d325c153bb026cbc850169f593",
472
+ "affectsGlobalScope": false
473
+ },
474
+ "../node_modules/@types/node/zlib.d.ts": {
475
+ "version": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
476
+ "signature": "f409183966a1dd93d3a9cd1d54fbeb85c73101e87cd5b19467c5e37b252f3fd8",
477
+ "affectsGlobalScope": false
478
+ },
479
+ "../node_modules/@types/node/base.d.ts": {
480
+ "version": "b46af749e3574b83bccc0ec829322b15e834ae90b45760eebc75a189c28c0868",
481
+ "signature": "b46af749e3574b83bccc0ec829322b15e834ae90b45760eebc75a189c28c0868",
482
+ "affectsGlobalScope": false
483
+ },
484
+ "../node_modules/@types/node/ts3.2/fs.d.ts": {
485
+ "version": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1",
486
+ "signature": "12b2608d6074167c331c9c3c6994a57819f6ff934c7fd4527e23aabf56d4c8d1",
487
+ "affectsGlobalScope": false
488
+ },
489
+ "../node_modules/@types/node/ts3.2/process.d.ts": {
490
+ "version": "ed9a167405a95168481b8b3ca6934565c8ed59de52f06e08b4c8b547e16b1257",
491
+ "signature": "ed9a167405a95168481b8b3ca6934565c8ed59de52f06e08b4c8b547e16b1257",
492
+ "affectsGlobalScope": true
493
+ },
494
+ "../node_modules/@types/node/ts3.2/util.d.ts": {
495
+ "version": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07",
496
+ "signature": "ffc1cd688606ad1ddb59a40e8f3defbde907af2a3402d1d9ddf69accb2903f07",
497
+ "affectsGlobalScope": false
498
+ },
499
+ "../node_modules/@types/node/ts3.2/globals.d.ts": {
500
+ "version": "0bd12336f0f61303a1f71e1ab0b2ae325489eb9c7896cd49eb96edc9f182cf07",
501
+ "signature": "0bd12336f0f61303a1f71e1ab0b2ae325489eb9c7896cd49eb96edc9f182cf07",
502
+ "affectsGlobalScope": true
503
+ },
504
+ "../node_modules/@types/node/ts3.2/base.d.ts": {
505
+ "version": "bf7aafaeb6b90aaad61e446a8ad36eb30f6ea0292953eefcb7fdca95582d5c98",
506
+ "signature": "bf7aafaeb6b90aaad61e446a8ad36eb30f6ea0292953eefcb7fdca95582d5c98",
507
+ "affectsGlobalScope": false
508
+ },
509
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts": {
510
+ "version": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
511
+ "signature": "2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1",
512
+ "affectsGlobalScope": true
513
+ },
514
+ "../node_modules/@types/node/ts3.5/wasi.d.ts": {
515
+ "version": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
516
+ "signature": "0b3fef11ea6208c4cb3715c9aa108766ce98fc726bfba68cc23b25ce944ce9c0",
517
+ "affectsGlobalScope": false
518
+ },
519
+ "../node_modules/@types/node/ts3.5/base.d.ts": {
520
+ "version": "255dbc5a5acef2b83b47145042aa0127ebf7fe24cd5ce6afaaaf5c8fc2c5eb96",
521
+ "signature": "255dbc5a5acef2b83b47145042aa0127ebf7fe24cd5ce6afaaaf5c8fc2c5eb96",
522
+ "affectsGlobalScope": false
523
+ },
524
+ "../node_modules/@types/node/ts3.7/assert.d.ts": {
525
+ "version": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
526
+ "signature": "a8b842671d535d14f533fd8dbfacebceacf5195069d720425d572d5cc5ab3dc4",
527
+ "affectsGlobalScope": false
528
+ },
529
+ "../node_modules/@types/node/ts3.7/base.d.ts": {
530
+ "version": "9779312cffccce68e3ffbaa3a876381dc54a8240d9bdaa448f7eba222ec19392",
531
+ "signature": "9779312cffccce68e3ffbaa3a876381dc54a8240d9bdaa448f7eba222ec19392",
532
+ "affectsGlobalScope": false
533
+ },
534
+ "../node_modules/@types/node/ts3.7/index.d.ts": {
535
+ "version": "d522314e80ed71b57e3c2939d3c9594eaae63a4adf028559e6574f6b270b0fee",
536
+ "signature": "d522314e80ed71b57e3c2939d3c9594eaae63a4adf028559e6574f6b270b0fee",
537
+ "affectsGlobalScope": false
538
+ }
539
+ },
540
+ "options": {
541
+ "incremental": true,
542
+ "target": 2,
543
+ "module": 1,
544
+ "lib": [
545
+ "lib.es2015.d.ts",
546
+ "lib.es2018.d.ts",
547
+ "lib.es2020.d.ts",
548
+ "lib.dom.d.ts"
549
+ ],
550
+ "allowJs": true,
551
+ "declaration": true,
552
+ "declarationMap": true,
553
+ "sourceMap": true,
554
+ "outDir": "./",
555
+ "importHelpers": true,
556
+ "moduleResolution": 2,
557
+ "esModuleInterop": true,
558
+ "skipLibCheck": true,
559
+ "forceConsistentCasingInFileNames": true,
560
+ "resolveJsonModule": true,
561
+ "configFilePath": "../tsconfig.json"
562
+ },
563
+ "referencedMap": {
564
+ "../node_modules/@types/node/async_hooks.d.ts": [
565
+ "../node_modules/@types/node/fs.d.ts",
566
+ "../node_modules/@types/node/process.d.ts",
567
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
568
+ "../node_modules/@types/node/ts3.2/process.d.ts",
569
+ "../node_modules/@types/node/ts3.2/util.d.ts",
570
+ "../node_modules/@types/node/util.d.ts"
571
+ ],
572
+ "../node_modules/@types/node/base.d.ts": [
573
+ "../node_modules/@types/node/async_hooks.d.ts",
574
+ "../node_modules/@types/node/buffer.d.ts",
575
+ "../node_modules/@types/node/child_process.d.ts",
576
+ "../node_modules/@types/node/cluster.d.ts",
577
+ "../node_modules/@types/node/console.d.ts",
578
+ "../node_modules/@types/node/constants.d.ts",
579
+ "../node_modules/@types/node/crypto.d.ts",
580
+ "../node_modules/@types/node/dgram.d.ts",
581
+ "../node_modules/@types/node/dns.d.ts",
582
+ "../node_modules/@types/node/domain.d.ts",
583
+ "../node_modules/@types/node/events.d.ts",
584
+ "../node_modules/@types/node/fs.d.ts",
585
+ "../node_modules/@types/node/fs/promises.d.ts",
586
+ "../node_modules/@types/node/globals.d.ts",
587
+ "../node_modules/@types/node/http.d.ts",
588
+ "../node_modules/@types/node/http2.d.ts",
589
+ "../node_modules/@types/node/https.d.ts",
590
+ "../node_modules/@types/node/inspector.d.ts",
591
+ "../node_modules/@types/node/module.d.ts",
592
+ "../node_modules/@types/node/net.d.ts",
593
+ "../node_modules/@types/node/os.d.ts",
594
+ "../node_modules/@types/node/path.d.ts",
595
+ "../node_modules/@types/node/perf_hooks.d.ts",
596
+ "../node_modules/@types/node/process.d.ts",
597
+ "../node_modules/@types/node/punycode.d.ts",
598
+ "../node_modules/@types/node/querystring.d.ts",
599
+ "../node_modules/@types/node/readline.d.ts",
600
+ "../node_modules/@types/node/repl.d.ts",
601
+ "../node_modules/@types/node/stream.d.ts",
602
+ "../node_modules/@types/node/string_decoder.d.ts",
603
+ "../node_modules/@types/node/timers.d.ts",
604
+ "../node_modules/@types/node/tls.d.ts",
605
+ "../node_modules/@types/node/trace_events.d.ts",
606
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
607
+ "../node_modules/@types/node/ts3.2/process.d.ts",
608
+ "../node_modules/@types/node/ts3.2/util.d.ts",
609
+ "../node_modules/@types/node/tty.d.ts",
610
+ "../node_modules/@types/node/url.d.ts",
611
+ "../node_modules/@types/node/util.d.ts",
612
+ "../node_modules/@types/node/v8.d.ts",
613
+ "../node_modules/@types/node/vm.d.ts",
614
+ "../node_modules/@types/node/worker_threads.d.ts",
615
+ "../node_modules/@types/node/zlib.d.ts"
616
+ ],
617
+ "../node_modules/@types/node/buffer.d.ts": [
618
+ "../node_modules/@types/node/fs.d.ts",
619
+ "../node_modules/@types/node/process.d.ts",
620
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
621
+ "../node_modules/@types/node/ts3.2/process.d.ts",
622
+ "../node_modules/@types/node/ts3.2/util.d.ts",
623
+ "../node_modules/@types/node/util.d.ts"
624
+ ],
625
+ "../node_modules/@types/node/child_process.d.ts": [
626
+ "../node_modules/@types/node/events.d.ts",
627
+ "../node_modules/@types/node/fs.d.ts",
628
+ "../node_modules/@types/node/net.d.ts",
629
+ "../node_modules/@types/node/process.d.ts",
630
+ "../node_modules/@types/node/stream.d.ts",
631
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
632
+ "../node_modules/@types/node/ts3.2/process.d.ts",
633
+ "../node_modules/@types/node/ts3.2/util.d.ts",
634
+ "../node_modules/@types/node/util.d.ts"
635
+ ],
636
+ "../node_modules/@types/node/cluster.d.ts": [
637
+ "../node_modules/@types/node/child_process.d.ts",
638
+ "../node_modules/@types/node/events.d.ts",
639
+ "../node_modules/@types/node/fs.d.ts",
640
+ "../node_modules/@types/node/net.d.ts",
641
+ "../node_modules/@types/node/process.d.ts",
642
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
643
+ "../node_modules/@types/node/ts3.2/process.d.ts",
644
+ "../node_modules/@types/node/ts3.2/util.d.ts",
645
+ "../node_modules/@types/node/util.d.ts"
646
+ ],
647
+ "../node_modules/@types/node/console.d.ts": [
648
+ "../node_modules/@types/node/fs.d.ts",
649
+ "../node_modules/@types/node/process.d.ts",
650
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
651
+ "../node_modules/@types/node/ts3.2/process.d.ts",
652
+ "../node_modules/@types/node/ts3.2/util.d.ts",
653
+ "../node_modules/@types/node/util.d.ts"
654
+ ],
655
+ "../node_modules/@types/node/constants.d.ts": [
656
+ "../node_modules/@types/node/crypto.d.ts",
657
+ "../node_modules/@types/node/fs.d.ts",
658
+ "../node_modules/@types/node/os.d.ts",
659
+ "../node_modules/@types/node/process.d.ts",
660
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
661
+ "../node_modules/@types/node/ts3.2/process.d.ts",
662
+ "../node_modules/@types/node/ts3.2/util.d.ts",
663
+ "../node_modules/@types/node/util.d.ts"
664
+ ],
665
+ "../node_modules/@types/node/crypto.d.ts": [
666
+ "../node_modules/@types/node/fs.d.ts",
667
+ "../node_modules/@types/node/process.d.ts",
668
+ "../node_modules/@types/node/stream.d.ts",
669
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
670
+ "../node_modules/@types/node/ts3.2/process.d.ts",
671
+ "../node_modules/@types/node/ts3.2/util.d.ts",
672
+ "../node_modules/@types/node/util.d.ts"
673
+ ],
674
+ "../node_modules/@types/node/dgram.d.ts": [
675
+ "../node_modules/@types/node/dns.d.ts",
676
+ "../node_modules/@types/node/events.d.ts",
677
+ "../node_modules/@types/node/fs.d.ts",
678
+ "../node_modules/@types/node/net.d.ts",
679
+ "../node_modules/@types/node/process.d.ts",
680
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
681
+ "../node_modules/@types/node/ts3.2/process.d.ts",
682
+ "../node_modules/@types/node/ts3.2/util.d.ts",
683
+ "../node_modules/@types/node/util.d.ts"
684
+ ],
685
+ "../node_modules/@types/node/dns.d.ts": [
686
+ "../node_modules/@types/node/fs.d.ts",
687
+ "../node_modules/@types/node/process.d.ts",
688
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
689
+ "../node_modules/@types/node/ts3.2/process.d.ts",
690
+ "../node_modules/@types/node/ts3.2/util.d.ts",
691
+ "../node_modules/@types/node/util.d.ts"
692
+ ],
693
+ "../node_modules/@types/node/domain.d.ts": [
694
+ "../node_modules/@types/node/events.d.ts",
695
+ "../node_modules/@types/node/fs.d.ts",
696
+ "../node_modules/@types/node/process.d.ts",
697
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
698
+ "../node_modules/@types/node/ts3.2/process.d.ts",
699
+ "../node_modules/@types/node/ts3.2/util.d.ts",
700
+ "../node_modules/@types/node/util.d.ts"
701
+ ],
702
+ "../node_modules/@types/node/events.d.ts": [
703
+ "../node_modules/@types/node/fs.d.ts",
704
+ "../node_modules/@types/node/process.d.ts",
705
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
706
+ "../node_modules/@types/node/ts3.2/process.d.ts",
707
+ "../node_modules/@types/node/ts3.2/util.d.ts",
708
+ "../node_modules/@types/node/util.d.ts"
709
+ ],
710
+ "../node_modules/@types/node/fs.d.ts": [
711
+ "../node_modules/@types/node/events.d.ts",
712
+ "../node_modules/@types/node/fs/promises.d.ts",
713
+ "../node_modules/@types/node/process.d.ts",
714
+ "../node_modules/@types/node/stream.d.ts",
715
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
716
+ "../node_modules/@types/node/ts3.2/process.d.ts",
717
+ "../node_modules/@types/node/ts3.2/util.d.ts",
718
+ "../node_modules/@types/node/url.d.ts",
719
+ "../node_modules/@types/node/util.d.ts"
720
+ ],
721
+ "../node_modules/@types/node/fs/promises.d.ts": [
722
+ "../node_modules/@types/node/fs.d.ts",
723
+ "../node_modules/@types/node/process.d.ts",
724
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
725
+ "../node_modules/@types/node/ts3.2/process.d.ts",
726
+ "../node_modules/@types/node/ts3.2/util.d.ts",
727
+ "../node_modules/@types/node/util.d.ts"
728
+ ],
729
+ "../node_modules/@types/node/globals.d.ts": [
730
+ "../node_modules/@types/node/fs.d.ts",
731
+ "../node_modules/@types/node/process.d.ts",
732
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
733
+ "../node_modules/@types/node/ts3.2/process.d.ts",
734
+ "../node_modules/@types/node/ts3.2/util.d.ts",
735
+ "../node_modules/@types/node/util.d.ts"
736
+ ],
737
+ "../node_modules/@types/node/http.d.ts": [
738
+ "../node_modules/@types/node/fs.d.ts",
739
+ "../node_modules/@types/node/net.d.ts",
740
+ "../node_modules/@types/node/process.d.ts",
741
+ "../node_modules/@types/node/stream.d.ts",
742
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
743
+ "../node_modules/@types/node/ts3.2/process.d.ts",
744
+ "../node_modules/@types/node/ts3.2/util.d.ts",
745
+ "../node_modules/@types/node/url.d.ts",
746
+ "../node_modules/@types/node/util.d.ts"
747
+ ],
748
+ "../node_modules/@types/node/http2.d.ts": [
749
+ "../node_modules/@types/node/events.d.ts",
750
+ "../node_modules/@types/node/fs.d.ts",
751
+ "../node_modules/@types/node/http.d.ts",
752
+ "../node_modules/@types/node/net.d.ts",
753
+ "../node_modules/@types/node/process.d.ts",
754
+ "../node_modules/@types/node/stream.d.ts",
755
+ "../node_modules/@types/node/tls.d.ts",
756
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
757
+ "../node_modules/@types/node/ts3.2/process.d.ts",
758
+ "../node_modules/@types/node/ts3.2/util.d.ts",
759
+ "../node_modules/@types/node/url.d.ts",
760
+ "../node_modules/@types/node/util.d.ts"
761
+ ],
762
+ "../node_modules/@types/node/https.d.ts": [
763
+ "../node_modules/@types/node/events.d.ts",
764
+ "../node_modules/@types/node/fs.d.ts",
765
+ "../node_modules/@types/node/http.d.ts",
766
+ "../node_modules/@types/node/process.d.ts",
767
+ "../node_modules/@types/node/tls.d.ts",
768
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
769
+ "../node_modules/@types/node/ts3.2/process.d.ts",
770
+ "../node_modules/@types/node/ts3.2/util.d.ts",
771
+ "../node_modules/@types/node/url.d.ts",
772
+ "../node_modules/@types/node/util.d.ts"
773
+ ],
774
+ "../node_modules/@types/node/inspector.d.ts": [
775
+ "../node_modules/@types/node/events.d.ts",
776
+ "../node_modules/@types/node/fs.d.ts",
777
+ "../node_modules/@types/node/process.d.ts",
778
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
779
+ "../node_modules/@types/node/ts3.2/process.d.ts",
780
+ "../node_modules/@types/node/ts3.2/util.d.ts",
781
+ "../node_modules/@types/node/util.d.ts"
782
+ ],
783
+ "../node_modules/@types/node/module.d.ts": [
784
+ "../node_modules/@types/node/fs.d.ts",
785
+ "../node_modules/@types/node/process.d.ts",
786
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
787
+ "../node_modules/@types/node/ts3.2/process.d.ts",
788
+ "../node_modules/@types/node/ts3.2/util.d.ts",
789
+ "../node_modules/@types/node/url.d.ts",
790
+ "../node_modules/@types/node/util.d.ts"
791
+ ],
792
+ "../node_modules/@types/node/net.d.ts": [
793
+ "../node_modules/@types/node/dns.d.ts",
794
+ "../node_modules/@types/node/events.d.ts",
795
+ "../node_modules/@types/node/fs.d.ts",
796
+ "../node_modules/@types/node/process.d.ts",
797
+ "../node_modules/@types/node/stream.d.ts",
798
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
799
+ "../node_modules/@types/node/ts3.2/process.d.ts",
800
+ "../node_modules/@types/node/ts3.2/util.d.ts",
801
+ "../node_modules/@types/node/util.d.ts"
802
+ ],
803
+ "../node_modules/@types/node/os.d.ts": [
804
+ "../node_modules/@types/node/fs.d.ts",
805
+ "../node_modules/@types/node/process.d.ts",
806
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
807
+ "../node_modules/@types/node/ts3.2/process.d.ts",
808
+ "../node_modules/@types/node/ts3.2/util.d.ts",
809
+ "../node_modules/@types/node/util.d.ts"
810
+ ],
811
+ "../node_modules/@types/node/path.d.ts": [
812
+ "../node_modules/@types/node/fs.d.ts",
813
+ "../node_modules/@types/node/process.d.ts",
814
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
815
+ "../node_modules/@types/node/ts3.2/process.d.ts",
816
+ "../node_modules/@types/node/ts3.2/util.d.ts",
817
+ "../node_modules/@types/node/util.d.ts"
818
+ ],
819
+ "../node_modules/@types/node/perf_hooks.d.ts": [
820
+ "../node_modules/@types/node/async_hooks.d.ts",
821
+ "../node_modules/@types/node/fs.d.ts",
822
+ "../node_modules/@types/node/process.d.ts",
823
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
824
+ "../node_modules/@types/node/ts3.2/process.d.ts",
825
+ "../node_modules/@types/node/ts3.2/util.d.ts",
826
+ "../node_modules/@types/node/util.d.ts"
827
+ ],
828
+ "../node_modules/@types/node/process.d.ts": [
829
+ "../node_modules/@types/node/fs.d.ts",
830
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
831
+ "../node_modules/@types/node/ts3.2/process.d.ts",
832
+ "../node_modules/@types/node/ts3.2/util.d.ts",
833
+ "../node_modules/@types/node/tty.d.ts",
834
+ "../node_modules/@types/node/util.d.ts"
835
+ ],
836
+ "../node_modules/@types/node/punycode.d.ts": [
837
+ "../node_modules/@types/node/fs.d.ts",
838
+ "../node_modules/@types/node/process.d.ts",
839
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
840
+ "../node_modules/@types/node/ts3.2/process.d.ts",
841
+ "../node_modules/@types/node/ts3.2/util.d.ts",
842
+ "../node_modules/@types/node/util.d.ts"
843
+ ],
844
+ "../node_modules/@types/node/querystring.d.ts": [
845
+ "../node_modules/@types/node/fs.d.ts",
846
+ "../node_modules/@types/node/process.d.ts",
847
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
848
+ "../node_modules/@types/node/ts3.2/process.d.ts",
849
+ "../node_modules/@types/node/ts3.2/util.d.ts",
850
+ "../node_modules/@types/node/util.d.ts"
851
+ ],
852
+ "../node_modules/@types/node/readline.d.ts": [
853
+ "../node_modules/@types/node/events.d.ts",
854
+ "../node_modules/@types/node/fs.d.ts",
855
+ "../node_modules/@types/node/process.d.ts",
856
+ "../node_modules/@types/node/stream.d.ts",
857
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
858
+ "../node_modules/@types/node/ts3.2/process.d.ts",
859
+ "../node_modules/@types/node/ts3.2/util.d.ts",
860
+ "../node_modules/@types/node/util.d.ts"
861
+ ],
862
+ "../node_modules/@types/node/repl.d.ts": [
863
+ "../node_modules/@types/node/fs.d.ts",
864
+ "../node_modules/@types/node/process.d.ts",
865
+ "../node_modules/@types/node/readline.d.ts",
866
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
867
+ "../node_modules/@types/node/ts3.2/process.d.ts",
868
+ "../node_modules/@types/node/ts3.2/util.d.ts",
869
+ "../node_modules/@types/node/util.d.ts",
870
+ "../node_modules/@types/node/vm.d.ts"
871
+ ],
872
+ "../node_modules/@types/node/stream.d.ts": [
873
+ "../node_modules/@types/node/events.d.ts",
874
+ "../node_modules/@types/node/fs.d.ts",
875
+ "../node_modules/@types/node/process.d.ts",
876
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
877
+ "../node_modules/@types/node/ts3.2/process.d.ts",
878
+ "../node_modules/@types/node/ts3.2/util.d.ts",
879
+ "../node_modules/@types/node/util.d.ts"
880
+ ],
881
+ "../node_modules/@types/node/string_decoder.d.ts": [
882
+ "../node_modules/@types/node/fs.d.ts",
883
+ "../node_modules/@types/node/process.d.ts",
884
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
885
+ "../node_modules/@types/node/ts3.2/process.d.ts",
886
+ "../node_modules/@types/node/ts3.2/util.d.ts",
887
+ "../node_modules/@types/node/util.d.ts"
888
+ ],
889
+ "../node_modules/@types/node/timers.d.ts": [
890
+ "../node_modules/@types/node/fs.d.ts",
891
+ "../node_modules/@types/node/process.d.ts",
892
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
893
+ "../node_modules/@types/node/ts3.2/process.d.ts",
894
+ "../node_modules/@types/node/ts3.2/util.d.ts",
895
+ "../node_modules/@types/node/util.d.ts"
896
+ ],
897
+ "../node_modules/@types/node/tls.d.ts": [
898
+ "../node_modules/@types/node/crypto.d.ts",
899
+ "../node_modules/@types/node/dns.d.ts",
900
+ "../node_modules/@types/node/fs.d.ts",
901
+ "../node_modules/@types/node/net.d.ts",
902
+ "../node_modules/@types/node/process.d.ts",
903
+ "../node_modules/@types/node/stream.d.ts",
904
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
905
+ "../node_modules/@types/node/ts3.2/process.d.ts",
906
+ "../node_modules/@types/node/ts3.2/util.d.ts",
907
+ "../node_modules/@types/node/util.d.ts"
908
+ ],
909
+ "../node_modules/@types/node/trace_events.d.ts": [
910
+ "../node_modules/@types/node/fs.d.ts",
911
+ "../node_modules/@types/node/process.d.ts",
912
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
913
+ "../node_modules/@types/node/ts3.2/process.d.ts",
914
+ "../node_modules/@types/node/ts3.2/util.d.ts",
915
+ "../node_modules/@types/node/util.d.ts"
916
+ ],
917
+ "../node_modules/@types/node/ts3.2/base.d.ts": [
918
+ "../node_modules/@types/node/base.d.ts",
919
+ "../node_modules/@types/node/fs.d.ts",
920
+ "../node_modules/@types/node/process.d.ts",
921
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
922
+ "../node_modules/@types/node/ts3.2/globals.d.ts",
923
+ "../node_modules/@types/node/ts3.2/process.d.ts",
924
+ "../node_modules/@types/node/ts3.2/util.d.ts",
925
+ "../node_modules/@types/node/util.d.ts"
926
+ ],
927
+ "../node_modules/@types/node/ts3.2/fs.d.ts": [
928
+ "../node_modules/@types/node/fs.d.ts",
929
+ "../node_modules/@types/node/process.d.ts",
930
+ "../node_modules/@types/node/ts3.2/process.d.ts",
931
+ "../node_modules/@types/node/ts3.2/util.d.ts",
932
+ "../node_modules/@types/node/util.d.ts"
933
+ ],
934
+ "../node_modules/@types/node/ts3.2/globals.d.ts": [
935
+ "../node_modules/@types/node/fs.d.ts",
936
+ "../node_modules/@types/node/globals.d.ts",
937
+ "../node_modules/@types/node/process.d.ts",
938
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
939
+ "../node_modules/@types/node/ts3.2/process.d.ts",
940
+ "../node_modules/@types/node/ts3.2/util.d.ts",
941
+ "../node_modules/@types/node/util.d.ts"
942
+ ],
943
+ "../node_modules/@types/node/ts3.2/process.d.ts": [
944
+ "../node_modules/@types/node/fs.d.ts",
945
+ "../node_modules/@types/node/process.d.ts",
946
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
947
+ "../node_modules/@types/node/ts3.2/util.d.ts",
948
+ "../node_modules/@types/node/util.d.ts"
949
+ ],
950
+ "../node_modules/@types/node/ts3.2/util.d.ts": [
951
+ "../node_modules/@types/node/fs.d.ts",
952
+ "../node_modules/@types/node/process.d.ts",
953
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
954
+ "../node_modules/@types/node/ts3.2/process.d.ts",
955
+ "../node_modules/@types/node/util.d.ts"
956
+ ],
957
+ "../node_modules/@types/node/ts3.5/base.d.ts": [
958
+ "../node_modules/@types/node/fs.d.ts",
959
+ "../node_modules/@types/node/process.d.ts",
960
+ "../node_modules/@types/node/ts3.2/base.d.ts",
961
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
962
+ "../node_modules/@types/node/ts3.2/process.d.ts",
963
+ "../node_modules/@types/node/ts3.2/util.d.ts",
964
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts",
965
+ "../node_modules/@types/node/ts3.5/wasi.d.ts",
966
+ "../node_modules/@types/node/util.d.ts"
967
+ ],
968
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts": [
969
+ "../node_modules/@types/node/fs.d.ts",
970
+ "../node_modules/@types/node/process.d.ts",
971
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
972
+ "../node_modules/@types/node/ts3.2/process.d.ts",
973
+ "../node_modules/@types/node/ts3.2/util.d.ts",
974
+ "../node_modules/@types/node/util.d.ts"
975
+ ],
976
+ "../node_modules/@types/node/ts3.5/wasi.d.ts": [
977
+ "../node_modules/@types/node/fs.d.ts",
978
+ "../node_modules/@types/node/process.d.ts",
979
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
980
+ "../node_modules/@types/node/ts3.2/process.d.ts",
981
+ "../node_modules/@types/node/ts3.2/util.d.ts",
982
+ "../node_modules/@types/node/util.d.ts"
983
+ ],
984
+ "../node_modules/@types/node/ts3.7/assert.d.ts": [
985
+ "../node_modules/@types/node/fs.d.ts",
986
+ "../node_modules/@types/node/process.d.ts",
987
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
988
+ "../node_modules/@types/node/ts3.2/process.d.ts",
989
+ "../node_modules/@types/node/ts3.2/util.d.ts",
990
+ "../node_modules/@types/node/util.d.ts"
991
+ ],
992
+ "../node_modules/@types/node/ts3.7/base.d.ts": [
993
+ "../node_modules/@types/node/fs.d.ts",
994
+ "../node_modules/@types/node/process.d.ts",
995
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
996
+ "../node_modules/@types/node/ts3.2/process.d.ts",
997
+ "../node_modules/@types/node/ts3.2/util.d.ts",
998
+ "../node_modules/@types/node/ts3.5/base.d.ts",
999
+ "../node_modules/@types/node/ts3.7/assert.d.ts",
1000
+ "../node_modules/@types/node/util.d.ts"
1001
+ ],
1002
+ "../node_modules/@types/node/ts3.7/index.d.ts": [
1003
+ "../node_modules/@types/node/fs.d.ts",
1004
+ "../node_modules/@types/node/process.d.ts",
1005
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1006
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1007
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1008
+ "../node_modules/@types/node/ts3.7/base.d.ts",
1009
+ "../node_modules/@types/node/util.d.ts"
1010
+ ],
1011
+ "../node_modules/@types/node/tty.d.ts": [
1012
+ "../node_modules/@types/node/fs.d.ts",
1013
+ "../node_modules/@types/node/net.d.ts",
1014
+ "../node_modules/@types/node/process.d.ts",
1015
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1016
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1017
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1018
+ "../node_modules/@types/node/util.d.ts"
1019
+ ],
1020
+ "../node_modules/@types/node/url.d.ts": [
1021
+ "../node_modules/@types/node/fs.d.ts",
1022
+ "../node_modules/@types/node/process.d.ts",
1023
+ "../node_modules/@types/node/querystring.d.ts",
1024
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1025
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1026
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1027
+ "../node_modules/@types/node/util.d.ts"
1028
+ ],
1029
+ "../node_modules/@types/node/util.d.ts": [
1030
+ "../node_modules/@types/node/fs.d.ts",
1031
+ "../node_modules/@types/node/process.d.ts",
1032
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1033
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1034
+ "../node_modules/@types/node/ts3.2/util.d.ts"
1035
+ ],
1036
+ "../node_modules/@types/node/v8.d.ts": [
1037
+ "../node_modules/@types/node/fs.d.ts",
1038
+ "../node_modules/@types/node/process.d.ts",
1039
+ "../node_modules/@types/node/stream.d.ts",
1040
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1041
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1042
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1043
+ "../node_modules/@types/node/util.d.ts"
1044
+ ],
1045
+ "../node_modules/@types/node/vm.d.ts": [
1046
+ "../node_modules/@types/node/fs.d.ts",
1047
+ "../node_modules/@types/node/process.d.ts",
1048
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1049
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1050
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1051
+ "../node_modules/@types/node/util.d.ts"
1052
+ ],
1053
+ "../node_modules/@types/node/worker_threads.d.ts": [
1054
+ "../node_modules/@types/node/events.d.ts",
1055
+ "../node_modules/@types/node/fs.d.ts",
1056
+ "../node_modules/@types/node/process.d.ts",
1057
+ "../node_modules/@types/node/stream.d.ts",
1058
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1059
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1060
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1061
+ "../node_modules/@types/node/url.d.ts",
1062
+ "../node_modules/@types/node/util.d.ts",
1063
+ "../node_modules/@types/node/vm.d.ts"
1064
+ ],
1065
+ "../node_modules/@types/node/zlib.d.ts": [
1066
+ "../node_modules/@types/node/fs.d.ts",
1067
+ "../node_modules/@types/node/process.d.ts",
1068
+ "../node_modules/@types/node/stream.d.ts",
1069
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1070
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1071
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1072
+ "../node_modules/@types/node/util.d.ts"
1073
+ ],
1074
+ "../node_modules/tslib/tslib.d.ts": [
1075
+ "../node_modules/@types/node/fs.d.ts",
1076
+ "../node_modules/@types/node/process.d.ts",
1077
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1078
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1079
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1080
+ "../node_modules/@types/node/util.d.ts"
1081
+ ],
1082
+ "../node_modules/typescript/lib/lib.dom.d.ts": [
1083
+ "../node_modules/@types/node/fs.d.ts",
1084
+ "../node_modules/@types/node/process.d.ts",
1085
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1086
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1087
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1088
+ "../node_modules/@types/node/util.d.ts"
1089
+ ],
1090
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
1091
+ "../node_modules/@types/node/fs.d.ts",
1092
+ "../node_modules/@types/node/process.d.ts",
1093
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1094
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1095
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1096
+ "../node_modules/@types/node/util.d.ts"
1097
+ ],
1098
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts": [
1099
+ "../node_modules/@types/node/fs.d.ts",
1100
+ "../node_modules/@types/node/process.d.ts",
1101
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1102
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1103
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1104
+ "../node_modules/@types/node/util.d.ts"
1105
+ ],
1106
+ "../node_modules/typescript/lib/lib.es2015.d.ts": [
1107
+ "../node_modules/@types/node/fs.d.ts",
1108
+ "../node_modules/@types/node/process.d.ts",
1109
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1110
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1111
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1112
+ "../node_modules/@types/node/util.d.ts"
1113
+ ],
1114
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
1115
+ "../node_modules/@types/node/fs.d.ts",
1116
+ "../node_modules/@types/node/process.d.ts",
1117
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1118
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1119
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1120
+ "../node_modules/@types/node/util.d.ts"
1121
+ ],
1122
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
1123
+ "../node_modules/@types/node/fs.d.ts",
1124
+ "../node_modules/@types/node/process.d.ts",
1125
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1126
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1127
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1128
+ "../node_modules/@types/node/util.d.ts"
1129
+ ],
1130
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
1131
+ "../node_modules/@types/node/fs.d.ts",
1132
+ "../node_modules/@types/node/process.d.ts",
1133
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1134
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1135
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1136
+ "../node_modules/@types/node/util.d.ts"
1137
+ ],
1138
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
1139
+ "../node_modules/@types/node/fs.d.ts",
1140
+ "../node_modules/@types/node/process.d.ts",
1141
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1142
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1143
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1144
+ "../node_modules/@types/node/util.d.ts"
1145
+ ],
1146
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
1147
+ "../node_modules/@types/node/fs.d.ts",
1148
+ "../node_modules/@types/node/process.d.ts",
1149
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1150
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1151
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1152
+ "../node_modules/@types/node/util.d.ts"
1153
+ ],
1154
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
1155
+ "../node_modules/@types/node/fs.d.ts",
1156
+ "../node_modules/@types/node/process.d.ts",
1157
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1158
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1159
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1160
+ "../node_modules/@types/node/util.d.ts"
1161
+ ],
1162
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
1163
+ "../node_modules/@types/node/fs.d.ts",
1164
+ "../node_modules/@types/node/process.d.ts",
1165
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1166
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1167
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1168
+ "../node_modules/@types/node/util.d.ts"
1169
+ ],
1170
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
1171
+ "../node_modules/@types/node/fs.d.ts",
1172
+ "../node_modules/@types/node/process.d.ts",
1173
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1174
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1175
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1176
+ "../node_modules/@types/node/util.d.ts"
1177
+ ],
1178
+ "../node_modules/typescript/lib/lib.es2016.d.ts": [
1179
+ "../node_modules/@types/node/fs.d.ts",
1180
+ "../node_modules/@types/node/process.d.ts",
1181
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1182
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1183
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1184
+ "../node_modules/@types/node/util.d.ts"
1185
+ ],
1186
+ "../node_modules/typescript/lib/lib.es2017.d.ts": [
1187
+ "../node_modules/@types/node/fs.d.ts",
1188
+ "../node_modules/@types/node/process.d.ts",
1189
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1190
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1191
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1192
+ "../node_modules/@types/node/util.d.ts"
1193
+ ],
1194
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
1195
+ "../node_modules/@types/node/fs.d.ts",
1196
+ "../node_modules/@types/node/process.d.ts",
1197
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1198
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1199
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1200
+ "../node_modules/@types/node/util.d.ts"
1201
+ ],
1202
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts": [
1203
+ "../node_modules/@types/node/fs.d.ts",
1204
+ "../node_modules/@types/node/process.d.ts",
1205
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1206
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1207
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1208
+ "../node_modules/@types/node/util.d.ts"
1209
+ ],
1210
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
1211
+ "../node_modules/@types/node/fs.d.ts",
1212
+ "../node_modules/@types/node/process.d.ts",
1213
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1214
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1215
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1216
+ "../node_modules/@types/node/util.d.ts"
1217
+ ],
1218
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts": [
1219
+ "../node_modules/@types/node/fs.d.ts",
1220
+ "../node_modules/@types/node/process.d.ts",
1221
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1222
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1223
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1224
+ "../node_modules/@types/node/util.d.ts"
1225
+ ],
1226
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
1227
+ "../node_modules/@types/node/fs.d.ts",
1228
+ "../node_modules/@types/node/process.d.ts",
1229
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1230
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1231
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1232
+ "../node_modules/@types/node/util.d.ts"
1233
+ ],
1234
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
1235
+ "../node_modules/@types/node/fs.d.ts",
1236
+ "../node_modules/@types/node/process.d.ts",
1237
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1238
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1239
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1240
+ "../node_modules/@types/node/util.d.ts"
1241
+ ],
1242
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
1243
+ "../node_modules/@types/node/fs.d.ts",
1244
+ "../node_modules/@types/node/process.d.ts",
1245
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1246
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1247
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1248
+ "../node_modules/@types/node/util.d.ts"
1249
+ ],
1250
+ "../node_modules/typescript/lib/lib.es2018.d.ts": [
1251
+ "../node_modules/@types/node/fs.d.ts",
1252
+ "../node_modules/@types/node/process.d.ts",
1253
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1254
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1255
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1256
+ "../node_modules/@types/node/util.d.ts"
1257
+ ],
1258
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
1259
+ "../node_modules/@types/node/fs.d.ts",
1260
+ "../node_modules/@types/node/process.d.ts",
1261
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1262
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1263
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1264
+ "../node_modules/@types/node/util.d.ts"
1265
+ ],
1266
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
1267
+ "../node_modules/@types/node/fs.d.ts",
1268
+ "../node_modules/@types/node/process.d.ts",
1269
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1270
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1271
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1272
+ "../node_modules/@types/node/util.d.ts"
1273
+ ],
1274
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
1275
+ "../node_modules/@types/node/fs.d.ts",
1276
+ "../node_modules/@types/node/process.d.ts",
1277
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1278
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1279
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1280
+ "../node_modules/@types/node/util.d.ts"
1281
+ ],
1282
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts": [
1283
+ "../node_modules/@types/node/fs.d.ts",
1284
+ "../node_modules/@types/node/process.d.ts",
1285
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1286
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1287
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1288
+ "../node_modules/@types/node/util.d.ts"
1289
+ ],
1290
+ "../node_modules/typescript/lib/lib.es2019.d.ts": [
1291
+ "../node_modules/@types/node/fs.d.ts",
1292
+ "../node_modules/@types/node/process.d.ts",
1293
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1294
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1295
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1296
+ "../node_modules/@types/node/util.d.ts"
1297
+ ],
1298
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts": [
1299
+ "../node_modules/@types/node/fs.d.ts",
1300
+ "../node_modules/@types/node/process.d.ts",
1301
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1302
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1303
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1304
+ "../node_modules/@types/node/util.d.ts"
1305
+ ],
1306
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts": [
1307
+ "../node_modules/@types/node/fs.d.ts",
1308
+ "../node_modules/@types/node/process.d.ts",
1309
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1310
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1311
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1312
+ "../node_modules/@types/node/util.d.ts"
1313
+ ],
1314
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
1315
+ "../node_modules/@types/node/fs.d.ts",
1316
+ "../node_modules/@types/node/process.d.ts",
1317
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1318
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1319
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1320
+ "../node_modules/@types/node/util.d.ts"
1321
+ ],
1322
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
1323
+ "../node_modules/@types/node/fs.d.ts",
1324
+ "../node_modules/@types/node/process.d.ts",
1325
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1326
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1327
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1328
+ "../node_modules/@types/node/util.d.ts"
1329
+ ],
1330
+ "../node_modules/typescript/lib/lib.es2020.d.ts": [
1331
+ "../node_modules/@types/node/fs.d.ts",
1332
+ "../node_modules/@types/node/process.d.ts",
1333
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1334
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1335
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1336
+ "../node_modules/@types/node/util.d.ts"
1337
+ ],
1338
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
1339
+ "../node_modules/@types/node/fs.d.ts",
1340
+ "../node_modules/@types/node/process.d.ts",
1341
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1342
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1343
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1344
+ "../node_modules/@types/node/util.d.ts"
1345
+ ],
1346
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts": [
1347
+ "../node_modules/@types/node/fs.d.ts",
1348
+ "../node_modules/@types/node/process.d.ts",
1349
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1350
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1351
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1352
+ "../node_modules/@types/node/util.d.ts"
1353
+ ],
1354
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
1355
+ "../node_modules/@types/node/fs.d.ts",
1356
+ "../node_modules/@types/node/process.d.ts",
1357
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1358
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1359
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1360
+ "../node_modules/@types/node/util.d.ts"
1361
+ ],
1362
+ "../node_modules/typescript/lib/lib.es5.d.ts": [
1363
+ "../node_modules/@types/node/fs.d.ts",
1364
+ "../node_modules/@types/node/process.d.ts",
1365
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1366
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1367
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1368
+ "../node_modules/@types/node/util.d.ts"
1369
+ ],
1370
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
1371
+ "../node_modules/@types/node/fs.d.ts",
1372
+ "../node_modules/@types/node/process.d.ts",
1373
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1374
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1375
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1376
+ "../node_modules/@types/node/util.d.ts"
1377
+ ],
1378
+ "../src/_constants/module-settings/test-module-settings.ts": [
1379
+ "../node_modules/@types/node/fs.d.ts",
1380
+ "../node_modules/@types/node/process.d.ts",
1381
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1382
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1383
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1384
+ "../node_modules/@types/node/util.d.ts",
1385
+ "../src/_models/control-models/dynamo-module-settings.ts"
1386
+ ],
1387
+ "../src/_constants/module-settings/usage-module-settings.ts": [
1388
+ "../node_modules/@types/node/fs.d.ts",
1389
+ "../node_modules/@types/node/process.d.ts",
1390
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1391
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1392
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1393
+ "../node_modules/@types/node/util.d.ts",
1394
+ "../src/_models/control-models/dynamo-module-settings.ts"
1395
+ ],
1396
+ "../src/_constants/times.ts": [
1397
+ "../node_modules/@types/node/fs.d.ts",
1398
+ "../node_modules/@types/node/process.d.ts",
1399
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1400
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1401
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1402
+ "../node_modules/@types/node/util.d.ts"
1403
+ ],
1404
+ "../src/_models/control-models/daily-usage-data.ts": [
1405
+ "../node_modules/@types/node/fs.d.ts",
1406
+ "../node_modules/@types/node/process.d.ts",
1407
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1408
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1409
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1410
+ "../node_modules/@types/node/util.d.ts",
1411
+ "../src/_models/data-models/usage-session.ts"
1412
+ ],
1413
+ "../src/_models/control-models/dynamo-module-settings.ts": [
1414
+ "../node_modules/@types/node/fs.d.ts",
1415
+ "../node_modules/@types/node/process.d.ts",
1416
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1417
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1418
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1419
+ "../node_modules/@types/node/util.d.ts"
1420
+ ],
1421
+ "../src/_models/control-models/dynamobe-data-params.ts": [
1422
+ "../node_modules/@types/node/fs.d.ts",
1423
+ "../node_modules/@types/node/process.d.ts",
1424
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1425
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1426
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1427
+ "../node_modules/@types/node/util.d.ts",
1428
+ "../src/_models/control-models/dynamobe-data-property-params.ts"
1429
+ ],
1430
+ "../src/_models/control-models/dynamobe-data-property-params.ts": [
1431
+ "../node_modules/@types/node/fs.d.ts",
1432
+ "../node_modules/@types/node/process.d.ts",
1433
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1434
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1435
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1436
+ "../node_modules/@types/node/util.d.ts",
1437
+ "../src/_models/control-models/dynamobe-error.ts"
1438
+ ],
1439
+ "../src/_models/control-models/dynamobe-error.ts": [
1440
+ "../node_modules/@types/node/fs.d.ts",
1441
+ "../node_modules/@types/node/process.d.ts",
1442
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1443
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1444
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1445
+ "../node_modules/@types/node/util.d.ts"
1446
+ ],
1447
+ "../src/_models/control-models/geo-ip-location.ts": [
1448
+ "../node_modules/@types/node/fs.d.ts",
1449
+ "../node_modules/@types/node/process.d.ts",
1450
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1451
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1452
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1453
+ "../node_modules/@types/node/util.d.ts"
1454
+ ],
1455
+ "../src/_models/control-models/location-coordinates.ts": [
1456
+ "../node_modules/@types/node/fs.d.ts",
1457
+ "../node_modules/@types/node/process.d.ts",
1458
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1459
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1460
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1461
+ "../node_modules/@types/node/util.d.ts"
1462
+ ],
1463
+ "../src/_models/control-models/usage-action.ts": [
1464
+ "../node_modules/@types/node/fs.d.ts",
1465
+ "../node_modules/@types/node/process.d.ts",
1466
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1467
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1468
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1469
+ "../node_modules/@types/node/util.d.ts"
1470
+ ],
1471
+ "../src/_models/control-models/usage-data.ts": [
1472
+ "../node_modules/@types/node/fs.d.ts",
1473
+ "../node_modules/@types/node/process.d.ts",
1474
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1475
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1476
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1477
+ "../node_modules/@types/node/util.d.ts",
1478
+ "../src/_models/control-models/usage-action.ts"
1479
+ ],
1480
+ "../src/_models/data-models/custom-data.ts": [
1481
+ "../node_modules/@types/node/fs.d.ts",
1482
+ "../node_modules/@types/node/process.d.ts",
1483
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1484
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1485
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1486
+ "../node_modules/@types/node/util.d.ts",
1487
+ "../src/_models/control-models/dynamobe-data-params.ts",
1488
+ "../src/_models/data-models/metadata.ts"
1489
+ ],
1490
+ "../src/_models/data-models/metadata.ts": [
1491
+ "../node_modules/@types/node/fs.d.ts",
1492
+ "../node_modules/@types/node/process.d.ts",
1493
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1494
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1495
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1496
+ "../node_modules/@types/node/util.d.ts"
1497
+ ],
1498
+ "../src/_models/data-models/usage-session.ts": [
1499
+ "../node_modules/@types/node/fs.d.ts",
1500
+ "../node_modules/@types/node/process.d.ts",
1501
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1502
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1503
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1504
+ "../node_modules/@types/node/util.d.ts",
1505
+ "../src/_models/control-models/dynamobe-data-params.ts",
1506
+ "../src/_models/control-models/geo-ip-location.ts",
1507
+ "../src/_models/control-models/usage-data.ts",
1508
+ "../src/_models/data-models/metadata.ts"
1509
+ ],
1510
+ "../src/data-models.ts": [
1511
+ "../node_modules/@types/node/fs.d.ts",
1512
+ "../node_modules/@types/node/process.d.ts",
1513
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1514
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1515
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1516
+ "../node_modules/@types/node/util.d.ts",
1517
+ "../src/_models/control-models/dynamobe-data-params.ts",
1518
+ "../src/_models/data-models/metadata.ts"
1519
+ ],
1520
+ "../src/index.ts": [
1521
+ "../node_modules/@types/node/fs.d.ts",
1522
+ "../node_modules/@types/node/process.d.ts",
1523
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1524
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1525
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1526
+ "../node_modules/@types/node/util.d.ts",
1527
+ "../src/_constants/module-settings/test-module-settings.ts",
1528
+ "../src/_constants/module-settings/usage-module-settings.ts",
1529
+ "../src/_constants/times.ts",
1530
+ "../src/_models/control-models/daily-usage-data.ts",
1531
+ "../src/_models/control-models/dynamobe-data-params.ts",
1532
+ "../src/_models/control-models/dynamobe-data-property-params.ts",
1533
+ "../src/_models/control-models/dynamobe-error.ts",
1534
+ "../src/_models/control-models/geo-ip-location.ts",
1535
+ "../src/_models/control-models/location-coordinates.ts",
1536
+ "../src/_models/control-models/usage-action.ts",
1537
+ "../src/_models/control-models/usage-data.ts",
1538
+ "../src/_models/data-models/custom-data.ts",
1539
+ "../src/_models/data-models/metadata.ts",
1540
+ "../src/_models/data-models/usage-session.ts"
1541
+ ]
1542
+ },
1543
+ "exportedModulesMap": {
1544
+ "../node_modules/@types/node/async_hooks.d.ts": [
1545
+ "../node_modules/@types/node/fs.d.ts",
1546
+ "../node_modules/@types/node/process.d.ts",
1547
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1548
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1549
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1550
+ "../node_modules/@types/node/util.d.ts"
1551
+ ],
1552
+ "../node_modules/@types/node/base.d.ts": [
1553
+ "../node_modules/@types/node/async_hooks.d.ts",
1554
+ "../node_modules/@types/node/buffer.d.ts",
1555
+ "../node_modules/@types/node/child_process.d.ts",
1556
+ "../node_modules/@types/node/cluster.d.ts",
1557
+ "../node_modules/@types/node/console.d.ts",
1558
+ "../node_modules/@types/node/constants.d.ts",
1559
+ "../node_modules/@types/node/crypto.d.ts",
1560
+ "../node_modules/@types/node/dgram.d.ts",
1561
+ "../node_modules/@types/node/dns.d.ts",
1562
+ "../node_modules/@types/node/domain.d.ts",
1563
+ "../node_modules/@types/node/events.d.ts",
1564
+ "../node_modules/@types/node/fs.d.ts",
1565
+ "../node_modules/@types/node/fs/promises.d.ts",
1566
+ "../node_modules/@types/node/globals.d.ts",
1567
+ "../node_modules/@types/node/http.d.ts",
1568
+ "../node_modules/@types/node/http2.d.ts",
1569
+ "../node_modules/@types/node/https.d.ts",
1570
+ "../node_modules/@types/node/inspector.d.ts",
1571
+ "../node_modules/@types/node/module.d.ts",
1572
+ "../node_modules/@types/node/net.d.ts",
1573
+ "../node_modules/@types/node/os.d.ts",
1574
+ "../node_modules/@types/node/path.d.ts",
1575
+ "../node_modules/@types/node/perf_hooks.d.ts",
1576
+ "../node_modules/@types/node/process.d.ts",
1577
+ "../node_modules/@types/node/punycode.d.ts",
1578
+ "../node_modules/@types/node/querystring.d.ts",
1579
+ "../node_modules/@types/node/readline.d.ts",
1580
+ "../node_modules/@types/node/repl.d.ts",
1581
+ "../node_modules/@types/node/stream.d.ts",
1582
+ "../node_modules/@types/node/string_decoder.d.ts",
1583
+ "../node_modules/@types/node/timers.d.ts",
1584
+ "../node_modules/@types/node/tls.d.ts",
1585
+ "../node_modules/@types/node/trace_events.d.ts",
1586
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1587
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1588
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1589
+ "../node_modules/@types/node/tty.d.ts",
1590
+ "../node_modules/@types/node/url.d.ts",
1591
+ "../node_modules/@types/node/util.d.ts",
1592
+ "../node_modules/@types/node/v8.d.ts",
1593
+ "../node_modules/@types/node/vm.d.ts",
1594
+ "../node_modules/@types/node/worker_threads.d.ts",
1595
+ "../node_modules/@types/node/zlib.d.ts"
1596
+ ],
1597
+ "../node_modules/@types/node/buffer.d.ts": [
1598
+ "../node_modules/@types/node/fs.d.ts",
1599
+ "../node_modules/@types/node/process.d.ts",
1600
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1601
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1602
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1603
+ "../node_modules/@types/node/util.d.ts"
1604
+ ],
1605
+ "../node_modules/@types/node/child_process.d.ts": [
1606
+ "../node_modules/@types/node/events.d.ts",
1607
+ "../node_modules/@types/node/fs.d.ts",
1608
+ "../node_modules/@types/node/net.d.ts",
1609
+ "../node_modules/@types/node/process.d.ts",
1610
+ "../node_modules/@types/node/stream.d.ts",
1611
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1612
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1613
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1614
+ "../node_modules/@types/node/util.d.ts"
1615
+ ],
1616
+ "../node_modules/@types/node/cluster.d.ts": [
1617
+ "../node_modules/@types/node/child_process.d.ts",
1618
+ "../node_modules/@types/node/events.d.ts",
1619
+ "../node_modules/@types/node/fs.d.ts",
1620
+ "../node_modules/@types/node/net.d.ts",
1621
+ "../node_modules/@types/node/process.d.ts",
1622
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1623
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1624
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1625
+ "../node_modules/@types/node/util.d.ts"
1626
+ ],
1627
+ "../node_modules/@types/node/console.d.ts": [
1628
+ "../node_modules/@types/node/fs.d.ts",
1629
+ "../node_modules/@types/node/process.d.ts",
1630
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1631
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1632
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1633
+ "../node_modules/@types/node/util.d.ts"
1634
+ ],
1635
+ "../node_modules/@types/node/constants.d.ts": [
1636
+ "../node_modules/@types/node/crypto.d.ts",
1637
+ "../node_modules/@types/node/fs.d.ts",
1638
+ "../node_modules/@types/node/os.d.ts",
1639
+ "../node_modules/@types/node/process.d.ts",
1640
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1641
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1642
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1643
+ "../node_modules/@types/node/util.d.ts"
1644
+ ],
1645
+ "../node_modules/@types/node/crypto.d.ts": [
1646
+ "../node_modules/@types/node/fs.d.ts",
1647
+ "../node_modules/@types/node/process.d.ts",
1648
+ "../node_modules/@types/node/stream.d.ts",
1649
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1650
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1651
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1652
+ "../node_modules/@types/node/util.d.ts"
1653
+ ],
1654
+ "../node_modules/@types/node/dgram.d.ts": [
1655
+ "../node_modules/@types/node/dns.d.ts",
1656
+ "../node_modules/@types/node/events.d.ts",
1657
+ "../node_modules/@types/node/fs.d.ts",
1658
+ "../node_modules/@types/node/net.d.ts",
1659
+ "../node_modules/@types/node/process.d.ts",
1660
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1661
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1662
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1663
+ "../node_modules/@types/node/util.d.ts"
1664
+ ],
1665
+ "../node_modules/@types/node/dns.d.ts": [
1666
+ "../node_modules/@types/node/fs.d.ts",
1667
+ "../node_modules/@types/node/process.d.ts",
1668
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1669
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1670
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1671
+ "../node_modules/@types/node/util.d.ts"
1672
+ ],
1673
+ "../node_modules/@types/node/domain.d.ts": [
1674
+ "../node_modules/@types/node/events.d.ts",
1675
+ "../node_modules/@types/node/fs.d.ts",
1676
+ "../node_modules/@types/node/process.d.ts",
1677
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1678
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1679
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1680
+ "../node_modules/@types/node/util.d.ts"
1681
+ ],
1682
+ "../node_modules/@types/node/events.d.ts": [
1683
+ "../node_modules/@types/node/fs.d.ts",
1684
+ "../node_modules/@types/node/process.d.ts",
1685
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1686
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1687
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1688
+ "../node_modules/@types/node/util.d.ts"
1689
+ ],
1690
+ "../node_modules/@types/node/fs.d.ts": [
1691
+ "../node_modules/@types/node/events.d.ts",
1692
+ "../node_modules/@types/node/fs/promises.d.ts",
1693
+ "../node_modules/@types/node/process.d.ts",
1694
+ "../node_modules/@types/node/stream.d.ts",
1695
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1696
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1697
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1698
+ "../node_modules/@types/node/url.d.ts",
1699
+ "../node_modules/@types/node/util.d.ts"
1700
+ ],
1701
+ "../node_modules/@types/node/fs/promises.d.ts": [
1702
+ "../node_modules/@types/node/fs.d.ts",
1703
+ "../node_modules/@types/node/process.d.ts",
1704
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1705
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1706
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1707
+ "../node_modules/@types/node/util.d.ts"
1708
+ ],
1709
+ "../node_modules/@types/node/globals.d.ts": [
1710
+ "../node_modules/@types/node/fs.d.ts",
1711
+ "../node_modules/@types/node/process.d.ts",
1712
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1713
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1714
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1715
+ "../node_modules/@types/node/util.d.ts"
1716
+ ],
1717
+ "../node_modules/@types/node/http.d.ts": [
1718
+ "../node_modules/@types/node/fs.d.ts",
1719
+ "../node_modules/@types/node/net.d.ts",
1720
+ "../node_modules/@types/node/process.d.ts",
1721
+ "../node_modules/@types/node/stream.d.ts",
1722
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1723
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1724
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1725
+ "../node_modules/@types/node/url.d.ts",
1726
+ "../node_modules/@types/node/util.d.ts"
1727
+ ],
1728
+ "../node_modules/@types/node/http2.d.ts": [
1729
+ "../node_modules/@types/node/events.d.ts",
1730
+ "../node_modules/@types/node/fs.d.ts",
1731
+ "../node_modules/@types/node/http.d.ts",
1732
+ "../node_modules/@types/node/net.d.ts",
1733
+ "../node_modules/@types/node/process.d.ts",
1734
+ "../node_modules/@types/node/stream.d.ts",
1735
+ "../node_modules/@types/node/tls.d.ts",
1736
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1737
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1738
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1739
+ "../node_modules/@types/node/url.d.ts",
1740
+ "../node_modules/@types/node/util.d.ts"
1741
+ ],
1742
+ "../node_modules/@types/node/https.d.ts": [
1743
+ "../node_modules/@types/node/events.d.ts",
1744
+ "../node_modules/@types/node/fs.d.ts",
1745
+ "../node_modules/@types/node/http.d.ts",
1746
+ "../node_modules/@types/node/process.d.ts",
1747
+ "../node_modules/@types/node/tls.d.ts",
1748
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1749
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1750
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1751
+ "../node_modules/@types/node/url.d.ts",
1752
+ "../node_modules/@types/node/util.d.ts"
1753
+ ],
1754
+ "../node_modules/@types/node/inspector.d.ts": [
1755
+ "../node_modules/@types/node/events.d.ts",
1756
+ "../node_modules/@types/node/fs.d.ts",
1757
+ "../node_modules/@types/node/process.d.ts",
1758
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1759
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1760
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1761
+ "../node_modules/@types/node/util.d.ts"
1762
+ ],
1763
+ "../node_modules/@types/node/module.d.ts": [
1764
+ "../node_modules/@types/node/fs.d.ts",
1765
+ "../node_modules/@types/node/process.d.ts",
1766
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1767
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1768
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1769
+ "../node_modules/@types/node/url.d.ts",
1770
+ "../node_modules/@types/node/util.d.ts"
1771
+ ],
1772
+ "../node_modules/@types/node/net.d.ts": [
1773
+ "../node_modules/@types/node/dns.d.ts",
1774
+ "../node_modules/@types/node/events.d.ts",
1775
+ "../node_modules/@types/node/fs.d.ts",
1776
+ "../node_modules/@types/node/process.d.ts",
1777
+ "../node_modules/@types/node/stream.d.ts",
1778
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1779
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1780
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1781
+ "../node_modules/@types/node/util.d.ts"
1782
+ ],
1783
+ "../node_modules/@types/node/os.d.ts": [
1784
+ "../node_modules/@types/node/fs.d.ts",
1785
+ "../node_modules/@types/node/process.d.ts",
1786
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1787
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1788
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1789
+ "../node_modules/@types/node/util.d.ts"
1790
+ ],
1791
+ "../node_modules/@types/node/path.d.ts": [
1792
+ "../node_modules/@types/node/fs.d.ts",
1793
+ "../node_modules/@types/node/process.d.ts",
1794
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1795
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1796
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1797
+ "../node_modules/@types/node/util.d.ts"
1798
+ ],
1799
+ "../node_modules/@types/node/perf_hooks.d.ts": [
1800
+ "../node_modules/@types/node/async_hooks.d.ts",
1801
+ "../node_modules/@types/node/fs.d.ts",
1802
+ "../node_modules/@types/node/process.d.ts",
1803
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1804
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1805
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1806
+ "../node_modules/@types/node/util.d.ts"
1807
+ ],
1808
+ "../node_modules/@types/node/process.d.ts": [
1809
+ "../node_modules/@types/node/fs.d.ts",
1810
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1811
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1812
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1813
+ "../node_modules/@types/node/tty.d.ts",
1814
+ "../node_modules/@types/node/util.d.ts"
1815
+ ],
1816
+ "../node_modules/@types/node/punycode.d.ts": [
1817
+ "../node_modules/@types/node/fs.d.ts",
1818
+ "../node_modules/@types/node/process.d.ts",
1819
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1820
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1821
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1822
+ "../node_modules/@types/node/util.d.ts"
1823
+ ],
1824
+ "../node_modules/@types/node/querystring.d.ts": [
1825
+ "../node_modules/@types/node/fs.d.ts",
1826
+ "../node_modules/@types/node/process.d.ts",
1827
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1828
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1829
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1830
+ "../node_modules/@types/node/util.d.ts"
1831
+ ],
1832
+ "../node_modules/@types/node/readline.d.ts": [
1833
+ "../node_modules/@types/node/events.d.ts",
1834
+ "../node_modules/@types/node/fs.d.ts",
1835
+ "../node_modules/@types/node/process.d.ts",
1836
+ "../node_modules/@types/node/stream.d.ts",
1837
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1838
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1839
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1840
+ "../node_modules/@types/node/util.d.ts"
1841
+ ],
1842
+ "../node_modules/@types/node/repl.d.ts": [
1843
+ "../node_modules/@types/node/fs.d.ts",
1844
+ "../node_modules/@types/node/process.d.ts",
1845
+ "../node_modules/@types/node/readline.d.ts",
1846
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1847
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1848
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1849
+ "../node_modules/@types/node/util.d.ts",
1850
+ "../node_modules/@types/node/vm.d.ts"
1851
+ ],
1852
+ "../node_modules/@types/node/stream.d.ts": [
1853
+ "../node_modules/@types/node/events.d.ts",
1854
+ "../node_modules/@types/node/fs.d.ts",
1855
+ "../node_modules/@types/node/process.d.ts",
1856
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1857
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1858
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1859
+ "../node_modules/@types/node/util.d.ts"
1860
+ ],
1861
+ "../node_modules/@types/node/string_decoder.d.ts": [
1862
+ "../node_modules/@types/node/fs.d.ts",
1863
+ "../node_modules/@types/node/process.d.ts",
1864
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1865
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1866
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1867
+ "../node_modules/@types/node/util.d.ts"
1868
+ ],
1869
+ "../node_modules/@types/node/timers.d.ts": [
1870
+ "../node_modules/@types/node/fs.d.ts",
1871
+ "../node_modules/@types/node/process.d.ts",
1872
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1873
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1874
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1875
+ "../node_modules/@types/node/util.d.ts"
1876
+ ],
1877
+ "../node_modules/@types/node/tls.d.ts": [
1878
+ "../node_modules/@types/node/crypto.d.ts",
1879
+ "../node_modules/@types/node/dns.d.ts",
1880
+ "../node_modules/@types/node/fs.d.ts",
1881
+ "../node_modules/@types/node/net.d.ts",
1882
+ "../node_modules/@types/node/process.d.ts",
1883
+ "../node_modules/@types/node/stream.d.ts",
1884
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1885
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1886
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1887
+ "../node_modules/@types/node/util.d.ts"
1888
+ ],
1889
+ "../node_modules/@types/node/trace_events.d.ts": [
1890
+ "../node_modules/@types/node/fs.d.ts",
1891
+ "../node_modules/@types/node/process.d.ts",
1892
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1893
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1894
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1895
+ "../node_modules/@types/node/util.d.ts"
1896
+ ],
1897
+ "../node_modules/@types/node/ts3.2/base.d.ts": [
1898
+ "../node_modules/@types/node/base.d.ts",
1899
+ "../node_modules/@types/node/fs.d.ts",
1900
+ "../node_modules/@types/node/process.d.ts",
1901
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1902
+ "../node_modules/@types/node/ts3.2/globals.d.ts",
1903
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1904
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1905
+ "../node_modules/@types/node/util.d.ts"
1906
+ ],
1907
+ "../node_modules/@types/node/ts3.2/fs.d.ts": [
1908
+ "../node_modules/@types/node/fs.d.ts",
1909
+ "../node_modules/@types/node/process.d.ts",
1910
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1911
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1912
+ "../node_modules/@types/node/util.d.ts"
1913
+ ],
1914
+ "../node_modules/@types/node/ts3.2/globals.d.ts": [
1915
+ "../node_modules/@types/node/fs.d.ts",
1916
+ "../node_modules/@types/node/globals.d.ts",
1917
+ "../node_modules/@types/node/process.d.ts",
1918
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1919
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1920
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1921
+ "../node_modules/@types/node/util.d.ts"
1922
+ ],
1923
+ "../node_modules/@types/node/ts3.2/process.d.ts": [
1924
+ "../node_modules/@types/node/fs.d.ts",
1925
+ "../node_modules/@types/node/process.d.ts",
1926
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1927
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1928
+ "../node_modules/@types/node/util.d.ts"
1929
+ ],
1930
+ "../node_modules/@types/node/ts3.2/util.d.ts": [
1931
+ "../node_modules/@types/node/fs.d.ts",
1932
+ "../node_modules/@types/node/process.d.ts",
1933
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1934
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1935
+ "../node_modules/@types/node/util.d.ts"
1936
+ ],
1937
+ "../node_modules/@types/node/ts3.5/base.d.ts": [
1938
+ "../node_modules/@types/node/fs.d.ts",
1939
+ "../node_modules/@types/node/process.d.ts",
1940
+ "../node_modules/@types/node/ts3.2/base.d.ts",
1941
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1942
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1943
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1944
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts",
1945
+ "../node_modules/@types/node/ts3.5/wasi.d.ts",
1946
+ "../node_modules/@types/node/util.d.ts"
1947
+ ],
1948
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts": [
1949
+ "../node_modules/@types/node/fs.d.ts",
1950
+ "../node_modules/@types/node/process.d.ts",
1951
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1952
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1953
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1954
+ "../node_modules/@types/node/util.d.ts"
1955
+ ],
1956
+ "../node_modules/@types/node/ts3.5/wasi.d.ts": [
1957
+ "../node_modules/@types/node/fs.d.ts",
1958
+ "../node_modules/@types/node/process.d.ts",
1959
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1960
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1961
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1962
+ "../node_modules/@types/node/util.d.ts"
1963
+ ],
1964
+ "../node_modules/@types/node/ts3.7/assert.d.ts": [
1965
+ "../node_modules/@types/node/fs.d.ts",
1966
+ "../node_modules/@types/node/process.d.ts",
1967
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1968
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1969
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1970
+ "../node_modules/@types/node/util.d.ts"
1971
+ ],
1972
+ "../node_modules/@types/node/ts3.7/base.d.ts": [
1973
+ "../node_modules/@types/node/fs.d.ts",
1974
+ "../node_modules/@types/node/process.d.ts",
1975
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1976
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1977
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1978
+ "../node_modules/@types/node/ts3.5/base.d.ts",
1979
+ "../node_modules/@types/node/ts3.7/assert.d.ts",
1980
+ "../node_modules/@types/node/util.d.ts"
1981
+ ],
1982
+ "../node_modules/@types/node/ts3.7/index.d.ts": [
1983
+ "../node_modules/@types/node/fs.d.ts",
1984
+ "../node_modules/@types/node/process.d.ts",
1985
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1986
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1987
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1988
+ "../node_modules/@types/node/ts3.7/base.d.ts",
1989
+ "../node_modules/@types/node/util.d.ts"
1990
+ ],
1991
+ "../node_modules/@types/node/tty.d.ts": [
1992
+ "../node_modules/@types/node/fs.d.ts",
1993
+ "../node_modules/@types/node/net.d.ts",
1994
+ "../node_modules/@types/node/process.d.ts",
1995
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
1996
+ "../node_modules/@types/node/ts3.2/process.d.ts",
1997
+ "../node_modules/@types/node/ts3.2/util.d.ts",
1998
+ "../node_modules/@types/node/util.d.ts"
1999
+ ],
2000
+ "../node_modules/@types/node/url.d.ts": [
2001
+ "../node_modules/@types/node/fs.d.ts",
2002
+ "../node_modules/@types/node/process.d.ts",
2003
+ "../node_modules/@types/node/querystring.d.ts",
2004
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2005
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2006
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2007
+ "../node_modules/@types/node/util.d.ts"
2008
+ ],
2009
+ "../node_modules/@types/node/util.d.ts": [
2010
+ "../node_modules/@types/node/fs.d.ts",
2011
+ "../node_modules/@types/node/process.d.ts",
2012
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2013
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2014
+ "../node_modules/@types/node/ts3.2/util.d.ts"
2015
+ ],
2016
+ "../node_modules/@types/node/v8.d.ts": [
2017
+ "../node_modules/@types/node/fs.d.ts",
2018
+ "../node_modules/@types/node/process.d.ts",
2019
+ "../node_modules/@types/node/stream.d.ts",
2020
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2021
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2022
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2023
+ "../node_modules/@types/node/util.d.ts"
2024
+ ],
2025
+ "../node_modules/@types/node/vm.d.ts": [
2026
+ "../node_modules/@types/node/fs.d.ts",
2027
+ "../node_modules/@types/node/process.d.ts",
2028
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2029
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2030
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2031
+ "../node_modules/@types/node/util.d.ts"
2032
+ ],
2033
+ "../node_modules/@types/node/worker_threads.d.ts": [
2034
+ "../node_modules/@types/node/events.d.ts",
2035
+ "../node_modules/@types/node/fs.d.ts",
2036
+ "../node_modules/@types/node/process.d.ts",
2037
+ "../node_modules/@types/node/stream.d.ts",
2038
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2039
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2040
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2041
+ "../node_modules/@types/node/url.d.ts",
2042
+ "../node_modules/@types/node/util.d.ts",
2043
+ "../node_modules/@types/node/vm.d.ts"
2044
+ ],
2045
+ "../node_modules/@types/node/zlib.d.ts": [
2046
+ "../node_modules/@types/node/fs.d.ts",
2047
+ "../node_modules/@types/node/process.d.ts",
2048
+ "../node_modules/@types/node/stream.d.ts",
2049
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2050
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2051
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2052
+ "../node_modules/@types/node/util.d.ts"
2053
+ ],
2054
+ "../node_modules/tslib/tslib.d.ts": [
2055
+ "../node_modules/@types/node/fs.d.ts",
2056
+ "../node_modules/@types/node/process.d.ts",
2057
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2058
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2059
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2060
+ "../node_modules/@types/node/util.d.ts"
2061
+ ],
2062
+ "../node_modules/typescript/lib/lib.dom.d.ts": [
2063
+ "../node_modules/@types/node/fs.d.ts",
2064
+ "../node_modules/@types/node/process.d.ts",
2065
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2066
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2067
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2068
+ "../node_modules/@types/node/util.d.ts"
2069
+ ],
2070
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts": [
2071
+ "../node_modules/@types/node/fs.d.ts",
2072
+ "../node_modules/@types/node/process.d.ts",
2073
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2074
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2075
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2076
+ "../node_modules/@types/node/util.d.ts"
2077
+ ],
2078
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts": [
2079
+ "../node_modules/@types/node/fs.d.ts",
2080
+ "../node_modules/@types/node/process.d.ts",
2081
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2082
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2083
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2084
+ "../node_modules/@types/node/util.d.ts"
2085
+ ],
2086
+ "../node_modules/typescript/lib/lib.es2015.d.ts": [
2087
+ "../node_modules/@types/node/fs.d.ts",
2088
+ "../node_modules/@types/node/process.d.ts",
2089
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2090
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2091
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2092
+ "../node_modules/@types/node/util.d.ts"
2093
+ ],
2094
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts": [
2095
+ "../node_modules/@types/node/fs.d.ts",
2096
+ "../node_modules/@types/node/process.d.ts",
2097
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2098
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2099
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2100
+ "../node_modules/@types/node/util.d.ts"
2101
+ ],
2102
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
2103
+ "../node_modules/@types/node/fs.d.ts",
2104
+ "../node_modules/@types/node/process.d.ts",
2105
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2106
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2107
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2108
+ "../node_modules/@types/node/util.d.ts"
2109
+ ],
2110
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts": [
2111
+ "../node_modules/@types/node/fs.d.ts",
2112
+ "../node_modules/@types/node/process.d.ts",
2113
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2114
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2115
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2116
+ "../node_modules/@types/node/util.d.ts"
2117
+ ],
2118
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
2119
+ "../node_modules/@types/node/fs.d.ts",
2120
+ "../node_modules/@types/node/process.d.ts",
2121
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2122
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2123
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2124
+ "../node_modules/@types/node/util.d.ts"
2125
+ ],
2126
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
2127
+ "../node_modules/@types/node/fs.d.ts",
2128
+ "../node_modules/@types/node/process.d.ts",
2129
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2130
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2131
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2132
+ "../node_modules/@types/node/util.d.ts"
2133
+ ],
2134
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
2135
+ "../node_modules/@types/node/fs.d.ts",
2136
+ "../node_modules/@types/node/process.d.ts",
2137
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2138
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2139
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2140
+ "../node_modules/@types/node/util.d.ts"
2141
+ ],
2142
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
2143
+ "../node_modules/@types/node/fs.d.ts",
2144
+ "../node_modules/@types/node/process.d.ts",
2145
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2146
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2147
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2148
+ "../node_modules/@types/node/util.d.ts"
2149
+ ],
2150
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
2151
+ "../node_modules/@types/node/fs.d.ts",
2152
+ "../node_modules/@types/node/process.d.ts",
2153
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2154
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2155
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2156
+ "../node_modules/@types/node/util.d.ts"
2157
+ ],
2158
+ "../node_modules/typescript/lib/lib.es2016.d.ts": [
2159
+ "../node_modules/@types/node/fs.d.ts",
2160
+ "../node_modules/@types/node/process.d.ts",
2161
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2162
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2163
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2164
+ "../node_modules/@types/node/util.d.ts"
2165
+ ],
2166
+ "../node_modules/typescript/lib/lib.es2017.d.ts": [
2167
+ "../node_modules/@types/node/fs.d.ts",
2168
+ "../node_modules/@types/node/process.d.ts",
2169
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2170
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2171
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2172
+ "../node_modules/@types/node/util.d.ts"
2173
+ ],
2174
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts": [
2175
+ "../node_modules/@types/node/fs.d.ts",
2176
+ "../node_modules/@types/node/process.d.ts",
2177
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2178
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2179
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2180
+ "../node_modules/@types/node/util.d.ts"
2181
+ ],
2182
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts": [
2183
+ "../node_modules/@types/node/fs.d.ts",
2184
+ "../node_modules/@types/node/process.d.ts",
2185
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2186
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2187
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2188
+ "../node_modules/@types/node/util.d.ts"
2189
+ ],
2190
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
2191
+ "../node_modules/@types/node/fs.d.ts",
2192
+ "../node_modules/@types/node/process.d.ts",
2193
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2194
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2195
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2196
+ "../node_modules/@types/node/util.d.ts"
2197
+ ],
2198
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts": [
2199
+ "../node_modules/@types/node/fs.d.ts",
2200
+ "../node_modules/@types/node/process.d.ts",
2201
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2202
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2203
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2204
+ "../node_modules/@types/node/util.d.ts"
2205
+ ],
2206
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
2207
+ "../node_modules/@types/node/fs.d.ts",
2208
+ "../node_modules/@types/node/process.d.ts",
2209
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2210
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2211
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2212
+ "../node_modules/@types/node/util.d.ts"
2213
+ ],
2214
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [
2215
+ "../node_modules/@types/node/fs.d.ts",
2216
+ "../node_modules/@types/node/process.d.ts",
2217
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2218
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2219
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2220
+ "../node_modules/@types/node/util.d.ts"
2221
+ ],
2222
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
2223
+ "../node_modules/@types/node/fs.d.ts",
2224
+ "../node_modules/@types/node/process.d.ts",
2225
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2226
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2227
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2228
+ "../node_modules/@types/node/util.d.ts"
2229
+ ],
2230
+ "../node_modules/typescript/lib/lib.es2018.d.ts": [
2231
+ "../node_modules/@types/node/fs.d.ts",
2232
+ "../node_modules/@types/node/process.d.ts",
2233
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2234
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2235
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2236
+ "../node_modules/@types/node/util.d.ts"
2237
+ ],
2238
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts": [
2239
+ "../node_modules/@types/node/fs.d.ts",
2240
+ "../node_modules/@types/node/process.d.ts",
2241
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2242
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2243
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2244
+ "../node_modules/@types/node/util.d.ts"
2245
+ ],
2246
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts": [
2247
+ "../node_modules/@types/node/fs.d.ts",
2248
+ "../node_modules/@types/node/process.d.ts",
2249
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2250
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2251
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2252
+ "../node_modules/@types/node/util.d.ts"
2253
+ ],
2254
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
2255
+ "../node_modules/@types/node/fs.d.ts",
2256
+ "../node_modules/@types/node/process.d.ts",
2257
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2258
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2259
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2260
+ "../node_modules/@types/node/util.d.ts"
2261
+ ],
2262
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts": [
2263
+ "../node_modules/@types/node/fs.d.ts",
2264
+ "../node_modules/@types/node/process.d.ts",
2265
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2266
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2267
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2268
+ "../node_modules/@types/node/util.d.ts"
2269
+ ],
2270
+ "../node_modules/typescript/lib/lib.es2019.d.ts": [
2271
+ "../node_modules/@types/node/fs.d.ts",
2272
+ "../node_modules/@types/node/process.d.ts",
2273
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2274
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2275
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2276
+ "../node_modules/@types/node/util.d.ts"
2277
+ ],
2278
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts": [
2279
+ "../node_modules/@types/node/fs.d.ts",
2280
+ "../node_modules/@types/node/process.d.ts",
2281
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2282
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2283
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2284
+ "../node_modules/@types/node/util.d.ts"
2285
+ ],
2286
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts": [
2287
+ "../node_modules/@types/node/fs.d.ts",
2288
+ "../node_modules/@types/node/process.d.ts",
2289
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2290
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2291
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2292
+ "../node_modules/@types/node/util.d.ts"
2293
+ ],
2294
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
2295
+ "../node_modules/@types/node/fs.d.ts",
2296
+ "../node_modules/@types/node/process.d.ts",
2297
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2298
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2299
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2300
+ "../node_modules/@types/node/util.d.ts"
2301
+ ],
2302
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts": [
2303
+ "../node_modules/@types/node/fs.d.ts",
2304
+ "../node_modules/@types/node/process.d.ts",
2305
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2306
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2307
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2308
+ "../node_modules/@types/node/util.d.ts"
2309
+ ],
2310
+ "../node_modules/typescript/lib/lib.es2020.d.ts": [
2311
+ "../node_modules/@types/node/fs.d.ts",
2312
+ "../node_modules/@types/node/process.d.ts",
2313
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2314
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2315
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2316
+ "../node_modules/@types/node/util.d.ts"
2317
+ ],
2318
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts": [
2319
+ "../node_modules/@types/node/fs.d.ts",
2320
+ "../node_modules/@types/node/process.d.ts",
2321
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2322
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2323
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2324
+ "../node_modules/@types/node/util.d.ts"
2325
+ ],
2326
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts": [
2327
+ "../node_modules/@types/node/fs.d.ts",
2328
+ "../node_modules/@types/node/process.d.ts",
2329
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2330
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2331
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2332
+ "../node_modules/@types/node/util.d.ts"
2333
+ ],
2334
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [
2335
+ "../node_modules/@types/node/fs.d.ts",
2336
+ "../node_modules/@types/node/process.d.ts",
2337
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2338
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2339
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2340
+ "../node_modules/@types/node/util.d.ts"
2341
+ ],
2342
+ "../node_modules/typescript/lib/lib.es5.d.ts": [
2343
+ "../node_modules/@types/node/fs.d.ts",
2344
+ "../node_modules/@types/node/process.d.ts",
2345
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2346
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2347
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2348
+ "../node_modules/@types/node/util.d.ts"
2349
+ ],
2350
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts": [
2351
+ "../node_modules/@types/node/fs.d.ts",
2352
+ "../node_modules/@types/node/process.d.ts",
2353
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2354
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2355
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2356
+ "../node_modules/@types/node/util.d.ts"
2357
+ ],
2358
+ "../src/_constants/module-settings/test-module-settings.ts": [
2359
+ "../src/_models/control-models/dynamo-module-settings.ts"
2360
+ ],
2361
+ "../src/_constants/module-settings/usage-module-settings.ts": [
2362
+ "../src/_models/control-models/dynamo-module-settings.ts"
2363
+ ],
2364
+ "../src/_models/control-models/daily-usage-data.ts": [
2365
+ "../src/_models/data-models/usage-session.ts"
2366
+ ],
2367
+ "../src/_models/control-models/dynamobe-data-params.ts": [
2368
+ "../src/_models/control-models/dynamobe-data-property-params.ts"
2369
+ ],
2370
+ "../src/_models/control-models/usage-data.ts": [
2371
+ "../src/_models/control-models/usage-action.ts"
2372
+ ],
2373
+ "../src/_models/data-models/custom-data.ts": [
2374
+ "../src/_models/control-models/dynamobe-data-params.ts",
2375
+ "../src/_models/data-models/metadata.ts"
2376
+ ],
2377
+ "../src/_models/data-models/usage-session.ts": [
2378
+ "../src/_models/control-models/dynamobe-data-params.ts",
2379
+ "../src/_models/control-models/geo-ip-location.ts",
2380
+ "../src/_models/control-models/usage-data.ts",
2381
+ "../src/_models/data-models/metadata.ts"
2382
+ ],
2383
+ "../src/data-models.ts": [
2384
+ "../src/_models/control-models/dynamobe-data-params.ts",
2385
+ "../src/_models/data-models/metadata.ts"
2386
+ ],
2387
+ "../src/index.ts": [
2388
+ "../src/_constants/module-settings/test-module-settings.ts",
2389
+ "../src/_constants/module-settings/usage-module-settings.ts",
2390
+ "../src/_constants/times.ts",
2391
+ "../src/_models/control-models/daily-usage-data.ts",
2392
+ "../src/_models/control-models/dynamobe-data-params.ts",
2393
+ "../src/_models/control-models/dynamobe-data-property-params.ts",
2394
+ "../src/_models/control-models/dynamobe-error.ts",
2395
+ "../src/_models/control-models/geo-ip-location.ts",
2396
+ "../src/_models/control-models/location-coordinates.ts",
2397
+ "../src/_models/control-models/usage-action.ts",
2398
+ "../src/_models/control-models/usage-data.ts",
2399
+ "../src/_models/data-models/custom-data.ts",
2400
+ "../src/_models/data-models/metadata.ts",
2401
+ "../src/_models/data-models/usage-session.ts"
2402
+ ]
2403
+ },
2404
+ "semanticDiagnosticsPerFile": [
2405
+ "../node_modules/@types/node/async_hooks.d.ts",
2406
+ "../node_modules/@types/node/base.d.ts",
2407
+ "../node_modules/@types/node/buffer.d.ts",
2408
+ "../node_modules/@types/node/child_process.d.ts",
2409
+ "../node_modules/@types/node/cluster.d.ts",
2410
+ "../node_modules/@types/node/console.d.ts",
2411
+ "../node_modules/@types/node/constants.d.ts",
2412
+ "../node_modules/@types/node/crypto.d.ts",
2413
+ "../node_modules/@types/node/dgram.d.ts",
2414
+ "../node_modules/@types/node/dns.d.ts",
2415
+ "../node_modules/@types/node/domain.d.ts",
2416
+ "../node_modules/@types/node/events.d.ts",
2417
+ "../node_modules/@types/node/fs.d.ts",
2418
+ "../node_modules/@types/node/fs/promises.d.ts",
2419
+ "../node_modules/@types/node/globals.d.ts",
2420
+ "../node_modules/@types/node/http.d.ts",
2421
+ "../node_modules/@types/node/http2.d.ts",
2422
+ "../node_modules/@types/node/https.d.ts",
2423
+ "../node_modules/@types/node/inspector.d.ts",
2424
+ "../node_modules/@types/node/module.d.ts",
2425
+ "../node_modules/@types/node/net.d.ts",
2426
+ "../node_modules/@types/node/os.d.ts",
2427
+ "../node_modules/@types/node/path.d.ts",
2428
+ "../node_modules/@types/node/perf_hooks.d.ts",
2429
+ "../node_modules/@types/node/process.d.ts",
2430
+ "../node_modules/@types/node/punycode.d.ts",
2431
+ "../node_modules/@types/node/querystring.d.ts",
2432
+ "../node_modules/@types/node/readline.d.ts",
2433
+ "../node_modules/@types/node/repl.d.ts",
2434
+ "../node_modules/@types/node/stream.d.ts",
2435
+ "../node_modules/@types/node/string_decoder.d.ts",
2436
+ "../node_modules/@types/node/timers.d.ts",
2437
+ "../node_modules/@types/node/tls.d.ts",
2438
+ "../node_modules/@types/node/trace_events.d.ts",
2439
+ "../node_modules/@types/node/ts3.2/base.d.ts",
2440
+ "../node_modules/@types/node/ts3.2/fs.d.ts",
2441
+ "../node_modules/@types/node/ts3.2/globals.d.ts",
2442
+ "../node_modules/@types/node/ts3.2/process.d.ts",
2443
+ "../node_modules/@types/node/ts3.2/util.d.ts",
2444
+ "../node_modules/@types/node/ts3.5/base.d.ts",
2445
+ "../node_modules/@types/node/ts3.5/globals.global.d.ts",
2446
+ "../node_modules/@types/node/ts3.5/wasi.d.ts",
2447
+ "../node_modules/@types/node/ts3.7/assert.d.ts",
2448
+ "../node_modules/@types/node/ts3.7/base.d.ts",
2449
+ "../node_modules/@types/node/ts3.7/index.d.ts",
2450
+ "../node_modules/@types/node/tty.d.ts",
2451
+ "../node_modules/@types/node/url.d.ts",
2452
+ "../node_modules/@types/node/util.d.ts",
2453
+ "../node_modules/@types/node/v8.d.ts",
2454
+ "../node_modules/@types/node/vm.d.ts",
2455
+ "../node_modules/@types/node/worker_threads.d.ts",
2456
+ "../node_modules/@types/node/zlib.d.ts",
2457
+ "../node_modules/tslib/tslib.d.ts",
2458
+ "../node_modules/typescript/lib/lib.dom.d.ts",
2459
+ "../node_modules/typescript/lib/lib.es2015.collection.d.ts",
2460
+ "../node_modules/typescript/lib/lib.es2015.core.d.ts",
2461
+ "../node_modules/typescript/lib/lib.es2015.d.ts",
2462
+ "../node_modules/typescript/lib/lib.es2015.generator.d.ts",
2463
+ "../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
2464
+ "../node_modules/typescript/lib/lib.es2015.promise.d.ts",
2465
+ "../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
2466
+ "../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
2467
+ "../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
2468
+ "../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
2469
+ "../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
2470
+ "../node_modules/typescript/lib/lib.es2016.d.ts",
2471
+ "../node_modules/typescript/lib/lib.es2017.d.ts",
2472
+ "../node_modules/typescript/lib/lib.es2017.intl.d.ts",
2473
+ "../node_modules/typescript/lib/lib.es2017.object.d.ts",
2474
+ "../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
2475
+ "../node_modules/typescript/lib/lib.es2017.string.d.ts",
2476
+ "../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
2477
+ "../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
2478
+ "../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
2479
+ "../node_modules/typescript/lib/lib.es2018.d.ts",
2480
+ "../node_modules/typescript/lib/lib.es2018.intl.d.ts",
2481
+ "../node_modules/typescript/lib/lib.es2018.promise.d.ts",
2482
+ "../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
2483
+ "../node_modules/typescript/lib/lib.es2019.array.d.ts",
2484
+ "../node_modules/typescript/lib/lib.es2019.d.ts",
2485
+ "../node_modules/typescript/lib/lib.es2019.object.d.ts",
2486
+ "../node_modules/typescript/lib/lib.es2019.string.d.ts",
2487
+ "../node_modules/typescript/lib/lib.es2019.symbol.d.ts",
2488
+ "../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
2489
+ "../node_modules/typescript/lib/lib.es2020.d.ts",
2490
+ "../node_modules/typescript/lib/lib.es2020.promise.d.ts",
2491
+ "../node_modules/typescript/lib/lib.es2020.string.d.ts",
2492
+ "../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts",
2493
+ "../node_modules/typescript/lib/lib.es5.d.ts",
2494
+ "../node_modules/typescript/lib/lib.esnext.intl.d.ts",
2495
+ "../src/_constants/module-settings/test-module-settings.ts",
2496
+ "../src/_constants/module-settings/usage-module-settings.ts",
2497
+ "../src/_constants/times.ts",
2498
+ "../src/_models/control-models/daily-usage-data.ts",
2499
+ "../src/_models/control-models/dynamo-module-settings.ts",
2500
+ "../src/_models/control-models/dynamobe-data-params.ts",
2501
+ "../src/_models/control-models/dynamobe-data-property-params.ts",
2502
+ "../src/_models/control-models/dynamobe-error.ts",
2503
+ "../src/_models/control-models/geo-ip-location.ts",
2504
+ "../src/_models/control-models/location-coordinates.ts",
2505
+ "../src/_models/control-models/usage-action.ts",
2506
+ "../src/_models/control-models/usage-data.ts",
2507
+ "../src/_models/data-models/custom-data.ts",
2508
+ "../src/_models/data-models/metadata.ts",
2509
+ "../src/_models/data-models/usage-session.ts",
2510
+ "../src/data-models.ts",
2511
+ "../src/index.ts"
2512
+ ]
2513
+ },
2514
+ "version": "3.9.10"
2515
+ }