@dronedeploy/rocos-js-sdk 0.0.1 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (587) hide show
  1. package/IRocosSDK.d.ts +55 -0
  2. package/IRocosSDK.js +6 -0
  3. package/README.md +90 -0
  4. package/RocosSDK.d.ts +138 -0
  5. package/RocosSDK.js +294 -0
  6. package/api/StreamRegister.d.ts +13 -0
  7. package/api/StreamRegister.js +58 -0
  8. package/api/atoms/StreamHeartbeat.d.ts +27 -0
  9. package/api/atoms/StreamHeartbeat.js +115 -0
  10. package/api/streams/caller/CallerStream.d.ts +13 -0
  11. package/api/streams/caller/CallerStream.js +85 -0
  12. package/api/streams/caller/CallerStreamAbstract.d.ts +28 -0
  13. package/api/streams/caller/CallerStreamAbstract.js +99 -0
  14. package/api/streams/caller/CallerStreamNode.d.ts +13 -0
  15. package/api/streams/caller/CallerStreamNode.js +128 -0
  16. package/api/streams/command/CommandStream.d.ts +12 -0
  17. package/api/streams/command/CommandStream.js +68 -0
  18. package/api/streams/command/CommandStreamAbstract.d.ts +24 -0
  19. package/api/streams/command/CommandStreamAbstract.js +72 -0
  20. package/api/streams/command/CommandStreamNode.d.ts +12 -0
  21. package/api/streams/command/CommandStreamNode.js +93 -0
  22. package/api/streams/control/ControlStream.d.ts +14 -0
  23. package/api/streams/control/ControlStream.js +81 -0
  24. package/api/streams/control/ControlStreamAbstract.d.ts +28 -0
  25. package/api/streams/control/ControlStreamAbstract.js +108 -0
  26. package/api/streams/control/ControlStreamNode.d.ts +14 -0
  27. package/api/streams/control/ControlStreamNode.js +98 -0
  28. package/api/streams/fileAccessor/FileAccessorStream.d.ts +10 -0
  29. package/api/streams/fileAccessor/FileAccessorStream.js +74 -0
  30. package/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +26 -0
  31. package/api/streams/fileAccessor/FileAccessorStreamAbstract.js +82 -0
  32. package/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +10 -0
  33. package/api/streams/fileAccessor/FileAccessorStreamNode.js +96 -0
  34. package/api/streams/search/SearchStream.d.ts +16 -0
  35. package/api/streams/search/SearchStream.js +120 -0
  36. package/api/streams/search/SearchStreamAbstract.d.ts +30 -0
  37. package/api/streams/search/SearchStreamAbstract.js +74 -0
  38. package/api/streams/search/SearchStreamNode.d.ts +16 -0
  39. package/api/streams/search/SearchStreamNode.js +143 -0
  40. package/api/streams/telemetry/TelemetryStream.d.ts +17 -0
  41. package/api/streams/telemetry/TelemetryStream.js +126 -0
  42. package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +62 -0
  43. package/api/streams/telemetry/TelemetryStreamAbstract.js +421 -0
  44. package/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
  45. package/api/streams/telemetry/TelemetryStreamNode.js +195 -0
  46. package/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +44 -0
  47. package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +67 -0
  48. package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +32 -0
  49. package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +65 -0
  50. package/constants/api.d.ts +121 -0
  51. package/constants/api.js +126 -0
  52. package/constants/grpc.d.ts +5 -0
  53. package/constants/grpc.js +8 -0
  54. package/constants/identifier.d.ts +6 -0
  55. package/constants/identifier.js +9 -0
  56. package/constants/timezones.d.ts +2 -0
  57. package/constants/timezones.js +430 -0
  58. package/demo/angular/.editorconfig +16 -0
  59. package/demo/angular/.eslintignore +4 -0
  60. package/demo/angular/.eslintrc.json +50 -0
  61. package/demo/angular/README.md +36 -0
  62. package/demo/angular/angular.json +132 -0
  63. package/demo/angular/karma.conf.js +44 -0
  64. package/demo/angular/package.json +41 -0
  65. package/demo/angular/src/app/app.component.css +0 -0
  66. package/demo/angular/src/app/app.component.html +9 -0
  67. package/demo/angular/src/app/app.component.ts +10 -0
  68. package/demo/angular/src/app/app.module.ts +38 -0
  69. package/demo/angular/src/app/components/assets/assets.component.css +0 -0
  70. package/demo/angular/src/app/components/assets/assets.component.html +29 -0
  71. package/demo/angular/src/app/components/assets/assets.component.ts +107 -0
  72. package/demo/angular/src/app/components/auth/auth.component.css +0 -0
  73. package/demo/angular/src/app/components/auth/auth.component.html +27 -0
  74. package/demo/angular/src/app/components/auth/auth.component.ts +33 -0
  75. package/demo/angular/src/app/components/caller/caller.component.css +0 -0
  76. package/demo/angular/src/app/components/caller/caller.component.html +22 -0
  77. package/demo/angular/src/app/components/caller/caller.component.ts +61 -0
  78. package/demo/angular/src/app/components/command/command.component.css +0 -0
  79. package/demo/angular/src/app/components/command/command.component.html +22 -0
  80. package/demo/angular/src/app/components/command/command.component.ts +60 -0
  81. package/demo/angular/src/app/components/integrations/integrations.component.ts +43 -0
  82. package/demo/angular/src/app/components/robots/robots.component.css +0 -0
  83. package/demo/angular/src/app/components/robots/robots.component.html +13 -0
  84. package/demo/angular/src/app/components/robots/robots.component.ts +26 -0
  85. package/demo/angular/src/app/components/sdk/sdk.component.css +0 -0
  86. package/demo/angular/src/app/components/sdk/sdk.component.html +43 -0
  87. package/demo/angular/src/app/components/sdk/sdk.component.ts +50 -0
  88. package/demo/angular/src/app/components/subscription/subscription.component.css +0 -0
  89. package/demo/angular/src/app/components/subscription/subscription.component.html +6 -0
  90. package/demo/angular/src/app/components/subscription/subscription.component.ts +40 -0
  91. package/demo/angular/src/app/components/telemetry/telemetry.component.css +0 -0
  92. package/demo/angular/src/app/components/telemetry/telemetry.component.html +19 -0
  93. package/demo/angular/src/app/components/telemetry/telemetry.component.ts +61 -0
  94. package/demo/angular/src/app/components/token/token.component.css +0 -0
  95. package/demo/angular/src/app/components/token/token.component.html +10 -0
  96. package/demo/angular/src/app/components/token/token.component.ts +18 -0
  97. package/demo/angular/src/app/components/video/p2pvideo/index.ts +646 -0
  98. package/demo/angular/src/app/components/video/video-source.ts +315 -0
  99. package/demo/angular/src/app/components/video/video.component.css +6 -0
  100. package/demo/angular/src/app/components/video/video.component.html +54 -0
  101. package/demo/angular/src/app/components/video/video.component.ts +151 -0
  102. package/demo/angular/src/app/services/sdk.service.ts +193 -0
  103. package/demo/angular/src/assets/.gitkeep +0 -0
  104. package/demo/angular/src/assets/HKGrotesk-Bold.otf +0 -0
  105. package/demo/angular/src/assets/HKGrotesk-Regular.otf +0 -0
  106. package/demo/angular/src/assets/logo.svg +16 -0
  107. package/demo/angular/src/environments/environment.prod.ts +3 -0
  108. package/demo/angular/src/environments/environment.ts +16 -0
  109. package/demo/angular/src/favicon.ico +0 -0
  110. package/demo/angular/src/index.html +15 -0
  111. package/demo/angular/src/main.ts +7 -0
  112. package/demo/angular/src/polyfills.ts +53 -0
  113. package/demo/angular/src/styles.css +198 -0
  114. package/demo/angular/tsconfig.app.json +15 -0
  115. package/demo/angular/tsconfig.json +39 -0
  116. package/demo/html/README.md +8 -0
  117. package/demo/html/assets/HKGrotesk-Bold.otf +0 -0
  118. package/demo/html/assets/HKGrotesk-Regular.otf +0 -0
  119. package/demo/html/assets/logo.svg +16 -0
  120. package/demo/html/favicon.ico +0 -0
  121. package/demo/html/index.html +416 -0
  122. package/demo/html/rocos-js-sdk.js +3 -0
  123. package/demo/html/rocos-js-sdk.js.LICENSE.txt +8 -0
  124. package/demo/html/rocos-js-sdk.js.map +1 -0
  125. package/demo/html/styles.css +190 -0
  126. package/demo/node/README.md +17 -0
  127. package/demo/node/index.js +134 -0
  128. package/demo/node/package.json +8 -0
  129. package/demo/react/.env +1 -0
  130. package/demo/react/.env.dist +1 -0
  131. package/demo/react/.eslintrc.json +46 -0
  132. package/demo/react/README.md +65 -0
  133. package/demo/react/package.json +60 -0
  134. package/demo/react/public/favicon.ico +0 -0
  135. package/demo/react/public/index.html +43 -0
  136. package/demo/react/public/logo192.png +0 -0
  137. package/demo/react/public/logo512.png +0 -0
  138. package/demo/react/public/manifest.json +25 -0
  139. package/demo/react/public/robots.txt +3 -0
  140. package/demo/react/src/App.css +190 -0
  141. package/demo/react/src/App.tsx +31 -0
  142. package/demo/react/src/actions/index.ts +8 -0
  143. package/demo/react/src/actions/sdkActions.ts +62 -0
  144. package/demo/react/src/assets/HKGrotesk-Bold.otf +0 -0
  145. package/demo/react/src/assets/HKGrotesk-Regular.otf +0 -0
  146. package/demo/react/src/assets/logo.svg +16 -0
  147. package/demo/react/src/components/AuthForm.tsx +76 -0
  148. package/demo/react/src/components/CallerBox.tsx +53 -0
  149. package/demo/react/src/components/CallerForm.tsx +98 -0
  150. package/demo/react/src/components/CommandBox.tsx +47 -0
  151. package/demo/react/src/components/CommandForm.tsx +98 -0
  152. package/demo/react/src/components/RobotsForm.tsx +51 -0
  153. package/demo/react/src/components/SubscriptionBox.tsx +55 -0
  154. package/demo/react/src/components/TelemetryForm.tsx +98 -0
  155. package/demo/react/src/components/TokenForm.tsx +39 -0
  156. package/demo/react/src/config.json +14 -0
  157. package/demo/react/src/controllers/RocosSDKController.ts +48 -0
  158. package/demo/react/src/helpers/deepEqual.ts +27 -0
  159. package/demo/react/src/hooks/useInput.ts +29 -0
  160. package/demo/react/src/index.css +11 -0
  161. package/demo/react/src/index.tsx +26 -0
  162. package/demo/react/src/react-app-env.d.ts +1 -0
  163. package/demo/react/src/reducers/sdkReducer.ts +133 -0
  164. package/demo/react/src/reportWebVitals.ts +15 -0
  165. package/demo/react/src/selectors/sdkSelector.ts +11 -0
  166. package/demo/react/src/setupTests.ts +5 -0
  167. package/demo/react/src/store.ts +14 -0
  168. package/demo/react/tsconfig.json +26 -0
  169. package/demo/sdk-sizer/dist/sdk-sizer/3rdpartylicenses.txt +975 -0
  170. package/demo/sdk-sizer/dist/sdk-sizer/favicon.ico +0 -0
  171. package/demo/sdk-sizer/dist/sdk-sizer/index.html +12 -0
  172. package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js +2 -0
  173. package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js.map +1 -0
  174. package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js +2 -0
  175. package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js.map +1 -0
  176. package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js +2 -0
  177. package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js.map +1 -0
  178. package/demo/sdk-sizer/dist/sdk-sizer/stats.json +1 -0
  179. package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css +2 -0
  180. package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css.map +1 -0
  181. package/grpc/file-accessor/filagree_grpc_pb.d.ts +41 -0
  182. package/grpc/file-accessor/filagree_grpc_pb.js +121 -0
  183. package/grpc/file-accessor/filagree_pb.d.ts +339 -0
  184. package/grpc/file-accessor/filagree_pb.js +2261 -0
  185. package/grpc/file-accessor/filagree_pb_service.d.ts +115 -0
  186. package/grpc/file-accessor/filagree_pb_service.js +257 -0
  187. package/grpc/rambo/rambo.v1_grpc_pb.d.ts +39 -0
  188. package/grpc/rambo/rambo.v1_grpc_pb.js +73 -0
  189. package/grpc/rambo/rambo.v1_pb.d.ts +365 -0
  190. package/grpc/rambo/rambo.v1_pb.js +2469 -0
  191. package/grpc/rambo/rambo.v1_pb_service.d.ts +76 -0
  192. package/grpc/rambo/rambo.v1_pb_service.js +138 -0
  193. package/grpc/rambo/uri.v1_grpc_pb.d.ts +1 -0
  194. package/grpc/rambo/uri.v1_grpc_pb.js +1 -0
  195. package/grpc/rambo/uri.v1_pb.d.ts +80 -0
  196. package/grpc/rambo/uri.v1_pb.js +563 -0
  197. package/grpc/rambo/uri.v1_pb_service.d.ts +3 -0
  198. package/grpc/rambo/uri.v1_pb_service.js +3 -0
  199. package/grpc/robot-control/conker_grpc_pb.d.ts +46 -0
  200. package/grpc/robot-control/conker_grpc_pb.js +143 -0
  201. package/grpc/robot-control/conker_pb.d.ts +168 -0
  202. package/grpc/robot-control/conker_pb.js +1287 -0
  203. package/grpc/robot-control/conker_pb_service.d.ts +126 -0
  204. package/grpc/robot-control/conker_pb_service.js +301 -0
  205. package/grpc/serviette/common.v1_grpc_pb.d.ts +1 -0
  206. package/grpc/serviette/common.v1_grpc_pb.js +1 -0
  207. package/grpc/serviette/common.v1_pb.d.ts +8 -0
  208. package/grpc/serviette/common.v1_pb.js +45 -0
  209. package/grpc/serviette/common.v1_pb_service.d.ts +3 -0
  210. package/grpc/serviette/common.v1_pb_service.js +3 -0
  211. package/grpc/serviette/serviette.v1_grpc_pb.d.ts +137 -0
  212. package/grpc/serviette/serviette.v1_grpc_pb.js +331 -0
  213. package/grpc/serviette/serviette.v1_pb.d.ts +884 -0
  214. package/grpc/serviette/serviette.v1_pb.js +6363 -0
  215. package/grpc/serviette/serviette.v1_pb_service.d.ts +278 -0
  216. package/grpc/serviette/serviette.v1_pb_service.js +699 -0
  217. package/grpc/serviette/uri.v1_grpc_pb.d.ts +1 -0
  218. package/grpc/serviette/uri.v1_grpc_pb.js +1 -0
  219. package/grpc/serviette/uri.v1_pb.d.ts +102 -0
  220. package/grpc/serviette/uri.v1_pb.js +741 -0
  221. package/grpc/serviette/uri.v1_pb_service.d.ts +3 -0
  222. package/grpc/serviette/uri.v1_pb_service.js +3 -0
  223. package/grpc/slowlane/slowlane_grpc_pb.d.ts +38 -0
  224. package/grpc/slowlane/slowlane_grpc_pb.js +132 -0
  225. package/grpc/slowlane/slowlane_pb.d.ts +373 -0
  226. package/grpc/slowlane/slowlane_pb.js +2908 -0
  227. package/grpc/slowlane/slowlane_pb_service.d.ts +112 -0
  228. package/grpc/slowlane/slowlane_pb_service.js +189 -0
  229. package/grpc/teletubby/teletubby_grpc_pb.d.ts +73 -0
  230. package/grpc/teletubby/teletubby_grpc_pb.js +231 -0
  231. package/grpc/teletubby/teletubby_pb.d.ts +647 -0
  232. package/grpc/teletubby/teletubby_pb.js +4786 -0
  233. package/grpc/teletubby/teletubby_pb_service.d.ts +193 -0
  234. package/grpc/teletubby/teletubby_pb_service.js +436 -0
  235. package/grpc/video/pigeon_grpc_pb.d.ts +59 -0
  236. package/grpc/video/pigeon_grpc_pb.js +180 -0
  237. package/grpc/video/pigeon_pb.d.ts +237 -0
  238. package/grpc/video/pigeon_pb.js +1775 -0
  239. package/grpc/video/pigeon_pb_service.d.ts +152 -0
  240. package/grpc/video/pigeon_pb_service.js +292 -0
  241. package/helpers/arrayRemove.d.ts +1 -0
  242. package/helpers/arrayRemove.js +7 -0
  243. package/helpers/arrayUnique.d.ts +1 -0
  244. package/helpers/arrayUnique.js +7 -0
  245. package/helpers/average.d.ts +1 -0
  246. package/helpers/average.js +11 -0
  247. package/helpers/cleanObject.d.ts +1 -0
  248. package/helpers/cleanObject.js +20 -0
  249. package/helpers/enviroment.d.ts +8 -0
  250. package/helpers/enviroment.js +20 -0
  251. package/helpers/flattenCallsignsLookup.d.ts +2 -0
  252. package/helpers/flattenCallsignsLookup.js +10 -0
  253. package/helpers/flattenObject.d.ts +1 -0
  254. package/helpers/flattenObject.js +17 -0
  255. package/helpers/formatServiceUrl.d.ts +1 -0
  256. package/helpers/formatServiceUrl.js +11 -0
  257. package/helpers/generateUUID.d.ts +1 -0
  258. package/helpers/generateUUID.js +8 -0
  259. package/helpers/getSubscriptionsDifference.d.ts +10 -0
  260. package/helpers/getSubscriptionsDifference.js +39 -0
  261. package/helpers/getUniqueConfigKey.d.ts +7 -0
  262. package/helpers/getUniqueConfigKey.js +19 -0
  263. package/helpers/getUniqueId.d.ts +9 -0
  264. package/helpers/getUniqueId.js +15 -0
  265. package/helpers/getUnixTimeMs.d.ts +1 -0
  266. package/helpers/getUnixTimeMs.js +8 -0
  267. package/helpers/index.d.ts +3 -0
  268. package/helpers/index.js +15 -0
  269. package/helpers/nanosecondToMillisecond.d.ts +1 -0
  270. package/helpers/nanosecondToMillisecond.js +7 -0
  271. package/helpers/randomString.d.ts +1 -0
  272. package/helpers/randomString.js +7 -0
  273. package/helpers/standardDeviation.d.ts +1 -0
  274. package/helpers/standardDeviation.js +16 -0
  275. package/helpers/stringToUint8Array.d.ts +1 -0
  276. package/helpers/stringToUint8Array.js +14 -0
  277. package/helpers/uint8ArrayToString.d.ts +1 -0
  278. package/helpers/uint8ArrayToString.js +15 -0
  279. package/index.d.ts +7 -0
  280. package/index.js +19 -0
  281. package/logger/RocosLogger.d.ts +7 -0
  282. package/logger/RocosLogger.js +63 -0
  283. package/models/ExportDataQuery.d.ts +8 -0
  284. package/models/ExportDataQuery.js +17 -0
  285. package/models/ExternalProject.d.ts +6 -0
  286. package/models/ExternalProject.js +6 -0
  287. package/models/IBaseService.d.ts +3 -0
  288. package/models/IBaseService.js +2 -0
  289. package/models/IConfigGroup.d.ts +5 -0
  290. package/models/IConfigGroup.js +2 -0
  291. package/models/IDebugLevel.d.ts +2 -0
  292. package/models/IDebugLevel.js +2 -0
  293. package/models/IExportDataQuery.d.ts +9 -0
  294. package/models/IExportDataQuery.js +2 -0
  295. package/models/IFunctionConfig.d.ts +8 -0
  296. package/models/IFunctionConfig.js +2 -0
  297. package/models/IInvitation.d.ts +6 -0
  298. package/models/IInvitation.js +2 -0
  299. package/models/IInvitationExists.d.ts +4 -0
  300. package/models/IInvitationExists.js +2 -0
  301. package/models/IOperation.d.ts +6 -0
  302. package/models/IOperation.js +2 -0
  303. package/models/IPersonalAccessToken.d.ts +16 -0
  304. package/models/IPersonalAccessToken.js +2 -0
  305. package/models/IProject.d.ts +4 -0
  306. package/models/IProject.js +2 -0
  307. package/models/IProjectApplication.d.ts +6 -0
  308. package/models/IProjectApplication.js +2 -0
  309. package/models/IRobot.d.ts +17 -0
  310. package/models/IRobot.js +2 -0
  311. package/models/IRobotConfig.d.ts +8 -0
  312. package/models/IRobotConfig.js +2 -0
  313. package/models/IRobotPlugin.d.ts +3 -0
  314. package/models/IRobotPlugin.js +2 -0
  315. package/models/IRobotTemplate.d.ts +10 -0
  316. package/models/IRobotTemplate.js +2 -0
  317. package/models/IRocosSDKConfig.d.ts +25 -0
  318. package/models/IRocosSDKConfig.js +2 -0
  319. package/models/ISignupParams.d.ts +8 -0
  320. package/models/ISignupParams.js +2 -0
  321. package/models/ISource.d.ts +8 -0
  322. package/models/ISource.js +2 -0
  323. package/models/IStream.d.ts +9 -0
  324. package/models/IStream.js +2 -0
  325. package/models/IStreamConfig.d.ts +9 -0
  326. package/models/IStreamConfig.js +2 -0
  327. package/models/IStreamOptions.d.ts +7 -0
  328. package/models/IStreamOptions.js +2 -0
  329. package/models/IStreamSource.d.ts +8 -0
  330. package/models/IStreamSource.js +2 -0
  331. package/models/ISubscriberStatus.d.ts +5 -0
  332. package/models/ISubscriberStatus.js +2 -0
  333. package/models/ITelemetryStreamConfig.d.ts +7 -0
  334. package/models/ITelemetryStreamConfig.js +2 -0
  335. package/models/IToken.d.ts +5 -0
  336. package/models/IToken.js +2 -0
  337. package/models/IWidget.d.ts +25 -0
  338. package/models/IWidget.js +2 -0
  339. package/models/IWidgetLineGroup.d.ts +8 -0
  340. package/models/IWidgetLineGroup.js +2 -0
  341. package/models/ResponseLevelEnum.d.ts +6 -0
  342. package/models/ResponseLevelEnum.js +10 -0
  343. package/models/Robot.d.ts +19 -0
  344. package/models/Robot.js +12 -0
  345. package/models/RobotConfig.d.ts +10 -0
  346. package/models/RobotConfig.js +9 -0
  347. package/models/RobotPlugin.d.ts +5 -0
  348. package/models/RobotPlugin.js +9 -0
  349. package/models/RobotTemplate.d.ts +12 -0
  350. package/models/RobotTemplate.js +30 -0
  351. package/models/RocosError.d.ts +30 -0
  352. package/models/RocosError.js +43 -0
  353. package/models/ServiceEnum.d.ts +26 -0
  354. package/models/ServiceEnum.js +30 -0
  355. package/models/Stream.d.ts +10 -0
  356. package/models/Stream.js +15 -0
  357. package/models/StreamOptions.d.ts +9 -0
  358. package/models/StreamOptions.js +37 -0
  359. package/models/StreamSource.d.ts +10 -0
  360. package/models/StreamSource.js +15 -0
  361. package/models/SubscriberStatusEnum.d.ts +6 -0
  362. package/models/SubscriberStatusEnum.js +10 -0
  363. package/models/Token.d.ts +8 -0
  364. package/models/Token.js +15 -0
  365. package/models/Widget.d.ts +27 -0
  366. package/models/Widget.js +16 -0
  367. package/models/WidgetLineGroup.d.ts +10 -0
  368. package/models/WidgetLineGroup.js +9 -0
  369. package/models/asset-storage/AssetModelItem.d.ts +29 -0
  370. package/models/asset-storage/AssetModelItem.js +2 -0
  371. package/models/caller/IRocosCallerMessageChunk.d.ts +9 -0
  372. package/models/caller/IRocosCallerMessageChunk.js +2 -0
  373. package/models/caller/IRocosCallerMessageChunks.d.ts +5 -0
  374. package/models/caller/IRocosCallerMessageChunks.js +2 -0
  375. package/models/caller/IRocosCallerMessageHeartbeat.d.ts +2 -0
  376. package/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
  377. package/models/caller/IRocosCallerMessageResponse.d.ts +9 -0
  378. package/models/caller/IRocosCallerMessageResponse.js +2 -0
  379. package/models/caller/IRocosCallerMessageResponseAck.d.ts +2 -0
  380. package/models/caller/IRocosCallerMessageResponseAck.js +2 -0
  381. package/models/caller/IRocosCallerMessageResponseResult.d.ts +2 -0
  382. package/models/caller/IRocosCallerMessageResponseResult.js +2 -0
  383. package/models/caller/IRocosCallerMessageResponseUid.d.ts +2 -0
  384. package/models/caller/IRocosCallerMessageResponseUid.js +2 -0
  385. package/models/caller/IRocosCallerMessageResponses.d.ts +5 -0
  386. package/models/caller/IRocosCallerMessageResponses.js +2 -0
  387. package/models/caller/RocosCallerResultStatus.d.ts +1 -0
  388. package/models/caller/RocosCallerResultStatus.js +5 -0
  389. package/models/callsigns/CallsignsEnums.d.ts +13 -0
  390. package/models/callsigns/CallsignsEnums.js +20 -0
  391. package/models/callsigns/CallsignsLookup.d.ts +8 -0
  392. package/models/callsigns/CallsignsLookup.js +33 -0
  393. package/models/callsigns/CallsignsQuery.d.ts +9 -0
  394. package/models/callsigns/CallsignsQuery.js +18 -0
  395. package/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
  396. package/models/callsigns/CallsignsQueryPredicate.js +19 -0
  397. package/models/command/IRocosCommandMessageHeartbeat.d.ts +2 -0
  398. package/models/command/IRocosCommandMessageHeartbeat.js +2 -0
  399. package/models/command/IRocosCommandMessageResponse.d.ts +2 -0
  400. package/models/command/IRocosCommandMessageResponse.js +2 -0
  401. package/models/command/RocosCommandResultStatus.d.ts +1 -0
  402. package/models/command/RocosCommandResultStatus.js +5 -0
  403. package/models/file/FileEnums.d.ts +30 -0
  404. package/models/file/FileEnums.js +36 -0
  405. package/models/index.d.ts +101 -0
  406. package/models/index.js +113 -0
  407. package/models/integrations/Overlay.d.ts +49 -0
  408. package/models/integrations/Overlay.js +2 -0
  409. package/models/integrations/Plan.d.ts +324 -0
  410. package/models/integrations/Plan.js +2 -0
  411. package/models/maps/Map.d.ts +12 -0
  412. package/models/maps/Map.js +2 -0
  413. package/models/message/IRocosCallerMessage.d.ts +8 -0
  414. package/models/message/IRocosCallerMessage.js +2 -0
  415. package/models/message/IRocosChangeMessage.d.ts +6 -0
  416. package/models/message/IRocosChangeMessage.js +2 -0
  417. package/models/message/IRocosCommandMessage.d.ts +6 -0
  418. package/models/message/IRocosCommandMessage.js +2 -0
  419. package/models/message/IRocosControlMessage.d.ts +7 -0
  420. package/models/message/IRocosControlMessage.js +2 -0
  421. package/models/message/IRocosOpResultMessage.d.ts +6 -0
  422. package/models/message/IRocosOpResultMessage.js +2 -0
  423. package/models/message/IRocosSearchMessage.d.ts +5 -0
  424. package/models/message/IRocosSearchMessage.js +2 -0
  425. package/models/message/IRocosSearchRowMessage.d.ts +9 -0
  426. package/models/message/IRocosSearchRowMessage.js +2 -0
  427. package/models/message/IRocosSearchStatusMessage.d.ts +4 -0
  428. package/models/message/IRocosSearchStatusMessage.js +2 -0
  429. package/models/message/IRocosTelemetryMessage.d.ts +18 -0
  430. package/models/message/IRocosTelemetryMessage.js +2 -0
  431. package/models/message/IStreamStatusMessage.d.ts +5 -0
  432. package/models/message/IStreamStatusMessage.js +2 -0
  433. package/models/message/RocosCallerMessage.d.ts +12 -0
  434. package/models/message/RocosCallerMessage.js +23 -0
  435. package/models/message/RocosCommandMessage.d.ts +10 -0
  436. package/models/message/RocosCommandMessage.js +16 -0
  437. package/models/message/RocosControlMessage.d.ts +11 -0
  438. package/models/message/RocosControlMessage.js +18 -0
  439. package/models/message/RocosOpResultMessage.d.ts +9 -0
  440. package/models/message/RocosOpResultMessage.js +22 -0
  441. package/models/message/RocosSearchMessage.d.ts +9 -0
  442. package/models/message/RocosSearchMessage.js +28 -0
  443. package/models/message/RocosSearchRowMessage.d.ts +13 -0
  444. package/models/message/RocosSearchRowMessage.js +20 -0
  445. package/models/message/RocosTelemetryMessage.d.ts +24 -0
  446. package/models/message/RocosTelemetryMessage.js +105 -0
  447. package/models/params/ICallerParams.d.ts +15 -0
  448. package/models/params/ICallerParams.js +2 -0
  449. package/models/params/ICommandParams.d.ts +9 -0
  450. package/models/params/ICommandParams.js +2 -0
  451. package/models/params/IControlParams.d.ts +8 -0
  452. package/models/params/IControlParams.js +2 -0
  453. package/models/params/IFileAccessorParams.d.ts +11 -0
  454. package/models/params/IFileAccessorParams.js +2 -0
  455. package/models/params/ISearchParams.d.ts +10 -0
  456. package/models/params/ISearchParams.js +2 -0
  457. package/models/params/ITelemetryParams.d.ts +18 -0
  458. package/models/params/ITelemetryParams.js +2 -0
  459. package/models/params/IWebRTCSignallingParams.d.ts +21 -0
  460. package/models/params/IWebRTCSignallingParams.js +2 -0
  461. package/models/projects/ProjectUser.d.ts +6 -0
  462. package/models/projects/ProjectUser.js +2 -0
  463. package/models/schedule/IScheduleAction.d.ts +13 -0
  464. package/models/schedule/IScheduleAction.js +9 -0
  465. package/models/schedule/IScheduleInfo.d.ts +11 -0
  466. package/models/schedule/IScheduleInfo.js +2 -0
  467. package/models/schedule/IScheduleJob.d.ts +12 -0
  468. package/models/schedule/IScheduleJob.js +2 -0
  469. package/models/search/SearchQueryFilter.d.ts +5 -0
  470. package/models/search/SearchQueryFilter.js +9 -0
  471. package/models/search/SearchStreamQuery.d.ts +15 -0
  472. package/models/search/SearchStreamQuery.js +10 -0
  473. package/models/stream/IBaseStream.d.ts +8 -0
  474. package/models/stream/IBaseStream.js +2 -0
  475. package/models/stream/ICallerStream.d.ts +8 -0
  476. package/models/stream/ICallerStream.js +2 -0
  477. package/models/stream/ICommandStream.d.ts +7 -0
  478. package/models/stream/ICommandStream.js +2 -0
  479. package/models/stream/IControlStream.d.ts +9 -0
  480. package/models/stream/IControlStream.js +2 -0
  481. package/models/stream/IFileAccessorStream.d.ts +10 -0
  482. package/models/stream/IFileAccessorStream.js +2 -0
  483. package/models/stream/ISearchStream.d.ts +11 -0
  484. package/models/stream/ISearchStream.js +2 -0
  485. package/models/stream/ITelemetryStream.d.ts +10 -0
  486. package/models/stream/ITelemetryStream.js +2 -0
  487. package/models/stream/IWebRTCSignallingStream.d.ts +41 -0
  488. package/models/stream/IWebRTCSignallingStream.js +7 -0
  489. package/models/types.d.ts +5 -0
  490. package/models/types.js +2 -0
  491. package/node/RocosSDKNode.d.ts +42 -0
  492. package/node/RocosSDKNode.js +148 -0
  493. package/node/index.d.ts +7 -0
  494. package/node/index.js +19 -0
  495. package/package.json +25 -6
  496. package/services/AssetStorageService.d.ts +92 -0
  497. package/services/AssetStorageService.js +153 -0
  498. package/services/AuthService.d.ts +61 -0
  499. package/services/AuthService.js +154 -0
  500. package/services/BaseServiceAbstract.d.ts +38 -0
  501. package/services/BaseServiceAbstract.js +103 -0
  502. package/services/CallerService.d.ts +22 -0
  503. package/services/CallerService.js +96 -0
  504. package/services/CallerServiceNode.d.ts +6 -0
  505. package/services/CallerServiceNode.js +11 -0
  506. package/services/CommandService.d.ts +21 -0
  507. package/services/CommandService.js +81 -0
  508. package/services/CommandServiceNode.d.ts +6 -0
  509. package/services/CommandServiceNode.js +11 -0
  510. package/services/ConfigGroupService.d.ts +89 -0
  511. package/services/ConfigGroupService.js +157 -0
  512. package/services/ControlService.d.ts +23 -0
  513. package/services/ControlService.js +100 -0
  514. package/services/ControlServiceNode.d.ts +6 -0
  515. package/services/ControlServiceNode.js +11 -0
  516. package/services/DashboardService.d.ts +97 -0
  517. package/services/DashboardService.js +146 -0
  518. package/services/EventService.d.ts +53 -0
  519. package/services/EventService.js +89 -0
  520. package/services/FileAccessorService.d.ts +25 -0
  521. package/services/FileAccessorService.js +85 -0
  522. package/services/FileAccessorServiceNode.d.ts +6 -0
  523. package/services/FileAccessorServiceNode.js +11 -0
  524. package/services/FunctionService.d.ts +68 -0
  525. package/services/FunctionService.js +103 -0
  526. package/services/IntegrationService.d.ts +48 -0
  527. package/services/IntegrationService.js +77 -0
  528. package/services/MapService.d.ts +96 -0
  529. package/services/MapService.js +119 -0
  530. package/services/PlatformTimeService.d.ts +35 -0
  531. package/services/PlatformTimeService.js +160 -0
  532. package/services/ProfileService.d.ts +244 -0
  533. package/services/ProfileService.js +366 -0
  534. package/services/ProjectService.d.ts +110 -0
  535. package/services/ProjectService.js +164 -0
  536. package/services/RobotService.d.ts +282 -0
  537. package/services/RobotService.js +467 -0
  538. package/services/ScheduleService.d.ts +22 -0
  539. package/services/ScheduleService.js +40 -0
  540. package/services/SearchService.d.ts +25 -0
  541. package/services/SearchService.js +93 -0
  542. package/services/SearchServiceNode.d.ts +6 -0
  543. package/services/SearchServiceNode.js +11 -0
  544. package/services/SpotProvisioningService.d.ts +14 -0
  545. package/services/SpotProvisioningService.js +43 -0
  546. package/services/SpotProvisioningServiceNode.d.ts +15 -0
  547. package/services/SpotProvisioningServiceNode.js +43 -0
  548. package/services/StreamService.d.ts +98 -0
  549. package/services/StreamService.js +146 -0
  550. package/services/TelemetryService.d.ts +43 -0
  551. package/services/TelemetryService.js +144 -0
  552. package/services/TelemetryServiceNode.d.ts +6 -0
  553. package/services/TelemetryServiceNode.js +11 -0
  554. package/services/TimeSyncerService.d.ts +13 -0
  555. package/services/TimeSyncerService.js +27 -0
  556. package/services/UserService.d.ts +200 -0
  557. package/services/UserService.js +319 -0
  558. package/services/WebRTCSignallingService.d.ts +22 -0
  559. package/services/WebRTCSignallingService.js +81 -0
  560. package/services/WorkflowService.d.ts +71 -0
  561. package/services/WorkflowService.js +122 -0
  562. package/services/index.d.ts +26 -0
  563. package/services/index.js +38 -0
  564. package/store/RocosStore.d.ts +31 -0
  565. package/store/RocosStore.js +53 -0
  566. package/utils/axisangle.d.ts +18 -0
  567. package/utils/axisangle.js +48 -0
  568. package/utils/eulerangles.d.ts +22 -0
  569. package/utils/eulerangles.js +133 -0
  570. package/utils/helperfunctions.d.ts +5 -0
  571. package/utils/helperfunctions.js +50 -0
  572. package/utils/localtransform.d.ts +17 -0
  573. package/utils/localtransform.js +50 -0
  574. package/utils/localtransformtree.d.ts +17 -0
  575. package/utils/localtransformtree.js +88 -0
  576. package/utils/misc.d.ts +17 -0
  577. package/utils/misc.js +23 -0
  578. package/utils/positionvector.d.ts +13 -0
  579. package/utils/positionvector.js +79 -0
  580. package/utils/quaternion.d.ts +20 -0
  581. package/utils/quaternion.js +62 -0
  582. package/utils/rotationmatrix.d.ts +23 -0
  583. package/utils/rotationmatrix.js +262 -0
  584. package/utils/transformationmatrix.d.ts +12 -0
  585. package/utils/transformationmatrix.js +123 -0
  586. package/utils/vector3.d.ts +11 -0
  587. package/utils/vector3.js +61 -0
