lancer-shared 1.2.327 → 1.2.328
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/dist/bundle.cjs.js
CHANGED
|
@@ -7165,6 +7165,11 @@ const agentTaskResponseSchema = z.object({
|
|
|
7165
7165
|
completionTokens: z.number(),
|
|
7166
7166
|
});
|
|
7167
7167
|
|
|
7168
|
+
const sendDiscordMessageRequestBodySchema = z.object({
|
|
7169
|
+
title: z.string(),
|
|
7170
|
+
content: z.string(),
|
|
7171
|
+
});
|
|
7172
|
+
|
|
7168
7173
|
const usageEventTypeEnum = z.enum([
|
|
7169
7174
|
'suitabilityComplete',
|
|
7170
7175
|
'proposalComplete',
|
|
@@ -15708,6 +15713,7 @@ const ROUTES = {
|
|
|
15708
15713
|
ALERTS: {
|
|
15709
15714
|
BASE: 'admin/alerts',
|
|
15710
15715
|
SEND_ALERT: 'admin/alerts/send',
|
|
15716
|
+
SEND_DISCORD_MESSAGE: 'admin/alerts/discord',
|
|
15711
15717
|
},
|
|
15712
15718
|
GOLDEN_DATASET: {
|
|
15713
15719
|
BASE: 'admin/golden-dataset',
|
|
@@ -24983,6 +24989,7 @@ exports.selectAgencyException = selectAgencyException;
|
|
|
24983
24989
|
exports.selectContractorException = selectContractorException;
|
|
24984
24990
|
exports.selectorNotFoundError = selectorNotFoundError;
|
|
24985
24991
|
exports.sendAlertPayloadSchema = sendAlertPayloadSchema;
|
|
24992
|
+
exports.sendDiscordMessageRequestBodySchema = sendDiscordMessageRequestBodySchema;
|
|
24986
24993
|
exports.sendMessageRequestSchema = sendMessageRequestSchema;
|
|
24987
24994
|
exports.sendNotificationRequestSchema = sendNotificationRequestSchema;
|
|
24988
24995
|
exports.specialisedProfileSchema = specialisedProfileSchema;
|