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

@remnawave/backend-contract

Package Overview
Dependencies
Maintainers
0
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@remnawave/backend-contract - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

4

build/backend/commands/users/create-user.command.d.ts

@@ -26,3 +26,3 @@ import { z } from 'zod';

activeUserInbounds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
expireAt: z.ZodString;
expireAt: z.ZodEffects<z.ZodString, Date, string>;
createdAt: z.ZodOptional<z.ZodEffects<z.ZodString, Date, string>>;

@@ -36,3 +36,3 @@ lastTrafficResetAt: z.ZodOptional<z.ZodEffects<z.ZodString, Date, string>>;

trafficLimitStrategy: "MONTH" | "NO_RESET" | "DAY" | "WEEK";
expireAt: string;
expireAt: Date;
createdAt?: Date | undefined;

@@ -39,0 +39,0 @@ trafficLimitBytes?: number | undefined;

@@ -86,3 +86,4 @@ "use strict";

})
.datetime()
.datetime({ message: 'Invalid date format', offset: true })
.transform((str) => new Date(str))
.describe('Date format: 2025-01-17T15:38:45.065Z'),

@@ -89,0 +90,0 @@ createdAt: zod_1.z

@@ -86,3 +86,4 @@ "use strict";

})
.datetime()
.datetime({ message: 'Invalid date format', offset: true })
.transform((str) => new Date(str))
.describe('Date format: 2025-01-17T15:38:45.065Z'),

@@ -89,0 +90,0 @@ createdAt: zod_1.z

{
"name": "@remnawave/backend-contract",
"version": "0.1.11",
"version": "0.1.12",
"public": true,

@@ -5,0 +5,0 @@ "license": "AGPL-3.0-only",

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