npm package diff

Package: @forge/manifest

Versions: 9.1.0-next.3 - 9.1.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
@@ -48,8 +48,9 @@
         missingFunction: () => 'document must have at least 1 function',
         duplicateKeyFound: (key) => `found duplicate module key '${key}'`,
         wrongFunctionReference: (module, functionKey) => `${module} references undefined function module with key '${functionKey}'`,
         wrongEndpointReference: (module, endpointKey) => `${module} references undefined endpoint module with key '${endpointKey}'`,
+        wrongServiceReference: (module, serviceKey) => `${module} references undefined service with key '${serviceKey}'`,
         wrongResourceReference: (module, resourceKey) => `missing resource key '${resourceKey}' is being referenced by ${module} module`,
         wrongResourceType: (folder) => `Client Side UI Kit resource (${folder}) cannot be a directory`,
         singleEntryOfTheModule: (moduleType) => `Only a single entry of the ${moduleType} module can be defined in the manifest`,
         singleEntryOfModuleWithoutConfigureAndStartedParams: (moduleType) => `The ${moduleType} module can only have a single entry that doesn’t include either useAsConfig or useAsGetStarted properties.`,