npm package diff

Package: @forge/manifest

Versions: 8.7.0-next.6-experimental-edac07a - 8.7.0-next.7

File: package/out/text/errors.js

Index: package/out/text/errors.js
===================================================================
--- package/out/text/errors.js
+++ package/out/text/errors.js
@@ -79,8 +79,12 @@
                 combinationKeysAreNotUnique: (accelerator) => `Keyboard shortcut accelerator combinations must have unique keys when joined with "+". Accelerator issue found: [${accelerator}]`,
                 invalidKey: (accelerator, key) => `Keyboard shortcut accelerator key must be a valid named key, i.e. ctrl, command, or a single key. Accelerator issue found: [${accelerator}] with invalid key: [${key}]`,
                 moreThanOneNonModifierKey: (accelerator) => `Keyboard shortcut accelerator combination is invalid. A valid accelerator combination should have a single key or a single key preceeded with one or more modifiers, i.e. ctrl, shift, command. Accelerator issue found: [${accelerator}]`,
                 modifierKeysShouldPrecedeNonModifierKey: (accelerator) => `Keyboard shortcut accelerator modifier keys should precede the key being modified. Instead of "a+ctrl", one should specify the accelerator as "ctrl+a". Accelerator issue found: [${accelerator}]`
+            },
+            autoConvert: {
+                invalidMatcherPatternRegex: (pattern, keyName, index) => `The pattern '${pattern}' at index '${index}' for key '${keyName}' needs to be in a valid URL format between 1-1024 characters long and cannot use wildcard (*) for protocol. Please provide a valid URL within the character limitations and with a valid protocol.`,
+                emptyMatcherArray: (keyName) => `Macro autoConvert matchers array for key '${keyName}' must not be empty array.`
             }
         },
         jiraWorkflowValidator: {
             missingProperty: (key) => `${types_1.AllModuleTypes.JiraWorkflowValidator} module '${key}' must have either a function or expression.`,