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

@grammyjs/storage-deta

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@grammyjs/storage-deta - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

5

out/adapter.js

@@ -36,3 +36,6 @@ "use strict";

key = `/${encodeURIComponent(key)}`;
return await (await this.request("GET", key)).json();
const res = await this.request("GET", key);
if (!res.ok)
return undefined;
return await res.json();
}

@@ -39,0 +42,0 @@ async write(key, value) {

2

package.json
{
"name": "@grammyjs/storage-deta",
"version": "1.0.1",
"version": "1.0.2",
"description": "deta.sh storage adapter for grammY",

@@ -5,0 +5,0 @@ "main": "out/mod.js",

@@ -42,3 +42,3 @@ # Deta.sh Base storage adapter for [grammY](https://github.com/grammyjs/grammY)

SessionFlavor,
} from "https://deno.land/x/grammy@v1.4.3/mod.ts";
} from "https://deno.land/x/grammy/mod.ts";
import { DetaAdapter } from "https://deno.land/x/grammy_storage_deta/mod.ts";

@@ -45,0 +45,0 @@

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