@dronedeploy/rocos-js-sdk 1.0.0-alpha-2 → 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.js +5 -1
- package/README.md +0 -18
- package/RocosSDK.js +95 -93
- package/api/StreamRegister.d.ts +1 -1
- package/api/StreamRegister.js +12 -23
- package/api/atoms/StreamHeartbeat.js +7 -3
- package/api/streams/caller/CallerStream.d.ts +6 -6
- package/api/streams/caller/CallerStream.js +49 -41
- package/api/streams/caller/CallerStreamAbstract.d.ts +11 -6
- package/api/streams/caller/CallerStreamAbstract.js +67 -55
- package/api/streams/caller/CallerStreamNode.d.ts +6 -6
- package/api/streams/caller/CallerStreamNode.js +61 -48
- package/api/streams/command/CommandStream.d.ts +4 -2
- package/api/streams/command/CommandStream.js +30 -28
- package/api/streams/command/CommandStreamAbstract.d.ts +8 -4
- package/api/streams/command/CommandStreamAbstract.js +42 -33
- package/api/streams/command/CommandStreamNode.d.ts +4 -2
- package/api/streams/command/CommandStreamNode.js +40 -16
- package/api/streams/control/ControlStream.d.ts +6 -4
- package/api/streams/control/ControlStream.js +36 -30
- package/api/streams/control/ControlStreamAbstract.d.ts +9 -6
- package/api/streams/control/ControlStreamAbstract.js +54 -57
- package/api/streams/control/ControlStreamNode.d.ts +5 -3
- package/api/streams/control/ControlStreamNode.js +44 -19
- package/api/streams/fileAccessor/FileAccessorStream.d.ts +4 -2
- package/api/streams/fileAccessor/FileAccessorStream.js +57 -42
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +9 -4
- package/api/streams/fileAccessor/FileAccessorStreamAbstract.js +48 -28
- package/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +3 -1
- package/api/streams/fileAccessor/FileAccessorStreamNode.js +53 -23
- package/api/streams/search/SearchStream.d.ts +5 -2
- package/api/streams/search/SearchStream.js +74 -50
- package/api/streams/search/SearchStreamAbstract.d.ts +9 -4
- package/api/streams/search/SearchStreamAbstract.js +35 -33
- package/api/streams/search/SearchStreamNode.d.ts +5 -2
- package/api/streams/search/SearchStreamNode.js +48 -23
- package/api/streams/telemetry/TelemetryStream.d.ts +4 -4
- package/api/streams/telemetry/TelemetryStream.js +78 -49
- package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +11 -8
- package/api/streams/telemetry/TelemetryStreamAbstract.js +145 -126
- package/api/streams/telemetry/TelemetryStreamNode.d.ts +5 -5
- package/api/streams/telemetry/TelemetryStreamNode.js +64 -44
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +10 -5
- package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +20 -37
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +13 -10
- package/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +37 -37
- package/constants/api.d.ts +1 -6
- package/constants/api.js +126 -126
- package/constants/grpc.js +8 -5
- package/constants/identifier.js +9 -6
- package/constants/timezones.d.ts +1 -1
- package/constants/timezones.js +4 -1
- 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.js +6 -2
- package/helpers/arrayUnique.js +6 -2
- package/helpers/average.js +7 -2
- package/helpers/cleanObject.js +19 -17
- package/helpers/enviroment.js +11 -4
- package/helpers/flattenCallsignsLookup.d.ts +1 -1
- package/helpers/flattenCallsignsLookup.js +5 -1
- package/helpers/flattenObject.js +5 -1
- package/helpers/formatServiceUrl.js +5 -1
- package/helpers/generateUUID.js +7 -3
- package/helpers/getSubscriptionsDifference.d.ts +3 -3
- package/helpers/getSubscriptionsDifference.js +10 -6
- package/helpers/getUniqueConfigKey.js +6 -1
- package/helpers/getUniqueId.js +7 -3
- package/helpers/getUnixTimeMs.js +5 -1
- package/helpers/index.d.ts +1 -1
- package/helpers/index.js +15 -3
- package/helpers/nanosecondToMillisecond.d.ts +1 -1
- package/helpers/nanosecondToMillisecond.js +6 -5
- package/helpers/randomString.js +5 -1
- package/helpers/standardDeviation.js +8 -4
- package/helpers/stringToUint8Array.js +7 -3
- package/helpers/uint8ArrayToString.js +8 -3
- package/index.js +19 -7
- package/logger/RocosLogger.js +44 -18
- package/models/ExportDataQuery.js +5 -1
- package/models/ExternalProject.js +5 -1
- package/models/IBaseService.d.ts +0 -1
- package/models/IBaseService.js +2 -1
- package/models/IConfigGroup.js +2 -1
- package/models/IDebugLevel.d.ts +1 -1
- package/models/IDebugLevel.js +2 -1
- package/models/IExportDataQuery.js +2 -1
- package/models/IFunctionConfig.js +2 -1
- package/models/IInvitation.d.ts +1 -1
- package/models/IInvitation.js +2 -1
- package/models/IInvitationExists.js +2 -1
- package/models/IOperation.js +2 -1
- package/models/IPersonalAccessToken.js +2 -1
- package/models/IProject.js +2 -1
- package/models/IProjectApplication.js +2 -1
- package/models/IRobot.d.ts +0 -1
- package/models/IRobot.js +2 -1
- package/models/IRobotConfig.js +2 -1
- package/models/IRobotPlugin.js +2 -1
- package/models/IRobotTemplate.js +2 -1
- package/models/IRocosSDKConfig.d.ts +9 -3
- package/models/IRocosSDKConfig.js +2 -1
- package/models/ISignupParams.d.ts +8 -0
- package/models/ISignupParams.js +2 -0
- package/models/ISource.js +2 -1
- package/models/IStream.js +2 -1
- package/models/IStreamConfig.js +2 -1
- package/models/IStreamOptions.js +2 -1
- package/models/IStreamSource.js +2 -1
- package/models/ISubscriberStatus.js +2 -1
- package/models/ITelemetryStreamConfig.js +2 -1
- package/models/IToken.d.ts +3 -7
- package/models/IToken.js +2 -1
- package/models/IWidget.js +2 -1
- package/models/IWidgetLineGroup.js +2 -1
- package/models/ResponseLevelEnum.d.ts +0 -4
- package/models/ResponseLevelEnum.js +5 -6
- package/models/Robot.d.ts +0 -1
- package/models/Robot.js +5 -1
- package/models/RobotConfig.js +5 -1
- package/models/RobotPlugin.js +5 -1
- package/models/RobotTemplate.js +14 -9
- package/models/RocosError.js +6 -2
- package/models/ServiceEnum.js +5 -2
- package/models/Stream.js +8 -4
- package/models/StreamOptions.js +5 -1
- package/models/StreamSource.js +7 -3
- package/models/SubscriberStatusEnum.js +5 -2
- package/models/Token.d.ts +4 -36
- package/models/Token.js +11 -74
- package/models/Widget.js +8 -4
- package/models/WidgetLineGroup.js +5 -1
- package/models/asset-storage/AssetModelItem.js +2 -1
- package/models/caller/IRocosCallerMessageChunk.d.ts +2 -3
- package/models/caller/IRocosCallerMessageChunk.js +2 -1
- package/models/caller/IRocosCallerMessageChunks.d.ts +3 -2
- package/models/caller/IRocosCallerMessageChunks.js +2 -1
- package/models/caller/IRocosCallerMessageHeartbeat.d.ts +2 -3
- package/models/caller/IRocosCallerMessageHeartbeat.js +2 -1
- package/models/caller/IRocosCallerMessageResponse.d.ts +2 -3
- package/models/caller/IRocosCallerMessageResponse.js +2 -1
- package/models/caller/IRocosCallerMessageResponseAck.d.ts +2 -16
- package/models/caller/IRocosCallerMessageResponseAck.js +2 -13
- package/models/caller/IRocosCallerMessageResponseResult.d.ts +2 -15
- package/models/caller/IRocosCallerMessageResponseResult.js +2 -12
- package/models/caller/IRocosCallerMessageResponseUid.d.ts +2 -10
- package/models/caller/IRocosCallerMessageResponseUid.js +2 -7
- package/models/caller/IRocosCallerMessageResponses.d.ts +3 -2
- package/models/caller/IRocosCallerMessageResponses.js +2 -1
- package/models/caller/RocosCallerResultStatus.d.ts +1 -11
- package/models/caller/RocosCallerResultStatus.js +5 -12
- package/models/callsigns/CallsignsEnums.d.ts +3 -3
- package/models/callsigns/CallsignsEnums.js +14 -11
- package/models/callsigns/CallsignsLookup.js +15 -10
- package/models/callsigns/CallsignsQuery.js +5 -1
- package/models/callsigns/CallsignsQueryPredicate.js +5 -1
- package/models/command/IRocosCommandMessageHeartbeat.d.ts +2 -1
- package/models/command/IRocosCommandMessageHeartbeat.js +2 -1
- package/models/command/IRocosCommandMessageResponse.d.ts +2 -55
- package/models/command/IRocosCommandMessageResponse.js +2 -29
- package/models/command/RocosCommandResultStatus.d.ts +1 -11
- package/models/command/RocosCommandResultStatus.js +5 -12
- package/models/file/FileEnums.d.ts +4 -4
- package/models/file/FileEnums.js +12 -9
- package/models/index.d.ts +31 -5
- package/models/index.js +113 -75
- package/models/integrations/Overlay.js +2 -1
- package/models/integrations/Plan.js +2 -1
- package/models/maps/Map.d.ts +0 -1
- package/models/maps/Map.js +2 -1
- package/models/message/IRocosCallerMessage.js +2 -1
- package/models/message/IRocosChangeMessage.js +2 -1
- package/models/message/IRocosCommandMessage.js +2 -1
- package/models/message/IRocosControlMessage.js +2 -1
- package/models/message/IRocosOpResultMessage.d.ts +2 -2
- package/models/message/IRocosOpResultMessage.js +2 -1
- package/models/message/IRocosSearchMessage.js +2 -1
- package/models/message/IRocosSearchRowMessage.js +2 -1
- package/models/message/IRocosSearchStatusMessage.js +2 -1
- package/models/message/IRocosTelemetryMessage.d.ts +7 -12
- package/models/message/IRocosTelemetryMessage.js +2 -1
- package/models/message/IStreamStatusMessage.js +2 -1
- package/models/message/RocosCallerMessage.d.ts +4 -2
- package/models/message/RocosCallerMessage.js +15 -24
- package/models/message/RocosCommandMessage.d.ts +3 -2
- package/models/message/RocosCommandMessage.js +8 -5
- package/models/message/RocosControlMessage.d.ts +1 -1
- package/models/message/RocosControlMessage.js +10 -6
- package/models/message/RocosOpResultMessage.d.ts +2 -3
- package/models/message/RocosOpResultMessage.js +10 -6
- package/models/message/RocosSearchMessage.d.ts +1 -1
- package/models/message/RocosSearchMessage.js +9 -5
- package/models/message/RocosSearchRowMessage.d.ts +1 -1
- package/models/message/RocosSearchRowMessage.js +12 -8
- package/models/message/RocosTelemetryMessage.d.ts +23 -9
- package/models/message/RocosTelemetryMessage.js +93 -51
- package/models/params/ICallerParams.d.ts +1 -2
- package/models/params/ICallerParams.js +2 -1
- package/models/params/ICommandParams.js +2 -1
- package/models/params/IControlParams.d.ts +1 -1
- package/models/params/IControlParams.js +2 -1
- package/models/params/IFileAccessorParams.js +2 -1
- package/models/params/ISearchParams.js +2 -1
- package/models/params/ITelemetryParams.d.ts +1 -1
- package/models/params/ITelemetryParams.js +2 -1
- package/models/params/IWebRTCSignallingParams.js +2 -1
- package/models/projects/ProjectUser.js +2 -1
- package/models/schedule/IScheduleAction.d.ts +1 -1
- package/models/schedule/IScheduleAction.js +5 -2
- package/models/schedule/IScheduleInfo.js +2 -1
- package/models/schedule/IScheduleJob.js +2 -1
- package/models/search/SearchQueryFilter.js +5 -1
- package/models/search/SearchStreamQuery.js +5 -1
- package/models/stream/IBaseStream.js +2 -1
- package/models/stream/ICallerStream.js +2 -1
- package/models/stream/ICommandStream.js +2 -1
- package/models/stream/IControlStream.js +2 -1
- package/models/stream/IFileAccessorStream.d.ts +2 -1
- package/models/stream/IFileAccessorStream.js +2 -1
- package/models/stream/ISearchStream.js +2 -1
- package/models/stream/ITelemetryStream.js +2 -1
- package/models/stream/IWebRTCSignallingStream.d.ts +16 -51
- package/models/stream/IWebRTCSignallingStream.js +7 -1
- package/models/types.d.ts +5 -5
- package/models/types.js +2 -1
- package/node/RocosSDKNode.js +80 -75
- package/node/index.js +19 -7
- package/package.json +9 -6
- package/services/AssetStorageService.d.ts +0 -7
- package/services/AssetStorageService.js +24 -29
- package/services/AuthService.d.ts +27 -59
- package/services/AuthService.js +86 -167
- package/services/BaseServiceAbstract.d.ts +13 -11
- package/services/BaseServiceAbstract.js +19 -17
- package/services/CallerService.d.ts +17 -5
- package/services/CallerService.js +65 -22
- package/services/CallerServiceNode.js +8 -4
- package/services/CommandService.d.ts +17 -5
- package/services/CommandService.js +62 -19
- package/services/CommandServiceNode.js +8 -4
- package/services/ConfigGroupService.js +21 -17
- package/services/ControlService.d.ts +17 -5
- package/services/ControlService.js +65 -22
- package/services/ControlServiceNode.js +8 -4
- package/services/DashboardService.js +24 -20
- package/services/EventService.js +17 -13
- package/services/FileAccessorService.d.ts +18 -4
- package/services/FileAccessorService.js +62 -14
- package/services/FileAccessorServiceNode.js +8 -4
- package/services/FunctionService.js +21 -17
- package/services/IntegrationService.js +19 -14
- package/services/MapService.d.ts +23 -36
- package/services/MapService.js +40 -70
- package/services/PlatformTimeService.js +12 -8
- package/services/ProfileService.js +40 -36
- package/services/ProjectService.js +27 -23
- package/services/RobotService.d.ts +6 -2
- package/services/RobotService.js +55 -48
- package/services/ScheduleService.js +14 -10
- package/services/SearchService.d.ts +17 -4
- package/services/SearchService.js +59 -24
- package/services/SearchServiceNode.js +8 -4
- package/services/SpotProvisioningService.d.ts +1 -1
- package/services/SpotProvisioningService.js +16 -16
- package/services/SpotProvisioningServiceNode.d.ts +1 -1
- package/services/SpotProvisioningServiceNode.js +16 -16
- package/services/StreamService.js +30 -26
- package/services/TelemetryService.d.ts +17 -14
- package/services/TelemetryService.js +93 -91
- package/services/TelemetryServiceNode.js +8 -4
- package/services/TimeSyncerService.js +13 -9
- package/services/UserService.js +41 -37
- package/services/WebRTCSignallingService.d.ts +4 -4
- package/services/WebRTCSignallingService.js +27 -24
- package/services/WorkflowService.js +20 -16
- package/services/index.js +38 -26
- package/store/RocosStore.js +15 -9
- 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
- package/constants/auth.d.ts +0 -2
- package/constants/auth.js +0 -2
- package/grpc/conker_pb.client.d.ts +0 -78
- package/grpc/conker_pb.client.js +0 -55
- package/grpc/conker_pb.d.ts +0 -141
- package/grpc/conker_pb.grpc-client.d.ts +0 -81
- package/grpc/conker_pb.grpc-client.js +0 -58
- package/grpc/conker_pb.js +0 -104
- package/grpc/filagree_pb.client.d.ts +0 -68
- package/grpc/filagree_pb.client.js +0 -48
- package/grpc/filagree_pb.d.ts +0 -404
- package/grpc/filagree_pb.grpc-client.d.ts +0 -69
- package/grpc/filagree_pb.grpc-client.js +0 -51
- package/grpc/filagree_pb.js +0 -329
- package/grpc/google/protobuf/descriptor_pb.d.ts +0 -1798
- package/grpc/google/protobuf/descriptor_pb.js +0 -2378
- package/grpc/google/protobuf/empty_pb.d.ts +0 -23
- package/grpc/google/protobuf/empty_pb.js +0 -47
- package/grpc/pigeon_pb.client.d.ts +0 -96
- package/grpc/pigeon_pb.client.js +0 -72
- package/grpc/pigeon_pb.d.ts +0 -207
- package/grpc/pigeon_pb.grpc-client.d.ts +0 -98
- package/grpc/pigeon_pb.grpc-client.js +0 -68
- package/grpc/pigeon_pb.js +0 -144
- package/grpc/rambo.uri.v1_pb.d.ts +0 -73
- package/grpc/rambo.uri.v1_pb.js +0 -48
- package/grpc/rambo.v1_pb.client.d.ts +0 -66
- package/grpc/rambo.v1_pb.client.js +0 -48
- package/grpc/rambo.v1_pb.d.ts +0 -392
- package/grpc/rambo.v1_pb.grpc-client.d.ts +0 -56
- package/grpc/rambo.v1_pb.grpc-client.js +0 -44
- package/grpc/rambo.v1_pb.js +0 -272
- package/grpc/serviette.uri.v1_pb.d.ts +0 -89
- package/grpc/serviette.uri.v1_pb.js +0 -62
- package/grpc/serviette.v1_pb.client.d.ts +0 -225
- package/grpc/serviette.v1_pb.client.js +0 -174
- package/grpc/serviette.v1_pb.d.ts +0 -827
- package/grpc/serviette.v1_pb.grpc-client.d.ts +0 -215
- package/grpc/serviette.v1_pb.grpc-client.js +0 -162
- package/grpc/serviette.v1_pb.js +0 -553
- package/grpc/slowlane_pb.client.d.ts +0 -61
- package/grpc/slowlane_pb.client.js +0 -41
- package/grpc/slowlane_pb.d.ts +0 -303
- package/grpc/slowlane_pb.grpc-client.d.ts +0 -64
- package/grpc/slowlane_pb.grpc-client.js +0 -44
- package/grpc/slowlane_pb.js +0 -185
- package/grpc/teletubby_pb.client.d.ts +0 -145
- package/grpc/teletubby_pb.client.js +0 -104
- package/grpc/teletubby_pb.d.ts +0 -634
- package/grpc/teletubby_pb.grpc-client.d.ts +0 -152
- package/grpc/teletubby_pb.grpc-client.js +0 -100
- package/grpc/teletubby_pb.js +0 -1264
- package/helpers/cleanObject.spec.d.ts +0 -1
- package/helpers/cleanObject.spec.js +0 -53
- package/helpers/flattenObject.spec.d.ts +0 -1
- package/helpers/flattenObject.spec.js +0 -29
- package/helpers/flattenOneOf.d.ts +0 -67
- package/helpers/flattenOneOf.js +0 -29
- package/helpers/flattenOneOf.spec.d.ts +0 -1
- package/helpers/flattenOneOf.spec.js +0 -157
- package/helpers/formatServiceUrl.spec.d.ts +0 -1
- package/helpers/formatServiceUrl.spec.js +0 -16
- package/helpers/standardDeviation.spec.d.ts +0 -1
- package/helpers/standardDeviation.spec.js +0 -11
- package/models/CallsignStatus.d.ts +0 -6
- package/models/CallsignStatus.js +0 -7
- package/models/IRobotSettings.d.ts +0 -28
- package/models/IRobotSettings.js +0 -1
- package/models/Token.spec.d.ts +0 -1
- package/models/Token.spec.js +0 -108
- package/models/caller/IRocosCallerMessageResponseReturn.d.ts +0 -8
- package/models/caller/IRocosCallerMessageResponseReturn.js +0 -1
- package/models/caller/RocosResponseLevel.d.ts +0 -6
- package/models/caller/RocosResponseLevel.js +0 -7
- package/models/caller/index.d.ts +0 -10
- package/models/caller/index.js +0 -10
- package/models/command/index.d.ts +0 -4
- package/models/command/index.js +0 -4
- package/models/message/index.d.ts +0 -17
- package/models/message/index.js +0 -17
- package/services/AuthService.spec.d.ts +0 -1
- package/services/AuthService.spec.js +0 -163
- package/services/BaseStreamService.d.ts +0 -18
- package/services/BaseStreamService.js +0 -47
- package/services/PlatformTimeService.spec.d.ts +0 -1
- package/services/PlatformTimeService.spec.js +0 -180
- package/services/TelemetryService.spec.d.ts +0 -1
- package/services/TelemetryService.spec.js +0 -37
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DashboardService = void 0;
|
|
4
|
+
const api_1 = require("../constants/api");
|
|
5
|
+
const RocosError_1 = require("../models/RocosError");
|
|
6
|
+
const BaseServiceAbstract_1 = require("./BaseServiceAbstract");
|
|
7
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
8
|
+
const formatServiceUrl_1 = require("../helpers/formatServiceUrl");
|
|
9
|
+
class DashboardService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
7
10
|
constructor(config) {
|
|
8
11
|
super(config);
|
|
9
|
-
this.logger = RocosLogger.getInstance(`DashboardService(${this.config.url})`);
|
|
12
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`DashboardService(${this.config.url})`);
|
|
10
13
|
}
|
|
11
14
|
getError(e) {
|
|
12
|
-
return new RocosError(e, errorCodes.DASHBOARD_SERVICE_ERROR);
|
|
15
|
+
return new RocosError_1.RocosError(e, RocosError_1.errorCodes.DASHBOARD_SERVICE_ERROR);
|
|
13
16
|
}
|
|
14
17
|
getStatus() {
|
|
15
18
|
return true;
|
|
@@ -22,7 +25,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
22
25
|
*/
|
|
23
26
|
// TODO: map the response object
|
|
24
27
|
async info(projectId, dashboardId) {
|
|
25
|
-
return this.callGet(formatServiceUrl(API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get project dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
28
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get project dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
26
29
|
}
|
|
27
30
|
/**
|
|
28
31
|
* Create a dashboard widget.
|
|
@@ -33,7 +36,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
33
36
|
*/
|
|
34
37
|
// TODO: map the response object
|
|
35
38
|
async createWidget(projectId, dashboardId, widget) {
|
|
36
|
-
return this.callPut(formatServiceUrl(API_PROJECT_DASHBOARD_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), widget, `Failed to create widget for ${projectId}, dashboardId ${dashboardId}.`);
|
|
39
|
+
return this.callPut(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), widget, `Failed to create widget for ${projectId}, dashboardId ${dashboardId}.`);
|
|
37
40
|
}
|
|
38
41
|
/**
|
|
39
42
|
* Delete dashboard widgets.
|
|
@@ -44,7 +47,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
44
47
|
*/
|
|
45
48
|
// TODO: map the response object
|
|
46
49
|
async deleteWidgets(projectId, dashboardId, widgetIds) {
|
|
47
|
-
return this.callDelete(formatServiceUrl(API_PROJECT_DASHBOARD_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to delete widgets for ${projectId}, dashboardId ${dashboardId}.`, widgetIds);
|
|
50
|
+
return this.callDelete(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to delete widgets for ${projectId}, dashboardId ${dashboardId}.`, widgetIds);
|
|
48
51
|
}
|
|
49
52
|
/**
|
|
50
53
|
* Get collection documents.
|
|
@@ -54,7 +57,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
54
57
|
*/
|
|
55
58
|
// TODO: map the response object
|
|
56
59
|
async getDocs(projectId, collectionId) {
|
|
57
|
-
return this.callGet(formatServiceUrl(API_PROJECT_COLLECTION_ID_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), `Failed to get doc collection for ${projectId}, collectionId ${collectionId}.`);
|
|
60
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_COLLECTION_ID_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), `Failed to get doc collection for ${projectId}, collectionId ${collectionId}.`);
|
|
58
61
|
}
|
|
59
62
|
/**
|
|
60
63
|
* Create a document.
|
|
@@ -67,7 +70,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
67
70
|
// TODO: map the response object
|
|
68
71
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
69
72
|
async createDoc(projectId, collectionId, doc) {
|
|
70
|
-
return this.callPut(formatServiceUrl(API_PROJECT_COLLECTION_DOCS_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), doc, `Failed to create doc for ${projectId}, collectionId ${collectionId}.`);
|
|
73
|
+
return this.callPut(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_COLLECTION_DOCS_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), doc, `Failed to create doc for ${projectId}, collectionId ${collectionId}.`);
|
|
71
74
|
}
|
|
72
75
|
/**
|
|
73
76
|
* Delete documents.
|
|
@@ -78,7 +81,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
78
81
|
*/
|
|
79
82
|
// TODO: map the response object
|
|
80
83
|
async deleteDocs(projectId, collectionId, docIds) {
|
|
81
|
-
return this.callDelete(formatServiceUrl(API_PROJECT_COLLECTION_DOCS_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), `Failed to delete docs for ${projectId}, collectionId ${collectionId}.`, docIds);
|
|
84
|
+
return this.callDelete(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_COLLECTION_DOCS_URL, { url: this.config.url, projectId, collectionId }, this.config.insecure), `Failed to delete docs for ${projectId}, collectionId ${collectionId}.`, docIds);
|
|
82
85
|
}
|
|
83
86
|
/**
|
|
84
87
|
* Create a dashboard
|
|
@@ -87,7 +90,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
87
90
|
*/
|
|
88
91
|
// TODO: map the response object
|
|
89
92
|
async createProjectDashboard(projectId) {
|
|
90
|
-
return this.callPost(formatServiceUrl(API_PROJECT_DASHBOARD_URL, { url: this.config.url, projectId }, this.config.insecure), [], `Failed to create dashboard for ${projectId}.`);
|
|
93
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_URL, { url: this.config.url, projectId }, this.config.insecure), [], `Failed to create dashboard for ${projectId}.`);
|
|
91
94
|
}
|
|
92
95
|
/**
|
|
93
96
|
* Update the dashboard with widgets.
|
|
@@ -98,7 +101,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
98
101
|
*/
|
|
99
102
|
// TODO: map the response object
|
|
100
103
|
async updateProjectDashboard(projectId, dashboardId, widgets) {
|
|
101
|
-
return this.callPut(formatServiceUrl(API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), widgets, `Failed to update dashboard for ${projectId}.`);
|
|
104
|
+
return this.callPut(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), widgets, `Failed to update dashboard for ${projectId}.`);
|
|
102
105
|
}
|
|
103
106
|
/**
|
|
104
107
|
* Delete a dashboard.
|
|
@@ -108,7 +111,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
108
111
|
*/
|
|
109
112
|
// TODO: map the response object
|
|
110
113
|
async deleteProjectDashboard(projectId, dashboardId) {
|
|
111
|
-
return this.callDelete(formatServiceUrl(API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to delete dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
114
|
+
return this.callDelete(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to delete dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
112
115
|
}
|
|
113
116
|
/**
|
|
114
117
|
* Get the dashboard
|
|
@@ -118,7 +121,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
118
121
|
*/
|
|
119
122
|
// TODO: map the response object
|
|
120
123
|
async getProjectDashboard(projectId, dashboardId) {
|
|
121
|
-
return this.callGet(formatServiceUrl(API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
124
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_ID_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get dashboard for ${projectId}, dashboardId ${dashboardId}.`);
|
|
122
125
|
}
|
|
123
126
|
/**
|
|
124
127
|
* Get all dashboards fora project.
|
|
@@ -127,7 +130,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
127
130
|
*/
|
|
128
131
|
// TODO: map the response object
|
|
129
132
|
async getProjectDashboardList(projectId) {
|
|
130
|
-
return this.callGet(formatServiceUrl(API_PROJECT_DASHBOARD_URL, { url: this.config.url, projectId }, this.config.insecure), `Failed to get dashboards for ${projectId}.`);
|
|
133
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_URL, { url: this.config.url, projectId }, this.config.insecure), `Failed to get dashboards for ${projectId}.`);
|
|
131
134
|
}
|
|
132
135
|
/**
|
|
133
136
|
* Get all custom widgets for a dashboard.
|
|
@@ -137,6 +140,7 @@ export class DashboardService extends BaseServiceAbstract {
|
|
|
137
140
|
*/
|
|
138
141
|
// TODO: map the response object
|
|
139
142
|
async getProjectDashboardCustomWidget(projectId, dashboardId) {
|
|
140
|
-
return this.callGet(formatServiceUrl(API_PROJECT_DASHBOARD_CUSTOM_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get custom widgets for ${projectId}, dashboardId ${dashboardId}.`);
|
|
143
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DASHBOARD_CUSTOM_WIDGET_URL, { url: this.config.url, projectId, dashboardId }, this.config.insecure), `Failed to get custom widgets for ${projectId}, dashboardId ${dashboardId}.`);
|
|
141
144
|
}
|
|
142
145
|
}
|
|
146
|
+
exports.DashboardService = DashboardService;
|
package/services/EventService.js
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventService = void 0;
|
|
4
|
+
const api_1 = require("../constants/api");
|
|
5
|
+
const RocosError_1 = require("../models/RocosError");
|
|
6
|
+
const BaseServiceAbstract_1 = require("./BaseServiceAbstract");
|
|
7
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
8
|
+
const formatServiceUrl_1 = require("../helpers/formatServiceUrl");
|
|
9
|
+
class EventService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
7
10
|
constructor(config) {
|
|
8
11
|
super(config);
|
|
9
|
-
this.logger = RocosLogger.getInstance(`EventService(${this.config.url})`);
|
|
12
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`EventService(${this.config.url})`);
|
|
10
13
|
}
|
|
11
14
|
getError(e) {
|
|
12
|
-
return new RocosError(e, errorCodes.EVENT_SERVICE_ERROR);
|
|
15
|
+
return new RocosError_1.RocosError(e, RocosError_1.errorCodes.EVENT_SERVICE_ERROR);
|
|
13
16
|
}
|
|
14
17
|
getStatus() {
|
|
15
18
|
return true;
|
|
@@ -24,7 +27,7 @@ export class EventService extends BaseServiceAbstract {
|
|
|
24
27
|
*/
|
|
25
28
|
// TODO: map the response object
|
|
26
29
|
async getDefinitions(projectId, callsign, includeCounts = 0) {
|
|
27
|
-
return this.callGet(formatServiceUrl(API_PROJECT_ROBOT_EVENT_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), `Failed to get event definitions list for ${projectId}, callsign ${callsign}.`, { includeCounts });
|
|
30
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_ROBOT_EVENT_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), `Failed to get event definitions list for ${projectId}, callsign ${callsign}.`, { includeCounts });
|
|
28
31
|
}
|
|
29
32
|
/**
|
|
30
33
|
* Add event definitions for a robot
|
|
@@ -38,7 +41,7 @@ export class EventService extends BaseServiceAbstract {
|
|
|
38
41
|
// TODO: map the response object
|
|
39
42
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
40
43
|
async addDefinitions(projectId, callsign, model) {
|
|
41
|
-
return this.callPost(formatServiceUrl(API_PROJECT_ROBOT_EVENT_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), model, `Failed to add event definitions for ${projectId}, callsign ${callsign}.`);
|
|
44
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_ROBOT_EVENT_URL, { url: this.config.url, projectId, callsign }, this.config.insecure), model, `Failed to add event definitions for ${projectId}, callsign ${callsign}.`);
|
|
42
45
|
}
|
|
43
46
|
/**
|
|
44
47
|
* Get history for an event
|
|
@@ -50,7 +53,7 @@ export class EventService extends BaseServiceAbstract {
|
|
|
50
53
|
*/
|
|
51
54
|
// TODO: map the response object
|
|
52
55
|
async getHistory(projectId, callsign, eventDefinitionId) {
|
|
53
|
-
return this.callGet(formatServiceUrl(API_PROJECT_ROBOT_EVENT_HISTORY_URL, {
|
|
56
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_ROBOT_EVENT_HISTORY_URL, {
|
|
54
57
|
url: this.config.url,
|
|
55
58
|
projectId,
|
|
56
59
|
callsign,
|
|
@@ -66,7 +69,7 @@ export class EventService extends BaseServiceAbstract {
|
|
|
66
69
|
*/
|
|
67
70
|
// TODO: map the response object
|
|
68
71
|
async getDefinitionsForRobotDef(projectId, definitionId) {
|
|
69
|
-
return this.callGet(formatServiceUrl(API_PROJECT_DEFINITION_EVENT_URL, { url: this.config.url, projectId, definitionId }, this.config.insecure), `Failed to get event definitions list for ${projectId}, definitionId ${definitionId}.`);
|
|
72
|
+
return this.callGet(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DEFINITION_EVENT_URL, { url: this.config.url, projectId, definitionId }, this.config.insecure), `Failed to get event definitions list for ${projectId}, definitionId ${definitionId}.`);
|
|
70
73
|
}
|
|
71
74
|
/**
|
|
72
75
|
* Update events for a robot definition
|
|
@@ -80,6 +83,7 @@ export class EventService extends BaseServiceAbstract {
|
|
|
80
83
|
// TODO: map the response object
|
|
81
84
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
82
85
|
async addDefinitionsForRobotDef(projectId, definitionId, model) {
|
|
83
|
-
return this.callPost(formatServiceUrl(API_PROJECT_DEFINITION_EVENT_URL, { url: this.config.url, projectId, definitionId }, this.config.insecure), model, `Failed to update event definitions for ${projectId}, definitionId ${definitionId}.`);
|
|
86
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_PROJECT_DEFINITION_EVENT_URL, { url: this.config.url, projectId, definitionId }, this.config.insecure), model, `Failed to update event definitions for ${projectId}, definitionId ${definitionId}.`);
|
|
84
87
|
}
|
|
85
88
|
}
|
|
89
|
+
exports.EventService = EventService;
|
|
@@ -1,11 +1,25 @@
|
|
|
1
|
-
import { IFileAccessorParams, IFileAccessorReqOpParams
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { IFileAccessorParams, IFileAccessorReqOpParams } from '../models/params/IFileAccessorParams';
|
|
2
|
+
import { IBaseService } from '../models/IBaseService';
|
|
3
|
+
import { IFileAccessorStream } from '../models/stream/IFileAccessorStream';
|
|
4
|
+
import { IRocosOpResultMessage } from '../models/message/IRocosOpResultMessage';
|
|
5
|
+
import { IRocosSDKConfig } from '../models/IRocosSDKConfig';
|
|
6
|
+
import { IStreamConfig } from '../models/IStreamConfig';
|
|
7
|
+
import { ISubscriberStatus } from '../models/ISubscriberStatus';
|
|
8
|
+
import { Subject } from 'rxjs';
|
|
9
|
+
import { SubscriberStatusEnum } from '../models/SubscriberStatusEnum';
|
|
10
|
+
export declare class FileAccessorService implements IBaseService, ISubscriberStatus {
|
|
11
|
+
private config;
|
|
12
|
+
private logger;
|
|
13
|
+
private status;
|
|
14
|
+
status$: Subject<SubscriberStatusEnum>;
|
|
4
15
|
constructor(config: IRocosSDKConfig);
|
|
16
|
+
getStatus(): boolean;
|
|
5
17
|
serverReqOp(params: IFileAccessorReqOpParams): Promise<IRocosOpResultMessage[]>;
|
|
6
18
|
listFolder(params: IFileAccessorParams): Promise<IRocosOpResultMessage[]>;
|
|
7
19
|
downloadFile(params: IFileAccessorParams): Promise<IRocosOpResultMessage[]>;
|
|
8
20
|
getDownloadFileLinkByUsingBlob(params: IFileAccessorParams): Promise<any>;
|
|
9
|
-
|
|
21
|
+
uploadFile(params: IFileAccessorParams, file: File): Promise<any>;
|
|
22
|
+
private createStream;
|
|
23
|
+
private initStream;
|
|
10
24
|
protected getStream(config: IStreamConfig): IFileAccessorStream;
|
|
11
25
|
}
|
|
@@ -1,9 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FileAccessorService = void 0;
|
|
4
|
+
const FileAccessorStream_1 = require("../api/streams/fileAccessor/FileAccessorStream");
|
|
5
|
+
const identifier_1 = require("../constants/identifier");
|
|
6
|
+
const RocosLogger_1 = require("../logger/RocosLogger");
|
|
7
|
+
const RocosStore_1 = require("../store/RocosStore");
|
|
8
|
+
const StreamRegister_1 = require("../api/StreamRegister");
|
|
9
|
+
const rxjs_1 = require("rxjs");
|
|
10
|
+
const SubscriberStatusEnum_1 = require("../models/SubscriberStatusEnum");
|
|
11
|
+
class FileAccessorService {
|
|
5
12
|
constructor(config) {
|
|
6
|
-
|
|
13
|
+
this.status = false;
|
|
14
|
+
this.status$ = new rxjs_1.Subject();
|
|
15
|
+
this.config = config;
|
|
16
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`FileAccessorService(${this.config.url})`);
|
|
17
|
+
}
|
|
18
|
+
getStatus() {
|
|
19
|
+
return this.status;
|
|
7
20
|
}
|
|
8
21
|
async serverReqOp(params) {
|
|
9
22
|
const stream = await this.createStream();
|
|
@@ -21,17 +34,52 @@ export class FileAccessorService extends BaseStreamService {
|
|
|
21
34
|
const stream = await this.createStream();
|
|
22
35
|
return stream.getDownloadFileLinkByUsingBlob(params);
|
|
23
36
|
}
|
|
37
|
+
async uploadFile(params, file) {
|
|
38
|
+
const stream = await this.createStream();
|
|
39
|
+
return stream.uploadFile(params, file);
|
|
40
|
+
}
|
|
24
41
|
async createStream() {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
42
|
+
const scope = 'default';
|
|
43
|
+
const identifier = StreamRegister_1.StreamRegister.getIdentifier(identifier_1.IDENTIFIER_NAME_FILE_ACCESSOR, scope);
|
|
44
|
+
const streamRegister = StreamRegister_1.StreamRegister.getInstance();
|
|
45
|
+
let stream = streamRegister.getStream(identifier);
|
|
46
|
+
if (!stream) {
|
|
47
|
+
stream = this.getStream({
|
|
48
|
+
url: this.config.url,
|
|
49
|
+
token: this.config.token,
|
|
50
|
+
scope,
|
|
51
|
+
options: this.config.options,
|
|
52
|
+
port: this.config.port,
|
|
53
|
+
insecure: this.config.insecure,
|
|
54
|
+
});
|
|
55
|
+
stream.statusStream$.subscribe((msg) => {
|
|
56
|
+
this.status = msg === SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED || msg === SubscriberStatusEnum_1.SubscriberStatusEnum.ALIVE;
|
|
57
|
+
this.status$.next(msg);
|
|
58
|
+
});
|
|
59
|
+
// don't wait for these promises, they can be init after startup
|
|
60
|
+
await streamRegister.addStream(stream);
|
|
61
|
+
await this.initStream(stream);
|
|
62
|
+
}
|
|
63
|
+
return stream;
|
|
64
|
+
}
|
|
65
|
+
async initStream(stream) {
|
|
66
|
+
// an async callback to set the stream token in case one was not set at startup
|
|
67
|
+
if (!this.config.token) {
|
|
68
|
+
try {
|
|
69
|
+
const authService = RocosStore_1.RocosStore.getSDKInstance(this.config).getAuthService();
|
|
70
|
+
const token = await authService.getToken();
|
|
71
|
+
if (token === null || token === void 0 ? void 0 : token.value) {
|
|
72
|
+
this.config.token = token === null || token === void 0 ? void 0 : token.value;
|
|
73
|
+
stream.setToken(this.config.token);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
catch (e) {
|
|
77
|
+
this.logger.info('Can not retrieve auth token', e);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
33
80
|
}
|
|
34
81
|
getStream(config) {
|
|
35
|
-
return new FileAccessorStream(config);
|
|
82
|
+
return new FileAccessorStream_1.FileAccessorStream(config);
|
|
36
83
|
}
|
|
37
84
|
}
|
|
85
|
+
exports.FileAccessorService = FileAccessorService;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FileAccessorServiceNode = void 0;
|
|
4
|
+
const FileAccessorService_1 = require("./FileAccessorService");
|
|
5
|
+
const FileAccessorStreamNode_1 = require("../api/streams/fileAccessor/FileAccessorStreamNode");
|
|
6
|
+
class FileAccessorServiceNode extends FileAccessorService_1.FileAccessorService {
|
|
4
7
|
getStream(config) {
|
|
5
|
-
return new FileAccessorStreamNode(config);
|
|
8
|
+
return new FileAccessorStreamNode_1.FileAccessorStreamNode(config);
|
|
6
9
|
}
|
|
7
10
|
}
|
|
11
|
+
exports.FileAccessorServiceNode = FileAccessorServiceNode;
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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 {
|
|
8
11
|
constructor(config) {
|
|
9
12
|
super(config);
|
|
10
|
-
this.logger = RocosLogger.getInstance(`FunctionService(${this.config.url})`);
|
|
13
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`FunctionService(${this.config.url})`);
|
|
11
14
|
}
|
|
12
15
|
getError(e) {
|
|
13
|
-
return new RocosError(e, errorCodes.FUNCTION_SERVICE_ERROR);
|
|
16
|
+
return new RocosError_1.RocosError(e, RocosError_1.errorCodes.FUNCTION_SERVICE_ERROR);
|
|
14
17
|
}
|
|
15
18
|
getStatus() {
|
|
16
19
|
return true;
|
|
@@ -23,7 +26,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
23
26
|
*/
|
|
24
27
|
// TODO: map the response object
|
|
25
28
|
async exportJobs(projectId, query) {
|
|
26
|
-
return this.callPost(formatServiceUrl(API_PROJECT_EXPORT_URL, { url: this.config.url, projectId }, this.config.insecure), new ExportDataQuery(query).toJSON(), `Failed to export data for ${projectId}.`);
|
|
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}.`);
|
|
27
30
|
}
|
|
28
31
|
/**
|
|
29
32
|
* Create a function
|
|
@@ -33,7 +36,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
33
36
|
*/
|
|
34
37
|
// TODO: map the response object
|
|
35
38
|
async create(projectId, model) {
|
|
36
|
-
return this.callPost(formatServiceUrl(API_PROJECT_FUNCTION_URL, { url: this.config.url, projectId }, this.config.insecure), model, `Failed to create function for ${projectId}.`);
|
|
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}.`);
|
|
37
40
|
}
|
|
38
41
|
/**
|
|
39
42
|
* Get a functions
|
|
@@ -42,7 +45,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
42
45
|
*/
|
|
43
46
|
// TODO: map the response object
|
|
44
47
|
async list(projectId) {
|
|
45
|
-
return this.callGet(formatServiceUrl(API_PROJECT_FUNCTION_URL, { url: this.config.url, projectId }, this.config.insecure), `Failed to get functions for ${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}.`);
|
|
46
49
|
}
|
|
47
50
|
/**
|
|
48
51
|
* Update a function
|
|
@@ -53,7 +56,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
53
56
|
*/
|
|
54
57
|
// TODO: map the response object
|
|
55
58
|
async update(projectId, functionId, model) {
|
|
56
|
-
return this.callPut(formatServiceUrl(API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), model, `Failed to update function for ${projectId}, functionId ${functionId}.`);
|
|
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}.`);
|
|
57
60
|
}
|
|
58
61
|
/**
|
|
59
62
|
* Get function
|
|
@@ -63,7 +66,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
63
66
|
*/
|
|
64
67
|
// TODO: map the response object
|
|
65
68
|
async info(projectId, functionId) {
|
|
66
|
-
return this.callGet(formatServiceUrl(API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to get function for ${projectId}, functionId ${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}.`);
|
|
67
70
|
}
|
|
68
71
|
/**
|
|
69
72
|
* Delete function
|
|
@@ -73,7 +76,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
73
76
|
*/
|
|
74
77
|
// TODO: map the response object
|
|
75
78
|
async delete(projectId, functionId) {
|
|
76
|
-
return this.callDelete(formatServiceUrl(API_PROJECT_FUNCTION_ID_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to delete function for ${projectId}, functionId ${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}.`);
|
|
77
80
|
}
|
|
78
81
|
/**
|
|
79
82
|
* Run a function
|
|
@@ -84,7 +87,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
84
87
|
*/
|
|
85
88
|
// TODO: map the response object
|
|
86
89
|
async run(projectId, functionId, body = null) {
|
|
87
|
-
return this.callPost(formatServiceUrl(API_PROJECT_FUNCTION_RUN_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), body, `Failed to run function for ${projectId}, functionId ${functionId}.`);
|
|
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}.`);
|
|
88
91
|
}
|
|
89
92
|
/**
|
|
90
93
|
* Get function pods
|
|
@@ -94,6 +97,7 @@ export class FunctionService extends BaseServiceAbstract {
|
|
|
94
97
|
*/
|
|
95
98
|
// TODO: map the response object
|
|
96
99
|
async pods(projectId, functionId) {
|
|
97
|
-
return this.callGet(formatServiceUrl(API_PROJECT_FUNCTION_POD_URL, { url: this.config.url, projectId, functionId }, this.config.insecure), `Failed to ged function pods for ${projectId}, functionId ${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}.`);
|
|
98
101
|
}
|
|
99
102
|
}
|
|
103
|
+
exports.FunctionService = FunctionService;
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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");
|
|
6
9
|
/**
|
|
7
10
|
* Integrations to retrieve data from the linked project in DroneDeploy
|
|
8
11
|
*/
|
|
9
|
-
|
|
12
|
+
class IntegrationService extends BaseServiceAbstract_1.BaseServiceAbstract {
|
|
10
13
|
constructor(config) {
|
|
11
14
|
super(config);
|
|
12
|
-
this.logger = RocosLogger.getInstance(`IntegrationService(${this.config.url})`);
|
|
15
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`IntegrationService(${this.config.url})`);
|
|
13
16
|
}
|
|
14
17
|
getStatus() {
|
|
15
18
|
return true;
|
|
16
19
|
}
|
|
17
20
|
getError(e) {
|
|
18
|
-
return new RocosError(e, errorCodes.INTEGRATIONS_SERVICE_ERROR);
|
|
21
|
+
return new models_1.RocosError(e, models_1.errorCodes.INTEGRATIONS_SERVICE_ERROR);
|
|
19
22
|
}
|
|
20
23
|
/**
|
|
21
24
|
* Gets latest plans from the project linked to the provided project ID
|
|
@@ -23,7 +26,7 @@ export class IntegrationService extends BaseServiceAbstract {
|
|
|
23
26
|
* @returns Plans list (limited to 50)
|
|
24
27
|
*/
|
|
25
28
|
async getPlans(projectId) {
|
|
26
|
-
return this.callGet(formatServiceUrl(API_DD_INTEGRATION_PLANS_URL, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get plans.');
|
|
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.');
|
|
27
30
|
}
|
|
28
31
|
/**
|
|
29
32
|
* Gets the plans from the project linked to the provided project ID
|
|
@@ -32,9 +35,10 @@ export class IntegrationService extends BaseServiceAbstract {
|
|
|
32
35
|
* @returns Plans list (limited to 50) with cursor to next page when available
|
|
33
36
|
*/
|
|
34
37
|
async getPlansPaged(projectId, pageStart) {
|
|
38
|
+
var _a;
|
|
35
39
|
const params = pageStart ? { page_start: pageStart } : undefined;
|
|
36
|
-
const response = await this.callGet(formatServiceUrl(`${API_DD_INTEGRATION_PLANS_URL}`, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get plans.', params, { responseType: 'raw' });
|
|
37
|
-
const pageNext = response.headers.get('x-dd-page-next')
|
|
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;
|
|
38
42
|
const plans = await response.json();
|
|
39
43
|
return {
|
|
40
44
|
plans,
|
|
@@ -48,7 +52,7 @@ export class IntegrationService extends BaseServiceAbstract {
|
|
|
48
52
|
* @returns A single plan
|
|
49
53
|
*/
|
|
50
54
|
async getPlanById(projectId, planId) {
|
|
51
|
-
return this.callGet(formatServiceUrl(API_DD_INTEGRATION_PLAN_BY_ID_URL, { url: this.config.url, projectId, planId }, this.config.insecure), 'Failed to get plan.');
|
|
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.');
|
|
52
56
|
}
|
|
53
57
|
/**
|
|
54
58
|
* Returns raster overlays such as drawings to be used for mission planning
|
|
@@ -56,7 +60,7 @@ export class IntegrationService extends BaseServiceAbstract {
|
|
|
56
60
|
* @returns A list of overlays in the project
|
|
57
61
|
*/
|
|
58
62
|
async getOverlays(projectId) {
|
|
59
|
-
return this.callGet(formatServiceUrl(API_DD_INTEGRATION_OVERLAYS_URL, { url: this.config.url, projectId }, this.config.insecure), 'Failed to get overlays.');
|
|
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.');
|
|
60
64
|
}
|
|
61
65
|
/**
|
|
62
66
|
* Creates a blank issue in the latest ortho plan available
|
|
@@ -64,9 +68,10 @@ export class IntegrationService extends BaseServiceAbstract {
|
|
|
64
68
|
* @param location Location of the issue
|
|
65
69
|
*/
|
|
66
70
|
async createIssue(projectId, location) {
|
|
67
|
-
return this.callPost(formatServiceUrl(API_DD_INTEGRATION_ISSUES_URL, { url: this.config.url, projectId }, this.config.insecure), {
|
|
71
|
+
return this.callPost(formatServiceUrl_1.formatServiceUrl(api_1.API_DD_INTEGRATION_ISSUES_URL, { url: this.config.url, projectId }, this.config.insecure), {
|
|
68
72
|
lat: location.lat,
|
|
69
73
|
lng: location.lng,
|
|
70
74
|
}, 'Failed to create issue.');
|
|
71
75
|
}
|
|
72
76
|
}
|
|
77
|
+
exports.IntegrationService = IntegrationService;
|
package/services/MapService.d.ts
CHANGED
|
@@ -17,17 +17,24 @@ export declare class MapService extends BaseServiceAbstract implements IBaseServ
|
|
|
17
17
|
/**
|
|
18
18
|
* List maps from the robot and the cloud
|
|
19
19
|
*
|
|
20
|
+
* if onlyRobot is true, only the maps from the robot will be returned
|
|
21
|
+
*
|
|
20
22
|
* @param projectId Project ID
|
|
21
23
|
* @param callsign Robot callsign
|
|
24
|
+
* @param options Options to filter the maps
|
|
22
25
|
* @returns All maps in the cloud
|
|
23
26
|
*/
|
|
24
|
-
list(projectId: string, callsign: string
|
|
25
|
-
|
|
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
|
|
26
32
|
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
33
|
+
* has no effect if the DB already exists
|
|
34
|
+
*
|
|
35
|
+
* @param projectId Project ID
|
|
29
36
|
*/
|
|
30
|
-
|
|
37
|
+
initDB(projectId: string): Promise<void>;
|
|
31
38
|
/**
|
|
32
39
|
* Creates a new map by merging two existing maps
|
|
33
40
|
* @param projectId Project ID
|
|
@@ -39,12 +46,6 @@ export declare class MapService extends BaseServiceAbstract implements IBaseServ
|
|
|
39
46
|
description?: string;
|
|
40
47
|
callsign: string;
|
|
41
48
|
}): Promise<void>;
|
|
42
|
-
/** Returns a map in its canonical form
|
|
43
|
-
*
|
|
44
|
-
* @param projectId Project ID
|
|
45
|
-
* @param mapId Map ID
|
|
46
|
-
*/
|
|
47
|
-
get(projectId: string, mapId: string): Promise<Map>;
|
|
48
49
|
/**
|
|
49
50
|
* Updates a maps metadata
|
|
50
51
|
* @param projectId Project ID
|
|
@@ -57,53 +58,39 @@ export declare class MapService extends BaseServiceAbstract implements IBaseServ
|
|
|
57
58
|
callsign?: string;
|
|
58
59
|
}): Promise<void>;
|
|
59
60
|
/**
|
|
60
|
-
*
|
|
61
|
+
* Copies a map from a robot to the cloud
|
|
62
|
+
*
|
|
63
|
+
* @see copyFromCloud
|
|
61
64
|
*
|
|
62
65
|
* @param projectId Project ID
|
|
63
66
|
* @param mapId Map ID
|
|
64
67
|
* @param callsign Robot callsign
|
|
65
|
-
* @param hash Map hash
|
|
66
68
|
*/
|
|
67
|
-
|
|
69
|
+
copyFromRobot(projectId: string, mapId: string, callsign: string): Promise<void>;
|
|
68
70
|
/**
|
|
69
|
-
* Deletes a map from the cloud
|
|
71
|
+
* Deletes a map from the cloud
|
|
70
72
|
* @param projectId
|
|
71
73
|
* @param mapId
|
|
72
74
|
*/
|
|
73
75
|
delete(projectId: string, mapId: string): Promise<void>;
|
|
74
76
|
/**
|
|
75
|
-
* Deletes a map from
|
|
76
|
-
*
|
|
77
|
-
* If the callsign does not have the map deployed, any local copy of the map will be deleted.
|
|
78
|
-
*
|
|
77
|
+
* Deletes a map from the cloud and attempts to delete it from the robot
|
|
79
78
|
* @param projectId
|
|
80
79
|
* @param mapId
|
|
81
80
|
* @param callsign
|
|
82
|
-
* @param hash
|
|
83
81
|
*/
|
|
84
|
-
delete(projectId: string, mapId: string, callsign: string
|
|
82
|
+
delete(projectId: string, mapId: string, callsign: string): Promise<void>;
|
|
85
83
|
/**
|
|
86
|
-
* Makes a copy of
|
|
84
|
+
* Makes a copy of a map stored in the cloud
|
|
85
|
+
*
|
|
86
|
+
* @see copyFromRobot
|
|
87
87
|
*
|
|
88
88
|
* @param projectId Project ID
|
|
89
89
|
* @param mapId Map ID
|
|
90
90
|
* @param options Options to create the new map
|
|
91
91
|
*/
|
|
92
|
-
|
|
92
|
+
copyFromCloud(projectId: string, mapId: string, options: {
|
|
93
93
|
name: string;
|
|
94
94
|
description?: string;
|
|
95
95
|
}): Promise<void>;
|
|
96
|
-
/** Deploy a map from the cloud to a robot
|
|
97
|
-
*
|
|
98
|
-
* @param projectId Project ID
|
|
99
|
-
* @param mapId Map ID
|
|
100
|
-
* @param callsign Robot callsign
|
|
101
|
-
*/
|
|
102
|
-
deploy(projectId: string, mapId: string, callsign: string): Promise<void>;
|
|
103
|
-
/** Get a GeoJSON representation of a map
|
|
104
|
-
*
|
|
105
|
-
* @param projectId Project ID
|
|
106
|
-
* @param mapId Map ID
|
|
107
|
-
*/
|
|
108
|
-
getGeoJSON(projectId: string, mapId: string): Promise<unknown>;
|
|
109
96
|
}
|