protobuf-platform 1.2.116 → 1.2.117

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/index.js CHANGED
@@ -33,6 +33,8 @@ const AnalyticService = require('./analytic/analytic_grpc_pb');
33
33
  const AnalyticServiceMessages = require('./analytic/analytic_pb');
34
34
  const SchedulerService = require('./scheduler/scheduler_grpc_pb');
35
35
  const SchedulerServiceMessages = require('./scheduler/scheduler_pb');
36
+ const SportService = require('./sport/sport_grpc_pb');
37
+ const SportServiceMessage = require('./sport/sport_pb');
36
38
  module.exports = {
37
39
  gRPC: gRPC,
38
40
  maxSendMessageLength: 10388608,
@@ -102,4 +104,8 @@ module.exports = {
102
104
  service: SchedulerService,
103
105
  messages: SchedulerServiceMessages
104
106
  },
107
+ sport: {
108
+ service: SportService,
109
+ messages: SportServiceMessage
110
+ },
105
111
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.116",
3
+ "version": "1.2.117",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,14 @@
1
+ syntax = "proto3";
2
+
3
+ package sport;
4
+
5
+ service Sport {
6
+ rpc checkConnection(PingRequest) returns (PongResponse);
7
+ }
8
+ message PingRequest { string ping = 1; }
9
+ message PongResponse { string pong = 1; }
10
+ message PaginationRequest {
11
+ int32 limit = 1;
12
+ int32 offset = 2;
13
+ optional string order = 3;
14
+ }
@@ -0,0 +1,44 @@
1
+ // GENERATED CODE -- DO NOT EDIT!
2
+
3
+ 'use strict';
4
+ var grpc = require('@grpc/grpc-js');
5
+ var sport_pb = require('./sport_pb.js');
6
+
7
+ function serialize_sport_PingRequest(arg) {
8
+ if (!(arg instanceof sport_pb.PingRequest)) {
9
+ throw new Error('Expected argument of type sport.PingRequest');
10
+ }
11
+ return Buffer.from(arg.serializeBinary());
12
+ }
13
+
14
+ function deserialize_sport_PingRequest(buffer_arg) {
15
+ return sport_pb.PingRequest.deserializeBinary(new Uint8Array(buffer_arg));
16
+ }
17
+
18
+ function serialize_sport_PongResponse(arg) {
19
+ if (!(arg instanceof sport_pb.PongResponse)) {
20
+ throw new Error('Expected argument of type sport.PongResponse');
21
+ }
22
+ return Buffer.from(arg.serializeBinary());
23
+ }
24
+
25
+ function deserialize_sport_PongResponse(buffer_arg) {
26
+ return sport_pb.PongResponse.deserializeBinary(new Uint8Array(buffer_arg));
27
+ }
28
+
29
+
30
+ var SportService = exports.SportService = {
31
+ checkConnection: {
32
+ path: '/sport.Sport/checkConnection',
33
+ requestStream: false,
34
+ responseStream: false,
35
+ requestType: sport_pb.PingRequest,
36
+ responseType: sport_pb.PongResponse,
37
+ requestSerialize: serialize_sport_PingRequest,
38
+ requestDeserialize: deserialize_sport_PingRequest,
39
+ responseSerialize: serialize_sport_PongResponse,
40
+ responseDeserialize: deserialize_sport_PongResponse,
41
+ },
42
+ };
43
+
44
+ exports.SportClient = grpc.makeGenericClientConstructor(SportService, 'Sport');
@@ -0,0 +1,558 @@
1
+ // source: sport.proto
2
+ /**
3
+ * @fileoverview
4
+ * @enhanceable
5
+ * @suppress {missingRequire} reports error on implicit type usages.
6
+ * @suppress {messageConventions} JS Compiler reports an error if a variable or
7
+ * field starts with 'MSG_' and isn't a translatable message.
8
+ * @public
9
+ */
10
+ // GENERATED CODE -- DO NOT EDIT!
11
+ /* eslint-disable */
12
+ // @ts-nocheck
13
+
14
+ var jspb = require('google-protobuf');
15
+ var goog = jspb;
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
23
+
24
+ goog.exportSymbol('proto.sport.PaginationRequest', null, global);
25
+ goog.exportSymbol('proto.sport.PingRequest', null, global);
26
+ goog.exportSymbol('proto.sport.PongResponse', null, global);
27
+ /**
28
+ * Generated by JsPbCodeGenerator.
29
+ * @param {Array=} opt_data Optional initial data array, typically from a
30
+ * server response, or constructed directly in Javascript. The array is used
31
+ * in place and becomes part of the constructed object. It is not cloned.
32
+ * If no data is provided, the constructed object will be empty, but still
33
+ * valid.
34
+ * @extends {jspb.Message}
35
+ * @constructor
36
+ */
37
+ proto.sport.PingRequest = function(opt_data) {
38
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
39
+ };
40
+ goog.inherits(proto.sport.PingRequest, jspb.Message);
41
+ if (goog.DEBUG && !COMPILED) {
42
+ /**
43
+ * @public
44
+ * @override
45
+ */
46
+ proto.sport.PingRequest.displayName = 'proto.sport.PingRequest';
47
+ }
48
+ /**
49
+ * Generated by JsPbCodeGenerator.
50
+ * @param {Array=} opt_data Optional initial data array, typically from a
51
+ * server response, or constructed directly in Javascript. The array is used
52
+ * in place and becomes part of the constructed object. It is not cloned.
53
+ * If no data is provided, the constructed object will be empty, but still
54
+ * valid.
55
+ * @extends {jspb.Message}
56
+ * @constructor
57
+ */
58
+ proto.sport.PongResponse = function(opt_data) {
59
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
60
+ };
61
+ goog.inherits(proto.sport.PongResponse, jspb.Message);
62
+ if (goog.DEBUG && !COMPILED) {
63
+ /**
64
+ * @public
65
+ * @override
66
+ */
67
+ proto.sport.PongResponse.displayName = 'proto.sport.PongResponse';
68
+ }
69
+ /**
70
+ * Generated by JsPbCodeGenerator.
71
+ * @param {Array=} opt_data Optional initial data array, typically from a
72
+ * server response, or constructed directly in Javascript. The array is used
73
+ * in place and becomes part of the constructed object. It is not cloned.
74
+ * If no data is provided, the constructed object will be empty, but still
75
+ * valid.
76
+ * @extends {jspb.Message}
77
+ * @constructor
78
+ */
79
+ proto.sport.PaginationRequest = function(opt_data) {
80
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
81
+ };
82
+ goog.inherits(proto.sport.PaginationRequest, jspb.Message);
83
+ if (goog.DEBUG && !COMPILED) {
84
+ /**
85
+ * @public
86
+ * @override
87
+ */
88
+ proto.sport.PaginationRequest.displayName = 'proto.sport.PaginationRequest';
89
+ }
90
+
91
+
92
+
93
+ if (jspb.Message.GENERATE_TO_OBJECT) {
94
+ /**
95
+ * Creates an object representation of this proto.
96
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
97
+ * Optional fields that are not set will be set to undefined.
98
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
99
+ * For the list of reserved names please see:
100
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
101
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
102
+ * JSPB instance for transitional soy proto support:
103
+ * http://goto/soy-param-migration
104
+ * @return {!Object}
105
+ */
106
+ proto.sport.PingRequest.prototype.toObject = function(opt_includeInstance) {
107
+ return proto.sport.PingRequest.toObject(opt_includeInstance, this);
108
+ };
109
+
110
+
111
+ /**
112
+ * Static version of the {@see toObject} method.
113
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
114
+ * the JSPB instance for transitional soy proto support:
115
+ * http://goto/soy-param-migration
116
+ * @param {!proto.sport.PingRequest} msg The msg instance to transform.
117
+ * @return {!Object}
118
+ * @suppress {unusedLocalVariables} f is only used for nested messages
119
+ */
120
+ proto.sport.PingRequest.toObject = function(includeInstance, msg) {
121
+ var f, obj = {
122
+ ping: jspb.Message.getFieldWithDefault(msg, 1, "")
123
+ };
124
+
125
+ if (includeInstance) {
126
+ obj.$jspbMessageInstance = msg;
127
+ }
128
+ return obj;
129
+ };
130
+ }
131
+
132
+
133
+ /**
134
+ * Deserializes binary data (in protobuf wire format).
135
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
136
+ * @return {!proto.sport.PingRequest}
137
+ */
138
+ proto.sport.PingRequest.deserializeBinary = function(bytes) {
139
+ var reader = new jspb.BinaryReader(bytes);
140
+ var msg = new proto.sport.PingRequest;
141
+ return proto.sport.PingRequest.deserializeBinaryFromReader(msg, reader);
142
+ };
143
+
144
+
145
+ /**
146
+ * Deserializes binary data (in protobuf wire format) from the
147
+ * given reader into the given message object.
148
+ * @param {!proto.sport.PingRequest} msg The message object to deserialize into.
149
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
150
+ * @return {!proto.sport.PingRequest}
151
+ */
152
+ proto.sport.PingRequest.deserializeBinaryFromReader = function(msg, reader) {
153
+ while (reader.nextField()) {
154
+ if (reader.isEndGroup()) {
155
+ break;
156
+ }
157
+ var field = reader.getFieldNumber();
158
+ switch (field) {
159
+ case 1:
160
+ var value = /** @type {string} */ (reader.readString());
161
+ msg.setPing(value);
162
+ break;
163
+ default:
164
+ reader.skipField();
165
+ break;
166
+ }
167
+ }
168
+ return msg;
169
+ };
170
+
171
+
172
+ /**
173
+ * Serializes the message to binary data (in protobuf wire format).
174
+ * @return {!Uint8Array}
175
+ */
176
+ proto.sport.PingRequest.prototype.serializeBinary = function() {
177
+ var writer = new jspb.BinaryWriter();
178
+ proto.sport.PingRequest.serializeBinaryToWriter(this, writer);
179
+ return writer.getResultBuffer();
180
+ };
181
+
182
+
183
+ /**
184
+ * Serializes the given message to binary data (in protobuf wire
185
+ * format), writing to the given BinaryWriter.
186
+ * @param {!proto.sport.PingRequest} message
187
+ * @param {!jspb.BinaryWriter} writer
188
+ * @suppress {unusedLocalVariables} f is only used for nested messages
189
+ */
190
+ proto.sport.PingRequest.serializeBinaryToWriter = function(message, writer) {
191
+ var f = undefined;
192
+ f = message.getPing();
193
+ if (f.length > 0) {
194
+ writer.writeString(
195
+ 1,
196
+ f
197
+ );
198
+ }
199
+ };
200
+
201
+
202
+ /**
203
+ * optional string ping = 1;
204
+ * @return {string}
205
+ */
206
+ proto.sport.PingRequest.prototype.getPing = function() {
207
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
208
+ };
209
+
210
+
211
+ /**
212
+ * @param {string} value
213
+ * @return {!proto.sport.PingRequest} returns this
214
+ */
215
+ proto.sport.PingRequest.prototype.setPing = function(value) {
216
+ return jspb.Message.setProto3StringField(this, 1, value);
217
+ };
218
+
219
+
220
+
221
+
222
+
223
+ if (jspb.Message.GENERATE_TO_OBJECT) {
224
+ /**
225
+ * Creates an object representation of this proto.
226
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
227
+ * Optional fields that are not set will be set to undefined.
228
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
229
+ * For the list of reserved names please see:
230
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
231
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
232
+ * JSPB instance for transitional soy proto support:
233
+ * http://goto/soy-param-migration
234
+ * @return {!Object}
235
+ */
236
+ proto.sport.PongResponse.prototype.toObject = function(opt_includeInstance) {
237
+ return proto.sport.PongResponse.toObject(opt_includeInstance, this);
238
+ };
239
+
240
+
241
+ /**
242
+ * Static version of the {@see toObject} method.
243
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
244
+ * the JSPB instance for transitional soy proto support:
245
+ * http://goto/soy-param-migration
246
+ * @param {!proto.sport.PongResponse} msg The msg instance to transform.
247
+ * @return {!Object}
248
+ * @suppress {unusedLocalVariables} f is only used for nested messages
249
+ */
250
+ proto.sport.PongResponse.toObject = function(includeInstance, msg) {
251
+ var f, obj = {
252
+ pong: jspb.Message.getFieldWithDefault(msg, 1, "")
253
+ };
254
+
255
+ if (includeInstance) {
256
+ obj.$jspbMessageInstance = msg;
257
+ }
258
+ return obj;
259
+ };
260
+ }
261
+
262
+
263
+ /**
264
+ * Deserializes binary data (in protobuf wire format).
265
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
266
+ * @return {!proto.sport.PongResponse}
267
+ */
268
+ proto.sport.PongResponse.deserializeBinary = function(bytes) {
269
+ var reader = new jspb.BinaryReader(bytes);
270
+ var msg = new proto.sport.PongResponse;
271
+ return proto.sport.PongResponse.deserializeBinaryFromReader(msg, reader);
272
+ };
273
+
274
+
275
+ /**
276
+ * Deserializes binary data (in protobuf wire format) from the
277
+ * given reader into the given message object.
278
+ * @param {!proto.sport.PongResponse} msg The message object to deserialize into.
279
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
280
+ * @return {!proto.sport.PongResponse}
281
+ */
282
+ proto.sport.PongResponse.deserializeBinaryFromReader = function(msg, reader) {
283
+ while (reader.nextField()) {
284
+ if (reader.isEndGroup()) {
285
+ break;
286
+ }
287
+ var field = reader.getFieldNumber();
288
+ switch (field) {
289
+ case 1:
290
+ var value = /** @type {string} */ (reader.readString());
291
+ msg.setPong(value);
292
+ break;
293
+ default:
294
+ reader.skipField();
295
+ break;
296
+ }
297
+ }
298
+ return msg;
299
+ };
300
+
301
+
302
+ /**
303
+ * Serializes the message to binary data (in protobuf wire format).
304
+ * @return {!Uint8Array}
305
+ */
306
+ proto.sport.PongResponse.prototype.serializeBinary = function() {
307
+ var writer = new jspb.BinaryWriter();
308
+ proto.sport.PongResponse.serializeBinaryToWriter(this, writer);
309
+ return writer.getResultBuffer();
310
+ };
311
+
312
+
313
+ /**
314
+ * Serializes the given message to binary data (in protobuf wire
315
+ * format), writing to the given BinaryWriter.
316
+ * @param {!proto.sport.PongResponse} message
317
+ * @param {!jspb.BinaryWriter} writer
318
+ * @suppress {unusedLocalVariables} f is only used for nested messages
319
+ */
320
+ proto.sport.PongResponse.serializeBinaryToWriter = function(message, writer) {
321
+ var f = undefined;
322
+ f = message.getPong();
323
+ if (f.length > 0) {
324
+ writer.writeString(
325
+ 1,
326
+ f
327
+ );
328
+ }
329
+ };
330
+
331
+
332
+ /**
333
+ * optional string pong = 1;
334
+ * @return {string}
335
+ */
336
+ proto.sport.PongResponse.prototype.getPong = function() {
337
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
338
+ };
339
+
340
+
341
+ /**
342
+ * @param {string} value
343
+ * @return {!proto.sport.PongResponse} returns this
344
+ */
345
+ proto.sport.PongResponse.prototype.setPong = function(value) {
346
+ return jspb.Message.setProto3StringField(this, 1, value);
347
+ };
348
+
349
+
350
+
351
+
352
+
353
+ if (jspb.Message.GENERATE_TO_OBJECT) {
354
+ /**
355
+ * Creates an object representation of this proto.
356
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
357
+ * Optional fields that are not set will be set to undefined.
358
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
359
+ * For the list of reserved names please see:
360
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
361
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
362
+ * JSPB instance for transitional soy proto support:
363
+ * http://goto/soy-param-migration
364
+ * @return {!Object}
365
+ */
366
+ proto.sport.PaginationRequest.prototype.toObject = function(opt_includeInstance) {
367
+ return proto.sport.PaginationRequest.toObject(opt_includeInstance, this);
368
+ };
369
+
370
+
371
+ /**
372
+ * Static version of the {@see toObject} method.
373
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
374
+ * the JSPB instance for transitional soy proto support:
375
+ * http://goto/soy-param-migration
376
+ * @param {!proto.sport.PaginationRequest} msg The msg instance to transform.
377
+ * @return {!Object}
378
+ * @suppress {unusedLocalVariables} f is only used for nested messages
379
+ */
380
+ proto.sport.PaginationRequest.toObject = function(includeInstance, msg) {
381
+ var f, obj = {
382
+ limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
383
+ offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
384
+ order: jspb.Message.getFieldWithDefault(msg, 3, "")
385
+ };
386
+
387
+ if (includeInstance) {
388
+ obj.$jspbMessageInstance = msg;
389
+ }
390
+ return obj;
391
+ };
392
+ }
393
+
394
+
395
+ /**
396
+ * Deserializes binary data (in protobuf wire format).
397
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
398
+ * @return {!proto.sport.PaginationRequest}
399
+ */
400
+ proto.sport.PaginationRequest.deserializeBinary = function(bytes) {
401
+ var reader = new jspb.BinaryReader(bytes);
402
+ var msg = new proto.sport.PaginationRequest;
403
+ return proto.sport.PaginationRequest.deserializeBinaryFromReader(msg, reader);
404
+ };
405
+
406
+
407
+ /**
408
+ * Deserializes binary data (in protobuf wire format) from the
409
+ * given reader into the given message object.
410
+ * @param {!proto.sport.PaginationRequest} msg The message object to deserialize into.
411
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
412
+ * @return {!proto.sport.PaginationRequest}
413
+ */
414
+ proto.sport.PaginationRequest.deserializeBinaryFromReader = function(msg, reader) {
415
+ while (reader.nextField()) {
416
+ if (reader.isEndGroup()) {
417
+ break;
418
+ }
419
+ var field = reader.getFieldNumber();
420
+ switch (field) {
421
+ case 1:
422
+ var value = /** @type {number} */ (reader.readInt32());
423
+ msg.setLimit(value);
424
+ break;
425
+ case 2:
426
+ var value = /** @type {number} */ (reader.readInt32());
427
+ msg.setOffset(value);
428
+ break;
429
+ case 3:
430
+ var value = /** @type {string} */ (reader.readString());
431
+ msg.setOrder(value);
432
+ break;
433
+ default:
434
+ reader.skipField();
435
+ break;
436
+ }
437
+ }
438
+ return msg;
439
+ };
440
+
441
+
442
+ /**
443
+ * Serializes the message to binary data (in protobuf wire format).
444
+ * @return {!Uint8Array}
445
+ */
446
+ proto.sport.PaginationRequest.prototype.serializeBinary = function() {
447
+ var writer = new jspb.BinaryWriter();
448
+ proto.sport.PaginationRequest.serializeBinaryToWriter(this, writer);
449
+ return writer.getResultBuffer();
450
+ };
451
+
452
+
453
+ /**
454
+ * Serializes the given message to binary data (in protobuf wire
455
+ * format), writing to the given BinaryWriter.
456
+ * @param {!proto.sport.PaginationRequest} message
457
+ * @param {!jspb.BinaryWriter} writer
458
+ * @suppress {unusedLocalVariables} f is only used for nested messages
459
+ */
460
+ proto.sport.PaginationRequest.serializeBinaryToWriter = function(message, writer) {
461
+ var f = undefined;
462
+ f = message.getLimit();
463
+ if (f !== 0) {
464
+ writer.writeInt32(
465
+ 1,
466
+ f
467
+ );
468
+ }
469
+ f = message.getOffset();
470
+ if (f !== 0) {
471
+ writer.writeInt32(
472
+ 2,
473
+ f
474
+ );
475
+ }
476
+ f = /** @type {string} */ (jspb.Message.getField(message, 3));
477
+ if (f != null) {
478
+ writer.writeString(
479
+ 3,
480
+ f
481
+ );
482
+ }
483
+ };
484
+
485
+
486
+ /**
487
+ * optional int32 limit = 1;
488
+ * @return {number}
489
+ */
490
+ proto.sport.PaginationRequest.prototype.getLimit = function() {
491
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
492
+ };
493
+
494
+
495
+ /**
496
+ * @param {number} value
497
+ * @return {!proto.sport.PaginationRequest} returns this
498
+ */
499
+ proto.sport.PaginationRequest.prototype.setLimit = function(value) {
500
+ return jspb.Message.setProto3IntField(this, 1, value);
501
+ };
502
+
503
+
504
+ /**
505
+ * optional int32 offset = 2;
506
+ * @return {number}
507
+ */
508
+ proto.sport.PaginationRequest.prototype.getOffset = function() {
509
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
510
+ };
511
+
512
+
513
+ /**
514
+ * @param {number} value
515
+ * @return {!proto.sport.PaginationRequest} returns this
516
+ */
517
+ proto.sport.PaginationRequest.prototype.setOffset = function(value) {
518
+ return jspb.Message.setProto3IntField(this, 2, value);
519
+ };
520
+
521
+
522
+ /**
523
+ * optional string order = 3;
524
+ * @return {string}
525
+ */
526
+ proto.sport.PaginationRequest.prototype.getOrder = function() {
527
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
528
+ };
529
+
530
+
531
+ /**
532
+ * @param {string} value
533
+ * @return {!proto.sport.PaginationRequest} returns this
534
+ */
535
+ proto.sport.PaginationRequest.prototype.setOrder = function(value) {
536
+ return jspb.Message.setField(this, 3, value);
537
+ };
538
+
539
+
540
+ /**
541
+ * Clears the field making it undefined.
542
+ * @return {!proto.sport.PaginationRequest} returns this
543
+ */
544
+ proto.sport.PaginationRequest.prototype.clearOrder = function() {
545
+ return jspb.Message.setField(this, 3, undefined);
546
+ };
547
+
548
+
549
+ /**
550
+ * Returns whether this field is set.
551
+ * @return {boolean}
552
+ */
553
+ proto.sport.PaginationRequest.prototype.hasOrder = function() {
554
+ return jspb.Message.getField(this, 3) != null;
555
+ };
556
+
557
+
558
+ goog.object.extend(exports, proto.sport);
@@ -15,4 +15,5 @@ grpc_tools_node_protoc --js_out=import_style=commonjs,binary:cashback --grpc_out
15
15
  grpc_tools_node_protoc --js_out=import_style=commonjs,binary:promocode --grpc_out=grpc_js:promocode --proto_path=./promocode ./promocode/*.proto &&
16
16
  grpc_tools_node_protoc --js_out=import_style=commonjs,binary:tournament --grpc_out=grpc_js:tournament --proto_path=./tournament ./tournament/*.proto &&
17
17
  grpc_tools_node_protoc --js_out=import_style=commonjs,binary:analytic --grpc_out=grpc_js:analytic --proto_path=./analytic ./analytic/*.proto &&
18
- grpc_tools_node_protoc --js_out=import_style=commonjs,binary:scheduler --grpc_out=grpc_js:scheduler --proto_path=./scheduler ./scheduler/*.proto
18
+ grpc_tools_node_protoc --js_out=import_style=commonjs,binary:scheduler --grpc_out=grpc_js:scheduler --proto_path=./scheduler ./scheduler/*.proto &&
19
+ grpc_tools_node_protoc --js_out=import_style=commonjs,binary:sport --grpc_out=grpc_js:sport --proto_path=./sport ./sport/*.proto