@openxiot/xiot-core-spec-ts 0.0.2

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 (693) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +2 -0
  3. package/dist/index.d.ts +315 -0
  4. package/dist/index.js +331 -0
  5. package/dist/xiot/core/spec/codec/app/ApplicationCodec.d.ts +7 -0
  6. package/dist/xiot/core/spec/codec/app/ApplicationCodec.js +50 -0
  7. package/dist/xiot/core/spec/codec/app/authorization/AuthorizationCodec.d.ts +5 -0
  8. package/dist/xiot/core/spec/codec/app/authorization/AuthorizationCodec.js +41 -0
  9. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationEventbusImplCodec.d.ts +5 -0
  10. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationEventbusImplCodec.js +15 -0
  11. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationHttpImplCodec.d.ts +5 -0
  12. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationHttpImplCodec.js +15 -0
  13. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationJwtImplCodec.d.ts +5 -0
  14. package/dist/xiot/core/spec/codec/app/authorization/impl/AuthorizationJwtImplCodec.js +14 -0
  15. package/dist/xiot/core/spec/codec/app/event/EventReceiverCodec.d.ts +5 -0
  16. package/dist/xiot/core/spec/codec/app/event/EventReceiverCodec.js +41 -0
  17. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverEventbusImplCodec.d.ts +5 -0
  18. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverEventbusImplCodec.js +15 -0
  19. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverHttpImplCodec.d.ts +5 -0
  20. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverHttpImplCodec.js +15 -0
  21. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverKafkaImplCodec.d.ts +5 -0
  22. package/dist/xiot/core/spec/codec/app/event/impl/EventReceiverKafkaImplCodec.js +18 -0
  23. package/dist/xiot/core/spec/codec/definition/ActionDefinitionCodec.d.ts +7 -0
  24. package/dist/xiot/core/spec/codec/definition/ActionDefinitionCodec.js +43 -0
  25. package/dist/xiot/core/spec/codec/definition/ArgumentDefinitionCodec.d.ts +8 -0
  26. package/dist/xiot/core/spec/codec/definition/ArgumentDefinitionCodec.js +48 -0
  27. package/dist/xiot/core/spec/codec/definition/CategoryDefinitionCodec.d.ts +7 -0
  28. package/dist/xiot/core/spec/codec/definition/CategoryDefinitionCodec.js +32 -0
  29. package/dist/xiot/core/spec/codec/definition/DescriptionCodec.d.ts +4 -0
  30. package/dist/xiot/core/spec/codec/definition/DescriptionCodec.js +32 -0
  31. package/dist/xiot/core/spec/codec/definition/DeviceDefinitionCodec.d.ts +7 -0
  32. package/dist/xiot/core/spec/codec/definition/DeviceDefinitionCodec.js +38 -0
  33. package/dist/xiot/core/spec/codec/definition/EventDefinitionCodec.d.ts +7 -0
  34. package/dist/xiot/core/spec/codec/definition/EventDefinitionCodec.js +39 -0
  35. package/dist/xiot/core/spec/codec/definition/FormatDefinitionCodec.d.ts +7 -0
  36. package/dist/xiot/core/spec/codec/definition/FormatDefinitionCodec.js +34 -0
  37. package/dist/xiot/core/spec/codec/definition/NamespaceDefinitionCodec.d.ts +7 -0
  38. package/dist/xiot/core/spec/codec/definition/NamespaceDefinitionCodec.js +32 -0
  39. package/dist/xiot/core/spec/codec/definition/PropertyDefinitionCodec.d.ts +9 -0
  40. package/dist/xiot/core/spec/codec/definition/PropertyDefinitionCodec.js +95 -0
  41. package/dist/xiot/core/spec/codec/definition/ServiceDefinitionCodec.d.ts +7 -0
  42. package/dist/xiot/core/spec/codec/definition/ServiceDefinitionCodec.js +71 -0
  43. package/dist/xiot/core/spec/codec/definition/UnitDefinitionCodec.d.ts +7 -0
  44. package/dist/xiot/core/spec/codec/definition/UnitDefinitionCodec.js +34 -0
  45. package/dist/xiot/core/spec/codec/definition/ValueListCodec.d.ts +6 -0
  46. package/dist/xiot/core/spec/codec/definition/ValueListCodec.js +31 -0
  47. package/dist/xiot/core/spec/codec/definition/ValueRangeCodec.d.ts +6 -0
  48. package/dist/xiot/core/spec/codec/definition/ValueRangeCodec.js +13 -0
  49. package/dist/xiot/core/spec/codec/definition/type/ActionTypeCodec.d.ts +5 -0
  50. package/dist/xiot/core/spec/codec/definition/type/ActionTypeCodec.js +28 -0
  51. package/dist/xiot/core/spec/codec/definition/type/EventTypeCodec.d.ts +5 -0
  52. package/dist/xiot/core/spec/codec/definition/type/EventTypeCodec.js +28 -0
  53. package/dist/xiot/core/spec/codec/definition/type/GroupTypeCodec.d.ts +5 -0
  54. package/dist/xiot/core/spec/codec/definition/type/GroupTypeCodec.js +28 -0
  55. package/dist/xiot/core/spec/codec/definition/type/PropertyTypeCodec.d.ts +5 -0
  56. package/dist/xiot/core/spec/codec/definition/type/PropertyTypeCodec.js +28 -0
  57. package/dist/xiot/core/spec/codec/definition/type/ServiceTypeCodec.d.ts +5 -0
  58. package/dist/xiot/core/spec/codec/definition/type/ServiceTypeCodec.js +28 -0
  59. package/dist/xiot/core/spec/codec/device/DeviceCodec.d.ts +7 -0
  60. package/dist/xiot/core/spec/codec/device/DeviceCodec.js +51 -0
  61. package/dist/xiot/core/spec/codec/image/ActionImageCodec.d.ts +4 -0
  62. package/dist/xiot/core/spec/codec/image/ActionImageCodec.js +25 -0
  63. package/dist/xiot/core/spec/codec/image/ArgumentImageCodec.d.ts +8 -0
  64. package/dist/xiot/core/spec/codec/image/ArgumentImageCodec.js +44 -0
  65. package/dist/xiot/core/spec/codec/image/DeviceImageCodec.d.ts +4 -0
  66. package/dist/xiot/core/spec/codec/image/DeviceImageCodec.js +17 -0
  67. package/dist/xiot/core/spec/codec/image/EventImageCodec.d.ts +4 -0
  68. package/dist/xiot/core/spec/codec/image/EventImageCodec.js +27 -0
  69. package/dist/xiot/core/spec/codec/image/PropertyImageCodec.d.ts +4 -0
  70. package/dist/xiot/core/spec/codec/image/PropertyImageCodec.js +18 -0
  71. package/dist/xiot/core/spec/codec/image/ServiceImageCodec.d.ts +4 -0
  72. package/dist/xiot/core/spec/codec/image/ServiceImageCodec.js +42 -0
  73. package/dist/xiot/core/spec/codec/instance/ActionCodec.d.ts +7 -0
  74. package/dist/xiot/core/spec/codec/instance/ActionCodec.js +49 -0
  75. package/dist/xiot/core/spec/codec/instance/ArgumentCodec.d.ts +7 -0
  76. package/dist/xiot/core/spec/codec/instance/ArgumentCodec.js +44 -0
  77. package/dist/xiot/core/spec/codec/instance/DeviceInstanceCodec.d.ts +5 -0
  78. package/dist/xiot/core/spec/codec/instance/DeviceInstanceCodec.js +25 -0
  79. package/dist/xiot/core/spec/codec/instance/EventCodec.d.ts +7 -0
  80. package/dist/xiot/core/spec/codec/instance/EventCodec.js +45 -0
  81. package/dist/xiot/core/spec/codec/instance/PropertyCodec.d.ts +7 -0
  82. package/dist/xiot/core/spec/codec/instance/PropertyCodec.js +98 -0
  83. package/dist/xiot/core/spec/codec/instance/ServiceCodec.d.ts +7 -0
  84. package/dist/xiot/core/spec/codec/instance/ServiceCodec.js +55 -0
  85. package/dist/xiot/core/spec/codec/jwt/JwtCodec.d.ts +5 -0
  86. package/dist/xiot/core/spec/codec/jwt/JwtCodec.js +41 -0
  87. package/dist/xiot/core/spec/codec/jwt/impl/JwtEsImplCodec.d.ts +5 -0
  88. package/dist/xiot/core/spec/codec/jwt/impl/JwtEsImplCodec.js +26 -0
  89. package/dist/xiot/core/spec/codec/jwt/impl/JwtRsaImplCodec.d.ts +5 -0
  90. package/dist/xiot/core/spec/codec/jwt/impl/JwtRsaImplCodec.js +26 -0
  91. package/dist/xiot/core/spec/codec/jwt/impl/JwtSecretsImplCodec.d.ts +5 -0
  92. package/dist/xiot/core/spec/codec/jwt/impl/JwtSecretsImplCodec.js +24 -0
  93. package/dist/xiot/core/spec/codec/key/AccessKeyCodec.d.ts +5 -0
  94. package/dist/xiot/core/spec/codec/key/AccessKeyCodec.js +18 -0
  95. package/dist/xiot/core/spec/codec/key/DeviceCertCodec.d.ts +7 -0
  96. package/dist/xiot/core/spec/codec/key/DeviceCertCodec.js +36 -0
  97. package/dist/xiot/core/spec/codec/key/DeviceKeyCodec.d.ts +5 -0
  98. package/dist/xiot/core/spec/codec/key/DeviceKeyCodec.js +24 -0
  99. package/dist/xiot/core/spec/codec/lifecycle/app/ApplicationWithLifecycleCodec.d.ts +11 -0
  100. package/dist/xiot/core/spec/codec/lifecycle/app/ApplicationWithLifecycleCodec.js +38 -0
  101. package/dist/xiot/core/spec/codec/lifecycle/definition/ActionDefinitionWithLifecycleCodec.d.ts +11 -0
  102. package/dist/xiot/core/spec/codec/lifecycle/definition/ActionDefinitionWithLifecycleCodec.js +38 -0
  103. package/dist/xiot/core/spec/codec/lifecycle/definition/DeviceDefinitionWithLifecycleCodec.d.ts +11 -0
  104. package/dist/xiot/core/spec/codec/lifecycle/definition/DeviceDefinitionWithLifecycleCodec.js +38 -0
  105. package/dist/xiot/core/spec/codec/lifecycle/definition/EventDefinitionWithLifecycleCodec.d.ts +11 -0
  106. package/dist/xiot/core/spec/codec/lifecycle/definition/EventDefinitionWithLifecycleCodec.js +38 -0
  107. package/dist/xiot/core/spec/codec/lifecycle/definition/FormatDefinitionWithLifecycleCodec.d.ts +11 -0
  108. package/dist/xiot/core/spec/codec/lifecycle/definition/FormatDefinitionWithLifecycleCodec.js +38 -0
  109. package/dist/xiot/core/spec/codec/lifecycle/definition/PropertyDefinitionWithLifecycleCodec.d.ts +8 -0
  110. package/dist/xiot/core/spec/codec/lifecycle/definition/PropertyDefinitionWithLifecycleCodec.js +38 -0
  111. package/dist/xiot/core/spec/codec/lifecycle/definition/ServiceDefinitionWithLifecycleCodec.d.ts +11 -0
  112. package/dist/xiot/core/spec/codec/lifecycle/definition/ServiceDefinitionWithLifecycleCodec.js +38 -0
  113. package/dist/xiot/core/spec/codec/lifecycle/definition/UnitDefinitionWithLifecycleCodec.d.ts +11 -0
  114. package/dist/xiot/core/spec/codec/lifecycle/definition/UnitDefinitionWithLifecycleCodec.js +38 -0
  115. package/dist/xiot/core/spec/codec/lifecycle/instance/DeviceInstanceWithLifecycleCodec.d.ts +11 -0
  116. package/dist/xiot/core/spec/codec/lifecycle/instance/DeviceInstanceWithLifecycleCodec.js +38 -0
  117. package/dist/xiot/core/spec/codec/lifecycle/product/VersionWithLifecycleCodec.d.ts +10 -0
  118. package/dist/xiot/core/spec/codec/lifecycle/product/VersionWithLifecycleCodec.js +42 -0
  119. package/dist/xiot/core/spec/codec/lifecycle/template/DeviceTemplateWithLifecycleCodec.d.ts +11 -0
  120. package/dist/xiot/core/spec/codec/lifecycle/template/DeviceTemplateWithLifecycleCodec.js +38 -0
  121. package/dist/xiot/core/spec/codec/lifecycle/type/DeviceTypeWithLifecycleCodec.d.ts +12 -0
  122. package/dist/xiot/core/spec/codec/lifecycle/type/DeviceTypeWithLifecycleCodec.js +36 -0
  123. package/dist/xiot/core/spec/codec/notice/DeviceNoticeCodec.d.ts +8 -0
  124. package/dist/xiot/core/spec/codec/notice/DeviceNoticeCodec.js +122 -0
  125. package/dist/xiot/core/spec/codec/notice/OwnerNoticeCodec.d.ts +8 -0
  126. package/dist/xiot/core/spec/codec/notice/OwnerNoticeCodec.js +220 -0
  127. package/dist/xiot/core/spec/codec/notice/device/DeviceAccessKeyChangedCodec.d.ts +5 -0
  128. package/dist/xiot/core/spec/codec/notice/device/DeviceAccessKeyChangedCodec.js +19 -0
  129. package/dist/xiot/core/spec/codec/notice/device/DeviceChildrenAddedCodec.d.ts +5 -0
  130. package/dist/xiot/core/spec/codec/notice/device/DeviceChildrenAddedCodec.js +20 -0
  131. package/dist/xiot/core/spec/codec/notice/device/DeviceChildrenRemovedCodec.d.ts +5 -0
  132. package/dist/xiot/core/spec/codec/notice/device/DeviceChildrenRemovedCodec.js +19 -0
  133. package/dist/xiot/core/spec/codec/notice/device/DeviceEventOccurredCodec.d.ts +5 -0
  134. package/dist/xiot/core/spec/codec/notice/device/DeviceEventOccurredCodec.js +18 -0
  135. package/dist/xiot/core/spec/codec/notice/device/DevicePropertiesChangedCodec.d.ts +5 -0
  136. package/dist/xiot/core/spec/codec/notice/device/DevicePropertiesChangedCodec.js +18 -0
  137. package/dist/xiot/core/spec/codec/notice/device/DevicePropertyChangedCodec.d.ts +5 -0
  138. package/dist/xiot/core/spec/codec/notice/device/DevicePropertyChangedCodec.js +18 -0
  139. package/dist/xiot/core/spec/codec/notice/device/DeviceRootActiveCodec.d.ts +5 -0
  140. package/dist/xiot/core/spec/codec/notice/device/DeviceRootActiveCodec.js +20 -0
  141. package/dist/xiot/core/spec/codec/notice/device/DeviceRootInactiveCodec.d.ts +5 -0
  142. package/dist/xiot/core/spec/codec/notice/device/DeviceRootInactiveCodec.js +16 -0
  143. package/dist/xiot/core/spec/codec/notice/device/DeviceSummaryChangedCodec.d.ts +5 -0
  144. package/dist/xiot/core/spec/codec/notice/device/DeviceSummaryChangedCodec.js +20 -0
  145. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceAddedCodec.d.ts +5 -0
  146. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceAddedCodec.js +23 -0
  147. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceRemovedCodec.d.ts +5 -0
  148. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceRemovedCodec.js +19 -0
  149. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceSomewhereChangedCodec.d.ts +5 -0
  150. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceSomewhereChangedCodec.js +26 -0
  151. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceSummaryChangedCodec.d.ts +5 -0
  152. package/dist/xiot/core/spec/codec/notice/owner/OwnerDeviceSummaryChangedCodec.js +26 -0
  153. package/dist/xiot/core/spec/codec/notice/owner/OwnerEventOccurredCodec.d.ts +5 -0
  154. package/dist/xiot/core/spec/codec/notice/owner/OwnerEventOccurredCodec.js +20 -0
  155. package/dist/xiot/core/spec/codec/notice/owner/OwnerPropertiesChangedCodec.d.ts +5 -0
  156. package/dist/xiot/core/spec/codec/notice/owner/OwnerPropertiesChangedCodec.js +21 -0
  157. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleAddedCodec.d.ts +5 -0
  158. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleAddedCodec.js +24 -0
  159. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleChangedCodec.d.ts +5 -0
  160. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleChangedCodec.js +24 -0
  161. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleExecutedCodec.d.ts +5 -0
  162. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleExecutedCodec.js +47 -0
  163. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleRemovedCodec.d.ts +5 -0
  164. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleRemovedCodec.js +23 -0
  165. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleTriggeredCodec.d.ts +5 -0
  166. package/dist/xiot/core/spec/codec/notice/owner/OwnerRuleTriggeredCodec.js +23 -0
  167. package/dist/xiot/core/spec/codec/notice/owner/OwnershipDisclaimedCodec.d.ts +5 -0
  168. package/dist/xiot/core/spec/codec/notice/owner/OwnershipDisclaimedCodec.js +19 -0
  169. package/dist/xiot/core/spec/codec/notice/owner/OwnershipTakenCodec.d.ts +5 -0
  170. package/dist/xiot/core/spec/codec/notice/owner/OwnershipTakenCodec.js +19 -0
  171. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeAddedCodec.d.ts +5 -0
  172. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeAddedCodec.js +24 -0
  173. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeChangedCodec.d.ts +5 -0
  174. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeChangedCodec.js +24 -0
  175. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeRemovedCodec.d.ts +5 -0
  176. package/dist/xiot/core/spec/codec/notice/owner/home/OwnerHomeRemovedCodec.js +23 -0
  177. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceAddedCodec.d.ts +5 -0
  178. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceAddedCodec.js +24 -0
  179. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceChangedCodec.d.ts +5 -0
  180. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceChangedCodec.js +24 -0
  181. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceRemovedCodec.d.ts +5 -0
  182. package/dist/xiot/core/spec/codec/notice/owner/space/OwnerSpaceRemovedCodec.js +23 -0
  183. package/dist/xiot/core/spec/codec/oauth2/Oauth2ConfigurationCodec.d.ts +7 -0
  184. package/dist/xiot/core/spec/codec/oauth2/Oauth2ConfigurationCodec.js +49 -0
  185. package/dist/xiot/core/spec/codec/operation/AbstractOperationCodec.d.ts +10 -0
  186. package/dist/xiot/core/spec/codec/operation/AbstractOperationCodec.js +27 -0
  187. package/dist/xiot/core/spec/codec/operation/ActionOperationCodec.d.ts +14 -0
  188. package/dist/xiot/core/spec/codec/operation/ActionOperationCodec.js +84 -0
  189. package/dist/xiot/core/spec/codec/operation/ArgumentOperationCodec.d.ts +10 -0
  190. package/dist/xiot/core/spec/codec/operation/ArgumentOperationCodec.js +65 -0
  191. package/dist/xiot/core/spec/codec/operation/CombinationValueCodec.d.ts +6 -0
  192. package/dist/xiot/core/spec/codec/operation/CombinationValueCodec.js +70 -0
  193. package/dist/xiot/core/spec/codec/operation/EventOperationCodec.d.ts +14 -0
  194. package/dist/xiot/core/spec/codec/operation/EventOperationCodec.js +63 -0
  195. package/dist/xiot/core/spec/codec/operation/PropertyOperationCodec.d.ts +31 -0
  196. package/dist/xiot/core/spec/codec/operation/PropertyOperationCodec.js +151 -0
  197. package/dist/xiot/core/spec/codec/operation/RuleOperationCodec.d.ts +14 -0
  198. package/dist/xiot/core/spec/codec/operation/RuleOperationCodec.js +43 -0
  199. package/dist/xiot/core/spec/codec/ownership/DeviceOwnerCodec.d.ts +7 -0
  200. package/dist/xiot/core/spec/codec/ownership/DeviceOwnerCodec.js +37 -0
  201. package/dist/xiot/core/spec/codec/ownership/OwnershipCodec.d.ts +7 -0
  202. package/dist/xiot/core/spec/codec/ownership/OwnershipCodec.js +62 -0
  203. package/dist/xiot/core/spec/codec/product/ProductCodec.d.ts +7 -0
  204. package/dist/xiot/core/spec/codec/product/ProductCodec.js +76 -0
  205. package/dist/xiot/core/spec/codec/product/ProductVersionCodec.d.ts +7 -0
  206. package/dist/xiot/core/spec/codec/product/ProductVersionCodec.js +69 -0
  207. package/dist/xiot/core/spec/codec/product/resource/ProductResourceCodec.d.ts +7 -0
  208. package/dist/xiot/core/spec/codec/product/resource/ProductResourceCodec.js +45 -0
  209. package/dist/xiot/core/spec/codec/product/resource/ProductResourceVersionCodec.d.ts +7 -0
  210. package/dist/xiot/core/spec/codec/product/resource/ProductResourceVersionCodec.js +69 -0
  211. package/dist/xiot/core/spec/codec/product/resource/ResourceVersionCodec.d.ts +7 -0
  212. package/dist/xiot/core/spec/codec/product/resource/ResourceVersionCodec.js +65 -0
  213. package/dist/xiot/core/spec/codec/rbac/PermissionCodec.d.ts +7 -0
  214. package/dist/xiot/core/spec/codec/rbac/PermissionCodec.js +35 -0
  215. package/dist/xiot/core/spec/codec/rbac/RoleCodec.d.ts +7 -0
  216. package/dist/xiot/core/spec/codec/rbac/RoleCodec.js +34 -0
  217. package/dist/xiot/core/spec/codec/rbac/account/AccountCodec.d.ts +7 -0
  218. package/dist/xiot/core/spec/codec/rbac/account/AccountCodec.js +38 -0
  219. package/dist/xiot/core/spec/codec/rbac/organization/MemberCodec.d.ts +7 -0
  220. package/dist/xiot/core/spec/codec/rbac/organization/MemberCodec.js +34 -0
  221. package/dist/xiot/core/spec/codec/rbac/organization/OrganizationCodec.d.ts +7 -0
  222. package/dist/xiot/core/spec/codec/rbac/organization/OrganizationCodec.js +33 -0
  223. package/dist/xiot/core/spec/codec/rule/RuleCodec.d.ts +7 -0
  224. package/dist/xiot/core/spec/codec/rule/RuleCodec.js +74 -0
  225. package/dist/xiot/core/spec/codec/shadow/DeviceShadowCodec.d.ts +7 -0
  226. package/dist/xiot/core/spec/codec/shadow/DeviceShadowCodec.js +38 -0
  227. package/dist/xiot/core/spec/codec/shadow/ShadowCodec.d.ts +7 -0
  228. package/dist/xiot/core/spec/codec/shadow/ShadowCodec.js +51 -0
  229. package/dist/xiot/core/spec/codec/somewhere/SomewhereCodec.d.ts +7 -0
  230. package/dist/xiot/core/spec/codec/somewhere/SomewhereCodec.js +50 -0
  231. package/dist/xiot/core/spec/codec/space/SpaceCodec.d.ts +7 -0
  232. package/dist/xiot/core/spec/codec/space/SpaceCodec.js +45 -0
  233. package/dist/xiot/core/spec/codec/summary/SummaryCodec.d.ts +7 -0
  234. package/dist/xiot/core/spec/codec/summary/SummaryCodec.js +82 -0
  235. package/dist/xiot/core/spec/codec/template/ActionTemplateCodec.d.ts +7 -0
  236. package/dist/xiot/core/spec/codec/template/ActionTemplateCodec.js +55 -0
  237. package/dist/xiot/core/spec/codec/template/DeviceTemplateCodec.d.ts +5 -0
  238. package/dist/xiot/core/spec/codec/template/DeviceTemplateCodec.js +24 -0
  239. package/dist/xiot/core/spec/codec/template/EventTemplateCodec.d.ts +7 -0
  240. package/dist/xiot/core/spec/codec/template/EventTemplateCodec.js +51 -0
  241. package/dist/xiot/core/spec/codec/template/PropertyTemplateCodec.d.ts +7 -0
  242. package/dist/xiot/core/spec/codec/template/PropertyTemplateCodec.js +78 -0
  243. package/dist/xiot/core/spec/codec/template/ServiceTemplateCodec.d.ts +7 -0
  244. package/dist/xiot/core/spec/codec/template/ServiceTemplateCodec.js +67 -0
  245. package/dist/xiot/core/spec/typedef/app/Application.d.ts +11 -0
  246. package/dist/xiot/core/spec/typedef/app/Application.js +13 -0
  247. package/dist/xiot/core/spec/typedef/app/authorization/Authorization.d.ts +5 -0
  248. package/dist/xiot/core/spec/typedef/app/authorization/Authorization.js +9 -0
  249. package/dist/xiot/core/spec/typedef/app/authorization/AuthorizationType.d.ts +8 -0
  250. package/dist/xiot/core/spec/typedef/app/authorization/AuthorizationType.js +25 -0
  251. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationEventbusImpl.d.ts +5 -0
  252. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationEventbusImpl.js +12 -0
  253. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationHttpImpl.d.ts +5 -0
  254. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationHttpImpl.js +12 -0
  255. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationJwtImpl.d.ts +6 -0
  256. package/dist/xiot/core/spec/typedef/app/authorization/impl/AuthorizationJwtImpl.js +12 -0
  257. package/dist/xiot/core/spec/typedef/app/event/EventReceiver.d.ts +5 -0
  258. package/dist/xiot/core/spec/typedef/app/event/EventReceiver.js +9 -0
  259. package/dist/xiot/core/spec/typedef/app/event/EventReceiverType.d.ts +8 -0
  260. package/dist/xiot/core/spec/typedef/app/event/EventReceiverType.js +25 -0
  261. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverEventbusImpl.d.ts +5 -0
  262. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverEventbusImpl.js +12 -0
  263. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverHttpImpl.d.ts +5 -0
  264. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverHttpImpl.js +12 -0
  265. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverKafkaImpl.d.ts +6 -0
  266. package/dist/xiot/core/spec/typedef/app/event/impl/EventReceiverKafkaImpl.js +13 -0
  267. package/dist/xiot/core/spec/typedef/constant/Spec.d.ts +48 -0
  268. package/dist/xiot/core/spec/typedef/constant/Spec.js +52 -0
  269. package/dist/xiot/core/spec/typedef/definition/ActionDefinition.d.ts +9 -0
  270. package/dist/xiot/core/spec/typedef/definition/ActionDefinition.js +21 -0
  271. package/dist/xiot/core/spec/typedef/definition/ArgumentDefinition.d.ts +7 -0
  272. package/dist/xiot/core/spec/typedef/definition/ArgumentDefinition.js +11 -0
  273. package/dist/xiot/core/spec/typedef/definition/CategoryDefinition.d.ts +5 -0
  274. package/dist/xiot/core/spec/typedef/definition/CategoryDefinition.js +12 -0
  275. package/dist/xiot/core/spec/typedef/definition/DeviceDefinition.d.ts +7 -0
  276. package/dist/xiot/core/spec/typedef/definition/DeviceDefinition.js +14 -0
  277. package/dist/xiot/core/spec/typedef/definition/EventDefinition.d.ts +8 -0
  278. package/dist/xiot/core/spec/typedef/definition/EventDefinition.js +17 -0
  279. package/dist/xiot/core/spec/typedef/definition/FormatDefinition.d.ts +6 -0
  280. package/dist/xiot/core/spec/typedef/definition/FormatDefinition.js +11 -0
  281. package/dist/xiot/core/spec/typedef/definition/NamespaceDefinition.d.ts +5 -0
  282. package/dist/xiot/core/spec/typedef/definition/NamespaceDefinition.js +12 -0
  283. package/dist/xiot/core/spec/typedef/definition/PropertyDefinition.d.ts +24 -0
  284. package/dist/xiot/core/spec/typedef/definition/PropertyDefinition.js +71 -0
  285. package/dist/xiot/core/spec/typedef/definition/ServiceDefinition.d.ts +15 -0
  286. package/dist/xiot/core/spec/typedef/definition/ServiceDefinition.js +37 -0
  287. package/dist/xiot/core/spec/typedef/definition/UnitDefinition.d.ts +6 -0
  288. package/dist/xiot/core/spec/typedef/definition/UnitDefinition.js +11 -0
  289. package/dist/xiot/core/spec/typedef/definition/property/Access.d.ts +11 -0
  290. package/dist/xiot/core/spec/typedef/definition/property/Access.js +87 -0
  291. package/dist/xiot/core/spec/typedef/definition/property/ConstraintValue.d.ts +4 -0
  292. package/dist/xiot/core/spec/typedef/definition/property/ConstraintValue.js +2 -0
  293. package/dist/xiot/core/spec/typedef/definition/property/ValueDefinition.d.ts +7 -0
  294. package/dist/xiot/core/spec/typedef/definition/property/ValueDefinition.js +12 -0
  295. package/dist/xiot/core/spec/typedef/definition/property/ValueList.d.ts +8 -0
  296. package/dist/xiot/core/spec/typedef/definition/property/ValueList.js +21 -0
  297. package/dist/xiot/core/spec/typedef/definition/property/ValueRange.d.ts +18 -0
  298. package/dist/xiot/core/spec/typedef/definition/property/ValueRange.js +103 -0
  299. package/dist/xiot/core/spec/typedef/definition/property/data/DataFormat.d.ts +23 -0
  300. package/dist/xiot/core/spec/typedef/definition/property/data/DataFormat.js +96 -0
  301. package/dist/xiot/core/spec/typedef/definition/property/data/DataValue.d.ts +8 -0
  302. package/dist/xiot/core/spec/typedef/definition/property/data/DataValue.js +2 -0
  303. package/dist/xiot/core/spec/typedef/definition/property/data/DataValueFactory.d.ts +7 -0
  304. package/dist/xiot/core/spec/typedef/definition/property/data/DataValueFactory.js +115 -0
  305. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vbool.d.ts +12 -0
  306. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vbool.js +53 -0
  307. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vcombination.d.ts +11 -0
  308. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vcombination.js +33 -0
  309. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vfloat.d.ts +14 -0
  310. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vfloat.js +67 -0
  311. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vhex.d.ts +14 -0
  312. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vhex.js +80 -0
  313. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint16.d.ts +14 -0
  314. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint16.js +65 -0
  315. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint32.d.ts +14 -0
  316. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint32.js +65 -0
  317. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint64.d.ts +14 -0
  318. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint64.js +65 -0
  319. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint8.d.ts +14 -0
  320. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vint8.js +65 -0
  321. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vstring.d.ts +11 -0
  322. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vstring.js +36 -0
  323. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vtlv8.d.ts +12 -0
  324. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vtlv8.js +39 -0
  325. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint16.d.ts +14 -0
  326. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint16.js +71 -0
  327. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint32.d.ts +14 -0
  328. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint32.js +65 -0
  329. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint8.d.ts +14 -0
  330. package/dist/xiot/core/spec/typedef/definition/property/data/value/Vuint8.js +65 -0
  331. package/dist/xiot/core/spec/typedef/definition/urn/ActionType.d.ts +5 -0
  332. package/dist/xiot/core/spec/typedef/definition/urn/ActionType.js +14 -0
  333. package/dist/xiot/core/spec/typedef/definition/urn/DeviceType.d.ts +5 -0
  334. package/dist/xiot/core/spec/typedef/definition/urn/DeviceType.js +14 -0
  335. package/dist/xiot/core/spec/typedef/definition/urn/EventType.d.ts +5 -0
  336. package/dist/xiot/core/spec/typedef/definition/urn/EventType.js +14 -0
  337. package/dist/xiot/core/spec/typedef/definition/urn/Extendable.d.ts +11 -0
  338. package/dist/xiot/core/spec/typedef/definition/urn/Extendable.js +18 -0
  339. package/dist/xiot/core/spec/typedef/definition/urn/FormatType.d.ts +5 -0
  340. package/dist/xiot/core/spec/typedef/definition/urn/FormatType.js +14 -0
  341. package/dist/xiot/core/spec/typedef/definition/urn/GroupType.d.ts +5 -0
  342. package/dist/xiot/core/spec/typedef/definition/urn/GroupType.js +14 -0
  343. package/dist/xiot/core/spec/typedef/definition/urn/PropertyType.d.ts +5 -0
  344. package/dist/xiot/core/spec/typedef/definition/urn/PropertyType.js +14 -0
  345. package/dist/xiot/core/spec/typedef/definition/urn/ServiceType.d.ts +5 -0
  346. package/dist/xiot/core/spec/typedef/definition/urn/ServiceType.js +14 -0
  347. package/dist/xiot/core/spec/typedef/definition/urn/UnitType.d.ts +5 -0
  348. package/dist/xiot/core/spec/typedef/definition/urn/UnitType.js +14 -0
  349. package/dist/xiot/core/spec/typedef/definition/urn/Urn.d.ts +24 -0
  350. package/dist/xiot/core/spec/typedef/definition/urn/Urn.js +146 -0
  351. package/dist/xiot/core/spec/typedef/definition/urn/UrnStyle.d.ts +7 -0
  352. package/dist/xiot/core/spec/typedef/definition/urn/UrnStyle.js +11 -0
  353. package/dist/xiot/core/spec/typedef/definition/urn/UrnType.d.ts +13 -0
  354. package/dist/xiot/core/spec/typedef/definition/urn/UrnType.js +30 -0
  355. package/dist/xiot/core/spec/typedef/device/Device.d.ts +9 -0
  356. package/dist/xiot/core/spec/typedef/device/Device.js +9 -0
  357. package/dist/xiot/core/spec/typedef/error/IotError.d.ts +5 -0
  358. package/dist/xiot/core/spec/typedef/error/IotError.js +13 -0
  359. package/dist/xiot/core/spec/typedef/image/ActionImage.d.ts +13 -0
  360. package/dist/xiot/core/spec/typedef/image/ActionImage.js +76 -0
  361. package/dist/xiot/core/spec/typedef/image/ArgumentImage.d.ts +8 -0
  362. package/dist/xiot/core/spec/typedef/image/ArgumentImage.js +30 -0
  363. package/dist/xiot/core/spec/typedef/image/DeviceImage.d.ts +31 -0
  364. package/dist/xiot/core/spec/typedef/image/DeviceImage.js +283 -0
  365. package/dist/xiot/core/spec/typedef/image/EventImage.d.ts +11 -0
  366. package/dist/xiot/core/spec/typedef/image/EventImage.js +48 -0
  367. package/dist/xiot/core/spec/typedef/image/PropertyImage.d.ts +22 -0
  368. package/dist/xiot/core/spec/typedef/image/PropertyImage.js +73 -0
  369. package/dist/xiot/core/spec/typedef/image/ServiceImage.d.ts +21 -0
  370. package/dist/xiot/core/spec/typedef/image/ServiceImage.js +172 -0
  371. package/dist/xiot/core/spec/typedef/instance/Action.d.ts +14 -0
  372. package/dist/xiot/core/spec/typedef/instance/Action.js +33 -0
  373. package/dist/xiot/core/spec/typedef/instance/Argument.d.ts +8 -0
  374. package/dist/xiot/core/spec/typedef/instance/Argument.js +18 -0
  375. package/dist/xiot/core/spec/typedef/instance/DeviceInstance.d.ts +9 -0
  376. package/dist/xiot/core/spec/typedef/instance/DeviceInstance.js +17 -0
  377. package/dist/xiot/core/spec/typedef/instance/Event.d.ts +11 -0
  378. package/dist/xiot/core/spec/typedef/instance/Event.js +23 -0
  379. package/dist/xiot/core/spec/typedef/instance/Property.d.ts +56 -0
  380. package/dist/xiot/core/spec/typedef/instance/Property.js +244 -0
  381. package/dist/xiot/core/spec/typedef/instance/PropertyValue.d.ts +16 -0
  382. package/dist/xiot/core/spec/typedef/instance/PropertyValue.js +81 -0
  383. package/dist/xiot/core/spec/typedef/instance/Service.d.ts +19 -0
  384. package/dist/xiot/core/spec/typedef/instance/Service.js +48 -0
  385. package/dist/xiot/core/spec/typedef/jwt/Jwt.d.ts +10 -0
  386. package/dist/xiot/core/spec/typedef/jwt/Jwt.js +16 -0
  387. package/dist/xiot/core/spec/typedef/jwt/JwtType.d.ts +8 -0
  388. package/dist/xiot/core/spec/typedef/jwt/JwtType.js +25 -0
  389. package/dist/xiot/core/spec/typedef/jwt/impl/JwtEsImpl.d.ts +6 -0
  390. package/dist/xiot/core/spec/typedef/jwt/impl/JwtEsImpl.js +15 -0
  391. package/dist/xiot/core/spec/typedef/jwt/impl/JwtRsaImpl.d.ts +6 -0
  392. package/dist/xiot/core/spec/typedef/jwt/impl/JwtRsaImpl.js +15 -0
  393. package/dist/xiot/core/spec/typedef/jwt/impl/JwtSecretsImpl.d.ts +5 -0
  394. package/dist/xiot/core/spec/typedef/jwt/impl/JwtSecretsImpl.js +13 -0
  395. package/dist/xiot/core/spec/typedef/key/AccessKey.d.ts +5 -0
  396. package/dist/xiot/core/spec/typedef/key/AccessKey.js +10 -0
  397. package/dist/xiot/core/spec/typedef/key/DeviceCert.d.ts +7 -0
  398. package/dist/xiot/core/spec/typedef/key/DeviceCert.js +12 -0
  399. package/dist/xiot/core/spec/typedef/key/DeviceKey.d.ts +8 -0
  400. package/dist/xiot/core/spec/typedef/key/DeviceKey.js +13 -0
  401. package/dist/xiot/core/spec/typedef/lifecycle/Lifecycle.d.ts +8 -0
  402. package/dist/xiot/core/spec/typedef/lifecycle/Lifecycle.js +25 -0
  403. package/dist/xiot/core/spec/typedef/lifecycle/ObjectWithLifecycle.d.ts +6 -0
  404. package/dist/xiot/core/spec/typedef/lifecycle/ObjectWithLifecycle.js +10 -0
  405. package/dist/xiot/core/spec/typedef/notice/Notice.d.ts +6 -0
  406. package/dist/xiot/core/spec/typedef/notice/Notice.js +9 -0
  407. package/dist/xiot/core/spec/typedef/notice/NoticeCodec.d.ts +27 -0
  408. package/dist/xiot/core/spec/typedef/notice/NoticeCodec.js +6 -0
  409. package/dist/xiot/core/spec/typedef/notice/device/DeviceNotice.d.ts +6 -0
  410. package/dist/xiot/core/spec/typedef/notice/device/DeviceNotice.js +13 -0
  411. package/dist/xiot/core/spec/typedef/notice/device/DeviceNoticeType.d.ts +14 -0
  412. package/dist/xiot/core/spec/typedef/notice/device/DeviceNoticeType.js +31 -0
  413. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceAccessKeyChanged.d.ts +7 -0
  414. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceAccessKeyChanged.js +16 -0
  415. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceChildrenAdded.d.ts +8 -0
  416. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceChildrenAdded.js +16 -0
  417. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceChildrenRemoved.d.ts +7 -0
  418. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceChildrenRemoved.js +16 -0
  419. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceEventOccurred.d.ts +7 -0
  420. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceEventOccurred.js +15 -0
  421. package/dist/xiot/core/spec/typedef/notice/device/impl/DevicePropertiesChanged.d.ts +7 -0
  422. package/dist/xiot/core/spec/typedef/notice/device/impl/DevicePropertiesChanged.js +16 -0
  423. package/dist/xiot/core/spec/typedef/notice/device/impl/DevicePropertyChanged.d.ts +7 -0
  424. package/dist/xiot/core/spec/typedef/notice/device/impl/DevicePropertyChanged.js +17 -0
  425. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceRootActive.d.ts +8 -0
  426. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceRootActive.js +16 -0
  427. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceRootInactive.d.ts +6 -0
  428. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceRootInactive.js +15 -0
  429. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceSummaryChanged.d.ts +8 -0
  430. package/dist/xiot/core/spec/typedef/notice/device/impl/DeviceSummaryChanged.js +17 -0
  431. package/dist/xiot/core/spec/typedef/notice/owner/OwnerNotice.d.ts +9 -0
  432. package/dist/xiot/core/spec/typedef/notice/owner/OwnerNotice.js +16 -0
  433. package/dist/xiot/core/spec/typedef/notice/owner/OwnerNoticeType.d.ts +42 -0
  434. package/dist/xiot/core/spec/typedef/notice/owner/OwnerNoticeType.js +59 -0
  435. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceAdded.d.ts +10 -0
  436. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceAdded.js +17 -0
  437. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceRemoved.d.ts +6 -0
  438. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceRemoved.js +15 -0
  439. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceSomewhereChanged.d.ts +8 -0
  440. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceSomewhereChanged.js +16 -0
  441. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceSummaryChanged.d.ts +8 -0
  442. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerDeviceSummaryChanged.js +16 -0
  443. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerEventOccurred.d.ts +7 -0
  444. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerEventOccurred.js +15 -0
  445. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerPropertiesChanged.d.ts +7 -0
  446. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerPropertiesChanged.js +15 -0
  447. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleAdded.d.ts +7 -0
  448. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleAdded.js +15 -0
  449. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleChanged.d.ts +7 -0
  450. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleChanged.js +15 -0
  451. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleExecuted.d.ts +8 -0
  452. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleExecuted.js +16 -0
  453. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleRemoved.d.ts +6 -0
  454. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleRemoved.js +15 -0
  455. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleTriggered.d.ts +6 -0
  456. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnerRuleTriggered.js +15 -0
  457. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnershipDisclaimed.d.ts +6 -0
  458. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnershipDisclaimed.js +15 -0
  459. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnershipTaken.d.ts +6 -0
  460. package/dist/xiot/core/spec/typedef/notice/owner/impl/OwnershipTaken.js +15 -0
  461. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeAdded.d.ts +7 -0
  462. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeAdded.js +15 -0
  463. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeChanged.d.ts +7 -0
  464. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeChanged.js +15 -0
  465. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeRemoved.d.ts +6 -0
  466. package/dist/xiot/core/spec/typedef/notice/owner/impl/home/OwnerHomeRemoved.js +15 -0
  467. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceAdded.d.ts +7 -0
  468. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceAdded.js +15 -0
  469. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceChanged.d.ts +7 -0
  470. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceChanged.js +15 -0
  471. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceRemoved.d.ts +6 -0
  472. package/dist/xiot/core/spec/typedef/notice/owner/impl/space/OwnerSpaceRemoved.js +15 -0
  473. package/dist/xiot/core/spec/typedef/oauth2/Oauth2Configuration.d.ts +13 -0
  474. package/dist/xiot/core/spec/typedef/oauth2/Oauth2Configuration.js +19 -0
  475. package/dist/xiot/core/spec/typedef/operation/AbstractOperation.d.ts +9 -0
  476. package/dist/xiot/core/spec/typedef/operation/AbstractOperation.js +21 -0
  477. package/dist/xiot/core/spec/typedef/operation/ActionOperation.d.ts +17 -0
  478. package/dist/xiot/core/spec/typedef/operation/ActionOperation.js +50 -0
  479. package/dist/xiot/core/spec/typedef/operation/ArgumentOperation.d.ts +7 -0
  480. package/dist/xiot/core/spec/typedef/operation/ArgumentOperation.js +52 -0
  481. package/dist/xiot/core/spec/typedef/operation/EventOperation.d.ts +16 -0
  482. package/dist/xiot/core/spec/typedef/operation/EventOperation.js +58 -0
  483. package/dist/xiot/core/spec/typedef/operation/PropertyOperation.d.ts +13 -0
  484. package/dist/xiot/core/spec/typedef/operation/PropertyOperation.js +53 -0
  485. package/dist/xiot/core/spec/typedef/operation/RemindOperation.d.ts +7 -0
  486. package/dist/xiot/core/spec/typedef/operation/RemindOperation.js +25 -0
  487. package/dist/xiot/core/spec/typedef/operation/RuleOperation.d.ts +8 -0
  488. package/dist/xiot/core/spec/typedef/operation/RuleOperation.js +25 -0
  489. package/dist/xiot/core/spec/typedef/operation/SleepOperation.d.ts +7 -0
  490. package/dist/xiot/core/spec/typedef/operation/SleepOperation.js +25 -0
  491. package/dist/xiot/core/spec/typedef/operation/value/AnyValue.d.ts +3 -0
  492. package/dist/xiot/core/spec/typedef/operation/value/AnyValue.js +9 -0
  493. package/dist/xiot/core/spec/typedef/operation/value/AutoscalingValue.d.ts +3 -0
  494. package/dist/xiot/core/spec/typedef/operation/value/AutoscalingValue.js +9 -0
  495. package/dist/xiot/core/spec/typedef/operation/value/ReverseValue.d.ts +3 -0
  496. package/dist/xiot/core/spec/typedef/operation/value/ReverseValue.js +9 -0
  497. package/dist/xiot/core/spec/typedef/ownership/DeviceOwner.d.ts +4 -0
  498. package/dist/xiot/core/spec/typedef/ownership/DeviceOwner.js +10 -0
  499. package/dist/xiot/core/spec/typedef/ownership/Ownership.d.ts +12 -0
  500. package/dist/xiot/core/spec/typedef/ownership/Ownership.js +26 -0
  501. package/dist/xiot/core/spec/typedef/product/Product.d.ts +22 -0
  502. package/dist/xiot/core/spec/typedef/product/Product.js +25 -0
  503. package/dist/xiot/core/spec/typedef/product/ProductVersion.d.ts +17 -0
  504. package/dist/xiot/core/spec/typedef/product/ProductVersion.js +24 -0
  505. package/dist/xiot/core/spec/typedef/product/resource/ProductResource.d.ts +8 -0
  506. package/dist/xiot/core/spec/typedef/product/resource/ProductResource.js +13 -0
  507. package/dist/xiot/core/spec/typedef/product/resource/ProductResourceVersion.d.ts +5 -0
  508. package/dist/xiot/core/spec/typedef/product/resource/ProductResourceVersion.js +12 -0
  509. package/dist/xiot/core/spec/typedef/product/resource/ResourceVersion.d.ts +16 -0
  510. package/dist/xiot/core/spec/typedef/product/resource/ResourceVersion.js +30 -0
  511. package/dist/xiot/core/spec/typedef/rbac/Permission.d.ts +8 -0
  512. package/dist/xiot/core/spec/typedef/rbac/Permission.js +13 -0
  513. package/dist/xiot/core/spec/typedef/rbac/Role.d.ts +7 -0
  514. package/dist/xiot/core/spec/typedef/rbac/Role.js +12 -0
  515. package/dist/xiot/core/spec/typedef/rbac/account/Account.d.ts +11 -0
  516. package/dist/xiot/core/spec/typedef/rbac/account/Account.js +16 -0
  517. package/dist/xiot/core/spec/typedef/rbac/organization/Member.d.ts +12 -0
  518. package/dist/xiot/core/spec/typedef/rbac/organization/Member.js +22 -0
  519. package/dist/xiot/core/spec/typedef/rbac/organization/Organization.d.ts +8 -0
  520. package/dist/xiot/core/spec/typedef/rbac/organization/Organization.js +12 -0
  521. package/dist/xiot/core/spec/typedef/registry/DeviceRegistry.d.ts +6 -0
  522. package/dist/xiot/core/spec/typedef/registry/DeviceRegistry.js +7 -0
  523. package/dist/xiot/core/spec/typedef/registry/accesspoint/AccessPoint.d.ts +4 -0
  524. package/dist/xiot/core/spec/typedef/registry/accesspoint/AccessPoint.js +10 -0
  525. package/dist/xiot/core/spec/typedef/registry/accesspoint/AccessPointType.d.ts +7 -0
  526. package/dist/xiot/core/spec/typedef/registry/accesspoint/AccessPointType.js +24 -0
  527. package/dist/xiot/core/spec/typedef/registry/accesspoint/impl/AccessPointEventbus.d.ts +5 -0
  528. package/dist/xiot/core/spec/typedef/registry/accesspoint/impl/AccessPointEventbus.js +12 -0
  529. package/dist/xiot/core/spec/typedef/registry/accesspoint/impl/AccessPointHttp.d.ts +6 -0
  530. package/dist/xiot/core/spec/typedef/registry/accesspoint/impl/AccessPointHttp.js +13 -0
  531. package/dist/xiot/core/spec/typedef/rule/Rule.d.ts +44 -0
  532. package/dist/xiot/core/spec/typedef/rule/Rule.js +174 -0
  533. package/dist/xiot/core/spec/typedef/rule/RuleContent.d.ts +16 -0
  534. package/dist/xiot/core/spec/typedef/rule/RuleContent.js +56 -0
  535. package/dist/xiot/core/spec/typedef/rule/RuleType.d.ts +7 -0
  536. package/dist/xiot/core/spec/typedef/rule/RuleType.js +11 -0
  537. package/dist/xiot/core/spec/typedef/rule/condition/AbstractCondition.d.ts +7 -0
  538. package/dist/xiot/core/spec/typedef/rule/condition/AbstractCondition.js +12 -0
  539. package/dist/xiot/core/spec/typedef/rule/condition/ComplexCondition.d.ts +17 -0
  540. package/dist/xiot/core/spec/typedef/rule/condition/ComplexCondition.js +57 -0
  541. package/dist/xiot/core/spec/typedef/rule/condition/EventCondition.d.ts +16 -0
  542. package/dist/xiot/core/spec/typedef/rule/condition/EventCondition.js +59 -0
  543. package/dist/xiot/core/spec/typedef/rule/condition/ExternalCondition.d.ts +19 -0
  544. package/dist/xiot/core/spec/typedef/rule/condition/ExternalCondition.js +43 -0
  545. package/dist/xiot/core/spec/typedef/rule/condition/ExternalType.d.ts +5 -0
  546. package/dist/xiot/core/spec/typedef/rule/condition/ExternalType.js +9 -0
  547. package/dist/xiot/core/spec/typedef/rule/condition/NowCondition.d.ts +5 -0
  548. package/dist/xiot/core/spec/typedef/rule/condition/NowCondition.js +15 -0
  549. package/dist/xiot/core/spec/typedef/rule/condition/PropertyCondition.d.ts +19 -0
  550. package/dist/xiot/core/spec/typedef/rule/condition/PropertyCondition.js +48 -0
  551. package/dist/xiot/core/spec/typedef/rule/condition/TimeCondition.d.ts +14 -0
  552. package/dist/xiot/core/spec/typedef/rule/condition/TimeCondition.js +85 -0
  553. package/dist/xiot/core/spec/typedef/rule/condition/operator/ComparisonOperator.d.ts +10 -0
  554. package/dist/xiot/core/spec/typedef/rule/condition/operator/ComparisonOperator.js +32 -0
  555. package/dist/xiot/core/spec/typedef/rule/condition/operator/LogicalOperator.d.ts +6 -0
  556. package/dist/xiot/core/spec/typedef/rule/condition/operator/LogicalOperator.js +22 -0
  557. package/dist/xiot/core/spec/typedef/rule/condition/operator/compare/Comparator.d.ts +2 -0
  558. package/dist/xiot/core/spec/typedef/rule/condition/operator/compare/Comparator.js +20 -0
  559. package/dist/xiot/core/spec/typedef/rule/condition/operator/compare/Compare.d.ts +21 -0
  560. package/dist/xiot/core/spec/typedef/rule/condition/operator/compare/Compare.js +67 -0
  561. package/dist/xiot/core/spec/typedef/rule/condition/operator/logical/Logic.d.ts +2 -0
  562. package/dist/xiot/core/spec/typedef/rule/condition/operator/logical/Logic.js +16 -0
  563. package/dist/xiot/core/spec/typedef/rule/condition/operator/logical/Logical.d.ts +9 -0
  564. package/dist/xiot/core/spec/typedef/rule/condition/operator/logical/Logical.js +15 -0
  565. package/dist/xiot/core/spec/typedef/rule/cron/CronExp.d.ts +31 -0
  566. package/dist/xiot/core/spec/typedef/rule/cron/CronExp.js +102 -0
  567. package/dist/xiot/core/spec/typedef/rule/listener/RuleExecutionListener.d.ts +5 -0
  568. package/dist/xiot/core/spec/typedef/rule/listener/RuleExecutionListener.js +2 -0
  569. package/dist/xiot/core/spec/typedef/rule/parser/RuleContentParser.d.ts +13 -0
  570. package/dist/xiot/core/spec/typedef/rule/parser/RuleContentParser.js +70 -0
  571. package/dist/xiot/core/spec/typedef/rule/parser/condition/ConditionParser.d.ts +17 -0
  572. package/dist/xiot/core/spec/typedef/rule/parser/condition/ConditionParser.js +72 -0
  573. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser0/Parser0.d.ts +28 -0
  574. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser0/Parser0.js +148 -0
  575. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser1/Parser1.d.ts +16 -0
  576. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser1/Parser1.js +90 -0
  577. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/Parser2.d.ts +31 -0
  578. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/Parser2.js +289 -0
  579. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/ParserState2.d.ts +13 -0
  580. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/ParserState2.js +17 -0
  581. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/Token2.d.ts +22 -0
  582. package/dist/xiot/core/spec/typedef/rule/parser/condition/parser2/Token2.js +68 -0
  583. package/dist/xiot/core/spec/typedef/rule/parser/operation/OperationParser.d.ts +31 -0
  584. package/dist/xiot/core/spec/typedef/rule/parser/operation/OperationParser.js +331 -0
  585. package/dist/xiot/core/spec/typedef/rule/parser/operation/OperationState.d.ts +19 -0
  586. package/dist/xiot/core/spec/typedef/rule/parser/operation/OperationState.js +23 -0
  587. package/dist/xiot/core/spec/typedef/rule/parser/token/Token.d.ts +91 -0
  588. package/dist/xiot/core/spec/typedef/rule/parser/token/Token.js +269 -0
  589. package/dist/xiot/core/spec/typedef/rule/parser/token/Tokenizer.d.ts +29 -0
  590. package/dist/xiot/core/spec/typedef/rule/parser/token/Tokenizer.js +483 -0
  591. package/dist/xiot/core/spec/typedef/shadow/DeviceShadow.d.ts +5 -0
  592. package/dist/xiot/core/spec/typedef/shadow/DeviceShadow.js +10 -0
  593. package/dist/xiot/core/spec/typedef/shadow/Shadow.d.ts +7 -0
  594. package/dist/xiot/core/spec/typedef/shadow/Shadow.js +13 -0
  595. package/dist/xiot/core/spec/typedef/somewhere/Somewhere.d.ts +11 -0
  596. package/dist/xiot/core/spec/typedef/somewhere/Somewhere.js +45 -0
  597. package/dist/xiot/core/spec/typedef/somewhere/Where.d.ts +9 -0
  598. package/dist/xiot/core/spec/typedef/somewhere/Where.js +26 -0
  599. package/dist/xiot/core/spec/typedef/space/Space.d.ts +9 -0
  600. package/dist/xiot/core/spec/typedef/space/Space.js +20 -0
  601. package/dist/xiot/core/spec/typedef/status/AbstractStatus.d.ts +8 -0
  602. package/dist/xiot/core/spec/typedef/status/AbstractStatus.js +23 -0
  603. package/dist/xiot/core/spec/typedef/status/Status.d.ts +50 -0
  604. package/dist/xiot/core/spec/typedef/status/Status.js +54 -0
  605. package/dist/xiot/core/spec/typedef/summary/Summary.d.ts +24 -0
  606. package/dist/xiot/core/spec/typedef/summary/Summary.js +120 -0
  607. package/dist/xiot/core/spec/typedef/template/ActionTemplate.d.ts +17 -0
  608. package/dist/xiot/core/spec/typedef/template/ActionTemplate.js +33 -0
  609. package/dist/xiot/core/spec/typedef/template/DeviceTemplate.d.ts +12 -0
  610. package/dist/xiot/core/spec/typedef/template/DeviceTemplate.js +23 -0
  611. package/dist/xiot/core/spec/typedef/template/EventTemplate.d.ts +15 -0
  612. package/dist/xiot/core/spec/typedef/template/EventTemplate.js +26 -0
  613. package/dist/xiot/core/spec/typedef/template/PropertyTemplate.d.ts +10 -0
  614. package/dist/xiot/core/spec/typedef/template/PropertyTemplate.js +16 -0
  615. package/dist/xiot/core/spec/typedef/template/ServiceTemplate.d.ts +24 -0
  616. package/dist/xiot/core/spec/typedef/template/ServiceTemplate.js +46 -0
  617. package/dist/xiot/core/spec/typedef/utils/Stack.d.ts +10 -0
  618. package/dist/xiot/core/spec/typedef/utils/Stack.js +35 -0
  619. package/dist/xiot/core/spec/typedef/utils/StringUtils.d.ts +3 -0
  620. package/dist/xiot/core/spec/typedef/utils/StringUtils.js +14 -0
  621. package/dist/xiot/core/spec/typedef/utils/TemplateHelper.d.ts +30 -0
  622. package/dist/xiot/core/spec/typedef/utils/TemplateHelper.js +285 -0
  623. package/dist/xiot/core/spec/typedef/version/Version.d.ts +9 -0
  624. package/dist/xiot/core/spec/typedef/version/Version.js +40 -0
  625. package/dist/xiot/core/spec/typedef/xid/ActionID.d.ts +13 -0
  626. package/dist/xiot/core/spec/typedef/xid/ActionID.js +27 -0
  627. package/dist/xiot/core/spec/typedef/xid/EventID.d.ts +6 -0
  628. package/dist/xiot/core/spec/typedef/xid/EventID.js +20 -0
  629. package/dist/xiot/core/spec/typedef/xid/PropertyID.d.ts +6 -0
  630. package/dist/xiot/core/spec/typedef/xid/PropertyID.js +20 -0
  631. package/dist/xiot/core/spec/typedef/xid/XID3.d.ts +10 -0
  632. package/dist/xiot/core/spec/typedef/xid/XID3.js +41 -0
  633. package/dist/xiot/core/support/codegen/codec/controlled/ActionControlledCodec.d.ts +3 -0
  634. package/dist/xiot/core/support/codegen/codec/controlled/ActionControlledCodec.js +8 -0
  635. package/dist/xiot/core/support/codegen/codec/controlled/DeviceControlledCodec.d.ts +3 -0
  636. package/dist/xiot/core/support/codegen/codec/controlled/DeviceControlledCodec.js +8 -0
  637. package/dist/xiot/core/support/codegen/codec/controlled/EventControlledCodec.d.ts +3 -0
  638. package/dist/xiot/core/support/codegen/codec/controlled/EventControlledCodec.js +8 -0
  639. package/dist/xiot/core/support/codegen/codec/controlled/PropertyControlledCodec.d.ts +3 -0
  640. package/dist/xiot/core/support/codegen/codec/controlled/PropertyControlledCodec.js +8 -0
  641. package/dist/xiot/core/support/codegen/codec/controlled/ServiceControlledCodec.d.ts +2 -0
  642. package/dist/xiot/core/support/codegen/codec/controlled/ServiceControlledCodec.js +6 -0
  643. package/dist/xiot/core/support/codegen/codec/controller/ActionControllerCodec.d.ts +6 -0
  644. package/dist/xiot/core/support/codegen/codec/controller/ActionControllerCodec.js +30 -0
  645. package/dist/xiot/core/support/codegen/codec/controller/DeviceControllerCodec.d.ts +5 -0
  646. package/dist/xiot/core/support/codegen/codec/controller/DeviceControllerCodec.js +20 -0
  647. package/dist/xiot/core/support/codegen/codec/controller/EventControllerCodec.d.ts +6 -0
  648. package/dist/xiot/core/support/codegen/codec/controller/EventControllerCodec.js +29 -0
  649. package/dist/xiot/core/support/codegen/codec/controller/PropertyControllerCodec.d.ts +7 -0
  650. package/dist/xiot/core/support/codegen/codec/controller/PropertyControllerCodec.js +25 -0
  651. package/dist/xiot/core/support/codegen/codec/controller/ServiceControllerCodec.d.ts +5 -0
  652. package/dist/xiot/core/support/codegen/codec/controller/ServiceControllerCodec.js +31 -0
  653. package/dist/xiot/core/support/codegen/typedef/controlled/ActionControlled.d.ts +9 -0
  654. package/dist/xiot/core/support/codegen/typedef/controlled/ActionControlled.js +25 -0
  655. package/dist/xiot/core/support/codegen/typedef/controlled/DeviceControlled.d.ts +3 -0
  656. package/dist/xiot/core/support/codegen/typedef/controlled/DeviceControlled.js +7 -0
  657. package/dist/xiot/core/support/codegen/typedef/controlled/EventControlled.d.ts +12 -0
  658. package/dist/xiot/core/support/codegen/typedef/controlled/EventControlled.js +20 -0
  659. package/dist/xiot/core/support/codegen/typedef/controlled/PropertyControlled.d.ts +18 -0
  660. package/dist/xiot/core/support/codegen/typedef/controlled/PropertyControlled.js +122 -0
  661. package/dist/xiot/core/support/codegen/typedef/controlled/ServiceControlled.d.ts +8 -0
  662. package/dist/xiot/core/support/codegen/typedef/controlled/ServiceControlled.js +10 -0
  663. package/dist/xiot/core/support/codegen/typedef/controller/ActionController.d.ts +10 -0
  664. package/dist/xiot/core/support/codegen/typedef/controller/ActionController.js +15 -0
  665. package/dist/xiot/core/support/codegen/typedef/controller/DeviceController.d.ts +23 -0
  666. package/dist/xiot/core/support/codegen/typedef/controller/DeviceController.js +86 -0
  667. package/dist/xiot/core/support/codegen/typedef/controller/EventController.d.ts +8 -0
  668. package/dist/xiot/core/support/codegen/typedef/controller/EventController.js +12 -0
  669. package/dist/xiot/core/support/codegen/typedef/controller/PropertyController.d.ts +27 -0
  670. package/dist/xiot/core/support/codegen/typedef/controller/PropertyController.js +144 -0
  671. package/dist/xiot/core/support/codegen/typedef/controller/ServiceController.d.ts +15 -0
  672. package/dist/xiot/core/support/codegen/typedef/controller/ServiceController.js +70 -0
  673. package/dist/xiot/core/support/codegen/typedef/controller/SomewhereController.d.ts +7 -0
  674. package/dist/xiot/core/support/codegen/typedef/controller/SomewhereController.js +32 -0
  675. package/dist/xiot/core/support/codegen/typedef/controller/SummaryController.d.ts +7 -0
  676. package/dist/xiot/core/support/codegen/typedef/controller/SummaryController.js +55 -0
  677. package/dist/xiot/core/support/codegen/typedef/controller/operator/ActionInvokerWrapper.d.ts +9 -0
  678. package/dist/xiot/core/support/codegen/typedef/controller/operator/ActionInvokerWrapper.js +27 -0
  679. package/dist/xiot/core/support/codegen/typedef/controller/operator/PropertySetterWrapper.d.ts +8 -0
  680. package/dist/xiot/core/support/codegen/typedef/controller/operator/PropertySetterWrapper.js +27 -0
  681. package/dist/xiot/core/support/codegen/typedef/result/Result.d.ts +9 -0
  682. package/dist/xiot/core/support/codegen/typedef/result/Result.js +15 -0
  683. package/dist/xiot/core/support/codegen/typedef/rule/RuleController.d.ts +7 -0
  684. package/dist/xiot/core/support/codegen/typedef/rule/RuleController.js +14 -0
  685. package/dist/xiot/core/support/codegen/typedef/rule/status/RuleStatus.d.ts +2 -0
  686. package/dist/xiot/core/support/codegen/typedef/rule/status/RuleStatus.js +2 -0
  687. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleExecuted.d.ts +8 -0
  688. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleExecuted.js +11 -0
  689. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleReady.d.ts +3 -0
  690. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleReady.js +6 -0
  691. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleTriggered.d.ts +6 -0
  692. package/dist/xiot/core/support/codegen/typedef/rule/status/impl/RuleTriggered.js +10 -0
  693. package/package.json +62 -0
