npm package diff
Package: @forge/kvs
Versions: 1.0.9-next.0 - 1.1.0-next.1
File: package/out/kvs.d.ts
Index: package/out/kvs.d.ts
===================================================================
--- package/out/kvs.d.ts
+++ package/out/kvs.d.ts
@@ -1,16 +1,17 @@
 import { KvsEntity, Kvs } from './interfaces/kvs';
 import { QueryBuilder } from './interfaces/query';
 import { TransactionBuilder } from './interfaces/transaction';
+import { GetOptions, GetResult } from './interfaces/types';
 import { StorageApi } from './storage-api';
 export declare class KvsImpl implements Kvs {
     private readonly storageApi;
     constructor(storageApi: StorageApi);
-    get<T>(key: string): Promise<T | undefined>;
+    get<T>(key: string, options?: GetOptions): Promise<T | GetResult<T> | undefined>;
     set<T>(key: string, value: T): Promise<void>;
     delete(key: string): Promise<void>;
     query(): QueryBuilder;
-    getSecret<T>(key: string): Promise<T | undefined>;
+    getSecret<T>(key: string, options?: GetOptions): Promise<T | GetResult<T> | undefined>;
     setSecret<T>(key: string, value: T): Promise<void>;
     deleteSecret(key: string): Promise<void>;
     entity<T>(entityName: string): KvsEntity<T>;
     transact(): TransactionBuilder;