dee96b6e91
- Created response DTOs for ConfigService, AppService, AuthService, CatalogsService, AccountsService, BusinessActivityComplexesService, ComplexPosesService, SalesInvoicesService, BusinessActivitiesService, ConsumerBusinessActivityGoodsService, and others. - Implemented Create, FindAll, FindOne, and Update response types for services in consumer, partners, and POS modules. - Added request DTOs for creating and updating goods in the consumer business activities module. - Introduced filtering DTO for partner licenses. - Enhanced response mapping for partner license activations.
27 lines
525 B
TypeScript
27 lines
525 B
TypeScript
export enum TokenType {
|
|
ACCESS = 'ACCESS',
|
|
REFRESH = 'REFRESH',
|
|
}
|
|
|
|
export enum AccountType {
|
|
PARTNER = 'PARTNER',
|
|
BUSINESS = 'BUSINESS',
|
|
ADMIN = 'ADMIN',
|
|
PROVIDER = 'PROVIDER',
|
|
POS = 'POS',
|
|
}
|
|
|
|
export enum GoldKarat {
|
|
KARAT_18 = '18',
|
|
KARAT_21 = '21',
|
|
KARAT_24 = '24',
|
|
}
|
|
|
|
export const UploadedFileTypes = {
|
|
GOOD: 'good',
|
|
SERVICE: 'service',
|
|
PROFILE_AVATAR: 'profile_avatar',
|
|
PARTNER_LOGO: 'partner_logo',
|
|
}
|
|
export type UploadedFileTypes = (typeof UploadedFileTypes)[keyof typeof UploadedFileTypes]
|