UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

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