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

@serialized/serialized-client

Package Overview
Dependencies
Maintainers
2
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serialized/serialized-client - npm Package Compare versions

Comparing version 7.3.0 to 7.4.0

4

dist/ReactionsClient.d.ts

@@ -59,2 +59,6 @@ import { BaseClient } from "./";

limit?: number;
aggregateId?: string;
eventId?: string;
from?: number;
to?: number;
}

@@ -61,0 +65,0 @@ export interface CreateReactionDefinitionRequest {

@@ -156,2 +156,14 @@ "use strict";

}
if (request.aggregateId !== undefined) {
config.params.set('aggregateId', request.aggregateId);
}
if (request.eventId !== undefined) {
config.params.set('eventId', request.eventId);
}
if (request.from !== undefined) {
config.params.set('from', request.from.toString());
}
if (request.to !== undefined) {
config.params.set('to', request.to.toString());
}
return [4 /*yield*/, this.axiosClient.get(ReactionsClient.reactionsUrl(), config)];

@@ -158,0 +170,0 @@ case 1: return [2 /*return*/, (_a.sent()).data];

2

package.json

@@ -6,3 +6,3 @@ {

"author": "Serialized",
"version": "7.3.0",
"version": "7.4.0",
"main": "dist/index.js",

@@ -9,0 +9,0 @@ "types": "dist/index.d.ts",

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