@1oo4/miv 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (914) hide show
  1. package/README.md +34 -0
  2. package/dist/Client/AuditTrail.d.ts +132 -0
  3. package/dist/Client/AuditTrail.d.ts.map +1 -0
  4. package/dist/Client/AuditTrail.js +705 -0
  5. package/dist/Client/AuditTrail.js.map +1 -0
  6. package/dist/Client/Connections/ConnectionStrategy.d.ts +9 -0
  7. package/dist/Client/Connections/ConnectionStrategy.d.ts.map +1 -0
  8. package/dist/Client/Connections/ConnectionStrategy.js +52 -0
  9. package/dist/Client/Connections/ConnectionStrategy.js.map +1 -0
  10. package/dist/Client/Connections/WebSocketConnection.d.ts +31 -0
  11. package/dist/Client/Connections/WebSocketConnection.d.ts.map +1 -0
  12. package/dist/Client/Connections/WebSocketConnection.js +323 -0
  13. package/dist/Client/Connections/WebSocketConnection.js.map +1 -0
  14. package/dist/Client/Construction/ChildAndRealtionData.d.ts +16 -0
  15. package/dist/Client/Construction/ChildAndRealtionData.d.ts.map +1 -0
  16. package/dist/Client/Construction/ChildAndRealtionData.js +38 -0
  17. package/dist/Client/Construction/ChildAndRealtionData.js.map +1 -0
  18. package/dist/Client/Construction/ClientTypes.d.ts +107 -0
  19. package/dist/Client/Construction/ClientTypes.d.ts.map +1 -0
  20. package/dist/Client/Construction/ClientTypes.js +316 -0
  21. package/dist/Client/Construction/ClientTypes.js.map +1 -0
  22. package/dist/Client/Construction/FiltersSet.d.ts +2 -0
  23. package/dist/Client/Construction/FiltersSet.d.ts.map +1 -0
  24. package/dist/Client/Construction/FiltersSet.js +60 -0
  25. package/dist/Client/Construction/FiltersSet.js.map +1 -0
  26. package/dist/Client/Construction/TypesInfos.d.ts +21 -0
  27. package/dist/Client/Construction/TypesInfos.d.ts.map +1 -0
  28. package/dist/Client/Construction/TypesInfos.js +29 -0
  29. package/dist/Client/Construction/TypesInfos.js.map +1 -0
  30. package/dist/Client/LoadFilter.d.ts +14 -0
  31. package/dist/Client/LoadFilter.d.ts.map +1 -0
  32. package/dist/Client/LoadFilter.js +49 -0
  33. package/dist/Client/LoadFilter.js.map +1 -0
  34. package/dist/Client/MChild.d.ts +43 -0
  35. package/dist/Client/MChild.d.ts.map +1 -0
  36. package/dist/Client/MChild.js +344 -0
  37. package/dist/Client/MChild.js.map +1 -0
  38. package/dist/Client/MField.d.ts +6 -0
  39. package/dist/Client/MField.d.ts.map +1 -0
  40. package/dist/Client/MField.js +40 -0
  41. package/dist/Client/MField.js.map +1 -0
  42. package/dist/Client/MIVClient.d.ts +122 -0
  43. package/dist/Client/MIVClient.d.ts.map +1 -0
  44. package/dist/Client/MIVClient.js +931 -0
  45. package/dist/Client/MIVClient.js.map +1 -0
  46. package/dist/Client/MObject.d.ts +13 -0
  47. package/dist/Client/MObject.d.ts.map +1 -0
  48. package/dist/Client/MObject.js +67 -0
  49. package/dist/Client/MObject.js.map +1 -0
  50. package/dist/Client/MProperty.d.ts +7 -0
  51. package/dist/Client/MProperty.d.ts.map +1 -0
  52. package/dist/Client/MProperty.js +96 -0
  53. package/dist/Client/MProperty.js.map +1 -0
  54. package/dist/Client/MRealObject.d.ts +56 -0
  55. package/dist/Client/MRealObject.d.ts.map +1 -0
  56. package/dist/Client/MRealObject.js +534 -0
  57. package/dist/Client/MRealObject.js.map +1 -0
  58. package/dist/Client/MRelation.d.ts +32 -0
  59. package/dist/Client/MRelation.d.ts.map +1 -0
  60. package/dist/Client/MRelation.js +116 -0
  61. package/dist/Client/MRelation.js.map +1 -0
  62. package/dist/Client/MRoot.d.ts +27 -0
  63. package/dist/Client/MRoot.d.ts.map +1 -0
  64. package/dist/Client/MRoot.js +108 -0
  65. package/dist/Client/MRoot.js.map +1 -0
  66. package/dist/Client/MSets/ChildrenListInternal.d.ts +2 -0
  67. package/dist/Client/MSets/ChildrenListInternal.d.ts.map +1 -0
  68. package/dist/Client/MSets/ChildrenListInternal.js +87 -0
  69. package/dist/Client/MSets/ChildrenListInternal.js.map +1 -0
  70. package/dist/Client/MSets/ListInternal.d.ts +2 -0
  71. package/dist/Client/MSets/ListInternal.d.ts.map +1 -0
  72. package/dist/Client/MSets/ListInternal.js +123 -0
  73. package/dist/Client/MSets/ListInternal.js.map +1 -0
  74. package/dist/Client/MSets/MItem.d.ts +23 -0
  75. package/dist/Client/MSets/MItem.d.ts.map +1 -0
  76. package/dist/Client/MSets/MItem.js +72 -0
  77. package/dist/Client/MSets/MItem.js.map +1 -0
  78. package/dist/Client/MSets/MList.d.ts +9 -0
  79. package/dist/Client/MSets/MList.d.ts.map +1 -0
  80. package/dist/Client/MSets/MList.js +17 -0
  81. package/dist/Client/MSets/MList.js.map +1 -0
  82. package/dist/Client/MSets/MPage.d.ts +12 -0
  83. package/dist/Client/MSets/MPage.d.ts.map +1 -0
  84. package/dist/Client/MSets/MPage.js +32 -0
  85. package/dist/Client/MSets/MPage.js.map +1 -0
  86. package/dist/Client/MSets/MPagination.d.ts +25 -0
  87. package/dist/Client/MSets/MPagination.d.ts.map +1 -0
  88. package/dist/Client/MSets/MPagination.js +99 -0
  89. package/dist/Client/MSets/MPagination.js.map +1 -0
  90. package/dist/Client/MSets/MRealLists.d.ts +33 -0
  91. package/dist/Client/MSets/MRealLists.d.ts.map +1 -0
  92. package/dist/Client/MSets/MRealLists.js +85 -0
  93. package/dist/Client/MSets/MRealLists.js.map +1 -0
  94. package/dist/Client/MSets/MSet.d.ts +4 -0
  95. package/dist/Client/MSets/MSet.d.ts.map +1 -0
  96. package/dist/Client/MSets/MSet.js +18 -0
  97. package/dist/Client/MSets/MSet.js.map +1 -0
  98. package/dist/Client/MSets/PageInternal.d.ts +2 -0
  99. package/dist/Client/MSets/PageInternal.d.ts.map +1 -0
  100. package/dist/Client/MSets/PageInternal.js +142 -0
  101. package/dist/Client/MSets/PageInternal.js.map +1 -0
  102. package/dist/Client/MSets/PointersListInternal.d.ts +2 -0
  103. package/dist/Client/MSets/PointersListInternal.d.ts.map +1 -0
  104. package/dist/Client/MSets/PointersListInternal.js +75 -0
  105. package/dist/Client/MSets/PointersListInternal.js.map +1 -0
  106. package/dist/Client/MSets/TargetingListInternal.d.ts +2 -0
  107. package/dist/Client/MSets/TargetingListInternal.d.ts.map +1 -0
  108. package/dist/Client/MSets/TargetingListInternal.js +91 -0
  109. package/dist/Client/MSets/TargetingListInternal.js.map +1 -0
  110. package/dist/Client/MSets/TargetsListInternal.d.ts +2 -0
  111. package/dist/Client/MSets/TargetsListInternal.d.ts.map +1 -0
  112. package/dist/Client/MSets/TargetsListInternal.js +93 -0
  113. package/dist/Client/MSets/TargetsListInternal.js.map +1 -0
  114. package/dist/Client/MSets/VirtualList.d.ts +11 -0
  115. package/dist/Client/MSets/VirtualList.d.ts.map +1 -0
  116. package/dist/Client/MSets/VirtualList.js +63 -0
  117. package/dist/Client/MSets/VirtualList.js.map +1 -0
  118. package/dist/Client/MSets/WholeListInternal.d.ts +4 -0
  119. package/dist/Client/MSets/WholeListInternal.d.ts.map +1 -0
  120. package/dist/Client/MSets/WholeListInternal.js +12 -0
  121. package/dist/Client/MSets/WholeListInternal.js.map +1 -0
  122. package/dist/Client/MUser.d.ts +10 -0
  123. package/dist/Client/MUser.d.ts.map +1 -0
  124. package/dist/Client/MUser.js +16 -0
  125. package/dist/Client/MUser.js.map +1 -0
  126. package/dist/Client/MVirtualObject.d.ts +13 -0
  127. package/dist/Client/MVirtualObject.d.ts.map +1 -0
  128. package/dist/Client/MVirtualObject.js +30 -0
  129. package/dist/Client/MVirtualObject.js.map +1 -0
  130. package/dist/Client/Properties/BinaryProperty.d.ts +24 -0
  131. package/dist/Client/Properties/BinaryProperty.d.ts.map +1 -0
  132. package/dist/Client/Properties/BinaryProperty.js +135 -0
  133. package/dist/Client/Properties/BinaryProperty.js.map +1 -0
  134. package/dist/Client/Properties/BoolProperty.d.ts +30 -0
  135. package/dist/Client/Properties/BoolProperty.d.ts.map +1 -0
  136. package/dist/Client/Properties/BoolProperty.js +89 -0
  137. package/dist/Client/Properties/BoolProperty.js.map +1 -0
  138. package/dist/Client/Properties/ByteProperty.d.ts +31 -0
  139. package/dist/Client/Properties/ByteProperty.d.ts.map +1 -0
  140. package/dist/Client/Properties/ByteProperty.js +134 -0
  141. package/dist/Client/Properties/ByteProperty.js.map +1 -0
  142. package/dist/Client/Properties/DateTimeProperty.d.ts +32 -0
  143. package/dist/Client/Properties/DateTimeProperty.d.ts.map +1 -0
  144. package/dist/Client/Properties/DateTimeProperty.js +150 -0
  145. package/dist/Client/Properties/DateTimeProperty.js.map +1 -0
  146. package/dist/Client/Properties/DoubleProperty.d.ts +28 -0
  147. package/dist/Client/Properties/DoubleProperty.d.ts.map +1 -0
  148. package/dist/Client/Properties/DoubleProperty.js +126 -0
  149. package/dist/Client/Properties/DoubleProperty.js.map +1 -0
  150. package/dist/Client/Properties/EnumProperty.d.ts +32 -0
  151. package/dist/Client/Properties/EnumProperty.d.ts.map +1 -0
  152. package/dist/Client/Properties/EnumProperty.js +81 -0
  153. package/dist/Client/Properties/EnumProperty.js.map +1 -0
  154. package/dist/Client/Properties/IRealProperty.d.ts +12 -0
  155. package/dist/Client/Properties/IRealProperty.d.ts.map +1 -0
  156. package/dist/Client/Properties/IRealProperty.js +3 -0
  157. package/dist/Client/Properties/IRealProperty.js.map +1 -0
  158. package/dist/Client/Properties/LongProperty.d.ts +28 -0
  159. package/dist/Client/Properties/LongProperty.d.ts.map +1 -0
  160. package/dist/Client/Properties/LongProperty.js +126 -0
  161. package/dist/Client/Properties/LongProperty.js.map +1 -0
  162. package/dist/Client/Properties/RealPropertyInternal.d.ts +2 -0
  163. package/dist/Client/Properties/RealPropertyInternal.d.ts.map +1 -0
  164. package/dist/Client/Properties/RealPropertyInternal.js +36 -0
  165. package/dist/Client/Properties/RealPropertyInternal.js.map +1 -0
  166. package/dist/Client/Properties/StringProperty.d.ts +28 -0
  167. package/dist/Client/Properties/StringProperty.d.ts.map +1 -0
  168. package/dist/Client/Properties/StringProperty.js +129 -0
  169. package/dist/Client/Properties/StringProperty.js.map +1 -0
  170. package/dist/Client/Properties/SupportedPropertyInternal.d.ts +2 -0
  171. package/dist/Client/Properties/SupportedPropertyInternal.d.ts.map +1 -0
  172. package/dist/Client/Properties/SupportedPropertyInternal.js +21 -0
  173. package/dist/Client/Properties/SupportedPropertyInternal.js.map +1 -0
  174. package/dist/Client/Properties/UlongProperty.d.ts +29 -0
  175. package/dist/Client/Properties/UlongProperty.d.ts.map +1 -0
  176. package/dist/Client/Properties/UlongProperty.js +126 -0
  177. package/dist/Client/Properties/UlongProperty.js.map +1 -0
  178. package/dist/Client/Queries/IRealObject.d.ts +3 -0
  179. package/dist/Client/Queries/IRealObject.d.ts.map +1 -0
  180. package/dist/Client/Queries/IRealObject.js +3 -0
  181. package/dist/Client/Queries/IRealObject.js.map +1 -0
  182. package/dist/Client/Queries/PlaceholderChild.d.ts +10 -0
  183. package/dist/Client/Queries/PlaceholderChild.d.ts.map +1 -0
  184. package/dist/Client/Queries/PlaceholderChild.js +22 -0
  185. package/dist/Client/Queries/PlaceholderChild.js.map +1 -0
  186. package/dist/Client/Queries/PlaceholderCopy.d.ts +13 -0
  187. package/dist/Client/Queries/PlaceholderCopy.d.ts.map +1 -0
  188. package/dist/Client/Queries/PlaceholderCopy.js +32 -0
  189. package/dist/Client/Queries/PlaceholderCopy.js.map +1 -0
  190. package/dist/Client/QueryBuilder.d.ts +92 -0
  191. package/dist/Client/QueryBuilder.d.ts.map +1 -0
  192. package/dist/Client/QueryBuilder.js +380 -0
  193. package/dist/Client/QueryBuilder.js.map +1 -0
  194. package/dist/Client/QueryInfo.d.ts +7 -0
  195. package/dist/Client/QueryInfo.d.ts.map +1 -0
  196. package/dist/Client/QueryInfo.js +12 -0
  197. package/dist/Client/QueryInfo.js.map +1 -0
  198. package/dist/Client/UpdateTools/ChildUpdate.d.ts +2 -0
  199. package/dist/Client/UpdateTools/ChildUpdate.d.ts.map +1 -0
  200. package/dist/Client/UpdateTools/ChildUpdate.js +262 -0
  201. package/dist/Client/UpdateTools/ChildUpdate.js.map +1 -0
  202. package/dist/Client/UpdateTools/ChildUpdateInfo.d.ts +13 -0
  203. package/dist/Client/UpdateTools/ChildUpdateInfo.d.ts.map +1 -0
  204. package/dist/Client/UpdateTools/ChildUpdateInfo.js +79 -0
  205. package/dist/Client/UpdateTools/ChildUpdateInfo.js.map +1 -0
  206. package/dist/Client/UpdateTools/ClientDataUpdateAndCompute.d.ts +42 -0
  207. package/dist/Client/UpdateTools/ClientDataUpdateAndCompute.d.ts.map +1 -0
  208. package/dist/Client/UpdateTools/ClientDataUpdateAndCompute.js +156 -0
  209. package/dist/Client/UpdateTools/ClientDataUpdateAndCompute.js.map +1 -0
  210. package/dist/Client/UpdateTools/FieldWatcher.d.ts +13 -0
  211. package/dist/Client/UpdateTools/FieldWatcher.d.ts.map +1 -0
  212. package/dist/Client/UpdateTools/FieldWatcher.js +43 -0
  213. package/dist/Client/UpdateTools/FieldWatcher.js.map +1 -0
  214. package/dist/Client/UpdateTools/Load.d.ts +2 -0
  215. package/dist/Client/UpdateTools/Load.d.ts.map +1 -0
  216. package/dist/Client/UpdateTools/Load.js +126 -0
  217. package/dist/Client/UpdateTools/Load.js.map +1 -0
  218. package/dist/Client/UpdateTools/ModelUpdateAndCompute.d.ts +42 -0
  219. package/dist/Client/UpdateTools/ModelUpdateAndCompute.d.ts.map +1 -0
  220. package/dist/Client/UpdateTools/ModelUpdateAndCompute.js +163 -0
  221. package/dist/Client/UpdateTools/ModelUpdateAndCompute.js.map +1 -0
  222. package/dist/Client/UpdateTools/UpdateWatcher.d.ts +12 -0
  223. package/dist/Client/UpdateTools/UpdateWatcher.d.ts.map +1 -0
  224. package/dist/Client/UpdateTools/UpdateWatcher.js +41 -0
  225. package/dist/Client/UpdateTools/UpdateWatcher.js.map +1 -0
  226. package/dist/Client/UpdateTools/ViewUpdateAndCompute.d.ts +21 -0
  227. package/dist/Client/UpdateTools/ViewUpdateAndCompute.d.ts.map +1 -0
  228. package/dist/Client/UpdateTools/ViewUpdateAndCompute.js +83 -0
  229. package/dist/Client/UpdateTools/ViewUpdateAndCompute.js.map +1 -0
  230. package/dist/Client/VSets/FilterAndSort/VFilters.d.ts +2 -0
  231. package/dist/Client/VSets/FilterAndSort/VFilters.d.ts.map +1 -0
  232. package/dist/Client/VSets/FilterAndSort/VFilters.js +53 -0
  233. package/dist/Client/VSets/FilterAndSort/VFilters.js.map +1 -0
  234. package/dist/Client/VSets/FilterAndSort/VListModif.d.ts +2 -0
  235. package/dist/Client/VSets/FilterAndSort/VListModif.d.ts.map +1 -0
  236. package/dist/Client/VSets/FilterAndSort/VListModif.js +45 -0
  237. package/dist/Client/VSets/FilterAndSort/VListModif.js.map +1 -0
  238. package/dist/Client/VSets/FilterAndSort/VListModification.d.ts +2 -0
  239. package/dist/Client/VSets/FilterAndSort/VListModification.d.ts.map +1 -0
  240. package/dist/Client/VSets/FilterAndSort/VListModification.js +24 -0
  241. package/dist/Client/VSets/FilterAndSort/VListModification.js.map +1 -0
  242. package/dist/Client/VSets/FilterAndSort/VSorter.d.ts +2 -0
  243. package/dist/Client/VSets/FilterAndSort/VSorter.d.ts.map +1 -0
  244. package/dist/Client/VSets/FilterAndSort/VSorter.js +21 -0
  245. package/dist/Client/VSets/FilterAndSort/VSorter.js.map +1 -0
  246. package/dist/Client/VSets/VItem.d.ts +42 -0
  247. package/dist/Client/VSets/VItem.d.ts.map +1 -0
  248. package/dist/Client/VSets/VItem.js +161 -0
  249. package/dist/Client/VSets/VItem.js.map +1 -0
  250. package/dist/Client/VSets/VList.d.ts +44 -0
  251. package/dist/Client/VSets/VList.d.ts.map +1 -0
  252. package/dist/Client/VSets/VList.js +409 -0
  253. package/dist/Client/VSets/VList.js.map +1 -0
  254. package/dist/Client/VSets/VPage.d.ts +20 -0
  255. package/dist/Client/VSets/VPage.d.ts.map +1 -0
  256. package/dist/Client/VSets/VPage.js +125 -0
  257. package/dist/Client/VSets/VPage.js.map +1 -0
  258. package/dist/Client/VSets/VPagination.d.ts +32 -0
  259. package/dist/Client/VSets/VPagination.d.ts.map +1 -0
  260. package/dist/Client/VSets/VPagination.js +126 -0
  261. package/dist/Client/VSets/VPagination.js.map +1 -0
  262. package/dist/Client/VSets/VSet.d.ts +9 -0
  263. package/dist/Client/VSets/VSet.d.ts.map +1 -0
  264. package/dist/Client/VSets/VSet.js +135 -0
  265. package/dist/Client/VSets/VSet.js.map +1 -0
  266. package/dist/Client/View/VBoundObject.d.ts +4 -0
  267. package/dist/Client/View/VBoundObject.d.ts.map +1 -0
  268. package/dist/Client/View/VBoundObject.js +15 -0
  269. package/dist/Client/View/VBoundObject.js.map +1 -0
  270. package/dist/Client/View/VObject.d.ts +29 -0
  271. package/dist/Client/View/VObject.d.ts.map +1 -0
  272. package/dist/Client/View/VObject.js +181 -0
  273. package/dist/Client/View/VObject.js.map +1 -0
  274. package/dist/Client/View/VObjectInItem.d.ts +22 -0
  275. package/dist/Client/View/VObjectInItem.d.ts.map +1 -0
  276. package/dist/Client/View/VObjectInItem.js +46 -0
  277. package/dist/Client/View/VObjectInItem.js.map +1 -0
  278. package/dist/Client/View/VObjectInList.d.ts +41 -0
  279. package/dist/Client/View/VObjectInList.d.ts.map +1 -0
  280. package/dist/Client/View/VObjectInList.js +100 -0
  281. package/dist/Client/View/VObjectInList.js.map +1 -0
  282. package/dist/Communication/ConnectionLogs.d.ts +22 -0
  283. package/dist/Communication/ConnectionLogs.d.ts.map +1 -0
  284. package/dist/Communication/ConnectionLogs.js +93 -0
  285. package/dist/Communication/ConnectionLogs.js.map +1 -0
  286. package/dist/Communication/CustomReadQuery.d.ts +2 -0
  287. package/dist/Communication/CustomReadQuery.d.ts.map +1 -0
  288. package/dist/Communication/CustomReadQuery.js +12 -0
  289. package/dist/Communication/CustomReadQuery.js.map +1 -0
  290. package/dist/Communication/DataAnswer.d.ts +2 -0
  291. package/dist/Communication/DataAnswer.d.ts.map +1 -0
  292. package/dist/Communication/DataAnswer.js +62 -0
  293. package/dist/Communication/DataAnswer.js.map +1 -0
  294. package/dist/Communication/DataItems/ChildData.d.ts +2 -0
  295. package/dist/Communication/DataItems/ChildData.d.ts.map +1 -0
  296. package/dist/Communication/DataItems/ChildData.js +92 -0
  297. package/dist/Communication/DataItems/ChildData.js.map +1 -0
  298. package/dist/Communication/DataItems/QueryData.d.ts +2 -0
  299. package/dist/Communication/DataItems/QueryData.d.ts.map +1 -0
  300. package/dist/Communication/DataItems/QueryData.js +56 -0
  301. package/dist/Communication/DataItems/QueryData.js.map +1 -0
  302. package/dist/Communication/DataItems/RelationData.d.ts +2 -0
  303. package/dist/Communication/DataItems/RelationData.d.ts.map +1 -0
  304. package/dist/Communication/DataItems/RelationData.js +82 -0
  305. package/dist/Communication/DataItems/RelationData.js.map +1 -0
  306. package/dist/Communication/DataItems/ValueClearedData.d.ts +2 -0
  307. package/dist/Communication/DataItems/ValueClearedData.d.ts.map +1 -0
  308. package/dist/Communication/DataItems/ValueClearedData.js +51 -0
  309. package/dist/Communication/DataItems/ValueClearedData.js.map +1 -0
  310. package/dist/Communication/DataItems/ValueData.d.ts +2 -0
  311. package/dist/Communication/DataItems/ValueData.d.ts.map +1 -0
  312. package/dist/Communication/DataItems/ValueData.js +50 -0
  313. package/dist/Communication/DataItems/ValueData.js.map +1 -0
  314. package/dist/Communication/DataItems/Values/VDBinary.d.ts +2 -0
  315. package/dist/Communication/DataItems/Values/VDBinary.d.ts.map +1 -0
  316. package/dist/Communication/DataItems/Values/VDBinary.js +55 -0
  317. package/dist/Communication/DataItems/Values/VDBinary.js.map +1 -0
  318. package/dist/Communication/DataItems/Values/VDByte.d.ts +2 -0
  319. package/dist/Communication/DataItems/Values/VDByte.d.ts.map +1 -0
  320. package/dist/Communication/DataItems/Values/VDByte.js +40 -0
  321. package/dist/Communication/DataItems/Values/VDByte.js.map +1 -0
  322. package/dist/Communication/DataItems/Values/VDDateTime.d.ts +2 -0
  323. package/dist/Communication/DataItems/Values/VDDateTime.d.ts.map +1 -0
  324. package/dist/Communication/DataItems/Values/VDDateTime.js +40 -0
  325. package/dist/Communication/DataItems/Values/VDDateTime.js.map +1 -0
  326. package/dist/Communication/DataItems/Values/VDDouble.d.ts +2 -0
  327. package/dist/Communication/DataItems/Values/VDDouble.d.ts.map +1 -0
  328. package/dist/Communication/DataItems/Values/VDDouble.js +40 -0
  329. package/dist/Communication/DataItems/Values/VDDouble.js.map +1 -0
  330. package/dist/Communication/DataItems/Values/VDLong.d.ts +2 -0
  331. package/dist/Communication/DataItems/Values/VDLong.d.ts.map +1 -0
  332. package/dist/Communication/DataItems/Values/VDLong.js +40 -0
  333. package/dist/Communication/DataItems/Values/VDLong.js.map +1 -0
  334. package/dist/Communication/DataItems/Values/VDString.d.ts +2 -0
  335. package/dist/Communication/DataItems/Values/VDString.d.ts.map +1 -0
  336. package/dist/Communication/DataItems/Values/VDString.js +43 -0
  337. package/dist/Communication/DataItems/Values/VDString.js.map +1 -0
  338. package/dist/Communication/DataItems/Values/VDUlong.d.ts +2 -0
  339. package/dist/Communication/DataItems/Values/VDUlong.d.ts.map +1 -0
  340. package/dist/Communication/DataItems/Values/VDUlong.js +40 -0
  341. package/dist/Communication/DataItems/Values/VDUlong.js.map +1 -0
  342. package/dist/Communication/DataMessage.d.ts +2 -0
  343. package/dist/Communication/DataMessage.d.ts.map +1 -0
  344. package/dist/Communication/DataMessage.js +212 -0
  345. package/dist/Communication/DataMessage.js.map +1 -0
  346. package/dist/Communication/ErrorMessage.d.ts +348 -0
  347. package/dist/Communication/ErrorMessage.d.ts.map +1 -0
  348. package/dist/Communication/ErrorMessage.js +943 -0
  349. package/dist/Communication/ErrorMessage.js.map +1 -0
  350. package/dist/Communication/Errors/CustomErrorMessage.d.ts +7 -0
  351. package/dist/Communication/Errors/CustomErrorMessage.d.ts.map +1 -0
  352. package/dist/Communication/Errors/CustomErrorMessage.js +28 -0
  353. package/dist/Communication/Errors/CustomErrorMessage.js.map +1 -0
  354. package/dist/Communication/Errors/ErroneousWriteErrorMessages.d.ts +28 -0
  355. package/dist/Communication/Errors/ErroneousWriteErrorMessages.d.ts.map +1 -0
  356. package/dist/Communication/Errors/ErroneousWriteErrorMessages.js +130 -0
  357. package/dist/Communication/Errors/ErroneousWriteErrorMessages.js.map +1 -0
  358. package/dist/Communication/Errors/ErrorHandlers.d.ts +96 -0
  359. package/dist/Communication/Errors/ErrorHandlers.d.ts.map +1 -0
  360. package/dist/Communication/Errors/ErrorHandlers.js +61 -0
  361. package/dist/Communication/Errors/ErrorHandlers.js.map +1 -0
  362. package/dist/Communication/Errors/InvalidWriteErrorMessages.d.ts +25 -0
  363. package/dist/Communication/Errors/InvalidWriteErrorMessages.d.ts.map +1 -0
  364. package/dist/Communication/Errors/InvalidWriteErrorMessages.js +115 -0
  365. package/dist/Communication/Errors/InvalidWriteErrorMessages.js.map +1 -0
  366. package/dist/Communication/Errors/NonwriteErrorMessages.d.ts +2 -0
  367. package/dist/Communication/Errors/NonwriteErrorMessages.d.ts.map +1 -0
  368. package/dist/Communication/Errors/NonwriteErrorMessages.js +2 -0
  369. package/dist/Communication/Errors/NonwriteErrorMessages.js.map +1 -0
  370. package/dist/Communication/Errors/RegularWriteErrorMessages.d.ts +30 -0
  371. package/dist/Communication/Errors/RegularWriteErrorMessages.d.ts.map +1 -0
  372. package/dist/Communication/Errors/RegularWriteErrorMessages.js +134 -0
  373. package/dist/Communication/Errors/RegularWriteErrorMessages.js.map +1 -0
  374. package/dist/Communication/Errors/WriteErrorMessage.d.ts +2 -0
  375. package/dist/Communication/Errors/WriteErrorMessage.d.ts.map +1 -0
  376. package/dist/Communication/Errors/WriteErrorMessage.js +2 -0
  377. package/dist/Communication/Errors/WriteErrorMessage.js.map +1 -0
  378. package/dist/Communication/GetPagesQuery.d.ts +2 -0
  379. package/dist/Communication/GetPagesQuery.d.ts.map +1 -0
  380. package/dist/Communication/GetPagesQuery.js +22 -0
  381. package/dist/Communication/GetPagesQuery.js.map +1 -0
  382. package/dist/Communication/Query.d.ts +2 -0
  383. package/dist/Communication/Query.d.ts.map +1 -0
  384. package/dist/Communication/Query.js +20 -0
  385. package/dist/Communication/Query.js.map +1 -0
  386. package/dist/Communication/QueryItems/QIClearLinks.d.ts +2 -0
  387. package/dist/Communication/QueryItems/QIClearLinks.d.ts.map +1 -0
  388. package/dist/Communication/QueryItems/QIClearLinks.js +17 -0
  389. package/dist/Communication/QueryItems/QIClearLinks.js.map +1 -0
  390. package/dist/Communication/QueryItems/QIDelete.d.ts +2 -0
  391. package/dist/Communication/QueryItems/QIDelete.d.ts.map +1 -0
  392. package/dist/Communication/QueryItems/QIDelete.js +15 -0
  393. package/dist/Communication/QueryItems/QIDelete.js.map +1 -0
  394. package/dist/Communication/QueryItems/QINewChild.d.ts +2 -0
  395. package/dist/Communication/QueryItems/QINewChild.d.ts.map +1 -0
  396. package/dist/Communication/QueryItems/QINewChild.js +104 -0
  397. package/dist/Communication/QueryItems/QINewChild.js.map +1 -0
  398. package/dist/Communication/QueryItems/QIReassignChild.d.ts +2 -0
  399. package/dist/Communication/QueryItems/QIReassignChild.d.ts.map +1 -0
  400. package/dist/Communication/QueryItems/QIReassignChild.js +27 -0
  401. package/dist/Communication/QueryItems/QIReassignChild.js.map +1 -0
  402. package/dist/Communication/QueryItems/QIUnlink.d.ts +2 -0
  403. package/dist/Communication/QueryItems/QIUnlink.d.ts.map +1 -0
  404. package/dist/Communication/QueryItems/QIUnlink.js +19 -0
  405. package/dist/Communication/QueryItems/QIUnlink.js.map +1 -0
  406. package/dist/Communication/QueryItems/QIValue.d.ts +37 -0
  407. package/dist/Communication/QueryItems/QIValue.d.ts.map +1 -0
  408. package/dist/Communication/QueryItems/QIValue.js +122 -0
  409. package/dist/Communication/QueryItems/QIValue.js.map +1 -0
  410. package/dist/Communication/Serialization/MIVDeserializer.d.ts +21 -0
  411. package/dist/Communication/Serialization/MIVDeserializer.d.ts.map +1 -0
  412. package/dist/Communication/Serialization/MIVDeserializer.js +148 -0
  413. package/dist/Communication/Serialization/MIVDeserializer.js.map +1 -0
  414. package/dist/Communication/Serialization/MIVSerializer.d.ts +25 -0
  415. package/dist/Communication/Serialization/MIVSerializer.d.ts.map +1 -0
  416. package/dist/Communication/Serialization/MIVSerializer.js +136 -0
  417. package/dist/Communication/Serialization/MIVSerializer.js.map +1 -0
  418. package/dist/Communication/SignQuery.d.ts +2 -0
  419. package/dist/Communication/SignQuery.d.ts.map +1 -0
  420. package/dist/Communication/SignQuery.js +19 -0
  421. package/dist/Communication/SignQuery.js.map +1 -0
  422. package/dist/Communication/SignupQuery.d.ts +2 -0
  423. package/dist/Communication/SignupQuery.d.ts.map +1 -0
  424. package/dist/Communication/SignupQuery.js +14 -0
  425. package/dist/Communication/SignupQuery.js.map +1 -0
  426. package/dist/Communication/UnloadQuery.d.ts +2 -0
  427. package/dist/Communication/UnloadQuery.d.ts.map +1 -0
  428. package/dist/Communication/UnloadQuery.js +20 -0
  429. package/dist/Communication/UnloadQuery.js.map +1 -0
  430. package/dist/Communication/UpdateQuery.d.ts +2 -0
  431. package/dist/Communication/UpdateQuery.d.ts.map +1 -0
  432. package/dist/Communication/UpdateQuery.js +45 -0
  433. package/dist/Communication/UpdateQuery.js.map +1 -0
  434. package/dist/HTML/BoolPropertyCheckBox.d.ts +17 -0
  435. package/dist/HTML/BoolPropertyCheckBox.d.ts.map +1 -0
  436. package/dist/HTML/BoolPropertyCheckBox.js +67 -0
  437. package/dist/HTML/BoolPropertyCheckBox.js.map +1 -0
  438. package/dist/HTML/PropertyTextArea.d.ts +53 -0
  439. package/dist/HTML/PropertyTextArea.d.ts.map +1 -0
  440. package/dist/HTML/PropertyTextArea.js +224 -0
  441. package/dist/HTML/PropertyTextArea.js.map +1 -0
  442. package/dist/HTML/PropertyTextBlock.d.ts +43 -0
  443. package/dist/HTML/PropertyTextBlock.d.ts.map +1 -0
  444. package/dist/HTML/PropertyTextBlock.js +161 -0
  445. package/dist/HTML/PropertyTextBlock.js.map +1 -0
  446. package/dist/HTML/PropertyTextBox.d.ts +72 -0
  447. package/dist/HTML/PropertyTextBox.d.ts.map +1 -0
  448. package/dist/HTML/PropertyTextBox.js +260 -0
  449. package/dist/HTML/PropertyTextBox.js.map +1 -0
  450. package/dist/MIVConstants.d.ts +22 -0
  451. package/dist/MIVConstants.d.ts.map +1 -0
  452. package/dist/MIVConstants.js +35 -0
  453. package/dist/MIVConstants.js.map +1 -0
  454. package/dist/MIVValueTypes.d.ts +14 -0
  455. package/dist/MIVValueTypes.d.ts.map +1 -0
  456. package/dist/MIVValueTypes.js +27 -0
  457. package/dist/MIVValueTypes.js.map +1 -0
  458. package/dist/Tools/AccumulatorList.d.ts +2 -0
  459. package/dist/Tools/AccumulatorList.d.ts.map +1 -0
  460. package/dist/Tools/AccumulatorList.js +61 -0
  461. package/dist/Tools/AccumulatorList.js.map +1 -0
  462. package/dist/Tools/LoadTools.d.ts +7 -0
  463. package/dist/Tools/LoadTools.d.ts.map +1 -0
  464. package/dist/Tools/LoadTools.js +57 -0
  465. package/dist/Tools/LoadTools.js.map +1 -0
  466. package/dist/Tools/MIVCache.d.ts +2 -0
  467. package/dist/Tools/MIVCache.d.ts.map +1 -0
  468. package/dist/Tools/MIVCache.js +29 -0
  469. package/dist/Tools/MIVCache.js.map +1 -0
  470. package/dist/Tools/MIVConverter.d.ts +6 -0
  471. package/dist/Tools/MIVConverter.d.ts.map +1 -0
  472. package/dist/Tools/MIVConverter.js +133 -0
  473. package/dist/Tools/MIVConverter.js.map +1 -0
  474. package/dist/Tools/PersistentList.d.ts +2 -0
  475. package/dist/Tools/PersistentList.d.ts.map +1 -0
  476. package/dist/Tools/PersistentList.js +90 -0
  477. package/dist/Tools/PersistentList.js.map +1 -0
  478. package/dist/Tools/Semaphore.d.ts +15 -0
  479. package/dist/Tools/Semaphore.d.ts.map +1 -0
  480. package/dist/Tools/Semaphore.js +62 -0
  481. package/dist/Tools/Semaphore.js.map +1 -0
  482. package/dist/Tools/UpdateTool.d.ts +7 -0
  483. package/dist/Tools/UpdateTool.d.ts.map +1 -0
  484. package/dist/Tools/UpdateTool.js +15 -0
  485. package/dist/Tools/UpdateTool.js.map +1 -0
  486. package/dist/index.d.ts +63 -0
  487. package/dist/index.d.ts.map +1 -0
  488. package/dist/index.js +146 -0
  489. package/dist/index.js.map +1 -0
  490. package/dist/src/Client/AuditTrail.d.ts +86 -0
  491. package/dist/src/Client/AuditTrail.d.ts.map +1 -0
  492. package/dist/src/Client/AuditTrail.js +556 -0
  493. package/dist/src/Client/AuditTrail.js.map +1 -0
  494. package/dist/src/Client/Connections/ConnectionStrategy.d.ts +9 -0
  495. package/dist/src/Client/Connections/ConnectionStrategy.d.ts.map +1 -0
  496. package/dist/src/Client/Connections/ConnectionStrategy.js +52 -0
  497. package/dist/src/Client/Connections/ConnectionStrategy.js.map +1 -0
  498. package/dist/src/Client/Connections/WebSocketConnection.d.ts +27 -0
  499. package/dist/src/Client/Connections/WebSocketConnection.d.ts.map +1 -0
  500. package/dist/src/Client/Connections/WebSocketConnection.js +285 -0
  501. package/dist/src/Client/Connections/WebSocketConnection.js.map +1 -0
  502. package/dist/src/Client/Construction/ChildAndRealtionData.d.ts +17 -0
  503. package/dist/src/Client/Construction/ChildAndRealtionData.d.ts.map +1 -0
  504. package/dist/src/Client/Construction/ChildAndRealtionData.js +39 -0
  505. package/dist/src/Client/Construction/ChildAndRealtionData.js.map +1 -0
  506. package/dist/src/Client/Construction/ClientTypes.d.ts +98 -0
  507. package/dist/src/Client/Construction/ClientTypes.d.ts.map +1 -0
  508. package/dist/src/Client/Construction/ClientTypes.js +271 -0
  509. package/dist/src/Client/Construction/ClientTypes.js.map +1 -0
  510. package/dist/src/Client/Construction/FiltersSet.d.ts +2 -0
  511. package/dist/src/Client/Construction/FiltersSet.d.ts.map +1 -0
  512. package/dist/src/Client/Construction/FiltersSet.js +60 -0
  513. package/dist/src/Client/Construction/FiltersSet.js.map +1 -0
  514. package/dist/src/Client/LoadFilter.d.ts +2 -0
  515. package/dist/src/Client/LoadFilter.d.ts.map +1 -0
  516. package/dist/src/Client/LoadFilter.js +49 -0
  517. package/dist/src/Client/LoadFilter.js.map +1 -0
  518. package/dist/src/Client/MChild.d.ts +46 -0
  519. package/dist/src/Client/MChild.d.ts.map +1 -0
  520. package/dist/src/Client/MChild.js +323 -0
  521. package/dist/src/Client/MChild.js.map +1 -0
  522. package/dist/src/Client/MField.d.ts +6 -0
  523. package/dist/src/Client/MField.d.ts.map +1 -0
  524. package/dist/src/Client/MField.js +40 -0
  525. package/dist/src/Client/MField.js.map +1 -0
  526. package/dist/src/Client/MIVClient.d.ts +108 -0
  527. package/dist/src/Client/MIVClient.d.ts.map +1 -0
  528. package/dist/src/Client/MIVClient.js +862 -0
  529. package/dist/src/Client/MIVClient.js.map +1 -0
  530. package/dist/src/Client/MObject.d.ts +11 -0
  531. package/dist/src/Client/MObject.d.ts.map +1 -0
  532. package/dist/src/Client/MObject.js +55 -0
  533. package/dist/src/Client/MObject.js.map +1 -0
  534. package/dist/src/Client/MProperty.d.ts +5 -0
  535. package/dist/src/Client/MProperty.d.ts.map +1 -0
  536. package/dist/src/Client/MProperty.js +14 -0
  537. package/dist/src/Client/MProperty.js.map +1 -0
  538. package/dist/src/Client/MRealObject.d.ts +57 -0
  539. package/dist/src/Client/MRealObject.d.ts.map +1 -0
  540. package/dist/src/Client/MRealObject.js +536 -0
  541. package/dist/src/Client/MRealObject.js.map +1 -0
  542. package/dist/src/Client/MRelation.d.ts +36 -0
  543. package/dist/src/Client/MRelation.d.ts.map +1 -0
  544. package/dist/src/Client/MRelation.js +114 -0
  545. package/dist/src/Client/MRelation.js.map +1 -0
  546. package/dist/src/Client/MRoot.d.ts +26 -0
  547. package/dist/src/Client/MRoot.d.ts.map +1 -0
  548. package/dist/src/Client/MRoot.js +105 -0
  549. package/dist/src/Client/MRoot.js.map +1 -0
  550. package/dist/src/Client/MSets/ChildrenListInternal.d.ts +2 -0
  551. package/dist/src/Client/MSets/ChildrenListInternal.d.ts.map +1 -0
  552. package/dist/src/Client/MSets/ChildrenListInternal.js +83 -0
  553. package/dist/src/Client/MSets/ChildrenListInternal.js.map +1 -0
  554. package/dist/src/Client/MSets/ListInternal.d.ts +2 -0
  555. package/dist/src/Client/MSets/ListInternal.d.ts.map +1 -0
  556. package/dist/src/Client/MSets/ListInternal.js +123 -0
  557. package/dist/src/Client/MSets/ListInternal.js.map +1 -0
  558. package/dist/src/Client/MSets/MItem.d.ts +23 -0
  559. package/dist/src/Client/MSets/MItem.d.ts.map +1 -0
  560. package/dist/src/Client/MSets/MItem.js +72 -0
  561. package/dist/src/Client/MSets/MItem.js.map +1 -0
  562. package/dist/src/Client/MSets/MList.d.ts +9 -0
  563. package/dist/src/Client/MSets/MList.d.ts.map +1 -0
  564. package/dist/src/Client/MSets/MList.js +17 -0
  565. package/dist/src/Client/MSets/MList.js.map +1 -0
  566. package/dist/src/Client/MSets/MPage.d.ts +12 -0
  567. package/dist/src/Client/MSets/MPage.d.ts.map +1 -0
  568. package/dist/src/Client/MSets/MPage.js +32 -0
  569. package/dist/src/Client/MSets/MPage.js.map +1 -0
  570. package/dist/src/Client/MSets/MPagination.d.ts +25 -0
  571. package/dist/src/Client/MSets/MPagination.d.ts.map +1 -0
  572. package/dist/src/Client/MSets/MPagination.js +99 -0
  573. package/dist/src/Client/MSets/MPagination.js.map +1 -0
  574. package/dist/src/Client/MSets/MRealLists.d.ts +33 -0
  575. package/dist/src/Client/MSets/MRealLists.d.ts.map +1 -0
  576. package/dist/src/Client/MSets/MRealLists.js +85 -0
  577. package/dist/src/Client/MSets/MRealLists.js.map +1 -0
  578. package/dist/src/Client/MSets/MSet.d.ts +4 -0
  579. package/dist/src/Client/MSets/MSet.d.ts.map +1 -0
  580. package/dist/src/Client/MSets/MSet.js +18 -0
  581. package/dist/src/Client/MSets/MSet.js.map +1 -0
  582. package/dist/src/Client/MSets/PageInternal.d.ts +2 -0
  583. package/dist/src/Client/MSets/PageInternal.d.ts.map +1 -0
  584. package/dist/src/Client/MSets/PageInternal.js +142 -0
  585. package/dist/src/Client/MSets/PageInternal.js.map +1 -0
  586. package/dist/src/Client/MSets/PointersListInternal.d.ts +2 -0
  587. package/dist/src/Client/MSets/PointersListInternal.d.ts.map +1 -0
  588. package/dist/src/Client/MSets/PointersListInternal.js +71 -0
  589. package/dist/src/Client/MSets/PointersListInternal.js.map +1 -0
  590. package/dist/src/Client/MSets/TargetingListInternal.d.ts +2 -0
  591. package/dist/src/Client/MSets/TargetingListInternal.d.ts.map +1 -0
  592. package/dist/src/Client/MSets/TargetingListInternal.js +86 -0
  593. package/dist/src/Client/MSets/TargetingListInternal.js.map +1 -0
  594. package/dist/src/Client/MSets/TargetsListInternal.d.ts +2 -0
  595. package/dist/src/Client/MSets/TargetsListInternal.d.ts.map +1 -0
  596. package/dist/src/Client/MSets/TargetsListInternal.js +89 -0
  597. package/dist/src/Client/MSets/TargetsListInternal.js.map +1 -0
  598. package/dist/src/Client/MSets/VirtualList.d.ts +11 -0
  599. package/dist/src/Client/MSets/VirtualList.d.ts.map +1 -0
  600. package/dist/src/Client/MSets/VirtualList.js +63 -0
  601. package/dist/src/Client/MSets/VirtualList.js.map +1 -0
  602. package/dist/src/Client/MSets/WholeListInternal.d.ts +4 -0
  603. package/dist/src/Client/MSets/WholeListInternal.d.ts.map +1 -0
  604. package/dist/src/Client/MSets/WholeListInternal.js +12 -0
  605. package/dist/src/Client/MSets/WholeListInternal.js.map +1 -0
  606. package/dist/src/Client/MUser.d.ts +10 -0
  607. package/dist/src/Client/MUser.d.ts.map +1 -0
  608. package/dist/src/Client/MUser.js +16 -0
  609. package/dist/src/Client/MUser.js.map +1 -0
  610. package/dist/src/Client/MVirtualObject.d.ts +13 -0
  611. package/dist/src/Client/MVirtualObject.d.ts.map +1 -0
  612. package/dist/src/Client/MVirtualObject.js +25 -0
  613. package/dist/src/Client/MVirtualObject.js.map +1 -0
  614. package/dist/src/Client/Properties/BoolProperty.d.ts +26 -0
  615. package/dist/src/Client/Properties/BoolProperty.d.ts.map +1 -0
  616. package/dist/src/Client/Properties/BoolProperty.js +66 -0
  617. package/dist/src/Client/Properties/BoolProperty.js.map +1 -0
  618. package/dist/src/Client/Properties/ByteProperty.d.ts +27 -0
  619. package/dist/src/Client/Properties/ByteProperty.d.ts.map +1 -0
  620. package/dist/src/Client/Properties/ByteProperty.js +114 -0
  621. package/dist/src/Client/Properties/ByteProperty.js.map +1 -0
  622. package/dist/src/Client/Properties/DateTimeProperty.d.ts +28 -0
  623. package/dist/src/Client/Properties/DateTimeProperty.d.ts.map +1 -0
  624. package/dist/src/Client/Properties/DateTimeProperty.js +128 -0
  625. package/dist/src/Client/Properties/DateTimeProperty.js.map +1 -0
  626. package/dist/src/Client/Properties/DoubleProperty.d.ts +24 -0
  627. package/dist/src/Client/Properties/DoubleProperty.d.ts.map +1 -0
  628. package/dist/src/Client/Properties/DoubleProperty.js +106 -0
  629. package/dist/src/Client/Properties/DoubleProperty.js.map +1 -0
  630. package/dist/src/Client/Properties/EnumProperty.d.ts +31 -0
  631. package/dist/src/Client/Properties/EnumProperty.d.ts.map +1 -0
  632. package/dist/src/Client/Properties/EnumProperty.js +68 -0
  633. package/dist/src/Client/Properties/EnumProperty.js.map +1 -0
  634. package/dist/src/Client/Properties/IRealProperty.d.ts +12 -0
  635. package/dist/src/Client/Properties/IRealProperty.d.ts.map +1 -0
  636. package/dist/src/Client/Properties/IRealProperty.js +3 -0
  637. package/dist/src/Client/Properties/IRealProperty.js.map +1 -0
  638. package/dist/src/Client/Properties/LongProperty.d.ts +24 -0
  639. package/dist/src/Client/Properties/LongProperty.d.ts.map +1 -0
  640. package/dist/src/Client/Properties/LongProperty.js +106 -0
  641. package/dist/src/Client/Properties/LongProperty.js.map +1 -0
  642. package/dist/src/Client/Properties/RealPropertyInternal.d.ts +2 -0
  643. package/dist/src/Client/Properties/RealPropertyInternal.d.ts.map +1 -0
  644. package/dist/src/Client/Properties/RealPropertyInternal.js +29 -0
  645. package/dist/src/Client/Properties/RealPropertyInternal.js.map +1 -0
  646. package/dist/src/Client/Properties/StringProperty.d.ts +30 -0
  647. package/dist/src/Client/Properties/StringProperty.d.ts.map +1 -0
  648. package/dist/src/Client/Properties/StringProperty.js +152 -0
  649. package/dist/src/Client/Properties/StringProperty.js.map +1 -0
  650. package/dist/src/Client/Properties/SupportedPropertyInternal.d.ts +2 -0
  651. package/dist/src/Client/Properties/SupportedPropertyInternal.d.ts.map +1 -0
  652. package/dist/src/Client/Properties/SupportedPropertyInternal.js +21 -0
  653. package/dist/src/Client/Properties/SupportedPropertyInternal.js.map +1 -0
  654. package/dist/src/Client/Properties/UlongProperty.d.ts +24 -0
  655. package/dist/src/Client/Properties/UlongProperty.d.ts.map +1 -0
  656. package/dist/src/Client/Properties/UlongProperty.js +106 -0
  657. package/dist/src/Client/Properties/UlongProperty.js.map +1 -0
  658. package/dist/src/Client/Queries/IRealObject.d.ts +3 -0
  659. package/dist/src/Client/Queries/IRealObject.d.ts.map +1 -0
  660. package/dist/src/Client/Queries/IRealObject.js +3 -0
  661. package/dist/src/Client/Queries/IRealObject.js.map +1 -0
  662. package/dist/src/Client/Queries/PlaceholderChild.d.ts +10 -0
  663. package/dist/src/Client/Queries/PlaceholderChild.d.ts.map +1 -0
  664. package/dist/src/Client/Queries/PlaceholderChild.js +22 -0
  665. package/dist/src/Client/Queries/PlaceholderChild.js.map +1 -0
  666. package/dist/src/Client/Queries/PlaceholderCopy.d.ts +13 -0
  667. package/dist/src/Client/Queries/PlaceholderCopy.d.ts.map +1 -0
  668. package/dist/src/Client/Queries/PlaceholderCopy.js +32 -0
  669. package/dist/src/Client/Queries/PlaceholderCopy.js.map +1 -0
  670. package/dist/src/Client/QueryBuilder.d.ts +87 -0
  671. package/dist/src/Client/QueryBuilder.d.ts.map +1 -0
  672. package/dist/src/Client/QueryBuilder.js +366 -0
  673. package/dist/src/Client/QueryBuilder.js.map +1 -0
  674. package/dist/src/Client/QueryInfo.d.ts +7 -0
  675. package/dist/src/Client/QueryInfo.d.ts.map +1 -0
  676. package/dist/src/Client/QueryInfo.js +12 -0
  677. package/dist/src/Client/QueryInfo.js.map +1 -0
  678. package/dist/src/Client/UpdateTools/ChildUpdate.d.ts +2 -0
  679. package/dist/src/Client/UpdateTools/ChildUpdate.d.ts.map +1 -0
  680. package/dist/src/Client/UpdateTools/ChildUpdate.js +262 -0
  681. package/dist/src/Client/UpdateTools/ChildUpdate.js.map +1 -0
  682. package/dist/src/Client/UpdateTools/ChildUpdateInfo.d.ts +13 -0
  683. package/dist/src/Client/UpdateTools/ChildUpdateInfo.d.ts.map +1 -0
  684. package/dist/src/Client/UpdateTools/ChildUpdateInfo.js +79 -0
  685. package/dist/src/Client/UpdateTools/ChildUpdateInfo.js.map +1 -0
  686. package/dist/src/Client/UpdateTools/FieldWatcher.d.ts +13 -0
  687. package/dist/src/Client/UpdateTools/FieldWatcher.d.ts.map +1 -0
  688. package/dist/src/Client/UpdateTools/FieldWatcher.js +43 -0
  689. package/dist/src/Client/UpdateTools/FieldWatcher.js.map +1 -0
  690. package/dist/src/Client/UpdateTools/Load.d.ts +2 -0
  691. package/dist/src/Client/UpdateTools/Load.d.ts.map +1 -0
  692. package/dist/src/Client/UpdateTools/Load.js +126 -0
  693. package/dist/src/Client/UpdateTools/Load.js.map +1 -0
  694. package/dist/src/Client/UpdateTools/ModelUpdateAndCompute.d.ts +42 -0
  695. package/dist/src/Client/UpdateTools/ModelUpdateAndCompute.d.ts.map +1 -0
  696. package/dist/src/Client/UpdateTools/ModelUpdateAndCompute.js +161 -0
  697. package/dist/src/Client/UpdateTools/ModelUpdateAndCompute.js.map +1 -0
  698. package/dist/src/Client/UpdateTools/UpdateWatcher.d.ts +12 -0
  699. package/dist/src/Client/UpdateTools/UpdateWatcher.d.ts.map +1 -0
  700. package/dist/src/Client/UpdateTools/UpdateWatcher.js +41 -0
  701. package/dist/src/Client/UpdateTools/UpdateWatcher.js.map +1 -0
  702. package/dist/src/Client/UpdateTools/ViewUpdateAndCompute.d.ts +21 -0
  703. package/dist/src/Client/UpdateTools/ViewUpdateAndCompute.d.ts.map +1 -0
  704. package/dist/src/Client/UpdateTools/ViewUpdateAndCompute.js +83 -0
  705. package/dist/src/Client/UpdateTools/ViewUpdateAndCompute.js.map +1 -0
  706. package/dist/src/Client/VSets/FilterAndSort/VFilters.d.ts +2 -0
  707. package/dist/src/Client/VSets/FilterAndSort/VFilters.d.ts.map +1 -0
  708. package/dist/src/Client/VSets/FilterAndSort/VFilters.js +53 -0
  709. package/dist/src/Client/VSets/FilterAndSort/VFilters.js.map +1 -0
  710. package/dist/src/Client/VSets/FilterAndSort/VListModif.d.ts +2 -0
  711. package/dist/src/Client/VSets/FilterAndSort/VListModif.d.ts.map +1 -0
  712. package/dist/src/Client/VSets/FilterAndSort/VListModif.js +45 -0
  713. package/dist/src/Client/VSets/FilterAndSort/VListModif.js.map +1 -0
  714. package/dist/src/Client/VSets/FilterAndSort/VListModification.d.ts +2 -0
  715. package/dist/src/Client/VSets/FilterAndSort/VListModification.d.ts.map +1 -0
  716. package/dist/src/Client/VSets/FilterAndSort/VListModification.js +24 -0
  717. package/dist/src/Client/VSets/FilterAndSort/VListModification.js.map +1 -0
  718. package/dist/src/Client/VSets/FilterAndSort/VSorter.d.ts +2 -0
  719. package/dist/src/Client/VSets/FilterAndSort/VSorter.d.ts.map +1 -0
  720. package/dist/src/Client/VSets/FilterAndSort/VSorter.js +21 -0
  721. package/dist/src/Client/VSets/FilterAndSort/VSorter.js.map +1 -0
  722. package/dist/src/Client/VSets/VList.d.ts +44 -0
  723. package/dist/src/Client/VSets/VList.d.ts.map +1 -0
  724. package/dist/src/Client/VSets/VList.js +409 -0
  725. package/dist/src/Client/VSets/VList.js.map +1 -0
  726. package/dist/src/Client/VSets/VPage.d.ts +20 -0
  727. package/dist/src/Client/VSets/VPage.d.ts.map +1 -0
  728. package/dist/src/Client/VSets/VPage.js +125 -0
  729. package/dist/src/Client/VSets/VPage.js.map +1 -0
  730. package/dist/src/Client/VSets/VPagination.d.ts +32 -0
  731. package/dist/src/Client/VSets/VPagination.d.ts.map +1 -0
  732. package/dist/src/Client/VSets/VPagination.js +126 -0
  733. package/dist/src/Client/VSets/VPagination.js.map +1 -0
  734. package/dist/src/Client/VSets/VSet.d.ts +9 -0
  735. package/dist/src/Client/VSets/VSet.d.ts.map +1 -0
  736. package/dist/src/Client/VSets/VSet.js +132 -0
  737. package/dist/src/Client/VSets/VSet.js.map +1 -0
  738. package/dist/src/Client/View/VBoundObject.d.ts +4 -0
  739. package/dist/src/Client/View/VBoundObject.d.ts.map +1 -0
  740. package/dist/src/Client/View/VBoundObject.js +15 -0
  741. package/dist/src/Client/View/VBoundObject.js.map +1 -0
  742. package/dist/src/Client/View/VObject.d.ts +29 -0
  743. package/dist/src/Client/View/VObject.d.ts.map +1 -0
  744. package/dist/src/Client/View/VObject.js +181 -0
  745. package/dist/src/Client/View/VObject.js.map +1 -0
  746. package/dist/src/Client/View/VObjectInList.d.ts +41 -0
  747. package/dist/src/Client/View/VObjectInList.d.ts.map +1 -0
  748. package/dist/src/Client/View/VObjectInList.js +100 -0
  749. package/dist/src/Client/View/VObjectInList.js.map +1 -0
  750. package/dist/src/Communication/CustomReadQuery.d.ts +2 -0
  751. package/dist/src/Communication/CustomReadQuery.d.ts.map +1 -0
  752. package/dist/src/Communication/CustomReadQuery.js +12 -0
  753. package/dist/src/Communication/CustomReadQuery.js.map +1 -0
  754. package/dist/src/Communication/DataAnswer.d.ts +2 -0
  755. package/dist/src/Communication/DataAnswer.d.ts.map +1 -0
  756. package/dist/src/Communication/DataAnswer.js +62 -0
  757. package/dist/src/Communication/DataAnswer.js.map +1 -0
  758. package/dist/src/Communication/DataItems/ChildData.d.ts +2 -0
  759. package/dist/src/Communication/DataItems/ChildData.d.ts.map +1 -0
  760. package/dist/src/Communication/DataItems/ChildData.js +92 -0
  761. package/dist/src/Communication/DataItems/ChildData.js.map +1 -0
  762. package/dist/src/Communication/DataItems/QueryData.d.ts +2 -0
  763. package/dist/src/Communication/DataItems/QueryData.d.ts.map +1 -0
  764. package/dist/src/Communication/DataItems/QueryData.js +56 -0
  765. package/dist/src/Communication/DataItems/QueryData.js.map +1 -0
  766. package/dist/src/Communication/DataItems/RelationData.d.ts +2 -0
  767. package/dist/src/Communication/DataItems/RelationData.d.ts.map +1 -0
  768. package/dist/src/Communication/DataItems/RelationData.js +82 -0
  769. package/dist/src/Communication/DataItems/RelationData.js.map +1 -0
  770. package/dist/src/Communication/DataItems/ValueClearedData.d.ts +2 -0
  771. package/dist/src/Communication/DataItems/ValueClearedData.d.ts.map +1 -0
  772. package/dist/src/Communication/DataItems/ValueClearedData.js +51 -0
  773. package/dist/src/Communication/DataItems/ValueClearedData.js.map +1 -0
  774. package/dist/src/Communication/DataItems/ValueData.d.ts +2 -0
  775. package/dist/src/Communication/DataItems/ValueData.d.ts.map +1 -0
  776. package/dist/src/Communication/DataItems/ValueData.js +50 -0
  777. package/dist/src/Communication/DataItems/ValueData.js.map +1 -0
  778. package/dist/src/Communication/DataItems/Values/VDByte.d.ts +2 -0
  779. package/dist/src/Communication/DataItems/Values/VDByte.d.ts.map +1 -0
  780. package/dist/src/Communication/DataItems/Values/VDByte.js +40 -0
  781. package/dist/src/Communication/DataItems/Values/VDByte.js.map +1 -0
  782. package/dist/src/Communication/DataItems/Values/VDDateTime.d.ts +2 -0
  783. package/dist/src/Communication/DataItems/Values/VDDateTime.d.ts.map +1 -0
  784. package/dist/src/Communication/DataItems/Values/VDDateTime.js +40 -0
  785. package/dist/src/Communication/DataItems/Values/VDDateTime.js.map +1 -0
  786. package/dist/src/Communication/DataItems/Values/VDDouble.d.ts +2 -0
  787. package/dist/src/Communication/DataItems/Values/VDDouble.d.ts.map +1 -0
  788. package/dist/src/Communication/DataItems/Values/VDDouble.js +40 -0
  789. package/dist/src/Communication/DataItems/Values/VDDouble.js.map +1 -0
  790. package/dist/src/Communication/DataItems/Values/VDLong.d.ts +2 -0
  791. package/dist/src/Communication/DataItems/Values/VDLong.d.ts.map +1 -0
  792. package/dist/src/Communication/DataItems/Values/VDLong.js +40 -0
  793. package/dist/src/Communication/DataItems/Values/VDLong.js.map +1 -0
  794. package/dist/src/Communication/DataItems/Values/VDString.d.ts +2 -0
  795. package/dist/src/Communication/DataItems/Values/VDString.d.ts.map +1 -0
  796. package/dist/src/Communication/DataItems/Values/VDString.js +43 -0
  797. package/dist/src/Communication/DataItems/Values/VDString.js.map +1 -0
  798. package/dist/src/Communication/DataItems/Values/VDUlong.d.ts +2 -0
  799. package/dist/src/Communication/DataItems/Values/VDUlong.d.ts.map +1 -0
  800. package/dist/src/Communication/DataItems/Values/VDUlong.js +40 -0
  801. package/dist/src/Communication/DataItems/Values/VDUlong.js.map +1 -0
  802. package/dist/src/Communication/DataMessage.d.ts +2 -0
  803. package/dist/src/Communication/DataMessage.d.ts.map +1 -0
  804. package/dist/src/Communication/DataMessage.js +199 -0
  805. package/dist/src/Communication/DataMessage.js.map +1 -0
  806. package/dist/src/Communication/ErrorMessage.d.ts +348 -0
  807. package/dist/src/Communication/ErrorMessage.d.ts.map +1 -0
  808. package/dist/src/Communication/ErrorMessage.js +943 -0
  809. package/dist/src/Communication/ErrorMessage.js.map +1 -0
  810. package/dist/src/Communication/GetPagesQuery.d.ts +2 -0
  811. package/dist/src/Communication/GetPagesQuery.d.ts.map +1 -0
  812. package/dist/src/Communication/GetPagesQuery.js +22 -0
  813. package/dist/src/Communication/GetPagesQuery.js.map +1 -0
  814. package/dist/src/Communication/Query.d.ts +2 -0
  815. package/dist/src/Communication/Query.d.ts.map +1 -0
  816. package/dist/src/Communication/Query.js +18 -0
  817. package/dist/src/Communication/Query.js.map +1 -0
  818. package/dist/src/Communication/QueryItems/QIClearLinks.d.ts +2 -0
  819. package/dist/src/Communication/QueryItems/QIClearLinks.d.ts.map +1 -0
  820. package/dist/src/Communication/QueryItems/QIClearLinks.js +17 -0
  821. package/dist/src/Communication/QueryItems/QIClearLinks.js.map +1 -0
  822. package/dist/src/Communication/QueryItems/QIDelete.d.ts +2 -0
  823. package/dist/src/Communication/QueryItems/QIDelete.d.ts.map +1 -0
  824. package/dist/src/Communication/QueryItems/QIDelete.js +15 -0
  825. package/dist/src/Communication/QueryItems/QIDelete.js.map +1 -0
  826. package/dist/src/Communication/QueryItems/QINewChild.d.ts +2 -0
  827. package/dist/src/Communication/QueryItems/QINewChild.d.ts.map +1 -0
  828. package/dist/src/Communication/QueryItems/QINewChild.js +104 -0
  829. package/dist/src/Communication/QueryItems/QINewChild.js.map +1 -0
  830. package/dist/src/Communication/QueryItems/QIReassignChild.d.ts +2 -0
  831. package/dist/src/Communication/QueryItems/QIReassignChild.d.ts.map +1 -0
  832. package/dist/src/Communication/QueryItems/QIReassignChild.js +27 -0
  833. package/dist/src/Communication/QueryItems/QIReassignChild.js.map +1 -0
  834. package/dist/src/Communication/QueryItems/QIUnlink.d.ts +2 -0
  835. package/dist/src/Communication/QueryItems/QIUnlink.d.ts.map +1 -0
  836. package/dist/src/Communication/QueryItems/QIUnlink.js +19 -0
  837. package/dist/src/Communication/QueryItems/QIUnlink.js.map +1 -0
  838. package/dist/src/Communication/QueryItems/QIValue.d.ts +33 -0
  839. package/dist/src/Communication/QueryItems/QIValue.d.ts.map +1 -0
  840. package/dist/src/Communication/QueryItems/QIValue.js +111 -0
  841. package/dist/src/Communication/QueryItems/QIValue.js.map +1 -0
  842. package/dist/src/Communication/Serialization/MIVDeserializer.d.ts +20 -0
  843. package/dist/src/Communication/Serialization/MIVDeserializer.d.ts.map +1 -0
  844. package/dist/src/Communication/Serialization/MIVDeserializer.js +128 -0
  845. package/dist/src/Communication/Serialization/MIVDeserializer.js.map +1 -0
  846. package/dist/src/Communication/Serialization/MIVSerializer.d.ts +25 -0
  847. package/dist/src/Communication/Serialization/MIVSerializer.d.ts.map +1 -0
  848. package/dist/src/Communication/Serialization/MIVSerializer.js +135 -0
  849. package/dist/src/Communication/Serialization/MIVSerializer.js.map +1 -0
  850. package/dist/src/Communication/SignQuery.d.ts +2 -0
  851. package/dist/src/Communication/SignQuery.d.ts.map +1 -0
  852. package/dist/src/Communication/SignQuery.js +19 -0
  853. package/dist/src/Communication/SignQuery.js.map +1 -0
  854. package/dist/src/Communication/SignupQuery.d.ts +2 -0
  855. package/dist/src/Communication/SignupQuery.d.ts.map +1 -0
  856. package/dist/src/Communication/SignupQuery.js +14 -0
  857. package/dist/src/Communication/SignupQuery.js.map +1 -0
  858. package/dist/src/Communication/UnloadQuery.d.ts +2 -0
  859. package/dist/src/Communication/UnloadQuery.d.ts.map +1 -0
  860. package/dist/src/Communication/UnloadQuery.js +20 -0
  861. package/dist/src/Communication/UnloadQuery.js.map +1 -0
  862. package/dist/src/Communication/UpdateQuery.d.ts +2 -0
  863. package/dist/src/Communication/UpdateQuery.d.ts.map +1 -0
  864. package/dist/src/Communication/UpdateQuery.js +45 -0
  865. package/dist/src/Communication/UpdateQuery.js.map +1 -0
  866. package/dist/src/HTML/PropertyTextBlock.d.ts +42 -0
  867. package/dist/src/HTML/PropertyTextBlock.d.ts.map +1 -0
  868. package/dist/src/HTML/PropertyTextBlock.js +161 -0
  869. package/dist/src/HTML/PropertyTextBlock.js.map +1 -0
  870. package/dist/src/HTML/PropertyTextBox.d.ts +39 -0
  871. package/dist/src/HTML/PropertyTextBox.d.ts.map +1 -0
  872. package/dist/src/HTML/PropertyTextBox.js +245 -0
  873. package/dist/src/HTML/PropertyTextBox.js.map +1 -0
  874. package/dist/src/MIVConstants.d.ts +19 -0
  875. package/dist/src/MIVConstants.d.ts.map +1 -0
  876. package/dist/src/MIVConstants.js +31 -0
  877. package/dist/src/MIVConstants.js.map +1 -0
  878. package/dist/src/MIVValueTypes.d.ts +2 -0
  879. package/dist/src/MIVValueTypes.d.ts.map +1 -0
  880. package/dist/src/MIVValueTypes.js +14 -0
  881. package/dist/src/MIVValueTypes.js.map +1 -0
  882. package/dist/src/Tools/AccumulatorList.d.ts +2 -0
  883. package/dist/src/Tools/AccumulatorList.d.ts.map +1 -0
  884. package/dist/src/Tools/AccumulatorList.js +61 -0
  885. package/dist/src/Tools/AccumulatorList.js.map +1 -0
  886. package/dist/src/Tools/LoadTools.d.ts +7 -0
  887. package/dist/src/Tools/LoadTools.d.ts.map +1 -0
  888. package/dist/src/Tools/LoadTools.js +57 -0
  889. package/dist/src/Tools/LoadTools.js.map +1 -0
  890. package/dist/src/Tools/MIVCache.d.ts +2 -0
  891. package/dist/src/Tools/MIVCache.d.ts.map +1 -0
  892. package/dist/src/Tools/MIVCache.js +29 -0
  893. package/dist/src/Tools/MIVCache.js.map +1 -0
  894. package/dist/src/Tools/MIVConverter.d.ts +6 -0
  895. package/dist/src/Tools/MIVConverter.d.ts.map +1 -0
  896. package/dist/src/Tools/MIVConverter.js +133 -0
  897. package/dist/src/Tools/MIVConverter.js.map +1 -0
  898. package/dist/src/Tools/PersistentList.d.ts +2 -0
  899. package/dist/src/Tools/PersistentList.d.ts.map +1 -0
  900. package/dist/src/Tools/PersistentList.js +90 -0
  901. package/dist/src/Tools/PersistentList.js.map +1 -0
  902. package/dist/src/Tools/Semaphore.d.ts +15 -0
  903. package/dist/src/Tools/Semaphore.d.ts.map +1 -0
  904. package/dist/src/Tools/Semaphore.js +62 -0
  905. package/dist/src/Tools/Semaphore.js.map +1 -0
  906. package/dist/src/Tools/UpdateTool.d.ts +7 -0
  907. package/dist/src/Tools/UpdateTool.d.ts.map +1 -0
  908. package/dist/src/Tools/UpdateTool.js +15 -0
  909. package/dist/src/Tools/UpdateTool.js.map +1 -0
  910. package/dist/src/index.d.ts +56 -0
  911. package/dist/src/index.d.ts.map +1 -0
  912. package/dist/src/index.js +134 -0
  913. package/dist/src/index.js.map +1 -0
  914. package/package.json +23 -0
