@xmtp/proto
Advanced tools
Comparing version 3.61.0 to 3.61.1
{ | ||
"name": "@xmtp/proto", | ||
"version": "3.61.0", | ||
"version": "3.61.1", | ||
"description": "Protobuf client and generated classes for GRPC API", | ||
@@ -5,0 +5,0 @@ "main": "./ts/dist/cjs/node.js", |
@@ -23,2 +23,3 @@ "use strict"; | ||
address: "", | ||
transactionId: "", | ||
}; | ||
@@ -52,2 +53,5 @@ } | ||
} | ||
if (message.transactionId !== "") { | ||
writer.uint32(74).string(message.transactionId); | ||
} | ||
return writer; | ||
@@ -86,2 +90,5 @@ }, | ||
break; | ||
case 9: | ||
message.transactionId = reader.string(); | ||
break; | ||
default: | ||
@@ -110,2 +117,5 @@ reader.skipType(tag & 7); | ||
address: isSet(object.address) ? String(object.address) : "", | ||
transactionId: isSet(object.transactionId) | ||
? String(object.transactionId) | ||
: "", | ||
}; | ||
@@ -127,6 +137,8 @@ }, | ||
message.address !== undefined && (obj.address = message.address); | ||
message.transactionId !== undefined && | ||
(obj.transactionId = message.transactionId); | ||
return obj; | ||
}, | ||
fromPartial(object) { | ||
var _a, _b, _c, _d, _e, _f, _g; | ||
var _a, _b, _c, _d, _e, _f, _g, _h; | ||
const message = createBaseFrameActionBody(); | ||
@@ -145,2 +157,3 @@ message.frameUrl = (_a = object.frameUrl) !== null && _a !== void 0 ? _a : ""; | ||
message.address = (_g = object.address) !== null && _g !== void 0 ? _g : ""; | ||
message.transactionId = (_h = object.transactionId) !== null && _h !== void 0 ? _h : ""; | ||
return message; | ||
@@ -147,0 +160,0 @@ }, |
@@ -17,2 +17,3 @@ /* eslint-disable */ | ||
address: "", | ||
transactionId: "", | ||
}; | ||
@@ -46,2 +47,5 @@ } | ||
} | ||
if (message.transactionId !== "") { | ||
writer.uint32(74).string(message.transactionId); | ||
} | ||
return writer; | ||
@@ -80,2 +84,5 @@ }, | ||
break; | ||
case 9: | ||
message.transactionId = reader.string(); | ||
break; | ||
default: | ||
@@ -104,2 +111,5 @@ reader.skipType(tag & 7); | ||
address: isSet(object.address) ? String(object.address) : "", | ||
transactionId: isSet(object.transactionId) | ||
? String(object.transactionId) | ||
: "", | ||
}; | ||
@@ -121,6 +131,8 @@ }, | ||
message.address !== undefined && (obj.address = message.address); | ||
message.transactionId !== undefined && | ||
(obj.transactionId = message.transactionId); | ||
return obj; | ||
}, | ||
fromPartial(object) { | ||
var _a, _b, _c, _d, _e, _f, _g; | ||
var _a, _b, _c, _d, _e, _f, _g, _h; | ||
const message = createBaseFrameActionBody(); | ||
@@ -139,2 +151,3 @@ message.frameUrl = (_a = object.frameUrl) !== null && _a !== void 0 ? _a : ""; | ||
message.address = (_g = object.address) !== null && _g !== void 0 ? _g : ""; | ||
message.transactionId = (_h = object.transactionId) !== null && _h !== void 0 ? _h : ""; | ||
return message; | ||
@@ -141,0 +154,0 @@ }, |
@@ -38,2 +38,4 @@ import Long from "long"; | ||
address: string; | ||
/** A hash from a transaction */ | ||
transactionId: string; | ||
} | ||
@@ -71,2 +73,3 @@ /** | ||
address?: string | undefined; | ||
transactionId?: string | undefined; | ||
} & { | ||
@@ -152,2 +155,3 @@ frameUrl?: string | undefined; | ||
address?: string | undefined; | ||
transactionId?: string | undefined; | ||
} & { [K_1 in Exclude<keyof I, keyof FrameActionBody>]: never; }>(object: I): FrameActionBody; | ||
@@ -154,0 +158,0 @@ }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
11547949
96038