@forge/storage
Advanced tools
Comparing version 1.2.0 to 1.3.0-next.0
# @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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52806
2