@forge/kvs 0.1.2-next.0-experimental-beb5acf → 0.1.2-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/index.d.ts +4 -3
- package/out/index.d.ts.map +1 -1
- package/out/index.js +4 -4
- package/package.json +2 -2
package/out/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { KvsImpl } from './kvs';
|
|
2
2
|
declare const kvs: KvsImpl;
|
|
3
|
-
export
|
|
4
|
-
export * from './errors';
|
|
5
|
-
export { WhereConditions, FilterConditions } from './conditions';
|
|
3
|
+
export { FilterConditions, WhereConditions } from './conditions';
|
|
6
4
|
export { FilterBuilder as Filter } from './entity-query';
|
|
5
|
+
export * from './errors';
|
|
6
|
+
export { AndFilter, OrFilter } from './interfaces/entity-query';
|
|
7
|
+
export * from './interfaces/types';
|
|
7
8
|
export { kvs };
|
|
8
9
|
export default kvs;
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/out/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAqChC,QAAA,MAAM,GAAG,SAA0B,CAAC;AAEpC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAqChC,QAAA,MAAM,GAAG,SAA0B,CAAC;AAEpC,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AACjE,OAAO,EAAE,aAAa,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACzD,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAChE,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,GAAG,EAAE,CAAC;AACf,eAAe,GAAG,CAAC"}
|
package/out/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.kvs = exports.Filter = exports.
|
|
3
|
+
exports.kvs = exports.Filter = exports.WhereConditions = exports.FilterConditions = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const kvs_1 = require("./kvs");
|
|
6
6
|
const storage_api_1 = require("./storage-api");
|
|
@@ -32,11 +32,11 @@ function getFetchClient() {
|
|
|
32
32
|
const storageApi = new storage_api_1.StorageApi(getFetchClient());
|
|
33
33
|
const kvs = new kvs_1.KvsImpl(storageApi);
|
|
34
34
|
exports.kvs = kvs;
|
|
35
|
-
tslib_1.__exportStar(require("./interfaces/types"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./errors"), exports);
|
|
37
35
|
var conditions_1 = require("./conditions");
|
|
38
|
-
Object.defineProperty(exports, "WhereConditions", { enumerable: true, get: function () { return conditions_1.WhereConditions; } });
|
|
39
36
|
Object.defineProperty(exports, "FilterConditions", { enumerable: true, get: function () { return conditions_1.FilterConditions; } });
|
|
37
|
+
Object.defineProperty(exports, "WhereConditions", { enumerable: true, get: function () { return conditions_1.WhereConditions; } });
|
|
40
38
|
var entity_query_1 = require("./entity-query");
|
|
41
39
|
Object.defineProperty(exports, "Filter", { enumerable: true, get: function () { return entity_query_1.FilterBuilder; } });
|
|
40
|
+
tslib_1.__exportStar(require("./errors"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./interfaces/types"), exports);
|
|
42
42
|
exports.default = kvs;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/kvs",
|
|
3
|
-
"version": "0.1.2-next.
|
|
3
|
+
"version": "0.1.2-next.1",
|
|
4
4
|
"description": "Forge Key Value Store SDK",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@types/node": "14.18.63"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@forge/api": "^5.2.0-next.0
|
|
22
|
+
"@forge/api": "^5.2.0-next.0"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|