UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

18 lines (16 loc) 515 B
import { buildOAuthConfigSchema } from "../../../../oauth.js"; import { Type } from "@sinclair/typebox"; //#region src/shared/datasources/external/youtube/oauth/config.ts const youtubeOAuthConfig = Type.Object({ accessToken: Type.String(), expiresIn: Type.Number(), openId: Type.String(), refreshExpiresIn: Type.Number(), refreshToken: Type.String(), scope: Type.String(), tokenType: Type.String() }); buildOAuthConfigSchema(youtubeOAuthConfig); //#endregion export { }; //# sourceMappingURL=config.js.map