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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1074) hide show
  1. package/cjs/IRocosSDK.d.ts +34 -0
  2. package/cjs/IRocosSDK.js +6 -0
  3. package/cjs/RocosSDK.d.ts +148 -0
  4. package/cjs/RocosSDK.js +316 -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 +81 -0
  8. package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
  9. package/cjs/api/streams/caller/CallerStreamNode.js +142 -0
  10. package/cjs/api/streams/command/CommandStream.js +70 -0
  11. package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
  12. package/cjs/api/streams/command/CommandStreamNode.js +96 -0
  13. package/cjs/api/streams/control/ControlStream.js +79 -0
  14. package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
  15. package/cjs/api/streams/control/ControlStreamNode.js +100 -0
  16. package/cjs/api/streams/fileAccessor/FileAccessorStream.js +63 -0
  17. package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
  18. package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +93 -0
  19. package/cjs/api/streams/search/SearchStream.js +100 -0
  20. package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
  21. package/cjs/api/streams/search/SearchStreamNode.js +145 -0
  22. package/cjs/api/streams/telemetry/TelemetryStream.js +101 -0
  23. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
  24. package/cjs/api/streams/telemetry/TelemetryStreamNode.js +202 -0
  25. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
  26. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
  27. package/cjs/constants/api.d.ts +133 -0
  28. package/cjs/constants/api.js +138 -0
  29. package/cjs/constants/auth.js +5 -0
  30. package/cjs/constants/grpc.js +8 -0
  31. package/cjs/constants/identifier.js +9 -0
  32. package/cjs/constants/timezones.js +430 -0
  33. package/cjs/grpc/conker_pb.client.js +59 -0
  34. package/cjs/grpc/conker_pb.grpc-client.js +85 -0
  35. package/cjs/grpc/conker_pb.js +107 -0
  36. package/cjs/grpc/filagree_pb.client.js +52 -0
  37. package/cjs/grpc/filagree_pb.grpc-client.js +78 -0
  38. package/cjs/grpc/filagree_pb.js +332 -0
  39. package/cjs/grpc/google/protobuf/descriptor_pb.js +2381 -0
  40. package/cjs/grpc/google/protobuf/empty_pb.js +50 -0
  41. package/cjs/grpc/pigeon_pb.client.js +77 -0
  42. package/cjs/grpc/pigeon_pb.grpc-client.js +96 -0
  43. package/cjs/grpc/pigeon_pb.js +147 -0
  44. package/cjs/grpc/rambo.uri.v1_pb.js +51 -0
  45. package/cjs/grpc/rambo.v1_pb.client.js +53 -0
  46. package/cjs/grpc/rambo.v1_pb.grpc-client.js +72 -0
  47. package/cjs/grpc/rambo.v1_pb.js +275 -0
  48. package/cjs/grpc/serviette.uri.v1_pb.js +65 -0
  49. package/cjs/grpc/serviette.v1_pb.client.js +183 -0
  50. package/cjs/grpc/serviette.v1_pb.grpc-client.js +194 -0
  51. package/cjs/grpc/serviette.v1_pb.js +556 -0
  52. package/cjs/grpc/slowlane_pb.client.js +45 -0
  53. package/cjs/grpc/slowlane_pb.grpc-client.js +71 -0
  54. package/cjs/grpc/slowlane_pb.js +188 -0
  55. package/cjs/grpc/teletubby_pb.client.js +109 -0
  56. package/cjs/grpc/teletubby_pb.grpc-client.js +128 -0
  57. package/cjs/grpc/teletubby_pb.js +1267 -0
  58. package/cjs/helpers/arrayRemove.js +7 -0
  59. package/cjs/helpers/arrayUnique.js +7 -0
  60. package/cjs/helpers/average.js +10 -0
  61. package/cjs/helpers/callerMessageHelpers.d.ts +14 -0
  62. package/cjs/helpers/callerMessageHelpers.js +91 -0
  63. package/cjs/helpers/cleanObject.js +22 -0
  64. package/cjs/helpers/cleanObject.spec.js +55 -0
  65. package/cjs/helpers/enviroment.js +17 -0
  66. package/cjs/helpers/flattenCallsignsLookup.js +10 -0
  67. package/cjs/helpers/flattenObject.js +17 -0
  68. package/cjs/helpers/flattenObject.spec.js +31 -0
  69. package/cjs/helpers/flattenOneOf.js +34 -0
  70. package/cjs/helpers/flattenOneOf.spec.js +159 -0
  71. package/cjs/helpers/formatServiceUrl.js +11 -0
  72. package/cjs/helpers/formatServiceUrl.spec.js +18 -0
  73. package/cjs/helpers/generateUUID.js +8 -0
  74. package/cjs/helpers/getSubscriptionsDifference.js +39 -0
  75. package/cjs/helpers/getURLSearchParams.js +13 -0
  76. package/cjs/helpers/getURLSearchParams.spec.js +21 -0
  77. package/cjs/helpers/getUniqueConfigKey.js +18 -0
  78. package/cjs/helpers/getUniqueId.js +15 -0
  79. package/cjs/helpers/getUnixTimeMs.js +8 -0
  80. package/cjs/helpers/index.js +21 -0
  81. package/cjs/helpers/nanosecondToMillisecond.js +16 -0
  82. package/cjs/helpers/nanosecondToMillisecond.spec.js +22 -0
  83. package/cjs/helpers/randomString.js +7 -0
  84. package/cjs/helpers/splitRobotTopic.d.ts +9 -0
  85. package/cjs/helpers/splitRobotTopic.js +16 -0
  86. package/cjs/helpers/splitRobotTopic.spec.js +53 -0
  87. package/cjs/helpers/standardDeviation.js +16 -0
  88. package/cjs/helpers/standardDeviation.spec.js +13 -0
  89. package/cjs/helpers/stringToUint8Array.js +14 -0
  90. package/cjs/helpers/uint8ArrayToString.js +14 -0
  91. package/cjs/helpers/websandbox/connection.js +136 -0
  92. package/cjs/helpers/websandbox/frame/frame.js +27 -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.js +70 -0
  97. package/cjs/helpers/websandbox/frame/worker/manager.spec.js +132 -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/CallsignStatus.js +10 -0
  108. package/cjs/models/ExportDataQuery.js +17 -0
  109. package/cjs/models/ExternalProject.js +6 -0
  110. package/cjs/models/IBaseService.js +2 -0
  111. package/cjs/models/IConfigGroup.js +2 -0
  112. package/cjs/models/IDebugLevel.js +2 -0
  113. package/cjs/models/IExportDataQuery.js +2 -0
  114. package/cjs/models/IFunctionConfig.js +2 -0
  115. package/cjs/models/IInvitation.js +2 -0
  116. package/cjs/models/IInvitationExists.js +2 -0
  117. package/cjs/models/IOperation.js +2 -0
  118. package/cjs/models/IPersonalAccessToken.js +2 -0
  119. package/cjs/models/IProject.js +2 -0
  120. package/cjs/models/IProjectApplication.js +2 -0
  121. package/cjs/models/IRobot.js +2 -0
  122. package/cjs/models/IRobotConfig.js +2 -0
  123. package/cjs/models/IRobotPlugin.js +2 -0
  124. package/cjs/models/IRobotSettings.js +2 -0
  125. package/cjs/models/IRobotTemplate.js +2 -0
  126. package/cjs/models/IRocosSDKConfig.js +2 -0
  127. package/cjs/models/ISource.js +2 -0
  128. package/cjs/models/IStream.js +2 -0
  129. package/cjs/models/IStreamConfig.js +2 -0
  130. package/cjs/models/IStreamOptions.js +2 -0
  131. package/cjs/models/IStreamSource.js +2 -0
  132. package/cjs/models/ISubscriberStatus.js +2 -0
  133. package/cjs/models/ITelemetryStreamConfig.js +2 -0
  134. package/cjs/models/IToken.js +2 -0
  135. package/cjs/models/IWidget.js +2 -0
  136. package/cjs/models/IWidgetLineGroup.js +2 -0
  137. package/cjs/models/ResponseLevelEnum.js +14 -0
  138. package/cjs/models/Robot.js +12 -0
  139. package/cjs/models/RobotConfig.js +9 -0
  140. package/cjs/models/RobotPlugin.js +9 -0
  141. package/cjs/models/RobotTemplate.js +29 -0
  142. package/cjs/models/RocosError.d.ts +32 -0
  143. package/cjs/models/RocosError.js +45 -0
  144. package/cjs/models/ServiceEnum.d.ts +28 -0
  145. package/cjs/models/ServiceEnum.js +32 -0
  146. package/cjs/models/Stream.js +15 -0
  147. package/cjs/models/StreamOptions.js +37 -0
  148. package/cjs/models/StreamSource.js +15 -0
  149. package/cjs/models/SubscriberStatusEnum.js +10 -0
  150. package/cjs/models/Token.js +82 -0
  151. package/cjs/models/Token.spec.js +110 -0
  152. package/cjs/models/Widget.js +16 -0
  153. package/cjs/models/WidgetLineGroup.js +9 -0
  154. package/cjs/models/asset-storage/AssetModelItem.d.ts +14 -0
  155. package/cjs/models/asset-storage/AssetModelItem.js +2 -0
  156. package/cjs/models/asset-storage/SyncIntegrations.d.ts +31 -0
  157. package/cjs/models/asset-storage/SyncIntegrations.js +2 -0
  158. package/cjs/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  159. package/cjs/models/caller/IRocosCallerMessageChunk.js +2 -0
  160. package/cjs/models/caller/IRocosCallerMessageChunks.js +2 -0
  161. package/cjs/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
  162. package/cjs/models/caller/IRocosCallerMessageResponse.js +2 -0
  163. package/cjs/models/caller/IRocosCallerMessageResponseAck.js +16 -0
  164. package/cjs/models/caller/IRocosCallerMessageResponseResult.js +15 -0
  165. package/cjs/models/caller/IRocosCallerMessageResponseReturn.js +2 -0
  166. package/cjs/models/caller/IRocosCallerMessageResponseUid.js +10 -0
  167. package/cjs/models/caller/IRocosCallerMessageResponses.js +2 -0
  168. package/cjs/models/caller/RocosCallerResultStatus.js +15 -0
  169. package/cjs/models/caller/RocosResponseLevel.js +10 -0
  170. package/cjs/models/caller/index.d.ts +11 -0
  171. package/cjs/models/caller/index.js +27 -0
  172. package/cjs/models/callsigns/CallsignsEnums.js +20 -0
  173. package/cjs/models/callsigns/CallsignsLookup.js +32 -0
  174. package/cjs/models/callsigns/CallsignsQuery.js +18 -0
  175. package/cjs/models/callsigns/CallsignsQueryPredicate.js +19 -0
  176. package/cjs/models/command/IRocosCommandMessageHeartbeat.js +2 -0
  177. package/cjs/models/command/IRocosCommandMessageResponse.js +30 -0
  178. package/cjs/models/command/RocosCommandResultStatus.js +15 -0
  179. package/cjs/models/command/index.js +20 -0
  180. package/cjs/models/file/FileEnums.js +36 -0
  181. package/cjs/models/index.d.ts +77 -0
  182. package/cjs/models/index.js +93 -0
  183. package/cjs/models/integrations/Overlay.js +2 -0
  184. package/cjs/models/integrations/Plan.js +2 -0
  185. package/cjs/models/maps/Map.js +2 -0
  186. package/cjs/models/maps/Panorama.d.ts +36 -0
  187. package/cjs/models/maps/Panorama.js +2 -0
  188. package/cjs/models/message/IRocosCallerMessage.js +2 -0
  189. package/cjs/models/message/IRocosChangeMessage.js +2 -0
  190. package/cjs/models/message/IRocosCommandMessage.js +2 -0
  191. package/cjs/models/message/IRocosControlMessage.js +2 -0
  192. package/cjs/models/message/IRocosOpResultMessage.js +2 -0
  193. package/cjs/models/message/IRocosSearchMessage.js +2 -0
  194. package/cjs/models/message/IRocosSearchRowMessage.js +2 -0
  195. package/cjs/models/message/IRocosSearchStatusMessage.js +2 -0
  196. package/cjs/models/message/IRocosTelemetryMessage.d.ts +23 -0
  197. package/cjs/models/message/IRocosTelemetryMessage.js +2 -0
  198. package/cjs/models/message/IStreamStatusMessage.js +2 -0
  199. package/cjs/models/message/RocosCallerMessage.js +36 -0
  200. package/cjs/models/message/RocosCommandMessage.js +17 -0
  201. package/cjs/models/message/RocosControlMessage.js +18 -0
  202. package/cjs/models/message/RocosOpResultMessage.js +22 -0
  203. package/cjs/models/message/RocosSearchMessage.js +28 -0
  204. package/cjs/models/message/RocosSearchRowMessage.js +20 -0
  205. package/cjs/models/message/RocosTelemetryMessage.js +67 -0
  206. package/cjs/models/message/index.js +33 -0
  207. package/cjs/models/params/ICallerParams.d.ts +26 -0
  208. package/cjs/models/params/ICallerParams.js +2 -0
  209. package/cjs/models/params/ICommandParams.js +2 -0
  210. package/cjs/models/params/IControlParams.js +2 -0
  211. package/cjs/models/params/IFileAccessorParams.js +2 -0
  212. package/cjs/models/params/ISearchParams.js +2 -0
  213. package/cjs/models/params/ITelemetryParams.js +2 -0
  214. package/cjs/models/params/IWebRTCSignallingParams.js +2 -0
  215. package/cjs/models/projects/ProjectUser.js +2 -0
  216. package/cjs/models/schedule/IScheduleAction.js +9 -0
  217. package/cjs/models/schedule/IScheduleInfo.js +2 -0
  218. package/cjs/models/schedule/IScheduleJob.js +2 -0
  219. package/cjs/models/search/SearchQueryFilter.js +9 -0
  220. package/cjs/models/search/SearchStreamQuery.js +10 -0
  221. package/cjs/models/stream/IBaseStream.js +2 -0
  222. package/cjs/models/stream/ICallerStream.js +2 -0
  223. package/cjs/models/stream/ICommandStream.js +2 -0
  224. package/cjs/models/stream/IControlStream.js +2 -0
  225. package/cjs/models/stream/IFileAccessorStream.js +2 -0
  226. package/cjs/models/stream/ISearchStream.js +2 -0
  227. package/cjs/models/stream/ITelemetryStream.js +2 -0
  228. package/cjs/models/stream/IWebRTCSignallingStream.js +2 -0
  229. package/cjs/models/types.js +2 -0
  230. package/cjs/models/workflow/Workflow.d.ts +36 -0
  231. package/cjs/models/workflow/Workflow.js +2 -0
  232. package/cjs/node/RocosSDKNode.d.ts +52 -0
  233. package/cjs/node/RocosSDKNode.js +161 -0
  234. package/cjs/node/index.js +23 -0
  235. package/cjs/services/AssetStorageService.d.ts +144 -0
  236. package/cjs/services/AssetStorageService.js +225 -0
  237. package/cjs/services/AuthService.js +239 -0
  238. package/cjs/services/AuthService.spec.js +165 -0
  239. package/cjs/services/BaseServiceAbstract.js +101 -0
  240. package/cjs/services/BaseStreamService.js +51 -0
  241. package/cjs/services/CallerService.d.ts +42 -0
  242. package/cjs/services/CallerService.js +121 -0
  243. package/cjs/services/CallerService.spec.js +229 -0
  244. package/cjs/services/CallerServiceNode.js +11 -0
  245. package/cjs/services/CommandService.js +42 -0
  246. package/cjs/services/CommandServiceNode.js +11 -0
  247. package/cjs/services/ConfigGroupService.js +157 -0
  248. package/cjs/services/ControlService.js +61 -0
  249. package/cjs/services/ControlServiceNode.js +11 -0
  250. package/cjs/services/DashboardService.js +146 -0
  251. package/cjs/services/EvaluatorService.js +32 -0
  252. package/cjs/services/EventService.js +89 -0
  253. package/cjs/services/FileAccessorService.js +41 -0
  254. package/cjs/services/FileAccessorServiceNode.js +11 -0
  255. package/cjs/services/FunctionService.js +103 -0
  256. package/cjs/services/IntegrationService.js +76 -0
  257. package/cjs/services/MapService.d.ts +142 -0
  258. package/cjs/services/MapService.js +196 -0
  259. package/cjs/services/PlatformTimeService.js +160 -0
  260. package/cjs/services/PlatformTimeService.spec.js +182 -0
  261. package/cjs/services/ProfileService.js +366 -0
  262. package/cjs/services/ProjectService.js +164 -0
  263. package/cjs/services/RTPWebRTCService.d.ts +102 -0
  264. package/cjs/services/RTPWebRTCService.js +232 -0
  265. package/cjs/services/RTPWebRTCService.spec.d.ts +4 -0
  266. package/cjs/services/RTPWebRTCService.spec.js +171 -0
  267. package/cjs/services/RobotService.js +464 -0
  268. package/cjs/services/ScheduleService.js +40 -0
  269. package/cjs/services/SearchService.js +62 -0
  270. package/cjs/services/SearchServiceNode.js +11 -0
  271. package/cjs/services/SpotProvisioningService.js +47 -0
  272. package/cjs/services/SpotProvisioningServiceNode.js +47 -0
  273. package/cjs/services/StreamService.js +146 -0
  274. package/cjs/services/TelemetryService.d.ts +41 -0
  275. package/cjs/services/TelemetryService.js +158 -0
  276. package/cjs/services/TelemetryService.spec.js +39 -0
  277. package/cjs/services/TelemetryServiceNode.js +11 -0
  278. package/cjs/services/TimeSyncerService.js +27 -0
  279. package/cjs/services/UserService.js +319 -0
  280. package/cjs/services/WebRTCSignallingService.js +82 -0
  281. package/cjs/services/WorkflowService.d.ts +67 -0
  282. package/cjs/services/WorkflowService.js +90 -0
  283. package/cjs/services/index.d.ts +28 -0
  284. package/cjs/services/index.js +44 -0
  285. package/cjs/store/RocosStore.js +51 -0
  286. package/esm/IRocosSDK.d.ts +34 -0
  287. package/esm/RocosSDK.d.ts +148 -0
  288. package/esm/RocosSDK.js +312 -0
  289. package/esm/api/StreamRegister.d.ts +13 -0
  290. package/esm/api/atoms/StreamHeartbeat.d.ts +27 -0
  291. package/esm/api/streams/caller/CallerStream.d.ts +13 -0
  292. package/esm/api/streams/caller/CallerStreamAbstract.d.ts +23 -0
  293. package/esm/api/streams/caller/CallerStreamNode.d.ts +13 -0
  294. package/esm/api/streams/command/CommandStream.d.ts +10 -0
  295. package/esm/api/streams/command/CommandStreamAbstract.d.ts +20 -0
  296. package/esm/api/streams/command/CommandStreamNode.d.ts +10 -0
  297. package/esm/api/streams/control/ControlStream.d.ts +12 -0
  298. package/esm/api/streams/control/ControlStreamAbstract.d.ts +25 -0
  299. package/esm/api/streams/control/ControlStreamNode.d.ts +12 -0
  300. package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
  301. package/esm/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +21 -0
  302. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +8 -0
  303. package/esm/api/streams/search/SearchStream.d.ts +13 -0
  304. package/esm/api/streams/search/SearchStreamAbstract.d.ts +25 -0
  305. package/esm/api/streams/search/SearchStreamNode.d.ts +13 -0
  306. package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
  307. package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
  308. package/esm/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
  309. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
  310. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
  311. package/esm/constants/api.d.ts +133 -0
  312. package/esm/constants/api.js +133 -0
  313. package/esm/constants/auth.d.ts +2 -0
  314. package/esm/constants/grpc.d.ts +5 -0
  315. package/esm/constants/identifier.d.ts +6 -0
  316. package/esm/constants/timezones.d.ts +2 -0
  317. package/esm/grpc/conker_pb.client.d.ts +78 -0
  318. package/esm/grpc/conker_pb.d.ts +141 -0
  319. package/esm/grpc/conker_pb.grpc-client.d.ts +81 -0
  320. package/esm/grpc/filagree_pb.client.d.ts +68 -0
  321. package/esm/grpc/filagree_pb.d.ts +404 -0
  322. package/esm/grpc/filagree_pb.grpc-client.d.ts +69 -0
  323. package/esm/grpc/google/protobuf/descriptor_pb.d.ts +1798 -0
  324. package/esm/grpc/google/protobuf/empty_pb.d.ts +23 -0
  325. package/esm/grpc/pigeon_pb.client.d.ts +96 -0
  326. package/esm/grpc/pigeon_pb.d.ts +207 -0
  327. package/esm/grpc/pigeon_pb.grpc-client.d.ts +98 -0
  328. package/esm/grpc/rambo.uri.v1_pb.d.ts +73 -0
  329. package/esm/grpc/rambo.v1_pb.client.d.ts +66 -0
  330. package/esm/grpc/rambo.v1_pb.d.ts +392 -0
  331. package/esm/grpc/rambo.v1_pb.grpc-client.d.ts +56 -0
  332. package/esm/grpc/serviette.uri.v1_pb.d.ts +89 -0
  333. package/esm/grpc/serviette.v1_pb.client.d.ts +225 -0
  334. package/esm/grpc/serviette.v1_pb.d.ts +827 -0
  335. package/esm/grpc/serviette.v1_pb.grpc-client.d.ts +215 -0
  336. package/esm/grpc/slowlane_pb.client.d.ts +61 -0
  337. package/esm/grpc/slowlane_pb.d.ts +303 -0
  338. package/esm/grpc/slowlane_pb.grpc-client.d.ts +64 -0
  339. package/esm/grpc/teletubby_pb.client.d.ts +145 -0
  340. package/esm/grpc/teletubby_pb.d.ts +634 -0
  341. package/esm/grpc/teletubby_pb.grpc-client.d.ts +152 -0
  342. package/esm/helpers/arrayRemove.d.ts +1 -0
  343. package/esm/helpers/arrayUnique.d.ts +1 -0
  344. package/esm/helpers/average.d.ts +1 -0
  345. package/esm/helpers/callerMessageHelpers.d.ts +14 -0
  346. package/esm/helpers/callerMessageHelpers.js +86 -0
  347. package/esm/helpers/cleanObject.d.ts +1 -0
  348. package/esm/helpers/enviroment.d.ts +8 -0
  349. package/esm/helpers/flattenCallsignsLookup.d.ts +2 -0
  350. package/esm/helpers/flattenObject.d.ts +1 -0
  351. package/esm/helpers/flattenOneOf.d.ts +67 -0
  352. package/esm/helpers/formatServiceUrl.d.ts +1 -0
  353. package/esm/helpers/generateUUID.d.ts +1 -0
  354. package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
  355. package/esm/helpers/getURLSearchParams.d.ts +2 -0
  356. package/esm/helpers/getUniqueConfigKey.d.ts +7 -0
  357. package/esm/helpers/getUniqueId.d.ts +9 -0
  358. package/esm/helpers/getUnixTimeMs.d.ts +1 -0
  359. package/esm/helpers/index.js +5 -0
  360. package/esm/helpers/nanosecondToMillisecond.d.ts +1 -0
  361. package/esm/helpers/randomString.d.ts +1 -0
  362. package/esm/helpers/splitRobotTopic.d.ts +9 -0
  363. package/esm/helpers/splitRobotTopic.js +12 -0
  364. package/esm/helpers/splitRobotTopic.spec.js +51 -0
  365. package/esm/helpers/standardDeviation.d.ts +1 -0
  366. package/esm/helpers/stringToUint8Array.d.ts +1 -0
  367. package/esm/helpers/uint8ArrayToString.d.ts +1 -0
  368. package/esm/helpers/websandbox/connection.d.ts +67 -0
  369. package/esm/helpers/websandbox/frame/frame.d.ts +12 -0
  370. package/esm/helpers/websandbox/frame/frame.source.d.ts +2 -0
  371. package/esm/helpers/websandbox/frame/frame.source.js +5 -0
  372. package/esm/helpers/websandbox/frame/index.js +2 -0
  373. package/esm/helpers/websandbox/frame/worker/index.js +2 -0
  374. package/esm/helpers/websandbox/frame/worker/manager.d.ts +11 -0
  375. package/esm/helpers/websandbox/frame/worker/manager.js +67 -0
  376. package/esm/helpers/websandbox/frame/worker/manager.spec.d.ts +4 -0
  377. package/esm/helpers/websandbox/frame/worker/manager.spec.js +127 -0
  378. package/esm/helpers/websandbox/frame/worker/types.d.ts +11 -0
  379. package/esm/helpers/websandbox/frame/worker/worker.source.d.ts +2 -0
  380. package/esm/helpers/websandbox/index.js +2 -0
  381. package/esm/helpers/websandbox/sandbox.d.ts +57 -0
  382. package/esm/helpers/websandbox/sandbox.js +175 -0
  383. package/esm/helpers/websandbox/types.d.ts +13 -0
  384. package/esm/index.js +7 -0
  385. package/esm/logger/RocosLogger.d.ts +7 -0
  386. package/esm/models/CallsignStatus.d.ts +6 -0
  387. package/esm/models/ExportDataQuery.d.ts +8 -0
  388. package/esm/models/ExternalProject.d.ts +6 -0
  389. package/esm/models/IBaseService.d.ts +4 -0
  390. package/esm/models/IConfigGroup.d.ts +5 -0
  391. package/esm/models/IDebugLevel.d.ts +2 -0
  392. package/esm/models/IExportDataQuery.d.ts +9 -0
  393. package/esm/models/IFunctionConfig.d.ts +8 -0
  394. package/esm/models/IInvitation.d.ts +6 -0
  395. package/esm/models/IInvitationExists.d.ts +4 -0
  396. package/esm/models/IOperation.d.ts +6 -0
  397. package/esm/models/IPersonalAccessToken.d.ts +16 -0
  398. package/esm/models/IProject.d.ts +4 -0
  399. package/esm/models/IProjectApplication.d.ts +6 -0
  400. package/esm/models/IRobot.d.ts +18 -0
  401. package/esm/models/IRobotConfig.d.ts +8 -0
  402. package/esm/models/IRobotPlugin.d.ts +3 -0
  403. package/esm/models/IRobotSettings.d.ts +28 -0
  404. package/esm/models/IRobotTemplate.d.ts +10 -0
  405. package/esm/models/IRocosSDKConfig.d.ts +19 -0
  406. package/esm/models/ISource.d.ts +8 -0
  407. package/esm/models/IStream.d.ts +9 -0
  408. package/esm/models/IStreamConfig.d.ts +9 -0
  409. package/esm/models/IStreamOptions.d.ts +7 -0
  410. package/esm/models/IStreamSource.d.ts +8 -0
  411. package/esm/models/ISubscriberStatus.d.ts +5 -0
  412. package/esm/models/ITelemetryStreamConfig.d.ts +7 -0
  413. package/esm/models/IToken.d.ts +9 -0
  414. package/esm/models/IWidget.d.ts +25 -0
  415. package/esm/models/IWidgetLineGroup.d.ts +8 -0
  416. package/esm/models/ResponseLevelEnum.d.ts +10 -0
  417. package/esm/models/Robot.d.ts +20 -0
  418. package/esm/models/RobotConfig.d.ts +10 -0
  419. package/esm/models/RobotPlugin.d.ts +5 -0
  420. package/esm/models/RobotTemplate.d.ts +12 -0
  421. package/esm/models/RocosError.d.ts +32 -0
  422. package/esm/models/RocosError.js +41 -0
  423. package/esm/models/ServiceEnum.d.ts +28 -0
  424. package/esm/models/ServiceEnum.js +29 -0
  425. package/esm/models/Stream.d.ts +10 -0
  426. package/esm/models/StreamOptions.d.ts +9 -0
  427. package/esm/models/StreamSource.d.ts +10 -0
  428. package/esm/models/SubscriberStatusEnum.d.ts +6 -0
  429. package/esm/models/Token.d.ts +40 -0
  430. package/esm/models/Widget.d.ts +27 -0
  431. package/esm/models/WidgetLineGroup.d.ts +10 -0
  432. package/esm/models/asset-storage/AssetModelItem.d.ts +14 -0
  433. package/esm/models/asset-storage/SyncIntegrations.d.ts +31 -0
  434. package/esm/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  435. package/esm/models/caller/IRocosCallerMessageChunks.d.ts +4 -0
  436. package/esm/models/caller/IRocosCallerMessageHeartbeat.d.ts +3 -0
  437. package/esm/models/caller/IRocosCallerMessageResponse.d.ts +10 -0
  438. package/esm/models/caller/IRocosCallerMessageResponseAck.d.ts +16 -0
  439. package/esm/models/caller/IRocosCallerMessageResponseResult.d.ts +15 -0
  440. package/esm/models/caller/IRocosCallerMessageResponseReturn.d.ts +8 -0
  441. package/esm/models/caller/IRocosCallerMessageResponseUid.d.ts +10 -0
  442. package/esm/models/caller/IRocosCallerMessageResponses.d.ts +4 -0
  443. package/esm/models/caller/RocosCallerResultStatus.d.ts +11 -0
  444. package/esm/models/caller/RocosResponseLevel.d.ts +6 -0
  445. package/esm/models/caller/index.d.ts +11 -0
  446. package/esm/models/caller/index.js +11 -0
  447. package/esm/models/callsigns/CallsignsEnums.d.ts +13 -0
  448. package/esm/models/callsigns/CallsignsLookup.d.ts +8 -0
  449. package/esm/models/callsigns/CallsignsQuery.d.ts +9 -0
  450. package/esm/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
  451. package/esm/models/command/IRocosCommandMessageHeartbeat.d.ts +1 -0
  452. package/esm/models/command/IRocosCommandMessageResponse.d.ts +55 -0
  453. package/esm/models/command/RocosCommandResultStatus.d.ts +11 -0
  454. package/esm/models/command/index.js +4 -0
  455. package/esm/models/file/FileEnums.d.ts +30 -0
  456. package/esm/models/index.d.ts +77 -0
  457. package/esm/models/index.js +77 -0
  458. package/esm/models/integrations/Overlay.d.ts +49 -0
  459. package/esm/models/integrations/Plan.d.ts +324 -0
  460. package/esm/models/maps/Map.d.ts +11 -0
  461. package/esm/models/maps/Panorama.d.ts +36 -0
  462. package/esm/models/message/IRocosCallerMessage.d.ts +8 -0
  463. package/esm/models/message/IRocosChangeMessage.d.ts +6 -0
  464. package/esm/models/message/IRocosCommandMessage.d.ts +6 -0
  465. package/esm/models/message/IRocosControlMessage.d.ts +7 -0
  466. package/esm/models/message/IRocosOpResultMessage.d.ts +6 -0
  467. package/esm/models/message/IRocosSearchMessage.d.ts +5 -0
  468. package/esm/models/message/IRocosSearchRowMessage.d.ts +9 -0
  469. package/esm/models/message/IRocosSearchStatusMessage.d.ts +4 -0
  470. package/esm/models/message/IRocosTelemetryMessage.d.ts +23 -0
  471. package/esm/models/message/IStreamStatusMessage.d.ts +5 -0
  472. package/esm/models/message/RocosCallerMessage.d.ts +10 -0
  473. package/esm/models/message/RocosCommandMessage.d.ts +9 -0
  474. package/esm/models/message/RocosControlMessage.d.ts +11 -0
  475. package/esm/models/message/RocosOpResultMessage.d.ts +10 -0
  476. package/esm/models/message/RocosSearchMessage.d.ts +9 -0
  477. package/esm/models/message/RocosSearchRowMessage.d.ts +13 -0
  478. package/esm/models/message/RocosTelemetryMessage.d.ts +10 -0
  479. package/esm/models/message/index.js +17 -0
  480. package/esm/models/params/ICallerParams.d.ts +26 -0
  481. package/esm/models/params/ICommandParams.d.ts +9 -0
  482. package/esm/models/params/IControlParams.d.ts +8 -0
  483. package/esm/models/params/IFileAccessorParams.d.ts +11 -0
  484. package/esm/models/params/ISearchParams.d.ts +10 -0
  485. package/esm/models/params/ITelemetryParams.d.ts +18 -0
  486. package/esm/models/params/ITelemetryParams.js +1 -0
  487. package/esm/models/params/IWebRTCSignallingParams.d.ts +21 -0
  488. package/esm/models/params/IWebRTCSignallingParams.js +1 -0
  489. package/esm/models/projects/ProjectUser.d.ts +6 -0
  490. package/esm/models/projects/ProjectUser.js +1 -0
  491. package/esm/models/schedule/IScheduleAction.d.ts +13 -0
  492. package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
  493. package/esm/models/schedule/IScheduleInfo.js +1 -0
  494. package/esm/models/schedule/IScheduleJob.d.ts +12 -0
  495. package/esm/models/schedule/IScheduleJob.js +1 -0
  496. package/esm/models/search/SearchQueryFilter.d.ts +5 -0
  497. package/esm/models/search/SearchStreamQuery.d.ts +15 -0
  498. package/esm/models/stream/IBaseStream.d.ts +8 -0
  499. package/esm/models/stream/IBaseStream.js +1 -0
  500. package/esm/models/stream/ICallerStream.d.ts +8 -0
  501. package/esm/models/stream/ICallerStream.js +1 -0
  502. package/esm/models/stream/ICommandStream.d.ts +7 -0
  503. package/esm/models/stream/ICommandStream.js +1 -0
  504. package/esm/models/stream/IControlStream.d.ts +9 -0
  505. package/esm/models/stream/IControlStream.js +1 -0
  506. package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
  507. package/esm/models/stream/IFileAccessorStream.js +1 -0
  508. package/esm/models/stream/ISearchStream.d.ts +11 -0
  509. package/esm/models/stream/ISearchStream.js +1 -0
  510. package/esm/models/stream/ITelemetryStream.d.ts +10 -0
  511. package/esm/models/stream/ITelemetryStream.js +1 -0
  512. package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
  513. package/esm/models/stream/IWebRTCSignallingStream.js +1 -0
  514. package/esm/models/types.d.ts +5 -0
  515. package/esm/models/types.js +1 -0
  516. package/esm/models/workflow/Workflow.d.ts +36 -0
  517. package/esm/models/workflow/Workflow.js +1 -0
  518. package/esm/node/RocosSDKNode.d.ts +52 -0
  519. package/esm/node/RocosSDKNode.js +157 -0
  520. package/esm/node/index.js +7 -0
  521. package/esm/services/AssetStorageService.d.ts +144 -0
  522. package/esm/services/AssetStorageService.js +221 -0
  523. package/esm/services/AuthService.d.ts +93 -0
  524. package/esm/services/AuthService.spec.d.ts +1 -0
  525. package/esm/services/BaseServiceAbstract.d.ts +36 -0
  526. package/esm/services/BaseStreamService.d.ts +18 -0
  527. package/esm/services/BaseStreamService.js +47 -0
  528. package/esm/services/CallerService.d.ts +42 -0
  529. package/esm/services/CallerService.js +117 -0
  530. package/esm/services/CallerService.spec.d.ts +1 -0
  531. package/esm/services/CallerService.spec.js +227 -0
  532. package/esm/services/CallerServiceNode.d.ts +6 -0
  533. package/esm/services/CommandService.d.ts +9 -0
  534. package/esm/services/CommandServiceNode.d.ts +6 -0
  535. package/esm/services/ConfigGroupService.d.ts +89 -0
  536. package/esm/services/ControlService.d.ts +11 -0
  537. package/esm/services/ControlServiceNode.d.ts +6 -0
  538. package/esm/services/DashboardService.d.ts +97 -0
  539. package/esm/services/EvaluatorService.d.ts +11 -0
  540. package/esm/services/EventService.d.ts +53 -0
  541. package/esm/services/FileAccessorService.d.ts +11 -0
  542. package/esm/services/FileAccessorServiceNode.d.ts +6 -0
  543. package/esm/services/FunctionService.d.ts +68 -0
  544. package/esm/services/IntegrationService.d.ts +48 -0
  545. package/esm/services/MapService.d.ts +142 -0
  546. package/esm/services/MapService.js +192 -0
  547. package/esm/services/PlatformTimeService.d.ts +35 -0
  548. package/esm/services/PlatformTimeService.spec.d.ts +1 -0
  549. package/esm/services/ProfileService.d.ts +244 -0
  550. package/esm/services/ProjectService.d.ts +110 -0
  551. package/esm/services/RTPWebRTCService.d.ts +102 -0
  552. package/esm/services/RTPWebRTCService.js +227 -0
  553. package/esm/services/RTPWebRTCService.spec.d.ts +4 -0
  554. package/esm/services/RTPWebRTCService.spec.js +169 -0
  555. package/esm/services/RobotService.d.ts +278 -0
  556. package/esm/services/ScheduleService.d.ts +22 -0
  557. package/esm/services/SearchService.d.ts +12 -0
  558. package/esm/services/SearchServiceNode.d.ts +6 -0
  559. package/esm/services/SpotProvisioningService.d.ts +14 -0
  560. package/esm/services/SpotProvisioningServiceNode.d.ts +15 -0
  561. package/esm/services/StreamService.d.ts +98 -0
  562. package/esm/services/TelemetryService.d.ts +41 -0
  563. package/esm/services/TelemetryService.js +154 -0
  564. package/esm/services/TelemetryService.spec.d.ts +1 -0
  565. package/esm/services/TelemetryServiceNode.d.ts +6 -0
  566. package/esm/services/TimeSyncerService.d.ts +13 -0
  567. package/esm/services/UserService.d.ts +200 -0
  568. package/esm/services/WebRTCSignallingService.d.ts +22 -0
  569. package/esm/services/WorkflowService.d.ts +67 -0
  570. package/esm/services/WorkflowService.js +86 -0
  571. package/esm/services/index.d.ts +28 -0
  572. package/esm/services/index.js +28 -0
  573. package/esm/store/RocosStore.d.ts +31 -0
  574. package/package.json +19 -7
  575. package/IRocosSDK.d.ts +0 -32
  576. package/RocosSDK.d.ts +0 -143
  577. package/RocosSDK.js +0 -302
  578. package/constants/api.d.ts +0 -127
  579. package/constants/api.js +0 -127
  580. package/helpers/websandbox/frame/frame.source.js +0 -5
  581. package/helpers/websandbox/frame/worker/manager.js +0 -62
  582. package/helpers/websandbox/frame/worker/manager.spec.js +0 -121
  583. package/helpers/websandbox/sandbox.d.ts +0 -54
  584. package/helpers/websandbox/sandbox.js +0 -146
  585. package/models/RocosError.d.ts +0 -31
  586. package/models/RocosError.js +0 -40
  587. package/models/ServiceEnum.d.ts +0 -27
  588. package/models/ServiceEnum.js +0 -28
  589. package/models/asset-storage/AssetModelItem.d.ts +0 -29
  590. package/models/caller/IRocosCallerMessageChunk.d.ts +0 -10
  591. package/models/caller/index.d.ts +0 -10
  592. package/models/caller/index.js +0 -10
  593. package/models/index.d.ts +0 -75
  594. package/models/index.js +0 -75
  595. package/models/message/IRocosTelemetryMessage.d.ts +0 -23
  596. package/models/params/ICallerParams.d.ts +0 -16
  597. package/node/RocosSDKNode.d.ts +0 -47
  598. package/node/RocosSDKNode.js +0 -150
  599. package/services/AssetStorageService.d.ts +0 -106
  600. package/services/AssetStorageService.js +0 -169
  601. package/services/BaseStreamService.js +0 -47
  602. package/services/CallerService.d.ts +0 -10
  603. package/services/CallerService.js +0 -53
  604. package/services/MapService.d.ts +0 -108
  605. package/services/MapService.js +0 -151
  606. package/services/TelemetryService.d.ts +0 -40
  607. package/services/TelemetryService.js +0 -142
  608. package/services/WorkflowService.d.ts +0 -71
  609. package/services/WorkflowService.js +0 -118
  610. package/services/index.d.ts +0 -27
  611. package/services/index.js +0 -27
  612. /package/{api → cjs/api}/StreamRegister.d.ts +0 -0
  613. /package/{api → cjs/api}/atoms/StreamHeartbeat.d.ts +0 -0
  614. /package/{api → cjs/api}/streams/caller/CallerStream.d.ts +0 -0
  615. /package/{api → cjs/api}/streams/caller/CallerStreamAbstract.d.ts +0 -0
  616. /package/{api → cjs/api}/streams/caller/CallerStreamNode.d.ts +0 -0
  617. /package/{api → cjs/api}/streams/command/CommandStream.d.ts +0 -0
  618. /package/{api → cjs/api}/streams/command/CommandStreamAbstract.d.ts +0 -0
  619. /package/{api → cjs/api}/streams/command/CommandStreamNode.d.ts +0 -0
  620. /package/{api → cjs/api}/streams/control/ControlStream.d.ts +0 -0
  621. /package/{api → cjs/api}/streams/control/ControlStreamAbstract.d.ts +0 -0
  622. /package/{api → cjs/api}/streams/control/ControlStreamNode.d.ts +0 -0
  623. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStream.d.ts +0 -0
  624. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +0 -0
  625. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamNode.d.ts +0 -0
  626. /package/{api → cjs/api}/streams/search/SearchStream.d.ts +0 -0
  627. /package/{api → cjs/api}/streams/search/SearchStreamAbstract.d.ts +0 -0
  628. /package/{api → cjs/api}/streams/search/SearchStreamNode.d.ts +0 -0
  629. /package/{api → cjs/api}/streams/telemetry/TelemetryStream.d.ts +0 -0
  630. /package/{api → cjs/api}/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -0
  631. /package/{api → cjs/api}/streams/telemetry/TelemetryStreamNode.d.ts +0 -0
  632. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +0 -0
  633. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +0 -0
  634. /package/{constants → cjs/constants}/auth.d.ts +0 -0
  635. /package/{constants → cjs/constants}/grpc.d.ts +0 -0
  636. /package/{constants → cjs/constants}/identifier.d.ts +0 -0
  637. /package/{constants → cjs/constants}/timezones.d.ts +0 -0
  638. /package/{grpc → cjs/grpc}/conker_pb.client.d.ts +0 -0
  639. /package/{grpc → cjs/grpc}/conker_pb.d.ts +0 -0
  640. /package/{grpc → cjs/grpc}/conker_pb.grpc-client.d.ts +0 -0
  641. /package/{grpc → cjs/grpc}/filagree_pb.client.d.ts +0 -0
  642. /package/{grpc → cjs/grpc}/filagree_pb.d.ts +0 -0
  643. /package/{grpc → cjs/grpc}/filagree_pb.grpc-client.d.ts +0 -0
  644. /package/{grpc → cjs/grpc}/google/protobuf/descriptor_pb.d.ts +0 -0
  645. /package/{grpc → cjs/grpc}/google/protobuf/empty_pb.d.ts +0 -0
  646. /package/{grpc → cjs/grpc}/pigeon_pb.client.d.ts +0 -0
  647. /package/{grpc → cjs/grpc}/pigeon_pb.d.ts +0 -0
  648. /package/{grpc → cjs/grpc}/pigeon_pb.grpc-client.d.ts +0 -0
  649. /package/{grpc → cjs/grpc}/rambo.uri.v1_pb.d.ts +0 -0
  650. /package/{grpc → cjs/grpc}/rambo.v1_pb.client.d.ts +0 -0
  651. /package/{grpc → cjs/grpc}/rambo.v1_pb.d.ts +0 -0
  652. /package/{grpc → cjs/grpc}/rambo.v1_pb.grpc-client.d.ts +0 -0
  653. /package/{grpc → cjs/grpc}/serviette.uri.v1_pb.d.ts +0 -0
  654. /package/{grpc → cjs/grpc}/serviette.v1_pb.client.d.ts +0 -0
  655. /package/{grpc → cjs/grpc}/serviette.v1_pb.d.ts +0 -0
  656. /package/{grpc → cjs/grpc}/serviette.v1_pb.grpc-client.d.ts +0 -0
  657. /package/{grpc → cjs/grpc}/slowlane_pb.client.d.ts +0 -0
  658. /package/{grpc → cjs/grpc}/slowlane_pb.d.ts +0 -0
  659. /package/{grpc → cjs/grpc}/slowlane_pb.grpc-client.d.ts +0 -0
  660. /package/{grpc → cjs/grpc}/teletubby_pb.client.d.ts +0 -0
  661. /package/{grpc → cjs/grpc}/teletubby_pb.d.ts +0 -0
  662. /package/{grpc → cjs/grpc}/teletubby_pb.grpc-client.d.ts +0 -0
  663. /package/{helpers → cjs/helpers}/arrayRemove.d.ts +0 -0
  664. /package/{helpers → cjs/helpers}/arrayUnique.d.ts +0 -0
  665. /package/{helpers → cjs/helpers}/average.d.ts +0 -0
  666. /package/{helpers → cjs/helpers}/cleanObject.d.ts +0 -0
  667. /package/{helpers → cjs/helpers}/cleanObject.spec.d.ts +0 -0
  668. /package/{helpers → cjs/helpers}/enviroment.d.ts +0 -0
  669. /package/{helpers → cjs/helpers}/flattenCallsignsLookup.d.ts +0 -0
  670. /package/{helpers → cjs/helpers}/flattenObject.d.ts +0 -0
  671. /package/{helpers → cjs/helpers}/flattenObject.spec.d.ts +0 -0
  672. /package/{helpers → cjs/helpers}/flattenOneOf.d.ts +0 -0
  673. /package/{helpers → cjs/helpers}/flattenOneOf.spec.d.ts +0 -0
  674. /package/{helpers → cjs/helpers}/formatServiceUrl.d.ts +0 -0
  675. /package/{helpers → cjs/helpers}/formatServiceUrl.spec.d.ts +0 -0
  676. /package/{helpers → cjs/helpers}/generateUUID.d.ts +0 -0
  677. /package/{helpers → cjs/helpers}/getSubscriptionsDifference.d.ts +0 -0
  678. /package/{helpers → cjs/helpers}/getURLSearchParams.d.ts +0 -0
  679. /package/{helpers → cjs/helpers}/getURLSearchParams.spec.d.ts +0 -0
  680. /package/{helpers → cjs/helpers}/getUniqueConfigKey.d.ts +0 -0
  681. /package/{helpers → cjs/helpers}/getUniqueId.d.ts +0 -0
  682. /package/{helpers → cjs/helpers}/getUnixTimeMs.d.ts +0 -0
  683. /package/{helpers → cjs/helpers}/index.d.ts +0 -0
  684. /package/{helpers → cjs/helpers}/nanosecondToMillisecond.d.ts +0 -0
  685. /package/{helpers → cjs/helpers}/nanosecondToMillisecond.spec.d.ts +0 -0
  686. /package/{helpers → cjs/helpers}/randomString.d.ts +0 -0
  687. /package/{helpers/standardDeviation.spec.d.ts → cjs/helpers/splitRobotTopic.spec.d.ts} +0 -0
  688. /package/{helpers → cjs/helpers}/standardDeviation.d.ts +0 -0
  689. /package/{helpers/websandbox/frame/worker/types.js → cjs/helpers/standardDeviation.spec.d.ts} +0 -0
  690. /package/{helpers → cjs/helpers}/stringToUint8Array.d.ts +0 -0
  691. /package/{helpers → cjs/helpers}/uint8ArrayToString.d.ts +0 -0
  692. /package/{helpers → cjs/helpers}/websandbox/connection.d.ts +0 -0
  693. /package/{helpers → cjs/helpers}/websandbox/frame/frame.d.ts +0 -0
  694. /package/{helpers → cjs/helpers}/websandbox/frame/frame.source.d.ts +0 -0
  695. /package/{helpers → cjs/helpers}/websandbox/frame/index.d.ts +0 -0
  696. /package/{helpers → cjs/helpers}/websandbox/frame/worker/index.d.ts +0 -0
  697. /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.d.ts +0 -0
  698. /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.spec.d.ts +0 -0
  699. /package/{helpers → cjs/helpers}/websandbox/frame/worker/types.d.ts +0 -0
  700. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.d.ts +0 -0
  701. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.source.d.ts +0 -0
  702. /package/{helpers → cjs/helpers}/websandbox/index.d.ts +0 -0
  703. /package/{helpers → cjs/helpers}/websandbox/types.d.ts +0 -0
  704. /package/{index.d.ts → cjs/index.d.ts} +0 -0
  705. /package/{logger → cjs/logger}/RocosLogger.d.ts +0 -0
  706. /package/{models → cjs/models}/CallsignStatus.d.ts +0 -0
  707. /package/{models → cjs/models}/ExportDataQuery.d.ts +0 -0
  708. /package/{models → cjs/models}/ExternalProject.d.ts +0 -0
  709. /package/{models → cjs/models}/IBaseService.d.ts +0 -0
  710. /package/{models → cjs/models}/IConfigGroup.d.ts +0 -0
  711. /package/{models → cjs/models}/IDebugLevel.d.ts +0 -0
  712. /package/{models → cjs/models}/IExportDataQuery.d.ts +0 -0
  713. /package/{models → cjs/models}/IFunctionConfig.d.ts +0 -0
  714. /package/{models → cjs/models}/IInvitation.d.ts +0 -0
  715. /package/{models → cjs/models}/IInvitationExists.d.ts +0 -0
  716. /package/{models → cjs/models}/IOperation.d.ts +0 -0
  717. /package/{models → cjs/models}/IPersonalAccessToken.d.ts +0 -0
  718. /package/{models → cjs/models}/IProject.d.ts +0 -0
  719. /package/{models → cjs/models}/IProjectApplication.d.ts +0 -0
  720. /package/{models → cjs/models}/IRobot.d.ts +0 -0
  721. /package/{models → cjs/models}/IRobotConfig.d.ts +0 -0
  722. /package/{models → cjs/models}/IRobotPlugin.d.ts +0 -0
  723. /package/{models → cjs/models}/IRobotSettings.d.ts +0 -0
  724. /package/{models → cjs/models}/IRobotTemplate.d.ts +0 -0
  725. /package/{models → cjs/models}/IRocosSDKConfig.d.ts +0 -0
  726. /package/{models → cjs/models}/ISource.d.ts +0 -0
  727. /package/{models → cjs/models}/IStream.d.ts +0 -0
  728. /package/{models → cjs/models}/IStreamConfig.d.ts +0 -0
  729. /package/{models → cjs/models}/IStreamOptions.d.ts +0 -0
  730. /package/{models → cjs/models}/IStreamSource.d.ts +0 -0
  731. /package/{models → cjs/models}/ISubscriberStatus.d.ts +0 -0
  732. /package/{models → cjs/models}/ITelemetryStreamConfig.d.ts +0 -0
  733. /package/{models → cjs/models}/IToken.d.ts +0 -0
  734. /package/{models → cjs/models}/IWidget.d.ts +0 -0
  735. /package/{models → cjs/models}/IWidgetLineGroup.d.ts +0 -0
  736. /package/{models → cjs/models}/ResponseLevelEnum.d.ts +0 -0
  737. /package/{models → cjs/models}/Robot.d.ts +0 -0
  738. /package/{models → cjs/models}/RobotConfig.d.ts +0 -0
  739. /package/{models → cjs/models}/RobotPlugin.d.ts +0 -0
  740. /package/{models → cjs/models}/RobotTemplate.d.ts +0 -0
  741. /package/{models → cjs/models}/Stream.d.ts +0 -0
  742. /package/{models → cjs/models}/StreamOptions.d.ts +0 -0
  743. /package/{models → cjs/models}/StreamSource.d.ts +0 -0
  744. /package/{models → cjs/models}/SubscriberStatusEnum.d.ts +0 -0
  745. /package/{models → cjs/models}/Token.d.ts +0 -0
  746. /package/{models → cjs/models}/Token.spec.d.ts +0 -0
  747. /package/{models → cjs/models}/Widget.d.ts +0 -0
  748. /package/{models → cjs/models}/WidgetLineGroup.d.ts +0 -0
  749. /package/{models → cjs/models}/caller/IRocosCallerMessageChunks.d.ts +0 -0
  750. /package/{models → cjs/models}/caller/IRocosCallerMessageHeartbeat.d.ts +0 -0
  751. /package/{models → cjs/models}/caller/IRocosCallerMessageResponse.d.ts +0 -0
  752. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseAck.d.ts +0 -0
  753. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseResult.d.ts +0 -0
  754. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseReturn.d.ts +0 -0
  755. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseUid.d.ts +0 -0
  756. /package/{models → cjs/models}/caller/IRocosCallerMessageResponses.d.ts +0 -0
  757. /package/{models → cjs/models}/caller/RocosCallerResultStatus.d.ts +0 -0
  758. /package/{models → cjs/models}/caller/RocosResponseLevel.d.ts +0 -0
  759. /package/{models → cjs/models}/callsigns/CallsignsEnums.d.ts +0 -0
  760. /package/{models → cjs/models}/callsigns/CallsignsLookup.d.ts +0 -0
  761. /package/{models → cjs/models}/callsigns/CallsignsQuery.d.ts +0 -0
  762. /package/{models → cjs/models}/callsigns/CallsignsQueryPredicate.d.ts +0 -0
  763. /package/{models → cjs/models}/command/IRocosCommandMessageHeartbeat.d.ts +0 -0
  764. /package/{models → cjs/models}/command/IRocosCommandMessageResponse.d.ts +0 -0
  765. /package/{models → cjs/models}/command/RocosCommandResultStatus.d.ts +0 -0
  766. /package/{models → cjs/models}/command/index.d.ts +0 -0
  767. /package/{models → cjs/models}/file/FileEnums.d.ts +0 -0
  768. /package/{models → cjs/models}/integrations/Overlay.d.ts +0 -0
  769. /package/{models → cjs/models}/integrations/Plan.d.ts +0 -0
  770. /package/{models → cjs/models}/maps/Map.d.ts +0 -0
  771. /package/{models → cjs/models}/message/IRocosCallerMessage.d.ts +0 -0
  772. /package/{models → cjs/models}/message/IRocosChangeMessage.d.ts +0 -0
  773. /package/{models → cjs/models}/message/IRocosCommandMessage.d.ts +0 -0
  774. /package/{models → cjs/models}/message/IRocosControlMessage.d.ts +0 -0
  775. /package/{models → cjs/models}/message/IRocosOpResultMessage.d.ts +0 -0
  776. /package/{models → cjs/models}/message/IRocosSearchMessage.d.ts +0 -0
  777. /package/{models → cjs/models}/message/IRocosSearchRowMessage.d.ts +0 -0
  778. /package/{models → cjs/models}/message/IRocosSearchStatusMessage.d.ts +0 -0
  779. /package/{models → cjs/models}/message/IStreamStatusMessage.d.ts +0 -0
  780. /package/{models → cjs/models}/message/RocosCallerMessage.d.ts +0 -0
  781. /package/{models → cjs/models}/message/RocosCommandMessage.d.ts +0 -0
  782. /package/{models → cjs/models}/message/RocosControlMessage.d.ts +0 -0
  783. /package/{models → cjs/models}/message/RocosOpResultMessage.d.ts +0 -0
  784. /package/{models → cjs/models}/message/RocosSearchMessage.d.ts +0 -0
  785. /package/{models → cjs/models}/message/RocosSearchRowMessage.d.ts +0 -0
  786. /package/{models → cjs/models}/message/RocosTelemetryMessage.d.ts +0 -0
  787. /package/{models → cjs/models}/message/index.d.ts +0 -0
  788. /package/{models → cjs/models}/params/ICommandParams.d.ts +0 -0
  789. /package/{models → cjs/models}/params/IControlParams.d.ts +0 -0
  790. /package/{models → cjs/models}/params/IFileAccessorParams.d.ts +0 -0
  791. /package/{models → cjs/models}/params/ISearchParams.d.ts +0 -0
  792. /package/{models → cjs/models}/params/ITelemetryParams.d.ts +0 -0
  793. /package/{models → cjs/models}/params/IWebRTCSignallingParams.d.ts +0 -0
  794. /package/{models → cjs/models}/projects/ProjectUser.d.ts +0 -0
  795. /package/{models → cjs/models}/schedule/IScheduleAction.d.ts +0 -0
  796. /package/{models → cjs/models}/schedule/IScheduleInfo.d.ts +0 -0
  797. /package/{models → cjs/models}/schedule/IScheduleJob.d.ts +0 -0
  798. /package/{models → cjs/models}/search/SearchQueryFilter.d.ts +0 -0
  799. /package/{models → cjs/models}/search/SearchStreamQuery.d.ts +0 -0
  800. /package/{models → cjs/models}/stream/IBaseStream.d.ts +0 -0
  801. /package/{models → cjs/models}/stream/ICallerStream.d.ts +0 -0
  802. /package/{models → cjs/models}/stream/ICommandStream.d.ts +0 -0
  803. /package/{models → cjs/models}/stream/IControlStream.d.ts +0 -0
  804. /package/{models → cjs/models}/stream/IFileAccessorStream.d.ts +0 -0
  805. /package/{models → cjs/models}/stream/ISearchStream.d.ts +0 -0
  806. /package/{models → cjs/models}/stream/ITelemetryStream.d.ts +0 -0
  807. /package/{models → cjs/models}/stream/IWebRTCSignallingStream.d.ts +0 -0
  808. /package/{models → cjs/models}/types.d.ts +0 -0
  809. /package/{node → cjs/node}/index.d.ts +0 -0
  810. /package/{services → cjs/services}/AuthService.d.ts +0 -0
  811. /package/{services → cjs/services}/AuthService.spec.d.ts +0 -0
  812. /package/{services → cjs/services}/BaseServiceAbstract.d.ts +0 -0
  813. /package/{services → cjs/services}/BaseStreamService.d.ts +0 -0
  814. /package/{helpers/websandbox/types.js → cjs/services/CallerService.spec.d.ts} +0 -0
  815. /package/{services → cjs/services}/CallerServiceNode.d.ts +0 -0
  816. /package/{services → cjs/services}/CommandService.d.ts +0 -0
  817. /package/{services → cjs/services}/CommandServiceNode.d.ts +0 -0
  818. /package/{services → cjs/services}/ConfigGroupService.d.ts +0 -0
  819. /package/{services → cjs/services}/ControlService.d.ts +0 -0
  820. /package/{services → cjs/services}/ControlServiceNode.d.ts +0 -0
  821. /package/{services → cjs/services}/DashboardService.d.ts +0 -0
  822. /package/{services → cjs/services}/EvaluatorService.d.ts +0 -0
  823. /package/{services → cjs/services}/EventService.d.ts +0 -0
  824. /package/{services → cjs/services}/FileAccessorService.d.ts +0 -0
  825. /package/{services → cjs/services}/FileAccessorServiceNode.d.ts +0 -0
  826. /package/{services → cjs/services}/FunctionService.d.ts +0 -0
  827. /package/{services → cjs/services}/IntegrationService.d.ts +0 -0
  828. /package/{services → cjs/services}/PlatformTimeService.d.ts +0 -0
  829. /package/{services → cjs/services}/PlatformTimeService.spec.d.ts +0 -0
  830. /package/{services → cjs/services}/ProfileService.d.ts +0 -0
  831. /package/{services → cjs/services}/ProjectService.d.ts +0 -0
  832. /package/{services → cjs/services}/RobotService.d.ts +0 -0
  833. /package/{services → cjs/services}/ScheduleService.d.ts +0 -0
  834. /package/{services → cjs/services}/SearchService.d.ts +0 -0
  835. /package/{services → cjs/services}/SearchServiceNode.d.ts +0 -0
  836. /package/{services → cjs/services}/SpotProvisioningService.d.ts +0 -0
  837. /package/{services → cjs/services}/SpotProvisioningServiceNode.d.ts +0 -0
  838. /package/{services → cjs/services}/StreamService.d.ts +0 -0
  839. /package/{services → cjs/services}/TelemetryService.spec.d.ts +0 -0
  840. /package/{services → cjs/services}/TelemetryServiceNode.d.ts +0 -0
  841. /package/{services → cjs/services}/TimeSyncerService.d.ts +0 -0
  842. /package/{services → cjs/services}/UserService.d.ts +0 -0
  843. /package/{services → cjs/services}/WebRTCSignallingService.d.ts +0 -0
  844. /package/{store → cjs/store}/RocosStore.d.ts +0 -0
  845. /package/{IRocosSDK.js → esm/IRocosSDK.js} +0 -0
  846. /package/{api → esm/api}/StreamRegister.js +0 -0
  847. /package/{api → esm/api}/atoms/StreamHeartbeat.js +0 -0
  848. /package/{api → esm/api}/streams/caller/CallerStream.js +0 -0
  849. /package/{api → esm/api}/streams/caller/CallerStreamAbstract.js +0 -0
  850. /package/{api → esm/api}/streams/caller/CallerStreamNode.js +0 -0
  851. /package/{api → esm/api}/streams/command/CommandStream.js +0 -0
  852. /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
  853. /package/{api → esm/api}/streams/command/CommandStreamNode.js +0 -0
  854. /package/{api → esm/api}/streams/control/ControlStream.js +0 -0
  855. /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
  856. /package/{api → esm/api}/streams/control/ControlStreamNode.js +0 -0
  857. /package/{api → esm/api}/streams/fileAccessor/FileAccessorStream.js +0 -0
  858. /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
  859. /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamNode.js +0 -0
  860. /package/{api → esm/api}/streams/search/SearchStream.js +0 -0
  861. /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
  862. /package/{api → esm/api}/streams/search/SearchStreamNode.js +0 -0
  863. /package/{api → esm/api}/streams/telemetry/TelemetryStream.js +0 -0
  864. /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.js +0 -0
  865. /package/{api → esm/api}/streams/telemetry/TelemetryStreamNode.js +0 -0
  866. /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -0
  867. /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +0 -0
  868. /package/{constants → esm/constants}/auth.js +0 -0
  869. /package/{constants → esm/constants}/grpc.js +0 -0
  870. /package/{constants → esm/constants}/identifier.js +0 -0
  871. /package/{constants → esm/constants}/timezones.js +0 -0
  872. /package/{grpc → esm/grpc}/conker_pb.client.js +0 -0
  873. /package/{grpc → esm/grpc}/conker_pb.grpc-client.js +0 -0
  874. /package/{grpc → esm/grpc}/conker_pb.js +0 -0
  875. /package/{grpc → esm/grpc}/filagree_pb.client.js +0 -0
  876. /package/{grpc → esm/grpc}/filagree_pb.grpc-client.js +0 -0
  877. /package/{grpc → esm/grpc}/filagree_pb.js +0 -0
  878. /package/{grpc → esm/grpc}/google/protobuf/descriptor_pb.js +0 -0
  879. /package/{grpc → esm/grpc}/google/protobuf/empty_pb.js +0 -0
  880. /package/{grpc → esm/grpc}/pigeon_pb.client.js +0 -0
  881. /package/{grpc → esm/grpc}/pigeon_pb.grpc-client.js +0 -0
  882. /package/{grpc → esm/grpc}/pigeon_pb.js +0 -0
  883. /package/{grpc → esm/grpc}/rambo.uri.v1_pb.js +0 -0
  884. /package/{grpc → esm/grpc}/rambo.v1_pb.client.js +0 -0
  885. /package/{grpc → esm/grpc}/rambo.v1_pb.grpc-client.js +0 -0
  886. /package/{grpc → esm/grpc}/rambo.v1_pb.js +0 -0
  887. /package/{grpc → esm/grpc}/serviette.uri.v1_pb.js +0 -0
  888. /package/{grpc → esm/grpc}/serviette.v1_pb.client.js +0 -0
  889. /package/{grpc → esm/grpc}/serviette.v1_pb.grpc-client.js +0 -0
  890. /package/{grpc → esm/grpc}/serviette.v1_pb.js +0 -0
  891. /package/{grpc → esm/grpc}/slowlane_pb.client.js +0 -0
  892. /package/{grpc → esm/grpc}/slowlane_pb.grpc-client.js +0 -0
  893. /package/{grpc → esm/grpc}/slowlane_pb.js +0 -0
  894. /package/{grpc → esm/grpc}/teletubby_pb.client.js +0 -0
  895. /package/{grpc → esm/grpc}/teletubby_pb.grpc-client.js +0 -0
  896. /package/{grpc → esm/grpc}/teletubby_pb.js +0 -0
  897. /package/{helpers → esm/helpers}/arrayRemove.js +0 -0
  898. /package/{helpers → esm/helpers}/arrayUnique.js +0 -0
  899. /package/{helpers → esm/helpers}/average.js +0 -0
  900. /package/{helpers → esm/helpers}/cleanObject.js +0 -0
  901. /package/{models/IBaseService.js → esm/helpers/cleanObject.spec.d.ts} +0 -0
  902. /package/{helpers → esm/helpers}/cleanObject.spec.js +0 -0
  903. /package/{helpers → esm/helpers}/enviroment.js +0 -0
  904. /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
  905. /package/{helpers → esm/helpers}/flattenObject.js +0 -0
  906. /package/{models/IConfigGroup.js → esm/helpers/flattenObject.spec.d.ts} +0 -0
  907. /package/{helpers → esm/helpers}/flattenObject.spec.js +0 -0
  908. /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
  909. /package/{models/IDebugLevel.js → esm/helpers/flattenOneOf.spec.d.ts} +0 -0
  910. /package/{helpers → esm/helpers}/flattenOneOf.spec.js +0 -0
  911. /package/{helpers → esm/helpers}/formatServiceUrl.js +0 -0
  912. /package/{models/IExportDataQuery.js → esm/helpers/formatServiceUrl.spec.d.ts} +0 -0
  913. /package/{helpers → esm/helpers}/formatServiceUrl.spec.js +0 -0
  914. /package/{helpers → esm/helpers}/generateUUID.js +0 -0
  915. /package/{helpers → esm/helpers}/getSubscriptionsDifference.js +0 -0
  916. /package/{helpers → esm/helpers}/getURLSearchParams.js +0 -0
  917. /package/{models/IFunctionConfig.js → esm/helpers/getURLSearchParams.spec.d.ts} +0 -0
  918. /package/{helpers → esm/helpers}/getURLSearchParams.spec.js +0 -0
  919. /package/{helpers → esm/helpers}/getUniqueConfigKey.js +0 -0
  920. /package/{helpers → esm/helpers}/getUniqueId.js +0 -0
  921. /package/{helpers → esm/helpers}/getUnixTimeMs.js +0 -0
  922. /package/{helpers/index.js → esm/helpers/index.d.ts} +0 -0
  923. /package/{helpers → esm/helpers}/nanosecondToMillisecond.js +0 -0
  924. /package/{models/IInvitation.js → esm/helpers/nanosecondToMillisecond.spec.d.ts} +0 -0
  925. /package/{helpers → esm/helpers}/nanosecondToMillisecond.spec.js +0 -0
  926. /package/{helpers → esm/helpers}/randomString.js +0 -0
  927. /package/{models/IInvitationExists.js → esm/helpers/splitRobotTopic.spec.d.ts} +0 -0
  928. /package/{helpers → esm/helpers}/standardDeviation.js +0 -0
  929. /package/{models/IOperation.js → esm/helpers/standardDeviation.spec.d.ts} +0 -0
  930. /package/{helpers → esm/helpers}/standardDeviation.spec.js +0 -0
  931. /package/{helpers → esm/helpers}/stringToUint8Array.js +0 -0
  932. /package/{helpers → esm/helpers}/uint8ArrayToString.js +0 -0
  933. /package/{helpers → esm/helpers}/websandbox/connection.js +0 -0
  934. /package/{helpers → esm/helpers}/websandbox/frame/frame.js +0 -0
  935. /package/{helpers/websandbox/frame/index.js → esm/helpers/websandbox/frame/index.d.ts} +0 -0
  936. /package/{helpers/websandbox/frame/worker/index.js → esm/helpers/websandbox/frame/worker/index.d.ts} +0 -0
  937. /package/{models → esm/helpers/websandbox/frame/worker}/types.js +0 -0
  938. /package/{models/IPersonalAccessToken.js → esm/helpers/websandbox/frame/worker/worker.d.ts} +0 -0
  939. /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.js +0 -0
  940. /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.source.js +0 -0
  941. /package/{helpers/websandbox/index.js → esm/helpers/websandbox/index.d.ts} +0 -0
  942. /package/{models/IProject.js → esm/helpers/websandbox/types.js} +0 -0
  943. /package/{index.js → esm/index.d.ts} +0 -0
  944. /package/{logger → esm/logger}/RocosLogger.js +0 -0
  945. /package/{models → esm/models}/CallsignStatus.js +0 -0
  946. /package/{models → esm/models}/ExportDataQuery.js +0 -0
  947. /package/{models → esm/models}/ExternalProject.js +0 -0
  948. /package/{models/IProjectApplication.js → esm/models/IBaseService.js} +0 -0
  949. /package/{models/IRobot.js → esm/models/IConfigGroup.js} +0 -0
  950. /package/{models/IRobotConfig.js → esm/models/IDebugLevel.js} +0 -0
  951. /package/{models/IRobotPlugin.js → esm/models/IExportDataQuery.js} +0 -0
  952. /package/{models/IRobotSettings.js → esm/models/IFunctionConfig.js} +0 -0
  953. /package/{models/IRobotTemplate.js → esm/models/IInvitation.js} +0 -0
  954. /package/{models/IRocosSDKConfig.js → esm/models/IInvitationExists.js} +0 -0
  955. /package/{models/ISource.js → esm/models/IOperation.js} +0 -0
  956. /package/{models/IStream.js → esm/models/IPersonalAccessToken.js} +0 -0
  957. /package/{models/IStreamConfig.js → esm/models/IProject.js} +0 -0
  958. /package/{models/IStreamOptions.js → esm/models/IProjectApplication.js} +0 -0
  959. /package/{models/IStreamSource.js → esm/models/IRobot.js} +0 -0
  960. /package/{models/ISubscriberStatus.js → esm/models/IRobotConfig.js} +0 -0
  961. /package/{models/ITelemetryStreamConfig.js → esm/models/IRobotPlugin.js} +0 -0
  962. /package/{models/IToken.js → esm/models/IRobotSettings.js} +0 -0
  963. /package/{models/IWidget.js → esm/models/IRobotTemplate.js} +0 -0
  964. /package/{models/IWidgetLineGroup.js → esm/models/IRocosSDKConfig.js} +0 -0
  965. /package/{models/asset-storage/AssetModelItem.js → esm/models/ISource.js} +0 -0
  966. /package/{models/caller/IRocosCallerMessageChunk.js → esm/models/IStream.js} +0 -0
  967. /package/{models/caller/IRocosCallerMessageChunks.js → esm/models/IStreamConfig.js} +0 -0
  968. /package/{models/caller/IRocosCallerMessageHeartbeat.js → esm/models/IStreamOptions.js} +0 -0
  969. /package/{models/caller/IRocosCallerMessageResponse.js → esm/models/IStreamSource.js} +0 -0
  970. /package/{models/caller/IRocosCallerMessageResponseReturn.js → esm/models/ISubscriberStatus.js} +0 -0
  971. /package/{models/caller/IRocosCallerMessageResponses.js → esm/models/ITelemetryStreamConfig.js} +0 -0
  972. /package/{models/command/IRocosCommandMessageHeartbeat.js → esm/models/IToken.js} +0 -0
  973. /package/{models/integrations/Overlay.js → esm/models/IWidget.js} +0 -0
  974. /package/{models/integrations/Plan.js → esm/models/IWidgetLineGroup.js} +0 -0
  975. /package/{models → esm/models}/ResponseLevelEnum.js +0 -0
  976. /package/{models → esm/models}/Robot.js +0 -0
  977. /package/{models → esm/models}/RobotConfig.js +0 -0
  978. /package/{models → esm/models}/RobotPlugin.js +0 -0
  979. /package/{models → esm/models}/RobotTemplate.js +0 -0
  980. /package/{models → esm/models}/Stream.js +0 -0
  981. /package/{models → esm/models}/StreamOptions.js +0 -0
  982. /package/{models → esm/models}/StreamSource.js +0 -0
  983. /package/{models → esm/models}/SubscriberStatusEnum.js +0 -0
  984. /package/{models → esm/models}/Token.js +0 -0
  985. /package/{models/maps/Map.js → esm/models/Token.spec.d.ts} +0 -0
  986. /package/{models → esm/models}/Token.spec.js +0 -0
  987. /package/{models → esm/models}/Widget.js +0 -0
  988. /package/{models → esm/models}/WidgetLineGroup.js +0 -0
  989. /package/{models/message/IRocosCallerMessage.js → esm/models/asset-storage/AssetModelItem.js} +0 -0
  990. /package/{models/message/IRocosChangeMessage.js → esm/models/asset-storage/SyncIntegrations.js} +0 -0
  991. /package/{models/message/IRocosCommandMessage.js → esm/models/caller/IRocosCallerMessageChunk.js} +0 -0
  992. /package/{models/message/IRocosControlMessage.js → esm/models/caller/IRocosCallerMessageChunks.js} +0 -0
  993. /package/{models/message/IRocosOpResultMessage.js → esm/models/caller/IRocosCallerMessageHeartbeat.js} +0 -0
  994. /package/{models/message/IRocosSearchMessage.js → esm/models/caller/IRocosCallerMessageResponse.js} +0 -0
  995. /package/{models → esm/models}/caller/IRocosCallerMessageResponseAck.js +0 -0
  996. /package/{models → esm/models}/caller/IRocosCallerMessageResponseResult.js +0 -0
  997. /package/{models/message/IRocosSearchRowMessage.js → esm/models/caller/IRocosCallerMessageResponseReturn.js} +0 -0
  998. /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
  999. /package/{models/message/IRocosSearchStatusMessage.js → esm/models/caller/IRocosCallerMessageResponses.js} +0 -0
  1000. /package/{models → esm/models}/caller/RocosCallerResultStatus.js +0 -0
  1001. /package/{models → esm/models}/caller/RocosResponseLevel.js +0 -0
  1002. /package/{models → esm/models}/callsigns/CallsignsEnums.js +0 -0
  1003. /package/{models → esm/models}/callsigns/CallsignsLookup.js +0 -0
  1004. /package/{models → esm/models}/callsigns/CallsignsQuery.js +0 -0
  1005. /package/{models → esm/models}/callsigns/CallsignsQueryPredicate.js +0 -0
  1006. /package/{models/message/IRocosTelemetryMessage.js → esm/models/command/IRocosCommandMessageHeartbeat.js} +0 -0
  1007. /package/{models → esm/models}/command/IRocosCommandMessageResponse.js +0 -0
  1008. /package/{models → esm/models}/command/RocosCommandResultStatus.js +0 -0
  1009. /package/{models/command/index.js → esm/models/command/index.d.ts} +0 -0
  1010. /package/{models → esm/models}/file/FileEnums.js +0 -0
  1011. /package/{models/message/IStreamStatusMessage.js → esm/models/integrations/Overlay.js} +0 -0
  1012. /package/{models/params/ICallerParams.js → esm/models/integrations/Plan.js} +0 -0
  1013. /package/{models/params/ICommandParams.js → esm/models/maps/Map.js} +0 -0
  1014. /package/{models/params/IControlParams.js → esm/models/maps/Panorama.js} +0 -0
  1015. /package/{models/params/IFileAccessorParams.js → esm/models/message/IRocosCallerMessage.js} +0 -0
  1016. /package/{models/params/ISearchParams.js → esm/models/message/IRocosChangeMessage.js} +0 -0
  1017. /package/{models/params/ITelemetryParams.js → esm/models/message/IRocosCommandMessage.js} +0 -0
  1018. /package/{models/params/IWebRTCSignallingParams.js → esm/models/message/IRocosControlMessage.js} +0 -0
  1019. /package/{models/projects/ProjectUser.js → esm/models/message/IRocosOpResultMessage.js} +0 -0
  1020. /package/{models/schedule/IScheduleInfo.js → esm/models/message/IRocosSearchMessage.js} +0 -0
  1021. /package/{models/schedule/IScheduleJob.js → esm/models/message/IRocosSearchRowMessage.js} +0 -0
  1022. /package/{models/stream/IBaseStream.js → esm/models/message/IRocosSearchStatusMessage.js} +0 -0
  1023. /package/{models/stream/ICallerStream.js → esm/models/message/IRocosTelemetryMessage.js} +0 -0
  1024. /package/{models/stream/ICommandStream.js → esm/models/message/IStreamStatusMessage.js} +0 -0
  1025. /package/{models → esm/models}/message/RocosCallerMessage.js +0 -0
  1026. /package/{models → esm/models}/message/RocosCommandMessage.js +0 -0
  1027. /package/{models → esm/models}/message/RocosControlMessage.js +0 -0
  1028. /package/{models → esm/models}/message/RocosOpResultMessage.js +0 -0
  1029. /package/{models → esm/models}/message/RocosSearchMessage.js +0 -0
  1030. /package/{models → esm/models}/message/RocosSearchRowMessage.js +0 -0
  1031. /package/{models → esm/models}/message/RocosTelemetryMessage.js +0 -0
  1032. /package/{models/message/index.js → esm/models/message/index.d.ts} +0 -0
  1033. /package/{models/stream/IControlStream.js → esm/models/params/ICallerParams.js} +0 -0
  1034. /package/{models/stream/IFileAccessorStream.js → esm/models/params/ICommandParams.js} +0 -0
  1035. /package/{models/stream/ISearchStream.js → esm/models/params/IControlParams.js} +0 -0
  1036. /package/{models/stream/ITelemetryStream.js → esm/models/params/IFileAccessorParams.js} +0 -0
  1037. /package/{models/stream/IWebRTCSignallingStream.js → esm/models/params/ISearchParams.js} +0 -0
  1038. /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
  1039. /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
  1040. /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
  1041. /package/{node/index.js → esm/node/index.d.ts} +0 -0
  1042. /package/{services → esm/services}/AuthService.js +0 -0
  1043. /package/{services → esm/services}/AuthService.spec.js +0 -0
  1044. /package/{services → esm/services}/BaseServiceAbstract.js +0 -0
  1045. /package/{services → esm/services}/CallerServiceNode.js +0 -0
  1046. /package/{services → esm/services}/CommandService.js +0 -0
  1047. /package/{services → esm/services}/CommandServiceNode.js +0 -0
  1048. /package/{services → esm/services}/ConfigGroupService.js +0 -0
  1049. /package/{services → esm/services}/ControlService.js +0 -0
  1050. /package/{services → esm/services}/ControlServiceNode.js +0 -0
  1051. /package/{services → esm/services}/DashboardService.js +0 -0
  1052. /package/{services → esm/services}/EvaluatorService.js +0 -0
  1053. /package/{services → esm/services}/EventService.js +0 -0
  1054. /package/{services → esm/services}/FileAccessorService.js +0 -0
  1055. /package/{services → esm/services}/FileAccessorServiceNode.js +0 -0
  1056. /package/{services → esm/services}/FunctionService.js +0 -0
  1057. /package/{services → esm/services}/IntegrationService.js +0 -0
  1058. /package/{services → esm/services}/PlatformTimeService.js +0 -0
  1059. /package/{services → esm/services}/PlatformTimeService.spec.js +0 -0
  1060. /package/{services → esm/services}/ProfileService.js +0 -0
  1061. /package/{services → esm/services}/ProjectService.js +0 -0
  1062. /package/{services → esm/services}/RobotService.js +0 -0
  1063. /package/{services → esm/services}/ScheduleService.js +0 -0
  1064. /package/{services → esm/services}/SearchService.js +0 -0
  1065. /package/{services → esm/services}/SearchServiceNode.js +0 -0
  1066. /package/{services → esm/services}/SpotProvisioningService.js +0 -0
  1067. /package/{services → esm/services}/SpotProvisioningServiceNode.js +0 -0
  1068. /package/{services → esm/services}/StreamService.js +0 -0
  1069. /package/{services → esm/services}/TelemetryService.spec.js +0 -0
  1070. /package/{services → esm/services}/TelemetryServiceNode.js +0 -0
  1071. /package/{services → esm/services}/TimeSyncerService.js +0 -0
  1072. /package/{services → esm/services}/UserService.js +0 -0
  1073. /package/{services → esm/services}/WebRTCSignallingService.js +0 -0
  1074. /package/{store → esm/store}/RocosStore.js +0 -0
