This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc(UIKIT-1059,frontend): Удалены @description тэги (#1084)
- Loading branch information
1 parent
e9a46f8
commit a89ad66
Showing
130 changed files
with
561 additions
and
547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 15 additions & 15 deletions
30
example/src/modules/AuthModule/data/sources/userNetworkSources/dto.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,66 @@ | ||
/** | ||
* @description Полное имя пользователя | ||
* Полное имя пользователя | ||
* */ | ||
export type UserFullNameDTO = { | ||
/** | ||
* @description Имя пользователя | ||
* Имя пользователя | ||
* */ | ||
name: string; | ||
/** | ||
* @description Фамилия пользователя | ||
* Фамилия пользователя | ||
* */ | ||
surname: string; | ||
/** | ||
* @description Отчество пользователя | ||
* Отчество пользователя | ||
* */ | ||
patronymic?: string; | ||
}; | ||
|
||
/** | ||
* @description Персональная и контактная информация пользователя | ||
* Персональная и контактная информация пользователя | ||
* */ | ||
export type UserPersonNetworkDTO = { | ||
/** | ||
* @description Цвет аватара | ||
* Цвет аватара | ||
* */ | ||
avatarHexColor?: string; | ||
/** | ||
* @description Дата рождения | ||
* Дата рождения | ||
* */ | ||
birthDate?: string; | ||
/** | ||
* @description Выводимая информация пользователя | ||
* Выводимая информация пользователя | ||
* */ | ||
displayedName: string; | ||
/** | ||
* @description Электронная почта | ||
* Электронная почта | ||
* */ | ||
email?: string; | ||
/** | ||
* @description Идентификатор для входа через гос. услуги | ||
* Идентификатор для входа через гос. услуги | ||
* */ | ||
esiaId?: string; | ||
/** | ||
* @description Полное имя пользователя | ||
* Полное имя пользователя | ||
* */ | ||
fullName: UserFullNameDTO; | ||
/** | ||
* @description телефон пользователя | ||
* телефон пользователя | ||
* */ | ||
phone?: string; | ||
/** | ||
* @description Короткая выводимая информация о пользователе | ||
* Короткая выводимая информация о пользователе | ||
* */ | ||
shortDisplayedName?: string; | ||
/** | ||
* @description Идентификатор для входа через телеграм | ||
* Идентификатор для входа через телеграм | ||
* */ | ||
telegramId?: string; | ||
}; | ||
|
||
export type UserLogoutNetworkDTO = { | ||
/** | ||
* @description Адрес выхода из системы | ||
* Адрес выхода из системы | ||
* */ | ||
redirectUrl: string; | ||
}; |
8 changes: 4 additions & 4 deletions
8
example/src/modules/AuthModule/data/sources/userNetworkSources/userNetworkSources.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
example/src/modules/DocumentsModule/data/repositories/DocumentsRepository/dto.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import { | ||
DocumentPackagesListInputNetworkDTO, | ||
DocumentPackagesListNetworkDTO, | ||
DocumentPackagesNetworkDTO, | ||
type DocumentPackagesListInputNetworkDTO, | ||
type DocumentPackagesListNetworkDTO, | ||
type DocumentPackagesNetworkDTO, | ||
} from '../../sources'; | ||
|
||
/** | ||
* @description Описание данных списка пакета документов | ||
* Описание данных списка пакета документов | ||
* */ | ||
export type DocumentPackagesDTO = DocumentPackagesNetworkDTO; | ||
|
||
/** | ||
* @description Описание данных списка пакета документов | ||
* Описание данных списка пакета документов | ||
* */ | ||
export type DocumentPackagesListDTO = DocumentPackagesListNetworkDTO; | ||
|
||
/** | ||
* @description Описание данных запроса списка пакета документов | ||
* Описание данных запроса списка пакета документов | ||
* */ | ||
export type DocumentPackagesListInputDTO = DocumentPackagesListInputNetworkDTO; |
8 changes: 4 additions & 4 deletions
8
...src/modules/DocumentsModule/data/sources/documentNetworkSources/documentNetworkSources.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.