npm package diff

Package: @forge/events

Versions: 2.0.10-next.0 - 2.0.10-next.0-experimental-4cf7fd3

File: package/out/text.js

Index: package/out/text.js
===================================================================
--- package/out/text.js
+++ package/out/text.js
@@ -3,13 +3,16 @@
 exports.Text = void 0;
 exports.Text = {
     error: {
         invalidQueueName: `Queue names can only contain alphanumeric characters, dashes and underscores.`,
+        queueNameExceedingMaxLimit: `Queue names for Fifo queues must be within 36 characters`,
         invalidEvent: `Event must be an object.`,
         invalidEventBody: `Event body must be an object.`,
         invalidDelayInSecondsSetting: `The delayInSeconds setting must be between 0 and 900.`,
         maxEventsAllowed: (maxEventsCount) => `This push contains more than the ${maxEventsCount} events allowed.`,
         maxPayloadAllowed: (maxPayloadSize) => `The maximum payload size is ${maxPayloadSize}KB.`,
+        invalidGroupId: (allowedGroupId) => `Invalid groupId found for Fifo queue. Only "${allowedGroupId}" is allowed.`,
+        invalidEventId: `Event id for Fifo queues must not be null and within 36 characters`,
         noEventsPushed: `No events pushed.`,
         rateLimitError: `Too many requests.`,
         invocationLimitReachedError: `The limit on cyclic invocation has been reached.`,
         jobIdEmpty: `jobId cannot be empty.`,