package/RocosSDK.js DELETED
@@ -1,302 +0,0 @@
1
- import { AssetStorageService, AuthService, CallerService, CommandService, ConfigGroupService, ControlService, DashboardService, EvaluatorService, EventService, FileAccessorService, FunctionService, IntegrationService, MapService, PlatFormTimeService, ProfileService, ProjectService, RobotService, ScheduleService, SearchService, SpotProvisioningService, StreamService, TelemetryService, TimeSyncerService, UserService, WebRTCSignallingService, WorkflowService, } from './services';
2
- import { ServiceEnum } from './models';
3
- import { RocosLogger } from './logger/RocosLogger';
4
- import { RocosStore } from './store/RocosStore';
5
- import { StreamRegister } from './api/StreamRegister';
6
- export class RocosSDK {
7
- /**
8
- * Create a new SDK instance using a config object.
9
- *
10
- * @param config - SDK config {@link IRocosSDKConfig}
11
- */
12
- constructor(config) {
13
- this.services = {};
14
- this.config = config;
15
- this.logger = RocosLogger.getInstance(`RocosSDK(${this.config.url})`);
16
- RocosStore.putSDKInstance(this.config, this);
17
- }
18
- /**
19
- * Gets the service by service name.
20
- *
21
- * @param name - Service name {@link ServiceEnum}
22
- */
23
- // eslint-disable-next-line max-lines-per-function
24
- getService(name) {
25
- if (!this.services?.[name]) {
26
- this.logger.info(`Service ${name} does not exist, creating it now.`);
27
- switch (name) {
28
- case ServiceEnum.AUTH:
29
- this.services[name] = new AuthService(this.config);
30
- break;
31
- case ServiceEnum.TELEMETRY:
32
- this.services[name] = new TelemetryService(this.config);
33
- break;
34
- case ServiceEnum.ROBOT:
35
- this.services[name] = new RobotService(this.config);
36
- break;
37
- case ServiceEnum.EVENT:
38
- this.services[name] = new EventService(this.config);
39
- break;
40
- case ServiceEnum.PROJECT:
41
- this.services[name] = new ProjectService(this.config);
42
- break;
43
- case ServiceEnum.CALLER:
44
- this.services[name] = new CallerService(this.config);
45
- break;
46
- case ServiceEnum.COMMAND:
47
- this.services[name] = new CommandService(this.config);
48
- break;
49
- case ServiceEnum.CONTROL:
50
- this.services[name] = new ControlService(this.config);
51
- break;
52
- case ServiceEnum.SEARCH:
53
- this.services[name] = new SearchService(this.config);
54
- break;
55
- case ServiceEnum.CONFIG_GROUP:
56
- this.services[name] = new ConfigGroupService(this.config);
57
- break;
58
- case ServiceEnum.DASHBOARD:
59
- this.services[name] = new DashboardService(this.config);
60
- break;
61
- case ServiceEnum.FUNCTION:
62
- this.services[name] = new FunctionService(this.config);
63
- break;
64
- case ServiceEnum.STREAM:
65
- this.services[name] = new StreamService(this.config);
66
- break;
67
- case ServiceEnum.USER:
68
- this.services[name] = new UserService(this.config);
69
- break;
70
- case ServiceEnum.TIME_SYNCER:
71
- this.services[name] = new TimeSyncerService(this.config);
72
- break;
73
- case ServiceEnum.WORKFLOW:
74
- this.services[name] = new WorkflowService(this.config);
75
- break;
76
- case ServiceEnum.ASSET_STORAGE:
77
- this.services[name] = new AssetStorageService(this.config);
78
- break;
79
- case ServiceEnum.PROFILE:
80
- this.services[name] = new ProfileService(this.config);
81
- break;
82
- case ServiceEnum.WEBRTC_SIGNALLING:
83
- this.services[name] = new WebRTCSignallingService(this.config);
84
- break;
85
- case ServiceEnum.FILE_ACCESSOR:
86
- this.services[name] = new FileAccessorService(this.config);
87
- break;
88
- case ServiceEnum.SCHEDULE:
89
- this.services[name] = new ScheduleService(this.config);
90
- break;
91
- case ServiceEnum.SPOT_PROVISIONER:
92
- this.services[name] = new SpotProvisioningService(this.config);
93
- break;
94
- case ServiceEnum.INTEGRATION:
95
- this.services[name] = new IntegrationService(this.config);
96
- break;
97
- case ServiceEnum.MAP:
98
- this.services[name] = new MapService(this.config);
99
- break;
100
- case ServiceEnum.EVALUATOR:
101
- this.services[name] = new EvaluatorService(this.config);
102
- break;
103
- }
104
- }
105
- this.logger.debug(`Found service ${name}.`);
106
- return this.services[name];
107
- }
108
- /**
109
- * GEts the authentication service.
110
- */
111
- getAuthService() {
112
- return this.getService(ServiceEnum.AUTH);
113
- }
114
- /**
115
- * Gets the robot service.
116
- */
117
- getRobotService() {
118
- return this.getService(ServiceEnum.ROBOT);
119
- }
120
- /**
121
- * Gets the event service.
122
- */
123
- getEventService() {
124
- return this.getService(ServiceEnum.EVENT);
125
- }
126
- /**
127
- * Gets the project service.
128
- */
129
- getProjectService() {
130
- return this.getService(ServiceEnum.PROJECT);
131
- }
132
- /**
133
- * Gets the telemetry service.
134
- */
135
- getTelemetryService() {
136
- return this.getService(ServiceEnum.TELEMETRY);
137
- }
138
- /**
139
- * Gets the service call service.
140
- */
141
- getCallerService() {
142
- return this.getService(ServiceEnum.CALLER);
143
- }
144
- /**
145
- * Gets the command service.
146
- */
147
- getCommandService() {
148
- return this.getService(ServiceEnum.COMMAND);
149
- }
150
- /**
151
- * Gets the robot control service.
152
- */
153
- getControlService() {
154
- return this.getService(ServiceEnum.CONTROL);
155
- }
156
- /**
157
- * Gets the search service.
158
- */
159
- getSearchService() {
160
- return this.getService(ServiceEnum.SEARCH);
161
- }
162
- /**
163
- * Gets the config group service
164
- */
165
- getConfigGroupService() {
166
- return this.getService(ServiceEnum.CONFIG_GROUP);
167
- }
168
- /**
169
- * Gets the dashboard service
170
- */
171
- getDashboardService() {
172
- return this.getService(ServiceEnum.DASHBOARD);
173
- }
174
- /**
175
- * Gets the function service
176
- */
177
- getFunctionService() {
178
- return this.getService(ServiceEnum.FUNCTION);
179
- }
180
- /**
181
- * Gets the stream service
182
- */
183
- getStreamService() {
184
- return this.getService(ServiceEnum.STREAM);
185
- }
186
- /**
187
- * Gets the user service
188
- */
189
- getUserService() {
190
- return this.getService(ServiceEnum.USER);
191
- }
192
- /**
193
- * Gets time syncer service
194
- */
195
- getTimeSyncerService() {
196
- return this.getService(ServiceEnum.TIME_SYNCER);
197
- }
198
- /**
199
- * Gets the workflow service
200
- */
201
- getWorkflowService() {
202
- return this.getService(ServiceEnum.WORKFLOW);
203
- }
204
- /**
205
- * Gets the asset storage service
206
- */
207
- getAssetStorageService() {
208
- return this.getService(ServiceEnum.ASSET_STORAGE);
209
- }
210
- /**
211
- * Gets the robot profile service
212
- */
213
- getProfileService() {
214
- return this.getService(ServiceEnum.PROFILE);
215
- }
216
- /**
217
- * Gets the WebRTC signalling service
218
- * @returns WebRTCSignallingService
219
- */
220
- getWebRTCSignallingService() {
221
- return this.getService(ServiceEnum.WEBRTC_SIGNALLING);
222
- }
223
- /**
224
- * Gets the file accessor service
225
- * @returns FileAccessorService
226
- */
227
- getFileAccessorService() {
228
- return this.getService(ServiceEnum.FILE_ACCESSOR);
229
- }
230
- /**
231
- * Gets the scheduler service
232
- * @returns FileAccessorService
233
- */
234
- getSchedulerService() {
235
- return this.getService(ServiceEnum.SCHEDULE);
236
- }
237
- /**
238
- * Gets the spot provisioner service
239
- * @returns SpotProvisioningService
240
- */
241
- getSpotProvisionerService() {
242
- return this.getService(ServiceEnum.SPOT_PROVISIONER);
243
- }
244
- /**
245
- * Gets the integration service
246
- * @returns IntegrationService
247
- */
248
- getIntegrationService() {
249
- return this.getService(ServiceEnum.INTEGRATION);
250
- }
251
- /**
252
- * Gets the map service
253
- * @returns MapService
254
- */
255
- getMapService() {
256
- return this.getService(ServiceEnum.MAP);
257
- }
258
- /**
259
- * Gets the evaluator service
260
- * @returns EvaluatorService
261
- */
262
- getEvaluatorService() {
263
- return this.getService(ServiceEnum.EVALUATOR);
264
- }
265
- get platformTimeOffset() {
266
- return PlatFormTimeService.getInstance(this.getTimeSyncerService())?.platformTimeOffset;
267
- }
268
- get platformTime() {
269
- return PlatFormTimeService.getInstance(this.getTimeSyncerService())?.platformTime;
270
- }
271
- /**
272
- * Cleanup function to release all the stream resources.
273
- * All streams get destroyed by default once all the observers unsubscribe.
274
- * This should be called as a precaution in case there are some subscriptions still hanging.
275
- */
276
- async cleanup() {
277
- for (const service of Object.values(this.services)) {
278
- if (service.teardown) {
279
- await service.teardown();
280
- }
281
- }
282
- this.services = {};
283
- RocosStore.removeSDKInstance(this.config);
284
- return StreamRegister.getInstance().removeAllStreams();
285
- }
286
- /**
287
- * Enable or disable debug log
288
- *
289
- * @param on
290
- */
291
- enableDebugMode(on) {
292
- if (on) {
293
- RocosLogger.enableAll();
294
- }
295
- else {
296
- RocosLogger.disableAll();
297
- }
298
- }
299
- setDebugLevel(level) {
300
- RocosLogger.setLevel(level);
301
- }
302
- }
@@ -1,127 +0,0 @@
1
- export declare const API_APPLICATION_AUTH_URL = "https://{url}/applications/auth";
2
- export declare const API_ADMIN_USER_INVITATION_URL = "https://{url}/admin/users/invitations";
3
- export declare const API_USER_URL = "https://{url}/users";
4
- export declare const API_USER_AUTH_URL = "https://{url}/users/auth";
5
- export declare const API_USER_TOKEN_URL = "https://{url}/users/token";
6
- export declare const API_OTP_URL = "https://{url}/otp";
7
- export declare const API_OTP_AUTH_URL = "https://{url}/otp/auth";
8
- export declare const API_USER_PASSWORD_RESET_URL = "https://{url}/users/forgotten-password-reset";
9
- export declare const API_USER_PASSWORD_FORGOT_URL = "https://{url}/users/forgotten-password";
10
- export declare const API_USER_INVITATION_URL = "https://{url}/users/invitations";
11
- export declare const API_USER_INVITATION_ACCEPT_URL = "https://{url}/users/invitations/{invitationId}/accept";
12
- export declare const API_USER_INVITATION_CHECK_URL = "https://{url}/users/invitations/{invitationId}/check";
13
- export declare const API_USER_VERIFY_EMAIL_URL = "https://{url}/users/verification-email";
14
- export declare const API_USER_PAT_URL = "https://{url}/users/pat";
15
- export declare const API_USER_PAT_TOKEN_URL = "https://{url}/users/pat/{token}";
16
- export declare const API_ACCOUNT_URL = "https://{url}/accounts";
17
- export declare const API_ACCOUNT_ID_URL = "https://{url}/accounts/{accountId}";
18
- export declare const API_ACCOUNT_ACTIVATE_URL = "https://{url}/accounts/{accountId}/activate";
19
- export declare const API_AUTH_USER_ACCOUNT_USER_URL = "https://{url}/accounts/{accountId}/users";
20
- export declare const API_AUTH_USER_ACCOUNT_USER_ID_URL = "https://{url}/accounts/{accountId}/users/{userId}";
21
- export declare const API_ACCOUNT_SETTINGS_URL = "https://{url}/accounts/{accountId}/settings";
22
- export declare const API_ACCOUNT_INTEGRATION_URL = "https://{url}/accounts/{accountId}/integrations/{integrationId}";
23
- export declare const API_ACCOUNT_INTEGRATION_TYPE_URL = "https://{url}/accounts/{accountId}/integrations/{integrationId}/{integrationType}";
24
- export declare const API_SERVER_TIME_URL = "https://{url}/time";
25
- export declare const API_ACCOUNT_PROJECT_URL = "https://{url}/accounts/{accountId}/projects";
26
- export declare const API_ACCOUNT_PROJECT_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}";
27
- export declare const API_ACCOUNT_PROJECT_USER_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/users";
28
- export declare const API_ACCOUNT_PROJECT_USER_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/users/{userId}";
29
- export declare const API_ACCOUNT_PROJECT_APPLICATION_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/applications";
30
- export declare const API_ACCOUNT_PROJECT_APPLICATION_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/applications/{applicationId}";
31
- export declare const API_PROJECT_URL = "https://{url}/projects";
32
- export declare const API_PROJECT_ID_URL = "https://{url}/projects/{projectId}";
33
- export declare const API_PROJECT_USERS_URL = "https://{url}/projects/{projectId}/users";
34
- export declare const API_PROJECT_ASSET_URL = "https://{url}/projects/{projectId}/assets";
35
- export declare const API_PROJECT_ASSET_PATH_URL = "https://{url}/projects/{projectId}/assets/{filePath}";
36
- export declare const API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL = "https://{url}/projects/{projectId}/robots/{callsign}/sync-definitions";
37
- export declare const API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/sync-definitions";
38
- export declare const API_PROJECT_ROBOT_ASSET_PATH_URL = "https://{url}/projects/{projectId}/robots/{callsign}/assets";
39
- export declare const API_PROJECT_FLOW_ASSET_PATH_URL = "https://{url}/projects/{projectId}/flows/{callsign}/assets";
40
- export declare const API_PROJECT_MISSION_ASSETS_PATH_URL = "https://{url}/projects/{projectId}/missionassets";
41
- export declare const API_PROJECT_MISSION_ASSET_PATH_URL = "https://{url}/projects/{projectId}/missionassets/{assetId}";
42
- export declare const API_PROJECT_ROBOT_URL = "https://{url}/projects/{projectId}/robots";
43
- export declare const API_PROJECT_ROBOT_ID_URL = "https://{url}/projects/{projectId}/robots/{callsign}";
44
- export declare const API_PROJECT_ROBOT_ATTRIBUTES_URL = "https://{url}/projects/{projectId}/robots/{callsign}/attributes";
45
- export declare const API_PROJECT_ROBOT_DEFINITION_URL = "https://{url}/projects/{projectId}/robots/{callsign}/robot-definitions";
46
- export declare const API_PROJECT_ROBOT_REGISTER_URL = "https://{url}/projects/{projectId}/robots/{callsign}/register";
47
- export declare const API_PROJECT_ROBOT_EVENT_URL = "https://{url}/projects/{projectId}/robots/{callsign}/event-definitions";
48
- export declare const API_PROJECT_ROBOT_EVENT_HISTORY_URL = "https://{url}/projects/{projectId}/robots/{callsign}/event-definitions/{eventDefinitionId}/history";
49
- export declare const API_PROJECT_ROBOT_SETTING_URL = "https://{url}/projects/{projectId}/robots/{callsign}/settings";
50
- export declare const API_PROJECT_ROBOT_AGENT_URL = "https://{url}/projects/{projectId}/robots/{callsign}/agent-settings";
51
- export declare const API_PROJECT_ROBOT_COMMAND_URL = "https://{url}/projects/{projectId}/robots/{callsign}/commands";
52
- export declare const API_PROJECT_ROBOT_COMMAND2_URL = "https://{url}/projects/{projectId}/robots/{callsign}/commands-v2";
53
- export declare const API_PROJECT_ROBOT_BUTTON_URL = "https://{url}/projects/{projectId}/robots/{callsign}/buttons";
54
- export declare const API_PROJECT_ROBOT_TRIGGER_URL = "https://{url}/projects/{projectId}/robots/{callsign}/triggers";
55
- export declare const API_PROJECT_ROBOT_GAMEPAD_URL = "https://{url}/projects/{projectId}/robots/{callsign}/gamepads";
56
- export declare const API_PROJECT_OPERATION_URL = "https://{url}/projects/{projectId}/operations";
57
- export declare const API_PROJECT_OPERATION_ID_URL = "https://{url}/projects/{projectId}/operations/{operationId}";
58
- export declare const API_PROJECT_DASHBOARD_URL = "https://{url}/projects/{projectId}/dashboards";
59
- export declare const API_PROJECT_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}";
60
- export declare const API_PROJECT_DASHBOARD_WIDGET_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}/widgets";
61
- export declare const API_PROJECT_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}/custom-widgets";
62
- export declare const API_PROJECT_COLLECTION_ID_URL = "https://{url}/projects/{projectId}/doc-collections/{collectionId}";
63
- export declare const API_PROJECT_COLLECTION_DOCS_URL = "https://{url}/projects/{projectId}/doc-collections/{collectionId}/docs";
64
- export declare const API_PROJECT_VROBOT_DETAILS_URL = "https://{url}/projects/{projectId}/vrobots/{callsign}/details";
65
- export declare const API_PROJECT_VROBOT_DEPLOY_URL = "https://{url}/projects/{projectId}/vrobots/{callsign}/deploy";
66
- export declare const API_PROJECT_DEFINITION_URL = "https://{url}/projects/{projectId}/robot-definitions";
67
- export declare const API_PROJECT_DEFINITION_ID_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}";
68
- export declare const API_PROJECT_DEFINITION_STREAM_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/streams";
69
- export declare const API_PROJECT_DEFINITION_COPY_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/copy";
70
- export declare const API_PROJECT_DEFINITION_DASHBOARD_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboards";
71
- export declare const API_PROJECT_DEFINITION_BLOB_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboard-blob";
72
- export declare const API_PROJECT_DEFINITION_SETTING_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/settings";
73
- export declare const API_PROJECT_DEFINITION_AGENT_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/agent-settings";
74
- export declare const API_PROJECT_DEFINITION_COMMAND_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands";
75
- export declare const API_PROJECT_DEFINITION_COMMAND2_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands-v2";
76
- export declare const API_PROJECT_DEFINITION_EVENT_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/event-definitions";
77
- export declare const API_PROJECT_DEFINITION_ACTION_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/command-actions";
78
- export declare const API_PROJECT_DEFINITION_BUTTON_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/buttons";
79
- export declare const API_PROJECT_DEFINITION_TRIGGER_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/triggers";
80
- export declare const API_PROJECT_DEFINITION_GAMEPAD_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/gamepads";
81
- export declare const API_PROJECT_GROUP_TYPE_URL = "https://{url}/projects/{projectId}/config-groups/{type}";
82
- export declare const API_PROJECT_GROUP_TYPE_ID_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}";
83
- export declare const API_PROJECT_GROUP_TYPE_PUBLISH_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/publish";
84
- export declare const API_PROJECT_GROUP_TYPE_CONFIG_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{configId}";
85
- export declare const API_PROJECT_GROUP_TYPE_VERSION_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{version}";
86
- export declare const API_PROJECT_GROUP_TYPE_OWNER_ID_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/owner/{ownerId}";
87
- export declare const API_PROJECT_GROUP_TYPE_OWNER_OVERRIDE_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{ownerId}/override";
88
- export declare const API_PROJECT_FUNCTION_URL = "https://{url}/projects/{projectId}/functions";
89
- export declare const API_PROJECT_FUNCTION_ID_URL = "https://{url}/projects/{projectId}/functions/{functionId}";
90
- export declare const API_PROJECT_FUNCTION_RUN_URL = "https://{url}/projects/{projectId}/functions/{functionId}/run";
91
- export declare const API_PROJECT_FUNCTION_POD_URL = "https://{url}/projects/{projectId}/functions/{functionId}/pods";
92
- export declare const API_PROJECT_EXPORT_URL = "https://{url}/projects/{projectId}/export-jobs";
93
- export declare const API_PROJECT_STREAM_URL = "https://{url}/projects/{projectId}/streams";
94
- export declare const API_PROJECT_STREAM_ID_URL = "https://{url}/projects/{projectId}/streams/{streamId}";
95
- export declare const API_PROJECT_STREAM_DATA_URL = "https://{url}/projects/{projectId}/streams/{streamId}/data";
96
- export declare const API_PROJECT_STREAM_CALLSIGN_URL = "https://{url}/projects/{projectId}/streams/{streamId}/callsigns";
97
- export declare const API_PROJECT_ROBOT_DASHBOARD_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards";
98
- export declare const API_PROJECT_ROBOT_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}";
99
- export declare const API_PROJECT_ROBOT_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}/custom-widgets";
100
- export declare const API_PROJECT_CALLSIGN_STREAM_URL = "https://{url}/projects/{projectId}/callsigns/{callsign}/streams";
101
- export declare const API_PROJECT_CALLSIGN_WORKFLOW_URL = "https://{url}/projects/{projectId}/callsigns/{callsign}/workflows";
102
- export declare const API_PROJECT_WORKFLOW_URL = "https://{url}/projects/{projectId}/workflows";
103
- export declare const API_PROJECT_ROBOT_DEPLOYED_WORKFLOW_URL = "https://{url}/projects/{projectId}/robots/{callsign}/automate/flows/deployments";
104
- export declare const API_PROJECT_WORKFLOW_ID_URL = "https://{url}/projects/{projectId}/workflows/{workflowId}";
105
- export declare const API_PROJECT_PROFILE_DASHBOARD_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards";
106
- export declare const API_PROJECT_PROFILE_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}";
107
- export declare const API_PROJECT_PROFILE_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}/custom-widgets";
108
- export declare const API_TEMPLATE_DEPLOY_URL = "https://{url}/templates/vrobot-deployment";
109
- export declare const API_TEMPLATE_PROVISION_URL = "https://{url}/templates/rocos-provisioning-templates";
110
- export declare const API_TEMPLATE_PROVISION_ID_URL = "https://{url}/templates/rocos-provisioning-templates/exec/{templateId}";
111
- export declare const API_TEMPLATE_EXPORTER_URL = "https://{url}/templates/project-stream-data-exporter";
112
- export declare const API_SOURCE_SCHEMA_URL = "https://{url}/sourceschemas";
113
- export declare const API_SOURCE_URL = "https://{url}/sources";
114
- export declare const API_SOURCE_ID_URL = "https://{url}/sources/{sourceId}";
115
- export declare const API_PROJECT_SCHEDULES_URL = "https://{url}/projects/{projectId}/robots/{callsign}/schedules";
116
- export declare const API_SPOTTY_URL = "https://{url}/spotty";
117
- export declare const API_DD_INTEGRATION_PLANS_URL = "https://{url}/projects/{projectId}/dd/plans";
118
- export declare const API_DD_INTEGRATION_PLAN_BY_ID_URL = "https://{url}/projects/{projectId}/dd/plan/{planId}";
119
- export declare const API_DD_INTEGRATION_OVERLAYS_URL = "https://{url}/projects/{projectId}/dd/overlays";
120
- export declare const API_DD_INTEGRATION_ISSUES_URL = "https://{url}/projects/{projectId}/dd/issues";
121
- export declare const API_MAPS_URL = "https://{url}/projects/{projectId}/maps";
122
- export declare const API_MAPS_DEPLOYED_URL = "https://{url}/projects/{projectId}/maps/deployed?callsign={callsign}";
123
- export declare const API_MAPS_MERGE_URL = "https://{url}/projects/{projectId}/maps/merge";
124
- export declare const API_MAP_ID_URL = "https://{url}/projects/{projectId}/maps/{mapId}";
125
- export declare const API_MAPS_COPY_URL = "https://{url}/projects/{projectId}/maps/{mapId}/copy";
126
- export declare const API_MAPS_DEPLOY_URL = "https://{url}/projects/{projectId}/maps/{mapId}/deploy";
127
- export declare const API_MAPS_GEOJSON_URL = "https://{url}/projects/{projectId}/maps/{mapId}/geojson";
package/constants/api.js DELETED
@@ -1,127 +0,0 @@
1
- export const API_APPLICATION_AUTH_URL = 'https://{url}/applications/auth';
2
- export const API_ADMIN_USER_INVITATION_URL = 'https://{url}/admin/users/invitations';
3
- export const API_USER_URL = 'https://{url}/users';
4
- export const API_USER_AUTH_URL = 'https://{url}/users/auth';
5
- export const API_USER_TOKEN_URL = 'https://{url}/users/token';
6
- export const API_OTP_URL = 'https://{url}/otp';
7
- export const API_OTP_AUTH_URL = 'https://{url}/otp/auth';
8
- export const API_USER_PASSWORD_RESET_URL = 'https://{url}/users/forgotten-password-reset';
9
- export const API_USER_PASSWORD_FORGOT_URL = 'https://{url}/users/forgotten-password';
10
- export const API_USER_INVITATION_URL = 'https://{url}/users/invitations';
11
- export const API_USER_INVITATION_ACCEPT_URL = 'https://{url}/users/invitations/{invitationId}/accept';
12
- export const API_USER_INVITATION_CHECK_URL = 'https://{url}/users/invitations/{invitationId}/check';
13
- export const API_USER_VERIFY_EMAIL_URL = 'https://{url}/users/verification-email';
14
- export const API_USER_PAT_URL = 'https://{url}/users/pat';
15
- export const API_USER_PAT_TOKEN_URL = 'https://{url}/users/pat/{token}';
16
- export const API_ACCOUNT_URL = 'https://{url}/accounts';
17
- export const API_ACCOUNT_ID_URL = 'https://{url}/accounts/{accountId}';
18
- export const API_ACCOUNT_ACTIVATE_URL = 'https://{url}/accounts/{accountId}/activate';
19
- export const API_AUTH_USER_ACCOUNT_USER_URL = 'https://{url}/accounts/{accountId}/users';
20
- export const API_AUTH_USER_ACCOUNT_USER_ID_URL = 'https://{url}/accounts/{accountId}/users/{userId}';
21
- export const API_ACCOUNT_SETTINGS_URL = 'https://{url}/accounts/{accountId}/settings';
22
- export const API_ACCOUNT_INTEGRATION_URL = 'https://{url}/accounts/{accountId}/integrations/{integrationId}';
23
- export const API_ACCOUNT_INTEGRATION_TYPE_URL = 'https://{url}/accounts/{accountId}/integrations/{integrationId}/{integrationType}';
24
- export const API_SERVER_TIME_URL = 'https://{url}/time';
25
- export const API_ACCOUNT_PROJECT_URL = 'https://{url}/accounts/{accountId}/projects';
26
- export const API_ACCOUNT_PROJECT_ID_URL = 'https://{url}/accounts/{accountId}/projects/{projectId}';
27
- export const API_ACCOUNT_PROJECT_USER_URL = 'https://{url}/accounts/{accountId}/projects/{projectId}/users';
28
- export const API_ACCOUNT_PROJECT_USER_ID_URL = 'https://{url}/accounts/{accountId}/projects/{projectId}/users/{userId}';
29
- export const API_ACCOUNT_PROJECT_APPLICATION_URL = 'https://{url}/accounts/{accountId}/projects/{projectId}/applications';
30
- export const API_ACCOUNT_PROJECT_APPLICATION_ID_URL = 'https://{url}/accounts/{accountId}/projects/{projectId}/applications/{applicationId}';
31
- export const API_PROJECT_URL = 'https://{url}/projects';
32
- export const API_PROJECT_ID_URL = 'https://{url}/projects/{projectId}';
33
- export const API_PROJECT_USERS_URL = 'https://{url}/projects/{projectId}/users';
34
- export const API_PROJECT_ASSET_URL = 'https://{url}/projects/{projectId}/assets';
35
- export const API_PROJECT_ASSET_PATH_URL = 'https://{url}/projects/{projectId}/assets/{filePath}';
36
- export const API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/sync-definitions';
37
- export const API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL = 'https://{url}/projects/{projectId}/profiles/{profileId}/sync-definitions';
38
- export const API_PROJECT_ROBOT_ASSET_PATH_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/assets';
39
- export const API_PROJECT_FLOW_ASSET_PATH_URL = 'https://{url}/projects/{projectId}/flows/{callsign}/assets';
40
- export const API_PROJECT_MISSION_ASSETS_PATH_URL = 'https://{url}/projects/{projectId}/missionassets';
41
- export const API_PROJECT_MISSION_ASSET_PATH_URL = 'https://{url}/projects/{projectId}/missionassets/{assetId}';
42
- export const API_PROJECT_ROBOT_URL = 'https://{url}/projects/{projectId}/robots';
43
- export const API_PROJECT_ROBOT_ID_URL = 'https://{url}/projects/{projectId}/robots/{callsign}';
44
- export const API_PROJECT_ROBOT_ATTRIBUTES_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/attributes';
45
- export const API_PROJECT_ROBOT_DEFINITION_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/robot-definitions';
46
- export const API_PROJECT_ROBOT_REGISTER_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/register';
47
- export const API_PROJECT_ROBOT_EVENT_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/event-definitions';
48
- export const API_PROJECT_ROBOT_EVENT_HISTORY_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/event-definitions/{eventDefinitionId}/history';
49
- export const API_PROJECT_ROBOT_SETTING_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/settings';
50
- export const API_PROJECT_ROBOT_AGENT_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/agent-settings';
51
- export const API_PROJECT_ROBOT_COMMAND_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/commands';
52
- export const API_PROJECT_ROBOT_COMMAND2_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/commands-v2';
53
- export const API_PROJECT_ROBOT_BUTTON_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/buttons';
54
- export const API_PROJECT_ROBOT_TRIGGER_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/triggers';
55
- export const API_PROJECT_ROBOT_GAMEPAD_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/gamepads';
56
- export const API_PROJECT_OPERATION_URL = 'https://{url}/projects/{projectId}/operations';
57
- export const API_PROJECT_OPERATION_ID_URL = 'https://{url}/projects/{projectId}/operations/{operationId}';
58
- export const API_PROJECT_DASHBOARD_URL = 'https://{url}/projects/{projectId}/dashboards';
59
- export const API_PROJECT_DASHBOARD_ID_URL = 'https://{url}/projects/{projectId}/dashboards/{dashboardId}';
60
- export const API_PROJECT_DASHBOARD_WIDGET_URL = 'https://{url}/projects/{projectId}/dashboards/{dashboardId}/widgets';
61
- export const API_PROJECT_DASHBOARD_CUSTOM_WIDGET_URL = 'https://{url}/projects/{projectId}/dashboards/{dashboardId}/custom-widgets';
62
- export const API_PROJECT_COLLECTION_ID_URL = 'https://{url}/projects/{projectId}/doc-collections/{collectionId}';
63
- export const API_PROJECT_COLLECTION_DOCS_URL = 'https://{url}/projects/{projectId}/doc-collections/{collectionId}/docs';
64
- export const API_PROJECT_VROBOT_DETAILS_URL = 'https://{url}/projects/{projectId}/vrobots/{callsign}/details';
65
- export const API_PROJECT_VROBOT_DEPLOY_URL = 'https://{url}/projects/{projectId}/vrobots/{callsign}/deploy';
66
- export const API_PROJECT_DEFINITION_URL = 'https://{url}/projects/{projectId}/robot-definitions';
67
- export const API_PROJECT_DEFINITION_ID_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}';
68
- export const API_PROJECT_DEFINITION_STREAM_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/streams';
69
- export const API_PROJECT_DEFINITION_COPY_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/copy';
70
- export const API_PROJECT_DEFINITION_DASHBOARD_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboards';
71
- export const API_PROJECT_DEFINITION_BLOB_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboard-blob';
72
- export const API_PROJECT_DEFINITION_SETTING_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/settings';
73
- export const API_PROJECT_DEFINITION_AGENT_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/agent-settings';
74
- export const API_PROJECT_DEFINITION_COMMAND_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands';
75
- export const API_PROJECT_DEFINITION_COMMAND2_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands-v2';
76
- export const API_PROJECT_DEFINITION_EVENT_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/event-definitions';
77
- export const API_PROJECT_DEFINITION_ACTION_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/command-actions';
78
- export const API_PROJECT_DEFINITION_BUTTON_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/buttons';
79
- export const API_PROJECT_DEFINITION_TRIGGER_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/triggers';
80
- export const API_PROJECT_DEFINITION_GAMEPAD_URL = 'https://{url}/projects/{projectId}/robot-definitions/{definitionId}/gamepads';
81
- export const API_PROJECT_GROUP_TYPE_URL = 'https://{url}/projects/{projectId}/config-groups/{type}';
82
- export const API_PROJECT_GROUP_TYPE_ID_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}';
83
- export const API_PROJECT_GROUP_TYPE_PUBLISH_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/publish';
84
- export const API_PROJECT_GROUP_TYPE_CONFIG_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{configId}';
85
- export const API_PROJECT_GROUP_TYPE_VERSION_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{version}';
86
- export const API_PROJECT_GROUP_TYPE_OWNER_ID_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/owner/{ownerId}';
87
- export const API_PROJECT_GROUP_TYPE_OWNER_OVERRIDE_URL = 'https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{ownerId}/override';
88
- export const API_PROJECT_FUNCTION_URL = 'https://{url}/projects/{projectId}/functions';
89
- export const API_PROJECT_FUNCTION_ID_URL = 'https://{url}/projects/{projectId}/functions/{functionId}';
90
- export const API_PROJECT_FUNCTION_RUN_URL = 'https://{url}/projects/{projectId}/functions/{functionId}/run';
91
- export const API_PROJECT_FUNCTION_POD_URL = 'https://{url}/projects/{projectId}/functions/{functionId}/pods';
92
- export const API_PROJECT_EXPORT_URL = 'https://{url}/projects/{projectId}/export-jobs';
93
- export const API_PROJECT_STREAM_URL = 'https://{url}/projects/{projectId}/streams';
94
- export const API_PROJECT_STREAM_ID_URL = 'https://{url}/projects/{projectId}/streams/{streamId}';
95
- export const API_PROJECT_STREAM_DATA_URL = 'https://{url}/projects/{projectId}/streams/{streamId}/data';
96
- export const API_PROJECT_STREAM_CALLSIGN_URL = 'https://{url}/projects/{projectId}/streams/{streamId}/callsigns';
97
- export const API_PROJECT_ROBOT_DASHBOARD_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/dashboards';
98
- export const API_PROJECT_ROBOT_DASHBOARD_ID_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}';
99
- export const API_PROJECT_ROBOT_DASHBOARD_CUSTOM_WIDGET_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}/custom-widgets';
100
- export const API_PROJECT_CALLSIGN_STREAM_URL = 'https://{url}/projects/{projectId}/callsigns/{callsign}/streams';
101
- export const API_PROJECT_CALLSIGN_WORKFLOW_URL = 'https://{url}/projects/{projectId}/callsigns/{callsign}/workflows';
102
- export const API_PROJECT_WORKFLOW_URL = 'https://{url}/projects/{projectId}/workflows';
103
- export const API_PROJECT_ROBOT_DEPLOYED_WORKFLOW_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/automate/flows/deployments';
104
- export const API_PROJECT_WORKFLOW_ID_URL = 'https://{url}/projects/{projectId}/workflows/{workflowId}';
105
- export const API_PROJECT_PROFILE_DASHBOARD_URL = 'https://{url}/projects/{projectId}/profiles/{profileId}/dashboards';
106
- export const API_PROJECT_PROFILE_DASHBOARD_ID_URL = 'https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}';
107
- export const API_PROJECT_PROFILE_DASHBOARD_CUSTOM_WIDGET_URL = 'https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}/custom-widgets';
108
- export const API_TEMPLATE_DEPLOY_URL = 'https://{url}/templates/vrobot-deployment';
109
- export const API_TEMPLATE_PROVISION_URL = 'https://{url}/templates/rocos-provisioning-templates';
110
- export const API_TEMPLATE_PROVISION_ID_URL = 'https://{url}/templates/rocos-provisioning-templates/exec/{templateId}';
111
- export const API_TEMPLATE_EXPORTER_URL = 'https://{url}/templates/project-stream-data-exporter';
112
- export const API_SOURCE_SCHEMA_URL = 'https://{url}/sourceschemas';
113
- export const API_SOURCE_URL = 'https://{url}/sources';
114
- export const API_SOURCE_ID_URL = 'https://{url}/sources/{sourceId}';
115
- export const API_PROJECT_SCHEDULES_URL = 'https://{url}/projects/{projectId}/robots/{callsign}/schedules';
116
- export const API_SPOTTY_URL = 'https://{url}/spotty';
117
- export const API_DD_INTEGRATION_PLANS_URL = 'https://{url}/projects/{projectId}/dd/plans';
118
- export const API_DD_INTEGRATION_PLAN_BY_ID_URL = 'https://{url}/projects/{projectId}/dd/plan/{planId}';
119
- export const API_DD_INTEGRATION_OVERLAYS_URL = 'https://{url}/projects/{projectId}/dd/overlays';
120
- export const API_DD_INTEGRATION_ISSUES_URL = 'https://{url}/projects/{projectId}/dd/issues';
121
- export const API_MAPS_URL = 'https://{url}/projects/{projectId}/maps';
122
- export const API_MAPS_DEPLOYED_URL = 'https://{url}/projects/{projectId}/maps/deployed?callsign={callsign}';
123
- export const API_MAPS_MERGE_URL = 'https://{url}/projects/{projectId}/maps/merge';
124
- export const API_MAP_ID_URL = 'https://{url}/projects/{projectId}/maps/{mapId}';
125
- export const API_MAPS_COPY_URL = 'https://{url}/projects/{projectId}/maps/{mapId}/copy';
126
- export const API_MAPS_DEPLOY_URL = 'https://{url}/projects/{projectId}/maps/{mapId}/deploy';
127
- export const API_MAPS_GEOJSON_URL = 'https://{url}/projects/{projectId}/maps/{mapId}/geojson';
@@ -1,5 +0,0 @@
1
- // Auto-generated file
2
- /* eslint-disable */
3
- import __WORKER_SOURCE__ from './worker/worker.source';
4
- const source = `(()=>{"use strict";var e={880:(e,t)=>{var s;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.RESPONSE="response",e.MESSAGE="message"}(s||(s={}));const r={allowedSenderOrigin:void 0,debugMode:!1};t.default=class{constructor(e,t,s,i,o={}){this.callbacks=new Map,this.serviceMethods=new Map,this.name=e,this.options={...r,...o},this.log("Created connection w/ allowedOrigin:",this.options.allowedSenderOrigin),this.serviceMethods=new Map(Object.entries(s));const[n]=crypto.getRandomValues(new Uint32Array(1));this.incrementalID=n,this.postMessageInternal=t,i((e=>this.onMessageListener(e)))}callRemoteMethod(e,...t){return this.log("Calling Remote Method",{name:e,args:t}),new Promise(((r,i)=>{const o=this.registerCallback(r,i);this.postMessage({callId:o,type:s.MESSAGE,methodName:e,arguments:t})}))}onMessageListener(e){this.log("Received message",e);const{data:t}=e,{allowedSenderOrigin:r}=this.options;switch(r&&e.origin!==r&&console.warn(\`Received message from invalid origin: \${e.origin}\`),t.type){case s.RESPONSE:return void this.popCallback(t.callId,t.success,t.result);case s.MESSAGE:this.callLocalMethod(t.methodName,t.arguments).then((e=>this.responseOtherSide(t.callId,e))).catch((e=>this.responseOtherSide(t.callId,e,!1)))}}async callLocalMethod(e,t){this.log("calling local method",e,t);const s=this.serviceMethods.get(e);if(!s)throw new Error(\`service method \${e} not found\`);return s(...t)}responseOtherSide(e,t,r=!0){this.log("responding to remote call",{id:e,result:t,success:r});const i=t=>{this.postMessage({callId:e,type:s.RESPONSE,success:r,result:t})};try{i(t)}catch(e){e instanceof DOMException&&i(JSON.parse(JSON.stringify(t)))}}registerCallback(e,t){const s=(++this.incrementalID).toString();return this.log("registering callback for id",s),this.callbacks.set(s,{success:e,failure:t}),s}popCallback(e,t,s){this.log("calling callback for id",e,{success:t,result:s});const r=this.callbacks.get(e);t?r?.success(s):r?.failure(s),this.callbacks.delete(e)}postMessage(e,t="*"){this.log("sending message",{data:e,targetOrigin:t}),this.postMessageInternal(e,t)}log(...e){this.options.debugMode&&console.debug(\`[\${this.name}]\`,...e)}}},306:function(e,t,s){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const i=r(s(880)),o=r(s(54)),n=new class{constructor(){const e=!!window?.debugMode;this.connection=new i.default("FRAME",window.parent.postMessage.bind(window.parent),{startTask:this.runCode.bind(this)},(e=>{window.addEventListener("message",e)}),{debugMode:e}),this.connection.callRemoteMethod("iframeInitialised"),this.workerManager=new o.default}async runCode(e){return this.workerManager.execute(e)}};t.default=n},54:function(e,t,s){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const i=r(s(420));t.default=i.default},420:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default=class{constructor(){this.messageListeners=new Map,this.worker=this.createWorker()}async execute(e){const t={...e,contextVariable:e.contextVariable??"ctx"},s=this.runTask(t);let r;const i=new Promise(((t,s)=>{r=setTimeout((()=>{console.warn("sandbox level timeout exceeded, destroying and rebuilding"),this.terminate(),s(new Error("maximum execution time exceeded"))}),e.timeout)}));return Promise.race([s,i]).finally((()=>{this.removeMessageListener(e.id),clearTimeout(r)}))}terminate(){for(const e of this.messageListeners.values())this.worker.removeEventListener("message",e);this.worker.terminate(),this.worker=this.createWorker()}runTask(e){return new Promise(((t,s)=>{const r=r=>{const{data:i}=r;i.id===e.id&&(i.success?t(i.result):s(i.result))};this.messageListeners.set(e.id,r),this.worker.addEventListener("message",r),this.worker.postMessage(e)}))}createWorker(){const e=URL.createObjectURL(new Blob(["${__WORKER_SOURCE__.replace(/(['`"$])/g, '\\$1')}"],{type:"application/javascript"}));return new Worker(e)}removeMessageListener(e){const t=this.messageListeners.get(e);t&&this.worker.removeEventListener("message",t)}}}},t={};!function s(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={exports:{}};return e[r].call(o.exports,o,o.exports,s),o.exports}(306)})();`;
5
- export default source;