kick-api-types
Version:
Kick.com API Types
31 lines • 1.08 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuth2Scopes = void 0;
var OAuth2Scopes;
(function (OAuth2Scopes) {
/*
* View user information in Kick including username, streamer ID, etc.
*/
OAuth2Scopes["UserRead"] = "user:read";
/*
* View channel information in Kick including channel description, category, etc.
*/
OAuth2Scopes["ChannelRead"] = "channel:read";
/*
* Update livestream metadata for a channel based on the channel ID
*/
OAuth2Scopes["ChannelWrite"] = "channel:write";
/*
* Send chat messages and allow chat bots to post in your chat
*/
OAuth2Scopes["ChatWrite"] = "chat:write";
/*
* Read a user's stream URL and stream key
*/
OAuth2Scopes["StreamKeyRead"] = "streamkey:read";
/*
* Subscribe to all channel events on Kick e.g. chat messages, follows, subscriptions
*/
OAuth2Scopes["EventsSubscribe"] = "events:subscribe";
})(OAuth2Scopes || (exports.OAuth2Scopes = OAuth2Scopes = {}));
//# sourceMappingURL=oauth2.js.map
;