@dronedeploy/rocos-js-sdk 3.0.1-alpha.3 → 3.0.1-alpha.5
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/IRocosSDK.d.ts +34 -0
- package/cjs/IRocosSDK.js +6 -0
- package/cjs/RocosSDK.d.ts +148 -0
- package/cjs/RocosSDK.js +316 -0
- package/cjs/api/StreamRegister.js +73 -0
- package/cjs/api/atoms/StreamHeartbeat.js +115 -0
- package/cjs/api/streams/caller/CallerStream.js +81 -0
- package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
- package/cjs/api/streams/caller/CallerStreamNode.js +142 -0
- package/cjs/api/streams/command/CommandStream.js +70 -0
- package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
- package/cjs/api/streams/command/CommandStreamNode.js +96 -0
- package/cjs/api/streams/control/ControlStream.js +79 -0
- package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
- package/cjs/api/streams/control/ControlStreamNode.js +100 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStream.js +63 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +93 -0
- package/cjs/api/streams/search/SearchStream.js +100 -0
- package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
- package/cjs/api/streams/search/SearchStreamNode.js +145 -0
- package/cjs/api/streams/telemetry/TelemetryStream.js +101 -0
- package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
- package/cjs/api/streams/telemetry/TelemetryStreamNode.js +202 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
- package/cjs/constants/api.d.ts +133 -0
- package/cjs/constants/api.js +138 -0
- package/cjs/constants/auth.js +5 -0
- package/cjs/constants/grpc.js +8 -0
- package/cjs/constants/identifier.js +9 -0
- package/cjs/constants/timezones.js +430 -0
- package/cjs/grpc/conker_pb.client.js +59 -0
- package/cjs/grpc/conker_pb.grpc-client.js +85 -0
- package/cjs/grpc/conker_pb.js +107 -0
- package/cjs/grpc/filagree_pb.client.js +52 -0
- package/cjs/grpc/filagree_pb.grpc-client.js +78 -0
- package/cjs/grpc/filagree_pb.js +332 -0
- package/cjs/grpc/google/protobuf/descriptor_pb.js +2381 -0
- package/cjs/grpc/google/protobuf/empty_pb.js +50 -0
- package/cjs/grpc/pigeon_pb.client.js +77 -0
- package/cjs/grpc/pigeon_pb.grpc-client.js +96 -0
- package/cjs/grpc/pigeon_pb.js +147 -0
- package/cjs/grpc/rambo.uri.v1_pb.js +51 -0
- package/cjs/grpc/rambo.v1_pb.client.js +53 -0
- package/cjs/grpc/rambo.v1_pb.grpc-client.js +72 -0
- package/cjs/grpc/rambo.v1_pb.js +275 -0
- package/cjs/grpc/serviette.uri.v1_pb.js +65 -0
- package/cjs/grpc/serviette.v1_pb.client.js +183 -0
- package/cjs/grpc/serviette.v1_pb.grpc-client.js +194 -0
- package/cjs/grpc/serviette.v1_pb.js +556 -0
- package/cjs/grpc/slowlane_pb.client.js +45 -0
- package/cjs/grpc/slowlane_pb.grpc-client.js +71 -0
- package/cjs/grpc/slowlane_pb.js +188 -0
- package/cjs/grpc/teletubby_pb.client.js +109 -0
- package/cjs/grpc/teletubby_pb.grpc-client.js +128 -0
- package/cjs/grpc/teletubby_pb.js +1267 -0
- package/cjs/helpers/arrayRemove.js +7 -0
- package/cjs/helpers/arrayUnique.js +7 -0
- package/cjs/helpers/average.js +10 -0
- package/cjs/helpers/callerMessageHelpers.d.ts +14 -0
- package/cjs/helpers/callerMessageHelpers.js +91 -0
- package/cjs/helpers/cleanObject.js +22 -0
- package/cjs/helpers/cleanObject.spec.js +55 -0
- package/cjs/helpers/enviroment.js +17 -0
- package/cjs/helpers/flattenCallsignsLookup.js +10 -0
- package/cjs/helpers/flattenObject.js +17 -0
- package/cjs/helpers/flattenObject.spec.js +31 -0
- package/cjs/helpers/flattenOneOf.js +34 -0
- package/cjs/helpers/flattenOneOf.spec.js +159 -0
- package/cjs/helpers/formatServiceUrl.js +11 -0
- package/cjs/helpers/formatServiceUrl.spec.js +18 -0
- package/cjs/helpers/generateUUID.js +8 -0
- package/cjs/helpers/getSubscriptionsDifference.js +39 -0
- package/cjs/helpers/getURLSearchParams.js +13 -0
- package/cjs/helpers/getURLSearchParams.spec.js +21 -0
- package/cjs/helpers/getUniqueConfigKey.js +18 -0
- package/cjs/helpers/getUniqueId.js +15 -0
- package/cjs/helpers/getUnixTimeMs.js +8 -0
- package/cjs/helpers/index.js +21 -0
- package/cjs/helpers/nanosecondToMillisecond.js +16 -0
- package/cjs/helpers/nanosecondToMillisecond.spec.js +22 -0
- package/cjs/helpers/randomString.js +7 -0
- package/cjs/helpers/splitRobotTopic.d.ts +9 -0
- package/cjs/helpers/splitRobotTopic.js +16 -0
- package/cjs/helpers/splitRobotTopic.spec.js +53 -0
- package/cjs/helpers/standardDeviation.js +16 -0
- package/cjs/helpers/standardDeviation.spec.js +13 -0
- package/cjs/helpers/stringToUint8Array.js +14 -0
- package/cjs/helpers/uint8ArrayToString.js +14 -0
- package/cjs/helpers/websandbox/connection.js +136 -0
- package/cjs/helpers/websandbox/frame/frame.js +27 -0
- package/cjs/helpers/websandbox/frame/frame.source.js +10 -0
- package/cjs/helpers/websandbox/frame/index.js +7 -0
- package/cjs/helpers/websandbox/frame/worker/index.js +7 -0
- package/cjs/helpers/websandbox/frame/worker/manager.js +70 -0
- package/cjs/helpers/websandbox/frame/worker/manager.spec.js +132 -0
- package/cjs/helpers/websandbox/frame/worker/types.js +2 -0
- package/cjs/helpers/websandbox/frame/worker/worker.js +75 -0
- package/cjs/helpers/websandbox/frame/worker/worker.source.js +6 -0
- package/cjs/helpers/websandbox/index.js +8 -0
- package/cjs/helpers/websandbox/sandbox.js +182 -0
- package/cjs/helpers/websandbox/types.js +2 -0
- package/cjs/index.js +23 -0
- package/cjs/logger/RocosLogger.js +67 -0
- package/cjs/models/CallsignStatus.js +10 -0
- package/cjs/models/ExportDataQuery.js +17 -0
- package/cjs/models/ExternalProject.js +6 -0
- package/cjs/models/IBaseService.js +2 -0
- package/cjs/models/IConfigGroup.js +2 -0
- package/cjs/models/IDebugLevel.js +2 -0
- package/cjs/models/IExportDataQuery.js +2 -0
- package/cjs/models/IFunctionConfig.js +2 -0
- package/cjs/models/IInvitation.js +2 -0
- package/cjs/models/IInvitationExists.js +2 -0
- package/cjs/models/IOperation.js +2 -0
- package/cjs/models/IPersonalAccessToken.js +2 -0
- package/cjs/models/IProject.js +2 -0
- package/cjs/models/IProjectApplication.js +2 -0
- package/cjs/models/IRobot.js +2 -0
- package/cjs/models/IRobotConfig.js +2 -0
- package/cjs/models/IRobotPlugin.js +2 -0
- package/cjs/models/IRobotSettings.js +2 -0
- package/cjs/models/IRobotTemplate.js +2 -0
- package/cjs/models/IRocosSDKConfig.js +2 -0
- package/cjs/models/ISource.js +2 -0
- package/cjs/models/IStream.js +2 -0
- package/cjs/models/IStreamConfig.js +2 -0
- package/cjs/models/IStreamOptions.js +2 -0
- package/cjs/models/IStreamSource.js +2 -0
- package/cjs/models/ISubscriberStatus.js +2 -0
- package/cjs/models/ITelemetryStreamConfig.js +2 -0
- package/cjs/models/IToken.js +2 -0
- package/cjs/models/IWidget.js +2 -0
- package/cjs/models/IWidgetLineGroup.js +2 -0
- package/cjs/models/ResponseLevelEnum.js +14 -0
- package/cjs/models/Robot.js +12 -0
- package/cjs/models/RobotConfig.js +9 -0
- package/cjs/models/RobotPlugin.js +9 -0
- package/cjs/models/RobotTemplate.js +29 -0
- package/cjs/models/RocosError.d.ts +32 -0
- package/cjs/models/RocosError.js +45 -0
- package/cjs/models/ServiceEnum.d.ts +28 -0
- package/cjs/models/ServiceEnum.js +32 -0
- package/cjs/models/Stream.js +15 -0
- package/cjs/models/StreamOptions.js +37 -0
- package/cjs/models/StreamSource.js +15 -0
- package/cjs/models/SubscriberStatusEnum.js +10 -0
- package/cjs/models/Token.js +82 -0
- package/cjs/models/Token.spec.js +110 -0
- package/cjs/models/Widget.js +16 -0
- package/cjs/models/WidgetLineGroup.js +9 -0
- package/cjs/models/asset-storage/AssetModelItem.d.ts +14 -0
- package/cjs/models/asset-storage/AssetModelItem.js +2 -0
- package/cjs/models/asset-storage/SyncIntegrations.d.ts +31 -0
- package/cjs/models/asset-storage/SyncIntegrations.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
- package/cjs/models/caller/IRocosCallerMessageChunk.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageChunks.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponse.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponseAck.js +16 -0
- package/cjs/models/caller/IRocosCallerMessageResponseResult.js +15 -0
- package/cjs/models/caller/IRocosCallerMessageResponseReturn.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponseUid.js +10 -0
- package/cjs/models/caller/IRocosCallerMessageResponses.js +2 -0
- package/cjs/models/caller/RocosCallerResultStatus.js +15 -0
- package/cjs/models/caller/RocosResponseLevel.js +10 -0
- package/cjs/models/caller/index.d.ts +11 -0
- package/cjs/models/caller/index.js +27 -0
- package/cjs/models/callsigns/CallsignsEnums.js +20 -0
- package/cjs/models/callsigns/CallsignsLookup.js +32 -0
- package/cjs/models/callsigns/CallsignsQuery.js +18 -0
- package/cjs/models/callsigns/CallsignsQueryPredicate.js +19 -0
- package/cjs/models/command/IRocosCommandMessageHeartbeat.js +2 -0
- package/cjs/models/command/IRocosCommandMessageResponse.js +30 -0
- package/cjs/models/command/RocosCommandResultStatus.js +15 -0
- package/cjs/models/command/index.js +20 -0
- package/cjs/models/file/FileEnums.js +36 -0
- package/cjs/models/index.d.ts +77 -0
- package/cjs/models/index.js +93 -0
- package/cjs/models/integrations/Overlay.js +2 -0
- package/cjs/models/integrations/Plan.js +2 -0
- package/cjs/models/maps/Map.js +2 -0
- package/cjs/models/maps/Panorama.d.ts +36 -0
- package/cjs/models/maps/Panorama.js +2 -0
- package/cjs/models/message/IRocosCallerMessage.js +2 -0
- package/cjs/models/message/IRocosChangeMessage.js +2 -0
- package/cjs/models/message/IRocosCommandMessage.js +2 -0
- package/cjs/models/message/IRocosControlMessage.js +2 -0
- package/cjs/models/message/IRocosOpResultMessage.js +2 -0
- package/cjs/models/message/IRocosSearchMessage.js +2 -0
- package/cjs/models/message/IRocosSearchRowMessage.js +2 -0
- package/cjs/models/message/IRocosSearchStatusMessage.js +2 -0
- package/cjs/models/message/IRocosTelemetryMessage.d.ts +23 -0
- package/cjs/models/message/IRocosTelemetryMessage.js +2 -0
- package/cjs/models/message/IStreamStatusMessage.js +2 -0
- package/cjs/models/message/RocosCallerMessage.js +36 -0
- package/cjs/models/message/RocosCommandMessage.js +17 -0
- package/cjs/models/message/RocosControlMessage.js +18 -0
- package/cjs/models/message/RocosOpResultMessage.js +22 -0
- package/cjs/models/message/RocosSearchMessage.js +28 -0
- package/cjs/models/message/RocosSearchRowMessage.js +20 -0
- package/cjs/models/message/RocosTelemetryMessage.js +67 -0
- package/cjs/models/message/index.js +33 -0
- package/cjs/models/params/ICallerParams.d.ts +26 -0
- package/cjs/models/params/ICallerParams.js +2 -0
- package/cjs/models/params/ICommandParams.js +2 -0
- package/cjs/models/params/IControlParams.js +2 -0
- package/cjs/models/params/IFileAccessorParams.js +2 -0
- package/cjs/models/params/ISearchParams.js +2 -0
- package/cjs/models/params/ITelemetryParams.js +2 -0
- package/cjs/models/params/IWebRTCSignallingParams.js +2 -0
- package/cjs/models/projects/ProjectUser.js +2 -0
- package/cjs/models/schedule/IScheduleAction.js +9 -0
- package/cjs/models/schedule/IScheduleInfo.js +2 -0
- package/cjs/models/schedule/IScheduleJob.js +2 -0
- package/cjs/models/search/SearchQueryFilter.js +9 -0
- package/cjs/models/search/SearchStreamQuery.js +10 -0
- package/cjs/models/stream/IBaseStream.js +2 -0
- package/cjs/models/stream/ICallerStream.js +2 -0
- package/cjs/models/stream/ICommandStream.js +2 -0
- package/cjs/models/stream/IControlStream.js +2 -0
- package/cjs/models/stream/IFileAccessorStream.js +2 -0
- package/cjs/models/stream/ISearchStream.js +2 -0
- package/cjs/models/stream/ITelemetryStream.js +2 -0
- package/cjs/models/stream/IWebRTCSignallingStream.js +2 -0
- package/cjs/models/types.js +2 -0
- package/cjs/models/workflow/Workflow.js +2 -0
- package/cjs/node/RocosSDKNode.d.ts +52 -0
- package/cjs/node/RocosSDKNode.js +161 -0
- package/cjs/node/index.js +23 -0
- package/cjs/services/AssetStorageService.d.ts +144 -0
- package/cjs/services/AssetStorageService.js +225 -0
- package/cjs/services/AuthService.js +239 -0
- package/cjs/services/AuthService.spec.js +165 -0
- package/cjs/services/BaseServiceAbstract.js +101 -0
- package/cjs/services/BaseStreamService.js +51 -0
- package/cjs/services/CallerService.d.ts +42 -0
- package/cjs/services/CallerService.js +121 -0
- package/cjs/services/CallerService.spec.js +229 -0
- package/cjs/services/CallerServiceNode.js +11 -0
- package/cjs/services/CommandService.js +42 -0
- package/cjs/services/CommandServiceNode.js +11 -0
- package/cjs/services/ConfigGroupService.js +157 -0
- package/cjs/services/ControlService.js +61 -0
- package/cjs/services/ControlServiceNode.js +11 -0
- package/cjs/services/DashboardService.js +146 -0
- package/cjs/services/EvaluatorService.js +32 -0
- package/cjs/services/EventService.js +89 -0
- package/cjs/services/FileAccessorService.js +41 -0
- package/cjs/services/FileAccessorServiceNode.js +11 -0
- package/cjs/services/FunctionService.js +103 -0
- package/cjs/services/IntegrationService.js +76 -0
- package/cjs/services/MapService.d.ts +142 -0
- package/cjs/services/MapService.js +196 -0
- package/cjs/services/PlatformTimeService.js +160 -0
- package/cjs/services/PlatformTimeService.spec.js +182 -0
- package/cjs/services/ProfileService.js +366 -0
- package/cjs/services/ProjectService.js +164 -0
- package/cjs/services/RTPWebRTCService.d.ts +102 -0
- package/cjs/services/RTPWebRTCService.js +232 -0
- package/cjs/services/RTPWebRTCService.spec.d.ts +4 -0
- package/cjs/services/RTPWebRTCService.spec.js +171 -0
- package/cjs/services/RobotService.js +464 -0
- package/cjs/services/ScheduleService.js +40 -0
- package/cjs/services/SearchService.js +62 -0
- package/cjs/services/SearchServiceNode.js +11 -0
- package/cjs/services/SpotProvisioningService.js +47 -0
- package/cjs/services/SpotProvisioningServiceNode.js +47 -0
- package/cjs/services/StreamService.js +146 -0
- package/cjs/services/TelemetryService.d.ts +41 -0
- package/cjs/services/TelemetryService.js +158 -0
- package/cjs/services/TelemetryService.spec.js +39 -0
- package/cjs/services/TelemetryServiceNode.js +11 -0
- package/cjs/services/TimeSyncerService.js +27 -0
- package/cjs/services/UserService.js +319 -0
- package/cjs/services/WebRTCSignallingService.js +82 -0
- package/cjs/services/WorkflowService.js +90 -0
- package/cjs/services/index.d.ts +28 -0
- package/cjs/services/index.js +44 -0
- package/cjs/store/RocosStore.js +51 -0
- package/esm/IRocosSDK.d.ts +34 -0
- package/esm/RocosSDK.d.ts +148 -0
- package/esm/RocosSDK.js +312 -0
- package/esm/api/StreamRegister.d.ts +13 -0
- package/esm/api/atoms/StreamHeartbeat.d.ts +27 -0
- package/esm/api/streams/caller/CallerStream.d.ts +13 -0
- package/esm/api/streams/caller/CallerStreamAbstract.d.ts +23 -0
- package/esm/api/streams/caller/CallerStreamNode.d.ts +13 -0
- package/esm/api/streams/command/CommandStream.d.ts +10 -0
- package/esm/api/streams/command/CommandStreamAbstract.d.ts +20 -0
- package/esm/api/streams/command/CommandStreamNode.d.ts +10 -0
- package/esm/api/streams/control/ControlStream.d.ts +12 -0
- package/esm/api/streams/control/ControlStreamAbstract.d.ts +25 -0
- package/esm/api/streams/control/ControlStreamNode.d.ts +12 -0
- package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
- package/esm/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +21 -0
- package/esm/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +8 -0
- package/esm/api/streams/search/SearchStream.d.ts +13 -0
- package/esm/api/streams/search/SearchStreamAbstract.d.ts +25 -0
- package/esm/api/streams/search/SearchStreamNode.d.ts +13 -0
- package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
- package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
- package/esm/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
- package/esm/constants/api.d.ts +133 -0
- package/esm/constants/api.js +133 -0
- package/esm/constants/auth.d.ts +2 -0
- package/esm/constants/grpc.d.ts +5 -0
- package/esm/constants/identifier.d.ts +6 -0
- package/esm/constants/timezones.d.ts +2 -0
- package/esm/grpc/conker_pb.client.d.ts +78 -0
- package/esm/grpc/conker_pb.d.ts +141 -0
- package/esm/grpc/conker_pb.grpc-client.d.ts +81 -0
- package/esm/grpc/filagree_pb.client.d.ts +68 -0
- package/esm/grpc/filagree_pb.d.ts +404 -0
- package/esm/grpc/filagree_pb.grpc-client.d.ts +69 -0
- package/esm/grpc/google/protobuf/descriptor_pb.d.ts +1798 -0
- package/esm/grpc/google/protobuf/empty_pb.d.ts +23 -0
- package/esm/grpc/pigeon_pb.client.d.ts +96 -0
- package/esm/grpc/pigeon_pb.d.ts +207 -0
- package/esm/grpc/pigeon_pb.grpc-client.d.ts +98 -0
- package/esm/grpc/rambo.uri.v1_pb.d.ts +73 -0
- package/esm/grpc/rambo.v1_pb.client.d.ts +66 -0
- package/esm/grpc/rambo.v1_pb.d.ts +392 -0
- package/esm/grpc/rambo.v1_pb.grpc-client.d.ts +56 -0
- package/esm/grpc/serviette.uri.v1_pb.d.ts +89 -0
- package/esm/grpc/serviette.v1_pb.client.d.ts +225 -0
- package/esm/grpc/serviette.v1_pb.d.ts +827 -0
- package/esm/grpc/serviette.v1_pb.grpc-client.d.ts +215 -0
- package/esm/grpc/slowlane_pb.client.d.ts +61 -0
- package/esm/grpc/slowlane_pb.d.ts +303 -0
- package/esm/grpc/slowlane_pb.grpc-client.d.ts +64 -0
- package/esm/grpc/teletubby_pb.client.d.ts +145 -0
- package/esm/grpc/teletubby_pb.d.ts +634 -0
- package/esm/grpc/teletubby_pb.grpc-client.d.ts +152 -0
- package/esm/helpers/arrayRemove.d.ts +1 -0
- package/esm/helpers/arrayUnique.d.ts +1 -0
- package/esm/helpers/average.d.ts +1 -0
- package/esm/helpers/callerMessageHelpers.d.ts +14 -0
- package/esm/helpers/callerMessageHelpers.js +86 -0
- package/esm/helpers/cleanObject.d.ts +1 -0
- package/esm/helpers/enviroment.d.ts +8 -0
- package/esm/helpers/flattenCallsignsLookup.d.ts +2 -0
- package/esm/helpers/flattenObject.d.ts +1 -0
- package/esm/helpers/flattenOneOf.d.ts +67 -0
- package/esm/helpers/formatServiceUrl.d.ts +1 -0
- package/esm/helpers/generateUUID.d.ts +1 -0
- package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
- package/esm/helpers/getURLSearchParams.d.ts +2 -0
- package/esm/helpers/getUniqueConfigKey.d.ts +7 -0
- package/esm/helpers/getUniqueId.d.ts +9 -0
- package/esm/helpers/getUnixTimeMs.d.ts +1 -0
- package/esm/helpers/index.js +5 -0
- package/esm/helpers/nanosecondToMillisecond.d.ts +1 -0
- package/esm/helpers/randomString.d.ts +1 -0
- package/esm/helpers/splitRobotTopic.d.ts +9 -0
- package/esm/helpers/splitRobotTopic.js +12 -0
- package/esm/helpers/splitRobotTopic.spec.js +51 -0
- package/esm/helpers/standardDeviation.d.ts +1 -0
- package/esm/helpers/stringToUint8Array.d.ts +1 -0
- package/esm/helpers/uint8ArrayToString.d.ts +1 -0
- package/esm/helpers/websandbox/connection.d.ts +67 -0
- package/esm/helpers/websandbox/frame/frame.d.ts +12 -0
- package/esm/helpers/websandbox/frame/frame.source.d.ts +2 -0
- package/esm/helpers/websandbox/frame/index.js +2 -0
- package/esm/helpers/websandbox/frame/worker/index.js +2 -0
- package/esm/helpers/websandbox/frame/worker/manager.d.ts +11 -0
- package/esm/helpers/websandbox/frame/worker/manager.spec.d.ts +4 -0
- package/esm/helpers/websandbox/frame/worker/types.d.ts +11 -0
- package/esm/helpers/websandbox/frame/worker/worker.source.d.ts +2 -0
- package/esm/helpers/websandbox/index.js +2 -0
- package/esm/helpers/websandbox/sandbox.d.ts +57 -0
- package/esm/helpers/websandbox/types.d.ts +13 -0
- package/esm/index.js +7 -0
- package/esm/logger/RocosLogger.d.ts +7 -0
- package/esm/models/CallsignStatus.d.ts +6 -0
- package/esm/models/ExportDataQuery.d.ts +8 -0
- package/esm/models/ExternalProject.d.ts +6 -0
- package/esm/models/IBaseService.d.ts +4 -0
- package/esm/models/IConfigGroup.d.ts +5 -0
- package/esm/models/IDebugLevel.d.ts +2 -0
- package/esm/models/IExportDataQuery.d.ts +9 -0
- package/esm/models/IFunctionConfig.d.ts +8 -0
- package/esm/models/IInvitation.d.ts +6 -0
- package/esm/models/IInvitationExists.d.ts +4 -0
- package/esm/models/IOperation.d.ts +6 -0
- package/esm/models/IPersonalAccessToken.d.ts +16 -0
- package/esm/models/IProject.d.ts +4 -0
- package/esm/models/IProjectApplication.d.ts +6 -0
- package/esm/models/IRobot.d.ts +18 -0
- package/esm/models/IRobotConfig.d.ts +8 -0
- package/esm/models/IRobotPlugin.d.ts +3 -0
- package/esm/models/IRobotSettings.d.ts +28 -0
- package/esm/models/IRobotTemplate.d.ts +10 -0
- package/esm/models/IRocosSDKConfig.d.ts +19 -0
- package/esm/models/ISource.d.ts +8 -0
- package/esm/models/IStream.d.ts +9 -0
- package/esm/models/IStreamConfig.d.ts +9 -0
- package/esm/models/IStreamOptions.d.ts +7 -0
- package/esm/models/IStreamSource.d.ts +8 -0
- package/esm/models/ISubscriberStatus.d.ts +5 -0
- package/esm/models/ITelemetryStreamConfig.d.ts +7 -0
- package/esm/models/IToken.d.ts +9 -0
- package/esm/models/IWidget.d.ts +25 -0
- package/esm/models/IWidgetLineGroup.d.ts +8 -0
- package/esm/models/ResponseLevelEnum.d.ts +10 -0
- package/esm/models/Robot.d.ts +20 -0
- package/esm/models/RobotConfig.d.ts +10 -0
- package/esm/models/RobotPlugin.d.ts +5 -0
- package/esm/models/RobotTemplate.d.ts +12 -0
- package/esm/models/RocosError.d.ts +32 -0
- package/esm/models/RocosError.js +41 -0
- package/esm/models/ServiceEnum.d.ts +28 -0
- package/esm/models/ServiceEnum.js +29 -0
- package/esm/models/Stream.d.ts +10 -0
- package/esm/models/StreamOptions.d.ts +9 -0
- package/esm/models/StreamSource.d.ts +10 -0
- package/esm/models/SubscriberStatusEnum.d.ts +6 -0
- package/esm/models/Token.d.ts +40 -0
- package/esm/models/Widget.d.ts +27 -0
- package/esm/models/WidgetLineGroup.d.ts +10 -0
- package/esm/models/asset-storage/AssetModelItem.d.ts +14 -0
- package/esm/models/asset-storage/SyncIntegrations.d.ts +31 -0
- package/esm/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
- package/esm/models/caller/IRocosCallerMessageChunks.d.ts +4 -0
- package/esm/models/caller/IRocosCallerMessageHeartbeat.d.ts +3 -0
- package/esm/models/caller/IRocosCallerMessageResponse.d.ts +10 -0
- package/esm/models/caller/IRocosCallerMessageResponseAck.d.ts +16 -0
- package/esm/models/caller/IRocosCallerMessageResponseResult.d.ts +15 -0
- package/esm/models/caller/IRocosCallerMessageResponseReturn.d.ts +8 -0
- package/esm/models/caller/IRocosCallerMessageResponseUid.d.ts +10 -0
- package/esm/models/caller/IRocosCallerMessageResponses.d.ts +4 -0
- package/esm/models/caller/RocosCallerResultStatus.d.ts +11 -0
- package/esm/models/caller/RocosResponseLevel.d.ts +6 -0
- package/esm/models/caller/index.d.ts +11 -0
- package/esm/models/caller/index.js +11 -0
- package/esm/models/callsigns/CallsignsEnums.d.ts +13 -0
- package/esm/models/callsigns/CallsignsLookup.d.ts +8 -0
- package/esm/models/callsigns/CallsignsQuery.d.ts +9 -0
- package/esm/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
- package/esm/models/command/IRocosCommandMessageHeartbeat.d.ts +1 -0
- package/esm/models/command/IRocosCommandMessageResponse.d.ts +55 -0
- package/esm/models/command/RocosCommandResultStatus.d.ts +11 -0
- package/esm/models/command/index.js +4 -0
- package/esm/models/file/FileEnums.d.ts +30 -0
- package/esm/models/index.d.ts +77 -0
- package/esm/models/index.js +77 -0
- package/esm/models/integrations/Overlay.d.ts +49 -0
- package/esm/models/integrations/Plan.d.ts +324 -0
- package/esm/models/maps/Map.d.ts +11 -0
- package/esm/models/maps/Panorama.d.ts +36 -0
- package/esm/models/message/IRocosCallerMessage.d.ts +8 -0
- package/esm/models/message/IRocosChangeMessage.d.ts +6 -0
- package/esm/models/message/IRocosCommandMessage.d.ts +6 -0
- package/esm/models/message/IRocosControlMessage.d.ts +7 -0
- package/esm/models/message/IRocosOpResultMessage.d.ts +6 -0
- package/esm/models/message/IRocosSearchMessage.d.ts +5 -0
- package/esm/models/message/IRocosSearchRowMessage.d.ts +9 -0
- package/esm/models/message/IRocosSearchStatusMessage.d.ts +4 -0
- package/esm/models/message/IRocosTelemetryMessage.d.ts +23 -0
- package/esm/models/message/IStreamStatusMessage.d.ts +5 -0
- package/esm/models/message/RocosCallerMessage.d.ts +10 -0
- package/esm/models/message/RocosCommandMessage.d.ts +9 -0
- package/esm/models/message/RocosControlMessage.d.ts +11 -0
- package/esm/models/message/RocosOpResultMessage.d.ts +10 -0
- package/esm/models/message/RocosSearchMessage.d.ts +9 -0
- package/esm/models/message/RocosSearchRowMessage.d.ts +13 -0
- package/esm/models/message/RocosTelemetryMessage.d.ts +10 -0
- package/esm/models/message/index.js +17 -0
- package/esm/models/params/ICallerParams.d.ts +26 -0
- package/esm/models/params/ICommandParams.d.ts +9 -0
- package/esm/models/params/IControlParams.d.ts +8 -0
- package/esm/models/params/IFileAccessorParams.d.ts +11 -0
- package/esm/models/params/ISearchParams.d.ts +10 -0
- package/esm/models/params/ITelemetryParams.d.ts +18 -0
- package/esm/models/params/IWebRTCSignallingParams.d.ts +21 -0
- package/esm/models/params/IWebRTCSignallingParams.js +1 -0
- package/esm/models/projects/ProjectUser.d.ts +6 -0
- package/esm/models/projects/ProjectUser.js +1 -0
- package/esm/models/schedule/IScheduleAction.d.ts +13 -0
- package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
- package/esm/models/schedule/IScheduleInfo.js +1 -0
- package/esm/models/schedule/IScheduleJob.d.ts +12 -0
- package/esm/models/schedule/IScheduleJob.js +1 -0
- package/esm/models/search/SearchQueryFilter.d.ts +5 -0
- package/esm/models/search/SearchStreamQuery.d.ts +15 -0
- package/esm/models/stream/IBaseStream.d.ts +8 -0
- package/esm/models/stream/IBaseStream.js +1 -0
- package/esm/models/stream/ICallerStream.d.ts +8 -0
- package/esm/models/stream/ICallerStream.js +1 -0
- package/esm/models/stream/ICommandStream.d.ts +7 -0
- package/esm/models/stream/ICommandStream.js +1 -0
- package/esm/models/stream/IControlStream.d.ts +9 -0
- package/esm/models/stream/IControlStream.js +1 -0
- package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
- package/esm/models/stream/IFileAccessorStream.js +1 -0
- package/esm/models/stream/ISearchStream.d.ts +11 -0
- package/esm/models/stream/ISearchStream.js +1 -0
- package/esm/models/stream/ITelemetryStream.d.ts +10 -0
- package/esm/models/stream/ITelemetryStream.js +1 -0
- package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
- package/esm/models/stream/IWebRTCSignallingStream.js +1 -0
- package/esm/models/types.d.ts +5 -0
- package/esm/models/types.js +1 -0
- package/esm/models/workflow/Workflow.d.ts +36 -0
- package/esm/models/workflow/Workflow.js +1 -0
- package/esm/node/RocosSDKNode.d.ts +52 -0
- package/esm/node/RocosSDKNode.js +157 -0
- package/esm/node/index.js +7 -0
- package/esm/services/AssetStorageService.d.ts +144 -0
- package/esm/services/AssetStorageService.js +221 -0
- package/esm/services/AuthService.d.ts +93 -0
- package/esm/services/AuthService.spec.d.ts +1 -0
- package/esm/services/BaseServiceAbstract.d.ts +36 -0
- package/esm/services/BaseStreamService.d.ts +18 -0
- package/esm/services/BaseStreamService.js +47 -0
- package/esm/services/CallerService.d.ts +42 -0
- package/esm/services/CallerService.js +117 -0
- package/esm/services/CallerService.spec.d.ts +1 -0
- package/esm/services/CallerService.spec.js +227 -0
- package/esm/services/CallerServiceNode.d.ts +6 -0
- package/esm/services/CommandService.d.ts +9 -0
- package/esm/services/CommandServiceNode.d.ts +6 -0
- package/esm/services/ConfigGroupService.d.ts +89 -0
- package/esm/services/ControlService.d.ts +11 -0
- package/esm/services/ControlServiceNode.d.ts +6 -0
- package/esm/services/DashboardService.d.ts +97 -0
- package/esm/services/EvaluatorService.d.ts +11 -0
- package/esm/services/EventService.d.ts +53 -0
- package/esm/services/FileAccessorService.d.ts +11 -0
- package/esm/services/FileAccessorServiceNode.d.ts +6 -0
- package/esm/services/FunctionService.d.ts +68 -0
- package/esm/services/IntegrationService.d.ts +48 -0
- package/esm/services/MapService.d.ts +142 -0
- package/esm/services/MapService.js +192 -0
- package/esm/services/PlatformTimeService.d.ts +35 -0
- package/esm/services/PlatformTimeService.spec.d.ts +1 -0
- package/esm/services/ProfileService.d.ts +244 -0
- package/esm/services/ProjectService.d.ts +110 -0
- package/esm/services/RTPWebRTCService.d.ts +102 -0
- package/esm/services/RTPWebRTCService.js +227 -0
- package/esm/services/RTPWebRTCService.spec.d.ts +4 -0
- package/esm/services/RTPWebRTCService.spec.js +169 -0
- package/esm/services/RobotService.d.ts +278 -0
- package/esm/services/ScheduleService.d.ts +22 -0
- package/esm/services/SearchService.d.ts +12 -0
- package/esm/services/SearchServiceNode.d.ts +6 -0
- package/esm/services/SpotProvisioningService.d.ts +14 -0
- package/esm/services/SpotProvisioningServiceNode.d.ts +15 -0
- package/esm/services/StreamService.d.ts +98 -0
- package/esm/services/TelemetryService.d.ts +41 -0
- package/esm/services/TelemetryService.js +154 -0
- package/esm/services/TelemetryService.spec.d.ts +1 -0
- package/esm/services/TelemetryServiceNode.d.ts +6 -0
- package/esm/services/TimeSyncerService.d.ts +13 -0
- package/esm/services/UserService.d.ts +200 -0
- package/esm/services/WebRTCSignallingService.d.ts +22 -0
- package/esm/services/WorkflowService.d.ts +67 -0
- package/esm/services/index.d.ts +28 -0
- package/esm/services/index.js +28 -0
- package/esm/store/RocosStore.d.ts +31 -0
- package/package.json +19 -7
- package/IRocosSDK.d.ts +0 -32
- package/RocosSDK.d.ts +0 -143
- package/RocosSDK.js +0 -302
- package/constants/api.d.ts +0 -126
- package/constants/api.js +0 -126
- package/models/RocosError.d.ts +0 -31
- package/models/RocosError.js +0 -40
- package/models/ServiceEnum.d.ts +0 -27
- package/models/ServiceEnum.js +0 -28
- package/models/asset-storage/AssetModelItem.d.ts +0 -29
- package/models/caller/IRocosCallerMessageChunk.d.ts +0 -10
- package/models/caller/index.d.ts +0 -10
- package/models/caller/index.js +0 -10
- package/models/index.d.ts +0 -76
- package/models/index.js +0 -76
- package/models/message/IRocosTelemetryMessage.d.ts +0 -23
- package/models/params/ICallerParams.d.ts +0 -16
- package/node/RocosSDKNode.d.ts +0 -47
- package/node/RocosSDKNode.js +0 -150
- package/services/AssetStorageService.d.ts +0 -106
- package/services/AssetStorageService.js +0 -169
- package/services/BaseStreamService.js +0 -47
- package/services/CallerService.d.ts +0 -10
- package/services/CallerService.js +0 -53
- package/services/MapService.d.ts +0 -108
- package/services/MapService.js +0 -151
- package/services/TelemetryService.d.ts +0 -40
- package/services/TelemetryService.js +0 -142
- package/services/index.d.ts +0 -27
- package/services/index.js +0 -27
- /package/{api → cjs/api}/StreamRegister.d.ts +0 -0
- /package/{api → cjs/api}/atoms/StreamHeartbeat.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +0 -0
- /package/{constants → cjs/constants}/auth.d.ts +0 -0
- /package/{constants → cjs/constants}/grpc.d.ts +0 -0
- /package/{constants → cjs/constants}/identifier.d.ts +0 -0
- /package/{constants → cjs/constants}/timezones.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/google/protobuf/descriptor_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/google/protobuf/empty_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.uri.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.uri.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.grpc-client.d.ts +0 -0
- /package/{helpers → cjs/helpers}/arrayRemove.d.ts +0 -0
- /package/{helpers → cjs/helpers}/arrayUnique.d.ts +0 -0
- /package/{helpers → cjs/helpers}/average.d.ts +0 -0
- /package/{helpers → cjs/helpers}/cleanObject.d.ts +0 -0
- /package/{helpers → cjs/helpers}/cleanObject.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/enviroment.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenCallsignsLookup.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenObject.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenObject.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenOneOf.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenOneOf.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/formatServiceUrl.d.ts +0 -0
- /package/{helpers → cjs/helpers}/formatServiceUrl.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/generateUUID.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getSubscriptionsDifference.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getURLSearchParams.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getURLSearchParams.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUniqueConfigKey.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUniqueId.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUnixTimeMs.d.ts +0 -0
- /package/{helpers → cjs/helpers}/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/nanosecondToMillisecond.d.ts +0 -0
- /package/{helpers → cjs/helpers}/nanosecondToMillisecond.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/randomString.d.ts +0 -0
- /package/{helpers/standardDeviation.spec.d.ts → cjs/helpers/splitRobotTopic.spec.d.ts} +0 -0
- /package/{helpers → cjs/helpers}/standardDeviation.d.ts +0 -0
- /package/{helpers/websandbox/frame/worker/types.js → cjs/helpers/standardDeviation.spec.d.ts} +0 -0
- /package/{helpers → cjs/helpers}/stringToUint8Array.d.ts +0 -0
- /package/{helpers → cjs/helpers}/uint8ArrayToString.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/connection.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/frame.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/frame.source.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/types.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.source.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/sandbox.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/types.d.ts +0 -0
- /package/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/{logger → cjs/logger}/RocosLogger.d.ts +0 -0
- /package/{models → cjs/models}/CallsignStatus.d.ts +0 -0
- /package/{models → cjs/models}/ExportDataQuery.d.ts +0 -0
- /package/{models → cjs/models}/ExternalProject.d.ts +0 -0
- /package/{models → cjs/models}/IBaseService.d.ts +0 -0
- /package/{models → cjs/models}/IConfigGroup.d.ts +0 -0
- /package/{models → cjs/models}/IDebugLevel.d.ts +0 -0
- /package/{models → cjs/models}/IExportDataQuery.d.ts +0 -0
- /package/{models → cjs/models}/IFunctionConfig.d.ts +0 -0
- /package/{models → cjs/models}/IInvitation.d.ts +0 -0
- /package/{models → cjs/models}/IInvitationExists.d.ts +0 -0
- /package/{models → cjs/models}/IOperation.d.ts +0 -0
- /package/{models → cjs/models}/IPersonalAccessToken.d.ts +0 -0
- /package/{models → cjs/models}/IProject.d.ts +0 -0
- /package/{models → cjs/models}/IProjectApplication.d.ts +0 -0
- /package/{models → cjs/models}/IRobot.d.ts +0 -0
- /package/{models → cjs/models}/IRobotConfig.d.ts +0 -0
- /package/{models → cjs/models}/IRobotPlugin.d.ts +0 -0
- /package/{models → cjs/models}/IRobotSettings.d.ts +0 -0
- /package/{models → cjs/models}/IRobotTemplate.d.ts +0 -0
- /package/{models → cjs/models}/IRocosSDKConfig.d.ts +0 -0
- /package/{models → cjs/models}/ISource.d.ts +0 -0
- /package/{models → cjs/models}/IStream.d.ts +0 -0
- /package/{models → cjs/models}/IStreamConfig.d.ts +0 -0
- /package/{models → cjs/models}/IStreamOptions.d.ts +0 -0
- /package/{models → cjs/models}/IStreamSource.d.ts +0 -0
- /package/{models → cjs/models}/ISubscriberStatus.d.ts +0 -0
- /package/{models → cjs/models}/ITelemetryStreamConfig.d.ts +0 -0
- /package/{models → cjs/models}/IToken.d.ts +0 -0
- /package/{models → cjs/models}/IWidget.d.ts +0 -0
- /package/{models → cjs/models}/IWidgetLineGroup.d.ts +0 -0
- /package/{models → cjs/models}/ResponseLevelEnum.d.ts +0 -0
- /package/{models → cjs/models}/Robot.d.ts +0 -0
- /package/{models → cjs/models}/RobotConfig.d.ts +0 -0
- /package/{models → cjs/models}/RobotPlugin.d.ts +0 -0
- /package/{models → cjs/models}/RobotTemplate.d.ts +0 -0
- /package/{models → cjs/models}/Stream.d.ts +0 -0
- /package/{models → cjs/models}/StreamOptions.d.ts +0 -0
- /package/{models → cjs/models}/StreamSource.d.ts +0 -0
- /package/{models → cjs/models}/SubscriberStatusEnum.d.ts +0 -0
- /package/{models → cjs/models}/Token.d.ts +0 -0
- /package/{models → cjs/models}/Token.spec.d.ts +0 -0
- /package/{models → cjs/models}/Widget.d.ts +0 -0
- /package/{models → cjs/models}/WidgetLineGroup.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageChunks.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageHeartbeat.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponse.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseAck.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseResult.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseReturn.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseUid.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponses.d.ts +0 -0
- /package/{models → cjs/models}/caller/RocosCallerResultStatus.d.ts +0 -0
- /package/{models → cjs/models}/caller/RocosResponseLevel.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsEnums.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsLookup.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsQuery.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsQueryPredicate.d.ts +0 -0
- /package/{models → cjs/models}/command/IRocosCommandMessageHeartbeat.d.ts +0 -0
- /package/{models → cjs/models}/command/IRocosCommandMessageResponse.d.ts +0 -0
- /package/{models → cjs/models}/command/RocosCommandResultStatus.d.ts +0 -0
- /package/{models → cjs/models}/command/index.d.ts +0 -0
- /package/{models → cjs/models}/file/FileEnums.d.ts +0 -0
- /package/{models → cjs/models}/integrations/Overlay.d.ts +0 -0
- /package/{models → cjs/models}/integrations/Plan.d.ts +0 -0
- /package/{models → cjs/models}/maps/Map.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosCallerMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosChangeMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosCommandMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosControlMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosOpResultMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchRowMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchStatusMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IStreamStatusMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosCallerMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosCommandMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosControlMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosOpResultMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosSearchMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosSearchRowMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosTelemetryMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/index.d.ts +0 -0
- /package/{models → cjs/models}/params/ICommandParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IControlParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IFileAccessorParams.d.ts +0 -0
- /package/{models → cjs/models}/params/ISearchParams.d.ts +0 -0
- /package/{models → cjs/models}/params/ITelemetryParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IWebRTCSignallingParams.d.ts +0 -0
- /package/{models → cjs/models}/projects/ProjectUser.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleAction.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleInfo.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleJob.d.ts +0 -0
- /package/{models → cjs/models}/search/SearchQueryFilter.d.ts +0 -0
- /package/{models → cjs/models}/search/SearchStreamQuery.d.ts +0 -0
- /package/{models → cjs/models}/stream/IBaseStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ICallerStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ICommandStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IControlStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IFileAccessorStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ISearchStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ITelemetryStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IWebRTCSignallingStream.d.ts +0 -0
- /package/{models → cjs/models}/types.d.ts +0 -0
- /package/{models → cjs/models}/workflow/Workflow.d.ts +0 -0
- /package/{node → cjs/node}/index.d.ts +0 -0
- /package/{services → cjs/services}/AuthService.d.ts +0 -0
- /package/{services → cjs/services}/AuthService.spec.d.ts +0 -0
- /package/{services → cjs/services}/BaseServiceAbstract.d.ts +0 -0
- /package/{services → cjs/services}/BaseStreamService.d.ts +0 -0
- /package/{helpers/websandbox/types.js → cjs/services/CallerService.spec.d.ts} +0 -0
- /package/{services → cjs/services}/CallerServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/CommandService.d.ts +0 -0
- /package/{services → cjs/services}/CommandServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/ConfigGroupService.d.ts +0 -0
- /package/{services → cjs/services}/ControlService.d.ts +0 -0
- /package/{services → cjs/services}/ControlServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/DashboardService.d.ts +0 -0
- /package/{services → cjs/services}/EvaluatorService.d.ts +0 -0
- /package/{services → cjs/services}/EventService.d.ts +0 -0
- /package/{services → cjs/services}/FileAccessorService.d.ts +0 -0
- /package/{services → cjs/services}/FileAccessorServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/FunctionService.d.ts +0 -0
- /package/{services → cjs/services}/IntegrationService.d.ts +0 -0
- /package/{services → cjs/services}/PlatformTimeService.d.ts +0 -0
- /package/{services → cjs/services}/PlatformTimeService.spec.d.ts +0 -0
- /package/{services → cjs/services}/ProfileService.d.ts +0 -0
- /package/{services → cjs/services}/ProjectService.d.ts +0 -0
- /package/{services → cjs/services}/RobotService.d.ts +0 -0
- /package/{services → cjs/services}/ScheduleService.d.ts +0 -0
- /package/{services → cjs/services}/SearchService.d.ts +0 -0
- /package/{services → cjs/services}/SearchServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/SpotProvisioningService.d.ts +0 -0
- /package/{services → cjs/services}/SpotProvisioningServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/StreamService.d.ts +0 -0
- /package/{services → cjs/services}/TelemetryService.spec.d.ts +0 -0
- /package/{services → cjs/services}/TelemetryServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/TimeSyncerService.d.ts +0 -0
- /package/{services → cjs/services}/UserService.d.ts +0 -0
- /package/{services → cjs/services}/WebRTCSignallingService.d.ts +0 -0
- /package/{services → cjs/services}/WorkflowService.d.ts +0 -0
- /package/{store → cjs/store}/RocosStore.d.ts +0 -0
- /package/{IRocosSDK.js → esm/IRocosSDK.js} +0 -0
- /package/{api → esm/api}/StreamRegister.js +0 -0
- /package/{api → esm/api}/atoms/StreamHeartbeat.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStream.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStreamNode.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStream.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStreamNode.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStream.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStreamNode.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStream.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamNode.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStream.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStreamNode.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStream.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStreamNode.js +0 -0
- /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -0
- /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +0 -0
- /package/{constants → esm/constants}/auth.js +0 -0
- /package/{constants → esm/constants}/grpc.js +0 -0
- /package/{constants → esm/constants}/identifier.js +0 -0
- /package/{constants → esm/constants}/timezones.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.js +0 -0
- /package/{grpc → esm/grpc}/google/protobuf/descriptor_pb.js +0 -0
- /package/{grpc → esm/grpc}/google/protobuf/empty_pb.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.js +0 -0
- /package/{grpc → esm/grpc}/rambo.uri.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/serviette.uri.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.js +0 -0
- /package/{helpers → esm/helpers}/arrayRemove.js +0 -0
- /package/{helpers → esm/helpers}/arrayUnique.js +0 -0
- /package/{helpers → esm/helpers}/average.js +0 -0
- /package/{helpers → esm/helpers}/cleanObject.js +0 -0
- /package/{models/IBaseService.js → esm/helpers/cleanObject.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/cleanObject.spec.js +0 -0
- /package/{helpers → esm/helpers}/enviroment.js +0 -0
- /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
- /package/{helpers → esm/helpers}/flattenObject.js +0 -0
- /package/{models/IConfigGroup.js → esm/helpers/flattenObject.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/flattenObject.spec.js +0 -0
- /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
- /package/{models/IDebugLevel.js → esm/helpers/flattenOneOf.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/flattenOneOf.spec.js +0 -0
- /package/{helpers → esm/helpers}/formatServiceUrl.js +0 -0
- /package/{models/IExportDataQuery.js → esm/helpers/formatServiceUrl.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/formatServiceUrl.spec.js +0 -0
- /package/{helpers → esm/helpers}/generateUUID.js +0 -0
- /package/{helpers → esm/helpers}/getSubscriptionsDifference.js +0 -0
- /package/{helpers → esm/helpers}/getURLSearchParams.js +0 -0
- /package/{models/IFunctionConfig.js → esm/helpers/getURLSearchParams.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/getURLSearchParams.spec.js +0 -0
- /package/{helpers → esm/helpers}/getUniqueConfigKey.js +0 -0
- /package/{helpers → esm/helpers}/getUniqueId.js +0 -0
- /package/{helpers → esm/helpers}/getUnixTimeMs.js +0 -0
- /package/{helpers/index.js → esm/helpers/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/nanosecondToMillisecond.js +0 -0
- /package/{models/IInvitation.js → esm/helpers/nanosecondToMillisecond.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/nanosecondToMillisecond.spec.js +0 -0
- /package/{helpers → esm/helpers}/randomString.js +0 -0
- /package/{models/IInvitationExists.js → esm/helpers/splitRobotTopic.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/standardDeviation.js +0 -0
- /package/{models/IOperation.js → esm/helpers/standardDeviation.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/standardDeviation.spec.js +0 -0
- /package/{helpers → esm/helpers}/stringToUint8Array.js +0 -0
- /package/{helpers → esm/helpers}/uint8ArrayToString.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/connection.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/frame.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/frame.source.js +0 -0
- /package/{helpers/websandbox/frame/index.js → esm/helpers/websandbox/frame/index.d.ts} +0 -0
- /package/{helpers/websandbox/frame/worker/index.js → esm/helpers/websandbox/frame/worker/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/manager.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/manager.spec.js +0 -0
- /package/{models → esm/helpers/websandbox/frame/worker}/types.js +0 -0
- /package/{models/IPersonalAccessToken.js → esm/helpers/websandbox/frame/worker/worker.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.source.js +0 -0
- /package/{helpers/websandbox/index.js → esm/helpers/websandbox/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/sandbox.js +0 -0
- /package/{models/IProject.js → esm/helpers/websandbox/types.js} +0 -0
- /package/{index.js → esm/index.d.ts} +0 -0
- /package/{logger → esm/logger}/RocosLogger.js +0 -0
- /package/{models → esm/models}/CallsignStatus.js +0 -0
- /package/{models → esm/models}/ExportDataQuery.js +0 -0
- /package/{models → esm/models}/ExternalProject.js +0 -0
- /package/{models/IProjectApplication.js → esm/models/IBaseService.js} +0 -0
- /package/{models/IRobot.js → esm/models/IConfigGroup.js} +0 -0
- /package/{models/IRobotConfig.js → esm/models/IDebugLevel.js} +0 -0
- /package/{models/IRobotPlugin.js → esm/models/IExportDataQuery.js} +0 -0
- /package/{models/IRobotSettings.js → esm/models/IFunctionConfig.js} +0 -0
- /package/{models/IRobotTemplate.js → esm/models/IInvitation.js} +0 -0
- /package/{models/IRocosSDKConfig.js → esm/models/IInvitationExists.js} +0 -0
- /package/{models/ISource.js → esm/models/IOperation.js} +0 -0
- /package/{models/IStream.js → esm/models/IPersonalAccessToken.js} +0 -0
- /package/{models/IStreamConfig.js → esm/models/IProject.js} +0 -0
- /package/{models/IStreamOptions.js → esm/models/IProjectApplication.js} +0 -0
- /package/{models/IStreamSource.js → esm/models/IRobot.js} +0 -0
- /package/{models/ISubscriberStatus.js → esm/models/IRobotConfig.js} +0 -0
- /package/{models/ITelemetryStreamConfig.js → esm/models/IRobotPlugin.js} +0 -0
- /package/{models/IToken.js → esm/models/IRobotSettings.js} +0 -0
- /package/{models/IWidget.js → esm/models/IRobotTemplate.js} +0 -0
- /package/{models/IWidgetLineGroup.js → esm/models/IRocosSDKConfig.js} +0 -0
- /package/{models/asset-storage/AssetModelItem.js → esm/models/ISource.js} +0 -0
- /package/{models/caller/IRocosCallerMessageChunk.js → esm/models/IStream.js} +0 -0
- /package/{models/caller/IRocosCallerMessageChunks.js → esm/models/IStreamConfig.js} +0 -0
- /package/{models/caller/IRocosCallerMessageHeartbeat.js → esm/models/IStreamOptions.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponse.js → esm/models/IStreamSource.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponseReturn.js → esm/models/ISubscriberStatus.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponses.js → esm/models/ITelemetryStreamConfig.js} +0 -0
- /package/{models/command/IRocosCommandMessageHeartbeat.js → esm/models/IToken.js} +0 -0
- /package/{models/integrations/Overlay.js → esm/models/IWidget.js} +0 -0
- /package/{models/integrations/Plan.js → esm/models/IWidgetLineGroup.js} +0 -0
- /package/{models → esm/models}/ResponseLevelEnum.js +0 -0
- /package/{models → esm/models}/Robot.js +0 -0
- /package/{models → esm/models}/RobotConfig.js +0 -0
- /package/{models → esm/models}/RobotPlugin.js +0 -0
- /package/{models → esm/models}/RobotTemplate.js +0 -0
- /package/{models → esm/models}/Stream.js +0 -0
- /package/{models → esm/models}/StreamOptions.js +0 -0
- /package/{models → esm/models}/StreamSource.js +0 -0
- /package/{models → esm/models}/SubscriberStatusEnum.js +0 -0
- /package/{models → esm/models}/Token.js +0 -0
- /package/{models/maps/Map.js → esm/models/Token.spec.d.ts} +0 -0
- /package/{models → esm/models}/Token.spec.js +0 -0
- /package/{models → esm/models}/Widget.js +0 -0
- /package/{models → esm/models}/WidgetLineGroup.js +0 -0
- /package/{models/message/IRocosCallerMessage.js → esm/models/asset-storage/AssetModelItem.js} +0 -0
- /package/{models/message/IRocosChangeMessage.js → esm/models/asset-storage/SyncIntegrations.js} +0 -0
- /package/{models/message/IRocosCommandMessage.js → esm/models/caller/IRocosCallerMessageChunk.js} +0 -0
- /package/{models/message/IRocosControlMessage.js → esm/models/caller/IRocosCallerMessageChunks.js} +0 -0
- /package/{models/message/IRocosOpResultMessage.js → esm/models/caller/IRocosCallerMessageHeartbeat.js} +0 -0
- /package/{models/message/IRocosSearchMessage.js → esm/models/caller/IRocosCallerMessageResponse.js} +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseAck.js +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseResult.js +0 -0
- /package/{models/message/IRocosSearchRowMessage.js → esm/models/caller/IRocosCallerMessageResponseReturn.js} +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
- /package/{models/message/IRocosSearchStatusMessage.js → esm/models/caller/IRocosCallerMessageResponses.js} +0 -0
- /package/{models → esm/models}/caller/RocosCallerResultStatus.js +0 -0
- /package/{models → esm/models}/caller/RocosResponseLevel.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsEnums.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsLookup.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsQuery.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsQueryPredicate.js +0 -0
- /package/{models/message/IRocosTelemetryMessage.js → esm/models/command/IRocosCommandMessageHeartbeat.js} +0 -0
- /package/{models → esm/models}/command/IRocosCommandMessageResponse.js +0 -0
- /package/{models → esm/models}/command/RocosCommandResultStatus.js +0 -0
- /package/{models/command/index.js → esm/models/command/index.d.ts} +0 -0
- /package/{models → esm/models}/file/FileEnums.js +0 -0
- /package/{models/message/IStreamStatusMessage.js → esm/models/integrations/Overlay.js} +0 -0
- /package/{models/params/ICallerParams.js → esm/models/integrations/Plan.js} +0 -0
- /package/{models/params/ICommandParams.js → esm/models/maps/Map.js} +0 -0
- /package/{models/params/IControlParams.js → esm/models/maps/Panorama.js} +0 -0
- /package/{models/params/IFileAccessorParams.js → esm/models/message/IRocosCallerMessage.js} +0 -0
- /package/{models/params/ISearchParams.js → esm/models/message/IRocosChangeMessage.js} +0 -0
- /package/{models/params/ITelemetryParams.js → esm/models/message/IRocosCommandMessage.js} +0 -0
- /package/{models/params/IWebRTCSignallingParams.js → esm/models/message/IRocosControlMessage.js} +0 -0
- /package/{models/projects/ProjectUser.js → esm/models/message/IRocosOpResultMessage.js} +0 -0
- /package/{models/schedule/IScheduleInfo.js → esm/models/message/IRocosSearchMessage.js} +0 -0
- /package/{models/schedule/IScheduleJob.js → esm/models/message/IRocosSearchRowMessage.js} +0 -0
- /package/{models/stream/IBaseStream.js → esm/models/message/IRocosSearchStatusMessage.js} +0 -0
- /package/{models/stream/ICallerStream.js → esm/models/message/IRocosTelemetryMessage.js} +0 -0
- /package/{models/stream/ICommandStream.js → esm/models/message/IStreamStatusMessage.js} +0 -0
- /package/{models → esm/models}/message/RocosCallerMessage.js +0 -0
- /package/{models → esm/models}/message/RocosCommandMessage.js +0 -0
- /package/{models → esm/models}/message/RocosControlMessage.js +0 -0
- /package/{models → esm/models}/message/RocosOpResultMessage.js +0 -0
- /package/{models → esm/models}/message/RocosSearchMessage.js +0 -0
- /package/{models → esm/models}/message/RocosSearchRowMessage.js +0 -0
- /package/{models → esm/models}/message/RocosTelemetryMessage.js +0 -0
- /package/{models/message/index.js → esm/models/message/index.d.ts} +0 -0
- /package/{models/stream/IControlStream.js → esm/models/params/ICallerParams.js} +0 -0
- /package/{models/stream/IFileAccessorStream.js → esm/models/params/ICommandParams.js} +0 -0
- /package/{models/stream/ISearchStream.js → esm/models/params/IControlParams.js} +0 -0
- /package/{models/stream/ITelemetryStream.js → esm/models/params/IFileAccessorParams.js} +0 -0
- /package/{models/stream/IWebRTCSignallingStream.js → esm/models/params/ISearchParams.js} +0 -0
- /package/{models/workflow/Workflow.js → esm/models/params/ITelemetryParams.js} +0 -0
- /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
- /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
- /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
- /package/{node/index.js → esm/node/index.d.ts} +0 -0
- /package/{services → esm/services}/AuthService.js +0 -0
- /package/{services → esm/services}/AuthService.spec.js +0 -0
- /package/{services → esm/services}/BaseServiceAbstract.js +0 -0
- /package/{services → esm/services}/CallerServiceNode.js +0 -0
- /package/{services → esm/services}/CommandService.js +0 -0
- /package/{services → esm/services}/CommandServiceNode.js +0 -0
- /package/{services → esm/services}/ConfigGroupService.js +0 -0
- /package/{services → esm/services}/ControlService.js +0 -0
- /package/{services → esm/services}/ControlServiceNode.js +0 -0
- /package/{services → esm/services}/DashboardService.js +0 -0
- /package/{services → esm/services}/EvaluatorService.js +0 -0
- /package/{services → esm/services}/EventService.js +0 -0
- /package/{services → esm/services}/FileAccessorService.js +0 -0
- /package/{services → esm/services}/FileAccessorServiceNode.js +0 -0
- /package/{services → esm/services}/FunctionService.js +0 -0
- /package/{services → esm/services}/IntegrationService.js +0 -0
- /package/{services → esm/services}/PlatformTimeService.js +0 -0
- /package/{services → esm/services}/PlatformTimeService.spec.js +0 -0
- /package/{services → esm/services}/ProfileService.js +0 -0
- /package/{services → esm/services}/ProjectService.js +0 -0
- /package/{services → esm/services}/RobotService.js +0 -0
- /package/{services → esm/services}/ScheduleService.js +0 -0
- /package/{services → esm/services}/SearchService.js +0 -0
- /package/{services → esm/services}/SearchServiceNode.js +0 -0
- /package/{services → esm/services}/SpotProvisioningService.js +0 -0
- /package/{services → esm/services}/SpotProvisioningServiceNode.js +0 -0
- /package/{services → esm/services}/StreamService.js +0 -0
- /package/{services → esm/services}/TelemetryService.spec.js +0 -0
- /package/{services → esm/services}/TelemetryServiceNode.js +0 -0
- /package/{services → esm/services}/TimeSyncerService.js +0 -0
- /package/{services → esm/services}/UserService.js +0 -0
- /package/{services → esm/services}/WebRTCSignallingService.js +0 -0
- /package/{services → esm/services}/WorkflowService.js +0 -0
- /package/{store → esm/store}/RocosStore.js +0 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
26
|
+
exports.SearchStreamNode = void 0;
|
27
|
+
const grpc = __importStar(require("@grpc/grpc-js"));
|
28
|
+
const slowlane_pb_1 = require("../../../grpc/slowlane_pb");
|
29
|
+
const models_1 = require("../../../models");
|
30
|
+
const rxjs_1 = require("rxjs");
|
31
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
32
|
+
const SearchStreamAbstract_1 = require("./SearchStreamAbstract");
|
33
|
+
const slowlane_pb_grpc_client_1 = require("../../../grpc/slowlane_pb.grpc-client");
|
34
|
+
class SearchStreamNode extends SearchStreamAbstract_1.SearchStreamAbstract {
|
35
|
+
constructor(config) {
|
36
|
+
super(config);
|
37
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`SearchStreamNode(${this.identifier})`);
|
38
|
+
const port = config.port ?? 443;
|
39
|
+
const credentials = config.insecure ? grpc.credentials.createInsecure() : grpc.credentials.createSsl();
|
40
|
+
this.client = new slowlane_pb_grpc_client_1.streamClient(`${this.url}:${port}`, credentials);
|
41
|
+
}
|
42
|
+
searchStreamInternal(request, params) {
|
43
|
+
const metadata = this.getMetadata(params.projectId);
|
44
|
+
let call;
|
45
|
+
return new rxjs_1.Observable((emitter) => {
|
46
|
+
call = this.client.searchStream(request, metadata);
|
47
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.ALIVE;
|
48
|
+
this.statusStream$.next(this.subscriberStatus);
|
49
|
+
call.on('data', (update) => {
|
50
|
+
const dataSetList = update.dataset;
|
51
|
+
const results = dataSetList.map((item) => {
|
52
|
+
return models_1.RocosSearchMessage.fromMessage(item);
|
53
|
+
});
|
54
|
+
emitter.next(results);
|
55
|
+
this.logger.debug('searchStream - on(data)', {
|
56
|
+
status: this.subscriberStatus,
|
57
|
+
projectId: params.projectId,
|
58
|
+
query: params.query,
|
59
|
+
});
|
60
|
+
});
|
61
|
+
call.on('end', () => {
|
62
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.STOPPED;
|
63
|
+
this.statusStream$.next(this.subscriberStatus);
|
64
|
+
this.logger.debug('searchStream - on(end)', {
|
65
|
+
status: this.subscriberStatus,
|
66
|
+
projectId: params.projectId,
|
67
|
+
query: params.query,
|
68
|
+
});
|
69
|
+
emitter.complete();
|
70
|
+
});
|
71
|
+
call.on('close', () => {
|
72
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.STOPPED;
|
73
|
+
this.statusStream$.next(this.subscriberStatus);
|
74
|
+
this.logger.debug('searchStream - on(close)');
|
75
|
+
});
|
76
|
+
call.on('error', (error) => {
|
77
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.ERROR;
|
78
|
+
this.statusStream$.next(this.subscriberStatus);
|
79
|
+
this.logger.debug('searchStream - on(error)', error);
|
80
|
+
emitter.error(error);
|
81
|
+
});
|
82
|
+
return () => {
|
83
|
+
this.logger.debug('unsubscribing searchStream');
|
84
|
+
call.cancel();
|
85
|
+
};
|
86
|
+
});
|
87
|
+
}
|
88
|
+
queryDataInternal(request, params) {
|
89
|
+
const metadata = this.getMetadata(params.projectId);
|
90
|
+
return new Promise((resolve, reject) => {
|
91
|
+
this.client.queryData(request, metadata, (error, response) => {
|
92
|
+
if (error) {
|
93
|
+
reject(error);
|
94
|
+
}
|
95
|
+
else if (response) {
|
96
|
+
resolve(response.result);
|
97
|
+
}
|
98
|
+
else {
|
99
|
+
reject('Error with search query.');
|
100
|
+
}
|
101
|
+
});
|
102
|
+
});
|
103
|
+
}
|
104
|
+
healthCheckInternal(params) {
|
105
|
+
const request = slowlane_pb_1.Empty.create();
|
106
|
+
const metadata = this.getMetadata(params.projectId);
|
107
|
+
return new Promise((resolve, reject) => {
|
108
|
+
this.client.healthCheck(request, metadata, (error, response) => {
|
109
|
+
if (error) {
|
110
|
+
reject(error);
|
111
|
+
}
|
112
|
+
else if (response) {
|
113
|
+
resolve(response);
|
114
|
+
}
|
115
|
+
else {
|
116
|
+
reject('Error with health check.');
|
117
|
+
}
|
118
|
+
});
|
119
|
+
});
|
120
|
+
}
|
121
|
+
deleteProjectDataInternal(params) {
|
122
|
+
const request = slowlane_pb_1.DeleteProjectMessage.create({ projectId: params.projectId });
|
123
|
+
const metadata = this.getMetadata(params.projectId);
|
124
|
+
return new Promise((resolve, reject) => {
|
125
|
+
this.client.deleteProjectData(request, metadata, (error, response) => {
|
126
|
+
if (error) {
|
127
|
+
reject(error);
|
128
|
+
}
|
129
|
+
else if (response) {
|
130
|
+
resolve(response);
|
131
|
+
}
|
132
|
+
else {
|
133
|
+
reject('Error with health check.');
|
134
|
+
}
|
135
|
+
});
|
136
|
+
});
|
137
|
+
}
|
138
|
+
getMetadata(projectId) {
|
139
|
+
const meta = new grpc.Metadata();
|
140
|
+
meta.add('authorization', this.token);
|
141
|
+
meta.add('r-p', projectId);
|
142
|
+
return meta;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
exports.SearchStreamNode = SearchStreamNode;
|
@@ -0,0 +1,101 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TelemetryStream = void 0;
|
4
|
+
const models_1 = require("../../../models");
|
5
|
+
const teletubby_pb_1 = require("../../../grpc/teletubby_pb");
|
6
|
+
const grpcweb_transport_1 = require("@protobuf-ts/grpcweb-transport");
|
7
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
8
|
+
const teletubby_pb_client_1 = require("../../../grpc/teletubby_pb.client");
|
9
|
+
const TelemetryStreamAbstract_1 = require("./TelemetryStreamAbstract");
|
10
|
+
class TelemetryStream extends TelemetryStreamAbstract_1.TelemetryStreamAbstract {
|
11
|
+
constructor(config) {
|
12
|
+
super(config);
|
13
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`TelemetryStreamWeb(${this.identifier})`);
|
14
|
+
const protocol = config.insecure ? 'http' : 'https';
|
15
|
+
const transport = new grpcweb_transport_1.GrpcWebFetchTransport({
|
16
|
+
baseUrl: `${protocol}://${this.url}`,
|
17
|
+
});
|
18
|
+
this.client = new teletubby_pb_client_1.TelemetryGatewayClient(transport);
|
19
|
+
}
|
20
|
+
stopInternal() {
|
21
|
+
if (this.abortController) {
|
22
|
+
this.logger.info('Starting stop stream process');
|
23
|
+
this.abortController.abort();
|
24
|
+
this.abortController = undefined;
|
25
|
+
this.logger.info('Finished stop stream process');
|
26
|
+
}
|
27
|
+
}
|
28
|
+
registerReceiver() {
|
29
|
+
this.logger.info('registerReceiver');
|
30
|
+
// Reset counter
|
31
|
+
this.receivedMessagesCount = 0;
|
32
|
+
const abortController = new AbortController();
|
33
|
+
this.abortController = abortController;
|
34
|
+
const call = this.client.registerReceiver(teletubby_pb_1.RegistrationMessage.create(), {
|
35
|
+
meta: this.getMetadata(this.projectId),
|
36
|
+
abort: abortController.signal,
|
37
|
+
});
|
38
|
+
call.responses.onMessage((msg) => {
|
39
|
+
this.onData(msg, false);
|
40
|
+
});
|
41
|
+
call.responses.onError((error) => {
|
42
|
+
void this.onError(error);
|
43
|
+
this.onEnd(false);
|
44
|
+
});
|
45
|
+
call.responses.onComplete(() => {
|
46
|
+
this.onEnd(true);
|
47
|
+
});
|
48
|
+
this.listenMessagesAndRenew();
|
49
|
+
return () => {
|
50
|
+
abortController.abort();
|
51
|
+
};
|
52
|
+
}
|
53
|
+
async onError(e) {
|
54
|
+
this.logger.error(`Telemetry Stream Error: ${e}, SubscriberId: ${this.subscriberId}`);
|
55
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.ERROR;
|
56
|
+
this.statusStream$.next(this.subscriberStatus);
|
57
|
+
}
|
58
|
+
onEnd(ok) {
|
59
|
+
this.logger.debug('registerReceiver', 'end');
|
60
|
+
if (ok) {
|
61
|
+
// ResourceExhausted
|
62
|
+
this.stopInternal();
|
63
|
+
this.registerReceiver();
|
64
|
+
}
|
65
|
+
}
|
66
|
+
getMetadata(projectId) {
|
67
|
+
const result = { authorization: this.token };
|
68
|
+
if (projectId) {
|
69
|
+
result['r-p'] = projectId;
|
70
|
+
}
|
71
|
+
return result;
|
72
|
+
}
|
73
|
+
async requestTelemetry(req) {
|
74
|
+
this.logger.debug('Sending telemetry request');
|
75
|
+
try {
|
76
|
+
await this.client.requestTelemetry(req, { meta: this.getMetadata(this.projectId) });
|
77
|
+
}
|
78
|
+
catch (e) {
|
79
|
+
this.logger.error('error requestTelemetry ', e);
|
80
|
+
throw e;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
async requestTelemetryQuery(req) {
|
84
|
+
this.logger.debug('Requesting telemetry with query');
|
85
|
+
try {
|
86
|
+
await this.client.requestTelemetryQuery(req, { meta: this.getMetadata(this.projectId) });
|
87
|
+
}
|
88
|
+
catch (e) {
|
89
|
+
this.logger.error('error requestTelemetryQuery ', e);
|
90
|
+
throw e;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
sendAcknowledgmentInternal(uid, status, noRetry) {
|
94
|
+
this.logger.error('Error can not send Acknowledgment on grpc-web client', { uid, status, noRetry });
|
95
|
+
return false;
|
96
|
+
}
|
97
|
+
sendHeartbeat() {
|
98
|
+
// can not send heartbeat on grpc-web
|
99
|
+
}
|
100
|
+
}
|
101
|
+
exports.TelemetryStream = TelemetryStream;
|
@@ -0,0 +1,406 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.TelemetryStreamAbstract = void 0;
|
4
|
+
const rxjs_1 = require("rxjs");
|
5
|
+
const models_1 = require("../../../models");
|
6
|
+
const grpc_1 = require("../../../constants/grpc");
|
7
|
+
const teletubby_pb_1 = require("../../../grpc/teletubby_pb");
|
8
|
+
const identifier_1 = require("../../../constants/identifier");
|
9
|
+
const RocosStore_1 = require("../../../store/RocosStore");
|
10
|
+
const StreamHeartbeat_1 = require("../../atoms/StreamHeartbeat");
|
11
|
+
const StreamRegister_1 = require("../../StreamRegister");
|
12
|
+
const arrayUnique_1 = require("../../../helpers/arrayUnique");
|
13
|
+
const operators_1 = require("rxjs/operators");
|
14
|
+
const getSubscriptionsDifference_1 = require("../../../helpers/getSubscriptionsDifference");
|
15
|
+
class TelemetryStreamAbstract {
|
16
|
+
constructor(config) {
|
17
|
+
// /////////////////
|
18
|
+
// Subscriber Check
|
19
|
+
this.timerIntervalInSec = 1;
|
20
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.STOPPED;
|
21
|
+
this.retryTimes = 0;
|
22
|
+
this.receivedMessagesCount = 0;
|
23
|
+
// send heartbeat timeout is set to 5 seconds 5000
|
24
|
+
this.sendHeartbeatTime = 5000;
|
25
|
+
this.receivedDataStats = {};
|
26
|
+
this.subscriptions = new Map();
|
27
|
+
this.identifier = StreamRegister_1.StreamRegister.getIdentifier(identifier_1.IDENTIFIER_NAME_TELEMETRY, config.scope);
|
28
|
+
this.projectId = config.projectId;
|
29
|
+
this.callsignsLookup = config.callsignsLookup;
|
30
|
+
this.token = config.token;
|
31
|
+
this.scope = config.scope;
|
32
|
+
this.url = config.url;
|
33
|
+
// make sure sources are unique for later comparison
|
34
|
+
this.sources = (0, arrayUnique_1.arrayUnique)(config.sources);
|
35
|
+
this.options = models_1.StreamOptions.fromModel(config.options);
|
36
|
+
this.messageStream$ = new rxjs_1.Subject();
|
37
|
+
this.statusStream$ = new rxjs_1.BehaviorSubject(models_1.SubscriberStatusEnum.STOPPED);
|
38
|
+
this.heartbeat = new StreamHeartbeat_1.StreamHeartbeat(this.identifier);
|
39
|
+
RocosStore_1.RocosStore.getChangeSubject()
|
40
|
+
.pipe((0, operators_1.filter)((message) => {
|
41
|
+
return message.type === 'token' && message.url === this.url;
|
42
|
+
}))
|
43
|
+
.subscribe((msg) => {
|
44
|
+
this.token = msg.data;
|
45
|
+
});
|
46
|
+
}
|
47
|
+
setToken(token) {
|
48
|
+
this.token = token;
|
49
|
+
}
|
50
|
+
init() {
|
51
|
+
this.logger.info('Creating new stream instance');
|
52
|
+
// Register Receiver
|
53
|
+
this.registerReceiver();
|
54
|
+
}
|
55
|
+
stopStream() {
|
56
|
+
this.heartbeat?.stop();
|
57
|
+
this.stopInternal();
|
58
|
+
if (this.messagesTimer) {
|
59
|
+
clearInterval(this.messagesTimer);
|
60
|
+
}
|
61
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.STOPPED;
|
62
|
+
this.statusStream$.next(this.subscriberStatus);
|
63
|
+
}
|
64
|
+
addSubscription(params) {
|
65
|
+
this.logger.info('Adding subscriptions from stream', params.uniqueId);
|
66
|
+
if (!this.subscriptions.has(params.uniqueId)) {
|
67
|
+
// get subscriptions before change
|
68
|
+
const before = this.getSubscriptions();
|
69
|
+
this.subscriptions.set(params.uniqueId, {
|
70
|
+
...params,
|
71
|
+
count: 1, // set the count to one just in case it's set in param
|
72
|
+
});
|
73
|
+
// get subscriptions after change
|
74
|
+
const after = this.getSubscriptions();
|
75
|
+
// assign the current values from state after change
|
76
|
+
this.callsignsLookup = new models_1.CallsignsLookup(Object.keys(after));
|
77
|
+
this.sources = (0, arrayUnique_1.arrayUnique)(Object.values(after).reduce((a, v) => a.concat(v), []));
|
78
|
+
// compare before and after subscriptions and only add the difference
|
79
|
+
const { toAdd } = (0, getSubscriptionsDifference_1.getSubscriptionsDifference)(before, after);
|
80
|
+
// only subscribe if the subscriberId exists, otherwise the messages will be subscribed on lazy load
|
81
|
+
if (toAdd.callsigns.length && toAdd.sources.length) {
|
82
|
+
this.logger.debug('New subscriptions added, we need to refresh sources', { toAdd });
|
83
|
+
void this.takeTelemetryAction('subscribe', new models_1.CallsignsLookup(toAdd.callsigns), toAdd.sources);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
else {
|
87
|
+
const subs = this.subscriptions.get(params.uniqueId);
|
88
|
+
subs.count++;
|
89
|
+
this.subscriptions.set(params.uniqueId, subs);
|
90
|
+
this.logger.info('Stream subscriptions already exists, increasing count', params.uniqueId, subs.count);
|
91
|
+
}
|
92
|
+
RocosStore_1.RocosStore.getChangeSubject().next({ type: 'telemetry-subscription', url: this.url, data: this.subscriptions });
|
93
|
+
}
|
94
|
+
async removeSubscription(params, terminateReceiverGroup = false) {
|
95
|
+
this.logger.info('Removing subscriptions from stream', params.uniqueId);
|
96
|
+
if (!this.subscriptions.has(params.uniqueId))
|
97
|
+
return;
|
98
|
+
const subs = this.subscriptions.get(params.uniqueId);
|
99
|
+
subs.count--;
|
100
|
+
if (subs.count)
|
101
|
+
return;
|
102
|
+
this.logger.info('Removing subscriptions from stream registry', params.uniqueId);
|
103
|
+
const before = this.getSubscriptions();
|
104
|
+
this.subscriptions.delete(params.uniqueId);
|
105
|
+
const after = this.getSubscriptions();
|
106
|
+
// assign the current values from state after change
|
107
|
+
this.callsignsLookup = new models_1.CallsignsLookup(Object.keys(after));
|
108
|
+
this.sources = (0, arrayUnique_1.arrayUnique)(Object.values(after).reduce((a, v) => a.concat(v), []));
|
109
|
+
const { toRemove } = (0, getSubscriptionsDifference_1.getSubscriptionsDifference)(before, after);
|
110
|
+
if (toRemove.callsigns.length && toRemove.sources.length) {
|
111
|
+
this.logger.debug('Subscriptions removed, we need to refresh sources', { toRemove });
|
112
|
+
try {
|
113
|
+
await this.takeTelemetryAction('unsubscribe', new models_1.CallsignsLookup(toRemove.callsigns), toRemove.sources, terminateReceiverGroup);
|
114
|
+
}
|
115
|
+
catch (err) {
|
116
|
+
this.logger.error(`Failed to unsubscribe: ${err}`);
|
117
|
+
}
|
118
|
+
}
|
119
|
+
if (!this.subscriptions.size) {
|
120
|
+
this.logger.info('No subscriptions remaining closing stream', params.uniqueId);
|
121
|
+
this.stopStream();
|
122
|
+
// self remove when no subscriptions a re left
|
123
|
+
void StreamRegister_1.StreamRegister.getInstance().removeStream(this);
|
124
|
+
this.logger.info('Stream closed');
|
125
|
+
}
|
126
|
+
}
|
127
|
+
sendAcknowledgment(uid, status, noRetry) {
|
128
|
+
return this.sendAcknowledgmentInternal(uid, status, noRetry);
|
129
|
+
}
|
130
|
+
getSubscriptions() {
|
131
|
+
const subs = {};
|
132
|
+
this.subscriptions.forEach((data) => {
|
133
|
+
if (data.callsigns) {
|
134
|
+
data.callsigns.forEach((item) => {
|
135
|
+
if (!subs[item]) {
|
136
|
+
subs[item] = (0, arrayUnique_1.arrayUnique)([...data.sources]);
|
137
|
+
}
|
138
|
+
else {
|
139
|
+
subs[item] = (0, arrayUnique_1.arrayUnique)([...subs[item], ...data.sources]);
|
140
|
+
}
|
141
|
+
});
|
142
|
+
}
|
143
|
+
});
|
144
|
+
return subs;
|
145
|
+
}
|
146
|
+
onData(message, isStream) {
|
147
|
+
this.receivedMessagesCount++;
|
148
|
+
let rocosMessage;
|
149
|
+
const data = {
|
150
|
+
subscriberId: this.subscriberId,
|
151
|
+
subId: this.scope,
|
152
|
+
projectId: this.projectId,
|
153
|
+
};
|
154
|
+
if (isStream) {
|
155
|
+
rocosMessage = models_1.RocosTelemetryMessage.fromTelemetryStreamMessage(message, data, 'json');
|
156
|
+
}
|
157
|
+
else {
|
158
|
+
rocosMessage = models_1.RocosTelemetryMessage.fromTelemetryMessage(message, data, 'json');
|
159
|
+
}
|
160
|
+
const { source, callsign } = rocosMessage;
|
161
|
+
let isRobotMessage = true;
|
162
|
+
const now = new Date();
|
163
|
+
// Update last message received time
|
164
|
+
this.lastMessageReceived = now;
|
165
|
+
switch (source) {
|
166
|
+
// Subscribe message
|
167
|
+
case grpc_1.GRPC_SOURCE_SUBSCRIBED: {
|
168
|
+
const { subscriberId } = rocosMessage.payload;
|
169
|
+
if (this.subscriberId && subscriberId) {
|
170
|
+
this.logger.warn(`Replacing old subscriberId (${this.subscriberId}) with a new one (${subscriberId})`);
|
171
|
+
}
|
172
|
+
// Update the subscriberId
|
173
|
+
this.subscriberId = subscriberId;
|
174
|
+
rocosMessage.subscriberId = this.subscriberId;
|
175
|
+
this.logger.info('onData', `subscriberId has been updated - ${subscriberId}`, { subscriberId });
|
176
|
+
void this.takeTelemetryAction('subscribe');
|
177
|
+
this.heartbeat.start(this.sendHeartbeat, this.sendHeartbeatTime);
|
178
|
+
isRobotMessage = false;
|
179
|
+
break;
|
180
|
+
}
|
181
|
+
// Server heartbeat message
|
182
|
+
case grpc_1.GRPC_SOURCE_NOOP:
|
183
|
+
isRobotMessage = false;
|
184
|
+
break;
|
185
|
+
}
|
186
|
+
// Update robot last message timestamp
|
187
|
+
if (isRobotMessage) {
|
188
|
+
this.lastRobotMessageReceived = now;
|
189
|
+
}
|
190
|
+
// Update stats
|
191
|
+
this.updateReceivedDataStatsWithMessage(rocosMessage);
|
192
|
+
// Send message to subscribers
|
193
|
+
if (this.isRegisteredMessage(callsign, source) && this.messageStream$) {
|
194
|
+
this.messageStream$.next(rocosMessage);
|
195
|
+
if (rocosMessage.isackable && this.options.autoAcknowledgmentEnabled) {
|
196
|
+
this.sendAcknowledgment(rocosMessage.uid, teletubby_pb_1.TelemetryAckStatus.OK, false);
|
197
|
+
}
|
198
|
+
}
|
199
|
+
else if (isRobotMessage) {
|
200
|
+
// acknowledge any way, as the user never receives this message
|
201
|
+
if (rocosMessage.isackable) {
|
202
|
+
this.sendAcknowledgment(rocosMessage.uid, teletubby_pb_1.TelemetryAckStatus.REJECT, true);
|
203
|
+
}
|
204
|
+
// All messages received should be subscribed.
|
205
|
+
this.logger.debug('onData', 'received unsubscribed message', {
|
206
|
+
callsign,
|
207
|
+
source,
|
208
|
+
callsigns: this.callsignsLookup,
|
209
|
+
sources: this.sources,
|
210
|
+
});
|
211
|
+
}
|
212
|
+
}
|
213
|
+
async takeTelemetryAction(actionType, callsignsLookup, sources, terminate) {
|
214
|
+
this.logger.debug('takeTelemetryAction', actionType);
|
215
|
+
if (!this.subscriberId || !this.projectId) {
|
216
|
+
this.logger.debug('takeTelemetryAction', actionType, `${actionType} without subscriberId or projectId - message will not send out`, {
|
217
|
+
subscriberId: this.subscriberId,
|
218
|
+
projectId: this.projectId,
|
219
|
+
});
|
220
|
+
return Promise.resolve();
|
221
|
+
}
|
222
|
+
const actionSources = sources ?? this.sources;
|
223
|
+
const actionCallsigns = callsignsLookup ?? this.callsignsLookup;
|
224
|
+
if (this.callsignsLookup.lookupType === models_1.CallsignsLookupType.List) {
|
225
|
+
// Compose the request message
|
226
|
+
const req = teletubby_pb_1.TelemetryRequest.create({
|
227
|
+
subscriberId: this.subscriberId,
|
228
|
+
requestedActions: [
|
229
|
+
{
|
230
|
+
operation: actionType,
|
231
|
+
callsigns: actionCallsigns.lookupValue,
|
232
|
+
sources: actionSources,
|
233
|
+
},
|
234
|
+
],
|
235
|
+
});
|
236
|
+
if (actionType === 'unsubscribe' && terminate) {
|
237
|
+
this.addTerminateToAction(req.requestedActions[0]);
|
238
|
+
}
|
239
|
+
this.logger.debug('takeTelemetryAction', actionType, 'client.requestTelemetry', this.subscriberId);
|
240
|
+
// Send the message to back-end.
|
241
|
+
return this.requestTelemetry(req);
|
242
|
+
}
|
243
|
+
else if (actionCallsigns.lookupType === models_1.CallsignsLookupType.Query) {
|
244
|
+
const lookupValue = actionCallsigns.lookupValue;
|
245
|
+
// We don't support nested query at the moment
|
246
|
+
const queryOrPredicatesList = [];
|
247
|
+
// Loop through user provided predicates to construct a telemetry query request
|
248
|
+
lookupValue.predicates.forEach((callsignsPredicate) => {
|
249
|
+
const queryOrPredicate = teletubby_pb_1.QueryOrPredicate.create({
|
250
|
+
content: {
|
251
|
+
oneofKind: 'predicate',
|
252
|
+
predicate: {
|
253
|
+
attribute: callsignsPredicate.attribute.valueOf(),
|
254
|
+
operation: callsignsPredicate.operation.valueOf(),
|
255
|
+
value: callsignsPredicate.value,
|
256
|
+
},
|
257
|
+
},
|
258
|
+
});
|
259
|
+
queryOrPredicatesList.push(queryOrPredicate);
|
260
|
+
});
|
261
|
+
// Compose the request message
|
262
|
+
const req = teletubby_pb_1.TelemetryQueryRequest.create({
|
263
|
+
subscriberId: this.subscriberId,
|
264
|
+
sources: actionSources,
|
265
|
+
operation: actionType,
|
266
|
+
callsignQuery: {
|
267
|
+
operation: lookupValue.operation.valueOf(),
|
268
|
+
queryOrPredicates: queryOrPredicatesList,
|
269
|
+
},
|
270
|
+
});
|
271
|
+
this.logger.debug('takeTelemetryAction', actionType, 'client.requestTelemetry', this.subscriberId);
|
272
|
+
// Send the telemetry query request to back-end.
|
273
|
+
return this.requestTelemetryQuery(req);
|
274
|
+
}
|
275
|
+
return Promise.reject('Unsupported lookupType');
|
276
|
+
}
|
277
|
+
listenMessagesAndRenew() {
|
278
|
+
const timer = this.messagesTimer;
|
279
|
+
this.checkerStartedAt = new Date();
|
280
|
+
// Clear the previous timer first.
|
281
|
+
if (timer) {
|
282
|
+
clearInterval(timer);
|
283
|
+
}
|
284
|
+
this.messagesTimer = setInterval(() => {
|
285
|
+
const now = new Date();
|
286
|
+
const latest = this.lastMessageReceived;
|
287
|
+
const latestRobot = this.lastRobotMessageReceived;
|
288
|
+
const startedAt = this.checkerStartedAt ?? new Date();
|
289
|
+
const timeout = this.options.messageTimeoutInSec;
|
290
|
+
let shouldRetry = false;
|
291
|
+
let shouldAutoResubscribe = false;
|
292
|
+
const hasExceededTimeoutSinceLastMessage = latest && (now.getTime() - latest.getTime()) / 1000 > timeout;
|
293
|
+
const hasExceededTimeoutBeforeMessages = !latest && startedAt && (now.getTime() - startedAt.getTime()) / 1000 > timeout;
|
294
|
+
if (hasExceededTimeoutSinceLastMessage || hasExceededTimeoutBeforeMessages) {
|
295
|
+
shouldRetry = true;
|
296
|
+
}
|
297
|
+
if (latestRobot) {
|
298
|
+
// If we get robot messages at least once.
|
299
|
+
if ((now.getTime() - latestRobot.getTime()) / 1000 > timeout) {
|
300
|
+
// Offline
|
301
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.DEAD;
|
302
|
+
}
|
303
|
+
else {
|
304
|
+
// Online
|
305
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.ALIVE;
|
306
|
+
}
|
307
|
+
}
|
308
|
+
else if ((now.getTime() - startedAt.getTime()) / 1000 > timeout) {
|
309
|
+
// If there is no robot messages received, then we compare with startedAt time.
|
310
|
+
// Timeout
|
311
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.DEAD;
|
312
|
+
}
|
313
|
+
else if (this.retryTimes <= 0) {
|
314
|
+
// Still trying, status unknown.
|
315
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.STOPPED;
|
316
|
+
}
|
317
|
+
else {
|
318
|
+
// Tried multiple times. dead already.
|
319
|
+
this.subscriberStatus = models_1.SubscriberStatusEnum.DEAD;
|
320
|
+
}
|
321
|
+
if (this.options.autoResubscribeEnabled &&
|
322
|
+
this.receivedMessagesCount > this.options.autoResubscribeMessageLimit &&
|
323
|
+
(now.getTime() - startedAt.getTime()) / 1000 > this.options.autoResubscribeMinimumTime) {
|
324
|
+
// If received messages above the limit of resubscribing, we need to resubscribe.
|
325
|
+
shouldAutoResubscribe = true;
|
326
|
+
}
|
327
|
+
if (shouldRetry) {
|
328
|
+
this.logger.debug('listenMessagesAndRenew', { shouldRetry: true });
|
329
|
+
// Retry
|
330
|
+
this.messageTimeoutTryAgain();
|
331
|
+
}
|
332
|
+
else if (shouldAutoResubscribe) {
|
333
|
+
this.logger.debug('listenMessagesAndRenew', {
|
334
|
+
shouldAutoResubscribe: true,
|
335
|
+
});
|
336
|
+
// Resubscribe
|
337
|
+
this.autoResubscribe();
|
338
|
+
}
|
339
|
+
// Update subscriber status.
|
340
|
+
this.statusStream$.next(this.subscriberStatus);
|
341
|
+
// Debug stats
|
342
|
+
this.logger.debug('listenMessagesAndRenew', 'Message stats', this.receivedDataStats);
|
343
|
+
}, this.timerIntervalInSec * 1000);
|
344
|
+
}
|
345
|
+
addTerminateToAction(telemetryAction) {
|
346
|
+
const unsubscribeOperation = teletubby_pb_1.UnsubscribeOperation.create({
|
347
|
+
options: [
|
348
|
+
{
|
349
|
+
content: {
|
350
|
+
receivergroupUnsubscribeOption: {
|
351
|
+
terminate: true,
|
352
|
+
},
|
353
|
+
oneofKind: 'receivergroupUnsubscribeOption',
|
354
|
+
},
|
355
|
+
},
|
356
|
+
],
|
357
|
+
});
|
358
|
+
telemetryAction.content = {
|
359
|
+
oneofKind: 'unsubscribeOperation',
|
360
|
+
unsubscribeOperation,
|
361
|
+
};
|
362
|
+
}
|
363
|
+
messageTimeoutTryAgain() {
|
364
|
+
// Increase retry times.
|
365
|
+
this.retryTimes++;
|
366
|
+
// Remove the received call anyway.
|
367
|
+
this.stopInternal();
|
368
|
+
this.lastMessageReceived = undefined;
|
369
|
+
this.lastRobotMessageReceived = undefined;
|
370
|
+
this.registerReceiver();
|
371
|
+
}
|
372
|
+
/**
|
373
|
+
* Auto resubscribe to reduce CPU usage.
|
374
|
+
*/
|
375
|
+
autoResubscribe() {
|
376
|
+
// Reset
|
377
|
+
this.retryTimes = 0;
|
378
|
+
// Remove the received call anyway.
|
379
|
+
this.stopInternal();
|
380
|
+
this.lastMessageReceived = undefined;
|
381
|
+
this.lastRobotMessageReceived = undefined;
|
382
|
+
this.registerReceiver();
|
383
|
+
}
|
384
|
+
isFoundCallsign(callsign) {
|
385
|
+
return this.callsignsLookup.lookupType === models_1.CallsignsLookupType.List
|
386
|
+
? this.callsignsLookup.lookupValue.indexOf(callsign) !== -1
|
387
|
+
: true; // If callsigns lookup option is query, we always return true
|
388
|
+
}
|
389
|
+
isFoundSource(source) {
|
390
|
+
return this.sources.indexOf(source) !== -1;
|
391
|
+
}
|
392
|
+
isRegisteredMessage(callsign, source) {
|
393
|
+
return this.isFoundCallsign(callsign) && this.isFoundSource(source);
|
394
|
+
}
|
395
|
+
updateReceivedDataStatsWithMessage(msg) {
|
396
|
+
const { source } = msg;
|
397
|
+
const { callsign } = msg;
|
398
|
+
const id = `${callsign}-${source}`;
|
399
|
+
if (!this.receivedDataStats) {
|
400
|
+
this.receivedDataStats = {};
|
401
|
+
}
|
402
|
+
const count = this.receivedDataStats[id] ? this.receivedDataStats[id] : 0;
|
403
|
+
this.receivedDataStats[id] = count + 1;
|
404
|
+
}
|
405
|
+
}
|
406
|
+
exports.TelemetryStreamAbstract = TelemetryStreamAbstract;
|