@vercel/queue 0.0.0-alpha.3 → 0.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +290 -223
- package/dist/index.d.mts +146 -123
- package/dist/index.d.ts +146 -123
- package/dist/index.js +135 -289
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +132 -287
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,17 +1,3 @@
|
|
|
1
|
-
// src/oidc.ts
|
|
2
|
-
async function getVercelOidcToken() {
|
|
3
|
-
const SYMBOL_FOR_REQ_CONTEXT = Symbol.for("@vercel/request-context");
|
|
4
|
-
const fromSymbol = globalThis;
|
|
5
|
-
const context = fromSymbol[SYMBOL_FOR_REQ_CONTEXT]?.get?.() ?? {};
|
|
6
|
-
const token = context.headers?.["x-vercel-oidc-token"] ?? process.env.VERCEL_OIDC_TOKEN;
|
|
7
|
-
if (!token) {
|
|
8
|
-
throw new Error(
|
|
9
|
-
`The 'x-vercel-oidc-token' header is missing from the request. Do you have the OIDC option enabled in the Vercel project settings?`
|
|
10
|
-
);
|
|
11
|
-
}
|
|
12
|
-
return token;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
1
|
// src/client.ts
|
|
16
2
|
import { parseMultipartStream } from "mixpart";
|
|
17
3
|
|
|
@@ -141,13 +127,9 @@ var MessageNotAvailableError = class extends Error {
|
|
|
141
127
|
}
|
|
142
128
|
};
|
|
143
129
|
var FifoOrderingViolationError = class extends Error {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
super(
|
|
147
|
-
`FIFO ordering violation for message ${messageId}: ${reason}. Process message ${nextMessageId} first.`
|
|
148
|
-
);
|
|
130
|
+
constructor(messageId, reason) {
|
|
131
|
+
super(`FIFO ordering violation for message ${messageId}: ${reason}`);
|
|
149
132
|
this.name = "FifoOrderingViolationError";
|
|
150
|
-
this.nextMessageId = nextMessageId;
|
|
151
133
|
}
|
|
152
134
|
};
|
|
153
135
|
var MessageCorruptedError = class extends Error {
|
|
@@ -192,13 +174,11 @@ var BadRequestError = class extends Error {
|
|
|
192
174
|
}
|
|
193
175
|
};
|
|
194
176
|
var FailedDependencyError = class extends Error {
|
|
195
|
-
|
|
196
|
-
constructor(messageId, nextMessageId) {
|
|
177
|
+
constructor(messageId) {
|
|
197
178
|
super(
|
|
198
|
-
`Failed dependency: FIFO ordering violation for message ${messageId}
|
|
179
|
+
`Failed dependency: FIFO ordering violation for message ${messageId}`
|
|
199
180
|
);
|
|
200
181
|
this.name = "FailedDependencyError";
|
|
201
|
-
this.nextMessageId = nextMessageId;
|
|
202
182
|
}
|
|
203
183
|
};
|
|
204
184
|
var InternalServerError = class extends Error {
|
|
@@ -256,32 +236,53 @@ function parseQueueHeaders(headers) {
|
|
|
256
236
|
var QueueClient = class _QueueClient {
|
|
257
237
|
baseUrl;
|
|
258
238
|
token;
|
|
239
|
+
/**
|
|
240
|
+
* Internal default instance for use by createTopic and other convenience functions
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
static _defaultInstance = null;
|
|
259
244
|
/**
|
|
260
245
|
* Create a new Vercel Queue Service client
|
|
261
|
-
* @param options Client configuration options
|
|
246
|
+
* @param options Client configuration options (optional - will auto-detect Vercel Function environment)
|
|
262
247
|
*/
|
|
263
|
-
constructor(options) {
|
|
248
|
+
constructor(options = {}) {
|
|
264
249
|
this.baseUrl = options.baseUrl || "https://vqs.vercel.sh";
|
|
265
|
-
|
|
250
|
+
if (options.token) {
|
|
251
|
+
this.token = options.token;
|
|
252
|
+
} else {
|
|
253
|
+
const token = this.getVercelOidcTokenSync();
|
|
254
|
+
if (!token) {
|
|
255
|
+
throw new Error(
|
|
256
|
+
"Failed to get OIDC token from Vercel Functions. Make sure you are running in a Vercel Function environment, or provide a token explicitly.\n\nTo set up your environment:\n1. Link your project: 'vercel link'\n2. Pull environment variables: 'vercel env pull'\n3. Run with environment: 'dotenv -e .env.local -- your-command'"
|
|
257
|
+
);
|
|
258
|
+
}
|
|
259
|
+
this.token = token;
|
|
260
|
+
}
|
|
266
261
|
}
|
|
267
262
|
/**
|
|
268
|
-
*
|
|
269
|
-
*
|
|
270
|
-
* Always creates a fresh instance since OIDC tokens expire after 15 minutes
|
|
271
|
-
* @param baseUrl Optional base URL override
|
|
272
|
-
* @returns Promise resolving to a new QueueClient instance
|
|
263
|
+
* Get the default client instance for internal use by convenience functions
|
|
264
|
+
* @internal
|
|
273
265
|
*/
|
|
274
|
-
static
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
266
|
+
static _getDefaultInstance() {
|
|
267
|
+
if (!this._defaultInstance) {
|
|
268
|
+
this._defaultInstance = new _QueueClient();
|
|
269
|
+
}
|
|
270
|
+
return this._defaultInstance;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* Synchronously get OIDC token from environment
|
|
274
|
+
* Used internally by constructor - mirrors the logic from getVercelOidcToken but synchronously
|
|
275
|
+
*/
|
|
276
|
+
getVercelOidcTokenSync() {
|
|
277
|
+
try {
|
|
278
|
+
const SYMBOL_FOR_REQ_CONTEXT = Symbol.for("@vercel/request-context");
|
|
279
|
+
const fromSymbol = globalThis;
|
|
280
|
+
const context = fromSymbol[SYMBOL_FOR_REQ_CONTEXT]?.get?.() ?? {};
|
|
281
|
+
const token = context.headers?.["x-vercel-oidc-token"] ?? process.env.VERCEL_OIDC_TOKEN;
|
|
282
|
+
return token || null;
|
|
283
|
+
} catch {
|
|
284
|
+
return null;
|
|
280
285
|
}
|
|
281
|
-
return new _QueueClient({
|
|
282
|
-
token,
|
|
283
|
-
baseUrl
|
|
284
|
-
});
|
|
285
286
|
}
|
|
286
287
|
/**
|
|
287
288
|
* Send a message to a queue
|
|
@@ -514,36 +515,9 @@ var QueueClient = class _QueueClient {
|
|
|
514
515
|
throw new MessageLockedError(messageId, retryAfter);
|
|
515
516
|
}
|
|
516
517
|
if (response.status === 424) {
|
|
517
|
-
|
|
518
|
-
const errorData = await response.json();
|
|
519
|
-
if (errorData.meta?.nextMessageId) {
|
|
520
|
-
throw new FailedDependencyError(
|
|
521
|
-
messageId,
|
|
522
|
-
errorData.meta.nextMessageId
|
|
523
|
-
);
|
|
524
|
-
}
|
|
525
|
-
} catch (parseError) {
|
|
526
|
-
if (parseError instanceof FailedDependencyError) {
|
|
527
|
-
throw parseError;
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
throw new MessageNotAvailableError(
|
|
531
|
-
messageId,
|
|
532
|
-
"FIFO ordering violation"
|
|
533
|
-
);
|
|
518
|
+
throw new FailedDependencyError(messageId);
|
|
534
519
|
}
|
|
535
520
|
if (response.status === 409) {
|
|
536
|
-
try {
|
|
537
|
-
const errorData = await response.json();
|
|
538
|
-
if (errorData.nextMessageId) {
|
|
539
|
-
throw new FifoOrderingViolationError(
|
|
540
|
-
messageId,
|
|
541
|
-
errorData.nextMessageId,
|
|
542
|
-
errorData.error
|
|
543
|
-
);
|
|
544
|
-
}
|
|
545
|
-
} catch (parseError) {
|
|
546
|
-
}
|
|
547
521
|
throw new MessageNotAvailableError(messageId);
|
|
548
522
|
}
|
|
549
523
|
if (response.status >= 500) {
|
|
@@ -905,7 +879,11 @@ var ConsumerGroup = class {
|
|
|
905
879
|
message.ticket
|
|
906
880
|
);
|
|
907
881
|
try {
|
|
908
|
-
const result = await handler(message
|
|
882
|
+
const result = await handler(message.payload, {
|
|
883
|
+
messageId: message.messageId,
|
|
884
|
+
deliveryCount: message.deliveryCount,
|
|
885
|
+
timestamp: message.timestamp
|
|
886
|
+
});
|
|
909
887
|
await stopExtension();
|
|
910
888
|
if (result && "timeoutSeconds" in result) {
|
|
911
889
|
await this.client.changeVisibility({
|
|
@@ -935,219 +913,58 @@ var ConsumerGroup = class {
|
|
|
935
913
|
throw error;
|
|
936
914
|
}
|
|
937
915
|
}
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
* @param options Processing options
|
|
943
|
-
* @returns Promise that resolves when processing stops (due to signal or error)
|
|
944
|
-
*/
|
|
945
|
-
async subscribe(signal, handler, options = {}) {
|
|
946
|
-
const pollingInterval = options.pollingInterval || 1e3;
|
|
947
|
-
while (!signal.aborted) {
|
|
948
|
-
try {
|
|
949
|
-
for await (const message of this.client.receiveMessages(
|
|
916
|
+
async consume(handler, options) {
|
|
917
|
+
if (options?.messageId) {
|
|
918
|
+
if (options.skipPayload) {
|
|
919
|
+
const response = await this.client.receiveMessageById(
|
|
950
920
|
{
|
|
951
921
|
queueName: this.topicName,
|
|
952
922
|
consumerGroup: this.consumerGroupName,
|
|
923
|
+
messageId: options.messageId,
|
|
953
924
|
visibilityTimeoutSeconds: this.visibilityTimeout,
|
|
954
|
-
|
|
955
|
-
// Always process one message at a time
|
|
925
|
+
skipPayload: true
|
|
956
926
|
},
|
|
957
927
|
this.transport
|
|
958
|
-
)
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
}
|
|
996
|
-
continue;
|
|
997
|
-
}
|
|
998
|
-
if (error instanceof MessageLockedError) {
|
|
999
|
-
const waitTime = error.retryAfter ? error.retryAfter * 1e3 : pollingInterval;
|
|
1000
|
-
if (!signal.aborted) {
|
|
1001
|
-
await new Promise((resolve) => {
|
|
1002
|
-
const timeoutId = setTimeout(resolve, waitTime);
|
|
1003
|
-
signal.addEventListener(
|
|
1004
|
-
"abort",
|
|
1005
|
-
() => {
|
|
1006
|
-
clearTimeout(timeoutId);
|
|
1007
|
-
resolve();
|
|
1008
|
-
},
|
|
1009
|
-
{ once: true }
|
|
1010
|
-
);
|
|
1011
|
-
});
|
|
1012
|
-
}
|
|
1013
|
-
continue;
|
|
1014
|
-
}
|
|
1015
|
-
console.error("Error polling topic:", error);
|
|
1016
|
-
throw error;
|
|
928
|
+
);
|
|
929
|
+
await this.processMessage(
|
|
930
|
+
response.message,
|
|
931
|
+
handler
|
|
932
|
+
);
|
|
933
|
+
} else {
|
|
934
|
+
const response = await this.client.receiveMessageById(
|
|
935
|
+
{
|
|
936
|
+
queueName: this.topicName,
|
|
937
|
+
consumerGroup: this.consumerGroupName,
|
|
938
|
+
messageId: options.messageId,
|
|
939
|
+
visibilityTimeoutSeconds: this.visibilityTimeout
|
|
940
|
+
},
|
|
941
|
+
this.transport
|
|
942
|
+
);
|
|
943
|
+
await this.processMessage(
|
|
944
|
+
response.message,
|
|
945
|
+
handler
|
|
946
|
+
);
|
|
947
|
+
}
|
|
948
|
+
} else {
|
|
949
|
+
let messageFound = false;
|
|
950
|
+
for await (const message of this.client.receiveMessages(
|
|
951
|
+
{
|
|
952
|
+
queueName: this.topicName,
|
|
953
|
+
consumerGroup: this.consumerGroupName,
|
|
954
|
+
visibilityTimeoutSeconds: this.visibilityTimeout,
|
|
955
|
+
limit: 1
|
|
956
|
+
},
|
|
957
|
+
this.transport
|
|
958
|
+
)) {
|
|
959
|
+
messageFound = true;
|
|
960
|
+
await this.processMessage(message, handler);
|
|
961
|
+
break;
|
|
962
|
+
}
|
|
963
|
+
if (!messageFound) {
|
|
964
|
+
throw new Error("No messages available");
|
|
1017
965
|
}
|
|
1018
966
|
}
|
|
1019
967
|
}
|
|
1020
|
-
/**
|
|
1021
|
-
* Receive and process a specific message by its ID with full payload
|
|
1022
|
-
* @param messageId The ID of the message to receive and process
|
|
1023
|
-
* @param handler Function to process the message with full payload
|
|
1024
|
-
* @returns Promise that resolves when the message is processed or rejects with specific errors
|
|
1025
|
-
* @throws {MessageNotFoundError} When the message doesn't exist (404)
|
|
1026
|
-
* @throws {MessageNotAvailableError} When the message exists but isn't available for processing (409)
|
|
1027
|
-
* @throws {MessageLockedError} When the message is temporarily locked (423)
|
|
1028
|
-
* @throws {FifoOrderingViolationError} When there's a FIFO ordering violation (409 with nextMessageId)
|
|
1029
|
-
* @throws {FailedDependencyError} When FIFO ordering is violated (424)
|
|
1030
|
-
* @throws {MessageCorruptedError} When the message data is corrupted
|
|
1031
|
-
* @throws {BadRequestError} When request parameters are invalid
|
|
1032
|
-
* @throws {UnauthorizedError} When authentication fails
|
|
1033
|
-
* @throws {ForbiddenError} When access is denied
|
|
1034
|
-
* @throws {InternalServerError} When server encounters an error
|
|
1035
|
-
*/
|
|
1036
|
-
async receiveMessage(messageId, handler) {
|
|
1037
|
-
const response = await this.client.receiveMessageById(
|
|
1038
|
-
{
|
|
1039
|
-
queueName: this.topicName,
|
|
1040
|
-
consumerGroup: this.consumerGroupName,
|
|
1041
|
-
messageId,
|
|
1042
|
-
visibilityTimeoutSeconds: this.visibilityTimeout
|
|
1043
|
-
},
|
|
1044
|
-
this.transport
|
|
1045
|
-
);
|
|
1046
|
-
await this.processMessage(response.message, handler);
|
|
1047
|
-
}
|
|
1048
|
-
/**
|
|
1049
|
-
* Receive and process the next available message from the queue
|
|
1050
|
-
* @param handler Function to process the message
|
|
1051
|
-
* @returns Promise that resolves when the message is processed or rejects with specific errors
|
|
1052
|
-
* @throws {QueueEmptyError} When no messages are available in the queue (204)
|
|
1053
|
-
* @throws {MessageLockedError} When the next message in a FIFO queue is locked (423)
|
|
1054
|
-
* @throws {BadRequestError} When request parameters are invalid
|
|
1055
|
-
* @throws {UnauthorizedError} When authentication fails
|
|
1056
|
-
* @throws {ForbiddenError} When access is denied
|
|
1057
|
-
* @throws {InternalServerError} When server encounters an error
|
|
1058
|
-
*/
|
|
1059
|
-
async receiveNextMessage(handler) {
|
|
1060
|
-
let messageFound = false;
|
|
1061
|
-
for await (const message of this.client.receiveMessages(
|
|
1062
|
-
{
|
|
1063
|
-
queueName: this.topicName,
|
|
1064
|
-
consumerGroup: this.consumerGroupName,
|
|
1065
|
-
visibilityTimeoutSeconds: this.visibilityTimeout,
|
|
1066
|
-
limit: 1
|
|
1067
|
-
},
|
|
1068
|
-
this.transport
|
|
1069
|
-
)) {
|
|
1070
|
-
messageFound = true;
|
|
1071
|
-
await this.processMessage(message, handler);
|
|
1072
|
-
break;
|
|
1073
|
-
}
|
|
1074
|
-
if (!messageFound) {
|
|
1075
|
-
throw new Error("No messages available");
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
/**
|
|
1079
|
-
* Receive and process multiple next available messages from the queue
|
|
1080
|
-
* @param limit Number of messages to process (1-10)
|
|
1081
|
-
* @param handler Function to process each message
|
|
1082
|
-
* @returns Promise that resolves to an array of PromiseSettledResult (same as Promise.allSettled)
|
|
1083
|
-
* @throws {InvalidLimitError} When limit parameter is not between 1 and 10
|
|
1084
|
-
* @throws {QueueEmptyError} When no messages are available in the queue (204)
|
|
1085
|
-
* @throws {MessageLockedError} When the next message in a FIFO queue is locked (423)
|
|
1086
|
-
* @throws {BadRequestError} When request parameters are invalid
|
|
1087
|
-
* @throws {UnauthorizedError} When authentication fails
|
|
1088
|
-
* @throws {ForbiddenError} When access is denied
|
|
1089
|
-
* @throws {InternalServerError} When server encounters an error
|
|
1090
|
-
*/
|
|
1091
|
-
async receiveNextMessages(limit, handler) {
|
|
1092
|
-
if (limit < 1 || limit > 10) {
|
|
1093
|
-
throw new InvalidLimitError(limit);
|
|
1094
|
-
}
|
|
1095
|
-
const processingPromises = [];
|
|
1096
|
-
let messageCount = 0;
|
|
1097
|
-
for await (const message of this.client.receiveMessages(
|
|
1098
|
-
{
|
|
1099
|
-
queueName: this.topicName,
|
|
1100
|
-
consumerGroup: this.consumerGroupName,
|
|
1101
|
-
visibilityTimeoutSeconds: this.visibilityTimeout,
|
|
1102
|
-
limit
|
|
1103
|
-
},
|
|
1104
|
-
this.transport
|
|
1105
|
-
)) {
|
|
1106
|
-
messageCount++;
|
|
1107
|
-
const wrappedPromise = this.processMessage(message, handler).then(
|
|
1108
|
-
(value) => ({
|
|
1109
|
-
status: "fulfilled",
|
|
1110
|
-
value
|
|
1111
|
-
}),
|
|
1112
|
-
(reason) => ({ status: "rejected", reason })
|
|
1113
|
-
);
|
|
1114
|
-
processingPromises.push(wrappedPromise);
|
|
1115
|
-
}
|
|
1116
|
-
if (messageCount === 0) {
|
|
1117
|
-
throw new Error("No messages available");
|
|
1118
|
-
}
|
|
1119
|
-
const results = await Promise.all(processingPromises);
|
|
1120
|
-
return results;
|
|
1121
|
-
}
|
|
1122
|
-
/**
|
|
1123
|
-
* Handle a specific message by its ID without downloading the payload (metadata only)
|
|
1124
|
-
* @param messageId The ID of the message to handle
|
|
1125
|
-
* @param handler Function to process the message metadata (payload will be void)
|
|
1126
|
-
* @returns Promise that resolves when the message is handled or rejects with specific errors
|
|
1127
|
-
* @throws {MessageNotFoundError} When the message doesn't exist (404)
|
|
1128
|
-
* @throws {MessageNotAvailableError} When the message exists but isn't available for processing (409)
|
|
1129
|
-
* @throws {MessageLockedError} When the message is temporarily locked (423)
|
|
1130
|
-
* @throws {FifoOrderingViolationError} When there's a FIFO ordering violation (409 with nextMessageId)
|
|
1131
|
-
* @throws {FailedDependencyError} When FIFO ordering is violated (424)
|
|
1132
|
-
* @throws {MessageCorruptedError} When the message data is corrupted
|
|
1133
|
-
* @throws {BadRequestError} When request parameters are invalid
|
|
1134
|
-
* @throws {UnauthorizedError} When authentication fails
|
|
1135
|
-
* @throws {ForbiddenError} When access is denied
|
|
1136
|
-
* @throws {InternalServerError} When server encounters an error
|
|
1137
|
-
*/
|
|
1138
|
-
async handleMessage(messageId, handler) {
|
|
1139
|
-
const response = await this.client.receiveMessageById(
|
|
1140
|
-
{
|
|
1141
|
-
queueName: this.topicName,
|
|
1142
|
-
consumerGroup: this.consumerGroupName,
|
|
1143
|
-
messageId,
|
|
1144
|
-
visibilityTimeoutSeconds: this.visibilityTimeout,
|
|
1145
|
-
skipPayload: true
|
|
1146
|
-
},
|
|
1147
|
-
this.transport
|
|
1148
|
-
);
|
|
1149
|
-
await this.processMessage(response.message, handler);
|
|
1150
|
-
}
|
|
1151
968
|
/**
|
|
1152
969
|
* Get the consumer group name
|
|
1153
970
|
*/
|
|
@@ -1234,9 +1051,43 @@ var Topic = class {
|
|
|
1234
1051
|
};
|
|
1235
1052
|
|
|
1236
1053
|
// src/factory.ts
|
|
1237
|
-
function createTopic(
|
|
1054
|
+
function createTopic(topicName, transport) {
|
|
1055
|
+
const client = QueueClient._getDefaultInstance();
|
|
1238
1056
|
return new Topic(client, topicName, transport);
|
|
1239
1057
|
}
|
|
1058
|
+
async function send(topicName, payload, options) {
|
|
1059
|
+
const transport = options?.transport || new JsonTransport();
|
|
1060
|
+
const client = QueueClient._getDefaultInstance();
|
|
1061
|
+
const result = await client.sendMessage(
|
|
1062
|
+
{
|
|
1063
|
+
queueName: topicName,
|
|
1064
|
+
payload,
|
|
1065
|
+
idempotencyKey: options?.idempotencyKey,
|
|
1066
|
+
retentionSeconds: options?.retentionSeconds,
|
|
1067
|
+
callback: options?.callback
|
|
1068
|
+
},
|
|
1069
|
+
transport
|
|
1070
|
+
);
|
|
1071
|
+
return { messageId: result.messageId };
|
|
1072
|
+
}
|
|
1073
|
+
async function receive(topicName, consumerGroup, handler, options) {
|
|
1074
|
+
const transport = options?.transport || new JsonTransport();
|
|
1075
|
+
const topic = createTopic(topicName, transport);
|
|
1076
|
+
const { messageId, skipPayload, ...consumerGroupOptions } = options || {};
|
|
1077
|
+
const consumer = topic.consumerGroup(consumerGroup, consumerGroupOptions);
|
|
1078
|
+
if (messageId) {
|
|
1079
|
+
if (skipPayload) {
|
|
1080
|
+
return consumer.consume(handler, {
|
|
1081
|
+
messageId,
|
|
1082
|
+
skipPayload: true
|
|
1083
|
+
});
|
|
1084
|
+
} else {
|
|
1085
|
+
return consumer.consume(handler, { messageId });
|
|
1086
|
+
}
|
|
1087
|
+
} else {
|
|
1088
|
+
return consumer.consume(handler);
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1240
1091
|
|
|
1241
1092
|
// src/callback.ts
|
|
1242
1093
|
function parseCallbackRequest(request) {
|
|
@@ -1285,17 +1136,10 @@ function handleCallback(handlers) {
|
|
|
1285
1136
|
}
|
|
1286
1137
|
actualHandler = consumerGroupHandler;
|
|
1287
1138
|
}
|
|
1288
|
-
const client =
|
|
1139
|
+
const client = new QueueClient();
|
|
1289
1140
|
const topic = new Topic(client, queueName);
|
|
1290
1141
|
const cg = topic.consumerGroup(consumerGroup);
|
|
1291
|
-
await cg.
|
|
1292
|
-
const metadata = {
|
|
1293
|
-
messageId: message.messageId,
|
|
1294
|
-
deliveryCount: message.deliveryCount,
|
|
1295
|
-
timestamp: message.timestamp
|
|
1296
|
-
};
|
|
1297
|
-
return await actualHandler(message.payload, metadata);
|
|
1298
|
-
});
|
|
1142
|
+
await cg.consume(actualHandler, { messageId });
|
|
1299
1143
|
return Response.json({ status: "success" });
|
|
1300
1144
|
} catch (error) {
|
|
1301
1145
|
console.error("Callback error:", error);
|
|
@@ -1333,8 +1177,9 @@ export {
|
|
|
1333
1177
|
Topic,
|
|
1334
1178
|
UnauthorizedError,
|
|
1335
1179
|
createTopic,
|
|
1336
|
-
getVercelOidcToken,
|
|
1337
1180
|
handleCallback,
|
|
1338
|
-
parseCallbackRequest
|
|
1181
|
+
parseCallbackRequest,
|
|
1182
|
+
receive,
|
|
1183
|
+
send
|
|
1339
1184
|
};
|
|
1340
1185
|
//# sourceMappingURL=index.mjs.map
|