npm package diff

Package: @forge/storage

Versions: 1.6.0 - 1.7.0-next.0

File: package/out/global-storage.d.ts

Index: package/out/global-storage.d.ts
===================================================================
--- package/out/global-storage.d.ts
+++ package/out/global-storage.d.ts
@@ -11,14 +11,12 @@
 }
 export declare type StoreType = 'typed' | 'untyped';
 export declare type OperationType = 'get' | 'set' | 'query' | 'delete';
 export declare class GlobalStorage implements SharedStorageAdapter {
-    private getAppContextAri;
     private apiClient;
     private readonly getMetrics;
     private readonly endpoint;
-    constructor(getAppContextAri: (() => string) | string, apiClient: FetchMethod, getMetrics: () => Metrics | undefined);
-    private doGetAppContextAri;
+    constructor(apiClient: FetchMethod, getMetrics: () => Metrics | undefined);
     get(key: string): Promise<any>;
     getSecret(key: string): Promise<any>;
     list(options: ListOptions): Promise<ListResults>;
     listCustomEntities(options: CustomEntityListOptions): Promise<ListResults>;