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

@forge/api

Package Overview
Dependencies
Maintainers
14
Versions
360
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forge/api - npm Package Compare versions

Comparing version 0.0.0-experimental-788b6d9 to 0.0.0-experimental-e8bfa83

26

CHANGELOG.md
# @forge/api
## 0.0.0-experimental-788b6d9
## 0.0.0-experimental-e8bfa83
### Patch Changes
- b41cc4c: Fix exported content
- 5b666a5: Fix published content
- 6f786cf: Fixing falsey values in storage api
## 0.6.1-next.2
### Patch Changes
- 5b666a5: Fix published content
## 0.6.1-next.1
### Patch Changes
- b41cc4c: Fix exported content
## 0.6.1-next.0
### Patch Changes
- 6f786cf: Fixing falsey values in storage api
## 0.6.0

@@ -6,0 +30,0 @@

2

out/storage/global-storage.js

@@ -42,3 +42,3 @@ "use strict";

const { appStoredEntity: { value } } = await this.query(requestBody);
return value || undefined;
return value !== null && value !== void 0 ? value : undefined;
}

@@ -45,0 +45,0 @@ async list(options) {

{
"name": "@forge/api",
"version": "0.0.0-experimental-788b6d9",
"version": "0.0.0-experimental-e8bfa83",
"description": "Forge API methods",

@@ -9,3 +9,2 @@ "author": "Atlassian",

"types": "out/index.d.ts",
"files": ["out"],
"scripts": {

@@ -12,0 +11,0 @@ "build": "yarn run clean && yarn run compile",

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