@satorijs/adapter-lark 3.12.1 → 3.12.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/lib/index.cjs +1 -1
- package/package.json +1 -1
- package/src/bot.ts +1 -1
package/lib/index.cjs
CHANGED
|
@@ -1428,7 +1428,7 @@ var LarkBot = class extends import_core6.Bot {
|
|
|
1428
1428
|
static {
|
|
1429
1429
|
__name(this, "LarkBot");
|
|
1430
1430
|
}
|
|
1431
|
-
static inject = ["
|
|
1431
|
+
static inject = ["http"];
|
|
1432
1432
|
static MessageEncoder = LarkMessageEncoder;
|
|
1433
1433
|
_refresher;
|
|
1434
1434
|
http;
|
package/package.json
CHANGED
package/src/bot.ts
CHANGED
|
@@ -16,7 +16,7 @@ const fileTypeMap: Record<Exclude<Im.File.CreateForm['file_type'], 'stream'>, st
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
export class LarkBot<C extends Context = Context, T extends LarkBot.Config = LarkBot.Config> extends Bot<C, T> {
|
|
19
|
-
static inject = ['
|
|
19
|
+
static inject = ['http']
|
|
20
20
|
static MessageEncoder = LarkMessageEncoder
|
|
21
21
|
|
|
22
22
|
_refresher?: NodeJS.Timeout
|