@hapl/api-queries 0.1.144 → 0.1.145

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.
@@ -15,19 +15,20 @@ export declare const ServiceRequestDictionary: {
15
15
  done: string;
16
16
  };
17
17
  Status: {
18
- lead_expert: string;
19
- lead_adv: string;
20
- booked: string;
21
18
  approved: string;
22
- declined: string;
23
- terminated: string;
19
+ booked: string;
24
20
  booking_canceled: string;
25
- prepaid: string;
26
- deal_signed: string;
27
- registered: string;
28
21
  deal_done: string;
22
+ deal_signed: string;
23
+ declined: string;
24
+ lead_adv: string;
25
+ lead_expert: string;
29
26
  no_prepayment: string;
27
+ prepaid: string;
30
28
  prepayment_planned: string;
29
+ registered: string;
30
+ signed: string;
31
+ terminated: string;
31
32
  };
32
33
  Type: {
33
34
  buy: string;
@@ -18,19 +18,20 @@ export declare enum ServiceRequestModerationStatus {
18
18
  Done = "done"
19
19
  }
20
20
  export declare enum ServiceRequestStatus {
21
- LeadExpert = "lead_expert",
22
- LeadAdv = "lead_adv",
23
- Booked = "booked",
24
21
  Approved = "approved",
25
- Declined = "declined",
26
- Terminated = "terminated",
22
+ Booked = "booked",
27
23
  BookingCanceled = "booking_canceled",
28
- Prepaid = "prepaid",
29
- DealSigned = "deal_signed",
30
- Registered = "registered",
31
24
  DealDone = "deal_done",
25
+ DealSigned = "deal_signed",
26
+ Declined = "declined",
27
+ LeadAdv = "lead_adv",
28
+ LeadExpert = "lead_expert",
32
29
  NoPrepayment = "no_prepayment",
33
- PrepaymentPlanned = "prepayment_planned"
30
+ Prepaid = "prepaid",
31
+ PrepaymentPlanned = "prepayment_planned",
32
+ Registered = "registered",
33
+ Signed = "signed",
34
+ Terminated = "terminated"
34
35
  }
35
36
  export declare enum ServiceRequestType {
36
37
  Buy = "buy",
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.144",
2
+ "version": "0.1.145",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -24,19 +24,20 @@ export const ServiceRequestDictionary = {
24
24
  [ServiceRequestModerationStatus.Done]: 'Готов',
25
25
  },
26
26
  Status: {
27
- [ServiceRequestStatus.LeadExpert]: 'Лид заведённый экспертом',
28
- [ServiceRequestStatus.LeadAdv]: 'Лид пришедший с рекламы',
29
- [ServiceRequestStatus.Booked]: 'Неподтверждённая бронь',
30
27
  [ServiceRequestStatus.Approved]: 'Бронь одобренная РОП',
31
- [ServiceRequestStatus.Declined]: 'Бронь отклонённая РОП',
32
- [ServiceRequestStatus.Terminated]: 'Контракт расторгнут',
28
+ [ServiceRequestStatus.Booked]: 'Неподтверждённая бронь',
33
29
  [ServiceRequestStatus.BookingCanceled]: 'ЗОУ закрыто',
34
- [ServiceRequestStatus.Prepaid]: 'Получен аванс по сделке',
35
- [ServiceRequestStatus.DealSigned]: 'Сделка подписана',
36
- [ServiceRequestStatus.Registered]: 'Документы зарегистрированы',
37
30
  [ServiceRequestStatus.DealDone]: 'Сделка закрыта',
31
+ [ServiceRequestStatus.DealSigned]: 'Сделка подписана',
32
+ [ServiceRequestStatus.Declined]: 'Бронь отклонённая РОП',
33
+ [ServiceRequestStatus.LeadAdv]: 'Лид пришедший с рекламы',
34
+ [ServiceRequestStatus.LeadExpert]: 'Лид заведённый экспертом',
38
35
  [ServiceRequestStatus.NoPrepayment]: 'Запланирована сделка без аванса',
36
+ [ServiceRequestStatus.Prepaid]: 'Получен аванс по сделке',
39
37
  [ServiceRequestStatus.PrepaymentPlanned]: 'Запланирован аванс',
38
+ [ServiceRequestStatus.Registered]: 'Документы зарегистрированы',
39
+ [ServiceRequestStatus.Signed]: 'Контракт подписан',
40
+ [ServiceRequestStatus.Terminated]: 'Контракт расторгнут',
40
41
  },
41
42
  Type: {
42
43
  [ServiceRequestType.Buy]: 'Покупка',
@@ -21,19 +21,20 @@ export enum ServiceRequestModerationStatus {
21
21
  }
22
22
 
23
23
  export enum ServiceRequestStatus {
24
- LeadExpert = 'lead_expert',
25
- LeadAdv = 'lead_adv',
26
- Booked = 'booked',
27
24
  Approved = 'approved',
28
- Declined = 'declined',
29
- Terminated = 'terminated',
25
+ Booked = 'booked',
30
26
  BookingCanceled = 'booking_canceled',
31
- Prepaid = 'prepaid',
32
- DealSigned = 'deal_signed',
33
- Registered = 'registered',
34
27
  DealDone = 'deal_done',
28
+ DealSigned = 'deal_signed',
29
+ Declined = 'declined',
30
+ LeadAdv = 'lead_adv',
31
+ LeadExpert = 'lead_expert',
35
32
  NoPrepayment = 'no_prepayment',
33
+ Prepaid = 'prepaid',
36
34
  PrepaymentPlanned = 'prepayment_planned',
35
+ Registered = 'registered',
36
+ Signed = 'signed',
37
+ Terminated = 'terminated',
37
38
  }
38
39
 
39
40
  export enum ServiceRequestType {