@dronedeploy/rocos-js-sdk 3.0.1-alpha.2 → 3.0.1-alpha.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1115) hide show
  1. package/cjs/IRocosSDK.d.ts +34 -0
  2. package/cjs/IRocosSDK.js +6 -0
  3. package/cjs/RocosSDK.d.ts +157 -0
  4. package/cjs/RocosSDK.js +340 -0
  5. package/cjs/api/StreamRegister.js +73 -0
  6. package/cjs/api/atoms/StreamHeartbeat.js +115 -0
  7. package/cjs/api/streams/caller/CallerStream.js +85 -0
  8. package/cjs/api/streams/caller/CallerStreamAbstract.js +91 -0
  9. package/cjs/api/streams/caller/CallerStreamNode.js +143 -0
  10. package/cjs/api/streams/command/CommandStream.js +74 -0
  11. package/cjs/api/streams/command/CommandStreamAbstract.js +67 -0
  12. package/cjs/api/streams/command/CommandStreamNode.js +97 -0
  13. package/cjs/api/streams/control/ControlStream.js +83 -0
  14. package/cjs/api/streams/control/ControlStreamAbstract.d.ts +25 -0
  15. package/cjs/api/streams/control/ControlStreamAbstract.js +115 -0
  16. package/cjs/api/streams/control/ControlStreamNode.js +101 -0
  17. package/cjs/api/streams/fileAccessor/FileAccessorStream.js +67 -0
  18. package/cjs/api/streams/fileAccessor/FileAccessorStreamAbstract.js +66 -0
  19. package/cjs/api/streams/fileAccessor/FileAccessorStreamNode.js +95 -0
  20. package/cjs/api/streams/search/SearchStream.js +104 -0
  21. package/cjs/api/streams/search/SearchStreamAbstract.js +76 -0
  22. package/cjs/api/streams/search/SearchStreamNode.js +146 -0
  23. package/cjs/api/streams/telemetry/TelemetryStream.js +105 -0
  24. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
  25. package/cjs/api/streams/telemetry/TelemetryStreamAbstract.js +406 -0
  26. package/cjs/api/streams/telemetry/TelemetryStreamNode.js +203 -0
  27. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStream.js +92 -0
  28. package/cjs/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +69 -0
  29. package/cjs/constants/api.d.ts +136 -0
  30. package/cjs/constants/api.js +141 -0
  31. package/cjs/constants/auth.js +5 -0
  32. package/cjs/constants/grpc.js +8 -0
  33. package/cjs/constants/identifier.js +9 -0
  34. package/cjs/constants/timezones.js +430 -0
  35. package/cjs/grpc/conker_pb.client.js +59 -0
  36. package/cjs/grpc/conker_pb.grpc-client.js +85 -0
  37. package/cjs/grpc/conker_pb.js +107 -0
  38. package/cjs/grpc/filagree_pb.client.js +52 -0
  39. package/cjs/grpc/filagree_pb.grpc-client.js +78 -0
  40. package/cjs/grpc/filagree_pb.js +332 -0
  41. package/cjs/grpc/google/protobuf/descriptor_pb.js +2381 -0
  42. package/cjs/grpc/google/protobuf/empty_pb.js +50 -0
  43. package/cjs/grpc/pigeon_pb.client.js +77 -0
  44. package/cjs/grpc/pigeon_pb.grpc-client.js +96 -0
  45. package/cjs/grpc/pigeon_pb.js +147 -0
  46. package/cjs/grpc/rambo.uri.v1_pb.js +51 -0
  47. package/cjs/grpc/rambo.v1_pb.client.js +53 -0
  48. package/cjs/grpc/rambo.v1_pb.grpc-client.js +72 -0
  49. package/cjs/grpc/rambo.v1_pb.js +275 -0
  50. package/cjs/grpc/serviette.uri.v1_pb.js +65 -0
  51. package/cjs/grpc/serviette.v1_pb.client.js +183 -0
  52. package/cjs/grpc/serviette.v1_pb.grpc-client.js +194 -0
  53. package/cjs/grpc/serviette.v1_pb.js +556 -0
  54. package/cjs/grpc/slowlane_pb.client.js +45 -0
  55. package/cjs/grpc/slowlane_pb.grpc-client.js +71 -0
  56. package/cjs/grpc/slowlane_pb.js +188 -0
  57. package/cjs/grpc/teletubby_pb.client.js +109 -0
  58. package/cjs/grpc/teletubby_pb.grpc-client.js +128 -0
  59. package/cjs/grpc/teletubby_pb.js +1267 -0
  60. package/cjs/helpers/arrayRemove.js +7 -0
  61. package/cjs/helpers/arrayUnique.js +7 -0
  62. package/cjs/helpers/average.js +10 -0
  63. package/cjs/helpers/callerMessageHelpers.d.ts +14 -0
  64. package/cjs/helpers/callerMessageHelpers.js +91 -0
  65. package/cjs/helpers/cleanObject.js +22 -0
  66. package/cjs/helpers/enviroment.js +17 -0
  67. package/cjs/helpers/flattenCallsignsLookup.js +10 -0
  68. package/cjs/helpers/flattenObject.js +17 -0
  69. package/cjs/helpers/flattenOneOf.js +34 -0
  70. package/cjs/helpers/formatServiceUrl.js +11 -0
  71. package/cjs/helpers/generateUUID.js +8 -0
  72. package/cjs/helpers/getSha256Hex.d.ts +1 -0
  73. package/cjs/helpers/getSha256Hex.js +9 -0
  74. package/cjs/helpers/getSha256HexNode.d.ts +1 -0
  75. package/cjs/helpers/getSha256HexNode.js +13 -0
  76. package/cjs/helpers/getSubscriptionsDifference.js +39 -0
  77. package/cjs/helpers/getURLSearchParams.js +13 -0
  78. package/cjs/helpers/getUniqueConfigKey.d.ts +11 -0
  79. package/cjs/helpers/getUniqueConfigKey.js +23 -0
  80. package/cjs/helpers/getUniqueId.js +15 -0
  81. package/cjs/helpers/getUnixTimeMs.js +8 -0
  82. package/cjs/helpers/index.js +21 -0
  83. package/cjs/helpers/nanosecondToMillisecond.js +16 -0
  84. package/cjs/helpers/randomString.js +7 -0
  85. package/cjs/helpers/splitRobotTopic.d.ts +9 -0
  86. package/cjs/helpers/splitRobotTopic.js +16 -0
  87. package/cjs/helpers/standardDeviation.js +16 -0
  88. package/cjs/helpers/stringToUint8Array.js +14 -0
  89. package/cjs/helpers/uint8ArrayToString.js +14 -0
  90. package/cjs/helpers/websandbox/connection.d.ts +68 -0
  91. package/cjs/helpers/websandbox/connection.js +137 -0
  92. package/cjs/helpers/websandbox/frame/frame.js +30 -0
  93. package/cjs/helpers/websandbox/frame/frame.source.js +10 -0
  94. package/cjs/helpers/websandbox/frame/index.js +7 -0
  95. package/cjs/helpers/websandbox/frame/worker/index.js +7 -0
  96. package/cjs/helpers/websandbox/frame/worker/manager.d.ts +15 -0
  97. package/cjs/helpers/websandbox/frame/worker/manager.js +88 -0
  98. package/cjs/helpers/websandbox/frame/worker/types.js +2 -0
  99. package/cjs/helpers/websandbox/frame/worker/worker.js +75 -0
  100. package/cjs/helpers/websandbox/frame/worker/worker.source.js +6 -0
  101. package/cjs/helpers/websandbox/index.js +8 -0
  102. package/cjs/helpers/websandbox/sandbox.d.ts +57 -0
  103. package/cjs/helpers/websandbox/sandbox.js +182 -0
  104. package/cjs/helpers/websandbox/types.js +2 -0
  105. package/cjs/index.js +23 -0
  106. package/cjs/logger/RocosLogger.js +67 -0
  107. package/cjs/models/ExportDataQuery.js +17 -0
  108. package/cjs/models/ExternalProject.js +6 -0
  109. package/cjs/models/HttpError.d.ts +5 -0
  110. package/cjs/models/HttpError.js +12 -0
  111. package/cjs/models/IBaseService.js +2 -0
  112. package/cjs/models/IConfigGroup.js +2 -0
  113. package/cjs/models/IDebugLevel.js +2 -0
  114. package/cjs/models/IExportDataQuery.js +2 -0
  115. package/cjs/models/IFunctionConfig.js +2 -0
  116. package/cjs/models/IInvitation.js +2 -0
  117. package/cjs/models/IInvitationExists.js +2 -0
  118. package/cjs/models/IOperation.js +2 -0
  119. package/cjs/models/IPersonalAccessToken.js +2 -0
  120. package/cjs/models/IProject.d.ts +6 -0
  121. package/cjs/models/IProject.js +2 -0
  122. package/cjs/models/IProjectApplication.js +2 -0
  123. package/cjs/models/IProjectInfo.d.ts +14 -0
  124. package/cjs/models/IProjectInfo.js +2 -0
  125. package/cjs/models/IRobot.js +2 -0
  126. package/cjs/models/IRobotConfig.js +2 -0
  127. package/cjs/models/IRobotPlugin.js +2 -0
  128. package/cjs/models/IRobotSettings.js +2 -0
  129. package/cjs/models/IRobotTemplate.js +2 -0
  130. package/cjs/models/IRocosSDKConfig.d.ts +23 -0
  131. package/cjs/models/IRocosSDKConfig.js +2 -0
  132. package/cjs/models/ISource.js +2 -0
  133. package/cjs/models/IStream.js +2 -0
  134. package/cjs/models/IStreamConfig.js +2 -0
  135. package/cjs/models/IStreamOptions.js +2 -0
  136. package/cjs/models/IStreamSource.js +2 -0
  137. package/cjs/models/ISubscriberStatus.js +2 -0
  138. package/cjs/models/ITelemetryStreamConfig.js +2 -0
  139. package/cjs/models/IToken.js +2 -0
  140. package/cjs/models/IWidget.js +2 -0
  141. package/cjs/models/IWidgetLineGroup.js +2 -0
  142. package/cjs/models/ResponseLevelEnum.js +14 -0
  143. package/cjs/models/Robot.js +12 -0
  144. package/cjs/models/RobotConfig.js +9 -0
  145. package/cjs/models/RobotPlugin.js +9 -0
  146. package/cjs/models/RobotTemplate.js +29 -0
  147. package/cjs/models/RocosError.d.ts +34 -0
  148. package/cjs/models/RocosError.js +47 -0
  149. package/cjs/models/ServiceEnum.d.ts +30 -0
  150. package/cjs/models/ServiceEnum.js +34 -0
  151. package/cjs/models/Stream.js +15 -0
  152. package/cjs/models/StreamOptions.js +37 -0
  153. package/cjs/models/StreamSource.js +15 -0
  154. package/cjs/models/SubscriberStatusEnum.js +10 -0
  155. package/cjs/models/TelemetryStatus.d.ts +12 -0
  156. package/cjs/models/TelemetryStatus.js +17 -0
  157. package/cjs/models/Token.d.ts +40 -0
  158. package/cjs/models/Token.js +82 -0
  159. package/cjs/models/Widget.js +16 -0
  160. package/cjs/models/WidgetLineGroup.js +9 -0
  161. package/cjs/models/asset-storage/AssetItem.d.ts +16 -0
  162. package/cjs/models/asset-storage/AssetItem.js +2 -0
  163. package/cjs/models/asset-storage/SyncIntegrations.d.ts +31 -0
  164. package/cjs/models/asset-storage/SyncIntegrations.js +2 -0
  165. package/cjs/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  166. package/cjs/models/caller/IRocosCallerMessageChunk.js +2 -0
  167. package/cjs/models/caller/IRocosCallerMessageChunks.js +2 -0
  168. package/cjs/models/caller/IRocosCallerMessageHeartbeat.js +2 -0
  169. package/cjs/models/caller/IRocosCallerMessageResponse.js +2 -0
  170. package/cjs/models/caller/IRocosCallerMessageResponseAck.js +16 -0
  171. package/cjs/models/caller/IRocosCallerMessageResponseResult.js +15 -0
  172. package/cjs/models/caller/IRocosCallerMessageResponseReturn.js +2 -0
  173. package/cjs/models/caller/IRocosCallerMessageResponseUid.js +10 -0
  174. package/cjs/models/caller/IRocosCallerMessageResponses.js +2 -0
  175. package/cjs/models/caller/RocosCallerResultStatus.js +15 -0
  176. package/cjs/models/caller/RocosResponseLevel.js +10 -0
  177. package/cjs/models/caller/index.d.ts +11 -0
  178. package/cjs/models/caller/index.js +27 -0
  179. package/cjs/models/callsigns/CallsignsEnums.js +20 -0
  180. package/cjs/models/callsigns/CallsignsLookup.js +32 -0
  181. package/cjs/models/callsigns/CallsignsQuery.js +18 -0
  182. package/cjs/models/callsigns/CallsignsQueryPredicate.js +19 -0
  183. package/cjs/models/command/IRocosCommandMessageHeartbeat.js +2 -0
  184. package/cjs/models/command/IRocosCommandMessageResponse.js +30 -0
  185. package/cjs/models/command/RocosCommandResultStatus.js +15 -0
  186. package/cjs/models/command/index.js +20 -0
  187. package/cjs/models/device-credentials/DeviceCredentials.d.ts +61 -0
  188. package/cjs/models/device-credentials/DeviceCredentials.js +2 -0
  189. package/cjs/models/file/FileEnums.js +36 -0
  190. package/cjs/models/graph/Position.d.ts +6 -0
  191. package/cjs/models/graph/Position.js +2 -0
  192. package/cjs/models/graph/Quaternion.d.ts +6 -0
  193. package/cjs/models/graph/Quaternion.js +2 -0
  194. package/cjs/models/graph/Vector3.d.ts +5 -0
  195. package/cjs/models/graph/Vector3.js +2 -0
  196. package/cjs/models/graph/index.d.ts +3 -0
  197. package/cjs/models/graph/index.js +19 -0
  198. package/cjs/models/index.d.ts +81 -0
  199. package/cjs/models/index.js +97 -0
  200. package/cjs/models/integrations/Overlay.js +2 -0
  201. package/cjs/models/integrations/Plan.js +2 -0
  202. package/cjs/models/maps/Map.js +2 -0
  203. package/cjs/models/maps/Panorama.d.ts +20 -0
  204. package/cjs/models/maps/Panorama.js +2 -0
  205. package/cjs/models/message/IRocosCallerMessage.js +2 -0
  206. package/cjs/models/message/IRocosChangeMessage.js +2 -0
  207. package/cjs/models/message/IRocosCommandMessage.js +2 -0
  208. package/cjs/models/message/IRocosControlMessage.js +2 -0
  209. package/cjs/models/message/IRocosOpResultMessage.js +2 -0
  210. package/cjs/models/message/IRocosSearchMessage.js +2 -0
  211. package/cjs/models/message/IRocosSearchRowMessage.js +2 -0
  212. package/cjs/models/message/IRocosSearchStatusMessage.js +2 -0
  213. package/cjs/models/message/IRocosTelemetryMessage.d.ts +23 -0
  214. package/cjs/models/message/IRocosTelemetryMessage.js +2 -0
  215. package/cjs/models/message/IStreamStatusMessage.js +2 -0
  216. package/cjs/models/message/RocosCallerMessage.js +36 -0
  217. package/cjs/models/message/RocosCommandMessage.js +17 -0
  218. package/cjs/models/message/RocosControlMessage.js +18 -0
  219. package/cjs/models/message/RocosOpResultMessage.js +22 -0
  220. package/cjs/models/message/RocosSearchMessage.js +28 -0
  221. package/cjs/models/message/RocosSearchRowMessage.js +20 -0
  222. package/cjs/models/message/RocosTelemetryMessage.js +67 -0
  223. package/cjs/models/message/index.js +33 -0
  224. package/cjs/models/params/ICallerParams.d.ts +26 -0
  225. package/cjs/models/params/ICallerParams.js +2 -0
  226. package/cjs/models/params/ICommandParams.js +2 -0
  227. package/cjs/models/params/IControlParams.js +2 -0
  228. package/cjs/models/params/IFileAccessorParams.js +2 -0
  229. package/cjs/models/params/ISearchParams.js +2 -0
  230. package/cjs/models/params/ITelemetryParams.js +2 -0
  231. package/cjs/models/params/IWebRTCSignallingParams.js +2 -0
  232. package/cjs/models/projects/ProjectUser.js +2 -0
  233. package/cjs/models/schedule/IScheduleAction.js +9 -0
  234. package/cjs/models/schedule/IScheduleInfo.js +2 -0
  235. package/cjs/models/schedule/IScheduleJob.js +2 -0
  236. package/cjs/models/search/SearchQueryFilter.js +9 -0
  237. package/cjs/models/search/SearchStreamQuery.js +10 -0
  238. package/cjs/models/stream/IBaseStream.js +2 -0
  239. package/cjs/models/stream/ICallerStream.js +2 -0
  240. package/cjs/models/stream/ICommandStream.js +2 -0
  241. package/cjs/models/stream/IControlStream.js +2 -0
  242. package/cjs/models/stream/IFileAccessorStream.js +2 -0
  243. package/cjs/models/stream/ISearchStream.js +2 -0
  244. package/cjs/models/stream/ITelemetryStream.js +2 -0
  245. package/cjs/models/stream/IWebRTCSignallingStream.js +2 -0
  246. package/cjs/models/target/Target.d.ts +27 -0
  247. package/cjs/models/target/Target.js +2 -0
  248. package/cjs/models/types.js +2 -0
  249. package/cjs/models/workflow/Workflow.d.ts +94 -0
  250. package/cjs/models/workflow/Workflow.js +2 -0
  251. package/cjs/node/RocosSDKNode.d.ts +47 -0
  252. package/cjs/node/RocosSDKNode.js +147 -0
  253. package/cjs/node/index.js +23 -0
  254. package/cjs/services/AssetStorageService.d.ts +137 -0
  255. package/cjs/services/AssetStorageService.js +227 -0
  256. package/cjs/services/AuthService.d.ts +104 -0
  257. package/cjs/services/AuthService.js +257 -0
  258. package/cjs/services/BaseServiceAbstract.d.ts +36 -0
  259. package/cjs/services/BaseServiceAbstract.js +94 -0
  260. package/cjs/services/BaseStreamService.js +53 -0
  261. package/cjs/services/CallerService.d.ts +42 -0
  262. package/cjs/services/CallerService.js +121 -0
  263. package/cjs/services/CallerServiceNode.js +11 -0
  264. package/cjs/services/CommandService.js +42 -0
  265. package/cjs/services/CommandServiceNode.js +11 -0
  266. package/cjs/services/ConfigGroupService.js +157 -0
  267. package/cjs/services/ControlService.js +61 -0
  268. package/cjs/services/ControlServiceNode.js +11 -0
  269. package/cjs/services/DashboardService.js +146 -0
  270. package/cjs/services/DeviceCredentialsService.d.ts +15 -0
  271. package/cjs/services/DeviceCredentialsService.js +50 -0
  272. package/cjs/services/EvaluatorService.js +32 -0
  273. package/cjs/services/EventService.js +89 -0
  274. package/cjs/services/FileAccessorService.js +41 -0
  275. package/cjs/services/FileAccessorServiceNode.js +11 -0
  276. package/cjs/services/IntegrationService.js +76 -0
  277. package/cjs/services/MapService.d.ts +142 -0
  278. package/cjs/services/MapService.js +196 -0
  279. package/cjs/services/PlatformTimeService.js +160 -0
  280. package/cjs/services/ProfileService.d.ts +268 -0
  281. package/cjs/services/ProfileService.js +400 -0
  282. package/cjs/services/ProjectService.d.ts +106 -0
  283. package/cjs/services/ProjectService.js +167 -0
  284. package/cjs/services/RTPWebRTCService.d.ts +102 -0
  285. package/cjs/services/RTPWebRTCService.js +234 -0
  286. package/cjs/services/RobotService.js +464 -0
  287. package/cjs/services/ScheduleService.js +40 -0
  288. package/cjs/services/SearchService.js +62 -0
  289. package/cjs/services/SearchServiceNode.js +11 -0
  290. package/cjs/services/SpotProvisioningService.js +47 -0
  291. package/cjs/services/SpotProvisioningServiceNode.js +47 -0
  292. package/cjs/services/StreamService.js +146 -0
  293. package/cjs/services/TargetService.d.ts +11 -0
  294. package/cjs/services/TargetService.js +31 -0
  295. package/cjs/services/TelemetryService.d.ts +50 -0
  296. package/cjs/services/TelemetryService.js +180 -0
  297. package/cjs/services/TelemetryServiceNode.js +11 -0
  298. package/cjs/services/TimeSyncerService.js +27 -0
  299. package/cjs/services/UserService.js +319 -0
  300. package/cjs/services/WebRTCSignallingService.js +82 -0
  301. package/cjs/services/WorkflowService.d.ts +62 -0
  302. package/cjs/services/WorkflowService.js +107 -0
  303. package/cjs/services/WorkflowServiceNode.d.ts +4 -0
  304. package/cjs/services/WorkflowServiceNode.js +12 -0
  305. package/cjs/services/index.d.ts +29 -0
  306. package/cjs/services/index.js +45 -0
  307. package/cjs/store/RocosStore.d.ts +30 -0
  308. package/cjs/store/RocosStore.js +51 -0
  309. package/esm/IRocosSDK.d.ts +34 -0
  310. package/esm/RocosSDK.d.ts +157 -0
  311. package/esm/RocosSDK.js +336 -0
  312. package/esm/api/StreamRegister.d.ts +13 -0
  313. package/esm/api/atoms/StreamHeartbeat.d.ts +27 -0
  314. package/esm/api/streams/caller/CallerStream.d.ts +13 -0
  315. package/esm/api/streams/caller/CallerStream.js +81 -0
  316. package/esm/api/streams/caller/CallerStreamAbstract.d.ts +23 -0
  317. package/esm/api/streams/caller/CallerStreamNode.d.ts +13 -0
  318. package/esm/api/streams/caller/CallerStreamNode.js +116 -0
  319. package/esm/api/streams/command/CommandStream.d.ts +10 -0
  320. package/esm/api/streams/command/CommandStream.js +70 -0
  321. package/esm/api/streams/command/CommandStreamAbstract.d.ts +20 -0
  322. package/esm/api/streams/command/CommandStreamNode.d.ts +10 -0
  323. package/esm/api/streams/command/CommandStreamNode.js +70 -0
  324. package/esm/api/streams/control/ControlStream.d.ts +12 -0
  325. package/esm/api/streams/control/ControlStream.js +79 -0
  326. package/esm/api/streams/control/ControlStreamAbstract.d.ts +25 -0
  327. package/esm/api/streams/control/ControlStreamNode.d.ts +12 -0
  328. package/esm/api/streams/control/ControlStreamNode.js +74 -0
  329. package/esm/api/streams/fileAccessor/FileAccessorStream.d.ts +8 -0
  330. package/esm/api/streams/fileAccessor/FileAccessorStream.js +63 -0
  331. package/esm/api/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +21 -0
  332. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.d.ts +8 -0
  333. package/esm/api/streams/fileAccessor/FileAccessorStreamNode.js +68 -0
  334. package/esm/api/streams/search/SearchStream.d.ts +13 -0
  335. package/esm/api/streams/search/SearchStream.js +100 -0
  336. package/esm/api/streams/search/SearchStreamAbstract.d.ts +25 -0
  337. package/esm/api/streams/search/SearchStreamNode.d.ts +13 -0
  338. package/esm/api/streams/search/SearchStreamNode.js +119 -0
  339. package/esm/api/streams/telemetry/TelemetryStream.d.ts +17 -0
  340. package/esm/api/streams/telemetry/TelemetryStream.js +101 -0
  341. package/esm/api/streams/telemetry/TelemetryStreamAbstract.d.ts +59 -0
  342. package/esm/api/streams/telemetry/TelemetryStreamNode.d.ts +21 -0
  343. package/esm/api/streams/telemetry/TelemetryStreamNode.js +176 -0
  344. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +39 -0
  345. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStream.js +88 -0
  346. package/esm/api/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +29 -0
  347. package/esm/constants/api.d.ts +136 -0
  348. package/esm/constants/api.js +136 -0
  349. package/esm/constants/auth.d.ts +2 -0
  350. package/esm/constants/grpc.d.ts +5 -0
  351. package/esm/constants/identifier.d.ts +6 -0
  352. package/esm/constants/timezones.d.ts +2 -0
  353. package/esm/grpc/conker_pb.client.d.ts +78 -0
  354. package/esm/grpc/conker_pb.d.ts +141 -0
  355. package/esm/grpc/conker_pb.grpc-client.d.ts +81 -0
  356. package/esm/grpc/filagree_pb.client.d.ts +68 -0
  357. package/esm/grpc/filagree_pb.d.ts +404 -0
  358. package/esm/grpc/filagree_pb.grpc-client.d.ts +69 -0
  359. package/esm/grpc/google/protobuf/descriptor_pb.d.ts +1798 -0
  360. package/esm/grpc/google/protobuf/empty_pb.d.ts +23 -0
  361. package/esm/grpc/pigeon_pb.client.d.ts +96 -0
  362. package/esm/grpc/pigeon_pb.d.ts +207 -0
  363. package/esm/grpc/pigeon_pb.grpc-client.d.ts +98 -0
  364. package/esm/grpc/rambo.uri.v1_pb.d.ts +73 -0
  365. package/esm/grpc/rambo.v1_pb.client.d.ts +66 -0
  366. package/esm/grpc/rambo.v1_pb.d.ts +392 -0
  367. package/esm/grpc/rambo.v1_pb.grpc-client.d.ts +56 -0
  368. package/esm/grpc/serviette.uri.v1_pb.d.ts +89 -0
  369. package/esm/grpc/serviette.v1_pb.client.d.ts +225 -0
  370. package/esm/grpc/serviette.v1_pb.d.ts +827 -0
  371. package/esm/grpc/serviette.v1_pb.grpc-client.d.ts +215 -0
  372. package/esm/grpc/slowlane_pb.client.d.ts +61 -0
  373. package/esm/grpc/slowlane_pb.d.ts +303 -0
  374. package/esm/grpc/slowlane_pb.grpc-client.d.ts +64 -0
  375. package/esm/grpc/teletubby_pb.client.d.ts +145 -0
  376. package/esm/grpc/teletubby_pb.d.ts +634 -0
  377. package/esm/grpc/teletubby_pb.grpc-client.d.ts +152 -0
  378. package/esm/helpers/arrayRemove.d.ts +1 -0
  379. package/esm/helpers/arrayUnique.d.ts +1 -0
  380. package/esm/helpers/average.d.ts +1 -0
  381. package/esm/helpers/callerMessageHelpers.d.ts +14 -0
  382. package/esm/helpers/callerMessageHelpers.js +86 -0
  383. package/esm/helpers/cleanObject.d.ts +1 -0
  384. package/esm/helpers/enviroment.d.ts +8 -0
  385. package/esm/helpers/flattenCallsignsLookup.d.ts +2 -0
  386. package/esm/helpers/flattenObject.d.ts +1 -0
  387. package/esm/helpers/flattenOneOf.d.ts +67 -0
  388. package/esm/helpers/formatServiceUrl.d.ts +1 -0
  389. package/esm/helpers/generateUUID.d.ts +1 -0
  390. package/esm/helpers/getSha256Hex.d.ts +1 -0
  391. package/esm/helpers/getSha256Hex.js +5 -0
  392. package/esm/helpers/getSha256HexNode.d.ts +1 -0
  393. package/esm/helpers/getSha256HexNode.js +6 -0
  394. package/esm/helpers/getSubscriptionsDifference.d.ts +10 -0
  395. package/esm/helpers/getURLSearchParams.d.ts +2 -0
  396. package/esm/helpers/getUniqueConfigKey.d.ts +11 -0
  397. package/esm/helpers/getUniqueConfigKey.js +19 -0
  398. package/esm/helpers/getUniqueId.d.ts +9 -0
  399. package/esm/helpers/getUnixTimeMs.d.ts +1 -0
  400. package/esm/helpers/index.js +5 -0
  401. package/esm/helpers/nanosecondToMillisecond.d.ts +1 -0
  402. package/esm/helpers/randomString.d.ts +1 -0
  403. package/esm/helpers/splitRobotTopic.d.ts +9 -0
  404. package/esm/helpers/splitRobotTopic.js +12 -0
  405. package/esm/helpers/standardDeviation.d.ts +1 -0
  406. package/esm/helpers/stringToUint8Array.d.ts +1 -0
  407. package/esm/helpers/uint8ArrayToString.d.ts +1 -0
  408. package/esm/helpers/websandbox/connection.d.ts +68 -0
  409. package/esm/helpers/websandbox/connection.js +134 -0
  410. package/esm/helpers/websandbox/frame/frame.d.ts +12 -0
  411. package/esm/helpers/websandbox/frame/frame.js +25 -0
  412. package/esm/helpers/websandbox/frame/frame.source.d.ts +2 -0
  413. package/esm/helpers/websandbox/frame/frame.source.js +5 -0
  414. package/esm/helpers/websandbox/frame/index.js +2 -0
  415. package/esm/helpers/websandbox/frame/worker/index.js +2 -0
  416. package/esm/helpers/websandbox/frame/worker/manager.d.ts +15 -0
  417. package/esm/helpers/websandbox/frame/worker/manager.js +85 -0
  418. package/esm/helpers/websandbox/frame/worker/types.d.ts +11 -0
  419. package/esm/helpers/websandbox/frame/worker/worker.source.d.ts +2 -0
  420. package/esm/helpers/websandbox/frame/worker/worker.source.js +4 -0
  421. package/esm/helpers/websandbox/index.js +2 -0
  422. package/esm/helpers/websandbox/sandbox.d.ts +57 -0
  423. package/esm/helpers/websandbox/sandbox.js +175 -0
  424. package/esm/helpers/websandbox/types.d.ts +13 -0
  425. package/esm/index.js +7 -0
  426. package/esm/logger/RocosLogger.d.ts +7 -0
  427. package/esm/models/ExportDataQuery.d.ts +8 -0
  428. package/esm/models/ExternalProject.d.ts +6 -0
  429. package/esm/models/HttpError.d.ts +5 -0
  430. package/esm/models/HttpError.js +8 -0
  431. package/esm/models/IBaseService.d.ts +4 -0
  432. package/esm/models/IConfigGroup.d.ts +5 -0
  433. package/esm/models/IDebugLevel.d.ts +2 -0
  434. package/esm/models/IExportDataQuery.d.ts +9 -0
  435. package/esm/models/IFunctionConfig.d.ts +8 -0
  436. package/esm/models/IInvitation.d.ts +6 -0
  437. package/esm/models/IInvitationExists.d.ts +4 -0
  438. package/esm/models/IOperation.d.ts +6 -0
  439. package/esm/models/IPersonalAccessToken.d.ts +16 -0
  440. package/esm/models/IProject.d.ts +6 -0
  441. package/esm/models/IProjectApplication.d.ts +6 -0
  442. package/esm/models/IProjectInfo.d.ts +14 -0
  443. package/esm/models/IRobot.d.ts +18 -0
  444. package/esm/models/IRobotConfig.d.ts +8 -0
  445. package/esm/models/IRobotPlugin.d.ts +3 -0
  446. package/esm/models/IRobotSettings.d.ts +28 -0
  447. package/esm/models/IRobotTemplate.d.ts +10 -0
  448. package/esm/models/IRocosSDKConfig.d.ts +23 -0
  449. package/esm/models/ISource.d.ts +8 -0
  450. package/esm/models/IStream.d.ts +9 -0
  451. package/esm/models/IStreamConfig.d.ts +9 -0
  452. package/esm/models/IStreamOptions.d.ts +7 -0
  453. package/esm/models/IStreamSource.d.ts +8 -0
  454. package/esm/models/ISubscriberStatus.d.ts +5 -0
  455. package/esm/models/ITelemetryStreamConfig.d.ts +7 -0
  456. package/esm/models/IToken.d.ts +9 -0
  457. package/esm/models/IWidget.d.ts +25 -0
  458. package/esm/models/IWidgetLineGroup.d.ts +8 -0
  459. package/esm/models/ResponseLevelEnum.d.ts +10 -0
  460. package/esm/models/Robot.d.ts +20 -0
  461. package/esm/models/RobotConfig.d.ts +10 -0
  462. package/esm/models/RobotPlugin.d.ts +5 -0
  463. package/esm/models/RobotTemplate.d.ts +12 -0
  464. package/esm/models/RocosError.d.ts +34 -0
  465. package/esm/models/RocosError.js +43 -0
  466. package/esm/models/ServiceEnum.d.ts +30 -0
  467. package/esm/models/ServiceEnum.js +31 -0
  468. package/esm/models/Stream.d.ts +10 -0
  469. package/esm/models/StreamOptions.d.ts +9 -0
  470. package/esm/models/StreamSource.d.ts +10 -0
  471. package/esm/models/SubscriberStatusEnum.d.ts +6 -0
  472. package/esm/models/TelemetryStatus.d.ts +12 -0
  473. package/esm/models/TelemetryStatus.js +14 -0
  474. package/esm/models/Token.d.ts +40 -0
  475. package/esm/models/Token.js +78 -0
  476. package/esm/models/Widget.d.ts +27 -0
  477. package/esm/models/WidgetLineGroup.d.ts +10 -0
  478. package/esm/models/asset-storage/AssetItem.d.ts +16 -0
  479. package/esm/models/asset-storage/SyncIntegrations.d.ts +31 -0
  480. package/esm/models/caller/IRocosCallerMessageChunk.d.ts +15 -0
  481. package/esm/models/caller/IRocosCallerMessageChunks.d.ts +4 -0
  482. package/esm/models/caller/IRocosCallerMessageHeartbeat.d.ts +3 -0
  483. package/esm/models/caller/IRocosCallerMessageResponse.d.ts +10 -0
  484. package/esm/models/caller/IRocosCallerMessageResponseAck.d.ts +16 -0
  485. package/esm/models/caller/IRocosCallerMessageResponseResult.d.ts +15 -0
  486. package/esm/models/caller/IRocosCallerMessageResponseReturn.d.ts +8 -0
  487. package/esm/models/caller/IRocosCallerMessageResponseUid.d.ts +10 -0
  488. package/esm/models/caller/IRocosCallerMessageResponses.d.ts +4 -0
  489. package/esm/models/caller/RocosCallerResultStatus.d.ts +11 -0
  490. package/esm/models/caller/RocosResponseLevel.d.ts +6 -0
  491. package/esm/models/caller/index.d.ts +11 -0
  492. package/esm/models/caller/index.js +11 -0
  493. package/esm/models/callsigns/CallsignsEnums.d.ts +13 -0
  494. package/esm/models/callsigns/CallsignsLookup.d.ts +8 -0
  495. package/esm/models/callsigns/CallsignsQuery.d.ts +9 -0
  496. package/esm/models/callsigns/CallsignsQueryPredicate.d.ts +9 -0
  497. package/esm/models/command/IRocosCommandMessageHeartbeat.d.ts +1 -0
  498. package/esm/models/command/IRocosCommandMessageResponse.d.ts +55 -0
  499. package/esm/models/command/RocosCommandResultStatus.d.ts +11 -0
  500. package/esm/models/command/index.js +4 -0
  501. package/esm/models/device-credentials/DeviceCredentials.d.ts +61 -0
  502. package/esm/models/file/FileEnums.d.ts +30 -0
  503. package/esm/models/graph/Position.d.ts +6 -0
  504. package/esm/models/graph/Quaternion.d.ts +6 -0
  505. package/esm/models/graph/Vector3.d.ts +5 -0
  506. package/esm/models/graph/index.d.ts +3 -0
  507. package/esm/models/graph/index.js +3 -0
  508. package/esm/models/index.d.ts +81 -0
  509. package/esm/models/index.js +81 -0
  510. package/esm/models/integrations/Overlay.d.ts +49 -0
  511. package/esm/models/integrations/Plan.d.ts +324 -0
  512. package/esm/models/maps/Map.d.ts +11 -0
  513. package/esm/models/maps/Panorama.d.ts +20 -0
  514. package/esm/models/message/IRocosCallerMessage.d.ts +8 -0
  515. package/esm/models/message/IRocosChangeMessage.d.ts +6 -0
  516. package/esm/models/message/IRocosCommandMessage.d.ts +6 -0
  517. package/esm/models/message/IRocosControlMessage.d.ts +7 -0
  518. package/esm/models/message/IRocosOpResultMessage.d.ts +6 -0
  519. package/esm/models/message/IRocosSearchMessage.d.ts +5 -0
  520. package/esm/models/message/IRocosSearchRowMessage.d.ts +9 -0
  521. package/esm/models/message/IRocosSearchStatusMessage.d.ts +4 -0
  522. package/esm/models/message/IRocosTelemetryMessage.d.ts +23 -0
  523. package/esm/models/message/IStreamStatusMessage.d.ts +5 -0
  524. package/esm/models/message/RocosCallerMessage.d.ts +10 -0
  525. package/esm/models/message/RocosCommandMessage.d.ts +9 -0
  526. package/esm/models/message/RocosControlMessage.d.ts +11 -0
  527. package/esm/models/message/RocosOpResultMessage.d.ts +10 -0
  528. package/esm/models/message/RocosSearchMessage.d.ts +9 -0
  529. package/esm/models/message/RocosSearchRowMessage.d.ts +13 -0
  530. package/esm/models/message/RocosTelemetryMessage.d.ts +10 -0
  531. package/esm/models/message/index.js +17 -0
  532. package/esm/models/params/ICallerParams.d.ts +26 -0
  533. package/esm/models/params/ICommandParams.d.ts +9 -0
  534. package/esm/models/params/IControlParams.d.ts +8 -0
  535. package/esm/models/params/IFileAccessorParams.d.ts +11 -0
  536. package/esm/models/params/ISearchParams.d.ts +10 -0
  537. package/esm/models/params/ITelemetryParams.d.ts +18 -0
  538. package/esm/models/params/IWebRTCSignallingParams.d.ts +21 -0
  539. package/esm/models/projects/ProjectUser.d.ts +6 -0
  540. package/esm/models/schedule/IScheduleAction.d.ts +13 -0
  541. package/esm/models/schedule/IScheduleInfo.d.ts +11 -0
  542. package/esm/models/schedule/IScheduleJob.d.ts +12 -0
  543. package/esm/models/search/SearchQueryFilter.d.ts +5 -0
  544. package/esm/models/search/SearchStreamQuery.d.ts +15 -0
  545. package/esm/models/stream/IBaseStream.d.ts +8 -0
  546. package/esm/models/stream/ICallerStream.d.ts +8 -0
  547. package/esm/models/stream/ICommandStream.d.ts +7 -0
  548. package/esm/models/stream/IControlStream.d.ts +9 -0
  549. package/esm/models/stream/IFileAccessorStream.d.ts +9 -0
  550. package/esm/models/stream/ISearchStream.d.ts +11 -0
  551. package/esm/models/stream/ITelemetryStream.d.ts +10 -0
  552. package/esm/models/stream/IWebRTCSignallingStream.d.ts +76 -0
  553. package/esm/models/target/Target.d.ts +27 -0
  554. package/esm/models/types.d.ts +5 -0
  555. package/esm/models/workflow/Workflow.d.ts +94 -0
  556. package/esm/node/RocosSDKNode.d.ts +47 -0
  557. package/esm/node/RocosSDKNode.js +143 -0
  558. package/esm/node/index.js +7 -0
  559. package/esm/services/AssetStorageService.d.ts +137 -0
  560. package/esm/services/AssetStorageService.js +223 -0
  561. package/esm/services/AuthService.d.ts +104 -0
  562. package/esm/services/AuthService.js +253 -0
  563. package/esm/services/BaseServiceAbstract.d.ts +36 -0
  564. package/esm/services/BaseServiceAbstract.js +90 -0
  565. package/esm/services/BaseStreamService.d.ts +18 -0
  566. package/esm/services/BaseStreamService.js +49 -0
  567. package/esm/services/CallerService.d.ts +42 -0
  568. package/esm/services/CallerService.js +117 -0
  569. package/esm/services/CallerServiceNode.d.ts +6 -0
  570. package/esm/services/CommandService.d.ts +9 -0
  571. package/esm/services/CommandServiceNode.d.ts +6 -0
  572. package/esm/services/ConfigGroupService.d.ts +89 -0
  573. package/esm/services/ControlService.d.ts +11 -0
  574. package/esm/services/ControlServiceNode.d.ts +6 -0
  575. package/esm/services/DashboardService.d.ts +97 -0
  576. package/esm/services/DeviceCredentialsService.d.ts +15 -0
  577. package/esm/services/DeviceCredentialsService.js +46 -0
  578. package/esm/services/EvaluatorService.d.ts +11 -0
  579. package/esm/services/EvaluatorService.js +28 -0
  580. package/esm/services/EventService.d.ts +53 -0
  581. package/esm/services/FileAccessorService.d.ts +11 -0
  582. package/esm/services/FileAccessorServiceNode.d.ts +6 -0
  583. package/esm/services/IntegrationService.d.ts +48 -0
  584. package/esm/services/MapService.d.ts +142 -0
  585. package/esm/services/MapService.js +192 -0
  586. package/esm/services/PlatformTimeService.d.ts +35 -0
  587. package/esm/services/ProfileService.d.ts +268 -0
  588. package/esm/services/ProfileService.js +396 -0
  589. package/esm/services/ProjectService.d.ts +106 -0
  590. package/esm/services/ProjectService.js +163 -0
  591. package/esm/services/RTPWebRTCService.d.ts +102 -0
  592. package/esm/services/RTPWebRTCService.js +229 -0
  593. package/esm/services/RobotService.d.ts +278 -0
  594. package/esm/services/ScheduleService.d.ts +22 -0
  595. package/esm/services/SearchService.d.ts +12 -0
  596. package/esm/services/SearchServiceNode.d.ts +6 -0
  597. package/esm/services/SpotProvisioningService.d.ts +14 -0
  598. package/esm/services/SpotProvisioningServiceNode.d.ts +15 -0
  599. package/esm/services/StreamService.d.ts +98 -0
  600. package/esm/services/TargetService.d.ts +11 -0
  601. package/esm/services/TargetService.js +27 -0
  602. package/esm/services/TelemetryService.d.ts +50 -0
  603. package/esm/services/TelemetryService.js +176 -0
  604. package/esm/services/TelemetryServiceNode.d.ts +6 -0
  605. package/esm/services/TimeSyncerService.d.ts +13 -0
  606. package/esm/services/UserService.d.ts +200 -0
  607. package/esm/services/WebRTCSignallingService.d.ts +22 -0
  608. package/esm/services/WorkflowService.d.ts +62 -0
  609. package/esm/services/WorkflowService.js +103 -0
  610. package/esm/services/WorkflowServiceNode.d.ts +4 -0
  611. package/esm/services/WorkflowServiceNode.js +8 -0
  612. package/esm/services/index.d.ts +29 -0
  613. package/esm/services/index.js +29 -0
  614. package/esm/store/RocosStore.d.ts +30 -0
  615. package/package.json +19 -8
  616. package/IRocosSDK.d.ts +0 -32
  617. package/RocosSDK.d.ts +0 -143
  618. package/RocosSDK.js +0 -302
  619. package/api/streams/caller/CallerStream.js +0 -77
  620. package/api/streams/caller/CallerStreamNode.js +0 -115
  621. package/api/streams/command/CommandStream.js +0 -66
  622. package/api/streams/command/CommandStreamNode.js +0 -69
  623. package/api/streams/control/ControlStream.js +0 -75
  624. package/api/streams/control/ControlStreamAbstract.d.ts +0 -25
  625. package/api/streams/control/ControlStreamNode.js +0 -73
  626. package/api/streams/fileAccessor/FileAccessorStream.js +0 -59
  627. package/api/streams/fileAccessor/FileAccessorStreamNode.js +0 -66
  628. package/api/streams/search/SearchStream.js +0 -96
  629. package/api/streams/search/SearchStreamNode.js +0 -118
  630. package/api/streams/telemetry/TelemetryStream.js +0 -97
  631. package/api/streams/telemetry/TelemetryStreamAbstract.d.ts +0 -59
  632. package/api/streams/telemetry/TelemetryStreamNode.js +0 -175
  633. package/api/streams/webRTCSignalling/WebRTCSignallingStream.js +0 -84
  634. package/constants/api.d.ts +0 -127
  635. package/constants/api.js +0 -127
  636. package/helpers/cleanObject.spec.js +0 -53
  637. package/helpers/flattenObject.spec.js +0 -29
  638. package/helpers/flattenOneOf.spec.js +0 -157
  639. package/helpers/formatServiceUrl.spec.js +0 -16
  640. package/helpers/getURLSearchParams.spec.js +0 -19
  641. package/helpers/getUniqueConfigKey.d.ts +0 -7
  642. package/helpers/getUniqueConfigKey.js +0 -14
  643. package/helpers/nanosecondToMillisecond.spec.js +0 -20
  644. package/helpers/standardDeviation.spec.js +0 -11
  645. package/helpers/websandbox/connection.d.ts +0 -67
  646. package/helpers/websandbox/connection.js +0 -133
  647. package/helpers/websandbox/frame/frame.js +0 -22
  648. package/helpers/websandbox/frame/frame.source.js +0 -5
  649. package/helpers/websandbox/frame/worker/manager.d.ts +0 -11
  650. package/helpers/websandbox/frame/worker/manager.js +0 -62
  651. package/helpers/websandbox/frame/worker/manager.spec.d.ts +0 -4
  652. package/helpers/websandbox/frame/worker/manager.spec.js +0 -121
  653. package/helpers/websandbox/frame/worker/worker.source.js +0 -4
  654. package/helpers/websandbox/sandbox.d.ts +0 -54
  655. package/helpers/websandbox/sandbox.js +0 -146
  656. package/models/CallsignStatus.d.ts +0 -6
  657. package/models/CallsignStatus.js +0 -7
  658. package/models/IProject.d.ts +0 -4
  659. package/models/IRocosSDKConfig.d.ts +0 -19
  660. package/models/RocosError.d.ts +0 -31
  661. package/models/RocosError.js +0 -40
  662. package/models/ServiceEnum.d.ts +0 -27
  663. package/models/ServiceEnum.js +0 -28
  664. package/models/Token.d.ts +0 -40
  665. package/models/Token.js +0 -78
  666. package/models/Token.spec.js +0 -108
  667. package/models/asset-storage/AssetModelItem.d.ts +0 -29
  668. package/models/caller/IRocosCallerMessageChunk.d.ts +0 -10
  669. package/models/caller/index.d.ts +0 -10
  670. package/models/caller/index.js +0 -10
  671. package/models/index.d.ts +0 -75
  672. package/models/index.js +0 -75
  673. package/models/message/IRocosTelemetryMessage.d.ts +0 -23
  674. package/models/params/ICallerParams.d.ts +0 -16
  675. package/node/RocosSDKNode.d.ts +0 -47
  676. package/node/RocosSDKNode.js +0 -150
  677. package/services/AssetStorageService.d.ts +0 -106
  678. package/services/AssetStorageService.js +0 -169
  679. package/services/AuthService.d.ts +0 -93
  680. package/services/AuthService.js +0 -235
  681. package/services/AuthService.spec.js +0 -163
  682. package/services/BaseServiceAbstract.d.ts +0 -36
  683. package/services/BaseServiceAbstract.js +0 -97
  684. package/services/BaseStreamService.js +0 -47
  685. package/services/CallerService.d.ts +0 -10
  686. package/services/CallerService.js +0 -53
  687. package/services/EvaluatorService.js +0 -28
  688. package/services/FunctionService.d.ts +0 -68
  689. package/services/FunctionService.js +0 -99
  690. package/services/MapService.d.ts +0 -108
  691. package/services/MapService.js +0 -151
  692. package/services/PlatformTimeService.spec.js +0 -180
  693. package/services/ProfileService.d.ts +0 -244
  694. package/services/ProfileService.js +0 -362
  695. package/services/ProjectService.d.ts +0 -110
  696. package/services/ProjectService.js +0 -160
  697. package/services/TelemetryService.d.ts +0 -40
  698. package/services/TelemetryService.js +0 -142
  699. package/services/TelemetryService.spec.d.ts +0 -1
  700. package/services/TelemetryService.spec.js +0 -37
  701. package/services/WorkflowService.d.ts +0 -71
  702. package/services/WorkflowService.js +0 -118
  703. package/services/index.d.ts +0 -27
  704. package/services/index.js +0 -27
  705. package/store/RocosStore.d.ts +0 -31
  706. /package/{api → cjs/api}/StreamRegister.d.ts +0 -0
  707. /package/{api → cjs/api}/atoms/StreamHeartbeat.d.ts +0 -0
  708. /package/{api → cjs/api}/streams/caller/CallerStream.d.ts +0 -0
  709. /package/{api → cjs/api}/streams/caller/CallerStreamAbstract.d.ts +0 -0
  710. /package/{api → cjs/api}/streams/caller/CallerStreamNode.d.ts +0 -0
  711. /package/{api → cjs/api}/streams/command/CommandStream.d.ts +0 -0
  712. /package/{api → cjs/api}/streams/command/CommandStreamAbstract.d.ts +0 -0
  713. /package/{api → cjs/api}/streams/command/CommandStreamNode.d.ts +0 -0
  714. /package/{api → cjs/api}/streams/control/ControlStream.d.ts +0 -0
  715. /package/{api → cjs/api}/streams/control/ControlStreamNode.d.ts +0 -0
  716. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStream.d.ts +0 -0
  717. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamAbstract.d.ts +0 -0
  718. /package/{api → cjs/api}/streams/fileAccessor/FileAccessorStreamNode.d.ts +0 -0
  719. /package/{api → cjs/api}/streams/search/SearchStream.d.ts +0 -0
  720. /package/{api → cjs/api}/streams/search/SearchStreamAbstract.d.ts +0 -0
  721. /package/{api → cjs/api}/streams/search/SearchStreamNode.d.ts +0 -0
  722. /package/{api → cjs/api}/streams/telemetry/TelemetryStream.d.ts +0 -0
  723. /package/{api → cjs/api}/streams/telemetry/TelemetryStreamNode.d.ts +0 -0
  724. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStream.d.ts +0 -0
  725. /package/{api → cjs/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.d.ts +0 -0
  726. /package/{constants → cjs/constants}/auth.d.ts +0 -0
  727. /package/{constants → cjs/constants}/grpc.d.ts +0 -0
  728. /package/{constants → cjs/constants}/identifier.d.ts +0 -0
  729. /package/{constants → cjs/constants}/timezones.d.ts +0 -0
  730. /package/{grpc → cjs/grpc}/conker_pb.client.d.ts +0 -0
  731. /package/{grpc → cjs/grpc}/conker_pb.d.ts +0 -0
  732. /package/{grpc → cjs/grpc}/conker_pb.grpc-client.d.ts +0 -0
  733. /package/{grpc → cjs/grpc}/filagree_pb.client.d.ts +0 -0
  734. /package/{grpc → cjs/grpc}/filagree_pb.d.ts +0 -0
  735. /package/{grpc → cjs/grpc}/filagree_pb.grpc-client.d.ts +0 -0
  736. /package/{grpc → cjs/grpc}/google/protobuf/descriptor_pb.d.ts +0 -0
  737. /package/{grpc → cjs/grpc}/google/protobuf/empty_pb.d.ts +0 -0
  738. /package/{grpc → cjs/grpc}/pigeon_pb.client.d.ts +0 -0
  739. /package/{grpc → cjs/grpc}/pigeon_pb.d.ts +0 -0
  740. /package/{grpc → cjs/grpc}/pigeon_pb.grpc-client.d.ts +0 -0
  741. /package/{grpc → cjs/grpc}/rambo.uri.v1_pb.d.ts +0 -0
  742. /package/{grpc → cjs/grpc}/rambo.v1_pb.client.d.ts +0 -0
  743. /package/{grpc → cjs/grpc}/rambo.v1_pb.d.ts +0 -0
  744. /package/{grpc → cjs/grpc}/rambo.v1_pb.grpc-client.d.ts +0 -0
  745. /package/{grpc → cjs/grpc}/serviette.uri.v1_pb.d.ts +0 -0
  746. /package/{grpc → cjs/grpc}/serviette.v1_pb.client.d.ts +0 -0
  747. /package/{grpc → cjs/grpc}/serviette.v1_pb.d.ts +0 -0
  748. /package/{grpc → cjs/grpc}/serviette.v1_pb.grpc-client.d.ts +0 -0
  749. /package/{grpc → cjs/grpc}/slowlane_pb.client.d.ts +0 -0
  750. /package/{grpc → cjs/grpc}/slowlane_pb.d.ts +0 -0
  751. /package/{grpc → cjs/grpc}/slowlane_pb.grpc-client.d.ts +0 -0
  752. /package/{grpc → cjs/grpc}/teletubby_pb.client.d.ts +0 -0
  753. /package/{grpc → cjs/grpc}/teletubby_pb.d.ts +0 -0
  754. /package/{grpc → cjs/grpc}/teletubby_pb.grpc-client.d.ts +0 -0
  755. /package/{helpers → cjs/helpers}/arrayRemove.d.ts +0 -0
  756. /package/{helpers → cjs/helpers}/arrayUnique.d.ts +0 -0
  757. /package/{helpers → cjs/helpers}/average.d.ts +0 -0
  758. /package/{helpers → cjs/helpers}/cleanObject.d.ts +0 -0
  759. /package/{helpers → cjs/helpers}/enviroment.d.ts +0 -0
  760. /package/{helpers → cjs/helpers}/flattenCallsignsLookup.d.ts +0 -0
  761. /package/{helpers → cjs/helpers}/flattenObject.d.ts +0 -0
  762. /package/{helpers → cjs/helpers}/flattenOneOf.d.ts +0 -0
  763. /package/{helpers → cjs/helpers}/formatServiceUrl.d.ts +0 -0
  764. /package/{helpers → cjs/helpers}/generateUUID.d.ts +0 -0
  765. /package/{helpers → cjs/helpers}/getSubscriptionsDifference.d.ts +0 -0
  766. /package/{helpers → cjs/helpers}/getURLSearchParams.d.ts +0 -0
  767. /package/{helpers → cjs/helpers}/getUniqueId.d.ts +0 -0
  768. /package/{helpers → cjs/helpers}/getUnixTimeMs.d.ts +0 -0
  769. /package/{helpers → cjs/helpers}/index.d.ts +0 -0
  770. /package/{helpers → cjs/helpers}/nanosecondToMillisecond.d.ts +0 -0
  771. /package/{helpers → cjs/helpers}/randomString.d.ts +0 -0
  772. /package/{helpers → cjs/helpers}/standardDeviation.d.ts +0 -0
  773. /package/{helpers → cjs/helpers}/stringToUint8Array.d.ts +0 -0
  774. /package/{helpers → cjs/helpers}/uint8ArrayToString.d.ts +0 -0
  775. /package/{helpers → cjs/helpers}/websandbox/frame/frame.d.ts +0 -0
  776. /package/{helpers → cjs/helpers}/websandbox/frame/frame.source.d.ts +0 -0
  777. /package/{helpers → cjs/helpers}/websandbox/frame/index.d.ts +0 -0
  778. /package/{helpers → cjs/helpers}/websandbox/frame/worker/index.d.ts +0 -0
  779. /package/{helpers → cjs/helpers}/websandbox/frame/worker/types.d.ts +0 -0
  780. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.d.ts +0 -0
  781. /package/{helpers → cjs/helpers}/websandbox/frame/worker/worker.source.d.ts +0 -0
  782. /package/{helpers → cjs/helpers}/websandbox/index.d.ts +0 -0
  783. /package/{helpers → cjs/helpers}/websandbox/types.d.ts +0 -0
  784. /package/{index.d.ts → cjs/index.d.ts} +0 -0
  785. /package/{logger → cjs/logger}/RocosLogger.d.ts +0 -0
  786. /package/{models → cjs/models}/ExportDataQuery.d.ts +0 -0
  787. /package/{models → cjs/models}/ExternalProject.d.ts +0 -0
  788. /package/{models → cjs/models}/IBaseService.d.ts +0 -0
  789. /package/{models → cjs/models}/IConfigGroup.d.ts +0 -0
  790. /package/{models → cjs/models}/IDebugLevel.d.ts +0 -0
  791. /package/{models → cjs/models}/IExportDataQuery.d.ts +0 -0
  792. /package/{models → cjs/models}/IFunctionConfig.d.ts +0 -0
  793. /package/{models → cjs/models}/IInvitation.d.ts +0 -0
  794. /package/{models → cjs/models}/IInvitationExists.d.ts +0 -0
  795. /package/{models → cjs/models}/IOperation.d.ts +0 -0
  796. /package/{models → cjs/models}/IPersonalAccessToken.d.ts +0 -0
  797. /package/{models → cjs/models}/IProjectApplication.d.ts +0 -0
  798. /package/{models → cjs/models}/IRobot.d.ts +0 -0
  799. /package/{models → cjs/models}/IRobotConfig.d.ts +0 -0
  800. /package/{models → cjs/models}/IRobotPlugin.d.ts +0 -0
  801. /package/{models → cjs/models}/IRobotSettings.d.ts +0 -0
  802. /package/{models → cjs/models}/IRobotTemplate.d.ts +0 -0
  803. /package/{models → cjs/models}/ISource.d.ts +0 -0
  804. /package/{models → cjs/models}/IStream.d.ts +0 -0
  805. /package/{models → cjs/models}/IStreamConfig.d.ts +0 -0
  806. /package/{models → cjs/models}/IStreamOptions.d.ts +0 -0
  807. /package/{models → cjs/models}/IStreamSource.d.ts +0 -0
  808. /package/{models → cjs/models}/ISubscriberStatus.d.ts +0 -0
  809. /package/{models → cjs/models}/ITelemetryStreamConfig.d.ts +0 -0
  810. /package/{models → cjs/models}/IToken.d.ts +0 -0
  811. /package/{models → cjs/models}/IWidget.d.ts +0 -0
  812. /package/{models → cjs/models}/IWidgetLineGroup.d.ts +0 -0
  813. /package/{models → cjs/models}/ResponseLevelEnum.d.ts +0 -0
  814. /package/{models → cjs/models}/Robot.d.ts +0 -0
  815. /package/{models → cjs/models}/RobotConfig.d.ts +0 -0
  816. /package/{models → cjs/models}/RobotPlugin.d.ts +0 -0
  817. /package/{models → cjs/models}/RobotTemplate.d.ts +0 -0
  818. /package/{models → cjs/models}/Stream.d.ts +0 -0
  819. /package/{models → cjs/models}/StreamOptions.d.ts +0 -0
  820. /package/{models → cjs/models}/StreamSource.d.ts +0 -0
  821. /package/{models → cjs/models}/SubscriberStatusEnum.d.ts +0 -0
  822. /package/{models → cjs/models}/Widget.d.ts +0 -0
  823. /package/{models → cjs/models}/WidgetLineGroup.d.ts +0 -0
  824. /package/{models → cjs/models}/caller/IRocosCallerMessageChunks.d.ts +0 -0
  825. /package/{models → cjs/models}/caller/IRocosCallerMessageHeartbeat.d.ts +0 -0
  826. /package/{models → cjs/models}/caller/IRocosCallerMessageResponse.d.ts +0 -0
  827. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseAck.d.ts +0 -0
  828. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseResult.d.ts +0 -0
  829. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseReturn.d.ts +0 -0
  830. /package/{models → cjs/models}/caller/IRocosCallerMessageResponseUid.d.ts +0 -0
  831. /package/{models → cjs/models}/caller/IRocosCallerMessageResponses.d.ts +0 -0
  832. /package/{models → cjs/models}/caller/RocosCallerResultStatus.d.ts +0 -0
  833. /package/{models → cjs/models}/caller/RocosResponseLevel.d.ts +0 -0
  834. /package/{models → cjs/models}/callsigns/CallsignsEnums.d.ts +0 -0
  835. /package/{models → cjs/models}/callsigns/CallsignsLookup.d.ts +0 -0
  836. /package/{models → cjs/models}/callsigns/CallsignsQuery.d.ts +0 -0
  837. /package/{models → cjs/models}/callsigns/CallsignsQueryPredicate.d.ts +0 -0
  838. /package/{models → cjs/models}/command/IRocosCommandMessageHeartbeat.d.ts +0 -0
  839. /package/{models → cjs/models}/command/IRocosCommandMessageResponse.d.ts +0 -0
  840. /package/{models → cjs/models}/command/RocosCommandResultStatus.d.ts +0 -0
  841. /package/{models → cjs/models}/command/index.d.ts +0 -0
  842. /package/{models → cjs/models}/file/FileEnums.d.ts +0 -0
  843. /package/{models → cjs/models}/integrations/Overlay.d.ts +0 -0
  844. /package/{models → cjs/models}/integrations/Plan.d.ts +0 -0
  845. /package/{models → cjs/models}/maps/Map.d.ts +0 -0
  846. /package/{models → cjs/models}/message/IRocosCallerMessage.d.ts +0 -0
  847. /package/{models → cjs/models}/message/IRocosChangeMessage.d.ts +0 -0
  848. /package/{models → cjs/models}/message/IRocosCommandMessage.d.ts +0 -0
  849. /package/{models → cjs/models}/message/IRocosControlMessage.d.ts +0 -0
  850. /package/{models → cjs/models}/message/IRocosOpResultMessage.d.ts +0 -0
  851. /package/{models → cjs/models}/message/IRocosSearchMessage.d.ts +0 -0
  852. /package/{models → cjs/models}/message/IRocosSearchRowMessage.d.ts +0 -0
  853. /package/{models → cjs/models}/message/IRocosSearchStatusMessage.d.ts +0 -0
  854. /package/{models → cjs/models}/message/IStreamStatusMessage.d.ts +0 -0
  855. /package/{models → cjs/models}/message/RocosCallerMessage.d.ts +0 -0
  856. /package/{models → cjs/models}/message/RocosCommandMessage.d.ts +0 -0
  857. /package/{models → cjs/models}/message/RocosControlMessage.d.ts +0 -0
  858. /package/{models → cjs/models}/message/RocosOpResultMessage.d.ts +0 -0
  859. /package/{models → cjs/models}/message/RocosSearchMessage.d.ts +0 -0
  860. /package/{models → cjs/models}/message/RocosSearchRowMessage.d.ts +0 -0
  861. /package/{models → cjs/models}/message/RocosTelemetryMessage.d.ts +0 -0
  862. /package/{models → cjs/models}/message/index.d.ts +0 -0
  863. /package/{models → cjs/models}/params/ICommandParams.d.ts +0 -0
  864. /package/{models → cjs/models}/params/IControlParams.d.ts +0 -0
  865. /package/{models → cjs/models}/params/IFileAccessorParams.d.ts +0 -0
  866. /package/{models → cjs/models}/params/ISearchParams.d.ts +0 -0
  867. /package/{models → cjs/models}/params/ITelemetryParams.d.ts +0 -0
  868. /package/{models → cjs/models}/params/IWebRTCSignallingParams.d.ts +0 -0
  869. /package/{models → cjs/models}/projects/ProjectUser.d.ts +0 -0
  870. /package/{models → cjs/models}/schedule/IScheduleAction.d.ts +0 -0
  871. /package/{models → cjs/models}/schedule/IScheduleInfo.d.ts +0 -0
  872. /package/{models → cjs/models}/schedule/IScheduleJob.d.ts +0 -0
  873. /package/{models → cjs/models}/search/SearchQueryFilter.d.ts +0 -0
  874. /package/{models → cjs/models}/search/SearchStreamQuery.d.ts +0 -0
  875. /package/{models → cjs/models}/stream/IBaseStream.d.ts +0 -0
  876. /package/{models → cjs/models}/stream/ICallerStream.d.ts +0 -0
  877. /package/{models → cjs/models}/stream/ICommandStream.d.ts +0 -0
  878. /package/{models → cjs/models}/stream/IControlStream.d.ts +0 -0
  879. /package/{models → cjs/models}/stream/IFileAccessorStream.d.ts +0 -0
  880. /package/{models → cjs/models}/stream/ISearchStream.d.ts +0 -0
  881. /package/{models → cjs/models}/stream/ITelemetryStream.d.ts +0 -0
  882. /package/{models → cjs/models}/stream/IWebRTCSignallingStream.d.ts +0 -0
  883. /package/{models → cjs/models}/types.d.ts +0 -0
  884. /package/{node → cjs/node}/index.d.ts +0 -0
  885. /package/{services → cjs/services}/BaseStreamService.d.ts +0 -0
  886. /package/{services → cjs/services}/CallerServiceNode.d.ts +0 -0
  887. /package/{services → cjs/services}/CommandService.d.ts +0 -0
  888. /package/{services → cjs/services}/CommandServiceNode.d.ts +0 -0
  889. /package/{services → cjs/services}/ConfigGroupService.d.ts +0 -0
  890. /package/{services → cjs/services}/ControlService.d.ts +0 -0
  891. /package/{services → cjs/services}/ControlServiceNode.d.ts +0 -0
  892. /package/{services → cjs/services}/DashboardService.d.ts +0 -0
  893. /package/{services → cjs/services}/EvaluatorService.d.ts +0 -0
  894. /package/{services → cjs/services}/EventService.d.ts +0 -0
  895. /package/{services → cjs/services}/FileAccessorService.d.ts +0 -0
  896. /package/{services → cjs/services}/FileAccessorServiceNode.d.ts +0 -0
  897. /package/{services → cjs/services}/IntegrationService.d.ts +0 -0
  898. /package/{services → cjs/services}/PlatformTimeService.d.ts +0 -0
  899. /package/{services → cjs/services}/RobotService.d.ts +0 -0
  900. /package/{services → cjs/services}/ScheduleService.d.ts +0 -0
  901. /package/{services → cjs/services}/SearchService.d.ts +0 -0
  902. /package/{services → cjs/services}/SearchServiceNode.d.ts +0 -0
  903. /package/{services → cjs/services}/SpotProvisioningService.d.ts +0 -0
  904. /package/{services → cjs/services}/SpotProvisioningServiceNode.d.ts +0 -0
  905. /package/{services → cjs/services}/StreamService.d.ts +0 -0
  906. /package/{services → cjs/services}/TelemetryServiceNode.d.ts +0 -0
  907. /package/{services → cjs/services}/TimeSyncerService.d.ts +0 -0
  908. /package/{services → cjs/services}/UserService.d.ts +0 -0
  909. /package/{services → cjs/services}/WebRTCSignallingService.d.ts +0 -0
  910. /package/{IRocosSDK.js → esm/IRocosSDK.js} +0 -0
  911. /package/{api → esm/api}/StreamRegister.js +0 -0
  912. /package/{api → esm/api}/atoms/StreamHeartbeat.js +0 -0
  913. /package/{api → esm/api}/streams/caller/CallerStreamAbstract.js +0 -0
  914. /package/{api → esm/api}/streams/command/CommandStreamAbstract.js +0 -0
  915. /package/{api → esm/api}/streams/control/ControlStreamAbstract.js +0 -0
  916. /package/{api → esm/api}/streams/fileAccessor/FileAccessorStreamAbstract.js +0 -0
  917. /package/{api → esm/api}/streams/search/SearchStreamAbstract.js +0 -0
  918. /package/{api → esm/api}/streams/telemetry/TelemetryStreamAbstract.js +0 -0
  919. /package/{api → esm/api}/streams/webRTCSignalling/WebRTCSignallingStreamAbstract.js +0 -0
  920. /package/{constants → esm/constants}/auth.js +0 -0
  921. /package/{constants → esm/constants}/grpc.js +0 -0
  922. /package/{constants → esm/constants}/identifier.js +0 -0
  923. /package/{constants → esm/constants}/timezones.js +0 -0
  924. /package/{grpc → esm/grpc}/conker_pb.client.js +0 -0
  925. /package/{grpc → esm/grpc}/conker_pb.grpc-client.js +0 -0
  926. /package/{grpc → esm/grpc}/conker_pb.js +0 -0
  927. /package/{grpc → esm/grpc}/filagree_pb.client.js +0 -0
  928. /package/{grpc → esm/grpc}/filagree_pb.grpc-client.js +0 -0
  929. /package/{grpc → esm/grpc}/filagree_pb.js +0 -0
  930. /package/{grpc → esm/grpc}/google/protobuf/descriptor_pb.js +0 -0
  931. /package/{grpc → esm/grpc}/google/protobuf/empty_pb.js +0 -0
  932. /package/{grpc → esm/grpc}/pigeon_pb.client.js +0 -0
  933. /package/{grpc → esm/grpc}/pigeon_pb.grpc-client.js +0 -0
  934. /package/{grpc → esm/grpc}/pigeon_pb.js +0 -0
  935. /package/{grpc → esm/grpc}/rambo.uri.v1_pb.js +0 -0
  936. /package/{grpc → esm/grpc}/rambo.v1_pb.client.js +0 -0
  937. /package/{grpc → esm/grpc}/rambo.v1_pb.grpc-client.js +0 -0
  938. /package/{grpc → esm/grpc}/rambo.v1_pb.js +0 -0
  939. /package/{grpc → esm/grpc}/serviette.uri.v1_pb.js +0 -0
  940. /package/{grpc → esm/grpc}/serviette.v1_pb.client.js +0 -0
  941. /package/{grpc → esm/grpc}/serviette.v1_pb.grpc-client.js +0 -0
  942. /package/{grpc → esm/grpc}/serviette.v1_pb.js +0 -0
  943. /package/{grpc → esm/grpc}/slowlane_pb.client.js +0 -0
  944. /package/{grpc → esm/grpc}/slowlane_pb.grpc-client.js +0 -0
  945. /package/{grpc → esm/grpc}/slowlane_pb.js +0 -0
  946. /package/{grpc → esm/grpc}/teletubby_pb.client.js +0 -0
  947. /package/{grpc → esm/grpc}/teletubby_pb.grpc-client.js +0 -0
  948. /package/{grpc → esm/grpc}/teletubby_pb.js +0 -0
  949. /package/{helpers → esm/helpers}/arrayRemove.js +0 -0
  950. /package/{helpers → esm/helpers}/arrayUnique.js +0 -0
  951. /package/{helpers → esm/helpers}/average.js +0 -0
  952. /package/{helpers → esm/helpers}/cleanObject.js +0 -0
  953. /package/{helpers → esm/helpers}/enviroment.js +0 -0
  954. /package/{helpers → esm/helpers}/flattenCallsignsLookup.js +0 -0
  955. /package/{helpers → esm/helpers}/flattenObject.js +0 -0
  956. /package/{helpers → esm/helpers}/flattenOneOf.js +0 -0
  957. /package/{helpers → esm/helpers}/formatServiceUrl.js +0 -0
  958. /package/{helpers → esm/helpers}/generateUUID.js +0 -0
  959. /package/{helpers → esm/helpers}/getSubscriptionsDifference.js +0 -0
  960. /package/{helpers → esm/helpers}/getURLSearchParams.js +0 -0
  961. /package/{helpers → esm/helpers}/getUniqueId.js +0 -0
  962. /package/{helpers → esm/helpers}/getUnixTimeMs.js +0 -0
  963. /package/{helpers/index.js → esm/helpers/index.d.ts} +0 -0
  964. /package/{helpers → esm/helpers}/nanosecondToMillisecond.js +0 -0
  965. /package/{helpers → esm/helpers}/randomString.js +0 -0
  966. /package/{helpers → esm/helpers}/standardDeviation.js +0 -0
  967. /package/{helpers → esm/helpers}/stringToUint8Array.js +0 -0
  968. /package/{helpers → esm/helpers}/uint8ArrayToString.js +0 -0
  969. /package/{helpers/websandbox/frame/index.js → esm/helpers/websandbox/frame/index.d.ts} +0 -0
  970. /package/{helpers/websandbox/frame/worker/index.js → esm/helpers/websandbox/frame/worker/index.d.ts} +0 -0
  971. /package/{helpers → esm/helpers}/websandbox/frame/worker/types.js +0 -0
  972. /package/{helpers/cleanObject.spec.d.ts → esm/helpers/websandbox/frame/worker/worker.d.ts} +0 -0
  973. /package/{helpers → esm/helpers}/websandbox/frame/worker/worker.js +0 -0
  974. /package/{helpers/websandbox/index.js → esm/helpers/websandbox/index.d.ts} +0 -0
  975. /package/{helpers → esm/helpers}/websandbox/types.js +0 -0
  976. /package/{index.js → esm/index.d.ts} +0 -0
  977. /package/{logger → esm/logger}/RocosLogger.js +0 -0
  978. /package/{models → esm/models}/ExportDataQuery.js +0 -0
  979. /package/{models → esm/models}/ExternalProject.js +0 -0
  980. /package/{models → esm/models}/IBaseService.js +0 -0
  981. /package/{models → esm/models}/IConfigGroup.js +0 -0
  982. /package/{models → esm/models}/IDebugLevel.js +0 -0
  983. /package/{models → esm/models}/IExportDataQuery.js +0 -0
  984. /package/{models → esm/models}/IFunctionConfig.js +0 -0
  985. /package/{models → esm/models}/IInvitation.js +0 -0
  986. /package/{models → esm/models}/IInvitationExists.js +0 -0
  987. /package/{models → esm/models}/IOperation.js +0 -0
  988. /package/{models → esm/models}/IPersonalAccessToken.js +0 -0
  989. /package/{models → esm/models}/IProject.js +0 -0
  990. /package/{models → esm/models}/IProjectApplication.js +0 -0
  991. /package/{helpers/flattenObject.spec.d.ts → esm/models/IProjectInfo.js} +0 -0
  992. /package/{models → esm/models}/IRobot.js +0 -0
  993. /package/{models → esm/models}/IRobotConfig.js +0 -0
  994. /package/{models → esm/models}/IRobotPlugin.js +0 -0
  995. /package/{models → esm/models}/IRobotSettings.js +0 -0
  996. /package/{models → esm/models}/IRobotTemplate.js +0 -0
  997. /package/{models → esm/models}/IRocosSDKConfig.js +0 -0
  998. /package/{models → esm/models}/ISource.js +0 -0
  999. /package/{models → esm/models}/IStream.js +0 -0
  1000. /package/{models → esm/models}/IStreamConfig.js +0 -0
  1001. /package/{models → esm/models}/IStreamOptions.js +0 -0
  1002. /package/{models → esm/models}/IStreamSource.js +0 -0
  1003. /package/{models → esm/models}/ISubscriberStatus.js +0 -0
  1004. /package/{models → esm/models}/ITelemetryStreamConfig.js +0 -0
  1005. /package/{models → esm/models}/IToken.js +0 -0
  1006. /package/{models → esm/models}/IWidget.js +0 -0
  1007. /package/{models → esm/models}/IWidgetLineGroup.js +0 -0
  1008. /package/{models → esm/models}/ResponseLevelEnum.js +0 -0
  1009. /package/{models → esm/models}/Robot.js +0 -0
  1010. /package/{models → esm/models}/RobotConfig.js +0 -0
  1011. /package/{models → esm/models}/RobotPlugin.js +0 -0
  1012. /package/{models → esm/models}/RobotTemplate.js +0 -0
  1013. /package/{models → esm/models}/Stream.js +0 -0
  1014. /package/{models → esm/models}/StreamOptions.js +0 -0
  1015. /package/{models → esm/models}/StreamSource.js +0 -0
  1016. /package/{models → esm/models}/SubscriberStatusEnum.js +0 -0
  1017. /package/{models → esm/models}/Widget.js +0 -0
  1018. /package/{models → esm/models}/WidgetLineGroup.js +0 -0
  1019. /package/{helpers/flattenOneOf.spec.d.ts → esm/models/asset-storage/AssetItem.js} +0 -0
  1020. /package/{helpers/formatServiceUrl.spec.d.ts → esm/models/asset-storage/SyncIntegrations.js} +0 -0
  1021. /package/{models → esm/models}/caller/IRocosCallerMessageChunk.js +0 -0
  1022. /package/{models → esm/models}/caller/IRocosCallerMessageChunks.js +0 -0
  1023. /package/{models → esm/models}/caller/IRocosCallerMessageHeartbeat.js +0 -0
  1024. /package/{models → esm/models}/caller/IRocosCallerMessageResponse.js +0 -0
  1025. /package/{models → esm/models}/caller/IRocosCallerMessageResponseAck.js +0 -0
  1026. /package/{models → esm/models}/caller/IRocosCallerMessageResponseResult.js +0 -0
  1027. /package/{models → esm/models}/caller/IRocosCallerMessageResponseReturn.js +0 -0
  1028. /package/{models → esm/models}/caller/IRocosCallerMessageResponseUid.js +0 -0
  1029. /package/{models → esm/models}/caller/IRocosCallerMessageResponses.js +0 -0
  1030. /package/{models → esm/models}/caller/RocosCallerResultStatus.js +0 -0
  1031. /package/{models → esm/models}/caller/RocosResponseLevel.js +0 -0
  1032. /package/{models → esm/models}/callsigns/CallsignsEnums.js +0 -0
  1033. /package/{models → esm/models}/callsigns/CallsignsLookup.js +0 -0
  1034. /package/{models → esm/models}/callsigns/CallsignsQuery.js +0 -0
  1035. /package/{models → esm/models}/callsigns/CallsignsQueryPredicate.js +0 -0
  1036. /package/{models → esm/models}/command/IRocosCommandMessageHeartbeat.js +0 -0
  1037. /package/{models → esm/models}/command/IRocosCommandMessageResponse.js +0 -0
  1038. /package/{models → esm/models}/command/RocosCommandResultStatus.js +0 -0
  1039. /package/{models/command/index.js → esm/models/command/index.d.ts} +0 -0
  1040. /package/{helpers/getURLSearchParams.spec.d.ts → esm/models/device-credentials/DeviceCredentials.js} +0 -0
  1041. /package/{models → esm/models}/file/FileEnums.js +0 -0
  1042. /package/{helpers/nanosecondToMillisecond.spec.d.ts → esm/models/graph/Position.js} +0 -0
  1043. /package/{helpers/standardDeviation.spec.d.ts → esm/models/graph/Quaternion.js} +0 -0
  1044. /package/{models/Token.spec.d.ts → esm/models/graph/Vector3.js} +0 -0
  1045. /package/{models → esm/models}/integrations/Overlay.js +0 -0
  1046. /package/{models → esm/models}/integrations/Plan.js +0 -0
  1047. /package/{models → esm/models}/maps/Map.js +0 -0
  1048. /package/{models/asset-storage/AssetModelItem.js → esm/models/maps/Panorama.js} +0 -0
  1049. /package/{models → esm/models}/message/IRocosCallerMessage.js +0 -0
  1050. /package/{models → esm/models}/message/IRocosChangeMessage.js +0 -0
  1051. /package/{models → esm/models}/message/IRocosCommandMessage.js +0 -0
  1052. /package/{models → esm/models}/message/IRocosControlMessage.js +0 -0
  1053. /package/{models → esm/models}/message/IRocosOpResultMessage.js +0 -0
  1054. /package/{models → esm/models}/message/IRocosSearchMessage.js +0 -0
  1055. /package/{models → esm/models}/message/IRocosSearchRowMessage.js +0 -0
  1056. /package/{models → esm/models}/message/IRocosSearchStatusMessage.js +0 -0
  1057. /package/{models → esm/models}/message/IRocosTelemetryMessage.js +0 -0
  1058. /package/{models → esm/models}/message/IStreamStatusMessage.js +0 -0
  1059. /package/{models → esm/models}/message/RocosCallerMessage.js +0 -0
  1060. /package/{models → esm/models}/message/RocosCommandMessage.js +0 -0
  1061. /package/{models → esm/models}/message/RocosControlMessage.js +0 -0
  1062. /package/{models → esm/models}/message/RocosOpResultMessage.js +0 -0
  1063. /package/{models → esm/models}/message/RocosSearchMessage.js +0 -0
  1064. /package/{models → esm/models}/message/RocosSearchRowMessage.js +0 -0
  1065. /package/{models → esm/models}/message/RocosTelemetryMessage.js +0 -0
  1066. /package/{models/message/index.js → esm/models/message/index.d.ts} +0 -0
  1067. /package/{models → esm/models}/params/ICallerParams.js +0 -0
  1068. /package/{models → esm/models}/params/ICommandParams.js +0 -0
  1069. /package/{models → esm/models}/params/IControlParams.js +0 -0
  1070. /package/{models → esm/models}/params/IFileAccessorParams.js +0 -0
  1071. /package/{models → esm/models}/params/ISearchParams.js +0 -0
  1072. /package/{models → esm/models}/params/ITelemetryParams.js +0 -0
  1073. /package/{models → esm/models}/params/IWebRTCSignallingParams.js +0 -0
  1074. /package/{models → esm/models}/projects/ProjectUser.js +0 -0
  1075. /package/{models → esm/models}/schedule/IScheduleAction.js +0 -0
  1076. /package/{models → esm/models}/schedule/IScheduleInfo.js +0 -0
  1077. /package/{models → esm/models}/schedule/IScheduleJob.js +0 -0
  1078. /package/{models → esm/models}/search/SearchQueryFilter.js +0 -0
  1079. /package/{models → esm/models}/search/SearchStreamQuery.js +0 -0
  1080. /package/{models → esm/models}/stream/IBaseStream.js +0 -0
  1081. /package/{models → esm/models}/stream/ICallerStream.js +0 -0
  1082. /package/{models → esm/models}/stream/ICommandStream.js +0 -0
  1083. /package/{models → esm/models}/stream/IControlStream.js +0 -0
  1084. /package/{models → esm/models}/stream/IFileAccessorStream.js +0 -0
  1085. /package/{models → esm/models}/stream/ISearchStream.js +0 -0
  1086. /package/{models → esm/models}/stream/ITelemetryStream.js +0 -0
  1087. /package/{models → esm/models}/stream/IWebRTCSignallingStream.js +0 -0
  1088. /package/{models/types.js → esm/models/target/Target.js} +0 -0
  1089. /package/{services/AuthService.spec.d.ts → esm/models/types.js} +0 -0
  1090. /package/{services/PlatformTimeService.spec.d.ts → esm/models/workflow/Workflow.js} +0 -0
  1091. /package/{node/index.js → esm/node/index.d.ts} +0 -0
  1092. /package/{services → esm/services}/CallerServiceNode.js +0 -0
  1093. /package/{services → esm/services}/CommandService.js +0 -0
  1094. /package/{services → esm/services}/CommandServiceNode.js +0 -0
  1095. /package/{services → esm/services}/ConfigGroupService.js +0 -0
  1096. /package/{services → esm/services}/ControlService.js +0 -0
  1097. /package/{services → esm/services}/ControlServiceNode.js +0 -0
  1098. /package/{services → esm/services}/DashboardService.js +0 -0
  1099. /package/{services → esm/services}/EventService.js +0 -0
  1100. /package/{services → esm/services}/FileAccessorService.js +0 -0
  1101. /package/{services → esm/services}/FileAccessorServiceNode.js +0 -0
  1102. /package/{services → esm/services}/IntegrationService.js +0 -0
  1103. /package/{services → esm/services}/PlatformTimeService.js +0 -0
  1104. /package/{services → esm/services}/RobotService.js +0 -0
  1105. /package/{services → esm/services}/ScheduleService.js +0 -0
  1106. /package/{services → esm/services}/SearchService.js +0 -0
  1107. /package/{services → esm/services}/SearchServiceNode.js +0 -0
  1108. /package/{services → esm/services}/SpotProvisioningService.js +0 -0
  1109. /package/{services → esm/services}/SpotProvisioningServiceNode.js +0 -0
  1110. /package/{services → esm/services}/StreamService.js +0 -0
  1111. /package/{services → esm/services}/TelemetryServiceNode.js +0 -0
  1112. /package/{services → esm/services}/TimeSyncerService.js +0 -0
  1113. /package/{services → esm/services}/UserService.js +0 -0
  1114. /package/{services → esm/services}/WebRTCSignallingService.js +0 -0
  1115. /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 {};