@aldiokta/protocgen 1.0.31 → 1.0.33
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
|
@@ -2827,7 +2827,8 @@ fieldRulesList: jspb.Message.toObjectList(msg.getFieldRulesList(),
|
|
|
2827
2827
|
proto.prisca.v1.core.transaction_builder.FieldRules.toObject, includeInstance),
|
|
2828
2828
|
fieldViewsList: jspb.Message.toObjectList(msg.getFieldViewsList(),
|
|
2829
2829
|
proto.prisca.v1.core.transaction_builder.FieldViews.toObject, includeInstance),
|
|
2830
|
-
isMaster: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
2830
|
+
isMaster: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
2831
|
+
referencesId: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
2831
2832
|
};
|
|
2832
2833
|
|
|
2833
2834
|
if (includeInstance) {
|
|
@@ -2886,6 +2887,10 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase.deserializ
|
|
|
2886
2887
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2887
2888
|
msg.setIsMaster(value);
|
|
2888
2889
|
break;
|
|
2890
|
+
case 6:
|
|
2891
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2892
|
+
msg.setReferencesId(value);
|
|
2893
|
+
break;
|
|
2889
2894
|
default:
|
|
2890
2895
|
reader.skipField();
|
|
2891
2896
|
break;
|
|
@@ -2952,6 +2957,13 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase.serializeB
|
|
|
2952
2957
|
f
|
|
2953
2958
|
);
|
|
2954
2959
|
}
|
|
2960
|
+
f = message.getReferencesId();
|
|
2961
|
+
if (f.length > 0) {
|
|
2962
|
+
writer.writeString(
|
|
2963
|
+
6,
|
|
2964
|
+
f
|
|
2965
|
+
);
|
|
2966
|
+
}
|
|
2955
2967
|
};
|
|
2956
2968
|
|
|
2957
2969
|
|
|
@@ -3085,6 +3097,24 @@ proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase.prototype.
|
|
|
3085
3097
|
};
|
|
3086
3098
|
|
|
3087
3099
|
|
|
3100
|
+
/**
|
|
3101
|
+
* optional string references_id = 6;
|
|
3102
|
+
* @return {string}
|
|
3103
|
+
*/
|
|
3104
|
+
proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase.prototype.getReferencesId = function() {
|
|
3105
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
3106
|
+
};
|
|
3107
|
+
|
|
3108
|
+
|
|
3109
|
+
/**
|
|
3110
|
+
* @param {string} value
|
|
3111
|
+
* @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase} returns this
|
|
3112
|
+
*/
|
|
3113
|
+
proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsBase.prototype.setReferencesId = function(value) {
|
|
3114
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
3115
|
+
};
|
|
3116
|
+
|
|
3117
|
+
|
|
3088
3118
|
|
|
3089
3119
|
|
|
3090
3120
|
|