mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-30 18:48:55 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { type ErrType } from '../errorCode';
|
|
import { i18nT } from '../../../../web/i18n/utils';
|
|
/* dataset: 509000 */
|
|
export enum SystemErrEnum {
|
|
communityVersionNumLimit = 'communityVersionNumLimit',
|
|
licenseAppAmountLimit = 'licenseAppAmountLimit',
|
|
licenseDatasetAmountLimit = 'licenseDatasetAmountLimit',
|
|
licenseUserAmountLimit = 'licenseUserAmountLimit'
|
|
}
|
|
|
|
const systemErr = [
|
|
{
|
|
statusText: SystemErrEnum.communityVersionNumLimit,
|
|
message: i18nT('common:code_error.system_error.community_version_num_limit')
|
|
},
|
|
{
|
|
statusText: SystemErrEnum.licenseAppAmountLimit,
|
|
message: i18nT('common:code_error.system_error.license_app_amount_limit')
|
|
},
|
|
{
|
|
statusText: SystemErrEnum.licenseDatasetAmountLimit,
|
|
message: i18nT('common:code_error.system_error.license_dataset_amount_limit')
|
|
},
|
|
{
|
|
statusText: SystemErrEnum.licenseUserAmountLimit,
|
|
message: i18nT('common:code_error.system_error.license_user_amount_limit')
|
|
}
|
|
];
|
|
|
|
export default systemErr.reduce((acc, cur, index) => {
|
|
return {
|
|
...acc,
|
|
[cur.statusText]: {
|
|
code: 509000 + index,
|
|
statusText: cur.statusText,
|
|
message: cur.message,
|
|
data: null
|
|
}
|
|
};
|
|
}, {} as ErrType<`${SystemErrEnum}`>);
|