New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@xmtp/proto

Package Overview
Dependencies
Maintainers
7
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xmtp/proto - npm Package Compare versions

Comparing version 3.61.0 to 3.61.1

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc