npm package diff

Package: @forge/cli-shared

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

File: package/out/config/config-file-section-reader.js

Index: package/out/config/config-file-section-reader.js
===================================================================
--- package/out/config/config-file-section-reader.js
+++ package/out/config/config-file-section-reader.js
@@ -21,8 +21,11 @@
         else {
             return 'missing';
         }
     }
+    async readAppId() {
+        return await this.configReader.readAppId();
+    }
 }
 exports.ConfigFileSectionReader = ConfigFileSectionReader;
 class ShapedConfigFileSectionReader {
     configSectionReader;
@@ -35,8 +38,11 @@
     }
     readConfigSection() {
         return this.configSectionReader.readConfigSection(this.key, this.schema);
     }
+    readAppId() {
+        return this.configSectionReader.readAppId();
+    }
 }
 const configFileReaderForSection = (key, schema, configReader) => {
     return new ShapedConfigFileSectionReader(new ConfigFileSectionReader(configReader), key, schema);
 };