@forge/kvs
1.2.7-next.0-experimental-2682d7a1.2.7-next.0-experimental-d997307
out/kvs.jsout/kvs.js+6−6
Index: package/out/kvs.js
===================================================================
--- package/out/kvs.js
+++ package/out/kvs.js
@@ -11,25 +11,25 @@
}
get(key, options) {
return this.storageApi.get({ key, options });
}
- set(key, value) {
- return this.storageApi.set({ key, value });
+ set(key, value, options) {
+ return this.storageApi.set({ key, value, options });
}
batchSet(items) {
return this.storageApi.batchSet(items);
}
delete(key) {
return this.storageApi.delete({ key });
}
- query() {
- return new query_1.KvsQueryBuilder(this.storageApi);
+ query(options) {
+ return new query_1.KvsQueryBuilder(this.storageApi, options);
}
getSecret(key, options) {
return this.storageApi.getSecret({ key, options });
}
- setSecret(key, value) {
- return this.storageApi.setSecret({ key, value });
+ setSecret(key, value, options) {
+ return this.storageApi.setSecret({ key, value, options });
}
deleteSecret(key) {
return this.storageApi.deleteSecret({ key });
}