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 18:50:08 +03:00
committed by GitHub
parent 1cd9b53ea8
commit 1212eb933e
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
+1 -1
View File
@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
+1 -1
View File
@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*
+1 -1
View File
@@ -715,7 +715,7 @@ export interface APIGuildIntegration {
/**
* Is this integration enabled
*/
enabled: boolean;
enabled?: boolean;
/**
* Is this integration syncing
*