@@ -0,0 +1,285 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TemplateHelper = void 0;
4
+ const UrnStyle_1 = require("../definition/urn/UrnStyle");
5
+ class TemplateHelper {
6
+ static updateService(service, organizationId, model, version) {
7
+ if (service.type != null) {
8
+ service.type.organization = organizationId;
9
+ service.type.model = model;
10
+ service.type.version = version;
11
+ service.type.style = UrnStyle_1.UrnStyle.XIOT;
12
+ service.getProperties().forEach(p => {
13
+ return TemplateHelper.updateProperty(p, organizationId, model, version);
14
+ });
15
+ service.getActions().forEach(a => {
16
+ return TemplateHelper.updateAction(a, organizationId, model, version);
17
+ });
18
+ service.getEvents().forEach(e => {
19
+ return TemplateHelper.updateEvent(e, organizationId, model, version);
20
+ });
21
+ }
22
+ }
23
+ static updateProperty(p, groupId, model, version) {
24
+ if (p.type != null) {
25
+ p.type.organization = groupId;
26
+ p.type.model = model;
27
+ p.type.version = version;
28
+ p.type.style = UrnStyle_1.UrnStyle.XIOT;
29
+ }
30
+ }
31
+ static updateAction(a, groupId, model, version) {
32
+ if (a.type != null) {
33
+ a.type.organization = groupId;
34
+ a.type.model = model;
35
+ a.type.version = version;
36
+ a.type.style = UrnStyle_1.UrnStyle.XIOT;
37
+ }
38
+ }
39
+ static updateEvent(a, groupId, model, version) {
40
+ if (a.type != null) {
41
+ a.type.organization = groupId;
42
+ a.type.model = model;
43
+ a.type.version = version;
44
+ a.type.style = UrnStyle_1.UrnStyle.XIOT;
45
+ }
46
+ }
47
+ static alreadyAddedItems(device) {
48
+ for (const s of device.getServices()) {
49
+ if (s.type != null) {
50
+ if (s.type._just_added) {
51
+ return true;
52
+ }
53
+ }
54
+ }
55
+ for (const s of device.getServices()) {
56
+ for (const p of s.getProperties()) {
57
+ if (p.type != null) {
58
+ if (p.type._just_added) {
59
+ return true;
60
+ }
61
+ }
62
+ }
63
+ for (const a of s.getActions()) {
64
+ if (a.type != null) {
65
+ if (a.type._just_added) {
66
+ return true;
67
+ }
68
+ }
69
+ }
70
+ for (const e of s.getEvents()) {
71
+ if (e.type != null) {
72
+ if (e.type._just_added) {
73
+ return true;
74
+ }
75
+ }
76
+ }
77
+ }
78
+ return false;
79
+ }
80
+ static alreadyChanged(device) {
81
+ for (const s of device.getServices()) {
82
+ if (s.type != null) {
83
+ if (s.type._just_added || s.type._changed) {
84
+ return true;
85
+ }
86
+ }
87
+ }
88
+ for (const s of device.getServices()) {
89
+ for (const p of s.getProperties()) {
90
+ if (p.type != null) {
91
+ if (p.type._just_added || p.type._changed) {
92
+ return true;
93
+ }
94
+ }
95
+ }
96
+ for (const a of s.getActions()) {
97
+ if (a.type != null) {
98
+ if (a.type._just_added || a.type._changed) {
99
+ return true;
100
+ }
101
+ }
102
+ }
103
+ for (const e of s.getEvents()) {
104
+ if (e.type != null) {
105
+ if (e.type._just_added || e.type._changed) {
106
+ return true;
107
+ }
108
+ }
109
+ }
110
+ }
111
+ return false;
112
+ }
113
+ static addServices(device, services) {
114
+ services.forEach(s => {
115
+ return TemplateHelper.addService(device, s);
116
+ });
117
+ }
118
+ static addService(device, service) {
119
+ TemplateHelper.reconstructService(device, service);
120
+ if (service.type != null) {
121
+ service.required = false;
122
+ service.type._just_added = true;
123
+ service.type._optional = true;
124
+ }
125
+ device.services.set(service.iid, service);
126
+ }
127
+ static addProperties(device, siid, properties) {
128
+ properties.forEach(p => {
129
+ return TemplateHelper.addProperty(device, siid, p);
130
+ });
131
+ }
132
+ static addProperty(device, siid, property) {
133
+ TemplateHelper.reconstructProperty(device, siid, property);
134
+ if (property.type != null) {
135
+ property.required = false;
136
+ property.type._just_added = true;
137
+ property.type._optional = true;
138
+ }
139
+ const s = device.services.get(siid);
140
+ if (s != null) {
141
+ s.properties.set(property.iid, property);
142
+ }
143
+ }
144
+ static addActions(device, siid, actions) {
145
+ actions.forEach(a => {
146
+ return TemplateHelper.addAction(device, siid, a);
147
+ });
148
+ }
149
+ static addAction(device, siid, action) {
150
+ TemplateHelper.reconstructAction(device, siid, action);
151
+ if (action.type != null) {
152
+ action.type._just_added = true;
153
+ action.type._optional = true;
154
+ }
155
+ const s = device.services.get(siid);
156
+ if (s != null) {
157
+ s.actions.set(action.iid, action);
158
+ }
159
+ }
160
+ static addEvents(device, siid, events) {
161
+ events.forEach(e => {
162
+ return TemplateHelper.addEvent(device, siid, e);
163
+ });
164
+ }
165
+ static addEvent(device, siid, event) {
166
+ TemplateHelper.reconstructEvent(device, siid, event);
167
+ if (event.type != null) {
168
+ event.required = false;
169
+ event.type._just_added = true;
170
+ event.type._optional = true;
171
+ }
172
+ const s = device.services.get(siid);
173
+ if (s != null) {
174
+ s.events.set(event.iid, event);
175
+ }
176
+ }
177
+ static reconstructProperty(device, siid, property) {
178
+ if (device.type == null) {
179
+ return;
180
+ }
181
+ if (device.type.ns === 'homekit-spec') {
182
+ property.iid = TemplateHelper.newHomeKitIID(device);
183
+ }
184
+ else {
185
+ property.iid = TemplateHelper.newPropertyIID(device, siid);
186
+ }
187
+ }
188
+ static reconstructAction(device, siid, action) {
189
+ if (device.type == null) {
190
+ return;
191
+ }
192
+ action.iid = TemplateHelper.newActionIID(device, siid);
193
+ }
194
+ static reconstructEvent(device, siid, event) {
195
+ if (device.type == null) {
196
+ return;
197
+ }
198
+ event.iid = TemplateHelper.newEventIID(device, siid);
199
+ }
200
+ static reconstructService(device, service) {
201
+ let piid = 0;
202
+ if (device.type == null) {
203
+ return;
204
+ }
205
+ if (device.type.ns === 'homekit-spec') {
206
+ service.iid = TemplateHelper.newHomeKitIID(device);
207
+ piid = service.iid + 1;
208
+ }
209
+ else {
210
+ service.iid = TemplateHelper.newServiceIID(device);
211
+ piid = 1;
212
+ }
213
+ service.getProperties().forEach(p => {
214
+ if (p.type != null) {
215
+ p.type._just_added = true;
216
+ }
217
+ p.iid = piid++;
218
+ });
219
+ const properties = service.getProperties();
220
+ service.properties.clear();
221
+ properties.forEach(p => {
222
+ return service.properties.set(p.iid, p);
223
+ });
224
+ }
225
+ static newHomeKitIID(device) {
226
+ let iid = 0;
227
+ device.getServices().forEach(s => {
228
+ if (iid < s.iid) {
229
+ iid = s.iid;
230
+ }
231
+ s.getProperties().forEach(p => {
232
+ if (iid < p.iid) {
233
+ iid = p.iid;
234
+ }
235
+ });
236
+ });
237
+ return iid + 1;
238
+ }
239
+ static newServiceIID(device) {
240
+ let iid = 0;
241
+ device.getServices().forEach(s => {
242
+ if (iid < s.iid) {
243
+ iid = s.iid;
244
+ }
245
+ });
246
+ return iid + 1;
247
+ }
248
+ static newPropertyIID(device, siid) {
249
+ let iid = 0;
250
+ const s = device.services.get(siid);
251
+ if (s != null) {
252
+ s.getProperties().forEach(p => {
253
+ if (iid < p.iid) {
254
+ iid = p.iid;
255
+ }
256
+ });
257
+ }
258
+ return iid + 1;
259
+ }
260
+ static newActionIID(device, siid) {
261
+ let iid = 0;
262
+ const s = device.services.get(siid);
263
+ if (s != null) {
264
+ s.getActions().forEach(p => {
265
+ if (iid < p.iid) {
266
+ iid = p.iid;
267
+ }
268
+ });
269
+ }
270
+ return iid + 1;
271
+ }
272
+ static newEventIID(device, siid) {
273
+ let iid = 0;
274
+ const s = device.services.get(siid);
275
+ if (s != null) {
276
+ s.getEvents().forEach(p => {
277
+ if (iid < p.iid) {
278
+ iid = p.iid;
279
+ }
280
+ });
281
+ }
282
+ return iid + 1;
283
+ }
284
+ }
285
+ exports.TemplateHelper = TemplateHelper;
@@ -0,0 +1,9 @@
1
+ export declare class Version {
2
+ major: number;
3
+ minor: number;
4
+ patch: number;
5
+ constructor(major: number, minor: number, patch: number);
6
+ static fromString(version: string): Version;
7
+ toString(): string;
8
+ greaterThan(other: Version): boolean;
9
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Version = void 0;
4
+ class Version {
5
+ constructor(major, minor, patch) {
6
+ this.major = major;
7
+ this.minor = minor;
8
+ this.patch = patch;
9
+ }
10
+ static fromString(version) {
11
+ const s = version.split('.');
12
+ const x = Number.parseInt(s[0]);
13
+ const y = Number.parseInt(s[1]);
14
+ const z = Number.parseInt(s[2]);
15
+ return new Version(x, y, z);
16
+ }
17
+ toString() {
18
+ return `${this.major}.${this.minor}.${this.patch}`;
19
+ }
20
+ greaterThan(other) {
21
+ if (this.major > other.major) {
22
+ return true;
23
+ }
24
+ else if (this.major === other.major) {
25
+ if (this.minor > other.minor) {
26
+ return true;
27
+ }
28
+ else if (this.minor === other.minor) {
29
+ return this.patch > other.patch;
30
+ }
31
+ else {
32
+ return false;
33
+ }
34
+ }
35
+ else {
36
+ return false;
37
+ }
38
+ }
39
+ }
40
+ exports.Version = Version;
@@ -0,0 +1,13 @@
1
+ import { XID3 } from './XID3';
2
+ export declare class ActionID extends XID3 {
3
+ /**
4
+ * 处理ActionId字符串,可能抛异常
5
+ * @param s
6
+ */
7
+ static parse(s: string): ActionID;
8
+ /**
9
+ * 创建一个新的ActionId
10
+ */
11
+ static create(did: string, siid: number, iid: number): ActionID;
12
+ toString(): string;
13
+ }
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActionID = void 0;
4
+ const XID3_1 = require("./XID3");
5
+ class ActionID extends XID3_1.XID3 {
6
+ /**
7
+ * 处理ActionId字符串,可能抛异常
8
+ * @param s
9
+ */
10
+ static parse(s) {
11
+ return new ActionID(s, true);
12
+ }
13
+ /**
14
+ * 创建一个新的ActionId
15
+ */
16
+ static create(did, siid, iid) {
17
+ const aid = new ActionID();
18
+ aid.did = did;
19
+ aid.siid = siid;
20
+ aid.iid = iid;
21
+ return aid;
22
+ }
23
+ toString() {
24
+ return super.toString();
25
+ }
26
+ }
27
+ exports.ActionID = ActionID;
@@ -0,0 +1,6 @@
1
+ import { XID3 } from './XID3';
2
+ export declare class EventID extends XID3 {
3
+ static parse(s: string): EventID;
4
+ static create(did: string, siid: number, iid: number): EventID;
5
+ toString(): string;
6
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EventID = void 0;
4
+ const XID3_1 = require("./XID3");
5
+ class EventID extends XID3_1.XID3 {
6
+ static parse(s) {
7
+ return new EventID(s, true);
8
+ }
9
+ static create(did, siid, iid) {
10
+ const xid = new EventID();
11
+ xid.did = did;
12
+ xid.siid = siid;
13
+ xid.iid = iid;
14
+ return xid;
15
+ }
16
+ toString() {
17
+ return super.toString();
18
+ }
19
+ }
20
+ exports.EventID = EventID;
@@ -0,0 +1,6 @@
1
+ import { XID3 } from './XID3';
2
+ export declare class PropertyID extends XID3 {
3
+ static parse(s: string): PropertyID;
4
+ static create(did: string, siid: number, iid: number): PropertyID;
5
+ toString(): string;
6
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PropertyID = void 0;
4
+ const XID3_1 = require("./XID3");
5
+ class PropertyID extends XID3_1.XID3 {
6
+ static parse(s) {
7
+ return new PropertyID(s, true);
8
+ }
9
+ static create(did, siid, iid) {
10
+ const xid = new PropertyID();
11
+ xid.did = did;
12
+ xid.siid = siid;
13
+ xid.iid = iid;
14
+ return xid;
15
+ }
16
+ toString() {
17
+ return super.toString();
18
+ }
19
+ }
20
+ exports.PropertyID = PropertyID;
@@ -0,0 +1,10 @@
1
+ export declare class XID3 {
2
+ iid: number;
3
+ siid: number;
4
+ did: string;
5
+ valid: boolean;
6
+ constructor(s?: string, exception?: boolean);
7
+ parse(value: string, exception?: boolean): void;
8
+ private fail;
9
+ toString(): string;
10
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.XID3 = void 0;
4
+ class XID3 {
5
+ constructor(s, exception = false) {
6
+ this.iid = 0;
7
+ this.siid = 0;
8
+ this.did = '';
9
+ this.valid = true;
10
+ if (s) {
11
+ this.parse(s, exception);
12
+ }
13
+ }
14
+ parse(value, exception = false) {
15
+ if (value == null) {
16
+ this.fail('value is null', exception);
17
+ }
18
+ else {
19
+ const id = value.split('.');
20
+ if (id.length !== 3) {
21
+ this.fail('value invalid', exception);
22
+ }
23
+ this.did = id[0];
24
+ this.siid = Number.parseInt(id[1], 10);
25
+ this.iid = Number.parseInt(id[2], 10);
26
+ }
27
+ }
28
+ fail(msg, exception) {
29
+ if (exception) {
30
+ throw new Error(msg);
31
+ }
32
+ this.valid = false;
33
+ }
34
+ toString() {
35
+ if (this.valid) {
36
+ return `${this.did}.${this.siid}.${this.iid}`;
37
+ }
38
+ return '';
39
+ }
40
+ }
41
+ exports.XID3 = XID3;
@@ -0,0 +1,3 @@
1
+ export declare class ActionControlledCodec {
2
+ private ActionControlledCodec;
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActionControlledCodec = void 0;
4
+ class ActionControlledCodec {
5
+ ActionControlledCodec() {
6
+ }
7
+ }
8
+ exports.ActionControlledCodec = ActionControlledCodec;
@@ -0,0 +1,3 @@
1
+ export declare class DeviceControlledCodec {
2
+ private DeviceControlledCodec;
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeviceControlledCodec = void 0;
4
+ class DeviceControlledCodec {
5
+ DeviceControlledCodec() {
6
+ }
7
+ }
8
+ exports.DeviceControlledCodec = DeviceControlledCodec;
@@ -0,0 +1,3 @@
1
+ export declare class EventControlledCodec {
2
+ private EventControlledCodec;
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EventControlledCodec = void 0;
4
+ class EventControlledCodec {
5
+ EventControlledCodec() {
6
+ }
7
+ }
8
+ exports.EventControlledCodec = EventControlledCodec;
@@ -0,0 +1,3 @@
1
+ export declare class PropertyControlledCodec {
2
+ private PropertyControlledCodec;
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PropertyControlledCodec = void 0;
4
+ class PropertyControlledCodec {
5
+ PropertyControlledCodec() {
6
+ }
7
+ }
8
+ exports.PropertyControlledCodec = PropertyControlledCodec;
@@ -0,0 +1,2 @@
1
+ export declare class ServiceControlledCodec {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ServiceControlledCodec = void 0;
4
+ class ServiceControlledCodec {
5
+ }
6
+ exports.ServiceControlledCodec = ServiceControlledCodec;
@@ -0,0 +1,6 @@
1
+ import { ActionController } from "../../typedef/controller/ActionController";
2
+ export declare class ActionControllerCodec {
3
+ private ActionControllerCodec;
4
+ private static decodeObject;
5
+ static decodeArray(array: any[]): ActionController[];
6
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActionControllerCodec = void 0;
4
+ const ActionController_1 = require("../../typedef/controller/ActionController");
5
+ const Spec_1 = require("../../../../spec/typedef/constant/Spec");
6
+ const DescriptionCodec_1 = require("../../../../spec/codec/definition/DescriptionCodec");
7
+ const ArgumentCodec_1 = require("../../../../spec/codec/instance/ArgumentCodec");
8
+ const ActionType_1 = require("../../../../spec/typedef/definition/urn/ActionType");
9
+ class ActionControllerCodec {
10
+ ActionControllerCodec() {
11
+ }
12
+ static decodeObject(o) {
13
+ const iid = o[Spec_1.Spec.IID] || 0;
14
+ const type = ActionType_1.ActionType.parse(o[Spec_1.Spec.TYPE]);
15
+ const description = DescriptionCodec_1.DescriptionCodec.decode(o[Spec_1.Spec.DESCRIPTION]);
16
+ const argumentsIn = ArgumentCodec_1.ArgumentCodec.decodeArray(o[Spec_1.Spec.IN]);
17
+ const argumentsOut = ArgumentCodec_1.ArgumentCodec.decodeArray(o[Spec_1.Spec.OUT]);
18
+ return new ActionController_1.ActionController(iid, type, description, argumentsIn, argumentsOut);
19
+ }
20
+ static decodeArray(array) {
21
+ const actions = [];
22
+ if (array != null) {
23
+ for (let item of array) {
24
+ actions.push(this.decodeObject(item));
25
+ }
26
+ }
27
+ return actions;
28
+ }
29
+ }
30
+ exports.ActionControllerCodec = ActionControllerCodec;
@@ -0,0 +1,5 @@
1
+ import { DeviceController } from "../../typedef/controller/DeviceController";
2
+ export declare class DeviceControllerCodec {
3
+ private DeviceControllerCodec;
4
+ static decode(o: any): DeviceController;
5
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeviceControllerCodec = void 0;
4
+ const DeviceController_1 = require("../../typedef/controller/DeviceController");
5
+ const Spec_1 = require("../../../../spec/typedef/constant/Spec");
6
+ const DescriptionCodec_1 = require("../../../../spec/codec/definition/DescriptionCodec");
7
+ const ServiceControllerCodec_1 = require("./ServiceControllerCodec");
8
+ const UrnType_1 = require("../../../../spec/typedef/definition/urn/UrnType");
9
+ const Urn_1 = require("../../../../spec/typedef/definition/urn/Urn");
10
+ class DeviceControllerCodec {
11
+ DeviceControllerCodec() {
12
+ }
13
+ static decode(o) {
14
+ const type = new Urn_1.Urn([UrnType_1.UrnType.DEVICE, UrnType_1.UrnType.GROUP], o[Spec_1.Spec.TYPE]);
15
+ const description = DescriptionCodec_1.DescriptionCodec.decode(o[Spec_1.Spec.DESCRIPTION]);
16
+ const services = ServiceControllerCodec_1.ServiceControllerCodec.decodeArray(o[Spec_1.Spec.SERVICES]);
17
+ return new DeviceController_1.DeviceController(type, description, services);
18
+ }
19
+ }
20
+ exports.DeviceControllerCodec = DeviceControllerCodec;
@@ -0,0 +1,6 @@
1
+ import { EventController } from "../../typedef/controller/EventController";
2
+ export declare class EventControllerCodec {
3
+ private EventControllerCodec;
4
+ static decodeObject(o: any): EventController;
5
+ static decodeArray(array: any[]): EventController[];
6
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EventControllerCodec = void 0;
4
+ const EventController_1 = require("../../typedef/controller/EventController");
5
+ const Spec_1 = require("../../../../spec/typedef/constant/Spec");
6
+ const EventType_1 = require("../../../../spec/typedef/definition/urn/EventType");
7
+ const DescriptionCodec_1 = require("../../../../spec/codec/definition/DescriptionCodec");
8
+ const ArgumentCodec_1 = require("../../../../spec/codec/instance/ArgumentCodec");
9
+ class EventControllerCodec {
10
+ EventControllerCodec() {
11
+ }
12
+ static decodeObject(o) {
13
+ const iid = o[Spec_1.Spec.IID] || 0;
14
+ const type = EventType_1.EventType.parse(o[Spec_1.Spec.TYPE]);
15
+ const description = DescriptionCodec_1.DescriptionCodec.decode(o[Spec_1.Spec.DESCRIPTION]);
16
+ const list = ArgumentCodec_1.ArgumentCodec.decodeArray(o[Spec_1.Spec.ARGUMENTS]);
17
+ return new EventController_1.EventController(iid, type, description, list);
18
+ }
19
+ static decodeArray(array) {
20
+ const events = [];
21
+ if (array != null) {
22
+ for (let item of array) {
23
+ events.push(EventControllerCodec.decodeObject(item));
24
+ }
25
+ }
26
+ return events;
27
+ }
28
+ }
29
+ exports.EventControllerCodec = EventControllerCodec;
@@ -0,0 +1,7 @@
1
+ import { PropertyController } from "../../typedef/controller/PropertyController";
2
+ export declare class PropertyControllerCodec {
3
+ private PropertyControllerCodec;
4
+ static decodeArray(array: any[]): PropertyController[];
5
+ private static decodeObject;
6
+ static encode(property: PropertyController): Object;
7
+ }