npm package diff

Package: @forge/cli-shared

Versions: 6.7.0-next.10 - 6.7.0-next.11

File: package/out/config/config-section.d.ts

Index: package/out/config/config-section.d.ts
===================================================================
--- package/out/config/config-section.d.ts
+++ package/out/config/config-section.d.ts
@@ -1,9 +1,6 @@
-import { EcosystemAppAri } from '@forge/util/packages/ari';
-import { AppDetails } from '../index';
 export interface ConfigSectionReader<V extends object> {
     readConfigSection(): Promise<V | 'missing' | 'invalid'>;
-    readAppId(): Promise<EcosystemAppAri>;
 }
 export interface ConfigSectionWriter<V extends object> {
     writeConfigSection(configSection: V): Promise<void>;
     prependAppNameToModules(name: string): Promise<void>;
@@ -15,8 +12,7 @@
 export declare class AssertiveConfigSectionReader<V extends object> {
     private readonly configSectionReader;
     constructor(configSectionReader: ConfigSectionReader<V>);
     readConfigSectionOrThrow(missingMessage: string, invalidMessage: string): Promise<V>;
-    readConfigAppIdOrThrow(): Promise<AppDetails>;
 }
 export declare const assertive: <V extends object>(configSectionReader: ConfigSectionReader<V>) => AssertiveConfigSectionReader<V>;
 //# sourceMappingURL=config-section.d.ts.map
\ No newline at end of file