@experteam-mx/ngx-services 18.7.8 → 18.7.10

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.
@@ -0,0 +1,152 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Environment } from '../ngx-services.models';
3
+ import { Observable } from 'rxjs';
4
+ import { QueryParams } from './models/api.models';
5
+ import { CustomerRestrictionIn, CustomerRestrictionOut, CustomerRestrictionsOut, DiscountIn, DiscountOut, DiscountsOut, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, OperationsLoadTopCustomerV2In, TopCustomersOut } from './models/api-discounts.types';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ApiDiscountsService {
8
+ private environments;
9
+ private http;
10
+ constructor(environments: Environment, http: HttpClient);
11
+ /**
12
+ * Retrieves the URL for the shipments API from the environment configurations.
13
+ *
14
+ * @return {string} The URL of the shipments API.
15
+ */
16
+ get url(): string;
17
+ /**
18
+ * Fetches available discounts based on the provided query parameters.
19
+ *
20
+ * @param {QueryParams} params - The query parameters used to filter and retrieve discounts.
21
+ * @return {Observable<DiscountsOut>} An Observable that emits the retrieved discounts data.
22
+ */
23
+ getDiscounts(params: QueryParams): Observable<DiscountsOut>;
24
+ /**
25
+ * Sends a request to create or update discounts on the server.
26
+ *
27
+ * @param {DiscountIn} body - The discount information to be submitted.
28
+ * @return {Observable<DiscountOut>} An Observable emitting the server's response containing the created or updated discount details.
29
+ */
30
+ postDiscounts(body: DiscountIn): Observable<DiscountOut>;
31
+ /**
32
+ * Updates the discount information for a specific item.
33
+ *
34
+ * @param {number} id - The unique identifier of the item whose discount is to be updated.
35
+ * @param {DiscountIn} body - The payload containing the updated discount details.
36
+ * @return {Observable<DiscountOut>} An observable emitting the updated discount details.
37
+ */
38
+ putDiscounts(id: number, body: DiscountIn): Observable<DiscountOut>;
39
+ /**
40
+ * Retrieves the top customers based on the provided query parameters.
41
+ *
42
+ * @param {QueryParams} params - The query parameters to filter and sort the top customers.
43
+ * @return {Observable<TopCustomersOut>} An observable emitting the list of top customers.
44
+ */
45
+ getTopCustomers(params: QueryParams): Observable<TopCustomersOut>;
46
+ /**
47
+ * Sends a POST request to load the top customer data in the system, using the provided input.
48
+ * Transforms the API response to extract the data field containing the discount information.
49
+ *
50
+ * @param {OperationsLoadTopCustomerV2In} body - The input payload containing the company country ID and the file.
51
+ * @param {number} body.company_country_id - The ID of the company's country.
52
+ * @param {File} body.file - The file containing data to be processed.
53
+ * @return {Observable<DiscountOut>} An observable containing the discount output information.
54
+ */
55
+ postOperationsLoadTopCustomerV2(body: OperationsLoadTopCustomerV2In): Observable<{}>;
56
+ /**
57
+ * Fetches the loyalty periods based on the provided query parameters.
58
+ *
59
+ * @param {QueryParams} params - An object containing query parameters to filter the periods.
60
+ * @return {Observable<LoyaltyPeriodsOut>} An observable that emits the fetched loyalty periods.
61
+ */
62
+ getLoyaltyPeriods(params: QueryParams): Observable<LoyaltyPeriodsOut>;
63
+ /**
64
+ * Retrieves the loyalty period details for the given ID.
65
+ *
66
+ * @param {number} id - The unique identifier of the loyalty period to retrieve.
67
+ * @return {Observable<LoyaltyPeriodOut>} An observable emitting the loyalty period details.
68
+ */
69
+ getLoyaltyPeriod(id: number): Observable<LoyaltyPeriodOut>;
70
+ /**
71
+ * Sends a PUT request to update the loyalty period with the provided data.
72
+ *
73
+ * @param {LoyaltyPeriodIn} body - The data for the loyalty period to be updated.
74
+ * @return {Observable<LoyaltyPeriodOut>} An observable that emits the updated loyalty period data.
75
+ */
76
+ postLoyaltyPeriod(body: LoyaltyPeriodIn): Observable<LoyaltyPeriodOut>;
77
+ /**
78
+ * Updates the loyalty period for a specified ID with the provided data.
79
+ *
80
+ * @param {number} id - The unique identifier of the loyalty period to update.
81
+ * @param {LoyaltyPeriodIn} body - An object containing the updated details of the loyalty period.
82
+ * @return {Observable<LoyaltyPeriodOut>} An observable that emits the updated loyalty period details.
83
+ */
84
+ putLoyaltyPeriod(id: number, body: LoyaltyPeriodIn): Observable<LoyaltyPeriodOut>;
85
+ /**
86
+ * Retrieves the loyalty rules based on the provided query parameters.
87
+ *
88
+ * @param {QueryParams} params - The query parameters to filter the loyalty rules.
89
+ * @return {Observable<LoyaltyRulesOut>} An observable containing the loyalty rules output.
90
+ */
91
+ getLoyaltyRules(params: QueryParams): Observable<LoyaltyRulesOut>;
92
+ /**
93
+ * Retrieves a specific loyalty rule based on the provided ID.
94
+ *
95
+ * @param {number} id - The unique identifier of the loyalty rule to retrieve.
96
+ * @return {Observable<LoyaltyRuleOut>} An observable that emits the details of the specified loyalty rule.
97
+ */
98
+ getLoyaltyRule(id: number): Observable<LoyaltyRuleOut>;
99
+ /**
100
+ * Sends a request to add or update a loyalty rule.
101
+ *
102
+ * @param {LoyaltyRuleIn} body - The loyalty rule data to be sent to the server.
103
+ * @return {Observable<LoyaltyRuleOut>} An observable that emits the updated loyalty rule details.
104
+ */
105
+ postLoyaltyRule(body: LoyaltyRuleIn): Observable<LoyaltyRuleOut>;
106
+ /**
107
+ * Updates an existing loyalty rule with the provided data.
108
+ *
109
+ * @param {number} id - The unique identifier of the loyalty rule to update.
110
+ * @param {LoyaltyRuleIn} body - The data to update the loyalty rule with.
111
+ * @return {Observable<LoyaltyRuleOut>} An observable that emits the updated loyalty rule.
112
+ */
113
+ putLoyaltyRule(id: number, body: LoyaltyRuleIn): Observable<LoyaltyRuleOut>;
114
+ /**
115
+ * Fetches customer restrictions based on the provided query parameters.
116
+ *
117
+ * @param {QueryParams} params - The query parameters to filter customer restrictions.
118
+ * @return {Observable<CustomerRestrictionsOut>} An observable that emits the customer restrictions data.
119
+ */
120
+ getCustomerRestrictions(params: QueryParams): Observable<CustomerRestrictionsOut>;
121
+ /**
122
+ * Retrieves customer restriction details for a given customer ID.
123
+ *
124
+ * @param {number} id - The unique identifier of the customer.
125
+ * @return {Observable<CustomerRestrictionOut>} An observable containing the customer restriction details.
126
+ */
127
+ getCustomerRestriction(id: number): Observable<CustomerRestrictionOut>;
128
+ /**
129
+ * Sends a request to apply a restriction to a customer.
130
+ *
131
+ * @param {CustomerRestrictionIn} body - The restriction details to be applied to the customer.
132
+ * @return {Observable<CustomerRestrictionOut>} An observable containing the response with the applied customer restriction.
133
+ */
134
+ postCustomerRestriction(body: CustomerRestrictionIn): Observable<CustomerRestrictionOut>;
135
+ /**
136
+ * Updates customer restrictions using the provided ID and data.
137
+ *
138
+ * @param {number} id - The unique identifier of the customer restriction to be updated.
139
+ * @param {LoyaltyRuleIn} body - The data object containing the customer restriction details to be updated.
140
+ * @return {Observable<CustomerRestrictionOut>} An observable emitting the updated customer restriction details.
141
+ */
142
+ putCustomerRestriction(id: number, body: CustomerRestrictionIn): Observable<CustomerRestrictionOut>;
143
+ /**
144
+ * Deletes a customer restriction by its ID.
145
+ *
146
+ * @param {number} id - The unique identifier of the customer restriction to delete.
147
+ * @return {Observable<{}>} An Observable that emits the result of the deletion operation.
148
+ */
149
+ deleteCustomerRestriction(id: number): Observable<{}>;
150
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiDiscountsService, never>;
151
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
152
+ }
@@ -1,7 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { Environment } from '../ngx-services.models';
4
- import { CancelPaymentReceiptIn, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CustomerDocumentTypesOut, CustomersOut, CustomerTypesOut, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationPrintDocumentOut, OperationShipmentExternalIn, OperationShipmentExternalOut, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, PrintCollectionReceiptOut } from './models/api-invoices.types';
4
+ import { CancelPaymentReceiptIn, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CustomerDocumentTypesOut, CustomersOut, CustomerTypesOut, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationPrintDocumentOut, OperationShipmentExternalIn, OperationShipmentExternalOut, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, PrintCollectionReceiptOut, ToleranceIn, ToleranceOut, TolerancesOut } from './models/api-invoices.types';
5
5
  import { QueryParams } from './models/api.models';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class ApiInvoicesService {
@@ -204,6 +204,42 @@ export declare class ApiInvoicesService {
204
204
  * @returns {Observable<PaymentTypeFieldAccountOut>} An observable that emits the result of the update operation.
205
205
  */
206
206
  putCountryPaymentTypeFieldAccount(id: number, body: PaymentTypeFieldAccountIn): Observable<PaymentTypeFieldAccountOut>;
207
+ /**
208
+ * Fetches tolerance data from the server based on the provided query parameters.
209
+ *
210
+ * @param {QueryParams} params - The parameters to use for querying tolerances.
211
+ * @return {Observable<TolerancesOut>} An observable emitting the tolerance data.
212
+ */
213
+ getTolerances(params: QueryParams): Observable<TolerancesOut>;
214
+ /**
215
+ * Retrieves the tolerance detail for a given identifier.
216
+ *
217
+ * @param {number} id - The unique identifier for the tolerance to retrieve.
218
+ * @return {Observable<ToleranceOut>} An observable containing the tolerance data.
219
+ */
220
+ getTolerance(id: number): Observable<ToleranceOut>;
221
+ /**
222
+ * Sends a request to update or create a tolerance record using the provided data.
223
+ *
224
+ * @param {ToleranceIn} body - The tolerance input object containing the data to be sent in the request.
225
+ * @return {Observable<ToleranceOut>} An observable that emits the updated or created tolerance output object.
226
+ */
227
+ postTolerance(body: ToleranceIn): Observable<ToleranceOut>;
228
+ /**
229
+ * Updates the tolerance with the specified ID using the provided data.
230
+ *
231
+ * @param {number} id - The unique identifier of the tolerance to update.
232
+ * @param {ToleranceIn} body - The data to update the tolerance with.
233
+ * @return {Observable<ToleranceOut>} An observable containing the updated tolerance information.
234
+ */
235
+ putTolerance(id: number, body: ToleranceIn): Observable<ToleranceOut>;
236
+ /**
237
+ * Deletes the tolerance entry corresponding to the given ID.
238
+ *
239
+ * @param {number} id - The unique identifier of the tolerance to be deleted.
240
+ * @return {Observable<{}>} An Observable that emits the result of the delete operation.
241
+ */
242
+ deleteTolerance(id: number): Observable<{}>;
207
243
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInvoicesService, never>;
208
244
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInvoicesService>;
209
245
  }
@@ -0,0 +1,74 @@
1
+ import { ActiveLessLaravelModel, LaravelModel } from './api.models';
2
+ import { IdentificationType } from './api-catalog.interfaces';
3
+ export interface Discount extends LaravelModel {
4
+ code: string;
5
+ company_country_id: number;
6
+ name: string;
7
+ description: string | null;
8
+ account_number: string;
9
+ percentage: string;
10
+ start_date: string;
11
+ end_date: string | null;
12
+ start_weight: number;
13
+ end_weight: number | null;
14
+ shipment_scopes: number[];
15
+ country_reference_products: number[];
16
+ applies_to_all_locations: boolean;
17
+ locations: number[] | null;
18
+ reference_required: boolean;
19
+ reference_restriction: boolean | null;
20
+ reference_restriction_period: number | null;
21
+ reference_restriction_amount: number | null;
22
+ reference_restriction_message: string | null;
23
+ shipment_scope_names: string;
24
+ applies_to_all_locations_langs: {
25
+ [key: string]: string;
26
+ };
27
+ reference_required_langs: {
28
+ [key: string]: string;
29
+ };
30
+ status_langs: {
31
+ [key: string]: string;
32
+ };
33
+ applies_to_all_locations_lang: string | null;
34
+ reference_required_lang: string | null;
35
+ status_lang: string | null;
36
+ }
37
+ export interface TopCustomer extends ActiveLessLaravelModel {
38
+ identification_type_id: number;
39
+ identification_number: string;
40
+ contact_name_1: string;
41
+ contact_name_2: string;
42
+ contact_name_3: string;
43
+ email: string;
44
+ phone_number: string;
45
+ discount_percentage: string;
46
+ account: string | null;
47
+ shipment_scopes: string | null;
48
+ company_country_id: number;
49
+ company_name: string | null;
50
+ level: string | null;
51
+ }
52
+ export interface LoyaltyPeriod extends LaravelModel {
53
+ company_country_id: number;
54
+ days: number;
55
+ shipment_scopes: number[];
56
+ products: string[];
57
+ }
58
+ export interface LoyaltyRule extends LaravelModel {
59
+ name: string;
60
+ loyalty_period_id: number;
61
+ min_quantity: number;
62
+ max_quantity: number;
63
+ discount_percentage: number;
64
+ account: string;
65
+ products: string[];
66
+ valid_since: string;
67
+ valid_until: string;
68
+ }
69
+ export interface CustomerRestriction extends ActiveLessLaravelModel {
70
+ identification_type_id: number;
71
+ identification_number: string;
72
+ company_country_id: number;
73
+ identificationType: IdentificationType;
74
+ }
@@ -0,0 +1,83 @@
1
+ import { CustomerRestriction, Discount, LoyaltyPeriod, LoyaltyRule, TopCustomer } from './api-discounts.interfaces';
2
+ export type DiscountIn = {
3
+ code: string;
4
+ company_country_id: number;
5
+ name: string;
6
+ description: string;
7
+ account_number: string;
8
+ percentage: number;
9
+ start_date: string;
10
+ end_date: string;
11
+ start_weight: number;
12
+ end_weight: number;
13
+ shipment_scopes: number[];
14
+ country_reference_products: number[];
15
+ applies_to_all_locations: boolean;
16
+ locations: number[];
17
+ reference_required: boolean;
18
+ reference_restriction: boolean;
19
+ reference_restriction_period: number;
20
+ reference_restriction_amount: number;
21
+ reference_restriction_message: string;
22
+ is_active: boolean;
23
+ };
24
+ export type DiscountOut = {
25
+ discount: Discount;
26
+ };
27
+ export type DiscountsOut = {
28
+ discounts: Discount[];
29
+ total: number;
30
+ };
31
+ export type TopCustomersOut = {
32
+ top_customers: TopCustomer[];
33
+ total: number;
34
+ };
35
+ export type OperationsLoadTopCustomerV2In = {
36
+ company_country_id: number;
37
+ file: File;
38
+ };
39
+ export type LoyaltyPeriodsOut = {
40
+ loyalty_periods: LoyaltyPeriod[];
41
+ total: number;
42
+ };
43
+ export type LoyaltyPeriodIn = {
44
+ company_country_id: number;
45
+ days: number;
46
+ shipment_scopes: number[];
47
+ products: string[];
48
+ is_active: boolean;
49
+ };
50
+ export type LoyaltyPeriodOut = {
51
+ loyalty_period: LoyaltyPeriod;
52
+ };
53
+ export type LoyaltyRulesOut = {
54
+ loyalty_rules: LoyaltyRule[];
55
+ total: number;
56
+ };
57
+ export type LoyaltyRuleIn = {
58
+ name: string;
59
+ loyalty_period_id: number;
60
+ min_quantity: number;
61
+ max_quantity: number;
62
+ discount_percentage: number;
63
+ products: string[];
64
+ account: string;
65
+ valid_since: string;
66
+ valid_until: string;
67
+ is_active: boolean;
68
+ };
69
+ export type LoyaltyRuleOut = {
70
+ loyalty_rule: LoyaltyRule;
71
+ };
72
+ export type CustomerRestrictionsOut = {
73
+ customer_restrictions: CustomerRestriction[];
74
+ total: number;
75
+ };
76
+ export type CustomerRestrictionIn = {
77
+ identification_type_id: number;
78
+ identification_number: string;
79
+ company_country_id: number;
80
+ };
81
+ export type CustomerRestrictionOut = {
82
+ customer_restriction: CustomerRestriction;
83
+ };
@@ -179,13 +179,12 @@ export interface CountryPaymentTypeField extends LaravelModel {
179
179
  country_payment_type_id: number;
180
180
  code: string;
181
181
  name: string;
182
- description: string;
182
+ description: string | null;
183
183
  format: string;
184
184
  is_required: boolean;
185
- catalog: [] | null;
185
+ catalog: string[] | null;
186
186
  regex: string | null;
187
187
  is_interface: boolean;
188
- value?: string;
189
188
  is_bank_reference: boolean;
190
189
  }
191
190
  export interface PaymentType extends LaravelModel {
@@ -210,3 +209,9 @@ export interface PaymentTypeFieldAccount extends LaravelModel {
210
209
  currency_id: number;
211
210
  currency: Currency;
212
211
  }
212
+ export interface Tolerance extends LaravelModel {
213
+ tolerance_type: number;
214
+ min_amount: number;
215
+ max_amount: number;
216
+ tolerance: number;
217
+ }
@@ -1,4 +1,4 @@
1
- import { CountryPaymentType, CountryPaymentTypeField, Customer, CustomerType, Document, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldCardType } from './api-invoices.interfaces';
1
+ import { CountryPaymentType, CountryPaymentTypeField, Customer, CustomerType, Document, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldCardType, Tolerance } from './api-invoices.interfaces';
2
2
  import { CustomerCountryDocumentType } from './api-billing.interfaces';
3
3
  export interface OperationAccountPaymentIn {
4
4
  document_type_range_id: number | null;
@@ -165,3 +165,18 @@ export type PaymentTypeFieldAccountIn = {
165
165
  export type PaymentTypeFieldAccountOut = {
166
166
  country_payment_type_field_account: PaymentTypeFieldAccount;
167
167
  };
168
+ export type TolerancesOut = {
169
+ tolerances: Tolerance[];
170
+ total: number;
171
+ };
172
+ export type ToleranceIn = {
173
+ company_country_id: number;
174
+ tolerance_type: number;
175
+ min_amount: number;
176
+ max_amount: number;
177
+ tolerance: number;
178
+ is_active: boolean;
179
+ };
180
+ export type ToleranceOut = {
181
+ tolerance: Tolerance;
182
+ };
@@ -10,21 +10,21 @@ export interface ApiModel {
10
10
  }
11
11
  export interface LaravelModel extends ApiModel {
12
12
  is_active: boolean;
13
- created_at: Date | string;
14
- updated_at: Date | string;
13
+ created_at: string;
14
+ updated_at: string;
15
15
  }
16
16
  export interface ActiveLessLaravelModel extends ApiModel {
17
- created_at: Date | string;
18
- updated_at: Date | string;
17
+ created_at: string;
18
+ updated_at: string;
19
19
  }
20
20
  export interface SymfonyModel extends ApiModel {
21
21
  isActive: boolean;
22
- createdAt: Date | string;
23
- updatedAt: Date | string;
22
+ createdAt: string;
23
+ updatedAt: string;
24
24
  }
25
25
  export interface ActiveLessSymfonyModel extends ApiModel {
26
- createdAt: Date | string;
27
- updatedAt: Date | string;
26
+ createdAt: string;
27
+ updatedAt: string;
28
28
  }
29
29
  export type QueryParams = {
30
30
  [param: string]: string | number | boolean | ReadonlyArray<string | number | boolean>;
@@ -22,6 +22,7 @@ export type Environment = {
22
22
  apiCatalogsUrl?: string;
23
23
  apiCompaniesUrl?: string;
24
24
  apiCompositionUrl?: string;
25
+ apiDiscounts?: string;
25
26
  apiEToolsAutoBilling?: string;
26
27
  apiExternalOperationsKey?: string;
27
28
  apiExternalOperationsUrl?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "18.7.8",
3
+ "version": "18.7.10",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [
package/public-api.d.ts CHANGED
@@ -7,6 +7,7 @@ export * from './lib/apis/api-cash-operations.service';
7
7
  export * from './lib/apis/api-catalogs.service';
8
8
  export * from './lib/apis/api-companies.service';
9
9
  export * from './lib/apis/api-composition.service';
10
+ export * from './lib/apis/api-discounts.service';
10
11
  export * from './lib/apis/api-e-tools-auto-billing.service';
11
12
  export * from './lib/apis/api-external-pickups.service';
12
13
  export * from './lib/apis/api-inventories.service';
@@ -15,9 +16,9 @@ export * from './lib/apis/api-open-items.service';
15
16
  export * from './lib/apis/api-reports.service';
16
17
  export * from './lib/apis/api-security.service';
17
18
  export * from './lib/apis/api-shipments.service';
18
- export * from './lib/apis/models/api-billing.types';
19
19
  export * from './lib/apis/models/api-billing-pa.interfaces';
20
20
  export * from './lib/apis/models/api-billing-pa.types';
21
+ export * from './lib/apis/models/api-billing.types';
21
22
  export * from './lib/apis/models/api-cash-operations.interfaces';
22
23
  export * from './lib/apis/models/api-cash-operations.types';
23
24
  export * from './lib/apis/models/api-catalog.interfaces';
@@ -26,6 +27,8 @@ export * from './lib/apis/models/api-companies.interfaces';
26
27
  export * from './lib/apis/models/api-companies.types';
27
28
  export * from './lib/apis/models/api-composition.interfaces';
28
29
  export * from './lib/apis/models/api-composition.types';
30
+ export * from './lib/apis/models/api-discounts.interfaces';
31
+ export * from './lib/apis/models/api-discounts.types';
29
32
  export * from './lib/apis/models/api-e-tools-auto-billing.interfaces';
30
33
  export * from './lib/apis/models/api-e-tools-auto-billing.types';
31
34
  export * from './lib/apis/models/api-external-pickups.types';