@hapl/api-queries 0.2.58 → 0.2.59
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.
- package/dist/api-queries.cjs.development.js +20 -2
- package/dist/api-queries.cjs.development.js.map +1 -1
- package/dist/api-queries.cjs.production.min.js +1 -1
- package/dist/api-queries.cjs.production.min.js.map +1 -1
- package/dist/api-queries.esm.js +20 -2
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/dictionaries/AvailableFunds.d.ts +6 -0
- package/dist/clients/v1/dictionaries/Debt.d.ts +12 -0
- package/dist/clients/v1/types/AvailableFunds.d.ts +7 -1
- package/dist/clients/v1/types/Debt.d.ts +13 -1
- package/package.json +1 -1
- package/src/clients/v1/dictionaries/AvailableFunds.ts +6 -0
- package/src/clients/v1/dictionaries/Debt.ts +12 -0
- package/src/clients/v1/types/AvailableFunds.ts +6 -0
- package/src/clients/v1/types/Debt.ts +12 -0
|
@@ -25,6 +25,12 @@ export declare const AvailableFundsDictionary: {
|
|
|
25
25
|
bonus_payment_inventory_department_head: string;
|
|
26
26
|
bonus_payment_inventory_department_admin: string;
|
|
27
27
|
bonus_payment_office_admin: string;
|
|
28
|
+
nds_by_deal: string;
|
|
29
|
+
bonus_personal_assistant_1: string;
|
|
30
|
+
bonus_personal_assistant_2: string;
|
|
31
|
+
bonus_personal_assistant_3: string;
|
|
32
|
+
bonus_portfolio_coordinator: string;
|
|
33
|
+
bonus_expo_coordinator: string;
|
|
28
34
|
};
|
|
29
35
|
PaymentType: {
|
|
30
36
|
advance_payment_under_the_advance_agreement: string;
|
|
@@ -9,5 +9,17 @@ export declare const DebtDictionary: {
|
|
|
9
9
|
referral: string;
|
|
10
10
|
legal_support_payment: string;
|
|
11
11
|
other_payments: string;
|
|
12
|
+
developer_deposit_payment: string;
|
|
13
|
+
bonus_payment_asia_consultant: string;
|
|
14
|
+
sps_bonus_payment: string;
|
|
15
|
+
bonus_payment_inventory_department_head: string;
|
|
16
|
+
bonus_payment_inventory_department_admin: string;
|
|
17
|
+
bonus_payment_office_admin: string;
|
|
18
|
+
nds_by_deal: string;
|
|
19
|
+
bonus_personal_assistant_1: string;
|
|
20
|
+
bonus_personal_assistant_2: string;
|
|
21
|
+
bonus_personal_assistant_3: string;
|
|
22
|
+
bonus_portfolio_coordinator: string;
|
|
23
|
+
bonus_expo_coordinator: string;
|
|
12
24
|
};
|
|
13
25
|
};
|
|
@@ -31,7 +31,13 @@ export declare enum AvailableFundsCostType {
|
|
|
31
31
|
SpsBonusPayment = "sps_bonus_payment",
|
|
32
32
|
BonusPaymentInventoryDepartmentHead = "bonus_payment_inventory_department_head",
|
|
33
33
|
BonusPaymentInventoryDepartmentAdmin = "bonus_payment_inventory_department_admin",
|
|
34
|
-
BonusPaymentOfficeAdmin = "bonus_payment_office_admin"
|
|
34
|
+
BonusPaymentOfficeAdmin = "bonus_payment_office_admin",
|
|
35
|
+
DealNdsPayment = "nds_by_deal",
|
|
36
|
+
BonusPersonalAssistantFirstLevel = "bonus_personal_assistant_1",
|
|
37
|
+
BonusPersonalAssistantSecondLevel = "bonus_personal_assistant_2",
|
|
38
|
+
BonusPersonalAssistantThirdLevel = "bonus_personal_assistant_3",
|
|
39
|
+
BonusPortfolioCoordinator = "bonus_portfolio_coordinator",
|
|
40
|
+
BonusExpoCoordinator = "bonus_expo_coordinator"
|
|
35
41
|
}
|
|
36
42
|
export declare enum AvailableFundsPaymentType {
|
|
37
43
|
AdvancePaymentUnderTheAdvanceAgreement = "advance_payment_under_the_advance_agreement",
|
|
@@ -7,7 +7,19 @@ export declare enum DebtPaymentType {
|
|
|
7
7
|
PartnerCharges = "partner_charges",
|
|
8
8
|
Referral = "referral",
|
|
9
9
|
LegalSupportPayment = "legal_support_payment",
|
|
10
|
-
OtherPayments = "other_payments"
|
|
10
|
+
OtherPayments = "other_payments",
|
|
11
|
+
DeveloperDepositPayment = "developer_deposit_payment",
|
|
12
|
+
BonusPaymentAsiaConsultant = "bonus_payment_asia_consultant",
|
|
13
|
+
SpsBonusPayment = "sps_bonus_payment",
|
|
14
|
+
BonusPaymentInventoryDepartmentHead = "bonus_payment_inventory_department_head",
|
|
15
|
+
BonusPaymentInventoryDepartmentAdmin = "bonus_payment_inventory_department_admin",
|
|
16
|
+
BonusPaymentOfficeAdmin = "bonus_payment_office_admin",
|
|
17
|
+
DealNdsPayment = "nds_by_deal",
|
|
18
|
+
BonusPersonalAssistantFirstLevel = "bonus_personal_assistant_1",
|
|
19
|
+
BonusPersonalAssistantSecondLevel = "bonus_personal_assistant_2",
|
|
20
|
+
BonusPersonalAssistantThirdLevel = "bonus_personal_assistant_3",
|
|
21
|
+
BonusPortfolioCoordinator = "bonus_portfolio_coordinator",
|
|
22
|
+
BonusExpoCoordinator = "bonus_expo_coordinator"
|
|
11
23
|
}
|
|
12
24
|
export declare type Debt = {
|
|
13
25
|
amount: MoneyAmount;
|
package/package.json
CHANGED
|
@@ -33,6 +33,12 @@ export const AvailableFundsDictionary = {
|
|
|
33
33
|
[AvailableFundsCostType.BonusPaymentInventoryDepartmentHead]: 'Выплата бонуса главе отдела инвентаря',
|
|
34
34
|
[AvailableFundsCostType.BonusPaymentInventoryDepartmentAdmin]: 'Выплата бонуса админу отдела инвентаря',
|
|
35
35
|
[AvailableFundsCostType.BonusPaymentOfficeAdmin]: 'Выплата бонуса админу офиса',
|
|
36
|
+
[AvailableFundsCostType.DealNdsPayment]: 'НДС по сделке',
|
|
37
|
+
[AvailableFundsCostType.BonusPersonalAssistantFirstLevel]: 'Выплата бонуса ПА 1',
|
|
38
|
+
[AvailableFundsCostType.BonusPersonalAssistantSecondLevel]: 'Выплата бонус ПА 2',
|
|
39
|
+
[AvailableFundsCostType.BonusPersonalAssistantThirdLevel]: 'Выплата бонус ПА 3',
|
|
40
|
+
[AvailableFundsCostType.BonusPortfolioCoordinator]: 'Выплата бонус координатору набор портфеля',
|
|
41
|
+
[AvailableFundsCostType.BonusExpoCoordinator]: 'Выплата бонус координатору экспозиция',
|
|
36
42
|
},
|
|
37
43
|
PaymentType: {
|
|
38
44
|
[AvailableFundsPaymentType.AdvancePaymentUnderTheAdvanceAgreement]: 'Аванс по соглашению об авансе',
|
|
@@ -10,5 +10,17 @@ export const DebtDictionary = {
|
|
|
10
10
|
[DebtPaymentType.Referral]: 'Выплата по реферальной программе',
|
|
11
11
|
[DebtPaymentType.LegalSupportPayment]: 'Внесение за альтернативный объект',
|
|
12
12
|
[DebtPaymentType.OtherPayments]: 'Прочие расходы',
|
|
13
|
+
[DebtPaymentType.DeveloperDepositPayment]: 'Оплата депозита застройщику',
|
|
14
|
+
[DebtPaymentType.BonusPaymentAsiaConsultant]: 'Бонус консультанту Азия',
|
|
15
|
+
[DebtPaymentType.SpsBonusPayment]: 'Бонус СПС',
|
|
16
|
+
[DebtPaymentType.BonusPaymentInventoryDepartmentHead]: 'Бонус главе отдела инвентаря',
|
|
17
|
+
[DebtPaymentType.BonusPaymentInventoryDepartmentAdmin]: 'Бонус админу отдела инвентаря',
|
|
18
|
+
[DebtPaymentType.BonusPaymentOfficeAdmin]: 'Бонус админу офиса',
|
|
19
|
+
[DebtPaymentType.DealNdsPayment]: 'НДС по сделке',
|
|
20
|
+
[DebtPaymentType.BonusPersonalAssistantFirstLevel]: 'Бонус ПА 1',
|
|
21
|
+
[DebtPaymentType.BonusPersonalAssistantSecondLevel]: 'Бонус ПА 2',
|
|
22
|
+
[DebtPaymentType.BonusPersonalAssistantThirdLevel]: 'Бонус ПА 3',
|
|
23
|
+
[DebtPaymentType.BonusPortfolioCoordinator]: 'Бонус координатору набор портфеля',
|
|
24
|
+
[DebtPaymentType.BonusExpoCoordinator]: 'Бонус координатору экспозиция',
|
|
13
25
|
},
|
|
14
26
|
};
|
|
@@ -35,6 +35,12 @@ export enum AvailableFundsCostType {
|
|
|
35
35
|
BonusPaymentInventoryDepartmentHead = 'bonus_payment_inventory_department_head',
|
|
36
36
|
BonusPaymentInventoryDepartmentAdmin = 'bonus_payment_inventory_department_admin',
|
|
37
37
|
BonusPaymentOfficeAdmin = 'bonus_payment_office_admin',
|
|
38
|
+
DealNdsPayment = 'nds_by_deal',
|
|
39
|
+
BonusPersonalAssistantFirstLevel = 'bonus_personal_assistant_1',
|
|
40
|
+
BonusPersonalAssistantSecondLevel = 'bonus_personal_assistant_2',
|
|
41
|
+
BonusPersonalAssistantThirdLevel = 'bonus_personal_assistant_3',
|
|
42
|
+
BonusPortfolioCoordinator = 'bonus_portfolio_coordinator',
|
|
43
|
+
BonusExpoCoordinator = 'bonus_expo_coordinator',
|
|
38
44
|
}
|
|
39
45
|
|
|
40
46
|
export enum AvailableFundsPaymentType {
|
|
@@ -9,6 +9,18 @@ export enum DebtPaymentType {
|
|
|
9
9
|
Referral = 'referral',
|
|
10
10
|
LegalSupportPayment = 'legal_support_payment',
|
|
11
11
|
OtherPayments = 'other_payments',
|
|
12
|
+
DeveloperDepositPayment = 'developer_deposit_payment',
|
|
13
|
+
BonusPaymentAsiaConsultant = 'bonus_payment_asia_consultant',
|
|
14
|
+
SpsBonusPayment = 'sps_bonus_payment',
|
|
15
|
+
BonusPaymentInventoryDepartmentHead = 'bonus_payment_inventory_department_head',
|
|
16
|
+
BonusPaymentInventoryDepartmentAdmin = 'bonus_payment_inventory_department_admin',
|
|
17
|
+
BonusPaymentOfficeAdmin = 'bonus_payment_office_admin',
|
|
18
|
+
DealNdsPayment = 'nds_by_deal',
|
|
19
|
+
BonusPersonalAssistantFirstLevel = 'bonus_personal_assistant_1',
|
|
20
|
+
BonusPersonalAssistantSecondLevel = 'bonus_personal_assistant_2',
|
|
21
|
+
BonusPersonalAssistantThirdLevel = 'bonus_personal_assistant_3',
|
|
22
|
+
BonusPortfolioCoordinator = 'bonus_portfolio_coordinator',
|
|
23
|
+
BonusExpoCoordinator = 'bonus_expo_coordinator',
|
|
12
24
|
}
|
|
13
25
|
|
|
14
26
|
export type Debt = {
|