protobuf-platform 1.2.308 → 1.2.309

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/game/game.proto CHANGED
@@ -44,6 +44,7 @@ service Game {
44
44
  rpc readListProviders(PaginationRequest) returns (ProviderItemsResponse);
45
45
  rpc updateProvidersInBunch(ItemsBunchRequest) returns (ProviderStatusResponse);
46
46
  rpc syncProvidersImages(SyncImagesRequest) returns (ProviderStatusResponse);
47
+ rpc normalizeDuplicateProviders(NormalizeDuplicateProvidersRequest) returns (NormalizeDuplicateProvidersResponse);
47
48
  //Games
48
49
  rpc parseGames(ParseGamesRequest) returns (ParseGamesResponse);
49
50
  rpc readSingleGame(GetGameRequest) returns (GameResponse);
@@ -415,6 +416,16 @@ message ProviderItemsResponse {
415
416
  message ProviderStatusResponse {
416
417
  string status = 1;
417
418
  }
419
+ message NormalizeDuplicateProvidersRequest {
420
+ optional bool dry_run = 1;
421
+ }
422
+ message NormalizeDuplicateProvidersResponse {
423
+ bool dry_run = 1;
424
+ int32 groups_checked = 2;
425
+ int32 groups_matched = 3;
426
+ int32 providers_updated = 4;
427
+ int32 providers_skipped = 5;
428
+ }
418
429
 
419
430
  //Games Common
420
431
  message ParseGamesRequest { string vendor = 1; }
@@ -664,6 +664,28 @@ function deserialize_game_ItemsBunchRequest(buffer_arg) {
664
664
  return game_pb.ItemsBunchRequest.deserializeBinary(new Uint8Array(buffer_arg));
665
665
  }
666
666
 
667
+ function serialize_game_NormalizeDuplicateProvidersRequest(arg) {
668
+ if (!(arg instanceof game_pb.NormalizeDuplicateProvidersRequest)) {
669
+ throw new Error('Expected argument of type game.NormalizeDuplicateProvidersRequest');
670
+ }
671
+ return Buffer.from(arg.serializeBinary());
672
+ }
673
+
674
+ function deserialize_game_NormalizeDuplicateProvidersRequest(buffer_arg) {
675
+ return game_pb.NormalizeDuplicateProvidersRequest.deserializeBinary(new Uint8Array(buffer_arg));
676
+ }
677
+
678
+ function serialize_game_NormalizeDuplicateProvidersResponse(arg) {
679
+ if (!(arg instanceof game_pb.NormalizeDuplicateProvidersResponse)) {
680
+ throw new Error('Expected argument of type game.NormalizeDuplicateProvidersResponse');
681
+ }
682
+ return Buffer.from(arg.serializeBinary());
683
+ }
684
+
685
+ function deserialize_game_NormalizeDuplicateProvidersResponse(buffer_arg) {
686
+ return game_pb.NormalizeDuplicateProvidersResponse.deserializeBinary(new Uint8Array(buffer_arg));
687
+ }
688
+
667
689
  function serialize_game_PaginationRequest(arg) {
668
690
  if (!(arg instanceof game_pb.PaginationRequest)) {
669
691
  throw new Error('Expected argument of type game.PaginationRequest');
@@ -1519,6 +1541,17 @@ createSingleProvider: {
1519
1541
  responseSerialize: serialize_game_ProviderStatusResponse,
1520
1542
  responseDeserialize: deserialize_game_ProviderStatusResponse,
1521
1543
  },
1544
+ normalizeDuplicateProviders: {
1545
+ path: '/game.Game/normalizeDuplicateProviders',
1546
+ requestStream: false,
1547
+ responseStream: false,
1548
+ requestType: game_pb.NormalizeDuplicateProvidersRequest,
1549
+ responseType: game_pb.NormalizeDuplicateProvidersResponse,
1550
+ requestSerialize: serialize_game_NormalizeDuplicateProvidersRequest,
1551
+ requestDeserialize: deserialize_game_NormalizeDuplicateProvidersRequest,
1552
+ responseSerialize: serialize_game_NormalizeDuplicateProvidersResponse,
1553
+ responseDeserialize: deserialize_game_NormalizeDuplicateProvidersResponse,
1554
+ },
1522
1555
  // Games
1523
1556
  parseGames: {
1524
1557
  path: '/game.Game/parseGames',
package/game/game_pb.js CHANGED
@@ -105,6 +105,8 @@ goog.exportSymbol('proto.game.IntegratorSelfValidationResponse', null, global);
105
105
  goog.exportSymbol('proto.game.IntegratorSettingsRequest', null, global);
106
106
  goog.exportSymbol('proto.game.IntegratorSettingsResponse', null, global);
107
107
  goog.exportSymbol('proto.game.ItemsBunchRequest', null, global);
108
+ goog.exportSymbol('proto.game.NormalizeDuplicateProvidersRequest', null, global);
109
+ goog.exportSymbol('proto.game.NormalizeDuplicateProvidersResponse', null, global);
108
110
  goog.exportSymbol('proto.game.PaginationRequest', null, global);
109
111
  goog.exportSymbol('proto.game.ParseGameImagesForAllInboundRequest', null, global);
110
112
  goog.exportSymbol('proto.game.ParseGameImagesForProviderRequest', null, global);
@@ -1190,6 +1192,48 @@ if (goog.DEBUG && !COMPILED) {
1190
1192
  */
1191
1193
  proto.game.ProviderStatusResponse.displayName = 'proto.game.ProviderStatusResponse';
1192
1194
  }
1195
+ /**
1196
+ * Generated by JsPbCodeGenerator.
1197
+ * @param {Array=} opt_data Optional initial data array, typically from a
1198
+ * server response, or constructed directly in Javascript. The array is used
1199
+ * in place and becomes part of the constructed object. It is not cloned.
1200
+ * If no data is provided, the constructed object will be empty, but still
1201
+ * valid.
1202
+ * @extends {jspb.Message}
1203
+ * @constructor
1204
+ */
1205
+ proto.game.NormalizeDuplicateProvidersRequest = function(opt_data) {
1206
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1207
+ };
1208
+ goog.inherits(proto.game.NormalizeDuplicateProvidersRequest, jspb.Message);
1209
+ if (goog.DEBUG && !COMPILED) {
1210
+ /**
1211
+ * @public
1212
+ * @override
1213
+ */
1214
+ proto.game.NormalizeDuplicateProvidersRequest.displayName = 'proto.game.NormalizeDuplicateProvidersRequest';
1215
+ }
1216
+ /**
1217
+ * Generated by JsPbCodeGenerator.
1218
+ * @param {Array=} opt_data Optional initial data array, typically from a
1219
+ * server response, or constructed directly in Javascript. The array is used
1220
+ * in place and becomes part of the constructed object. It is not cloned.
1221
+ * If no data is provided, the constructed object will be empty, but still
1222
+ * valid.
1223
+ * @extends {jspb.Message}
1224
+ * @constructor
1225
+ */
1226
+ proto.game.NormalizeDuplicateProvidersResponse = function(opt_data) {
1227
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1228
+ };
1229
+ goog.inherits(proto.game.NormalizeDuplicateProvidersResponse, jspb.Message);
1230
+ if (goog.DEBUG && !COMPILED) {
1231
+ /**
1232
+ * @public
1233
+ * @override
1234
+ */
1235
+ proto.game.NormalizeDuplicateProvidersResponse.displayName = 'proto.game.NormalizeDuplicateProvidersResponse';
1236
+ }
1193
1237
  /**
1194
1238
  * Generated by JsPbCodeGenerator.
1195
1239
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -16492,6 +16536,404 @@ proto.game.ProviderStatusResponse.prototype.setStatus = function(value) {
16492
16536
 
16493
16537
 
16494
16538
 
16539
+ if (jspb.Message.GENERATE_TO_OBJECT) {
16540
+ /**
16541
+ * Creates an object representation of this proto.
16542
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
16543
+ * Optional fields that are not set will be set to undefined.
16544
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
16545
+ * For the list of reserved names please see:
16546
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
16547
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
16548
+ * JSPB instance for transitional soy proto support:
16549
+ * http://goto/soy-param-migration
16550
+ * @return {!Object}
16551
+ */
16552
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.toObject = function(opt_includeInstance) {
16553
+ return proto.game.NormalizeDuplicateProvidersRequest.toObject(opt_includeInstance, this);
16554
+ };
16555
+
16556
+
16557
+ /**
16558
+ * Static version of the {@see toObject} method.
16559
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
16560
+ * the JSPB instance for transitional soy proto support:
16561
+ * http://goto/soy-param-migration
16562
+ * @param {!proto.game.NormalizeDuplicateProvidersRequest} msg The msg instance to transform.
16563
+ * @return {!Object}
16564
+ * @suppress {unusedLocalVariables} f is only used for nested messages
16565
+ */
16566
+ proto.game.NormalizeDuplicateProvidersRequest.toObject = function(includeInstance, msg) {
16567
+ var f, obj = {
16568
+ dryRun: jspb.Message.getBooleanFieldWithDefault(msg, 1, false)
16569
+ };
16570
+
16571
+ if (includeInstance) {
16572
+ obj.$jspbMessageInstance = msg;
16573
+ }
16574
+ return obj;
16575
+ };
16576
+ }
16577
+
16578
+
16579
+ /**
16580
+ * Deserializes binary data (in protobuf wire format).
16581
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
16582
+ * @return {!proto.game.NormalizeDuplicateProvidersRequest}
16583
+ */
16584
+ proto.game.NormalizeDuplicateProvidersRequest.deserializeBinary = function(bytes) {
16585
+ var reader = new jspb.BinaryReader(bytes);
16586
+ var msg = new proto.game.NormalizeDuplicateProvidersRequest;
16587
+ return proto.game.NormalizeDuplicateProvidersRequest.deserializeBinaryFromReader(msg, reader);
16588
+ };
16589
+
16590
+
16591
+ /**
16592
+ * Deserializes binary data (in protobuf wire format) from the
16593
+ * given reader into the given message object.
16594
+ * @param {!proto.game.NormalizeDuplicateProvidersRequest} msg The message object to deserialize into.
16595
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
16596
+ * @return {!proto.game.NormalizeDuplicateProvidersRequest}
16597
+ */
16598
+ proto.game.NormalizeDuplicateProvidersRequest.deserializeBinaryFromReader = function(msg, reader) {
16599
+ while (reader.nextField()) {
16600
+ if (reader.isEndGroup()) {
16601
+ break;
16602
+ }
16603
+ var field = reader.getFieldNumber();
16604
+ switch (field) {
16605
+ case 1:
16606
+ var value = /** @type {boolean} */ (reader.readBool());
16607
+ msg.setDryRun(value);
16608
+ break;
16609
+ default:
16610
+ reader.skipField();
16611
+ break;
16612
+ }
16613
+ }
16614
+ return msg;
16615
+ };
16616
+
16617
+
16618
+ /**
16619
+ * Serializes the message to binary data (in protobuf wire format).
16620
+ * @return {!Uint8Array}
16621
+ */
16622
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.serializeBinary = function() {
16623
+ var writer = new jspb.BinaryWriter();
16624
+ proto.game.NormalizeDuplicateProvidersRequest.serializeBinaryToWriter(this, writer);
16625
+ return writer.getResultBuffer();
16626
+ };
16627
+
16628
+
16629
+ /**
16630
+ * Serializes the given message to binary data (in protobuf wire
16631
+ * format), writing to the given BinaryWriter.
16632
+ * @param {!proto.game.NormalizeDuplicateProvidersRequest} message
16633
+ * @param {!jspb.BinaryWriter} writer
16634
+ * @suppress {unusedLocalVariables} f is only used for nested messages
16635
+ */
16636
+ proto.game.NormalizeDuplicateProvidersRequest.serializeBinaryToWriter = function(message, writer) {
16637
+ var f = undefined;
16638
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 1));
16639
+ if (f != null) {
16640
+ writer.writeBool(
16641
+ 1,
16642
+ f
16643
+ );
16644
+ }
16645
+ };
16646
+
16647
+
16648
+ /**
16649
+ * optional bool dry_run = 1;
16650
+ * @return {boolean}
16651
+ */
16652
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.getDryRun = function() {
16653
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 1, false));
16654
+ };
16655
+
16656
+
16657
+ /**
16658
+ * @param {boolean} value
16659
+ * @return {!proto.game.NormalizeDuplicateProvidersRequest} returns this
16660
+ */
16661
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.setDryRun = function(value) {
16662
+ return jspb.Message.setField(this, 1, value);
16663
+ };
16664
+
16665
+
16666
+ /**
16667
+ * Clears the field making it undefined.
16668
+ * @return {!proto.game.NormalizeDuplicateProvidersRequest} returns this
16669
+ */
16670
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.clearDryRun = function() {
16671
+ return jspb.Message.setField(this, 1, undefined);
16672
+ };
16673
+
16674
+
16675
+ /**
16676
+ * Returns whether this field is set.
16677
+ * @return {boolean}
16678
+ */
16679
+ proto.game.NormalizeDuplicateProvidersRequest.prototype.hasDryRun = function() {
16680
+ return jspb.Message.getField(this, 1) != null;
16681
+ };
16682
+
16683
+
16684
+
16685
+
16686
+
16687
+ if (jspb.Message.GENERATE_TO_OBJECT) {
16688
+ /**
16689
+ * Creates an object representation of this proto.
16690
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
16691
+ * Optional fields that are not set will be set to undefined.
16692
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
16693
+ * For the list of reserved names please see:
16694
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
16695
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
16696
+ * JSPB instance for transitional soy proto support:
16697
+ * http://goto/soy-param-migration
16698
+ * @return {!Object}
16699
+ */
16700
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.toObject = function(opt_includeInstance) {
16701
+ return proto.game.NormalizeDuplicateProvidersResponse.toObject(opt_includeInstance, this);
16702
+ };
16703
+
16704
+
16705
+ /**
16706
+ * Static version of the {@see toObject} method.
16707
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
16708
+ * the JSPB instance for transitional soy proto support:
16709
+ * http://goto/soy-param-migration
16710
+ * @param {!proto.game.NormalizeDuplicateProvidersResponse} msg The msg instance to transform.
16711
+ * @return {!Object}
16712
+ * @suppress {unusedLocalVariables} f is only used for nested messages
16713
+ */
16714
+ proto.game.NormalizeDuplicateProvidersResponse.toObject = function(includeInstance, msg) {
16715
+ var f, obj = {
16716
+ dryRun: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
16717
+ groupsChecked: jspb.Message.getFieldWithDefault(msg, 2, 0),
16718
+ groupsMatched: jspb.Message.getFieldWithDefault(msg, 3, 0),
16719
+ providersUpdated: jspb.Message.getFieldWithDefault(msg, 4, 0),
16720
+ providersSkipped: jspb.Message.getFieldWithDefault(msg, 5, 0)
16721
+ };
16722
+
16723
+ if (includeInstance) {
16724
+ obj.$jspbMessageInstance = msg;
16725
+ }
16726
+ return obj;
16727
+ };
16728
+ }
16729
+
16730
+
16731
+ /**
16732
+ * Deserializes binary data (in protobuf wire format).
16733
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
16734
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse}
16735
+ */
16736
+ proto.game.NormalizeDuplicateProvidersResponse.deserializeBinary = function(bytes) {
16737
+ var reader = new jspb.BinaryReader(bytes);
16738
+ var msg = new proto.game.NormalizeDuplicateProvidersResponse;
16739
+ return proto.game.NormalizeDuplicateProvidersResponse.deserializeBinaryFromReader(msg, reader);
16740
+ };
16741
+
16742
+
16743
+ /**
16744
+ * Deserializes binary data (in protobuf wire format) from the
16745
+ * given reader into the given message object.
16746
+ * @param {!proto.game.NormalizeDuplicateProvidersResponse} msg The message object to deserialize into.
16747
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
16748
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse}
16749
+ */
16750
+ proto.game.NormalizeDuplicateProvidersResponse.deserializeBinaryFromReader = function(msg, reader) {
16751
+ while (reader.nextField()) {
16752
+ if (reader.isEndGroup()) {
16753
+ break;
16754
+ }
16755
+ var field = reader.getFieldNumber();
16756
+ switch (field) {
16757
+ case 1:
16758
+ var value = /** @type {boolean} */ (reader.readBool());
16759
+ msg.setDryRun(value);
16760
+ break;
16761
+ case 2:
16762
+ var value = /** @type {number} */ (reader.readInt32());
16763
+ msg.setGroupsChecked(value);
16764
+ break;
16765
+ case 3:
16766
+ var value = /** @type {number} */ (reader.readInt32());
16767
+ msg.setGroupsMatched(value);
16768
+ break;
16769
+ case 4:
16770
+ var value = /** @type {number} */ (reader.readInt32());
16771
+ msg.setProvidersUpdated(value);
16772
+ break;
16773
+ case 5:
16774
+ var value = /** @type {number} */ (reader.readInt32());
16775
+ msg.setProvidersSkipped(value);
16776
+ break;
16777
+ default:
16778
+ reader.skipField();
16779
+ break;
16780
+ }
16781
+ }
16782
+ return msg;
16783
+ };
16784
+
16785
+
16786
+ /**
16787
+ * Serializes the message to binary data (in protobuf wire format).
16788
+ * @return {!Uint8Array}
16789
+ */
16790
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.serializeBinary = function() {
16791
+ var writer = new jspb.BinaryWriter();
16792
+ proto.game.NormalizeDuplicateProvidersResponse.serializeBinaryToWriter(this, writer);
16793
+ return writer.getResultBuffer();
16794
+ };
16795
+
16796
+
16797
+ /**
16798
+ * Serializes the given message to binary data (in protobuf wire
16799
+ * format), writing to the given BinaryWriter.
16800
+ * @param {!proto.game.NormalizeDuplicateProvidersResponse} message
16801
+ * @param {!jspb.BinaryWriter} writer
16802
+ * @suppress {unusedLocalVariables} f is only used for nested messages
16803
+ */
16804
+ proto.game.NormalizeDuplicateProvidersResponse.serializeBinaryToWriter = function(message, writer) {
16805
+ var f = undefined;
16806
+ f = message.getDryRun();
16807
+ if (f) {
16808
+ writer.writeBool(
16809
+ 1,
16810
+ f
16811
+ );
16812
+ }
16813
+ f = message.getGroupsChecked();
16814
+ if (f !== 0) {
16815
+ writer.writeInt32(
16816
+ 2,
16817
+ f
16818
+ );
16819
+ }
16820
+ f = message.getGroupsMatched();
16821
+ if (f !== 0) {
16822
+ writer.writeInt32(
16823
+ 3,
16824
+ f
16825
+ );
16826
+ }
16827
+ f = message.getProvidersUpdated();
16828
+ if (f !== 0) {
16829
+ writer.writeInt32(
16830
+ 4,
16831
+ f
16832
+ );
16833
+ }
16834
+ f = message.getProvidersSkipped();
16835
+ if (f !== 0) {
16836
+ writer.writeInt32(
16837
+ 5,
16838
+ f
16839
+ );
16840
+ }
16841
+ };
16842
+
16843
+
16844
+ /**
16845
+ * optional bool dry_run = 1;
16846
+ * @return {boolean}
16847
+ */
16848
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.getDryRun = function() {
16849
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 1, false));
16850
+ };
16851
+
16852
+
16853
+ /**
16854
+ * @param {boolean} value
16855
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse} returns this
16856
+ */
16857
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.setDryRun = function(value) {
16858
+ return jspb.Message.setProto3BooleanField(this, 1, value);
16859
+ };
16860
+
16861
+
16862
+ /**
16863
+ * optional int32 groups_checked = 2;
16864
+ * @return {number}
16865
+ */
16866
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.getGroupsChecked = function() {
16867
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
16868
+ };
16869
+
16870
+
16871
+ /**
16872
+ * @param {number} value
16873
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse} returns this
16874
+ */
16875
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.setGroupsChecked = function(value) {
16876
+ return jspb.Message.setProto3IntField(this, 2, value);
16877
+ };
16878
+
16879
+
16880
+ /**
16881
+ * optional int32 groups_matched = 3;
16882
+ * @return {number}
16883
+ */
16884
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.getGroupsMatched = function() {
16885
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
16886
+ };
16887
+
16888
+
16889
+ /**
16890
+ * @param {number} value
16891
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse} returns this
16892
+ */
16893
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.setGroupsMatched = function(value) {
16894
+ return jspb.Message.setProto3IntField(this, 3, value);
16895
+ };
16896
+
16897
+
16898
+ /**
16899
+ * optional int32 providers_updated = 4;
16900
+ * @return {number}
16901
+ */
16902
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.getProvidersUpdated = function() {
16903
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
16904
+ };
16905
+
16906
+
16907
+ /**
16908
+ * @param {number} value
16909
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse} returns this
16910
+ */
16911
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.setProvidersUpdated = function(value) {
16912
+ return jspb.Message.setProto3IntField(this, 4, value);
16913
+ };
16914
+
16915
+
16916
+ /**
16917
+ * optional int32 providers_skipped = 5;
16918
+ * @return {number}
16919
+ */
16920
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.getProvidersSkipped = function() {
16921
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
16922
+ };
16923
+
16924
+
16925
+ /**
16926
+ * @param {number} value
16927
+ * @return {!proto.game.NormalizeDuplicateProvidersResponse} returns this
16928
+ */
16929
+ proto.game.NormalizeDuplicateProvidersResponse.prototype.setProvidersSkipped = function(value) {
16930
+ return jspb.Message.setProto3IntField(this, 5, value);
16931
+ };
16932
+
16933
+
16934
+
16935
+
16936
+
16495
16937
  if (jspb.Message.GENERATE_TO_OBJECT) {
16496
16938
  /**
16497
16939
  * Creates an object representation of this proto.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.308",
3
+ "version": "1.2.309",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {