@dronedeploy/rocos-js-sdk 3.0.1-alpha.2 → 3.0.1-alpha.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1115) hide show
  1. package/cjs/IRocosSDK.d.ts +34 -0
  2. package/cjs/IRocosSDK.js +6 -0
  3. package/cjs/RocosSDK.d.ts +157 -0
  4. package/cjs/RocosSDK.js +340 -0
  5. package/cjs/api/StreamRegister.js +73 -0
  6. package/cjs/api/atoms/StreamHeartbeat.js +115 -0
  7. package/cjs/api/streams/caller/CallerStream.js +85 -0
  8. package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
  9. package/cjs/api/streams/caller/CallerStreamNode.js +143 -0
  10. package/cjs/api/streams/command/CommandStream.js +74 -0
  11. package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
  12. package/cjs/api/streams/command/CommandStreamNode.js +97 -0
  13. package/cjs/api/streams/control/ControlStream.js +83 -0
  14. package/cjs/api/streams/control/ControlStreamAbstract.d.ts +25 -0
  15. package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
  16. package/cjs/api/streams/control/ControlStreamNode.js +101 -0
  17. package/cjs/api/streams/fileAccessor/FileAccessorStream.js +67 -0
  18. package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
  19. package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +95 -0
  20. package/cjs/api/streams/search/SearchStream.js +104 -0
  21. package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
  22. package/cjs/api/streams/search/SearchStreamNode.js +146 -0
  23. package/cjs/api/streams/telemetry/TelemetryStream.js +105 -0
  24. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
  25. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
  26. package/cjs/api/streams/telemetry/TelemetryStreamNode.js +203 -0
  27. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +92 -0
  28. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
  29. package/cjs/constants/api.d.ts +136 -0
  30. package/cjs/constants/api.js +141 -0
  31. package/cjs/constants/auth.js +5 -0
  32. package/cjs/constants/grpc.js +8 -0
  33. package/cjs/constants/identifier.js +9 -0
  34. package/cjs/constants/timezones.js +430 -0
  35. package/cjs/grpc/conker_pb.client.js +59 -0
  36. package/cjs/grpc/conker_pb.grpc-client.js +85 -0
  37. package/cjs/grpc/conker_pb.js +107 -0
  38. package/cjs/grpc/filagree_pb.client.js +52 -0
  39. package/cjs/grpc/filagree_pb.grpc-client.js +78 -0
  40. package/cjs/grpc/filagree_pb.js +332 -0
  41. package/cjs/grpc/google/protobuf/descriptor_pb.js +2381 -0
  42. package/cjs/grpc/google/protobuf/empty_pb.js +50 -0
  43. package/cjs/grpc/pigeon_pb.client.js +77 -0
  44. package/cjs/grpc/pigeon_pb.grpc-client.js +96 -0
  45. package/cjs/grpc/pigeon_pb.js +147 -0
  46. package/cjs/grpc/rambo.uri.v1_pb.js +51 -0
  47. package/cjs/grpc/rambo.v1_pb.client.js +53 -0
  48. package/cjs/grpc/rambo.v1_pb.grpc-client.js +72 -0
  49. package/cjs/grpc/rambo.v1_pb.js +275 -0
  50. package/cjs/grpc/serviette.uri.v1_pb.js +65 -0
  51. package/cjs/grpc/serviette.v1_pb.client.js +183 -0
  52. package/cjs/grpc/serviette.v1_pb.grpc-client.js +194 -0
  53. package/cjs/grpc/serviette.v1_pb.js +556 -0
  54. package/cjs/grpc/slowlane_pb.client.js +45 -0
  55. package/cjs/grpc/slowlane_pb.grpc-client.js +71 -0
  56. package/cjs/grpc/slowlane_pb.js +188 -0
  57. package/cjs/grpc/teletubby_pb.client.js +109 -0
  58. package/cjs/grpc/teletubby_pb.grpc-client.js +128 -0
  59. package/cjs/grpc/teletubby_pb.js +1267 -0
  60. package/cjs/helpers/arrayRemove.js +7 -0
  61. package/cjs/helpers/arrayUnique.js +7 -0
  62. package/cjs/helpers/average.js +10 -0
  63. package/cjs/helpers/callerMessageHelpers.d.ts +14 -0
  64. package/cjs/helpers/callerMessageHelpers.js +91 -0
  65. package/cjs/helpers/cleanObject.js +22 -0
  66. package/cjs/helpers/enviroment.js +17 -0
  67. package/cjs/helpers/flattenCallsignsLookup.js +10 -0
  68. package/cjs/helpers/flattenObject.js +17 -0
  69. package/cjs/helpers/flattenOneOf.js +34 -0
  70. package/cjs/helpers/formatServiceUrl.js +11 -0
  71. package/cjs/helpers/generateUUID.js +8 -0
  72. package/cjs/helpers/getSha256Hex.d.ts +1 -0
  73. package/cjs/helpers/getSha256Hex.js +9 -0
  74. package/cjs/helpers/getSha256HexNode.d.ts +1 -0
  75. package/cjs/helpers/getSha256HexNode.js +13 -0
  76. package/cjs/helpers/getSubscriptionsDifference.js +39 -0
  77. package/cjs/helpers/getURLSearchParams.js +13 -0
  78. package/cjs/helpers/getUniqueConfigKey.d.ts +11 -0
  79. package/cjs/helpers/getUniqueConfigKey.js +23 -0
  80. package/cjs/helpers/getUniqueId.js +15 -0
  81. package/cjs/helpers/getUnixTimeMs.js +8 -0
  82. package/cjs/helpers/index.js +21 -0
  83. package/cjs/helpers/nanosecondToMillisecond.js +16 -0
  84. package/cjs/helpers/randomString.js +7 -0
  85. package/cjs/helpers/splitRobotTopic.d.ts +9 -0
  86. package/cjs/helpers/splitRobotTopic.js +16 -0
  87. package/cjs/helpers/standardDeviation.js +16 -0
  88. package/cjs/helpers/stringToUint8Array.js +14 -0
  89. package/cjs/helpers/uint8ArrayToString.js +14 -0
  90. package/cjs/helpers/websandbox/connection.d.ts +68 -0
  91. package/cjs/helpers/websandbox/connection.js +137 -0
  92. package/cjs/helpers/websandbox/frame/frame.js +30 -0
  93. package/cjs/helpers/websandbox/frame/frame.source.js +10 -0
  94. package/cjs/helpers/websandbox/frame/index.js +7 -0
  95. package/cjs/helpers/websandbox/frame/worker/index.js +7 -0
  96. package/cjs/helpers/websandbox/frame/worker/manager.d.ts +15 -0
  97. package/cjs/helpers/websandbox/frame/worker/manager.js +88 -0
  98. package/cjs/helpers/websandbox/frame/worker/types.js +2 -0
  99. package/cjs/helpers/websandbox/frame/worker/worker.js +75 -0
  100. package/cjs/helpers/websandbox/frame/worker/worker.source.js +6 -0
  101. package/cjs/helpers/websandbox/index.js +8 -0
  102. package/cjs/helpers/websandbox/sandbox.d.ts +57 -0
  103. package/cjs/helpers/websandbox/sandbox.js +182 -0
  104. package/cjs/helpers/websandbox/types.js +2 -0
  105. package/cjs/index.js +23 -0
  106. package/cjs/logger/RocosLogger.js +67 -0
  107. package/cjs/models/ExportDataQuery.js +17 -0
  108. package/cjs/models/ExternalProject.js +6 -0
  109. package/cjs/models/HttpError.d.ts +5 -0
  110. package/cjs/models/HttpError.js +12 -0
  111. package/cjs/models/IBaseService.js +2 -0
  112. package/cjs/models/IConfigGroup.js +2 -0
  113. package/cjs/models/IDebugLevel.js +2 -0
  114. package/cjs/models/IExportDataQuery.js +2 -0
  115. package/cjs/models/IFunctionConfig.js +2 -0
  116. package/cjs/models/IInvitation.js +2 -0
  117. package/cjs/models/IInvitationExists.js +2 -0
  118. package/cjs/models/IOperation.js +2 -0
  119. package/cjs/models/IPersonalAccessToken.js +2 -0
  120. package/cjs/models/IProject.d.ts +6 -0
  121. package/cjs/models/IProject.js +2 -0
  122. package/cjs/models/IProjectApplication.js +2 -0
  123. package/cjs/models/IProjectInfo.d.ts +14 -0
  124. package/cjs/models/IProjectInfo.js +2 -0
  125. package/cjs/models/IRobot.js +2 -0
  126. package/cjs/models/IRobotConfig.js +2 -0
  127. package/cjs/models/IRobotPlugin.js +2 -0
  128. package/cjs/models/IRobotSettings.js +2 -0
  129. package/cjs/models/IRobotTemplate.js +2 -0
  130. package/cjs/models/IRocosSDKConfig.d.ts +23 -0
  131. package/cjs/models/IRocosSDKConfig.js +2 -0
  132. package/cjs/models/ISource.js +2 -0
  133. package/cjs/models/IStream.js +2 -0
  134. package/cjs/models/IStreamConfig.js +2 -0
  135. package/cjs/models/IStreamOptions.js +2 -0
  136. package/cjs/models/IStreamSource.js +2 -0
  137. package/cjs/models/ISubscriberStatus.js +2 -0
  138. package/cjs/models/ITelemetryStreamConfig.js +2 -0
  139. package/cjs/models/IToken.js +2 -0
  140. package/cjs/models/IWidget.js +2 -0
  141. package/cjs/models/IWidgetLineGroup.js +2 -0
  142. package/cjs/models/ResponseLevelEnum.js +14 -0
  143. package/cjs/models/Robot.js +12 -0
  144. package/cjs/models/RobotConfig.js +9 -0
  145. package/cjs/models/RobotPlugin.js +9 -0
  146. package/cjs/models/RobotTemplate.js +29 -0
  147. package/cjs/models/RocosError.d.ts +34 -0
  148. package/cjs/models/RocosError.js +47 -0
  149. package/cjs/models/ServiceEnum.d.ts +30 -0
  150. package/cjs/models/ServiceEnum.js +34 -0
  151. package/cjs/models/Stream.js +15 -0
  152. package/cjs/models/StreamOptions.js +37 -0
  153. package/cjs/models/StreamSource.js +15 -0
  154. package/cjs/models/SubscriberStatusEnum.js +10 -0
  155. package/cjs/models/TelemetryStatus.d.ts +12 -0
  156. package/cjs/models/TelemetryStatus.js +17 -0
  157. package/cjs/models/Token.d.ts +40 -0
  158. package/cjs/models/Token.js +82 -0
  159. package/cjs/models/Widget.js +16 -0
  160. package/cjs/models/WidgetLineGroup.js +9 -0
  161. package/cjs/models/asset-storage/AssetItem.d.ts +16 -0
  162. package/cjs/models/asset-storage/AssetItem.js +2 -0
  163. package/cjs/models/asset-storage/SyncIntegrations.d.ts +31 -0
  164. package/cjs/models/asset-storage/SyncIntegrations.js +2 -0
  165. package/cjs/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  166. package/cjs/models/caller/IRocosCallerMessageChunk.js +2 -0
  167. package/cjs/models/caller/IRocosCallerMessageChunks.js +2 -0
  168. package/cjs/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
  169. package/cjs/models/caller/IRocosCallerMessageResponse.js +2 -0
  170. package/cjs/models/caller/IRocosCallerMessageResponseAck.js +16 -0
  171. package/cjs/models/caller/IRocosCallerMessageResponseResult.js +15 -0
  172. package/cjs/models/caller/IRocosCallerMessageResponseReturn.js +2 -0
  173. package/cjs/models/caller/IRocosCallerMessageResponseUid.js +10 -0
  174. package/cjs/models/caller/IRocosCallerMessageResponses.js +2 -0
  175. package/cjs/models/caller/RocosCallerResultStatus.js +15 -0
  176. package/cjs/models/caller/RocosResponseLevel.js +10 -0
  177. package/cjs/models/caller/index.d.ts +11 -0
  178. package/cjs/models/caller/index.js +27 -0
  179. package/cjs/models/callsigns/CallsignsEnums.js +20 -0
  180. package/cjs/models/callsigns/CallsignsLookup.js +32 -0
  181. package/cjs/models/callsigns/CallsignsQuery.js +18 -0
  182. package/cjs/models/callsigns/CallsignsQueryPredicate.js +19 -0
  183. package/cjs/models/command/IRocosCommandMessageHeartbeat.js +2 -0
  184. package/cjs/models/command/IRocosCommandMessageResponse.js +30 -0
  185. package/cjs/models/command/RocosCommandResultStatus.js +15 -0
  186. package/cjs/models/command/index.js +20 -0
  187. package/cjs/models/device-credentials/DeviceCredentials.d.ts +61 -0
  188. package/cjs/models/device-credentials/DeviceCredentials.js +2 -0
  189. package/cjs/models/file/FileEnums.js +36 -0
  190. package/cjs/models/graph/Position.d.ts +6 -0
  191. package/cjs/models/graph/Position.js +2 -0
  192. package/cjs/models/graph/Quaternion.d.ts +6 -0
  193. package/cjs/models/graph/Quaternion.js +2 -0
  194. package/cjs/models/graph/Vector3.d.ts +5 -0
  195. package/cjs/models/graph/Vector3.js +2 -0
  196. package/cjs/models/graph/index.d.ts +3 -0
  197. package/cjs/models/graph/index.js +19 -0
  198. package/cjs/models/index.d.ts +81 -0
  199. package/cjs/models/index.js +97 -0
  200. package/cjs/models/integrations/Overlay.js +2 -0
  201. package/cjs/models/integrations/Plan.js +2 -0
  202. package/cjs/models/maps/Map.js +2 -0
  203. package/cjs/models/maps/Panorama.d.ts +20 -0
  204. package/cjs/models/maps/Panorama.js +2 -0
  205. package/cjs/models/message/IRocosCallerMessage.js +2 -0
  206. package/cjs/models/message/IRocosChangeMessage.js +2 -0
  207. package/cjs/models/message/IRocosCommandMessage.js +2 -0
  208. package/cjs/models/message/IRocosControlMessage.js +2 -0
  209. package/cjs/models/message/IRocosOpResultMessage.js +2 -0
  210. package/cjs/models/message/IRocosSearchMessage.js +2 -0
  211. package/cjs/models/message/IRocosSearchRowMessage.js +2 -0
  212. package/cjs/models/message/IRocosSearchStatusMessage.js +2 -0
  213. package/cjs/models/message/IRocosTelemetryMessage.d.ts +23 -0
  214. package/cjs/models/message/IRocosTelemetryMessage.js +2 -0
  215. package/cjs/models/message/IStreamStatusMessage.js +2 -0
  216. package/cjs/models/message/RocosCallerMessage.js +36 -0
  217. package/cjs/models/message/RocosCommandMessage.js +17 -0
  218. package/cjs/models/message/RocosControlMessage.js +18 -0
  219. package/cjs/models/message/RocosOpResultMessage.js +22 -0
  220. package/cjs/models/message/RocosSearchMessage.js +28 -0
  221. package/cjs/models/message/RocosSearchRowMessage.js +20 -0
  222. package/cjs/models/message/RocosTelemetryMessage.js +67 -0
  223. package/cjs/models/message/index.js +33 -0
  224. package/cjs/models/params/ICallerParams.d.ts +26 -0
  225. package/cjs/models/params/ICallerParams.js +2 -0
  226. package/cjs/models/params/ICommandParams.js +2 -0
  227. package/cjs/models/params/IControlParams.js +2 -0
  228. package/cjs/models/params/IFileAccessorParams.js +2 -0
  229. package/cjs/models/params/ISearchParams.js +2 -0
  230. package/cjs/models/params/ITelemetryParams.js +2 -0
  231. package/cjs/models/params/IWebRTCSignallingParams.js +2 -0
  232. package/cjs/models/projects/ProjectUser.js +2 -0
  233. package/cjs/models/schedule/IScheduleAction.js +9 -0
  234. package/cjs/models/schedule/IScheduleInfo.js +2 -0
  235. package/cjs/models/schedule/IScheduleJob.js +2 -0
  236. package/cjs/models/search/SearchQueryFilter.js +9 -0
  237. package/cjs/models/search/SearchStreamQuery.js +10 -0
  238. package/cjs/models/stream/IBaseStream.js +2 -0
  239. package/cjs/models/stream/ICallerStream.js +2 -0
  240. package/cjs/models/stream/ICommandStream.js +2 -0
  241. package/cjs/models/stream/IControlStream.js +2 -0
  242. package/cjs/models/stream/IFileAccessorStream.js +2 -0
  243. package/cjs/models/stream/ISearchStream.js +2 -0
  244. package/cjs/models/stream/ITelemetryStream.js +2 -0
  245. package/cjs/models/stream/IWebRTCSignallingStream.js +2 -0
  246. package/cjs/models/target/Target.d.ts +27 -0
  247. package/cjs/models/target/Target.js +2 -0
  248. package/cjs/models/types.js +2 -0
  249. package/cjs/models/workflow/Workflow.d.ts +94 -0
  250. package/cjs/models/workflow/Workflow.js +2 -0
  251. package/cjs/node/RocosSDKNode.d.ts +47 -0
  252. package/cjs/node/RocosSDKNode.js +147 -0
  253. package/cjs/node/index.js +23 -0
  254. package/cjs/services/AssetStorageService.d.ts +137 -0
  255. package/cjs/services/AssetStorageService.js +227 -0
  256. package/cjs/services/AuthService.d.ts +104 -0
  257. package/cjs/services/AuthService.js +257 -0
  258. package/cjs/services/BaseServiceAbstract.d.ts +36 -0
  259. package/cjs/services/BaseServiceAbstract.js +94 -0
  260. package/cjs/services/BaseStreamService.js +53 -0
  261. package/cjs/services/CallerService.d.ts +42 -0
  262. package/cjs/services/CallerService.js +121 -0
  263. package/cjs/services/CallerServiceNode.js +11 -0
  264. package/cjs/services/CommandService.js +42 -0
  265. package/cjs/services/CommandServiceNode.js +11 -0
  266. package/cjs/services/ConfigGroupService.js +157 -0
  267. package/cjs/services/ControlService.js +61 -0
  268. package/cjs/services/ControlServiceNode.js +11 -0
  269. package/cjs/services/DashboardService.js +146 -0
  270. package/cjs/services/DeviceCredentialsService.d.ts +15 -0
  271. package/cjs/services/DeviceCredentialsService.js +50 -0
  272. package/cjs/services/EvaluatorService.js +32 -0
  273. package/cjs/services/EventService.js +89 -0
  274. package/cjs/services/FileAccessorService.js +41 -0
  275. package/cjs/services/FileAccessorServiceNode.js +11 -0
  276. package/cjs/services/IntegrationService.js +76 -0
  277. package/cjs/services/MapService.d.ts +142 -0
  278. package/cjs/services/MapService.js +196 -0
  279. package/cjs/services/PlatformTimeService.js +160 -0
  280. package/cjs/services/ProfileService.d.ts +268 -0
  281. package/cjs/services/ProfileService.js +400 -0
  282. package/cjs/services/ProjectService.d.ts +106 -0
  283. package/cjs/services/ProjectService.js +167 -0
  284. package/cjs/services/RTPWebRTCService.d.ts +102 -0
  285. package/cjs/services/RTPWebRTCService.js +234 -0
  286. package/cjs/services/RobotService.js +464 -0
  287. package/cjs/services/ScheduleService.js +40 -0
  288. package/cjs/services/SearchService.js +62 -0
  289. package/cjs/services/SearchServiceNode.js +11 -0
  290. package/cjs/services/SpotProvisioningService.js +47 -0
  291. package/cjs/services/SpotProvisioningServiceNode.js +47 -0
  292. package/cjs/services/StreamService.js +146 -0
  293. package/cjs/services/TargetService.d.ts +11 -0
  294. package/cjs/services/TargetService.js +31 -0
  295. package/cjs/services/TelemetryService.d.ts +50 -0
  296. package/cjs/services/TelemetryService.js +180 -0
  297. package/cjs/services/TelemetryServiceNode.js +11 -0
  298. package/cjs/services/TimeSyncerService.js +27 -0
  299. package/cjs/services/UserService.js +319 -0
  300. package/cjs/services/WebRTCSignallingService.js +82 -0
  301. package/cjs/services/WorkflowService.d.ts +62 -0
  302. package/cjs/services/WorkflowService.js +107 -0
  303. package/cjs/services/WorkflowServiceNode.d.ts +4 -0
  304. package/cjs/services/WorkflowServiceNode.js +12 -0
  305. package/cjs/services/index.d.ts +29 -0
  306. package/cjs/services/index.js +45 -0
  307. package/cjs/store/RocosStore.d.ts +30 -0
  308. package/cjs/store/RocosStore.js +51 -0
  309. package/esm/IRocosSDK.d.ts +34 -0
  310. package/esm/RocosSDK.d.ts +157 -0
  311. package/esm/RocosSDK.js +336 -0
  312. package/esm/api/StreamRegister.d.ts +13 -0
  313. package/esm/api/atoms/StreamHeartbeat.d.ts +27 -0
  314. package/esm/api/streams/caller/CallerStream.d.ts +13 -0
  315. package/esm/api/streams/caller/CallerStream.js +81 -0
  316. package/esm/api/streams/caller/CallerStreamAbstract.d.ts +23 -0
  317. package/esm/api/streams/caller/CallerStreamNode.d.ts +13 -0
  318. package/esm/api/streams/caller/CallerStreamNode.js +116 -0
  319. package/esm/api/streams/command/CommandStream.d.ts +10 -0
  320. package/esm/api/streams/command/CommandStream.js +70 -0
  321. package/esm/api/streams/command/CommandStreamAbstract.d.ts +20 -0
  322. package/esm/api/streams/command/CommandStreamNode.d.ts +10 -0
  323. package/esm/api/streams/command/CommandStreamNode.js +70 -0
  324. package/esm/api/streams/control/ControlStream.d.ts +12 -0
  325. package/esm/api/streams/control/ControlStream.js +79 -0
  326. package/esm/api/streams/control/ControlStreamAbstract.d.ts +25 -0
  327. package/esm/api/streams/control/ControlStreamNode.d.ts +12 -0
  328. package/esm/api/streams/control/ControlStreamNode.js +74 -0
  329. package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
  330. package/esm/api/streams/fileAccessor/FileAccessorStream.js +63 -0
  331. package/esm/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +21 -0
  332. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +8 -0
  333. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.js +68 -0
  334. package/esm/api/streams/search/SearchStream.d.ts +13 -0
  335. package/esm/api/streams/search/SearchStream.js +100 -0
  336. package/esm/api/streams/search/SearchStreamAbstract.d.ts +25 -0
  337. package/esm/api/streams/search/SearchStreamNode.d.ts +13 -0
  338. package/esm/api/streams/search/SearchStreamNode.js +119 -0
  339. package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
  340. package/esm/api/streams/telemetry/TelemetryStream.js +101 -0
  341. package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
  342. package/esm/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
  343. package/esm/api/streams/telemetry/TelemetryStreamNode.js +176 -0
  344. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
  345. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
  346. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
  347. package/esm/constants/api.d.ts +136 -0
  348. package/esm/constants/api.js +136 -0
  349. package/esm/constants/auth.d.ts +2 -0
  350. package/esm/constants/grpc.d.ts +5 -0
  351. package/esm/constants/identifier.d.ts +6 -0
  352. package/esm/constants/timezones.d.ts +2 -0
  353. package/esm/grpc/conker_pb.client.d.ts +78 -0
  354. package/esm/grpc/conker_pb.d.ts +141 -0
  355. package/esm/grpc/conker_pb.grpc-client.d.ts +81 -0
  356. package/esm/grpc/filagree_pb.client.d.ts +68 -0
  357. package/esm/grpc/filagree_pb.d.ts +404 -0
  358. package/esm/grpc/filagree_pb.grpc-client.d.ts +69 -0
  359. package/esm/grpc/google/protobuf/descriptor_pb.d.ts +1798 -0
  360. package/esm/grpc/google/protobuf/empty_pb.d.ts +23 -0
  361. package/esm/grpc/pigeon_pb.client.d.ts +96 -0
  362. package/esm/grpc/pigeon_pb.d.ts +207 -0
  363. package/esm/grpc/pigeon_pb.grpc-client.d.ts +98 -0
  364. package/esm/grpc/rambo.uri.v1_pb.d.ts +73 -0
  365. package/esm/grpc/rambo.v1_pb.client.d.ts +66 -0
  366. package/esm/grpc/rambo.v1_pb.d.ts +392 -0
  367. package/esm/grpc/rambo.v1_pb.grpc-client.d.ts +56 -0
  368. package/esm/grpc/serviette.uri.v1_pb.d.ts +89 -0
  369. package/esm/grpc/serviette.v1_pb.client.d.ts +225 -0
  370. package/esm/grpc/serviette.v1_pb.d.ts +827 -0
  371. package/esm/grpc/serviette.v1_pb.grpc-client.d.ts +215 -0
  372. package/esm/grpc/slowlane_pb.client.d.ts +61 -0
  373. package/esm/grpc/slowlane_pb.d.ts +303 -0
  374. package/esm/grpc/slowlane_pb.grpc-client.d.ts +64 -0
  375. package/esm/grpc/teletubby_pb.client.d.ts +145 -0
  376. package/esm/grpc/teletubby_pb.d.ts +634 -0
  377. package/esm/grpc/teletubby_pb.grpc-client.d.ts +152 -0
  378. package/esm/helpers/arrayRemove.d.ts +1 -0
  379. package/esm/helpers/arrayUnique.d.ts +1 -0
  380. package/esm/helpers/average.d.ts +1 -0
  381. package/esm/helpers/callerMessageHelpers.d.ts +14 -0
  382. package/esm/helpers/callerMessageHelpers.js +86 -0
  383. package/esm/helpers/cleanObject.d.ts +1 -0
  384. package/esm/helpers/enviroment.d.ts +8 -0
  385. package/esm/helpers/flattenCallsignsLookup.d.ts +2 -0
  386. package/esm/helpers/flattenObject.d.ts +1 -0
  387. package/esm/helpers/flattenOneOf.d.ts +67 -0
  388. package/esm/helpers/formatServiceUrl.d.ts +1 -0
  389. package/esm/helpers/generateUUID.d.ts +1 -0
  390. package/esm/helpers/getSha256Hex.d.ts +1 -0
  391. package/esm/helpers/getSha256Hex.js +5 -0
  392. package/esm/helpers/getSha256HexNode.d.ts +1 -0
  393. package/esm/helpers/getSha256HexNode.js +6 -0
  394. package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
  395. package/esm/helpers/getURLSearchParams.d.ts +2 -0
  396. package/esm/helpers/getUniqueConfigKey.d.ts +11 -0
  397. package/esm/helpers/getUniqueConfigKey.js +19 -0
  398. package/esm/helpers/getUniqueId.d.ts +9 -0
  399. package/esm/helpers/getUnixTimeMs.d.ts +1 -0
  400. package/esm/helpers/index.js +5 -0
  401. package/esm/helpers/nanosecondToMillisecond.d.ts +1 -0
  402. package/esm/helpers/randomString.d.ts +1 -0
  403. package/esm/helpers/splitRobotTopic.d.ts +9 -0
  404. package/esm/helpers/splitRobotTopic.js +12 -0
  405. package/esm/helpers/standardDeviation.d.ts +1 -0
  406. package/esm/helpers/stringToUint8Array.d.ts +1 -0
  407. package/esm/helpers/uint8ArrayToString.d.ts +1 -0
  408. package/esm/helpers/websandbox/connection.d.ts +68 -0
  409. package/esm/helpers/websandbox/connection.js +134 -0
  410. package/esm/helpers/websandbox/frame/frame.d.ts +12 -0
  411. package/esm/helpers/websandbox/frame/frame.js +25 -0
  412. package/esm/helpers/websandbox/frame/frame.source.d.ts +2 -0
  413. package/esm/helpers/websandbox/frame/frame.source.js +5 -0
  414. package/esm/helpers/websandbox/frame/index.js +2 -0
  415. package/esm/helpers/websandbox/frame/worker/index.js +2 -0
  416. package/esm/helpers/websandbox/frame/worker/manager.d.ts +15 -0
  417. package/esm/helpers/websandbox/frame/worker/manager.js +85 -0
  418. package/esm/helpers/websandbox/frame/worker/types.d.ts +11 -0
  419. package/esm/helpers/websandbox/frame/worker/worker.source.d.ts +2 -0
  420. package/esm/helpers/websandbox/frame/worker/worker.source.js +4 -0
  421. package/esm/helpers/websandbox/index.js +2 -0
  422. package/esm/helpers/websandbox/sandbox.d.ts +57 -0
  423. package/esm/helpers/websandbox/sandbox.js +175 -0
  424. package/esm/helpers/websandbox/types.d.ts +13 -0
  425. package/esm/index.js +7 -0
  426. package/esm/logger/RocosLogger.d.ts +7 -0
  427. package/esm/models/ExportDataQuery.d.ts +8 -0
  428. package/esm/models/ExternalProject.d.ts +6 -0
  429. package/esm/models/HttpError.d.ts +5 -0
  430. package/esm/models/HttpError.js +8 -0
  431. package/esm/models/IBaseService.d.ts +4 -0
  432. package/esm/models/IConfigGroup.d.ts +5 -0
  433. package/esm/models/IDebugLevel.d.ts +2 -0
  434. package/esm/models/IExportDataQuery.d.ts +9 -0
  435. package/esm/models/IFunctionConfig.d.ts +8 -0
  436. package/esm/models/IInvitation.d.ts +6 -0
  437. package/esm/models/IInvitationExists.d.ts +4 -0
  438. package/esm/models/IOperation.d.ts +6 -0
  439. package/esm/models/IPersonalAccessToken.d.ts +16 -0
  440. package/esm/models/IProject.d.ts +6 -0
  441. package/esm/models/IProjectApplication.d.ts +6 -0
  442. package/esm/models/IProjectInfo.d.ts +14 -0
  443. package/esm/models/IRobot.d.ts +18 -0
  444. package/esm/models/IRobotConfig.d.ts +8 -0
  445. package/esm/models/IRobotPlugin.d.ts +3 -0
  446. package/esm/models/IRobotSettings.d.ts +28 -0
  447. package/esm/models/IRobotTemplate.d.ts +10 -0
  448. package/esm/models/IRocosSDKConfig.d.ts +23 -0
  449. package/esm/models/ISource.d.ts +8 -0
  450. package/esm/models/IStream.d.ts +9 -0
  451. package/esm/models/IStreamConfig.d.ts +9 -0
  452. package/esm/models/IStreamOptions.d.ts +7 -0
  453. package/esm/models/IStreamSource.d.ts +8 -0
  454. package/esm/models/ISubscriberStatus.d.ts +5 -0
  455. package/esm/models/ITelemetryStreamConfig.d.ts +7 -0
  456. package/esm/models/IToken.d.ts +9 -0
  457. package/esm/models/IWidget.d.ts +25 -0
  458. package/esm/models/IWidgetLineGroup.d.ts +8 -0
  459. package/esm/models/ResponseLevelEnum.d.ts +10 -0
  460. package/esm/models/Robot.d.ts +20 -0
  461. package/esm/models/RobotConfig.d.ts +10 -0
  462. package/esm/models/RobotPlugin.d.ts +5 -0
  463. package/esm/models/RobotTemplate.d.ts +12 -0
  464. package/esm/models/RocosError.d.ts +34 -0
  465. package/esm/models/RocosError.js +43 -0
  466. package/esm/models/ServiceEnum.d.ts +30 -0
  467. package/esm/models/ServiceEnum.js +31 -0
  468. package/esm/models/Stream.d.ts +10 -0
  469. package/esm/models/StreamOptions.d.ts +9 -0
  470. package/esm/models/StreamSource.d.ts +10 -0
  471. package/esm/models/SubscriberStatusEnum.d.ts +6 -0
  472. package/esm/models/TelemetryStatus.d.ts +12 -0
  473. package/esm/models/TelemetryStatus.js +14 -0
  474. package/esm/models/Token.d.ts +40 -0
  475. package/esm/models/Token.js +78 -0
  476. package/esm/models/Widget.d.ts +27 -0
  477. package/esm/models/WidgetLineGroup.d.ts +10 -0
  478. package/esm/models/asset-storage/AssetItem.d.ts +16 -0
  479. package/esm/models/asset-storage/SyncIntegrations.d.ts +31 -0
  480. package/esm/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  481. package/esm/models/caller/IRocosCallerMessageChunks.d.ts +4 -0
  482. package/esm/models/caller/IRocosCallerMessageHeartbeat.d.ts +3 -0
  483. package/esm/models/caller/IRocosCallerMessageResponse.d.ts +10 -0
  484. package/esm/models/caller/IRocosCallerMessageResponseAck.d.ts +16 -0
  485. package/esm/models/caller/IRocosCallerMessageResponseResult.d.ts +15 -0
  486. package/esm/models/caller/IRocosCallerMessageResponseReturn.d.ts +8 -0
  487. package/esm/models/caller/IRocosCallerMessageResponseUid.d.ts +10 -0
  488. package/esm/models/caller/IRocosCallerMessageResponses.d.ts +4 -0
  489. package/esm/models/caller/RocosCallerResultStatus.d.ts +11 -0
  490. package/esm/models/caller/RocosResponseLevel.d.ts +6 -0
  491. package/esm/models/caller/index.d.ts +11 -0
  492. package/esm/models/caller/index.js +11 -0
  493. package/esm/models/callsigns/CallsignsEnums.d.ts +13 -0
  494. package/esm/models/callsigns/CallsignsLookup.d.ts +8 -0
  495. package/esm/models/callsigns/CallsignsQuery.d.ts +9 -0
  496. package/esm/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
  497. package/esm/models/command/IRocosCommandMessageHeartbeat.d.ts +1 -0
  498. package/esm/models/command/IRocosCommandMessageResponse.d.ts +55 -0
  499. package/esm/models/command/RocosCommandResultStatus.d.ts +11 -0
  500. package/esm/models/command/index.js +4 -0
  501. package/esm/models/device-credentials/DeviceCredentials.d.ts +61 -0
  502. package/esm/models/file/FileEnums.d.ts +30 -0
  503. package/esm/models/graph/Position.d.ts +6 -0
  504. package/esm/models/graph/Quaternion.d.ts +6 -0
  505. package/esm/models/graph/Vector3.d.ts +5 -0
  506. package/esm/models/graph/index.d.ts +3 -0
  507. package/esm/models/graph/index.js +3 -0
  508. package/esm/models/index.d.ts +81 -0
  509. package/esm/models/index.js +81 -0
  510. package/esm/models/integrations/Overlay.d.ts +49 -0
  511. package/esm/models/integrations/Plan.d.ts +324 -0
  512. package/esm/models/maps/Map.d.ts +11 -0
  513. package/esm/models/maps/Panorama.d.ts +20 -0
  514. package/esm/models/message/IRocosCallerMessage.d.ts +8 -0
  515. package/esm/models/message/IRocosChangeMessage.d.ts +6 -0
  516. package/esm/models/message/IRocosCommandMessage.d.ts +6 -0
  517. package/esm/models/message/IRocosControlMessage.d.ts +7 -0
  518. package/esm/models/message/IRocosOpResultMessage.d.ts +6 -0
  519. package/esm/models/message/IRocosSearchMessage.d.ts +5 -0
  520. package/esm/models/message/IRocosSearchRowMessage.d.ts +9 -0
  521. package/esm/models/message/IRocosSearchStatusMessage.d.ts +4 -0
  522. package/esm/models/message/IRocosTelemetryMessage.d.ts +23 -0
  523. package/esm/models/message/IStreamStatusMessage.d.ts +5 -0
  524. package/esm/models/message/RocosCallerMessage.d.ts +10 -0
  525. package/esm/models/message/RocosCommandMessage.d.ts +9 -0
  526. package/esm/models/message/RocosControlMessage.d.ts +11 -0
  527. package/esm/models/message/RocosOpResultMessage.d.ts +10 -0
  528. package/esm/models/message/RocosSearchMessage.d.ts +9 -0
  529. package/esm/models/message/RocosSearchRowMessage.d.ts +13 -0
  530. package/esm/models/message/RocosTelemetryMessage.d.ts +10 -0
  531. package/esm/models/message/index.js +17 -0
  532. package/esm/models/params/ICallerParams.d.ts +26 -0
  533. package/esm/models/params/ICommandParams.d.ts +9 -0
  534. package/esm/models/params/IControlParams.d.ts +8 -0
  535. package/esm/models/params/IFileAccessorParams.d.ts +11 -0
  536. package/esm/models/params/ISearchParams.d.ts +10 -0
  537. package/esm/models/params/ITelemetryParams.d.ts +18 -0
  538. package/esm/models/params/IWebRTCSignallingParams.d.ts +21 -0
  539. package/esm/models/projects/ProjectUser.d.ts +6 -0
  540. package/esm/models/schedule/IScheduleAction.d.ts +13 -0
  541. package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
  542. package/esm/models/schedule/IScheduleJob.d.ts +12 -0
  543. package/esm/models/search/SearchQueryFilter.d.ts +5 -0
  544. package/esm/models/search/SearchStreamQuery.d.ts +15 -0
  545. package/esm/models/stream/IBaseStream.d.ts +8 -0
  546. package/esm/models/stream/ICallerStream.d.ts +8 -0
  547. package/esm/models/stream/ICommandStream.d.ts +7 -0
  548. package/esm/models/stream/IControlStream.d.ts +9 -0
  549. package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
  550. package/esm/models/stream/ISearchStream.d.ts +11 -0
  551. package/esm/models/stream/ITelemetryStream.d.ts +10 -0
  552. package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
  553. package/esm/models/target/Target.d.ts +27 -0
  554. package/esm/models/types.d.ts +5 -0
  555. package/esm/models/workflow/Workflow.d.ts +94 -0
  556. package/esm/node/RocosSDKNode.d.ts +47 -0
  557. package/esm/node/RocosSDKNode.js +143 -0
  558. package/esm/node/index.js +7 -0
  559. package/esm/services/AssetStorageService.d.ts +137 -0
  560. package/esm/services/AssetStorageService.js +223 -0
  561. package/esm/services/AuthService.d.ts +104 -0
  562. package/esm/services/AuthService.js +253 -0
  563. package/esm/services/BaseServiceAbstract.d.ts +36 -0
  564. package/esm/services/BaseServiceAbstract.js +90 -0
  565. package/esm/services/BaseStreamService.d.ts +18 -0
  566. package/esm/services/BaseStreamService.js +49 -0
  567. package/esm/services/CallerService.d.ts +42 -0
  568. package/esm/services/CallerService.js +117 -0
  569. package/esm/services/CallerServiceNode.d.ts +6 -0
  570. package/esm/services/CommandService.d.ts +9 -0
  571. package/esm/services/CommandServiceNode.d.ts +6 -0
  572. package/esm/services/ConfigGroupService.d.ts +89 -0
  573. package/esm/services/ControlService.d.ts +11 -0
  574. package/esm/services/ControlServiceNode.d.ts +6 -0
  575. package/esm/services/DashboardService.d.ts +97 -0
  576. package/esm/services/DeviceCredentialsService.d.ts +15 -0
  577. package/esm/services/DeviceCredentialsService.js +46 -0
  578. package/esm/services/EvaluatorService.d.ts +11 -0
  579. package/esm/services/EvaluatorService.js +28 -0
  580. package/esm/services/EventService.d.ts +53 -0
  581. package/esm/services/FileAccessorService.d.ts +11 -0
  582. package/esm/services/FileAccessorServiceNode.d.ts +6 -0
  583. package/esm/services/IntegrationService.d.ts +48 -0
  584. package/esm/services/MapService.d.ts +142 -0
  585. package/esm/services/MapService.js +192 -0
  586. package/esm/services/PlatformTimeService.d.ts +35 -0
  587. package/esm/services/ProfileService.d.ts +268 -0
  588. package/esm/services/ProfileService.js +396 -0
  589. package/esm/services/ProjectService.d.ts +106 -0
  590. package/esm/services/ProjectService.js +163 -0
  591. package/esm/services/RTPWebRTCService.d.ts +102 -0
  592. package/esm/services/RTPWebRTCService.js +229 -0
  593. package/esm/services/RobotService.d.ts +278 -0
  594. package/esm/services/ScheduleService.d.ts +22 -0
  595. package/esm/services/SearchService.d.ts +12 -0
  596. package/esm/services/SearchServiceNode.d.ts +6 -0
  597. package/esm/services/SpotProvisioningService.d.ts +14 -0
  598. package/esm/services/SpotProvisioningServiceNode.d.ts +15 -0
  599. package/esm/services/StreamService.d.ts +98 -0
  600. package/esm/services/TargetService.d.ts +11 -0
  601. package/esm/services/TargetService.js +27 -0
  602. package/esm/services/TelemetryService.d.ts +50 -0
  603. package/esm/services/TelemetryService.js +176 -0
  604. package/esm/services/TelemetryServiceNode.d.ts +6 -0
  605. package/esm/services/TimeSyncerService.d.ts +13 -0
  606. package/esm/services/UserService.d.ts +200 -0
  607. package/esm/services/WebRTCSignallingService.d.ts +22 -0
  608. package/esm/services/WorkflowService.d.ts +62 -0
  609. package/esm/services/WorkflowService.js +103 -0
  610. package/esm/services/WorkflowServiceNode.d.ts +4 -0
  611. package/esm/services/WorkflowServiceNode.js +8 -0
  612. package/esm/services/index.d.ts +29 -0
  613. package/esm/services/index.js +29 -0
  614. package/esm/store/RocosStore.d.ts +30 -0
  615. package/package.json +19 -8
  616. package/IRocosSDK.d.ts +0 -32
  617. package/RocosSDK.d.ts +0 -143
  618. package/RocosSDK.js +0 -302
  619. package/api/streams/caller/CallerStream.js +0 -77
  620. package/api/streams/caller/CallerStreamNode.js +0 -115
  621. package/api/streams/command/CommandStream.js +0 -66
  622. package/api/streams/command/CommandStreamNode.js +0 -69
  623. package/api/streams/control/ControlStream.js +0 -75
  624. package/api/streams/control/ControlStreamAbstract.d.ts +0 -25
  625. package/api/streams/control/ControlStreamNode.js +0 -73
  626. package/api/streams/fileAccessor/FileAccessorStream.js +0 -59
  627. package/api/streams/fileAccessor/FileAccessorStreamNode.js +0 -66
  628. package/api/streams/search/SearchStream.js +0 -96
  629. package/api/streams/search/SearchStreamNode.js +0 -118
  630. package/api/streams/telemetry/TelemetryStream.js +0 -97
  631. package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -59
  632. package/api/streams/telemetry/TelemetryStreamNode.js +0 -175
  633. package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -84
  634. package/constants/api.d.ts +0 -127
  635. package/constants/api.js +0 -127
  636. package/helpers/cleanObject.spec.js +0 -53
  637. package/helpers/flattenObject.spec.js +0 -29
  638. package/helpers/flattenOneOf.spec.js +0 -157
  639. package/helpers/formatServiceUrl.spec.js +0 -16
  640. package/helpers/getURLSearchParams.spec.js +0 -19
  641. package/helpers/getUniqueConfigKey.d.ts +0 -7
  642. package/helpers/getUniqueConfigKey.js +0 -14
  643. package/helpers/nanosecondToMillisecond.spec.js +0 -20
  644. package/helpers/standardDeviation.spec.js +0 -11
  645. package/helpers/websandbox/connection.d.ts +0 -67
  646. package/helpers/websandbox/connection.js +0 -133
  647. package/helpers/websandbox/frame/frame.js +0 -22
  648. package/helpers/websandbox/frame/frame.source.js +0 -5
  649. package/helpers/websandbox/frame/worker/manager.d.ts +0 -11
  650. package/helpers/websandbox/frame/worker/manager.js +0 -62
  651. package/helpers/websandbox/frame/worker/manager.spec.d.ts +0 -4
  652. package/helpers/websandbox/frame/worker/manager.spec.js +0 -121
  653. package/helpers/websandbox/frame/worker/worker.source.js +0 -4
  654. package/helpers/websandbox/sandbox.d.ts +0 -54
  655. package/helpers/websandbox/sandbox.js +0 -146
  656. package/models/CallsignStatus.d.ts +0 -6
  657. package/models/CallsignStatus.js +0 -7
  658. package/models/IProject.d.ts +0 -4
  659. package/models/IRocosSDKConfig.d.ts +0 -19
  660. package/models/RocosError.d.ts +0 -31
  661. package/models/RocosError.js +0 -40
  662. package/models/ServiceEnum.d.ts +0 -27
  663. package/models/ServiceEnum.js +0 -28
  664. package/models/Token.d.ts +0 -40
  665. package/models/Token.js +0 -78
  666. package/models/Token.spec.js +0 -108
  667. package/models/asset-storage/AssetModelItem.d.ts +0 -29
  668. package/models/caller/IRocosCallerMessageChunk.d.ts +0 -10
  669. package/models/caller/index.d.ts +0 -10
  670. package/models/caller/index.js +0 -10
  671. package/models/index.d.ts +0 -75
  672. package/models/index.js +0 -75
  673. package/models/message/IRocosTelemetryMessage.d.ts +0 -23
  674. package/models/params/ICallerParams.d.ts +0 -16
  675. package/node/RocosSDKNode.d.ts +0 -47
  676. package/node/RocosSDKNode.js +0 -150
  677. package/services/AssetStorageService.d.ts +0 -106
  678. package/services/AssetStorageService.js +0 -169
  679. package/services/AuthService.d.ts +0 -93
  680. package/services/AuthService.js +0 -235
  681. package/services/AuthService.spec.js +0 -163
  682. package/services/BaseServiceAbstract.d.ts +0 -36
  683. package/services/BaseServiceAbstract.js +0 -97
  684. package/services/BaseStreamService.js +0 -47
  685. package/services/CallerService.d.ts +0 -10
  686. package/services/CallerService.js +0 -53
  687. package/services/EvaluatorService.js +0 -28
  688. package/services/FunctionService.d.ts +0 -68
  689. package/services/FunctionService.js +0 -99
  690. package/services/MapService.d.ts +0 -108
  691. package/services/MapService.js +0 -151
  692. package/services/PlatformTimeService.spec.js +0 -180
  693. package/services/ProfileService.d.ts +0 -244
  694. package/services/ProfileService.js +0 -362
  695. package/services/ProjectService.d.ts +0 -110
  696. package/services/ProjectService.js +0 -160
  697. package/services/TelemetryService.d.ts +0 -40
  698. package/services/TelemetryService.js +0 -142
  699. package/services/TelemetryService.spec.d.ts +0 -1
  700. package/services/TelemetryService.spec.js +0 -37
  701. package/services/WorkflowService.d.ts +0 -71
  702. package/services/WorkflowService.js +0 -118
  703. package/services/index.d.ts +0 -27
  704. package/services/index.js +0 -27
  705. package/store/RocosStore.d.ts +0 -31
  706. /package/{api → cjs/api}/StreamRegister.d.ts +0 -0
  707. /package/{api → cjs/api}/atoms/StreamHeartbeat.d.ts +0 -0
  708. /package/{api → cjs/api}/streams/caller/CallerStream.d.ts +0 -0
  709. /package/{api → cjs/api}/streams/caller/CallerStreamAbstract.d.ts +0 -0
  710. /package/{api → cjs/api}/streams/caller/CallerStreamNode.d.ts +0 -0
  711. /package/{api → cjs/api}/streams/command/CommandStream.d.ts +0 -0
  712. /package/{api → cjs/api}/streams/command/CommandStreamAbstract.d.ts +0 -0
  713. /package/{api → cjs/api}/streams/command/CommandStreamNode.d.ts +0 -0
  714. /package/{api → cjs/api}/streams/control/ControlStream.d.ts +0 -0
  715. /package/{api → cjs/api}/streams/control/ControlStreamNode.d.ts +0 -0
  716. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStream.d.ts +0 -0
  717. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +0 -0
  718. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamNode.d.ts +0 -0
  719. /package/{api → cjs/api}/streams/search/SearchStream.d.ts +0 -0
  720. /package/{api → cjs/api}/streams/search/SearchStreamAbstract.d.ts +0 -0
  721. /package/{api → cjs/api}/streams/search/SearchStreamNode.d.ts +0 -0
  722. /package/{api → cjs/api}/streams/telemetry/TelemetryStream.d.ts +0 -0
  723. /package/{api → cjs/api}/streams/telemetry/TelemetryStreamNode.d.ts +0 -0
  724. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +0 -0
  725. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +0 -0
  726. /package/{constants → cjs/constants}/auth.d.ts +0 -0
  727. /package/{constants → cjs/constants}/grpc.d.ts +0 -0
  728. /package/{constants → cjs/constants}/identifier.d.ts +0 -0
  729. /package/{constants → cjs/constants}/timezones.d.ts +0 -0
  730. /package/{grpc → cjs/grpc}/conker_pb.client.d.ts +0 -0
  731. /package/{grpc → cjs/grpc}/conker_pb.d.ts +0 -0
  732. /package/{grpc → cjs/grpc}/conker_pb.grpc-client.d.ts +0 -0
  733. /package/{grpc → cjs/grpc}/filagree_pb.client.d.ts +0 -0
  734. /package/{grpc → cjs/grpc}/filagree_pb.d.ts +0 -0
  735. /package/{grpc → cjs/grpc}/filagree_pb.grpc-client.d.ts +0 -0
  736. /package/{grpc → cjs/grpc}/google/protobuf/descriptor_pb.d.ts +0 -0
  737. /package/{grpc → cjs/grpc}/google/protobuf/empty_pb.d.ts +0 -0
  738. /package/{grpc → cjs/grpc}/pigeon_pb.client.d.ts +0 -0
  739. /package/{grpc → cjs/grpc}/pigeon_pb.d.ts +0 -0
  740. /package/{grpc → cjs/grpc}/pigeon_pb.grpc-client.d.ts +0 -0
  741. /package/{grpc → cjs/grpc}/rambo.uri.v1_pb.d.ts +0 -0
  742. /package/{grpc → cjs/grpc}/rambo.v1_pb.client.d.ts +0 -0
  743. /package/{grpc → cjs/grpc}/rambo.v1_pb.d.ts +0 -0
  744. /package/{grpc → cjs/grpc}/rambo.v1_pb.grpc-client.d.ts +0 -0
  745. /package/{grpc → cjs/grpc}/serviette.uri.v1_pb.d.ts +0 -0
  746. /package/{grpc → cjs/grpc}/serviette.v1_pb.client.d.ts +0 -0
  747. /package/{grpc → cjs/grpc}/serviette.v1_pb.d.ts +0 -0
  748. /package/{grpc → cjs/grpc}/serviette.v1_pb.grpc-client.d.ts +0 -0
  749. /package/{grpc → cjs/grpc}/slowlane_pb.client.d.ts +0 -0
  750. /package/{grpc → cjs/grpc}/slowlane_pb.d.ts +0 -0
  751. /package/{grpc → cjs/grpc}/slowlane_pb.grpc-client.d.ts +0 -0
  752. /package/{grpc → cjs/grpc}/teletubby_pb.client.d.ts +0 -0
  753. /package/{grpc → cjs/grpc}/teletubby_pb.d.ts +0 -0
  754. /package/{grpc → cjs/grpc}/teletubby_pb.grpc-client.d.ts +0 -0
  755. /package/{helpers → cjs/helpers}/arrayRemove.d.ts +0 -0
  756. /package/{helpers → cjs/helpers}/arrayUnique.d.ts +0 -0
  757. /package/{helpers → cjs/helpers}/average.d.ts +0 -0
  758. /package/{helpers → cjs/helpers}/cleanObject.d.ts +0 -0
  759. /package/{helpers → cjs/helpers}/enviroment.d.ts +0 -0
  760. /package/{helpers → cjs/helpers}/flattenCallsignsLookup.d.ts +0 -0
  761. /package/{helpers → cjs/helpers}/flattenObject.d.ts +0 -0
  762. /package/{helpers → cjs/helpers}/flattenOneOf.d.ts +0 -0
  763. /package/{helpers → cjs/helpers}/formatServiceUrl.d.ts +0 -0
  764. /package/{helpers → cjs/helpers}/generateUUID.d.ts +0 -0
  765. /package/{helpers → cjs/helpers}/getSubscriptionsDifference.d.ts +0 -0
  766. /package/{helpers → cjs/helpers}/getURLSearchParams.d.ts +0 -0
  767. /package/{helpers → cjs/helpers}/getUniqueId.d.ts +0 -0
  768. /package/{helpers → cjs/helpers}/getUnixTimeMs.d.ts +0 -0
  769. /package/{helpers → cjs/helpers}/index.d.ts +0 -0
  770. /package/{helpers → cjs/helpers}/nanosecondToMillisecond.d.ts +0 -0
  771. /package/{helpers → cjs/helpers}/randomString.d.ts +0 -0
  772. /package/{helpers → cjs/helpers}/standardDeviation.d.ts +0 -0
  773. /package/{helpers → cjs/helpers}/stringToUint8Array.d.ts +0 -0
  774. /package/{helpers → cjs/helpers}/uint8ArrayToString.d.ts +0 -0
  775. /package/{helpers → cjs/helpers}/websandbox/frame/frame.d.ts +0 -0
  776. /package/{helpers → cjs/helpers}/websandbox/frame/frame.source.d.ts +0 -0
  777. /package/{helpers → cjs/helpers}/websandbox/frame/index.d.ts +0 -0
  778. /package/{helpers → cjs/helpers}/websandbox/frame/worker/index.d.ts +0 -0
  779. /package/{helpers → cjs/helpers}/websandbox/frame/worker/types.d.ts +0 -0
  780. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.d.ts +0 -0
  781. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.source.d.ts +0 -0
  782. /package/{helpers → cjs/helpers}/websandbox/index.d.ts +0 -0
  783. /package/{helpers → cjs/helpers}/websandbox/types.d.ts +0 -0
  784. /package/{index.d.ts → cjs/index.d.ts} +0 -0
  785. /package/{logger → cjs/logger}/RocosLogger.d.ts +0 -0
  786. /package/{models → cjs/models}/ExportDataQuery.d.ts +0 -0
  787. /package/{models → cjs/models}/ExternalProject.d.ts +0 -0
  788. /package/{models → cjs/models}/IBaseService.d.ts +0 -0
  789. /package/{models → cjs/models}/IConfigGroup.d.ts +0 -0
  790. /package/{models → cjs/models}/IDebugLevel.d.ts +0 -0
  791. /package/{models → cjs/models}/IExportDataQuery.d.ts +0 -0
  792. /package/{models → cjs/models}/IFunctionConfig.d.ts +0 -0
  793. /package/{models → cjs/models}/IInvitation.d.ts +0 -0
  794. /package/{models → cjs/models}/IInvitationExists.d.ts +0 -0
  795. /package/{models → cjs/models}/IOperation.d.ts +0 -0
  796. /package/{models → cjs/models}/IPersonalAccessToken.d.ts +0 -0
  797. /package/{models → cjs/models}/IProjectApplication.d.ts +0 -0
  798. /package/{models → cjs/models}/IRobot.d.ts +0 -0
  799. /package/{models → cjs/models}/IRobotConfig.d.ts +0 -0
  800. /package/{models → cjs/models}/IRobotPlugin.d.ts +0 -0
  801. /package/{models → cjs/models}/IRobotSettings.d.ts +0 -0
  802. /package/{models → cjs/models}/IRobotTemplate.d.ts +0 -0
  803. /package/{models → cjs/models}/ISource.d.ts +0 -0
  804. /package/{models → cjs/models}/IStream.d.ts +0 -0
  805. /package/{models → cjs/models}/IStreamConfig.d.ts +0 -0
  806. /package/{models → cjs/models}/IStreamOptions.d.ts +0 -0
  807. /package/{models → cjs/models}/IStreamSource.d.ts +0 -0
  808. /package/{models → cjs/models}/ISubscriberStatus.d.ts +0 -0
  809. /package/{models → cjs/models}/ITelemetryStreamConfig.d.ts +0 -0
  810. /package/{models → cjs/models}/IToken.d.ts +0 -0
  811. /package/{models → cjs/models}/IWidget.d.ts +0 -0
  812. /package/{models → cjs/models}/IWidgetLineGroup.d.ts +0 -0
  813. /package/{models → cjs/models}/ResponseLevelEnum.d.ts +0 -0
  814. /package/{models → cjs/models}/Robot.d.ts +0 -0
  815. /package/{models → cjs/models}/RobotConfig.d.ts +0 -0
  816. /package/{models → cjs/models}/RobotPlugin.d.ts +0 -0
  817. /package/{models → cjs/models}/RobotTemplate.d.ts +0 -0
  818. /package/{models → cjs/models}/Stream.d.ts +0 -0
  819. /package/{models → cjs/models}/StreamOptions.d.ts +0 -0
  820. /package/{models → cjs/models}/StreamSource.d.ts +0 -0
  821. /package/{models → cjs/models}/SubscriberStatusEnum.d.ts +0 -0
  822. /package/{models → cjs/models}/Widget.d.ts +0 -0
  823. /package/{models → cjs/models}/WidgetLineGroup.d.ts +0 -0
  824. /package/{models → cjs/models}/caller/IRocosCallerMessageChunks.d.ts +0 -0
  825. /package/{models → cjs/models}/caller/IRocosCallerMessageHeartbeat.d.ts +0 -0
  826. /package/{models → cjs/models}/caller/IRocosCallerMessageResponse.d.ts +0 -0
  827. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseAck.d.ts +0 -0
  828. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseResult.d.ts +0 -0
  829. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseReturn.d.ts +0 -0
  830. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseUid.d.ts +0 -0
  831. /package/{models → cjs/models}/caller/IRocosCallerMessageResponses.d.ts +0 -0
  832. /package/{models → cjs/models}/caller/RocosCallerResultStatus.d.ts +0 -0
  833. /package/{models → cjs/models}/caller/RocosResponseLevel.d.ts +0 -0
  834. /package/{models → cjs/models}/callsigns/CallsignsEnums.d.ts +0 -0
  835. /package/{models → cjs/models}/callsigns/CallsignsLookup.d.ts +0 -0
  836. /package/{models → cjs/models}/callsigns/CallsignsQuery.d.ts +0 -0
  837. /package/{models → cjs/models}/callsigns/CallsignsQueryPredicate.d.ts +0 -0
  838. /package/{models → cjs/models}/command/IRocosCommandMessageHeartbeat.d.ts +0 -0
  839. /package/{models → cjs/models}/command/IRocosCommandMessageResponse.d.ts +0 -0
  840. /package/{models → cjs/models}/command/RocosCommandResultStatus.d.ts +0 -0
  841. /package/{models → cjs/models}/command/index.d.ts +0 -0
  842. /package/{models → cjs/models}/file/FileEnums.d.ts +0 -0
  843. /package/{models → cjs/models}/integrations/Overlay.d.ts +0 -0
  844. /package/{models → cjs/models}/integrations/Plan.d.ts +0 -0
  845. /package/{models → cjs/models}/maps/Map.d.ts +0 -0
  846. /package/{models → cjs/models}/message/IRocosCallerMessage.d.ts +0 -0
  847. /package/{models → cjs/models}/message/IRocosChangeMessage.d.ts +0 -0
  848. /package/{models → cjs/models}/message/IRocosCommandMessage.d.ts +0 -0
  849. /package/{models → cjs/models}/message/IRocosControlMessage.d.ts +0 -0
  850. /package/{models → cjs/models}/message/IRocosOpResultMessage.d.ts +0 -0
  851. /package/{models → cjs/models}/message/IRocosSearchMessage.d.ts +0 -0
  852. /package/{models → cjs/models}/message/IRocosSearchRowMessage.d.ts +0 -0
  853. /package/{models → cjs/models}/message/IRocosSearchStatusMessage.d.ts +0 -0
  854. /package/{models → cjs/models}/message/IStreamStatusMessage.d.ts +0 -0
  855. /package/{models → cjs/models}/message/RocosCallerMessage.d.ts +0 -0
  856. /package/{models → cjs/models}/message/RocosCommandMessage.d.ts +0 -0
  857. /package/{models → cjs/models}/message/RocosControlMessage.d.ts +0 -0
  858. /package/{models → cjs/models}/message/RocosOpResultMessage.d.ts +0 -0
  859. /package/{models → cjs/models}/message/RocosSearchMessage.d.ts +0 -0
  860. /package/{models → cjs/models}/message/RocosSearchRowMessage.d.ts +0 -0
  861. /package/{models → cjs/models}/message/RocosTelemetryMessage.d.ts +0 -0
  862. /package/{models → cjs/models}/message/index.d.ts +0 -0
  863. /package/{models → cjs/models}/params/ICommandParams.d.ts +0 -0
  864. /package/{models → cjs/models}/params/IControlParams.d.ts +0 -0
  865. /package/{models → cjs/models}/params/IFileAccessorParams.d.ts +0 -0
  866. /package/{models → cjs/models}/params/ISearchParams.d.ts +0 -0
  867. /package/{models → cjs/models}/params/ITelemetryParams.d.ts +0 -0
  868. /package/{models → cjs/models}/params/IWebRTCSignallingParams.d.ts +0 -0
  869. /package/{models → cjs/models}/projects/ProjectUser.d.ts +0 -0
  870. /package/{models → cjs/models}/schedule/IScheduleAction.d.ts +0 -0
  871. /package/{models → cjs/models}/schedule/IScheduleInfo.d.ts +0 -0
  872. /package/{models → cjs/models}/schedule/IScheduleJob.d.ts +0 -0
  873. /package/{models → cjs/models}/search/SearchQueryFilter.d.ts +0 -0
  874. /package/{models → cjs/models}/search/SearchStreamQuery.d.ts +0 -0
  875. /package/{models → cjs/models}/stream/IBaseStream.d.ts +0 -0
  876. /package/{models → cjs/models}/stream/ICallerStream.d.ts +0 -0
  877. /package/{models → cjs/models}/stream/ICommandStream.d.ts +0 -0
  878. /package/{models → cjs/models}/stream/IControlStream.d.ts +0 -0
  879. /package/{models → cjs/models}/stream/IFileAccessorStream.d.ts +0 -0
  880. /package/{models → cjs/models}/stream/ISearchStream.d.ts +0 -0
  881. /package/{models → cjs/models}/stream/ITelemetryStream.d.ts +0 -0
  882. /package/{models → cjs/models}/stream/IWebRTCSignallingStream.d.ts +0 -0
  883. /package/{models → cjs/models}/types.d.ts +0 -0
  884. /package/{node → cjs/node}/index.d.ts +0 -0
  885. /package/{services → cjs/services}/BaseStreamService.d.ts +0 -0
  886. /package/{services → cjs/services}/CallerServiceNode.d.ts +0 -0
  887. /package/{services → cjs/services}/CommandService.d.ts +0 -0
  888. /package/{services → cjs/services}/CommandServiceNode.d.ts +0 -0
  889. /package/{services → cjs/services}/ConfigGroupService.d.ts +0 -0
  890. /package/{services → cjs/services}/ControlService.d.ts +0 -0
  891. /package/{services → cjs/services}/ControlServiceNode.d.ts +0 -0
  892. /package/{services → cjs/services}/DashboardService.d.ts +0 -0
  893. /package/{services → cjs/services}/EvaluatorService.d.ts +0 -0
  894. /package/{services → cjs/services}/EventService.d.ts +0 -0
  895. /package/{services → cjs/services}/FileAccessorService.d.ts +0 -0
  896. /package/{services → cjs/services}/FileAccessorServiceNode.d.ts +0 -0
  897. /package/{services → cjs/services}/IntegrationService.d.ts +0 -0
  898. /package/{services → cjs/services}/PlatformTimeService.d.ts +0 -0
  899. /package/{services → cjs/services}/RobotService.d.ts +0 -0
  900. /package/{services → cjs/services}/ScheduleService.d.ts +0 -0
  901. /package/{services → cjs/services}/SearchService.d.ts +0 -0
  902. /package/{services → cjs/services}/SearchServiceNode.d.ts +0 -0
  903. /package/{services → cjs/services}/SpotProvisioningService.d.ts +0 -0
  904. /package/{services → cjs/services}/SpotProvisioningServiceNode.d.ts +0 -0
  905. /package/{services → cjs/services}/StreamService.d.ts +0 -0
  906. /package/{services → cjs/services}/TelemetryServiceNode.d.ts +0 -0
  907. /package/{services → cjs/services}/TimeSyncerService.d.ts +0 -0
  908. /package/{services → cjs/services}/UserService.d.ts +0 -0
  909. /package/{services → cjs/services}/WebRTCSignallingService.d.ts +0 -0
  910. /package/{IRocosSDK.js → esm/IRocosSDK.js} +0 -0
  911. /package/{api → esm/api}/StreamRegister.js +0 -0
  912. /package/{api → esm/api}/atoms/StreamHeartbeat.js +0 -0
  913. /package/{api → esm/api}/streams/caller/CallerStreamAbstract.js +0 -0
  914. /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
  915. /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
  916. /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
  917. /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
  918. /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.js +0 -0
  919. /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +0 -0
  920. /package/{constants → esm/constants}/auth.js +0 -0
  921. /package/{constants → esm/constants}/grpc.js +0 -0
  922. /package/{constants → esm/constants}/identifier.js +0 -0
  923. /package/{constants → esm/constants}/timezones.js +0 -0
  924. /package/{grpc → esm/grpc}/conker_pb.client.js +0 -0
  925. /package/{grpc → esm/grpc}/conker_pb.grpc-client.js +0 -0
  926. /package/{grpc → esm/grpc}/conker_pb.js +0 -0
  927. /package/{grpc → esm/grpc}/filagree_pb.client.js +0 -0
  928. /package/{grpc → esm/grpc}/filagree_pb.grpc-client.js +0 -0
  929. /package/{grpc → esm/grpc}/filagree_pb.js +0 -0
  930. /package/{grpc → esm/grpc}/google/protobuf/descriptor_pb.js +0 -0
  931. /package/{grpc → esm/grpc}/google/protobuf/empty_pb.js +0 -0
  932. /package/{grpc → esm/grpc}/pigeon_pb.client.js +0 -0
  933. /package/{grpc → esm/grpc}/pigeon_pb.grpc-client.js +0 -0
  934. /package/{grpc → esm/grpc}/pigeon_pb.js +0 -0
  935. /package/{grpc → esm/grpc}/rambo.uri.v1_pb.js +0 -0
  936. /package/{grpc → esm/grpc}/rambo.v1_pb.client.js +0 -0
  937. /package/{grpc → esm/grpc}/rambo.v1_pb.grpc-client.js +0 -0
  938. /package/{grpc → esm/grpc}/rambo.v1_pb.js +0 -0
  939. /package/{grpc → esm/grpc}/serviette.uri.v1_pb.js +0 -0
  940. /package/{grpc → esm/grpc}/serviette.v1_pb.client.js +0 -0
  941. /package/{grpc → esm/grpc}/serviette.v1_pb.grpc-client.js +0 -0
  942. /package/{grpc → esm/grpc}/serviette.v1_pb.js +0 -0
  943. /package/{grpc → esm/grpc}/slowlane_pb.client.js +0 -0
  944. /package/{grpc → esm/grpc}/slowlane_pb.grpc-client.js +0 -0
  945. /package/{grpc → esm/grpc}/slowlane_pb.js +0 -0
  946. /package/{grpc → esm/grpc}/teletubby_pb.client.js +0 -0
  947. /package/{grpc → esm/grpc}/teletubby_pb.grpc-client.js +0 -0
  948. /package/{grpc → esm/grpc}/teletubby_pb.js +0 -0
  949. /package/{helpers → esm/helpers}/arrayRemove.js +0 -0
  950. /package/{helpers → esm/helpers}/arrayUnique.js +0 -0
  951. /package/{helpers → esm/helpers}/average.js +0 -0
  952. /package/{helpers → esm/helpers}/cleanObject.js +0 -0
  953. /package/{helpers → esm/helpers}/enviroment.js +0 -0
  954. /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
  955. /package/{helpers → esm/helpers}/flattenObject.js +0 -0
  956. /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
  957. /package/{helpers → esm/helpers}/formatServiceUrl.js +0 -0
  958. /package/{helpers → esm/helpers}/generateUUID.js +0 -0
  959. /package/{helpers → esm/helpers}/getSubscriptionsDifference.js +0 -0
  960. /package/{helpers → esm/helpers}/getURLSearchParams.js +0 -0
  961. /package/{helpers → esm/helpers}/getUniqueId.js +0 -0
  962. /package/{helpers → esm/helpers}/getUnixTimeMs.js +0 -0
  963. /package/{helpers/index.js → esm/helpers/index.d.ts} +0 -0
  964. /package/{helpers → esm/helpers}/nanosecondToMillisecond.js +0 -0
  965. /package/{helpers → esm/helpers}/randomString.js +0 -0
  966. /package/{helpers → esm/helpers}/standardDeviation.js +0 -0
  967. /package/{helpers → esm/helpers}/stringToUint8Array.js +0 -0
  968. /package/{helpers → esm/helpers}/uint8ArrayToString.js +0 -0
  969. /package/{helpers/websandbox/frame/index.js → esm/helpers/websandbox/frame/index.d.ts} +0 -0
  970. /package/{helpers/websandbox/frame/worker/index.js → esm/helpers/websandbox/frame/worker/index.d.ts} +0 -0
  971. /package/{helpers → esm/helpers}/websandbox/frame/worker/types.js +0 -0
  972. /package/{helpers/cleanObject.spec.d.ts → esm/helpers/websandbox/frame/worker/worker.d.ts} +0 -0
  973. /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.js +0 -0
  974. /package/{helpers/websandbox/index.js → esm/helpers/websandbox/index.d.ts} +0 -0
  975. /package/{helpers → esm/helpers}/websandbox/types.js +0 -0
  976. /package/{index.js → esm/index.d.ts} +0 -0
  977. /package/{logger → esm/logger}/RocosLogger.js +0 -0
  978. /package/{models → esm/models}/ExportDataQuery.js +0 -0
  979. /package/{models → esm/models}/ExternalProject.js +0 -0
  980. /package/{models → esm/models}/IBaseService.js +0 -0
  981. /package/{models → esm/models}/IConfigGroup.js +0 -0
  982. /package/{models → esm/models}/IDebugLevel.js +0 -0
  983. /package/{models → esm/models}/IExportDataQuery.js +0 -0
  984. /package/{models → esm/models}/IFunctionConfig.js +0 -0
  985. /package/{models → esm/models}/IInvitation.js +0 -0
  986. /package/{models → esm/models}/IInvitationExists.js +0 -0
  987. /package/{models → esm/models}/IOperation.js +0 -0
  988. /package/{models → esm/models}/IPersonalAccessToken.js +0 -0
  989. /package/{models → esm/models}/IProject.js +0 -0
  990. /package/{models → esm/models}/IProjectApplication.js +0 -0
  991. /package/{helpers/flattenObject.spec.d.ts → esm/models/IProjectInfo.js} +0 -0
  992. /package/{models → esm/models}/IRobot.js +0 -0
  993. /package/{models → esm/models}/IRobotConfig.js +0 -0
  994. /package/{models → esm/models}/IRobotPlugin.js +0 -0
  995. /package/{models → esm/models}/IRobotSettings.js +0 -0
  996. /package/{models → esm/models}/IRobotTemplate.js +0 -0
  997. /package/{models → esm/models}/IRocosSDKConfig.js +0 -0
  998. /package/{models → esm/models}/ISource.js +0 -0
  999. /package/{models → esm/models}/IStream.js +0 -0
  1000. /package/{models → esm/models}/IStreamConfig.js +0 -0
  1001. /package/{models → esm/models}/IStreamOptions.js +0 -0
  1002. /package/{models → esm/models}/IStreamSource.js +0 -0
  1003. /package/{models → esm/models}/ISubscriberStatus.js +0 -0
  1004. /package/{models → esm/models}/ITelemetryStreamConfig.js +0 -0
  1005. /package/{models → esm/models}/IToken.js +0 -0
  1006. /package/{models → esm/models}/IWidget.js +0 -0
  1007. /package/{models → esm/models}/IWidgetLineGroup.js +0 -0
  1008. /package/{models → esm/models}/ResponseLevelEnum.js +0 -0
  1009. /package/{models → esm/models}/Robot.js +0 -0
  1010. /package/{models → esm/models}/RobotConfig.js +0 -0
  1011. /package/{models → esm/models}/RobotPlugin.js +0 -0
  1012. /package/{models → esm/models}/RobotTemplate.js +0 -0
  1013. /package/{models → esm/models}/Stream.js +0 -0
  1014. /package/{models → esm/models}/StreamOptions.js +0 -0
  1015. /package/{models → esm/models}/StreamSource.js +0 -0
  1016. /package/{models → esm/models}/SubscriberStatusEnum.js +0 -0
  1017. /package/{models → esm/models}/Widget.js +0 -0
  1018. /package/{models → esm/models}/WidgetLineGroup.js +0 -0
  1019. /package/{helpers/flattenOneOf.spec.d.ts → esm/models/asset-storage/AssetItem.js} +0 -0
  1020. /package/{helpers/formatServiceUrl.spec.d.ts → esm/models/asset-storage/SyncIntegrations.js} +0 -0
  1021. /package/{models → esm/models}/caller/IRocosCallerMessageChunk.js +0 -0
  1022. /package/{models → esm/models}/caller/IRocosCallerMessageChunks.js +0 -0
  1023. /package/{models → esm/models}/caller/IRocosCallerMessageHeartbeat.js +0 -0
  1024. /package/{models → esm/models}/caller/IRocosCallerMessageResponse.js +0 -0
  1025. /package/{models → esm/models}/caller/IRocosCallerMessageResponseAck.js +0 -0
  1026. /package/{models → esm/models}/caller/IRocosCallerMessageResponseResult.js +0 -0
  1027. /package/{models → esm/models}/caller/IRocosCallerMessageResponseReturn.js +0 -0
  1028. /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
  1029. /package/{models → esm/models}/caller/IRocosCallerMessageResponses.js +0 -0
  1030. /package/{models → esm/models}/caller/RocosCallerResultStatus.js +0 -0
  1031. /package/{models → esm/models}/caller/RocosResponseLevel.js +0 -0
  1032. /package/{models → esm/models}/callsigns/CallsignsEnums.js +0 -0
  1033. /package/{models → esm/models}/callsigns/CallsignsLookup.js +0 -0
  1034. /package/{models → esm/models}/callsigns/CallsignsQuery.js +0 -0
  1035. /package/{models → esm/models}/callsigns/CallsignsQueryPredicate.js +0 -0
  1036. /package/{models → esm/models}/command/IRocosCommandMessageHeartbeat.js +0 -0
  1037. /package/{models → esm/models}/command/IRocosCommandMessageResponse.js +0 -0
  1038. /package/{models → esm/models}/command/RocosCommandResultStatus.js +0 -0
  1039. /package/{models/command/index.js → esm/models/command/index.d.ts} +0 -0
  1040. /package/{helpers/getURLSearchParams.spec.d.ts → esm/models/device-credentials/DeviceCredentials.js} +0 -0
  1041. /package/{models → esm/models}/file/FileEnums.js +0 -0
  1042. /package/{helpers/nanosecondToMillisecond.spec.d.ts → esm/models/graph/Position.js} +0 -0
  1043. /package/{helpers/standardDeviation.spec.d.ts → esm/models/graph/Quaternion.js} +0 -0
  1044. /package/{models/Token.spec.d.ts → esm/models/graph/Vector3.js} +0 -0
  1045. /package/{models → esm/models}/integrations/Overlay.js +0 -0
  1046. /package/{models → esm/models}/integrations/Plan.js +0 -0
  1047. /package/{models → esm/models}/maps/Map.js +0 -0
  1048. /package/{models/asset-storage/AssetModelItem.js → esm/models/maps/Panorama.js} +0 -0
  1049. /package/{models → esm/models}/message/IRocosCallerMessage.js +0 -0
  1050. /package/{models → esm/models}/message/IRocosChangeMessage.js +0 -0
  1051. /package/{models → esm/models}/message/IRocosCommandMessage.js +0 -0
  1052. /package/{models → esm/models}/message/IRocosControlMessage.js +0 -0
  1053. /package/{models → esm/models}/message/IRocosOpResultMessage.js +0 -0
  1054. /package/{models → esm/models}/message/IRocosSearchMessage.js +0 -0
  1055. /package/{models → esm/models}/message/IRocosSearchRowMessage.js +0 -0
  1056. /package/{models → esm/models}/message/IRocosSearchStatusMessage.js +0 -0
  1057. /package/{models → esm/models}/message/IRocosTelemetryMessage.js +0 -0
  1058. /package/{models → esm/models}/message/IStreamStatusMessage.js +0 -0
  1059. /package/{models → esm/models}/message/RocosCallerMessage.js +0 -0
  1060. /package/{models → esm/models}/message/RocosCommandMessage.js +0 -0
  1061. /package/{models → esm/models}/message/RocosControlMessage.js +0 -0
  1062. /package/{models → esm/models}/message/RocosOpResultMessage.js +0 -0
  1063. /package/{models → esm/models}/message/RocosSearchMessage.js +0 -0
  1064. /package/{models → esm/models}/message/RocosSearchRowMessage.js +0 -0
  1065. /package/{models → esm/models}/message/RocosTelemetryMessage.js +0 -0
  1066. /package/{models/message/index.js → esm/models/message/index.d.ts} +0 -0
  1067. /package/{models → esm/models}/params/ICallerParams.js +0 -0
  1068. /package/{models → esm/models}/params/ICommandParams.js +0 -0
  1069. /package/{models → esm/models}/params/IControlParams.js +0 -0
  1070. /package/{models → esm/models}/params/IFileAccessorParams.js +0 -0
  1071. /package/{models → esm/models}/params/ISearchParams.js +0 -0
  1072. /package/{models → esm/models}/params/ITelemetryParams.js +0 -0
  1073. /package/{models → esm/models}/params/IWebRTCSignallingParams.js +0 -0
  1074. /package/{models → esm/models}/projects/ProjectUser.js +0 -0
  1075. /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
  1076. /package/{models → esm/models}/schedule/IScheduleInfo.js +0 -0
  1077. /package/{models → esm/models}/schedule/IScheduleJob.js +0 -0
  1078. /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
  1079. /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
  1080. /package/{models → esm/models}/stream/IBaseStream.js +0 -0
  1081. /package/{models → esm/models}/stream/ICallerStream.js +0 -0
  1082. /package/{models → esm/models}/stream/ICommandStream.js +0 -0
  1083. /package/{models → esm/models}/stream/IControlStream.js +0 -0
  1084. /package/{models → esm/models}/stream/IFileAccessorStream.js +0 -0
  1085. /package/{models → esm/models}/stream/ISearchStream.js +0 -0
  1086. /package/{models → esm/models}/stream/ITelemetryStream.js +0 -0
  1087. /package/{models → esm/models}/stream/IWebRTCSignallingStream.js +0 -0
  1088. /package/{models/types.js → esm/models/target/Target.js} +0 -0
  1089. /package/{services/AuthService.spec.d.ts → esm/models/types.js} +0 -0
  1090. /package/{services/PlatformTimeService.spec.d.ts → esm/models/workflow/Workflow.js} +0 -0
  1091. /package/{node/index.js → esm/node/index.d.ts} +0 -0
  1092. /package/{services → esm/services}/CallerServiceNode.js +0 -0
  1093. /package/{services → esm/services}/CommandService.js +0 -0
  1094. /package/{services → esm/services}/CommandServiceNode.js +0 -0
  1095. /package/{services → esm/services}/ConfigGroupService.js +0 -0
  1096. /package/{services → esm/services}/ControlService.js +0 -0
  1097. /package/{services → esm/services}/ControlServiceNode.js +0 -0
  1098. /package/{services → esm/services}/DashboardService.js +0 -0
  1099. /package/{services → esm/services}/EventService.js +0 -0
  1100. /package/{services → esm/services}/FileAccessorService.js +0 -0
  1101. /package/{services → esm/services}/FileAccessorServiceNode.js +0 -0
  1102. /package/{services → esm/services}/IntegrationService.js +0 -0
  1103. /package/{services → esm/services}/PlatformTimeService.js +0 -0
  1104. /package/{services → esm/services}/RobotService.js +0 -0
  1105. /package/{services → esm/services}/ScheduleService.js +0 -0
  1106. /package/{services → esm/services}/SearchService.js +0 -0
  1107. /package/{services → esm/services}/SearchServiceNode.js +0 -0
  1108. /package/{services → esm/services}/SpotProvisioningService.js +0 -0
  1109. /package/{services → esm/services}/SpotProvisioningServiceNode.js +0 -0
  1110. /package/{services → esm/services}/StreamService.js +0 -0
  1111. /package/{services → esm/services}/TelemetryServiceNode.js +0 -0
  1112. /package/{services → esm/services}/TimeSyncerService.js +0 -0
  1113. /package/{services → esm/services}/UserService.js +0 -0
  1114. /package/{services → esm/services}/WebRTCSignallingService.js +0 -0
  1115. /package/{store → esm/store}/RocosStore.js +0 -0
