@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,195 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.TelemetryStreamNode = void 0;
|
|
23
|
+
const grpc = __importStar(require("@grpc/grpc-js"));
|
|
24
|
+
const teletubby_pb_1 = require("../../../grpc/teletubby/teletubby_pb");
|
|
25
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
|
26
|
+
const RocosTelemetryMessage_1 = require("../../../models/message/RocosTelemetryMessage");
|
|
27
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
|
28
|
+
const teletubby_grpc_pb_1 = require("../../../grpc/teletubby/teletubby_grpc_pb");
|
|
29
|
+
const TelemetryStreamAbstract_1 = require("./TelemetryStreamAbstract");
|
|
30
|
+
const uuid_1 = require("uuid");
|
|
31
|
+
class TelemetryStreamNode extends TelemetryStreamAbstract_1.TelemetryStreamAbstract {
|
|
32
|
+
constructor(config) {
|
|
33
|
+
super(config);
|
|
34
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`TelemetryStream(${this.identifier})`);
|
|
35
|
+
this.port = config.port || 443;
|
|
36
|
+
this.credentials = config.insecure ? grpc.credentials.createInsecure() : grpc.credentials.createSsl();
|
|
37
|
+
}
|
|
38
|
+
stopInternal() {
|
|
39
|
+
var _a, _b;
|
|
40
|
+
try {
|
|
41
|
+
this.logger.info('Starting stop stream process');
|
|
42
|
+
this.logger.info('Stopping stream');
|
|
43
|
+
(_a = this.stream) === null || _a === void 0 ? void 0 : _a.end();
|
|
44
|
+
this.stream = undefined;
|
|
45
|
+
this.logger.info('Stopping client');
|
|
46
|
+
(_b = this.client) === null || _b === void 0 ? void 0 : _b.close();
|
|
47
|
+
this.client = undefined;
|
|
48
|
+
this.logger.info('Finished stop stream process');
|
|
49
|
+
}
|
|
50
|
+
catch (e) {
|
|
51
|
+
this.logger.error('Error stopping stream.', e);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
registerReceiver() {
|
|
55
|
+
this.logger.info('registerReceiver');
|
|
56
|
+
// Reset counter
|
|
57
|
+
this.receivedMessagesCount = 0;
|
|
58
|
+
try {
|
|
59
|
+
const receiver = new teletubby_grpc_pb_1.TelemetryReceiverClient(`${this.url}:${this.port}`, this.getCredentials(), {
|
|
60
|
+
'grpc.min_reconnect_backoff_ms': 1000,
|
|
61
|
+
'grpc.max_reconnect_backoff_ms': 10000,
|
|
62
|
+
});
|
|
63
|
+
const waitForClientReady = async (error) => {
|
|
64
|
+
let err = error;
|
|
65
|
+
if (!err) {
|
|
66
|
+
try {
|
|
67
|
+
this.logger.info('registering stream receiver');
|
|
68
|
+
this.stream = this.registerStream();
|
|
69
|
+
this.logger.info('registered stream receiver');
|
|
70
|
+
}
|
|
71
|
+
catch (e) {
|
|
72
|
+
err = e;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
if (err) {
|
|
76
|
+
this.logger.warn(`failed to create telemetry client, error: ${err}`);
|
|
77
|
+
// await this.stopandReRegisterStream()
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
const deadline = new Date();
|
|
81
|
+
deadline.setSeconds(deadline.getSeconds() + 2);
|
|
82
|
+
receiver.waitForReady(deadline, waitForClientReady.bind(this));
|
|
83
|
+
this.client = receiver;
|
|
84
|
+
this.logger.info(`Tele receiver client: ${JSON.stringify(this.client)}`);
|
|
85
|
+
}
|
|
86
|
+
catch (e) {
|
|
87
|
+
this.logger.error('Error initializing receiver client', e);
|
|
88
|
+
}
|
|
89
|
+
this.listenMessagesAndRenew();
|
|
90
|
+
return () => {
|
|
91
|
+
var _a;
|
|
92
|
+
(_a = this.client) === null || _a === void 0 ? void 0 : _a.close();
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
getCredentials() {
|
|
96
|
+
const mdCb = (_params, callback) => {
|
|
97
|
+
const meta = this.getMetaData();
|
|
98
|
+
callback(null, meta);
|
|
99
|
+
};
|
|
100
|
+
return grpc.credentials.combineChannelCredentials(this.credentials, grpc.credentials.createFromMetadataGenerator(mdCb));
|
|
101
|
+
}
|
|
102
|
+
registerStream() {
|
|
103
|
+
try {
|
|
104
|
+
this.logger.info('registering stream');
|
|
105
|
+
const stream = this.client.registerStreamReceiver();
|
|
106
|
+
this.logger.info('stream registered');
|
|
107
|
+
stream.on('data', (msg) => {
|
|
108
|
+
this.onData(RocosTelemetryMessage_1.RocosTelemetryMessage.fromTelemetryStreamMessage(msg));
|
|
109
|
+
});
|
|
110
|
+
stream.on('error', async (e) => this.onError(e));
|
|
111
|
+
stream.on('end', async () => this.onEnd());
|
|
112
|
+
return stream;
|
|
113
|
+
}
|
|
114
|
+
catch (e) {
|
|
115
|
+
this.logger.error(`Telemetry Stream registerStream error" SubscriberId: ${this.subscriberId}`, e);
|
|
116
|
+
throw e;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
async onError(e) {
|
|
120
|
+
this.logger.error(`Telemetry Stream Error: ${e}, SubscriberId: ${this.subscriberId}`);
|
|
121
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.ERROR;
|
|
122
|
+
this.statusStream$.next(this.subscriberStatus);
|
|
123
|
+
// TODO: handle stream error and re register
|
|
124
|
+
// await this.stopandReRegisterStream()
|
|
125
|
+
}
|
|
126
|
+
onEnd() {
|
|
127
|
+
this.logger.debug('registerReceiver', 'end');
|
|
128
|
+
}
|
|
129
|
+
getMetaData() {
|
|
130
|
+
const meta = new grpc.Metadata();
|
|
131
|
+
meta.add('authorization', this.token);
|
|
132
|
+
meta.add('r-p', this.projectId);
|
|
133
|
+
meta.add('r-tid', uuid_1.v4());
|
|
134
|
+
meta.add('r-cs', 'rocos-js-sdk-agent');
|
|
135
|
+
return meta;
|
|
136
|
+
}
|
|
137
|
+
requestTelemetry(req) {
|
|
138
|
+
this.logger.debug('Sending telemetry request');
|
|
139
|
+
return new Promise((resolve, reject) => {
|
|
140
|
+
this.client.requestTelemetry(req, (err, ack) => {
|
|
141
|
+
this.logger.debug('subscribeSources with callsigns callback', err, ack);
|
|
142
|
+
if (err) {
|
|
143
|
+
this.logger.error('error requestTelemetry ', err);
|
|
144
|
+
return reject(err);
|
|
145
|
+
}
|
|
146
|
+
resolve();
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
requestTelemetryQuery(req) {
|
|
151
|
+
this.logger.debug('Requesting telemetry with query');
|
|
152
|
+
return new Promise((resolve, reject) => {
|
|
153
|
+
this.client.requestTelemetryQuery(req, (err, ack) => {
|
|
154
|
+
this.logger.debug('subscribeSources with query callback', err, ack);
|
|
155
|
+
if (err) {
|
|
156
|
+
this.logger.error('error requestTelemetryQuery ', err);
|
|
157
|
+
return reject(err);
|
|
158
|
+
}
|
|
159
|
+
resolve();
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
sendAcknowledgmentInternal(uid, status, noRetry) {
|
|
164
|
+
var _a;
|
|
165
|
+
this.logger.info('Sending acknowledgment', { uid, status, noRetry });
|
|
166
|
+
const request = new teletubby_pb_1.ReceiverStreamMessage();
|
|
167
|
+
const ack = new teletubby_pb_1.TelemetryMessageAck();
|
|
168
|
+
ack.setUid(uid);
|
|
169
|
+
ack.setStatus(status);
|
|
170
|
+
ack.setNoretry(noRetry);
|
|
171
|
+
request.setAck(ack);
|
|
172
|
+
const response = (_a = this.stream) === null || _a === void 0 ? void 0 : _a.write(request);
|
|
173
|
+
this.logger.info('Sent acknowledgment response', { uid, status, noRetry });
|
|
174
|
+
return response !== undefined ? response : false;
|
|
175
|
+
}
|
|
176
|
+
sendHeartbeat() {
|
|
177
|
+
var _a, _b, _c;
|
|
178
|
+
try {
|
|
179
|
+
if (this.client && this.stream) {
|
|
180
|
+
this.logger.info('sending heartbeat');
|
|
181
|
+
const request = new teletubby_pb_1.ReceiverStreamMessage();
|
|
182
|
+
request.setHeartbeat(new teletubby_pb_1.Heartbeat());
|
|
183
|
+
(_a = this.stream) === null || _a === void 0 ? void 0 : _a.write(request);
|
|
184
|
+
}
|
|
185
|
+
else {
|
|
186
|
+
this.logger.warn('Can not send heartbeat, stream does not exist.');
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
catch (e) {
|
|
190
|
+
(_b = this.logger) === null || _b === void 0 ? void 0 : _b.warn('Error for heartbeat');
|
|
191
|
+
(_c = this.stream) === null || _c === void 0 ? void 0 : _c.emit('error', e);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
exports.TelemetryStreamNode = TelemetryStreamNode;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { AddIceCandidateRequest, GetDetailsRequest, OfferRequest, OperatorConnectRequest } from '../../../grpc/video/pigeon_pb';
|
|
2
|
+
import { IServiceError, IWebRTCSignallingGetDetailsResponse, IWebRTCSignallingMessage, IWebRTCSignallingOutcome, IWebRTCSignallingResponseStream } from '../../../models/stream/IWebRTCSignallingStream';
|
|
3
|
+
import { UnaryResponse } from '../../../grpc/video/pigeon_pb_service';
|
|
4
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
|
5
|
+
import { WebRTCSignallingStreamAbstract } from './WebRTCSignallingStreamAbstract';
|
|
6
|
+
/**
|
|
7
|
+
* Web implementation for the WebRTC signalling stream
|
|
8
|
+
*/
|
|
9
|
+
export declare class WebRTCSignallingStream extends WebRTCSignallingStreamAbstract {
|
|
10
|
+
private webRTCOperatorclient;
|
|
11
|
+
constructor(config: IStreamConfig);
|
|
12
|
+
/**
|
|
13
|
+
* Connect operator stream
|
|
14
|
+
* @param projectId
|
|
15
|
+
* @param request
|
|
16
|
+
* @returns
|
|
17
|
+
*/
|
|
18
|
+
protected connectOperatorStream(projectId: string, request: OperatorConnectRequest): IWebRTCSignallingResponseStream<IWebRTCSignallingMessage>;
|
|
19
|
+
/**
|
|
20
|
+
* Get details for the peer
|
|
21
|
+
* @param projectId
|
|
22
|
+
* @param request
|
|
23
|
+
* @param callback
|
|
24
|
+
* @returns
|
|
25
|
+
*/
|
|
26
|
+
protected getPeerDetails(projectId: string, request: GetDetailsRequest, callback: (error: IServiceError | null, responseMessage: IWebRTCSignallingGetDetailsResponse | null) => void): UnaryResponse;
|
|
27
|
+
/**
|
|
28
|
+
* Send offer connecction to peer
|
|
29
|
+
* @param projectId
|
|
30
|
+
* @param request
|
|
31
|
+
* @param callback
|
|
32
|
+
* @returns
|
|
33
|
+
*/
|
|
34
|
+
protected offerPeerConnection(projectId: string, request: OfferRequest, callback: (error: IServiceError | null, responseMessage: IWebRTCSignallingOutcome | null) => void): UnaryResponse;
|
|
35
|
+
/**
|
|
36
|
+
* Add ice candidate for peer
|
|
37
|
+
* @param projectId
|
|
38
|
+
* @param request
|
|
39
|
+
* @param callback
|
|
40
|
+
* @returns
|
|
41
|
+
*/
|
|
42
|
+
protected addPeerIceCandidate(projectId: string, request: AddIceCandidateRequest, callback: (err: IServiceError | null, responseMessage: IWebRTCSignallingOutcome | null) => void): UnaryResponse;
|
|
43
|
+
private getMetadata;
|
|
44
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebRTCSignallingStream = void 0;
|
|
4
|
+
const pigeon_pb_service_1 = require("../../../grpc/video/pigeon_pb_service");
|
|
5
|
+
const RocosLogger_1 = require("../../../logger/RocosLogger");
|
|
6
|
+
const WebRTCSignallingStreamAbstract_1 = require("./WebRTCSignallingStreamAbstract");
|
|
7
|
+
/**
|
|
8
|
+
* Web implementation for the WebRTC signalling stream
|
|
9
|
+
*/
|
|
10
|
+
class WebRTCSignallingStream extends WebRTCSignallingStreamAbstract_1.WebRTCSignallingStreamAbstract {
|
|
11
|
+
constructor(config) {
|
|
12
|
+
super(config);
|
|
13
|
+
this.logger = RocosLogger_1.RocosLogger.getInstance(`WebRTCSignallingStream(${this.identifier})`);
|
|
14
|
+
const protocol = config.insecure ? 'http' : 'https';
|
|
15
|
+
this.webRTCOperatorclient = new pigeon_pb_service_1.operatorClient(`${protocol}://${this.url}`);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Connect operator stream
|
|
19
|
+
* @param projectId
|
|
20
|
+
* @param request
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
connectOperatorStream(projectId, request) {
|
|
24
|
+
const metadata = this.getMetadata(projectId);
|
|
25
|
+
return this.webRTCOperatorclient.connect(request, metadata);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Get details for the peer
|
|
29
|
+
* @param projectId
|
|
30
|
+
* @param request
|
|
31
|
+
* @param callback
|
|
32
|
+
* @returns
|
|
33
|
+
*/
|
|
34
|
+
getPeerDetails(projectId, request, callback) {
|
|
35
|
+
const metadata = this.getMetadata(projectId);
|
|
36
|
+
return this.webRTCOperatorclient.get(request, metadata, callback);
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Send offer connecction to peer
|
|
40
|
+
* @param projectId
|
|
41
|
+
* @param request
|
|
42
|
+
* @param callback
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
offerPeerConnection(projectId, request, callback) {
|
|
46
|
+
const metadata = this.getMetadata(projectId);
|
|
47
|
+
return this.webRTCOperatorclient.offer(request, metadata, callback);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Add ice candidate for peer
|
|
51
|
+
* @param projectId
|
|
52
|
+
* @param request
|
|
53
|
+
* @param callback
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
addPeerIceCandidate(projectId, request, callback) {
|
|
57
|
+
const metadata = this.getMetadata(projectId);
|
|
58
|
+
return this.webRTCOperatorclient.addIceCandidate(request, metadata, callback);
|
|
59
|
+
}
|
|
60
|
+
getMetadata(projectId) {
|
|
61
|
+
return {
|
|
62
|
+
'authorization': this.token,
|
|
63
|
+
'r-p': projectId,
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.WebRTCSignallingStream = WebRTCSignallingStream;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AddIceCandidateRequest, GetDetailsRequest, GetDetailsResponse, OfferRequest, OperatorConnectRequest } from '../../../grpc/video/pigeon_pb';
|
|
2
|
+
import { IAddIceCandidateRequest, IGetDetailsRequest, IOfferRequest, IOperatorConnectRequest } from '../../../models/params/IWebRTCSignallingParams';
|
|
3
|
+
import { IServiceError, IWebRTCSignallingGetDetailsResponse, IWebRTCSignallingMessage, IWebRTCSignallingOutcome, IWebRTCSignallingResponseStream, IWebRTCSignallingStream } from '../../../models/stream/IWebRTCSignallingStream';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { IStreamConfig } from '../../../models/IStreamConfig';
|
|
6
|
+
import { Logger } from 'loglevel';
|
|
7
|
+
import { SubscriberStatusEnum } from '../../../models/SubscriberStatusEnum';
|
|
8
|
+
export declare abstract class WebRTCSignallingStreamAbstract implements IWebRTCSignallingStream {
|
|
9
|
+
identifier: string;
|
|
10
|
+
protected token: string;
|
|
11
|
+
private scope;
|
|
12
|
+
protected url: string;
|
|
13
|
+
protected subscriberStatus: SubscriberStatusEnum;
|
|
14
|
+
statusStream$: BehaviorSubject<SubscriberStatusEnum>;
|
|
15
|
+
protected logger: Logger;
|
|
16
|
+
constructor(config: IStreamConfig);
|
|
17
|
+
protected abstract connectOperatorStream(projectId: string, request: OperatorConnectRequest): IWebRTCSignallingResponseStream<IWebRTCSignallingMessage>;
|
|
18
|
+
protected abstract getPeerDetails(projectId: string, request: GetDetailsRequest, callback: (error: IServiceError | null, responseMessage: IWebRTCSignallingGetDetailsResponse | null) => void): void;
|
|
19
|
+
protected abstract offerPeerConnection(projectId: string, request: OfferRequest, callback: (error: IServiceError | null, responseMessage: IWebRTCSignallingOutcome | null) => void): void;
|
|
20
|
+
protected abstract addPeerIceCandidate(projectId: string, request: AddIceCandidateRequest, callback: (err: IServiceError | null, responseMessage: IWebRTCSignallingOutcome | null) => void): void;
|
|
21
|
+
setToken(token: string): void;
|
|
22
|
+
stopStream(): void;
|
|
23
|
+
/**
|
|
24
|
+
* Connect operator
|
|
25
|
+
* @param request
|
|
26
|
+
* @returns
|
|
27
|
+
*/
|
|
28
|
+
connectOperator(request: IOperatorConnectRequest): IWebRTCSignallingResponseStream<IWebRTCSignallingMessage>;
|
|
29
|
+
getDetails(request: IGetDetailsRequest, callback: (err: IServiceError | null, response: GetDetailsResponse | null) => void): void;
|
|
30
|
+
offerConnection(request: IOfferRequest, callback: (err: IServiceError | null, response: IWebRTCSignallingOutcome | null) => void): void;
|
|
31
|
+
addIceCandidate(request: IAddIceCandidateRequest, callback: (err: IServiceError | null, response: IWebRTCSignallingOutcome | null) => void): void;
|
|
32
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebRTCSignallingStreamAbstract = void 0;
|
|
4
|
+
const pigeon_pb_1 = require("../../../grpc/video/pigeon_pb");
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const identifier_1 = require("../../../constants/identifier");
|
|
7
|
+
const RocosStore_1 = require("../../../store/RocosStore");
|
|
8
|
+
const StreamRegister_1 = require("../../StreamRegister");
|
|
9
|
+
const SubscriberStatusEnum_1 = require("../../../models/SubscriberStatusEnum");
|
|
10
|
+
const operators_1 = require("rxjs/operators");
|
|
11
|
+
class WebRTCSignallingStreamAbstract {
|
|
12
|
+
constructor(config) {
|
|
13
|
+
this.subscriberStatus = SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED;
|
|
14
|
+
this.scope = config.scope;
|
|
15
|
+
this.identifier = StreamRegister_1.StreamRegister.getIdentifier(identifier_1.IDENTIFIER_NAME_COMMAND, this.scope);
|
|
16
|
+
this.token = config.token;
|
|
17
|
+
this.url = config.url;
|
|
18
|
+
this.statusStream$ = new rxjs_1.BehaviorSubject(SubscriberStatusEnum_1.SubscriberStatusEnum.STOPPED);
|
|
19
|
+
RocosStore_1.RocosStore.getChangeSubject()
|
|
20
|
+
.pipe(operators_1.filter((message) => {
|
|
21
|
+
return message.type === 'token' && message.url === this.url;
|
|
22
|
+
}))
|
|
23
|
+
.subscribe((msg) => {
|
|
24
|
+
this.token = msg.data;
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
setToken(token) {
|
|
28
|
+
this.token = token;
|
|
29
|
+
}
|
|
30
|
+
stopStream() {
|
|
31
|
+
// do nothing for now
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Connect operator
|
|
35
|
+
* @param request
|
|
36
|
+
* @returns
|
|
37
|
+
*/
|
|
38
|
+
connectOperator(request) {
|
|
39
|
+
const operatorConnectRequest = new pigeon_pb_1.OperatorConnectRequest();
|
|
40
|
+
operatorConnectRequest.setVideoid(request.videoId);
|
|
41
|
+
operatorConnectRequest.setClientid('');
|
|
42
|
+
return this.connectOperatorStream(request.projectId, operatorConnectRequest);
|
|
43
|
+
}
|
|
44
|
+
getDetails(request, callback) {
|
|
45
|
+
const getDetailsRequest = new pigeon_pb_1.GetDetailsRequest();
|
|
46
|
+
getDetailsRequest.setVideoid(request.videoId);
|
|
47
|
+
return this.getPeerDetails(request.projectId, getDetailsRequest, callback);
|
|
48
|
+
}
|
|
49
|
+
offerConnection(request, callback) {
|
|
50
|
+
const offerConnectionRequest = new pigeon_pb_1.OfferRequest();
|
|
51
|
+
offerConnectionRequest.setSdp(btoa(JSON.stringify(request.rtcSessionDescription)));
|
|
52
|
+
offerConnectionRequest.setVideocommand(request.videoCommand);
|
|
53
|
+
offerConnectionRequest.setVideoid(request.videoId);
|
|
54
|
+
offerConnectionRequest.setClientid(request.clientId || '');
|
|
55
|
+
offerConnectionRequest.setVideoformat(request.videoFormat || 'H264');
|
|
56
|
+
return this.offerPeerConnection(request.projectId, offerConnectionRequest, callback);
|
|
57
|
+
}
|
|
58
|
+
addIceCandidate(request, callback) {
|
|
59
|
+
const addIceCandidateRequest = new pigeon_pb_1.AddIceCandidateRequest();
|
|
60
|
+
addIceCandidateRequest.setVideoid(request.videoId);
|
|
61
|
+
addIceCandidateRequest.setCandidate(request.candidate);
|
|
62
|
+
return this.addPeerIceCandidate(request.projectId, addIceCandidateRequest, callback);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.WebRTCSignallingStreamAbstract = WebRTCSignallingStreamAbstract;
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export declare const API_APPLICATION_AUTH_URL = "https://{url}/applications/auth";
|
|
2
|
+
export declare const API_ADMIN_USER_INVITATION_URL = "https://{url}/admin/users/invitations";
|
|
3
|
+
export declare const API_USER_URL = "https://{url}/users";
|
|
4
|
+
export declare const API_USER_AUTH_URL = "https://{url}/users/auth";
|
|
5
|
+
export declare const API_USER_TOKEN_URL = "https://{url}/users/token";
|
|
6
|
+
export declare const API_USER_PASSWORD_RESET_URL = "https://{url}/users/forgotten-password-reset";
|
|
7
|
+
export declare const API_USER_PASSWORD_FORGOT_URL = "https://{url}/users/forgotten-password";
|
|
8
|
+
export declare const API_USER_INVITATION_URL = "https://{url}/users/invitations";
|
|
9
|
+
export declare const API_USER_INVITATION_ACCEPT_URL = "https://{url}/users/invitations/{invitationId}/accept";
|
|
10
|
+
export declare const API_USER_INVITATION_CHECK_URL = "https://{url}/users/invitations/{invitationId}/check";
|
|
11
|
+
export declare const API_USER_VERIFY_EMAIL_URL = "https://{url}/users/verification-email";
|
|
12
|
+
export declare const API_USER_PAT_URL = "https://{url}/users/pat";
|
|
13
|
+
export declare const API_USER_PAT_TOKEN_URL = "https://{url}/users/pat/{token}";
|
|
14
|
+
export declare const API_ACCOUNT_URL = "https://{url}/accounts";
|
|
15
|
+
export declare const API_ACCOUNT_ID_URL = "https://{url}/accounts/{accountId}";
|
|
16
|
+
export declare const API_ACCOUNT_ACTIVATE_URL = "https://{url}/accounts/{accountId}/activate";
|
|
17
|
+
export declare const API_AUTH_USER_ACCOUNT_USER_URL = "https://{url}/accounts/{accountId}/users";
|
|
18
|
+
export declare const API_AUTH_USER_ACCOUNT_USER_ID_URL = "https://{url}/accounts/{accountId}/users/{userId}";
|
|
19
|
+
export declare const API_ACCOUNT_SETTINGS_URL = "https://{url}/accounts/{accountId}/settings";
|
|
20
|
+
export declare const API_ACCOUNT_INTEGRATION_URL = "https://{url}/accounts/{accountId}/integrations/{integrationId}";
|
|
21
|
+
export declare const API_ACCOUNT_INTEGRATION_TYPE_URL = "https://{url}/accounts/{accountId}/integrations/{integrationId}/{integrationType}";
|
|
22
|
+
export declare const API_SERVER_TIME_URL = "https://{url}/time";
|
|
23
|
+
export declare const API_ACCOUNT_PROJECT_URL = "https://{url}/accounts/{accountId}/projects";
|
|
24
|
+
export declare const API_ACCOUNT_PROJECT_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}";
|
|
25
|
+
export declare const API_ACCOUNT_PROJECT_USER_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/users";
|
|
26
|
+
export declare const API_ACCOUNT_PROJECT_USER_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/users/{userId}";
|
|
27
|
+
export declare const API_ACCOUNT_PROJECT_APPLICATION_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/applications";
|
|
28
|
+
export declare const API_ACCOUNT_PROJECT_APPLICATION_ID_URL = "https://{url}/accounts/{accountId}/projects/{projectId}/applications/{applicationId}";
|
|
29
|
+
export declare const API_PROJECT_URL = "https://{url}/projects";
|
|
30
|
+
export declare const API_PROJECT_ID_URL = "https://{url}/projects/{projectId}";
|
|
31
|
+
export declare const API_PROJECT_USERS_URL = "https://{url}/projects/{projectId}/users";
|
|
32
|
+
export declare const API_PROJECT_ASSET_URL = "https://{url}/projects/{projectId}/assets";
|
|
33
|
+
export declare const API_PROJECT_ASSET_PATH_URL = "https://{url}/projects/{projectId}/assets/{filePath}";
|
|
34
|
+
export declare const API_PROJECT_ASSET_ROBOTS_SYNC_DEFINITION_PATH_URL = "https://{url}/projects/{projectId}/robots/{callsign}/sync-definitions";
|
|
35
|
+
export declare const API_PROJECT_ASSET_PROFILES_SYNC_DEFINITION_PATH_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/sync-definitions";
|
|
36
|
+
export declare const API_PROJECT_ROBOT_ASSET_PATH_URL = "https://{url}/projects/{projectId}/robots/{callsign}/assets";
|
|
37
|
+
export declare const API_PROJECT_FLOW_ASSET_PATH_URL = "https://{url}/projects/{projectId}/flows/{callsign}/assets";
|
|
38
|
+
export declare const API_PROJECT_ROBOT_URL = "https://{url}/projects/{projectId}/robots";
|
|
39
|
+
export declare const API_PROJECT_ROBOT_ID_URL = "https://{url}/projects/{projectId}/robots/{callsign}";
|
|
40
|
+
export declare const API_PROJECT_ROBOT_ATTRIBUTES_URL = "https://{url}/projects/{projectId}/robots/{callsign}/attributes";
|
|
41
|
+
export declare const API_PROJECT_ROBOT_DEFINITION_URL = "https://{url}/projects/{projectId}/robots/{callsign}/robot-definitions";
|
|
42
|
+
export declare const API_PROJECT_ROBOT_REGISTER_URL = "https://{url}/projects/{projectId}/robots/{callsign}/register";
|
|
43
|
+
export declare const API_PROJECT_ROBOT_EVENT_URL = "https://{url}/projects/{projectId}/robots/{callsign}/event-definitions";
|
|
44
|
+
export declare const API_PROJECT_ROBOT_EVENT_HISTORY_URL = "https://{url}/projects/{projectId}/robots/{callsign}/event-definitions/{eventDefinitionId}/history";
|
|
45
|
+
export declare const API_PROJECT_ROBOT_SETTING_URL = "https://{url}/projects/{projectId}/robots/{callsign}/settings";
|
|
46
|
+
export declare const API_PROJECT_ROBOT_AGENT_URL = "https://{url}/projects/{projectId}/robots/{callsign}/agent-settings";
|
|
47
|
+
export declare const API_PROJECT_ROBOT_COMMAND_URL = "https://{url}/projects/{projectId}/robots/{callsign}/commands";
|
|
48
|
+
export declare const API_PROJECT_ROBOT_COMMAND2_URL = "https://{url}/projects/{projectId}/robots/{callsign}/commands-v2";
|
|
49
|
+
export declare const API_PROJECT_ROBOT_BUTTON_URL = "https://{url}/projects/{projectId}/robots/{callsign}/buttons";
|
|
50
|
+
export declare const API_PROJECT_ROBOT_TRIGGER_URL = "https://{url}/projects/{projectId}/robots/{callsign}/triggers";
|
|
51
|
+
export declare const API_PROJECT_ROBOT_GAMEPAD_URL = "https://{url}/projects/{projectId}/robots/{callsign}/gamepads";
|
|
52
|
+
export declare const API_PROJECT_OPERATION_URL = "https://{url}/projects/{projectId}/operations";
|
|
53
|
+
export declare const API_PROJECT_OPERATION_ID_URL = "https://{url}/projects/{projectId}/operations/{operationId}";
|
|
54
|
+
export declare const API_PROJECT_DASHBOARD_URL = "https://{url}/projects/{projectId}/dashboards";
|
|
55
|
+
export declare const API_PROJECT_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}";
|
|
56
|
+
export declare const API_PROJECT_DASHBOARD_WIDGET_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}/widgets";
|
|
57
|
+
export declare const API_PROJECT_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/dashboards/{dashboardId}/custom-widgets";
|
|
58
|
+
export declare const API_PROJECT_COLLECTION_ID_URL = "https://{url}/projects/{projectId}/doc-collections/{collectionId}";
|
|
59
|
+
export declare const API_PROJECT_COLLECTION_DOCS_URL = "https://{url}/projects/{projectId}/doc-collections/{collectionId}/docs";
|
|
60
|
+
export declare const API_PROJECT_VROBOT_DETAILS_URL = "https://{url}/projects/{projectId}/vrobots/{callsign}/details";
|
|
61
|
+
export declare const API_PROJECT_VROBOT_DEPLOY_URL = "https://{url}/projects/{projectId}/vrobots/{callsign}/deploy";
|
|
62
|
+
export declare const API_PROJECT_DEFINITION_URL = "https://{url}/projects/{projectId}/robot-definitions";
|
|
63
|
+
export declare const API_PROJECT_DEFINITION_ID_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}";
|
|
64
|
+
export declare const API_PROJECT_DEFINITION_STREAM_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/streams";
|
|
65
|
+
export declare const API_PROJECT_DEFINITION_COPY_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/copy";
|
|
66
|
+
export declare const API_PROJECT_DEFINITION_DASHBOARD_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboards";
|
|
67
|
+
export declare const API_PROJECT_DEFINITION_BLOB_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/dashboard-blob";
|
|
68
|
+
export declare const API_PROJECT_DEFINITION_SETTING_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/settings";
|
|
69
|
+
export declare const API_PROJECT_DEFINITION_AGENT_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/agent-settings";
|
|
70
|
+
export declare const API_PROJECT_DEFINITION_COMMAND_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands";
|
|
71
|
+
export declare const API_PROJECT_DEFINITION_COMMAND2_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/commands-v2";
|
|
72
|
+
export declare const API_PROJECT_DEFINITION_EVENT_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/event-definitions";
|
|
73
|
+
export declare const API_PROJECT_DEFINITION_ACTION_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/command-actions";
|
|
74
|
+
export declare const API_PROJECT_DEFINITION_BUTTON_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/buttons";
|
|
75
|
+
export declare const API_PROJECT_DEFINITION_TRIGGER_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/triggers";
|
|
76
|
+
export declare const API_PROJECT_DEFINITION_GAMEPAD_URL = "https://{url}/projects/{projectId}/robot-definitions/{definitionId}/gamepads";
|
|
77
|
+
export declare const API_PROJECT_GROUP_TYPE_URL = "https://{url}/projects/{projectId}/config-groups/{type}";
|
|
78
|
+
export declare const API_PROJECT_GROUP_TYPE_ID_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}";
|
|
79
|
+
export declare const API_PROJECT_GROUP_TYPE_PUBLISH_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/publish";
|
|
80
|
+
export declare const API_PROJECT_GROUP_TYPE_CONFIG_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{configId}";
|
|
81
|
+
export declare const API_PROJECT_GROUP_TYPE_VERSION_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{version}";
|
|
82
|
+
export declare const API_PROJECT_GROUP_TYPE_OWNER_ID_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/owner/{ownerId}";
|
|
83
|
+
export declare const API_PROJECT_GROUP_TYPE_OWNER_OVERRIDE_URL = "https://{url}/projects/{projectId}/config-groups/{type}/{configGroupId}/{ownerId}/override";
|
|
84
|
+
export declare const API_PROJECT_FUNCTION_URL = "https://{url}/projects/{projectId}/functions";
|
|
85
|
+
export declare const API_PROJECT_FUNCTION_ID_URL = "https://{url}/projects/{projectId}/functions/{functionId}";
|
|
86
|
+
export declare const API_PROJECT_FUNCTION_RUN_URL = "https://{url}/projects/{projectId}/functions/{functionId}/run";
|
|
87
|
+
export declare const API_PROJECT_FUNCTION_POD_URL = "https://{url}/projects/{projectId}/functions/{functionId}/pods";
|
|
88
|
+
export declare const API_PROJECT_EXPORT_URL = "https://{url}/projects/{projectId}/export-jobs";
|
|
89
|
+
export declare const API_PROJECT_STREAM_URL = "https://{url}/projects/{projectId}/streams";
|
|
90
|
+
export declare const API_PROJECT_STREAM_ID_URL = "https://{url}/projects/{projectId}/streams/{streamId}";
|
|
91
|
+
export declare const API_PROJECT_STREAM_DATA_URL = "https://{url}/projects/{projectId}/streams/{streamId}/data";
|
|
92
|
+
export declare const API_PROJECT_STREAM_CALLSIGN_URL = "https://{url}/projects/{projectId}/streams/{streamId}/callsigns";
|
|
93
|
+
export declare const API_PROJECT_ROBOT_DASHBOARD_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards";
|
|
94
|
+
export declare const API_PROJECT_ROBOT_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}";
|
|
95
|
+
export declare const API_PROJECT_ROBOT_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/robots/{callsign}/dashboards/{dashboardId}/custom-widgets";
|
|
96
|
+
export declare const API_PROJECT_CALLSIGN_STREAM_URL = "https://{url}/projects/{projectId}/callsigns/{callsign}/streams";
|
|
97
|
+
export declare const API_PROJECT_CALLSIGN_WORKFLOW_URL = "https://{url}/projects/{projectId}/callsigns/{callsign}/workflows";
|
|
98
|
+
export declare const API_PROJECT_WORKFLOW_URL = "https://{url}/projects/{projectId}/workflows";
|
|
99
|
+
export declare const API_PROJECT_ROBOT_DEPLOYED_WORKFLOW_URL = "https://{url}/projects/{projectId}/robots/{callsign}/automate/flows/deployments";
|
|
100
|
+
export declare const API_PROJECT_WORKFLOW_ID_URL = "https://{url}/projects/{projectId}/workflows/{workflowId}";
|
|
101
|
+
export declare const API_PROJECT_PROFILE_DASHBOARD_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards";
|
|
102
|
+
export declare const API_PROJECT_PROFILE_DASHBOARD_ID_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}";
|
|
103
|
+
export declare const API_PROJECT_PROFILE_DASHBOARD_CUSTOM_WIDGET_URL = "https://{url}/projects/{projectId}/profiles/{profileId}/dashboards/{dashboardId}/custom-widgets";
|
|
104
|
+
export declare const API_TEMPLATE_DEPLOY_URL = "https://{url}/templates/vrobot-deployment";
|
|
105
|
+
export declare const API_TEMPLATE_PROVISION_URL = "https://{url}/templates/rocos-provisioning-templates";
|
|
106
|
+
export declare const API_TEMPLATE_PROVISION_ID_URL = "https://{url}/templates/rocos-provisioning-templates/exec/{templateId}";
|
|
107
|
+
export declare const API_TEMPLATE_EXPORTER_URL = "https://{url}/templates/project-stream-data-exporter";
|
|
108
|
+
export declare const API_SOURCE_SCHEMA_URL = "https://{url}/sourceschemas";
|
|
109
|
+
export declare const API_SOURCE_URL = "https://{url}/sources";
|
|
110
|
+
export declare const API_SOURCE_ID_URL = "https://{url}/sources/{sourceId}";
|
|
111
|
+
export declare const API_PROJECT_SCHEDULES_URL = "https://{url}/projects/{projectId}/robots/{callsign}/schedules";
|
|
112
|
+
export declare const API_SPOTTY_URL = "https://{url}/spotty";
|
|
113
|
+
export declare const API_DD_INTEGRATION_PLANS_URL = "https://{url}/projects/{projectId}/dd/plans";
|
|
114
|
+
export declare const API_DD_INTEGRATION_PLAN_BY_ID_URL = "https://{url}/projects/{projectId}/dd/plan/{planId}";
|
|
115
|
+
export declare const API_DD_INTEGRATION_OVERLAYS_URL = "https://{url}/projects/{projectId}/dd/overlays";
|
|
116
|
+
export declare const API_DD_INTEGRATION_ISSUES_URL = "https://{url}/projects/{projectId}/dd/issues";
|
|
117
|
+
export declare const API_MAPS_URL = "https://{url}/projects/{projectId}/maps";
|
|
118
|
+
export declare const API_MAPS_INIT_DB_URL = "https://{url}/projects/{projectId}/maps/init-db";
|
|
119
|
+
export declare const API_MAPS_MERGE_URL = "https://{url}/projects/{projectId}/maps/merge";
|
|
120
|
+
export declare const API_MAP_ID_URL = "https://{url}/projects/{projectId}/maps/{mapId}";
|
|
121
|
+
export declare const API_MAPS_COPY_URL = "https://{url}/projects/{projectId}/maps/{mapId}/copy";
|