@cbm-common/cbm-types 0.0.111 → 0.0.112

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.
Files changed (27) hide show
  1. package/lib/components/add-down-payment/add-down-payment.d.ts +196 -0
  2. package/lib/components/relationship-bank-conciliation-alert/relationship-bank-conciliation-alert.component.d.ts +12 -0
  3. package/lib/domain/models/bank-conciliation.domain.model.d.ts +406 -0
  4. package/lib/domain/models/down-payment.domain.model.d.ts +353 -0
  5. package/lib/domain/models/general.domain.model.d.ts +7 -0
  6. package/lib/domain/models/income.domain.model.d.ts +479 -0
  7. package/lib/domain/repositories/bank-conciliation.domain.repository.d.ts +18 -0
  8. package/lib/domain/repositories/down-payment.domain.repository.d.ts +17 -0
  9. package/lib/domain/repositories/income.domain.repository.d.ts +18 -0
  10. package/lib/domain/services/cbm-validators.service.d.ts +12 -0
  11. package/lib/domain/services/general.domain.service.d.ts +11 -0
  12. package/lib/domain/services/relationship-movements.config.d.ts +23 -0
  13. package/lib/infrastructure/repositories/bank-conciliation.infrastructure.repository.d.ts +15 -0
  14. package/lib/infrastructure/repositories/down-payment.infrastructure.repository.d.ts +14 -0
  15. package/lib/infrastructure/repositories/income.infrastructure.repository.d.ts +15 -0
  16. package/lib/infrastructure/services/bank-conciliation.infrastructure.service.d.ts +21 -0
  17. package/lib/infrastructure/services/down-payment.infrastructure.service.d.ts +18 -0
  18. package/lib/infrastructure/services/income.infrastructure.service.d.ts +19 -0
  19. package/lib/types/collection-names.d.ts +207 -0
  20. package/lib/types/event-modules.d.ts +38 -0
  21. package/lib/types/event-routes.d.ts +2 -0
  22. package/lib/types/route.d.ts +12 -0
  23. package/package.json +1 -1
  24. package/public-api.d.ts +7 -0
  25. package/lib/remotes/services/auth.service.d.ts +0 -3
  26. package/lib/remotes/services/web-socket.service.d.ts +0 -4
  27. package/lib/remotes/services.remote.d.ts +0 -3
