npm package diff
Package: @forge/kvs
Versions: 1.0.9-next.0 - 1.1.0-next.1
File: package/out/storage-api.d.ts
Index: package/out/storage-api.d.ts
===================================================================
--- package/out/storage-api.d.ts
+++ package/out/storage-api.d.ts
@@ -1,13 +1,13 @@
 import { FetchMethod } from '@forge/api';
-import { ListResult } from './interfaces/types';
+import { GetResult, ListResult } from './interfaces/types';
 import { DeleteRequest, EntityDeleteRequest, EntityGetRequest, EntityQueryRequest, EntitySetRequest, GetRequest, QueryRequest, SecretDeleteRequest, SecretGetRequest, SecretSetRequest, SetRequest, TransactionRequest } from './interfaces/kvs-api';
 export declare class StorageApi {
     private apiClient;
     constructor(apiClient: FetchMethod);
-    get<T>(body: GetRequest): Promise<T | undefined>;
-    getSecret<T>(body: SecretGetRequest): Promise<T | undefined>;
-    getEntity<T>(body: EntityGetRequest): Promise<T | undefined>;
+    get<T>(body: GetRequest): Promise<T | GetResult<T> | undefined>;
+    getSecret<T>(body: SecretGetRequest): Promise<T | GetResult<T> | undefined>;
+    getEntity<T>(body: EntityGetRequest): Promise<T | GetResult<T> | undefined>;
     set<T>(body: SetRequest<T>): Promise<void>;
     setSecret<T>(body: SecretSetRequest<T>): Promise<void>;
     setEntity<T>(body: EntitySetRequest<T>): Promise<void>;
     delete(body: DeleteRequest): Promise<void>;
@@ -17,6 +17,7 @@
     queryEntity<T>(body: EntityQueryRequest): Promise<ListResult<T>>;
     transact<T>(transactionRequest: TransactionRequest<T>): Promise<void>;
     private handleKeyNotFound;
     private request;
+    private processGetResponse;
 }
 //# sourceMappingURL=storage-api.d.ts.map
\ No newline at end of file