@dronedeploy/rocos-js-sdk 0.0.1 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IRocosSDK.d.ts +55 -0
- package/IRocosSDK.js +6 -0
- package/README.md +90 -0
- package/RocosSDK.d.ts +138 -0
- package/RocosSDK.js +294 -0
- package/api/StreamRegister.d.ts +13 -0
- package/api/StreamRegister.js +58 -0
- package/api/atoms/StreamHeartbeat.d.ts +27 -0
- package/api/atoms/StreamHeartbeat.js +115 -0
- package/api/streams/caller/CallerStream.d.ts +13 -0
- package/api/streams/caller/CallerStream.js +85 -0
- package/api/streams/caller/CallerStreamAbstract.d.ts +28 -0
- package/api/streams/caller/CallerStreamAbstract.js +99 -0
- package/api/streams/caller/CallerStreamNode.d.ts +13 -0
- package/api/streams/caller/CallerStreamNode.js +128 -0
- package/api/streams/command/CommandStream.d.ts +12 -0
- package/api/streams/command/CommandStream.js +68 -0
- package/api/streams/command/CommandStreamAbstract.d.ts +24 -0
- package/api/streams/command/CommandStreamAbstract.js +72 -0
- package/api/streams/command/CommandStreamNode.d.ts +12 -0
- package/api/streams/command/CommandStreamNode.js +93 -0
- package/api/streams/control/ControlStream.d.ts +14 -0
- package/api/streams/control/ControlStream.js +81 -0
- package/api/streams/control/ControlStreamAbstract.d.ts +28 -0
- package/api/streams/control/ControlStreamAbstract.js +108 -0
- package/api/streams/control/ControlStreamNode.d.ts +14 -0
- package/api/streams/control/ControlStreamNode.js +98 -0
- package/api/streams/fileAccessor/FileAccessorStream.d.ts +10 -0
- package/api/streams/fileAccessor/FileAccessorStream.js +74 -0
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +26 -0
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.js +82 -0
- package/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +10 -0
- package/api/streams/fileAccessor/FileAccessorStreamNode.js +96 -0
- package/api/streams/search/SearchStream.d.ts +16 -0
- package/api/streams/search/SearchStream.js +120 -0
- package/api/streams/search/SearchStreamAbstract.d.ts +30 -0
- package/api/streams/search/SearchStreamAbstract.js +74 -0
- package/api/streams/search/SearchStreamNode.d.ts +16 -0
- package/api/streams/search/SearchStreamNode.js +143 -0
- package/api/streams/telemetry/TelemetryStream.d.ts +17 -0
- package/api/streams/telemetry/TelemetryStream.js +126 -0
- package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +62 -0
- package/api/streams/telemetry/TelemetryStreamAbstract.js +421 -0
- package/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
- package/api/streams/telemetry/TelemetryStreamNode.js +195 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +44 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +67 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +32 -0
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +65 -0
- package/constants/api.d.ts +121 -0
- package/constants/api.js +126 -0
- package/constants/grpc.d.ts +5 -0
- package/constants/grpc.js +8 -0
- package/constants/identifier.d.ts +6 -0
- package/constants/identifier.js +9 -0
- package/constants/timezones.d.ts +2 -0
- package/constants/timezones.js +430 -0
- package/demo/angular/.editorconfig +16 -0
- package/demo/angular/.eslintignore +4 -0
- package/demo/angular/.eslintrc.json +50 -0
- package/demo/angular/README.md +36 -0
- package/demo/angular/angular.json +132 -0
- package/demo/angular/karma.conf.js +44 -0
- package/demo/angular/package.json +41 -0
- package/demo/angular/src/app/app.component.css +0 -0
- package/demo/angular/src/app/app.component.html +9 -0
- package/demo/angular/src/app/app.component.ts +10 -0
- package/demo/angular/src/app/app.module.ts +38 -0
- package/demo/angular/src/app/components/assets/assets.component.css +0 -0
- package/demo/angular/src/app/components/assets/assets.component.html +29 -0
- package/demo/angular/src/app/components/assets/assets.component.ts +107 -0
- package/demo/angular/src/app/components/auth/auth.component.css +0 -0
- package/demo/angular/src/app/components/auth/auth.component.html +27 -0
- package/demo/angular/src/app/components/auth/auth.component.ts +33 -0
- package/demo/angular/src/app/components/caller/caller.component.css +0 -0
- package/demo/angular/src/app/components/caller/caller.component.html +22 -0
- package/demo/angular/src/app/components/caller/caller.component.ts +61 -0
- package/demo/angular/src/app/components/command/command.component.css +0 -0
- package/demo/angular/src/app/components/command/command.component.html +22 -0
- package/demo/angular/src/app/components/command/command.component.ts +60 -0
- package/demo/angular/src/app/components/integrations/integrations.component.ts +43 -0
- package/demo/angular/src/app/components/robots/robots.component.css +0 -0
- package/demo/angular/src/app/components/robots/robots.component.html +13 -0
- package/demo/angular/src/app/components/robots/robots.component.ts +26 -0
- package/demo/angular/src/app/components/sdk/sdk.component.css +0 -0
- package/demo/angular/src/app/components/sdk/sdk.component.html +43 -0
- package/demo/angular/src/app/components/sdk/sdk.component.ts +50 -0
- package/demo/angular/src/app/components/subscription/subscription.component.css +0 -0
- package/demo/angular/src/app/components/subscription/subscription.component.html +6 -0
- package/demo/angular/src/app/components/subscription/subscription.component.ts +40 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.css +0 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.html +19 -0
- package/demo/angular/src/app/components/telemetry/telemetry.component.ts +61 -0
- package/demo/angular/src/app/components/token/token.component.css +0 -0
- package/demo/angular/src/app/components/token/token.component.html +10 -0
- package/demo/angular/src/app/components/token/token.component.ts +18 -0
- package/demo/angular/src/app/components/video/p2pvideo/index.ts +646 -0
- package/demo/angular/src/app/components/video/video-source.ts +315 -0
- package/demo/angular/src/app/components/video/video.component.css +6 -0
- package/demo/angular/src/app/components/video/video.component.html +54 -0
- package/demo/angular/src/app/components/video/video.component.ts +151 -0
- package/demo/angular/src/app/services/sdk.service.ts +193 -0
- package/demo/angular/src/assets/.gitkeep +0 -0
- package/demo/angular/src/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/angular/src/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/angular/src/assets/logo.svg +16 -0
- package/demo/angular/src/environments/environment.prod.ts +3 -0
- package/demo/angular/src/environments/environment.ts +16 -0
- package/demo/angular/src/favicon.ico +0 -0
- package/demo/angular/src/index.html +15 -0
- package/demo/angular/src/main.ts +7 -0
- package/demo/angular/src/polyfills.ts +53 -0
- package/demo/angular/src/styles.css +198 -0
- package/demo/angular/tsconfig.app.json +15 -0
- package/demo/angular/tsconfig.json +39 -0
- package/demo/html/README.md +8 -0
- package/demo/html/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/html/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/html/assets/logo.svg +16 -0
- package/demo/html/favicon.ico +0 -0
- package/demo/html/index.html +416 -0
- package/demo/html/rocos-js-sdk.js +3 -0
- package/demo/html/rocos-js-sdk.js.LICENSE.txt +8 -0
- package/demo/html/rocos-js-sdk.js.map +1 -0
- package/demo/html/styles.css +190 -0
- package/demo/node/README.md +17 -0
- package/demo/node/index.js +134 -0
- package/demo/node/package.json +8 -0
- package/demo/react/.env +1 -0
- package/demo/react/.env.dist +1 -0
- package/demo/react/.eslintrc.json +46 -0
- package/demo/react/README.md +65 -0
- package/demo/react/package.json +60 -0
- package/demo/react/public/favicon.ico +0 -0
- package/demo/react/public/index.html +43 -0
- package/demo/react/public/logo192.png +0 -0
- package/demo/react/public/logo512.png +0 -0
- package/demo/react/public/manifest.json +25 -0
- package/demo/react/public/robots.txt +3 -0
- package/demo/react/src/App.css +190 -0
- package/demo/react/src/App.tsx +31 -0
- package/demo/react/src/actions/index.ts +8 -0
- package/demo/react/src/actions/sdkActions.ts +62 -0
- package/demo/react/src/assets/HKGrotesk-Bold.otf +0 -0
- package/demo/react/src/assets/HKGrotesk-Regular.otf +0 -0
- package/demo/react/src/assets/logo.svg +16 -0
- package/demo/react/src/components/AuthForm.tsx +76 -0
- package/demo/react/src/components/CallerBox.tsx +53 -0
- package/demo/react/src/components/CallerForm.tsx +98 -0
- package/demo/react/src/components/CommandBox.tsx +47 -0
- package/demo/react/src/components/CommandForm.tsx +98 -0
- package/demo/react/src/components/RobotsForm.tsx +51 -0
- package/demo/react/src/components/SubscriptionBox.tsx +55 -0
- package/demo/react/src/components/TelemetryForm.tsx +98 -0
- package/demo/react/src/components/TokenForm.tsx +39 -0
- package/demo/react/src/config.json +14 -0
- package/demo/react/src/controllers/RocosSDKController.ts +48 -0
- package/demo/react/src/helpers/deepEqual.ts +27 -0
- package/demo/react/src/hooks/useInput.ts +29 -0
- package/demo/react/src/index.css +11 -0
- package/demo/react/src/index.tsx +26 -0
- package/demo/react/src/react-app-env.d.ts +1 -0
- package/demo/react/src/reducers/sdkReducer.ts +133 -0
- package/demo/react/src/reportWebVitals.ts +15 -0
- package/demo/react/src/selectors/sdkSelector.ts +11 -0
- package/demo/react/src/setupTests.ts +5 -0
- package/demo/react/src/store.ts +14 -0
- package/demo/react/tsconfig.json +26 -0
- package/demo/sdk-sizer/dist/sdk-sizer/3rdpartylicenses.txt +975 -0
- package/demo/sdk-sizer/dist/sdk-sizer/favicon.ico +0 -0
- package/demo/sdk-sizer/dist/sdk-sizer/index.html +12 -0
- package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/main.c9183649ce1856ef.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/polyfills.701c8e5d007909aa.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/runtime.00e20e689f5284a8.js.map +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/stats.json +1 -0
- package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css +2 -0
- package/demo/sdk-sizer/dist/sdk-sizer/styles.b45f7e627ac8cbce.css.map +1 -0
- package/grpc/file-accessor/filagree_grpc_pb.d.ts +41 -0
- package/grpc/file-accessor/filagree_grpc_pb.js +121 -0
- package/grpc/file-accessor/filagree_pb.d.ts +339 -0
- package/grpc/file-accessor/filagree_pb.js +2261 -0
- package/grpc/file-accessor/filagree_pb_service.d.ts +115 -0
- package/grpc/file-accessor/filagree_pb_service.js +257 -0
- package/grpc/rambo/rambo.v1_grpc_pb.d.ts +39 -0
- package/grpc/rambo/rambo.v1_grpc_pb.js +73 -0
- package/grpc/rambo/rambo.v1_pb.d.ts +365 -0
- package/grpc/rambo/rambo.v1_pb.js +2469 -0
- package/grpc/rambo/rambo.v1_pb_service.d.ts +76 -0
- package/grpc/rambo/rambo.v1_pb_service.js +138 -0
- package/grpc/rambo/uri.v1_grpc_pb.d.ts +1 -0
- package/grpc/rambo/uri.v1_grpc_pb.js +1 -0
- package/grpc/rambo/uri.v1_pb.d.ts +80 -0
- package/grpc/rambo/uri.v1_pb.js +563 -0
- package/grpc/rambo/uri.v1_pb_service.d.ts +3 -0
- package/grpc/rambo/uri.v1_pb_service.js +3 -0
- package/grpc/robot-control/conker_grpc_pb.d.ts +46 -0
- package/grpc/robot-control/conker_grpc_pb.js +143 -0
- package/grpc/robot-control/conker_pb.d.ts +168 -0
- package/grpc/robot-control/conker_pb.js +1287 -0
- package/grpc/robot-control/conker_pb_service.d.ts +126 -0
- package/grpc/robot-control/conker_pb_service.js +301 -0
- package/grpc/serviette/common.v1_grpc_pb.d.ts +1 -0
- package/grpc/serviette/common.v1_grpc_pb.js +1 -0
- package/grpc/serviette/common.v1_pb.d.ts +8 -0
- package/grpc/serviette/common.v1_pb.js +45 -0
- package/grpc/serviette/common.v1_pb_service.d.ts +3 -0
- package/grpc/serviette/common.v1_pb_service.js +3 -0
- package/grpc/serviette/serviette.v1_grpc_pb.d.ts +137 -0
- package/grpc/serviette/serviette.v1_grpc_pb.js +331 -0
- package/grpc/serviette/serviette.v1_pb.d.ts +884 -0
- package/grpc/serviette/serviette.v1_pb.js +6363 -0
- package/grpc/serviette/serviette.v1_pb_service.d.ts +278 -0
- package/grpc/serviette/serviette.v1_pb_service.js +699 -0
- package/grpc/serviette/uri.v1_grpc_pb.d.ts +1 -0
- package/grpc/serviette/uri.v1_grpc_pb.js +1 -0
- package/grpc/serviette/uri.v1_pb.d.ts +102 -0
- package/grpc/serviette/uri.v1_pb.js +741 -0
- package/grpc/serviette/uri.v1_pb_service.d.ts +3 -0
- package/grpc/serviette/uri.v1_pb_service.js +3 -0
- package/grpc/slowlane/slowlane_grpc_pb.d.ts +38 -0
- package/grpc/slowlane/slowlane_grpc_pb.js +132 -0
- package/grpc/slowlane/slowlane_pb.d.ts +373 -0
- package/grpc/slowlane/slowlane_pb.js +2908 -0
- package/grpc/slowlane/slowlane_pb_service.d.ts +112 -0
- package/grpc/slowlane/slowlane_pb_service.js +189 -0
- package/grpc/teletubby/teletubby_grpc_pb.d.ts +73 -0
- package/grpc/teletubby/teletubby_grpc_pb.js +231 -0
- package/grpc/teletubby/teletubby_pb.d.ts +647 -0
- package/grpc/teletubby/teletubby_pb.js +4786 -0
- package/grpc/teletubby/teletubby_pb_service.d.ts +193 -0
- package/grpc/teletubby/teletubby_pb_service.js +436 -0
- package/grpc/video/pigeon_grpc_pb.d.ts +59 -0
- package/grpc/video/pigeon_grpc_pb.js +180 -0
- package/grpc/video/pigeon_pb.d.ts +237 -0
- package/grpc/video/pigeon_pb.js +1775 -0
- package/grpc/video/pigeon_pb_service.d.ts +152 -0
- package/grpc/video/pigeon_pb_service.js +292 -0
- package/helpers/arrayRemove.d.ts +1 -0
- package/helpers/arrayRemove.js +7 -0
- package/helpers/arrayUnique.d.ts +1 -0
- package/helpers/arrayUnique.js +7 -0
- package/helpers/average.d.ts +1 -0
- package/helpers/average.js +11 -0
- package/helpers/cleanObject.d.ts +1 -0
- package/helpers/cleanObject.js +20 -0
- package/helpers/enviroment.d.ts +8 -0
- package/helpers/enviroment.js +20 -0
- package/helpers/flattenCallsignsLookup.d.ts +2 -0
- package/helpers/flattenCallsignsLookup.js +10 -0
- package/helpers/flattenObject.d.ts +1 -0
- package/helpers/flattenObject.js +17 -0
- package/helpers/formatServiceUrl.d.ts +1 -0
- package/helpers/formatServiceUrl.js +11 -0
- package/helpers/generateUUID.d.ts +1 -0
- package/helpers/generateUUID.js +8 -0
- package/helpers/getSubscriptionsDifference.d.ts +10 -0
- package/helpers/getSubscriptionsDifference.js +39 -0
- package/helpers/getUniqueConfigKey.d.ts +7 -0
- package/helpers/getUniqueConfigKey.js +19 -0
- package/helpers/getUniqueId.d.ts +9 -0
- package/helpers/getUniqueId.js +15 -0
- package/helpers/getUnixTimeMs.d.ts +1 -0
- package/helpers/getUnixTimeMs.js +8 -0
- package/helpers/index.d.ts +3 -0
- package/helpers/index.js +15 -0
- package/helpers/nanosecondToMillisecond.d.ts +1 -0
- package/helpers/nanosecondToMillisecond.js +7 -0
- package/helpers/randomString.d.ts +1 -0
- package/helpers/randomString.js +7 -0
- package/helpers/standardDeviation.d.ts +1 -0
- package/helpers/standardDeviation.js +16 -0
- package/helpers/stringToUint8Array.d.ts +1 -0
- package/helpers/stringToUint8Array.js +14 -0
- package/helpers/uint8ArrayToString.d.ts +1 -0
- package/helpers/uint8ArrayToString.js +15 -0
- package/index.d.ts +7 -0
- package/index.js +19 -0
- package/logger/RocosLogger.d.ts +7 -0
- package/logger/RocosLogger.js +63 -0
- package/models/ExportDataQuery.d.ts +8 -0
- package/models/ExportDataQuery.js +17 -0
- package/models/ExternalProject.d.ts +6 -0
- package/models/ExternalProject.js +6 -0
- package/models/IBaseService.d.ts +3 -0
- package/models/IBaseService.js +2 -0
- package/models/IConfigGroup.d.ts +5 -0
- package/models/IConfigGroup.js +2 -0
- package/models/IDebugLevel.d.ts +2 -0
- package/models/IDebugLevel.js +2 -0
- package/models/IExportDataQuery.d.ts +9 -0
- package/models/IExportDataQuery.js +2 -0
- package/models/IFunctionConfig.d.ts +8 -0
- package/models/IFunctionConfig.js +2 -0
- package/models/IInvitation.d.ts +6 -0
- package/models/IInvitation.js +2 -0
- package/models/IInvitationExists.d.ts +4 -0
- package/models/IInvitationExists.js +2 -0
- package/models/IOperation.d.ts +6 -0
- package/models/IOperation.js +2 -0
- package/models/IPersonalAccessToken.d.ts +16 -0
- package/models/IPersonalAccessToken.js +2 -0
- package/models/IProject.d.ts +4 -0
- package/models/IProject.js +2 -0
- package/models/IProjectApplication.d.ts +6 -0
- package/models/IProjectApplication.js +2 -0
- package/models/IRobot.d.ts +17 -0
- package/models/IRobot.js +2 -0
- package/models/IRobotConfig.d.ts +8 -0
- package/models/IRobotConfig.js +2 -0
- package/models/IRobotPlugin.d.ts +3 -0
- package/models/IRobotPlugin.js +2 -0
- package/models/IRobotTemplate.d.ts +10 -0
- package/models/IRobotTemplate.js +2 -0
- package/models/IRocosSDKConfig.d.ts +25 -0
- package/models/IRocosSDKConfig.js +2 -0
- package/models/ISignupParams.d.ts +8 -0
- package/models/ISignupParams.js +2 -0
- package/models/ISource.d.ts +8 -0
- package/models/ISource.js +2 -0
- package/models/IStream.d.ts +9 -0
- package/models/IStream.js +2 -0
- package/models/IStreamConfig.d.ts +9 -0
- package/models/IStreamConfig.js +2 -0
- package/models/IStreamOptions.d.ts +7 -0
- package/models/IStreamOptions.js +2 -0
- package/models/IStreamSource.d.ts +8 -0
- package/models/IStreamSource.js +2 -0
- package/models/ISubscriberStatus.d.ts +5 -0
- package/models/ISubscriberStatus.js +2 -0
- package/models/ITelemetryStreamConfig.d.ts +7 -0
- package/models/ITelemetryStreamConfig.js +2 -0
- package/models/IToken.d.ts +5 -0
- package/models/IToken.js +2 -0
- package/models/IWidget.d.ts +25 -0
- package/models/IWidget.js +2 -0
- package/models/IWidgetLineGroup.d.ts +8 -0
- package/models/IWidgetLineGroup.js +2 -0
- package/models/ResponseLevelEnum.d.ts +6 -0
- package/models/ResponseLevelEnum.js +10 -0
- package/models/Robot.d.ts +19 -0
- package/models/Robot.js +12 -0
- package/models/RobotConfig.d.ts +10 -0
- package/models/RobotConfig.js +9 -0
- package/models/RobotPlugin.d.ts +5 -0
- package/models/RobotPlugin.js +9 -0
- package/models/RobotTemplate.d.ts +12 -0
- package/models/RobotTemplate.js +30 -0
- package/models/RocosError.d.ts +30 -0
- package/models/RocosError.js +43 -0
- package/models/ServiceEnum.d.ts +26 -0
- package/models/ServiceEnum.js +30 -0
- package/models/Stream.d.ts +10 -0
- package/models/Stream.js +15 -0
- package/models/StreamOptions.d.ts +9 -0
- package/models/StreamOptions.js +37 -0
- package/models/StreamSource.d.ts +10 -0
- package/models/StreamSource.js +15 -0
- package/models/SubscriberStatusEnum.d.ts +6 -0
- package/models/SubscriberStatusEnum.js +10 -0
- package/models/Token.d.ts +8 -0
- package/models/Token.js +15 -0
- package/models/Widget.d.ts +27 -0
- package/models/Widget.js +16 -0
- package/models/WidgetLineGroup.d.ts +10 -0
- package/models/WidgetLineGroup.js +9 -0
- package/models/asset-storage/AssetModelItem.d.ts +29 -0
- package/models/asset-storage/AssetModelItem.js +2 -0
- package/models/caller/IRocosCallerMessageChunk.d.ts +9 -0
- package/models/caller/IRocosCallerMessageChunk.js +2 -0
- package/models/caller/IRocosCallerMessageChunks.d.ts +5 -0
- package/models/caller/IRocosCallerMessageChunks.js +2 -0
- package/models/caller/IRocosCallerMessageHeartbeat.d.ts +2 -0
- package/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
- package/models/caller/IRocosCallerMessageResponse.d.ts +9 -0
- package/models/caller/IRocosCallerMessageResponse.js +2 -0
- package/models/caller/IRocosCallerMessageResponseAck.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseAck.js +2 -0
- package/models/caller/IRocosCallerMessageResponseResult.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseResult.js +2 -0
- package/models/caller/IRocosCallerMessageResponseUid.d.ts +2 -0
- package/models/caller/IRocosCallerMessageResponseUid.js +2 -0
- package/models/caller/IRocosCallerMessageResponses.d.ts +5 -0
- package/models/caller/IRocosCallerMessageResponses.js +2 -0
- package/models/caller/RocosCallerResultStatus.d.ts +1 -0
- package/models/caller/RocosCallerResultStatus.js +5 -0
- package/models/callsigns/CallsignsEnums.d.ts +13 -0
- package/models/callsigns/CallsignsEnums.js +20 -0
- package/models/callsigns/CallsignsLookup.d.ts +8 -0
- package/models/callsigns/CallsignsLookup.js +33 -0
- package/models/callsigns/CallsignsQuery.d.ts +9 -0
- package/models/callsigns/CallsignsQuery.js +18 -0
- package/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
- package/models/callsigns/CallsignsQueryPredicate.js +19 -0
- package/models/command/IRocosCommandMessageHeartbeat.d.ts +2 -0
- package/models/command/IRocosCommandMessageHeartbeat.js +2 -0
- package/models/command/IRocosCommandMessageResponse.d.ts +2 -0
- package/models/command/IRocosCommandMessageResponse.js +2 -0
- package/models/command/RocosCommandResultStatus.d.ts +1 -0
- package/models/command/RocosCommandResultStatus.js +5 -0
- package/models/file/FileEnums.d.ts +30 -0
- package/models/file/FileEnums.js +36 -0
- package/models/index.d.ts +101 -0
- package/models/index.js +113 -0
- package/models/integrations/Overlay.d.ts +49 -0
- package/models/integrations/Overlay.js +2 -0
- package/models/integrations/Plan.d.ts +324 -0
- package/models/integrations/Plan.js +2 -0
- package/models/maps/Map.d.ts +12 -0
- package/models/maps/Map.js +2 -0
- package/models/message/IRocosCallerMessage.d.ts +8 -0
- package/models/message/IRocosCallerMessage.js +2 -0
- package/models/message/IRocosChangeMessage.d.ts +6 -0
- package/models/message/IRocosChangeMessage.js +2 -0
- package/models/message/IRocosCommandMessage.d.ts +6 -0
- package/models/message/IRocosCommandMessage.js +2 -0
- package/models/message/IRocosControlMessage.d.ts +7 -0
- package/models/message/IRocosControlMessage.js +2 -0
- package/models/message/IRocosOpResultMessage.d.ts +6 -0
- package/models/message/IRocosOpResultMessage.js +2 -0
- package/models/message/IRocosSearchMessage.d.ts +5 -0
- package/models/message/IRocosSearchMessage.js +2 -0
- package/models/message/IRocosSearchRowMessage.d.ts +9 -0
- package/models/message/IRocosSearchRowMessage.js +2 -0
- package/models/message/IRocosSearchStatusMessage.d.ts +4 -0
- package/models/message/IRocosSearchStatusMessage.js +2 -0
- package/models/message/IRocosTelemetryMessage.d.ts +18 -0
- package/models/message/IRocosTelemetryMessage.js +2 -0
- package/models/message/IStreamStatusMessage.d.ts +5 -0
- package/models/message/IStreamStatusMessage.js +2 -0
- package/models/message/RocosCallerMessage.d.ts +12 -0
- package/models/message/RocosCallerMessage.js +23 -0
- package/models/message/RocosCommandMessage.d.ts +10 -0
- package/models/message/RocosCommandMessage.js +16 -0
- package/models/message/RocosControlMessage.d.ts +11 -0
- package/models/message/RocosControlMessage.js +18 -0
- package/models/message/RocosOpResultMessage.d.ts +9 -0
- package/models/message/RocosOpResultMessage.js +22 -0
- package/models/message/RocosSearchMessage.d.ts +9 -0
- package/models/message/RocosSearchMessage.js +28 -0
- package/models/message/RocosSearchRowMessage.d.ts +13 -0
- package/models/message/RocosSearchRowMessage.js +20 -0
- package/models/message/RocosTelemetryMessage.d.ts +24 -0
- package/models/message/RocosTelemetryMessage.js +105 -0
- package/models/params/ICallerParams.d.ts +15 -0
- package/models/params/ICallerParams.js +2 -0
- package/models/params/ICommandParams.d.ts +9 -0
- package/models/params/ICommandParams.js +2 -0
- package/models/params/IControlParams.d.ts +8 -0
- package/models/params/IControlParams.js +2 -0
- package/models/params/IFileAccessorParams.d.ts +11 -0
- package/models/params/IFileAccessorParams.js +2 -0
- package/models/params/ISearchParams.d.ts +10 -0
- package/models/params/ISearchParams.js +2 -0
- package/models/params/ITelemetryParams.d.ts +18 -0
- package/models/params/ITelemetryParams.js +2 -0
- package/models/params/IWebRTCSignallingParams.d.ts +21 -0
- package/models/params/IWebRTCSignallingParams.js +2 -0
- package/models/projects/ProjectUser.d.ts +6 -0
- package/models/projects/ProjectUser.js +2 -0
- package/models/schedule/IScheduleAction.d.ts +13 -0
- package/models/schedule/IScheduleAction.js +9 -0
- package/models/schedule/IScheduleInfo.d.ts +11 -0
- package/models/schedule/IScheduleInfo.js +2 -0
- package/models/schedule/IScheduleJob.d.ts +12 -0
- package/models/schedule/IScheduleJob.js +2 -0
- package/models/search/SearchQueryFilter.d.ts +5 -0
- package/models/search/SearchQueryFilter.js +9 -0
- package/models/search/SearchStreamQuery.d.ts +15 -0
- package/models/search/SearchStreamQuery.js +10 -0
- package/models/stream/IBaseStream.d.ts +8 -0
- package/models/stream/IBaseStream.js +2 -0
- package/models/stream/ICallerStream.d.ts +8 -0
- package/models/stream/ICallerStream.js +2 -0
- package/models/stream/ICommandStream.d.ts +7 -0
- package/models/stream/ICommandStream.js +2 -0
- package/models/stream/IControlStream.d.ts +9 -0
- package/models/stream/IControlStream.js +2 -0
- package/models/stream/IFileAccessorStream.d.ts +10 -0
- package/models/stream/IFileAccessorStream.js +2 -0
- package/models/stream/ISearchStream.d.ts +11 -0
- package/models/stream/ISearchStream.js +2 -0
- package/models/stream/ITelemetryStream.d.ts +10 -0
- package/models/stream/ITelemetryStream.js +2 -0
- package/models/stream/IWebRTCSignallingStream.d.ts +41 -0
- package/models/stream/IWebRTCSignallingStream.js +7 -0
- package/models/types.d.ts +5 -0
- package/models/types.js +2 -0
- package/node/RocosSDKNode.d.ts +42 -0
- package/node/RocosSDKNode.js +148 -0
- package/node/index.d.ts +7 -0
- package/node/index.js +19 -0
- package/package.json +25 -6
- package/services/AssetStorageService.d.ts +92 -0
- package/services/AssetStorageService.js +153 -0
- package/services/AuthService.d.ts +61 -0
- package/services/AuthService.js +154 -0
- package/services/BaseServiceAbstract.d.ts +38 -0
- package/services/BaseServiceAbstract.js +103 -0
- package/services/CallerService.d.ts +22 -0
- package/services/CallerService.js +96 -0
- package/services/CallerServiceNode.d.ts +6 -0
- package/services/CallerServiceNode.js +11 -0
- package/services/CommandService.d.ts +21 -0
- package/services/CommandService.js +81 -0
- package/services/CommandServiceNode.d.ts +6 -0
- package/services/CommandServiceNode.js +11 -0
- package/services/ConfigGroupService.d.ts +89 -0
- package/services/ConfigGroupService.js +157 -0
- package/services/ControlService.d.ts +23 -0
- package/services/ControlService.js +100 -0
- package/services/ControlServiceNode.d.ts +6 -0
- package/services/ControlServiceNode.js +11 -0
- package/services/DashboardService.d.ts +97 -0
- package/services/DashboardService.js +146 -0
- package/services/EventService.d.ts +53 -0
- package/services/EventService.js +89 -0
- package/services/FileAccessorService.d.ts +25 -0
- package/services/FileAccessorService.js +85 -0
- package/services/FileAccessorServiceNode.d.ts +6 -0
- package/services/FileAccessorServiceNode.js +11 -0
- package/services/FunctionService.d.ts +68 -0
- package/services/FunctionService.js +103 -0
- package/services/IntegrationService.d.ts +48 -0
- package/services/IntegrationService.js +77 -0
- package/services/MapService.d.ts +96 -0
- package/services/MapService.js +119 -0
- package/services/PlatformTimeService.d.ts +35 -0
- package/services/PlatformTimeService.js +160 -0
- package/services/ProfileService.d.ts +244 -0
- package/services/ProfileService.js +366 -0
- package/services/ProjectService.d.ts +110 -0
- package/services/ProjectService.js +164 -0
- package/services/RobotService.d.ts +282 -0
- package/services/RobotService.js +467 -0
- package/services/ScheduleService.d.ts +22 -0
- package/services/ScheduleService.js +40 -0
- package/services/SearchService.d.ts +25 -0
- package/services/SearchService.js +93 -0
- package/services/SearchServiceNode.d.ts +6 -0
- package/services/SearchServiceNode.js +11 -0
- package/services/SpotProvisioningService.d.ts +14 -0
- package/services/SpotProvisioningService.js +43 -0
- package/services/SpotProvisioningServiceNode.d.ts +15 -0
- package/services/SpotProvisioningServiceNode.js +43 -0
- package/services/StreamService.d.ts +98 -0
- package/services/StreamService.js +146 -0
- package/services/TelemetryService.d.ts +43 -0
- package/services/TelemetryService.js +144 -0
- package/services/TelemetryServiceNode.d.ts +6 -0
- package/services/TelemetryServiceNode.js +11 -0
- package/services/TimeSyncerService.d.ts +13 -0
- package/services/TimeSyncerService.js +27 -0
- package/services/UserService.d.ts +200 -0
- package/services/UserService.js +319 -0
- package/services/WebRTCSignallingService.d.ts +22 -0
- package/services/WebRTCSignallingService.js +81 -0
- package/services/WorkflowService.d.ts +71 -0
- package/services/WorkflowService.js +122 -0
- package/services/index.d.ts +26 -0
- package/services/index.js +38 -0
- package/store/RocosStore.d.ts +31 -0
- package/store/RocosStore.js +53 -0
- package/utils/axisangle.d.ts +18 -0
- package/utils/axisangle.js +48 -0
- package/utils/eulerangles.d.ts +22 -0
- package/utils/eulerangles.js +133 -0
- package/utils/helperfunctions.d.ts +5 -0
- package/utils/helperfunctions.js +50 -0
- package/utils/localtransform.d.ts +17 -0
- package/utils/localtransform.js +50 -0
- package/utils/localtransformtree.d.ts +17 -0
- package/utils/localtransformtree.js +88 -0
- package/utils/misc.d.ts +17 -0
- package/utils/misc.js +23 -0
- package/utils/positionvector.d.ts +13 -0
- package/utils/positionvector.js +79 -0
- package/utils/quaternion.d.ts +20 -0
- package/utils/quaternion.js +62 -0
- package/utils/rotationmatrix.d.ts +23 -0
- package/utils/rotationmatrix.js +262 -0
- package/utils/transformationmatrix.d.ts +12 -0
- package/utils/transformationmatrix.js +123 -0
- package/utils/vector3.d.ts +11 -0
- package/utils/vector3.js +61 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { RocosError } from '../models/RocosError';
|
|
2
|
+
import { BaseServiceAbstract } from './BaseServiceAbstract';
|
|
3
|
+
import { IBaseService } from '../models/IBaseService';
|
|
4
|
+
import { IExportDataQuery } from '../models/IExportDataQuery';
|
|
5
|
+
import { IFunctionConfig } from '../models/IFunctionConfig';
|
|
6
|
+
import { IRocosSDKConfig } from '../models/IRocosSDKConfig';
|
|
7
|
+
export declare class FunctionService extends BaseServiceAbstract implements IBaseService {
|
|
8
|
+
constructor(config: IRocosSDKConfig);
|
|
9
|
+
protected getError(e: Error): RocosError;
|
|
10
|
+
getStatus(): boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Export data
|
|
13
|
+
*
|
|
14
|
+
* @param projectId - Project Id
|
|
15
|
+
* @param query - Payload {@link IExportDataQuery}
|
|
16
|
+
*/
|
|
17
|
+
exportJobs(projectId: string, query: IExportDataQuery): Promise<any>;
|
|
18
|
+
/**
|
|
19
|
+
* Create a function
|
|
20
|
+
*
|
|
21
|
+
* @param projectId - Project Id
|
|
22
|
+
* @param model - Payload {@link IFunctionConfig}
|
|
23
|
+
*/
|
|
24
|
+
create(projectId: string, model: IFunctionConfig): Promise<any>;
|
|
25
|
+
/**
|
|
26
|
+
* Get a functions
|
|
27
|
+
*
|
|
28
|
+
* @param projectId - Project Id
|
|
29
|
+
*/
|
|
30
|
+
list(projectId: string): Promise<any>;
|
|
31
|
+
/**
|
|
32
|
+
* Update a function
|
|
33
|
+
*
|
|
34
|
+
* @param projectId - Project Id
|
|
35
|
+
* @param functionId - Function Id
|
|
36
|
+
* @param model - Payload {@link IFunctionConfig}
|
|
37
|
+
*/
|
|
38
|
+
update(projectId: string, functionId: string, model: IFunctionConfig): Promise<any>;
|
|
39
|
+
/**
|
|
40
|
+
* Get function
|
|
41
|
+
*
|
|
42
|
+
* @param projectId - Project Id
|
|
43
|
+
* @param functionId - Function Id
|
|
44
|
+
*/
|
|
45
|
+
info(projectId: string, functionId: string): Promise<any>;
|
|
46
|
+
/**
|
|
47
|
+
* Delete function
|
|
48
|
+
*
|
|
49
|
+
* @param projectId - Project Id
|
|
50
|
+
* @param functionId - Function Id
|
|
51
|
+
*/
|
|
52
|
+
delete(projectId: string, functionId: string): Promise<any>;
|
|
53
|
+
/**
|
|
54
|
+
* Run a function
|
|
55
|
+
*
|
|
56
|
+
* @param projectId - Project Id
|
|
57
|
+
* @param functionId - Function Id
|
|
58
|
+
* @param body - Payload
|
|
59
|
+
*/
|
|
60
|
+
run(projectId: string, functionId: string, body?: any): Promise<any>;
|
|
61
|
+
/**
|
|
62
|
+
* Get function pods
|
|
63
|
+
*
|
|
64
|
+
* @param projectId - Project Id
|
|
65
|
+
* @param functionId - Function Id
|
|
66
|
+
*/
|
|
67
|
+
pods(projectId: string, functionId: string): Promise<any>;
|
|
68
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FunctionService = void 0;
|
|
4
|
+
const api_1 = require("../constants/api");
|
|
5
|
+
const RocosError_1 = require("../models/RocosError");
|
|
6
|
+
const BaseServiceAbstract_1 = require("./BaseServiceAbstract");
|
|
7
|
+
const ExportDataQuery_1 = require("../models/ExportDataQuery");
|
|
8
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
9
|
+
const formatServiceUrl_1 = require("../helpers/formatServiceUrl");
|
|
10
|
+
class FunctionService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
11
|
+
constructor(config) {
|
|
12
|
+
super(config);
|
|
13
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`FunctionService(${this.config.url})`);
|
|
14
|
+
}
|
|
15
|
+
getError(e) {
|
|
16
|
+
return new RocosError_1.RocosError(e, RocosError_1.errorCodes.FUNCTION_SERVICE_ERROR);
|
|
17
|
+
}
|
|
18
|
+
getStatus() {
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Export data
|
|
23
|
+
*
|
|
24
|
+
* @param projectId - Project Id
|
|
25
|
+
* @param query - Payload {@link IExportDataQuery}
|
|
26
|
+
*/
|
|
27
|
+
// TODO: map the response object
|
|
28
|
+
async exportJobs(projectId, query) {
|
|
29
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_EXPORT_URL, { url: this.config.url, projectId }, this.config.insecure), new ExportDataQuery_1.ExportDataQuery(query).toJSON(), `Failed to export data for ${projectId}.`);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Create a function
|
|
33
|
+
*
|
|
34
|
+
* @param projectId - Project Id
|
|
35
|
+
* @param model - Payload {@link IFunctionConfig}
|
|
36
|
+
*/
|
|
37
|
+
// TODO: map the response object
|
|
38
|
+
async create(projectId, model) {
|
|
39
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_URL, { url: this.config.url, projectId }, this.config.insecure), model, `Failed to create function for ${projectId}.`);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Get a functions
|
|
43
|
+
*
|
|
44
|
+
* @param projectId - Project Id
|
|
45
|
+
*/
|
|
46
|
+
// TODO: map the response object
|
|
47
|
+
async list(projectId) {
|
|
48
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_URL, { url: this.config.url, projectId }, this.config.insecure), `Failed to get functions for ${projectId}.`);
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Update a function
|
|
52
|
+
*
|
|
53
|
+
* @param projectId - Project Id
|
|
54
|
+
* @param functionId - Function Id
|
|
55
|
+
* @param model - Payload {@link IFunctionConfig}
|
|
56
|
+
*/
|
|
57
|
+
// TODO: map the response object
|
|
58
|
+
async update(projectId, functionId, model) {
|
|
59
|
+
return this.callPut(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), model, `Failed to update function for ${projectId}, functionId ${functionId}.`);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Get function
|
|
63
|
+
*
|
|
64
|
+
* @param projectId - Project Id
|
|
65
|
+
* @param functionId - Function Id
|
|
66
|
+
*/
|
|
67
|
+
// TODO: map the response object
|
|
68
|
+
async info(projectId, functionId) {
|
|
69
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to get function for ${projectId}, functionId ${functionId}.`);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Delete function
|
|
73
|
+
*
|
|
74
|
+
* @param projectId - Project Id
|
|
75
|
+
* @param functionId - Function Id
|
|
76
|
+
*/
|
|
77
|
+
// TODO: map the response object
|
|
78
|
+
async delete(projectId, functionId) {
|
|
79
|
+
return this.callDelete(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to delete function for ${projectId}, functionId ${functionId}.`);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Run a function
|
|
83
|
+
*
|
|
84
|
+
* @param projectId - Project Id
|
|
85
|
+
* @param functionId - Function Id
|
|
86
|
+
* @param body - Payload
|
|
87
|
+
*/
|
|
88
|
+
// TODO: map the response object
|
|
89
|
+
async run(projectId, functionId, body = null) {
|
|
90
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_RUN_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), body, `Failed to run function for ${projectId}, functionId ${functionId}.`);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Get function pods
|
|
94
|
+
*
|
|
95
|
+
* @param projectId - Project Id
|
|
96
|
+
* @param functionId - Function Id
|
|
97
|
+
*/
|
|
98
|
+
// TODO: map the response object
|
|
99
|
+
async pods(projectId, functionId) {
|
|
100
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_FUNCTION_POD_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to ged function pods for ${projectId}, functionId ${functionId}.`);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.FunctionService = FunctionService;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { IBaseService, IRocosSDKConfig, Overlay, Plan, RocosError } from '../models';
|
|
2
|
+
import { BaseServiceAbstract } from './BaseServiceAbstract';
|
|
3
|
+
/**
|
|
4
|
+
* Integrations to retrieve data from the linked project in DroneDeploy
|
|
5
|
+
*/
|
|
6
|
+
export declare class IntegrationService extends BaseServiceAbstract implements IBaseService {
|
|
7
|
+
constructor(config: IRocosSDKConfig);
|
|
8
|
+
getStatus(): boolean;
|
|
9
|
+
protected getError(e: Error): RocosError;
|
|
10
|
+
/**
|
|
11
|
+
* Gets latest plans from the project linked to the provided project ID
|
|
12
|
+
* @param projectId Project ID
|
|
13
|
+
* @returns Plans list (limited to 50)
|
|
14
|
+
*/
|
|
15
|
+
getPlans(projectId: string): Promise<Plan[]>;
|
|
16
|
+
/**
|
|
17
|
+
* Gets the plans from the project linked to the provided project ID
|
|
18
|
+
* @param projectId Project ID
|
|
19
|
+
* @param pageStart Page start
|
|
20
|
+
* @returns Plans list (limited to 50) with cursor to next page when available
|
|
21
|
+
*/
|
|
22
|
+
getPlansPaged(projectId: string, pageStart?: string): Promise<{
|
|
23
|
+
plans: Plan[];
|
|
24
|
+
pageNext?: string;
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Gets a plan for a given project (using its linked project)
|
|
28
|
+
* @param projectId Project ID
|
|
29
|
+
* @param planId Requested plan
|
|
30
|
+
* @returns A single plan
|
|
31
|
+
*/
|
|
32
|
+
getPlanById(projectId: string, planId: string): Promise<Plan>;
|
|
33
|
+
/**
|
|
34
|
+
* Returns raster overlays such as drawings to be used for mission planning
|
|
35
|
+
* @param projectId Project ID
|
|
36
|
+
* @returns A list of overlays in the project
|
|
37
|
+
*/
|
|
38
|
+
getOverlays(projectId: string): Promise<Overlay[]>;
|
|
39
|
+
/**
|
|
40
|
+
* Creates a blank issue in the latest ortho plan available
|
|
41
|
+
* @param projectId Project ID
|
|
42
|
+
* @param location Location of the issue
|
|
43
|
+
*/
|
|
44
|
+
createIssue(projectId: string, location: {
|
|
45
|
+
lat: number;
|
|
46
|
+
lng: number;
|
|
47
|
+
}): Promise<void>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IntegrationService = void 0;
|
|
4
|
+
const api_1 = require("../constants/api");
|
|
5
|
+
const models_1 = require("../models");
|
|
6
|
+
const BaseServiceAbstract_1 = require("./BaseServiceAbstract");
|
|
7
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
8
|
+
const formatServiceUrl_1 = require("../helpers/formatServiceUrl");
|
|
9
|
+
/**
|
|
10
|
+
* Integrations to retrieve data from the linked project in DroneDeploy
|
|
11
|
+
*/
|
|
12
|
+
class IntegrationService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
13
|
+
constructor(config) {
|
|
14
|
+
super(config);
|
|
15
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`IntegrationService(${this.config.url})`);
|
|
16
|
+
}
|
|
17
|
+
getStatus() {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
getError(e) {
|
|
21
|
+
return new models_1.RocosError(e, models_1.errorCodes.INTEGRATIONS_SERVICE_ERROR);
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Gets latest plans from the project linked to the provided project ID
|
|
25
|
+
* @param projectId Project ID
|
|
26
|
+
* @returns Plans list (limited to 50)
|
|
27
|
+
*/
|
|
28
|
+
async getPlans(projectId) {
|
|
29
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_DD_INTEGRATION_PLANS_URL, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get plans.');
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Gets the plans from the project linked to the provided project ID
|
|
33
|
+
* @param projectId Project ID
|
|
34
|
+
* @param pageStart Page start
|
|
35
|
+
* @returns Plans list (limited to 50) with cursor to next page when available
|
|
36
|
+
*/
|
|
37
|
+
async getPlansPaged(projectId, pageStart) {
|
|
38
|
+
var _a;
|
|
39
|
+
const params = pageStart ? { page_start: pageStart } : undefined;
|
|
40
|
+
const response = await this.callGet(formatServiceUrl_1.formatServiceUrl(`${api_1.API_DD_INTEGRATION_PLANS_URL}`, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get plans.', params, { responseType: 'raw' });
|
|
41
|
+
const pageNext = (_a = response.headers.get('x-dd-page-next')) !== null && _a !== void 0 ? _a : undefined;
|
|
42
|
+
const plans = await response.json();
|
|
43
|
+
return {
|
|
44
|
+
plans,
|
|
45
|
+
pageNext,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Gets a plan for a given project (using its linked project)
|
|
50
|
+
* @param projectId Project ID
|
|
51
|
+
* @param planId Requested plan
|
|
52
|
+
* @returns A single plan
|
|
53
|
+
*/
|
|
54
|
+
async getPlanById(projectId, planId) {
|
|
55
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_DD_INTEGRATION_PLAN_BY_ID_URL, { url: this.config.url, projectId, planId }, this.config.insecure), 'Failed to get plan.');
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Returns raster overlays such as drawings to be used for mission planning
|
|
59
|
+
* @param projectId Project ID
|
|
60
|
+
* @returns A list of overlays in the project
|
|
61
|
+
*/
|
|
62
|
+
async getOverlays(projectId) {
|
|
63
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_DD_INTEGRATION_OVERLAYS_URL, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get overlays.');
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Creates a blank issue in the latest ortho plan available
|
|
67
|
+
* @param projectId Project ID
|
|
68
|
+
* @param location Location of the issue
|
|
69
|
+
*/
|
|
70
|
+
async createIssue(projectId, location) {
|
|
71
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_DD_INTEGRATION_ISSUES_URL, { url: this.config.url, projectId }, this.config.insecure), {
|
|
72
|
+
lat: location.lat,
|
|
73
|
+
lng: location.lng,
|
|
74
|
+
}, 'Failed to create issue.');
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.IntegrationService = IntegrationService;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { IBaseService, IRocosSDKConfig, Map, RocosError } from '../models';
|
|
2
|
+
import { BaseServiceAbstract } from './BaseServiceAbstract';
|
|
3
|
+
/**
|
|
4
|
+
* Integrations to retrieve data from the linked project in DroneDeploy
|
|
5
|
+
*/
|
|
6
|
+
export declare class MapService extends BaseServiceAbstract implements IBaseService {
|
|
7
|
+
constructor(config: IRocosSDKConfig);
|
|
8
|
+
getStatus(): boolean;
|
|
9
|
+
protected getError(e: Error): RocosError;
|
|
10
|
+
/**
|
|
11
|
+
* List maps from the cloud
|
|
12
|
+
*
|
|
13
|
+
* @param projectId Project ID
|
|
14
|
+
* @returns All maps in the cloud
|
|
15
|
+
*/
|
|
16
|
+
list(projectId: string): Promise<Map[]>;
|
|
17
|
+
/**
|
|
18
|
+
* List maps from the robot and the cloud
|
|
19
|
+
*
|
|
20
|
+
* if onlyRobot is true, only the maps from the robot will be returned
|
|
21
|
+
*
|
|
22
|
+
* @param projectId Project ID
|
|
23
|
+
* @param callsign Robot callsign
|
|
24
|
+
* @param options Options to filter the maps
|
|
25
|
+
* @returns All maps in the cloud
|
|
26
|
+
*/
|
|
27
|
+
list(projectId: string, callsign: string, options?: {
|
|
28
|
+
onlyRobot: boolean;
|
|
29
|
+
}): Promise<Map[]>;
|
|
30
|
+
/**
|
|
31
|
+
* Creates a new DB for the project if it's missing
|
|
32
|
+
*
|
|
33
|
+
* has no effect if the DB already exists
|
|
34
|
+
*
|
|
35
|
+
* @param projectId Project ID
|
|
36
|
+
*/
|
|
37
|
+
initDB(projectId: string): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Creates a new map by merging two existing maps
|
|
40
|
+
* @param projectId Project ID
|
|
41
|
+
* @param maps Array of two map IDs to merge
|
|
42
|
+
* @param options Options to create the new map
|
|
43
|
+
*/
|
|
44
|
+
merge(projectId: string, maps: [string, string], options: {
|
|
45
|
+
name: string;
|
|
46
|
+
description?: string;
|
|
47
|
+
callsign: string;
|
|
48
|
+
}): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* Updates a maps metadata
|
|
51
|
+
* @param projectId Project ID
|
|
52
|
+
* @param mapId Map ID
|
|
53
|
+
* @param options New metadata
|
|
54
|
+
*/
|
|
55
|
+
update(projectId: string, mapId: string, options: {
|
|
56
|
+
name: string;
|
|
57
|
+
description?: string;
|
|
58
|
+
callsign?: string;
|
|
59
|
+
}): Promise<void>;
|
|
60
|
+
/**
|
|
61
|
+
* Copies a map from a robot to the cloud
|
|
62
|
+
*
|
|
63
|
+
* @see copyFromCloud
|
|
64
|
+
*
|
|
65
|
+
* @param projectId Project ID
|
|
66
|
+
* @param mapId Map ID
|
|
67
|
+
* @param callsign Robot callsign
|
|
68
|
+
*/
|
|
69
|
+
copyFromRobot(projectId: string, mapId: string, callsign: string): Promise<void>;
|
|
70
|
+
/**
|
|
71
|
+
* Deletes a map from the cloud
|
|
72
|
+
* @param projectId
|
|
73
|
+
* @param mapId
|
|
74
|
+
*/
|
|
75
|
+
delete(projectId: string, mapId: string): Promise<void>;
|
|
76
|
+
/**
|
|
77
|
+
* Deletes a map from the cloud and attempts to delete it from the robot
|
|
78
|
+
* @param projectId
|
|
79
|
+
* @param mapId
|
|
80
|
+
* @param callsign
|
|
81
|
+
*/
|
|
82
|
+
delete(projectId: string, mapId: string, callsign: string): Promise<void>;
|
|
83
|
+
/**
|
|
84
|
+
* Makes a copy of a map stored in the cloud
|
|
85
|
+
*
|
|
86
|
+
* @see copyFromRobot
|
|
87
|
+
*
|
|
88
|
+
* @param projectId Project ID
|
|
89
|
+
* @param mapId Map ID
|
|
90
|
+
* @param options Options to create the new map
|
|
91
|
+
*/
|
|
92
|
+
copyFromCloud(projectId: string, mapId: string, options: {
|
|
93
|
+
name: string;
|
|
94
|
+
description?: string;
|
|
95
|
+
}): Promise<void>;
|
|
96
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MapService = void 0;
|
|
4
|
+
const api_1 = require("../constants/api");
|
|
5
|
+
const models_1 = require("../models");
|
|
6
|
+
const BaseServiceAbstract_1 = require("./BaseServiceAbstract");
|
|
7
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
8
|
+
const formatServiceUrl_1 = require("../helpers/formatServiceUrl");
|
|
9
|
+
/**
|
|
10
|
+
* Integrations to retrieve data from the linked project in DroneDeploy
|
|
11
|
+
*/
|
|
12
|
+
class MapService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
13
|
+
constructor(config) {
|
|
14
|
+
super(config);
|
|
15
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`MapService(${this.config.url})`);
|
|
16
|
+
}
|
|
17
|
+
getStatus() {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
getError(e) {
|
|
21
|
+
return new models_1.RocosError(e, models_1.errorCodes.MAPS_SERVICE_ERROR);
|
|
22
|
+
}
|
|
23
|
+
async list(projectId, callsign, options) {
|
|
24
|
+
var _a;
|
|
25
|
+
const resp = await this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_MAPS_URL, {
|
|
26
|
+
url: this.config.url,
|
|
27
|
+
projectId,
|
|
28
|
+
}, this.config.insecure), 'Failed to get maps.', callsign ? { callsign, onlyRobot: (_a = options === null || options === void 0 ? void 0 : options.onlyRobot) !== null && _a !== void 0 ? _a : false } : undefined);
|
|
29
|
+
return resp.maps;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Creates a new DB for the project if it's missing
|
|
33
|
+
*
|
|
34
|
+
* has no effect if the DB already exists
|
|
35
|
+
*
|
|
36
|
+
* @param projectId Project ID
|
|
37
|
+
*/
|
|
38
|
+
async initDB(projectId) {
|
|
39
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_MAPS_INIT_DB_URL, {
|
|
40
|
+
url: this.config.url,
|
|
41
|
+
projectId,
|
|
42
|
+
}, this.config.insecure), undefined, 'Failed to init DB.');
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Creates a new map by merging two existing maps
|
|
46
|
+
* @param projectId Project ID
|
|
47
|
+
* @param maps Array of two map IDs to merge
|
|
48
|
+
* @param options Options to create the new map
|
|
49
|
+
*/
|
|
50
|
+
async merge(projectId, maps, options) {
|
|
51
|
+
if (maps.length !== 2)
|
|
52
|
+
throw new Error('You must provide two maps to merge.');
|
|
53
|
+
const payload = {
|
|
54
|
+
projectID: projectId,
|
|
55
|
+
mapIDLeft: maps[0],
|
|
56
|
+
mapIDRight: maps[1],
|
|
57
|
+
name: options.name,
|
|
58
|
+
description: options.description,
|
|
59
|
+
callsign: options.callsign,
|
|
60
|
+
};
|
|
61
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_MAPS_MERGE_URL, {
|
|
62
|
+
url: this.config.url,
|
|
63
|
+
projectId,
|
|
64
|
+
}, this.config.insecure), payload, 'Failed to merge maps.');
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Updates a maps metadata
|
|
68
|
+
* @param projectId Project ID
|
|
69
|
+
* @param mapId Map ID
|
|
70
|
+
* @param options New metadata
|
|
71
|
+
*/
|
|
72
|
+
async update(projectId, mapId, options) {
|
|
73
|
+
return this.callPut(formatServiceUrl_1.formatServiceUrl(api_1.API_MAP_ID_URL, {
|
|
74
|
+
url: this.config.url,
|
|
75
|
+
projectId,
|
|
76
|
+
mapId,
|
|
77
|
+
}, this.config.insecure), options, 'Failed to update map.');
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Copies a map from a robot to the cloud
|
|
81
|
+
*
|
|
82
|
+
* @see copyFromCloud
|
|
83
|
+
*
|
|
84
|
+
* @param projectId Project ID
|
|
85
|
+
* @param mapId Map ID
|
|
86
|
+
* @param callsign Robot callsign
|
|
87
|
+
*/
|
|
88
|
+
async copyFromRobot(projectId, mapId, callsign) {
|
|
89
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_MAP_ID_URL, {
|
|
90
|
+
url: this.config.url,
|
|
91
|
+
projectId,
|
|
92
|
+
mapId,
|
|
93
|
+
}, this.config.insecure), { callsign }, 'Failed to copy map from robot.');
|
|
94
|
+
}
|
|
95
|
+
async delete(projectId, mapId, callsign) {
|
|
96
|
+
return this.callDelete(formatServiceUrl_1.formatServiceUrl(api_1.API_MAP_ID_URL, {
|
|
97
|
+
url: this.config.url,
|
|
98
|
+
projectId,
|
|
99
|
+
mapId,
|
|
100
|
+
}, this.config.insecure), 'Failed to delete map.', callsign ? { callsign } : {});
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Makes a copy of a map stored in the cloud
|
|
104
|
+
*
|
|
105
|
+
* @see copyFromRobot
|
|
106
|
+
*
|
|
107
|
+
* @param projectId Project ID
|
|
108
|
+
* @param mapId Map ID
|
|
109
|
+
* @param options Options to create the new map
|
|
110
|
+
*/
|
|
111
|
+
async copyFromCloud(projectId, mapId, options) {
|
|
112
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_MAPS_COPY_URL, {
|
|
113
|
+
url: this.config.url,
|
|
114
|
+
projectId,
|
|
115
|
+
mapId,
|
|
116
|
+
}, this.config.insecure), options, 'Failed to copy map.');
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
exports.MapService = MapService;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Logger } from 'loglevel';
|
|
2
|
+
import { TimeSyncerService } from './TimeSyncerService';
|
|
3
|
+
export interface IPlatformTime {
|
|
4
|
+
now: number;
|
|
5
|
+
duration: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IPlatformTimeMeasurement {
|
|
8
|
+
clientTimeStampEnd: number;
|
|
9
|
+
clientTimeStampStart: number;
|
|
10
|
+
serverTime: IPlatformTime;
|
|
11
|
+
}
|
|
12
|
+
export declare class PlatFormTimeService {
|
|
13
|
+
protected static instance: PlatFormTimeService;
|
|
14
|
+
protected backoffTimeouts: number[];
|
|
15
|
+
protected isSyncing: boolean;
|
|
16
|
+
protected backoffFailCount: number;
|
|
17
|
+
protected serverTimeOffset: number;
|
|
18
|
+
protected lastPlatformTimeSyncedAt: number;
|
|
19
|
+
protected timeSyncerService: TimeSyncerService;
|
|
20
|
+
protected logger: Logger;
|
|
21
|
+
protected constructor(timeSyncerService: TimeSyncerService);
|
|
22
|
+
static getInstance(timeSyncerService?: TimeSyncerService): PlatFormTimeService;
|
|
23
|
+
get platformTimeOffset(): number;
|
|
24
|
+
get platformTime(): number;
|
|
25
|
+
private getClockOffsetBetweenClientAndServer;
|
|
26
|
+
private getPlatformTime;
|
|
27
|
+
protected handleServerTimeNotReliable(): void;
|
|
28
|
+
private backoff;
|
|
29
|
+
protected isReliableServerTime(platformTimeMeasurements: IPlatformTimeMeasurement[]): boolean;
|
|
30
|
+
private handleGetServerTimeError;
|
|
31
|
+
protected calculateOffset(platformTimeMeasurements: IPlatformTimeMeasurement[]): number;
|
|
32
|
+
private saveOffset;
|
|
33
|
+
protected removeLongestAndShortest(serverTimeMeasurements: IPlatformTimeMeasurement[]): IPlatformTimeMeasurement[];
|
|
34
|
+
private getServerTime;
|
|
35
|
+
}
|