@@ -0,0 +1,18 @@
1
+ import { HttpClient, HttpResponse } from '@angular/common/http';
2
+ import { IDownPaymentInfrastructureRepository } from '../repositories/down-payment.infrastructure.repository';
3
+ import { IDownPaymentModel } from '../../domain/models/down-payment.domain.model';
4
+ import { Observable } from 'rxjs';
5
+ import { IGeneral } from '../../domain/models/general.domain.model';
6
+ export declare class DownPaymentInfrastructureService implements IDownPaymentInfrastructureRepository {
7
+ private readonly http;
8
+ constructor(http: HttpClient);
9
+ private readonly baseUrl;
10
+ list(params: IDownPaymentModel.ListParams): Observable<IDownPaymentModel.ListResponse>;
11
+ getOne(id: string): Observable<IDownPaymentModel.GetOneResponse>;
12
+ save(data: IDownPaymentModel.SaveBody): Observable<IGeneral.Confirm>;
13
+ downloadExcel(params: IDownPaymentModel.DownloadExcelParams): Observable<HttpResponse<Blob>>;
14
+ downloadGeneralPdf(params: IDownPaymentModel.DownloadGeneralPdfParams): Observable<HttpResponse<Blob>>;
15
+ downloadIndividualPdf(params: IDownPaymentModel.DownloadIndividualPdfParams): Observable<HttpResponse<Blob>>;
16
+ downloadIndividualExcel(params: IDownPaymentModel.DownloadIndividualExcelParams): Observable<HttpResponse<Blob>>;
17
+ sendEmail(id: string, params: IDownPaymentModel.SendEmailParams): Observable<IGeneral.Confirm>;
18
+ }
@@ -0,0 +1,19 @@
1
+ import { HttpClient, HttpResponse } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IIncomeInfrastructureRepository } from '../repositories/income.infrastructure.repository';
4
+ import { IIncomeModel } from '../../domain/models/income.domain.model';
5
+ import { IGeneral } from '../../domain/models/general.domain.model';
6
+ export declare class IncomeInfrastructureService implements IIncomeInfrastructureRepository {
7
+ private http;
8
+ constructor(http: HttpClient);
9
+ private readonly baseUrl;
10
+ list(params: IIncomeModel.ListParams): Observable<IIncomeModel.ListResponse>;
11
+ getOne(id: string): Observable<IIncomeModel.GetOneResponse>;
12
+ save(data: IIncomeModel.SaveBody): Observable<IGeneral.Confirm>;
13
+ listDetails(incomeId: string): Observable<IIncomeModel.ListDetailsResponse>;
14
+ downloadExcel(params: IIncomeModel.DownloadExcelParams): Observable<HttpResponse<Blob>>;
15
+ downloadGeneralPdf(params: IIncomeModel.DownloadGeneralPdfParams): Observable<HttpResponse<Blob>>;
16
+ downloadIndividualPdf(params: IIncomeModel.DownloadIndividualPdfParams): Observable<HttpResponse<Blob>>;
17
+ downloadIndividualExcel(params: IIncomeModel.DownloadIndividualExcelParams): Observable<HttpResponse<Blob>>;
18
+ sendEmail(id: string, params: IIncomeModel.SendEmailParams): Observable<IGeneral.Confirm>;
19
+ }
@@ -0,0 +1,207 @@
1
+ export declare enum ECollectionNames {
2
+ INITIAL_BALANCE_CREDIT_NOTE_PAYABLE = "initial_balance_credit_note_payable",
3
+ INITIAL_BALANCE_RETENTION_PAYABLE = "initial_balance_retention_payable",
4
+ INITIAL_BALANCE_DOWN_PAYMENT_PAYABLE = "initial_balance_down_payment_payable",
5
+ DELIVERY_REQUEST = "delivery_request",
6
+ TRANSFER_REQUEST = "transfer_request",
7
+ DELIVERY_COMMITTED = "delivery_committed",
8
+ DELIVERY_RETURN = "delivery_return",
9
+ GOOD_RECEIPT_PURCHASE = "goods_receipt_purchases",
10
+ GOOD_RECEIPT_PURCHASE_COMMITTED = "goods_receipt_purchase_committed",
11
+ DELIVERY_RETURN_REVERSE = "delivery_return_reverse",
12
+ DELIVERY_REVERSE = "delivery_reverse",
13
+ ITEM = "items",
14
+ MESSAGE = "message",
15
+ ACCOUNT = "account",
16
+ ACCOUNT_UPLOAD = "account_upload",
17
+ GOODS_RECEIPTS = "goods_receipts",
18
+ GOODS_ISSUE = "goods_issue",
19
+ GOODS_TRANSFER = "goods_transfer",
20
+ INITIAL_BALANCES = "initial_balances",
21
+ INITIAL_SEAT = "initial_seat",
22
+ QUOTATION = "quotation",
23
+ ORDER = "order",
24
+ DELIVERY = "delivery",
25
+ RETURN = "return",
26
+ INVOICE = "invoice",
27
+ RETURN_REQUEST = "return_request",
28
+ INCOME = "income",
29
+ CASH_LIQUIDATION = "cash_liquidation",
30
+ PCR_CASH_LIQUIDATION = "pcr_cash_liquidation",
31
+ BLANKET_AGREEMENT = "blanket_agreements",
32
+ BANK_CONCILIATION = "bank_conciliation",
33
+ BANK_CONCILIATION_REPORT = "bank_conciliation_report",
34
+ FINANCIAL_BANK = "financial_bank",
35
+ DOCUMENT_LIQUIDATION = "document_liquidation",
36
+ CARD_SETTLEMENT = "card_settlement",
37
+ CARD_SETTLEMENT_REPORT = "card_settlement_report",
38
+ CARD_SETTLEMENT_REVERSE = "card_settlement_reverse",
39
+ CARD_SETTLEMENT_REVERSE_REPORT = "card_settlement_reverse_report",
40
+ INCOME_BANKING_TRANSACTION = "income_banking_transaction",
41
+ INCOME_BANKING_TRANSACTION_REPORT = "income_banking_transaction_report",
42
+ INCOME_BANKING_TRANSACTION_REVERSE = "income_banking_transaction_reverse",
43
+ INCOME_BANKING_TRANSACTION_REVERSE_REPORT = "income_banking_transaction_reverse_report",
44
+ OUTGOING_BANKING_TRANSACTION = "outgoing_banking_transaction",
45
+ OUTGOING_BANKING_TRANSACTION_REPORT = "outgoing_banking_transaction_report",
46
+ OUTGOING_BANKING_TRANSACTION_REVERSE = "outgoing_banking_transaction_reverse",
47
+ OUTGOING_BANKING_TRANSACTION_REVERSE_REPORT = "outgoing_banking_transaction_reverse_report",
48
+ DEPOSIT_CASH = "deposit_cash",
49
+ DEPOSIT_CHEQUE = "deposit_cheque",
50
+ DEPOSIT_CHEQUE_REPORT = "deposit_cheque_report",
51
+ DEPOSIT_CHEQUE_REVERSE = "deposit_cheque_reverse",
52
+ DEPOSIT_CHEQUE_REVERSE_REPORT = "deposit_cheque_reverse_report",
53
+ SEAT = "seat",
54
+ SEAT_REVERSE = "seat_reverse",
55
+ SEAT_REVERSE_REPORT = "seat_reverse_report",
56
+ SEAT_REPORT = "seat_report",
57
+ GENERAL_SETTINGS_FINANCIALS = "general_settings_financials",
58
+ COMPANY_CUSTOM = "company_custom",
59
+ COMPANY_CUSTOM_LEVEL = "company_custom_level",
60
+ MONTHLY_PERIOD_CLOSING = "monthly_accounting_periot_closing",
61
+ ANUAL_PERIOD_CLOSING = "closing_annual_accounting_periot",
62
+ PROTESTED_CHECKS = "protested_checks",
63
+ PROTESTED_CHECKS_REPORT = "protested_checks_report",
64
+ Settings_print = "print_settings",
65
+ INITIAL_BALANCES_ISSUED_CHEQUE = "initial_balance_issued_cheque",
66
+ ANNEXE_INITIAL_BALANCES_ISSUED_CHEQUE = "annexe_initial_balance_issued_cheque",
67
+ INITIAL_BALANCES_ISSUED_CHEQUE_REPORT = "initial_balance_issued_cheque_report",
68
+ INCOME_STATEMENT = "income_statement",
69
+ INCOME_STATEMENT_MONTHLY = "icomen_statement_monthly",
70
+ FINANCIAL_STATEMENT_GENERAL = "financial_statement",
71
+ FINANCIAL_STATEMENT_MONTHLY = "monthly_financial_statement",
72
+ MAJOR_ACCOUNTING_BOOK = "major_accounting_book",
73
+ DOWNPAYMENT = "down_payment",
74
+ Message = "message",
75
+ reasonCountry = "reason-country",
76
+ generalReport = "general_report",
77
+ INCOME_MOVEMENT_REPORT = "income_movement",
78
+ INCOME_MOVEMENT = "income_movements",
79
+ EXPENDITURE_MOVEMENT_REPORT = "expenditure_movement",
80
+ BANK_CONCILIATION_UPLOAD = "bank_conciliation_upload",
81
+ BANK_CONCILIATION_LIQUIDATION = "bank_conciliation_liquidation",
82
+ BANK_CONCILIATION_LIQUIDATION_REPORT = "bank_conciliation_liquidation_report",
83
+ ASSET = "fixed_assets",
84
+ FIXED_ASSET_UPDLOAD = "fixed_assets_upload",
85
+ ASSET_REPORT = "fixed_assets_report",
86
+ DEPRECIATION = "depreciation_fixed_assets",
87
+ InitialBalancesSales = "initial_balance_sales",
88
+ initialBalancesDownPayment = "initial_balance_down_payment",
89
+ initialBalanceCreditNote = "initial_balance_credit_note",
90
+ initialBalanceRetention = "initial_balance_retention",
91
+ DEPRECIATION_FIXED_ASSETS = "depreciation_fixed_assets",
92
+ LOW_FIXED_ASSETS = "low_fixed_assets",
93
+ AMORTIZATION = "amortization",
94
+ INITIAL_BALANCE_FIXED_ASSETS = "initial_balance_fixed_assets",
95
+ AMORTIZATION_FIXED_ASSETS_REPORT = "amortization_report",
96
+ LOW_FIXED_ASSETS_REPORT = "low_fixed_assets_report",
97
+ DEPRECIATION_FIXED_ASSETS_REPORT = "depreciation_fixed_assets_report",
98
+ DEPRECIATION_FIXED_ASSETS_REVERSE_REPORT = "depreciation_fixed_assets_report",
99
+ DEPRECIATION_FIXED_ASSETS_REVERSE = "depreciation_fixed_assets_reverse",
100
+ REGULARIZATION_ACCOUNT = "regularization_account",
101
+ DOWN_PAYMENT_PAYABLE = "down_payment_payable",
102
+ INTERNAL_CREDIT_PAYABLE = "internal_credit_payable",
103
+ OUTFLOW_PAYABLE_REVERSE = "outflow_payable_reverse",
104
+ DOWN_PAYMENT_PAYABLE_REVERSE = "down_payment_payable_reverse",
105
+ DOCUMENT_LIQUIDATION_PAYABLE_REVERSE = "document_liquidation_payable_reverse",
106
+ CASH_LIQUIDATION_PAYABLE_REVERSE = "cash_liquidation_payable_reverse",
107
+ INTERNAL_CREDIT_PAYABLE_REVERSE = "internal_credit_payable_reverse",
108
+ CROSSING_ACCOUNT_PAYABLE_REVERSE = "crossing_account_payable_reverse",
109
+ INTERNAL_CREDIT_PAYABLE_REPORT = "internal_credit_payable_report",
110
+ INTERNAL_CREDIT_PAYABLE_EMAIL = "internal_credit_payable_email",
111
+ INTERNAL_CREDIT_PAYABLE_REVERSE_REPORT = "internal_credit_payable_reverse_report",
112
+ OUTFLOW_PAYABLE_REVERSE_REPORT = "outflow_payable_reverse_report",
113
+ DOWN_PAYMENT_PAYABLE_REVERSE_REPORT = "down_payment_payable_reverse_report",
114
+ CASH_LIQUIDATION_PAYABLE_REVERSE_REPORT = "cash_liquidation_payable_reverse_report",
115
+ CROSSING_ACCOUNT_PAYABLE_REVERSE_REPORT = "crossing_account_payable_reverse_report",
116
+ DOCUMENT_LIQUIDATION_PAYABLE_REVERSE_REPORT = "document_liquidation_payable_reverse_report",
117
+ INTERNAL_CREDIT = "internal_credit",
118
+ CREDIT_REQUEST = "credit_request",
119
+ CREDIT_REQUEST_EMAIL = "credit_request_email",
120
+ CREDIT_REQUEST_REPORT = "credit_request_report",
121
+ WITHOLLDING_REPORT = "witholding_report",
122
+ WALLET_BY_PROCESS_REPORT = "wallet_by_process_report",
123
+ WALLET_BY_AGE_REPORT = "wallet_by_age_report",
124
+ SELLER_PROFITABILITY_REPORT = "seller_profitability_report",
125
+ PRODUCT_PROFITABILITY_REPORT = "product_profitability_report",
126
+ PAYMENT_BY_PAYMENT_METHOD_REPORT = "payment_by_payment_method_report",
127
+ CREDIT_MANAGEMENT_REPORT = "credit_management_report",
128
+ CLIENT_ACCOUNT_STATEMENT = "client_account_statement_report",
129
+ INCOME_REVERSE = "income_reverse",
130
+ INCOME_REVERSE_REPORT = "income_reverse_report",
131
+ INCOME_Email = "income_email",
132
+ INTERNAL_CREDIT_REVERSE = "internal_credit_reverse",
133
+ INTERNAL_CREDIT_REVERSE_REPORT = "internal_credit_reverse_report",
134
+ OUTFLOW_PAYABLE = "outflow_payable",
135
+ OUTFLOW_PAYABLE_REPORT = "outflow_payable_report",
136
+ PURCHASE_RECEIPT = "purchase_receipt",
137
+ PURCHASE_LIQUIDATION = "purchase_liquidation",
138
+ RETENTION_PURCHASE = "retention_purchase",
139
+ IMPORT_INCOME = "import_income",
140
+ IMPORT_LIQUIDATION = "import_liquidation",
141
+ IMPORT_RECEIPT = "import_receipt",
142
+ IMPORT_ORDER = "import_order",
143
+ INITIAL_BALANCE_PURCHASES = "initial_balance_purchases",
144
+ INITIAL_BALANCE_CREDIT_NOTE = "initial_balance_credit_note",
145
+ INITIAL_BALANCES_DOWN_PAYMENT = "initial_balance_down_payment",
146
+ INITIAL_BALANCE_RETENTION = "initial_balance_retention",
147
+ CASH_LIQUIDATION_EMAIL = "cash_liquidation_email",
148
+ CASH_LIQUIDATION_REPORT = "cash_liquidation_report",
149
+ CLOSING_OF_CASH_REPORT = "closing_of_cash_report",
150
+ CLOSING_OF_CASH_ARQUEO_REPORT = "closing_of_cash_arqueo_report",
151
+ CROSSING_ACCOUNT = "crossing_accounts",
152
+ CROSSING_ACCOUNTS_REVERSE = "crossing_accounts_reverse",
153
+ CROSSING_ACCOUNTS_REVERSE_REPORT = "crossing_accounts_reverse_report",
154
+ DOCUMENT_LIQUIDATION_REVERSE = "document_liquidation_reverse",
155
+ DOCUMENT_LIQUIDATION_REVERSE_REPORT = "document_liquidation_reverse_report",
156
+ CASH_LIQUIDATION_REVERSE = "cash_liquidation_reverse",
157
+ CASH_LIQUIDATION_REVERSE_REPORT = "cash_liquidation_reverse_report",
158
+ DOWN_PAYMENT = "down_payment",
159
+ DOWN_PAYMENT_REVERSE = "down_payment_reverse",
160
+ ANNEXE_DOWN_PAYMENT_REVERSE = "annexe_down_payment_reverse",
161
+ CLOSING_OF_CASH = "closing_of_cash",
162
+ CLOSING_OF_CASH_ARQUEO = "closing_of_cash_arqueo",
163
+ CASH_CLOSURE = "cash_closure",
164
+ CASH_CLOSURE_REPORT = "cash_closure_report",
165
+ SALE_NOTE = "sale_note",
166
+ DEBIT_NOTE = "debit_note",
167
+ INCOME_EMAIL = "income_email",
168
+ INCOME_REPORT = "income_report",
169
+ INTERNAL_CREDIT_EMAIL = "internal_credit_email",
170
+ INTERNAL_CREDIT_REPORT = "internal_credit_report",
171
+ DOWN_PAYMENT_EMAIL = "down_payment_email",
172
+ DOWN_PAYMENT_REPORT = "down_payment_report",
173
+ RETENTION = "retention",
174
+ CREDIT_NOTE = "credit_note",
175
+ CASH_LIQUIDATION_FINANCIAL = "cash_liquidation",
176
+ DEPOSIT_CHEQUE_FINANCIAL = "deposit_cheque",
177
+ CARD_SETTLEMENT_FINANCIAL = "card_settlement",
178
+ INCOME_BANKING_TRANSACTION_FINANCIAL = "income_banking_transaction",
179
+ OUTGOING_BANKING_TRANSACTION_FINANCIAL = "outgoing_banking_transaction",
180
+ CROSSING_ACCOUNT_EMAIL = "crossing_account_email",
181
+ CROSSING_ACCOUNTS_REPORT = "crossing_accounts_report",
182
+ DOCUMENT_LIQUIDATION_EMAIL = "document_liquidation_email",
183
+ DOCUMENT_LIQUIDATION_REPORT = "document_liquidation_report",
184
+ INVOICE_CPC = "invoice",
185
+ OUTFLOW_PAYABLE_EMAIL = "outflow_payable_email",
186
+ OUTFLOW_PAYABLE_REPORT_INDIVIDUAL = "outflow_payable_report",
187
+ CROSSING_ACCOUNT_PAYABLE = "crossing_account_payable",
188
+ CROSSING_ACCOUNT_PAYABLE_EMAIL = "crossing_account_payable_email",
189
+ CROSSING_ACCOUNT_PAYABLE_REPORT = "crossing_account_payable_report",
190
+ CASH_LIQUIDATION_PAYABLE = "cash_liquidation_payable",
191
+ CASH_LIQUIDATION_PAYABLE_REPORT_INDIVIDUAL = "cash_liquidation_payable_report",
192
+ DOCUMENT_LIQUIDATION_PAYABLE = "document_liquidation_payable",
193
+ DOCUMENT_LIQUIDATION_PAYABLE_REPORT = "document_liquidation_payable_report",
194
+ DOCUMENT_LIQUIDATION_PAYABLE_EMAIL = "document_liquidation_payable_email",
195
+ DOWN_PAYMENT_PAYABLE_REPORT_INDIVIDUAL = "down_payment_payable_report",
196
+ INITIAL_BALANCE_DOWN_PAYMENT_PURCHASES = "initial_balance_down_payment_purchases",
197
+ INITIAL_BALANCE_CREDIT_NOTE_PURCHASES = "initial_balance_credit_note_purchases",
198
+ INITIAL_BALANCE_RETENTION_PURCHASES = "initial_balance_retention_purchases",
199
+ PURCHASE_ORDER = "order",
200
+ ORDER_EMAIL = "order_purchases_email",
201
+ ORDER_REPORT = "order_report",
202
+ ORDER_REPORT_INDIVIDUAL = "order_purchases_report",
203
+ CREDIT_NOTE_PURCHASE = "credit_note",
204
+ DEBIT_NOTE_PURCHASE = "debit_note",
205
+ PURCHASES_CROSSING_ACCOUNT = "purchases_crossing_account",
206
+ ANNEXE_PURCHASES_CROSSING_ACCOUNT = "annexe_purchases_crossing_account"
207
+ }
@@ -0,0 +1,38 @@
1
+ export declare const EVENT_MODULES: {
2
+ readonly MS_GLOBAL: "ms-global";
3
+ readonly MS_SETTINGS: "ms-settings";
4
+ readonly MS_AUDIT: "ms-audit";
5
+ readonly MS_FINANCIALS: "ms-financials";
6
+ readonly MS_INVENTORY: "ms-inventory";
7
+ readonly MS_PARTNERS: "ms-partners";
8
+ readonly MS_UTIL: "ms-util";
9
+ readonly MS_SALES_EC: "ms-sales-ec";
10
+ readonly MS_HIS_PARTNERS: "ms-his-partners";
11
+ readonly MS_HIS_AIS: "ms-his-ais";
12
+ readonly MS_HIS_RIS: "ms-his-ris";
13
+ readonly MS_HIS_EHR: "ms-his-ehr";
14
+ readonly MS_FIXED_ASSET: "ms-fixed-assets";
15
+ readonly MS_MECHANICAL_WORKSHOP: "ms-mechanical-workshop";
16
+ readonly MS_PURCHASES: "ms-purchases";
17
+ readonly MS_REPORT_FINANCIALS: "ms-report-financials";
18
+ };
19
+ export declare enum EEVENT_MODULES {
20
+ MS_GLOBAL = "ms-global",
21
+ MS_SETTINGS = "ms-settings",
22
+ MS_AUDIT = "ms-audit",
23
+ MS_FINANCIALS = "ms-financials",
24
+ MS_INVENTORY = "ms-inventory",
25
+ MS_PARTNERS = "ms-partners",
26
+ MS_UTIL = "ms-util",
27
+ MS_SALES_EC = "ms-sales-ec",
28
+ MS_CPC = "ms-cpc",
29
+ MS_HIS_PARTNERS = "ms-his-partners",
30
+ MS_HIS_AIS = "ms-his-ais",
31
+ MS_HIS_RIS = "ms-his-ris",
32
+ MS_HIS_EHR = "ms-his-ehr",
33
+ MS_FIXED_ASSET = "ms-fixed-assets",
34
+ MS_MECHANICAL_WORKSHOP = "ms-mechanical-workshop",
35
+ MS_PURCHASES_EC = "ms-purchases-ec",
36
+ MS_REPORT_SALES_EC = "ms-report-sales-ec",
37
+ MS_REPORT_CPC = "ms-report-cpc"
38
+ }
@@ -0,0 +1,2 @@
1
+ import { IRoute } from "./route";
2
+ export declare const EVENT_ROUTES: IRoute[];
@@ -0,0 +1,12 @@
1
+ export interface IRoute {
2
+ module: string;
3
+ panels: IRoutePanel[];
4
+ }
5
+ export interface IRoutePanel {
6
+ panel: string;
7
+ routes: IRouteChild[];
8
+ }
9
+ export interface IRouteChild {
10
+ path: string;
11
+ collection: string;
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -460,3 +460,10 @@ export * from './lib/domain/models/work-order.domain.model';
460
460
  //#region service for interest repository
461
461
  export * from './lib/domain/repositories/service-for-interest.domain.repository';
462
462
  export * from './lib/domain/models/service-for-interest.domain.model';
463
+
464
+ //#region add-donw-payment component
465
+ export * from './lib/components/add-down-payment/add-down-payment';
466
+
467
+ //#region down payment repository
468
+ export * from './lib/domain/repositories/down-payment.domain.repository';
469
+ export * from './lib/domain/models/down-payment.domain.model';
@@ -1,3 +0,0 @@
1
- import { Router } from "@angular/router";
2
- import { CbmAuthService } from "../../domain/services/auth/auth.service";
3
- export declare function authFactory(router: Router): CbmAuthService;
@@ -1,4 +0,0 @@
1
- import { ApplicationRef } from "@angular/core";
2
- import { Router } from "@angular/router";
3
- import { CbmWebSocketService } from "../../domain/services/web-socket/web-socket.service";
4
- export declare function webSocketFactory(appRef: ApplicationRef, router: Router): CbmWebSocketService;
@@ -1,3 +0,0 @@
1
- export * from "../domain/services/notification/notification.service";
2
- export * from "./services/auth.service";
3
- export * from "./services/web-socket.service";