@dronedeploy/rocos-js-sdk 3.0.1-alpha.3 → 3.0.1-alpha.5
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/IRocosSDK.d.ts +34 -0
- package/cjs/IRocosSDK.js +6 -0
- package/cjs/RocosSDK.d.ts +148 -0
- package/cjs/RocosSDK.js +316 -0
- package/cjs/api/StreamRegister.js +73 -0
- package/cjs/api/atoms/StreamHeartbeat.js +115 -0
- package/cjs/api/streams/caller/CallerStream.js +81 -0
- package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
- package/cjs/api/streams/caller/CallerStreamNode.js +142 -0
- package/cjs/api/streams/command/CommandStream.js +70 -0
- package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
- package/cjs/api/streams/command/CommandStreamNode.js +96 -0
- package/cjs/api/streams/control/ControlStream.js +79 -0
- package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
- package/cjs/api/streams/control/ControlStreamNode.js +100 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStream.js +63 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
- package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +93 -0
- package/cjs/api/streams/search/SearchStream.js +100 -0
- package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
- package/cjs/api/streams/search/SearchStreamNode.js +145 -0
- package/cjs/api/streams/telemetry/TelemetryStream.js +101 -0
- package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
- package/cjs/api/streams/telemetry/TelemetryStreamNode.js +202 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
- package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
- package/cjs/constants/api.d.ts +133 -0
- package/cjs/constants/api.js +138 -0
- package/cjs/constants/auth.js +5 -0
- package/cjs/constants/grpc.js +8 -0
- package/cjs/constants/identifier.js +9 -0
- package/cjs/constants/timezones.js +430 -0
- package/cjs/grpc/conker_pb.client.js +59 -0
- package/cjs/grpc/conker_pb.grpc-client.js +85 -0
- package/cjs/grpc/conker_pb.js +107 -0
- package/cjs/grpc/filagree_pb.client.js +52 -0
- package/cjs/grpc/filagree_pb.grpc-client.js +78 -0
- package/cjs/grpc/filagree_pb.js +332 -0
- package/cjs/grpc/google/protobuf/descriptor_pb.js +2381 -0
- package/cjs/grpc/google/protobuf/empty_pb.js +50 -0
- package/cjs/grpc/pigeon_pb.client.js +77 -0
- package/cjs/grpc/pigeon_pb.grpc-client.js +96 -0
- package/cjs/grpc/pigeon_pb.js +147 -0
- package/cjs/grpc/rambo.uri.v1_pb.js +51 -0
- package/cjs/grpc/rambo.v1_pb.client.js +53 -0
- package/cjs/grpc/rambo.v1_pb.grpc-client.js +72 -0
- package/cjs/grpc/rambo.v1_pb.js +275 -0
- package/cjs/grpc/serviette.uri.v1_pb.js +65 -0
- package/cjs/grpc/serviette.v1_pb.client.js +183 -0
- package/cjs/grpc/serviette.v1_pb.grpc-client.js +194 -0
- package/cjs/grpc/serviette.v1_pb.js +556 -0
- package/cjs/grpc/slowlane_pb.client.js +45 -0
- package/cjs/grpc/slowlane_pb.grpc-client.js +71 -0
- package/cjs/grpc/slowlane_pb.js +188 -0
- package/cjs/grpc/teletubby_pb.client.js +109 -0
- package/cjs/grpc/teletubby_pb.grpc-client.js +128 -0
- package/cjs/grpc/teletubby_pb.js +1267 -0
- package/cjs/helpers/arrayRemove.js +7 -0
- package/cjs/helpers/arrayUnique.js +7 -0
- package/cjs/helpers/average.js +10 -0
- package/cjs/helpers/callerMessageHelpers.d.ts +14 -0
- package/cjs/helpers/callerMessageHelpers.js +91 -0
- package/cjs/helpers/cleanObject.js +22 -0
- package/cjs/helpers/cleanObject.spec.js +55 -0
- package/cjs/helpers/enviroment.js +17 -0
- package/cjs/helpers/flattenCallsignsLookup.js +10 -0
- package/cjs/helpers/flattenObject.js +17 -0
- package/cjs/helpers/flattenObject.spec.js +31 -0
- package/cjs/helpers/flattenOneOf.js +34 -0
- package/cjs/helpers/flattenOneOf.spec.js +159 -0
- package/cjs/helpers/formatServiceUrl.js +11 -0
- package/cjs/helpers/formatServiceUrl.spec.js +18 -0
- package/cjs/helpers/generateUUID.js +8 -0
- package/cjs/helpers/getSubscriptionsDifference.js +39 -0
- package/cjs/helpers/getURLSearchParams.js +13 -0
- package/cjs/helpers/getURLSearchParams.spec.js +21 -0
- package/cjs/helpers/getUniqueConfigKey.js +18 -0
- package/cjs/helpers/getUniqueId.js +15 -0
- package/cjs/helpers/getUnixTimeMs.js +8 -0
- package/cjs/helpers/index.js +21 -0
- package/cjs/helpers/nanosecondToMillisecond.js +16 -0
- package/cjs/helpers/nanosecondToMillisecond.spec.js +22 -0
- package/cjs/helpers/randomString.js +7 -0
- package/cjs/helpers/splitRobotTopic.d.ts +9 -0
- package/cjs/helpers/splitRobotTopic.js +16 -0
- package/cjs/helpers/splitRobotTopic.spec.js +53 -0
- package/cjs/helpers/standardDeviation.js +16 -0
- package/cjs/helpers/standardDeviation.spec.js +13 -0
- package/cjs/helpers/stringToUint8Array.js +14 -0
- package/cjs/helpers/uint8ArrayToString.js +14 -0
- package/cjs/helpers/websandbox/connection.js +136 -0
- package/cjs/helpers/websandbox/frame/frame.js +27 -0
- package/cjs/helpers/websandbox/frame/frame.source.js +10 -0
- package/cjs/helpers/websandbox/frame/index.js +7 -0
- package/cjs/helpers/websandbox/frame/worker/index.js +7 -0
- package/cjs/helpers/websandbox/frame/worker/manager.js +70 -0
- package/cjs/helpers/websandbox/frame/worker/manager.spec.js +132 -0
- package/cjs/helpers/websandbox/frame/worker/types.js +2 -0
- package/cjs/helpers/websandbox/frame/worker/worker.js +75 -0
- package/cjs/helpers/websandbox/frame/worker/worker.source.js +6 -0
- package/cjs/helpers/websandbox/index.js +8 -0
- package/cjs/helpers/websandbox/sandbox.js +182 -0
- package/cjs/helpers/websandbox/types.js +2 -0
- package/cjs/index.js +23 -0
- package/cjs/logger/RocosLogger.js +67 -0
- package/cjs/models/CallsignStatus.js +10 -0
- package/cjs/models/ExportDataQuery.js +17 -0
- package/cjs/models/ExternalProject.js +6 -0
- package/cjs/models/IBaseService.js +2 -0
- package/cjs/models/IConfigGroup.js +2 -0
- package/cjs/models/IDebugLevel.js +2 -0
- package/cjs/models/IExportDataQuery.js +2 -0
- package/cjs/models/IFunctionConfig.js +2 -0
- package/cjs/models/IInvitation.js +2 -0
- package/cjs/models/IInvitationExists.js +2 -0
- package/cjs/models/IOperation.js +2 -0
- package/cjs/models/IPersonalAccessToken.js +2 -0
- package/cjs/models/IProject.js +2 -0
- package/cjs/models/IProjectApplication.js +2 -0
- package/cjs/models/IRobot.js +2 -0
- package/cjs/models/IRobotConfig.js +2 -0
- package/cjs/models/IRobotPlugin.js +2 -0
- package/cjs/models/IRobotSettings.js +2 -0
- package/cjs/models/IRobotTemplate.js +2 -0
- package/cjs/models/IRocosSDKConfig.js +2 -0
- package/cjs/models/ISource.js +2 -0
- package/cjs/models/IStream.js +2 -0
- package/cjs/models/IStreamConfig.js +2 -0
- package/cjs/models/IStreamOptions.js +2 -0
- package/cjs/models/IStreamSource.js +2 -0
- package/cjs/models/ISubscriberStatus.js +2 -0
- package/cjs/models/ITelemetryStreamConfig.js +2 -0
- package/cjs/models/IToken.js +2 -0
- package/cjs/models/IWidget.js +2 -0
- package/cjs/models/IWidgetLineGroup.js +2 -0
- package/cjs/models/ResponseLevelEnum.js +14 -0
- package/cjs/models/Robot.js +12 -0
- package/cjs/models/RobotConfig.js +9 -0
- package/cjs/models/RobotPlugin.js +9 -0
- package/cjs/models/RobotTemplate.js +29 -0
- package/cjs/models/RocosError.d.ts +32 -0
- package/cjs/models/RocosError.js +45 -0
- package/cjs/models/ServiceEnum.d.ts +28 -0
- package/cjs/models/ServiceEnum.js +32 -0
- package/cjs/models/Stream.js +15 -0
- package/cjs/models/StreamOptions.js +37 -0
- package/cjs/models/StreamSource.js +15 -0
- package/cjs/models/SubscriberStatusEnum.js +10 -0
- package/cjs/models/Token.js +82 -0
- package/cjs/models/Token.spec.js +110 -0
- package/cjs/models/Widget.js +16 -0
- package/cjs/models/WidgetLineGroup.js +9 -0
- package/cjs/models/asset-storage/AssetModelItem.d.ts +14 -0
- package/cjs/models/asset-storage/AssetModelItem.js +2 -0
- package/cjs/models/asset-storage/SyncIntegrations.d.ts +31 -0
- package/cjs/models/asset-storage/SyncIntegrations.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
- package/cjs/models/caller/IRocosCallerMessageChunk.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageChunks.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponse.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponseAck.js +16 -0
- package/cjs/models/caller/IRocosCallerMessageResponseResult.js +15 -0
- package/cjs/models/caller/IRocosCallerMessageResponseReturn.js +2 -0
- package/cjs/models/caller/IRocosCallerMessageResponseUid.js +10 -0
- package/cjs/models/caller/IRocosCallerMessageResponses.js +2 -0
- package/cjs/models/caller/RocosCallerResultStatus.js +15 -0
- package/cjs/models/caller/RocosResponseLevel.js +10 -0
- package/cjs/models/caller/index.d.ts +11 -0
- package/cjs/models/caller/index.js +27 -0
- package/cjs/models/callsigns/CallsignsEnums.js +20 -0
- package/cjs/models/callsigns/CallsignsLookup.js +32 -0
- package/cjs/models/callsigns/CallsignsQuery.js +18 -0
- package/cjs/models/callsigns/CallsignsQueryPredicate.js +19 -0
- package/cjs/models/command/IRocosCommandMessageHeartbeat.js +2 -0
- package/cjs/models/command/IRocosCommandMessageResponse.js +30 -0
- package/cjs/models/command/RocosCommandResultStatus.js +15 -0
- package/cjs/models/command/index.js +20 -0
- package/cjs/models/file/FileEnums.js +36 -0
- package/cjs/models/index.d.ts +77 -0
- package/cjs/models/index.js +93 -0
- package/cjs/models/integrations/Overlay.js +2 -0
- package/cjs/models/integrations/Plan.js +2 -0
- package/cjs/models/maps/Map.js +2 -0
- package/cjs/models/maps/Panorama.d.ts +36 -0
- package/cjs/models/maps/Panorama.js +2 -0
- package/cjs/models/message/IRocosCallerMessage.js +2 -0
- package/cjs/models/message/IRocosChangeMessage.js +2 -0
- package/cjs/models/message/IRocosCommandMessage.js +2 -0
- package/cjs/models/message/IRocosControlMessage.js +2 -0
- package/cjs/models/message/IRocosOpResultMessage.js +2 -0
- package/cjs/models/message/IRocosSearchMessage.js +2 -0
- package/cjs/models/message/IRocosSearchRowMessage.js +2 -0
- package/cjs/models/message/IRocosSearchStatusMessage.js +2 -0
- package/cjs/models/message/IRocosTelemetryMessage.d.ts +23 -0
- package/cjs/models/message/IRocosTelemetryMessage.js +2 -0
- package/cjs/models/message/IStreamStatusMessage.js +2 -0
- package/cjs/models/message/RocosCallerMessage.js +36 -0
- package/cjs/models/message/RocosCommandMessage.js +17 -0
- package/cjs/models/message/RocosControlMessage.js +18 -0
- package/cjs/models/message/RocosOpResultMessage.js +22 -0
- package/cjs/models/message/RocosSearchMessage.js +28 -0
- package/cjs/models/message/RocosSearchRowMessage.js +20 -0
- package/cjs/models/message/RocosTelemetryMessage.js +67 -0
- package/cjs/models/message/index.js +33 -0
- package/cjs/models/params/ICallerParams.d.ts +26 -0
- package/cjs/models/params/ICallerParams.js +2 -0
- package/cjs/models/params/ICommandParams.js +2 -0
- package/cjs/models/params/IControlParams.js +2 -0
- package/cjs/models/params/IFileAccessorParams.js +2 -0
- package/cjs/models/params/ISearchParams.js +2 -0
- package/cjs/models/params/ITelemetryParams.js +2 -0
- package/cjs/models/params/IWebRTCSignallingParams.js +2 -0
- package/cjs/models/projects/ProjectUser.js +2 -0
- package/cjs/models/schedule/IScheduleAction.js +9 -0
- package/cjs/models/schedule/IScheduleInfo.js +2 -0
- package/cjs/models/schedule/IScheduleJob.js +2 -0
- package/cjs/models/search/SearchQueryFilter.js +9 -0
- package/cjs/models/search/SearchStreamQuery.js +10 -0
- package/cjs/models/stream/IBaseStream.js +2 -0
- package/cjs/models/stream/ICallerStream.js +2 -0
- package/cjs/models/stream/ICommandStream.js +2 -0
- package/cjs/models/stream/IControlStream.js +2 -0
- package/cjs/models/stream/IFileAccessorStream.js +2 -0
- package/cjs/models/stream/ISearchStream.js +2 -0
- package/cjs/models/stream/ITelemetryStream.js +2 -0
- package/cjs/models/stream/IWebRTCSignallingStream.js +2 -0
- package/cjs/models/types.js +2 -0
- package/cjs/models/workflow/Workflow.js +2 -0
- package/cjs/node/RocosSDKNode.d.ts +52 -0
- package/cjs/node/RocosSDKNode.js +161 -0
- package/cjs/node/index.js +23 -0
- package/cjs/services/AssetStorageService.d.ts +144 -0
- package/cjs/services/AssetStorageService.js +225 -0
- package/cjs/services/AuthService.js +239 -0
- package/cjs/services/AuthService.spec.js +165 -0
- package/cjs/services/BaseServiceAbstract.js +101 -0
- package/cjs/services/BaseStreamService.js +51 -0
- package/cjs/services/CallerService.d.ts +42 -0
- package/cjs/services/CallerService.js +121 -0
- package/cjs/services/CallerService.spec.js +229 -0
- package/cjs/services/CallerServiceNode.js +11 -0
- package/cjs/services/CommandService.js +42 -0
- package/cjs/services/CommandServiceNode.js +11 -0
- package/cjs/services/ConfigGroupService.js +157 -0
- package/cjs/services/ControlService.js +61 -0
- package/cjs/services/ControlServiceNode.js +11 -0
- package/cjs/services/DashboardService.js +146 -0
- package/cjs/services/EvaluatorService.js +32 -0
- package/cjs/services/EventService.js +89 -0
- package/cjs/services/FileAccessorService.js +41 -0
- package/cjs/services/FileAccessorServiceNode.js +11 -0
- package/cjs/services/FunctionService.js +103 -0
- package/cjs/services/IntegrationService.js +76 -0
- package/cjs/services/MapService.d.ts +142 -0
- package/cjs/services/MapService.js +196 -0
- package/cjs/services/PlatformTimeService.js +160 -0
- package/cjs/services/PlatformTimeService.spec.js +182 -0
- package/cjs/services/ProfileService.js +366 -0
- package/cjs/services/ProjectService.js +164 -0
- package/cjs/services/RTPWebRTCService.d.ts +102 -0
- package/cjs/services/RTPWebRTCService.js +232 -0
- package/cjs/services/RTPWebRTCService.spec.d.ts +4 -0
- package/cjs/services/RTPWebRTCService.spec.js +171 -0
- package/cjs/services/RobotService.js +464 -0
- package/cjs/services/ScheduleService.js +40 -0
- package/cjs/services/SearchService.js +62 -0
- package/cjs/services/SearchServiceNode.js +11 -0
- package/cjs/services/SpotProvisioningService.js +47 -0
- package/cjs/services/SpotProvisioningServiceNode.js +47 -0
- package/cjs/services/StreamService.js +146 -0
- package/cjs/services/TelemetryService.d.ts +41 -0
- package/cjs/services/TelemetryService.js +158 -0
- package/cjs/services/TelemetryService.spec.js +39 -0
- package/cjs/services/TelemetryServiceNode.js +11 -0
- package/cjs/services/TimeSyncerService.js +27 -0
- package/cjs/services/UserService.js +319 -0
- package/cjs/services/WebRTCSignallingService.js +82 -0
- package/cjs/services/WorkflowService.js +90 -0
- package/cjs/services/index.d.ts +28 -0
- package/cjs/services/index.js +44 -0
- package/cjs/store/RocosStore.js +51 -0
- package/esm/IRocosSDK.d.ts +34 -0
- package/esm/RocosSDK.d.ts +148 -0
- package/esm/RocosSDK.js +312 -0
- package/esm/api/StreamRegister.d.ts +13 -0
- package/esm/api/atoms/StreamHeartbeat.d.ts +27 -0
- package/esm/api/streams/caller/CallerStream.d.ts +13 -0
- package/esm/api/streams/caller/CallerStreamAbstract.d.ts +23 -0
- package/esm/api/streams/caller/CallerStreamNode.d.ts +13 -0
- package/esm/api/streams/command/CommandStream.d.ts +10 -0
- package/esm/api/streams/command/CommandStreamAbstract.d.ts +20 -0
- package/esm/api/streams/command/CommandStreamNode.d.ts +10 -0
- package/esm/api/streams/control/ControlStream.d.ts +12 -0
- package/esm/api/streams/control/ControlStreamAbstract.d.ts +25 -0
- package/esm/api/streams/control/ControlStreamNode.d.ts +12 -0
- package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
- package/esm/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +21 -0
- package/esm/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +8 -0
- package/esm/api/streams/search/SearchStream.d.ts +13 -0
- package/esm/api/streams/search/SearchStreamAbstract.d.ts +25 -0
- package/esm/api/streams/search/SearchStreamNode.d.ts +13 -0
- package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
- package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
- package/esm/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
- package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
- package/esm/constants/api.d.ts +133 -0
- package/esm/constants/api.js +133 -0
- package/esm/constants/auth.d.ts +2 -0
- package/esm/constants/grpc.d.ts +5 -0
- package/esm/constants/identifier.d.ts +6 -0
- package/esm/constants/timezones.d.ts +2 -0
- package/esm/grpc/conker_pb.client.d.ts +78 -0
- package/esm/grpc/conker_pb.d.ts +141 -0
- package/esm/grpc/conker_pb.grpc-client.d.ts +81 -0
- package/esm/grpc/filagree_pb.client.d.ts +68 -0
- package/esm/grpc/filagree_pb.d.ts +404 -0
- package/esm/grpc/filagree_pb.grpc-client.d.ts +69 -0
- package/esm/grpc/google/protobuf/descriptor_pb.d.ts +1798 -0
- package/esm/grpc/google/protobuf/empty_pb.d.ts +23 -0
- package/esm/grpc/pigeon_pb.client.d.ts +96 -0
- package/esm/grpc/pigeon_pb.d.ts +207 -0
- package/esm/grpc/pigeon_pb.grpc-client.d.ts +98 -0
- package/esm/grpc/rambo.uri.v1_pb.d.ts +73 -0
- package/esm/grpc/rambo.v1_pb.client.d.ts +66 -0
- package/esm/grpc/rambo.v1_pb.d.ts +392 -0
- package/esm/grpc/rambo.v1_pb.grpc-client.d.ts +56 -0
- package/esm/grpc/serviette.uri.v1_pb.d.ts +89 -0
- package/esm/grpc/serviette.v1_pb.client.d.ts +225 -0
- package/esm/grpc/serviette.v1_pb.d.ts +827 -0
- package/esm/grpc/serviette.v1_pb.grpc-client.d.ts +215 -0
- package/esm/grpc/slowlane_pb.client.d.ts +61 -0
- package/esm/grpc/slowlane_pb.d.ts +303 -0
- package/esm/grpc/slowlane_pb.grpc-client.d.ts +64 -0
- package/esm/grpc/teletubby_pb.client.d.ts +145 -0
- package/esm/grpc/teletubby_pb.d.ts +634 -0
- package/esm/grpc/teletubby_pb.grpc-client.d.ts +152 -0
- package/esm/helpers/arrayRemove.d.ts +1 -0
- package/esm/helpers/arrayUnique.d.ts +1 -0
- package/esm/helpers/average.d.ts +1 -0
- package/esm/helpers/callerMessageHelpers.d.ts +14 -0
- package/esm/helpers/callerMessageHelpers.js +86 -0
- package/esm/helpers/cleanObject.d.ts +1 -0
- package/esm/helpers/enviroment.d.ts +8 -0
- package/esm/helpers/flattenCallsignsLookup.d.ts +2 -0
- package/esm/helpers/flattenObject.d.ts +1 -0
- package/esm/helpers/flattenOneOf.d.ts +67 -0
- package/esm/helpers/formatServiceUrl.d.ts +1 -0
- package/esm/helpers/generateUUID.d.ts +1 -0
- package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
- package/esm/helpers/getURLSearchParams.d.ts +2 -0
- package/esm/helpers/getUniqueConfigKey.d.ts +7 -0
- package/esm/helpers/getUniqueId.d.ts +9 -0
- package/esm/helpers/getUnixTimeMs.d.ts +1 -0
- package/esm/helpers/index.js +5 -0
- package/esm/helpers/nanosecondToMillisecond.d.ts +1 -0
- package/esm/helpers/randomString.d.ts +1 -0
- package/esm/helpers/splitRobotTopic.d.ts +9 -0
- package/esm/helpers/splitRobotTopic.js +12 -0
- package/esm/helpers/splitRobotTopic.spec.js +51 -0
- package/esm/helpers/standardDeviation.d.ts +1 -0
- package/esm/helpers/stringToUint8Array.d.ts +1 -0
- package/esm/helpers/uint8ArrayToString.d.ts +1 -0
- package/esm/helpers/websandbox/connection.d.ts +67 -0
- package/esm/helpers/websandbox/frame/frame.d.ts +12 -0
- package/esm/helpers/websandbox/frame/frame.source.d.ts +2 -0
- package/esm/helpers/websandbox/frame/index.js +2 -0
- package/esm/helpers/websandbox/frame/worker/index.js +2 -0
- package/esm/helpers/websandbox/frame/worker/manager.d.ts +11 -0
- package/esm/helpers/websandbox/frame/worker/manager.spec.d.ts +4 -0
- package/esm/helpers/websandbox/frame/worker/types.d.ts +11 -0
- package/esm/helpers/websandbox/frame/worker/worker.source.d.ts +2 -0
- package/esm/helpers/websandbox/index.js +2 -0
- package/esm/helpers/websandbox/sandbox.d.ts +57 -0
- package/esm/helpers/websandbox/types.d.ts +13 -0
- package/esm/index.js +7 -0
- package/esm/logger/RocosLogger.d.ts +7 -0
- package/esm/models/CallsignStatus.d.ts +6 -0
- package/esm/models/ExportDataQuery.d.ts +8 -0
- package/esm/models/ExternalProject.d.ts +6 -0
- package/esm/models/IBaseService.d.ts +4 -0
- package/esm/models/IConfigGroup.d.ts +5 -0
- package/esm/models/IDebugLevel.d.ts +2 -0
- package/esm/models/IExportDataQuery.d.ts +9 -0
- package/esm/models/IFunctionConfig.d.ts +8 -0
- package/esm/models/IInvitation.d.ts +6 -0
- package/esm/models/IInvitationExists.d.ts +4 -0
- package/esm/models/IOperation.d.ts +6 -0
- package/esm/models/IPersonalAccessToken.d.ts +16 -0
- package/esm/models/IProject.d.ts +4 -0
- package/esm/models/IProjectApplication.d.ts +6 -0
- package/esm/models/IRobot.d.ts +18 -0
- package/esm/models/IRobotConfig.d.ts +8 -0
- package/esm/models/IRobotPlugin.d.ts +3 -0
- package/esm/models/IRobotSettings.d.ts +28 -0
- package/esm/models/IRobotTemplate.d.ts +10 -0
- package/esm/models/IRocosSDKConfig.d.ts +19 -0
- package/esm/models/ISource.d.ts +8 -0
- package/esm/models/IStream.d.ts +9 -0
- package/esm/models/IStreamConfig.d.ts +9 -0
- package/esm/models/IStreamOptions.d.ts +7 -0
- package/esm/models/IStreamSource.d.ts +8 -0
- package/esm/models/ISubscriberStatus.d.ts +5 -0
- package/esm/models/ITelemetryStreamConfig.d.ts +7 -0
- package/esm/models/IToken.d.ts +9 -0
- package/esm/models/IWidget.d.ts +25 -0
- package/esm/models/IWidgetLineGroup.d.ts +8 -0
- package/esm/models/ResponseLevelEnum.d.ts +10 -0
- package/esm/models/Robot.d.ts +20 -0
- package/esm/models/RobotConfig.d.ts +10 -0
- package/esm/models/RobotPlugin.d.ts +5 -0
- package/esm/models/RobotTemplate.d.ts +12 -0
- package/esm/models/RocosError.d.ts +32 -0
- package/esm/models/RocosError.js +41 -0
- package/esm/models/ServiceEnum.d.ts +28 -0
- package/esm/models/ServiceEnum.js +29 -0
- package/esm/models/Stream.d.ts +10 -0
- package/esm/models/StreamOptions.d.ts +9 -0
- package/esm/models/StreamSource.d.ts +10 -0
- package/esm/models/SubscriberStatusEnum.d.ts +6 -0
- package/esm/models/Token.d.ts +40 -0
- package/esm/models/Widget.d.ts +27 -0
- package/esm/models/WidgetLineGroup.d.ts +10 -0
- package/esm/models/asset-storage/AssetModelItem.d.ts +14 -0
- package/esm/models/asset-storage/SyncIntegrations.d.ts +31 -0
- package/esm/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
- package/esm/models/caller/IRocosCallerMessageChunks.d.ts +4 -0
- package/esm/models/caller/IRocosCallerMessageHeartbeat.d.ts +3 -0
- package/esm/models/caller/IRocosCallerMessageResponse.d.ts +10 -0
- package/esm/models/caller/IRocosCallerMessageResponseAck.d.ts +16 -0
- package/esm/models/caller/IRocosCallerMessageResponseResult.d.ts +15 -0
- package/esm/models/caller/IRocosCallerMessageResponseReturn.d.ts +8 -0
- package/esm/models/caller/IRocosCallerMessageResponseUid.d.ts +10 -0
- package/esm/models/caller/IRocosCallerMessageResponses.d.ts +4 -0
- package/esm/models/caller/RocosCallerResultStatus.d.ts +11 -0
- package/esm/models/caller/RocosResponseLevel.d.ts +6 -0
- package/esm/models/caller/index.d.ts +11 -0
- package/esm/models/caller/index.js +11 -0
- package/esm/models/callsigns/CallsignsEnums.d.ts +13 -0
- package/esm/models/callsigns/CallsignsLookup.d.ts +8 -0
- package/esm/models/callsigns/CallsignsQuery.d.ts +9 -0
- package/esm/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
- package/esm/models/command/IRocosCommandMessageHeartbeat.d.ts +1 -0
- package/esm/models/command/IRocosCommandMessageResponse.d.ts +55 -0
- package/esm/models/command/RocosCommandResultStatus.d.ts +11 -0
- package/esm/models/command/index.js +4 -0
- package/esm/models/file/FileEnums.d.ts +30 -0
- package/esm/models/index.d.ts +77 -0
- package/esm/models/index.js +77 -0
- package/esm/models/integrations/Overlay.d.ts +49 -0
- package/esm/models/integrations/Plan.d.ts +324 -0
- package/esm/models/maps/Map.d.ts +11 -0
- package/esm/models/maps/Panorama.d.ts +36 -0
- package/esm/models/message/IRocosCallerMessage.d.ts +8 -0
- package/esm/models/message/IRocosChangeMessage.d.ts +6 -0
- package/esm/models/message/IRocosCommandMessage.d.ts +6 -0
- package/esm/models/message/IRocosControlMessage.d.ts +7 -0
- package/esm/models/message/IRocosOpResultMessage.d.ts +6 -0
- package/esm/models/message/IRocosSearchMessage.d.ts +5 -0
- package/esm/models/message/IRocosSearchRowMessage.d.ts +9 -0
- package/esm/models/message/IRocosSearchStatusMessage.d.ts +4 -0
- package/esm/models/message/IRocosTelemetryMessage.d.ts +23 -0
- package/esm/models/message/IStreamStatusMessage.d.ts +5 -0
- package/esm/models/message/RocosCallerMessage.d.ts +10 -0
- package/esm/models/message/RocosCommandMessage.d.ts +9 -0
- package/esm/models/message/RocosControlMessage.d.ts +11 -0
- package/esm/models/message/RocosOpResultMessage.d.ts +10 -0
- package/esm/models/message/RocosSearchMessage.d.ts +9 -0
- package/esm/models/message/RocosSearchRowMessage.d.ts +13 -0
- package/esm/models/message/RocosTelemetryMessage.d.ts +10 -0
- package/esm/models/message/index.js +17 -0
- package/esm/models/params/ICallerParams.d.ts +26 -0
- package/esm/models/params/ICommandParams.d.ts +9 -0
- package/esm/models/params/IControlParams.d.ts +8 -0
- package/esm/models/params/IFileAccessorParams.d.ts +11 -0
- package/esm/models/params/ISearchParams.d.ts +10 -0
- package/esm/models/params/ITelemetryParams.d.ts +18 -0
- package/esm/models/params/IWebRTCSignallingParams.d.ts +21 -0
- package/esm/models/params/IWebRTCSignallingParams.js +1 -0
- package/esm/models/projects/ProjectUser.d.ts +6 -0
- package/esm/models/projects/ProjectUser.js +1 -0
- package/esm/models/schedule/IScheduleAction.d.ts +13 -0
- package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
- package/esm/models/schedule/IScheduleInfo.js +1 -0
- package/esm/models/schedule/IScheduleJob.d.ts +12 -0
- package/esm/models/schedule/IScheduleJob.js +1 -0
- package/esm/models/search/SearchQueryFilter.d.ts +5 -0
- package/esm/models/search/SearchStreamQuery.d.ts +15 -0
- package/esm/models/stream/IBaseStream.d.ts +8 -0
- package/esm/models/stream/IBaseStream.js +1 -0
- package/esm/models/stream/ICallerStream.d.ts +8 -0
- package/esm/models/stream/ICallerStream.js +1 -0
- package/esm/models/stream/ICommandStream.d.ts +7 -0
- package/esm/models/stream/ICommandStream.js +1 -0
- package/esm/models/stream/IControlStream.d.ts +9 -0
- package/esm/models/stream/IControlStream.js +1 -0
- package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
- package/esm/models/stream/IFileAccessorStream.js +1 -0
- package/esm/models/stream/ISearchStream.d.ts +11 -0
- package/esm/models/stream/ISearchStream.js +1 -0
- package/esm/models/stream/ITelemetryStream.d.ts +10 -0
- package/esm/models/stream/ITelemetryStream.js +1 -0
- package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
- package/esm/models/stream/IWebRTCSignallingStream.js +1 -0
- package/esm/models/types.d.ts +5 -0
- package/esm/models/types.js +1 -0
- package/esm/models/workflow/Workflow.d.ts +36 -0
- package/esm/models/workflow/Workflow.js +1 -0
- package/esm/node/RocosSDKNode.d.ts +52 -0
- package/esm/node/RocosSDKNode.js +157 -0
- package/esm/node/index.js +7 -0
- package/esm/services/AssetStorageService.d.ts +144 -0
- package/esm/services/AssetStorageService.js +221 -0
- package/esm/services/AuthService.d.ts +93 -0
- package/esm/services/AuthService.spec.d.ts +1 -0
- package/esm/services/BaseServiceAbstract.d.ts +36 -0
- package/esm/services/BaseStreamService.d.ts +18 -0
- package/esm/services/BaseStreamService.js +47 -0
- package/esm/services/CallerService.d.ts +42 -0
- package/esm/services/CallerService.js +117 -0
- package/esm/services/CallerService.spec.d.ts +1 -0
- package/esm/services/CallerService.spec.js +227 -0
- package/esm/services/CallerServiceNode.d.ts +6 -0
- package/esm/services/CommandService.d.ts +9 -0
- package/esm/services/CommandServiceNode.d.ts +6 -0
- package/esm/services/ConfigGroupService.d.ts +89 -0
- package/esm/services/ControlService.d.ts +11 -0
- package/esm/services/ControlServiceNode.d.ts +6 -0
- package/esm/services/DashboardService.d.ts +97 -0
- package/esm/services/EvaluatorService.d.ts +11 -0
- package/esm/services/EventService.d.ts +53 -0
- package/esm/services/FileAccessorService.d.ts +11 -0
- package/esm/services/FileAccessorServiceNode.d.ts +6 -0
- package/esm/services/FunctionService.d.ts +68 -0
- package/esm/services/IntegrationService.d.ts +48 -0
- package/esm/services/MapService.d.ts +142 -0
- package/esm/services/MapService.js +192 -0
- package/esm/services/PlatformTimeService.d.ts +35 -0
- package/esm/services/PlatformTimeService.spec.d.ts +1 -0
- package/esm/services/ProfileService.d.ts +244 -0
- package/esm/services/ProjectService.d.ts +110 -0
- package/esm/services/RTPWebRTCService.d.ts +102 -0
- package/esm/services/RTPWebRTCService.js +227 -0
- package/esm/services/RTPWebRTCService.spec.d.ts +4 -0
- package/esm/services/RTPWebRTCService.spec.js +169 -0
- package/esm/services/RobotService.d.ts +278 -0
- package/esm/services/ScheduleService.d.ts +22 -0
- package/esm/services/SearchService.d.ts +12 -0
- package/esm/services/SearchServiceNode.d.ts +6 -0
- package/esm/services/SpotProvisioningService.d.ts +14 -0
- package/esm/services/SpotProvisioningServiceNode.d.ts +15 -0
- package/esm/services/StreamService.d.ts +98 -0
- package/esm/services/TelemetryService.d.ts +41 -0
- package/esm/services/TelemetryService.js +154 -0
- package/esm/services/TelemetryService.spec.d.ts +1 -0
- package/esm/services/TelemetryServiceNode.d.ts +6 -0
- package/esm/services/TimeSyncerService.d.ts +13 -0
- package/esm/services/UserService.d.ts +200 -0
- package/esm/services/WebRTCSignallingService.d.ts +22 -0
- package/esm/services/WorkflowService.d.ts +67 -0
- package/esm/services/index.d.ts +28 -0
- package/esm/services/index.js +28 -0
- package/esm/store/RocosStore.d.ts +31 -0
- package/package.json +19 -7
- package/IRocosSDK.d.ts +0 -32
- package/RocosSDK.d.ts +0 -143
- package/RocosSDK.js +0 -302
- package/constants/api.d.ts +0 -126
- package/constants/api.js +0 -126
- package/models/RocosError.d.ts +0 -31
- package/models/RocosError.js +0 -40
- package/models/ServiceEnum.d.ts +0 -27
- package/models/ServiceEnum.js +0 -28
- package/models/asset-storage/AssetModelItem.d.ts +0 -29
- package/models/caller/IRocosCallerMessageChunk.d.ts +0 -10
- package/models/caller/index.d.ts +0 -10
- package/models/caller/index.js +0 -10
- package/models/index.d.ts +0 -76
- package/models/index.js +0 -76
- package/models/message/IRocosTelemetryMessage.d.ts +0 -23
- package/models/params/ICallerParams.d.ts +0 -16
- package/node/RocosSDKNode.d.ts +0 -47
- package/node/RocosSDKNode.js +0 -150
- package/services/AssetStorageService.d.ts +0 -106
- package/services/AssetStorageService.js +0 -169
- package/services/BaseStreamService.js +0 -47
- package/services/CallerService.d.ts +0 -10
- package/services/CallerService.js +0 -53
- package/services/MapService.d.ts +0 -108
- package/services/MapService.js +0 -151
- package/services/TelemetryService.d.ts +0 -40
- package/services/TelemetryService.js +0 -142
- package/services/index.d.ts +0 -27
- package/services/index.js +0 -27
- /package/{api → cjs/api}/StreamRegister.d.ts +0 -0
- /package/{api → cjs/api}/atoms/StreamHeartbeat.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/caller/CallerStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/command/CommandStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/control/ControlStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/search/SearchStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -0
- /package/{api → cjs/api}/streams/telemetry/TelemetryStreamNode.d.ts +0 -0
- /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +0 -0
- /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +0 -0
- /package/{constants → cjs/constants}/auth.d.ts +0 -0
- /package/{constants → cjs/constants}/grpc.d.ts +0 -0
- /package/{constants → cjs/constants}/identifier.d.ts +0 -0
- /package/{constants → cjs/constants}/timezones.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/conker_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/filagree_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/google/protobuf/descriptor_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/google/protobuf/empty_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/pigeon_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.uri.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/rambo.v1_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.uri.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/serviette.v1_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/slowlane_pb.grpc-client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.client.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.d.ts +0 -0
- /package/{grpc → cjs/grpc}/teletubby_pb.grpc-client.d.ts +0 -0
- /package/{helpers → cjs/helpers}/arrayRemove.d.ts +0 -0
- /package/{helpers → cjs/helpers}/arrayUnique.d.ts +0 -0
- /package/{helpers → cjs/helpers}/average.d.ts +0 -0
- /package/{helpers → cjs/helpers}/cleanObject.d.ts +0 -0
- /package/{helpers → cjs/helpers}/cleanObject.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/enviroment.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenCallsignsLookup.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenObject.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenObject.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenOneOf.d.ts +0 -0
- /package/{helpers → cjs/helpers}/flattenOneOf.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/formatServiceUrl.d.ts +0 -0
- /package/{helpers → cjs/helpers}/formatServiceUrl.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/generateUUID.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getSubscriptionsDifference.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getURLSearchParams.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getURLSearchParams.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUniqueConfigKey.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUniqueId.d.ts +0 -0
- /package/{helpers → cjs/helpers}/getUnixTimeMs.d.ts +0 -0
- /package/{helpers → cjs/helpers}/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/nanosecondToMillisecond.d.ts +0 -0
- /package/{helpers → cjs/helpers}/nanosecondToMillisecond.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/randomString.d.ts +0 -0
- /package/{helpers/standardDeviation.spec.d.ts → cjs/helpers/splitRobotTopic.spec.d.ts} +0 -0
- /package/{helpers → cjs/helpers}/standardDeviation.d.ts +0 -0
- /package/{helpers/websandbox/frame/worker/types.js → cjs/helpers/standardDeviation.spec.d.ts} +0 -0
- /package/{helpers → cjs/helpers}/stringToUint8Array.d.ts +0 -0
- /package/{helpers → cjs/helpers}/uint8ArrayToString.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/connection.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/frame.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/frame.source.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/manager.spec.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/types.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.source.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/index.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/sandbox.d.ts +0 -0
- /package/{helpers → cjs/helpers}/websandbox/types.d.ts +0 -0
- /package/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/{logger → cjs/logger}/RocosLogger.d.ts +0 -0
- /package/{models → cjs/models}/CallsignStatus.d.ts +0 -0
- /package/{models → cjs/models}/ExportDataQuery.d.ts +0 -0
- /package/{models → cjs/models}/ExternalProject.d.ts +0 -0
- /package/{models → cjs/models}/IBaseService.d.ts +0 -0
- /package/{models → cjs/models}/IConfigGroup.d.ts +0 -0
- /package/{models → cjs/models}/IDebugLevel.d.ts +0 -0
- /package/{models → cjs/models}/IExportDataQuery.d.ts +0 -0
- /package/{models → cjs/models}/IFunctionConfig.d.ts +0 -0
- /package/{models → cjs/models}/IInvitation.d.ts +0 -0
- /package/{models → cjs/models}/IInvitationExists.d.ts +0 -0
- /package/{models → cjs/models}/IOperation.d.ts +0 -0
- /package/{models → cjs/models}/IPersonalAccessToken.d.ts +0 -0
- /package/{models → cjs/models}/IProject.d.ts +0 -0
- /package/{models → cjs/models}/IProjectApplication.d.ts +0 -0
- /package/{models → cjs/models}/IRobot.d.ts +0 -0
- /package/{models → cjs/models}/IRobotConfig.d.ts +0 -0
- /package/{models → cjs/models}/IRobotPlugin.d.ts +0 -0
- /package/{models → cjs/models}/IRobotSettings.d.ts +0 -0
- /package/{models → cjs/models}/IRobotTemplate.d.ts +0 -0
- /package/{models → cjs/models}/IRocosSDKConfig.d.ts +0 -0
- /package/{models → cjs/models}/ISource.d.ts +0 -0
- /package/{models → cjs/models}/IStream.d.ts +0 -0
- /package/{models → cjs/models}/IStreamConfig.d.ts +0 -0
- /package/{models → cjs/models}/IStreamOptions.d.ts +0 -0
- /package/{models → cjs/models}/IStreamSource.d.ts +0 -0
- /package/{models → cjs/models}/ISubscriberStatus.d.ts +0 -0
- /package/{models → cjs/models}/ITelemetryStreamConfig.d.ts +0 -0
- /package/{models → cjs/models}/IToken.d.ts +0 -0
- /package/{models → cjs/models}/IWidget.d.ts +0 -0
- /package/{models → cjs/models}/IWidgetLineGroup.d.ts +0 -0
- /package/{models → cjs/models}/ResponseLevelEnum.d.ts +0 -0
- /package/{models → cjs/models}/Robot.d.ts +0 -0
- /package/{models → cjs/models}/RobotConfig.d.ts +0 -0
- /package/{models → cjs/models}/RobotPlugin.d.ts +0 -0
- /package/{models → cjs/models}/RobotTemplate.d.ts +0 -0
- /package/{models → cjs/models}/Stream.d.ts +0 -0
- /package/{models → cjs/models}/StreamOptions.d.ts +0 -0
- /package/{models → cjs/models}/StreamSource.d.ts +0 -0
- /package/{models → cjs/models}/SubscriberStatusEnum.d.ts +0 -0
- /package/{models → cjs/models}/Token.d.ts +0 -0
- /package/{models → cjs/models}/Token.spec.d.ts +0 -0
- /package/{models → cjs/models}/Widget.d.ts +0 -0
- /package/{models → cjs/models}/WidgetLineGroup.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageChunks.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageHeartbeat.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponse.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseAck.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseResult.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseReturn.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponseUid.d.ts +0 -0
- /package/{models → cjs/models}/caller/IRocosCallerMessageResponses.d.ts +0 -0
- /package/{models → cjs/models}/caller/RocosCallerResultStatus.d.ts +0 -0
- /package/{models → cjs/models}/caller/RocosResponseLevel.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsEnums.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsLookup.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsQuery.d.ts +0 -0
- /package/{models → cjs/models}/callsigns/CallsignsQueryPredicate.d.ts +0 -0
- /package/{models → cjs/models}/command/IRocosCommandMessageHeartbeat.d.ts +0 -0
- /package/{models → cjs/models}/command/IRocosCommandMessageResponse.d.ts +0 -0
- /package/{models → cjs/models}/command/RocosCommandResultStatus.d.ts +0 -0
- /package/{models → cjs/models}/command/index.d.ts +0 -0
- /package/{models → cjs/models}/file/FileEnums.d.ts +0 -0
- /package/{models → cjs/models}/integrations/Overlay.d.ts +0 -0
- /package/{models → cjs/models}/integrations/Plan.d.ts +0 -0
- /package/{models → cjs/models}/maps/Map.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosCallerMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosChangeMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosCommandMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosControlMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosOpResultMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchRowMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IRocosSearchStatusMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/IStreamStatusMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosCallerMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosCommandMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosControlMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosOpResultMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosSearchMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosSearchRowMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/RocosTelemetryMessage.d.ts +0 -0
- /package/{models → cjs/models}/message/index.d.ts +0 -0
- /package/{models → cjs/models}/params/ICommandParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IControlParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IFileAccessorParams.d.ts +0 -0
- /package/{models → cjs/models}/params/ISearchParams.d.ts +0 -0
- /package/{models → cjs/models}/params/ITelemetryParams.d.ts +0 -0
- /package/{models → cjs/models}/params/IWebRTCSignallingParams.d.ts +0 -0
- /package/{models → cjs/models}/projects/ProjectUser.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleAction.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleInfo.d.ts +0 -0
- /package/{models → cjs/models}/schedule/IScheduleJob.d.ts +0 -0
- /package/{models → cjs/models}/search/SearchQueryFilter.d.ts +0 -0
- /package/{models → cjs/models}/search/SearchStreamQuery.d.ts +0 -0
- /package/{models → cjs/models}/stream/IBaseStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ICallerStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ICommandStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IControlStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IFileAccessorStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ISearchStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/ITelemetryStream.d.ts +0 -0
- /package/{models → cjs/models}/stream/IWebRTCSignallingStream.d.ts +0 -0
- /package/{models → cjs/models}/types.d.ts +0 -0
- /package/{models → cjs/models}/workflow/Workflow.d.ts +0 -0
- /package/{node → cjs/node}/index.d.ts +0 -0
- /package/{services → cjs/services}/AuthService.d.ts +0 -0
- /package/{services → cjs/services}/AuthService.spec.d.ts +0 -0
- /package/{services → cjs/services}/BaseServiceAbstract.d.ts +0 -0
- /package/{services → cjs/services}/BaseStreamService.d.ts +0 -0
- /package/{helpers/websandbox/types.js → cjs/services/CallerService.spec.d.ts} +0 -0
- /package/{services → cjs/services}/CallerServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/CommandService.d.ts +0 -0
- /package/{services → cjs/services}/CommandServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/ConfigGroupService.d.ts +0 -0
- /package/{services → cjs/services}/ControlService.d.ts +0 -0
- /package/{services → cjs/services}/ControlServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/DashboardService.d.ts +0 -0
- /package/{services → cjs/services}/EvaluatorService.d.ts +0 -0
- /package/{services → cjs/services}/EventService.d.ts +0 -0
- /package/{services → cjs/services}/FileAccessorService.d.ts +0 -0
- /package/{services → cjs/services}/FileAccessorServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/FunctionService.d.ts +0 -0
- /package/{services → cjs/services}/IntegrationService.d.ts +0 -0
- /package/{services → cjs/services}/PlatformTimeService.d.ts +0 -0
- /package/{services → cjs/services}/PlatformTimeService.spec.d.ts +0 -0
- /package/{services → cjs/services}/ProfileService.d.ts +0 -0
- /package/{services → cjs/services}/ProjectService.d.ts +0 -0
- /package/{services → cjs/services}/RobotService.d.ts +0 -0
- /package/{services → cjs/services}/ScheduleService.d.ts +0 -0
- /package/{services → cjs/services}/SearchService.d.ts +0 -0
- /package/{services → cjs/services}/SearchServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/SpotProvisioningService.d.ts +0 -0
- /package/{services → cjs/services}/SpotProvisioningServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/StreamService.d.ts +0 -0
- /package/{services → cjs/services}/TelemetryService.spec.d.ts +0 -0
- /package/{services → cjs/services}/TelemetryServiceNode.d.ts +0 -0
- /package/{services → cjs/services}/TimeSyncerService.d.ts +0 -0
- /package/{services → cjs/services}/UserService.d.ts +0 -0
- /package/{services → cjs/services}/WebRTCSignallingService.d.ts +0 -0
- /package/{services → cjs/services}/WorkflowService.d.ts +0 -0
- /package/{store → cjs/store}/RocosStore.d.ts +0 -0
- /package/{IRocosSDK.js → esm/IRocosSDK.js} +0 -0
- /package/{api → esm/api}/StreamRegister.js +0 -0
- /package/{api → esm/api}/atoms/StreamHeartbeat.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStream.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/caller/CallerStreamNode.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStream.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/command/CommandStreamNode.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStream.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/control/ControlStreamNode.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStream.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamNode.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStream.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/search/SearchStreamNode.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStream.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.js +0 -0
- /package/{api → esm/api}/streams/telemetry/TelemetryStreamNode.js +0 -0
- /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -0
- /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +0 -0
- /package/{constants → esm/constants}/auth.js +0 -0
- /package/{constants → esm/constants}/grpc.js +0 -0
- /package/{constants → esm/constants}/identifier.js +0 -0
- /package/{constants → esm/constants}/timezones.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/conker_pb.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/filagree_pb.js +0 -0
- /package/{grpc → esm/grpc}/google/protobuf/descriptor_pb.js +0 -0
- /package/{grpc → esm/grpc}/google/protobuf/empty_pb.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/pigeon_pb.js +0 -0
- /package/{grpc → esm/grpc}/rambo.uri.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/rambo.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/serviette.uri.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/serviette.v1_pb.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/slowlane_pb.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.client.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.grpc-client.js +0 -0
- /package/{grpc → esm/grpc}/teletubby_pb.js +0 -0
- /package/{helpers → esm/helpers}/arrayRemove.js +0 -0
- /package/{helpers → esm/helpers}/arrayUnique.js +0 -0
- /package/{helpers → esm/helpers}/average.js +0 -0
- /package/{helpers → esm/helpers}/cleanObject.js +0 -0
- /package/{models/IBaseService.js → esm/helpers/cleanObject.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/cleanObject.spec.js +0 -0
- /package/{helpers → esm/helpers}/enviroment.js +0 -0
- /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
- /package/{helpers → esm/helpers}/flattenObject.js +0 -0
- /package/{models/IConfigGroup.js → esm/helpers/flattenObject.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/flattenObject.spec.js +0 -0
- /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
- /package/{models/IDebugLevel.js → esm/helpers/flattenOneOf.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/flattenOneOf.spec.js +0 -0
- /package/{helpers → esm/helpers}/formatServiceUrl.js +0 -0
- /package/{models/IExportDataQuery.js → esm/helpers/formatServiceUrl.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/formatServiceUrl.spec.js +0 -0
- /package/{helpers → esm/helpers}/generateUUID.js +0 -0
- /package/{helpers → esm/helpers}/getSubscriptionsDifference.js +0 -0
- /package/{helpers → esm/helpers}/getURLSearchParams.js +0 -0
- /package/{models/IFunctionConfig.js → esm/helpers/getURLSearchParams.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/getURLSearchParams.spec.js +0 -0
- /package/{helpers → esm/helpers}/getUniqueConfigKey.js +0 -0
- /package/{helpers → esm/helpers}/getUniqueId.js +0 -0
- /package/{helpers → esm/helpers}/getUnixTimeMs.js +0 -0
- /package/{helpers/index.js → esm/helpers/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/nanosecondToMillisecond.js +0 -0
- /package/{models/IInvitation.js → esm/helpers/nanosecondToMillisecond.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/nanosecondToMillisecond.spec.js +0 -0
- /package/{helpers → esm/helpers}/randomString.js +0 -0
- /package/{models/IInvitationExists.js → esm/helpers/splitRobotTopic.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/standardDeviation.js +0 -0
- /package/{models/IOperation.js → esm/helpers/standardDeviation.spec.d.ts} +0 -0
- /package/{helpers → esm/helpers}/standardDeviation.spec.js +0 -0
- /package/{helpers → esm/helpers}/stringToUint8Array.js +0 -0
- /package/{helpers → esm/helpers}/uint8ArrayToString.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/connection.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/frame.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/frame.source.js +0 -0
- /package/{helpers/websandbox/frame/index.js → esm/helpers/websandbox/frame/index.d.ts} +0 -0
- /package/{helpers/websandbox/frame/worker/index.js → esm/helpers/websandbox/frame/worker/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/manager.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/manager.spec.js +0 -0
- /package/{models → esm/helpers/websandbox/frame/worker}/types.js +0 -0
- /package/{models/IPersonalAccessToken.js → esm/helpers/websandbox/frame/worker/worker.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.js +0 -0
- /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.source.js +0 -0
- /package/{helpers/websandbox/index.js → esm/helpers/websandbox/index.d.ts} +0 -0
- /package/{helpers → esm/helpers}/websandbox/sandbox.js +0 -0
- /package/{models/IProject.js → esm/helpers/websandbox/types.js} +0 -0
- /package/{index.js → esm/index.d.ts} +0 -0
- /package/{logger → esm/logger}/RocosLogger.js +0 -0
- /package/{models → esm/models}/CallsignStatus.js +0 -0
- /package/{models → esm/models}/ExportDataQuery.js +0 -0
- /package/{models → esm/models}/ExternalProject.js +0 -0
- /package/{models/IProjectApplication.js → esm/models/IBaseService.js} +0 -0
- /package/{models/IRobot.js → esm/models/IConfigGroup.js} +0 -0
- /package/{models/IRobotConfig.js → esm/models/IDebugLevel.js} +0 -0
- /package/{models/IRobotPlugin.js → esm/models/IExportDataQuery.js} +0 -0
- /package/{models/IRobotSettings.js → esm/models/IFunctionConfig.js} +0 -0
- /package/{models/IRobotTemplate.js → esm/models/IInvitation.js} +0 -0
- /package/{models/IRocosSDKConfig.js → esm/models/IInvitationExists.js} +0 -0
- /package/{models/ISource.js → esm/models/IOperation.js} +0 -0
- /package/{models/IStream.js → esm/models/IPersonalAccessToken.js} +0 -0
- /package/{models/IStreamConfig.js → esm/models/IProject.js} +0 -0
- /package/{models/IStreamOptions.js → esm/models/IProjectApplication.js} +0 -0
- /package/{models/IStreamSource.js → esm/models/IRobot.js} +0 -0
- /package/{models/ISubscriberStatus.js → esm/models/IRobotConfig.js} +0 -0
- /package/{models/ITelemetryStreamConfig.js → esm/models/IRobotPlugin.js} +0 -0
- /package/{models/IToken.js → esm/models/IRobotSettings.js} +0 -0
- /package/{models/IWidget.js → esm/models/IRobotTemplate.js} +0 -0
- /package/{models/IWidgetLineGroup.js → esm/models/IRocosSDKConfig.js} +0 -0
- /package/{models/asset-storage/AssetModelItem.js → esm/models/ISource.js} +0 -0
- /package/{models/caller/IRocosCallerMessageChunk.js → esm/models/IStream.js} +0 -0
- /package/{models/caller/IRocosCallerMessageChunks.js → esm/models/IStreamConfig.js} +0 -0
- /package/{models/caller/IRocosCallerMessageHeartbeat.js → esm/models/IStreamOptions.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponse.js → esm/models/IStreamSource.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponseReturn.js → esm/models/ISubscriberStatus.js} +0 -0
- /package/{models/caller/IRocosCallerMessageResponses.js → esm/models/ITelemetryStreamConfig.js} +0 -0
- /package/{models/command/IRocosCommandMessageHeartbeat.js → esm/models/IToken.js} +0 -0
- /package/{models/integrations/Overlay.js → esm/models/IWidget.js} +0 -0
- /package/{models/integrations/Plan.js → esm/models/IWidgetLineGroup.js} +0 -0
- /package/{models → esm/models}/ResponseLevelEnum.js +0 -0
- /package/{models → esm/models}/Robot.js +0 -0
- /package/{models → esm/models}/RobotConfig.js +0 -0
- /package/{models → esm/models}/RobotPlugin.js +0 -0
- /package/{models → esm/models}/RobotTemplate.js +0 -0
- /package/{models → esm/models}/Stream.js +0 -0
- /package/{models → esm/models}/StreamOptions.js +0 -0
- /package/{models → esm/models}/StreamSource.js +0 -0
- /package/{models → esm/models}/SubscriberStatusEnum.js +0 -0
- /package/{models → esm/models}/Token.js +0 -0
- /package/{models/maps/Map.js → esm/models/Token.spec.d.ts} +0 -0
- /package/{models → esm/models}/Token.spec.js +0 -0
- /package/{models → esm/models}/Widget.js +0 -0
- /package/{models → esm/models}/WidgetLineGroup.js +0 -0
- /package/{models/message/IRocosCallerMessage.js → esm/models/asset-storage/AssetModelItem.js} +0 -0
- /package/{models/message/IRocosChangeMessage.js → esm/models/asset-storage/SyncIntegrations.js} +0 -0
- /package/{models/message/IRocosCommandMessage.js → esm/models/caller/IRocosCallerMessageChunk.js} +0 -0
- /package/{models/message/IRocosControlMessage.js → esm/models/caller/IRocosCallerMessageChunks.js} +0 -0
- /package/{models/message/IRocosOpResultMessage.js → esm/models/caller/IRocosCallerMessageHeartbeat.js} +0 -0
- /package/{models/message/IRocosSearchMessage.js → esm/models/caller/IRocosCallerMessageResponse.js} +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseAck.js +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseResult.js +0 -0
- /package/{models/message/IRocosSearchRowMessage.js → esm/models/caller/IRocosCallerMessageResponseReturn.js} +0 -0
- /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
- /package/{models/message/IRocosSearchStatusMessage.js → esm/models/caller/IRocosCallerMessageResponses.js} +0 -0
- /package/{models → esm/models}/caller/RocosCallerResultStatus.js +0 -0
- /package/{models → esm/models}/caller/RocosResponseLevel.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsEnums.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsLookup.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsQuery.js +0 -0
- /package/{models → esm/models}/callsigns/CallsignsQueryPredicate.js +0 -0
- /package/{models/message/IRocosTelemetryMessage.js → esm/models/command/IRocosCommandMessageHeartbeat.js} +0 -0
- /package/{models → esm/models}/command/IRocosCommandMessageResponse.js +0 -0
- /package/{models → esm/models}/command/RocosCommandResultStatus.js +0 -0
- /package/{models/command/index.js → esm/models/command/index.d.ts} +0 -0
- /package/{models → esm/models}/file/FileEnums.js +0 -0
- /package/{models/message/IStreamStatusMessage.js → esm/models/integrations/Overlay.js} +0 -0
- /package/{models/params/ICallerParams.js → esm/models/integrations/Plan.js} +0 -0
- /package/{models/params/ICommandParams.js → esm/models/maps/Map.js} +0 -0
- /package/{models/params/IControlParams.js → esm/models/maps/Panorama.js} +0 -0
- /package/{models/params/IFileAccessorParams.js → esm/models/message/IRocosCallerMessage.js} +0 -0
- /package/{models/params/ISearchParams.js → esm/models/message/IRocosChangeMessage.js} +0 -0
- /package/{models/params/ITelemetryParams.js → esm/models/message/IRocosCommandMessage.js} +0 -0
- /package/{models/params/IWebRTCSignallingParams.js → esm/models/message/IRocosControlMessage.js} +0 -0
- /package/{models/projects/ProjectUser.js → esm/models/message/IRocosOpResultMessage.js} +0 -0
- /package/{models/schedule/IScheduleInfo.js → esm/models/message/IRocosSearchMessage.js} +0 -0
- /package/{models/schedule/IScheduleJob.js → esm/models/message/IRocosSearchRowMessage.js} +0 -0
- /package/{models/stream/IBaseStream.js → esm/models/message/IRocosSearchStatusMessage.js} +0 -0
- /package/{models/stream/ICallerStream.js → esm/models/message/IRocosTelemetryMessage.js} +0 -0
- /package/{models/stream/ICommandStream.js → esm/models/message/IStreamStatusMessage.js} +0 -0
- /package/{models → esm/models}/message/RocosCallerMessage.js +0 -0
- /package/{models → esm/models}/message/RocosCommandMessage.js +0 -0
- /package/{models → esm/models}/message/RocosControlMessage.js +0 -0
- /package/{models → esm/models}/message/RocosOpResultMessage.js +0 -0
- /package/{models → esm/models}/message/RocosSearchMessage.js +0 -0
- /package/{models → esm/models}/message/RocosSearchRowMessage.js +0 -0
- /package/{models → esm/models}/message/RocosTelemetryMessage.js +0 -0
- /package/{models/message/index.js → esm/models/message/index.d.ts} +0 -0
- /package/{models/stream/IControlStream.js → esm/models/params/ICallerParams.js} +0 -0
- /package/{models/stream/IFileAccessorStream.js → esm/models/params/ICommandParams.js} +0 -0
- /package/{models/stream/ISearchStream.js → esm/models/params/IControlParams.js} +0 -0
- /package/{models/stream/ITelemetryStream.js → esm/models/params/IFileAccessorParams.js} +0 -0
- /package/{models/stream/IWebRTCSignallingStream.js → esm/models/params/ISearchParams.js} +0 -0
- /package/{models/workflow/Workflow.js → esm/models/params/ITelemetryParams.js} +0 -0
- /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
- /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
- /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
- /package/{node/index.js → esm/node/index.d.ts} +0 -0
- /package/{services → esm/services}/AuthService.js +0 -0
- /package/{services → esm/services}/AuthService.spec.js +0 -0
- /package/{services → esm/services}/BaseServiceAbstract.js +0 -0
- /package/{services → esm/services}/CallerServiceNode.js +0 -0
- /package/{services → esm/services}/CommandService.js +0 -0
- /package/{services → esm/services}/CommandServiceNode.js +0 -0
- /package/{services → esm/services}/ConfigGroupService.js +0 -0
- /package/{services → esm/services}/ControlService.js +0 -0
- /package/{services → esm/services}/ControlServiceNode.js +0 -0
- /package/{services → esm/services}/DashboardService.js +0 -0
- /package/{services → esm/services}/EvaluatorService.js +0 -0
- /package/{services → esm/services}/EventService.js +0 -0
- /package/{services → esm/services}/FileAccessorService.js +0 -0
- /package/{services → esm/services}/FileAccessorServiceNode.js +0 -0
- /package/{services → esm/services}/FunctionService.js +0 -0
- /package/{services → esm/services}/IntegrationService.js +0 -0
- /package/{services → esm/services}/PlatformTimeService.js +0 -0
- /package/{services → esm/services}/PlatformTimeService.spec.js +0 -0
- /package/{services → esm/services}/ProfileService.js +0 -0
- /package/{services → esm/services}/ProjectService.js +0 -0
- /package/{services → esm/services}/RobotService.js +0 -0
- /package/{services → esm/services}/ScheduleService.js +0 -0
- /package/{services → esm/services}/SearchService.js +0 -0
- /package/{services → esm/services}/SearchServiceNode.js +0 -0
- /package/{services → esm/services}/SpotProvisioningService.js +0 -0
- /package/{services → esm/services}/SpotProvisioningServiceNode.js +0 -0
- /package/{services → esm/services}/StreamService.js +0 -0
- /package/{services → esm/services}/TelemetryService.spec.js +0 -0
- /package/{services → esm/services}/TelemetryServiceNode.js +0 -0
- /package/{services → esm/services}/TimeSyncerService.js +0 -0
- /package/{services → esm/services}/UserService.js +0 -0
- /package/{services → esm/services}/WebRTCSignallingService.js +0 -0
- /package/{services → esm/services}/WorkflowService.js +0 -0
- /package/{store → esm/store}/RocosStore.js +0 -0
@@ -0,0 +1,1798 @@
|
|
1
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
2
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
3
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
4
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
5
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
6
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
7
|
+
/**
|
8
|
+
* The protocol compiler can output a FileDescriptorSet containing the .proto
|
9
|
+
* files it parses.
|
10
|
+
*
|
11
|
+
* @generated from protobuf message google.protobuf.FileDescriptorSet
|
12
|
+
*/
|
13
|
+
export interface FileDescriptorSet {
|
14
|
+
/**
|
15
|
+
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto file = 1;
|
16
|
+
*/
|
17
|
+
file: FileDescriptorProto[];
|
18
|
+
}
|
19
|
+
/**
|
20
|
+
* Describes a complete .proto file.
|
21
|
+
*
|
22
|
+
* @generated from protobuf message google.protobuf.FileDescriptorProto
|
23
|
+
*/
|
24
|
+
export interface FileDescriptorProto {
|
25
|
+
/**
|
26
|
+
* @generated from protobuf field: optional string name = 1;
|
27
|
+
*/
|
28
|
+
name?: string;
|
29
|
+
/**
|
30
|
+
* @generated from protobuf field: optional string package = 2;
|
31
|
+
*/
|
32
|
+
package?: string;
|
33
|
+
/**
|
34
|
+
* Names of files imported by this file.
|
35
|
+
*
|
36
|
+
* @generated from protobuf field: repeated string dependency = 3;
|
37
|
+
*/
|
38
|
+
dependency: string[];
|
39
|
+
/**
|
40
|
+
* Indexes of the public imported files in the dependency list above.
|
41
|
+
*
|
42
|
+
* @generated from protobuf field: repeated int32 public_dependency = 10;
|
43
|
+
*/
|
44
|
+
publicDependency: number[];
|
45
|
+
/**
|
46
|
+
* Indexes of the weak imported files in the dependency list.
|
47
|
+
* For Google-internal migration only. Do not use.
|
48
|
+
*
|
49
|
+
* @generated from protobuf field: repeated int32 weak_dependency = 11;
|
50
|
+
*/
|
51
|
+
weakDependency: number[];
|
52
|
+
/**
|
53
|
+
* All top-level definitions in this file.
|
54
|
+
*
|
55
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto message_type = 4;
|
56
|
+
*/
|
57
|
+
messageType: DescriptorProto[];
|
58
|
+
/**
|
59
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 5;
|
60
|
+
*/
|
61
|
+
enumType: EnumDescriptorProto[];
|
62
|
+
/**
|
63
|
+
* @generated from protobuf field: repeated google.protobuf.ServiceDescriptorProto service = 6;
|
64
|
+
*/
|
65
|
+
service: ServiceDescriptorProto[];
|
66
|
+
/**
|
67
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 7;
|
68
|
+
*/
|
69
|
+
extension: FieldDescriptorProto[];
|
70
|
+
/**
|
71
|
+
* @generated from protobuf field: optional google.protobuf.FileOptions options = 8;
|
72
|
+
*/
|
73
|
+
options?: FileOptions;
|
74
|
+
/**
|
75
|
+
* This field contains optional information about the original source code.
|
76
|
+
* You may safely remove this entire field without harming runtime
|
77
|
+
* functionality of the descriptors -- the information is needed only by
|
78
|
+
* development tools.
|
79
|
+
*
|
80
|
+
* @generated from protobuf field: optional google.protobuf.SourceCodeInfo source_code_info = 9;
|
81
|
+
*/
|
82
|
+
sourceCodeInfo?: SourceCodeInfo;
|
83
|
+
/**
|
84
|
+
* The syntax of the proto file.
|
85
|
+
* The supported values are "proto2", "proto3", and "editions".
|
86
|
+
*
|
87
|
+
* If `edition` is present, this value must be "editions".
|
88
|
+
*
|
89
|
+
* @generated from protobuf field: optional string syntax = 12;
|
90
|
+
*/
|
91
|
+
syntax?: string;
|
92
|
+
/**
|
93
|
+
* The edition of the proto file, which is an opaque string.
|
94
|
+
*
|
95
|
+
* @generated from protobuf field: optional string edition = 13;
|
96
|
+
*/
|
97
|
+
edition?: string;
|
98
|
+
}
|
99
|
+
/**
|
100
|
+
* Describes a message type.
|
101
|
+
*
|
102
|
+
* @generated from protobuf message google.protobuf.DescriptorProto
|
103
|
+
*/
|
104
|
+
export interface DescriptorProto {
|
105
|
+
/**
|
106
|
+
* @generated from protobuf field: optional string name = 1;
|
107
|
+
*/
|
108
|
+
name?: string;
|
109
|
+
/**
|
110
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto field = 2;
|
111
|
+
*/
|
112
|
+
field: FieldDescriptorProto[];
|
113
|
+
/**
|
114
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 6;
|
115
|
+
*/
|
116
|
+
extension: FieldDescriptorProto[];
|
117
|
+
/**
|
118
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto nested_type = 3;
|
119
|
+
*/
|
120
|
+
nestedType: DescriptorProto[];
|
121
|
+
/**
|
122
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 4;
|
123
|
+
*/
|
124
|
+
enumType: EnumDescriptorProto[];
|
125
|
+
/**
|
126
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;
|
127
|
+
*/
|
128
|
+
extensionRange: DescriptorProto_ExtensionRange[];
|
129
|
+
/**
|
130
|
+
* @generated from protobuf field: repeated google.protobuf.OneofDescriptorProto oneof_decl = 8;
|
131
|
+
*/
|
132
|
+
oneofDecl: OneofDescriptorProto[];
|
133
|
+
/**
|
134
|
+
* @generated from protobuf field: optional google.protobuf.MessageOptions options = 7;
|
135
|
+
*/
|
136
|
+
options?: MessageOptions;
|
137
|
+
/**
|
138
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ReservedRange reserved_range = 9;
|
139
|
+
*/
|
140
|
+
reservedRange: DescriptorProto_ReservedRange[];
|
141
|
+
/**
|
142
|
+
* Reserved field names, which may not be used by fields in the same message.
|
143
|
+
* A given name may only be reserved once.
|
144
|
+
*
|
145
|
+
* @generated from protobuf field: repeated string reserved_name = 10;
|
146
|
+
*/
|
147
|
+
reservedName: string[];
|
148
|
+
}
|
149
|
+
/**
|
150
|
+
* @generated from protobuf message google.protobuf.DescriptorProto.ExtensionRange
|
151
|
+
*/
|
152
|
+
export interface DescriptorProto_ExtensionRange {
|
153
|
+
/**
|
154
|
+
* @generated from protobuf field: optional int32 start = 1;
|
155
|
+
*/
|
156
|
+
start?: number;
|
157
|
+
/**
|
158
|
+
* @generated from protobuf field: optional int32 end = 2;
|
159
|
+
*/
|
160
|
+
end?: number;
|
161
|
+
/**
|
162
|
+
* @generated from protobuf field: optional google.protobuf.ExtensionRangeOptions options = 3;
|
163
|
+
*/
|
164
|
+
options?: ExtensionRangeOptions;
|
165
|
+
}
|
166
|
+
/**
|
167
|
+
* Range of reserved tag numbers. Reserved tag numbers may not be used by
|
168
|
+
* fields or extension ranges in the same message. Reserved ranges may
|
169
|
+
* not overlap.
|
170
|
+
*
|
171
|
+
* @generated from protobuf message google.protobuf.DescriptorProto.ReservedRange
|
172
|
+
*/
|
173
|
+
export interface DescriptorProto_ReservedRange {
|
174
|
+
/**
|
175
|
+
* @generated from protobuf field: optional int32 start = 1;
|
176
|
+
*/
|
177
|
+
start?: number;
|
178
|
+
/**
|
179
|
+
* @generated from protobuf field: optional int32 end = 2;
|
180
|
+
*/
|
181
|
+
end?: number;
|
182
|
+
}
|
183
|
+
/**
|
184
|
+
* @generated from protobuf message google.protobuf.ExtensionRangeOptions
|
185
|
+
*/
|
186
|
+
export interface ExtensionRangeOptions {
|
187
|
+
/**
|
188
|
+
* The parser stores options it doesn't recognize here. See above.
|
189
|
+
*
|
190
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
191
|
+
*/
|
192
|
+
uninterpretedOption: UninterpretedOption[];
|
193
|
+
}
|
194
|
+
/**
|
195
|
+
* Describes a field within a message.
|
196
|
+
*
|
197
|
+
* @generated from protobuf message google.protobuf.FieldDescriptorProto
|
198
|
+
*/
|
199
|
+
export interface FieldDescriptorProto {
|
200
|
+
/**
|
201
|
+
* @generated from protobuf field: optional string name = 1;
|
202
|
+
*/
|
203
|
+
name?: string;
|
204
|
+
/**
|
205
|
+
* @generated from protobuf field: optional int32 number = 3;
|
206
|
+
*/
|
207
|
+
number?: number;
|
208
|
+
/**
|
209
|
+
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Label label = 4;
|
210
|
+
*/
|
211
|
+
label?: FieldDescriptorProto_Label;
|
212
|
+
/**
|
213
|
+
* If type_name is set, this need not be set. If both this and type_name
|
214
|
+
* are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
|
215
|
+
*
|
216
|
+
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Type type = 5;
|
217
|
+
*/
|
218
|
+
type?: FieldDescriptorProto_Type;
|
219
|
+
/**
|
220
|
+
* For message and enum types, this is the name of the type. If the name
|
221
|
+
* starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
|
222
|
+
* rules are used to find the type (i.e. first the nested types within this
|
223
|
+
* message are searched, then within the parent, on up to the root
|
224
|
+
* namespace).
|
225
|
+
*
|
226
|
+
* @generated from protobuf field: optional string type_name = 6;
|
227
|
+
*/
|
228
|
+
typeName?: string;
|
229
|
+
/**
|
230
|
+
* For extensions, this is the name of the type being extended. It is
|
231
|
+
* resolved in the same manner as type_name.
|
232
|
+
*
|
233
|
+
* @generated from protobuf field: optional string extendee = 2;
|
234
|
+
*/
|
235
|
+
extendee?: string;
|
236
|
+
/**
|
237
|
+
* For numeric types, contains the original text representation of the value.
|
238
|
+
* For booleans, "true" or "false".
|
239
|
+
* For strings, contains the default text contents (not escaped in any way).
|
240
|
+
* For bytes, contains the C escaped value. All bytes >= 128 are escaped.
|
241
|
+
*
|
242
|
+
* @generated from protobuf field: optional string default_value = 7;
|
243
|
+
*/
|
244
|
+
defaultValue?: string;
|
245
|
+
/**
|
246
|
+
* If set, gives the index of a oneof in the containing type's oneof_decl
|
247
|
+
* list. This field is a member of that oneof.
|
248
|
+
*
|
249
|
+
* @generated from protobuf field: optional int32 oneof_index = 9;
|
250
|
+
*/
|
251
|
+
oneofIndex?: number;
|
252
|
+
/**
|
253
|
+
* JSON name of this field. The value is set by protocol compiler. If the
|
254
|
+
* user has set a "json_name" option on this field, that option's value
|
255
|
+
* will be used. Otherwise, it's deduced from the field's name by converting
|
256
|
+
* it to camelCase.
|
257
|
+
*
|
258
|
+
* @generated from protobuf field: optional string json_name = 10;
|
259
|
+
*/
|
260
|
+
jsonName?: string;
|
261
|
+
/**
|
262
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions options = 8;
|
263
|
+
*/
|
264
|
+
options?: FieldOptions;
|
265
|
+
/**
|
266
|
+
* If true, this is a proto3 "optional". When a proto3 field is optional, it
|
267
|
+
* tracks presence regardless of field type.
|
268
|
+
*
|
269
|
+
* When proto3_optional is true, this field must be belong to a oneof to
|
270
|
+
* signal to old proto3 clients that presence is tracked for this field. This
|
271
|
+
* oneof is known as a "synthetic" oneof, and this field must be its sole
|
272
|
+
* member (each proto3 optional field gets its own synthetic oneof). Synthetic
|
273
|
+
* oneofs exist in the descriptor only, and do not generate any API. Synthetic
|
274
|
+
* oneofs must be ordered after all "real" oneofs.
|
275
|
+
*
|
276
|
+
* For message fields, proto3_optional doesn't create any semantic change,
|
277
|
+
* since non-repeated message fields always track presence. However it still
|
278
|
+
* indicates the semantic detail of whether the user wrote "optional" or not.
|
279
|
+
* This can be useful for round-tripping the .proto file. For consistency we
|
280
|
+
* give message fields a synthetic oneof also, even though it is not required
|
281
|
+
* to track presence. This is especially important because the parser can't
|
282
|
+
* tell if a field is a message or an enum, so it must always create a
|
283
|
+
* synthetic oneof.
|
284
|
+
*
|
285
|
+
* Proto2 optional fields do not set this flag, because they already indicate
|
286
|
+
* optional with `LABEL_OPTIONAL`.
|
287
|
+
*
|
288
|
+
* @generated from protobuf field: optional bool proto3_optional = 17;
|
289
|
+
*/
|
290
|
+
proto3Optional?: boolean;
|
291
|
+
}
|
292
|
+
/**
|
293
|
+
* @generated from protobuf enum google.protobuf.FieldDescriptorProto.Type
|
294
|
+
*/
|
295
|
+
export declare enum FieldDescriptorProto_Type {
|
296
|
+
/**
|
297
|
+
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
298
|
+
*/
|
299
|
+
UNSPECIFIED$ = 0,
|
300
|
+
/**
|
301
|
+
* 0 is reserved for errors.
|
302
|
+
* Order is weird for historical reasons.
|
303
|
+
*
|
304
|
+
* @generated from protobuf enum value: TYPE_DOUBLE = 1;
|
305
|
+
*/
|
306
|
+
DOUBLE = 1,
|
307
|
+
/**
|
308
|
+
* @generated from protobuf enum value: TYPE_FLOAT = 2;
|
309
|
+
*/
|
310
|
+
FLOAT = 2,
|
311
|
+
/**
|
312
|
+
* Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
|
313
|
+
* negative values are likely.
|
314
|
+
*
|
315
|
+
* @generated from protobuf enum value: TYPE_INT64 = 3;
|
316
|
+
*/
|
317
|
+
INT64 = 3,
|
318
|
+
/**
|
319
|
+
* @generated from protobuf enum value: TYPE_UINT64 = 4;
|
320
|
+
*/
|
321
|
+
UINT64 = 4,
|
322
|
+
/**
|
323
|
+
* Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
|
324
|
+
* negative values are likely.
|
325
|
+
*
|
326
|
+
* @generated from protobuf enum value: TYPE_INT32 = 5;
|
327
|
+
*/
|
328
|
+
INT32 = 5,
|
329
|
+
/**
|
330
|
+
* @generated from protobuf enum value: TYPE_FIXED64 = 6;
|
331
|
+
*/
|
332
|
+
FIXED64 = 6,
|
333
|
+
/**
|
334
|
+
* @generated from protobuf enum value: TYPE_FIXED32 = 7;
|
335
|
+
*/
|
336
|
+
FIXED32 = 7,
|
337
|
+
/**
|
338
|
+
* @generated from protobuf enum value: TYPE_BOOL = 8;
|
339
|
+
*/
|
340
|
+
BOOL = 8,
|
341
|
+
/**
|
342
|
+
* @generated from protobuf enum value: TYPE_STRING = 9;
|
343
|
+
*/
|
344
|
+
STRING = 9,
|
345
|
+
/**
|
346
|
+
* Tag-delimited aggregate.
|
347
|
+
* Group type is deprecated and not supported in proto3. However, Proto3
|
348
|
+
* implementations should still be able to parse the group wire format and
|
349
|
+
* treat group fields as unknown fields.
|
350
|
+
*
|
351
|
+
* @generated from protobuf enum value: TYPE_GROUP = 10;
|
352
|
+
*/
|
353
|
+
GROUP = 10,
|
354
|
+
/**
|
355
|
+
* Length-delimited aggregate.
|
356
|
+
*
|
357
|
+
* @generated from protobuf enum value: TYPE_MESSAGE = 11;
|
358
|
+
*/
|
359
|
+
MESSAGE = 11,
|
360
|
+
/**
|
361
|
+
* New in version 2.
|
362
|
+
*
|
363
|
+
* @generated from protobuf enum value: TYPE_BYTES = 12;
|
364
|
+
*/
|
365
|
+
BYTES = 12,
|
366
|
+
/**
|
367
|
+
* @generated from protobuf enum value: TYPE_UINT32 = 13;
|
368
|
+
*/
|
369
|
+
UINT32 = 13,
|
370
|
+
/**
|
371
|
+
* @generated from protobuf enum value: TYPE_ENUM = 14;
|
372
|
+
*/
|
373
|
+
ENUM = 14,
|
374
|
+
/**
|
375
|
+
* @generated from protobuf enum value: TYPE_SFIXED32 = 15;
|
376
|
+
*/
|
377
|
+
SFIXED32 = 15,
|
378
|
+
/**
|
379
|
+
* @generated from protobuf enum value: TYPE_SFIXED64 = 16;
|
380
|
+
*/
|
381
|
+
SFIXED64 = 16,
|
382
|
+
/**
|
383
|
+
* Uses ZigZag encoding.
|
384
|
+
*
|
385
|
+
* @generated from protobuf enum value: TYPE_SINT32 = 17;
|
386
|
+
*/
|
387
|
+
SINT32 = 17,
|
388
|
+
/**
|
389
|
+
* Uses ZigZag encoding.
|
390
|
+
*
|
391
|
+
* @generated from protobuf enum value: TYPE_SINT64 = 18;
|
392
|
+
*/
|
393
|
+
SINT64 = 18
|
394
|
+
}
|
395
|
+
/**
|
396
|
+
* @generated from protobuf enum google.protobuf.FieldDescriptorProto.Label
|
397
|
+
*/
|
398
|
+
export declare enum FieldDescriptorProto_Label {
|
399
|
+
/**
|
400
|
+
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
401
|
+
*/
|
402
|
+
UNSPECIFIED$ = 0,
|
403
|
+
/**
|
404
|
+
* 0 is reserved for errors
|
405
|
+
*
|
406
|
+
* @generated from protobuf enum value: LABEL_OPTIONAL = 1;
|
407
|
+
*/
|
408
|
+
OPTIONAL = 1,
|
409
|
+
/**
|
410
|
+
* @generated from protobuf enum value: LABEL_REQUIRED = 2;
|
411
|
+
*/
|
412
|
+
REQUIRED = 2,
|
413
|
+
/**
|
414
|
+
* @generated from protobuf enum value: LABEL_REPEATED = 3;
|
415
|
+
*/
|
416
|
+
REPEATED = 3
|
417
|
+
}
|
418
|
+
/**
|
419
|
+
* Describes a oneof.
|
420
|
+
*
|
421
|
+
* @generated from protobuf message google.protobuf.OneofDescriptorProto
|
422
|
+
*/
|
423
|
+
export interface OneofDescriptorProto {
|
424
|
+
/**
|
425
|
+
* @generated from protobuf field: optional string name = 1;
|
426
|
+
*/
|
427
|
+
name?: string;
|
428
|
+
/**
|
429
|
+
* @generated from protobuf field: optional google.protobuf.OneofOptions options = 2;
|
430
|
+
*/
|
431
|
+
options?: OneofOptions;
|
432
|
+
}
|
433
|
+
/**
|
434
|
+
* Describes an enum type.
|
435
|
+
*
|
436
|
+
* @generated from protobuf message google.protobuf.EnumDescriptorProto
|
437
|
+
*/
|
438
|
+
export interface EnumDescriptorProto {
|
439
|
+
/**
|
440
|
+
* @generated from protobuf field: optional string name = 1;
|
441
|
+
*/
|
442
|
+
name?: string;
|
443
|
+
/**
|
444
|
+
* @generated from protobuf field: repeated google.protobuf.EnumValueDescriptorProto value = 2;
|
445
|
+
*/
|
446
|
+
value: EnumValueDescriptorProto[];
|
447
|
+
/**
|
448
|
+
* @generated from protobuf field: optional google.protobuf.EnumOptions options = 3;
|
449
|
+
*/
|
450
|
+
options?: EnumOptions;
|
451
|
+
/**
|
452
|
+
* Range of reserved numeric values. Reserved numeric values may not be used
|
453
|
+
* by enum values in the same enum declaration. Reserved ranges may not
|
454
|
+
* overlap.
|
455
|
+
*
|
456
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4;
|
457
|
+
*/
|
458
|
+
reservedRange: EnumDescriptorProto_EnumReservedRange[];
|
459
|
+
/**
|
460
|
+
* Reserved enum value names, which may not be reused. A given name may only
|
461
|
+
* be reserved once.
|
462
|
+
*
|
463
|
+
* @generated from protobuf field: repeated string reserved_name = 5;
|
464
|
+
*/
|
465
|
+
reservedName: string[];
|
466
|
+
}
|
467
|
+
/**
|
468
|
+
* Range of reserved numeric values. Reserved values may not be used by
|
469
|
+
* entries in the same enum. Reserved ranges may not overlap.
|
470
|
+
*
|
471
|
+
* Note that this is distinct from DescriptorProto.ReservedRange in that it
|
472
|
+
* is inclusive such that it can appropriately represent the entire int32
|
473
|
+
* domain.
|
474
|
+
*
|
475
|
+
* @generated from protobuf message google.protobuf.EnumDescriptorProto.EnumReservedRange
|
476
|
+
*/
|
477
|
+
export interface EnumDescriptorProto_EnumReservedRange {
|
478
|
+
/**
|
479
|
+
* @generated from protobuf field: optional int32 start = 1;
|
480
|
+
*/
|
481
|
+
start?: number;
|
482
|
+
/**
|
483
|
+
* @generated from protobuf field: optional int32 end = 2;
|
484
|
+
*/
|
485
|
+
end?: number;
|
486
|
+
}
|
487
|
+
/**
|
488
|
+
* Describes a value within an enum.
|
489
|
+
*
|
490
|
+
* @generated from protobuf message google.protobuf.EnumValueDescriptorProto
|
491
|
+
*/
|
492
|
+
export interface EnumValueDescriptorProto {
|
493
|
+
/**
|
494
|
+
* @generated from protobuf field: optional string name = 1;
|
495
|
+
*/
|
496
|
+
name?: string;
|
497
|
+
/**
|
498
|
+
* @generated from protobuf field: optional int32 number = 2;
|
499
|
+
*/
|
500
|
+
number?: number;
|
501
|
+
/**
|
502
|
+
* @generated from protobuf field: optional google.protobuf.EnumValueOptions options = 3;
|
503
|
+
*/
|
504
|
+
options?: EnumValueOptions;
|
505
|
+
}
|
506
|
+
/**
|
507
|
+
* Describes a service.
|
508
|
+
*
|
509
|
+
* @generated from protobuf message google.protobuf.ServiceDescriptorProto
|
510
|
+
*/
|
511
|
+
export interface ServiceDescriptorProto {
|
512
|
+
/**
|
513
|
+
* @generated from protobuf field: optional string name = 1;
|
514
|
+
*/
|
515
|
+
name?: string;
|
516
|
+
/**
|
517
|
+
* @generated from protobuf field: repeated google.protobuf.MethodDescriptorProto method = 2;
|
518
|
+
*/
|
519
|
+
method: MethodDescriptorProto[];
|
520
|
+
/**
|
521
|
+
* @generated from protobuf field: optional google.protobuf.ServiceOptions options = 3;
|
522
|
+
*/
|
523
|
+
options?: ServiceOptions;
|
524
|
+
}
|
525
|
+
/**
|
526
|
+
* Describes a method of a service.
|
527
|
+
*
|
528
|
+
* @generated from protobuf message google.protobuf.MethodDescriptorProto
|
529
|
+
*/
|
530
|
+
export interface MethodDescriptorProto {
|
531
|
+
/**
|
532
|
+
* @generated from protobuf field: optional string name = 1;
|
533
|
+
*/
|
534
|
+
name?: string;
|
535
|
+
/**
|
536
|
+
* Input and output type names. These are resolved in the same way as
|
537
|
+
* FieldDescriptorProto.type_name, but must refer to a message type.
|
538
|
+
*
|
539
|
+
* @generated from protobuf field: optional string input_type = 2;
|
540
|
+
*/
|
541
|
+
inputType?: string;
|
542
|
+
/**
|
543
|
+
* @generated from protobuf field: optional string output_type = 3;
|
544
|
+
*/
|
545
|
+
outputType?: string;
|
546
|
+
/**
|
547
|
+
* @generated from protobuf field: optional google.protobuf.MethodOptions options = 4;
|
548
|
+
*/
|
549
|
+
options?: MethodOptions;
|
550
|
+
/**
|
551
|
+
* Identifies if client streams multiple client messages
|
552
|
+
*
|
553
|
+
* @generated from protobuf field: optional bool client_streaming = 5;
|
554
|
+
*/
|
555
|
+
clientStreaming?: boolean;
|
556
|
+
/**
|
557
|
+
* Identifies if server streams multiple server messages
|
558
|
+
*
|
559
|
+
* @generated from protobuf field: optional bool server_streaming = 6;
|
560
|
+
*/
|
561
|
+
serverStreaming?: boolean;
|
562
|
+
}
|
563
|
+
/**
|
564
|
+
* @generated from protobuf message google.protobuf.FileOptions
|
565
|
+
*/
|
566
|
+
export interface FileOptions {
|
567
|
+
/**
|
568
|
+
* Sets the Java package where classes generated from this .proto will be
|
569
|
+
* placed. By default, the proto package is used, but this is often
|
570
|
+
* inappropriate because proto packages do not normally start with backwards
|
571
|
+
* domain names.
|
572
|
+
*
|
573
|
+
* @generated from protobuf field: optional string java_package = 1;
|
574
|
+
*/
|
575
|
+
javaPackage?: string;
|
576
|
+
/**
|
577
|
+
* Controls the name of the wrapper Java class generated for the .proto file.
|
578
|
+
* That class will always contain the .proto file's getDescriptor() method as
|
579
|
+
* well as any top-level extensions defined in the .proto file.
|
580
|
+
* If java_multiple_files is disabled, then all the other classes from the
|
581
|
+
* .proto file will be nested inside the single wrapper outer class.
|
582
|
+
*
|
583
|
+
* @generated from protobuf field: optional string java_outer_classname = 8;
|
584
|
+
*/
|
585
|
+
javaOuterClassname?: string;
|
586
|
+
/**
|
587
|
+
* If enabled, then the Java code generator will generate a separate .java
|
588
|
+
* file for each top-level message, enum, and service defined in the .proto
|
589
|
+
* file. Thus, these types will *not* be nested inside the wrapper class
|
590
|
+
* named by java_outer_classname. However, the wrapper class will still be
|
591
|
+
* generated to contain the file's getDescriptor() method as well as any
|
592
|
+
* top-level extensions defined in the file.
|
593
|
+
*
|
594
|
+
* @generated from protobuf field: optional bool java_multiple_files = 10;
|
595
|
+
*/
|
596
|
+
javaMultipleFiles?: boolean;
|
597
|
+
/**
|
598
|
+
* This option does nothing.
|
599
|
+
*
|
600
|
+
* @deprecated
|
601
|
+
* @generated from protobuf field: optional bool java_generate_equals_and_hash = 20 [deprecated = true];
|
602
|
+
*/
|
603
|
+
javaGenerateEqualsAndHash?: boolean;
|
604
|
+
/**
|
605
|
+
* If set true, then the Java2 code generator will generate code that
|
606
|
+
* throws an exception whenever an attempt is made to assign a non-UTF-8
|
607
|
+
* byte sequence to a string field.
|
608
|
+
* Message reflection will do the same.
|
609
|
+
* However, an extension field still accepts non-UTF-8 byte sequences.
|
610
|
+
* This option has no effect on when used with the lite runtime.
|
611
|
+
*
|
612
|
+
* @generated from protobuf field: optional bool java_string_check_utf8 = 27;
|
613
|
+
*/
|
614
|
+
javaStringCheckUtf8?: boolean;
|
615
|
+
/**
|
616
|
+
* @generated from protobuf field: optional google.protobuf.FileOptions.OptimizeMode optimize_for = 9;
|
617
|
+
*/
|
618
|
+
optimizeFor?: FileOptions_OptimizeMode;
|
619
|
+
/**
|
620
|
+
* Sets the Go package where structs generated from this .proto will be
|
621
|
+
* placed. If omitted, the Go package will be derived from the following:
|
622
|
+
* - The basename of the package import path, if provided.
|
623
|
+
* - Otherwise, the package statement in the .proto file, if present.
|
624
|
+
* - Otherwise, the basename of the .proto file, without extension.
|
625
|
+
*
|
626
|
+
* @generated from protobuf field: optional string go_package = 11;
|
627
|
+
*/
|
628
|
+
goPackage?: string;
|
629
|
+
/**
|
630
|
+
* Should generic services be generated in each language? "Generic" services
|
631
|
+
* are not specific to any particular RPC system. They are generated by the
|
632
|
+
* main code generators in each language (without additional plugins).
|
633
|
+
* Generic services were the only kind of service generation supported by
|
634
|
+
* early versions of google.protobuf.
|
635
|
+
*
|
636
|
+
* Generic services are now considered deprecated in favor of using plugins
|
637
|
+
* that generate code specific to your particular RPC system. Therefore,
|
638
|
+
* these default to false. Old code which depends on generic services should
|
639
|
+
* explicitly set them to true.
|
640
|
+
*
|
641
|
+
* @generated from protobuf field: optional bool cc_generic_services = 16;
|
642
|
+
*/
|
643
|
+
ccGenericServices?: boolean;
|
644
|
+
/**
|
645
|
+
* @generated from protobuf field: optional bool java_generic_services = 17;
|
646
|
+
*/
|
647
|
+
javaGenericServices?: boolean;
|
648
|
+
/**
|
649
|
+
* @generated from protobuf field: optional bool py_generic_services = 18;
|
650
|
+
*/
|
651
|
+
pyGenericServices?: boolean;
|
652
|
+
/**
|
653
|
+
* @generated from protobuf field: optional bool php_generic_services = 42;
|
654
|
+
*/
|
655
|
+
phpGenericServices?: boolean;
|
656
|
+
/**
|
657
|
+
* Is this file deprecated?
|
658
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
659
|
+
* for everything in the file, or it will be completely ignored; in the very
|
660
|
+
* least, this is a formalization for deprecating files.
|
661
|
+
*
|
662
|
+
* @generated from protobuf field: optional bool deprecated = 23;
|
663
|
+
*/
|
664
|
+
deprecated?: boolean;
|
665
|
+
/**
|
666
|
+
* Enables the use of arenas for the proto messages in this file. This applies
|
667
|
+
* only to generated classes for C++.
|
668
|
+
*
|
669
|
+
* @generated from protobuf field: optional bool cc_enable_arenas = 31;
|
670
|
+
*/
|
671
|
+
ccEnableArenas?: boolean;
|
672
|
+
/**
|
673
|
+
* Sets the objective c class prefix which is prepended to all objective c
|
674
|
+
* generated classes from this .proto. There is no default.
|
675
|
+
*
|
676
|
+
* @generated from protobuf field: optional string objc_class_prefix = 36;
|
677
|
+
*/
|
678
|
+
objcClassPrefix?: string;
|
679
|
+
/**
|
680
|
+
* Namespace for generated classes; defaults to the package.
|
681
|
+
*
|
682
|
+
* @generated from protobuf field: optional string csharp_namespace = 37;
|
683
|
+
*/
|
684
|
+
csharpNamespace?: string;
|
685
|
+
/**
|
686
|
+
* By default Swift generators will take the proto package and CamelCase it
|
687
|
+
* replacing '.' with underscore and use that to prefix the types/symbols
|
688
|
+
* defined. When this options is provided, they will use this value instead
|
689
|
+
* to prefix the types/symbols defined.
|
690
|
+
*
|
691
|
+
* @generated from protobuf field: optional string swift_prefix = 39;
|
692
|
+
*/
|
693
|
+
swiftPrefix?: string;
|
694
|
+
/**
|
695
|
+
* Sets the php class prefix which is prepended to all php generated classes
|
696
|
+
* from this .proto. Default is empty.
|
697
|
+
*
|
698
|
+
* @generated from protobuf field: optional string php_class_prefix = 40;
|
699
|
+
*/
|
700
|
+
phpClassPrefix?: string;
|
701
|
+
/**
|
702
|
+
* Use this option to change the namespace of php generated classes. Default
|
703
|
+
* is empty. When this option is empty, the package name will be used for
|
704
|
+
* determining the namespace.
|
705
|
+
*
|
706
|
+
* @generated from protobuf field: optional string php_namespace = 41;
|
707
|
+
*/
|
708
|
+
phpNamespace?: string;
|
709
|
+
/**
|
710
|
+
* Use this option to change the namespace of php generated metadata classes.
|
711
|
+
* Default is empty. When this option is empty, the proto file name will be
|
712
|
+
* used for determining the namespace.
|
713
|
+
*
|
714
|
+
* @generated from protobuf field: optional string php_metadata_namespace = 44;
|
715
|
+
*/
|
716
|
+
phpMetadataNamespace?: string;
|
717
|
+
/**
|
718
|
+
* Use this option to change the package of ruby generated classes. Default
|
719
|
+
* is empty. When this option is not set, the package name will be used for
|
720
|
+
* determining the ruby package.
|
721
|
+
*
|
722
|
+
* @generated from protobuf field: optional string ruby_package = 45;
|
723
|
+
*/
|
724
|
+
rubyPackage?: string;
|
725
|
+
/**
|
726
|
+
* The parser stores options it doesn't recognize here.
|
727
|
+
* See the documentation for the "Options" section above.
|
728
|
+
*
|
729
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
730
|
+
*/
|
731
|
+
uninterpretedOption: UninterpretedOption[];
|
732
|
+
}
|
733
|
+
/**
|
734
|
+
* Generated classes can be optimized for speed or code size.
|
735
|
+
*
|
736
|
+
* @generated from protobuf enum google.protobuf.FileOptions.OptimizeMode
|
737
|
+
*/
|
738
|
+
export declare enum FileOptions_OptimizeMode {
|
739
|
+
/**
|
740
|
+
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
741
|
+
*/
|
742
|
+
UNSPECIFIED$ = 0,
|
743
|
+
/**
|
744
|
+
* Generate complete code for parsing, serialization,
|
745
|
+
*
|
746
|
+
* @generated from protobuf enum value: SPEED = 1;
|
747
|
+
*/
|
748
|
+
SPEED = 1,
|
749
|
+
/**
|
750
|
+
* etc.
|
751
|
+
*
|
752
|
+
* Use ReflectionOps to implement these methods.
|
753
|
+
*
|
754
|
+
* @generated from protobuf enum value: CODE_SIZE = 2;
|
755
|
+
*/
|
756
|
+
CODE_SIZE = 2,
|
757
|
+
/**
|
758
|
+
* Generate code using MessageLite and the lite runtime.
|
759
|
+
*
|
760
|
+
* @generated from protobuf enum value: LITE_RUNTIME = 3;
|
761
|
+
*/
|
762
|
+
LITE_RUNTIME = 3
|
763
|
+
}
|
764
|
+
/**
|
765
|
+
* @generated from protobuf message google.protobuf.MessageOptions
|
766
|
+
*/
|
767
|
+
export interface MessageOptions {
|
768
|
+
/**
|
769
|
+
* Set true to use the old proto1 MessageSet wire format for extensions.
|
770
|
+
* This is provided for backwards-compatibility with the MessageSet wire
|
771
|
+
* format. You should not use this for any other reason: It's less
|
772
|
+
* efficient, has fewer features, and is more complicated.
|
773
|
+
*
|
774
|
+
* The message must be defined exactly as follows:
|
775
|
+
* message Foo {
|
776
|
+
* option message_set_wire_format = true;
|
777
|
+
* extensions 4 to max;
|
778
|
+
* }
|
779
|
+
* Note that the message cannot have any defined fields; MessageSets only
|
780
|
+
* have extensions.
|
781
|
+
*
|
782
|
+
* All extensions of your type must be singular messages; e.g. they cannot
|
783
|
+
* be int32s, enums, or repeated messages.
|
784
|
+
*
|
785
|
+
* Because this is an option, the above two restrictions are not enforced by
|
786
|
+
* the protocol compiler.
|
787
|
+
*
|
788
|
+
* @generated from protobuf field: optional bool message_set_wire_format = 1;
|
789
|
+
*/
|
790
|
+
messageSetWireFormat?: boolean;
|
791
|
+
/**
|
792
|
+
* Disables the generation of the standard "descriptor()" accessor, which can
|
793
|
+
* conflict with a field of the same name. This is meant to make migration
|
794
|
+
* from proto1 easier; new code should avoid fields named "descriptor".
|
795
|
+
*
|
796
|
+
* @generated from protobuf field: optional bool no_standard_descriptor_accessor = 2;
|
797
|
+
*/
|
798
|
+
noStandardDescriptorAccessor?: boolean;
|
799
|
+
/**
|
800
|
+
* Is this message deprecated?
|
801
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
802
|
+
* for the message, or it will be completely ignored; in the very least,
|
803
|
+
* this is a formalization for deprecating messages.
|
804
|
+
*
|
805
|
+
* @generated from protobuf field: optional bool deprecated = 3;
|
806
|
+
*/
|
807
|
+
deprecated?: boolean;
|
808
|
+
/**
|
809
|
+
* NOTE: Do not set the option in .proto files. Always use the maps syntax
|
810
|
+
* instead. The option should only be implicitly set by the proto compiler
|
811
|
+
* parser.
|
812
|
+
*
|
813
|
+
* Whether the message is an automatically generated map entry type for the
|
814
|
+
* maps field.
|
815
|
+
*
|
816
|
+
* For maps fields:
|
817
|
+
* map<KeyType, ValueType> map_field = 1;
|
818
|
+
* The parsed descriptor looks like:
|
819
|
+
* message MapFieldEntry {
|
820
|
+
* option map_entry = true;
|
821
|
+
* optional KeyType key = 1;
|
822
|
+
* optional ValueType value = 2;
|
823
|
+
* }
|
824
|
+
* repeated MapFieldEntry map_field = 1;
|
825
|
+
*
|
826
|
+
* Implementations may choose not to generate the map_entry=true message, but
|
827
|
+
* use a native map in the target language to hold the keys and values.
|
828
|
+
* The reflection APIs in such implementations still need to work as
|
829
|
+
* if the field is a repeated message field.
|
830
|
+
*
|
831
|
+
* @generated from protobuf field: optional bool map_entry = 7;
|
832
|
+
*/
|
833
|
+
mapEntry?: boolean;
|
834
|
+
/**
|
835
|
+
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
836
|
+
* and strips underscored from the fields before comparison in proto3 only.
|
837
|
+
* The new behavior takes `json_name` into account and applies to proto2 as
|
838
|
+
* well.
|
839
|
+
*
|
840
|
+
* This should only be used as a temporary measure against broken builds due
|
841
|
+
* to the change in behavior for JSON field name conflicts.
|
842
|
+
*
|
843
|
+
* TODO(b/261750190) This is legacy behavior we plan to remove once downstream
|
844
|
+
* teams have had time to migrate.
|
845
|
+
*
|
846
|
+
* @deprecated
|
847
|
+
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 11 [deprecated = true];
|
848
|
+
*/
|
849
|
+
deprecatedLegacyJsonFieldConflicts?: boolean;
|
850
|
+
/**
|
851
|
+
* The parser stores options it doesn't recognize here. See above.
|
852
|
+
*
|
853
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
854
|
+
*/
|
855
|
+
uninterpretedOption: UninterpretedOption[];
|
856
|
+
}
|
857
|
+
/**
|
858
|
+
* @generated from protobuf message google.protobuf.FieldOptions
|
859
|
+
*/
|
860
|
+
export interface FieldOptions {
|
861
|
+
/**
|
862
|
+
* The ctype option instructs the C++ code generator to use a different
|
863
|
+
* representation of the field than it normally would. See the specific
|
864
|
+
* options below. This option is not yet implemented in the open source
|
865
|
+
* release -- sorry, we'll try to include it in a future version!
|
866
|
+
*
|
867
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.CType ctype = 1;
|
868
|
+
*/
|
869
|
+
ctype?: FieldOptions_CType;
|
870
|
+
/**
|
871
|
+
* The packed option can be enabled for repeated primitive fields to enable
|
872
|
+
* a more efficient representation on the wire. Rather than repeatedly
|
873
|
+
* writing the tag and type for each element, the entire array is encoded as
|
874
|
+
* a single length-delimited blob. In proto3, only explicit setting it to
|
875
|
+
* false will avoid using packed encoding.
|
876
|
+
*
|
877
|
+
* @generated from protobuf field: optional bool packed = 2;
|
878
|
+
*/
|
879
|
+
packed?: boolean;
|
880
|
+
/**
|
881
|
+
* The jstype option determines the JavaScript type used for values of the
|
882
|
+
* field. The option is permitted only for 64 bit integral and fixed types
|
883
|
+
* (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
|
884
|
+
* is represented as JavaScript string, which avoids loss of precision that
|
885
|
+
* can happen when a large value is converted to a floating point JavaScript.
|
886
|
+
* Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
|
887
|
+
* use the JavaScript "number" type. The behavior of the default option
|
888
|
+
* JS_NORMAL is implementation dependent.
|
889
|
+
*
|
890
|
+
* This option is an enum to permit additional types to be added, e.g.
|
891
|
+
* goog.math.Integer.
|
892
|
+
*
|
893
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.JSType jstype = 6;
|
894
|
+
*/
|
895
|
+
jstype?: FieldOptions_JSType;
|
896
|
+
/**
|
897
|
+
* Should this field be parsed lazily? Lazy applies only to message-type
|
898
|
+
* fields. It means that when the outer message is initially parsed, the
|
899
|
+
* inner message's contents will not be parsed but instead stored in encoded
|
900
|
+
* form. The inner message will actually be parsed when it is first accessed.
|
901
|
+
*
|
902
|
+
* This is only a hint. Implementations are free to choose whether to use
|
903
|
+
* eager or lazy parsing regardless of the value of this option. However,
|
904
|
+
* setting this option true suggests that the protocol author believes that
|
905
|
+
* using lazy parsing on this field is worth the additional bookkeeping
|
906
|
+
* overhead typically needed to implement it.
|
907
|
+
*
|
908
|
+
* This option does not affect the public interface of any generated code;
|
909
|
+
* all method signatures remain the same. Furthermore, thread-safety of the
|
910
|
+
* interface is not affected by this option; const methods remain safe to
|
911
|
+
* call from multiple threads concurrently, while non-const methods continue
|
912
|
+
* to require exclusive access.
|
913
|
+
*
|
914
|
+
* Note that implementations may choose not to check required fields within
|
915
|
+
* a lazy sub-message. That is, calling IsInitialized() on the outer message
|
916
|
+
* may return true even if the inner message has missing required fields.
|
917
|
+
* This is necessary because otherwise the inner message would have to be
|
918
|
+
* parsed in order to perform the check, defeating the purpose of lazy
|
919
|
+
* parsing. An implementation which chooses not to check required fields
|
920
|
+
* must be consistent about it. That is, for any particular sub-message, the
|
921
|
+
* implementation must either *always* check its required fields, or *never*
|
922
|
+
* check its required fields, regardless of whether or not the message has
|
923
|
+
* been parsed.
|
924
|
+
*
|
925
|
+
* As of May 2022, lazy verifies the contents of the byte stream during
|
926
|
+
* parsing. An invalid byte stream will cause the overall parsing to fail.
|
927
|
+
*
|
928
|
+
* @generated from protobuf field: optional bool lazy = 5;
|
929
|
+
*/
|
930
|
+
lazy?: boolean;
|
931
|
+
/**
|
932
|
+
* unverified_lazy does no correctness checks on the byte stream. This should
|
933
|
+
* only be used where lazy with verification is prohibitive for performance
|
934
|
+
* reasons.
|
935
|
+
*
|
936
|
+
* @generated from protobuf field: optional bool unverified_lazy = 15;
|
937
|
+
*/
|
938
|
+
unverifiedLazy?: boolean;
|
939
|
+
/**
|
940
|
+
* Is this field deprecated?
|
941
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
942
|
+
* for accessors, or it will be completely ignored; in the very least, this
|
943
|
+
* is a formalization for deprecating fields.
|
944
|
+
*
|
945
|
+
* @generated from protobuf field: optional bool deprecated = 3;
|
946
|
+
*/
|
947
|
+
deprecated?: boolean;
|
948
|
+
/**
|
949
|
+
* For Google-internal migration only. Do not use.
|
950
|
+
*
|
951
|
+
* @generated from protobuf field: optional bool weak = 10;
|
952
|
+
*/
|
953
|
+
weak?: boolean;
|
954
|
+
/**
|
955
|
+
* Indicate that the field value should not be printed out when using debug
|
956
|
+
* formats, e.g. when the field contains sensitive credentials.
|
957
|
+
*
|
958
|
+
* @generated from protobuf field: optional bool debug_redact = 16;
|
959
|
+
*/
|
960
|
+
debugRedact?: boolean;
|
961
|
+
/**
|
962
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.OptionRetention retention = 17;
|
963
|
+
*/
|
964
|
+
retention?: FieldOptions_OptionRetention;
|
965
|
+
/**
|
966
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.OptionTargetType target = 18;
|
967
|
+
*/
|
968
|
+
target?: FieldOptions_OptionTargetType;
|
969
|
+
/**
|
970
|
+
* The parser stores options it doesn't recognize here. See above.
|
971
|
+
*
|
972
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
973
|
+
*/
|
974
|
+
uninterpretedOption: UninterpretedOption[];
|
975
|
+
}
|
976
|
+
/**
|
977
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.CType
|
978
|
+
*/
|
979
|
+
export declare enum FieldOptions_CType {
|
980
|
+
/**
|
981
|
+
* Default mode.
|
982
|
+
*
|
983
|
+
* @generated from protobuf enum value: STRING = 0;
|
984
|
+
*/
|
985
|
+
STRING = 0,
|
986
|
+
/**
|
987
|
+
* @generated from protobuf enum value: CORD = 1;
|
988
|
+
*/
|
989
|
+
CORD = 1,
|
990
|
+
/**
|
991
|
+
* @generated from protobuf enum value: STRING_PIECE = 2;
|
992
|
+
*/
|
993
|
+
STRING_PIECE = 2
|
994
|
+
}
|
995
|
+
/**
|
996
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.JSType
|
997
|
+
*/
|
998
|
+
export declare enum FieldOptions_JSType {
|
999
|
+
/**
|
1000
|
+
* Use the default type.
|
1001
|
+
*
|
1002
|
+
* @generated from protobuf enum value: JS_NORMAL = 0;
|
1003
|
+
*/
|
1004
|
+
JS_NORMAL = 0,
|
1005
|
+
/**
|
1006
|
+
* Use JavaScript strings.
|
1007
|
+
*
|
1008
|
+
* @generated from protobuf enum value: JS_STRING = 1;
|
1009
|
+
*/
|
1010
|
+
JS_STRING = 1,
|
1011
|
+
/**
|
1012
|
+
* Use JavaScript numbers.
|
1013
|
+
*
|
1014
|
+
* @generated from protobuf enum value: JS_NUMBER = 2;
|
1015
|
+
*/
|
1016
|
+
JS_NUMBER = 2
|
1017
|
+
}
|
1018
|
+
/**
|
1019
|
+
* If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
1020
|
+
* Note: as of January 2023, support for this is in progress and does not yet
|
1021
|
+
* have an effect (b/264593489).
|
1022
|
+
*
|
1023
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.OptionRetention
|
1024
|
+
*/
|
1025
|
+
export declare enum FieldOptions_OptionRetention {
|
1026
|
+
/**
|
1027
|
+
* @generated from protobuf enum value: RETENTION_UNKNOWN = 0;
|
1028
|
+
*/
|
1029
|
+
RETENTION_UNKNOWN = 0,
|
1030
|
+
/**
|
1031
|
+
* @generated from protobuf enum value: RETENTION_RUNTIME = 1;
|
1032
|
+
*/
|
1033
|
+
RETENTION_RUNTIME = 1,
|
1034
|
+
/**
|
1035
|
+
* @generated from protobuf enum value: RETENTION_SOURCE = 2;
|
1036
|
+
*/
|
1037
|
+
RETENTION_SOURCE = 2
|
1038
|
+
}
|
1039
|
+
/**
|
1040
|
+
* This indicates the types of entities that the field may apply to when used
|
1041
|
+
* as an option. If it is unset, then the field may be freely used as an
|
1042
|
+
* option on any kind of entity. Note: as of January 2023, support for this is
|
1043
|
+
* in progress and does not yet have an effect (b/264593489).
|
1044
|
+
*
|
1045
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.OptionTargetType
|
1046
|
+
*/
|
1047
|
+
export declare enum FieldOptions_OptionTargetType {
|
1048
|
+
/**
|
1049
|
+
* @generated from protobuf enum value: TARGET_TYPE_UNKNOWN = 0;
|
1050
|
+
*/
|
1051
|
+
TARGET_TYPE_UNKNOWN = 0,
|
1052
|
+
/**
|
1053
|
+
* @generated from protobuf enum value: TARGET_TYPE_FILE = 1;
|
1054
|
+
*/
|
1055
|
+
TARGET_TYPE_FILE = 1,
|
1056
|
+
/**
|
1057
|
+
* @generated from protobuf enum value: TARGET_TYPE_EXTENSION_RANGE = 2;
|
1058
|
+
*/
|
1059
|
+
TARGET_TYPE_EXTENSION_RANGE = 2,
|
1060
|
+
/**
|
1061
|
+
* @generated from protobuf enum value: TARGET_TYPE_MESSAGE = 3;
|
1062
|
+
*/
|
1063
|
+
TARGET_TYPE_MESSAGE = 3,
|
1064
|
+
/**
|
1065
|
+
* @generated from protobuf enum value: TARGET_TYPE_FIELD = 4;
|
1066
|
+
*/
|
1067
|
+
TARGET_TYPE_FIELD = 4,
|
1068
|
+
/**
|
1069
|
+
* @generated from protobuf enum value: TARGET_TYPE_ONEOF = 5;
|
1070
|
+
*/
|
1071
|
+
TARGET_TYPE_ONEOF = 5,
|
1072
|
+
/**
|
1073
|
+
* @generated from protobuf enum value: TARGET_TYPE_ENUM = 6;
|
1074
|
+
*/
|
1075
|
+
TARGET_TYPE_ENUM = 6,
|
1076
|
+
/**
|
1077
|
+
* @generated from protobuf enum value: TARGET_TYPE_ENUM_ENTRY = 7;
|
1078
|
+
*/
|
1079
|
+
TARGET_TYPE_ENUM_ENTRY = 7,
|
1080
|
+
/**
|
1081
|
+
* @generated from protobuf enum value: TARGET_TYPE_SERVICE = 8;
|
1082
|
+
*/
|
1083
|
+
TARGET_TYPE_SERVICE = 8,
|
1084
|
+
/**
|
1085
|
+
* @generated from protobuf enum value: TARGET_TYPE_METHOD = 9;
|
1086
|
+
*/
|
1087
|
+
TARGET_TYPE_METHOD = 9
|
1088
|
+
}
|
1089
|
+
/**
|
1090
|
+
* @generated from protobuf message google.protobuf.OneofOptions
|
1091
|
+
*/
|
1092
|
+
export interface OneofOptions {
|
1093
|
+
/**
|
1094
|
+
* The parser stores options it doesn't recognize here. See above.
|
1095
|
+
*
|
1096
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
1097
|
+
*/
|
1098
|
+
uninterpretedOption: UninterpretedOption[];
|
1099
|
+
}
|
1100
|
+
/**
|
1101
|
+
* @generated from protobuf message google.protobuf.EnumOptions
|
1102
|
+
*/
|
1103
|
+
export interface EnumOptions {
|
1104
|
+
/**
|
1105
|
+
* Set this option to true to allow mapping different tag names to the same
|
1106
|
+
* value.
|
1107
|
+
*
|
1108
|
+
* @generated from protobuf field: optional bool allow_alias = 2;
|
1109
|
+
*/
|
1110
|
+
allowAlias?: boolean;
|
1111
|
+
/**
|
1112
|
+
* Is this enum deprecated?
|
1113
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
1114
|
+
* for the enum, or it will be completely ignored; in the very least, this
|
1115
|
+
* is a formalization for deprecating enums.
|
1116
|
+
*
|
1117
|
+
* @generated from protobuf field: optional bool deprecated = 3;
|
1118
|
+
*/
|
1119
|
+
deprecated?: boolean;
|
1120
|
+
/**
|
1121
|
+
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
1122
|
+
* and strips underscored from the fields before comparison in proto3 only.
|
1123
|
+
* The new behavior takes `json_name` into account and applies to proto2 as
|
1124
|
+
* well.
|
1125
|
+
* TODO(b/261750190) Remove this legacy behavior once downstream teams have
|
1126
|
+
* had time to migrate.
|
1127
|
+
*
|
1128
|
+
* @deprecated
|
1129
|
+
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 6 [deprecated = true];
|
1130
|
+
*/
|
1131
|
+
deprecatedLegacyJsonFieldConflicts?: boolean;
|
1132
|
+
/**
|
1133
|
+
* The parser stores options it doesn't recognize here. See above.
|
1134
|
+
*
|
1135
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
1136
|
+
*/
|
1137
|
+
uninterpretedOption: UninterpretedOption[];
|
1138
|
+
}
|
1139
|
+
/**
|
1140
|
+
* @generated from protobuf message google.protobuf.EnumValueOptions
|
1141
|
+
*/
|
1142
|
+
export interface EnumValueOptions {
|
1143
|
+
/**
|
1144
|
+
* Is this enum value deprecated?
|
1145
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
1146
|
+
* for the enum value, or it will be completely ignored; in the very least,
|
1147
|
+
* this is a formalization for deprecating enum values.
|
1148
|
+
*
|
1149
|
+
* @generated from protobuf field: optional bool deprecated = 1;
|
1150
|
+
*/
|
1151
|
+
deprecated?: boolean;
|
1152
|
+
/**
|
1153
|
+
* The parser stores options it doesn't recognize here. See above.
|
1154
|
+
*
|
1155
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
1156
|
+
*/
|
1157
|
+
uninterpretedOption: UninterpretedOption[];
|
1158
|
+
}
|
1159
|
+
/**
|
1160
|
+
* @generated from protobuf message google.protobuf.ServiceOptions
|
1161
|
+
*/
|
1162
|
+
export interface ServiceOptions {
|
1163
|
+
/**
|
1164
|
+
* Is this service deprecated?
|
1165
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
1166
|
+
* for the service, or it will be completely ignored; in the very least,
|
1167
|
+
* this is a formalization for deprecating services.
|
1168
|
+
*
|
1169
|
+
* @generated from protobuf field: optional bool deprecated = 33;
|
1170
|
+
*/
|
1171
|
+
deprecated?: boolean;
|
1172
|
+
/**
|
1173
|
+
* The parser stores options it doesn't recognize here. See above.
|
1174
|
+
*
|
1175
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
1176
|
+
*/
|
1177
|
+
uninterpretedOption: UninterpretedOption[];
|
1178
|
+
}
|
1179
|
+
/**
|
1180
|
+
* @generated from protobuf message google.protobuf.MethodOptions
|
1181
|
+
*/
|
1182
|
+
export interface MethodOptions {
|
1183
|
+
/**
|
1184
|
+
* Is this method deprecated?
|
1185
|
+
* Depending on the target platform, this can emit Deprecated annotations
|
1186
|
+
* for the method, or it will be completely ignored; in the very least,
|
1187
|
+
* this is a formalization for deprecating methods.
|
1188
|
+
*
|
1189
|
+
* @generated from protobuf field: optional bool deprecated = 33;
|
1190
|
+
*/
|
1191
|
+
deprecated?: boolean;
|
1192
|
+
/**
|
1193
|
+
* @generated from protobuf field: optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34;
|
1194
|
+
*/
|
1195
|
+
idempotencyLevel?: MethodOptions_IdempotencyLevel;
|
1196
|
+
/**
|
1197
|
+
* The parser stores options it doesn't recognize here. See above.
|
1198
|
+
*
|
1199
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999;
|
1200
|
+
*/
|
1201
|
+
uninterpretedOption: UninterpretedOption[];
|
1202
|
+
}
|
1203
|
+
/**
|
1204
|
+
* Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
|
1205
|
+
* or neither? HTTP based RPC implementation may choose GET verb for safe
|
1206
|
+
* methods, and PUT verb for idempotent methods instead of the default POST.
|
1207
|
+
*
|
1208
|
+
* @generated from protobuf enum google.protobuf.MethodOptions.IdempotencyLevel
|
1209
|
+
*/
|
1210
|
+
export declare enum MethodOptions_IdempotencyLevel {
|
1211
|
+
/**
|
1212
|
+
* @generated from protobuf enum value: IDEMPOTENCY_UNKNOWN = 0;
|
1213
|
+
*/
|
1214
|
+
IDEMPOTENCY_UNKNOWN = 0,
|
1215
|
+
/**
|
1216
|
+
* implies idempotent
|
1217
|
+
*
|
1218
|
+
* @generated from protobuf enum value: NO_SIDE_EFFECTS = 1;
|
1219
|
+
*/
|
1220
|
+
NO_SIDE_EFFECTS = 1,
|
1221
|
+
/**
|
1222
|
+
* idempotent, but may have side effects
|
1223
|
+
*
|
1224
|
+
* @generated from protobuf enum value: IDEMPOTENT = 2;
|
1225
|
+
*/
|
1226
|
+
IDEMPOTENT = 2
|
1227
|
+
}
|
1228
|
+
/**
|
1229
|
+
* A message representing a option the parser does not recognize. This only
|
1230
|
+
* appears in options protos created by the compiler::Parser class.
|
1231
|
+
* DescriptorPool resolves these when building Descriptor objects. Therefore,
|
1232
|
+
* options protos in descriptor objects (e.g. returned by Descriptor::options(),
|
1233
|
+
* or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
|
1234
|
+
* in them.
|
1235
|
+
*
|
1236
|
+
* @generated from protobuf message google.protobuf.UninterpretedOption
|
1237
|
+
*/
|
1238
|
+
export interface UninterpretedOption {
|
1239
|
+
/**
|
1240
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption.NamePart name = 2;
|
1241
|
+
*/
|
1242
|
+
name: UninterpretedOption_NamePart[];
|
1243
|
+
/**
|
1244
|
+
* The value of the uninterpreted option, in whatever type the tokenizer
|
1245
|
+
* identified it as during parsing. Exactly one of these should be set.
|
1246
|
+
*
|
1247
|
+
* @generated from protobuf field: optional string identifier_value = 3;
|
1248
|
+
*/
|
1249
|
+
identifierValue?: string;
|
1250
|
+
/**
|
1251
|
+
* @generated from protobuf field: optional uint64 positive_int_value = 4;
|
1252
|
+
*/
|
1253
|
+
positiveIntValue?: string;
|
1254
|
+
/**
|
1255
|
+
* @generated from protobuf field: optional int64 negative_int_value = 5;
|
1256
|
+
*/
|
1257
|
+
negativeIntValue?: string;
|
1258
|
+
/**
|
1259
|
+
* @generated from protobuf field: optional double double_value = 6;
|
1260
|
+
*/
|
1261
|
+
doubleValue?: number;
|
1262
|
+
/**
|
1263
|
+
* @generated from protobuf field: optional bytes string_value = 7;
|
1264
|
+
*/
|
1265
|
+
stringValue?: Uint8Array;
|
1266
|
+
/**
|
1267
|
+
* @generated from protobuf field: optional string aggregate_value = 8;
|
1268
|
+
*/
|
1269
|
+
aggregateValue?: string;
|
1270
|
+
}
|
1271
|
+
/**
|
1272
|
+
* The name of the uninterpreted option. Each string represents a segment in
|
1273
|
+
* a dot-separated name. is_extension is true iff a segment represents an
|
1274
|
+
* extension (denoted with parentheses in options specs in .proto files).
|
1275
|
+
* E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
|
1276
|
+
* "foo.(bar.baz).moo".
|
1277
|
+
*
|
1278
|
+
* @generated from protobuf message google.protobuf.UninterpretedOption.NamePart
|
1279
|
+
*/
|
1280
|
+
export interface UninterpretedOption_NamePart {
|
1281
|
+
/**
|
1282
|
+
* @generated from protobuf field: string name_part = 1;
|
1283
|
+
*/
|
1284
|
+
namePart: string;
|
1285
|
+
/**
|
1286
|
+
* @generated from protobuf field: bool is_extension = 2;
|
1287
|
+
*/
|
1288
|
+
isExtension: boolean;
|
1289
|
+
}
|
1290
|
+
/**
|
1291
|
+
* Encapsulates information about the original source file from which a
|
1292
|
+
* FileDescriptorProto was generated.
|
1293
|
+
*
|
1294
|
+
* @generated from protobuf message google.protobuf.SourceCodeInfo
|
1295
|
+
*/
|
1296
|
+
export interface SourceCodeInfo {
|
1297
|
+
/**
|
1298
|
+
* A Location identifies a piece of source code in a .proto file which
|
1299
|
+
* corresponds to a particular definition. This information is intended
|
1300
|
+
* to be useful to IDEs, code indexers, documentation generators, and similar
|
1301
|
+
* tools.
|
1302
|
+
*
|
1303
|
+
* For example, say we have a file like:
|
1304
|
+
* message Foo {
|
1305
|
+
* optional string foo = 1;
|
1306
|
+
* }
|
1307
|
+
* Let's look at just the field definition:
|
1308
|
+
* optional string foo = 1;
|
1309
|
+
* ^ ^^ ^^ ^ ^^^
|
1310
|
+
* a bc de f ghi
|
1311
|
+
* We have the following locations:
|
1312
|
+
* span path represents
|
1313
|
+
* [a,i) [ 4, 0, 2, 0 ] The whole field definition.
|
1314
|
+
* [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
|
1315
|
+
* [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
|
1316
|
+
* [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
|
1317
|
+
* [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
|
1318
|
+
*
|
1319
|
+
* Notes:
|
1320
|
+
* - A location may refer to a repeated field itself (i.e. not to any
|
1321
|
+
* particular index within it). This is used whenever a set of elements are
|
1322
|
+
* logically enclosed in a single code segment. For example, an entire
|
1323
|
+
* extend block (possibly containing multiple extension definitions) will
|
1324
|
+
* have an outer location whose path refers to the "extensions" repeated
|
1325
|
+
* field without an index.
|
1326
|
+
* - Multiple locations may have the same path. This happens when a single
|
1327
|
+
* logical declaration is spread out across multiple places. The most
|
1328
|
+
* obvious example is the "extend" block again -- there may be multiple
|
1329
|
+
* extend blocks in the same scope, each of which will have the same path.
|
1330
|
+
* - A location's span is not always a subset of its parent's span. For
|
1331
|
+
* example, the "extendee" of an extension declaration appears at the
|
1332
|
+
* beginning of the "extend" block and is shared by all extensions within
|
1333
|
+
* the block.
|
1334
|
+
* - Just because a location's span is a subset of some other location's span
|
1335
|
+
* does not mean that it is a descendant. For example, a "group" defines
|
1336
|
+
* both a type and a field in a single declaration. Thus, the locations
|
1337
|
+
* corresponding to the type and field and their components will overlap.
|
1338
|
+
* - Code which tries to interpret locations should probably be designed to
|
1339
|
+
* ignore those that it doesn't understand, as more types of locations could
|
1340
|
+
* be recorded in the future.
|
1341
|
+
*
|
1342
|
+
* @generated from protobuf field: repeated google.protobuf.SourceCodeInfo.Location location = 1;
|
1343
|
+
*/
|
1344
|
+
location: SourceCodeInfo_Location[];
|
1345
|
+
}
|
1346
|
+
/**
|
1347
|
+
* @generated from protobuf message google.protobuf.SourceCodeInfo.Location
|
1348
|
+
*/
|
1349
|
+
export interface SourceCodeInfo_Location {
|
1350
|
+
/**
|
1351
|
+
* Identifies which part of the FileDescriptorProto was defined at this
|
1352
|
+
* location.
|
1353
|
+
*
|
1354
|
+
* Each element is a field number or an index. They form a path from
|
1355
|
+
* the root FileDescriptorProto to the place where the definition occurs.
|
1356
|
+
* For example, this path:
|
1357
|
+
* [ 4, 3, 2, 7, 1 ]
|
1358
|
+
* refers to:
|
1359
|
+
* file.message_type(3) // 4, 3
|
1360
|
+
* .field(7) // 2, 7
|
1361
|
+
* .name() // 1
|
1362
|
+
* This is because FileDescriptorProto.message_type has field number 4:
|
1363
|
+
* repeated DescriptorProto message_type = 4;
|
1364
|
+
* and DescriptorProto.field has field number 2:
|
1365
|
+
* repeated FieldDescriptorProto field = 2;
|
1366
|
+
* and FieldDescriptorProto.name has field number 1:
|
1367
|
+
* optional string name = 1;
|
1368
|
+
*
|
1369
|
+
* Thus, the above path gives the location of a field name. If we removed
|
1370
|
+
* the last element:
|
1371
|
+
* [ 4, 3, 2, 7 ]
|
1372
|
+
* this path refers to the whole field declaration (from the beginning
|
1373
|
+
* of the label to the terminating semicolon).
|
1374
|
+
*
|
1375
|
+
* @generated from protobuf field: repeated int32 path = 1 [packed = true];
|
1376
|
+
*/
|
1377
|
+
path: number[];
|
1378
|
+
/**
|
1379
|
+
* Always has exactly three or four elements: start line, start column,
|
1380
|
+
* end line (optional, otherwise assumed same as start line), end column.
|
1381
|
+
* These are packed into a single field for efficiency. Note that line
|
1382
|
+
* and column numbers are zero-based -- typically you will want to add
|
1383
|
+
* 1 to each before displaying to a user.
|
1384
|
+
*
|
1385
|
+
* @generated from protobuf field: repeated int32 span = 2 [packed = true];
|
1386
|
+
*/
|
1387
|
+
span: number[];
|
1388
|
+
/**
|
1389
|
+
* If this SourceCodeInfo represents a complete declaration, these are any
|
1390
|
+
* comments appearing before and after the declaration which appear to be
|
1391
|
+
* attached to the declaration.
|
1392
|
+
*
|
1393
|
+
* A series of line comments appearing on consecutive lines, with no other
|
1394
|
+
* tokens appearing on those lines, will be treated as a single comment.
|
1395
|
+
*
|
1396
|
+
* leading_detached_comments will keep paragraphs of comments that appear
|
1397
|
+
* before (but not connected to) the current element. Each paragraph,
|
1398
|
+
* separated by empty lines, will be one comment element in the repeated
|
1399
|
+
* field.
|
1400
|
+
*
|
1401
|
+
* Only the comment content is provided; comment markers (e.g. //) are
|
1402
|
+
* stripped out. For block comments, leading whitespace and an asterisk
|
1403
|
+
* will be stripped from the beginning of each line other than the first.
|
1404
|
+
* Newlines are included in the output.
|
1405
|
+
*
|
1406
|
+
* Examples:
|
1407
|
+
*
|
1408
|
+
* optional int32 foo = 1; // Comment attached to foo.
|
1409
|
+
* // Comment attached to bar.
|
1410
|
+
* optional int32 bar = 2;
|
1411
|
+
*
|
1412
|
+
* optional string baz = 3;
|
1413
|
+
* // Comment attached to baz.
|
1414
|
+
* // Another line attached to baz.
|
1415
|
+
*
|
1416
|
+
* // Comment attached to moo.
|
1417
|
+
* //
|
1418
|
+
* // Another line attached to moo.
|
1419
|
+
* optional double moo = 4;
|
1420
|
+
*
|
1421
|
+
* // Detached comment for corge. This is not leading or trailing comments
|
1422
|
+
* // to moo or corge because there are blank lines separating it from
|
1423
|
+
* // both.
|
1424
|
+
*
|
1425
|
+
* // Detached comment for corge paragraph 2.
|
1426
|
+
*
|
1427
|
+
* optional string corge = 5;
|
1428
|
+
* /* Block comment attached
|
1429
|
+
* * to corge. Leading asterisks
|
1430
|
+
* * will be removed. *\/
|
1431
|
+
* /* Block comment attached to
|
1432
|
+
* * grault. *\/
|
1433
|
+
* optional int32 grault = 6;
|
1434
|
+
*
|
1435
|
+
* // ignored detached comments.
|
1436
|
+
*
|
1437
|
+
* @generated from protobuf field: optional string leading_comments = 3;
|
1438
|
+
*/
|
1439
|
+
leadingComments?: string;
|
1440
|
+
/**
|
1441
|
+
* @generated from protobuf field: optional string trailing_comments = 4;
|
1442
|
+
*/
|
1443
|
+
trailingComments?: string;
|
1444
|
+
/**
|
1445
|
+
* @generated from protobuf field: repeated string leading_detached_comments = 6;
|
1446
|
+
*/
|
1447
|
+
leadingDetachedComments: string[];
|
1448
|
+
}
|
1449
|
+
/**
|
1450
|
+
* Describes the relationship between generated code and its original source
|
1451
|
+
* file. A GeneratedCodeInfo message is associated with only one generated
|
1452
|
+
* source file, but may contain references to different source .proto files.
|
1453
|
+
*
|
1454
|
+
* @generated from protobuf message google.protobuf.GeneratedCodeInfo
|
1455
|
+
*/
|
1456
|
+
export interface GeneratedCodeInfo {
|
1457
|
+
/**
|
1458
|
+
* An Annotation connects some span of text in generated code to an element
|
1459
|
+
* of its generating .proto file.
|
1460
|
+
*
|
1461
|
+
* @generated from protobuf field: repeated google.protobuf.GeneratedCodeInfo.Annotation annotation = 1;
|
1462
|
+
*/
|
1463
|
+
annotation: GeneratedCodeInfo_Annotation[];
|
1464
|
+
}
|
1465
|
+
/**
|
1466
|
+
* @generated from protobuf message google.protobuf.GeneratedCodeInfo.Annotation
|
1467
|
+
*/
|
1468
|
+
export interface GeneratedCodeInfo_Annotation {
|
1469
|
+
/**
|
1470
|
+
* Identifies the element in the original source .proto file. This field
|
1471
|
+
* is formatted the same as SourceCodeInfo.Location.path.
|
1472
|
+
*
|
1473
|
+
* @generated from protobuf field: repeated int32 path = 1 [packed = true];
|
1474
|
+
*/
|
1475
|
+
path: number[];
|
1476
|
+
/**
|
1477
|
+
* Identifies the filesystem path to the original source .proto.
|
1478
|
+
*
|
1479
|
+
* @generated from protobuf field: optional string source_file = 2;
|
1480
|
+
*/
|
1481
|
+
sourceFile?: string;
|
1482
|
+
/**
|
1483
|
+
* Identifies the starting offset in bytes in the generated code
|
1484
|
+
* that relates to the identified object.
|
1485
|
+
*
|
1486
|
+
* @generated from protobuf field: optional int32 begin = 3;
|
1487
|
+
*/
|
1488
|
+
begin?: number;
|
1489
|
+
/**
|
1490
|
+
* Identifies the ending offset in bytes in the generated code that
|
1491
|
+
* relates to the identified object. The end offset should be one past
|
1492
|
+
* the last relevant byte (so the length of the text = end - begin).
|
1493
|
+
*
|
1494
|
+
* @generated from protobuf field: optional int32 end = 4;
|
1495
|
+
*/
|
1496
|
+
end?: number;
|
1497
|
+
/**
|
1498
|
+
* @generated from protobuf field: optional google.protobuf.GeneratedCodeInfo.Annotation.Semantic semantic = 5;
|
1499
|
+
*/
|
1500
|
+
semantic?: GeneratedCodeInfo_Annotation_Semantic;
|
1501
|
+
}
|
1502
|
+
/**
|
1503
|
+
* Represents the identified object's effect on the element in the original
|
1504
|
+
* .proto file.
|
1505
|
+
*
|
1506
|
+
* @generated from protobuf enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic
|
1507
|
+
*/
|
1508
|
+
export declare enum GeneratedCodeInfo_Annotation_Semantic {
|
1509
|
+
/**
|
1510
|
+
* There is no effect or the effect is indescribable.
|
1511
|
+
*
|
1512
|
+
* @generated from protobuf enum value: NONE = 0;
|
1513
|
+
*/
|
1514
|
+
NONE = 0,
|
1515
|
+
/**
|
1516
|
+
* The element is set or otherwise mutated.
|
1517
|
+
*
|
1518
|
+
* @generated from protobuf enum value: SET = 1;
|
1519
|
+
*/
|
1520
|
+
SET = 1,
|
1521
|
+
/**
|
1522
|
+
* An alias to the element is returned.
|
1523
|
+
*
|
1524
|
+
* @generated from protobuf enum value: ALIAS = 2;
|
1525
|
+
*/
|
1526
|
+
ALIAS = 2
|
1527
|
+
}
|
1528
|
+
declare class FileDescriptorSet$Type extends MessageType<FileDescriptorSet> {
|
1529
|
+
constructor();
|
1530
|
+
create(value?: PartialMessage<FileDescriptorSet>): FileDescriptorSet;
|
1531
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FileDescriptorSet): FileDescriptorSet;
|
1532
|
+
internalBinaryWrite(message: FileDescriptorSet, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1533
|
+
}
|
1534
|
+
/**
|
1535
|
+
* @generated MessageType for protobuf message google.protobuf.FileDescriptorSet
|
1536
|
+
*/
|
1537
|
+
export declare const FileDescriptorSet: FileDescriptorSet$Type;
|
1538
|
+
declare class FileDescriptorProto$Type extends MessageType<FileDescriptorProto> {
|
1539
|
+
constructor();
|
1540
|
+
create(value?: PartialMessage<FileDescriptorProto>): FileDescriptorProto;
|
1541
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FileDescriptorProto): FileDescriptorProto;
|
1542
|
+
internalBinaryWrite(message: FileDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1543
|
+
}
|
1544
|
+
/**
|
1545
|
+
* @generated MessageType for protobuf message google.protobuf.FileDescriptorProto
|
1546
|
+
*/
|
1547
|
+
export declare const FileDescriptorProto: FileDescriptorProto$Type;
|
1548
|
+
declare class DescriptorProto$Type extends MessageType<DescriptorProto> {
|
1549
|
+
constructor();
|
1550
|
+
create(value?: PartialMessage<DescriptorProto>): DescriptorProto;
|
1551
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DescriptorProto): DescriptorProto;
|
1552
|
+
internalBinaryWrite(message: DescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1553
|
+
}
|
1554
|
+
/**
|
1555
|
+
* @generated MessageType for protobuf message google.protobuf.DescriptorProto
|
1556
|
+
*/
|
1557
|
+
export declare const DescriptorProto: DescriptorProto$Type;
|
1558
|
+
declare class DescriptorProto_ExtensionRange$Type extends MessageType<DescriptorProto_ExtensionRange> {
|
1559
|
+
constructor();
|
1560
|
+
create(value?: PartialMessage<DescriptorProto_ExtensionRange>): DescriptorProto_ExtensionRange;
|
1561
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DescriptorProto_ExtensionRange): DescriptorProto_ExtensionRange;
|
1562
|
+
internalBinaryWrite(message: DescriptorProto_ExtensionRange, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1563
|
+
}
|
1564
|
+
/**
|
1565
|
+
* @generated MessageType for protobuf message google.protobuf.DescriptorProto.ExtensionRange
|
1566
|
+
*/
|
1567
|
+
export declare const DescriptorProto_ExtensionRange: DescriptorProto_ExtensionRange$Type;
|
1568
|
+
declare class DescriptorProto_ReservedRange$Type extends MessageType<DescriptorProto_ReservedRange> {
|
1569
|
+
constructor();
|
1570
|
+
create(value?: PartialMessage<DescriptorProto_ReservedRange>): DescriptorProto_ReservedRange;
|
1571
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DescriptorProto_ReservedRange): DescriptorProto_ReservedRange;
|
1572
|
+
internalBinaryWrite(message: DescriptorProto_ReservedRange, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1573
|
+
}
|
1574
|
+
/**
|
1575
|
+
* @generated MessageType for protobuf message google.protobuf.DescriptorProto.ReservedRange
|
1576
|
+
*/
|
1577
|
+
export declare const DescriptorProto_ReservedRange: DescriptorProto_ReservedRange$Type;
|
1578
|
+
declare class ExtensionRangeOptions$Type extends MessageType<ExtensionRangeOptions> {
|
1579
|
+
constructor();
|
1580
|
+
create(value?: PartialMessage<ExtensionRangeOptions>): ExtensionRangeOptions;
|
1581
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExtensionRangeOptions): ExtensionRangeOptions;
|
1582
|
+
internalBinaryWrite(message: ExtensionRangeOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1583
|
+
}
|
1584
|
+
/**
|
1585
|
+
* @generated MessageType for protobuf message google.protobuf.ExtensionRangeOptions
|
1586
|
+
*/
|
1587
|
+
export declare const ExtensionRangeOptions: ExtensionRangeOptions$Type;
|
1588
|
+
declare class FieldDescriptorProto$Type extends MessageType<FieldDescriptorProto> {
|
1589
|
+
constructor();
|
1590
|
+
create(value?: PartialMessage<FieldDescriptorProto>): FieldDescriptorProto;
|
1591
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldDescriptorProto): FieldDescriptorProto;
|
1592
|
+
internalBinaryWrite(message: FieldDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1593
|
+
}
|
1594
|
+
/**
|
1595
|
+
* @generated MessageType for protobuf message google.protobuf.FieldDescriptorProto
|
1596
|
+
*/
|
1597
|
+
export declare const FieldDescriptorProto: FieldDescriptorProto$Type;
|
1598
|
+
declare class OneofDescriptorProto$Type extends MessageType<OneofDescriptorProto> {
|
1599
|
+
constructor();
|
1600
|
+
create(value?: PartialMessage<OneofDescriptorProto>): OneofDescriptorProto;
|
1601
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: OneofDescriptorProto): OneofDescriptorProto;
|
1602
|
+
internalBinaryWrite(message: OneofDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1603
|
+
}
|
1604
|
+
/**
|
1605
|
+
* @generated MessageType for protobuf message google.protobuf.OneofDescriptorProto
|
1606
|
+
*/
|
1607
|
+
export declare const OneofDescriptorProto: OneofDescriptorProto$Type;
|
1608
|
+
declare class EnumDescriptorProto$Type extends MessageType<EnumDescriptorProto> {
|
1609
|
+
constructor();
|
1610
|
+
create(value?: PartialMessage<EnumDescriptorProto>): EnumDescriptorProto;
|
1611
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnumDescriptorProto): EnumDescriptorProto;
|
1612
|
+
internalBinaryWrite(message: EnumDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1613
|
+
}
|
1614
|
+
/**
|
1615
|
+
* @generated MessageType for protobuf message google.protobuf.EnumDescriptorProto
|
1616
|
+
*/
|
1617
|
+
export declare const EnumDescriptorProto: EnumDescriptorProto$Type;
|
1618
|
+
declare class EnumDescriptorProto_EnumReservedRange$Type extends MessageType<EnumDescriptorProto_EnumReservedRange> {
|
1619
|
+
constructor();
|
1620
|
+
create(value?: PartialMessage<EnumDescriptorProto_EnumReservedRange>): EnumDescriptorProto_EnumReservedRange;
|
1621
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnumDescriptorProto_EnumReservedRange): EnumDescriptorProto_EnumReservedRange;
|
1622
|
+
internalBinaryWrite(message: EnumDescriptorProto_EnumReservedRange, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1623
|
+
}
|
1624
|
+
/**
|
1625
|
+
* @generated MessageType for protobuf message google.protobuf.EnumDescriptorProto.EnumReservedRange
|
1626
|
+
*/
|
1627
|
+
export declare const EnumDescriptorProto_EnumReservedRange: EnumDescriptorProto_EnumReservedRange$Type;
|
1628
|
+
declare class EnumValueDescriptorProto$Type extends MessageType<EnumValueDescriptorProto> {
|
1629
|
+
constructor();
|
1630
|
+
create(value?: PartialMessage<EnumValueDescriptorProto>): EnumValueDescriptorProto;
|
1631
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnumValueDescriptorProto): EnumValueDescriptorProto;
|
1632
|
+
internalBinaryWrite(message: EnumValueDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1633
|
+
}
|
1634
|
+
/**
|
1635
|
+
* @generated MessageType for protobuf message google.protobuf.EnumValueDescriptorProto
|
1636
|
+
*/
|
1637
|
+
export declare const EnumValueDescriptorProto: EnumValueDescriptorProto$Type;
|
1638
|
+
declare class ServiceDescriptorProto$Type extends MessageType<ServiceDescriptorProto> {
|
1639
|
+
constructor();
|
1640
|
+
create(value?: PartialMessage<ServiceDescriptorProto>): ServiceDescriptorProto;
|
1641
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ServiceDescriptorProto): ServiceDescriptorProto;
|
1642
|
+
internalBinaryWrite(message: ServiceDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1643
|
+
}
|
1644
|
+
/**
|
1645
|
+
* @generated MessageType for protobuf message google.protobuf.ServiceDescriptorProto
|
1646
|
+
*/
|
1647
|
+
export declare const ServiceDescriptorProto: ServiceDescriptorProto$Type;
|
1648
|
+
declare class MethodDescriptorProto$Type extends MessageType<MethodDescriptorProto> {
|
1649
|
+
constructor();
|
1650
|
+
create(value?: PartialMessage<MethodDescriptorProto>): MethodDescriptorProto;
|
1651
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MethodDescriptorProto): MethodDescriptorProto;
|
1652
|
+
internalBinaryWrite(message: MethodDescriptorProto, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1653
|
+
}
|
1654
|
+
/**
|
1655
|
+
* @generated MessageType for protobuf message google.protobuf.MethodDescriptorProto
|
1656
|
+
*/
|
1657
|
+
export declare const MethodDescriptorProto: MethodDescriptorProto$Type;
|
1658
|
+
declare class FileOptions$Type extends MessageType<FileOptions> {
|
1659
|
+
constructor();
|
1660
|
+
create(value?: PartialMessage<FileOptions>): FileOptions;
|
1661
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FileOptions): FileOptions;
|
1662
|
+
internalBinaryWrite(message: FileOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1663
|
+
}
|
1664
|
+
/**
|
1665
|
+
* @generated MessageType for protobuf message google.protobuf.FileOptions
|
1666
|
+
*/
|
1667
|
+
export declare const FileOptions: FileOptions$Type;
|
1668
|
+
declare class MessageOptions$Type extends MessageType<MessageOptions> {
|
1669
|
+
constructor();
|
1670
|
+
create(value?: PartialMessage<MessageOptions>): MessageOptions;
|
1671
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MessageOptions): MessageOptions;
|
1672
|
+
internalBinaryWrite(message: MessageOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1673
|
+
}
|
1674
|
+
/**
|
1675
|
+
* @generated MessageType for protobuf message google.protobuf.MessageOptions
|
1676
|
+
*/
|
1677
|
+
export declare const MessageOptions: MessageOptions$Type;
|
1678
|
+
declare class FieldOptions$Type extends MessageType<FieldOptions> {
|
1679
|
+
constructor();
|
1680
|
+
create(value?: PartialMessage<FieldOptions>): FieldOptions;
|
1681
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldOptions): FieldOptions;
|
1682
|
+
internalBinaryWrite(message: FieldOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1683
|
+
}
|
1684
|
+
/**
|
1685
|
+
* @generated MessageType for protobuf message google.protobuf.FieldOptions
|
1686
|
+
*/
|
1687
|
+
export declare const FieldOptions: FieldOptions$Type;
|
1688
|
+
declare class OneofOptions$Type extends MessageType<OneofOptions> {
|
1689
|
+
constructor();
|
1690
|
+
create(value?: PartialMessage<OneofOptions>): OneofOptions;
|
1691
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: OneofOptions): OneofOptions;
|
1692
|
+
internalBinaryWrite(message: OneofOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1693
|
+
}
|
1694
|
+
/**
|
1695
|
+
* @generated MessageType for protobuf message google.protobuf.OneofOptions
|
1696
|
+
*/
|
1697
|
+
export declare const OneofOptions: OneofOptions$Type;
|
1698
|
+
declare class EnumOptions$Type extends MessageType<EnumOptions> {
|
1699
|
+
constructor();
|
1700
|
+
create(value?: PartialMessage<EnumOptions>): EnumOptions;
|
1701
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnumOptions): EnumOptions;
|
1702
|
+
internalBinaryWrite(message: EnumOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1703
|
+
}
|
1704
|
+
/**
|
1705
|
+
* @generated MessageType for protobuf message google.protobuf.EnumOptions
|
1706
|
+
*/
|
1707
|
+
export declare const EnumOptions: EnumOptions$Type;
|
1708
|
+
declare class EnumValueOptions$Type extends MessageType<EnumValueOptions> {
|
1709
|
+
constructor();
|
1710
|
+
create(value?: PartialMessage<EnumValueOptions>): EnumValueOptions;
|
1711
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EnumValueOptions): EnumValueOptions;
|
1712
|
+
internalBinaryWrite(message: EnumValueOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1713
|
+
}
|
1714
|
+
/**
|
1715
|
+
* @generated MessageType for protobuf message google.protobuf.EnumValueOptions
|
1716
|
+
*/
|
1717
|
+
export declare const EnumValueOptions: EnumValueOptions$Type;
|
1718
|
+
declare class ServiceOptions$Type extends MessageType<ServiceOptions> {
|
1719
|
+
constructor();
|
1720
|
+
create(value?: PartialMessage<ServiceOptions>): ServiceOptions;
|
1721
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ServiceOptions): ServiceOptions;
|
1722
|
+
internalBinaryWrite(message: ServiceOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1723
|
+
}
|
1724
|
+
/**
|
1725
|
+
* @generated MessageType for protobuf message google.protobuf.ServiceOptions
|
1726
|
+
*/
|
1727
|
+
export declare const ServiceOptions: ServiceOptions$Type;
|
1728
|
+
declare class MethodOptions$Type extends MessageType<MethodOptions> {
|
1729
|
+
constructor();
|
1730
|
+
create(value?: PartialMessage<MethodOptions>): MethodOptions;
|
1731
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MethodOptions): MethodOptions;
|
1732
|
+
internalBinaryWrite(message: MethodOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1733
|
+
}
|
1734
|
+
/**
|
1735
|
+
* @generated MessageType for protobuf message google.protobuf.MethodOptions
|
1736
|
+
*/
|
1737
|
+
export declare const MethodOptions: MethodOptions$Type;
|
1738
|
+
declare class UninterpretedOption$Type extends MessageType<UninterpretedOption> {
|
1739
|
+
constructor();
|
1740
|
+
create(value?: PartialMessage<UninterpretedOption>): UninterpretedOption;
|
1741
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UninterpretedOption): UninterpretedOption;
|
1742
|
+
internalBinaryWrite(message: UninterpretedOption, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1743
|
+
}
|
1744
|
+
/**
|
1745
|
+
* @generated MessageType for protobuf message google.protobuf.UninterpretedOption
|
1746
|
+
*/
|
1747
|
+
export declare const UninterpretedOption: UninterpretedOption$Type;
|
1748
|
+
declare class UninterpretedOption_NamePart$Type extends MessageType<UninterpretedOption_NamePart> {
|
1749
|
+
constructor();
|
1750
|
+
create(value?: PartialMessage<UninterpretedOption_NamePart>): UninterpretedOption_NamePart;
|
1751
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UninterpretedOption_NamePart): UninterpretedOption_NamePart;
|
1752
|
+
internalBinaryWrite(message: UninterpretedOption_NamePart, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1753
|
+
}
|
1754
|
+
/**
|
1755
|
+
* @generated MessageType for protobuf message google.protobuf.UninterpretedOption.NamePart
|
1756
|
+
*/
|
1757
|
+
export declare const UninterpretedOption_NamePart: UninterpretedOption_NamePart$Type;
|
1758
|
+
declare class SourceCodeInfo$Type extends MessageType<SourceCodeInfo> {
|
1759
|
+
constructor();
|
1760
|
+
create(value?: PartialMessage<SourceCodeInfo>): SourceCodeInfo;
|
1761
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SourceCodeInfo): SourceCodeInfo;
|
1762
|
+
internalBinaryWrite(message: SourceCodeInfo, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1763
|
+
}
|
1764
|
+
/**
|
1765
|
+
* @generated MessageType for protobuf message google.protobuf.SourceCodeInfo
|
1766
|
+
*/
|
1767
|
+
export declare const SourceCodeInfo: SourceCodeInfo$Type;
|
1768
|
+
declare class SourceCodeInfo_Location$Type extends MessageType<SourceCodeInfo_Location> {
|
1769
|
+
constructor();
|
1770
|
+
create(value?: PartialMessage<SourceCodeInfo_Location>): SourceCodeInfo_Location;
|
1771
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SourceCodeInfo_Location): SourceCodeInfo_Location;
|
1772
|
+
internalBinaryWrite(message: SourceCodeInfo_Location, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1773
|
+
}
|
1774
|
+
/**
|
1775
|
+
* @generated MessageType for protobuf message google.protobuf.SourceCodeInfo.Location
|
1776
|
+
*/
|
1777
|
+
export declare const SourceCodeInfo_Location: SourceCodeInfo_Location$Type;
|
1778
|
+
declare class GeneratedCodeInfo$Type extends MessageType<GeneratedCodeInfo> {
|
1779
|
+
constructor();
|
1780
|
+
create(value?: PartialMessage<GeneratedCodeInfo>): GeneratedCodeInfo;
|
1781
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GeneratedCodeInfo): GeneratedCodeInfo;
|
1782
|
+
internalBinaryWrite(message: GeneratedCodeInfo, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1783
|
+
}
|
1784
|
+
/**
|
1785
|
+
* @generated MessageType for protobuf message google.protobuf.GeneratedCodeInfo
|
1786
|
+
*/
|
1787
|
+
export declare const GeneratedCodeInfo: GeneratedCodeInfo$Type;
|
1788
|
+
declare class GeneratedCodeInfo_Annotation$Type extends MessageType<GeneratedCodeInfo_Annotation> {
|
1789
|
+
constructor();
|
1790
|
+
create(value?: PartialMessage<GeneratedCodeInfo_Annotation>): GeneratedCodeInfo_Annotation;
|
1791
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GeneratedCodeInfo_Annotation): GeneratedCodeInfo_Annotation;
|
1792
|
+
internalBinaryWrite(message: GeneratedCodeInfo_Annotation, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
1793
|
+
}
|
1794
|
+
/**
|
1795
|
+
* @generated MessageType for protobuf message google.protobuf.GeneratedCodeInfo.Annotation
|
1796
|
+
*/
|
1797
|
+
export declare const GeneratedCodeInfo_Annotation: GeneratedCodeInfo_Annotation$Type;
|
1798
|
+
export {};
|