@hapl/api-queries 1.0.14 → 1.0.15--canary.251.4e53e5a.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ export declare type CreateServiceRequestCategorizedFileBody = {
22
22
  file: {
23
23
  id: number;
24
24
  };
25
- category: Exclude<ServiceRequestCategorizedFileCategory, ServiceRequestCategorizedFileCategory.DeleteReason | ServiceRequestCategorizedFileCategory.Egrn | ServiceRequestCategorizedFileCategory.OwnershipTransfers | ServiceRequestCategorizedFileCategory.RealtyBriefing | ServiceRequestCategorizedFileCategory.Risk>;
25
+ category: Extract<ServiceRequestCategorizedFileCategory, ServiceRequestCategorizedFileCategory.AdvAgreement | ServiceRequestCategorizedFileCategory.AdvanceForm | ServiceRequestCategorizedFileCategory.CheckList | ServiceRequestCategorizedFileCategory.Contract | ServiceRequestCategorizedFileCategory.Kc | ServiceRequestCategorizedFileCategory.Other | ServiceRequestCategorizedFileCategory.OwnershipCheckReport | ServiceRequestCategorizedFileCategory.OwnershipJustification | ServiceRequestCategorizedFileCategory.PassportClient>;
26
26
  };
27
27
  export declare type CreateServiceRequestCategorizedFileData = AxiosResponse<ResultData>;
28
28
  export declare type CreateServiceRequestCategorizedFileError = AxiosError<ResultError>;
@@ -4,11 +4,14 @@ export declare const ServiceRequestCategorizedFileDictionary: {
4
4
  adv_agreement: string;
5
5
  advance_form: string;
6
6
  check_list: string;
7
+ combat_sheet: string;
7
8
  contract: string;
9
+ customer_report: string;
8
10
  deleteReason: string;
9
11
  egrn: string;
10
12
  kc: string;
11
13
  other: string;
14
+ owner_profile: string;
12
15
  ownership_check_report: string;
13
16
  ownership_justification: string;
14
17
  ownership_transfers: string;
@@ -3,11 +3,14 @@ export declare enum ServiceRequestCategorizedFileCategory {
3
3
  AdvAgreement = "adv_agreement",
4
4
  AdvanceForm = "advance_form",
5
5
  CheckList = "check_list",
6
+ CombatSheet = "combat_sheet",
6
7
  Contract = "contract",
8
+ CustomerReport = "customer_report",
7
9
  DeleteReason = "deleteReason",
8
10
  Egrn = "egrn",
9
11
  Kc = "kc",
10
12
  Other = "other",
13
+ OwnerProfile = "owner_profile",
11
14
  OwnershipCheckReport = "ownership_check_report",
12
15
  OwnershipJustification = "ownership_justification",
13
16
  OwnershipTransfers = "ownership_transfers",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hapl/api-queries",
3
- "version": "1.0.14",
3
+ "version": "1.0.15--canary.251.4e53e5a.0",
4
4
  "author": "Homeapp",
5
5
  "license": "MIT",
6
6
  "module": "dist/api-queries.esm.js",
@@ -12,13 +12,17 @@ export type CreateServiceRequestCategorizedFileHeaders = { 'x-auth-hc': string }
12
12
  export type CreateServiceRequestCategorizedFileUrlParams = { id: number };
13
13
  export type CreateServiceRequestCategorizedFileBody = {
14
14
  file: { id: number };
15
- category: Exclude<
15
+ category: Extract<
16
16
  ServiceRequestCategorizedFileCategory,
17
- | ServiceRequestCategorizedFileCategory.DeleteReason
18
- | ServiceRequestCategorizedFileCategory.Egrn
19
- | ServiceRequestCategorizedFileCategory.OwnershipTransfers
20
- | ServiceRequestCategorizedFileCategory.RealtyBriefing
21
- | ServiceRequestCategorizedFileCategory.Risk
17
+ | ServiceRequestCategorizedFileCategory.AdvAgreement
18
+ | ServiceRequestCategorizedFileCategory.AdvanceForm
19
+ | ServiceRequestCategorizedFileCategory.CheckList
20
+ | ServiceRequestCategorizedFileCategory.Contract
21
+ | ServiceRequestCategorizedFileCategory.Kc
22
+ | ServiceRequestCategorizedFileCategory.Other
23
+ | ServiceRequestCategorizedFileCategory.OwnershipCheckReport
24
+ | ServiceRequestCategorizedFileCategory.OwnershipJustification
25
+ | ServiceRequestCategorizedFileCategory.PassportClient
22
26
  >;
23
27
  };
24
28
 
@@ -5,11 +5,14 @@ export const ServiceRequestCategorizedFileDictionary = {
5
5
  [ServiceRequestCategorizedFileCategory.AdvAgreement]: 'Соглашение на рекламу',
6
6
  [ServiceRequestCategorizedFileCategory.AdvanceForm]: 'Анкета на аванс',
7
7
  [ServiceRequestCategorizedFileCategory.CheckList]: 'Чек-лист со встречи',
8
+ [ServiceRequestCategorizedFileCategory.CombatSheet]: 'Боевой листок',
8
9
  [ServiceRequestCategorizedFileCategory.Contract]: 'Договор оказания услуг',
10
+ [ServiceRequestCategorizedFileCategory.CustomerReport]: 'Отчет по покупателям',
9
11
  [ServiceRequestCategorizedFileCategory.DeleteReason]: 'Является обоснованием закрытия контракта',
10
12
  [ServiceRequestCategorizedFileCategory.Egrn]: 'ЕГРН',
11
13
  [ServiceRequestCategorizedFileCategory.Kc]: 'Файлы от КЦ',
12
14
  [ServiceRequestCategorizedFileCategory.Other]: 'Разное (ЗОУ)',
15
+ [ServiceRequestCategorizedFileCategory.OwnerProfile]: 'Профиль собственника',
13
16
  [ServiceRequestCategorizedFileCategory.OwnershipCheckReport]: 'Отчет проверки собственника',
14
17
  [ServiceRequestCategorizedFileCategory.OwnershipJustification]: 'Основание права собственности',
15
18
  [ServiceRequestCategorizedFileCategory.OwnershipTransfers]: 'Переходы собственности',
@@ -4,11 +4,14 @@ export enum ServiceRequestCategorizedFileCategory {
4
4
  AdvAgreement = 'adv_agreement',
5
5
  AdvanceForm = 'advance_form',
6
6
  CheckList = 'check_list',
7
+ CombatSheet = 'combat_sheet',
7
8
  Contract = 'contract',
9
+ CustomerReport = 'customer_report',
8
10
  DeleteReason = 'deleteReason',
9
11
  Egrn = 'egrn',
10
12
  Kc = 'kc',
11
13
  Other = 'other',
14
+ OwnerProfile = 'owner_profile',
12
15
  OwnershipCheckReport = 'ownership_check_report',
13
16
  OwnershipJustification = 'ownership_justification',
14
17
  OwnershipTransfers = 'ownership_transfers',