refactor(APIGuildIntegration): make enabled optional (#406)

BREAKING CHANGE: `enabled` is now properly marked as optional
This commit is contained in:
Vitor Lopes
2022-04-20 16:50:08 +01:00
committed by GitHub
parent 1cd9b53ea8
commit 1212eb933e
4 changed files with 4 additions and 4 deletions

View File

@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*

View File

@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*

View File

@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*

View File

@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*