@@ -0,0 +1,705 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuditTrailHandler = exports.AuditTrailReport = exports.AuditTrailQueryPerObject = exports.ATVDateTime = exports.ATVByte = exports.ATVBinary = exports.ATVDouble = exports.ATVLong = exports.ATVString = exports.ATValue = exports.ATIRelationReassigned = exports.ATIChildReassigned = exports.ATIRelationDeleted = exports.ATIChildDeleted = exports.ATIRelationCreated = exports.ATIChildCreated = exports.AuditTrailItem = exports.AuditTrailQuery = exports.AuditTrailObjectInfo = void 0;
4
+ const ErrorMessage_1 = require("../Communication/ErrorMessage");
5
+ const Query_1 = require("../Communication/Query");
6
+ const MIVConstants_1 = require("../MIVConstants");
7
+ const MIVValueTypes_1 = require("../MIVValueTypes");
8
+ class AuditTrailObjectInfo {
9
+ get Type() { return this._type_private_; }
10
+ ;
11
+ constructor(id, type, name) {
12
+ this.ID = id;
13
+ this.TypeID = type;
14
+ this.Name = name;
15
+ this.AllEvents = new Array();
16
+ this.Queries = new Array();
17
+ this.DisplayName = name;
18
+ }
19
+ static _deserialize_miv_(deser) {
20
+ const id = deser.ReadInt64();
21
+ if (id === undefined)
22
+ return undefined;
23
+ const type = deser.ReadUint16();
24
+ if (type === undefined)
25
+ return undefined;
26
+ const name = deser.ReadString();
27
+ if (name === undefined)
28
+ return undefined;
29
+ return new AuditTrailObjectInfo(id, type, name);
30
+ }
31
+ _newEvent_miv_(evt) {
32
+ this.AllEvents.push(evt);
33
+ }
34
+ _pack_miv_(client) {
35
+ this._type_private_ = client.TryGetType(this.TypeID);
36
+ if (this._type_private_ === undefined) {
37
+ this.DisplayTypeName = this.TypeID.toString();
38
+ }
39
+ else {
40
+ this.DisplayTypeName = this._type_private_.Name ?? this.TypeID.toString();
41
+ }
42
+ this.AllEvents.sort((x, y) => {
43
+ if (x.Query.AtUTC < y.Query.AtUTC) {
44
+ return 1;
45
+ }
46
+ else if (x.Query.AtUTC > y.Query.AtUTC) {
47
+ return -1;
48
+ }
49
+ else {
50
+ if (x.Query.ID < y.Query.ID) {
51
+ return 1;
52
+ }
53
+ else if (x.Query.ID > y.Query.ID) {
54
+ return -1;
55
+ }
56
+ else {
57
+ return x.order - y.order;
58
+ }
59
+ }
60
+ });
61
+ let last = undefined;
62
+ for (let i = 0; i < this.AllEvents.length; i++) {
63
+ const evt = this.AllEvents[i];
64
+ if (last === undefined || last.Query != evt.Query) {
65
+ last = new AuditTrailQueryPerObject(evt.Query);
66
+ this.Queries.push(last);
67
+ }
68
+ last.Events.push(evt);
69
+ }
70
+ }
71
+ }
72
+ exports.AuditTrailObjectInfo = AuditTrailObjectInfo;
73
+ class AuditTrailQuery {
74
+ constructor(id, by, atUTC) {
75
+ this.ID = id;
76
+ this.By = by;
77
+ this.AtUTC = atUTC;
78
+ this.Items = new Array();
79
+ }
80
+ static _deserialize_miv_(deser) {
81
+ const id = deser.ReadInt64();
82
+ if (id === undefined)
83
+ return undefined;
84
+ const by = deser.ReadInt64();
85
+ if (by === undefined)
86
+ return undefined;
87
+ const at = deser.ReadDateTimeUTC();
88
+ if (at === undefined)
89
+ return undefined;
90
+ return new AuditTrailQuery(id, by, at);
91
+ }
92
+ _newItem_miv_(i) {
93
+ this.Items.push(i);
94
+ }
95
+ _pack_miv_() {
96
+ this.Items.sort((x, y) => {
97
+ if (x.Query.AtUTC < y.Query.AtUTC) {
98
+ return 1;
99
+ }
100
+ else if (x.Query.AtUTC > y.Query.AtUTC) {
101
+ return -1;
102
+ }
103
+ else {
104
+ return x.order - y.order;
105
+ }
106
+ });
107
+ }
108
+ _packEvents_miv_(client) {
109
+ for (let i = 0; i < this.Items.length; i++) {
110
+ this.Items[i]._pack_miv_(client);
111
+ }
112
+ }
113
+ }
114
+ exports.AuditTrailQuery = AuditTrailQuery;
115
+ class AuditTrailItem {
116
+ constructor(q) {
117
+ this.Query = q;
118
+ }
119
+ static _deserialize_miv_(q, deser, oFetcher) {
120
+ const kind = deser.ReadUint8();
121
+ if (kind === undefined)
122
+ return false;
123
+ switch (kind) {
124
+ case AuditTrailItem.KIND_CHILD_CREATED: return ATIChildCreated._deserializeChild_miv_(q, deser, oFetcher);
125
+ case AuditTrailItem.KIND_RELATION_CREATED: return ATIRelationCreated._deserializeRelation_miv_(q, deser, oFetcher);
126
+ case AuditTrailItem.KIND_CHILD_DELETED: return ATIChildDeleted._deserializeChild_miv_(q, deser, oFetcher);
127
+ case AuditTrailItem.KIND_RELATION_DELETED: return ATIRelationDeleted._deserializeRelation_miv_(q, deser, oFetcher);
128
+ case AuditTrailItem.KIND_CHILD_REASSIGNED: return ATIChildReassigned._deserializeChild_miv_(q, deser, oFetcher);
129
+ case AuditTrailItem.KIND_RELATION_REASSIGNED: return ATIRelationReassigned._deserializeRelation_miv_(q, deser, oFetcher);
130
+ default: return ATValue._deserializeValue_miv_(q, deser, kind, oFetcher);
131
+ }
132
+ }
133
+ }
134
+ exports.AuditTrailItem = AuditTrailItem;
135
+ AuditTrailItem.KIND_CHILD_CREATED = 1;
136
+ AuditTrailItem.KIND_RELATION_CREATED = 2;
137
+ AuditTrailItem.KIND_CHILD_DELETED = 3;
138
+ AuditTrailItem.KIND_RELATION_DELETED = 4;
139
+ AuditTrailItem.KIND_CHILD_REASSIGNED = 5;
140
+ AuditTrailItem.KIND_RELATION_REASSIGNED = 6;
141
+ AuditTrailItem.KIND_STRING = 7;
142
+ AuditTrailItem.KIND_LONG = 8;
143
+ AuditTrailItem.KIND_DOUBLE = 9;
144
+ AuditTrailItem.KIND_BINARY = 10;
145
+ AuditTrailItem.KIND_BYTE = 11;
146
+ AuditTrailItem.KIND_DATETIME = 12;
147
+ AuditTrailItem.ORDER_OFFSET = 65536;
148
+ class ATIChildCreated extends AuditTrailItem {
149
+ get ChildrenSet() { return this._set_miv_; }
150
+ constructor(q, parent, createdInfo, property) {
151
+ super(q);
152
+ this.Parent = parent;
153
+ this.CreatedInfo = createdInfo;
154
+ this.Property = property;
155
+ parent._newEvent_miv_(this);
156
+ createdInfo._newEvent_miv_(this);
157
+ }
158
+ _handledBy_miv_(h) {
159
+ return h.HandleChildCreated(this);
160
+ }
161
+ static _deserializeChild_miv_(q, deser, oFetcher) {
162
+ const parentID = deser.ReadInt64();
163
+ if (parentID === undefined)
164
+ return false;
165
+ const childID = deser.ReadInt64();
166
+ if (childID === undefined)
167
+ return false;
168
+ const property = deser.ReadUint16();
169
+ if (property === undefined)
170
+ return false;
171
+ const parent = oFetcher.get(parentID);
172
+ const child = oFetcher.get(childID);
173
+ if (parent !== undefined && child !== undefined) {
174
+ new ATIChildCreated(q, parent, child, property);
175
+ }
176
+ return true;
177
+ }
178
+ get order() {
179
+ return this.CreatedInfo.TypeID;
180
+ }
181
+ _pack_miv_(client) {
182
+ if (this.Parent.Type !== undefined && this.CreatedInfo.Type !== undefined) {
183
+ this._set_miv_ = this.Parent.Type.TryGetChildrenInfo(this.Property, this.CreatedInfo.Type);
184
+ }
185
+ }
186
+ }
187
+ exports.ATIChildCreated = ATIChildCreated;
188
+ class ATIRelationCreated extends ATIChildCreated {
189
+ constructor(q, parent, createdInfo, property, target) {
190
+ super(q, parent, createdInfo, property);
191
+ this.Target = target;
192
+ }
193
+ _handledBy_miv_(h) {
194
+ return h.HandleRelationCreated(this);
195
+ }
196
+ static _deserializeRelation_miv_(q, deser, oFetcher) {
197
+ const parentID = deser.ReadInt64();
198
+ if (parentID === undefined)
199
+ return false;
200
+ const childID = deser.ReadInt64();
201
+ if (childID === undefined)
202
+ return false;
203
+ const property = deser.ReadUint16();
204
+ if (property === undefined)
205
+ return false;
206
+ const targetID = deser.ReadInt64();
207
+ if (targetID === undefined)
208
+ return false;
209
+ const parent = oFetcher.get(parentID);
210
+ const child = oFetcher.get(childID);
211
+ if (parent !== undefined && child !== undefined) {
212
+ const target = oFetcher.get(targetID);
213
+ new ATIRelationCreated(q, parent, child, property, target);
214
+ }
215
+ return true;
216
+ }
217
+ get order() {
218
+ return AuditTrailItem.ORDER_OFFSET + this.CreatedInfo.TypeID;
219
+ }
220
+ }
221
+ exports.ATIRelationCreated = ATIRelationCreated;
222
+ class ATIChildDeleted extends AuditTrailItem {
223
+ get ChildrenSet() { return this._set_miv_; }
224
+ constructor(q, parent, deletedInfo, property) {
225
+ super(q);
226
+ this.Parent = parent;
227
+ this.DeletedInfo = deletedInfo;
228
+ this.Property = property;
229
+ parent._newEvent_miv_(this);
230
+ deletedInfo._newEvent_miv_(this);
231
+ }
232
+ _handledBy_miv_(h) {
233
+ return h.HandleChildDeleted(this);
234
+ }
235
+ static _deserializeChild_miv_(q, deser, oFetcher) {
236
+ const parentID = deser.ReadInt64();
237
+ if (parentID === undefined)
238
+ return false;
239
+ const childID = deser.ReadInt64();
240
+ if (childID === undefined)
241
+ return false;
242
+ const property = deser.ReadUint32();
243
+ if (property === undefined)
244
+ return false;
245
+ const parent = oFetcher.get(parentID);
246
+ const child = oFetcher.get(childID);
247
+ if (parent !== undefined && child !== undefined) {
248
+ new ATIChildDeleted(q, parent, child, property);
249
+ }
250
+ return true;
251
+ }
252
+ get order() {
253
+ return AuditTrailItem.ORDER_OFFSET * 9 + this.DeletedInfo.TypeID;
254
+ }
255
+ _pack_miv_(client) {
256
+ if (this.Parent.Type !== undefined && this.DeletedInfo.Type !== undefined) {
257
+ this._set_miv_ = this.Parent.Type.TryGetChildrenInfo(this.Property, this.DeletedInfo.Type);
258
+ }
259
+ }
260
+ }
261
+ exports.ATIChildDeleted = ATIChildDeleted;
262
+ class ATIRelationDeleted extends ATIChildDeleted {
263
+ constructor(q, parent, deletedInfo, property, target) {
264
+ super(q, parent, deletedInfo, property);
265
+ this.Target = target;
266
+ }
267
+ _handledBy_miv_(h) {
268
+ return h.HandleRelationDeleted(this);
269
+ }
270
+ static _deserializeRelation_miv_(q, deser, oFetcher) {
271
+ const parentID = deser.ReadInt64();
272
+ if (parentID === undefined)
273
+ return false;
274
+ const childID = deser.ReadInt64();
275
+ if (childID === undefined)
276
+ return false;
277
+ const property = deser.ReadUint32();
278
+ if (property === undefined)
279
+ return false;
280
+ const targetID = deser.ReadInt64();
281
+ if (targetID === undefined)
282
+ return false;
283
+ const parent = oFetcher.get(parentID);
284
+ const child = oFetcher.get(childID);
285
+ if (parent !== undefined && child !== undefined) {
286
+ const target = oFetcher.get(targetID);
287
+ new ATIRelationDeleted(q, parent, child, property, target);
288
+ }
289
+ return true;
290
+ }
291
+ get order() {
292
+ return AuditTrailItem.ORDER_OFFSET * 10 + this.DeletedInfo.TypeID;
293
+ }
294
+ }
295
+ exports.ATIRelationDeleted = ATIRelationDeleted;
296
+ class ATIChildReassigned extends AuditTrailItem {
297
+ get OldChildren() { return this._oldset_miv_; }
298
+ get NewChildren() { return this._newset_miv_; }
299
+ constructor(q, oldParent, oldProperty, newParent, newProperty, reassignedInfo) {
300
+ super(q);
301
+ this.OldParent = oldParent;
302
+ this.OldProperty = oldProperty;
303
+ this.NewParent = newParent;
304
+ this.NewProperty = newProperty;
305
+ this.ReassignedInfo = reassignedInfo;
306
+ oldParent._newEvent_miv_(this);
307
+ newParent._newEvent_miv_(this);
308
+ reassignedInfo._newEvent_miv_(this);
309
+ }
310
+ _handledBy_miv_(h) {
311
+ return h.HandleChildReassigned(this);
312
+ }
313
+ static _deserializeChild_miv_(q, deser, oFetcher) {
314
+ const oldParentID = deser.ReadInt64();
315
+ if (oldParentID === undefined)
316
+ return false;
317
+ const oldProperty = deser.ReadUint16();
318
+ if (oldProperty === undefined)
319
+ return false;
320
+ const newParentID = deser.ReadInt64();
321
+ if (newParentID === undefined)
322
+ return false;
323
+ const newProperty = deser.ReadUint16();
324
+ if (newProperty === undefined)
325
+ return false;
326
+ const childID = deser.ReadInt64();
327
+ if (childID === undefined)
328
+ return false;
329
+ const oldParent = oFetcher.get(oldParentID);
330
+ const newParent = oFetcher.get(newParentID);
331
+ const child = oFetcher.get(childID);
332
+ if (oldParent !== undefined && newParent !== undefined && child !== undefined) {
333
+ new ATIChildReassigned(q, oldParent, oldProperty, newParent, newProperty, child);
334
+ }
335
+ return true;
336
+ }
337
+ get order() {
338
+ return AuditTrailItem.ORDER_OFFSET * 11 + this.ReassignedInfo.TypeID;
339
+ }
340
+ _pack_miv_(client) {
341
+ if (this.ReassignedInfo.Type !== undefined) {
342
+ if (this.OldParent.Type !== undefined) {
343
+ this._oldset_miv_ = this.OldParent.Type.TryGetChildrenInfo(this.OldProperty, this.ReassignedInfo.Type);
344
+ }
345
+ if (this.NewParent.Type !== undefined) {
346
+ if (this.NewParent.Type == this.OldParent.Type && this.OldProperty == this.NewProperty) {
347
+ this._newset_miv_ = this._oldset_miv_;
348
+ }
349
+ else {
350
+ this._newset_miv_ = this.NewParent.Type.TryGetChildrenInfo(this.NewProperty, this.ReassignedInfo.Type);
351
+ }
352
+ }
353
+ }
354
+ }
355
+ }
356
+ exports.ATIChildReassigned = ATIChildReassigned;
357
+ class ATIRelationReassigned extends ATIChildReassigned {
358
+ constructor(q, oldParent, oldProperty, newParent, newProperty, reassignedInfo, target) {
359
+ super(q, oldParent, oldProperty, newParent, newProperty, reassignedInfo);
360
+ this.Target = target;
361
+ }
362
+ _handledBy_miv_(h) {
363
+ return h.HandleRelationReassigned(this);
364
+ }
365
+ static _deserializeRelation_miv_(q, deser, oFetcher) {
366
+ const oldParentID = deser.ReadInt64();
367
+ if (oldParentID === undefined)
368
+ return false;
369
+ const oldProperty = deser.ReadUint16();
370
+ if (oldProperty === undefined)
371
+ return false;
372
+ const newParentID = deser.ReadInt64();
373
+ if (newParentID === undefined)
374
+ return false;
375
+ const newProperty = deser.ReadUint16();
376
+ if (newProperty === undefined)
377
+ return false;
378
+ const childID = deser.ReadInt64();
379
+ if (childID === undefined)
380
+ return false;
381
+ const targetID = deser.ReadInt64();
382
+ if (targetID === undefined)
383
+ return false;
384
+ const oldParent = oFetcher.get(oldParentID);
385
+ const newParent = oFetcher.get(newParentID);
386
+ const child = oFetcher.get(childID);
387
+ if (oldParent !== undefined && newParent !== undefined && child !== undefined) {
388
+ const target = oFetcher.get(targetID);
389
+ new ATIRelationReassigned(q, oldParent, oldProperty, newParent, newProperty, child, target);
390
+ }
391
+ return true;
392
+ }
393
+ get order() {
394
+ return AuditTrailItem.ORDER_OFFSET * 12 + this.ReassignedInfo.TypeID;
395
+ }
396
+ }
397
+ exports.ATIRelationReassigned = ATIRelationReassigned;
398
+ class ATValue extends AuditTrailItem {
399
+ constructor(q, owner, property) {
400
+ super(q);
401
+ this.Owner = owner;
402
+ this.Property = property;
403
+ owner._newEvent_miv_(this);
404
+ }
405
+ static _deserializeValue_miv_(q, deser, kind, oFetcher) {
406
+ const ownerID = deser.ReadInt64();
407
+ if (ownerID === undefined)
408
+ return false;
409
+ const property = deser.ReadUint16();
410
+ if (property === undefined)
411
+ return false;
412
+ const owner = oFetcher.get(ownerID);
413
+ switch (kind) {
414
+ case AuditTrailItem.KIND_STRING: return ATVString._deserializeString_miv_(q, deser, owner, property);
415
+ case AuditTrailItem.KIND_LONG: return ATVLong._deserializeLong_miv_(q, deser, owner, property);
416
+ case AuditTrailItem.KIND_DOUBLE: return ATVDouble._deserializeDouble_miv_(q, deser, owner, property);
417
+ case AuditTrailItem.KIND_BINARY: return ATVBinary._deserializeBinary_miv_(q, deser, owner, property);
418
+ case AuditTrailItem.KIND_BYTE: return ATVByte._deserializeByte_miv_(q, deser, owner, property);
419
+ case AuditTrailItem.KIND_DATETIME: return ATVDateTime._deserializeDateTime_miv_(q, deser, owner, property);
420
+ default: return false;
421
+ }
422
+ }
423
+ _pack_miv_(client) {
424
+ this._info_miv_ = this.Owner.Type?.TryGetPropertyInfo(this.Property);
425
+ }
426
+ }
427
+ exports.ATValue = ATValue;
428
+ class ATVString extends ATValue {
429
+ constructor(q, owner, property, value, oldValue) {
430
+ super(q, owner, property);
431
+ this.Value = value;
432
+ this.OldValue = oldValue;
433
+ }
434
+ _handledBy_miv_(h) {
435
+ return h.HandleString(this);
436
+ }
437
+ static _deserializeString_miv_(q, deser, owner, property) {
438
+ const value = deser.ReadString();
439
+ if (value === undefined)
440
+ return false;
441
+ const oldValue = deser.ReadString();
442
+ if (oldValue === undefined)
443
+ return false;
444
+ if (owner !== undefined) {
445
+ new ATVString(q, owner, property, value, oldValue);
446
+ }
447
+ return true;
448
+ }
449
+ get order() {
450
+ if (this.Property == MIVConstants_1.MIVConstants.PROPERTY_NAME)
451
+ return AuditTrailItem.ORDER_OFFSET * 2 + this.Owner.TypeID;
452
+ else
453
+ return AuditTrailItem.ORDER_OFFSET * 4 + this.Property;
454
+ }
455
+ GetKind() {
456
+ return MIVValueTypes_1.MIVValueTypes.STRING;
457
+ }
458
+ }
459
+ exports.ATVString = ATVString;
460
+ class ATVLong extends ATValue {
461
+ constructor(q, owner, property, value, oldValue) {
462
+ super(q, owner, property);
463
+ this.Value = value;
464
+ this.OldValue = oldValue;
465
+ }
466
+ _handledBy_miv_(h) {
467
+ return h.HandleLong(this);
468
+ }
469
+ static _deserializeLong_miv_(q, deser, owner, property) {
470
+ const value = deser.ReadInt64();
471
+ if (value === undefined)
472
+ return false;
473
+ const oldValue = deser.ReadInt64();
474
+ if (oldValue === undefined)
475
+ return false;
476
+ if (owner !== undefined) {
477
+ new ATVLong(q, owner, property, value, oldValue);
478
+ }
479
+ return true;
480
+ }
481
+ get order() {
482
+ return AuditTrailItem.ORDER_OFFSET * 5 + this.Property;
483
+ }
484
+ GetKind() {
485
+ return MIVValueTypes_1.MIVValueTypes.LONG;
486
+ }
487
+ }
488
+ exports.ATVLong = ATVLong;
489
+ class ATVDouble extends ATValue {
490
+ constructor(q, owner, property, value, oldValue) {
491
+ super(q, owner, property);
492
+ this.Value = value;
493
+ this.OldValue = oldValue;
494
+ }
495
+ _handledBy_miv_(h) {
496
+ return h.HandleDouble(this);
497
+ }
498
+ static _deserializeDouble_miv_(q, deser, owner, property) {
499
+ const value = deser.ReadFloat64();
500
+ if (value === undefined)
501
+ return false;
502
+ const oldValue = deser.ReadFloat64();
503
+ if (oldValue === undefined)
504
+ return false;
505
+ if (owner !== undefined) {
506
+ new ATVDouble(q, owner, property, value, oldValue);
507
+ }
508
+ return true;
509
+ }
510
+ get order() {
511
+ return AuditTrailItem.ORDER_OFFSET * 6 + this.Property;
512
+ }
513
+ GetKind() {
514
+ return MIVValueTypes_1.MIVValueTypes.DOUBLE;
515
+ }
516
+ }
517
+ exports.ATVDouble = ATVDouble;
518
+ class ATVBinary extends ATValue {
519
+ constructor(q, owner, property, bytes, oldBytes) {
520
+ super(q, owner, property);
521
+ this.Bytes = bytes;
522
+ this.OldBytes = oldBytes;
523
+ }
524
+ _handledBy_miv_(h) {
525
+ return h.HandleBinary(this);
526
+ }
527
+ static _deserializeBinary_miv_(q, deser, owner, property) {
528
+ const bytes = deser.ReadInt32();
529
+ if (bytes === undefined)
530
+ return false;
531
+ const oldBytes = deser.ReadInt32();
532
+ if (oldBytes === undefined)
533
+ return false;
534
+ if (owner !== undefined) {
535
+ new ATVBinary(q, owner, property, bytes, oldBytes);
536
+ }
537
+ return true;
538
+ }
539
+ get order() {
540
+ return AuditTrailItem.ORDER_OFFSET * 8 + this.Property;
541
+ }
542
+ GetKind() {
543
+ return MIVValueTypes_1.MIVValueTypes.BINARY;
544
+ }
545
+ }
546
+ exports.ATVBinary = ATVBinary;
547
+ class ATVByte extends ATValue {
548
+ constructor(q, owner, property, value, oldValue) {
549
+ super(q, owner, property);
550
+ this.Value = value;
551
+ this.OldValue = oldValue;
552
+ }
553
+ _handledBy_miv_(h) {
554
+ return h.HandleByte(this);
555
+ }
556
+ static _deserializeByte_miv_(q, deser, owner, property) {
557
+ const value = deser.ReadUint8();
558
+ if (value === undefined)
559
+ return false;
560
+ const oldValue = deser.ReadUint8();
561
+ if (oldValue === undefined)
562
+ return false;
563
+ if (owner !== undefined) {
564
+ new ATVByte(q, owner, property, value, oldValue);
565
+ }
566
+ return true;
567
+ }
568
+ get order() {
569
+ return AuditTrailItem.ORDER_OFFSET * 3 + this.Property;
570
+ }
571
+ GetKind() {
572
+ return MIVValueTypes_1.MIVValueTypes.BYTE;
573
+ }
574
+ }
575
+ exports.ATVByte = ATVByte;
576
+ class ATVDateTime extends ATValue {
577
+ constructor(q, owner, property, valueUTC, oldValueUTC) {
578
+ super(q, owner, property);
579
+ this.ValueUTC = valueUTC;
580
+ this.OldValueUTC = oldValueUTC;
581
+ }
582
+ _handledBy_miv_(h) {
583
+ return h.HandleDateTime(this);
584
+ }
585
+ static _deserializeDateTime_miv_(q, deser, owner, property) {
586
+ const value = deser.ReadDateTimeUTC();
587
+ if (value === undefined)
588
+ return false;
589
+ const oldValue = deser.ReadDateTimeUTC();
590
+ if (oldValue === undefined)
591
+ return false;
592
+ if (owner !== undefined) {
593
+ new ATVDateTime(q, owner, property, value, oldValue);
594
+ }
595
+ return true;
596
+ }
597
+ get order() {
598
+ return AuditTrailItem.ORDER_OFFSET * 7 + this.Property;
599
+ }
600
+ GetKind() {
601
+ return MIVValueTypes_1.MIVValueTypes.DATETIME;
602
+ }
603
+ }
604
+ exports.ATVDateTime = ATVDateTime;
605
+ class AuditTrailQueryPerObject {
606
+ constructor(query) {
607
+ this.Query = query;
608
+ this.Events = new Array();
609
+ }
610
+ }
611
+ exports.AuditTrailQueryPerObject = AuditTrailQueryPerObject;
612
+ class AuditTrailReport {
613
+ constructor(error, objects, queries) {
614
+ this.Error = error;
615
+ this.AllObjects = objects;
616
+ this.Queries = queries;
617
+ this.ObjectsWithEvents = new Array();
618
+ }
619
+ static _makeError_miv_(error) {
620
+ return new AuditTrailReport(error, new Array(), new Array());
621
+ }
622
+ _pack_miv_(client) {
623
+ this.Queries.sort((x, y) => { if (x.AtUTC <= y.AtUTC)
624
+ return 1;
625
+ else
626
+ return -1; });
627
+ for (let i = 0; i < this.Queries.length; i++) {
628
+ this.Queries[i]._pack_miv_();
629
+ }
630
+ for (let i = 0; i < this.AllObjects.length; i++) {
631
+ const obj = this.AllObjects[i];
632
+ obj._pack_miv_(client);
633
+ if (obj.AllEvents.length > 0) {
634
+ this.ObjectsWithEvents.push(obj);
635
+ }
636
+ }
637
+ for (let i = 0; i < this.Queries.length; i++) {
638
+ this.Queries[i]._packEvents_miv_(client);
639
+ }
640
+ }
641
+ static _serializeAuditTrailQuery_miv_(ser, root, depth, fromUTC, allowTypes, types) {
642
+ ser.WriteUint8(Query_1.Query.KIND_AUDIT_TRAIL);
643
+ ser.WriteInt64(root);
644
+ ser.WriteInt32(depth);
645
+ ser.WriteDateTimeUTC(fromUTC);
646
+ if (allowTypes)
647
+ ser.WriteInt32(types.length);
648
+ else
649
+ ser.WriteInt32(-types.length);
650
+ for (let i = 0; i < types.length; i++) {
651
+ ser.WriteUint16(types[i]);
652
+ }
653
+ }
654
+ static _serializeAuditTrailByUserQuery_miv_(ser, ofUser, fromUTC) {
655
+ ser.WriteUint8(Query_1.Query.KIND_AUDIT_TRAIL_BY_USER);
656
+ ser.WriteInt64(ofUser);
657
+ ser.WriteDateTimeUTC(fromUTC);
658
+ }
659
+ static _deserialize_miv_(deser) {
660
+ const hasError = deser.ReadUint8();
661
+ if (hasError === undefined)
662
+ return undefined;
663
+ const error = hasError ? ErrorMessage_1.ErrorMessage._deserializeError_miv_(deser) : undefined;
664
+ if (hasError && error === undefined)
665
+ return undefined;
666
+ const oCount = deser.ReadInt32();
667
+ if (oCount === undefined)
668
+ return undefined;
669
+ const oFetcher = new Map();
670
+ for (let i = 0; i < oCount; i++) {
671
+ const x = AuditTrailObjectInfo._deserialize_miv_(deser);
672
+ if (x === undefined)
673
+ return undefined;
674
+ oFetcher.set(x.ID, x);
675
+ }
676
+ const qCount = deser.ReadInt32();
677
+ if (qCount === undefined)
678
+ return undefined;
679
+ const qArray = new Array();
680
+ for (let i = 0; i < qCount; i++) {
681
+ const x = AuditTrailQuery._deserialize_miv_(deser);
682
+ if (x === undefined)
683
+ return undefined;
684
+ qArray.push(x);
685
+ const iCount = deser.ReadInt32();
686
+ if (iCount === undefined)
687
+ return undefined;
688
+ for (let j = 0; j < iCount; j++) {
689
+ if (!AuditTrailItem._deserialize_miv_(x, deser, oFetcher))
690
+ return undefined;
691
+ }
692
+ }
693
+ return new AuditTrailReport(error, Array.from(oFetcher.values()), qArray);
694
+ }
695
+ }
696
+ exports.AuditTrailReport = AuditTrailReport;
697
+ class AuditTrailHandler {
698
+ constructor() {
699
+ }
700
+ Handle(item) {
701
+ return item._handledBy_miv_(this);
702
+ }
703
+ }
704
+ exports.AuditTrailHandler = AuditTrailHandler;
705
+ //# sourceMappingURL=AuditTrail.js.map