npm package diff

Package: @forge/cli

Versions: 10.6.0-next.15 - 10.6.0-next.18

File: package/out/migration-keys/graphql-client.js

Index: package/out/migration-keys/graphql-client.js
===================================================================
--- package/out/migration-keys/graphql-client.js
+++ package/out/migration-keys/graphql-client.js
@@ -21,8 +21,9 @@
                       migrationKeys {
                         jira
                         confluence
                       }
+                      version
                     }
                   }
                 }
               }
@@ -41,14 +42,16 @@
             throw new cli_shared_1.MissingAppEnvironmentError(environmentKey);
         }
         const mpacAppKey = result.app.marketplaceApp?.appKey;
         const versions = result.app.environmentByKey.versions;
+        let isSkeletonVersion = true;
         let migrationKeys;
         for (const edge of versions?.edges || []) {
             if (edge) {
                 migrationKeys = edge.node?.migrationKeys;
+                isSkeletonVersion = edge.node?.version === '1.1.0';
             }
         }
-        return { migrationKeys, mpacAppKey };
+        return { migrationKeys, mpacAppKey, isSkeletonVersion };
     }
 }
 exports.GraphqlClient = GraphqlClient;