@forge/kvs

1.2.7-next.0-experimental-d9973071.2.7-next.0-experimental-44a932f
out/kvs.js
out/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, options) {
-        return this.storageApi.set({ key, value, options });
+    set(key, value) {
+        return this.storageApi.set({ key, value });
     }
     batchSet(items) {
         return this.storageApi.batchSet(items);
     }
     delete(key) {
         return this.storageApi.delete({ key });
     }
-    query(options) {
-        return new query_1.KvsQueryBuilder(this.storageApi, options);
+    query() {
+        return new query_1.KvsQueryBuilder(this.storageApi);
     }
     getSecret(key, options) {
         return this.storageApi.getSecret({ key, options });
     }
-    setSecret(key, value, options) {
-        return this.storageApi.setSecret({ key, value, options });
+    setSecret(key, value) {
+        return this.storageApi.setSecret({ key, value });
     }
     deleteSecret(key) {
         return this.storageApi.deleteSecret({ key });
     }