Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appwrite-utils

Package Overview
Dependencies
Maintainers
1
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appwrite-utils - npm Package Compare versions

Comparing version 0.1.24 to 0.1.25

5

dist/functions/schema.js

@@ -19,6 +19,9 @@ import { stringAttributeSchema } from "../schemas/stringAttribute.js";

}
else {
else if (attribute.default !== null) {
attributeToParse.xdefault = attribute.default;
delete attributeToParse.default;
}
else {
delete attributeToParse.default;
}
}

@@ -25,0 +28,0 @@ if (attributeToParse.type === "string" &&

2

package.json
{
"name": "appwrite-utils",
"module": "dist/index.js",
"version": "0.1.24",
"version": "0.1.25",
"main": "dist/index.js",

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

@@ -27,5 +27,7 @@ import { ID, IndexType, Permission } from "node-appwrite";

delete attributeToParse.default;
} else {
} else if (attribute.default !== null) {
attributeToParse.xdefault = attribute.default;
delete attributeToParse.default;
} else {
delete attributeToParse.default;
}

@@ -32,0 +34,0 @@ }

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