Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Aug 28, 2023
1 parent 045c563 commit a3ea0c8
Show file tree
Hide file tree
Showing 19 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion adapters/dingtalk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
}
}
2 changes: 1 addition & 1 deletion adapters/dingtalk/src/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class DingtalkMessageEncoder extends MessageEncoder<DingtalkBot> {
const value = process.env.KOISHI_ENV === 'browser'
? new Blob([data], { type: mime })
: Buffer.from(data)
let type
let type: string
if (mime.startsWith('image/') || mime.startsWith('video/')) {
type = mime.split('/')[0]
} else if (mime.startsWith('audio/')) {
Expand Down
4 changes: 2 additions & 2 deletions adapters/discord/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/adapter-discord",
"description": "Discord Adapter for Satorijs",
"version": "3.8.7",
"version": "3.8.8",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -29,7 +29,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/kook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/lark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"form-data": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion adapters/line/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
}
}
2 changes: 1 addition & 1 deletion adapters/mail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"@types/mailparser": "^3.4.0",
Expand Down
2 changes: 1 addition & 1 deletion adapters/matrix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"image-size": "^1.0.2",
Expand Down
4 changes: 2 additions & 2 deletions adapters/onebot/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/adapter-onebot",
"description": "OneBot Adapter for Satorijs",
"version": "5.7.4",
"version": "5.7.5",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand All @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"qface": "^1.4.1"
Expand Down
2 changes: 1 addition & 1 deletion adapters/qqguild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"@qq-guild-sdk/core": "^2.2.2",
Expand Down
2 changes: 1 addition & 1 deletion adapters/slack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"@slack/types": "^2.8.0",
Expand Down
4 changes: 2 additions & 2 deletions adapters/slack/src/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ export namespace SlackBot {
export const Config: Schema<Config> = Schema.intersect([
Schema.object({
protocol: Schema.union(['http', 'ws']).description('选择要使用的协议。').required(),
token: Schema.string().description('App-Level Tokens').role('secret').required(),
botToken: Schema.string().description('OAuth Tokens(Bot Tokens)').role('secret').required(),
token: Schema.string().description('App-Level Token.').role('secret').required(),
botToken: Schema.string().description('OAuth Token.').role('secret').required(),
}),
Schema.union([
WsClient.Config,
Expand Down
2 changes: 1 addition & 1 deletion adapters/telegram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"file-type": "^16.5.4",
Expand Down
2 changes: 1 addition & 1 deletion adapters/wechat-official/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.0"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"@wecom/crypto": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion adapters/wecom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.0"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {
"@wecom/crypto": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion adapters/whatsapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"satori"
],
"peerDependencies": {
"@satorijs/satori": "^2.6.2"
"@satorijs/satori": "^2.6.3"
},
"dependencies": {},
"devDependencies": {}
Expand Down
2 changes: 1 addition & 1 deletion packages/axios/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cordis-axios",
"description": "Axios service for cordis",
"version": "3.2.0",
"version": "3.2.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/core",
"description": "Core components of Satorijs",
"version": "2.6.2",
"version": "2.6.3",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -36,7 +36,7 @@
"dependencies": {
"@satorijs/element": "^2.4.2",
"cordis": "^2.8.7",
"cordis-axios": "^3.2.0",
"cordis-axios": "^3.2.1",
"cosmokit": "^1.4.5",
"ws": "^8.13.0",
"reggol": "^1.4.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/satori/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@satorijs/satori",
"description": "Core components of Satorijs",
"version": "2.6.2",
"version": "2.6.3",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@koa/router": "^10.1.1",
"@satorijs/core": "2.6.2",
"@satorijs/core": "2.6.3",
"@types/koa": "*",
"@types/koa__router": "*",
"@types/ws": "^8.5.5",
Expand Down

0 comments on commit a3ea0c8

Please sign in to comment.