protobuf-platform 1.2.38 → 1.2.39

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/cms/cms.proto CHANGED
@@ -302,7 +302,7 @@ message PromoTranslationResponse {
302
302
  //Game Widget CRUD
303
303
  message GameWidgetRequest {
304
304
  oneof request {
305
- PromoItemRequest game_widget_data = 1;
305
+ GameWidgetItemRequest game_widget_data = 1;
306
306
  File image_small = 2;
307
307
  }
308
308
  }
package/cms/cms_pb.js CHANGED
@@ -12999,7 +12999,7 @@ proto.cms.GameWidgetRequest.prototype.toObject = function(opt_includeInstance) {
12999
12999
  */
13000
13000
  proto.cms.GameWidgetRequest.toObject = function(includeInstance, msg) {
13001
13001
  var f, obj = {
13002
- gameWidgetData: (f = msg.getGameWidgetData()) && proto.cms.PromoItemRequest.toObject(includeInstance, f),
13002
+ gameWidgetData: (f = msg.getGameWidgetData()) && proto.cms.GameWidgetItemRequest.toObject(includeInstance, f),
13003
13003
  imageSmall: (f = msg.getImageSmall()) && proto.cms.File.toObject(includeInstance, f)
13004
13004
  };
13005
13005
 
@@ -13038,8 +13038,8 @@ proto.cms.GameWidgetRequest.deserializeBinaryFromReader = function(msg, reader)
13038
13038
  var field = reader.getFieldNumber();
13039
13039
  switch (field) {
13040
13040
  case 1:
13041
- var value = new proto.cms.PromoItemRequest;
13042
- reader.readMessage(value,proto.cms.PromoItemRequest.deserializeBinaryFromReader);
13041
+ var value = new proto.cms.GameWidgetItemRequest;
13042
+ reader.readMessage(value,proto.cms.GameWidgetItemRequest.deserializeBinaryFromReader);
13043
13043
  msg.setGameWidgetData(value);
13044
13044
  break;
13045
13045
  case 2:
@@ -13081,7 +13081,7 @@ proto.cms.GameWidgetRequest.serializeBinaryToWriter = function(message, writer)
13081
13081
  writer.writeMessage(
13082
13082
  1,
13083
13083
  f,
13084
- proto.cms.PromoItemRequest.serializeBinaryToWriter
13084
+ proto.cms.GameWidgetItemRequest.serializeBinaryToWriter
13085
13085
  );
13086
13086
  }
13087
13087
  f = message.getImageSmall();
@@ -13096,17 +13096,17 @@ proto.cms.GameWidgetRequest.serializeBinaryToWriter = function(message, writer)
13096
13096
 
13097
13097
 
13098
13098
  /**
13099
- * optional PromoItemRequest game_widget_data = 1;
13100
- * @return {?proto.cms.PromoItemRequest}
13099
+ * optional GameWidgetItemRequest game_widget_data = 1;
13100
+ * @return {?proto.cms.GameWidgetItemRequest}
13101
13101
  */
13102
13102
  proto.cms.GameWidgetRequest.prototype.getGameWidgetData = function() {
13103
- return /** @type{?proto.cms.PromoItemRequest} */ (
13104
- jspb.Message.getWrapperField(this, proto.cms.PromoItemRequest, 1));
13103
+ return /** @type{?proto.cms.GameWidgetItemRequest} */ (
13104
+ jspb.Message.getWrapperField(this, proto.cms.GameWidgetItemRequest, 1));
13105
13105
  };
13106
13106
 
13107
13107
 
13108
13108
  /**
13109
- * @param {?proto.cms.PromoItemRequest|undefined} value
13109
+ * @param {?proto.cms.GameWidgetItemRequest|undefined} value
13110
13110
  * @return {!proto.cms.GameWidgetRequest} returns this
13111
13111
  */
13112
13112
  proto.cms.GameWidgetRequest.prototype.setGameWidgetData = function(value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.38",
3
+ "version": "1.2.39",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {