npm package diff
Package: @forge/kvs
Versions: 1.0.9-next.0 - 1.1.0-next.1
File: package/out/kvs.js
Index: package/out/kvs.js
===================================================================
--- package/out/kvs.js
+++ package/out/kvs.js
@@ -8,10 +8,10 @@
     storageApi;
     constructor(storageApi) {
         this.storageApi = storageApi;
     }
-    get(key) {
-        return this.storageApi.get({ key });
+    get(key, options) {
+        return this.storageApi.get({ key, options });
     }
     set(key, value) {
         return this.storageApi.set({ key, value });
     }
@@ -20,10 +20,10 @@
     }
     query() {
         return new query_1.KvsQueryBuilder(this.storageApi);
     }
-    getSecret(key) {
-        return this.storageApi.getSecret({ key });
+    getSecret(key, options) {
+        return this.storageApi.getSecret({ key, options });
     }
     setSecret(key, value) {
         return this.storageApi.setSecret({ key, value });
     }