0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/connectors/connector-feishu-web/src/mock.ts
Gao Sun 6b322a537c
refactor: add connector packages
the initial commit to move all connector packages to the main
repo.
2023-04-01 15:53:14 +08:00

16 lines
385 B
TypeScript

import type { FeishuConfig } from './types.js';
export const mockedTimestamp = '2022-02-22 22:22:22';
export const mockedFeishuConfig: FeishuConfig = {
appId: '1112233',
appSecret: '445566',
};
export const mockedFeishuPublicParameters = {
format: 'JSON',
grantType: 'authorization_code',
timestamp: mockedTimestamp,
version: '1.0',
method: '<method-placeholder>',
};