guilded-api-typings
Advanced tools
Comparing version 0.0.0-dev-20220928215124 to 0.0.0-dev-20221026173709
# guilded-api-typings | ||
## 0.0.0-dev-20220928215124 | ||
## 0.0.0-dev-20221026173709 | ||
### Minor Changes | ||
- 88aaf2b: feat: `BotTeamMembershipCreated` event | ||
## 0.12.1 | ||
### Patch Changes | ||
@@ -6,0 +12,0 @@ |
{ | ||
"name": "guilded-api-typings", | ||
"version": "0.0.0-dev-20220928215124", | ||
"version": "0.0.0-dev-20221026173709", | ||
"description": "Type definitions for the Guilded API.", | ||
@@ -28,10 +28,7 @@ "repository": { | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"rimraf": "^3.0.2", | ||
"typescript": "^4.7.4" | ||
}, | ||
"scripts": { | ||
"build": "pnpm clear && tsc", | ||
"clear": "rimraf dist typings" | ||
"clear": "rimraf dist typings", | ||
"lint": "eslint src" | ||
} | ||
} |
<div align="center"> | ||
<a href="https://guildedts.js.org"> | ||
<img src="https://guildedts.js.org/media/banner.png" alt="Guilded.TS"/> | ||
<img src="https://guildedts.js.org/banner.png" alt="Guilded.TS"/> | ||
</a> | ||
<div> | ||
<A href="https://guilded.gg/guildedts"> | ||
<A href="https://guildedts.js.org/support"> | ||
<img src="https://shields.yoki-labs.xyz/shields/vanity/guildedts?style=for-the-badge" alt="Guilded server"> | ||
@@ -27,5 +27,8 @@ </a> | ||
- [Website](https://guildedts.js.org) | ||
- [Documentation](https://docs.guildedts.js.org/modules/guilded_api_typings) | ||
- [Guide](https://guildedts.js.org/guide) | ||
- [Guilded.TS Guilded Server](https://guildedts.js.org/support) | ||
- [GitHub](https://github.com/guildedts/guilded.ts/tree/main/packages/guilded-api-typings) | ||
- [NPM](https://npmjs.com/guilded-api-typings) | ||
- [Documentation](https://guildedts.js.org/modules/guilded_api_typings) | ||
@@ -32,0 +35,0 @@ # Installation |
@@ -5,3 +5,3 @@ import { APIChannel } from './structures/Channel'; | ||
import { APIListItem } from './structures/ListItem'; | ||
import { APIServerMember, APIServerBan } from './structures/Server'; | ||
import { APIServerMember, APIServerBan, APIServer } from './structures/Server'; | ||
import { APIWebhook } from './structures/Webhook'; | ||
@@ -46,2 +46,12 @@ import { APICalendarEvent, APICalendarEventRsvp } from './structures/CalendarEvent'; | ||
/** | ||
* Emitted when a bot is added to a server. | ||
* @see https://www.guilded.gg/docs/api/websockets/BotTeamMembershipCreated | ||
*/ | ||
BotTeamMembershipCreated: { | ||
/** The server the bot was added to. */ | ||
server: APIServer; | ||
/** The ID of the user that added the bot to the server. */ | ||
createdBy: string; | ||
}; | ||
/** | ||
* Emitted when a message is created. | ||
@@ -48,0 +58,0 @@ * @see https://www.guilded.gg/docs/api/websockets/ChatMessageCreated |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
132606
0
2073
43