mirror of
https://github.com/logto-io/logto.git
synced 2025-01-27 21:39:16 -05:00
1bc9568083
* feat(console): send access token in requests * fix(console): upgrade SDK and fulfill resources * fix(console): build
7 lines
290 B
TypeScript
7 lines
290 B
TypeScript
import { ApplicationType } from '@logto/schemas';
|
|
|
|
export const applicationTypeI18nKey = Object.freeze({
|
|
[ApplicationType.Native]: 'applications.type.native',
|
|
[ApplicationType.SPA]: 'applications.type.spa',
|
|
[ApplicationType.Traditional]: 'applications.type.traditional',
|
|
} as const);
|