@dronedeploy/rocos-js-sdk 3.0.1-alpha.1 → 3.0.1-alpha.14
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 +151 -0
- package/cjs/RocosSDK.js +329 -0
- package/cjs/api/StreamRegister.js +73 -0
- package/cjs/api/atoms/StreamHeartbeat.js +115 -0
- package/cjs/api/streams/caller/CallerStream.js +85 -0
- package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
- package/cjs/api/streams/caller/CallerStreamNode.js +143 -0
- package/cjs/api/streams/command/CommandStream.js +74 -0
- package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
- package/cjs/api/streams/command/CommandStreamNode.js +97 -0
- package/cjs/api/streams/control/ControlStream.js +83 -0
- package/cjs/api/streams/control/ControlStreamAbstract.d.ts +25 -0
- package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
- package/cjs/api/streams/control/ControlStreamNode.js +101 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStream.js +67 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +95 -0
- package/cjs/api/streams/search/SearchStream.js +104 -0
- package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
- package/cjs/api/streams/search/SearchStreamNode.js +146 -0
- package/cjs/api/streams/telemetry/TelemetryStream.js +105 -0
- package/cjs/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
- package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
- package/cjs/api/streams/telemetry/TelemetryStreamNode.js +203 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +92 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
- package/cjs/constants/api.d.ts +137 -0
- package/cjs/constants/api.js +142 -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/enviroment.js +17 -0
- package/cjs/helpers/flattenCallsignsLookup.js +10 -0
- package/cjs/helpers/flattenObject.js +17 -0
- package/cjs/helpers/flattenOneOf.js +34 -0
- package/cjs/helpers/formatServiceUrl.js +11 -0
- package/cjs/helpers/generateUUID.js +8 -0
- package/cjs/helpers/getSha256Hex.d.ts +1 -0
- package/cjs/helpers/getSha256Hex.js +9 -0
- package/cjs/helpers/getSha256HexNode.d.ts +1 -0
- package/cjs/helpers/getSha256HexNode.js +13 -0
- package/cjs/helpers/getSubscriptionsDifference.js +39 -0
- package/cjs/helpers/getURLSearchParams.js +13 -0
- package/cjs/helpers/getUniqueConfigKey.d.ts +11 -0
- package/cjs/helpers/getUniqueConfigKey.js +23 -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/randomString.js +7 -0
- package/cjs/helpers/splitRobotTopic.d.ts +9 -0
- package/cjs/helpers/splitRobotTopic.js +16 -0
- package/cjs/helpers/standardDeviation.js +16 -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.d.ts +11 -0
- package/cjs/helpers/websandbox/frame/worker/manager.js +70 -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.d.ts +57 -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/HttpError.d.ts +5 -0
- package/cjs/models/HttpError.js +12 -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.d.ts +6 -0
- package/cjs/models/IProject.js +2 -0
- package/cjs/models/IProjectApplication.js +2 -0
- package/cjs/models/IProjectInfo.d.ts +14 -0
- package/cjs/models/IProjectInfo.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.d.ts +23 -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/Widget.js +16 -0
- package/cjs/models/WidgetLineGroup.js +9 -0
- package/cjs/models/asset-storage/AssetItem.d.ts +16 -0
- package/cjs/models/asset-storage/AssetItem.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 +80 -0
- package/cjs/models/index.js +96 -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.d.ts +94 -0
- package/cjs/models/workflow/Workflow.js +2 -0
- package/cjs/node/RocosSDKNode.d.ts +51 -0
- package/cjs/node/RocosSDKNode.js +150 -0
- package/cjs/node/index.js +23 -0
- package/cjs/services/AssetStorageService.d.ts +137 -0
- package/cjs/services/AssetStorageService.js +227 -0
- package/cjs/services/AuthService.js +239 -0
- package/cjs/services/BaseServiceAbstract.d.ts +36 -0
- package/cjs/services/BaseServiceAbstract.js +94 -0
- package/cjs/services/BaseStreamService.js +53 -0
- package/cjs/services/CallerService.d.ts +42 -0
- package/cjs/services/CallerService.js +121 -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/ProfileService.d.ts +267 -0
- package/cjs/services/ProfileService.js +394 -0
- package/cjs/services/ProjectService.d.ts +106 -0
- package/cjs/services/ProjectService.js +167 -0
- package/cjs/services/RTPWebRTCService.d.ts +102 -0
- package/cjs/services/RTPWebRTCService.js +234 -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/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.d.ts +62 -0
- package/cjs/services/WorkflowService.js +107 -0
- package/cjs/services/WorkflowServiceNode.d.ts +4 -0
- package/cjs/services/WorkflowServiceNode.js +12 -0
- package/cjs/services/index.d.ts +28 -0
- package/cjs/services/index.js +44 -0
- package/cjs/store/RocosStore.d.ts +30 -0
- package/cjs/store/RocosStore.js +51 -0
- package/esm/IRocosSDK.d.ts +34 -0
- package/esm/RocosSDK.d.ts +151 -0
- package/esm/RocosSDK.js +325 -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/CallerStream.js +81 -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/caller/CallerStreamNode.js +116 -0
- package/esm/api/streams/command/CommandStream.d.ts +10 -0
- package/esm/api/streams/command/CommandStream.js +70 -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/command/CommandStreamNode.js +70 -0
- package/esm/api/streams/control/ControlStream.d.ts +12 -0
- package/esm/api/streams/control/ControlStream.js +79 -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/control/ControlStreamNode.js +74 -0
- package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
- package/esm/api/streams/fileAccessor/FileAccessorStream.js +63 -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/fileAccessor/FileAccessorStreamNode.js +68 -0
- package/esm/api/streams/search/SearchStream.d.ts +13 -0
- package/esm/api/streams/search/SearchStream.js +100 -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/search/SearchStreamNode.js +119 -0
- package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
- package/esm/api/streams/telemetry/TelemetryStream.js +101 -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/telemetry/TelemetryStreamNode.js +176 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
- package/esm/constants/api.d.ts +137 -0
- package/esm/constants/api.js +137 -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/getSha256Hex.d.ts +1 -0
- package/esm/helpers/getSha256Hex.js +5 -0
- package/esm/helpers/getSha256HexNode.d.ts +1 -0
- package/esm/helpers/getSha256HexNode.js +6 -0
- package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
- package/esm/helpers/getURLSearchParams.d.ts +2 -0
- package/esm/helpers/getUniqueConfigKey.d.ts +11 -0
- package/esm/helpers/getUniqueConfigKey.js +19 -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/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/frame.source.js +5 -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.js +67 -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/sandbox.js +175 -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/HttpError.d.ts +5 -0
- package/esm/models/HttpError.js +8 -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 +6 -0
- package/esm/models/IProjectApplication.d.ts +6 -0
- package/esm/models/IProjectInfo.d.ts +14 -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 +23 -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/AssetItem.d.ts +16 -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 +80 -0
- package/esm/models/index.js +80 -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/projects/ProjectUser.d.ts +6 -0
- package/esm/models/schedule/IScheduleAction.d.ts +13 -0
- package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
- package/esm/models/schedule/IScheduleJob.d.ts +12 -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/ICallerStream.d.ts +8 -0
- package/esm/models/stream/ICommandStream.d.ts +7 -0
- package/esm/models/stream/IControlStream.d.ts +9 -0
- package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
- package/esm/models/stream/ISearchStream.d.ts +11 -0
- package/esm/models/stream/ITelemetryStream.d.ts +10 -0
- package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
- package/esm/models/types.d.ts +5 -0
- package/esm/models/workflow/Workflow.d.ts +94 -0
- package/esm/node/RocosSDKNode.d.ts +51 -0
- package/esm/node/RocosSDKNode.js +146 -0
- package/esm/node/index.js +7 -0
- package/esm/services/AssetStorageService.d.ts +137 -0
- package/esm/services/AssetStorageService.js +223 -0
- package/esm/services/AuthService.d.ts +93 -0
- package/esm/services/BaseServiceAbstract.d.ts +36 -0
- package/esm/services/BaseServiceAbstract.js +90 -0
- package/esm/services/BaseStreamService.d.ts +18 -0
- package/esm/services/BaseStreamService.js +49 -0
- package/esm/services/CallerService.d.ts +42 -0
- package/esm/services/CallerService.js +117 -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/ProfileService.d.ts +267 -0
- package/esm/services/ProfileService.js +390 -0
- package/esm/services/ProjectService.d.ts +106 -0
- package/esm/services/ProjectService.js +163 -0
- package/esm/services/RTPWebRTCService.d.ts +102 -0
- package/esm/services/RTPWebRTCService.js +229 -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/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 +62 -0
- package/esm/services/WorkflowService.js +103 -0
- package/esm/services/WorkflowServiceNode.d.ts +4 -0
- package/esm/services/WorkflowServiceNode.js +8 -0
- package/esm/services/index.d.ts +28 -0
- package/esm/services/index.js +28 -0
- package/esm/store/RocosStore.d.ts +30 -0
- package/package.json +19 -7
- package/IRocosSDK.d.ts +0 -32
- package/RocosSDK.d.ts +0 -143
- package/RocosSDK.js +0 -302
- package/api/streams/caller/CallerStream.js +0 -77
- package/api/streams/caller/CallerStreamNode.js +0 -115
- package/api/streams/command/CommandStream.js +0 -66
- package/api/streams/command/CommandStreamNode.js +0 -69
- package/api/streams/control/ControlStream.js +0 -75
- package/api/streams/control/ControlStreamAbstract.d.ts +0 -25
- package/api/streams/control/ControlStreamNode.js +0 -73
- package/api/streams/fileAccessor/FileAccessorStream.js +0 -59
- package/api/streams/fileAccessor/FileAccessorStreamNode.js +0 -66
- package/api/streams/search/SearchStream.js +0 -96
- package/api/streams/search/SearchStreamNode.js +0 -118
- package/api/streams/telemetry/TelemetryStream.js +0 -97
- package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -59
- package/api/streams/telemetry/TelemetryStreamNode.js +0 -175
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -84
- package/constants/api.d.ts +0 -127
- package/constants/api.js +0 -127
- package/helpers/cleanObject.spec.js +0 -53
- package/helpers/flattenObject.spec.js +0 -29
- package/helpers/flattenOneOf.spec.js +0 -157
- package/helpers/formatServiceUrl.spec.js +0 -16
- package/helpers/getURLSearchParams.spec.js +0 -19
- package/helpers/getUniqueConfigKey.d.ts +0 -7
- package/helpers/getUniqueConfigKey.js +0 -14
- package/helpers/nanosecondToMillisecond.spec.js +0 -20
- package/helpers/standardDeviation.spec.d.ts +0 -1
- package/helpers/standardDeviation.spec.js +0 -11
- package/helpers/websandbox/frame/frame.source.js +0 -5
- package/helpers/websandbox/frame/worker/manager.d.ts +0 -13
- package/helpers/websandbox/frame/worker/manager.js +0 -60
- package/helpers/websandbox/sandbox.d.ts +0 -54
- package/helpers/websandbox/sandbox.js +0 -146
- package/models/IProject.d.ts +0 -4
- package/models/IRocosSDKConfig.d.ts +0 -19
- 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/Token.spec.d.ts +0 -1
- package/models/Token.spec.js +0 -108
- package/models/asset-storage/AssetModelItem.d.ts +0 -29
- package/models/asset-storage/AssetModelItem.js +0 -1
- 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 -75
- package/models/index.js +0 -75
- 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/AuthService.spec.d.ts +0 -1
- package/services/AuthService.spec.js +0 -163
- package/services/BaseServiceAbstract.d.ts +0 -36
- package/services/BaseServiceAbstract.js +0 -97
- 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/PlatformTimeService.spec.d.ts +0 -1
- package/services/PlatformTimeService.spec.js +0 -180
- package/services/ProfileService.d.ts +0 -244
- package/services/ProfileService.js +0 -362
- package/services/ProjectService.d.ts +0 -110
- package/services/ProjectService.js +0 -160
- package/services/TelemetryService.d.ts +0 -40
- package/services/TelemetryService.js +0 -142
- package/services/TelemetryService.spec.d.ts +0 -1
- package/services/TelemetryService.spec.js +0 -37
- package/services/WorkflowService.d.ts +0 -71
- package/services/WorkflowService.js +0 -118
- package/services/index.d.ts +0 -27
- package/services/index.js +0 -27
- package/store/RocosStore.d.ts +0 -31
- /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/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/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}/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}/flattenOneOf.d.ts +0 -0
- /package/{helpers → cjs/helpers}/formatServiceUrl.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}/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}/randomString.d.ts +0 -0
- /package/{helpers → cjs/helpers}/standardDeviation.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/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/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}/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}/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}/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/{node → cjs/node}/index.d.ts +0 -0
- /package/{services → cjs/services}/AuthService.d.ts +0 -0
- /package/{services → cjs/services}/BaseStreamService.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}/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}/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/{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/CallerStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.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/{helpers → esm/helpers}/enviroment.js +0 -0
- /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
- /package/{helpers → esm/helpers}/flattenObject.js +0 -0
- /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
- /package/{helpers → esm/helpers}/formatServiceUrl.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/{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/{helpers → esm/helpers}/randomString.js +0 -0
- /package/{helpers → esm/helpers}/standardDeviation.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/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/types.js +0 -0
- /package/{helpers/cleanObject.spec.d.ts → 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/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 → esm/models}/IBaseService.js +0 -0
- /package/{models → esm/models}/IConfigGroup.js +0 -0
- /package/{models → esm/models}/IDebugLevel.js +0 -0
- /package/{models → esm/models}/IExportDataQuery.js +0 -0
- /package/{models → esm/models}/IFunctionConfig.js +0 -0
- /package/{models → esm/models}/IInvitation.js +0 -0
- /package/{models → esm/models}/IInvitationExists.js +0 -0
- /package/{models → esm/models}/IOperation.js +0 -0
- /package/{models → esm/models}/IPersonalAccessToken.js +0 -0
- /package/{models → esm/models}/IProject.js +0 -0
- /package/{models → esm/models}/IProjectApplication.js +0 -0
- /package/{helpers/flattenObject.spec.d.ts → esm/models/IProjectInfo.js} +0 -0
- /package/{models → esm/models}/IRobot.js +0 -0
- /package/{models → esm/models}/IRobotConfig.js +0 -0
- /package/{models → esm/models}/IRobotPlugin.js +0 -0
- /package/{models → esm/models}/IRobotSettings.js +0 -0
- /package/{models → esm/models}/IRobotTemplate.js +0 -0
- /package/{models → esm/models}/IRocosSDKConfig.js +0 -0
- /package/{models → esm/models}/ISource.js +0 -0
- /package/{models → esm/models}/IStream.js +0 -0
- /package/{models → esm/models}/IStreamConfig.js +0 -0
- /package/{models → esm/models}/IStreamOptions.js +0 -0
- /package/{models → esm/models}/IStreamSource.js +0 -0
- /package/{models → esm/models}/ISubscriberStatus.js +0 -0
- /package/{models → esm/models}/ITelemetryStreamConfig.js +0 -0
- /package/{models → esm/models}/IToken.js +0 -0
- /package/{models → esm/models}/IWidget.js +0 -0
- /package/{models → 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 → esm/models}/Widget.js +0 -0
- /package/{models → esm/models}/WidgetLineGroup.js +0 -0
- /package/{helpers/flattenOneOf.spec.d.ts → esm/models/asset-storage/AssetItem.js} +0 -0
- /package/{helpers/formatServiceUrl.spec.d.ts → esm/models/asset-storage/SyncIntegrations.js} +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageChunk.js +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageChunks.js +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageHeartbeat.js +0 -0
- /package/{models → 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 → esm/models}/caller/IRocosCallerMessageResponseReturn.js +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
- /package/{models → 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 → 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 → esm/models}/integrations/Overlay.js +0 -0
- /package/{models → esm/models}/integrations/Plan.js +0 -0
- /package/{models → esm/models}/maps/Map.js +0 -0
- /package/{helpers/getURLSearchParams.spec.d.ts → esm/models/maps/Panorama.js} +0 -0
- /package/{models → esm/models}/message/IRocosCallerMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosChangeMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosCommandMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosControlMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosOpResultMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosSearchMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosSearchRowMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosSearchStatusMessage.js +0 -0
- /package/{models → esm/models}/message/IRocosTelemetryMessage.js +0 -0
- /package/{models → 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 → esm/models}/params/ICallerParams.js +0 -0
- /package/{models → esm/models}/params/ICommandParams.js +0 -0
- /package/{models → esm/models}/params/IControlParams.js +0 -0
- /package/{models → esm/models}/params/IFileAccessorParams.js +0 -0
- /package/{models → esm/models}/params/ISearchParams.js +0 -0
- /package/{models → esm/models}/params/ITelemetryParams.js +0 -0
- /package/{models → esm/models}/params/IWebRTCSignallingParams.js +0 -0
- /package/{models → esm/models}/projects/ProjectUser.js +0 -0
- /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
- /package/{models → esm/models}/schedule/IScheduleInfo.js +0 -0
- /package/{models → esm/models}/schedule/IScheduleJob.js +0 -0
- /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
- /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
- /package/{models → esm/models}/stream/IBaseStream.js +0 -0
- /package/{models → esm/models}/stream/ICallerStream.js +0 -0
- /package/{models → esm/models}/stream/ICommandStream.js +0 -0
- /package/{models → esm/models}/stream/IControlStream.js +0 -0
- /package/{models → esm/models}/stream/IFileAccessorStream.js +0 -0
- /package/{models → esm/models}/stream/ISearchStream.js +0 -0
- /package/{models → esm/models}/stream/ITelemetryStream.js +0 -0
- /package/{models → esm/models}/stream/IWebRTCSignallingStream.js +0 -0
- /package/{models → esm/models}/types.js +0 -0
- /package/{helpers/nanosecondToMillisecond.spec.d.ts → esm/models/workflow/Workflow.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}/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}/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}/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/{store → esm/store}/RocosStore.js +0 -0
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,53 +0,0 @@
|
|
1
|
-
import { cleanObject } from "./cleanObject";
|
2
|
-
describe('cleanObject', () => {
|
3
|
-
const testObject = {
|
4
|
-
test1: 'test1',
|
5
|
-
test2: 'test2',
|
6
|
-
test3: () => 'test3',
|
7
|
-
test4: {
|
8
|
-
test1: 'test1.1',
|
9
|
-
test5: 'test5',
|
10
|
-
test6: {
|
11
|
-
test7: 'test7',
|
12
|
-
test1: 'test1.2',
|
13
|
-
test2: 'test2.1',
|
14
|
-
test8: () => 'test8',
|
15
|
-
},
|
16
|
-
test8: () => 'test8',
|
17
|
-
},
|
18
|
-
test9: ['test9.1', 'test9.2', () => 'test8'],
|
19
|
-
test10: [
|
20
|
-
{
|
21
|
-
test7: 'test7',
|
22
|
-
test1: 'test1.2',
|
23
|
-
test2: 'test2.1',
|
24
|
-
test8: () => 'test8',
|
25
|
-
},
|
26
|
-
{
|
27
|
-
test8: () => 'test8',
|
28
|
-
},
|
29
|
-
],
|
30
|
-
};
|
31
|
-
it('should clean object to values only', () => {
|
32
|
-
const newObject = cleanObject(testObject);
|
33
|
-
expect(newObject?.test3).toBeUndefined();
|
34
|
-
expect(newObject?.test4?.test8).toBeUndefined();
|
35
|
-
expect(newObject?.test4?.test6?.test8).toBeUndefined();
|
36
|
-
expect(newObject?.test4?.test5).toEqual('test5');
|
37
|
-
expect(newObject?.test5).toBeUndefined();
|
38
|
-
expect(newObject?.test4?.test6?.test1).toEqual('test1.2');
|
39
|
-
expect(newObject?.test4?.test6?.test2).toEqual('test2.1');
|
40
|
-
expect(newObject?.test1).toEqual('test1');
|
41
|
-
expect(newObject?.test2).toEqual('test2');
|
42
|
-
expect(newObject?.test9).toEqual(expect.arrayContaining(['test9.1', 'test9.2']));
|
43
|
-
expect(newObject?.test9).toEqual(expect.not.arrayContaining([() => 'test8']));
|
44
|
-
expect(newObject?.test10).toEqual(expect.arrayContaining([
|
45
|
-
{
|
46
|
-
test7: 'test7',
|
47
|
-
test1: 'test1.2',
|
48
|
-
test2: 'test2.1',
|
49
|
-
},
|
50
|
-
{},
|
51
|
-
]));
|
52
|
-
});
|
53
|
-
});
|
@@ -1,29 +0,0 @@
|
|
1
|
-
import { flattenObject } from './flattenObject';
|
2
|
-
describe('flattenObject', () => {
|
3
|
-
const testObject = {
|
4
|
-
test1: 'test1',
|
5
|
-
test2: 'test2',
|
6
|
-
test3: () => 'test3',
|
7
|
-
test4: {
|
8
|
-
test1: 'test1.1',
|
9
|
-
test5: 'test5',
|
10
|
-
test6: {
|
11
|
-
test7: 'test7',
|
12
|
-
test1: 'test1.2',
|
13
|
-
test2: 'test2.1',
|
14
|
-
test8: () => 'test8',
|
15
|
-
},
|
16
|
-
test8: () => 'test8',
|
17
|
-
},
|
18
|
-
};
|
19
|
-
it('should flatten object to a single level', () => {
|
20
|
-
const newObject = flattenObject(testObject);
|
21
|
-
expect(newObject?.test3).toBeUndefined();
|
22
|
-
expect(newObject?.test4?.test8).toBeUndefined();
|
23
|
-
expect(newObject?.test4?.test6?.test8).toBeUndefined();
|
24
|
-
expect(newObject?.test4?.test5).toBeUndefined();
|
25
|
-
expect(newObject?.test5).toEqual('test5');
|
26
|
-
expect(newObject?.test1).toEqual('test1.2');
|
27
|
-
expect(newObject?.test2).toEqual('test2.1');
|
28
|
-
});
|
29
|
-
});
|
@@ -1,157 +0,0 @@
|
|
1
|
-
import { flattenOneOf, hasOneOfField } from './flattenOneOf';
|
2
|
-
describe('flattenOneOf', () => {
|
3
|
-
describe('hasOneOfField', () => {
|
4
|
-
it('should return false for non-object', () => {
|
5
|
-
expect(hasOneOfField(null)).toBe(false);
|
6
|
-
expect(hasOneOfField(undefined)).toBe(false);
|
7
|
-
expect(hasOneOfField(1)).toBe(false);
|
8
|
-
expect(hasOneOfField('')).toBe(false);
|
9
|
-
expect(hasOneOfField(true)).toBe(false);
|
10
|
-
});
|
11
|
-
it('should return false for null content', () => {
|
12
|
-
expect(hasOneOfField({ content: null })).toBe(false);
|
13
|
-
});
|
14
|
-
it('should return false for non-object content', () => {
|
15
|
-
expect(hasOneOfField({ content: 1 })).toBe(false);
|
16
|
-
expect(hasOneOfField({ content: '' })).toBe(false);
|
17
|
-
expect(hasOneOfField({ content: true })).toBe(false);
|
18
|
-
});
|
19
|
-
it('should return false for non-string oneofKind', () => {
|
20
|
-
expect(hasOneOfField({ content: { oneofKind: 1 } })).toBe(false);
|
21
|
-
expect(hasOneOfField({ content: { oneofKind: null } })).toBe(false);
|
22
|
-
expect(hasOneOfField({ content: { oneofKind: true } })).toBe(false);
|
23
|
-
expect(hasOneOfField({ content: { oneofKind: {} } })).toBe(false);
|
24
|
-
});
|
25
|
-
it('should return true for valid oneOfField', () => {
|
26
|
-
expect(hasOneOfField({ content: { oneofKind: 'test' } })).toBe(true);
|
27
|
-
});
|
28
|
-
});
|
29
|
-
describe('flattenOneOf', () => {
|
30
|
-
it('should flatten a simple oneof type', () => {
|
31
|
-
const a = {
|
32
|
-
a: 'a',
|
33
|
-
content: {
|
34
|
-
oneofKind: 'b',
|
35
|
-
b: true,
|
36
|
-
},
|
37
|
-
};
|
38
|
-
expect(flattenOneOf(a)).toEqual({
|
39
|
-
a: 'a',
|
40
|
-
b: true,
|
41
|
-
});
|
42
|
-
});
|
43
|
-
it('should flatten a nested oneof type, one level only', () => {
|
44
|
-
const a = {
|
45
|
-
b: {
|
46
|
-
content: {
|
47
|
-
oneofKind: 'c',
|
48
|
-
c: true,
|
49
|
-
},
|
50
|
-
},
|
51
|
-
content: {
|
52
|
-
oneofKind: 'd',
|
53
|
-
d: {
|
54
|
-
content: {
|
55
|
-
oneofKind: 'e',
|
56
|
-
e: 5,
|
57
|
-
},
|
58
|
-
},
|
59
|
-
},
|
60
|
-
};
|
61
|
-
expect(flattenOneOf(a)).toEqual({
|
62
|
-
b: {
|
63
|
-
content: {
|
64
|
-
oneofKind: 'c',
|
65
|
-
c: true,
|
66
|
-
},
|
67
|
-
},
|
68
|
-
d: {
|
69
|
-
content: {
|
70
|
-
oneofKind: 'e',
|
71
|
-
e: 5,
|
72
|
-
},
|
73
|
-
},
|
74
|
-
});
|
75
|
-
});
|
76
|
-
it('should flatten to undefined if the referenced property does not exist', () => {
|
77
|
-
const a = {
|
78
|
-
content: {
|
79
|
-
oneofKind: 'b',
|
80
|
-
c: true,
|
81
|
-
},
|
82
|
-
};
|
83
|
-
expect(flattenOneOf(a)).toEqual({
|
84
|
-
b: undefined,
|
85
|
-
});
|
86
|
-
});
|
87
|
-
it('should return the original object if it does not have a oneof field', () => {
|
88
|
-
const a = {
|
89
|
-
a: 'a',
|
90
|
-
b: 'b',
|
91
|
-
};
|
92
|
-
expect(flattenOneOf(a)).toEqual(a);
|
93
|
-
});
|
94
|
-
});
|
95
|
-
describe('flattenOneOf - deep', () => {
|
96
|
-
it('should flatten a simple oneof type', () => {
|
97
|
-
const a = {
|
98
|
-
a: 'a',
|
99
|
-
content: {
|
100
|
-
oneofKind: 'b',
|
101
|
-
b: {
|
102
|
-
d: 4,
|
103
|
-
},
|
104
|
-
},
|
105
|
-
};
|
106
|
-
expect(flattenOneOf(a, true)).toEqual({
|
107
|
-
a: 'a',
|
108
|
-
b: { d: 4 },
|
109
|
-
});
|
110
|
-
});
|
111
|
-
it('should flatten a nested oneof type, all levels', () => {
|
112
|
-
const a = {
|
113
|
-
b: {
|
114
|
-
content: {
|
115
|
-
oneofKind: 'c',
|
116
|
-
c: true,
|
117
|
-
},
|
118
|
-
},
|
119
|
-
content: {
|
120
|
-
oneofKind: 'd',
|
121
|
-
d: {
|
122
|
-
content: {
|
123
|
-
oneofKind: 'e',
|
124
|
-
e: 5,
|
125
|
-
},
|
126
|
-
},
|
127
|
-
},
|
128
|
-
};
|
129
|
-
expect(flattenOneOf(a, true)).toEqual({
|
130
|
-
b: {
|
131
|
-
c: true,
|
132
|
-
},
|
133
|
-
d: {
|
134
|
-
e: 5,
|
135
|
-
},
|
136
|
-
});
|
137
|
-
});
|
138
|
-
it('should flatten to undefined if the referenced property does not exist', () => {
|
139
|
-
const a = {
|
140
|
-
content: {
|
141
|
-
oneofKind: 'b',
|
142
|
-
c: true,
|
143
|
-
},
|
144
|
-
};
|
145
|
-
expect(flattenOneOf(a, true)).toEqual({
|
146
|
-
b: undefined,
|
147
|
-
});
|
148
|
-
});
|
149
|
-
it('should return the original object if it does not have a oneof field', () => {
|
150
|
-
const a = {
|
151
|
-
a: 'a',
|
152
|
-
b: 'b',
|
153
|
-
};
|
154
|
-
expect(flattenOneOf(a, true)).toEqual(a);
|
155
|
-
});
|
156
|
-
});
|
157
|
-
});
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { formatServiceUrl } from './formatServiceUrl';
|
2
|
-
describe('formatServiceUrl', () => {
|
3
|
-
const url = 'https://{url}/admin/users/{test}/invitations';
|
4
|
-
it('should format url', () => {
|
5
|
-
let newUrl = formatServiceUrl(url, { url: 'test.com', test: 'me' });
|
6
|
-
expect(newUrl).toEqual('https://test.com/admin/users/me/invitations');
|
7
|
-
newUrl = formatServiceUrl(url, { url: 'test2.com', test: 'me2' });
|
8
|
-
expect(newUrl).toEqual('https://test2.com/admin/users/me2/invitations');
|
9
|
-
});
|
10
|
-
it('should format insecure url', () => {
|
11
|
-
let newUrl = formatServiceUrl(url, { url: 'test.com', test: 'me' }, true);
|
12
|
-
expect(newUrl).toEqual('http://test.com/admin/users/me/invitations');
|
13
|
-
newUrl = formatServiceUrl(url, { url: 'test2.com', test: 'me2' }, true);
|
14
|
-
expect(newUrl).toEqual('http://test2.com/admin/users/me2/invitations');
|
15
|
-
});
|
16
|
-
});
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { getURLSearchParams } from './getURLSearchParams';
|
2
|
-
describe('getURLSearchParams', () => {
|
3
|
-
it('Should return the original param if URLSearchParams', () => {
|
4
|
-
const param = new URLSearchParams();
|
5
|
-
const searchParam = getURLSearchParams(param);
|
6
|
-
expect(searchParam).toBe(param);
|
7
|
-
});
|
8
|
-
it('Should a new URLSearchParams ', () => {
|
9
|
-
const param = {
|
10
|
-
foo: 'bar',
|
11
|
-
bar: true,
|
12
|
-
foobar: 123,
|
13
|
-
};
|
14
|
-
const searchParam = getURLSearchParams(param);
|
15
|
-
expect(searchParam.get('foo')).toBe('bar');
|
16
|
-
expect(searchParam.get('bar')).toBe('true');
|
17
|
-
expect(searchParam.get('foobar')).toBe('123');
|
18
|
-
});
|
19
|
-
});
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import { IRocosSDKConfig } from '../models/IRocosSDKConfig';
|
2
|
-
/**
|
3
|
-
* Flattens and orders the sdk config props to make a unique key
|
4
|
-
*
|
5
|
-
* @param config - SDK config {@link IRocosSDKConfig}
|
6
|
-
*/
|
7
|
-
export declare const getUniqueConfigKey: (config: IRocosSDKConfig) => string;
|
@@ -1,14 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Flattens and orders the sdk config props to make a unique key
|
3
|
-
*
|
4
|
-
* @param config - SDK config {@link IRocosSDKConfig}
|
5
|
-
*/
|
6
|
-
export const getUniqueConfigKey = (config) => {
|
7
|
-
return Object.keys(config)
|
8
|
-
.sort()
|
9
|
-
.map((item) => {
|
10
|
-
return item !== 'token' ? `${item}:${config[item]}` : false;
|
11
|
-
})
|
12
|
-
.filter(Boolean)
|
13
|
-
.join();
|
14
|
-
};
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { nanosecondToMillisecond } from './nanosecondToMillisecond';
|
2
|
-
describe('nanosecondToMillisecond', () => {
|
3
|
-
it.each `
|
4
|
-
input | expected
|
5
|
-
${'0.0001'} | ${0.0000000001}
|
6
|
-
${'1'} | ${0.000001}
|
7
|
-
${'1000000'} | ${1}
|
8
|
-
${'10000000'} | ${10}
|
9
|
-
${'-100000006'} | ${-100.000006}
|
10
|
-
${'1000000000000000000'} | ${1000000000000}
|
11
|
-
${'1234567891011100001'} | ${1234567891011.100001}
|
12
|
-
${'1234567891011100000'} | ${1234567891011.1}
|
13
|
-
${0.0001} | ${0.0000000001}
|
14
|
-
${1} | ${0.000001}
|
15
|
-
${1000000} | ${1}
|
16
|
-
${1000000000000001} | ${1000000000.000001}
|
17
|
-
`('should convert $input to $expected', ({ input, expected }) => {
|
18
|
-
expect(nanosecondToMillisecond(input)).toBe(expected);
|
19
|
-
});
|
20
|
-
});
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { standardDeviation } from './standardDeviation';
|
2
|
-
describe('standardDeviation', () => {
|
3
|
-
it('should calculate standard deviation correctly', () => {
|
4
|
-
let numbers = [10, 12, 23, 23, 16, 23, 21, 16];
|
5
|
-
let stdDev = standardDeviation(numbers);
|
6
|
-
expect(Math.abs(stdDev - 4.8989794855664)).toBeLessThan(0.000001);
|
7
|
-
numbers = [100, 12, 23, 23, 116, 23, 21, 162];
|
8
|
-
stdDev = standardDeviation(numbers);
|
9
|
-
expect(Math.abs(stdDev - 53.702886328394)).toBeLessThan(0.000001);
|
10
|
-
});
|
11
|
-
});
|
@@ -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.worker=this.createWorker()}async execute(e){const t={...e,contextVariable:e.contextVariable??"ctx"},s=this.runTask(t),r=this.timeout(e.timeout??1e3);return Promise.race([s,r]).finally((()=>{this.removeMessageListener()}))}terminate(){this.removeMessageListener(),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&&(this.stopTimer(),i.success?t(i.result):s(i.result))};this.worker.addEventListener("message",r),this.removeMessageListener=()=>this.worker.removeEventListener("message",r),this.worker.postMessage(e)}))}timeout(e){return new Promise(((t,s)=>{this.timerId=window.setTimeout((()=>{this.terminate(),s(new Error("maximum execution time exceeded"))}),e)}))}stopTimer(){clearTimeout(this.timerId)}createWorker(){const e=URL.createObjectURL(new Blob(["${__WORKER_SOURCE__.replace(/(['`"$])/g, '\\$1')}"],{type:"application/javascript"}));return new Worker(e)}removeMessageListener(){}}}},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;
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { Task } from '../../types';
|
2
|
-
export default class Manager {
|
3
|
-
private worker;
|
4
|
-
private timerId?;
|
5
|
-
constructor();
|
6
|
-
execute(task: Task): Promise<unknown>;
|
7
|
-
terminate(): void;
|
8
|
-
private runTask;
|
9
|
-
private timeout;
|
10
|
-
private stopTimer;
|
11
|
-
private createWorker;
|
12
|
-
private removeMessageListener;
|
13
|
-
}
|
@@ -1,60 +0,0 @@
|
|
1
|
-
// this token (__WORKER_SOURCE__) is replaced by webpack with the source of the worker
|
2
|
-
const WORKER_SOURCE = '__WORKER_SOURCE__';
|
3
|
-
export default class Manager {
|
4
|
-
constructor() {
|
5
|
-
this.worker = this.createWorker();
|
6
|
-
}
|
7
|
-
async execute(task) {
|
8
|
-
const workerTask = {
|
9
|
-
...task,
|
10
|
-
contextVariable: task.contextVariable ?? 'ctx',
|
11
|
-
};
|
12
|
-
const result = this.runTask(workerTask);
|
13
|
-
const timeout = this.timeout(task.timeout ?? 1000);
|
14
|
-
return Promise.race([result, timeout]).finally(() => {
|
15
|
-
this.removeMessageListener();
|
16
|
-
});
|
17
|
-
}
|
18
|
-
terminate() {
|
19
|
-
this.removeMessageListener();
|
20
|
-
this.worker.terminate();
|
21
|
-
this.worker = this.createWorker();
|
22
|
-
}
|
23
|
-
runTask(task) {
|
24
|
-
return new Promise((resolve, reject) => {
|
25
|
-
const listener = (event) => {
|
26
|
-
const { data } = event;
|
27
|
-
if (data.id === task.id) {
|
28
|
-
this.stopTimer();
|
29
|
-
if (data.success) {
|
30
|
-
resolve(data.result);
|
31
|
-
}
|
32
|
-
else {
|
33
|
-
reject(data.result);
|
34
|
-
}
|
35
|
-
}
|
36
|
-
};
|
37
|
-
this.worker.addEventListener('message', listener);
|
38
|
-
this.removeMessageListener = () => this.worker.removeEventListener('message', listener);
|
39
|
-
this.worker.postMessage(task);
|
40
|
-
});
|
41
|
-
}
|
42
|
-
timeout(timeoutMs) {
|
43
|
-
return new Promise((_, reject) => {
|
44
|
-
this.timerId = window.setTimeout(() => {
|
45
|
-
this.terminate();
|
46
|
-
reject(new Error('maximum execution time exceeded'));
|
47
|
-
}, timeoutMs);
|
48
|
-
});
|
49
|
-
}
|
50
|
-
stopTimer() {
|
51
|
-
clearTimeout(this.timerId);
|
52
|
-
}
|
53
|
-
createWorker() {
|
54
|
-
const blob = URL.createObjectURL(new Blob([WORKER_SOURCE], { type: 'application/javascript' }));
|
55
|
-
return new Worker(blob);
|
56
|
-
}
|
57
|
-
removeMessageListener() {
|
58
|
-
// replaced by constructor
|
59
|
-
}
|
60
|
-
}
|
@@ -1,54 +0,0 @@
|
|
1
|
-
export interface SandboxOptions extends Required<RunCodeOptions> {
|
2
|
-
/** The selector or element to append the iframe to */
|
3
|
-
frameContainer: string | Element;
|
4
|
-
/** Whether to enable verbose logging */
|
5
|
-
debugMode: boolean;
|
6
|
-
}
|
7
|
-
export interface RunCodeOptions {
|
8
|
-
/** The name of the variable to use for the context object */
|
9
|
-
contextVariable?: string;
|
10
|
-
timeout?: {
|
11
|
-
/** The minimum time to wait for a task to complete
|
12
|
-
*
|
13
|
-
* The worker will attempt to kill the task after this time.
|
14
|
-
*/
|
15
|
-
minimumMs: number;
|
16
|
-
/** The maximum time to wait for a task to complete
|
17
|
-
*
|
18
|
-
* The sandbox will be destroyed and rebuilt after this time.
|
19
|
-
*/
|
20
|
-
maximumMs: number;
|
21
|
-
};
|
22
|
-
}
|
23
|
-
export declare const BaseOptions: SandboxOptions;
|
24
|
-
export interface SandboxMethods {
|
25
|
-
iframeInitialised: () => void;
|
26
|
-
}
|
27
|
-
/** A sandbox for running untrusted code in an iframe & embedded web worker.
|
28
|
-
*
|
29
|
-
* This is a wrapper around the iframe and web worker that provides a simple API for running code in the sandbox.
|
30
|
-
* It also provides a context object that can be used to pass data into the sandbox.
|
31
|
-
*/
|
32
|
-
export default class WebSandbox {
|
33
|
-
private readonly options;
|
34
|
-
private frame;
|
35
|
-
private connection?;
|
36
|
-
private initialised;
|
37
|
-
static new(options?: Partial<SandboxOptions>): Promise<WebSandbox>;
|
38
|
-
private constructor();
|
39
|
-
/** Runs code in the sandbox. Can be either a string or a function */
|
40
|
-
run<T = unknown>(code: string | (() => T), context?: unknown, options?: RunCodeOptions): Promise<T>;
|
41
|
-
/** Destroys the sandbox.
|
42
|
-
*
|
43
|
-
* This will remove the iframe from the DOM and remove the message listener.
|
44
|
-
*/
|
45
|
-
destroy(): void;
|
46
|
-
private initialise;
|
47
|
-
private validateOptions;
|
48
|
-
private destroyAndRebuild;
|
49
|
-
private removeMessageListener;
|
50
|
-
private runFunction;
|
51
|
-
private runCode;
|
52
|
-
private createFrame;
|
53
|
-
private prepareFrameContent;
|
54
|
-
}
|