Skip to content

Commit

Permalink
chore(release): 6.28.0-rc.2 [skip ci]
Browse files Browse the repository at this point in the history
# [6.28.0-rc.2](v6.28.0-rc.1...v6.28.0-rc.2) (2023-08-21)

### Bug Fixes

* temp - approve and reject transfer request ([#1461](#1461)) ([d3c8d21](d3c8d21))
  • Loading branch information
semantic-release-bot authored and Anh Nguyen committed Aug 21, 2023
1 parent 3ab850e commit 053aea6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [6.28.0-rc.2](https://github.com/consolelabs/mochi-discord/compare/v6.28.0-rc.1...v6.28.0-rc.2) (2023-08-21)

### Bug Fixes

- temp - approve and reject transfer request ([#1461](https://github.com/consolelabs/mochi-discord/issues/1461)) ([d3c8d21](https://github.com/consolelabs/mochi-discord/commit/d3c8d213baf9f1c54d36de69fc745b0fd0dbdb00))

# [6.28.0](https://github.com/consolelabs/mochi-discord/compare/v6.27.0...v6.28.0) (2023-08-21)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@
"node": "18.x"
},
"name": "mochi-discord",
"version": "6.28.0"
"version": "6.28.0-rc.2"
}
25 changes: 17 additions & 8 deletions src/types/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,17 @@ export interface ModelOffchainTipBotToken {
updated_at?: string;
}

export interface ModelProductBotCommand {
code?: string;
created_at?: string;
description?: string;
discord_command?: string;
id?: number;
scope?: number;
telegram_command?: string;
updated_at?: string;
}

export interface ModelProductMetadataEmojis {
code?: string;
discord_id?: string;
Expand Down Expand Up @@ -783,6 +794,7 @@ export interface RequestTransferV2Request {
recipients?: string[];
sender?: string;
token?: string;
transfer_type?: "transfer" | "airdrop";
}

export interface RequestUnlinkBinance {
Expand Down Expand Up @@ -1902,10 +1914,6 @@ export interface ResponseNftWatchlistSuggestResponse {

export interface ResponseOffchainTipBotTransferToken {
amount_each?: number;
/**
* SenderID string `json:"sender_id"`
* Recipients string `json:"recipient_id"`
*/
id?: string;
total_amount?: number;
tx_id?: number;
Expand All @@ -1931,6 +1939,10 @@ export interface ResponsePaginationResponse {
total?: number;
}

export interface ResponseProductBotCommand {
data?: ModelProductBotCommand[];
}

export interface ResponseProfileAirdropCampaignResponse {
data?: ModelProfileAirdropCampaign;
}
Expand Down Expand Up @@ -2102,10 +2114,7 @@ export interface ResponseTopUser {

export interface ResponseTransferTokenV2Data {
amount_each?: number;
/**
* SenderID string `json:"sender_id"`
* Recipients string `json:"recipient_id"`
*/
external_id?: string;
id?: string;
total_amount?: number;
tx_id?: number;
Expand Down

0 comments on commit 053aea6

Please sign in to comment.