npm package diff

Package: @forge/cli-shared

Versions: 6.6.2-next.5 - 6.6.2-next.6

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,6 +1,9 @@
+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>;
@@ -12,7 +15,8 @@
 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