npm package diff

Package: @forge/manifest

Versions: 7.10.0-next.3 - 7.10.0-next.4

File: package/out/text/errors.js

Index: package/out/text/errors.js
===================================================================
--- package/out/text/errors.js
+++ package/out/text/errors.js
@@ -120,9 +120,10 @@
             endpointOnlySupportSystemToken: (productEventKey, endpointModuleKey) => `Trigger module: '${productEventKey}' using remote endpoint: '${endpointModuleKey}' only supports appSystemToken. Update appUserToken to false.`,
             endpointNeedsRoute: (productEventKey, endpointModuleKey) => `Trigger module: '${productEventKey}' using remote endpoint: '${endpointModuleKey}' requires 'route' parameter.`
         },
         remote: {
-            missingModuleRemoteStorageInScopeEUD: (key) => `missing storage.inScopeEUD in ${key} module. storage.inScopeEUD is required if storage is present in operations.`
+            missingModuleRemoteStorageInScopeEUD: (key) => `missing storage.inScopeEUD in ${key} module. storage.inScopeEUD is required if storage is present in operations.`,
+            allRegionsNotDeclared: (key) => `All region specific URLs are not declared for ${key}`
         },
         rovo: {
             incorrectAgentActionReference: (module, moduleKey) => `${module} references undefined action module with key '${moduleKey}'.`,
             unreferencedAction: (action) => `Action '${action}' is not referenced by any Rovo agent.`,
@@ -144,9 +145,10 @@
     },
     providers: {
         missingRemote: (provider, remote) => `missing remote '${remote}' is being referenced by '${provider}' in providers`,
         missingEgress: (remote) => `missing egress permissions for remote '${remote}'. Please add the remote to permissions.fetch`,
-        missingProfileFunction: (provider, functionKey) => `missing function '${functionKey}' is being referenced by '${provider}' in providers`
+        missingProfileFunction: (provider, functionKey) => `missing function '${functionKey}' is being referenced by '${provider}' in providers`,
+        hasRegionUrls: (provider, remote) => `External Authentication Provider does not support region specific URLs. The '${provider}' provider's remote '${remote}' contains region specific URLs.`
     },
     app: {
         missingAppConnectRemote: () => `missing app.connect.remote. app.connect.remote is required if connectModules are present.`,
         missingRemoteForConnect: (key) => `no remote found with key '${key}' matching app.connect.remote value.`,