switchroom 0.16.46 → 0.16.47
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/agent-scheduler/index.js +80 -80
- package/dist/auth-broker/index.js +80 -80
- package/dist/cli/autoaccept-poll.js +8 -8
- package/dist/cli/drive-write-pretool.mjs +10 -10
- package/dist/cli/notion-write-pretool.mjs +82 -82
- package/dist/cli/skill-validate-pretool.mjs +91 -91
- package/dist/cli/switchroom.js +364 -364
- package/dist/host-control/main.js +157 -157
- package/dist/vault/approvals/kernel-server.js +82 -82
- package/dist/vault/broker/server.js +83 -83
- package/package.json +1 -1
- package/telegram-plugin/dist/bridge/bridge.js +112 -112
- package/telegram-plugin/dist/gateway/gateway.js +451 -262
- package/telegram-plugin/dist/server.js +160 -160
- package/telegram-plugin/gateway/gateway.ts +48 -7
- package/telegram-plugin/tests/vault-request-access-unlock-resume.test.ts +46 -0
|
@@ -66,7 +66,7 @@ var __export = (target, all) => {
|
|
|
66
66
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
67
67
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
68
68
|
|
|
69
|
-
// ../node_modules/grammy/out/filter.js
|
|
69
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/filter.js
|
|
70
70
|
var require_filter = __commonJS((exports) => {
|
|
71
71
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72
72
|
exports.matchFilter = matchFilter;
|
|
@@ -273,11 +273,14 @@ var require_filter = __commonJS((exports) => {
|
|
|
273
273
|
forward_origin: FORWARD_ORIGIN_KEYS,
|
|
274
274
|
is_topic_message: {},
|
|
275
275
|
is_automatic_forward: {},
|
|
276
|
+
guest_query_id: {},
|
|
276
277
|
business_connection_id: {},
|
|
277
278
|
text: {},
|
|
279
|
+
rich_message: {},
|
|
278
280
|
animation: {},
|
|
279
281
|
audio: {},
|
|
280
282
|
document: {},
|
|
283
|
+
live_photo: {},
|
|
281
284
|
paid_media: {},
|
|
282
285
|
photo: {},
|
|
283
286
|
sticker: STICKER_KEYS,
|
|
@@ -392,6 +395,7 @@ var require_filter = __commonJS((exports) => {
|
|
|
392
395
|
business_message: MESSAGE_KEYS,
|
|
393
396
|
edited_business_message: MESSAGE_KEYS,
|
|
394
397
|
deleted_business_messages: {},
|
|
398
|
+
guest_message: MESSAGE_KEYS,
|
|
395
399
|
inline_query: {},
|
|
396
400
|
chosen_inline_result: {},
|
|
397
401
|
callback_query: CALLBACK_QUERY_KEYS,
|
|
@@ -416,9 +420,10 @@ var require_filter = __commonJS((exports) => {
|
|
|
416
420
|
};
|
|
417
421
|
var L2_SHORTCUTS = {
|
|
418
422
|
"": ["entities", "caption_entities"],
|
|
419
|
-
media: ["photo", "video"],
|
|
423
|
+
media: ["photo", "live_photo", "video"],
|
|
420
424
|
file: [
|
|
421
425
|
"photo",
|
|
426
|
+
"live_photo",
|
|
422
427
|
"animation",
|
|
423
428
|
"audio",
|
|
424
429
|
"document",
|
|
@@ -430,7 +435,7 @@ var require_filter = __commonJS((exports) => {
|
|
|
430
435
|
};
|
|
431
436
|
});
|
|
432
437
|
|
|
433
|
-
// ../node_modules/grammy/out/context.js
|
|
438
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/context.js
|
|
434
439
|
var require_context = __commonJS((exports) => {
|
|
435
440
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
436
441
|
exports.Context = undefined;
|
|
@@ -620,6 +625,9 @@ var require_context = __commonJS((exports) => {
|
|
|
620
625
|
get deletedBusinessMessages() {
|
|
621
626
|
return this.update.deleted_business_messages;
|
|
622
627
|
}
|
|
628
|
+
get guestMessage() {
|
|
629
|
+
return this.update.guest_message;
|
|
630
|
+
}
|
|
623
631
|
get messageReaction() {
|
|
624
632
|
return this.update.message_reaction;
|
|
625
633
|
}
|
|
@@ -669,8 +677,8 @@ var require_context = __commonJS((exports) => {
|
|
|
669
677
|
return this.update.purchased_paid_media;
|
|
670
678
|
}
|
|
671
679
|
get msg() {
|
|
672
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
673
|
-
return (_f = (_e = (_d = (_c = (_b = (_a = this.message) !== null && _a !== undefined ? _a : this.editedMessage) !== null && _b !== undefined ? _b : this.channelPost) !== null && _c !== undefined ? _c : this.editedChannelPost) !== null && _d !== undefined ? _d : this.businessMessage) !== null && _e !== undefined ? _e : this.editedBusinessMessage) !== null && _f !== undefined ? _f :
|
|
680
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
681
|
+
return (_g = (_f = (_e = (_d = (_c = (_b = (_a = this.message) !== null && _a !== undefined ? _a : this.editedMessage) !== null && _b !== undefined ? _b : this.channelPost) !== null && _c !== undefined ? _c : this.editedChannelPost) !== null && _d !== undefined ? _d : this.businessMessage) !== null && _e !== undefined ? _e : this.editedBusinessMessage) !== null && _f !== undefined ? _f : this.guestMessage) !== null && _g !== undefined ? _g : (_h = this.callbackQuery) === null || _h === undefined ? undefined : _h.message;
|
|
674
682
|
}
|
|
675
683
|
get chat() {
|
|
676
684
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
@@ -681,8 +689,8 @@ var require_context = __commonJS((exports) => {
|
|
|
681
689
|
return (_a = this.msg) === null || _a === undefined ? undefined : _a.sender_chat;
|
|
682
690
|
}
|
|
683
691
|
get from() {
|
|
684
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
685
|
-
return (_g = (
|
|
692
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
|
693
|
+
return (_h = (_g = (_c = (_b = (_a = this.businessConnection) !== null && _a !== undefined ? _a : this.messageReaction) !== null && _b !== undefined ? _b : this.managedBot) !== null && _c !== undefined ? _c : (_f = (_e = (_d = this.chatBoost) === null || _d === undefined ? undefined : _d.boost) !== null && _e !== undefined ? _e : this.removedChatBoost) === null || _f === undefined ? undefined : _f.source) === null || _g === undefined ? undefined : _g.user) !== null && _h !== undefined ? _h : (_t = (_s = (_r = (_q = (_p = (_o = (_m = (_l = (_k = (_j = this.callbackQuery) !== null && _j !== undefined ? _j : this.msg) !== null && _k !== undefined ? _k : this.inlineQuery) !== null && _l !== undefined ? _l : this.chosenInlineResult) !== null && _m !== undefined ? _m : this.shippingQuery) !== null && _o !== undefined ? _o : this.preCheckoutQuery) !== null && _p !== undefined ? _p : this.myChatMember) !== null && _q !== undefined ? _q : this.chatMember) !== null && _r !== undefined ? _r : this.chatJoinRequest) !== null && _s !== undefined ? _s : this.purchasedPaidMedia) === null || _t === undefined ? undefined : _t.from;
|
|
686
694
|
}
|
|
687
695
|
get msgId() {
|
|
688
696
|
var _a, _b, _c, _d, _e;
|
|
@@ -841,10 +849,13 @@ var require_context = __commonJS((exports) => {
|
|
|
841
849
|
...other
|
|
842
850
|
}, signal);
|
|
843
851
|
}
|
|
844
|
-
|
|
852
|
+
replyWithRichMessage(rich_message, other, signal) {
|
|
853
|
+
var _a;
|
|
845
854
|
const msg = this.msg;
|
|
846
|
-
return this.api.
|
|
847
|
-
|
|
855
|
+
return this.api.sendRichMessage(orThrow(this.chatId, "sendRichMessage"), rich_message, {
|
|
856
|
+
business_connection_id: this.businessConnectionId,
|
|
857
|
+
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
858
|
+
direct_messages_topic_id: (_a = msg === null || msg === undefined ? undefined : msg.direct_messages_topic) === null || _a === undefined ? undefined : _a.topic_id,
|
|
848
859
|
...other
|
|
849
860
|
}, signal);
|
|
850
861
|
}
|
|
@@ -890,6 +901,16 @@ var require_context = __commonJS((exports) => {
|
|
|
890
901
|
...other
|
|
891
902
|
}, signal);
|
|
892
903
|
}
|
|
904
|
+
replyWithLivePhoto(live_photo, photo, other, signal) {
|
|
905
|
+
var _a;
|
|
906
|
+
const msg = this.msg;
|
|
907
|
+
return this.api.sendLivePhoto(orThrow(this.chatId, "sendLivePhoto"), live_photo, photo, {
|
|
908
|
+
business_connection_id: this.businessConnectionId,
|
|
909
|
+
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
910
|
+
direct_messages_topic_id: (_a = msg === null || msg === undefined ? undefined : msg.direct_messages_topic) === null || _a === undefined ? undefined : _a.topic_id,
|
|
911
|
+
...other
|
|
912
|
+
}, signal);
|
|
913
|
+
}
|
|
893
914
|
replyWithAudio(audio, other, signal) {
|
|
894
915
|
var _a;
|
|
895
916
|
const msg = this.msg;
|
|
@@ -950,6 +971,19 @@ var require_context = __commonJS((exports) => {
|
|
|
950
971
|
...other
|
|
951
972
|
}, signal);
|
|
952
973
|
}
|
|
974
|
+
sendPaidMedia(...args) {
|
|
975
|
+
return this.replyWithPaidMedia(...args);
|
|
976
|
+
}
|
|
977
|
+
replyWithPaidMedia(star_count, media, other, signal) {
|
|
978
|
+
var _a, _b;
|
|
979
|
+
const msg = this.msg;
|
|
980
|
+
return this.api.sendPaidMedia(orThrow(this.chatId, "sendPaidMedia"), star_count, media, {
|
|
981
|
+
business_connection_id: this.businessConnectionId,
|
|
982
|
+
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
983
|
+
direct_messages_topic_id: (_b = (_a = this.msg) === null || _a === undefined ? undefined : _a.direct_messages_topic) === null || _b === undefined ? undefined : _b.topic_id,
|
|
984
|
+
...other
|
|
985
|
+
}, signal);
|
|
986
|
+
}
|
|
953
987
|
replyWithMediaGroup(media, other, signal) {
|
|
954
988
|
var _a;
|
|
955
989
|
const msg = this.msg;
|
|
@@ -978,16 +1012,6 @@ var require_context = __commonJS((exports) => {
|
|
|
978
1012
|
const inlineId = this.inlineMessageId;
|
|
979
1013
|
return inlineId !== undefined ? this.api.stopMessageLiveLocationInline(inlineId, { business_connection_id: this.businessConnectionId, ...other }, signal) : this.api.stopMessageLiveLocation(orThrow(this.chatId, "stopMessageLiveLocation"), orThrow(this.msgId, "stopMessageLiveLocation"), { business_connection_id: this.businessConnectionId, ...other }, signal);
|
|
980
1014
|
}
|
|
981
|
-
sendPaidMedia(star_count, media, other, signal) {
|
|
982
|
-
var _a, _b;
|
|
983
|
-
const msg = this.msg;
|
|
984
|
-
return this.api.sendPaidMedia(orThrow(this.chatId, "sendPaidMedia"), star_count, media, {
|
|
985
|
-
business_connection_id: this.businessConnectionId,
|
|
986
|
-
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
987
|
-
direct_messages_topic_id: (_b = (_a = this.msg) === null || _a === undefined ? undefined : _a.direct_messages_topic) === null || _b === undefined ? undefined : _b.topic_id,
|
|
988
|
-
...other
|
|
989
|
-
}, signal);
|
|
990
|
-
}
|
|
991
1015
|
replyWithVenue(latitude, longitude, title, address, other, signal) {
|
|
992
1016
|
var _a;
|
|
993
1017
|
const msg = this.msg;
|
|
@@ -1046,6 +1070,20 @@ var require_context = __commonJS((exports) => {
|
|
|
1046
1070
|
react(reaction, other, signal) {
|
|
1047
1071
|
return this.api.setMessageReaction(orThrow(this.chatId, "setMessageReaction"), orThrow(this.msgId, "setMessageReaction"), typeof reaction === "string" ? [{ type: "emoji", emoji: reaction }] : (Array.isArray(reaction) ? reaction : [reaction]).map((emoji) => typeof emoji === "string" ? { type: "emoji", emoji } : emoji), other, signal);
|
|
1048
1072
|
}
|
|
1073
|
+
replyWithDraft(text, other, signal) {
|
|
1074
|
+
const msg = this.msg;
|
|
1075
|
+
return this.api.sendMessageDraft(orThrow(this.chatId, "sendMessageDraft"), this.update.update_id, text, {
|
|
1076
|
+
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
1077
|
+
...other
|
|
1078
|
+
}, signal);
|
|
1079
|
+
}
|
|
1080
|
+
replyWithRichMessageDraft(rich_message, other, signal) {
|
|
1081
|
+
const msg = this.msg;
|
|
1082
|
+
return this.api.sendRichMessageDraft(orThrow(this.chatId, "sendMessageDraft"), this.update.update_id, rich_message, {
|
|
1083
|
+
...(msg === null || msg === undefined ? undefined : msg.is_topic_message) ? { message_thread_id: msg.message_thread_id } : {},
|
|
1084
|
+
...other
|
|
1085
|
+
}, signal);
|
|
1086
|
+
}
|
|
1049
1087
|
getUserProfilePhotos(other, signal) {
|
|
1050
1088
|
return this.api.getUserProfilePhotos(orThrow(this.from, "getUserProfilePhotos").id, other, signal);
|
|
1051
1089
|
}
|
|
@@ -1067,6 +1105,18 @@ var require_context = __commonJS((exports) => {
|
|
|
1067
1105
|
getBusinessConnection(signal) {
|
|
1068
1106
|
return this.api.getBusinessConnection(orThrow(this.businessConnectionId, "getBusinessConnection"), signal);
|
|
1069
1107
|
}
|
|
1108
|
+
getManagedBotToken(signal) {
|
|
1109
|
+
return this.api.getManagedBotToken(orThrow(this.managedBot, "getManagedBotToken").bot.id, signal);
|
|
1110
|
+
}
|
|
1111
|
+
replaceManagedBotToken(signal) {
|
|
1112
|
+
return this.api.replaceManagedBotToken(orThrow(this.managedBot, "getManagedBotToken").bot.id, signal);
|
|
1113
|
+
}
|
|
1114
|
+
getManagedBotAccessSettings(signal) {
|
|
1115
|
+
return this.api.getManagedBotAccessSettings(orThrow(this.managedBot, "getManagedBotAccessSettings").bot.id, signal);
|
|
1116
|
+
}
|
|
1117
|
+
setManagedBotAccessSettings(is_access_restricted, other, signal) {
|
|
1118
|
+
return this.api.setManagedBotAccessSettings(orThrow(this.managedBot, "setManagedBotAccessSettings").bot.id, is_access_restricted, other, signal);
|
|
1119
|
+
}
|
|
1070
1120
|
getFile(signal) {
|
|
1071
1121
|
var _a, _b, _c, _d, _e, _f;
|
|
1072
1122
|
const m = orThrow(this.msg, "getFile");
|
|
@@ -1139,18 +1189,20 @@ var require_context = __commonJS((exports) => {
|
|
|
1139
1189
|
revokeChatInviteLink(invite_link, signal) {
|
|
1140
1190
|
return this.api.revokeChatInviteLink(orThrow(this.chatId, "editChatInviteLink"), invite_link, signal);
|
|
1141
1191
|
}
|
|
1142
|
-
getManagedBotToken(signal) {
|
|
1143
|
-
return this.api.getManagedBotToken(orThrow(this.managedBot, "getManagedBotToken").bot.id, signal);
|
|
1144
|
-
}
|
|
1145
|
-
replaceManagedBotToken(signal) {
|
|
1146
|
-
return this.api.replaceManagedBotToken(orThrow(this.managedBot, "getManagedBotToken").bot.id, signal);
|
|
1147
|
-
}
|
|
1148
1192
|
approveChatJoinRequest(user_id, signal) {
|
|
1149
1193
|
return this.api.approveChatJoinRequest(orThrow(this.chatId, "approveChatJoinRequest"), user_id, signal);
|
|
1150
1194
|
}
|
|
1151
1195
|
declineChatJoinRequest(user_id, signal) {
|
|
1152
1196
|
return this.api.declineChatJoinRequest(orThrow(this.chatId, "declineChatJoinRequest"), user_id, signal);
|
|
1153
1197
|
}
|
|
1198
|
+
answerChatJoinRequestQuery(result, signal) {
|
|
1199
|
+
var _a;
|
|
1200
|
+
return this.api.answerChatJoinRequestQuery(orThrow((_a = this.chatJoinRequest) === null || _a === undefined ? undefined : _a.query_id, "answerChatJoinRequestQuery"), result, signal);
|
|
1201
|
+
}
|
|
1202
|
+
replyWithChatJoinRequestWebApp(web_app_url, signal) {
|
|
1203
|
+
var _a;
|
|
1204
|
+
return this.api.sendChatJoinRequestWebApp(orThrow((_a = this.chatJoinRequest) === null || _a === undefined ? undefined : _a.query_id, "answerChatJoinRequestQuery"), web_app_url, signal);
|
|
1205
|
+
}
|
|
1154
1206
|
approveSuggestedPost(other, signal) {
|
|
1155
1207
|
return this.api.approveSuggestedPost(orThrow(this.chatId, "approveSuggestedPost"), orThrow(this.msgId, "approveSuggestedPost"), other, signal);
|
|
1156
1208
|
}
|
|
@@ -1184,8 +1236,8 @@ var require_context = __commonJS((exports) => {
|
|
|
1184
1236
|
getChat(signal) {
|
|
1185
1237
|
return this.api.getChat(orThrow(this.chatId, "getChat"), signal);
|
|
1186
1238
|
}
|
|
1187
|
-
getChatAdministrators(signal) {
|
|
1188
|
-
return this.api.getChatAdministrators(orThrow(this.chatId, "getChatAdministrators"), signal);
|
|
1239
|
+
getChatAdministrators(other, signal) {
|
|
1240
|
+
return this.api.getChatAdministrators(orThrow(this.chatId, "getChatAdministrators"), other, signal);
|
|
1189
1241
|
}
|
|
1190
1242
|
getChatMembersCount(...args) {
|
|
1191
1243
|
return this.getChatMemberCount(...args);
|
|
@@ -1199,6 +1251,9 @@ var require_context = __commonJS((exports) => {
|
|
|
1199
1251
|
getChatMember(user_id, signal) {
|
|
1200
1252
|
return this.api.getChatMember(orThrow(this.chatId, "getChatMember"), user_id, signal);
|
|
1201
1253
|
}
|
|
1254
|
+
getUserPersonalChatMessages(limit, signal) {
|
|
1255
|
+
return this.api.getUserPersonalChatMessages(orThrow(this.from, "getUserPersonalChatMessages").id, limit, signal);
|
|
1256
|
+
}
|
|
1202
1257
|
setChatStickerSet(sticker_set_name, signal) {
|
|
1203
1258
|
return this.api.setChatStickerSet(orThrow(this.chatId, "setChatStickerSet"), sticker_set_name, signal);
|
|
1204
1259
|
}
|
|
@@ -1254,6 +1309,10 @@ var require_context = __commonJS((exports) => {
|
|
|
1254
1309
|
answerCallbackQuery(other, signal) {
|
|
1255
1310
|
return this.api.answerCallbackQuery(orThrow(this.callbackQuery, "answerCallbackQuery").id, typeof other === "string" ? { text: other } : other, signal);
|
|
1256
1311
|
}
|
|
1312
|
+
answerGuestQuery(result, signal) {
|
|
1313
|
+
var _a;
|
|
1314
|
+
return this.api.answerGuestQuery(orThrow((_a = this.guestMessage) === null || _a === undefined ? undefined : _a.guest_query_id, "answerGuestQuery"), result, signal);
|
|
1315
|
+
}
|
|
1257
1316
|
setChatMenuButton(other, signal) {
|
|
1258
1317
|
return this.api.setChatMenuButton(other, signal);
|
|
1259
1318
|
}
|
|
@@ -1297,6 +1356,38 @@ var require_context = __commonJS((exports) => {
|
|
|
1297
1356
|
deleteMessages(message_ids, signal) {
|
|
1298
1357
|
return this.api.deleteMessages(orThrow(this.chatId, "deleteMessages"), message_ids, signal);
|
|
1299
1358
|
}
|
|
1359
|
+
deleteMessageReaction(other, signal) {
|
|
1360
|
+
const reaction = orThrow(this.messageReaction, "deleteMessageReaction");
|
|
1361
|
+
if (reaction.user !== undefined) {
|
|
1362
|
+
return this.deleteMessageReactionUser(reaction.user.id, other, signal);
|
|
1363
|
+
} else if (reaction.actor_chat !== undefined) {
|
|
1364
|
+
return this.deleteMessageReactionChat(reaction.actor_chat.id, other, signal);
|
|
1365
|
+
} else {
|
|
1366
|
+
throw new Error("Missing information from message_reaction update for API call to deleteMessageReaction");
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
deleteMessageReactionUser(user_id, other, signal) {
|
|
1370
|
+
return this.api.deleteMessageReactionUser(orThrow(this.chatId, "deleteMessageReactionUser"), orThrow(this.msgId, "deleteMessageReactionUser"), user_id, other, signal);
|
|
1371
|
+
}
|
|
1372
|
+
deleteMessageReactionChat(actor_chat_id, other, signal) {
|
|
1373
|
+
return this.api.deleteMessageReactionChat(orThrow(this.chatId, "deleteMessageReactionChat"), orThrow(this.msgId, "deleteMessageReactionChat"), actor_chat_id, other, signal);
|
|
1374
|
+
}
|
|
1375
|
+
deleteAllMessageReactions(other, signal) {
|
|
1376
|
+
var _a, _b, _c, _d;
|
|
1377
|
+
const chatId = orThrow(this.chatId, "deleteAllMessageReactions");
|
|
1378
|
+
const actor = (_c = (_b = (_a = this.messageReaction) === null || _a === undefined ? undefined : _a.actor_chat) !== null && _b !== undefined ? _b : this.senderChat) !== null && _c !== undefined ? _c : (_d = this.pollAnswer) === null || _d === undefined ? undefined : _d.voter_chat;
|
|
1379
|
+
if (actor !== undefined) {
|
|
1380
|
+
return this.api.deleteAllMessageReactionsChat(chatId, actor.id, other, signal);
|
|
1381
|
+
}
|
|
1382
|
+
const userId = orThrow(this.from, "deleteAllMessageReactions").id;
|
|
1383
|
+
return this.api.deleteAllMessageReactionsUser(chatId, userId, other, signal);
|
|
1384
|
+
}
|
|
1385
|
+
deleteAllMessageReactionsUser(user_id, other, signal) {
|
|
1386
|
+
return this.api.deleteAllMessageReactionsUser(orThrow(this.chatId, "deleteAllMessageReactionsUser"), user_id, other, signal);
|
|
1387
|
+
}
|
|
1388
|
+
deleteAllMessageReactionsChat(actor_chat_id, other, signal) {
|
|
1389
|
+
return this.api.deleteAllMessageReactionsChat(orThrow(this.chatId, "deleteAllMessageReactionsChat"), actor_chat_id, other, signal);
|
|
1390
|
+
}
|
|
1300
1391
|
deleteBusinessMessages(message_ids, signal) {
|
|
1301
1392
|
return this.api.deleteBusinessMessages(orThrow(this.businessConnectionId, "deleteBusinessMessages"), message_ids, signal);
|
|
1302
1393
|
}
|
|
@@ -1457,7 +1548,7 @@ var require_context = __commonJS((exports) => {
|
|
|
1457
1548
|
}
|
|
1458
1549
|
});
|
|
1459
1550
|
|
|
1460
|
-
// ../node_modules/grammy/out/composer.js
|
|
1551
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/composer.js
|
|
1461
1552
|
var require_composer = __commonJS((exports) => {
|
|
1462
1553
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1463
1554
|
exports.Composer = exports.BotError = undefined;
|
|
@@ -1619,7 +1710,7 @@ var require_composer = __commonJS((exports) => {
|
|
|
1619
1710
|
exports.Composer = Composer;
|
|
1620
1711
|
});
|
|
1621
1712
|
|
|
1622
|
-
// ../node_modules/ms/index.js
|
|
1713
|
+
// ../node_modules/.bun/ms@2.1.3/node_modules/ms/index.js
|
|
1623
1714
|
var require_ms = __commonJS((exports, module) => {
|
|
1624
1715
|
var s = 1000;
|
|
1625
1716
|
var m = s * 60;
|
|
@@ -1729,7 +1820,7 @@ var require_ms = __commonJS((exports, module) => {
|
|
|
1729
1820
|
}
|
|
1730
1821
|
});
|
|
1731
1822
|
|
|
1732
|
-
// ../node_modules/debug/src/common.js
|
|
1823
|
+
// ../node_modules/.bun/debug@4.4.3/node_modules/debug/src/common.js
|
|
1733
1824
|
var require_common = __commonJS((exports, module) => {
|
|
1734
1825
|
function setup(env) {
|
|
1735
1826
|
createDebug.debug = createDebug;
|
|
@@ -1904,7 +1995,7 @@ var require_common = __commonJS((exports, module) => {
|
|
|
1904
1995
|
module.exports = setup;
|
|
1905
1996
|
});
|
|
1906
1997
|
|
|
1907
|
-
// ../node_modules/debug/src/browser.js
|
|
1998
|
+
// ../node_modules/.bun/debug@4.4.3/node_modules/debug/src/browser.js
|
|
1908
1999
|
var require_browser = __commonJS((exports, module) => {
|
|
1909
2000
|
exports.formatArgs = formatArgs;
|
|
1910
2001
|
exports.save = save;
|
|
@@ -2064,7 +2155,7 @@ var require_browser = __commonJS((exports, module) => {
|
|
|
2064
2155
|
};
|
|
2065
2156
|
});
|
|
2066
2157
|
|
|
2067
|
-
// ../node_modules/has-flag/index.js
|
|
2158
|
+
// ../node_modules/.bun/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
2068
2159
|
var require_has_flag = __commonJS((exports, module) => {
|
|
2069
2160
|
module.exports = (flag, argv = process.argv) => {
|
|
2070
2161
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
@@ -2074,7 +2165,7 @@ var require_has_flag = __commonJS((exports, module) => {
|
|
|
2074
2165
|
};
|
|
2075
2166
|
});
|
|
2076
2167
|
|
|
2077
|
-
// ../node_modules/supports-color/index.js
|
|
2168
|
+
// ../node_modules/.bun/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
2078
2169
|
var require_supports_color = __commonJS((exports, module) => {
|
|
2079
2170
|
var os = __require("os");
|
|
2080
2171
|
var tty = __require("tty");
|
|
@@ -2173,7 +2264,7 @@ var require_supports_color = __commonJS((exports, module) => {
|
|
|
2173
2264
|
};
|
|
2174
2265
|
});
|
|
2175
2266
|
|
|
2176
|
-
// ../node_modules/debug/src/node.js
|
|
2267
|
+
// ../node_modules/.bun/debug@4.4.3/node_modules/debug/src/node.js
|
|
2177
2268
|
var require_node = __commonJS((exports, module) => {
|
|
2178
2269
|
var tty = __require("tty");
|
|
2179
2270
|
var util = __require("util");
|
|
@@ -2344,7 +2435,7 @@ var require_node = __commonJS((exports, module) => {
|
|
|
2344
2435
|
};
|
|
2345
2436
|
});
|
|
2346
2437
|
|
|
2347
|
-
// ../node_modules/debug/src/index.js
|
|
2438
|
+
// ../node_modules/.bun/debug@4.4.3/node_modules/debug/src/index.js
|
|
2348
2439
|
var require_src = __commonJS((exports, module) => {
|
|
2349
2440
|
if (typeof process === "undefined" || process.type === "renderer" || false || process.__nwjs) {
|
|
2350
2441
|
module.exports = require_browser();
|
|
@@ -2353,7 +2444,7 @@ var require_src = __commonJS((exports, module) => {
|
|
|
2353
2444
|
}
|
|
2354
2445
|
});
|
|
2355
2446
|
|
|
2356
|
-
// ../node_modules/grammy/out/platform.node.js
|
|
2447
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/platform.node.js
|
|
2357
2448
|
var require_platform_node = __commonJS((exports) => {
|
|
2358
2449
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2359
2450
|
exports.defaultAdapter = exports.itrToStream = exports.debug = undefined;
|
|
@@ -2393,7 +2484,7 @@ var require_platform_node = __commonJS((exports) => {
|
|
|
2393
2484
|
exports.defaultAdapter = "express";
|
|
2394
2485
|
});
|
|
2395
2486
|
|
|
2396
|
-
// ../node_modules/grammy/out/core/error.js
|
|
2487
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/core/error.js
|
|
2397
2488
|
var require_error = __commonJS((exports) => {
|
|
2398
2489
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2399
2490
|
exports.HttpError = exports.GrammyError = undefined;
|
|
@@ -2449,10 +2540,10 @@ var require_error = __commonJS((exports) => {
|
|
|
2449
2540
|
}
|
|
2450
2541
|
});
|
|
2451
2542
|
|
|
2452
|
-
// ../node_modules/@grammyjs/types/mod.js
|
|
2543
|
+
// ../node_modules/.bun/@grammyjs+types@3.28.0/node_modules/@grammyjs/types/mod.js
|
|
2453
2544
|
var exports_mod = {};
|
|
2454
2545
|
|
|
2455
|
-
// ../node_modules/grammy/out/types.node.js
|
|
2546
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/types.node.js
|
|
2456
2547
|
var require_types_node = __commonJS((exports) => {
|
|
2457
2548
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
2458
2549
|
if (k2 === undefined)
|
|
@@ -2543,7 +2634,7 @@ var require_types_node = __commonJS((exports) => {
|
|
|
2543
2634
|
}
|
|
2544
2635
|
});
|
|
2545
2636
|
|
|
2546
|
-
// ../node_modules/grammy/out/types.js
|
|
2637
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/types.js
|
|
2547
2638
|
var require_types = __commonJS((exports) => {
|
|
2548
2639
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
2549
2640
|
if (k2 === undefined)
|
|
@@ -2569,7 +2660,7 @@ var require_types = __commonJS((exports) => {
|
|
|
2569
2660
|
__exportStar(require_types_node(), exports);
|
|
2570
2661
|
});
|
|
2571
2662
|
|
|
2572
|
-
// ../node_modules/grammy/out/core/payload.js
|
|
2663
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/core/payload.js
|
|
2573
2664
|
var require_payload = __commonJS((exports) => {
|
|
2574
2665
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2575
2666
|
exports.requiresFormDataUpload = requiresFormDataUpload;
|
|
@@ -2709,7 +2800,7 @@ content-type:application/octet-stream\r
|
|
|
2709
2800
|
}
|
|
2710
2801
|
});
|
|
2711
2802
|
|
|
2712
|
-
// ../node_modules/event-target-shim/dist/event-target-shim.js
|
|
2803
|
+
// ../node_modules/.bun/event-target-shim@5.0.1/node_modules/event-target-shim/dist/event-target-shim.js
|
|
2713
2804
|
var require_event_target_shim = __commonJS((exports, module) => {
|
|
2714
2805
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2715
2806
|
var privateData = new WeakMap;
|
|
@@ -3149,7 +3240,7 @@ var require_event_target_shim = __commonJS((exports, module) => {
|
|
|
3149
3240
|
module.exports.defineEventAttribute = defineEventAttribute;
|
|
3150
3241
|
});
|
|
3151
3242
|
|
|
3152
|
-
// ../node_modules/abort-controller/dist/abort-controller.js
|
|
3243
|
+
// ../node_modules/.bun/abort-controller@3.0.0/node_modules/abort-controller/dist/abort-controller.js
|
|
3153
3244
|
var require_abort_controller = __commonJS((exports, module) => {
|
|
3154
3245
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3155
3246
|
var eventTargetShim = require_event_target_shim();
|
|
@@ -3229,7 +3320,7 @@ var require_abort_controller = __commonJS((exports, module) => {
|
|
|
3229
3320
|
module.exports.AbortSignal = AbortSignal2;
|
|
3230
3321
|
});
|
|
3231
3322
|
|
|
3232
|
-
// ../node_modules/grammy/out/shim.node.js
|
|
3323
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/shim.node.js
|
|
3233
3324
|
var require_shim_node = __commonJS((exports) => {
|
|
3234
3325
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3235
3326
|
exports.fetch = exports.AbortController = undefined;
|
|
@@ -3243,7 +3334,7 @@ var require_shim_node = __commonJS((exports) => {
|
|
|
3243
3334
|
} });
|
|
3244
3335
|
});
|
|
3245
3336
|
|
|
3246
|
-
// ../node_modules/grammy/out/core/client.js
|
|
3337
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/core/client.js
|
|
3247
3338
|
var require_client = __commonJS((exports) => {
|
|
3248
3339
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3249
3340
|
exports.createRawApi = createRawApi;
|
|
@@ -3423,7 +3514,7 @@ If you want to prevent such mistakes in the future, consider using TypeScript. h
|
|
|
3423
3514
|
var shim_node_js_1 = require_shim_node();
|
|
3424
3515
|
});
|
|
3425
3516
|
|
|
3426
|
-
// ../node_modules/grammy/out/core/api.js
|
|
3517
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/core/api.js
|
|
3427
3518
|
var require_api = __commonJS((exports) => {
|
|
3428
3519
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3429
3520
|
exports.Api = undefined;
|
|
@@ -3464,8 +3555,8 @@ var require_api = __commonJS((exports) => {
|
|
|
3464
3555
|
sendMessage(chat_id, text, other, signal) {
|
|
3465
3556
|
return this.raw.sendMessage({ chat_id, text, ...other }, signal);
|
|
3466
3557
|
}
|
|
3467
|
-
|
|
3468
|
-
return this.raw.
|
|
3558
|
+
sendRichMessage(chat_id, rich_message, other, signal) {
|
|
3559
|
+
return this.raw.sendRichMessage({ chat_id, rich_message, ...other }, signal);
|
|
3469
3560
|
}
|
|
3470
3561
|
forwardMessage(chat_id, from_chat_id, message_id, other, signal) {
|
|
3471
3562
|
return this.raw.forwardMessage({ chat_id, from_chat_id, message_id, ...other }, signal);
|
|
@@ -3492,6 +3583,9 @@ var require_api = __commonJS((exports) => {
|
|
|
3492
3583
|
sendPhoto(chat_id, photo, other, signal) {
|
|
3493
3584
|
return this.raw.sendPhoto({ chat_id, photo, ...other }, signal);
|
|
3494
3585
|
}
|
|
3586
|
+
sendLivePhoto(chat_id, live_photo, photo, other, signal) {
|
|
3587
|
+
return this.raw.sendLivePhoto({ chat_id, live_photo, photo, ...other }, signal);
|
|
3588
|
+
}
|
|
3495
3589
|
sendAudio(chat_id, audio, other, signal) {
|
|
3496
3590
|
return this.raw.sendAudio({ chat_id, audio, ...other }, signal);
|
|
3497
3591
|
}
|
|
@@ -3510,6 +3604,9 @@ var require_api = __commonJS((exports) => {
|
|
|
3510
3604
|
sendVideoNote(chat_id, video_note, other, signal) {
|
|
3511
3605
|
return this.raw.sendVideoNote({ chat_id, video_note, ...other }, signal);
|
|
3512
3606
|
}
|
|
3607
|
+
sendPaidMedia(chat_id, star_count, media, other, signal) {
|
|
3608
|
+
return this.raw.sendPaidMedia({ chat_id, star_count, media, ...other }, signal);
|
|
3609
|
+
}
|
|
3513
3610
|
sendMediaGroup(chat_id, media, other, signal) {
|
|
3514
3611
|
return this.raw.sendMediaGroup({ chat_id, media, ...other }, signal);
|
|
3515
3612
|
}
|
|
@@ -3528,9 +3625,6 @@ var require_api = __commonJS((exports) => {
|
|
|
3528
3625
|
stopMessageLiveLocationInline(inline_message_id, other, signal) {
|
|
3529
3626
|
return this.raw.stopMessageLiveLocation({ inline_message_id, ...other }, signal);
|
|
3530
3627
|
}
|
|
3531
|
-
sendPaidMedia(chat_id, star_count, media, other, signal) {
|
|
3532
|
-
return this.raw.sendPaidMedia({ chat_id, star_count, media, ...other }, signal);
|
|
3533
|
-
}
|
|
3534
3628
|
sendVenue(chat_id, latitude, longitude, title, address, other, signal) {
|
|
3535
3629
|
return this.raw.sendVenue({ chat_id, latitude, longitude, title, address, ...other }, signal);
|
|
3536
3630
|
}
|
|
@@ -3569,6 +3663,12 @@ var require_api = __commonJS((exports) => {
|
|
|
3569
3663
|
...other
|
|
3570
3664
|
}, signal);
|
|
3571
3665
|
}
|
|
3666
|
+
sendMessageDraft(chat_id, draft_id, text, other, signal) {
|
|
3667
|
+
return this.raw.sendMessageDraft({ chat_id, draft_id, text, ...other }, signal);
|
|
3668
|
+
}
|
|
3669
|
+
sendRichMessageDraft(chat_id, draft_id, rich_message, other, signal) {
|
|
3670
|
+
return this.raw.sendRichMessageDraft({ chat_id, draft_id, rich_message, ...other }, signal);
|
|
3671
|
+
}
|
|
3572
3672
|
sendChatAction(chat_id, action, other, signal) {
|
|
3573
3673
|
return this.raw.sendChatAction({ chat_id, action, ...other }, signal);
|
|
3574
3674
|
}
|
|
@@ -3593,6 +3693,22 @@ var require_api = __commonJS((exports) => {
|
|
|
3593
3693
|
getBusinessConnection(business_connection_id, signal) {
|
|
3594
3694
|
return this.raw.getBusinessConnection({ business_connection_id }, signal);
|
|
3595
3695
|
}
|
|
3696
|
+
getManagedBotToken(user_id, signal) {
|
|
3697
|
+
return this.raw.getManagedBotToken({ user_id }, signal);
|
|
3698
|
+
}
|
|
3699
|
+
replaceManagedBotToken(user_id, signal) {
|
|
3700
|
+
return this.raw.replaceManagedBotToken({ user_id }, signal);
|
|
3701
|
+
}
|
|
3702
|
+
getManagedBotAccessSettings(user_id, signal) {
|
|
3703
|
+
return this.raw.getManagedBotAccessSettings({ user_id }, signal);
|
|
3704
|
+
}
|
|
3705
|
+
setManagedBotAccessSettings(user_id, is_access_restricted, other, signal) {
|
|
3706
|
+
return this.raw.setManagedBotAccessSettings({
|
|
3707
|
+
user_id,
|
|
3708
|
+
is_access_restricted,
|
|
3709
|
+
...other
|
|
3710
|
+
}, signal);
|
|
3711
|
+
}
|
|
3596
3712
|
getFile(file_id, signal) {
|
|
3597
3713
|
return this.raw.getFile({ file_id }, signal);
|
|
3598
3714
|
}
|
|
@@ -3644,18 +3760,18 @@ var require_api = __commonJS((exports) => {
|
|
|
3644
3760
|
revokeChatInviteLink(chat_id, invite_link, signal) {
|
|
3645
3761
|
return this.raw.revokeChatInviteLink({ chat_id, invite_link }, signal);
|
|
3646
3762
|
}
|
|
3647
|
-
getManagedBotToken(user_id, signal) {
|
|
3648
|
-
return this.raw.getManagedBotToken({ user_id }, signal);
|
|
3649
|
-
}
|
|
3650
|
-
replaceManagedBotToken(user_id, signal) {
|
|
3651
|
-
return this.raw.replaceManagedBotToken({ user_id }, signal);
|
|
3652
|
-
}
|
|
3653
3763
|
approveChatJoinRequest(chat_id, user_id, signal) {
|
|
3654
3764
|
return this.raw.approveChatJoinRequest({ chat_id, user_id }, signal);
|
|
3655
3765
|
}
|
|
3656
3766
|
declineChatJoinRequest(chat_id, user_id, signal) {
|
|
3657
3767
|
return this.raw.declineChatJoinRequest({ chat_id, user_id }, signal);
|
|
3658
3768
|
}
|
|
3769
|
+
answerChatJoinRequestQuery(chat_join_request_query_id, result, signal) {
|
|
3770
|
+
return this.raw.answerChatJoinRequestQuery({ chat_join_request_query_id, result }, signal);
|
|
3771
|
+
}
|
|
3772
|
+
sendChatJoinRequestWebApp(chat_join_request_query_id, web_app_url, signal) {
|
|
3773
|
+
return this.raw.sendChatJoinRequestWebApp({ chat_join_request_query_id, web_app_url }, signal);
|
|
3774
|
+
}
|
|
3659
3775
|
approveSuggestedPost(chat_id, message_id, other, signal) {
|
|
3660
3776
|
return this.raw.approveSuggestedPost({ chat_id, message_id, ...other }, signal);
|
|
3661
3777
|
}
|
|
@@ -3689,8 +3805,8 @@ var require_api = __commonJS((exports) => {
|
|
|
3689
3805
|
getChat(chat_id, signal) {
|
|
3690
3806
|
return this.raw.getChat({ chat_id }, signal);
|
|
3691
3807
|
}
|
|
3692
|
-
getChatAdministrators(chat_id, signal) {
|
|
3693
|
-
return this.raw.getChatAdministrators({ chat_id }, signal);
|
|
3808
|
+
getChatAdministrators(chat_id, other, signal) {
|
|
3809
|
+
return this.raw.getChatAdministrators({ chat_id, ...other }, signal);
|
|
3694
3810
|
}
|
|
3695
3811
|
getChatMembersCount(...args) {
|
|
3696
3812
|
return this.getChatMemberCount(...args);
|
|
@@ -3701,6 +3817,9 @@ var require_api = __commonJS((exports) => {
|
|
|
3701
3817
|
getChatMember(chat_id, user_id, signal) {
|
|
3702
3818
|
return this.raw.getChatMember({ chat_id, user_id }, signal);
|
|
3703
3819
|
}
|
|
3820
|
+
getUserPersonalChatMessages(user_id, limit, signal) {
|
|
3821
|
+
return this.raw.getUserPersonalChatMessages({ user_id, limit }, signal);
|
|
3822
|
+
}
|
|
3704
3823
|
setChatStickerSet(chat_id, sticker_set_name, signal) {
|
|
3705
3824
|
return this.raw.setChatStickerSet({ chat_id, sticker_set_name }, signal);
|
|
3706
3825
|
}
|
|
@@ -3749,6 +3868,9 @@ var require_api = __commonJS((exports) => {
|
|
|
3749
3868
|
answerCallbackQuery(callback_query_id, other, signal) {
|
|
3750
3869
|
return this.raw.answerCallbackQuery({ callback_query_id, ...other }, signal);
|
|
3751
3870
|
}
|
|
3871
|
+
answerGuestQuery(guest_query_id, result, signal) {
|
|
3872
|
+
return this.raw.answerGuestQuery({ guest_query_id, result }, signal);
|
|
3873
|
+
}
|
|
3752
3874
|
setMyName(name, other, signal) {
|
|
3753
3875
|
return this.raw.setMyName({ name, ...other }, signal);
|
|
3754
3876
|
}
|
|
@@ -3797,11 +3919,20 @@ var require_api = __commonJS((exports) => {
|
|
|
3797
3919
|
getMyStarBalance(signal) {
|
|
3798
3920
|
return this.raw.getMyStarBalance(signal);
|
|
3799
3921
|
}
|
|
3800
|
-
editMessageText(chat_id, message_id,
|
|
3801
|
-
return this.raw.editMessageText({ chat_id, message_id, text, ...other }
|
|
3922
|
+
editMessageText(chat_id, message_id, text_or_rich_message, other, signal) {
|
|
3923
|
+
return this.raw.editMessageText(typeof text_or_rich_message === "string" ? { chat_id, message_id, text: text_or_rich_message, ...other } : {
|
|
3924
|
+
chat_id,
|
|
3925
|
+
message_id,
|
|
3926
|
+
rich_message: text_or_rich_message,
|
|
3927
|
+
...other
|
|
3928
|
+
}, signal);
|
|
3802
3929
|
}
|
|
3803
|
-
editMessageTextInline(inline_message_id,
|
|
3804
|
-
return this.raw.editMessageText({ inline_message_id, text, ...other }
|
|
3930
|
+
editMessageTextInline(inline_message_id, text_or_rich_message, other, signal) {
|
|
3931
|
+
return this.raw.editMessageText(typeof text_or_rich_message === "string" ? { inline_message_id, text: text_or_rich_message, ...other } : {
|
|
3932
|
+
inline_message_id,
|
|
3933
|
+
rich_message: text_or_rich_message,
|
|
3934
|
+
...other
|
|
3935
|
+
}, signal);
|
|
3805
3936
|
}
|
|
3806
3937
|
editMessageCaption(chat_id, message_id, other, signal) {
|
|
3807
3938
|
return this.raw.editMessageCaption({ chat_id, message_id, ...other }, signal);
|
|
@@ -3830,6 +3961,36 @@ var require_api = __commonJS((exports) => {
|
|
|
3830
3961
|
deleteMessages(chat_id, message_ids, signal) {
|
|
3831
3962
|
return this.raw.deleteMessages({ chat_id, message_ids }, signal);
|
|
3832
3963
|
}
|
|
3964
|
+
deleteMessageReactionUser(chat_id, message_id, user_id, other, signal) {
|
|
3965
|
+
return this.raw.deleteMessageReaction({
|
|
3966
|
+
chat_id,
|
|
3967
|
+
message_id,
|
|
3968
|
+
user_id,
|
|
3969
|
+
...other
|
|
3970
|
+
}, signal);
|
|
3971
|
+
}
|
|
3972
|
+
deleteMessageReactionChat(chat_id, message_id, actor_chat_id, other, signal) {
|
|
3973
|
+
return this.raw.deleteMessageReaction({
|
|
3974
|
+
chat_id,
|
|
3975
|
+
message_id,
|
|
3976
|
+
actor_chat_id,
|
|
3977
|
+
...other
|
|
3978
|
+
}, signal);
|
|
3979
|
+
}
|
|
3980
|
+
deleteAllMessageReactionsUser(chat_id, user_id, other, signal) {
|
|
3981
|
+
return this.raw.deleteAllMessageReactions({
|
|
3982
|
+
chat_id,
|
|
3983
|
+
user_id,
|
|
3984
|
+
...other
|
|
3985
|
+
}, signal);
|
|
3986
|
+
}
|
|
3987
|
+
deleteAllMessageReactionsChat(chat_id, actor_chat_id, other, signal) {
|
|
3988
|
+
return this.raw.deleteAllMessageReactions({
|
|
3989
|
+
chat_id,
|
|
3990
|
+
actor_chat_id,
|
|
3991
|
+
...other
|
|
3992
|
+
}, signal);
|
|
3993
|
+
}
|
|
3833
3994
|
deleteBusinessMessages(business_connection_id, message_ids, signal) {
|
|
3834
3995
|
return this.raw.deleteBusinessMessages({ business_connection_id, message_ids }, signal);
|
|
3835
3996
|
}
|
|
@@ -4041,7 +4202,7 @@ var require_api = __commonJS((exports) => {
|
|
|
4041
4202
|
exports.Api = Api;
|
|
4042
4203
|
});
|
|
4043
4204
|
|
|
4044
|
-
// ../node_modules/grammy/out/bot.js
|
|
4205
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/bot.js
|
|
4045
4206
|
var require_bot = __commonJS((exports) => {
|
|
4046
4207
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4047
4208
|
exports.Bot = exports.BotError = exports.DEFAULT_UPDATE_TYPES = undefined;
|
|
@@ -4066,6 +4227,7 @@ var require_bot = __commonJS((exports) => {
|
|
|
4066
4227
|
"business_message",
|
|
4067
4228
|
"edited_business_message",
|
|
4068
4229
|
"deleted_business_messages",
|
|
4230
|
+
"guest_message",
|
|
4069
4231
|
"inline_query",
|
|
4070
4232
|
"chosen_inline_result",
|
|
4071
4233
|
"callback_query",
|
|
@@ -4370,7 +4532,7 @@ On the other hand, if you actually know what you're doing and you do need to ins
|
|
|
4370
4532
|
var shim_node_js_1 = require_shim_node();
|
|
4371
4533
|
});
|
|
4372
4534
|
|
|
4373
|
-
// ../node_modules/grammy/out/convenience/constants.js
|
|
4535
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/constants.js
|
|
4374
4536
|
var require_constants = __commonJS((exports) => {
|
|
4375
4537
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4376
4538
|
exports.API_CONSTANTS = undefined;
|
|
@@ -4392,6 +4554,7 @@ var require_constants = __commonJS((exports) => {
|
|
|
4392
4554
|
can_send_polls: true,
|
|
4393
4555
|
can_send_other_messages: true,
|
|
4394
4556
|
can_add_web_page_previews: true,
|
|
4557
|
+
can_react_to_messages: true,
|
|
4395
4558
|
can_change_info: true,
|
|
4396
4559
|
can_invite_users: true,
|
|
4397
4560
|
can_edit_tag: true,
|
|
@@ -4406,7 +4569,7 @@ var require_constants = __commonJS((exports) => {
|
|
|
4406
4569
|
Object.freeze(exports.API_CONSTANTS);
|
|
4407
4570
|
});
|
|
4408
4571
|
|
|
4409
|
-
// ../node_modules/grammy/out/convenience/inline_query.js
|
|
4572
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/inline_query.js
|
|
4410
4573
|
var require_inline_query = __commonJS((exports) => {
|
|
4411
4574
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4412
4575
|
exports.InlineQueryResultBuilder = undefined;
|
|
@@ -4425,6 +4588,13 @@ var require_inline_query = __commonJS((exports) => {
|
|
|
4425
4588
|
};
|
|
4426
4589
|
return { ...queryTemplate, input_message_content: content };
|
|
4427
4590
|
},
|
|
4591
|
+
rich(rich_message, options = {}) {
|
|
4592
|
+
const content = {
|
|
4593
|
+
rich_message,
|
|
4594
|
+
...options
|
|
4595
|
+
};
|
|
4596
|
+
return { ...queryTemplate, input_message_content: content };
|
|
4597
|
+
},
|
|
4428
4598
|
location(latitude, longitude, options = {}) {
|
|
4429
4599
|
const content = {
|
|
4430
4600
|
latitude,
|
|
@@ -4604,7 +4774,7 @@ var require_inline_query = __commonJS((exports) => {
|
|
|
4604
4774
|
};
|
|
4605
4775
|
});
|
|
4606
4776
|
|
|
4607
|
-
// ../node_modules/grammy/out/convenience/input_media.js
|
|
4777
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/input_media.js
|
|
4608
4778
|
var require_input_media = __commonJS((exports) => {
|
|
4609
4779
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4610
4780
|
exports.InputMediaBuilder = undefined;
|
|
@@ -4627,7 +4797,7 @@ var require_input_media = __commonJS((exports) => {
|
|
|
4627
4797
|
};
|
|
4628
4798
|
});
|
|
4629
4799
|
|
|
4630
|
-
// ../node_modules/grammy/out/convenience/keyboard.js
|
|
4800
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/keyboard.js
|
|
4631
4801
|
var require_keyboard = __commonJS((exports) => {
|
|
4632
4802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4633
4803
|
exports.InlineKeyboard = exports.Keyboard = undefined;
|
|
@@ -4985,7 +5155,7 @@ var require_keyboard = __commonJS((exports) => {
|
|
|
4985
5155
|
}
|
|
4986
5156
|
});
|
|
4987
5157
|
|
|
4988
|
-
// ../node_modules/grammy/out/convenience/session.js
|
|
5158
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/session.js
|
|
4989
5159
|
var require_session = __commonJS((exports) => {
|
|
4990
5160
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4991
5161
|
exports.MemorySessionStorage = undefined;
|
|
@@ -5285,7 +5455,7 @@ var require_session = __commonJS((exports) => {
|
|
|
5285
5455
|
}
|
|
5286
5456
|
});
|
|
5287
5457
|
|
|
5288
|
-
// ../node_modules/grammy/out/convenience/frameworks.js
|
|
5458
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/frameworks.js
|
|
5289
5459
|
var require_frameworks = __commonJS((exports) => {
|
|
5290
5460
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5291
5461
|
exports.adapters = undefined;
|
|
@@ -5301,28 +5471,32 @@ var require_frameworks = __commonJS((exports) => {
|
|
|
5301
5471
|
status: 401,
|
|
5302
5472
|
statusText: WRONG_TOKEN_ERROR
|
|
5303
5473
|
});
|
|
5304
|
-
var awsLambda = (event, _context, callback) =>
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
statusCode: 200,
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5474
|
+
var awsLambda = (event, _context, callback) => {
|
|
5475
|
+
var _a;
|
|
5476
|
+
return {
|
|
5477
|
+
get update() {
|
|
5478
|
+
var _a2;
|
|
5479
|
+
return JSON.parse((_a2 = event.body) !== null && _a2 !== undefined ? _a2 : "{}");
|
|
5480
|
+
},
|
|
5481
|
+
header: (_a = event.headers[SECRET_HEADER]) !== null && _a !== undefined ? _a : event.headers[SECRET_HEADER_LOWERCASE],
|
|
5482
|
+
end: () => callback(null, { statusCode: 200 }),
|
|
5483
|
+
respond: (json) => callback(null, {
|
|
5484
|
+
statusCode: 200,
|
|
5485
|
+
headers: { "Content-Type": "application/json" },
|
|
5486
|
+
body: json
|
|
5487
|
+
}),
|
|
5488
|
+
unauthorized: () => callback(null, { statusCode: 401 })
|
|
5489
|
+
};
|
|
5490
|
+
};
|
|
5318
5491
|
var awsLambdaAsync = (event, _context) => {
|
|
5492
|
+
var _a;
|
|
5319
5493
|
let resolveResponse;
|
|
5320
5494
|
return {
|
|
5321
5495
|
get update() {
|
|
5322
|
-
var
|
|
5323
|
-
return JSON.parse((
|
|
5496
|
+
var _a2;
|
|
5497
|
+
return JSON.parse((_a2 = event.body) !== null && _a2 !== undefined ? _a2 : "{}");
|
|
5324
5498
|
},
|
|
5325
|
-
header: event.headers[SECRET_HEADER],
|
|
5499
|
+
header: (_a = event.headers[SECRET_HEADER]) !== null && _a !== undefined ? _a : event.headers[SECRET_HEADER_LOWERCASE],
|
|
5326
5500
|
end: () => resolveResponse({ statusCode: 200 }),
|
|
5327
5501
|
respond: (json) => resolveResponse({
|
|
5328
5502
|
statusCode: 200,
|
|
@@ -5334,24 +5508,24 @@ var require_frameworks = __commonJS((exports) => {
|
|
|
5334
5508
|
};
|
|
5335
5509
|
};
|
|
5336
5510
|
var azure = (context, request) => {
|
|
5337
|
-
var _a
|
|
5511
|
+
var _a;
|
|
5338
5512
|
return {
|
|
5339
5513
|
get update() {
|
|
5340
5514
|
return request.body;
|
|
5341
5515
|
},
|
|
5342
|
-
header: (
|
|
5516
|
+
header: (_a = request.headers) === null || _a === undefined ? undefined : _a[SECRET_HEADER_LOWERCASE],
|
|
5343
5517
|
end: () => context.res = {
|
|
5344
5518
|
status: 200,
|
|
5345
5519
|
body: ""
|
|
5346
5520
|
},
|
|
5347
5521
|
respond: (json) => {
|
|
5348
|
-
var _a2,
|
|
5349
|
-
(
|
|
5522
|
+
var _a2, _b, _c, _d;
|
|
5523
|
+
(_b = (_a2 = context.res) === null || _a2 === undefined ? undefined : _a2.set) === null || _b === undefined || _b.call(_a2, "Content-Type", "application/json");
|
|
5350
5524
|
(_d = (_c = context.res) === null || _c === undefined ? undefined : _c.send) === null || _d === undefined || _d.call(_c, json);
|
|
5351
5525
|
},
|
|
5352
5526
|
unauthorized: () => {
|
|
5353
|
-
var _a2,
|
|
5354
|
-
(
|
|
5527
|
+
var _a2, _b;
|
|
5528
|
+
(_b = (_a2 = context.res) === null || _a2 === undefined ? undefined : _a2.send) === null || _b === undefined || _b.call(_a2, 401, WRONG_TOKEN_ERROR);
|
|
5355
5529
|
}
|
|
5356
5530
|
};
|
|
5357
5531
|
};
|
|
@@ -5653,7 +5827,7 @@ var require_frameworks = __commonJS((exports) => {
|
|
|
5653
5827
|
};
|
|
5654
5828
|
});
|
|
5655
5829
|
|
|
5656
|
-
// ../node_modules/grammy/out/convenience/webhook.js
|
|
5830
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/convenience/webhook.js
|
|
5657
5831
|
var require_webhook = __commonJS((exports) => {
|
|
5658
5832
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5659
5833
|
exports.webhookCallback = webhookCallback;
|
|
@@ -5682,7 +5856,7 @@ var require_webhook = __commonJS((exports) => {
|
|
|
5682
5856
|
}
|
|
5683
5857
|
let hasDifference = 0;
|
|
5684
5858
|
for (let i = 0;i < tokenBytes.length; i++) {
|
|
5685
|
-
const headerByte =
|
|
5859
|
+
const headerByte = headerBytes[i];
|
|
5686
5860
|
const tokenByte = tokenBytes[i];
|
|
5687
5861
|
hasDifference |= headerByte ^ tokenByte;
|
|
5688
5862
|
}
|
|
@@ -5747,7 +5921,7 @@ var require_webhook = __commonJS((exports) => {
|
|
|
5747
5921
|
}
|
|
5748
5922
|
});
|
|
5749
5923
|
|
|
5750
|
-
// ../node_modules/grammy/out/mod.js
|
|
5924
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/mod.js
|
|
5751
5925
|
var require_mod = __commonJS((exports) => {
|
|
5752
5926
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
5753
5927
|
if (k2 === undefined)
|
|
@@ -5813,7 +5987,7 @@ var require_mod = __commonJS((exports) => {
|
|
|
5813
5987
|
} });
|
|
5814
5988
|
});
|
|
5815
5989
|
|
|
5816
|
-
// ../node_modules/@grammyjs/runner/out/platform.node.js
|
|
5990
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/platform.node.js
|
|
5817
5991
|
var require_platform_node2 = __commonJS((exports) => {
|
|
5818
5992
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5819
5993
|
exports.parentThread = exports.createThread = undefined;
|
|
@@ -5844,7 +6018,7 @@ var require_platform_node2 = __commonJS((exports) => {
|
|
|
5844
6018
|
exports.parentThread = parentThread;
|
|
5845
6019
|
});
|
|
5846
6020
|
|
|
5847
|
-
// ../node_modules/@grammyjs/runner/out/distribute.js
|
|
6021
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/distribute.js
|
|
5848
6022
|
var require_distribute = __commonJS((exports) => {
|
|
5849
6023
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5850
6024
|
exports.distribute = undefined;
|
|
@@ -5889,7 +6063,7 @@ var require_distribute = __commonJS((exports) => {
|
|
|
5889
6063
|
exports.distribute = distribute;
|
|
5890
6064
|
});
|
|
5891
6065
|
|
|
5892
|
-
// ../node_modules/@grammyjs/runner/out/queue.js
|
|
6066
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/queue.js
|
|
5893
6067
|
var require_queue = __commonJS((exports) => {
|
|
5894
6068
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5895
6069
|
exports.DecayingDeque = undefined;
|
|
@@ -6033,7 +6207,7 @@ var require_queue = __commonJS((exports) => {
|
|
|
6033
6207
|
exports.DecayingDeque = DecayingDeque;
|
|
6034
6208
|
});
|
|
6035
6209
|
|
|
6036
|
-
// ../node_modules/@grammyjs/runner/out/sink.js
|
|
6210
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/sink.js
|
|
6037
6211
|
var require_sink = __commonJS((exports) => {
|
|
6038
6212
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6039
6213
|
exports.createConcurrentSink = exports.createBatchSink = exports.createSequentialSink = undefined;
|
|
@@ -6078,7 +6252,7 @@ var require_sink = __commonJS((exports) => {
|
|
|
6078
6252
|
exports.createConcurrentSink = createConcurrentSink;
|
|
6079
6253
|
});
|
|
6080
6254
|
|
|
6081
|
-
// ../node_modules/@grammyjs/runner/out/node-shim.js
|
|
6255
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/node-shim.js
|
|
6082
6256
|
var require_node_shim = __commonJS((exports) => {
|
|
6083
6257
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
6084
6258
|
if (k2 === undefined)
|
|
@@ -6104,7 +6278,7 @@ var require_node_shim = __commonJS((exports) => {
|
|
|
6104
6278
|
__exportStar(require_abort_controller(), exports);
|
|
6105
6279
|
});
|
|
6106
6280
|
|
|
6107
|
-
// ../node_modules/@grammyjs/runner/out/source.js
|
|
6281
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/source.js
|
|
6108
6282
|
var require_source = __commonJS((exports) => {
|
|
6109
6283
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6110
6284
|
exports.createSource = undefined;
|
|
@@ -6184,7 +6358,7 @@ var require_source = __commonJS((exports) => {
|
|
|
6184
6358
|
var node_shim_js_1 = require_node_shim();
|
|
6185
6359
|
});
|
|
6186
6360
|
|
|
6187
|
-
// ../node_modules/@grammyjs/runner/out/runner.js
|
|
6361
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/runner.js
|
|
6188
6362
|
var require_runner = __commonJS((exports) => {
|
|
6189
6363
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6190
6364
|
exports.createRunner = exports.createUpdateFetcher = exports.run = undefined;
|
|
@@ -6336,7 +6510,7 @@ var require_runner = __commonJS((exports) => {
|
|
|
6336
6510
|
}
|
|
6337
6511
|
});
|
|
6338
6512
|
|
|
6339
|
-
// ../node_modules/@grammyjs/runner/out/sequentialize.js
|
|
6513
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/sequentialize.js
|
|
6340
6514
|
var require_sequentialize = __commonJS((exports) => {
|
|
6341
6515
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6342
6516
|
exports.sequentialize = undefined;
|
|
@@ -6379,7 +6553,7 @@ var require_sequentialize = __commonJS((exports) => {
|
|
|
6379
6553
|
exports.sequentialize = sequentialize;
|
|
6380
6554
|
});
|
|
6381
6555
|
|
|
6382
|
-
// ../node_modules/grammy/out/mod.js
|
|
6556
|
+
// ../node_modules/.bun/grammy@1.44.0/node_modules/grammy/out/mod.js
|
|
6383
6557
|
var require_mod2 = __commonJS((exports) => {
|
|
6384
6558
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
6385
6559
|
if (k2 === undefined)
|
|
@@ -6445,7 +6619,7 @@ var require_mod2 = __commonJS((exports) => {
|
|
|
6445
6619
|
} });
|
|
6446
6620
|
});
|
|
6447
6621
|
|
|
6448
|
-
// ../node_modules/@grammyjs/runner/out/deps.node.js
|
|
6622
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/deps.node.js
|
|
6449
6623
|
var require_deps_node = __commonJS((exports) => {
|
|
6450
6624
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6451
6625
|
exports.BotError = exports.Bot = undefined;
|
|
@@ -6458,7 +6632,7 @@ var require_deps_node = __commonJS((exports) => {
|
|
|
6458
6632
|
} });
|
|
6459
6633
|
});
|
|
6460
6634
|
|
|
6461
|
-
// ../node_modules/@grammyjs/runner/out/worker.js
|
|
6635
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/worker.js
|
|
6462
6636
|
var require_worker = __commonJS((exports) => {
|
|
6463
6637
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6464
6638
|
exports.BotWorker = undefined;
|
|
@@ -6500,7 +6674,7 @@ var require_worker = __commonJS((exports) => {
|
|
|
6500
6674
|
exports.BotWorker = BotWorker;
|
|
6501
6675
|
});
|
|
6502
6676
|
|
|
6503
|
-
// ../node_modules/@grammyjs/runner/out/mod.js
|
|
6677
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/mod.js
|
|
6504
6678
|
var require_mod3 = __commonJS((exports) => {
|
|
6505
6679
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
6506
6680
|
if (k2 === undefined)
|
|
@@ -6698,7 +6872,7 @@ var init_card_format = __esm(() => {
|
|
|
6698
6872
|
init_text_voice_scrub();
|
|
6699
6873
|
});
|
|
6700
6874
|
|
|
6701
|
-
// ../node_modules/@grammyjs/runner/out/mod.js
|
|
6875
|
+
// ../node_modules/.bun/@grammyjs+runner@2.0.3+061f65c8e99495c7/node_modules/@grammyjs/runner/out/mod.js
|
|
6702
6876
|
var require_mod4 = __commonJS((exports) => {
|
|
6703
6877
|
var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
6704
6878
|
if (k2 === undefined)
|
|
@@ -6800,7 +6974,7 @@ var init_rich_send = __esm(() => {
|
|
|
6800
6974
|
import_grammy4 = __toESM(require_mod2(), 1);
|
|
6801
6975
|
});
|
|
6802
6976
|
|
|
6803
|
-
// ../node_modules/@xterm/headless/lib-headless/xterm-headless.js
|
|
6977
|
+
// ../node_modules/.bun/@xterm+headless@6.0.0/node_modules/@xterm/headless/lib-headless/xterm-headless.js
|
|
6804
6978
|
var require_xterm_headless = __commonJS((exports2) => {
|
|
6805
6979
|
(() => {
|
|
6806
6980
|
var e = { 5639: (e2, t2, s2) => {
|
|
@@ -12413,7 +12587,7 @@ var init_demo_mask = __esm(() => {
|
|
|
12413
12587
|
vaultKeyCache = new Map;
|
|
12414
12588
|
});
|
|
12415
12589
|
|
|
12416
|
-
// ../node_modules/zod/v3/helpers/util.js
|
|
12590
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/util.js
|
|
12417
12591
|
var util, objectUtil, ZodParsedType, getParsedType = (data) => {
|
|
12418
12592
|
const t = typeof data;
|
|
12419
12593
|
switch (t) {
|
|
@@ -12544,7 +12718,7 @@ var init_util = __esm(() => {
|
|
|
12544
12718
|
]);
|
|
12545
12719
|
});
|
|
12546
12720
|
|
|
12547
|
-
// ../node_modules/zod/v3/ZodError.js
|
|
12721
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/ZodError.js
|
|
12548
12722
|
var ZodIssueCode, quotelessJson = (obj) => {
|
|
12549
12723
|
const json = JSON.stringify(obj, null, 2);
|
|
12550
12724
|
return json.replace(/"([^"]+)":/g, "$1:");
|
|
@@ -12665,7 +12839,7 @@ var init_ZodError = __esm(() => {
|
|
|
12665
12839
|
};
|
|
12666
12840
|
});
|
|
12667
12841
|
|
|
12668
|
-
// ../node_modules/zod/v3/locales/en.js
|
|
12842
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/locales/en.js
|
|
12669
12843
|
var errorMap = (issue, _ctx) => {
|
|
12670
12844
|
let message;
|
|
12671
12845
|
switch (issue.code) {
|
|
@@ -12772,7 +12946,7 @@ var init_en = __esm(() => {
|
|
|
12772
12946
|
en_default = errorMap;
|
|
12773
12947
|
});
|
|
12774
12948
|
|
|
12775
|
-
// ../node_modules/zod/v3/errors.js
|
|
12949
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/errors.js
|
|
12776
12950
|
function setErrorMap(map) {
|
|
12777
12951
|
overrideErrorMap = map;
|
|
12778
12952
|
}
|
|
@@ -12785,7 +12959,7 @@ var init_errors = __esm(() => {
|
|
|
12785
12959
|
overrideErrorMap = en_default;
|
|
12786
12960
|
});
|
|
12787
12961
|
|
|
12788
|
-
// ../node_modules/zod/v3/helpers/parseUtil.js
|
|
12962
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
|
|
12789
12963
|
function addIssueToContext(ctx, issueData) {
|
|
12790
12964
|
const overrideMap = getErrorMap();
|
|
12791
12965
|
const issue = makeIssue({
|
|
@@ -12890,10 +13064,10 @@ var init_parseUtil = __esm(() => {
|
|
|
12890
13064
|
});
|
|
12891
13065
|
});
|
|
12892
13066
|
|
|
12893
|
-
// ../node_modules/zod/v3/helpers/typeAliases.js
|
|
13067
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js
|
|
12894
13068
|
var init_typeAliases = () => {};
|
|
12895
13069
|
|
|
12896
|
-
// ../node_modules/zod/v3/helpers/errorUtil.js
|
|
13070
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
|
|
12897
13071
|
var errorUtil;
|
|
12898
13072
|
var init_errorUtil = __esm(() => {
|
|
12899
13073
|
(function(errorUtil2) {
|
|
@@ -12902,7 +13076,7 @@ var init_errorUtil = __esm(() => {
|
|
|
12902
13076
|
})(errorUtil || (errorUtil = {}));
|
|
12903
13077
|
});
|
|
12904
13078
|
|
|
12905
|
-
// ../node_modules/zod/v3/types.js
|
|
13079
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/types.js
|
|
12906
13080
|
class ParseInputLazyPath {
|
|
12907
13081
|
constructor(parent, value, path, key) {
|
|
12908
13082
|
this._cachedPath = [];
|
|
@@ -16253,7 +16427,7 @@ var init_types = __esm(() => {
|
|
|
16253
16427
|
NEVER = INVALID;
|
|
16254
16428
|
});
|
|
16255
16429
|
|
|
16256
|
-
// ../node_modules/zod/v3/external.js
|
|
16430
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/v3/external.js
|
|
16257
16431
|
var exports_external = {};
|
|
16258
16432
|
__export(exports_external, {
|
|
16259
16433
|
void: () => voidType,
|
|
@@ -16373,7 +16547,7 @@ var init_external = __esm(() => {
|
|
|
16373
16547
|
init_ZodError();
|
|
16374
16548
|
});
|
|
16375
16549
|
|
|
16376
|
-
// ../node_modules/zod/index.js
|
|
16550
|
+
// ../node_modules/.bun/zod@3.25.76/node_modules/zod/index.js
|
|
16377
16551
|
var init_zod = __esm(() => {
|
|
16378
16552
|
init_external();
|
|
16379
16553
|
init_external();
|
|
@@ -17079,7 +17253,7 @@ var init_vault = __esm(() => {
|
|
|
17079
17253
|
};
|
|
17080
17254
|
});
|
|
17081
17255
|
|
|
17082
|
-
// ../node_modules/yaml/dist/nodes/identity.js
|
|
17256
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
|
|
17083
17257
|
var require_identity = __commonJS((exports2) => {
|
|
17084
17258
|
var ALIAS = Symbol.for("yaml.alias");
|
|
17085
17259
|
var DOC = Symbol.for("yaml.document");
|
|
@@ -17133,7 +17307,7 @@ var require_identity = __commonJS((exports2) => {
|
|
|
17133
17307
|
exports2.isSeq = isSeq;
|
|
17134
17308
|
});
|
|
17135
17309
|
|
|
17136
|
-
// ../node_modules/yaml/dist/visit.js
|
|
17310
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
|
|
17137
17311
|
var require_visit = __commonJS((exports2) => {
|
|
17138
17312
|
var identity = require_identity();
|
|
17139
17313
|
var BREAK = Symbol("break visit");
|
|
@@ -17288,7 +17462,7 @@ var require_visit = __commonJS((exports2) => {
|
|
|
17288
17462
|
exports2.visitAsync = visitAsync;
|
|
17289
17463
|
});
|
|
17290
17464
|
|
|
17291
|
-
// ../node_modules/yaml/dist/doc/directives.js
|
|
17465
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
|
|
17292
17466
|
var require_directives = __commonJS((exports2) => {
|
|
17293
17467
|
var identity = require_identity();
|
|
17294
17468
|
var visit = require_visit();
|
|
@@ -17440,7 +17614,7 @@ var require_directives = __commonJS((exports2) => {
|
|
|
17440
17614
|
exports2.Directives = Directives;
|
|
17441
17615
|
});
|
|
17442
17616
|
|
|
17443
|
-
// ../node_modules/yaml/dist/doc/anchors.js
|
|
17617
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
|
|
17444
17618
|
var require_anchors = __commonJS((exports2) => {
|
|
17445
17619
|
var identity = require_identity();
|
|
17446
17620
|
var visit = require_visit();
|
|
@@ -17502,7 +17676,7 @@ var require_anchors = __commonJS((exports2) => {
|
|
|
17502
17676
|
exports2.findNewAnchor = findNewAnchor;
|
|
17503
17677
|
});
|
|
17504
17678
|
|
|
17505
|
-
// ../node_modules/yaml/dist/doc/applyReviver.js
|
|
17679
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
|
|
17506
17680
|
var require_applyReviver = __commonJS((exports2) => {
|
|
17507
17681
|
function applyReviver(reviver, obj, key, val) {
|
|
17508
17682
|
if (val && typeof val === "object") {
|
|
@@ -17549,7 +17723,7 @@ var require_applyReviver = __commonJS((exports2) => {
|
|
|
17549
17723
|
exports2.applyReviver = applyReviver;
|
|
17550
17724
|
});
|
|
17551
17725
|
|
|
17552
|
-
// ../node_modules/yaml/dist/nodes/toJS.js
|
|
17726
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
|
|
17553
17727
|
var require_toJS = __commonJS((exports2) => {
|
|
17554
17728
|
var identity = require_identity();
|
|
17555
17729
|
function toJS(value, arg, ctx) {
|
|
@@ -17576,7 +17750,7 @@ var require_toJS = __commonJS((exports2) => {
|
|
|
17576
17750
|
exports2.toJS = toJS;
|
|
17577
17751
|
});
|
|
17578
17752
|
|
|
17579
|
-
// ../node_modules/yaml/dist/nodes/Node.js
|
|
17753
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
|
|
17580
17754
|
var require_Node = __commonJS((exports2) => {
|
|
17581
17755
|
var applyReviver = require_applyReviver();
|
|
17582
17756
|
var identity = require_identity();
|
|
@@ -17613,7 +17787,7 @@ var require_Node = __commonJS((exports2) => {
|
|
|
17613
17787
|
exports2.NodeBase = NodeBase;
|
|
17614
17788
|
});
|
|
17615
17789
|
|
|
17616
|
-
// ../node_modules/yaml/dist/nodes/Alias.js
|
|
17790
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
|
|
17617
17791
|
var require_Alias = __commonJS((exports2) => {
|
|
17618
17792
|
var anchors = require_anchors();
|
|
17619
17793
|
var visit = require_visit();
|
|
@@ -17721,7 +17895,7 @@ var require_Alias = __commonJS((exports2) => {
|
|
|
17721
17895
|
exports2.Alias = Alias;
|
|
17722
17896
|
});
|
|
17723
17897
|
|
|
17724
|
-
// ../node_modules/yaml/dist/nodes/Scalar.js
|
|
17898
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
|
|
17725
17899
|
var require_Scalar = __commonJS((exports2) => {
|
|
17726
17900
|
var identity = require_identity();
|
|
17727
17901
|
var Node = require_Node();
|
|
@@ -17749,7 +17923,7 @@ var require_Scalar = __commonJS((exports2) => {
|
|
|
17749
17923
|
exports2.isScalarValue = isScalarValue;
|
|
17750
17924
|
});
|
|
17751
17925
|
|
|
17752
|
-
// ../node_modules/yaml/dist/doc/createNode.js
|
|
17926
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
|
|
17753
17927
|
var require_createNode = __commonJS((exports2) => {
|
|
17754
17928
|
var Alias = require_Alias();
|
|
17755
17929
|
var identity = require_identity();
|
|
@@ -17821,7 +17995,7 @@ var require_createNode = __commonJS((exports2) => {
|
|
|
17821
17995
|
exports2.createNode = createNode;
|
|
17822
17996
|
});
|
|
17823
17997
|
|
|
17824
|
-
// ../node_modules/yaml/dist/nodes/Collection.js
|
|
17998
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
|
|
17825
17999
|
var require_Collection = __commonJS((exports2) => {
|
|
17826
18000
|
var createNode = require_createNode();
|
|
17827
18001
|
var identity = require_identity();
|
|
@@ -17936,7 +18110,7 @@ var require_Collection = __commonJS((exports2) => {
|
|
|
17936
18110
|
exports2.isEmptyPath = isEmptyPath;
|
|
17937
18111
|
});
|
|
17938
18112
|
|
|
17939
|
-
// ../node_modules/yaml/dist/stringify/stringifyComment.js
|
|
18113
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
|
|
17940
18114
|
var require_stringifyComment = __commonJS((exports2) => {
|
|
17941
18115
|
var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
|
|
17942
18116
|
function indentComment(comment, indent) {
|
|
@@ -17953,7 +18127,7 @@ var require_stringifyComment = __commonJS((exports2) => {
|
|
|
17953
18127
|
exports2.stringifyComment = stringifyComment;
|
|
17954
18128
|
});
|
|
17955
18129
|
|
|
17956
|
-
// ../node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
18130
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
|
|
17957
18131
|
var require_foldFlowLines = __commonJS((exports2) => {
|
|
17958
18132
|
var FOLD_FLOW = "flow";
|
|
17959
18133
|
var FOLD_BLOCK = "block";
|
|
@@ -18090,7 +18264,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
|
|
|
18090
18264
|
exports2.foldFlowLines = foldFlowLines;
|
|
18091
18265
|
});
|
|
18092
18266
|
|
|
18093
|
-
// ../node_modules/yaml/dist/stringify/stringifyString.js
|
|
18267
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
|
|
18094
18268
|
var require_stringifyString = __commonJS((exports2) => {
|
|
18095
18269
|
var Scalar = require_Scalar();
|
|
18096
18270
|
var foldFlowLines = require_foldFlowLines();
|
|
@@ -18388,7 +18562,7 @@ ${indent}`);
|
|
|
18388
18562
|
exports2.stringifyString = stringifyString;
|
|
18389
18563
|
});
|
|
18390
18564
|
|
|
18391
|
-
// ../node_modules/yaml/dist/stringify/stringify.js
|
|
18565
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
|
|
18392
18566
|
var require_stringify = __commonJS((exports2) => {
|
|
18393
18567
|
var anchors = require_anchors();
|
|
18394
18568
|
var identity = require_identity();
|
|
@@ -18509,7 +18683,7 @@ ${ctx.indent}${str}`;
|
|
|
18509
18683
|
exports2.stringify = stringify;
|
|
18510
18684
|
});
|
|
18511
18685
|
|
|
18512
|
-
// ../node_modules/yaml/dist/stringify/stringifyPair.js
|
|
18686
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
|
|
18513
18687
|
var require_stringifyPair = __commonJS((exports2) => {
|
|
18514
18688
|
var identity = require_identity();
|
|
18515
18689
|
var Scalar = require_Scalar();
|
|
@@ -18645,7 +18819,7 @@ ${ctx.indent}`;
|
|
|
18645
18819
|
exports2.stringifyPair = stringifyPair;
|
|
18646
18820
|
});
|
|
18647
18821
|
|
|
18648
|
-
// ../node_modules/yaml/dist/log.js
|
|
18822
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
|
|
18649
18823
|
var require_log = __commonJS((exports2) => {
|
|
18650
18824
|
var node_process = __require("process");
|
|
18651
18825
|
function debug(logLevel, ...messages) {
|
|
@@ -18664,7 +18838,7 @@ var require_log = __commonJS((exports2) => {
|
|
|
18664
18838
|
exports2.warn = warn;
|
|
18665
18839
|
});
|
|
18666
18840
|
|
|
18667
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
18841
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
|
|
18668
18842
|
var require_merge = __commonJS((exports2) => {
|
|
18669
18843
|
var identity = require_identity();
|
|
18670
18844
|
var Scalar = require_Scalar();
|
|
@@ -18718,7 +18892,7 @@ var require_merge = __commonJS((exports2) => {
|
|
|
18718
18892
|
exports2.merge = merge;
|
|
18719
18893
|
});
|
|
18720
18894
|
|
|
18721
|
-
// ../node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
18895
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
|
|
18722
18896
|
var require_addPairToJSMap = __commonJS((exports2) => {
|
|
18723
18897
|
var log = require_log();
|
|
18724
18898
|
var merge = require_merge();
|
|
@@ -18779,7 +18953,7 @@ var require_addPairToJSMap = __commonJS((exports2) => {
|
|
|
18779
18953
|
exports2.addPairToJSMap = addPairToJSMap;
|
|
18780
18954
|
});
|
|
18781
18955
|
|
|
18782
|
-
// ../node_modules/yaml/dist/nodes/Pair.js
|
|
18956
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
|
|
18783
18957
|
var require_Pair = __commonJS((exports2) => {
|
|
18784
18958
|
var createNode = require_createNode();
|
|
18785
18959
|
var stringifyPair = require_stringifyPair();
|
|
@@ -18817,7 +18991,7 @@ var require_Pair = __commonJS((exports2) => {
|
|
|
18817
18991
|
exports2.createPair = createPair;
|
|
18818
18992
|
});
|
|
18819
18993
|
|
|
18820
|
-
// ../node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
18994
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
|
|
18821
18995
|
var require_stringifyCollection = __commonJS((exports2) => {
|
|
18822
18996
|
var identity = require_identity();
|
|
18823
18997
|
var stringify = require_stringify();
|
|
@@ -18969,7 +19143,7 @@ ${indent}${end}`;
|
|
|
18969
19143
|
exports2.stringifyCollection = stringifyCollection;
|
|
18970
19144
|
});
|
|
18971
19145
|
|
|
18972
|
-
// ../node_modules/yaml/dist/nodes/YAMLMap.js
|
|
19146
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
|
|
18973
19147
|
var require_YAMLMap = __commonJS((exports2) => {
|
|
18974
19148
|
var stringifyCollection = require_stringifyCollection();
|
|
18975
19149
|
var addPairToJSMap = require_addPairToJSMap();
|
|
@@ -19096,7 +19270,7 @@ var require_YAMLMap = __commonJS((exports2) => {
|
|
|
19096
19270
|
exports2.findPair = findPair;
|
|
19097
19271
|
});
|
|
19098
19272
|
|
|
19099
|
-
// ../node_modules/yaml/dist/schema/common/map.js
|
|
19273
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
|
|
19100
19274
|
var require_map = __commonJS((exports2) => {
|
|
19101
19275
|
var identity = require_identity();
|
|
19102
19276
|
var YAMLMap = require_YAMLMap();
|
|
@@ -19115,7 +19289,7 @@ var require_map = __commonJS((exports2) => {
|
|
|
19115
19289
|
exports2.map = map;
|
|
19116
19290
|
});
|
|
19117
19291
|
|
|
19118
|
-
// ../node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
19292
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
|
|
19119
19293
|
var require_YAMLSeq = __commonJS((exports2) => {
|
|
19120
19294
|
var createNode = require_createNode();
|
|
19121
19295
|
var stringifyCollection = require_stringifyCollection();
|
|
@@ -19208,7 +19382,7 @@ var require_YAMLSeq = __commonJS((exports2) => {
|
|
|
19208
19382
|
exports2.YAMLSeq = YAMLSeq;
|
|
19209
19383
|
});
|
|
19210
19384
|
|
|
19211
|
-
// ../node_modules/yaml/dist/schema/common/seq.js
|
|
19385
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
|
|
19212
19386
|
var require_seq = __commonJS((exports2) => {
|
|
19213
19387
|
var identity = require_identity();
|
|
19214
19388
|
var YAMLSeq = require_YAMLSeq();
|
|
@@ -19227,7 +19401,7 @@ var require_seq = __commonJS((exports2) => {
|
|
|
19227
19401
|
exports2.seq = seq;
|
|
19228
19402
|
});
|
|
19229
19403
|
|
|
19230
|
-
// ../node_modules/yaml/dist/schema/common/string.js
|
|
19404
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
|
|
19231
19405
|
var require_string = __commonJS((exports2) => {
|
|
19232
19406
|
var stringifyString = require_stringifyString();
|
|
19233
19407
|
var string = {
|
|
@@ -19243,7 +19417,7 @@ var require_string = __commonJS((exports2) => {
|
|
|
19243
19417
|
exports2.string = string;
|
|
19244
19418
|
});
|
|
19245
19419
|
|
|
19246
|
-
// ../node_modules/yaml/dist/schema/common/null.js
|
|
19420
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
|
|
19247
19421
|
var require_null = __commonJS((exports2) => {
|
|
19248
19422
|
var Scalar = require_Scalar();
|
|
19249
19423
|
var nullTag = {
|
|
@@ -19258,7 +19432,7 @@ var require_null = __commonJS((exports2) => {
|
|
|
19258
19432
|
exports2.nullTag = nullTag;
|
|
19259
19433
|
});
|
|
19260
19434
|
|
|
19261
|
-
// ../node_modules/yaml/dist/schema/core/bool.js
|
|
19435
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
|
|
19262
19436
|
var require_bool = __commonJS((exports2) => {
|
|
19263
19437
|
var Scalar = require_Scalar();
|
|
19264
19438
|
var boolTag = {
|
|
@@ -19279,7 +19453,7 @@ var require_bool = __commonJS((exports2) => {
|
|
|
19279
19453
|
exports2.boolTag = boolTag;
|
|
19280
19454
|
});
|
|
19281
19455
|
|
|
19282
|
-
// ../node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
19456
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
|
|
19283
19457
|
var require_stringifyNumber = __commonJS((exports2) => {
|
|
19284
19458
|
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
19285
19459
|
if (typeof value === "bigint")
|
|
@@ -19303,7 +19477,7 @@ var require_stringifyNumber = __commonJS((exports2) => {
|
|
|
19303
19477
|
exports2.stringifyNumber = stringifyNumber;
|
|
19304
19478
|
});
|
|
19305
19479
|
|
|
19306
|
-
// ../node_modules/yaml/dist/schema/core/float.js
|
|
19480
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
|
|
19307
19481
|
var require_float = __commonJS((exports2) => {
|
|
19308
19482
|
var Scalar = require_Scalar();
|
|
19309
19483
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -19346,7 +19520,7 @@ var require_float = __commonJS((exports2) => {
|
|
|
19346
19520
|
exports2.floatNaN = floatNaN;
|
|
19347
19521
|
});
|
|
19348
19522
|
|
|
19349
|
-
// ../node_modules/yaml/dist/schema/core/int.js
|
|
19523
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
|
|
19350
19524
|
var require_int = __commonJS((exports2) => {
|
|
19351
19525
|
var stringifyNumber = require_stringifyNumber();
|
|
19352
19526
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -19388,7 +19562,7 @@ var require_int = __commonJS((exports2) => {
|
|
|
19388
19562
|
exports2.intOct = intOct;
|
|
19389
19563
|
});
|
|
19390
19564
|
|
|
19391
|
-
// ../node_modules/yaml/dist/schema/core/schema.js
|
|
19565
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
|
|
19392
19566
|
var require_schema = __commonJS((exports2) => {
|
|
19393
19567
|
var map = require_map();
|
|
19394
19568
|
var _null = require_null();
|
|
@@ -19413,7 +19587,7 @@ var require_schema = __commonJS((exports2) => {
|
|
|
19413
19587
|
exports2.schema = schema;
|
|
19414
19588
|
});
|
|
19415
19589
|
|
|
19416
|
-
// ../node_modules/yaml/dist/schema/json/schema.js
|
|
19590
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
|
|
19417
19591
|
var require_schema2 = __commonJS((exports2) => {
|
|
19418
19592
|
var Scalar = require_Scalar();
|
|
19419
19593
|
var map = require_map();
|
|
@@ -19477,7 +19651,7 @@ var require_schema2 = __commonJS((exports2) => {
|
|
|
19477
19651
|
exports2.schema = schema;
|
|
19478
19652
|
});
|
|
19479
19653
|
|
|
19480
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
19654
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
|
|
19481
19655
|
var require_binary = __commonJS((exports2) => {
|
|
19482
19656
|
var node_buffer = __require("buffer");
|
|
19483
19657
|
var Scalar = require_Scalar();
|
|
@@ -19532,7 +19706,7 @@ var require_binary = __commonJS((exports2) => {
|
|
|
19532
19706
|
exports2.binary = binary;
|
|
19533
19707
|
});
|
|
19534
19708
|
|
|
19535
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
19709
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
|
|
19536
19710
|
var require_pairs = __commonJS((exports2) => {
|
|
19537
19711
|
var identity = require_identity();
|
|
19538
19712
|
var Pair = require_Pair();
|
|
@@ -19607,7 +19781,7 @@ ${cn.comment}` : item.comment;
|
|
|
19607
19781
|
exports2.resolvePairs = resolvePairs;
|
|
19608
19782
|
});
|
|
19609
19783
|
|
|
19610
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
19784
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
|
|
19611
19785
|
var require_omap = __commonJS((exports2) => {
|
|
19612
19786
|
var identity = require_identity();
|
|
19613
19787
|
var toJS = require_toJS();
|
|
@@ -19679,7 +19853,7 @@ var require_omap = __commonJS((exports2) => {
|
|
|
19679
19853
|
exports2.omap = omap;
|
|
19680
19854
|
});
|
|
19681
19855
|
|
|
19682
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
19856
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
|
|
19683
19857
|
var require_bool2 = __commonJS((exports2) => {
|
|
19684
19858
|
var Scalar = require_Scalar();
|
|
19685
19859
|
function boolStringify({ value, source }, ctx) {
|
|
@@ -19708,7 +19882,7 @@ var require_bool2 = __commonJS((exports2) => {
|
|
|
19708
19882
|
exports2.trueTag = trueTag;
|
|
19709
19883
|
});
|
|
19710
19884
|
|
|
19711
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
19885
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
|
|
19712
19886
|
var require_float2 = __commonJS((exports2) => {
|
|
19713
19887
|
var Scalar = require_Scalar();
|
|
19714
19888
|
var stringifyNumber = require_stringifyNumber();
|
|
@@ -19754,7 +19928,7 @@ var require_float2 = __commonJS((exports2) => {
|
|
|
19754
19928
|
exports2.floatNaN = floatNaN;
|
|
19755
19929
|
});
|
|
19756
19930
|
|
|
19757
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
19931
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
|
|
19758
19932
|
var require_int2 = __commonJS((exports2) => {
|
|
19759
19933
|
var stringifyNumber = require_stringifyNumber();
|
|
19760
19934
|
var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
|
|
@@ -19830,7 +20004,7 @@ var require_int2 = __commonJS((exports2) => {
|
|
|
19830
20004
|
exports2.intOct = intOct;
|
|
19831
20005
|
});
|
|
19832
20006
|
|
|
19833
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
20007
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
|
|
19834
20008
|
var require_set = __commonJS((exports2) => {
|
|
19835
20009
|
var identity = require_identity();
|
|
19836
20010
|
var Pair = require_Pair();
|
|
@@ -19913,7 +20087,7 @@ var require_set = __commonJS((exports2) => {
|
|
|
19913
20087
|
exports2.set = set;
|
|
19914
20088
|
});
|
|
19915
20089
|
|
|
19916
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
20090
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
|
|
19917
20091
|
var require_timestamp = __commonJS((exports2) => {
|
|
19918
20092
|
var stringifyNumber = require_stringifyNumber();
|
|
19919
20093
|
function parseSexagesimal(str, asBigInt) {
|
|
@@ -19995,7 +20169,7 @@ var require_timestamp = __commonJS((exports2) => {
|
|
|
19995
20169
|
exports2.timestamp = timestamp;
|
|
19996
20170
|
});
|
|
19997
20171
|
|
|
19998
|
-
// ../node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
20172
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
|
|
19999
20173
|
var require_schema3 = __commonJS((exports2) => {
|
|
20000
20174
|
var map = require_map();
|
|
20001
20175
|
var _null = require_null();
|
|
@@ -20036,7 +20210,7 @@ var require_schema3 = __commonJS((exports2) => {
|
|
|
20036
20210
|
exports2.schema = schema;
|
|
20037
20211
|
});
|
|
20038
20212
|
|
|
20039
|
-
// ../node_modules/yaml/dist/schema/tags.js
|
|
20213
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
|
|
20040
20214
|
var require_tags = __commonJS((exports2) => {
|
|
20041
20215
|
var map = require_map();
|
|
20042
20216
|
var _null = require_null();
|
|
@@ -20127,7 +20301,7 @@ var require_tags = __commonJS((exports2) => {
|
|
|
20127
20301
|
exports2.getTags = getTags;
|
|
20128
20302
|
});
|
|
20129
20303
|
|
|
20130
|
-
// ../node_modules/yaml/dist/schema/Schema.js
|
|
20304
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
|
|
20131
20305
|
var require_Schema = __commonJS((exports2) => {
|
|
20132
20306
|
var identity = require_identity();
|
|
20133
20307
|
var map = require_map();
|
|
@@ -20157,7 +20331,7 @@ var require_Schema = __commonJS((exports2) => {
|
|
|
20157
20331
|
exports2.Schema = Schema;
|
|
20158
20332
|
});
|
|
20159
20333
|
|
|
20160
|
-
// ../node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
20334
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
|
|
20161
20335
|
var require_stringifyDocument = __commonJS((exports2) => {
|
|
20162
20336
|
var identity = require_identity();
|
|
20163
20337
|
var stringify = require_stringify();
|
|
@@ -20237,7 +20411,7 @@ var require_stringifyDocument = __commonJS((exports2) => {
|
|
|
20237
20411
|
exports2.stringifyDocument = stringifyDocument;
|
|
20238
20412
|
});
|
|
20239
20413
|
|
|
20240
|
-
// ../node_modules/yaml/dist/doc/Document.js
|
|
20414
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
|
|
20241
20415
|
var require_Document = __commonJS((exports2) => {
|
|
20242
20416
|
var Alias = require_Alias();
|
|
20243
20417
|
var Collection = require_Collection();
|
|
@@ -20472,7 +20646,7 @@ var require_Document = __commonJS((exports2) => {
|
|
|
20472
20646
|
exports2.Document = Document;
|
|
20473
20647
|
});
|
|
20474
20648
|
|
|
20475
|
-
// ../node_modules/yaml/dist/errors.js
|
|
20649
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
|
|
20476
20650
|
var require_errors = __commonJS((exports2) => {
|
|
20477
20651
|
class YAMLError extends Error {
|
|
20478
20652
|
constructor(name, pos, code, message) {
|
|
@@ -20537,7 +20711,7 @@ ${pointer}
|
|
|
20537
20711
|
exports2.prettifyError = prettifyError;
|
|
20538
20712
|
});
|
|
20539
20713
|
|
|
20540
|
-
// ../node_modules/yaml/dist/compose/resolve-props.js
|
|
20714
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
|
|
20541
20715
|
var require_resolve_props = __commonJS((exports2) => {
|
|
20542
20716
|
function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
|
|
20543
20717
|
let spaceBefore = false;
|
|
@@ -20667,7 +20841,7 @@ var require_resolve_props = __commonJS((exports2) => {
|
|
|
20667
20841
|
exports2.resolveProps = resolveProps;
|
|
20668
20842
|
});
|
|
20669
20843
|
|
|
20670
|
-
// ../node_modules/yaml/dist/compose/util-contains-newline.js
|
|
20844
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
|
|
20671
20845
|
var require_util_contains_newline = __commonJS((exports2) => {
|
|
20672
20846
|
function containsNewline(key) {
|
|
20673
20847
|
if (!key)
|
|
@@ -20707,7 +20881,7 @@ var require_util_contains_newline = __commonJS((exports2) => {
|
|
|
20707
20881
|
exports2.containsNewline = containsNewline;
|
|
20708
20882
|
});
|
|
20709
20883
|
|
|
20710
|
-
// ../node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
20884
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
|
|
20711
20885
|
var require_util_flow_indent_check = __commonJS((exports2) => {
|
|
20712
20886
|
var utilContainsNewline = require_util_contains_newline();
|
|
20713
20887
|
function flowIndentCheck(indent, fc, onError) {
|
|
@@ -20722,7 +20896,7 @@ var require_util_flow_indent_check = __commonJS((exports2) => {
|
|
|
20722
20896
|
exports2.flowIndentCheck = flowIndentCheck;
|
|
20723
20897
|
});
|
|
20724
20898
|
|
|
20725
|
-
// ../node_modules/yaml/dist/compose/util-map-includes.js
|
|
20899
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
|
|
20726
20900
|
var require_util_map_includes = __commonJS((exports2) => {
|
|
20727
20901
|
var identity = require_identity();
|
|
20728
20902
|
function mapIncludes(ctx, items, search) {
|
|
@@ -20735,7 +20909,7 @@ var require_util_map_includes = __commonJS((exports2) => {
|
|
|
20735
20909
|
exports2.mapIncludes = mapIncludes;
|
|
20736
20910
|
});
|
|
20737
20911
|
|
|
20738
|
-
// ../node_modules/yaml/dist/compose/resolve-block-map.js
|
|
20912
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
|
|
20739
20913
|
var require_resolve_block_map = __commonJS((exports2) => {
|
|
20740
20914
|
var Pair = require_Pair();
|
|
20741
20915
|
var YAMLMap = require_YAMLMap();
|
|
@@ -20842,7 +21016,7 @@ var require_resolve_block_map = __commonJS((exports2) => {
|
|
|
20842
21016
|
exports2.resolveBlockMap = resolveBlockMap;
|
|
20843
21017
|
});
|
|
20844
21018
|
|
|
20845
|
-
// ../node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
21019
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
|
|
20846
21020
|
var require_resolve_block_seq = __commonJS((exports2) => {
|
|
20847
21021
|
var YAMLSeq = require_YAMLSeq();
|
|
20848
21022
|
var resolveProps = require_resolve_props();
|
|
@@ -20890,7 +21064,7 @@ var require_resolve_block_seq = __commonJS((exports2) => {
|
|
|
20890
21064
|
exports2.resolveBlockSeq = resolveBlockSeq;
|
|
20891
21065
|
});
|
|
20892
21066
|
|
|
20893
|
-
// ../node_modules/yaml/dist/compose/resolve-end.js
|
|
21067
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
|
|
20894
21068
|
var require_resolve_end = __commonJS((exports2) => {
|
|
20895
21069
|
function resolveEnd(end, offset, reqSpace, onError) {
|
|
20896
21070
|
let comment = "";
|
|
@@ -20930,7 +21104,7 @@ var require_resolve_end = __commonJS((exports2) => {
|
|
|
20930
21104
|
exports2.resolveEnd = resolveEnd;
|
|
20931
21105
|
});
|
|
20932
21106
|
|
|
20933
|
-
// ../node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
21107
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
|
|
20934
21108
|
var require_resolve_flow_collection = __commonJS((exports2) => {
|
|
20935
21109
|
var identity = require_identity();
|
|
20936
21110
|
var Pair = require_Pair();
|
|
@@ -21121,7 +21295,7 @@ var require_resolve_flow_collection = __commonJS((exports2) => {
|
|
|
21121
21295
|
exports2.resolveFlowCollection = resolveFlowCollection;
|
|
21122
21296
|
});
|
|
21123
21297
|
|
|
21124
|
-
// ../node_modules/yaml/dist/compose/compose-collection.js
|
|
21298
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
|
|
21125
21299
|
var require_compose_collection = __commonJS((exports2) => {
|
|
21126
21300
|
var identity = require_identity();
|
|
21127
21301
|
var Scalar = require_Scalar();
|
|
@@ -21183,7 +21357,7 @@ var require_compose_collection = __commonJS((exports2) => {
|
|
|
21183
21357
|
exports2.composeCollection = composeCollection;
|
|
21184
21358
|
});
|
|
21185
21359
|
|
|
21186
|
-
// ../node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
21360
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
|
|
21187
21361
|
var require_resolve_block_scalar = __commonJS((exports2) => {
|
|
21188
21362
|
var Scalar = require_Scalar();
|
|
21189
21363
|
function resolveBlockScalar(ctx, scalar, onError) {
|
|
@@ -21376,7 +21550,7 @@ var require_resolve_block_scalar = __commonJS((exports2) => {
|
|
|
21376
21550
|
exports2.resolveBlockScalar = resolveBlockScalar;
|
|
21377
21551
|
});
|
|
21378
21552
|
|
|
21379
|
-
// ../node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
21553
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
|
|
21380
21554
|
var require_resolve_flow_scalar = __commonJS((exports2) => {
|
|
21381
21555
|
var Scalar = require_Scalar();
|
|
21382
21556
|
var resolveEnd = require_resolve_end();
|
|
@@ -21592,7 +21766,7 @@ var require_resolve_flow_scalar = __commonJS((exports2) => {
|
|
|
21592
21766
|
exports2.resolveFlowScalar = resolveFlowScalar;
|
|
21593
21767
|
});
|
|
21594
21768
|
|
|
21595
|
-
// ../node_modules/yaml/dist/compose/compose-scalar.js
|
|
21769
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
|
|
21596
21770
|
var require_compose_scalar = __commonJS((exports2) => {
|
|
21597
21771
|
var identity = require_identity();
|
|
21598
21772
|
var Scalar = require_Scalar();
|
|
@@ -21670,7 +21844,7 @@ var require_compose_scalar = __commonJS((exports2) => {
|
|
|
21670
21844
|
exports2.composeScalar = composeScalar;
|
|
21671
21845
|
});
|
|
21672
21846
|
|
|
21673
|
-
// ../node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
21847
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
|
|
21674
21848
|
var require_util_empty_scalar_position = __commonJS((exports2) => {
|
|
21675
21849
|
function emptyScalarPosition(offset, before, pos) {
|
|
21676
21850
|
if (before) {
|
|
@@ -21697,7 +21871,7 @@ var require_util_empty_scalar_position = __commonJS((exports2) => {
|
|
|
21697
21871
|
exports2.emptyScalarPosition = emptyScalarPosition;
|
|
21698
21872
|
});
|
|
21699
21873
|
|
|
21700
|
-
// ../node_modules/yaml/dist/compose/compose-node.js
|
|
21874
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
|
|
21701
21875
|
var require_compose_node = __commonJS((exports2) => {
|
|
21702
21876
|
var Alias = require_Alias();
|
|
21703
21877
|
var identity = require_identity();
|
|
@@ -21800,7 +21974,7 @@ var require_compose_node = __commonJS((exports2) => {
|
|
|
21800
21974
|
exports2.composeNode = composeNode;
|
|
21801
21975
|
});
|
|
21802
21976
|
|
|
21803
|
-
// ../node_modules/yaml/dist/compose/compose-doc.js
|
|
21977
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
|
|
21804
21978
|
var require_compose_doc = __commonJS((exports2) => {
|
|
21805
21979
|
var Document = require_Document();
|
|
21806
21980
|
var composeNode = require_compose_node();
|
|
@@ -21840,7 +22014,7 @@ var require_compose_doc = __commonJS((exports2) => {
|
|
|
21840
22014
|
exports2.composeDoc = composeDoc;
|
|
21841
22015
|
});
|
|
21842
22016
|
|
|
21843
|
-
// ../node_modules/yaml/dist/compose/composer.js
|
|
22017
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
|
|
21844
22018
|
var require_composer2 = __commonJS((exports2) => {
|
|
21845
22019
|
var node_process = __require("process");
|
|
21846
22020
|
var directives = require_directives();
|
|
@@ -22029,7 +22203,7 @@ ${end.comment}` : end.comment;
|
|
|
22029
22203
|
exports2.Composer = Composer;
|
|
22030
22204
|
});
|
|
22031
22205
|
|
|
22032
|
-
// ../node_modules/yaml/dist/parse/cst-scalar.js
|
|
22206
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
|
|
22033
22207
|
var require_cst_scalar = __commonJS((exports2) => {
|
|
22034
22208
|
var resolveBlockScalar = require_resolve_block_scalar();
|
|
22035
22209
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
|
@@ -22219,7 +22393,7 @@ var require_cst_scalar = __commonJS((exports2) => {
|
|
|
22219
22393
|
exports2.setScalarValue = setScalarValue;
|
|
22220
22394
|
});
|
|
22221
22395
|
|
|
22222
|
-
// ../node_modules/yaml/dist/parse/cst-stringify.js
|
|
22396
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
|
|
22223
22397
|
var require_cst_stringify = __commonJS((exports2) => {
|
|
22224
22398
|
var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
|
|
22225
22399
|
function stringifyToken(token) {
|
|
@@ -22277,7 +22451,7 @@ var require_cst_stringify = __commonJS((exports2) => {
|
|
|
22277
22451
|
exports2.stringify = stringify;
|
|
22278
22452
|
});
|
|
22279
22453
|
|
|
22280
|
-
// ../node_modules/yaml/dist/parse/cst-visit.js
|
|
22454
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
|
|
22281
22455
|
var require_cst_visit = __commonJS((exports2) => {
|
|
22282
22456
|
var BREAK = Symbol("break visit");
|
|
22283
22457
|
var SKIP = Symbol("skip children");
|
|
@@ -22336,7 +22510,7 @@ var require_cst_visit = __commonJS((exports2) => {
|
|
|
22336
22510
|
exports2.visit = visit;
|
|
22337
22511
|
});
|
|
22338
22512
|
|
|
22339
|
-
// ../node_modules/yaml/dist/parse/cst.js
|
|
22513
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
|
|
22340
22514
|
var require_cst = __commonJS((exports2) => {
|
|
22341
22515
|
var cstScalar = require_cst_scalar();
|
|
22342
22516
|
var cstStringify = require_cst_stringify();
|
|
@@ -22437,7 +22611,7 @@ var require_cst = __commonJS((exports2) => {
|
|
|
22437
22611
|
exports2.tokenType = tokenType;
|
|
22438
22612
|
});
|
|
22439
22613
|
|
|
22440
|
-
// ../node_modules/yaml/dist/parse/lexer.js
|
|
22614
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
|
|
22441
22615
|
var require_lexer = __commonJS((exports2) => {
|
|
22442
22616
|
var cst = require_cst();
|
|
22443
22617
|
function isEmpty2(ch) {
|
|
@@ -23023,7 +23197,7 @@ var require_lexer = __commonJS((exports2) => {
|
|
|
23023
23197
|
exports2.Lexer = Lexer;
|
|
23024
23198
|
});
|
|
23025
23199
|
|
|
23026
|
-
// ../node_modules/yaml/dist/parse/line-counter.js
|
|
23200
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
|
|
23027
23201
|
var require_line_counter = __commonJS((exports2) => {
|
|
23028
23202
|
class LineCounter {
|
|
23029
23203
|
constructor() {
|
|
@@ -23051,7 +23225,7 @@ var require_line_counter = __commonJS((exports2) => {
|
|
|
23051
23225
|
exports2.LineCounter = LineCounter;
|
|
23052
23226
|
});
|
|
23053
23227
|
|
|
23054
|
-
// ../node_modules/yaml/dist/parse/parser.js
|
|
23228
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
|
|
23055
23229
|
var require_parser = __commonJS((exports2) => {
|
|
23056
23230
|
var node_process = __require("process");
|
|
23057
23231
|
var cst = require_cst();
|
|
@@ -23900,7 +24074,7 @@ var require_parser = __commonJS((exports2) => {
|
|
|
23900
24074
|
exports2.Parser = Parser;
|
|
23901
24075
|
});
|
|
23902
24076
|
|
|
23903
|
-
// ../node_modules/yaml/dist/public-api.js
|
|
24077
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
|
|
23904
24078
|
var require_public_api = __commonJS((exports2) => {
|
|
23905
24079
|
var composer = require_composer2();
|
|
23906
24080
|
var Document = require_Document();
|
|
@@ -23994,7 +24168,7 @@ var require_public_api = __commonJS((exports2) => {
|
|
|
23994
24168
|
exports2.stringify = stringify;
|
|
23995
24169
|
});
|
|
23996
24170
|
|
|
23997
|
-
// ../node_modules/yaml/dist/index.js
|
|
24171
|
+
// ../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
|
|
23998
24172
|
var composer, Document, Schema, errors2, Alias, identity, Pair, Scalar, YAMLMap, YAMLSeq, cst, lexer, lineCounter, parser, publicApi, visit, $Composer, $Document, $Schema, $YAMLError, $YAMLParseError, $YAMLWarning, $Alias, $isAlias, $isCollection, $isDocument, $isMap, $isNode, $isPair, $isScalar, $isSeq, $Pair, $Scalar, $YAMLMap, $YAMLSeq, $Lexer, $LineCounter, $Parser, $parse, $parseAllDocuments, $parseDocument, $stringify, $visit, $visitAsync;
|
|
23999
24173
|
var init_dist = __esm(() => {
|
|
24000
24174
|
composer = require_composer2();
|
|
@@ -26610,7 +26784,7 @@ var init_url_redact = __esm(() => {
|
|
|
26610
26784
|
URL_RE2 = /\b(?:https?|wss?|ftp):\/\/[^\s<>"']+/gi;
|
|
26611
26785
|
});
|
|
26612
26786
|
|
|
26613
|
-
// ../node_modules/boundary/lib/index.js
|
|
26787
|
+
// ../node_modules/.bun/boundary@2.0.0/node_modules/boundary/lib/index.js
|
|
26614
26788
|
var require_lib = __commonJS((exports2) => {
|
|
26615
26789
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
26616
26790
|
exports2.binarySearch = exports2.upperBound = exports2.lowerBound = exports2.compare = undefined;
|
|
@@ -26657,7 +26831,7 @@ var require_lib = __commonJS((exports2) => {
|
|
|
26657
26831
|
exports2.binarySearch = binarySearch;
|
|
26658
26832
|
});
|
|
26659
26833
|
|
|
26660
|
-
// ../node_modules/structured-source/lib/structured-source.js
|
|
26834
|
+
// ../node_modules/.bun/structured-source@4.0.0/node_modules/structured-source/lib/structured-source.js
|
|
26661
26835
|
var require_structured_source = __commonJS((exports2) => {
|
|
26662
26836
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
26663
26837
|
exports2.StructuredSource = undefined;
|
|
@@ -26712,13 +26886,13 @@ var require_structured_source = __commonJS((exports2) => {
|
|
|
26712
26886
|
}
|
|
26713
26887
|
exports2.StructuredSource = StructuredSource;
|
|
26714
26888
|
});
|
|
26715
|
-
// ../node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
26889
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/SecretLintSourceCodeImpl.js
|
|
26716
26890
|
var import_structured_source;
|
|
26717
26891
|
var init_SecretLintSourceCodeImpl = __esm(() => {
|
|
26718
26892
|
import_structured_source = __toESM(require_structured_source(), 1);
|
|
26719
26893
|
});
|
|
26720
26894
|
|
|
26721
|
-
// ../node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
26895
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/helper/promise-event-emitter.js
|
|
26722
26896
|
class EventEmitter {
|
|
26723
26897
|
#listeners = new Map;
|
|
26724
26898
|
on(type, listener) {
|
|
@@ -26757,9 +26931,9 @@ class EventEmitter {
|
|
|
26757
26931
|
return Array.from(this.#listeners.get(type) ?? []);
|
|
26758
26932
|
}
|
|
26759
26933
|
}
|
|
26760
|
-
// ../node_modules/@secretlint/core/module/RuleContext.js
|
|
26934
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RuleContext.js
|
|
26761
26935
|
var init_RuleContext = () => {};
|
|
26762
|
-
// ../node_modules/@secretlint/profiler/module/index.js
|
|
26936
|
+
// ../node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/index.js
|
|
26763
26937
|
class SecretLintProfiler {
|
|
26764
26938
|
perf;
|
|
26765
26939
|
entries = [];
|
|
@@ -26816,7 +26990,7 @@ class SecretLintProfiler {
|
|
|
26816
26990
|
}
|
|
26817
26991
|
}
|
|
26818
26992
|
|
|
26819
|
-
// ../node_modules/@secretlint/profiler/module/node.js
|
|
26993
|
+
// ../node_modules/.bun/@secretlint+profiler@12.2.0/node_modules/@secretlint/profiler/module/node.js
|
|
26820
26994
|
import perf_hooks from "node:perf_hooks";
|
|
26821
26995
|
|
|
26822
26996
|
class NullPerformanceObserver {
|
|
@@ -26831,19 +27005,19 @@ var init_node = __esm(() => {
|
|
|
26831
27005
|
});
|
|
26832
27006
|
});
|
|
26833
27007
|
|
|
26834
|
-
// ../node_modules/@secretlint/core/module/RunningEvents.js
|
|
27008
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RunningEvents.js
|
|
26835
27009
|
var init_RunningEvents = __esm(() => {
|
|
26836
27010
|
init_node();
|
|
26837
27011
|
});
|
|
26838
27012
|
|
|
26839
|
-
// ../node_modules/@secretlint/core/module/RulePresetContext.js
|
|
27013
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/RulePresetContext.js
|
|
26840
27014
|
var init_RulePresetContext = __esm(() => {
|
|
26841
27015
|
init_RuleContext();
|
|
26842
27016
|
});
|
|
26843
|
-
// ../node_modules/@secretlint/core/module/messages/index.js
|
|
27017
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/messages/index.js
|
|
26844
27018
|
var init_messages = () => {};
|
|
26845
27019
|
|
|
26846
|
-
// ../node_modules/@secretlint/core/module/index.js
|
|
27020
|
+
// ../node_modules/.bun/@secretlint+core@12.2.0/node_modules/@secretlint/core/module/index.js
|
|
26847
27021
|
var import_debug, debug;
|
|
26848
27022
|
var init_module = __esm(() => {
|
|
26849
27023
|
init_SecretLintSourceCodeImpl();
|
|
@@ -26856,7 +27030,7 @@ var init_module = __esm(() => {
|
|
|
26856
27030
|
debug = import_debug.default("@secretlint/core");
|
|
26857
27031
|
});
|
|
26858
27032
|
|
|
26859
|
-
// ../node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
27033
|
+
// ../node_modules/.bun/@secretlint+secretlint-rule-preset-recommend@12.2.0/node_modules/@secretlint/secretlint-rule-preset-recommend/module/index.js
|
|
26860
27034
|
function requireLodash_uniq() {
|
|
26861
27035
|
if (hasRequiredLodash_uniq)
|
|
26862
27036
|
return lodash_uniq;
|
|
@@ -36527,7 +36701,7 @@ function clear(key) {
|
|
|
36527
36701
|
state.delete(key);
|
|
36528
36702
|
}
|
|
36529
36703
|
|
|
36530
|
-
// ../node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
36704
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/module.node.mjs
|
|
36531
36705
|
import { dirname as dirname3, posix, sep as sep2 } from "path";
|
|
36532
36706
|
function createModulerModifier() {
|
|
36533
36707
|
const getModuleFromFileName = createGetModuleFromFilename();
|
|
@@ -36563,7 +36737,7 @@ function normalizeWindowsPath(path) {
|
|
|
36563
36737
|
return path.replace(/^[A-Z]:/, "").replace(/\\/g, "/");
|
|
36564
36738
|
}
|
|
36565
36739
|
|
|
36566
|
-
// ../node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
36740
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/featureFlagUtils.mjs
|
|
36567
36741
|
var normalizeFlagsResponse = (flagsResponse) => {
|
|
36568
36742
|
if ("flags" in flagsResponse) {
|
|
36569
36743
|
const featureFlags = getFlagValuesFromFlags(flagsResponse.flags);
|
|
@@ -36634,7 +36808,7 @@ var parsePayload = (response) => {
|
|
|
36634
36808
|
}
|
|
36635
36809
|
};
|
|
36636
36810
|
|
|
36637
|
-
// ../node_modules/@posthog/core/dist/gzip.mjs
|
|
36811
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/gzip.mjs
|
|
36638
36812
|
function isGzipSupported() {
|
|
36639
36813
|
return "CompressionStream" in globalThis;
|
|
36640
36814
|
}
|
|
@@ -36654,7 +36828,7 @@ async function gzipCompress(input, isDebug = true) {
|
|
|
36654
36828
|
}
|
|
36655
36829
|
}
|
|
36656
36830
|
|
|
36657
|
-
// ../node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
36831
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/vendor/uuidv7.mjs
|
|
36658
36832
|
/*! For license information please see uuidv7.mjs.LICENSE.txt */
|
|
36659
36833
|
var DIGITS = "0123456789abcdef";
|
|
36660
36834
|
|
|
@@ -36832,7 +37006,7 @@ var defaultGenerator;
|
|
|
36832
37006
|
var uuidv7 = () => uuidv7obj().toString();
|
|
36833
37007
|
var uuidv7obj = () => (defaultGenerator || (defaultGenerator = new V7Generator)).generate();
|
|
36834
37008
|
|
|
36835
|
-
// ../node_modules/@posthog/core/dist/types.mjs
|
|
37009
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/types.mjs
|
|
36836
37010
|
var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedProperty) {
|
|
36837
37011
|
PostHogPersistedProperty["AnonymousId"] = "anonymous_id";
|
|
36838
37012
|
PostHogPersistedProperty["DistinctId"] = "distinct_id";
|
|
@@ -36865,7 +37039,7 @@ var types_PostHogPersistedProperty = /* @__PURE__ */ function(PostHogPersistedPr
|
|
|
36865
37039
|
return PostHogPersistedProperty;
|
|
36866
37040
|
}({});
|
|
36867
37041
|
|
|
36868
|
-
// ../node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
37042
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bot-detection.mjs
|
|
36869
37043
|
var DEFAULT_BLOCKED_UA_STRS = [
|
|
36870
37044
|
"amazonbot",
|
|
36871
37045
|
"amazonproductbot",
|
|
@@ -36954,7 +37128,7 @@ var isBlockedUA = function(ua, customBlockedUserAgents = []) {
|
|
|
36954
37128
|
return uaLower.indexOf(blockedUaLower) !== -1;
|
|
36955
37129
|
});
|
|
36956
37130
|
};
|
|
36957
|
-
// ../node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
37131
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/type-utils.mjs
|
|
36958
37132
|
var nativeIsArray = Array.isArray;
|
|
36959
37133
|
var ObjProto = Object.prototype;
|
|
36960
37134
|
var type_utils_hasOwnProperty = ObjProto.hasOwnProperty;
|
|
@@ -36991,7 +37165,7 @@ function isInstanceOf(candidate, base) {
|
|
|
36991
37165
|
}
|
|
36992
37166
|
}
|
|
36993
37167
|
|
|
36994
|
-
// ../node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
37168
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/number-utils.mjs
|
|
36995
37169
|
function clampToRange(value, min, max, logger, fallbackValue) {
|
|
36996
37170
|
if (min > max) {
|
|
36997
37171
|
logger.warn("min cannot be greater than max.");
|
|
@@ -37011,7 +37185,7 @@ function clampToRange(value, min, max, logger, fallbackValue) {
|
|
|
37011
37185
|
return clampToRange(fallbackValue || max, min, max, logger);
|
|
37012
37186
|
}
|
|
37013
37187
|
|
|
37014
|
-
// ../node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
37188
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/bucketed-rate-limiter.mjs
|
|
37015
37189
|
var ONE_DAY_IN_MS = 86400000;
|
|
37016
37190
|
|
|
37017
37191
|
class BucketedRateLimiter {
|
|
@@ -37055,7 +37229,7 @@ class BucketedRateLimiter {
|
|
|
37055
37229
|
this._buckets = {};
|
|
37056
37230
|
}
|
|
37057
37231
|
}
|
|
37058
|
-
// ../node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
37232
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/promise-queue.mjs
|
|
37059
37233
|
class PromiseQueue {
|
|
37060
37234
|
add(promise) {
|
|
37061
37235
|
const promiseUUID = uuidv7();
|
|
@@ -37081,7 +37255,7 @@ class PromiseQueue {
|
|
|
37081
37255
|
this.promiseByIds = {};
|
|
37082
37256
|
}
|
|
37083
37257
|
}
|
|
37084
|
-
// ../node_modules/@posthog/core/dist/utils/logger.mjs
|
|
37258
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/logger.mjs
|
|
37085
37259
|
function createConsole(consoleLike = console) {
|
|
37086
37260
|
const lockedMethods = {
|
|
37087
37261
|
log: consoleLike.log.bind(consoleLike),
|
|
@@ -37119,7 +37293,7 @@ var passThrough = (fn) => fn();
|
|
|
37119
37293
|
function createLogger(prefix, maybeCall = passThrough) {
|
|
37120
37294
|
return _createLogger(prefix, maybeCall, createConsole());
|
|
37121
37295
|
}
|
|
37122
|
-
// ../node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
37296
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/user-agent-utils.mjs
|
|
37123
37297
|
var MOBILE = "Mobile";
|
|
37124
37298
|
var IOS = "iOS";
|
|
37125
37299
|
var ANDROID = "Android";
|
|
@@ -37376,7 +37550,7 @@ var osMatchers = [
|
|
|
37376
37550
|
]
|
|
37377
37551
|
];
|
|
37378
37552
|
|
|
37379
|
-
// ../node_modules/@posthog/core/dist/utils/index.mjs
|
|
37553
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/utils/index.mjs
|
|
37380
37554
|
var STRING_FORMAT = "utf8";
|
|
37381
37555
|
function assert(truthyValue, message) {
|
|
37382
37556
|
if (!truthyValue || typeof truthyValue != "string" || isEmpty(truthyValue))
|
|
@@ -37424,7 +37598,7 @@ function allSettled(promises) {
|
|
|
37424
37598
|
reason
|
|
37425
37599
|
}))));
|
|
37426
37600
|
}
|
|
37427
|
-
// ../node_modules/@posthog/core/dist/eventemitter.mjs
|
|
37601
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/eventemitter.mjs
|
|
37428
37602
|
class SimpleEventEmitter {
|
|
37429
37603
|
constructor() {
|
|
37430
37604
|
this.events = {};
|
|
@@ -37446,7 +37620,7 @@ class SimpleEventEmitter {
|
|
|
37446
37620
|
}
|
|
37447
37621
|
}
|
|
37448
37622
|
|
|
37449
|
-
// ../node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
37623
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/posthog-core-stateless.mjs
|
|
37450
37624
|
class PostHogFetchHttpError extends Error {
|
|
37451
37625
|
constructor(response, reqByteLength) {
|
|
37452
37626
|
super("HTTP error while fetching PostHog: status=" + response.status + ", reqByteLength=" + reqByteLength), this.response = response, this.reqByteLength = reqByteLength, this.name = "PostHogFetchHttpError";
|
|
@@ -38161,7 +38335,7 @@ class PostHogCoreStateless {
|
|
|
38161
38335
|
return this.shutdownPromise;
|
|
38162
38336
|
}
|
|
38163
38337
|
}
|
|
38164
|
-
// ../node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
38338
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/index.mjs
|
|
38165
38339
|
var exports_error_tracking = {};
|
|
38166
38340
|
__export(exports_error_tracking, {
|
|
38167
38341
|
winjsStackLineParser: () => winjsStackLineParser,
|
|
@@ -38185,7 +38359,7 @@ __export(exports_error_tracking, {
|
|
|
38185
38359
|
DOMExceptionCoercer: () => DOMExceptionCoercer
|
|
38186
38360
|
});
|
|
38187
38361
|
|
|
38188
|
-
// ../node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
38362
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/chunk-ids.mjs
|
|
38189
38363
|
var parsedStackResults;
|
|
38190
38364
|
var lastKeysCount;
|
|
38191
38365
|
var cachedFilenameChunkIds;
|
|
@@ -38224,7 +38398,7 @@ function getFilenameToChunkIdMap(stackParser) {
|
|
|
38224
38398
|
return cachedFilenameChunkIds;
|
|
38225
38399
|
}
|
|
38226
38400
|
|
|
38227
|
-
// ../node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
38401
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/error-properties-builder.mjs
|
|
38228
38402
|
var MAX_CAUSE_RECURSION = 4;
|
|
38229
38403
|
|
|
38230
38404
|
class ErrorPropertiesBuilder {
|
|
@@ -38346,7 +38520,7 @@ class ErrorPropertiesBuilder {
|
|
|
38346
38520
|
return context;
|
|
38347
38521
|
}
|
|
38348
38522
|
}
|
|
38349
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
38523
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/base.mjs
|
|
38350
38524
|
var UNKNOWN_FUNCTION = "?";
|
|
38351
38525
|
function createFrame(platform, filename, func, lineno, colno) {
|
|
38352
38526
|
const frame = {
|
|
@@ -38362,7 +38536,7 @@ function createFrame(platform, filename, func, lineno, colno) {
|
|
|
38362
38536
|
return frame;
|
|
38363
38537
|
}
|
|
38364
38538
|
|
|
38365
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
38539
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/safari.mjs
|
|
38366
38540
|
var extractSafariExtensionDetails = (func, filename) => {
|
|
38367
38541
|
const isSafariExtension = func.indexOf("safari-extension") !== -1;
|
|
38368
38542
|
const isSafariWebExtension = func.indexOf("safari-web-extension") !== -1;
|
|
@@ -38375,7 +38549,7 @@ var extractSafariExtensionDetails = (func, filename) => {
|
|
|
38375
38549
|
];
|
|
38376
38550
|
};
|
|
38377
38551
|
|
|
38378
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
38552
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/chrome.mjs
|
|
38379
38553
|
var chromeRegexNoFnName = /^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i;
|
|
38380
38554
|
var chromeRegex = /^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i;
|
|
38381
38555
|
var chromeEvalRegex = /\((\S*)(?::(\d+))(?::(\d+))\)/;
|
|
@@ -38401,7 +38575,7 @@ var chromeStackLineParser = (line, platform) => {
|
|
|
38401
38575
|
}
|
|
38402
38576
|
};
|
|
38403
38577
|
|
|
38404
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
38578
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/gecko.mjs
|
|
38405
38579
|
var geckoREgex = /^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i;
|
|
38406
38580
|
var geckoEvalRegex = /(\S+) line (\d+)(?: > eval line \d+)* > eval/i;
|
|
38407
38581
|
var geckoStackLineParser = (line, platform) => {
|
|
@@ -38424,14 +38598,14 @@ var geckoStackLineParser = (line, platform) => {
|
|
|
38424
38598
|
}
|
|
38425
38599
|
};
|
|
38426
38600
|
|
|
38427
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
38601
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/winjs.mjs
|
|
38428
38602
|
var winjsRegex = /^\s*at (?:((?:\[object object\])?.+) )?\(?((?:[-a-z]+):.*?):(\d+)(?::(\d+))?\)?\s*$/i;
|
|
38429
38603
|
var winjsStackLineParser = (line, platform) => {
|
|
38430
38604
|
const parts = winjsRegex.exec(line);
|
|
38431
38605
|
return parts ? createFrame(platform, parts[2], parts[1] || UNKNOWN_FUNCTION, +parts[3], parts[4] ? +parts[4] : undefined) : undefined;
|
|
38432
38606
|
};
|
|
38433
38607
|
|
|
38434
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
38608
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/opera.mjs
|
|
38435
38609
|
var opera10Regex = / line (\d+).*script (?:in )?(\S+)(?:: in function (\S+))?$/i;
|
|
38436
38610
|
var opera10StackLineParser = (line, platform) => {
|
|
38437
38611
|
const parts = opera10Regex.exec(line);
|
|
@@ -38443,7 +38617,7 @@ var opera11StackLineParser = (line, platform) => {
|
|
|
38443
38617
|
return parts ? createFrame(platform, parts[5], parts[3] || parts[4] || UNKNOWN_FUNCTION, +parts[1], +parts[2]) : undefined;
|
|
38444
38618
|
};
|
|
38445
38619
|
|
|
38446
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
38620
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/node.mjs
|
|
38447
38621
|
var FILENAME_MATCH = /^\s*[-]{4,}$/;
|
|
38448
38622
|
var FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
|
|
38449
38623
|
var nodeStackLineParser = (line, platform) => {
|
|
@@ -38512,7 +38686,7 @@ function _parseIntOrUndefined(input) {
|
|
|
38512
38686
|
return parseInt(input || "", 10) || undefined;
|
|
38513
38687
|
}
|
|
38514
38688
|
|
|
38515
|
-
// ../node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
38689
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/parsers/index.mjs
|
|
38516
38690
|
var WEBPACK_ERROR_REGEXP = /\(error: (.*)\)/;
|
|
38517
38691
|
var STACKTRACE_FRAME_LIMIT = 50;
|
|
38518
38692
|
function reverseAndStripFrames(stack) {
|
|
@@ -38557,7 +38731,7 @@ function createStackParser(platform, ...parsers) {
|
|
|
38557
38731
|
return reverseAndStripFrames(frames);
|
|
38558
38732
|
};
|
|
38559
38733
|
}
|
|
38560
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
38734
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/dom-exception-coercer.mjs
|
|
38561
38735
|
class DOMExceptionCoercer {
|
|
38562
38736
|
match(err) {
|
|
38563
38737
|
return this.isDOMException(err) || this.isDOMError(err);
|
|
@@ -38587,7 +38761,7 @@ class DOMExceptionCoercer {
|
|
|
38587
38761
|
return isBuiltin(err, "DOMError");
|
|
38588
38762
|
}
|
|
38589
38763
|
}
|
|
38590
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
38764
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-coercer.mjs
|
|
38591
38765
|
class ErrorCoercer {
|
|
38592
38766
|
match(err) {
|
|
38593
38767
|
return isPlainError(err);
|
|
@@ -38614,7 +38788,7 @@ class ErrorCoercer {
|
|
|
38614
38788
|
return err.stacktrace || err.stack || undefined;
|
|
38615
38789
|
}
|
|
38616
38790
|
}
|
|
38617
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
38791
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/error-event-coercer.mjs
|
|
38618
38792
|
class ErrorEventCoercer {
|
|
38619
38793
|
constructor() {}
|
|
38620
38794
|
match(err) {
|
|
@@ -38632,7 +38806,7 @@ class ErrorEventCoercer {
|
|
|
38632
38806
|
return exceptionLike;
|
|
38633
38807
|
}
|
|
38634
38808
|
}
|
|
38635
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
38809
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/string-coercer.mjs
|
|
38636
38810
|
var ERROR_TYPES_PATTERN = /^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;
|
|
38637
38811
|
|
|
38638
38812
|
class StringCoercer {
|
|
@@ -38662,7 +38836,7 @@ class StringCoercer {
|
|
|
38662
38836
|
];
|
|
38663
38837
|
}
|
|
38664
38838
|
}
|
|
38665
|
-
// ../node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
38839
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/types.mjs
|
|
38666
38840
|
var severityLevels = [
|
|
38667
38841
|
"fatal",
|
|
38668
38842
|
"error",
|
|
@@ -38672,7 +38846,7 @@ var severityLevels = [
|
|
|
38672
38846
|
"debug"
|
|
38673
38847
|
];
|
|
38674
38848
|
|
|
38675
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
38849
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/utils.mjs
|
|
38676
38850
|
function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
38677
38851
|
const keys = Object.keys(err);
|
|
38678
38852
|
keys.sort();
|
|
@@ -38689,7 +38863,7 @@ function extractExceptionKeysForMessage(err, maxLength = 40) {
|
|
|
38689
38863
|
return "";
|
|
38690
38864
|
}
|
|
38691
38865
|
|
|
38692
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
38866
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/object-coercer.mjs
|
|
38693
38867
|
class ObjectCoercer {
|
|
38694
38868
|
match(candidate) {
|
|
38695
38869
|
return typeof candidate == "object" && candidate !== null;
|
|
@@ -38742,7 +38916,7 @@ class ObjectCoercer {
|
|
|
38742
38916
|
}
|
|
38743
38917
|
}
|
|
38744
38918
|
}
|
|
38745
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
38919
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/event-coercer.mjs
|
|
38746
38920
|
class EventCoercer {
|
|
38747
38921
|
match(err) {
|
|
38748
38922
|
return isEvent(err);
|
|
@@ -38757,7 +38931,7 @@ class EventCoercer {
|
|
|
38757
38931
|
};
|
|
38758
38932
|
}
|
|
38759
38933
|
}
|
|
38760
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
38934
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/primitive-coercer.mjs
|
|
38761
38935
|
class PrimitiveCoercer {
|
|
38762
38936
|
match(candidate) {
|
|
38763
38937
|
return isPrimitive(candidate);
|
|
@@ -38771,7 +38945,7 @@ class PrimitiveCoercer {
|
|
|
38771
38945
|
};
|
|
38772
38946
|
}
|
|
38773
38947
|
}
|
|
38774
|
-
// ../node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
38948
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/coercers/promise-rejection-event.mjs
|
|
38775
38949
|
class PromiseRejectionEventCoercer {
|
|
38776
38950
|
match(err) {
|
|
38777
38951
|
return isBuiltin(err, "PromiseRejectionEvent") || this.isCustomEventWrappingRejection(err);
|
|
@@ -38807,7 +38981,7 @@ class PromiseRejectionEventCoercer {
|
|
|
38807
38981
|
return error;
|
|
38808
38982
|
}
|
|
38809
38983
|
}
|
|
38810
|
-
// ../node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
38984
|
+
// ../node_modules/.bun/@posthog+core@1.25.2/node_modules/@posthog/core/dist/error-tracking/utils.mjs
|
|
38811
38985
|
class ReduceableCache {
|
|
38812
38986
|
constructor(_maxSize) {
|
|
38813
38987
|
this._maxSize = _maxSize;
|
|
@@ -38832,7 +39006,7 @@ class ReduceableCache {
|
|
|
38832
39006
|
}
|
|
38833
39007
|
}
|
|
38834
39008
|
}
|
|
38835
|
-
// ../node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
39009
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/modifiers/context-lines.node.mjs
|
|
38836
39010
|
import { createReadStream } from "node:fs";
|
|
38837
39011
|
import { createInterface } from "node:readline";
|
|
38838
39012
|
var LRU_FILE_CONTENTS_CACHE = new exports_error_tracking.ReduceableCache(25);
|
|
@@ -39050,7 +39224,7 @@ function snipLine(line, colno) {
|
|
|
39050
39224
|
return newLine;
|
|
39051
39225
|
}
|
|
39052
39226
|
|
|
39053
|
-
// ../node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
39227
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/autocapture.mjs
|
|
39054
39228
|
function makeUncaughtExceptionHandler(captureFn, onFatalFn) {
|
|
39055
39229
|
let calledFatalError = false;
|
|
39056
39230
|
return Object.assign((error) => {
|
|
@@ -39082,7 +39256,7 @@ function addUnhandledRejectionListener(captureFn) {
|
|
|
39082
39256
|
}));
|
|
39083
39257
|
}
|
|
39084
39258
|
|
|
39085
|
-
// ../node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
39259
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/error-tracking/index.mjs
|
|
39086
39260
|
var SHUTDOWN_TIMEOUT = 2000;
|
|
39087
39261
|
|
|
39088
39262
|
class ErrorTracking {
|
|
@@ -39151,10 +39325,10 @@ class ErrorTracking {
|
|
|
39151
39325
|
}
|
|
39152
39326
|
}
|
|
39153
39327
|
|
|
39154
|
-
// ../node_modules/posthog-node/dist/version.mjs
|
|
39328
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/version.mjs
|
|
39155
39329
|
var version = "5.29.2";
|
|
39156
39330
|
|
|
39157
|
-
// ../node_modules/posthog-node/dist/types.mjs
|
|
39331
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/types.mjs
|
|
39158
39332
|
var FeatureFlagError2 = {
|
|
39159
39333
|
ERRORS_WHILE_COMPUTING: "errors_while_computing_flags",
|
|
39160
39334
|
FLAG_MISSING: "flag_missing",
|
|
@@ -39162,7 +39336,7 @@ var FeatureFlagError2 = {
|
|
|
39162
39336
|
UNKNOWN_ERROR: "unknown_error"
|
|
39163
39337
|
};
|
|
39164
39338
|
|
|
39165
|
-
// ../node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
39339
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/crypto.mjs
|
|
39166
39340
|
async function hashSHA1(text) {
|
|
39167
39341
|
const subtle = globalThis.crypto?.subtle;
|
|
39168
39342
|
if (!subtle)
|
|
@@ -39172,7 +39346,7 @@ async function hashSHA1(text) {
|
|
|
39172
39346
|
return hashArray.map((byte) => byte.toString(16).padStart(2, "0")).join("");
|
|
39173
39347
|
}
|
|
39174
39348
|
|
|
39175
|
-
// ../node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
39349
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/feature-flags/feature-flags.mjs
|
|
39176
39350
|
var SIXTY_SECONDS = 60000;
|
|
39177
39351
|
var LONG_SCALE = 1152921504606847000;
|
|
39178
39352
|
var NULL_VALUES_ALLOWED_OPERATORS = [
|
|
@@ -40046,7 +40220,7 @@ function relativeDateParseForFeatureFlagMatching(value) {
|
|
|
40046
40220
|
}
|
|
40047
40221
|
}
|
|
40048
40222
|
|
|
40049
|
-
// ../node_modules/posthog-node/dist/storage-memory.mjs
|
|
40223
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/storage-memory.mjs
|
|
40050
40224
|
class PostHogMemoryStorage {
|
|
40051
40225
|
getProperty(key) {
|
|
40052
40226
|
return this._memoryStorage[key];
|
|
@@ -40059,7 +40233,7 @@ class PostHogMemoryStorage {
|
|
|
40059
40233
|
}
|
|
40060
40234
|
}
|
|
40061
40235
|
|
|
40062
|
-
// ../node_modules/posthog-node/dist/client.mjs
|
|
40236
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/client.mjs
|
|
40063
40237
|
var MINIMUM_POLLING_INTERVAL = 100;
|
|
40064
40238
|
var THIRTY_SECONDS = 30000;
|
|
40065
40239
|
var MAX_CACHE_SIZE = 50000;
|
|
@@ -40847,7 +41021,7 @@ class PostHogBackendClient extends PostHogCoreStateless {
|
|
|
40847
41021
|
}
|
|
40848
41022
|
}
|
|
40849
41023
|
|
|
40850
|
-
// ../node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
41024
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/context/context.mjs
|
|
40851
41025
|
import { AsyncLocalStorage as AsyncLocalStorage3 } from "node:async_hooks";
|
|
40852
41026
|
|
|
40853
41027
|
class PostHogContext {
|
|
@@ -40878,7 +41052,7 @@ class PostHogContext {
|
|
|
40878
41052
|
}
|
|
40879
41053
|
}
|
|
40880
41054
|
|
|
40881
|
-
// ../node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
41055
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/extensions/sentry-integration.mjs
|
|
40882
41056
|
var NAME = "posthog-node";
|
|
40883
41057
|
function createEventProcessor(_posthog, { organization, projectId, prefix, severityAllowList = [
|
|
40884
41058
|
"error"
|
|
@@ -40946,7 +41120,7 @@ class PostHogSentryIntegration {
|
|
|
40946
41120
|
};
|
|
40947
41121
|
}
|
|
40948
41122
|
}
|
|
40949
|
-
// ../node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
41123
|
+
// ../node_modules/.bun/posthog-node@5.29.2/node_modules/posthog-node/dist/entrypoints/index.node.mjs
|
|
40950
41124
|
ErrorTracking.errorPropertiesBuilder = new exports_error_tracking.ErrorPropertiesBuilder([
|
|
40951
41125
|
new exports_error_tracking.EventCoercer,
|
|
40952
41126
|
new exports_error_tracking.ErrorCoercer,
|
|
@@ -58410,11 +58584,11 @@ function readTurnActiveMarkerAgeMs(stateDir, now) {
|
|
|
58410
58584
|
}
|
|
58411
58585
|
|
|
58412
58586
|
// ../src/build-info.ts
|
|
58413
|
-
var VERSION = "0.
|
|
58414
|
-
var COMMIT_SHA = "
|
|
58415
|
-
var COMMIT_DATE = "2026-07-
|
|
58416
|
-
var LATEST_PR =
|
|
58417
|
-
var COMMITS_AHEAD_OF_TAG =
|
|
58587
|
+
var VERSION = "0.15.48";
|
|
58588
|
+
var COMMIT_SHA = "eee77212";
|
|
58589
|
+
var COMMIT_DATE = "2026-07-04T12:23:42+10:00";
|
|
58590
|
+
var LATEST_PR = null;
|
|
58591
|
+
var COMMITS_AHEAD_OF_TAG = 2;
|
|
58418
58592
|
|
|
58419
58593
|
// gateway/boot-version.ts
|
|
58420
58594
|
function formatRelativeAgo(iso) {
|
|
@@ -69673,11 +69847,26 @@ async function handleVaultRequestAccessCallback(ctx, data) {
|
|
|
69673
69847
|
});
|
|
69674
69848
|
const joiningBatch = items.length > 1;
|
|
69675
69849
|
await ctx.answerCallbackQuery({ text: joiningBatch ? `\uD83D\uDD10 Queued \u2014 one passphrase covers ${items.length} cards` : "\uD83D\uDD10 Send your passphrase\u2026" }).catch(() => {});
|
|
69676
|
-
await ctx.api.editMessageText(pending2.chat_id, pending2.card_message_id,
|
|
69850
|
+
await ctx.api.editMessageText(pending2.chat_id, pending2.card_message_id, richMessage2(`\uD83D\uDD10 _Approved \u2014 waiting for your vault passphrase. See the prompt below._`), { reply_markup: { inline_keyboard: [] } }).catch(() => {});
|
|
69851
|
+
const promptText = joiningBatch ? `**\u26A0\uFE0F\uD83D\uDD10 ACTION NEEDED: passphrase required**
|
|
69852
|
+
|
|
69853
|
+
` + `Type your vault passphrase as your **next message**.
|
|
69854
|
+
One entry covers **${items.length}** pending approvals in this chat, no re-type per card.
|
|
69855
|
+
|
|
69856
|
+
_We delete the passphrase message the moment we read it._` : isAdminOnly ? `**\u26A0\uFE0F\uD83D\uDD10 ACTION NEEDED: passphrase required**
|
|
69857
|
+
|
|
69858
|
+
` + `\`${pending2.key}\` is an **admin-only credential**.
|
|
69859
|
+
Type your vault passphrase as your **next message** to mint the grant for **${escapeHtmlForTg2(pending2.agent)}**.
|
|
69860
|
+
|
|
69861
|
+
_The passphrase is what proves it's you. An agent can never mint this key on its own. We delete the passphrase message the moment we read it._` : `**\u26A0\uFE0F\uD83D\uDD10 ACTION NEEDED: passphrase required**
|
|
69677
69862
|
|
|
69678
|
-
|
|
69863
|
+
` + `Your vault is locked.
|
|
69864
|
+
Reply with your passphrase as your **next message** to unlock and mint the grant for **${escapeHtmlForTg2(pending2.agent)}**.
|
|
69679
69865
|
|
|
69680
|
-
|
|
69866
|
+
_Mint authority stays operator-only: the broker only accepts the grant when the passphrase matches. We delete the passphrase message the moment we read it._`;
|
|
69867
|
+
await retryWithThreadFallback(robustApiCall, (tid) => lockedBot.api.sendRichMessage(pending2.chat_id, richMessage2(promptText), {
|
|
69868
|
+
...tid != null && Number.isFinite(tid) ? { message_thread_id: tid } : {}
|
|
69869
|
+
}), { threadId: pending2.threadId, chat_id: pending2.chat_id, verb: "vault_request_access.passphrase_prompt" }).catch(() => {});
|
|
69681
69870
|
return;
|
|
69682
69871
|
}
|
|
69683
69872
|
await ctx.answerCallbackQuery({ text: "\u23F3 Minting grant\u2026" }).catch(() => {});
|