@@ -1,169 +0,0 @@
1
- import { API_PROJECT_ASSET_PATH_URL, API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL, API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL, API_PROJECT_ASSET_URL, API_PROJECT_FLOW_ASSET_PATH_URL, API_PROJECT_MISSION_ASSETS_PATH_URL, API_PROJECT_MISSION_ASSET_PATH_URL, API_PROJECT_ROBOT_ASSET_PATH_URL, } from '../constants/api';
2
- import { RocosError, errorCodes } from '../models/RocosError';
3
- import { BaseServiceAbstract } from './BaseServiceAbstract';
4
- import { RocosLogger } from '../logger/RocosLogger';
5
- import { formatServiceUrl } from '../helpers/formatServiceUrl';
6
- export class AssetStorageService extends BaseServiceAbstract {
7
- constructor(config) {
8
- super(config);
9
- this.logger = RocosLogger.getInstance(`AssetStorageService(${this.config.url})`);
10
- }
11
- getError(e) {
12
- return new RocosError(e, errorCodes.ASSET_STORAGE_SERVICE_ERROR);
13
- }
14
- getStatus() {
15
- return true;
16
- }
17
- /**
18
- * Create a new project asset
19
- *
20
- * @param projectId - Project Id
21
- * @param filePath - Path to asset file
22
- * @param file - File payload
23
- */
24
- // TODO: map the response object
25
- async create(projectId, filePath, file) {
26
- const formData = new FormData();
27
- formData.append('file', file);
28
- return this.callPut(formatServiceUrl(API_PROJECT_ASSET_PATH_URL, { url: this.config.url, projectId, filePath }, this.config.insecure), formData, `Failed to create asset for ${projectId}, filePath ${filePath}.`);
29
- }
30
- /**
31
- * Update a project asset
32
- *
33
- * @param projectId - Project Id
34
- * @param filePath - Path to asset file
35
- * @param file - File payload
36
- */
37
- // TODO: map the response object
38
- async update(projectId, filePath, file) {
39
- const formData = new FormData();
40
- formData.append('file', file);
41
- return this.callPost(formatServiceUrl(API_PROJECT_ASSET_PATH_URL, { url: this.config.url, projectId, filePath }, this.config.insecure), formData, `Failed to update asset for ${projectId}, filePath ${filePath}.`);
42
- }
43
- /**
44
- * Delete a project asset
45
- *
46
- * @param projectId - Project Id
47
- * @param filePath - Path to asset file
48
- */
49
- // TODO: map the response object
50
- async delete(projectId, filePath) {
51
- return this.callDelete(formatServiceUrl(API_PROJECT_ASSET_PATH_URL, { url: this.config.url, projectId, filePath }, this.config.insecure), `Failed to delete asset for ${projectId}, filePath ${filePath}.`);
52
- }
53
- /**
54
- * Lost assets for a project or project file path
55
- *
56
- * @param projectId - Project Id
57
- * @param filePath - Path to asset file
58
- */
59
- // TODO: map the response object
60
- async list(projectId, filePath) {
61
- let url = '';
62
- if (filePath) {
63
- url = formatServiceUrl(API_PROJECT_ASSET_PATH_URL, { url: this.config.url, projectId, filePath }, this.config.insecure);
64
- }
65
- else {
66
- url = formatServiceUrl(API_PROJECT_ASSET_URL, { url: this.config.url, projectId }, this.config.insecure);
67
- }
68
- return this.callGet(url, `Failed to get asset list for ${projectId}, filePath ${filePath}.`);
69
- }
70
- /**
71
- * Get a project asset
72
- *
73
- * @param projectId - Project Id
74
- * @param filePath - Path to asset file
75
- */
76
- // TODO: map the response object
77
- async getAsset(projectId, filePath) {
78
- return this.callGet(formatServiceUrl(API_PROJECT_ASSET_PATH_URL, { url: this.config.url, projectId, filePath }, this.config.insecure), `Failed to get asset for ${projectId}, filePath ${filePath}.`, undefined, {
79
- responseType: 'blob',
80
- });
81
- }
82
- /**
83
- * List assets for a robot
84
- *
85
- * @param projectId
86
- * @param callsign
87
- * @param parent
88
- * @param signedURL
89
- */
90
- async listRobotAssets(projectId, callsign, parent = '/', signedURL = false) {
91
- return this.callGet(formatServiceUrl(API_PROJECT_ROBOT_ASSET_PATH_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), `Failed to get asset for ${projectId}, callsign ${callsign}.`, { parent, signedURL });
92
- }
93
- /**
94
- * List assets for a flow
95
- *
96
- * @param projectId
97
- * @param flowId
98
- * @param flowInstance
99
- * @param parent
100
- * @param signedURL
101
- */
102
- async listFlowAssets(projectId, flowId, flowInstance, parent = '/', signedURL = false) {
103
- return this.callGet(formatServiceUrl(API_PROJECT_FLOW_ASSET_PATH_URL, { url: this.config.url, projectId, flowId, flowInstance }, this.config.insecure), `Failed to get asset for ${projectId}, flow ${flowId}, flow instance ${flowInstance}.`, { parent, signedURL });
104
- }
105
- /**
106
- * List assets for a mission
107
- *
108
- * @param projectId
109
- * @param assetIdList
110
- */
111
- async listMissionAssets(projectId, assetIdList) {
112
- const searchParams = new URLSearchParams();
113
- assetIdList.forEach((assetId) => searchParams.append('assetID', assetId));
114
- return this.callGet(formatServiceUrl(API_PROJECT_MISSION_ASSETS_PATH_URL, { url: this.config.url, projectId }, this.config.insecure), `Failed to get asset for ${projectId}, assetIdList ${assetIdList}.`, searchParams);
115
- }
116
- /**
117
- * Get a single asset for a mission
118
- *
119
- * @param projectId
120
- * @param assetId
121
- */
122
- async getMissionAsset(projectId, assetId) {
123
- return this.callGet(formatServiceUrl(API_PROJECT_MISSION_ASSET_PATH_URL, { url: this.config.url, projectId, assetId }, this.config.insecure), `Failed to get asset for ${projectId}, dataUUID ${assetId}.`, undefined);
124
- }
125
- /**
126
- * Set Robot Sync Definitions
127
- * @param projectId
128
- * @param callsign
129
- * @param definition
130
- */
131
- setRobotSyncDefinitions(projectId, callsign, definition) {
132
- const httpOptions = {
133
- headers: {
134
- 'content-type': 'application/json',
135
- },
136
- };
137
- return this.callPost(formatServiceUrl(API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), definition, `Failed to update asset for ${projectId}, callsign ${callsign}.`, httpOptions);
138
- }
139
- /**
140
- * Get Robot Sync Definitions
141
- * @param projectId
142
- * @param callsign
143
- */
144
- getRobotSyncDefinitions(projectId, callsign) {
145
- return this.callGet(formatServiceUrl(API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), `Failed to get asset for ${projectId}, callsign ${callsign}.`, undefined);
146
- }
147
- /**
148
- * Set Profile Sync Definitions
149
- * @param projectId
150
- * @param profileId
151
- * @param definition
152
- */
153
- setProfileSyncDefinitions(projectId, profileId, definition) {
154
- const httpOptions = {
155
- headers: {
156
- 'content-type': 'application/json',
157
- },
158
- };
159
- return this.callPost(formatServiceUrl(API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL, { url: this.config.url, projectId, profileId }, this.config.insecure), definition, `Failed to update sync-definition for ${projectId}, callsign ${profileId}.`, httpOptions);
160
- }
161
- /**
162
- * Get Profile Sync Definitions
163
- * @param projectId
164
- * @param profileId
165
- */
166
- getProfileSyncDefinition(projectId, profileId) {
167
- return this.callGet(formatServiceUrl(API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL, { url: this.config.url, projectId, profileId }, this.config.insecure), `Failed to get sync-definition for ${projectId}, callsign ${profileId}.`, undefined);
168
- }
169
- }
@@ -1,93 +0,0 @@
1
- import { IBaseService, IRocosSDKConfig, RocosError, Token } from '../models';
2
- import { BaseServiceAbstract } from './BaseServiceAbstract';
3
- export declare class AuthService extends BaseServiceAbstract implements IBaseService {
4
- protected config: IRocosSDKConfig;
5
- private token?;
6
- private tokenRefreshTimeoutId?;
7
- constructor(config: IRocosSDKConfig);
8
- getStatus(): boolean;
9
- teardown(): void;
10
- protected getError(e: RocosError): RocosError;
11
- /**
12
- * Set the Auth token
13
- * @param value - Token value
14
- */
15
- setToken(value: string | Token): void;
16
- /**
17
- * @deprecated `expiresIn` is now derived from the token. Use `setToken(value: string | Token)` instead
18
- */
19
- setToken(value: string | Token, expiresIn: number): void;
20
- /**
21
- * Clear token
22
- */
23
- clearToken(): void;
24
- /**
25
- * Get the authentication token for application Id and application Key.
26
- */
27
- getAppToken(): Promise<Token>;
28
- /**
29
- * Get new auth token for a user
30
- * @desc This only works for user auth tokens, not appId auth tokens
31
- */
32
- getNewUserToken(): Promise<Token>;
33
- /**
34
- * Get new auth token for a user.
35
- *
36
- * Uses the OTP flow to exchange an external token for a user token.
37
- *
38
- * @desc This only works for user auth tokens, not appId auth tokens
39
- */
40
- private getNewUserTokenFromExternalToken;
41
- /**
42
- * Get the authentication token
43
- *
44
- * This will return the current token if it is not expired, otherwise it will get a new token based on your config.
45
- */
46
- getToken(): Promise<Token>;
47
- /**
48
- * Refresh the authentication token
49
- *
50
- * This only works for user auth tokens, not appId auth tokens.
51
- *
52
- * The new token is not automatically set as the current token. Use `setToken` to set the new token.
53
- *
54
- * @see setToken
55
- * @param token the token to refresh. If not provided, the current token will be used.
56
- */
57
- refreshToken(token?: Token): Promise<Token>;
58
- /** Refresh the token if it is expired or will expire in the next `minutes` minutes
59
- *
60
- * This only works for user auth tokens, not appId auth tokens.
61
- *
62
- * If you want to refresh the token regardless of the expiry time, use `refreshToken`.
63
- *
64
- * @param minutes the number of minutes before the token expires to refresh the token
65
- * @see refreshToken
66
- */
67
- refreshTokenIfExpired(minutes: number): Promise<void>;
68
- /** Start a 5-minute loop to check if the token needs to be refreshed
69
- *
70
- * This is useful when you are using GRPC services (i.e. telemetry) which does not automatically refresh the token.
71
- * It is not required when using REST services as the token is refreshed automatically.
72
- *
73
- * The loop will stop when `stopTokenRefreshChecker` is called.
74
- *
75
- * @see stopTokenRefreshChecker
76
- */
77
- startTokenRefreshChecker(): void;
78
- /**
79
- * Stop the token refresh checker
80
- * @see startTokenRefreshChecker
81
- */
82
- stopTokenRefreshChecker(): void;
83
- /** Check if the token refresh checker is running
84
- *
85
- * @see startTokenRefreshChecker
86
- * @see stopTokenRefreshChecker
87
- * @returns true if the token refresh checker is running
88
- */
89
- isTokenRefreshCheckerRunning(): boolean;
90
- /** Checks if the token is valid for use with the API */
91
- isTokenValid(token: Token): boolean;
92
- private isTokenIssuedByApp;
93
- }
@@ -1,235 +0,0 @@
1
- import { API_APPLICATION_AUTH_URL, API_OTP_AUTH_URL, API_OTP_URL, API_USER_TOKEN_URL } from '../constants/api';
2
- import { RocosError, Token, errorCodes } from '../models';
3
- import { BaseServiceAbstract } from './BaseServiceAbstract';
4
- import { RocosLogger } from '../logger/RocosLogger';
5
- import { RocosStore } from '../store/RocosStore';
6
- import { formatServiceUrl } from '../helpers/formatServiceUrl';
7
- import { issuer } from '../constants/auth';
8
- export class AuthService extends BaseServiceAbstract {
9
- constructor(config) {
10
- super(config);
11
- this.config = config;
12
- this.config = config;
13
- this.logger = RocosLogger.getInstance(`AuthService(${this.config.url})`);
14
- if (this.config.token) {
15
- this.setToken(this.config.token);
16
- }
17
- }
18
- getStatus() {
19
- return true;
20
- }
21
- teardown() {
22
- if (this.isTokenRefreshCheckerRunning()) {
23
- this.logger.debug('Stopping token refresh checker');
24
- this.stopTokenRefreshChecker();
25
- }
26
- }
27
- getError(e) {
28
- return new RocosError(e, errorCodes.AUTH_ERROR, e?.statusCode);
29
- }
30
- setToken(value, expiresIn) {
31
- if (expiresIn !== undefined) {
32
- this.logger.warn('setToken(value, expiresIn) is deprecated. Use setToken(value) instead');
33
- }
34
- if (typeof value === 'string') {
35
- this.token = new Token(value);
36
- }
37
- else {
38
- this.token = value;
39
- }
40
- this.config.token = this.token.value;
41
- // output a message for token change
42
- RocosStore.getChangeSubject().next({ type: 'token', url: this.config.url, data: this.token.value });
43
- }
44
- /**
45
- * Clear token
46
- */
47
- clearToken() {
48
- this.token = undefined;
49
- this.config.token = undefined;
50
- }
51
- /**
52
- * Get the authentication token for application Id and application Key.
53
- */
54
- async getAppToken() {
55
- if (!('appId' in this.config) || !this.config.appId || !('appKey' in this.config) || !this.config.appKey) {
56
- throw new RocosError('Can not get app token, missing appId and appKey', errorCodes.AUTH_ERROR);
57
- }
58
- const res = await this.callPost(formatServiceUrl(API_APPLICATION_AUTH_URL, { url: this.config.url }, this.config.insecure), {
59
- applicationId: this.config.appId,
60
- secret: this.config.appKey,
61
- }, 'Failed to get users auth token.', { public: true });
62
- return new Token(res.token);
63
- }
64
- /**
65
- * Get new auth token for a user
66
- * @desc This only works for user auth tokens, not appId auth tokens
67
- */
68
- async getNewUserToken() {
69
- if (!('token' in this.config) || !this.config.token) {
70
- throw new RocosError('Can not get new app token, missing token', errorCodes.AUTH_ERROR);
71
- }
72
- const token = new Token(this.config.token, this.config.refreshToken);
73
- if (token?.isExpired()) {
74
- throw new RocosError('Token expired', errorCodes.AUTH_ERROR);
75
- }
76
- if (!this.isTokenIssuedByApp(token)) {
77
- this.logger.info('Token is not issued by app. Getting new token from DD token.');
78
- return this.getNewUserTokenFromExternalToken();
79
- }
80
- return this.refreshToken(token);
81
- }
82
- /**
83
- * Get new auth token for a user.
84
- *
85
- * Uses the OTP flow to exchange an external token for a user token.
86
- *
87
- * @desc This only works for user auth tokens, not appId auth tokens
88
- */
89
- async getNewUserTokenFromExternalToken() {
90
- if (!('token' in this.config) || !this.config.token) {
91
- throw new RocosError('Can not get new token, missing token', errorCodes.AUTH_ERROR);
92
- }
93
- const ddToken = new Token(this.config.token);
94
- const { otp } = await this.callPost(formatServiceUrl(API_OTP_URL, { url: this.config.url }, this.config.insecure), undefined, 'Failed to get one time password.', { public: true, headers: { Authorization: ddToken.bearer } });
95
- const { token, refreshToken } = await this.callPost(formatServiceUrl(API_OTP_AUTH_URL, { url: this.config.url }, this.config.insecure), { otp }, 'Failed to get users auth token.', { public: true });
96
- return new Token(token, refreshToken);
97
- }
98
- /**
99
- * Get the authentication token
100
- *
101
- * This will return the current token if it is not expired, otherwise it will get a new token based on your config.
102
- */
103
- async getToken() {
104
- if (this.token && this.isTokenValid(this.token)) {
105
- if (this.token.isExpiredIn(15, 'minutes')) {
106
- this.logger.info('Token expires within 15 minutes. Refreshing.');
107
- const newToken = await this.refreshToken();
108
- this.setToken(newToken);
109
- return newToken;
110
- }
111
- return this.token;
112
- }
113
- let token;
114
- try {
115
- if ('appId' in this.config && 'appKey' in this.config) {
116
- token = await this.getAppToken();
117
- }
118
- else if ('token' in this.config) {
119
- token = await this.getNewUserToken();
120
- }
121
- }
122
- catch (e) {
123
- const message = 'Failed to get auth token.';
124
- this.logger.error(message, e);
125
- if (e instanceof Error) {
126
- e.message = message;
127
- throw new RocosError(e, errorCodes.AUTH_ERROR);
128
- }
129
- else {
130
- throw new RocosError(message, errorCodes.AUTH_ERROR);
131
- }
132
- }
133
- if (!token) {
134
- const message = 'Failed to get auth token. Config invalid.';
135
- this.logger.error(message);
136
- throw new RocosError(message, errorCodes.AUTH_ERROR);
137
- }
138
- this.setToken(token);
139
- return token;
140
- }
141
- /**
142
- * Refresh the authentication token
143
- *
144
- * This only works for user auth tokens, not appId auth tokens.
145
- *
146
- * The new token is not automatically set as the current token. Use `setToken` to set the new token.
147
- *
148
- * @see setToken
149
- * @param token the token to refresh. If not provided, the current token will be used.
150
- */
151
- async refreshToken(token) {
152
- const tokenToRefresh = token ?? this.token;
153
- if (!tokenToRefresh) {
154
- throw new RocosError('No token to refresh', errorCodes.AUTH_ERROR);
155
- }
156
- const res = await this.callGet(formatServiceUrl(API_USER_TOKEN_URL, { url: this.config.url }, this.config.insecure), 'Failed to get users auth token.', undefined, { public: true, headers: { Authorization: tokenToRefresh.bearer } });
157
- return new Token(res.token, res.refreshToken);
158
- }
159
- /** Refresh the token if it is expired or will expire in the next `minutes` minutes
160
- *
161
- * This only works for user auth tokens, not appId auth tokens.
162
- *
163
- * If you want to refresh the token regardless of the expiry time, use `refreshToken`.
164
- *
165
- * @param minutes the number of minutes before the token expires to refresh the token
166
- * @see refreshToken
167
- */
168
- async refreshTokenIfExpired(minutes) {
169
- if (this.token?.isExpiredIn(minutes, 'minutes')) {
170
- this.logger.info('Token expires in 15 minutes. Refreshing.');
171
- const newToken = await this.refreshToken();
172
- this.setToken(newToken);
173
- }
174
- }
175
- /** Start a 5-minute loop to check if the token needs to be refreshed
176
- *
177
- * This is useful when you are using GRPC services (i.e. telemetry) which does not automatically refresh the token.
178
- * It is not required when using REST services as the token is refreshed automatically.
179
- *
180
- * The loop will stop when `stopTokenRefreshChecker` is called.
181
- *
182
- * @see stopTokenRefreshChecker
183
- */
184
- startTokenRefreshChecker() {
185
- const maxInterval = 1000 * 60 * 10; // 10 minutes
186
- const minInterval = 1000 * 60; // 1 minute
187
- const threshold = 1000 * 60 * 15; // 15 minutes
188
- if (this.isTokenRefreshCheckerRunning())
189
- return;
190
- if (!this.token)
191
- throw new RocosError('No token to refresh', errorCodes.AUTH_ERROR);
192
- if (!this.isTokenValid(this.token))
193
- throw new RocosError('Token is not valid', errorCodes.AUTH_ERROR);
194
- const loop = () => {
195
- this.logger.debug('Checking scheduled token refresh');
196
- this.refreshTokenIfExpired(15)
197
- .catch((e) => {
198
- this.logger.error('Failed to refresh token', e);
199
- })
200
- .finally(() => {
201
- if (!this.token?.expires)
202
- return;
203
- // schedule next check
204
- const timeTillThreshold = this.token.expires.getTime() - Date.now() - threshold;
205
- const interval = Math.max(minInterval, Math.min(maxInterval, timeTillThreshold));
206
- this.tokenRefreshTimeoutId = setTimeout(() => loop(), interval);
207
- });
208
- };
209
- loop();
210
- }
211
- /**
212
- * Stop the token refresh checker
213
- * @see startTokenRefreshChecker
214
- */
215
- stopTokenRefreshChecker() {
216
- clearTimeout(this.tokenRefreshTimeoutId);
217
- this.tokenRefreshTimeoutId = undefined;
218
- }
219
- /** Check if the token refresh checker is running
220
- *
221
- * @see startTokenRefreshChecker
222
- * @see stopTokenRefreshChecker
223
- * @returns true if the token refresh checker is running
224
- */
225
- isTokenRefreshCheckerRunning() {
226
- return this.tokenRefreshTimeoutId !== undefined;
227
- }
228
- /** Checks if the token is valid for use with the API */
229
- isTokenValid(token) {
230
- return !token.isExpired() && this.isTokenIssuedByApp(token);
231
- }
232
- isTokenIssuedByApp(token) {
233
- return token.issuer === issuer;
234
- }
235
- }
@@ -1,163 +0,0 @@
1
- import { issuer } from '../constants/auth';
2
- import { AuthService } from './AuthService';
3
- import { Token } from '../models';
4
- describe('authService', () => {
5
- const baseDate = new Date(2021, 0, 1, 0, 0, 0, 0);
6
- beforeEach(() => {
7
- jest.useFakeTimers();
8
- jest.setSystemTime(baseDate);
9
- });
10
- const expiredDate = new Date(baseDate.getTime() - 1000 * 60 * 5); // 5 minutes ago
11
- const almostExpiredDate = new Date(baseDate.getTime() + 1000 * 60 * 5); // 5 minutes from now
12
- const almostAlmostExpiredDate = new Date(baseDate.getTime() + 1000 * 60 * 25); // 35 minutes from now
13
- const notExpiredDate = new Date(baseDate.getTime() + 1000 * 60 * 60 * 24); // 1 day from now
14
- const getToken = (config) => {
15
- const header = {
16
- alg: 'HS256',
17
- typ: 'JWT',
18
- };
19
- const payload = {
20
- iat: Math.floor((config.iat ?? expiredDate).getTime() / 1000),
21
- exp: Math.floor((config.exp ?? notExpiredDate).getTime() / 1000),
22
- iss: config.iss ?? issuer,
23
- aud: config.aud ?? 'myaudience',
24
- sub: config.sub ?? 'mysubject',
25
- };
26
- const encodedHeader = Buffer.from(JSON.stringify(header)).toString('base64');
27
- const encodedPayload = Buffer.from(JSON.stringify(payload)).toString('base64');
28
- if (config.signature === false) {
29
- return `${encodedHeader}.${encodedPayload}`;
30
- }
31
- return `${encodedHeader}.${encodedPayload}.signature`;
32
- };
33
- afterAll(() => jest.useRealTimers());
34
- describe('getToken', () => {
35
- it('should return the current token if it is not expired', async () => {
36
- // Arrange
37
- const token = getToken({ exp: notExpiredDate });
38
- const service = new AuthService({
39
- token,
40
- url: 'http://localhost:0',
41
- });
42
- service.setToken(token);
43
- // Act
44
- const newToken = await service.getToken();
45
- // Assert
46
- expect(newToken.value).toEqual(token);
47
- });
48
- it('should refresh the token if it is about to expire', async () => {
49
- // Arrange
50
- const token = getToken({ exp: almostExpiredDate });
51
- const service = new AuthService({
52
- token,
53
- url: 'http://localhost:0',
54
- });
55
- service.setToken(token);
56
- const expected = getToken({ signature: false });
57
- jest.spyOn(AuthService.prototype, 'refreshToken').mockResolvedValue(new Token(expected));
58
- // Act
59
- const newToken = await service.getToken();
60
- // Assert
61
- expect(newToken.value).not.toEqual(token);
62
- expect(newToken.value).toEqual(expected);
63
- expect(AuthService.prototype.refreshToken).toHaveBeenCalled();
64
- });
65
- it('should get a new token if there is no current token', async () => {
66
- // Arrange
67
- const token = getToken({ signature: false });
68
- const service = new AuthService({
69
- url: 'http://localhost:0',
70
- token,
71
- });
72
- service.clearToken();
73
- const expected = getToken({ signature: false });
74
- jest.spyOn(AuthService.prototype, 'getNewUserToken').mockResolvedValue(new Token(expected));
75
- // Act
76
- const newToken = await service.getToken();
77
- // Assert
78
- expect(newToken.value).toEqual(expected);
79
- expect(AuthService.prototype.getNewUserToken).toHaveBeenCalled();
80
- });
81
- });
82
- describe('tokenRefreshLoop', () => {
83
- jest.spyOn(AuthService.prototype, 'refreshTokenIfExpired').mockImplementation(() => {
84
- // make sure the promise is resolved synchronously
85
- return {
86
- catch: () => {
87
- return {
88
- finally(onfinally) {
89
- onfinally?.();
90
- return Promise.resolve();
91
- },
92
- };
93
- },
94
- };
95
- });
96
- beforeEach(() => {
97
- jest.clearAllTimers();
98
- jest.clearAllMocks();
99
- jest.useFakeTimers();
100
- jest.setSystemTime(baseDate);
101
- });
102
- it('should check the token every 10 minutes', async () => {
103
- // Arrange
104
- const token = getToken({ exp: almostAlmostExpiredDate });
105
- const service = new AuthService({
106
- token,
107
- url: 'http://localhost:0',
108
- });
109
- service.setToken(token);
110
- // Act
111
- service.startTokenRefreshChecker();
112
- expect(AuthService.prototype.refreshTokenIfExpired).toHaveBeenCalledTimes(1);
113
- jest.advanceTimersByTime(1000 * 60 * 10); // 10 minutes
114
- expect(AuthService.prototype.refreshTokenIfExpired).toHaveBeenCalledTimes(2);
115
- jest.advanceTimersByTime(1000 * 60); // 1 minutes - 24 minutes left
116
- expect(AuthService.prototype.refreshTokenIfExpired).toHaveBeenCalledTimes(3);
117
- jest.advanceTimersByTime(1000 * 60 * 10); // 10 minutes - 14 minutes left
118
- jest.runOnlyPendingTimers(); // wait for the next timer to run
119
- service.stopTokenRefreshChecker();
120
- });
121
- it('should not run again when cancelled', () => {
122
- // Arrange
123
- const token = getToken({ exp: notExpiredDate });
124
- const service = new AuthService({
125
- token,
126
- url: 'http://localhost:0',
127
- });
128
- service.setToken(token);
129
- // Act
130
- service.startTokenRefreshChecker();
131
- expect(AuthService.prototype.refreshTokenIfExpired).toHaveBeenCalledTimes(1);
132
- service.stopTokenRefreshChecker();
133
- jest.runOnlyPendingTimers();
134
- expect(AuthService.prototype.refreshTokenIfExpired).toHaveBeenCalledTimes(1);
135
- });
136
- it('should correctly report running status', () => {
137
- const token = getToken({ exp: notExpiredDate });
138
- const service = new AuthService({
139
- token,
140
- url: 'http://localhost:0',
141
- });
142
- service.setToken(token);
143
- expect(service.isTokenRefreshCheckerRunning()).toBe(false);
144
- service.startTokenRefreshChecker();
145
- expect(service.isTokenRefreshCheckerRunning()).toBe(true);
146
- service.stopTokenRefreshChecker();
147
- expect(service.isTokenRefreshCheckerRunning()).toBe(false);
148
- });
149
- it('should correctly report running status', () => {
150
- const token = getToken({ exp: notExpiredDate });
151
- const service = new AuthService({
152
- token,
153
- url: 'http://localhost:0',
154
- });
155
- service.setToken(token);
156
- expect(service.isTokenRefreshCheckerRunning()).toBe(false);
157
- service.startTokenRefreshChecker();
158
- expect(service.isTokenRefreshCheckerRunning()).toBe(true);
159
- service.stopTokenRefreshChecker();
160
- expect(service.isTokenRefreshCheckerRunning()).toBe(false);
161
- });
162
- });
163
- });