bhole-client 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/dist/gen/proto/agency/v1/agency_pb.d.ts +1423 -0
- package/dist/gen/proto/agency/v1/agency_pb.js +153 -0
- package/dist/gen/proto/agency/v1/agency_pb.js.map +1 -0
- package/dist/gen/proto/astronaut/v1/astronaut_pb.d.ts +479 -0
- package/dist/gen/proto/astronaut/v1/astronaut_pb.js +93 -0
- package/dist/gen/proto/astronaut/v1/astronaut_pb.js.map +1 -0
- package/dist/gen/proto/celestial_body/v1/celestial_body_pb.d.ts +423 -0
- package/dist/gen/proto/celestial_body/v1/celestial_body_pb.js +73 -0
- package/dist/gen/proto/celestial_body/v1/celestial_body_pb.js.map +1 -0
- package/dist/gen/proto/docking_event/v1/docking_event_pb.d.ts +2495 -0
- package/dist/gen/proto/docking_event/v1/docking_event_pb.js +323 -0
- package/dist/gen/proto/docking_event/v1/docking_event_pb.js.map +1 -0
- package/dist/gen/proto/event/v1/event_pb.d.ts +1041 -0
- package/dist/gen/proto/event/v1/event_pb.js +168 -0
- package/dist/gen/proto/event/v1/event_pb.js.map +1 -0
- package/dist/gen/proto/expedition/v1/expedition_pb.d.ts +817 -0
- package/dist/gen/proto/expedition/v1/expedition_pb.js +138 -0
- package/dist/gen/proto/expedition/v1/expedition_pb.js.map +1 -0
- package/dist/gen/proto/landing/v1/landing_pb.d.ts +3163 -0
- package/dist/gen/proto/landing/v1/landing_pb.js +383 -0
- package/dist/gen/proto/landing/v1/landing_pb.js.map +1 -0
- package/dist/gen/proto/launch/v1/launch_pb.d.ts +3679 -0
- package/dist/gen/proto/launch/v1/launch_pb.js +423 -0
- package/dist/gen/proto/launch/v1/launch_pb.js.map +1 -0
- package/dist/gen/proto/launcher/v1/launcher_pb.d.ts +371 -0
- package/dist/gen/proto/launcher/v1/launcher_pb.js +73 -0
- package/dist/gen/proto/launcher/v1/launcher_pb.js.map +1 -0
- package/dist/gen/proto/launcher_configuration/v1/launcher_configuration_pb.d.ts +995 -0
- package/dist/gen/proto/launcher_configuration/v1/launcher_configuration_pb.js +123 -0
- package/dist/gen/proto/launcher_configuration/v1/launcher_configuration_pb.js.map +1 -0
- package/dist/gen/proto/location/v1/location_pb.d.ts +557 -0
- package/dist/gen/proto/location/v1/location_pb.js +88 -0
- package/dist/gen/proto/location/v1/location_pb.js.map +1 -0
- package/dist/gen/proto/pad/v1/pad_pb.d.ts +601 -0
- package/dist/gen/proto/pad/v1/pad_pb.js +88 -0
- package/dist/gen/proto/pad/v1/pad_pb.js.map +1 -0
- package/dist/gen/proto/payload/v1/payload_pb.d.ts +697 -0
- package/dist/gen/proto/payload/v1/payload_pb.js +108 -0
- package/dist/gen/proto/payload/v1/payload_pb.js.map +1 -0
- package/dist/gen/proto/program/v1/program_pb.d.ts +385 -0
- package/dist/gen/proto/program/v1/program_pb.js +78 -0
- package/dist/gen/proto/program/v1/program_pb.js.map +1 -0
- package/dist/gen/proto/space_station/v1/space_station_pb.d.ts +2849 -0
- package/dist/gen/proto/space_station/v1/space_station_pb.js +348 -0
- package/dist/gen/proto/space_station/v1/space_station_pb.js.map +1 -0
- package/dist/gen/proto/spacecraft/v1/spacecraft_pb.d.ts +2261 -0
- package/dist/gen/proto/spacecraft/v1/spacecraft_pb.js +268 -0
- package/dist/gen/proto/spacecraft/v1/spacecraft_pb.js.map +1 -0
- package/dist/gen/proto/spacewalk/v1/spacewalk_pb.d.ts +3059 -0
- package/dist/gen/proto/spacewalk/v1/spacewalk_pb.js +373 -0
- package/dist/gen/proto/spacewalk/v1/spacewalk_pb.js.map +1 -0
- package/dist/gen/proto/update/v1/update_pb.d.ts +145 -0
- package/dist/gen/proto/update/v1/update_pb.js +38 -0
- package/dist/gen/proto/update/v1/update_pb.js.map +1 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -0
- package/package.json +31 -0
|
@@ -0,0 +1,2495 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file proto/docking_event/v1/docking_event.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_proto_docking_event_v1_docking_event: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message docking_event.v1.AgencyDetailed
|
|
9
|
+
*/
|
|
10
|
+
export type AgencyDetailed = Message<"docking_event.v1.AgencyDetailed"> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: string abbrev = 1;
|
|
13
|
+
*/
|
|
14
|
+
abbrev: string;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: optional string administrator = 2;
|
|
17
|
+
*/
|
|
18
|
+
administrator?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: optional int32 attempted_landings = 3;
|
|
21
|
+
*/
|
|
22
|
+
attemptedLandings?: number | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: optional int32 attempted_landings_payload = 4;
|
|
25
|
+
*/
|
|
26
|
+
attemptedLandingsPayload?: number | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: optional int32 attempted_landings_spacecraft = 5;
|
|
29
|
+
*/
|
|
30
|
+
attemptedLandingsSpacecraft?: number | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: optional int32 consecutive_successful_landings = 6;
|
|
33
|
+
*/
|
|
34
|
+
consecutiveSuccessfulLandings?: number | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: optional int32 consecutive_successful_launches = 7;
|
|
37
|
+
*/
|
|
38
|
+
consecutiveSuccessfulLaunches?: number | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: repeated docking_event.v1.Country country = 8;
|
|
41
|
+
*/
|
|
42
|
+
country: Country[];
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: optional string description = 9;
|
|
45
|
+
*/
|
|
46
|
+
description?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: optional int32 failed_landings = 10;
|
|
49
|
+
*/
|
|
50
|
+
failedLandings?: number | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: optional int32 failed_landings_payload = 11;
|
|
53
|
+
*/
|
|
54
|
+
failedLandingsPayload?: number | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: optional int32 failed_landings_spacecraft = 12;
|
|
57
|
+
*/
|
|
58
|
+
failedLandingsSpacecraft?: number | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: optional int32 failed_launches = 13;
|
|
61
|
+
*/
|
|
62
|
+
failedLaunches?: number | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: bool featured = 14;
|
|
65
|
+
*/
|
|
66
|
+
featured: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: optional int32 founding_year = 15;
|
|
69
|
+
*/
|
|
70
|
+
foundingYear?: number | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: int32 id = 16;
|
|
73
|
+
*/
|
|
74
|
+
id: number;
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: docking_event.v1.Image image = 17;
|
|
77
|
+
*/
|
|
78
|
+
image?: Image | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: optional string info_url = 18;
|
|
81
|
+
*/
|
|
82
|
+
infoUrl?: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: string launchers = 19;
|
|
85
|
+
*/
|
|
86
|
+
launchers: string;
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: docking_event.v1.Image logo = 20;
|
|
89
|
+
*/
|
|
90
|
+
logo?: Image | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: string name = 21;
|
|
93
|
+
*/
|
|
94
|
+
name: string;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: optional string parent = 22;
|
|
97
|
+
*/
|
|
98
|
+
parent?: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: optional int32 pending_launches = 23;
|
|
101
|
+
*/
|
|
102
|
+
pendingLaunches?: number | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: string response_mode = 24;
|
|
105
|
+
*/
|
|
106
|
+
responseMode: string;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: docking_event.v1.Image social_logo = 25;
|
|
109
|
+
*/
|
|
110
|
+
socialLogo?: Image | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: repeated docking_event.v1.SocialMediaLink social_media_links = 26;
|
|
113
|
+
*/
|
|
114
|
+
socialMediaLinks: SocialMediaLink[];
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: string spacecraft = 27;
|
|
117
|
+
*/
|
|
118
|
+
spacecraft: string;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: optional int32 successful_landings = 28;
|
|
121
|
+
*/
|
|
122
|
+
successfulLandings?: number | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* @generated from field: optional int32 successful_landings_payload = 29;
|
|
125
|
+
*/
|
|
126
|
+
successfulLandingsPayload?: number | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* @generated from field: optional int32 successful_landings_spacecraft = 30;
|
|
129
|
+
*/
|
|
130
|
+
successfulLandingsSpacecraft?: number | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* @generated from field: optional int32 successful_launches = 31;
|
|
133
|
+
*/
|
|
134
|
+
successfulLaunches?: number | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* @generated from field: optional int32 total_launch_count = 32;
|
|
137
|
+
*/
|
|
138
|
+
totalLaunchCount?: number | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* @generated from field: docking_event.v1.AgencyType type = 33;
|
|
141
|
+
*/
|
|
142
|
+
type?: AgencyType | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* @generated from field: string url = 34;
|
|
145
|
+
*/
|
|
146
|
+
url: string;
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: optional string wiki_url = 35;
|
|
149
|
+
*/
|
|
150
|
+
wikiUrl?: string | undefined;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Describes the message docking_event.v1.AgencyDetailed.
|
|
154
|
+
* Use `create(AgencyDetailedSchema)` to create a new message.
|
|
155
|
+
*/
|
|
156
|
+
export declare const AgencyDetailedSchema: GenMessage<AgencyDetailed>;
|
|
157
|
+
/**
|
|
158
|
+
* @generated from message docking_event.v1.AgencyMini
|
|
159
|
+
*/
|
|
160
|
+
export type AgencyMini = Message<"docking_event.v1.AgencyMini"> & {
|
|
161
|
+
/**
|
|
162
|
+
* @generated from field: string abbrev = 1;
|
|
163
|
+
*/
|
|
164
|
+
abbrev: string;
|
|
165
|
+
/**
|
|
166
|
+
* @generated from field: int32 id = 2;
|
|
167
|
+
*/
|
|
168
|
+
id: number;
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: string name = 3;
|
|
171
|
+
*/
|
|
172
|
+
name: string;
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: string response_mode = 4;
|
|
175
|
+
*/
|
|
176
|
+
responseMode: string;
|
|
177
|
+
/**
|
|
178
|
+
* @generated from field: docking_event.v1.AgencyType type = 5;
|
|
179
|
+
*/
|
|
180
|
+
type?: AgencyType | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: string url = 6;
|
|
183
|
+
*/
|
|
184
|
+
url: string;
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* Describes the message docking_event.v1.AgencyMini.
|
|
188
|
+
* Use `create(AgencyMiniSchema)` to create a new message.
|
|
189
|
+
*/
|
|
190
|
+
export declare const AgencyMiniSchema: GenMessage<AgencyMini>;
|
|
191
|
+
/**
|
|
192
|
+
* @generated from message docking_event.v1.AgencyNormal
|
|
193
|
+
*/
|
|
194
|
+
export type AgencyNormal = Message<"docking_event.v1.AgencyNormal"> & {
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: string abbrev = 1;
|
|
197
|
+
*/
|
|
198
|
+
abbrev: string;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: optional string administrator = 2;
|
|
201
|
+
*/
|
|
202
|
+
administrator?: string | undefined;
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: repeated docking_event.v1.Country country = 3;
|
|
205
|
+
*/
|
|
206
|
+
country: Country[];
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: optional string description = 4;
|
|
209
|
+
*/
|
|
210
|
+
description?: string | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* @generated from field: bool featured = 5;
|
|
213
|
+
*/
|
|
214
|
+
featured: boolean;
|
|
215
|
+
/**
|
|
216
|
+
* @generated from field: optional int32 founding_year = 6;
|
|
217
|
+
*/
|
|
218
|
+
foundingYear?: number | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: int32 id = 7;
|
|
221
|
+
*/
|
|
222
|
+
id: number;
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: docking_event.v1.Image image = 8;
|
|
225
|
+
*/
|
|
226
|
+
image?: Image | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* @generated from field: string launchers = 9;
|
|
229
|
+
*/
|
|
230
|
+
launchers: string;
|
|
231
|
+
/**
|
|
232
|
+
* @generated from field: docking_event.v1.Image logo = 10;
|
|
233
|
+
*/
|
|
234
|
+
logo?: Image | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* @generated from field: string name = 11;
|
|
237
|
+
*/
|
|
238
|
+
name: string;
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: optional string parent = 12;
|
|
241
|
+
*/
|
|
242
|
+
parent?: string | undefined;
|
|
243
|
+
/**
|
|
244
|
+
* @generated from field: string response_mode = 13;
|
|
245
|
+
*/
|
|
246
|
+
responseMode: string;
|
|
247
|
+
/**
|
|
248
|
+
* @generated from field: docking_event.v1.Image social_logo = 14;
|
|
249
|
+
*/
|
|
250
|
+
socialLogo?: Image | undefined;
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: string spacecraft = 15;
|
|
253
|
+
*/
|
|
254
|
+
spacecraft: string;
|
|
255
|
+
/**
|
|
256
|
+
* @generated from field: docking_event.v1.AgencyType type = 16;
|
|
257
|
+
*/
|
|
258
|
+
type?: AgencyType | undefined;
|
|
259
|
+
/**
|
|
260
|
+
* @generated from field: string url = 17;
|
|
261
|
+
*/
|
|
262
|
+
url: string;
|
|
263
|
+
};
|
|
264
|
+
/**
|
|
265
|
+
* Describes the message docking_event.v1.AgencyNormal.
|
|
266
|
+
* Use `create(AgencyNormalSchema)` to create a new message.
|
|
267
|
+
*/
|
|
268
|
+
export declare const AgencyNormalSchema: GenMessage<AgencyNormal>;
|
|
269
|
+
/**
|
|
270
|
+
* @generated from message docking_event.v1.AgencyType
|
|
271
|
+
*/
|
|
272
|
+
export type AgencyType = Message<"docking_event.v1.AgencyType"> & {
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: int32 id = 1;
|
|
275
|
+
*/
|
|
276
|
+
id: number;
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: string name = 2;
|
|
279
|
+
*/
|
|
280
|
+
name: string;
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* Describes the message docking_event.v1.AgencyType.
|
|
284
|
+
* Use `create(AgencyTypeSchema)` to create a new message.
|
|
285
|
+
*/
|
|
286
|
+
export declare const AgencyTypeSchema: GenMessage<AgencyType>;
|
|
287
|
+
/**
|
|
288
|
+
* @generated from message docking_event.v1.CelestialBodyDetailed
|
|
289
|
+
*/
|
|
290
|
+
export type CelestialBodyDetailed = Message<"docking_event.v1.CelestialBodyDetailed"> & {
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: bool atmosphere = 1;
|
|
293
|
+
*/
|
|
294
|
+
atmosphere: boolean;
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: optional string description = 2;
|
|
297
|
+
*/
|
|
298
|
+
description?: string | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* @generated from field: optional float diameter = 3;
|
|
301
|
+
*/
|
|
302
|
+
diameter?: number | undefined;
|
|
303
|
+
/**
|
|
304
|
+
* @generated from field: int32 failed_landings = 4;
|
|
305
|
+
*/
|
|
306
|
+
failedLandings: number;
|
|
307
|
+
/**
|
|
308
|
+
* @generated from field: int32 failed_launches = 5;
|
|
309
|
+
*/
|
|
310
|
+
failedLaunches: number;
|
|
311
|
+
/**
|
|
312
|
+
* @generated from field: optional float gravity = 6;
|
|
313
|
+
*/
|
|
314
|
+
gravity?: number | undefined;
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: int32 id = 7;
|
|
317
|
+
*/
|
|
318
|
+
id: number;
|
|
319
|
+
/**
|
|
320
|
+
* @generated from field: docking_event.v1.Image image = 8;
|
|
321
|
+
*/
|
|
322
|
+
image?: Image | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* @generated from field: optional string length_of_day = 9;
|
|
325
|
+
*/
|
|
326
|
+
lengthOfDay?: string | undefined;
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: optional float mass = 10;
|
|
329
|
+
*/
|
|
330
|
+
mass?: number | undefined;
|
|
331
|
+
/**
|
|
332
|
+
* @generated from field: string name = 11;
|
|
333
|
+
*/
|
|
334
|
+
name: string;
|
|
335
|
+
/**
|
|
336
|
+
* @generated from field: string response_mode = 12;
|
|
337
|
+
*/
|
|
338
|
+
responseMode: string;
|
|
339
|
+
/**
|
|
340
|
+
* @generated from field: int32 successful_landings = 13;
|
|
341
|
+
*/
|
|
342
|
+
successfulLandings: number;
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: int32 successful_launches = 14;
|
|
345
|
+
*/
|
|
346
|
+
successfulLaunches: number;
|
|
347
|
+
/**
|
|
348
|
+
* @generated from field: int32 total_attempted_landings = 15;
|
|
349
|
+
*/
|
|
350
|
+
totalAttemptedLandings: number;
|
|
351
|
+
/**
|
|
352
|
+
* @generated from field: int32 total_attempted_launches = 16;
|
|
353
|
+
*/
|
|
354
|
+
totalAttemptedLaunches: number;
|
|
355
|
+
/**
|
|
356
|
+
* @generated from field: docking_event.v1.CelestialBodyType type = 17;
|
|
357
|
+
*/
|
|
358
|
+
type?: CelestialBodyType | undefined;
|
|
359
|
+
/**
|
|
360
|
+
* @generated from field: optional string wiki_url = 18;
|
|
361
|
+
*/
|
|
362
|
+
wikiUrl?: string | undefined;
|
|
363
|
+
};
|
|
364
|
+
/**
|
|
365
|
+
* Describes the message docking_event.v1.CelestialBodyDetailed.
|
|
366
|
+
* Use `create(CelestialBodyDetailedSchema)` to create a new message.
|
|
367
|
+
*/
|
|
368
|
+
export declare const CelestialBodyDetailedSchema: GenMessage<CelestialBodyDetailed>;
|
|
369
|
+
/**
|
|
370
|
+
* @generated from message docking_event.v1.CelestialBodyMini
|
|
371
|
+
*/
|
|
372
|
+
export type CelestialBodyMini = Message<"docking_event.v1.CelestialBodyMini"> & {
|
|
373
|
+
/**
|
|
374
|
+
* @generated from field: int32 id = 1;
|
|
375
|
+
*/
|
|
376
|
+
id: number;
|
|
377
|
+
/**
|
|
378
|
+
* @generated from field: string name = 2;
|
|
379
|
+
*/
|
|
380
|
+
name: string;
|
|
381
|
+
/**
|
|
382
|
+
* @generated from field: string response_mode = 3;
|
|
383
|
+
*/
|
|
384
|
+
responseMode: string;
|
|
385
|
+
};
|
|
386
|
+
/**
|
|
387
|
+
* Describes the message docking_event.v1.CelestialBodyMini.
|
|
388
|
+
* Use `create(CelestialBodyMiniSchema)` to create a new message.
|
|
389
|
+
*/
|
|
390
|
+
export declare const CelestialBodyMiniSchema: GenMessage<CelestialBodyMini>;
|
|
391
|
+
/**
|
|
392
|
+
* @generated from message docking_event.v1.CelestialBodyNormal
|
|
393
|
+
*/
|
|
394
|
+
export type CelestialBodyNormal = Message<"docking_event.v1.CelestialBodyNormal"> & {
|
|
395
|
+
/**
|
|
396
|
+
* @generated from field: bool atmosphere = 1;
|
|
397
|
+
*/
|
|
398
|
+
atmosphere: boolean;
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: optional string description = 2;
|
|
401
|
+
*/
|
|
402
|
+
description?: string | undefined;
|
|
403
|
+
/**
|
|
404
|
+
* @generated from field: optional float diameter = 3;
|
|
405
|
+
*/
|
|
406
|
+
diameter?: number | undefined;
|
|
407
|
+
/**
|
|
408
|
+
* @generated from field: optional float gravity = 4;
|
|
409
|
+
*/
|
|
410
|
+
gravity?: number | undefined;
|
|
411
|
+
/**
|
|
412
|
+
* @generated from field: int32 id = 5;
|
|
413
|
+
*/
|
|
414
|
+
id: number;
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: docking_event.v1.Image image = 6;
|
|
417
|
+
*/
|
|
418
|
+
image?: Image | undefined;
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: optional string length_of_day = 7;
|
|
421
|
+
*/
|
|
422
|
+
lengthOfDay?: string | undefined;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from field: optional float mass = 8;
|
|
425
|
+
*/
|
|
426
|
+
mass?: number | undefined;
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: string name = 9;
|
|
429
|
+
*/
|
|
430
|
+
name: string;
|
|
431
|
+
/**
|
|
432
|
+
* @generated from field: string response_mode = 10;
|
|
433
|
+
*/
|
|
434
|
+
responseMode: string;
|
|
435
|
+
/**
|
|
436
|
+
* @generated from field: docking_event.v1.CelestialBodyType type = 11;
|
|
437
|
+
*/
|
|
438
|
+
type?: CelestialBodyType | undefined;
|
|
439
|
+
/**
|
|
440
|
+
* @generated from field: optional string wiki_url = 12;
|
|
441
|
+
*/
|
|
442
|
+
wikiUrl?: string | undefined;
|
|
443
|
+
};
|
|
444
|
+
/**
|
|
445
|
+
* Describes the message docking_event.v1.CelestialBodyNormal.
|
|
446
|
+
* Use `create(CelestialBodyNormalSchema)` to create a new message.
|
|
447
|
+
*/
|
|
448
|
+
export declare const CelestialBodyNormalSchema: GenMessage<CelestialBodyNormal>;
|
|
449
|
+
/**
|
|
450
|
+
* @generated from message docking_event.v1.CelestialBodyType
|
|
451
|
+
*/
|
|
452
|
+
export type CelestialBodyType = Message<"docking_event.v1.CelestialBodyType"> & {
|
|
453
|
+
/**
|
|
454
|
+
* @generated from field: int32 id = 1;
|
|
455
|
+
*/
|
|
456
|
+
id: number;
|
|
457
|
+
/**
|
|
458
|
+
* @generated from field: string name = 2;
|
|
459
|
+
*/
|
|
460
|
+
name: string;
|
|
461
|
+
};
|
|
462
|
+
/**
|
|
463
|
+
* Describes the message docking_event.v1.CelestialBodyType.
|
|
464
|
+
* Use `create(CelestialBodyTypeSchema)` to create a new message.
|
|
465
|
+
*/
|
|
466
|
+
export declare const CelestialBodyTypeSchema: GenMessage<CelestialBodyType>;
|
|
467
|
+
/**
|
|
468
|
+
* @generated from message docking_event.v1.Country
|
|
469
|
+
*/
|
|
470
|
+
export type Country = Message<"docking_event.v1.Country"> & {
|
|
471
|
+
/**
|
|
472
|
+
* @generated from field: string alpha_2_code = 1;
|
|
473
|
+
*/
|
|
474
|
+
alpha2Code: string;
|
|
475
|
+
/**
|
|
476
|
+
* @generated from field: string alpha_3_code = 2;
|
|
477
|
+
*/
|
|
478
|
+
alpha3Code: string;
|
|
479
|
+
/**
|
|
480
|
+
* @generated from field: int32 id = 3;
|
|
481
|
+
*/
|
|
482
|
+
id: number;
|
|
483
|
+
/**
|
|
484
|
+
* @generated from field: string name = 4;
|
|
485
|
+
*/
|
|
486
|
+
name: string;
|
|
487
|
+
/**
|
|
488
|
+
* @generated from field: string nationality_name = 5;
|
|
489
|
+
*/
|
|
490
|
+
nationalityName: string;
|
|
491
|
+
/**
|
|
492
|
+
* @generated from field: string nationality_name_composed = 6;
|
|
493
|
+
*/
|
|
494
|
+
nationalityNameComposed: string;
|
|
495
|
+
};
|
|
496
|
+
/**
|
|
497
|
+
* Describes the message docking_event.v1.Country.
|
|
498
|
+
* Use `create(CountrySchema)` to create a new message.
|
|
499
|
+
*/
|
|
500
|
+
export declare const CountrySchema: GenMessage<Country>;
|
|
501
|
+
/**
|
|
502
|
+
* @generated from message docking_event.v1.DockingEvent
|
|
503
|
+
*/
|
|
504
|
+
export type DockingEvent = Message<"docking_event.v1.DockingEvent"> & {
|
|
505
|
+
/**
|
|
506
|
+
* @generated from field: optional string departure = 1;
|
|
507
|
+
*/
|
|
508
|
+
departure?: string | undefined;
|
|
509
|
+
/**
|
|
510
|
+
* @generated from field: string docking = 2;
|
|
511
|
+
*/
|
|
512
|
+
docking: string;
|
|
513
|
+
/**
|
|
514
|
+
* @generated from field: docking_event.v1.DockingLocation docking_location = 3;
|
|
515
|
+
*/
|
|
516
|
+
dockingLocation?: DockingLocation | undefined;
|
|
517
|
+
/**
|
|
518
|
+
* @generated from field: docking_event.v1.SpacecraftFlightNormal flight_vehicle_chaser = 4;
|
|
519
|
+
*/
|
|
520
|
+
flightVehicleChaser?: SpacecraftFlightNormal | undefined;
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: docking_event.v1.SpacecraftFlightMini flight_vehicle_target = 5;
|
|
523
|
+
*/
|
|
524
|
+
flightVehicleTarget?: SpacecraftFlightMini | undefined;
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: int32 id = 6;
|
|
527
|
+
*/
|
|
528
|
+
id: number;
|
|
529
|
+
/**
|
|
530
|
+
* @generated from field: docking_event.v1.PayloadFlightNormal payload_flight_chaser = 7;
|
|
531
|
+
*/
|
|
532
|
+
payloadFlightChaser?: PayloadFlightNormal | undefined;
|
|
533
|
+
/**
|
|
534
|
+
* @generated from field: docking_event.v1.PayloadFlightMini payload_flight_target = 8;
|
|
535
|
+
*/
|
|
536
|
+
payloadFlightTarget?: PayloadFlightMini | undefined;
|
|
537
|
+
/**
|
|
538
|
+
* @generated from field: string response_mode = 9;
|
|
539
|
+
*/
|
|
540
|
+
responseMode: string;
|
|
541
|
+
/**
|
|
542
|
+
* @generated from field: docking_event.v1.SpaceStationNormal space_station_chaser = 10;
|
|
543
|
+
*/
|
|
544
|
+
spaceStationChaser?: SpaceStationNormal | undefined;
|
|
545
|
+
/**
|
|
546
|
+
* @generated from field: docking_event.v1.SpaceStationMini space_station_target = 11;
|
|
547
|
+
*/
|
|
548
|
+
spaceStationTarget?: SpaceStationMini | undefined;
|
|
549
|
+
/**
|
|
550
|
+
* @generated from field: string url = 12;
|
|
551
|
+
*/
|
|
552
|
+
url: string;
|
|
553
|
+
};
|
|
554
|
+
/**
|
|
555
|
+
* Describes the message docking_event.v1.DockingEvent.
|
|
556
|
+
* Use `create(DockingEventSchema)` to create a new message.
|
|
557
|
+
*/
|
|
558
|
+
export declare const DockingEventSchema: GenMessage<DockingEvent>;
|
|
559
|
+
/**
|
|
560
|
+
* @generated from message docking_event.v1.DockingLocation
|
|
561
|
+
*/
|
|
562
|
+
export type DockingLocation = Message<"docking_event.v1.DockingLocation"> & {
|
|
563
|
+
/**
|
|
564
|
+
* @generated from field: int32 id = 1;
|
|
565
|
+
*/
|
|
566
|
+
id: number;
|
|
567
|
+
/**
|
|
568
|
+
* @generated from field: string name = 2;
|
|
569
|
+
*/
|
|
570
|
+
name: string;
|
|
571
|
+
/**
|
|
572
|
+
* @generated from field: docking_event.v1.PayloadMini payload = 3;
|
|
573
|
+
*/
|
|
574
|
+
payload?: PayloadMini | undefined;
|
|
575
|
+
/**
|
|
576
|
+
* @generated from field: docking_event.v1.SpacecraftConfigNormal spacecraft = 4;
|
|
577
|
+
*/
|
|
578
|
+
spacecraft?: SpacecraftConfigNormal | undefined;
|
|
579
|
+
/**
|
|
580
|
+
* @generated from field: docking_event.v1.SpaceStationMini spacestation = 5;
|
|
581
|
+
*/
|
|
582
|
+
spacestation?: SpaceStationMini | undefined;
|
|
583
|
+
};
|
|
584
|
+
/**
|
|
585
|
+
* Describes the message docking_event.v1.DockingLocation.
|
|
586
|
+
* Use `create(DockingLocationSchema)` to create a new message.
|
|
587
|
+
*/
|
|
588
|
+
export declare const DockingLocationSchema: GenMessage<DockingLocation>;
|
|
589
|
+
/**
|
|
590
|
+
* @generated from message docking_event.v1.Image
|
|
591
|
+
*/
|
|
592
|
+
export type Image = Message<"docking_event.v1.Image"> & {
|
|
593
|
+
/**
|
|
594
|
+
* @generated from field: optional string credit = 1;
|
|
595
|
+
*/
|
|
596
|
+
credit?: string | undefined;
|
|
597
|
+
/**
|
|
598
|
+
* @generated from field: int32 id = 2;
|
|
599
|
+
*/
|
|
600
|
+
id: number;
|
|
601
|
+
/**
|
|
602
|
+
* @generated from field: string image_url = 3;
|
|
603
|
+
*/
|
|
604
|
+
imageUrl: string;
|
|
605
|
+
/**
|
|
606
|
+
* @generated from field: docking_event.v1.ImageLicense license = 4;
|
|
607
|
+
*/
|
|
608
|
+
license?: ImageLicense | undefined;
|
|
609
|
+
/**
|
|
610
|
+
* @generated from field: string name = 5;
|
|
611
|
+
*/
|
|
612
|
+
name: string;
|
|
613
|
+
/**
|
|
614
|
+
* @generated from field: bool single_use = 6;
|
|
615
|
+
*/
|
|
616
|
+
singleUse: boolean;
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: string thumbnail_url = 7;
|
|
619
|
+
*/
|
|
620
|
+
thumbnailUrl: string;
|
|
621
|
+
/**
|
|
622
|
+
* @generated from field: repeated docking_event.v1.ImageVariant variants = 8;
|
|
623
|
+
*/
|
|
624
|
+
variants: ImageVariant[];
|
|
625
|
+
};
|
|
626
|
+
/**
|
|
627
|
+
* Describes the message docking_event.v1.Image.
|
|
628
|
+
* Use `create(ImageSchema)` to create a new message.
|
|
629
|
+
*/
|
|
630
|
+
export declare const ImageSchema: GenMessage<Image>;
|
|
631
|
+
/**
|
|
632
|
+
* @generated from message docking_event.v1.ImageLicense
|
|
633
|
+
*/
|
|
634
|
+
export type ImageLicense = Message<"docking_event.v1.ImageLicense"> & {
|
|
635
|
+
/**
|
|
636
|
+
* @generated from field: int32 id = 1;
|
|
637
|
+
*/
|
|
638
|
+
id: number;
|
|
639
|
+
/**
|
|
640
|
+
* @generated from field: optional string link = 2;
|
|
641
|
+
*/
|
|
642
|
+
link?: string | undefined;
|
|
643
|
+
/**
|
|
644
|
+
* @generated from field: string name = 3;
|
|
645
|
+
*/
|
|
646
|
+
name: string;
|
|
647
|
+
/**
|
|
648
|
+
* @generated from field: int32 priority = 4;
|
|
649
|
+
*/
|
|
650
|
+
priority: number;
|
|
651
|
+
};
|
|
652
|
+
/**
|
|
653
|
+
* Describes the message docking_event.v1.ImageLicense.
|
|
654
|
+
* Use `create(ImageLicenseSchema)` to create a new message.
|
|
655
|
+
*/
|
|
656
|
+
export declare const ImageLicenseSchema: GenMessage<ImageLicense>;
|
|
657
|
+
/**
|
|
658
|
+
* @generated from message docking_event.v1.ImageVariant
|
|
659
|
+
*/
|
|
660
|
+
export type ImageVariant = Message<"docking_event.v1.ImageVariant"> & {
|
|
661
|
+
/**
|
|
662
|
+
* @generated from field: int32 id = 1;
|
|
663
|
+
*/
|
|
664
|
+
id: number;
|
|
665
|
+
/**
|
|
666
|
+
* @generated from field: string image_url = 2;
|
|
667
|
+
*/
|
|
668
|
+
imageUrl: string;
|
|
669
|
+
/**
|
|
670
|
+
* @generated from field: docking_event.v1.ImageVariantType type = 3;
|
|
671
|
+
*/
|
|
672
|
+
type?: ImageVariantType | undefined;
|
|
673
|
+
};
|
|
674
|
+
/**
|
|
675
|
+
* Describes the message docking_event.v1.ImageVariant.
|
|
676
|
+
* Use `create(ImageVariantSchema)` to create a new message.
|
|
677
|
+
*/
|
|
678
|
+
export declare const ImageVariantSchema: GenMessage<ImageVariant>;
|
|
679
|
+
/**
|
|
680
|
+
* @generated from message docking_event.v1.ImageVariantType
|
|
681
|
+
*/
|
|
682
|
+
export type ImageVariantType = Message<"docking_event.v1.ImageVariantType"> & {
|
|
683
|
+
/**
|
|
684
|
+
* @generated from field: int32 id = 1;
|
|
685
|
+
*/
|
|
686
|
+
id: number;
|
|
687
|
+
/**
|
|
688
|
+
* @generated from field: string name = 2;
|
|
689
|
+
*/
|
|
690
|
+
name: string;
|
|
691
|
+
};
|
|
692
|
+
/**
|
|
693
|
+
* Describes the message docking_event.v1.ImageVariantType.
|
|
694
|
+
* Use `create(ImageVariantTypeSchema)` to create a new message.
|
|
695
|
+
*/
|
|
696
|
+
export declare const ImageVariantTypeSchema: GenMessage<ImageVariantType>;
|
|
697
|
+
/**
|
|
698
|
+
* @generated from message docking_event.v1.InfoURL
|
|
699
|
+
*/
|
|
700
|
+
export type InfoURL = Message<"docking_event.v1.InfoURL"> & {
|
|
701
|
+
/**
|
|
702
|
+
* @generated from field: optional string description = 1;
|
|
703
|
+
*/
|
|
704
|
+
description?: string | undefined;
|
|
705
|
+
/**
|
|
706
|
+
* @generated from field: optional string feature_image = 2;
|
|
707
|
+
*/
|
|
708
|
+
featureImage?: string | undefined;
|
|
709
|
+
/**
|
|
710
|
+
* @generated from field: docking_event.v1.Language language = 3;
|
|
711
|
+
*/
|
|
712
|
+
language?: Language | undefined;
|
|
713
|
+
/**
|
|
714
|
+
* @generated from field: int32 priority = 4;
|
|
715
|
+
*/
|
|
716
|
+
priority: number;
|
|
717
|
+
/**
|
|
718
|
+
* @generated from field: optional string source = 5;
|
|
719
|
+
*/
|
|
720
|
+
source?: string | undefined;
|
|
721
|
+
/**
|
|
722
|
+
* @generated from field: optional string title = 6;
|
|
723
|
+
*/
|
|
724
|
+
title?: string | undefined;
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: docking_event.v1.InfoURLType type = 7;
|
|
727
|
+
*/
|
|
728
|
+
type?: InfoURLType | undefined;
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: string url = 8;
|
|
731
|
+
*/
|
|
732
|
+
url: string;
|
|
733
|
+
};
|
|
734
|
+
/**
|
|
735
|
+
* Describes the message docking_event.v1.InfoURL.
|
|
736
|
+
* Use `create(InfoURLSchema)` to create a new message.
|
|
737
|
+
*/
|
|
738
|
+
export declare const InfoURLSchema: GenMessage<InfoURL>;
|
|
739
|
+
/**
|
|
740
|
+
* @generated from message docking_event.v1.InfoURLType
|
|
741
|
+
*/
|
|
742
|
+
export type InfoURLType = Message<"docking_event.v1.InfoURLType"> & {
|
|
743
|
+
/**
|
|
744
|
+
* @generated from field: int32 id = 1;
|
|
745
|
+
*/
|
|
746
|
+
id: number;
|
|
747
|
+
/**
|
|
748
|
+
* @generated from field: string name = 2;
|
|
749
|
+
*/
|
|
750
|
+
name: string;
|
|
751
|
+
};
|
|
752
|
+
/**
|
|
753
|
+
* Describes the message docking_event.v1.InfoURLType.
|
|
754
|
+
* Use `create(InfoURLTypeSchema)` to create a new message.
|
|
755
|
+
*/
|
|
756
|
+
export declare const InfoURLTypeSchema: GenMessage<InfoURLType>;
|
|
757
|
+
/**
|
|
758
|
+
* @generated from message docking_event.v1.Landing
|
|
759
|
+
*/
|
|
760
|
+
export type Landing = Message<"docking_event.v1.Landing"> & {
|
|
761
|
+
/**
|
|
762
|
+
* @generated from field: bool attempt = 1;
|
|
763
|
+
*/
|
|
764
|
+
attempt: boolean;
|
|
765
|
+
/**
|
|
766
|
+
* @generated from field: string description = 2;
|
|
767
|
+
*/
|
|
768
|
+
description: string;
|
|
769
|
+
/**
|
|
770
|
+
* @generated from field: optional float downrange_distance = 3;
|
|
771
|
+
*/
|
|
772
|
+
downrangeDistance?: number | undefined;
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: int32 id = 4;
|
|
775
|
+
*/
|
|
776
|
+
id: number;
|
|
777
|
+
/**
|
|
778
|
+
* @generated from field: docking_event.v1.LandingLocation landing_location = 5;
|
|
779
|
+
*/
|
|
780
|
+
landingLocation?: LandingLocation | undefined;
|
|
781
|
+
/**
|
|
782
|
+
* @generated from field: optional bool success = 6;
|
|
783
|
+
*/
|
|
784
|
+
success?: boolean | undefined;
|
|
785
|
+
/**
|
|
786
|
+
* @generated from field: docking_event.v1.LandingType type = 7;
|
|
787
|
+
*/
|
|
788
|
+
type?: LandingType | undefined;
|
|
789
|
+
/**
|
|
790
|
+
* @generated from field: string url = 8;
|
|
791
|
+
*/
|
|
792
|
+
url: string;
|
|
793
|
+
};
|
|
794
|
+
/**
|
|
795
|
+
* Describes the message docking_event.v1.Landing.
|
|
796
|
+
* Use `create(LandingSchema)` to create a new message.
|
|
797
|
+
*/
|
|
798
|
+
export declare const LandingSchema: GenMessage<Landing>;
|
|
799
|
+
/**
|
|
800
|
+
* @generated from message docking_event.v1.LandingLocation
|
|
801
|
+
*/
|
|
802
|
+
export type LandingLocation = Message<"docking_event.v1.LandingLocation"> & {
|
|
803
|
+
/**
|
|
804
|
+
* @generated from field: string abbrev = 1;
|
|
805
|
+
*/
|
|
806
|
+
abbrev: string;
|
|
807
|
+
/**
|
|
808
|
+
* @generated from field: bool active = 2;
|
|
809
|
+
*/
|
|
810
|
+
active: boolean;
|
|
811
|
+
/**
|
|
812
|
+
* @generated from field: optional int32 attempted_landings = 3;
|
|
813
|
+
*/
|
|
814
|
+
attemptedLandings?: number | undefined;
|
|
815
|
+
/**
|
|
816
|
+
* @generated from field: docking_event.v1.CelestialBodyNormal celestial_body = 4;
|
|
817
|
+
*/
|
|
818
|
+
celestialBody?: CelestialBodyNormal | undefined;
|
|
819
|
+
/**
|
|
820
|
+
* @generated from field: optional string description = 5;
|
|
821
|
+
*/
|
|
822
|
+
description?: string | undefined;
|
|
823
|
+
/**
|
|
824
|
+
* @generated from field: optional int32 failed_landings = 6;
|
|
825
|
+
*/
|
|
826
|
+
failedLandings?: number | undefined;
|
|
827
|
+
/**
|
|
828
|
+
* @generated from field: int32 id = 7;
|
|
829
|
+
*/
|
|
830
|
+
id: number;
|
|
831
|
+
/**
|
|
832
|
+
* @generated from field: docking_event.v1.Image image = 8;
|
|
833
|
+
*/
|
|
834
|
+
image?: Image | undefined;
|
|
835
|
+
/**
|
|
836
|
+
* @generated from field: optional float latitude = 9;
|
|
837
|
+
*/
|
|
838
|
+
latitude?: number | undefined;
|
|
839
|
+
/**
|
|
840
|
+
* @generated from field: docking_event.v1.LocationSerializerNoCelestialBody location = 10;
|
|
841
|
+
*/
|
|
842
|
+
location?: LocationSerializerNoCelestialBody | undefined;
|
|
843
|
+
/**
|
|
844
|
+
* @generated from field: optional float longitude = 11;
|
|
845
|
+
*/
|
|
846
|
+
longitude?: number | undefined;
|
|
847
|
+
/**
|
|
848
|
+
* @generated from field: string name = 12;
|
|
849
|
+
*/
|
|
850
|
+
name: string;
|
|
851
|
+
/**
|
|
852
|
+
* @generated from field: optional int32 successful_landings = 13;
|
|
853
|
+
*/
|
|
854
|
+
successfulLandings?: number | undefined;
|
|
855
|
+
};
|
|
856
|
+
/**
|
|
857
|
+
* Describes the message docking_event.v1.LandingLocation.
|
|
858
|
+
* Use `create(LandingLocationSchema)` to create a new message.
|
|
859
|
+
*/
|
|
860
|
+
export declare const LandingLocationSchema: GenMessage<LandingLocation>;
|
|
861
|
+
/**
|
|
862
|
+
* @generated from message docking_event.v1.LandingType
|
|
863
|
+
*/
|
|
864
|
+
export type LandingType = Message<"docking_event.v1.LandingType"> & {
|
|
865
|
+
/**
|
|
866
|
+
* @generated from field: string abbrev = 1;
|
|
867
|
+
*/
|
|
868
|
+
abbrev: string;
|
|
869
|
+
/**
|
|
870
|
+
* @generated from field: optional string description = 2;
|
|
871
|
+
*/
|
|
872
|
+
description?: string | undefined;
|
|
873
|
+
/**
|
|
874
|
+
* @generated from field: int32 id = 3;
|
|
875
|
+
*/
|
|
876
|
+
id: number;
|
|
877
|
+
/**
|
|
878
|
+
* @generated from field: string name = 4;
|
|
879
|
+
*/
|
|
880
|
+
name: string;
|
|
881
|
+
};
|
|
882
|
+
/**
|
|
883
|
+
* Describes the message docking_event.v1.LandingType.
|
|
884
|
+
* Use `create(LandingTypeSchema)` to create a new message.
|
|
885
|
+
*/
|
|
886
|
+
export declare const LandingTypeSchema: GenMessage<LandingType>;
|
|
887
|
+
/**
|
|
888
|
+
* @generated from message docking_event.v1.Language
|
|
889
|
+
*/
|
|
890
|
+
export type Language = Message<"docking_event.v1.Language"> & {
|
|
891
|
+
/**
|
|
892
|
+
* @generated from field: string code = 1;
|
|
893
|
+
*/
|
|
894
|
+
code: string;
|
|
895
|
+
/**
|
|
896
|
+
* @generated from field: int32 id = 2;
|
|
897
|
+
*/
|
|
898
|
+
id: number;
|
|
899
|
+
/**
|
|
900
|
+
* @generated from field: string name = 3;
|
|
901
|
+
*/
|
|
902
|
+
name: string;
|
|
903
|
+
};
|
|
904
|
+
/**
|
|
905
|
+
* Describes the message docking_event.v1.Language.
|
|
906
|
+
* Use `create(LanguageSchema)` to create a new message.
|
|
907
|
+
*/
|
|
908
|
+
export declare const LanguageSchema: GenMessage<Language>;
|
|
909
|
+
/**
|
|
910
|
+
* @generated from message docking_event.v1.LaunchMini
|
|
911
|
+
*/
|
|
912
|
+
export type LaunchMini = Message<"docking_event.v1.LaunchMini"> & {
|
|
913
|
+
/**
|
|
914
|
+
* @generated from field: string id = 1;
|
|
915
|
+
*/
|
|
916
|
+
id: string;
|
|
917
|
+
/**
|
|
918
|
+
* @generated from field: string name = 2;
|
|
919
|
+
*/
|
|
920
|
+
name: string;
|
|
921
|
+
/**
|
|
922
|
+
* @generated from field: string url = 3;
|
|
923
|
+
*/
|
|
924
|
+
url: string;
|
|
925
|
+
};
|
|
926
|
+
/**
|
|
927
|
+
* Describes the message docking_event.v1.LaunchMini.
|
|
928
|
+
* Use `create(LaunchMiniSchema)` to create a new message.
|
|
929
|
+
*/
|
|
930
|
+
export declare const LaunchMiniSchema: GenMessage<LaunchMini>;
|
|
931
|
+
/**
|
|
932
|
+
* @generated from message docking_event.v1.LaunchNormal
|
|
933
|
+
*/
|
|
934
|
+
export type LaunchNormal = Message<"docking_event.v1.LaunchNormal"> & {
|
|
935
|
+
/**
|
|
936
|
+
* @generated from field: optional int32 agency_launch_attempt_count = 1;
|
|
937
|
+
*/
|
|
938
|
+
agencyLaunchAttemptCount?: number | undefined;
|
|
939
|
+
/**
|
|
940
|
+
* @generated from field: optional int32 agency_launch_attempt_count_year = 2;
|
|
941
|
+
*/
|
|
942
|
+
agencyLaunchAttemptCountYear?: number | undefined;
|
|
943
|
+
/**
|
|
944
|
+
* @generated from field: optional string failreason = 3;
|
|
945
|
+
*/
|
|
946
|
+
failreason?: string | undefined;
|
|
947
|
+
/**
|
|
948
|
+
* @generated from field: optional string hashtag = 4;
|
|
949
|
+
*/
|
|
950
|
+
hashtag?: string | undefined;
|
|
951
|
+
/**
|
|
952
|
+
* @generated from field: string id = 5;
|
|
953
|
+
*/
|
|
954
|
+
id: string;
|
|
955
|
+
/**
|
|
956
|
+
* @generated from field: docking_event.v1.Image image = 6;
|
|
957
|
+
*/
|
|
958
|
+
image?: Image | undefined;
|
|
959
|
+
/**
|
|
960
|
+
* @generated from field: optional string infographic = 7;
|
|
961
|
+
*/
|
|
962
|
+
infographic?: string | undefined;
|
|
963
|
+
/**
|
|
964
|
+
* @generated from field: string last_updated = 8;
|
|
965
|
+
*/
|
|
966
|
+
lastUpdated: string;
|
|
967
|
+
/**
|
|
968
|
+
* @generated from field: optional string launch_designator = 9;
|
|
969
|
+
*/
|
|
970
|
+
launchDesignator?: string | undefined;
|
|
971
|
+
/**
|
|
972
|
+
* @generated from field: docking_event.v1.AgencyMini launch_service_provider = 10;
|
|
973
|
+
*/
|
|
974
|
+
launchServiceProvider?: AgencyMini | undefined;
|
|
975
|
+
/**
|
|
976
|
+
* @generated from field: optional int32 location_launch_attempt_count = 11;
|
|
977
|
+
*/
|
|
978
|
+
locationLaunchAttemptCount?: number | undefined;
|
|
979
|
+
/**
|
|
980
|
+
* @generated from field: optional int32 location_launch_attempt_count_year = 12;
|
|
981
|
+
*/
|
|
982
|
+
locationLaunchAttemptCountYear?: number | undefined;
|
|
983
|
+
/**
|
|
984
|
+
* @generated from field: docking_event.v1.Mission mission = 13;
|
|
985
|
+
*/
|
|
986
|
+
mission?: Mission | undefined;
|
|
987
|
+
/**
|
|
988
|
+
* @generated from field: string name = 14;
|
|
989
|
+
*/
|
|
990
|
+
name: string;
|
|
991
|
+
/**
|
|
992
|
+
* @generated from field: string net = 15;
|
|
993
|
+
*/
|
|
994
|
+
net: string;
|
|
995
|
+
/**
|
|
996
|
+
* @generated from field: docking_event.v1.NetPrecision net_precision = 16;
|
|
997
|
+
*/
|
|
998
|
+
netPrecision?: NetPrecision | undefined;
|
|
999
|
+
/**
|
|
1000
|
+
* @generated from field: optional int32 orbital_launch_attempt_count = 17;
|
|
1001
|
+
*/
|
|
1002
|
+
orbitalLaunchAttemptCount?: number | undefined;
|
|
1003
|
+
/**
|
|
1004
|
+
* @generated from field: optional int32 orbital_launch_attempt_count_year = 18;
|
|
1005
|
+
*/
|
|
1006
|
+
orbitalLaunchAttemptCountYear?: number | undefined;
|
|
1007
|
+
/**
|
|
1008
|
+
* @generated from field: docking_event.v1.Pad pad = 19;
|
|
1009
|
+
*/
|
|
1010
|
+
pad?: Pad | undefined;
|
|
1011
|
+
/**
|
|
1012
|
+
* @generated from field: optional int32 pad_launch_attempt_count = 20;
|
|
1013
|
+
*/
|
|
1014
|
+
padLaunchAttemptCount?: number | undefined;
|
|
1015
|
+
/**
|
|
1016
|
+
* @generated from field: optional int32 pad_launch_attempt_count_year = 21;
|
|
1017
|
+
*/
|
|
1018
|
+
padLaunchAttemptCountYear?: number | undefined;
|
|
1019
|
+
/**
|
|
1020
|
+
* @generated from field: optional int32 probability = 22;
|
|
1021
|
+
*/
|
|
1022
|
+
probability?: number | undefined;
|
|
1023
|
+
/**
|
|
1024
|
+
* @generated from field: repeated docking_event.v1.ProgramNormal program = 23;
|
|
1025
|
+
*/
|
|
1026
|
+
program: ProgramNormal[];
|
|
1027
|
+
/**
|
|
1028
|
+
* @generated from field: string response_mode = 24;
|
|
1029
|
+
*/
|
|
1030
|
+
responseMode: string;
|
|
1031
|
+
/**
|
|
1032
|
+
* @generated from field: docking_event.v1.RocketNormal rocket = 25;
|
|
1033
|
+
*/
|
|
1034
|
+
rocket?: RocketNormal | undefined;
|
|
1035
|
+
/**
|
|
1036
|
+
* @generated from field: string slug = 26;
|
|
1037
|
+
*/
|
|
1038
|
+
slug: string;
|
|
1039
|
+
/**
|
|
1040
|
+
* @generated from field: docking_event.v1.LaunchStatus status = 27;
|
|
1041
|
+
*/
|
|
1042
|
+
status?: LaunchStatus | undefined;
|
|
1043
|
+
/**
|
|
1044
|
+
* @generated from field: string url = 28;
|
|
1045
|
+
*/
|
|
1046
|
+
url: string;
|
|
1047
|
+
/**
|
|
1048
|
+
* @generated from field: optional string weather_concerns = 29;
|
|
1049
|
+
*/
|
|
1050
|
+
weatherConcerns?: string | undefined;
|
|
1051
|
+
/**
|
|
1052
|
+
* @generated from field: bool webcast_live = 30;
|
|
1053
|
+
*/
|
|
1054
|
+
webcastLive: boolean;
|
|
1055
|
+
/**
|
|
1056
|
+
* @generated from field: string window_end = 31;
|
|
1057
|
+
*/
|
|
1058
|
+
windowEnd: string;
|
|
1059
|
+
/**
|
|
1060
|
+
* @generated from field: string window_start = 32;
|
|
1061
|
+
*/
|
|
1062
|
+
windowStart: string;
|
|
1063
|
+
};
|
|
1064
|
+
/**
|
|
1065
|
+
* Describes the message docking_event.v1.LaunchNormal.
|
|
1066
|
+
* Use `create(LaunchNormalSchema)` to create a new message.
|
|
1067
|
+
*/
|
|
1068
|
+
export declare const LaunchNormalSchema: GenMessage<LaunchNormal>;
|
|
1069
|
+
/**
|
|
1070
|
+
* @generated from message docking_event.v1.LaunchStatus
|
|
1071
|
+
*/
|
|
1072
|
+
export type LaunchStatus = Message<"docking_event.v1.LaunchStatus"> & {
|
|
1073
|
+
/**
|
|
1074
|
+
* @generated from field: string abbrev = 1;
|
|
1075
|
+
*/
|
|
1076
|
+
abbrev: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* @generated from field: string description = 2;
|
|
1079
|
+
*/
|
|
1080
|
+
description: string;
|
|
1081
|
+
/**
|
|
1082
|
+
* @generated from field: int32 id = 3;
|
|
1083
|
+
*/
|
|
1084
|
+
id: number;
|
|
1085
|
+
/**
|
|
1086
|
+
* @generated from field: string name = 4;
|
|
1087
|
+
*/
|
|
1088
|
+
name: string;
|
|
1089
|
+
};
|
|
1090
|
+
/**
|
|
1091
|
+
* Describes the message docking_event.v1.LaunchStatus.
|
|
1092
|
+
* Use `create(LaunchStatusSchema)` to create a new message.
|
|
1093
|
+
*/
|
|
1094
|
+
export declare const LaunchStatusSchema: GenMessage<LaunchStatus>;
|
|
1095
|
+
/**
|
|
1096
|
+
* @generated from message docking_event.v1.LauncherConfigFamilyMini
|
|
1097
|
+
*/
|
|
1098
|
+
export type LauncherConfigFamilyMini = Message<"docking_event.v1.LauncherConfigFamilyMini"> & {
|
|
1099
|
+
/**
|
|
1100
|
+
* @generated from field: int32 id = 1;
|
|
1101
|
+
*/
|
|
1102
|
+
id: number;
|
|
1103
|
+
/**
|
|
1104
|
+
* @generated from field: string name = 2;
|
|
1105
|
+
*/
|
|
1106
|
+
name: string;
|
|
1107
|
+
/**
|
|
1108
|
+
* @generated from field: string response_mode = 3;
|
|
1109
|
+
*/
|
|
1110
|
+
responseMode: string;
|
|
1111
|
+
};
|
|
1112
|
+
/**
|
|
1113
|
+
* Describes the message docking_event.v1.LauncherConfigFamilyMini.
|
|
1114
|
+
* Use `create(LauncherConfigFamilyMiniSchema)` to create a new message.
|
|
1115
|
+
*/
|
|
1116
|
+
export declare const LauncherConfigFamilyMiniSchema: GenMessage<LauncherConfigFamilyMini>;
|
|
1117
|
+
/**
|
|
1118
|
+
* @generated from message docking_event.v1.LauncherConfigList
|
|
1119
|
+
*/
|
|
1120
|
+
export type LauncherConfigList = Message<"docking_event.v1.LauncherConfigList"> & {
|
|
1121
|
+
/**
|
|
1122
|
+
* @generated from field: repeated docking_event.v1.LauncherConfigFamilyMini families = 1;
|
|
1123
|
+
*/
|
|
1124
|
+
families: LauncherConfigFamilyMini[];
|
|
1125
|
+
/**
|
|
1126
|
+
* @generated from field: string full_name = 2;
|
|
1127
|
+
*/
|
|
1128
|
+
fullName: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* @generated from field: int32 id = 3;
|
|
1131
|
+
*/
|
|
1132
|
+
id: number;
|
|
1133
|
+
/**
|
|
1134
|
+
* @generated from field: string name = 4;
|
|
1135
|
+
*/
|
|
1136
|
+
name: string;
|
|
1137
|
+
/**
|
|
1138
|
+
* @generated from field: string response_mode = 5;
|
|
1139
|
+
*/
|
|
1140
|
+
responseMode: string;
|
|
1141
|
+
/**
|
|
1142
|
+
* @generated from field: string url = 6;
|
|
1143
|
+
*/
|
|
1144
|
+
url: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* @generated from field: string variant = 7;
|
|
1147
|
+
*/
|
|
1148
|
+
variant: string;
|
|
1149
|
+
};
|
|
1150
|
+
/**
|
|
1151
|
+
* Describes the message docking_event.v1.LauncherConfigList.
|
|
1152
|
+
* Use `create(LauncherConfigListSchema)` to create a new message.
|
|
1153
|
+
*/
|
|
1154
|
+
export declare const LauncherConfigListSchema: GenMessage<LauncherConfigList>;
|
|
1155
|
+
/**
|
|
1156
|
+
* @generated from message docking_event.v1.Location
|
|
1157
|
+
*/
|
|
1158
|
+
export type Location = Message<"docking_event.v1.Location"> & {
|
|
1159
|
+
/**
|
|
1160
|
+
* @generated from field: bool active = 1;
|
|
1161
|
+
*/
|
|
1162
|
+
active: boolean;
|
|
1163
|
+
/**
|
|
1164
|
+
* @generated from field: docking_event.v1.CelestialBodyDetailed celestial_body = 2;
|
|
1165
|
+
*/
|
|
1166
|
+
celestialBody?: CelestialBodyDetailed | undefined;
|
|
1167
|
+
/**
|
|
1168
|
+
* @generated from field: docking_event.v1.Country country = 3;
|
|
1169
|
+
*/
|
|
1170
|
+
country?: Country | undefined;
|
|
1171
|
+
/**
|
|
1172
|
+
* @generated from field: optional string description = 4;
|
|
1173
|
+
*/
|
|
1174
|
+
description?: string | undefined;
|
|
1175
|
+
/**
|
|
1176
|
+
* @generated from field: int32 id = 5;
|
|
1177
|
+
*/
|
|
1178
|
+
id: number;
|
|
1179
|
+
/**
|
|
1180
|
+
* @generated from field: docking_event.v1.Image image = 6;
|
|
1181
|
+
*/
|
|
1182
|
+
image?: Image | undefined;
|
|
1183
|
+
/**
|
|
1184
|
+
* @generated from field: optional float latitude = 7;
|
|
1185
|
+
*/
|
|
1186
|
+
latitude?: number | undefined;
|
|
1187
|
+
/**
|
|
1188
|
+
* @generated from field: optional float longitude = 8;
|
|
1189
|
+
*/
|
|
1190
|
+
longitude?: number | undefined;
|
|
1191
|
+
/**
|
|
1192
|
+
* @generated from field: optional string map_image = 9;
|
|
1193
|
+
*/
|
|
1194
|
+
mapImage?: string | undefined;
|
|
1195
|
+
/**
|
|
1196
|
+
* @generated from field: string name = 10;
|
|
1197
|
+
*/
|
|
1198
|
+
name: string;
|
|
1199
|
+
/**
|
|
1200
|
+
* @generated from field: string response_mode = 11;
|
|
1201
|
+
*/
|
|
1202
|
+
responseMode: string;
|
|
1203
|
+
/**
|
|
1204
|
+
* @generated from field: string timezone_name = 12;
|
|
1205
|
+
*/
|
|
1206
|
+
timezoneName: string;
|
|
1207
|
+
/**
|
|
1208
|
+
* @generated from field: optional int32 total_landing_count = 13;
|
|
1209
|
+
*/
|
|
1210
|
+
totalLandingCount?: number | undefined;
|
|
1211
|
+
/**
|
|
1212
|
+
* @generated from field: optional int32 total_launch_count = 14;
|
|
1213
|
+
*/
|
|
1214
|
+
totalLaunchCount?: number | undefined;
|
|
1215
|
+
/**
|
|
1216
|
+
* @generated from field: string url = 15;
|
|
1217
|
+
*/
|
|
1218
|
+
url: string;
|
|
1219
|
+
};
|
|
1220
|
+
/**
|
|
1221
|
+
* Describes the message docking_event.v1.Location.
|
|
1222
|
+
* Use `create(LocationSchema)` to create a new message.
|
|
1223
|
+
*/
|
|
1224
|
+
export declare const LocationSchema: GenMessage<Location>;
|
|
1225
|
+
/**
|
|
1226
|
+
* @generated from message docking_event.v1.LocationSerializerNoCelestialBody
|
|
1227
|
+
*/
|
|
1228
|
+
export type LocationSerializerNoCelestialBody = Message<"docking_event.v1.LocationSerializerNoCelestialBody"> & {
|
|
1229
|
+
/**
|
|
1230
|
+
* @generated from field: bool active = 1;
|
|
1231
|
+
*/
|
|
1232
|
+
active: boolean;
|
|
1233
|
+
/**
|
|
1234
|
+
* @generated from field: docking_event.v1.Country country = 2;
|
|
1235
|
+
*/
|
|
1236
|
+
country?: Country | undefined;
|
|
1237
|
+
/**
|
|
1238
|
+
* @generated from field: optional string description = 3;
|
|
1239
|
+
*/
|
|
1240
|
+
description?: string | undefined;
|
|
1241
|
+
/**
|
|
1242
|
+
* @generated from field: int32 id = 4;
|
|
1243
|
+
*/
|
|
1244
|
+
id: number;
|
|
1245
|
+
/**
|
|
1246
|
+
* @generated from field: docking_event.v1.Image image = 5;
|
|
1247
|
+
*/
|
|
1248
|
+
image?: Image | undefined;
|
|
1249
|
+
/**
|
|
1250
|
+
* @generated from field: optional float latitude = 6;
|
|
1251
|
+
*/
|
|
1252
|
+
latitude?: number | undefined;
|
|
1253
|
+
/**
|
|
1254
|
+
* @generated from field: optional float longitude = 7;
|
|
1255
|
+
*/
|
|
1256
|
+
longitude?: number | undefined;
|
|
1257
|
+
/**
|
|
1258
|
+
* @generated from field: optional string map_image = 8;
|
|
1259
|
+
*/
|
|
1260
|
+
mapImage?: string | undefined;
|
|
1261
|
+
/**
|
|
1262
|
+
* @generated from field: string name = 9;
|
|
1263
|
+
*/
|
|
1264
|
+
name: string;
|
|
1265
|
+
/**
|
|
1266
|
+
* @generated from field: string response_mode = 10;
|
|
1267
|
+
*/
|
|
1268
|
+
responseMode: string;
|
|
1269
|
+
/**
|
|
1270
|
+
* @generated from field: string timezone_name = 11;
|
|
1271
|
+
*/
|
|
1272
|
+
timezoneName: string;
|
|
1273
|
+
/**
|
|
1274
|
+
* @generated from field: optional int32 total_landing_count = 12;
|
|
1275
|
+
*/
|
|
1276
|
+
totalLandingCount?: number | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* @generated from field: optional int32 total_launch_count = 13;
|
|
1279
|
+
*/
|
|
1280
|
+
totalLaunchCount?: number | undefined;
|
|
1281
|
+
/**
|
|
1282
|
+
* @generated from field: string url = 14;
|
|
1283
|
+
*/
|
|
1284
|
+
url: string;
|
|
1285
|
+
};
|
|
1286
|
+
/**
|
|
1287
|
+
* Describes the message docking_event.v1.LocationSerializerNoCelestialBody.
|
|
1288
|
+
* Use `create(LocationSerializerNoCelestialBodySchema)` to create a new message.
|
|
1289
|
+
*/
|
|
1290
|
+
export declare const LocationSerializerNoCelestialBodySchema: GenMessage<LocationSerializerNoCelestialBody>;
|
|
1291
|
+
/**
|
|
1292
|
+
* @generated from message docking_event.v1.Mission
|
|
1293
|
+
*/
|
|
1294
|
+
export type Mission = Message<"docking_event.v1.Mission"> & {
|
|
1295
|
+
/**
|
|
1296
|
+
* @generated from field: repeated docking_event.v1.AgencyDetailed agencies = 1;
|
|
1297
|
+
*/
|
|
1298
|
+
agencies: AgencyDetailed[];
|
|
1299
|
+
/**
|
|
1300
|
+
* @generated from field: string description = 2;
|
|
1301
|
+
*/
|
|
1302
|
+
description: string;
|
|
1303
|
+
/**
|
|
1304
|
+
* @generated from field: int32 id = 3;
|
|
1305
|
+
*/
|
|
1306
|
+
id: number;
|
|
1307
|
+
/**
|
|
1308
|
+
* @generated from field: docking_event.v1.Image image = 4;
|
|
1309
|
+
*/
|
|
1310
|
+
image?: Image | undefined;
|
|
1311
|
+
/**
|
|
1312
|
+
* @generated from field: repeated docking_event.v1.InfoURL info_urls = 5;
|
|
1313
|
+
*/
|
|
1314
|
+
infoUrls: InfoURL[];
|
|
1315
|
+
/**
|
|
1316
|
+
* @generated from field: string name = 6;
|
|
1317
|
+
*/
|
|
1318
|
+
name: string;
|
|
1319
|
+
/**
|
|
1320
|
+
* @generated from field: docking_event.v1.Orbit orbit = 7;
|
|
1321
|
+
*/
|
|
1322
|
+
orbit?: Orbit | undefined;
|
|
1323
|
+
/**
|
|
1324
|
+
* @generated from field: string type = 8;
|
|
1325
|
+
*/
|
|
1326
|
+
type: string;
|
|
1327
|
+
/**
|
|
1328
|
+
* @generated from field: repeated docking_event.v1.VidURL vid_urls = 9;
|
|
1329
|
+
*/
|
|
1330
|
+
vidUrls: VidURL[];
|
|
1331
|
+
};
|
|
1332
|
+
/**
|
|
1333
|
+
* Describes the message docking_event.v1.Mission.
|
|
1334
|
+
* Use `create(MissionSchema)` to create a new message.
|
|
1335
|
+
*/
|
|
1336
|
+
export declare const MissionSchema: GenMessage<Mission>;
|
|
1337
|
+
/**
|
|
1338
|
+
* @generated from message docking_event.v1.MissionPatch
|
|
1339
|
+
*/
|
|
1340
|
+
export type MissionPatch = Message<"docking_event.v1.MissionPatch"> & {
|
|
1341
|
+
/**
|
|
1342
|
+
* @generated from field: docking_event.v1.AgencyMini agency = 1;
|
|
1343
|
+
*/
|
|
1344
|
+
agency?: AgencyMini | undefined;
|
|
1345
|
+
/**
|
|
1346
|
+
* @generated from field: int32 id = 2;
|
|
1347
|
+
*/
|
|
1348
|
+
id: number;
|
|
1349
|
+
/**
|
|
1350
|
+
* @generated from field: string image_url = 3;
|
|
1351
|
+
*/
|
|
1352
|
+
imageUrl: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* @generated from field: string name = 4;
|
|
1355
|
+
*/
|
|
1356
|
+
name: string;
|
|
1357
|
+
/**
|
|
1358
|
+
* @generated from field: int32 priority = 5;
|
|
1359
|
+
*/
|
|
1360
|
+
priority: number;
|
|
1361
|
+
/**
|
|
1362
|
+
* @generated from field: string response_mode = 6;
|
|
1363
|
+
*/
|
|
1364
|
+
responseMode: string;
|
|
1365
|
+
};
|
|
1366
|
+
/**
|
|
1367
|
+
* Describes the message docking_event.v1.MissionPatch.
|
|
1368
|
+
* Use `create(MissionPatchSchema)` to create a new message.
|
|
1369
|
+
*/
|
|
1370
|
+
export declare const MissionPatchSchema: GenMessage<MissionPatch>;
|
|
1371
|
+
/**
|
|
1372
|
+
* @generated from message docking_event.v1.NetPrecision
|
|
1373
|
+
*/
|
|
1374
|
+
export type NetPrecision = Message<"docking_event.v1.NetPrecision"> & {
|
|
1375
|
+
/**
|
|
1376
|
+
* @generated from field: string abbrev = 1;
|
|
1377
|
+
*/
|
|
1378
|
+
abbrev: string;
|
|
1379
|
+
/**
|
|
1380
|
+
* @generated from field: string description = 2;
|
|
1381
|
+
*/
|
|
1382
|
+
description: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* @generated from field: int32 id = 3;
|
|
1385
|
+
*/
|
|
1386
|
+
id: number;
|
|
1387
|
+
/**
|
|
1388
|
+
* @generated from field: string name = 4;
|
|
1389
|
+
*/
|
|
1390
|
+
name: string;
|
|
1391
|
+
};
|
|
1392
|
+
/**
|
|
1393
|
+
* Describes the message docking_event.v1.NetPrecision.
|
|
1394
|
+
* Use `create(NetPrecisionSchema)` to create a new message.
|
|
1395
|
+
*/
|
|
1396
|
+
export declare const NetPrecisionSchema: GenMessage<NetPrecision>;
|
|
1397
|
+
/**
|
|
1398
|
+
* @generated from message docking_event.v1.Orbit
|
|
1399
|
+
*/
|
|
1400
|
+
export type Orbit = Message<"docking_event.v1.Orbit"> & {
|
|
1401
|
+
/**
|
|
1402
|
+
* @generated from field: string abbrev = 1;
|
|
1403
|
+
*/
|
|
1404
|
+
abbrev: string;
|
|
1405
|
+
/**
|
|
1406
|
+
* @generated from field: docking_event.v1.CelestialBodyMini celestial_body = 2;
|
|
1407
|
+
*/
|
|
1408
|
+
celestialBody?: CelestialBodyMini | undefined;
|
|
1409
|
+
/**
|
|
1410
|
+
* @generated from field: int32 id = 3;
|
|
1411
|
+
*/
|
|
1412
|
+
id: number;
|
|
1413
|
+
/**
|
|
1414
|
+
* @generated from field: string name = 4;
|
|
1415
|
+
*/
|
|
1416
|
+
name: string;
|
|
1417
|
+
};
|
|
1418
|
+
/**
|
|
1419
|
+
* Describes the message docking_event.v1.Orbit.
|
|
1420
|
+
* Use `create(OrbitSchema)` to create a new message.
|
|
1421
|
+
*/
|
|
1422
|
+
export declare const OrbitSchema: GenMessage<Orbit>;
|
|
1423
|
+
/**
|
|
1424
|
+
* @generated from message docking_event.v1.Pad
|
|
1425
|
+
*/
|
|
1426
|
+
export type Pad = Message<"docking_event.v1.Pad"> & {
|
|
1427
|
+
/**
|
|
1428
|
+
* @generated from field: bool active = 1;
|
|
1429
|
+
*/
|
|
1430
|
+
active: boolean;
|
|
1431
|
+
/**
|
|
1432
|
+
* @generated from field: repeated docking_event.v1.AgencyNormal agencies = 2;
|
|
1433
|
+
*/
|
|
1434
|
+
agencies: AgencyNormal[];
|
|
1435
|
+
/**
|
|
1436
|
+
* @generated from field: docking_event.v1.Country country = 3;
|
|
1437
|
+
*/
|
|
1438
|
+
country?: Country | undefined;
|
|
1439
|
+
/**
|
|
1440
|
+
* @generated from field: optional string description = 4;
|
|
1441
|
+
*/
|
|
1442
|
+
description?: string | undefined;
|
|
1443
|
+
/**
|
|
1444
|
+
* @generated from field: optional string fastest_turnaround = 5;
|
|
1445
|
+
*/
|
|
1446
|
+
fastestTurnaround?: string | undefined;
|
|
1447
|
+
/**
|
|
1448
|
+
* @generated from field: int32 id = 6;
|
|
1449
|
+
*/
|
|
1450
|
+
id: number;
|
|
1451
|
+
/**
|
|
1452
|
+
* @generated from field: docking_event.v1.Image image = 7;
|
|
1453
|
+
*/
|
|
1454
|
+
image?: Image | undefined;
|
|
1455
|
+
/**
|
|
1456
|
+
* @generated from field: optional string info_url = 8;
|
|
1457
|
+
*/
|
|
1458
|
+
infoUrl?: string | undefined;
|
|
1459
|
+
/**
|
|
1460
|
+
* @generated from field: optional float latitude = 9;
|
|
1461
|
+
*/
|
|
1462
|
+
latitude?: number | undefined;
|
|
1463
|
+
/**
|
|
1464
|
+
* @generated from field: docking_event.v1.Location location = 10;
|
|
1465
|
+
*/
|
|
1466
|
+
location?: Location | undefined;
|
|
1467
|
+
/**
|
|
1468
|
+
* @generated from field: optional float longitude = 11;
|
|
1469
|
+
*/
|
|
1470
|
+
longitude?: number | undefined;
|
|
1471
|
+
/**
|
|
1472
|
+
* @generated from field: optional string map_image = 12;
|
|
1473
|
+
*/
|
|
1474
|
+
mapImage?: string | undefined;
|
|
1475
|
+
/**
|
|
1476
|
+
* @generated from field: optional string map_url = 13;
|
|
1477
|
+
*/
|
|
1478
|
+
mapUrl?: string | undefined;
|
|
1479
|
+
/**
|
|
1480
|
+
* @generated from field: string name = 14;
|
|
1481
|
+
*/
|
|
1482
|
+
name: string;
|
|
1483
|
+
/**
|
|
1484
|
+
* @generated from field: optional int32 orbital_launch_attempt_count = 15;
|
|
1485
|
+
*/
|
|
1486
|
+
orbitalLaunchAttemptCount?: number | undefined;
|
|
1487
|
+
/**
|
|
1488
|
+
* @generated from field: optional int32 total_launch_count = 16;
|
|
1489
|
+
*/
|
|
1490
|
+
totalLaunchCount?: number | undefined;
|
|
1491
|
+
/**
|
|
1492
|
+
* @generated from field: string url = 17;
|
|
1493
|
+
*/
|
|
1494
|
+
url: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* @generated from field: optional string wiki_url = 18;
|
|
1497
|
+
*/
|
|
1498
|
+
wikiUrl?: string | undefined;
|
|
1499
|
+
};
|
|
1500
|
+
/**
|
|
1501
|
+
* Describes the message docking_event.v1.Pad.
|
|
1502
|
+
* Use `create(PadSchema)` to create a new message.
|
|
1503
|
+
*/
|
|
1504
|
+
export declare const PadSchema: GenMessage<Pad>;
|
|
1505
|
+
/**
|
|
1506
|
+
* @generated from message docking_event.v1.PayloadFlightMini
|
|
1507
|
+
*/
|
|
1508
|
+
export type PayloadFlightMini = Message<"docking_event.v1.PayloadFlightMini"> & {
|
|
1509
|
+
/**
|
|
1510
|
+
* @generated from field: int32 amount = 1;
|
|
1511
|
+
*/
|
|
1512
|
+
amount: number;
|
|
1513
|
+
/**
|
|
1514
|
+
* @generated from field: optional string destination = 2;
|
|
1515
|
+
*/
|
|
1516
|
+
destination?: string | undefined;
|
|
1517
|
+
/**
|
|
1518
|
+
* @generated from field: int32 id = 3;
|
|
1519
|
+
*/
|
|
1520
|
+
id: number;
|
|
1521
|
+
/**
|
|
1522
|
+
* @generated from field: docking_event.v1.Landing landing = 4;
|
|
1523
|
+
*/
|
|
1524
|
+
landing?: Landing | undefined;
|
|
1525
|
+
/**
|
|
1526
|
+
* @generated from field: docking_event.v1.LaunchMini launch = 5;
|
|
1527
|
+
*/
|
|
1528
|
+
launch?: LaunchMini | undefined;
|
|
1529
|
+
/**
|
|
1530
|
+
* @generated from field: docking_event.v1.PayloadMini payload = 6;
|
|
1531
|
+
*/
|
|
1532
|
+
payload?: PayloadMini | undefined;
|
|
1533
|
+
/**
|
|
1534
|
+
* @generated from field: string response_mode = 7;
|
|
1535
|
+
*/
|
|
1536
|
+
responseMode: string;
|
|
1537
|
+
/**
|
|
1538
|
+
* @generated from field: string url = 8;
|
|
1539
|
+
*/
|
|
1540
|
+
url: string;
|
|
1541
|
+
};
|
|
1542
|
+
/**
|
|
1543
|
+
* Describes the message docking_event.v1.PayloadFlightMini.
|
|
1544
|
+
* Use `create(PayloadFlightMiniSchema)` to create a new message.
|
|
1545
|
+
*/
|
|
1546
|
+
export declare const PayloadFlightMiniSchema: GenMessage<PayloadFlightMini>;
|
|
1547
|
+
/**
|
|
1548
|
+
* @generated from message docking_event.v1.PayloadFlightNormal
|
|
1549
|
+
*/
|
|
1550
|
+
export type PayloadFlightNormal = Message<"docking_event.v1.PayloadFlightNormal"> & {
|
|
1551
|
+
/**
|
|
1552
|
+
* @generated from field: int32 amount = 1;
|
|
1553
|
+
*/
|
|
1554
|
+
amount: number;
|
|
1555
|
+
/**
|
|
1556
|
+
* @generated from field: optional string destination = 2;
|
|
1557
|
+
*/
|
|
1558
|
+
destination?: string | undefined;
|
|
1559
|
+
/**
|
|
1560
|
+
* @generated from field: int32 id = 3;
|
|
1561
|
+
*/
|
|
1562
|
+
id: number;
|
|
1563
|
+
/**
|
|
1564
|
+
* @generated from field: docking_event.v1.Landing landing = 4;
|
|
1565
|
+
*/
|
|
1566
|
+
landing?: Landing | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* @generated from field: docking_event.v1.LaunchNormal launch = 5;
|
|
1569
|
+
*/
|
|
1570
|
+
launch?: LaunchNormal | undefined;
|
|
1571
|
+
/**
|
|
1572
|
+
* @generated from field: docking_event.v1.PayloadNormal payload = 6;
|
|
1573
|
+
*/
|
|
1574
|
+
payload?: PayloadNormal | undefined;
|
|
1575
|
+
/**
|
|
1576
|
+
* @generated from field: string response_mode = 7;
|
|
1577
|
+
*/
|
|
1578
|
+
responseMode: string;
|
|
1579
|
+
/**
|
|
1580
|
+
* @generated from field: string url = 8;
|
|
1581
|
+
*/
|
|
1582
|
+
url: string;
|
|
1583
|
+
};
|
|
1584
|
+
/**
|
|
1585
|
+
* Describes the message docking_event.v1.PayloadFlightNormal.
|
|
1586
|
+
* Use `create(PayloadFlightNormalSchema)` to create a new message.
|
|
1587
|
+
*/
|
|
1588
|
+
export declare const PayloadFlightNormalSchema: GenMessage<PayloadFlightNormal>;
|
|
1589
|
+
/**
|
|
1590
|
+
* @generated from message docking_event.v1.PayloadMini
|
|
1591
|
+
*/
|
|
1592
|
+
export type PayloadMini = Message<"docking_event.v1.PayloadMini"> & {
|
|
1593
|
+
/**
|
|
1594
|
+
* @generated from field: int32 id = 1;
|
|
1595
|
+
*/
|
|
1596
|
+
id: number;
|
|
1597
|
+
/**
|
|
1598
|
+
* @generated from field: docking_event.v1.Image image = 2;
|
|
1599
|
+
*/
|
|
1600
|
+
image?: Image | undefined;
|
|
1601
|
+
/**
|
|
1602
|
+
* @generated from field: docking_event.v1.AgencyMini manufacturer = 3;
|
|
1603
|
+
*/
|
|
1604
|
+
manufacturer?: AgencyMini | undefined;
|
|
1605
|
+
/**
|
|
1606
|
+
* @generated from field: string name = 4;
|
|
1607
|
+
*/
|
|
1608
|
+
name: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* @generated from field: docking_event.v1.AgencyMini operator = 5;
|
|
1611
|
+
*/
|
|
1612
|
+
operator?: AgencyMini | undefined;
|
|
1613
|
+
/**
|
|
1614
|
+
* @generated from field: string response_mode = 6;
|
|
1615
|
+
*/
|
|
1616
|
+
responseMode: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* @generated from field: docking_event.v1.PayloadType type = 7;
|
|
1619
|
+
*/
|
|
1620
|
+
type?: PayloadType | undefined;
|
|
1621
|
+
};
|
|
1622
|
+
/**
|
|
1623
|
+
* Describes the message docking_event.v1.PayloadMini.
|
|
1624
|
+
* Use `create(PayloadMiniSchema)` to create a new message.
|
|
1625
|
+
*/
|
|
1626
|
+
export declare const PayloadMiniSchema: GenMessage<PayloadMini>;
|
|
1627
|
+
/**
|
|
1628
|
+
* @generated from message docking_event.v1.PayloadNormal
|
|
1629
|
+
*/
|
|
1630
|
+
export type PayloadNormal = Message<"docking_event.v1.PayloadNormal"> & {
|
|
1631
|
+
/**
|
|
1632
|
+
* @generated from field: optional int32 cost = 1;
|
|
1633
|
+
*/
|
|
1634
|
+
cost?: number | undefined;
|
|
1635
|
+
/**
|
|
1636
|
+
* @generated from field: string description = 2;
|
|
1637
|
+
*/
|
|
1638
|
+
description: string;
|
|
1639
|
+
/**
|
|
1640
|
+
* @generated from field: int32 id = 3;
|
|
1641
|
+
*/
|
|
1642
|
+
id: number;
|
|
1643
|
+
/**
|
|
1644
|
+
* @generated from field: docking_event.v1.Image image = 4;
|
|
1645
|
+
*/
|
|
1646
|
+
image?: Image | undefined;
|
|
1647
|
+
/**
|
|
1648
|
+
* @generated from field: string info_link = 5;
|
|
1649
|
+
*/
|
|
1650
|
+
infoLink: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* @generated from field: docking_event.v1.AgencyNormal manufacturer = 6;
|
|
1653
|
+
*/
|
|
1654
|
+
manufacturer?: AgencyNormal | undefined;
|
|
1655
|
+
/**
|
|
1656
|
+
* @generated from field: optional float mass = 7;
|
|
1657
|
+
*/
|
|
1658
|
+
mass?: number | undefined;
|
|
1659
|
+
/**
|
|
1660
|
+
* @generated from field: string name = 8;
|
|
1661
|
+
*/
|
|
1662
|
+
name: string;
|
|
1663
|
+
/**
|
|
1664
|
+
* @generated from field: docking_event.v1.AgencyNormal operator = 9;
|
|
1665
|
+
*/
|
|
1666
|
+
operator?: AgencyNormal | undefined;
|
|
1667
|
+
/**
|
|
1668
|
+
* @generated from field: repeated docking_event.v1.ProgramMini program = 10;
|
|
1669
|
+
*/
|
|
1670
|
+
program: ProgramMini[];
|
|
1671
|
+
/**
|
|
1672
|
+
* @generated from field: string response_mode = 11;
|
|
1673
|
+
*/
|
|
1674
|
+
responseMode: string;
|
|
1675
|
+
/**
|
|
1676
|
+
* @generated from field: docking_event.v1.PayloadType type = 12;
|
|
1677
|
+
*/
|
|
1678
|
+
type?: PayloadType | undefined;
|
|
1679
|
+
/**
|
|
1680
|
+
* @generated from field: string wiki_link = 13;
|
|
1681
|
+
*/
|
|
1682
|
+
wikiLink: string;
|
|
1683
|
+
};
|
|
1684
|
+
/**
|
|
1685
|
+
* Describes the message docking_event.v1.PayloadNormal.
|
|
1686
|
+
* Use `create(PayloadNormalSchema)` to create a new message.
|
|
1687
|
+
*/
|
|
1688
|
+
export declare const PayloadNormalSchema: GenMessage<PayloadNormal>;
|
|
1689
|
+
/**
|
|
1690
|
+
* @generated from message docking_event.v1.PayloadType
|
|
1691
|
+
*/
|
|
1692
|
+
export type PayloadType = Message<"docking_event.v1.PayloadType"> & {
|
|
1693
|
+
/**
|
|
1694
|
+
* @generated from field: int32 id = 1;
|
|
1695
|
+
*/
|
|
1696
|
+
id: number;
|
|
1697
|
+
/**
|
|
1698
|
+
* @generated from field: string name = 2;
|
|
1699
|
+
*/
|
|
1700
|
+
name: string;
|
|
1701
|
+
};
|
|
1702
|
+
/**
|
|
1703
|
+
* Describes the message docking_event.v1.PayloadType.
|
|
1704
|
+
* Use `create(PayloadTypeSchema)` to create a new message.
|
|
1705
|
+
*/
|
|
1706
|
+
export declare const PayloadTypeSchema: GenMessage<PayloadType>;
|
|
1707
|
+
/**
|
|
1708
|
+
* @generated from message docking_event.v1.ProgramMini
|
|
1709
|
+
*/
|
|
1710
|
+
export type ProgramMini = Message<"docking_event.v1.ProgramMini"> & {
|
|
1711
|
+
/**
|
|
1712
|
+
* @generated from field: int32 id = 1;
|
|
1713
|
+
*/
|
|
1714
|
+
id: number;
|
|
1715
|
+
/**
|
|
1716
|
+
* @generated from field: docking_event.v1.Image image = 2;
|
|
1717
|
+
*/
|
|
1718
|
+
image?: Image | undefined;
|
|
1719
|
+
/**
|
|
1720
|
+
* @generated from field: optional string info_url = 3;
|
|
1721
|
+
*/
|
|
1722
|
+
infoUrl?: string | undefined;
|
|
1723
|
+
/**
|
|
1724
|
+
* @generated from field: string name = 4;
|
|
1725
|
+
*/
|
|
1726
|
+
name: string;
|
|
1727
|
+
/**
|
|
1728
|
+
* @generated from field: string response_mode = 5;
|
|
1729
|
+
*/
|
|
1730
|
+
responseMode: string;
|
|
1731
|
+
/**
|
|
1732
|
+
* @generated from field: string url = 6;
|
|
1733
|
+
*/
|
|
1734
|
+
url: string;
|
|
1735
|
+
/**
|
|
1736
|
+
* @generated from field: optional string wiki_url = 7;
|
|
1737
|
+
*/
|
|
1738
|
+
wikiUrl?: string | undefined;
|
|
1739
|
+
};
|
|
1740
|
+
/**
|
|
1741
|
+
* Describes the message docking_event.v1.ProgramMini.
|
|
1742
|
+
* Use `create(ProgramMiniSchema)` to create a new message.
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const ProgramMiniSchema: GenMessage<ProgramMini>;
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from message docking_event.v1.ProgramNormal
|
|
1747
|
+
*/
|
|
1748
|
+
export type ProgramNormal = Message<"docking_event.v1.ProgramNormal"> & {
|
|
1749
|
+
/**
|
|
1750
|
+
* @generated from field: repeated docking_event.v1.AgencyMini agencies = 1;
|
|
1751
|
+
*/
|
|
1752
|
+
agencies: AgencyMini[];
|
|
1753
|
+
/**
|
|
1754
|
+
* @generated from field: optional string description = 2;
|
|
1755
|
+
*/
|
|
1756
|
+
description?: string | undefined;
|
|
1757
|
+
/**
|
|
1758
|
+
* @generated from field: optional string end_date = 3;
|
|
1759
|
+
*/
|
|
1760
|
+
endDate?: string | undefined;
|
|
1761
|
+
/**
|
|
1762
|
+
* @generated from field: int32 id = 4;
|
|
1763
|
+
*/
|
|
1764
|
+
id: number;
|
|
1765
|
+
/**
|
|
1766
|
+
* @generated from field: docking_event.v1.Image image = 5;
|
|
1767
|
+
*/
|
|
1768
|
+
image?: Image | undefined;
|
|
1769
|
+
/**
|
|
1770
|
+
* @generated from field: optional string info_url = 6;
|
|
1771
|
+
*/
|
|
1772
|
+
infoUrl?: string | undefined;
|
|
1773
|
+
/**
|
|
1774
|
+
* @generated from field: repeated docking_event.v1.MissionPatch mission_patches = 7;
|
|
1775
|
+
*/
|
|
1776
|
+
missionPatches: MissionPatch[];
|
|
1777
|
+
/**
|
|
1778
|
+
* @generated from field: string name = 8;
|
|
1779
|
+
*/
|
|
1780
|
+
name: string;
|
|
1781
|
+
/**
|
|
1782
|
+
* @generated from field: string response_mode = 9;
|
|
1783
|
+
*/
|
|
1784
|
+
responseMode: string;
|
|
1785
|
+
/**
|
|
1786
|
+
* @generated from field: optional string start_date = 10;
|
|
1787
|
+
*/
|
|
1788
|
+
startDate?: string | undefined;
|
|
1789
|
+
/**
|
|
1790
|
+
* @generated from field: docking_event.v1.ProgramType type = 11;
|
|
1791
|
+
*/
|
|
1792
|
+
type?: ProgramType | undefined;
|
|
1793
|
+
/**
|
|
1794
|
+
* @generated from field: string url = 12;
|
|
1795
|
+
*/
|
|
1796
|
+
url: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* @generated from field: optional string wiki_url = 13;
|
|
1799
|
+
*/
|
|
1800
|
+
wikiUrl?: string | undefined;
|
|
1801
|
+
};
|
|
1802
|
+
/**
|
|
1803
|
+
* Describes the message docking_event.v1.ProgramNormal.
|
|
1804
|
+
* Use `create(ProgramNormalSchema)` to create a new message.
|
|
1805
|
+
*/
|
|
1806
|
+
export declare const ProgramNormalSchema: GenMessage<ProgramNormal>;
|
|
1807
|
+
/**
|
|
1808
|
+
* @generated from message docking_event.v1.ProgramType
|
|
1809
|
+
*/
|
|
1810
|
+
export type ProgramType = Message<"docking_event.v1.ProgramType"> & {
|
|
1811
|
+
/**
|
|
1812
|
+
* @generated from field: int32 id = 1;
|
|
1813
|
+
*/
|
|
1814
|
+
id: number;
|
|
1815
|
+
/**
|
|
1816
|
+
* @generated from field: string name = 2;
|
|
1817
|
+
*/
|
|
1818
|
+
name: string;
|
|
1819
|
+
};
|
|
1820
|
+
/**
|
|
1821
|
+
* Describes the message docking_event.v1.ProgramType.
|
|
1822
|
+
* Use `create(ProgramTypeSchema)` to create a new message.
|
|
1823
|
+
*/
|
|
1824
|
+
export declare const ProgramTypeSchema: GenMessage<ProgramType>;
|
|
1825
|
+
/**
|
|
1826
|
+
* @generated from message docking_event.v1.RocketNormal
|
|
1827
|
+
*/
|
|
1828
|
+
export type RocketNormal = Message<"docking_event.v1.RocketNormal"> & {
|
|
1829
|
+
/**
|
|
1830
|
+
* @generated from field: docking_event.v1.LauncherConfigList configuration = 1;
|
|
1831
|
+
*/
|
|
1832
|
+
configuration?: LauncherConfigList | undefined;
|
|
1833
|
+
/**
|
|
1834
|
+
* @generated from field: int32 id = 2;
|
|
1835
|
+
*/
|
|
1836
|
+
id: number;
|
|
1837
|
+
};
|
|
1838
|
+
/**
|
|
1839
|
+
* Describes the message docking_event.v1.RocketNormal.
|
|
1840
|
+
* Use `create(RocketNormalSchema)` to create a new message.
|
|
1841
|
+
*/
|
|
1842
|
+
export declare const RocketNormalSchema: GenMessage<RocketNormal>;
|
|
1843
|
+
/**
|
|
1844
|
+
* @generated from message docking_event.v1.SocialMedia
|
|
1845
|
+
*/
|
|
1846
|
+
export type SocialMedia = Message<"docking_event.v1.SocialMedia"> & {
|
|
1847
|
+
/**
|
|
1848
|
+
* @generated from field: int32 id = 1;
|
|
1849
|
+
*/
|
|
1850
|
+
id: number;
|
|
1851
|
+
/**
|
|
1852
|
+
* @generated from field: docking_event.v1.Image logo = 2;
|
|
1853
|
+
*/
|
|
1854
|
+
logo?: Image | undefined;
|
|
1855
|
+
/**
|
|
1856
|
+
* @generated from field: string name = 3;
|
|
1857
|
+
*/
|
|
1858
|
+
name: string;
|
|
1859
|
+
/**
|
|
1860
|
+
* @generated from field: optional string url = 4;
|
|
1861
|
+
*/
|
|
1862
|
+
url?: string | undefined;
|
|
1863
|
+
};
|
|
1864
|
+
/**
|
|
1865
|
+
* Describes the message docking_event.v1.SocialMedia.
|
|
1866
|
+
* Use `create(SocialMediaSchema)` to create a new message.
|
|
1867
|
+
*/
|
|
1868
|
+
export declare const SocialMediaSchema: GenMessage<SocialMedia>;
|
|
1869
|
+
/**
|
|
1870
|
+
* @generated from message docking_event.v1.SocialMediaLink
|
|
1871
|
+
*/
|
|
1872
|
+
export type SocialMediaLink = Message<"docking_event.v1.SocialMediaLink"> & {
|
|
1873
|
+
/**
|
|
1874
|
+
* @generated from field: int32 id = 1;
|
|
1875
|
+
*/
|
|
1876
|
+
id: number;
|
|
1877
|
+
/**
|
|
1878
|
+
* @generated from field: docking_event.v1.SocialMedia social_media = 2;
|
|
1879
|
+
*/
|
|
1880
|
+
socialMedia?: SocialMedia | undefined;
|
|
1881
|
+
/**
|
|
1882
|
+
* @generated from field: optional string url = 3;
|
|
1883
|
+
*/
|
|
1884
|
+
url?: string | undefined;
|
|
1885
|
+
};
|
|
1886
|
+
/**
|
|
1887
|
+
* Describes the message docking_event.v1.SocialMediaLink.
|
|
1888
|
+
* Use `create(SocialMediaLinkSchema)` to create a new message.
|
|
1889
|
+
*/
|
|
1890
|
+
export declare const SocialMediaLinkSchema: GenMessage<SocialMediaLink>;
|
|
1891
|
+
/**
|
|
1892
|
+
* @generated from message docking_event.v1.SpaceStationMini
|
|
1893
|
+
*/
|
|
1894
|
+
export type SpaceStationMini = Message<"docking_event.v1.SpaceStationMini"> & {
|
|
1895
|
+
/**
|
|
1896
|
+
* @generated from field: int32 id = 1;
|
|
1897
|
+
*/
|
|
1898
|
+
id: number;
|
|
1899
|
+
/**
|
|
1900
|
+
* @generated from field: docking_event.v1.Image image = 2;
|
|
1901
|
+
*/
|
|
1902
|
+
image?: Image | undefined;
|
|
1903
|
+
/**
|
|
1904
|
+
* @generated from field: string name = 3;
|
|
1905
|
+
*/
|
|
1906
|
+
name: string;
|
|
1907
|
+
/**
|
|
1908
|
+
* @generated from field: string url = 4;
|
|
1909
|
+
*/
|
|
1910
|
+
url: string;
|
|
1911
|
+
};
|
|
1912
|
+
/**
|
|
1913
|
+
* Describes the message docking_event.v1.SpaceStationMini.
|
|
1914
|
+
* Use `create(SpaceStationMiniSchema)` to create a new message.
|
|
1915
|
+
*/
|
|
1916
|
+
export declare const SpaceStationMiniSchema: GenMessage<SpaceStationMini>;
|
|
1917
|
+
/**
|
|
1918
|
+
* @generated from message docking_event.v1.SpaceStationNormal
|
|
1919
|
+
*/
|
|
1920
|
+
export type SpaceStationNormal = Message<"docking_event.v1.SpaceStationNormal"> & {
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from field: optional string deorbited = 1;
|
|
1923
|
+
*/
|
|
1924
|
+
deorbited?: string | undefined;
|
|
1925
|
+
/**
|
|
1926
|
+
* @generated from field: string description = 2;
|
|
1927
|
+
*/
|
|
1928
|
+
description: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* @generated from field: string founded = 3;
|
|
1931
|
+
*/
|
|
1932
|
+
founded: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* @generated from field: int32 id = 4;
|
|
1935
|
+
*/
|
|
1936
|
+
id: number;
|
|
1937
|
+
/**
|
|
1938
|
+
* @generated from field: docking_event.v1.Image image = 5;
|
|
1939
|
+
*/
|
|
1940
|
+
image?: Image | undefined;
|
|
1941
|
+
/**
|
|
1942
|
+
* @generated from field: string name = 6;
|
|
1943
|
+
*/
|
|
1944
|
+
name: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* @generated from field: optional string orbit = 7;
|
|
1947
|
+
*/
|
|
1948
|
+
orbit?: string | undefined;
|
|
1949
|
+
/**
|
|
1950
|
+
* @generated from field: docking_event.v1.SpaceStationStatus status = 8;
|
|
1951
|
+
*/
|
|
1952
|
+
status?: SpaceStationStatus | undefined;
|
|
1953
|
+
/**
|
|
1954
|
+
* @generated from field: docking_event.v1.SpaceStationType type = 9;
|
|
1955
|
+
*/
|
|
1956
|
+
type?: SpaceStationType | undefined;
|
|
1957
|
+
/**
|
|
1958
|
+
* @generated from field: string url = 10;
|
|
1959
|
+
*/
|
|
1960
|
+
url: string;
|
|
1961
|
+
};
|
|
1962
|
+
/**
|
|
1963
|
+
* Describes the message docking_event.v1.SpaceStationNormal.
|
|
1964
|
+
* Use `create(SpaceStationNormalSchema)` to create a new message.
|
|
1965
|
+
*/
|
|
1966
|
+
export declare const SpaceStationNormalSchema: GenMessage<SpaceStationNormal>;
|
|
1967
|
+
/**
|
|
1968
|
+
* @generated from message docking_event.v1.SpaceStationStatus
|
|
1969
|
+
*/
|
|
1970
|
+
export type SpaceStationStatus = Message<"docking_event.v1.SpaceStationStatus"> & {
|
|
1971
|
+
/**
|
|
1972
|
+
* @generated from field: int32 id = 1;
|
|
1973
|
+
*/
|
|
1974
|
+
id: number;
|
|
1975
|
+
/**
|
|
1976
|
+
* @generated from field: string name = 2;
|
|
1977
|
+
*/
|
|
1978
|
+
name: string;
|
|
1979
|
+
};
|
|
1980
|
+
/**
|
|
1981
|
+
* Describes the message docking_event.v1.SpaceStationStatus.
|
|
1982
|
+
* Use `create(SpaceStationStatusSchema)` to create a new message.
|
|
1983
|
+
*/
|
|
1984
|
+
export declare const SpaceStationStatusSchema: GenMessage<SpaceStationStatus>;
|
|
1985
|
+
/**
|
|
1986
|
+
* @generated from message docking_event.v1.SpaceStationType
|
|
1987
|
+
*/
|
|
1988
|
+
export type SpaceStationType = Message<"docking_event.v1.SpaceStationType"> & {
|
|
1989
|
+
/**
|
|
1990
|
+
* @generated from field: int32 id = 1;
|
|
1991
|
+
*/
|
|
1992
|
+
id: number;
|
|
1993
|
+
/**
|
|
1994
|
+
* @generated from field: string name = 2;
|
|
1995
|
+
*/
|
|
1996
|
+
name: string;
|
|
1997
|
+
};
|
|
1998
|
+
/**
|
|
1999
|
+
* Describes the message docking_event.v1.SpaceStationType.
|
|
2000
|
+
* Use `create(SpaceStationTypeSchema)` to create a new message.
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const SpaceStationTypeSchema: GenMessage<SpaceStationType>;
|
|
2003
|
+
/**
|
|
2004
|
+
* @generated from message docking_event.v1.SpacecraftConfigFamilyMini
|
|
2005
|
+
*/
|
|
2006
|
+
export type SpacecraftConfigFamilyMini = Message<"docking_event.v1.SpacecraftConfigFamilyMini"> & {
|
|
2007
|
+
/**
|
|
2008
|
+
* @generated from field: int32 id = 1;
|
|
2009
|
+
*/
|
|
2010
|
+
id: number;
|
|
2011
|
+
/**
|
|
2012
|
+
* @generated from field: string name = 2;
|
|
2013
|
+
*/
|
|
2014
|
+
name: string;
|
|
2015
|
+
/**
|
|
2016
|
+
* @generated from field: string response_mode = 3;
|
|
2017
|
+
*/
|
|
2018
|
+
responseMode: string;
|
|
2019
|
+
};
|
|
2020
|
+
/**
|
|
2021
|
+
* Describes the message docking_event.v1.SpacecraftConfigFamilyMini.
|
|
2022
|
+
* Use `create(SpacecraftConfigFamilyMiniSchema)` to create a new message.
|
|
2023
|
+
*/
|
|
2024
|
+
export declare const SpacecraftConfigFamilyMiniSchema: GenMessage<SpacecraftConfigFamilyMini>;
|
|
2025
|
+
/**
|
|
2026
|
+
* @generated from message docking_event.v1.SpacecraftConfigFamilyNormal
|
|
2027
|
+
*/
|
|
2028
|
+
export type SpacecraftConfigFamilyNormal = Message<"docking_event.v1.SpacecraftConfigFamilyNormal"> & {
|
|
2029
|
+
/**
|
|
2030
|
+
* @generated from field: string description = 1;
|
|
2031
|
+
*/
|
|
2032
|
+
description: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* @generated from field: int32 id = 2;
|
|
2035
|
+
*/
|
|
2036
|
+
id: number;
|
|
2037
|
+
/**
|
|
2038
|
+
* @generated from field: optional string maiden_flight = 3;
|
|
2039
|
+
*/
|
|
2040
|
+
maidenFlight?: string | undefined;
|
|
2041
|
+
/**
|
|
2042
|
+
* @generated from field: docking_event.v1.AgencyMini manufacturer = 4;
|
|
2043
|
+
*/
|
|
2044
|
+
manufacturer?: AgencyMini | undefined;
|
|
2045
|
+
/**
|
|
2046
|
+
* @generated from field: string name = 5;
|
|
2047
|
+
*/
|
|
2048
|
+
name: string;
|
|
2049
|
+
/**
|
|
2050
|
+
* @generated from field: docking_event.v1.SpacecraftConfigFamilyMini parent = 6;
|
|
2051
|
+
*/
|
|
2052
|
+
parent?: SpacecraftConfigFamilyMini | undefined;
|
|
2053
|
+
/**
|
|
2054
|
+
* @generated from field: string response_mode = 7;
|
|
2055
|
+
*/
|
|
2056
|
+
responseMode: string;
|
|
2057
|
+
};
|
|
2058
|
+
/**
|
|
2059
|
+
* Describes the message docking_event.v1.SpacecraftConfigFamilyNormal.
|
|
2060
|
+
* Use `create(SpacecraftConfigFamilyNormalSchema)` to create a new message.
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const SpacecraftConfigFamilyNormalSchema: GenMessage<SpacecraftConfigFamilyNormal>;
|
|
2063
|
+
/**
|
|
2064
|
+
* @generated from message docking_event.v1.SpacecraftConfigNormal
|
|
2065
|
+
*/
|
|
2066
|
+
export type SpacecraftConfigNormal = Message<"docking_event.v1.SpacecraftConfigNormal"> & {
|
|
2067
|
+
/**
|
|
2068
|
+
* @generated from field: docking_event.v1.AgencyMini agency = 1;
|
|
2069
|
+
*/
|
|
2070
|
+
agency?: AgencyMini | undefined;
|
|
2071
|
+
/**
|
|
2072
|
+
* @generated from field: repeated docking_event.v1.SpacecraftConfigFamilyNormal family = 2;
|
|
2073
|
+
*/
|
|
2074
|
+
family: SpacecraftConfigFamilyNormal[];
|
|
2075
|
+
/**
|
|
2076
|
+
* @generated from field: int32 id = 3;
|
|
2077
|
+
*/
|
|
2078
|
+
id: number;
|
|
2079
|
+
/**
|
|
2080
|
+
* @generated from field: docking_event.v1.Image image = 4;
|
|
2081
|
+
*/
|
|
2082
|
+
image?: Image | undefined;
|
|
2083
|
+
/**
|
|
2084
|
+
* @generated from field: bool in_use = 5;
|
|
2085
|
+
*/
|
|
2086
|
+
inUse: boolean;
|
|
2087
|
+
/**
|
|
2088
|
+
* @generated from field: string name = 6;
|
|
2089
|
+
*/
|
|
2090
|
+
name: string;
|
|
2091
|
+
/**
|
|
2092
|
+
* @generated from field: string response_mode = 7;
|
|
2093
|
+
*/
|
|
2094
|
+
responseMode: string;
|
|
2095
|
+
/**
|
|
2096
|
+
* @generated from field: docking_event.v1.SpacecraftConfigType type = 8;
|
|
2097
|
+
*/
|
|
2098
|
+
type?: SpacecraftConfigType | undefined;
|
|
2099
|
+
/**
|
|
2100
|
+
* @generated from field: string url = 9;
|
|
2101
|
+
*/
|
|
2102
|
+
url: string;
|
|
2103
|
+
};
|
|
2104
|
+
/**
|
|
2105
|
+
* Describes the message docking_event.v1.SpacecraftConfigNormal.
|
|
2106
|
+
* Use `create(SpacecraftConfigNormalSchema)` to create a new message.
|
|
2107
|
+
*/
|
|
2108
|
+
export declare const SpacecraftConfigNormalSchema: GenMessage<SpacecraftConfigNormal>;
|
|
2109
|
+
/**
|
|
2110
|
+
* @generated from message docking_event.v1.SpacecraftConfigType
|
|
2111
|
+
*/
|
|
2112
|
+
export type SpacecraftConfigType = Message<"docking_event.v1.SpacecraftConfigType"> & {
|
|
2113
|
+
/**
|
|
2114
|
+
* @generated from field: int32 id = 1;
|
|
2115
|
+
*/
|
|
2116
|
+
id: number;
|
|
2117
|
+
/**
|
|
2118
|
+
* @generated from field: string name = 2;
|
|
2119
|
+
*/
|
|
2120
|
+
name: string;
|
|
2121
|
+
};
|
|
2122
|
+
/**
|
|
2123
|
+
* Describes the message docking_event.v1.SpacecraftConfigType.
|
|
2124
|
+
* Use `create(SpacecraftConfigTypeSchema)` to create a new message.
|
|
2125
|
+
*/
|
|
2126
|
+
export declare const SpacecraftConfigTypeSchema: GenMessage<SpacecraftConfigType>;
|
|
2127
|
+
/**
|
|
2128
|
+
* @generated from message docking_event.v1.SpacecraftFlightMini
|
|
2129
|
+
*/
|
|
2130
|
+
export type SpacecraftFlightMini = Message<"docking_event.v1.SpacecraftFlightMini"> & {
|
|
2131
|
+
/**
|
|
2132
|
+
* @generated from field: optional string destination = 1;
|
|
2133
|
+
*/
|
|
2134
|
+
destination?: string | undefined;
|
|
2135
|
+
/**
|
|
2136
|
+
* @generated from field: string duration = 2;
|
|
2137
|
+
*/
|
|
2138
|
+
duration: string;
|
|
2139
|
+
/**
|
|
2140
|
+
* @generated from field: int32 id = 3;
|
|
2141
|
+
*/
|
|
2142
|
+
id: number;
|
|
2143
|
+
/**
|
|
2144
|
+
* @generated from field: docking_event.v1.Landing landing = 4;
|
|
2145
|
+
*/
|
|
2146
|
+
landing?: Landing | undefined;
|
|
2147
|
+
/**
|
|
2148
|
+
* @generated from field: docking_event.v1.LaunchMini launch = 5;
|
|
2149
|
+
*/
|
|
2150
|
+
launch?: LaunchMini | undefined;
|
|
2151
|
+
/**
|
|
2152
|
+
* @generated from field: optional string mission_end = 6;
|
|
2153
|
+
*/
|
|
2154
|
+
missionEnd?: string | undefined;
|
|
2155
|
+
/**
|
|
2156
|
+
* @generated from field: docking_event.v1.SpacecraftNormal spacecraft = 7;
|
|
2157
|
+
*/
|
|
2158
|
+
spacecraft?: SpacecraftNormal | undefined;
|
|
2159
|
+
/**
|
|
2160
|
+
* @generated from field: string turn_around_time = 8;
|
|
2161
|
+
*/
|
|
2162
|
+
turnAroundTime: string;
|
|
2163
|
+
/**
|
|
2164
|
+
* @generated from field: string url = 9;
|
|
2165
|
+
*/
|
|
2166
|
+
url: string;
|
|
2167
|
+
};
|
|
2168
|
+
/**
|
|
2169
|
+
* Describes the message docking_event.v1.SpacecraftFlightMini.
|
|
2170
|
+
* Use `create(SpacecraftFlightMiniSchema)` to create a new message.
|
|
2171
|
+
*/
|
|
2172
|
+
export declare const SpacecraftFlightMiniSchema: GenMessage<SpacecraftFlightMini>;
|
|
2173
|
+
/**
|
|
2174
|
+
* @generated from message docking_event.v1.SpacecraftFlightNormal
|
|
2175
|
+
*/
|
|
2176
|
+
export type SpacecraftFlightNormal = Message<"docking_event.v1.SpacecraftFlightNormal"> & {
|
|
2177
|
+
/**
|
|
2178
|
+
* @generated from field: optional string destination = 1;
|
|
2179
|
+
*/
|
|
2180
|
+
destination?: string | undefined;
|
|
2181
|
+
/**
|
|
2182
|
+
* @generated from field: string duration = 2;
|
|
2183
|
+
*/
|
|
2184
|
+
duration: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* @generated from field: int32 id = 3;
|
|
2187
|
+
*/
|
|
2188
|
+
id: number;
|
|
2189
|
+
/**
|
|
2190
|
+
* @generated from field: docking_event.v1.Landing landing = 4;
|
|
2191
|
+
*/
|
|
2192
|
+
landing?: Landing | undefined;
|
|
2193
|
+
/**
|
|
2194
|
+
* @generated from field: docking_event.v1.LaunchNormal launch = 5;
|
|
2195
|
+
*/
|
|
2196
|
+
launch?: LaunchNormal | undefined;
|
|
2197
|
+
/**
|
|
2198
|
+
* @generated from field: optional string mission_end = 6;
|
|
2199
|
+
*/
|
|
2200
|
+
missionEnd?: string | undefined;
|
|
2201
|
+
/**
|
|
2202
|
+
* @generated from field: string response_mode = 7;
|
|
2203
|
+
*/
|
|
2204
|
+
responseMode: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* @generated from field: docking_event.v1.SpacecraftNormal spacecraft = 8;
|
|
2207
|
+
*/
|
|
2208
|
+
spacecraft?: SpacecraftNormal | undefined;
|
|
2209
|
+
/**
|
|
2210
|
+
* @generated from field: string turn_around_time = 9;
|
|
2211
|
+
*/
|
|
2212
|
+
turnAroundTime: string;
|
|
2213
|
+
/**
|
|
2214
|
+
* @generated from field: string url = 10;
|
|
2215
|
+
*/
|
|
2216
|
+
url: string;
|
|
2217
|
+
};
|
|
2218
|
+
/**
|
|
2219
|
+
* Describes the message docking_event.v1.SpacecraftFlightNormal.
|
|
2220
|
+
* Use `create(SpacecraftFlightNormalSchema)` to create a new message.
|
|
2221
|
+
*/
|
|
2222
|
+
export declare const SpacecraftFlightNormalSchema: GenMessage<SpacecraftFlightNormal>;
|
|
2223
|
+
/**
|
|
2224
|
+
* @generated from message docking_event.v1.SpacecraftNormal
|
|
2225
|
+
*/
|
|
2226
|
+
export type SpacecraftNormal = Message<"docking_event.v1.SpacecraftNormal"> & {
|
|
2227
|
+
/**
|
|
2228
|
+
* @generated from field: string description = 1;
|
|
2229
|
+
*/
|
|
2230
|
+
description: string;
|
|
2231
|
+
/**
|
|
2232
|
+
* @generated from field: optional string fastest_turnaround = 2;
|
|
2233
|
+
*/
|
|
2234
|
+
fastestTurnaround?: string | undefined;
|
|
2235
|
+
/**
|
|
2236
|
+
* @generated from field: optional int32 flights_count = 3;
|
|
2237
|
+
*/
|
|
2238
|
+
flightsCount?: number | undefined;
|
|
2239
|
+
/**
|
|
2240
|
+
* @generated from field: int32 id = 4;
|
|
2241
|
+
*/
|
|
2242
|
+
id: number;
|
|
2243
|
+
/**
|
|
2244
|
+
* @generated from field: docking_event.v1.Image image = 5;
|
|
2245
|
+
*/
|
|
2246
|
+
image?: Image | undefined;
|
|
2247
|
+
/**
|
|
2248
|
+
* @generated from field: bool in_space = 6;
|
|
2249
|
+
*/
|
|
2250
|
+
inSpace: boolean;
|
|
2251
|
+
/**
|
|
2252
|
+
* @generated from field: bool is_placeholder = 7;
|
|
2253
|
+
*/
|
|
2254
|
+
isPlaceholder: boolean;
|
|
2255
|
+
/**
|
|
2256
|
+
* @generated from field: optional int32 mission_ends_count = 8;
|
|
2257
|
+
*/
|
|
2258
|
+
missionEndsCount?: number | undefined;
|
|
2259
|
+
/**
|
|
2260
|
+
* @generated from field: string name = 9;
|
|
2261
|
+
*/
|
|
2262
|
+
name: string;
|
|
2263
|
+
/**
|
|
2264
|
+
* @generated from field: string response_mode = 10;
|
|
2265
|
+
*/
|
|
2266
|
+
responseMode: string;
|
|
2267
|
+
/**
|
|
2268
|
+
* @generated from field: optional string serial_number = 11;
|
|
2269
|
+
*/
|
|
2270
|
+
serialNumber?: string | undefined;
|
|
2271
|
+
/**
|
|
2272
|
+
* @generated from field: docking_event.v1.SpacecraftConfigNormal spacecraft_config = 12;
|
|
2273
|
+
*/
|
|
2274
|
+
spacecraftConfig?: SpacecraftConfigNormal | undefined;
|
|
2275
|
+
/**
|
|
2276
|
+
* @generated from field: docking_event.v1.SpacecraftStatus status = 13;
|
|
2277
|
+
*/
|
|
2278
|
+
status?: SpacecraftStatus | undefined;
|
|
2279
|
+
/**
|
|
2280
|
+
* @generated from field: optional string time_docked = 14;
|
|
2281
|
+
*/
|
|
2282
|
+
timeDocked?: string | undefined;
|
|
2283
|
+
/**
|
|
2284
|
+
* @generated from field: optional string time_in_space = 15;
|
|
2285
|
+
*/
|
|
2286
|
+
timeInSpace?: string | undefined;
|
|
2287
|
+
/**
|
|
2288
|
+
* @generated from field: string url = 16;
|
|
2289
|
+
*/
|
|
2290
|
+
url: string;
|
|
2291
|
+
};
|
|
2292
|
+
/**
|
|
2293
|
+
* Describes the message docking_event.v1.SpacecraftNormal.
|
|
2294
|
+
* Use `create(SpacecraftNormalSchema)` to create a new message.
|
|
2295
|
+
*/
|
|
2296
|
+
export declare const SpacecraftNormalSchema: GenMessage<SpacecraftNormal>;
|
|
2297
|
+
/**
|
|
2298
|
+
* @generated from message docking_event.v1.SpacecraftStatus
|
|
2299
|
+
*/
|
|
2300
|
+
export type SpacecraftStatus = Message<"docking_event.v1.SpacecraftStatus"> & {
|
|
2301
|
+
/**
|
|
2302
|
+
* @generated from field: int32 id = 1;
|
|
2303
|
+
*/
|
|
2304
|
+
id: number;
|
|
2305
|
+
/**
|
|
2306
|
+
* @generated from field: string name = 2;
|
|
2307
|
+
*/
|
|
2308
|
+
name: string;
|
|
2309
|
+
};
|
|
2310
|
+
/**
|
|
2311
|
+
* Describes the message docking_event.v1.SpacecraftStatus.
|
|
2312
|
+
* Use `create(SpacecraftStatusSchema)` to create a new message.
|
|
2313
|
+
*/
|
|
2314
|
+
export declare const SpacecraftStatusSchema: GenMessage<SpacecraftStatus>;
|
|
2315
|
+
/**
|
|
2316
|
+
* @generated from message docking_event.v1.VidURL
|
|
2317
|
+
*/
|
|
2318
|
+
export type VidURL = Message<"docking_event.v1.VidURL"> & {
|
|
2319
|
+
/**
|
|
2320
|
+
* @generated from field: optional string description = 1;
|
|
2321
|
+
*/
|
|
2322
|
+
description?: string | undefined;
|
|
2323
|
+
/**
|
|
2324
|
+
* @generated from field: optional string end_time = 2;
|
|
2325
|
+
*/
|
|
2326
|
+
endTime?: string | undefined;
|
|
2327
|
+
/**
|
|
2328
|
+
* @generated from field: optional string feature_image = 3;
|
|
2329
|
+
*/
|
|
2330
|
+
featureImage?: string | undefined;
|
|
2331
|
+
/**
|
|
2332
|
+
* @generated from field: docking_event.v1.Language language = 4;
|
|
2333
|
+
*/
|
|
2334
|
+
language?: Language | undefined;
|
|
2335
|
+
/**
|
|
2336
|
+
* @generated from field: bool live = 5;
|
|
2337
|
+
*/
|
|
2338
|
+
live: boolean;
|
|
2339
|
+
/**
|
|
2340
|
+
* @generated from field: int32 priority = 6;
|
|
2341
|
+
*/
|
|
2342
|
+
priority: number;
|
|
2343
|
+
/**
|
|
2344
|
+
* @generated from field: optional string publisher = 7;
|
|
2345
|
+
*/
|
|
2346
|
+
publisher?: string | undefined;
|
|
2347
|
+
/**
|
|
2348
|
+
* @generated from field: optional string source = 8;
|
|
2349
|
+
*/
|
|
2350
|
+
source?: string | undefined;
|
|
2351
|
+
/**
|
|
2352
|
+
* @generated from field: optional string start_time = 9;
|
|
2353
|
+
*/
|
|
2354
|
+
startTime?: string | undefined;
|
|
2355
|
+
/**
|
|
2356
|
+
* @generated from field: optional string title = 10;
|
|
2357
|
+
*/
|
|
2358
|
+
title?: string | undefined;
|
|
2359
|
+
/**
|
|
2360
|
+
* @generated from field: docking_event.v1.VidURLType type = 11;
|
|
2361
|
+
*/
|
|
2362
|
+
type?: VidURLType | undefined;
|
|
2363
|
+
/**
|
|
2364
|
+
* @generated from field: string url = 12;
|
|
2365
|
+
*/
|
|
2366
|
+
url: string;
|
|
2367
|
+
};
|
|
2368
|
+
/**
|
|
2369
|
+
* Describes the message docking_event.v1.VidURL.
|
|
2370
|
+
* Use `create(VidURLSchema)` to create a new message.
|
|
2371
|
+
*/
|
|
2372
|
+
export declare const VidURLSchema: GenMessage<VidURL>;
|
|
2373
|
+
/**
|
|
2374
|
+
* @generated from message docking_event.v1.VidURLType
|
|
2375
|
+
*/
|
|
2376
|
+
export type VidURLType = Message<"docking_event.v1.VidURLType"> & {
|
|
2377
|
+
/**
|
|
2378
|
+
* @generated from field: int32 id = 1;
|
|
2379
|
+
*/
|
|
2380
|
+
id: number;
|
|
2381
|
+
/**
|
|
2382
|
+
* @generated from field: string name = 2;
|
|
2383
|
+
*/
|
|
2384
|
+
name: string;
|
|
2385
|
+
};
|
|
2386
|
+
/**
|
|
2387
|
+
* Describes the message docking_event.v1.VidURLType.
|
|
2388
|
+
* Use `create(VidURLTypeSchema)` to create a new message.
|
|
2389
|
+
*/
|
|
2390
|
+
export declare const VidURLTypeSchema: GenMessage<VidURLType>;
|
|
2391
|
+
/**
|
|
2392
|
+
* @generated from message docking_event.v1.ListDockingEventsRequest
|
|
2393
|
+
*/
|
|
2394
|
+
export type ListDockingEventsRequest = Message<"docking_event.v1.ListDockingEventsRequest"> & {
|
|
2395
|
+
/**
|
|
2396
|
+
* @generated from field: int32 limit = 1;
|
|
2397
|
+
*/
|
|
2398
|
+
limit: number;
|
|
2399
|
+
/**
|
|
2400
|
+
* @generated from field: int32 offset = 2;
|
|
2401
|
+
*/
|
|
2402
|
+
offset: number;
|
|
2403
|
+
/**
|
|
2404
|
+
* @generated from field: string search = 3;
|
|
2405
|
+
*/
|
|
2406
|
+
search: string;
|
|
2407
|
+
/**
|
|
2408
|
+
* @generated from field: string mode = 4;
|
|
2409
|
+
*/
|
|
2410
|
+
mode: string;
|
|
2411
|
+
};
|
|
2412
|
+
/**
|
|
2413
|
+
* Describes the message docking_event.v1.ListDockingEventsRequest.
|
|
2414
|
+
* Use `create(ListDockingEventsRequestSchema)` to create a new message.
|
|
2415
|
+
*/
|
|
2416
|
+
export declare const ListDockingEventsRequestSchema: GenMessage<ListDockingEventsRequest>;
|
|
2417
|
+
/**
|
|
2418
|
+
* @generated from message docking_event.v1.ListDockingEventsResponse
|
|
2419
|
+
*/
|
|
2420
|
+
export type ListDockingEventsResponse = Message<"docking_event.v1.ListDockingEventsResponse"> & {
|
|
2421
|
+
/**
|
|
2422
|
+
* @generated from field: int32 count = 1;
|
|
2423
|
+
*/
|
|
2424
|
+
count: number;
|
|
2425
|
+
/**
|
|
2426
|
+
* @generated from field: string next = 2;
|
|
2427
|
+
*/
|
|
2428
|
+
next: string;
|
|
2429
|
+
/**
|
|
2430
|
+
* @generated from field: string previous = 3;
|
|
2431
|
+
*/
|
|
2432
|
+
previous: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* @generated from field: repeated docking_event.v1.DockingEvent results = 4;
|
|
2435
|
+
*/
|
|
2436
|
+
results: DockingEvent[];
|
|
2437
|
+
};
|
|
2438
|
+
/**
|
|
2439
|
+
* Describes the message docking_event.v1.ListDockingEventsResponse.
|
|
2440
|
+
* Use `create(ListDockingEventsResponseSchema)` to create a new message.
|
|
2441
|
+
*/
|
|
2442
|
+
export declare const ListDockingEventsResponseSchema: GenMessage<ListDockingEventsResponse>;
|
|
2443
|
+
/**
|
|
2444
|
+
* @generated from message docking_event.v1.GetDockingEventRequest
|
|
2445
|
+
*/
|
|
2446
|
+
export type GetDockingEventRequest = Message<"docking_event.v1.GetDockingEventRequest"> & {
|
|
2447
|
+
/**
|
|
2448
|
+
* @generated from field: int32 id = 1;
|
|
2449
|
+
*/
|
|
2450
|
+
id: number;
|
|
2451
|
+
/**
|
|
2452
|
+
* @generated from field: string mode = 2;
|
|
2453
|
+
*/
|
|
2454
|
+
mode: string;
|
|
2455
|
+
};
|
|
2456
|
+
/**
|
|
2457
|
+
* Describes the message docking_event.v1.GetDockingEventRequest.
|
|
2458
|
+
* Use `create(GetDockingEventRequestSchema)` to create a new message.
|
|
2459
|
+
*/
|
|
2460
|
+
export declare const GetDockingEventRequestSchema: GenMessage<GetDockingEventRequest>;
|
|
2461
|
+
/**
|
|
2462
|
+
* @generated from message docking_event.v1.GetDockingEventResponse
|
|
2463
|
+
*/
|
|
2464
|
+
export type GetDockingEventResponse = Message<"docking_event.v1.GetDockingEventResponse"> & {
|
|
2465
|
+
/**
|
|
2466
|
+
* @generated from field: docking_event.v1.DockingEvent docking_event = 1;
|
|
2467
|
+
*/
|
|
2468
|
+
dockingEvent?: DockingEvent | undefined;
|
|
2469
|
+
};
|
|
2470
|
+
/**
|
|
2471
|
+
* Describes the message docking_event.v1.GetDockingEventResponse.
|
|
2472
|
+
* Use `create(GetDockingEventResponseSchema)` to create a new message.
|
|
2473
|
+
*/
|
|
2474
|
+
export declare const GetDockingEventResponseSchema: GenMessage<GetDockingEventResponse>;
|
|
2475
|
+
/**
|
|
2476
|
+
* @generated from service docking_event.v1.DockingEventService
|
|
2477
|
+
*/
|
|
2478
|
+
export declare const DockingEventService: GenService<{
|
|
2479
|
+
/**
|
|
2480
|
+
* @generated from rpc docking_event.v1.DockingEventService.ListDockingEvents
|
|
2481
|
+
*/
|
|
2482
|
+
listDockingEvents: {
|
|
2483
|
+
methodKind: "unary";
|
|
2484
|
+
input: typeof ListDockingEventsRequestSchema;
|
|
2485
|
+
output: typeof ListDockingEventsResponseSchema;
|
|
2486
|
+
};
|
|
2487
|
+
/**
|
|
2488
|
+
* @generated from rpc docking_event.v1.DockingEventService.GetDockingEvent
|
|
2489
|
+
*/
|
|
2490
|
+
getDockingEvent: {
|
|
2491
|
+
methodKind: "unary";
|
|
2492
|
+
input: typeof GetDockingEventRequestSchema;
|
|
2493
|
+
output: typeof GetDockingEventResponseSchema;
|
|
2494
|
+
};
|
|
2495
|
+
}>;
|