npm package diff

Package: @forge/cli

Versions: 10.12.1-next.2 - 10.13.0-next.18

File: package/out/installations/install-app-site.js

Index: package/out/installations/install-app-site.js
===================================================================
--- package/out/installations/install-app-site.js
+++ package/out/installations/install-app-site.js
@@ -7,16 +7,17 @@
     constructor(getAppConfig, installAppClient) {
         this.getAppConfig = getAppConfig;
         this.installAppClient = installAppClient;
     }
-    async execute({ environmentKey, site, product, licenseOverride }) {
+    async execute({ environmentKey, site, product, licenseOverride, overrides }) {
         const { id: appId } = await this.getAppConfig();
         return await this.installAppClient.installAppIntoSite({
             appId,
             environmentKey,
             site,
             product,
-            licenseOverride
+            licenseOverride,
+            overrides
         });
     }
 }
 exports.InstallAppSiteCommand = InstallAppSiteCommand;