teleton 0.4.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +88 -13
- package/dist/BigInteger-DQ33LTTE.js +5 -0
- package/dist/chunk-4DU3C27M.js +30 -0
- package/dist/chunk-5WWR4CU3.js +124 -0
- package/dist/{chunk-E2NXSWOS.js → chunk-NUGDTPE4.js} +24 -64
- package/dist/{chunk-OA5L7GM6.js → chunk-O4R7V5Y2.js} +37 -5
- package/dist/chunk-QUAPFI2N.js +42 -0
- package/dist/chunk-TSKJCWQQ.js +1263 -0
- package/dist/{chunk-B2PRMXOH.js → chunk-WL2Q3VRD.js} +0 -2
- package/dist/{chunk-QU4ZOR35.js → chunk-WOXBZOQX.js} +3179 -3368
- package/dist/{chunk-7UPH62J2.js → chunk-WUTMT6DW.js} +293 -261
- package/dist/{chunk-OQGNS2FV.js → chunk-YBA6IBGT.js} +20 -5
- package/dist/cli/index.js +41 -172
- package/dist/{endpoint-FT2B2RZ2.js → endpoint-FLYNEZ2F.js} +1 -1
- package/dist/{get-my-gifts-AFKBG4YQ.js → get-my-gifts-KVULMBJ3.js} +1 -1
- package/dist/index.js +12 -12
- package/dist/{memory-SYTQ5P7P.js → memory-Y5J7CXAR.js} +4 -5
- package/dist/{migrate-ITXMRRSZ.js → migrate-UEQCDWL2.js} +4 -5
- package/dist/server-BQY7CM2N.js +1120 -0
- package/dist/{task-dependency-resolver-GY6PEBIS.js → task-dependency-resolver-TRPILAHM.js} +2 -2
- package/dist/{task-executor-4QKTZZ3P.js → task-executor-N7XNVK5N.js} +1 -1
- package/dist/{tasks-M3QDPTGY.js → tasks-QSCWSMPS.js} +1 -1
- package/dist/{transcript-DF2Y6CFY.js → transcript-7V4UNID4.js} +1 -1
- package/dist/web/assets/index-CDMbujHf.css +1 -0
- package/dist/web/assets/index-DDX8oQ2z.js +67 -0
- package/dist/web/index.html +16 -0
- package/dist/web/logo_dark.png +0 -0
- package/package.json +23 -6
- package/dist/chunk-67QC5FBN.js +0 -60
- package/dist/chunk-A64NPEFL.js +0 -74
- package/dist/chunk-DUW5VBAZ.js +0 -133
- package/dist/chunk-QBGUCUOW.js +0 -16
- package/dist/scraper-SH7GS7TO.js +0 -282
|
@@ -141,10 +141,8 @@ var telegramGetMyGiftsExecutor = async (params, context) => {
|
|
|
141
141
|
isCollectible,
|
|
142
142
|
stars: gift?.stars?.toString(),
|
|
143
143
|
emoji: catalogInfo?.emoji || null,
|
|
144
|
-
// IDs needed for transfer/actions (msgId for user gifts, savedId for chat gifts)
|
|
145
144
|
msgId: savedGift.msgId,
|
|
146
145
|
savedId: savedGift.savedId?.toString(),
|
|
147
|
-
// Transfer cost in Stars (if set, transfer requires payment; if null, transfer is free)
|
|
148
146
|
transferStars: savedGift.transferStars?.toString() || null
|
|
149
147
|
};
|
|
150
148
|
if (isCollectible) {
|