@dronedeploy/rocos-js-sdk 1.0.0-alpha-2 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,975 @@
|
|
1
|
+
@angular/common
|
2
|
+
MIT
|
3
|
+
|
4
|
+
@angular/core
|
5
|
+
MIT
|
6
|
+
|
7
|
+
@angular/platform-browser
|
8
|
+
MIT
|
9
|
+
|
10
|
+
@angular/router
|
11
|
+
MIT
|
12
|
+
|
13
|
+
@babel/runtime
|
14
|
+
MIT
|
15
|
+
MIT License
|
16
|
+
|
17
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
18
|
+
|
19
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
20
|
+
a copy of this software and associated documentation files (the
|
21
|
+
"Software"), to deal in the Software without restriction, including
|
22
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
23
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
24
|
+
permit persons to whom the Software is furnished to do so, subject to
|
25
|
+
the following conditions:
|
26
|
+
|
27
|
+
The above copyright notice and this permission notice shall be
|
28
|
+
included in all copies or substantial portions of the Software.
|
29
|
+
|
30
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
31
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
32
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
33
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
34
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
35
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
36
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
37
|
+
|
38
|
+
|
39
|
+
@improbable-eng/grpc-web
|
40
|
+
Apache-2.0
|
41
|
+
|
42
|
+
@protobufjs/aspromise
|
43
|
+
BSD-3-Clause
|
44
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
45
|
+
|
46
|
+
Redistribution and use in source and binary forms, with or without
|
47
|
+
modification, are permitted provided that the following conditions are
|
48
|
+
met:
|
49
|
+
|
50
|
+
* Redistributions of source code must retain the above copyright
|
51
|
+
notice, this list of conditions and the following disclaimer.
|
52
|
+
* Redistributions in binary form must reproduce the above copyright
|
53
|
+
notice, this list of conditions and the following disclaimer in the
|
54
|
+
documentation and/or other materials provided with the distribution.
|
55
|
+
* Neither the name of its author, nor the names of its contributors
|
56
|
+
may be used to endorse or promote products derived from this software
|
57
|
+
without specific prior written permission.
|
58
|
+
|
59
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
60
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
61
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
62
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
63
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
64
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
65
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
66
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
67
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
68
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
69
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
70
|
+
|
71
|
+
|
72
|
+
@protobufjs/base64
|
73
|
+
BSD-3-Clause
|
74
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
75
|
+
|
76
|
+
Redistribution and use in source and binary forms, with or without
|
77
|
+
modification, are permitted provided that the following conditions are
|
78
|
+
met:
|
79
|
+
|
80
|
+
* Redistributions of source code must retain the above copyright
|
81
|
+
notice, this list of conditions and the following disclaimer.
|
82
|
+
* Redistributions in binary form must reproduce the above copyright
|
83
|
+
notice, this list of conditions and the following disclaimer in the
|
84
|
+
documentation and/or other materials provided with the distribution.
|
85
|
+
* Neither the name of its author, nor the names of its contributors
|
86
|
+
may be used to endorse or promote products derived from this software
|
87
|
+
without specific prior written permission.
|
88
|
+
|
89
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
90
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
91
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
92
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
93
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
94
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
95
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
96
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
97
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
98
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
99
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
100
|
+
|
101
|
+
|
102
|
+
@protobufjs/eventemitter
|
103
|
+
BSD-3-Clause
|
104
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
105
|
+
|
106
|
+
Redistribution and use in source and binary forms, with or without
|
107
|
+
modification, are permitted provided that the following conditions are
|
108
|
+
met:
|
109
|
+
|
110
|
+
* Redistributions of source code must retain the above copyright
|
111
|
+
notice, this list of conditions and the following disclaimer.
|
112
|
+
* Redistributions in binary form must reproduce the above copyright
|
113
|
+
notice, this list of conditions and the following disclaimer in the
|
114
|
+
documentation and/or other materials provided with the distribution.
|
115
|
+
* Neither the name of its author, nor the names of its contributors
|
116
|
+
may be used to endorse or promote products derived from this software
|
117
|
+
without specific prior written permission.
|
118
|
+
|
119
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
120
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
121
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
122
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
123
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
124
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
125
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
126
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
127
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
128
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
129
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
130
|
+
|
131
|
+
|
132
|
+
@protobufjs/float
|
133
|
+
BSD-3-Clause
|
134
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
135
|
+
|
136
|
+
Redistribution and use in source and binary forms, with or without
|
137
|
+
modification, are permitted provided that the following conditions are
|
138
|
+
met:
|
139
|
+
|
140
|
+
* Redistributions of source code must retain the above copyright
|
141
|
+
notice, this list of conditions and the following disclaimer.
|
142
|
+
* Redistributions in binary form must reproduce the above copyright
|
143
|
+
notice, this list of conditions and the following disclaimer in the
|
144
|
+
documentation and/or other materials provided with the distribution.
|
145
|
+
* Neither the name of its author, nor the names of its contributors
|
146
|
+
may be used to endorse or promote products derived from this software
|
147
|
+
without specific prior written permission.
|
148
|
+
|
149
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
150
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
151
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
152
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
153
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
154
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
155
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
156
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
157
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
158
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
159
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
160
|
+
|
161
|
+
|
162
|
+
@protobufjs/inquire
|
163
|
+
BSD-3-Clause
|
164
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
165
|
+
|
166
|
+
Redistribution and use in source and binary forms, with or without
|
167
|
+
modification, are permitted provided that the following conditions are
|
168
|
+
met:
|
169
|
+
|
170
|
+
* Redistributions of source code must retain the above copyright
|
171
|
+
notice, this list of conditions and the following disclaimer.
|
172
|
+
* Redistributions in binary form must reproduce the above copyright
|
173
|
+
notice, this list of conditions and the following disclaimer in the
|
174
|
+
documentation and/or other materials provided with the distribution.
|
175
|
+
* Neither the name of its author, nor the names of its contributors
|
176
|
+
may be used to endorse or promote products derived from this software
|
177
|
+
without specific prior written permission.
|
178
|
+
|
179
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
180
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
181
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
182
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
183
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
184
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
185
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
186
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
187
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
188
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
189
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
190
|
+
|
191
|
+
|
192
|
+
@protobufjs/pool
|
193
|
+
BSD-3-Clause
|
194
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
195
|
+
|
196
|
+
Redistribution and use in source and binary forms, with or without
|
197
|
+
modification, are permitted provided that the following conditions are
|
198
|
+
met:
|
199
|
+
|
200
|
+
* Redistributions of source code must retain the above copyright
|
201
|
+
notice, this list of conditions and the following disclaimer.
|
202
|
+
* Redistributions in binary form must reproduce the above copyright
|
203
|
+
notice, this list of conditions and the following disclaimer in the
|
204
|
+
documentation and/or other materials provided with the distribution.
|
205
|
+
* Neither the name of its author, nor the names of its contributors
|
206
|
+
may be used to endorse or promote products derived from this software
|
207
|
+
without specific prior written permission.
|
208
|
+
|
209
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
210
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
211
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
212
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
213
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
214
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
215
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
216
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
217
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
218
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
219
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
220
|
+
|
221
|
+
|
222
|
+
@protobufjs/utf8
|
223
|
+
BSD-3-Clause
|
224
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
225
|
+
|
226
|
+
Redistribution and use in source and binary forms, with or without
|
227
|
+
modification, are permitted provided that the following conditions are
|
228
|
+
met:
|
229
|
+
|
230
|
+
* Redistributions of source code must retain the above copyright
|
231
|
+
notice, this list of conditions and the following disclaimer.
|
232
|
+
* Redistributions in binary form must reproduce the above copyright
|
233
|
+
notice, this list of conditions and the following disclaimer in the
|
234
|
+
documentation and/or other materials provided with the distribution.
|
235
|
+
* Neither the name of its author, nor the names of its contributors
|
236
|
+
may be used to endorse or promote products derived from this software
|
237
|
+
without specific prior written permission.
|
238
|
+
|
239
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
240
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
241
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
242
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
243
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
244
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
245
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
246
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
247
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
248
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
249
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
250
|
+
|
251
|
+
|
252
|
+
@team-rocos/rocos-js-sdk
|
253
|
+
MIT
|
254
|
+
|
255
|
+
browser-headers
|
256
|
+
Apache-2.0
|
257
|
+
Apache License
|
258
|
+
Version 2.0, January 2004
|
259
|
+
http://www.apache.org/licenses/
|
260
|
+
|
261
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
262
|
+
|
263
|
+
1. Definitions.
|
264
|
+
|
265
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
266
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
267
|
+
|
268
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
269
|
+
the copyright owner that is granting the License.
|
270
|
+
|
271
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
272
|
+
other entities that control, are controlled by, or are under common
|
273
|
+
control with that entity. For the purposes of this definition,
|
274
|
+
"control" means (i) the power, direct or indirect, to cause the
|
275
|
+
direction or management of such entity, whether by contract or
|
276
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
277
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
278
|
+
|
279
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
280
|
+
exercising permissions granted by this License.
|
281
|
+
|
282
|
+
"Source" form shall mean the preferred form for making modifications,
|
283
|
+
including but not limited to software source code, documentation
|
284
|
+
source, and configuration files.
|
285
|
+
|
286
|
+
"Object" form shall mean any form resulting from mechanical
|
287
|
+
transformation or translation of a Source form, including but
|
288
|
+
not limited to compiled object code, generated documentation,
|
289
|
+
and conversions to other media types.
|
290
|
+
|
291
|
+
"Work" shall mean the work of authorship, whether in Source or
|
292
|
+
Object form, made available under the License, as indicated by a
|
293
|
+
copyright notice that is included in or attached to the work
|
294
|
+
(an example is provided in the Appendix below).
|
295
|
+
|
296
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
297
|
+
form, that is based on (or derived from) the Work and for which the
|
298
|
+
editorial revisions, annotations, elaborations, or other modifications
|
299
|
+
represent, as a whole, an original work of authorship. For the purposes
|
300
|
+
of this License, Derivative Works shall not include works that remain
|
301
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
302
|
+
the Work and Derivative Works thereof.
|
303
|
+
|
304
|
+
"Contribution" shall mean any work of authorship, including
|
305
|
+
the original version of the Work and any modifications or additions
|
306
|
+
to that Work or Derivative Works thereof, that is intentionally
|
307
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
308
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
309
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
310
|
+
means any form of electronic, verbal, or written communication sent
|
311
|
+
to the Licensor or its representatives, including but not limited to
|
312
|
+
communication on electronic mailing lists, source code control systems,
|
313
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
314
|
+
Licensor for the purpose of discussing and improving the Work, but
|
315
|
+
excluding communication that is conspicuously marked or otherwise
|
316
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
317
|
+
|
318
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
319
|
+
on behalf of whom a Contribution has been received by Licensor and
|
320
|
+
subsequently incorporated within the Work.
|
321
|
+
|
322
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
323
|
+
this License, each Contributor hereby grants to You a perpetual,
|
324
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
325
|
+
copyright license to reproduce, prepare Derivative Works of,
|
326
|
+
publicly display, publicly perform, sublicense, and distribute the
|
327
|
+
Work and such Derivative Works in Source or Object form.
|
328
|
+
|
329
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
330
|
+
this License, each Contributor hereby grants to You a perpetual,
|
331
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
332
|
+
(except as stated in this section) patent license to make, have made,
|
333
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
334
|
+
where such license applies only to those patent claims licensable
|
335
|
+
by such Contributor that are necessarily infringed by their
|
336
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
337
|
+
with the Work to which such Contribution(s) was submitted. If You
|
338
|
+
institute patent litigation against any entity (including a
|
339
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
340
|
+
or a Contribution incorporated within the Work constitutes direct
|
341
|
+
or contributory patent infringement, then any patent licenses
|
342
|
+
granted to You under this License for that Work shall terminate
|
343
|
+
as of the date such litigation is filed.
|
344
|
+
|
345
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
346
|
+
Work or Derivative Works thereof in any medium, with or without
|
347
|
+
modifications, and in Source or Object form, provided that You
|
348
|
+
meet the following conditions:
|
349
|
+
|
350
|
+
(a) You must give any other recipients of the Work or
|
351
|
+
Derivative Works a copy of this License; and
|
352
|
+
|
353
|
+
(b) You must cause any modified files to carry prominent notices
|
354
|
+
stating that You changed the files; and
|
355
|
+
|
356
|
+
(c) You must retain, in the Source form of any Derivative Works
|
357
|
+
that You distribute, all copyright, patent, trademark, and
|
358
|
+
attribution notices from the Source form of the Work,
|
359
|
+
excluding those notices that do not pertain to any part of
|
360
|
+
the Derivative Works; and
|
361
|
+
|
362
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
363
|
+
distribution, then any Derivative Works that You distribute must
|
364
|
+
include a readable copy of the attribution notices contained
|
365
|
+
within such NOTICE file, excluding those notices that do not
|
366
|
+
pertain to any part of the Derivative Works, in at least one
|
367
|
+
of the following places: within a NOTICE text file distributed
|
368
|
+
as part of the Derivative Works; within the Source form or
|
369
|
+
documentation, if provided along with the Derivative Works; or,
|
370
|
+
within a display generated by the Derivative Works, if and
|
371
|
+
wherever such third-party notices normally appear. The contents
|
372
|
+
of the NOTICE file are for informational purposes only and
|
373
|
+
do not modify the License. You may add Your own attribution
|
374
|
+
notices within Derivative Works that You distribute, alongside
|
375
|
+
or as an addendum to the NOTICE text from the Work, provided
|
376
|
+
that such additional attribution notices cannot be construed
|
377
|
+
as modifying the License.
|
378
|
+
|
379
|
+
You may add Your own copyright statement to Your modifications and
|
380
|
+
may provide additional or different license terms and conditions
|
381
|
+
for use, reproduction, or distribution of Your modifications, or
|
382
|
+
for any such Derivative Works as a whole, provided Your use,
|
383
|
+
reproduction, and distribution of the Work otherwise complies with
|
384
|
+
the conditions stated in this License.
|
385
|
+
|
386
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
387
|
+
any Contribution intentionally submitted for inclusion in the Work
|
388
|
+
by You to the Licensor shall be under the terms and conditions of
|
389
|
+
this License, without any additional terms or conditions.
|
390
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
391
|
+
the terms of any separate license agreement you may have executed
|
392
|
+
with Licensor regarding such Contributions.
|
393
|
+
|
394
|
+
6. Trademarks. This License does not grant permission to use the trade
|
395
|
+
names, trademarks, service marks, or product names of the Licensor,
|
396
|
+
except as required for reasonable and customary use in describing the
|
397
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
398
|
+
|
399
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
400
|
+
agreed to in writing, Licensor provides the Work (and each
|
401
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
402
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
403
|
+
implied, including, without limitation, any warranties or conditions
|
404
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
405
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
406
|
+
appropriateness of using or redistributing the Work and assume any
|
407
|
+
risks associated with Your exercise of permissions under this License.
|
408
|
+
|
409
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
410
|
+
whether in tort (including negligence), contract, or otherwise,
|
411
|
+
unless required by applicable law (such as deliberate and grossly
|
412
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
413
|
+
liable to You for damages, including any direct, indirect, special,
|
414
|
+
incidental, or consequential damages of any character arising as a
|
415
|
+
result of this License or out of the use or inability to use the
|
416
|
+
Work (including but not limited to damages for loss of goodwill,
|
417
|
+
work stoppage, computer failure or malfunction, or any and all
|
418
|
+
other commercial damages or losses), even if such Contributor
|
419
|
+
has been advised of the possibility of such damages.
|
420
|
+
|
421
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
422
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
423
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
424
|
+
or other liability obligations and/or rights consistent with this
|
425
|
+
License. However, in accepting such obligations, You may act only
|
426
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
427
|
+
of any other Contributor, and only if You agree to indemnify,
|
428
|
+
defend, and hold each Contributor harmless for any liability
|
429
|
+
incurred by, or claims asserted against, such Contributor by reason
|
430
|
+
of your accepting any such warranty or additional liability.
|
431
|
+
|
432
|
+
loglevel
|
433
|
+
MIT
|
434
|
+
Copyright (c) 2013 Tim Perry
|
435
|
+
|
436
|
+
Permission is hereby granted, free of charge, to any person
|
437
|
+
obtaining a copy of this software and associated documentation
|
438
|
+
files (the "Software"), to deal in the Software without
|
439
|
+
restriction, including without limitation the rights to use,
|
440
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
441
|
+
copies of the Software, and to permit persons to whom the
|
442
|
+
Software is furnished to do so, subject to the following
|
443
|
+
conditions:
|
444
|
+
|
445
|
+
The above copyright notice and this permission notice shall be
|
446
|
+
included in all copies or substantial portions of the Software.
|
447
|
+
|
448
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
449
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
450
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
451
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
452
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
453
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
454
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
455
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
456
|
+
|
457
|
+
|
458
|
+
loglevel-plugin-prefix
|
459
|
+
MIT
|
460
|
+
MIT License
|
461
|
+
|
462
|
+
Copyright (c) 2017 Evgeniy Pavlov
|
463
|
+
|
464
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
465
|
+
of this software and associated documentation files (the "Software"), to deal
|
466
|
+
in the Software without restriction, including without limitation the rights
|
467
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
468
|
+
copies of the Software, and to permit persons to whom the Software is
|
469
|
+
furnished to do so, subject to the following conditions:
|
470
|
+
|
471
|
+
The above copyright notice and this permission notice shall be included in all
|
472
|
+
copies or substantial portions of the Software.
|
473
|
+
|
474
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
475
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
476
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
477
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
478
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
479
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
480
|
+
SOFTWARE.
|
481
|
+
|
482
|
+
|
483
|
+
long
|
484
|
+
Apache-2.0
|
485
|
+
|
486
|
+
Apache License
|
487
|
+
Version 2.0, January 2004
|
488
|
+
http://www.apache.org/licenses/
|
489
|
+
|
490
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
491
|
+
|
492
|
+
1. Definitions.
|
493
|
+
|
494
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
495
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
496
|
+
|
497
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
498
|
+
the copyright owner that is granting the License.
|
499
|
+
|
500
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
501
|
+
other entities that control, are controlled by, or are under common
|
502
|
+
control with that entity. For the purposes of this definition,
|
503
|
+
"control" means (i) the power, direct or indirect, to cause the
|
504
|
+
direction or management of such entity, whether by contract or
|
505
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
506
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
507
|
+
|
508
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
509
|
+
exercising permissions granted by this License.
|
510
|
+
|
511
|
+
"Source" form shall mean the preferred form for making modifications,
|
512
|
+
including but not limited to software source code, documentation
|
513
|
+
source, and configuration files.
|
514
|
+
|
515
|
+
"Object" form shall mean any form resulting from mechanical
|
516
|
+
transformation or translation of a Source form, including but
|
517
|
+
not limited to compiled object code, generated documentation,
|
518
|
+
and conversions to other media types.
|
519
|
+
|
520
|
+
"Work" shall mean the work of authorship, whether in Source or
|
521
|
+
Object form, made available under the License, as indicated by a
|
522
|
+
copyright notice that is included in or attached to the work
|
523
|
+
(an example is provided in the Appendix below).
|
524
|
+
|
525
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
526
|
+
form, that is based on (or derived from) the Work and for which the
|
527
|
+
editorial revisions, annotations, elaborations, or other modifications
|
528
|
+
represent, as a whole, an original work of authorship. For the purposes
|
529
|
+
of this License, Derivative Works shall not include works that remain
|
530
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
531
|
+
the Work and Derivative Works thereof.
|
532
|
+
|
533
|
+
"Contribution" shall mean any work of authorship, including
|
534
|
+
the original version of the Work and any modifications or additions
|
535
|
+
to that Work or Derivative Works thereof, that is intentionally
|
536
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
537
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
538
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
539
|
+
means any form of electronic, verbal, or written communication sent
|
540
|
+
to the Licensor or its representatives, including but not limited to
|
541
|
+
communication on electronic mailing lists, source code control systems,
|
542
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
543
|
+
Licensor for the purpose of discussing and improving the Work, but
|
544
|
+
excluding communication that is conspicuously marked or otherwise
|
545
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
546
|
+
|
547
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
548
|
+
on behalf of whom a Contribution has been received by Licensor and
|
549
|
+
subsequently incorporated within the Work.
|
550
|
+
|
551
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
552
|
+
this License, each Contributor hereby grants to You a perpetual,
|
553
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
554
|
+
copyright license to reproduce, prepare Derivative Works of,
|
555
|
+
publicly display, publicly perform, sublicense, and distribute the
|
556
|
+
Work and such Derivative Works in Source or Object form.
|
557
|
+
|
558
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
559
|
+
this License, each Contributor hereby grants to You a perpetual,
|
560
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
561
|
+
(except as stated in this section) patent license to make, have made,
|
562
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
563
|
+
where such license applies only to those patent claims licensable
|
564
|
+
by such Contributor that are necessarily infringed by their
|
565
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
566
|
+
with the Work to which such Contribution(s) was submitted. If You
|
567
|
+
institute patent litigation against any entity (including a
|
568
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
569
|
+
or a Contribution incorporated within the Work constitutes direct
|
570
|
+
or contributory patent infringement, then any patent licenses
|
571
|
+
granted to You under this License for that Work shall terminate
|
572
|
+
as of the date such litigation is filed.
|
573
|
+
|
574
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
575
|
+
Work or Derivative Works thereof in any medium, with or without
|
576
|
+
modifications, and in Source or Object form, provided that You
|
577
|
+
meet the following conditions:
|
578
|
+
|
579
|
+
(a) You must give any other recipients of the Work or
|
580
|
+
Derivative Works a copy of this License; and
|
581
|
+
|
582
|
+
(b) You must cause any modified files to carry prominent notices
|
583
|
+
stating that You changed the files; and
|
584
|
+
|
585
|
+
(c) You must retain, in the Source form of any Derivative Works
|
586
|
+
that You distribute, all copyright, patent, trademark, and
|
587
|
+
attribution notices from the Source form of the Work,
|
588
|
+
excluding those notices that do not pertain to any part of
|
589
|
+
the Derivative Works; and
|
590
|
+
|
591
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
592
|
+
distribution, then any Derivative Works that You distribute must
|
593
|
+
include a readable copy of the attribution notices contained
|
594
|
+
within such NOTICE file, excluding those notices that do not
|
595
|
+
pertain to any part of the Derivative Works, in at least one
|
596
|
+
of the following places: within a NOTICE text file distributed
|
597
|
+
as part of the Derivative Works; within the Source form or
|
598
|
+
documentation, if provided along with the Derivative Works; or,
|
599
|
+
within a display generated by the Derivative Works, if and
|
600
|
+
wherever such third-party notices normally appear. The contents
|
601
|
+
of the NOTICE file are for informational purposes only and
|
602
|
+
do not modify the License. You may add Your own attribution
|
603
|
+
notices within Derivative Works that You distribute, alongside
|
604
|
+
or as an addendum to the NOTICE text from the Work, provided
|
605
|
+
that such additional attribution notices cannot be construed
|
606
|
+
as modifying the License.
|
607
|
+
|
608
|
+
You may add Your own copyright statement to Your modifications and
|
609
|
+
may provide additional or different license terms and conditions
|
610
|
+
for use, reproduction, or distribution of Your modifications, or
|
611
|
+
for any such Derivative Works as a whole, provided Your use,
|
612
|
+
reproduction, and distribution of the Work otherwise complies with
|
613
|
+
the conditions stated in this License.
|
614
|
+
|
615
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
616
|
+
any Contribution intentionally submitted for inclusion in the Work
|
617
|
+
by You to the Licensor shall be under the terms and conditions of
|
618
|
+
this License, without any additional terms or conditions.
|
619
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
620
|
+
the terms of any separate license agreement you may have executed
|
621
|
+
with Licensor regarding such Contributions.
|
622
|
+
|
623
|
+
6. Trademarks. This License does not grant permission to use the trade
|
624
|
+
names, trademarks, service marks, or product names of the Licensor,
|
625
|
+
except as required for reasonable and customary use in describing the
|
626
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
627
|
+
|
628
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
629
|
+
agreed to in writing, Licensor provides the Work (and each
|
630
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
631
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
632
|
+
implied, including, without limitation, any warranties or conditions
|
633
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
634
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
635
|
+
appropriateness of using or redistributing the Work and assume any
|
636
|
+
risks associated with Your exercise of permissions under this License.
|
637
|
+
|
638
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
639
|
+
whether in tort (including negligence), contract, or otherwise,
|
640
|
+
unless required by applicable law (such as deliberate and grossly
|
641
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
642
|
+
liable to You for damages, including any direct, indirect, special,
|
643
|
+
incidental, or consequential damages of any character arising as a
|
644
|
+
result of this License or out of the use or inability to use the
|
645
|
+
Work (including but not limited to damages for loss of goodwill,
|
646
|
+
work stoppage, computer failure or malfunction, or any and all
|
647
|
+
other commercial damages or losses), even if such Contributor
|
648
|
+
has been advised of the possibility of such damages.
|
649
|
+
|
650
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
651
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
652
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
653
|
+
or other liability obligations and/or rights consistent with this
|
654
|
+
License. However, in accepting such obligations, You may act only
|
655
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
656
|
+
of any other Contributor, and only if You agree to indemnify,
|
657
|
+
defend, and hold each Contributor harmless for any liability
|
658
|
+
incurred by, or claims asserted against, such Contributor by reason
|
659
|
+
of your accepting any such warranty or additional liability.
|
660
|
+
|
661
|
+
END OF TERMS AND CONDITIONS
|
662
|
+
|
663
|
+
APPENDIX: How to apply the Apache License to your work.
|
664
|
+
|
665
|
+
To apply the Apache License to your work, attach the following
|
666
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
667
|
+
replaced with your own identifying information. (Don't include
|
668
|
+
the brackets!) The text should be enclosed in the appropriate
|
669
|
+
comment syntax for the file format. We also recommend that a
|
670
|
+
file or class name and description of purpose be included on the
|
671
|
+
same "printed page" as the copyright notice for easier
|
672
|
+
identification within third-party archives.
|
673
|
+
|
674
|
+
Copyright [yyyy] [name of copyright owner]
|
675
|
+
|
676
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
677
|
+
you may not use this file except in compliance with the License.
|
678
|
+
You may obtain a copy of the License at
|
679
|
+
|
680
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
681
|
+
|
682
|
+
Unless required by applicable law or agreed to in writing, software
|
683
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
684
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
685
|
+
See the License for the specific language governing permissions and
|
686
|
+
limitations under the License.
|
687
|
+
|
688
|
+
|
689
|
+
protobufjs
|
690
|
+
BSD-3-Clause
|
691
|
+
This license applies to all parts of protobuf.js except those files
|
692
|
+
either explicitly including or referencing a different license or
|
693
|
+
located in a directory containing a different LICENSE file.
|
694
|
+
|
695
|
+
---
|
696
|
+
|
697
|
+
Copyright (c) 2016, Daniel Wirtz All rights reserved.
|
698
|
+
|
699
|
+
Redistribution and use in source and binary forms, with or without
|
700
|
+
modification, are permitted provided that the following conditions are
|
701
|
+
met:
|
702
|
+
|
703
|
+
* Redistributions of source code must retain the above copyright
|
704
|
+
notice, this list of conditions and the following disclaimer.
|
705
|
+
* Redistributions in binary form must reproduce the above copyright
|
706
|
+
notice, this list of conditions and the following disclaimer in the
|
707
|
+
documentation and/or other materials provided with the distribution.
|
708
|
+
* Neither the name of its author, nor the names of its contributors
|
709
|
+
may be used to endorse or promote products derived from this software
|
710
|
+
without specific prior written permission.
|
711
|
+
|
712
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
713
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
714
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
715
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
716
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
717
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
718
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
719
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
720
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
721
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
722
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
723
|
+
|
724
|
+
---
|
725
|
+
|
726
|
+
Code generated by the command line utilities is owned by the owner
|
727
|
+
of the input file used when generating it. This code is not
|
728
|
+
standalone and requires a support library to be linked with it. This
|
729
|
+
support library is itself covered by the above license.
|
730
|
+
|
731
|
+
|
732
|
+
rxjs
|
733
|
+
Apache-2.0
|
734
|
+
Apache License
|
735
|
+
Version 2.0, January 2004
|
736
|
+
http://www.apache.org/licenses/
|
737
|
+
|
738
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
739
|
+
|
740
|
+
1. Definitions.
|
741
|
+
|
742
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
743
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
744
|
+
|
745
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
746
|
+
the copyright owner that is granting the License.
|
747
|
+
|
748
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
749
|
+
other entities that control, are controlled by, or are under common
|
750
|
+
control with that entity. For the purposes of this definition,
|
751
|
+
"control" means (i) the power, direct or indirect, to cause the
|
752
|
+
direction or management of such entity, whether by contract or
|
753
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
754
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
755
|
+
|
756
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
757
|
+
exercising permissions granted by this License.
|
758
|
+
|
759
|
+
"Source" form shall mean the preferred form for making modifications,
|
760
|
+
including but not limited to software source code, documentation
|
761
|
+
source, and configuration files.
|
762
|
+
|
763
|
+
"Object" form shall mean any form resulting from mechanical
|
764
|
+
transformation or translation of a Source form, including but
|
765
|
+
not limited to compiled object code, generated documentation,
|
766
|
+
and conversions to other media types.
|
767
|
+
|
768
|
+
"Work" shall mean the work of authorship, whether in Source or
|
769
|
+
Object form, made available under the License, as indicated by a
|
770
|
+
copyright notice that is included in or attached to the work
|
771
|
+
(an example is provided in the Appendix below).
|
772
|
+
|
773
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
774
|
+
form, that is based on (or derived from) the Work and for which the
|
775
|
+
editorial revisions, annotations, elaborations, or other modifications
|
776
|
+
represent, as a whole, an original work of authorship. For the purposes
|
777
|
+
of this License, Derivative Works shall not include works that remain
|
778
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
779
|
+
the Work and Derivative Works thereof.
|
780
|
+
|
781
|
+
"Contribution" shall mean any work of authorship, including
|
782
|
+
the original version of the Work and any modifications or additions
|
783
|
+
to that Work or Derivative Works thereof, that is intentionally
|
784
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
785
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
786
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
787
|
+
means any form of electronic, verbal, or written communication sent
|
788
|
+
to the Licensor or its representatives, including but not limited to
|
789
|
+
communication on electronic mailing lists, source code control systems,
|
790
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
791
|
+
Licensor for the purpose of discussing and improving the Work, but
|
792
|
+
excluding communication that is conspicuously marked or otherwise
|
793
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
794
|
+
|
795
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
796
|
+
on behalf of whom a Contribution has been received by Licensor and
|
797
|
+
subsequently incorporated within the Work.
|
798
|
+
|
799
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
800
|
+
this License, each Contributor hereby grants to You a perpetual,
|
801
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
802
|
+
copyright license to reproduce, prepare Derivative Works of,
|
803
|
+
publicly display, publicly perform, sublicense, and distribute the
|
804
|
+
Work and such Derivative Works in Source or Object form.
|
805
|
+
|
806
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
807
|
+
this License, each Contributor hereby grants to You a perpetual,
|
808
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
809
|
+
(except as stated in this section) patent license to make, have made,
|
810
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
811
|
+
where such license applies only to those patent claims licensable
|
812
|
+
by such Contributor that are necessarily infringed by their
|
813
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
814
|
+
with the Work to which such Contribution(s) was submitted. If You
|
815
|
+
institute patent litigation against any entity (including a
|
816
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
817
|
+
or a Contribution incorporated within the Work constitutes direct
|
818
|
+
or contributory patent infringement, then any patent licenses
|
819
|
+
granted to You under this License for that Work shall terminate
|
820
|
+
as of the date such litigation is filed.
|
821
|
+
|
822
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
823
|
+
Work or Derivative Works thereof in any medium, with or without
|
824
|
+
modifications, and in Source or Object form, provided that You
|
825
|
+
meet the following conditions:
|
826
|
+
|
827
|
+
(a) You must give any other recipients of the Work or
|
828
|
+
Derivative Works a copy of this License; and
|
829
|
+
|
830
|
+
(b) You must cause any modified files to carry prominent notices
|
831
|
+
stating that You changed the files; and
|
832
|
+
|
833
|
+
(c) You must retain, in the Source form of any Derivative Works
|
834
|
+
that You distribute, all copyright, patent, trademark, and
|
835
|
+
attribution notices from the Source form of the Work,
|
836
|
+
excluding those notices that do not pertain to any part of
|
837
|
+
the Derivative Works; and
|
838
|
+
|
839
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
840
|
+
distribution, then any Derivative Works that You distribute must
|
841
|
+
include a readable copy of the attribution notices contained
|
842
|
+
within such NOTICE file, excluding those notices that do not
|
843
|
+
pertain to any part of the Derivative Works, in at least one
|
844
|
+
of the following places: within a NOTICE text file distributed
|
845
|
+
as part of the Derivative Works; within the Source form or
|
846
|
+
documentation, if provided along with the Derivative Works; or,
|
847
|
+
within a display generated by the Derivative Works, if and
|
848
|
+
wherever such third-party notices normally appear. The contents
|
849
|
+
of the NOTICE file are for informational purposes only and
|
850
|
+
do not modify the License. You may add Your own attribution
|
851
|
+
notices within Derivative Works that You distribute, alongside
|
852
|
+
or as an addendum to the NOTICE text from the Work, provided
|
853
|
+
that such additional attribution notices cannot be construed
|
854
|
+
as modifying the License.
|
855
|
+
|
856
|
+
You may add Your own copyright statement to Your modifications and
|
857
|
+
may provide additional or different license terms and conditions
|
858
|
+
for use, reproduction, or distribution of Your modifications, or
|
859
|
+
for any such Derivative Works as a whole, provided Your use,
|
860
|
+
reproduction, and distribution of the Work otherwise complies with
|
861
|
+
the conditions stated in this License.
|
862
|
+
|
863
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
864
|
+
any Contribution intentionally submitted for inclusion in the Work
|
865
|
+
by You to the Licensor shall be under the terms and conditions of
|
866
|
+
this License, without any additional terms or conditions.
|
867
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
868
|
+
the terms of any separate license agreement you may have executed
|
869
|
+
with Licensor regarding such Contributions.
|
870
|
+
|
871
|
+
6. Trademarks. This License does not grant permission to use the trade
|
872
|
+
names, trademarks, service marks, or product names of the Licensor,
|
873
|
+
except as required for reasonable and customary use in describing the
|
874
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
875
|
+
|
876
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
877
|
+
agreed to in writing, Licensor provides the Work (and each
|
878
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
879
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
880
|
+
implied, including, without limitation, any warranties or conditions
|
881
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
882
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
883
|
+
appropriateness of using or redistributing the Work and assume any
|
884
|
+
risks associated with Your exercise of permissions under this License.
|
885
|
+
|
886
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
887
|
+
whether in tort (including negligence), contract, or otherwise,
|
888
|
+
unless required by applicable law (such as deliberate and grossly
|
889
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
890
|
+
liable to You for damages, including any direct, indirect, special,
|
891
|
+
incidental, or consequential damages of any character arising as a
|
892
|
+
result of this License or out of the use or inability to use the
|
893
|
+
Work (including but not limited to damages for loss of goodwill,
|
894
|
+
work stoppage, computer failure or malfunction, or any and all
|
895
|
+
other commercial damages or losses), even if such Contributor
|
896
|
+
has been advised of the possibility of such damages.
|
897
|
+
|
898
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
899
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
900
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
901
|
+
or other liability obligations and/or rights consistent with this
|
902
|
+
License. However, in accepting such obligations, You may act only
|
903
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
904
|
+
of any other Contributor, and only if You agree to indemnify,
|
905
|
+
defend, and hold each Contributor harmless for any liability
|
906
|
+
incurred by, or claims asserted against, such Contributor by reason
|
907
|
+
of your accepting any such warranty or additional liability.
|
908
|
+
|
909
|
+
END OF TERMS AND CONDITIONS
|
910
|
+
|
911
|
+
APPENDIX: How to apply the Apache License to your work.
|
912
|
+
|
913
|
+
To apply the Apache License to your work, attach the following
|
914
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
915
|
+
replaced with your own identifying information. (Don't include
|
916
|
+
the brackets!) The text should be enclosed in the appropriate
|
917
|
+
comment syntax for the file format. We also recommend that a
|
918
|
+
file or class name and description of purpose be included on the
|
919
|
+
same "printed page" as the copyright notice for easier
|
920
|
+
identification within third-party archives.
|
921
|
+
|
922
|
+
Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
|
923
|
+
|
924
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
925
|
+
you may not use this file except in compliance with the License.
|
926
|
+
You may obtain a copy of the License at
|
927
|
+
|
928
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
929
|
+
|
930
|
+
Unless required by applicable law or agreed to in writing, software
|
931
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
932
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
933
|
+
See the License for the specific language governing permissions and
|
934
|
+
limitations under the License.
|
935
|
+
|
936
|
+
|
937
|
+
|
938
|
+
tslib
|
939
|
+
0BSD
|
940
|
+
Copyright (c) Microsoft Corporation.
|
941
|
+
|
942
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
943
|
+
purpose with or without fee is hereby granted.
|
944
|
+
|
945
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
946
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
947
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
948
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
949
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
950
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
951
|
+
PERFORMANCE OF THIS SOFTWARE.
|
952
|
+
|
953
|
+
zone.js
|
954
|
+
MIT
|
955
|
+
The MIT License
|
956
|
+
|
957
|
+
Copyright (c) 2010-2022 Google LLC. https://angular.io/license
|
958
|
+
|
959
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
960
|
+
of this software and associated documentation files (the "Software"), to deal
|
961
|
+
in the Software without restriction, including without limitation the rights
|
962
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
963
|
+
copies of the Software, and to permit persons to whom the Software is
|
964
|
+
furnished to do so, subject to the following conditions:
|
965
|
+
|
966
|
+
The above copyright notice and this permission notice shall be included in
|
967
|
+
all copies or substantial portions of the Software.
|
968
|
+
|
969
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
970
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
971
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
972
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
973
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
974
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
975
|
+
THE SOFTWARE.
|