protobuf-platform 1.2.396 → 1.2.397

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
@@ -487,6 +487,7 @@ message SetPageSeoAttributesRequest {
487
487
  optional string h1 = 10;
488
488
  optional string description = 11;
489
489
  optional string full_description = 12;
490
+ optional string additional_description = 13;
490
491
  }
491
492
  message GetPageSeoAttributesRequest {
492
493
  string geo = 1;
@@ -507,6 +508,7 @@ message PageSeoAttributesItem {
507
508
  optional string h1 = 10;
508
509
  optional string description = 11;
509
510
  optional string full_description = 12;
511
+ optional string additional_description = 13;
510
512
  }
511
513
  message PageSeoAttributesResponse {
512
514
  PageSeoAttributesItem data = 1;
package/cms/cms_pb.js CHANGED
@@ -19563,7 +19563,8 @@ proto.cms.SetPageSeoAttributesRequest.toObject = function(includeInstance, msg)
19563
19563
  twitterDescription: jspb.Message.getFieldWithDefault(msg, 9, ""),
19564
19564
  h1: jspb.Message.getFieldWithDefault(msg, 10, ""),
19565
19565
  description: jspb.Message.getFieldWithDefault(msg, 11, ""),
19566
- fullDescription: jspb.Message.getFieldWithDefault(msg, 12, "")
19566
+ fullDescription: jspb.Message.getFieldWithDefault(msg, 12, ""),
19567
+ additionalDescription: jspb.Message.getFieldWithDefault(msg, 13, "")
19567
19568
  };
19568
19569
 
19569
19570
  if (includeInstance) {
@@ -19648,6 +19649,10 @@ proto.cms.SetPageSeoAttributesRequest.deserializeBinaryFromReader = function(msg
19648
19649
  var value = /** @type {string} */ (reader.readString());
19649
19650
  msg.setFullDescription(value);
19650
19651
  break;
19652
+ case 13:
19653
+ var value = /** @type {string} */ (reader.readString());
19654
+ msg.setAdditionalDescription(value);
19655
+ break;
19651
19656
  default:
19652
19657
  reader.skipField();
19653
19658
  break;
@@ -19761,6 +19766,13 @@ proto.cms.SetPageSeoAttributesRequest.serializeBinaryToWriter = function(message
19761
19766
  f
19762
19767
  );
19763
19768
  }
19769
+ f = /** @type {string} */ (jspb.Message.getField(message, 13));
19770
+ if (f != null) {
19771
+ writer.writeString(
19772
+ 13,
19773
+ f
19774
+ );
19775
+ }
19764
19776
  };
19765
19777
 
19766
19778
 
@@ -20142,6 +20154,42 @@ proto.cms.SetPageSeoAttributesRequest.prototype.hasFullDescription = function()
20142
20154
  };
20143
20155
 
20144
20156
 
20157
+ /**
20158
+ * optional string additional_description = 13;
20159
+ * @return {string}
20160
+ */
20161
+ proto.cms.SetPageSeoAttributesRequest.prototype.getAdditionalDescription = function() {
20162
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
20163
+ };
20164
+
20165
+
20166
+ /**
20167
+ * @param {string} value
20168
+ * @return {!proto.cms.SetPageSeoAttributesRequest} returns this
20169
+ */
20170
+ proto.cms.SetPageSeoAttributesRequest.prototype.setAdditionalDescription = function(value) {
20171
+ return jspb.Message.setField(this, 13, value);
20172
+ };
20173
+
20174
+
20175
+ /**
20176
+ * Clears the field making it undefined.
20177
+ * @return {!proto.cms.SetPageSeoAttributesRequest} returns this
20178
+ */
20179
+ proto.cms.SetPageSeoAttributesRequest.prototype.clearAdditionalDescription = function() {
20180
+ return jspb.Message.setField(this, 13, undefined);
20181
+ };
20182
+
20183
+
20184
+ /**
20185
+ * Returns whether this field is set.
20186
+ * @return {boolean}
20187
+ */
20188
+ proto.cms.SetPageSeoAttributesRequest.prototype.hasAdditionalDescription = function() {
20189
+ return jspb.Message.getField(this, 13) != null;
20190
+ };
20191
+
20192
+
20145
20193
 
20146
20194
 
20147
20195
 
@@ -20441,7 +20489,8 @@ proto.cms.PageSeoAttributesItem.toObject = function(includeInstance, msg) {
20441
20489
  twitterDescription: jspb.Message.getFieldWithDefault(msg, 9, ""),
20442
20490
  h1: jspb.Message.getFieldWithDefault(msg, 10, ""),
20443
20491
  description: jspb.Message.getFieldWithDefault(msg, 11, ""),
20444
- fullDescription: jspb.Message.getFieldWithDefault(msg, 12, "")
20492
+ fullDescription: jspb.Message.getFieldWithDefault(msg, 12, ""),
20493
+ additionalDescription: jspb.Message.getFieldWithDefault(msg, 13, "")
20445
20494
  };
20446
20495
 
20447
20496
  if (includeInstance) {
@@ -20526,6 +20575,10 @@ proto.cms.PageSeoAttributesItem.deserializeBinaryFromReader = function(msg, read
20526
20575
  var value = /** @type {string} */ (reader.readString());
20527
20576
  msg.setFullDescription(value);
20528
20577
  break;
20578
+ case 13:
20579
+ var value = /** @type {string} */ (reader.readString());
20580
+ msg.setAdditionalDescription(value);
20581
+ break;
20529
20582
  default:
20530
20583
  reader.skipField();
20531
20584
  break;
@@ -20639,6 +20692,13 @@ proto.cms.PageSeoAttributesItem.serializeBinaryToWriter = function(message, writ
20639
20692
  f
20640
20693
  );
20641
20694
  }
20695
+ f = /** @type {string} */ (jspb.Message.getField(message, 13));
20696
+ if (f != null) {
20697
+ writer.writeString(
20698
+ 13,
20699
+ f
20700
+ );
20701
+ }
20642
20702
  };
20643
20703
 
20644
20704
 
@@ -21020,6 +21080,42 @@ proto.cms.PageSeoAttributesItem.prototype.hasFullDescription = function() {
21020
21080
  };
21021
21081
 
21022
21082
 
21083
+ /**
21084
+ * optional string additional_description = 13;
21085
+ * @return {string}
21086
+ */
21087
+ proto.cms.PageSeoAttributesItem.prototype.getAdditionalDescription = function() {
21088
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
21089
+ };
21090
+
21091
+
21092
+ /**
21093
+ * @param {string} value
21094
+ * @return {!proto.cms.PageSeoAttributesItem} returns this
21095
+ */
21096
+ proto.cms.PageSeoAttributesItem.prototype.setAdditionalDescription = function(value) {
21097
+ return jspb.Message.setField(this, 13, value);
21098
+ };
21099
+
21100
+
21101
+ /**
21102
+ * Clears the field making it undefined.
21103
+ * @return {!proto.cms.PageSeoAttributesItem} returns this
21104
+ */
21105
+ proto.cms.PageSeoAttributesItem.prototype.clearAdditionalDescription = function() {
21106
+ return jspb.Message.setField(this, 13, undefined);
21107
+ };
21108
+
21109
+
21110
+ /**
21111
+ * Returns whether this field is set.
21112
+ * @return {boolean}
21113
+ */
21114
+ proto.cms.PageSeoAttributesItem.prototype.hasAdditionalDescription = function() {
21115
+ return jspb.Message.getField(this, 13) != null;
21116
+ };
21117
+
21118
+
21023
21119
 
21024
21120
 
21025
21121
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.396",
3
+ "version": "1.2.397",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {