@forge/manifest
12.1.2-next.012.1.2-next.1
out/text/errors.js~
out/text/errors.jsModified+3−1
Index: package/out/text/errors.js
===================================================================
--- package/out/text/errors.js
+++ package/out/text/errors.js
@@ -197,14 +197,16 @@
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`,
- hasRegionUrls: (provider, remote) => `External Authentication Provider does not support region specific URLs. The '${provider}' provider's remote '${remote}' contains region specific URLs.`
+ hasRegionUrls: (provider, remote) => `External Authentication Provider does not support region specific URLs. The '${provider}' provider's remote '${remote}' contains region specific URLs.`,
+ hasConfigurableRemote: (provider, remote) => `External Authentication Provider does not support configurable remotes. The '${provider}' provider's remote '${remote}' contains the \`configurable\` field.`
},
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.`,
missingConnectModules: () => 'Missing connectModules. When app.connect.authentication is present, connectModules is required.',
+ noConfigurableConnectRemote: () => 'Connect remotes cannot be configurable',
features: {
deprecatedAutoUserConsent: () => 'The autoUserConsent feature flag is no longer required to use automatic user consent and should be removed from the manifest.'
},
remotes: {