diff --git a/src/util/schemas/responses/TypedResponses.ts b/src/util/schemas/responses/TypedResponses.ts index 14067844..8214ff7b 100644 --- a/src/util/schemas/responses/TypedResponses.ts +++ b/src/util/schemas/responses/TypedResponses.ts @@ -105,6 +105,9 @@ export type APILimitsConfiguration = LimitsConfiguration; export type APIStickerPackArray = StickerPack[]; -export type APIConnectionsConfiguration = Record; +export type APIConnectionsConfiguration = Record< + string, + { + enabled: boolean; + } +>;