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

@forge/storage

Package Overview
Dependencies
Maintainers
2
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forge/storage - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0-next.0

6

CHANGELOG.md
# @forge/storage
## 1.3.0-next.0
### Minor Changes
- 3c3c42b9: Updated EAP filter names to be more readable
## 1.2.0

@@ -4,0 +10,0 @@

2

out/__test__/list-api.test.js

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

const globalStorage = newGlobalStorage();
await new query_api_1.DefaultQueryBuilder(globalStorage).where('key', conditions_2.notEqualTo(['test', 'test2'])).getMany();
await new query_api_1.DefaultQueryBuilder(globalStorage).where('key', conditions_2.isNotEqualTo(['test', 'test2'])).getMany();
expect(globalStorage.list).toHaveBeenCalledWith(expect.objectContaining({

@@ -70,0 +70,0 @@ where: [

import { Predicate } from '../storage-adapter';
export declare function notEqualTo(value: string[]): Predicate;
export declare function isNotEqualTo(value: string[]): Predicate;
export declare function isIn(values: string[]): Predicate;
//# sourceMappingURL=conditions.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isIn = exports.notEqualTo = void 0;
function notEqualTo(value) {
exports.isIn = exports.isNotEqualTo = void 0;
function isNotEqualTo(value) {
return {

@@ -10,3 +10,3 @@ condition: 'NOT_EQUAL_TO',

}
exports.notEqualTo = notEqualTo;
exports.isNotEqualTo = isNotEqualTo;
function isIn(values) {

@@ -13,0 +13,0 @@ return {

{
"name": "@forge/storage",
"version": "1.2.0",
"version": "1.3.0-next.0",
"description": "Forge Storage methods",

@@ -5,0 +5,0 @@ "author": "Atlassian",

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