@@ -0,0 +1,975 @@
1
+ @angular/common
2
+ MIT
3
+
4
+ @angular/core
5
+ MIT
6
+
7
+ @angular/platform-browser
8
+ MIT
9
+
10
+ @angular/router
11
+ MIT
12
+
13
+ @babel/runtime
14
+ MIT
15
+ MIT License
16
+
17
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
18
+
19
+ Permission is hereby granted, free of charge, to any person obtaining
20
+ a copy of this software and associated documentation files (the
21
+ "Software"), to deal in the Software without restriction, including
22
+ without limitation the rights to use, copy, modify, merge, publish,
23
+ distribute, sublicense, and/or sell copies of the Software, and to
24
+ permit persons to whom the Software is furnished to do so, subject to
25
+ the following conditions:
26
+
27
+ The above copyright notice and this permission notice shall be
28
+ included in all copies or substantial portions of the Software.
29
+
30
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
32
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
33
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
34
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
35
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
36
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37
+
38
+
39
+ @improbable-eng/grpc-web
40
+ Apache-2.0
41
+
42
+ @protobufjs/aspromise
43
+ BSD-3-Clause
44
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
45
+
46
+ Redistribution and use in source and binary forms, with or without
47
+ modification, are permitted provided that the following conditions are
48
+ met:
49
+
50
+ * Redistributions of source code must retain the above copyright
51
+ notice, this list of conditions and the following disclaimer.
52
+ * Redistributions in binary form must reproduce the above copyright
53
+ notice, this list of conditions and the following disclaimer in the
54
+ documentation and/or other materials provided with the distribution.
55
+ * Neither the name of its author, nor the names of its contributors
56
+ may be used to endorse or promote products derived from this software
57
+ without specific prior written permission.
58
+
59
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
60
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
61
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
62
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
63
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
64
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
65
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
66
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
67
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
68
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
69
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
70
+
71
+
72
+ @protobufjs/base64
73
+ BSD-3-Clause
74
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
75
+
76
+ Redistribution and use in source and binary forms, with or without
77
+ modification, are permitted provided that the following conditions are
78
+ met:
79
+
80
+ * Redistributions of source code must retain the above copyright
81
+ notice, this list of conditions and the following disclaimer.
82
+ * Redistributions in binary form must reproduce the above copyright
83
+ notice, this list of conditions and the following disclaimer in the
84
+ documentation and/or other materials provided with the distribution.
85
+ * Neither the name of its author, nor the names of its contributors
86
+ may be used to endorse or promote products derived from this software
87
+ without specific prior written permission.
88
+
89
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
90
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
91
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
92
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
93
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
94
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
95
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
96
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
97
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
98
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
99
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
100
+
101
+
102
+ @protobufjs/eventemitter
103
+ BSD-3-Clause
104
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
105
+
106
+ Redistribution and use in source and binary forms, with or without
107
+ modification, are permitted provided that the following conditions are
108
+ met:
109
+
110
+ * Redistributions of source code must retain the above copyright
111
+ notice, this list of conditions and the following disclaimer.
112
+ * Redistributions in binary form must reproduce the above copyright
113
+ notice, this list of conditions and the following disclaimer in the
114
+ documentation and/or other materials provided with the distribution.
115
+ * Neither the name of its author, nor the names of its contributors
116
+ may be used to endorse or promote products derived from this software
117
+ without specific prior written permission.
118
+
119
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
120
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
121
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
122
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
123
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
124
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
125
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
126
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
127
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
128
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
129
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
130
+
131
+
132
+ @protobufjs/float
133
+ BSD-3-Clause
134
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
135
+
136
+ Redistribution and use in source and binary forms, with or without
137
+ modification, are permitted provided that the following conditions are
138
+ met:
139
+
140
+ * Redistributions of source code must retain the above copyright
141
+ notice, this list of conditions and the following disclaimer.
142
+ * Redistributions in binary form must reproduce the above copyright
143
+ notice, this list of conditions and the following disclaimer in the
144
+ documentation and/or other materials provided with the distribution.
145
+ * Neither the name of its author, nor the names of its contributors
146
+ may be used to endorse or promote products derived from this software
147
+ without specific prior written permission.
148
+
149
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
150
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
151
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
152
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
153
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
154
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
155
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
156
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
157
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
158
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
159
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
160
+
161
+
162
+ @protobufjs/inquire
163
+ BSD-3-Clause
164
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
165
+
166
+ Redistribution and use in source and binary forms, with or without
167
+ modification, are permitted provided that the following conditions are
168
+ met:
169
+
170
+ * Redistributions of source code must retain the above copyright
171
+ notice, this list of conditions and the following disclaimer.
172
+ * Redistributions in binary form must reproduce the above copyright
173
+ notice, this list of conditions and the following disclaimer in the
174
+ documentation and/or other materials provided with the distribution.
175
+ * Neither the name of its author, nor the names of its contributors
176
+ may be used to endorse or promote products derived from this software
177
+ without specific prior written permission.
178
+
179
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
180
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
181
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
182
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
183
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
184
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
185
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
186
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
187
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
188
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
189
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
190
+
191
+
192
+ @protobufjs/pool
193
+ BSD-3-Clause
194
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
195
+
196
+ Redistribution and use in source and binary forms, with or without
197
+ modification, are permitted provided that the following conditions are
198
+ met:
199
+
200
+ * Redistributions of source code must retain the above copyright
201
+ notice, this list of conditions and the following disclaimer.
202
+ * Redistributions in binary form must reproduce the above copyright
203
+ notice, this list of conditions and the following disclaimer in the
204
+ documentation and/or other materials provided with the distribution.
205
+ * Neither the name of its author, nor the names of its contributors
206
+ may be used to endorse or promote products derived from this software
207
+ without specific prior written permission.
208
+
209
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
210
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
211
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
212
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
213
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
214
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
215
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
216
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
217
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
218
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
219
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
220
+
221
+
222
+ @protobufjs/utf8
223
+ BSD-3-Clause
224
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
225
+
226
+ Redistribution and use in source and binary forms, with or without
227
+ modification, are permitted provided that the following conditions are
228
+ met:
229
+
230
+ * Redistributions of source code must retain the above copyright
231
+ notice, this list of conditions and the following disclaimer.
232
+ * Redistributions in binary form must reproduce the above copyright
233
+ notice, this list of conditions and the following disclaimer in the
234
+ documentation and/or other materials provided with the distribution.
235
+ * Neither the name of its author, nor the names of its contributors
236
+ may be used to endorse or promote products derived from this software
237
+ without specific prior written permission.
238
+
239
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
240
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
241
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
242
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
243
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
244
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
245
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
247
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
248
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
249
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
250
+
251
+
252
+ @team-rocos/rocos-js-sdk
253
+ MIT
254
+
255
+ browser-headers
256
+ Apache-2.0
257
+ Apache License
258
+ Version 2.0, January 2004
259
+ http://www.apache.org/licenses/
260
+
261
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
262
+
263
+ 1. Definitions.
264
+
265
+ "License" shall mean the terms and conditions for use, reproduction,
266
+ and distribution as defined by Sections 1 through 9 of this document.
267
+
268
+ "Licensor" shall mean the copyright owner or entity authorized by
269
+ the copyright owner that is granting the License.
270
+
271
+ "Legal Entity" shall mean the union of the acting entity and all
272
+ other entities that control, are controlled by, or are under common
273
+ control with that entity. For the purposes of this definition,
274
+ "control" means (i) the power, direct or indirect, to cause the
275
+ direction or management of such entity, whether by contract or
276
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
277
+ outstanding shares, or (iii) beneficial ownership of such entity.
278
+
279
+ "You" (or "Your") shall mean an individual or Legal Entity
280
+ exercising permissions granted by this License.
281
+
282
+ "Source" form shall mean the preferred form for making modifications,
283
+ including but not limited to software source code, documentation
284
+ source, and configuration files.
285
+
286
+ "Object" form shall mean any form resulting from mechanical
287
+ transformation or translation of a Source form, including but
288
+ not limited to compiled object code, generated documentation,
289
+ and conversions to other media types.
290
+
291
+ "Work" shall mean the work of authorship, whether in Source or
292
+ Object form, made available under the License, as indicated by a
293
+ copyright notice that is included in or attached to the work
294
+ (an example is provided in the Appendix below).
295
+
296
+ "Derivative Works" shall mean any work, whether in Source or Object
297
+ form, that is based on (or derived from) the Work and for which the
298
+ editorial revisions, annotations, elaborations, or other modifications
299
+ represent, as a whole, an original work of authorship. For the purposes
300
+ of this License, Derivative Works shall not include works that remain
301
+ separable from, or merely link (or bind by name) to the interfaces of,
302
+ the Work and Derivative Works thereof.
303
+
304
+ "Contribution" shall mean any work of authorship, including
305
+ the original version of the Work and any modifications or additions
306
+ to that Work or Derivative Works thereof, that is intentionally
307
+ submitted to Licensor for inclusion in the Work by the copyright owner
308
+ or by an individual or Legal Entity authorized to submit on behalf of
309
+ the copyright owner. For the purposes of this definition, "submitted"
310
+ means any form of electronic, verbal, or written communication sent
311
+ to the Licensor or its representatives, including but not limited to
312
+ communication on electronic mailing lists, source code control systems,
313
+ and issue tracking systems that are managed by, or on behalf of, the
314
+ Licensor for the purpose of discussing and improving the Work, but
315
+ excluding communication that is conspicuously marked or otherwise
316
+ designated in writing by the copyright owner as "Not a Contribution."
317
+
318
+ "Contributor" shall mean Licensor and any individual or Legal Entity
319
+ on behalf of whom a Contribution has been received by Licensor and
320
+ subsequently incorporated within the Work.
321
+
322
+ 2. Grant of Copyright License. Subject to the terms and conditions of
323
+ this License, each Contributor hereby grants to You a perpetual,
324
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
325
+ copyright license to reproduce, prepare Derivative Works of,
326
+ publicly display, publicly perform, sublicense, and distribute the
327
+ Work and such Derivative Works in Source or Object form.
328
+
329
+ 3. Grant of Patent License. Subject to the terms and conditions of
330
+ this License, each Contributor hereby grants to You a perpetual,
331
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
332
+ (except as stated in this section) patent license to make, have made,
333
+ use, offer to sell, sell, import, and otherwise transfer the Work,
334
+ where such license applies only to those patent claims licensable
335
+ by such Contributor that are necessarily infringed by their
336
+ Contribution(s) alone or by combination of their Contribution(s)
337
+ with the Work to which such Contribution(s) was submitted. If You
338
+ institute patent litigation against any entity (including a
339
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
340
+ or a Contribution incorporated within the Work constitutes direct
341
+ or contributory patent infringement, then any patent licenses
342
+ granted to You under this License for that Work shall terminate
343
+ as of the date such litigation is filed.
344
+
345
+ 4. Redistribution. You may reproduce and distribute copies of the
346
+ Work or Derivative Works thereof in any medium, with or without
347
+ modifications, and in Source or Object form, provided that You
348
+ meet the following conditions:
349
+
350
+ (a) You must give any other recipients of the Work or
351
+ Derivative Works a copy of this License; and
352
+
353
+ (b) You must cause any modified files to carry prominent notices
354
+ stating that You changed the files; and
355
+
356
+ (c) You must retain, in the Source form of any Derivative Works
357
+ that You distribute, all copyright, patent, trademark, and
358
+ attribution notices from the Source form of the Work,
359
+ excluding those notices that do not pertain to any part of
360
+ the Derivative Works; and
361
+
362
+ (d) If the Work includes a "NOTICE" text file as part of its
363
+ distribution, then any Derivative Works that You distribute must
364
+ include a readable copy of the attribution notices contained
365
+ within such NOTICE file, excluding those notices that do not
366
+ pertain to any part of the Derivative Works, in at least one
367
+ of the following places: within a NOTICE text file distributed
368
+ as part of the Derivative Works; within the Source form or
369
+ documentation, if provided along with the Derivative Works; or,
370
+ within a display generated by the Derivative Works, if and
371
+ wherever such third-party notices normally appear. The contents
372
+ of the NOTICE file are for informational purposes only and
373
+ do not modify the License. You may add Your own attribution
374
+ notices within Derivative Works that You distribute, alongside
375
+ or as an addendum to the NOTICE text from the Work, provided
376
+ that such additional attribution notices cannot be construed
377
+ as modifying the License.
378
+
379
+ You may add Your own copyright statement to Your modifications and
380
+ may provide additional or different license terms and conditions
381
+ for use, reproduction, or distribution of Your modifications, or
382
+ for any such Derivative Works as a whole, provided Your use,
383
+ reproduction, and distribution of the Work otherwise complies with
384
+ the conditions stated in this License.
385
+
386
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
387
+ any Contribution intentionally submitted for inclusion in the Work
388
+ by You to the Licensor shall be under the terms and conditions of
389
+ this License, without any additional terms or conditions.
390
+ Notwithstanding the above, nothing herein shall supersede or modify
391
+ the terms of any separate license agreement you may have executed
392
+ with Licensor regarding such Contributions.
393
+
394
+ 6. Trademarks. This License does not grant permission to use the trade
395
+ names, trademarks, service marks, or product names of the Licensor,
396
+ except as required for reasonable and customary use in describing the
397
+ origin of the Work and reproducing the content of the NOTICE file.
398
+
399
+ 7. Disclaimer of Warranty. Unless required by applicable law or
400
+ agreed to in writing, Licensor provides the Work (and each
401
+ Contributor provides its Contributions) on an "AS IS" BASIS,
402
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
403
+ implied, including, without limitation, any warranties or conditions
404
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
405
+ PARTICULAR PURPOSE. You are solely responsible for determining the
406
+ appropriateness of using or redistributing the Work and assume any
407
+ risks associated with Your exercise of permissions under this License.
408
+
409
+ 8. Limitation of Liability. In no event and under no legal theory,
410
+ whether in tort (including negligence), contract, or otherwise,
411
+ unless required by applicable law (such as deliberate and grossly
412
+ negligent acts) or agreed to in writing, shall any Contributor be
413
+ liable to You for damages, including any direct, indirect, special,
414
+ incidental, or consequential damages of any character arising as a
415
+ result of this License or out of the use or inability to use the
416
+ Work (including but not limited to damages for loss of goodwill,
417
+ work stoppage, computer failure or malfunction, or any and all
418
+ other commercial damages or losses), even if such Contributor
419
+ has been advised of the possibility of such damages.
420
+
421
+ 9. Accepting Warranty or Additional Liability. While redistributing
422
+ the Work or Derivative Works thereof, You may choose to offer,
423
+ and charge a fee for, acceptance of support, warranty, indemnity,
424
+ or other liability obligations and/or rights consistent with this
425
+ License. However, in accepting such obligations, You may act only
426
+ on Your own behalf and on Your sole responsibility, not on behalf
427
+ of any other Contributor, and only if You agree to indemnify,
428
+ defend, and hold each Contributor harmless for any liability
429
+ incurred by, or claims asserted against, such Contributor by reason
430
+ of your accepting any such warranty or additional liability.
431
+
432
+ loglevel
433
+ MIT
434
+ Copyright (c) 2013 Tim Perry
435
+
436
+ Permission is hereby granted, free of charge, to any person
437
+ obtaining a copy of this software and associated documentation
438
+ files (the "Software"), to deal in the Software without
439
+ restriction, including without limitation the rights to use,
440
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
441
+ copies of the Software, and to permit persons to whom the
442
+ Software is furnished to do so, subject to the following
443
+ conditions:
444
+
445
+ The above copyright notice and this permission notice shall be
446
+ included in all copies or substantial portions of the Software.
447
+
448
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
449
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
450
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
451
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
452
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
453
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
454
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
455
+ OTHER DEALINGS IN THE SOFTWARE.
456
+
457
+
458
+ loglevel-plugin-prefix
459
+ MIT
460
+ MIT License
461
+
462
+ Copyright (c) 2017 Evgeniy Pavlov
463
+
464
+ Permission is hereby granted, free of charge, to any person obtaining a copy
465
+ of this software and associated documentation files (the "Software"), to deal
466
+ in the Software without restriction, including without limitation the rights
467
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
468
+ copies of the Software, and to permit persons to whom the Software is
469
+ furnished to do so, subject to the following conditions:
470
+
471
+ The above copyright notice and this permission notice shall be included in all
472
+ copies or substantial portions of the Software.
473
+
474
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
475
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
476
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
477
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
478
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
479
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
480
+ SOFTWARE.
481
+
482
+
483
+ long
484
+ Apache-2.0
485
+
486
+ Apache License
487
+ Version 2.0, January 2004
488
+ http://www.apache.org/licenses/
489
+
490
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
491
+
492
+ 1. Definitions.
493
+
494
+ "License" shall mean the terms and conditions for use, reproduction,
495
+ and distribution as defined by Sections 1 through 9 of this document.
496
+
497
+ "Licensor" shall mean the copyright owner or entity authorized by
498
+ the copyright owner that is granting the License.
499
+
500
+ "Legal Entity" shall mean the union of the acting entity and all
501
+ other entities that control, are controlled by, or are under common
502
+ control with that entity. For the purposes of this definition,
503
+ "control" means (i) the power, direct or indirect, to cause the
504
+ direction or management of such entity, whether by contract or
505
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
506
+ outstanding shares, or (iii) beneficial ownership of such entity.
507
+
508
+ "You" (or "Your") shall mean an individual or Legal Entity
509
+ exercising permissions granted by this License.
510
+
511
+ "Source" form shall mean the preferred form for making modifications,
512
+ including but not limited to software source code, documentation
513
+ source, and configuration files.
514
+
515
+ "Object" form shall mean any form resulting from mechanical
516
+ transformation or translation of a Source form, including but
517
+ not limited to compiled object code, generated documentation,
518
+ and conversions to other media types.
519
+
520
+ "Work" shall mean the work of authorship, whether in Source or
521
+ Object form, made available under the License, as indicated by a
522
+ copyright notice that is included in or attached to the work
523
+ (an example is provided in the Appendix below).
524
+
525
+ "Derivative Works" shall mean any work, whether in Source or Object
526
+ form, that is based on (or derived from) the Work and for which the
527
+ editorial revisions, annotations, elaborations, or other modifications
528
+ represent, as a whole, an original work of authorship. For the purposes
529
+ of this License, Derivative Works shall not include works that remain
530
+ separable from, or merely link (or bind by name) to the interfaces of,
531
+ the Work and Derivative Works thereof.
532
+
533
+ "Contribution" shall mean any work of authorship, including
534
+ the original version of the Work and any modifications or additions
535
+ to that Work or Derivative Works thereof, that is intentionally
536
+ submitted to Licensor for inclusion in the Work by the copyright owner
537
+ or by an individual or Legal Entity authorized to submit on behalf of
538
+ the copyright owner. For the purposes of this definition, "submitted"
539
+ means any form of electronic, verbal, or written communication sent
540
+ to the Licensor or its representatives, including but not limited to
541
+ communication on electronic mailing lists, source code control systems,
542
+ and issue tracking systems that are managed by, or on behalf of, the
543
+ Licensor for the purpose of discussing and improving the Work, but
544
+ excluding communication that is conspicuously marked or otherwise
545
+ designated in writing by the copyright owner as "Not a Contribution."
546
+
547
+ "Contributor" shall mean Licensor and any individual or Legal Entity
548
+ on behalf of whom a Contribution has been received by Licensor and
549
+ subsequently incorporated within the Work.
550
+
551
+ 2. Grant of Copyright License. Subject to the terms and conditions of
552
+ this License, each Contributor hereby grants to You a perpetual,
553
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
554
+ copyright license to reproduce, prepare Derivative Works of,
555
+ publicly display, publicly perform, sublicense, and distribute the
556
+ Work and such Derivative Works in Source or Object form.
557
+
558
+ 3. Grant of Patent License. Subject to the terms and conditions of
559
+ this License, each Contributor hereby grants to You a perpetual,
560
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
561
+ (except as stated in this section) patent license to make, have made,
562
+ use, offer to sell, sell, import, and otherwise transfer the Work,
563
+ where such license applies only to those patent claims licensable
564
+ by such Contributor that are necessarily infringed by their
565
+ Contribution(s) alone or by combination of their Contribution(s)
566
+ with the Work to which such Contribution(s) was submitted. If You
567
+ institute patent litigation against any entity (including a
568
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
569
+ or a Contribution incorporated within the Work constitutes direct
570
+ or contributory patent infringement, then any patent licenses
571
+ granted to You under this License for that Work shall terminate
572
+ as of the date such litigation is filed.
573
+
574
+ 4. Redistribution. You may reproduce and distribute copies of the
575
+ Work or Derivative Works thereof in any medium, with or without
576
+ modifications, and in Source or Object form, provided that You
577
+ meet the following conditions:
578
+
579
+ (a) You must give any other recipients of the Work or
580
+ Derivative Works a copy of this License; and
581
+
582
+ (b) You must cause any modified files to carry prominent notices
583
+ stating that You changed the files; and
584
+
585
+ (c) You must retain, in the Source form of any Derivative Works
586
+ that You distribute, all copyright, patent, trademark, and
587
+ attribution notices from the Source form of the Work,
588
+ excluding those notices that do not pertain to any part of
589
+ the Derivative Works; and
590
+
591
+ (d) If the Work includes a "NOTICE" text file as part of its
592
+ distribution, then any Derivative Works that You distribute must
593
+ include a readable copy of the attribution notices contained
594
+ within such NOTICE file, excluding those notices that do not
595
+ pertain to any part of the Derivative Works, in at least one
596
+ of the following places: within a NOTICE text file distributed
597
+ as part of the Derivative Works; within the Source form or
598
+ documentation, if provided along with the Derivative Works; or,
599
+ within a display generated by the Derivative Works, if and
600
+ wherever such third-party notices normally appear. The contents
601
+ of the NOTICE file are for informational purposes only and
602
+ do not modify the License. You may add Your own attribution
603
+ notices within Derivative Works that You distribute, alongside
604
+ or as an addendum to the NOTICE text from the Work, provided
605
+ that such additional attribution notices cannot be construed
606
+ as modifying the License.
607
+
608
+ You may add Your own copyright statement to Your modifications and
609
+ may provide additional or different license terms and conditions
610
+ for use, reproduction, or distribution of Your modifications, or
611
+ for any such Derivative Works as a whole, provided Your use,
612
+ reproduction, and distribution of the Work otherwise complies with
613
+ the conditions stated in this License.
614
+
615
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
616
+ any Contribution intentionally submitted for inclusion in the Work
617
+ by You to the Licensor shall be under the terms and conditions of
618
+ this License, without any additional terms or conditions.
619
+ Notwithstanding the above, nothing herein shall supersede or modify
620
+ the terms of any separate license agreement you may have executed
621
+ with Licensor regarding such Contributions.
622
+
623
+ 6. Trademarks. This License does not grant permission to use the trade
624
+ names, trademarks, service marks, or product names of the Licensor,
625
+ except as required for reasonable and customary use in describing the
626
+ origin of the Work and reproducing the content of the NOTICE file.
627
+
628
+ 7. Disclaimer of Warranty. Unless required by applicable law or
629
+ agreed to in writing, Licensor provides the Work (and each
630
+ Contributor provides its Contributions) on an "AS IS" BASIS,
631
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
632
+ implied, including, without limitation, any warranties or conditions
633
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
634
+ PARTICULAR PURPOSE. You are solely responsible for determining the
635
+ appropriateness of using or redistributing the Work and assume any
636
+ risks associated with Your exercise of permissions under this License.
637
+
638
+ 8. Limitation of Liability. In no event and under no legal theory,
639
+ whether in tort (including negligence), contract, or otherwise,
640
+ unless required by applicable law (such as deliberate and grossly
641
+ negligent acts) or agreed to in writing, shall any Contributor be
642
+ liable to You for damages, including any direct, indirect, special,
643
+ incidental, or consequential damages of any character arising as a
644
+ result of this License or out of the use or inability to use the
645
+ Work (including but not limited to damages for loss of goodwill,
646
+ work stoppage, computer failure or malfunction, or any and all
647
+ other commercial damages or losses), even if such Contributor
648
+ has been advised of the possibility of such damages.
649
+
650
+ 9. Accepting Warranty or Additional Liability. While redistributing
651
+ the Work or Derivative Works thereof, You may choose to offer,
652
+ and charge a fee for, acceptance of support, warranty, indemnity,
653
+ or other liability obligations and/or rights consistent with this
654
+ License. However, in accepting such obligations, You may act only
655
+ on Your own behalf and on Your sole responsibility, not on behalf
656
+ of any other Contributor, and only if You agree to indemnify,
657
+ defend, and hold each Contributor harmless for any liability
658
+ incurred by, or claims asserted against, such Contributor by reason
659
+ of your accepting any such warranty or additional liability.
660
+
661
+ END OF TERMS AND CONDITIONS
662
+
663
+ APPENDIX: How to apply the Apache License to your work.
664
+
665
+ To apply the Apache License to your work, attach the following
666
+ boilerplate notice, with the fields enclosed by brackets "[]"
667
+ replaced with your own identifying information. (Don't include
668
+ the brackets!) The text should be enclosed in the appropriate
669
+ comment syntax for the file format. We also recommend that a
670
+ file or class name and description of purpose be included on the
671
+ same "printed page" as the copyright notice for easier
672
+ identification within third-party archives.
673
+
674
+ Copyright [yyyy] [name of copyright owner]
675
+
676
+ Licensed under the Apache License, Version 2.0 (the "License");
677
+ you may not use this file except in compliance with the License.
678
+ You may obtain a copy of the License at
679
+
680
+ http://www.apache.org/licenses/LICENSE-2.0
681
+
682
+ Unless required by applicable law or agreed to in writing, software
683
+ distributed under the License is distributed on an "AS IS" BASIS,
684
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
685
+ See the License for the specific language governing permissions and
686
+ limitations under the License.
687
+
688
+
689
+ protobufjs
690
+ BSD-3-Clause
691
+ This license applies to all parts of protobuf.js except those files
692
+ either explicitly including or referencing a different license or
693
+ located in a directory containing a different LICENSE file.
694
+
695
+ ---
696
+
697
+ Copyright (c) 2016, Daniel Wirtz All rights reserved.
698
+
699
+ Redistribution and use in source and binary forms, with or without
700
+ modification, are permitted provided that the following conditions are
701
+ met:
702
+
703
+ * Redistributions of source code must retain the above copyright
704
+ notice, this list of conditions and the following disclaimer.
705
+ * Redistributions in binary form must reproduce the above copyright
706
+ notice, this list of conditions and the following disclaimer in the
707
+ documentation and/or other materials provided with the distribution.
708
+ * Neither the name of its author, nor the names of its contributors
709
+ may be used to endorse or promote products derived from this software
710
+ without specific prior written permission.
711
+
712
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
713
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
714
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
715
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
716
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
717
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
718
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
719
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
720
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
721
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
722
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
723
+
724
+ ---
725
+
726
+ Code generated by the command line utilities is owned by the owner
727
+ of the input file used when generating it. This code is not
728
+ standalone and requires a support library to be linked with it. This
729
+ support library is itself covered by the above license.
730
+
731
+
732
+ rxjs
733
+ Apache-2.0
734
+ Apache License
735
+ Version 2.0, January 2004
736
+ http://www.apache.org/licenses/
737
+
738
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
739
+
740
+ 1. Definitions.
741
+
742
+ "License" shall mean the terms and conditions for use, reproduction,
743
+ and distribution as defined by Sections 1 through 9 of this document.
744
+
745
+ "Licensor" shall mean the copyright owner or entity authorized by
746
+ the copyright owner that is granting the License.
747
+
748
+ "Legal Entity" shall mean the union of the acting entity and all
749
+ other entities that control, are controlled by, or are under common
750
+ control with that entity. For the purposes of this definition,
751
+ "control" means (i) the power, direct or indirect, to cause the
752
+ direction or management of such entity, whether by contract or
753
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
754
+ outstanding shares, or (iii) beneficial ownership of such entity.
755
+
756
+ "You" (or "Your") shall mean an individual or Legal Entity
757
+ exercising permissions granted by this License.
758
+
759
+ "Source" form shall mean the preferred form for making modifications,
760
+ including but not limited to software source code, documentation
761
+ source, and configuration files.
762
+
763
+ "Object" form shall mean any form resulting from mechanical
764
+ transformation or translation of a Source form, including but
765
+ not limited to compiled object code, generated documentation,
766
+ and conversions to other media types.
767
+
768
+ "Work" shall mean the work of authorship, whether in Source or
769
+ Object form, made available under the License, as indicated by a
770
+ copyright notice that is included in or attached to the work
771
+ (an example is provided in the Appendix below).
772
+
773
+ "Derivative Works" shall mean any work, whether in Source or Object
774
+ form, that is based on (or derived from) the Work and for which the
775
+ editorial revisions, annotations, elaborations, or other modifications
776
+ represent, as a whole, an original work of authorship. For the purposes
777
+ of this License, Derivative Works shall not include works that remain
778
+ separable from, or merely link (or bind by name) to the interfaces of,
779
+ the Work and Derivative Works thereof.
780
+
781
+ "Contribution" shall mean any work of authorship, including
782
+ the original version of the Work and any modifications or additions
783
+ to that Work or Derivative Works thereof, that is intentionally
784
+ submitted to Licensor for inclusion in the Work by the copyright owner
785
+ or by an individual or Legal Entity authorized to submit on behalf of
786
+ the copyright owner. For the purposes of this definition, "submitted"
787
+ means any form of electronic, verbal, or written communication sent
788
+ to the Licensor or its representatives, including but not limited to
789
+ communication on electronic mailing lists, source code control systems,
790
+ and issue tracking systems that are managed by, or on behalf of, the
791
+ Licensor for the purpose of discussing and improving the Work, but
792
+ excluding communication that is conspicuously marked or otherwise
793
+ designated in writing by the copyright owner as "Not a Contribution."
794
+
795
+ "Contributor" shall mean Licensor and any individual or Legal Entity
796
+ on behalf of whom a Contribution has been received by Licensor and
797
+ subsequently incorporated within the Work.
798
+
799
+ 2. Grant of Copyright License. Subject to the terms and conditions of
800
+ this License, each Contributor hereby grants to You a perpetual,
801
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
802
+ copyright license to reproduce, prepare Derivative Works of,
803
+ publicly display, publicly perform, sublicense, and distribute the
804
+ Work and such Derivative Works in Source or Object form.
805
+
806
+ 3. Grant of Patent License. Subject to the terms and conditions of
807
+ this License, each Contributor hereby grants to You a perpetual,
808
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
809
+ (except as stated in this section) patent license to make, have made,
810
+ use, offer to sell, sell, import, and otherwise transfer the Work,
811
+ where such license applies only to those patent claims licensable
812
+ by such Contributor that are necessarily infringed by their
813
+ Contribution(s) alone or by combination of their Contribution(s)
814
+ with the Work to which such Contribution(s) was submitted. If You
815
+ institute patent litigation against any entity (including a
816
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
817
+ or a Contribution incorporated within the Work constitutes direct
818
+ or contributory patent infringement, then any patent licenses
819
+ granted to You under this License for that Work shall terminate
820
+ as of the date such litigation is filed.
821
+
822
+ 4. Redistribution. You may reproduce and distribute copies of the
823
+ Work or Derivative Works thereof in any medium, with or without
824
+ modifications, and in Source or Object form, provided that You
825
+ meet the following conditions:
826
+
827
+ (a) You must give any other recipients of the Work or
828
+ Derivative Works a copy of this License; and
829
+
830
+ (b) You must cause any modified files to carry prominent notices
831
+ stating that You changed the files; and
832
+
833
+ (c) You must retain, in the Source form of any Derivative Works
834
+ that You distribute, all copyright, patent, trademark, and
835
+ attribution notices from the Source form of the Work,
836
+ excluding those notices that do not pertain to any part of
837
+ the Derivative Works; and
838
+
839
+ (d) If the Work includes a "NOTICE" text file as part of its
840
+ distribution, then any Derivative Works that You distribute must
841
+ include a readable copy of the attribution notices contained
842
+ within such NOTICE file, excluding those notices that do not
843
+ pertain to any part of the Derivative Works, in at least one
844
+ of the following places: within a NOTICE text file distributed
845
+ as part of the Derivative Works; within the Source form or
846
+ documentation, if provided along with the Derivative Works; or,
847
+ within a display generated by the Derivative Works, if and
848
+ wherever such third-party notices normally appear. The contents
849
+ of the NOTICE file are for informational purposes only and
850
+ do not modify the License. You may add Your own attribution
851
+ notices within Derivative Works that You distribute, alongside
852
+ or as an addendum to the NOTICE text from the Work, provided
853
+ that such additional attribution notices cannot be construed
854
+ as modifying the License.
855
+
856
+ You may add Your own copyright statement to Your modifications and
857
+ may provide additional or different license terms and conditions
858
+ for use, reproduction, or distribution of Your modifications, or
859
+ for any such Derivative Works as a whole, provided Your use,
860
+ reproduction, and distribution of the Work otherwise complies with
861
+ the conditions stated in this License.
862
+
863
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
864
+ any Contribution intentionally submitted for inclusion in the Work
865
+ by You to the Licensor shall be under the terms and conditions of
866
+ this License, without any additional terms or conditions.
867
+ Notwithstanding the above, nothing herein shall supersede or modify
868
+ the terms of any separate license agreement you may have executed
869
+ with Licensor regarding such Contributions.
870
+
871
+ 6. Trademarks. This License does not grant permission to use the trade
872
+ names, trademarks, service marks, or product names of the Licensor,
873
+ except as required for reasonable and customary use in describing the
874
+ origin of the Work and reproducing the content of the NOTICE file.
875
+
876
+ 7. Disclaimer of Warranty. Unless required by applicable law or
877
+ agreed to in writing, Licensor provides the Work (and each
878
+ Contributor provides its Contributions) on an "AS IS" BASIS,
879
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
880
+ implied, including, without limitation, any warranties or conditions
881
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
882
+ PARTICULAR PURPOSE. You are solely responsible for determining the
883
+ appropriateness of using or redistributing the Work and assume any
884
+ risks associated with Your exercise of permissions under this License.
885
+
886
+ 8. Limitation of Liability. In no event and under no legal theory,
887
+ whether in tort (including negligence), contract, or otherwise,
888
+ unless required by applicable law (such as deliberate and grossly
889
+ negligent acts) or agreed to in writing, shall any Contributor be
890
+ liable to You for damages, including any direct, indirect, special,
891
+ incidental, or consequential damages of any character arising as a
892
+ result of this License or out of the use or inability to use the
893
+ Work (including but not limited to damages for loss of goodwill,
894
+ work stoppage, computer failure or malfunction, or any and all
895
+ other commercial damages or losses), even if such Contributor
896
+ has been advised of the possibility of such damages.
897
+
898
+ 9. Accepting Warranty or Additional Liability. While redistributing
899
+ the Work or Derivative Works thereof, You may choose to offer,
900
+ and charge a fee for, acceptance of support, warranty, indemnity,
901
+ or other liability obligations and/or rights consistent with this
902
+ License. However, in accepting such obligations, You may act only
903
+ on Your own behalf and on Your sole responsibility, not on behalf
904
+ of any other Contributor, and only if You agree to indemnify,
905
+ defend, and hold each Contributor harmless for any liability
906
+ incurred by, or claims asserted against, such Contributor by reason
907
+ of your accepting any such warranty or additional liability.
908
+
909
+ END OF TERMS AND CONDITIONS
910
+
911
+ APPENDIX: How to apply the Apache License to your work.
912
+
913
+ To apply the Apache License to your work, attach the following
914
+ boilerplate notice, with the fields enclosed by brackets "[]"
915
+ replaced with your own identifying information. (Don't include
916
+ the brackets!) The text should be enclosed in the appropriate
917
+ comment syntax for the file format. We also recommend that a
918
+ file or class name and description of purpose be included on the
919
+ same "printed page" as the copyright notice for easier
920
+ identification within third-party archives.
921
+
922
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
923
+
924
+ Licensed under the Apache License, Version 2.0 (the "License");
925
+ you may not use this file except in compliance with the License.
926
+ You may obtain a copy of the License at
927
+
928
+ http://www.apache.org/licenses/LICENSE-2.0
929
+
930
+ Unless required by applicable law or agreed to in writing, software
931
+ distributed under the License is distributed on an "AS IS" BASIS,
932
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
933
+ See the License for the specific language governing permissions and
934
+ limitations under the License.
935
+
936
+
937
+
938
+ tslib
939
+ 0BSD
940
+ Copyright (c) Microsoft Corporation.
941
+
942
+ Permission to use, copy, modify, and/or distribute this software for any
943
+ purpose with or without fee is hereby granted.
944
+
945
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
946
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
947
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
948
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
949
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
950
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
951
+ PERFORMANCE OF THIS SOFTWARE.
952
+
953
+ zone.js
954
+ MIT
955
+ The MIT License
956
+
957
+ Copyright (c) 2010-2022 Google LLC. https://angular.io/license
958
+
959
+ Permission is hereby granted, free of charge, to any person obtaining a copy
960
+ of this software and associated documentation files (the "Software"), to deal
961
+ in the Software without restriction, including without limitation the rights
962
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
963
+ copies of the Software, and to permit persons to whom the Software is
964
+ furnished to do so, subject to the following conditions:
965
+
966
+ The above copyright notice and this permission notice shall be included in
967
+ all copies or substantial portions of the Software.
968
+
969
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
970
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
971
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
972
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
973
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
974
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
975
+ THE SOFTWARE.