@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
15 lines (13 loc) • 421 B
JavaScript
import { Type } from "@sinclair/typebox";
//#region src/shared/datarecords/external/airtable/oauth/config.ts
const airtableOAuthTokenSchema = Type.Object({
scope: Type.String(),
token_type: Type.String(),
expires_in: Type.Number(),
access_token: Type.String(),
refresh_token: Type.String(),
refresh_expires_in: Type.Number()
});
//#endregion
export { airtableOAuthTokenSchema };
//# sourceMappingURL=config.js.map