Skip to content

Commit

Permalink
refactor(APIGuildIntegration): make enabled optional (#406)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `enabled` is now properly marked as optional
  • Loading branch information
vvito7 committed Apr 20, 2022
1 parent 1cd9b53 commit 1212eb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deno/payloads/v10/guild.ts
Expand Up @@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
Expand Down
2 changes: 1 addition & 1 deletion deno/payloads/v9/guild.ts
Expand Up @@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
Expand Down
2 changes: 1 addition & 1 deletion payloads/v10/guild.ts
Expand Up @@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
Expand Down
2 changes: 1 addition & 1 deletion payloads/v9/guild.ts
Expand Up @@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
Expand Down

0 comments on commit 1212eb9

Please sign in to comment.