mirror of
https://github.com/logto-io/logto.git
synced 2025-01-27 21:39:16 -05:00
6b322a537c
the initial commit to move all connector packages to the main repo.
16 lines
385 B
TypeScript
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>',
|
|
};
|