@hapl/api-queries 0.1.172 → 0.1.173

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,8 +15,9 @@ export declare const AvailableFundsDictionary: {
15
15
  legal_support_payment: string;
16
16
  other_payments: string;
17
17
  partner_charges: string;
18
- refund_of_advance: string;
19
18
  realty_legal_check: string;
19
+ referral: string;
20
+ refund_of_advance: string;
20
21
  safe_deposit_box: string;
21
22
  };
22
23
  PaymentType: {
@@ -17,6 +17,7 @@ export declare enum AvailableFundsCostType {
17
17
  OtherPayments = "other_payments",
18
18
  PartnerCharges = "partner_charges",
19
19
  RealtyLegalCheck = "realty_legal_check",
20
+ Referral = "referral",
20
21
  RefundOfAdvance = "refund_of_advance",
21
22
  SafeDepositBox = "safe_deposit_box"
22
23
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.172",
2
+ "version": "0.1.173",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -22,8 +22,9 @@ export const AvailableFundsDictionary = {
22
22
  [AvailableFundsCostType.LegalSupportPayment]: 'Внесение за альтернативный объект',
23
23
  [AvailableFundsCostType.OtherPayments]: 'Прочие расходы',
24
24
  [AvailableFundsCostType.PartnerCharges]: 'Партнерские расходы',
25
- [AvailableFundsCostType.RefundOfAdvance]: 'Возврат аванса',
26
25
  [AvailableFundsCostType.RealtyLegalCheck]: 'Проверка объектов',
26
+ [AvailableFundsCostType.Referral]: 'Выплата по реферальной программе',
27
+ [AvailableFundsCostType.RefundOfAdvance]: 'Возврат аванса',
27
28
  [AvailableFundsCostType.SafeDepositBox]: 'Оплата банковской ячейки',
28
29
  },
29
30
  PaymentType: {
@@ -19,6 +19,7 @@ export enum AvailableFundsCostType {
19
19
  OtherPayments = 'other_payments',
20
20
  PartnerCharges = 'partner_charges',
21
21
  RealtyLegalCheck = 'realty_legal_check',
22
+ Referral = 'referral',
22
23
  RefundOfAdvance = 'refund_of_advance',
23
24
  SafeDepositBox = 'safe_deposit_box',
24
25
  }