@aldiokta/protocgen 1.0.30 → 1.0.31
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/package.json
CHANGED
|
@@ -2436,7 +2436,8 @@ fieldRulesList: jspb.Message.toObjectList(msg.getFieldRulesList(),
|
|
|
2436
2436
|
proto.prisca.v1.core.transaction_builder.FieldRules.toObject, includeInstance),
|
|
2437
2437
|
fieldViewsList: jspb.Message.toObjectList(msg.getFieldViewsList(),
|
|
2438
2438
|
proto.prisca.v1.core.transaction_builder.FieldViews.toObject, includeInstance),
|
|
2439
|
-
value: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
2439
|
+
value: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
2440
|
+
referencesId: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
2440
2441
|
};
|
|
2441
2442
|
|
|
2442
2443
|
if (includeInstance) {
|
|
@@ -2503,6 +2504,10 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFields.deserializeBin
|
|
|
2503
2504
|
var value = /** @type {string} */ (reader.readString());
|
|
2504
2505
|
msg.setValue(value);
|
|
2505
2506
|
break;
|
|
2507
|
+
case 8:
|
|
2508
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2509
|
+
msg.setReferencesId(value);
|
|
2510
|
+
break;
|
|
2506
2511
|
default:
|
|
2507
2512
|
reader.skipField();
|
|
2508
2513
|
break;
|
|
@@ -2583,6 +2588,13 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFields.serializeBinar
|
|
|
2583
2588
|
f
|
|
2584
2589
|
);
|
|
2585
2590
|
}
|
|
2591
|
+
f = message.getReferencesId();
|
|
2592
|
+
if (f.length > 0) {
|
|
2593
|
+
writer.writeString(
|
|
2594
|
+
8,
|
|
2595
|
+
f
|
|
2596
|
+
);
|
|
2597
|
+
}
|
|
2586
2598
|
};
|
|
2587
2599
|
|
|
2588
2600
|
|
|
@@ -2752,6 +2764,24 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFields.prototype.setV
|
|
|
2752
2764
|
};
|
|
2753
2765
|
|
|
2754
2766
|
|
|
2767
|
+
/**
|
|
2768
|
+
* optional string references_id = 8;
|
|
2769
|
+
* @return {string}
|
|
2770
|
+
*/
|
|
2771
|
+
proto.prisca.v1.core.transaction_builder.TransactionBuilderFields.prototype.getReferencesId = function() {
|
|
2772
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
2773
|
+
};
|
|
2774
|
+
|
|
2775
|
+
|
|
2776
|
+
/**
|
|
2777
|
+
* @param {string} value
|
|
2778
|
+
* @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFields} returns this
|
|
2779
|
+
*/
|
|
2780
|
+
proto.prisca.v1.core.transaction_builder.TransactionBuilderFields.prototype.setReferencesId = function(value) {
|
|
2781
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
2782
|
+
};
|
|
2783
|
+
|
|
2784
|
+
|
|
2755
2785
|
|
|
2756
2786
|
/**
|
|
2757
2787
|
* List of repeated fields within this message type.
|