@experteam-mx/ngx-services 18.3.2 → 18.3.5
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/esm2022/lib/apis/api-invoices.service.mjs +11 -1
- package/esm2022/lib/apis/api-open-items.service.mjs +62 -0
- package/esm2022/lib/apis/api-reports.service.mjs +37 -1
- package/esm2022/lib/apis/api-security.service.mjs +27 -1
- package/esm2022/lib/apis/api-shipments.service.mjs +11 -1
- package/esm2022/lib/apis/models/api-invoices.types.mjs +1 -1
- package/esm2022/lib/apis/models/api-open-items.interfaces.mjs +2 -0
- package/esm2022/lib/apis/models/api-open-items.types.mjs +2 -0
- package/esm2022/lib/apis/models/api-reports.interfaces.mjs +1 -1
- package/esm2022/lib/apis/models/api-reports.types.mjs +1 -1
- package/esm2022/lib/apis/models/api-security.interfaces.mjs +1 -1
- package/esm2022/lib/apis/models/api-shipments.types.mjs +1 -1
- package/esm2022/lib/ngx-services.models.mjs +1 -1
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/experteam-mx-ngx-services.mjs +141 -1
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/lib/apis/api-invoices.service.d.ts +9 -2
- package/lib/apis/api-open-items.service.d.ts +41 -0
- package/lib/apis/api-reports.service.d.ts +17 -1
- package/lib/apis/api-security.service.d.ts +19 -0
- package/lib/apis/api-shipments.service.d.ts +9 -2
- package/lib/apis/models/api-invoices.types.d.ts +29 -0
- package/lib/apis/models/api-open-items.interfaces.d.ts +32 -0
- package/lib/apis/models/api-open-items.types.d.ts +58 -0
- package/lib/apis/models/api-reports.interfaces.d.ts +149 -0
- package/lib/apis/models/api-reports.types.d.ts +11 -1
- package/lib/apis/models/api-security.interfaces.d.ts +4 -0
- package/lib/apis/models/api-shipments.types.d.ts +41 -0
- package/lib/ngx-services.models.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
|
@@ -2,7 +2,7 @@ import { Environment } from '../ngx-services.models';
|
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { QueryParams } from './models/api.models';
|
|
5
|
-
import { CollectionPaymentsOut } from './models/api-reports.types';
|
|
5
|
+
import { CollectionPaymentsOut, ExistPendingInvoicesIn, ExistPendingPaymentsIn, ShipmentsReportOut } from './models/api-reports.types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class ApiReportsService {
|
|
8
8
|
private environments;
|
|
@@ -21,6 +21,22 @@ export declare class ApiReportsService {
|
|
|
21
21
|
* @return {Observable<CollectionPaymentsOut[]>} An observable that emits an array of collection payment.
|
|
22
22
|
*/
|
|
23
23
|
getCollectionPayments(params: QueryParams): Observable<CollectionPaymentsOut>;
|
|
24
|
+
/**
|
|
25
|
+
* Fetches the list of shipments with pending payments.
|
|
26
|
+
*
|
|
27
|
+
* @param {ExistPendingPaymentsIn} params - The parameters to filter pending payment shipments.
|
|
28
|
+
* @return {Observable<ShipmentsReportOut>} An observable emitting the shipments report data.
|
|
29
|
+
*/
|
|
30
|
+
shipmentsPendingPayments(params: ExistPendingPaymentsIn): Observable<ShipmentsReportOut>;
|
|
31
|
+
/**
|
|
32
|
+
* Fetches shipment reports that are pending invoices based on the specified parameters.
|
|
33
|
+
* This method retrieves a filtered list of shipments with pending invoice statuses.
|
|
34
|
+
*
|
|
35
|
+
* @param {ExistPendingInvoicesIn} params - The parameters to filter the pending invoices, including
|
|
36
|
+
* shipment status codes, and pagination options.
|
|
37
|
+
* @return {Observable<ShipmentsReportOut>} An observable that emits the shipment report data based on the filter criteria.
|
|
38
|
+
*/
|
|
39
|
+
shipmentsPendingInvoices(params: ExistPendingInvoicesIn): Observable<ShipmentsReportOut>;
|
|
24
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
|
|
25
41
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
|
|
26
42
|
}
|
|
@@ -4,6 +4,7 @@ import { HttpClient } from '@angular/common/http';
|
|
|
4
4
|
import { Environment } from '../ngx-services.models';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
6
|
import { CookieService } from 'ngx-cookie-service';
|
|
7
|
+
import { ModulesOut } from './models/api-security.interfaces';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class ApiSecurityService {
|
|
9
10
|
private environments;
|
|
@@ -125,6 +126,24 @@ export declare class ApiSecurityService {
|
|
|
125
126
|
* @returns {Observable<{}>} An observable that emits the result of the delete operation.
|
|
126
127
|
*/
|
|
127
128
|
deleteRolePermissions(id: number): Observable<{}>;
|
|
129
|
+
/**
|
|
130
|
+
* Retrieves a list of modules and permissions
|
|
131
|
+
*
|
|
132
|
+
* @param queryParams - The query parameters to filter the modules.
|
|
133
|
+
* @returns Observable<ModulesOut[]> - An observable that emits an array of modules and permissions.
|
|
134
|
+
*/
|
|
135
|
+
getModules(queryParams: QueryParams): Observable<ModulesOut>;
|
|
136
|
+
/**
|
|
137
|
+
* Retrieves a list of modules and permissions
|
|
138
|
+
*
|
|
139
|
+
* @param params.token - Custom token for authorization.
|
|
140
|
+
* @param params.queryParams - The query parameters to filter the modules.
|
|
141
|
+
* @returns Observable<ModulesOut[]> - An observable that emits an array of modules and permissions.
|
|
142
|
+
*/
|
|
143
|
+
getModulesToken(params: {
|
|
144
|
+
token: string;
|
|
145
|
+
queryParams: QueryParams;
|
|
146
|
+
}): Observable<ModulesOut>;
|
|
128
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiSecurityService, never>;
|
|
129
148
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSecurityService>;
|
|
130
149
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Environment } from '../ngx-services.models';
|
|
2
1
|
import { HttpClient } from '@angular/common/http';
|
|
3
2
|
import { Observable } from 'rxjs';
|
|
4
|
-
import {
|
|
3
|
+
import { Environment } from '../ngx-services.models';
|
|
4
|
+
import { ManifestMultipleIn, ManifestMultipleOut, ValidateAccountIn, ValidateAccountOut } from './models/api-shipments.types';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ApiShipmentsService {
|
|
7
7
|
private environments;
|
|
@@ -21,6 +21,13 @@ export declare class ApiShipmentsService {
|
|
|
21
21
|
* @param body
|
|
22
22
|
*/
|
|
23
23
|
validateAccount(body: ValidateAccountIn): Observable<ValidateAccountOut>;
|
|
24
|
+
/**
|
|
25
|
+
* Sends a POST request to the shipments manifest endpoint with the provided body.
|
|
26
|
+
*
|
|
27
|
+
* @param body - The request payload of type `ManifestMultipleIn`.
|
|
28
|
+
* @returns An observable that emits the response data of type `ManifestMultipleOut`.
|
|
29
|
+
*/
|
|
30
|
+
manifestMultiple(body: ManifestMultipleIn): Observable<ManifestMultipleOut>;
|
|
24
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
25
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
26
33
|
}
|
|
@@ -42,3 +42,32 @@ export type CancelBillingIn = {
|
|
|
42
42
|
cancel_payment: boolean;
|
|
43
43
|
send_shipments: boolean;
|
|
44
44
|
};
|
|
45
|
+
export type OperationDocumentIn = {
|
|
46
|
+
country_document_type_id: number;
|
|
47
|
+
customer: {
|
|
48
|
+
company_name: string;
|
|
49
|
+
full_name: string;
|
|
50
|
+
email: string;
|
|
51
|
+
phone_code: string;
|
|
52
|
+
phone_number: string;
|
|
53
|
+
address_line1: string;
|
|
54
|
+
address_line2: string;
|
|
55
|
+
address_line3: string;
|
|
56
|
+
identification_number: string;
|
|
57
|
+
identification_type_id: number;
|
|
58
|
+
postal_code: string;
|
|
59
|
+
state: string;
|
|
60
|
+
county_name: string;
|
|
61
|
+
city_name: string;
|
|
62
|
+
country_id: number;
|
|
63
|
+
extra_fields: {
|
|
64
|
+
[key: string]: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
document_extra_fields: {
|
|
68
|
+
[key: string]: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
export type OperationDocumentOut = {
|
|
72
|
+
document: Document;
|
|
73
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CustomerOtherInvoice, CustomerOpenItem, OpenItems, OtherInvoices, PaymentDetail } from './api-open-items.types';
|
|
2
|
+
export interface OpenItem {
|
|
3
|
+
id: number;
|
|
4
|
+
invoice_number: string;
|
|
5
|
+
shipment_tracking_number: string;
|
|
6
|
+
invoice_issue_datetime: Date | string;
|
|
7
|
+
invoice_expiration_datetime: Date | string;
|
|
8
|
+
customer_identification_number: string;
|
|
9
|
+
customer_company_name: string;
|
|
10
|
+
account: string;
|
|
11
|
+
country_reference_currency_id: number;
|
|
12
|
+
pending_value: number;
|
|
13
|
+
payed_value: number;
|
|
14
|
+
is_cash: boolean;
|
|
15
|
+
status: string;
|
|
16
|
+
origin: string;
|
|
17
|
+
user_id: string | null;
|
|
18
|
+
}
|
|
19
|
+
export interface OpenItemIn {
|
|
20
|
+
payments: PaymentDetail[];
|
|
21
|
+
customer: CustomerOpenItem | CustomerOtherInvoice;
|
|
22
|
+
document_type_range_id: number;
|
|
23
|
+
document_number: string;
|
|
24
|
+
observation: string;
|
|
25
|
+
document_date: Date;
|
|
26
|
+
}
|
|
27
|
+
export interface PaymentOpenItemIn extends OpenItemIn {
|
|
28
|
+
open_items: OpenItems[];
|
|
29
|
+
}
|
|
30
|
+
export interface PaymentOtherInvoiceIn extends OpenItemIn {
|
|
31
|
+
other_invoices: OtherInvoices[];
|
|
32
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { OpenItem } from './api-open-items.interfaces';
|
|
2
|
+
import { Document } from './api-invoices.interfaces';
|
|
3
|
+
export type CustomerOpenItem = {
|
|
4
|
+
company_name: string;
|
|
5
|
+
full_name: string;
|
|
6
|
+
email: string;
|
|
7
|
+
phone_code: string;
|
|
8
|
+
phone_number: string;
|
|
9
|
+
address_line1: string;
|
|
10
|
+
address_line2: string;
|
|
11
|
+
address_line3: string;
|
|
12
|
+
identification_number: string;
|
|
13
|
+
identification_type_id: number;
|
|
14
|
+
postal_code: string;
|
|
15
|
+
state: string;
|
|
16
|
+
county_name: string;
|
|
17
|
+
city_name: string;
|
|
18
|
+
country_id: number;
|
|
19
|
+
};
|
|
20
|
+
export type CustomerOtherInvoice = {
|
|
21
|
+
identification_number: string;
|
|
22
|
+
company_name: string;
|
|
23
|
+
full_name: string;
|
|
24
|
+
account_number: string;
|
|
25
|
+
country_id: number;
|
|
26
|
+
};
|
|
27
|
+
export type OpenItems = {
|
|
28
|
+
id: string;
|
|
29
|
+
payed_value: number;
|
|
30
|
+
};
|
|
31
|
+
export type OpenItemsOut = {
|
|
32
|
+
open_items: OpenItem[];
|
|
33
|
+
total: number;
|
|
34
|
+
};
|
|
35
|
+
export type OtherInvoices = {
|
|
36
|
+
invoice_number: string;
|
|
37
|
+
shipment_tracking_number: string;
|
|
38
|
+
invoice_issue_datetime: string;
|
|
39
|
+
pending_value: number;
|
|
40
|
+
customer_identification_number: string;
|
|
41
|
+
};
|
|
42
|
+
export type PaymentDetail = {
|
|
43
|
+
amount: number;
|
|
44
|
+
received: number;
|
|
45
|
+
country_reference_currency_id: number;
|
|
46
|
+
exchange: string | number;
|
|
47
|
+
country_payment_type_id: number;
|
|
48
|
+
due_date: string;
|
|
49
|
+
details: {
|
|
50
|
+
[key: string]: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
export type PaymentOpenItemOut = {
|
|
54
|
+
document: Document;
|
|
55
|
+
};
|
|
56
|
+
export type PaymentOtherInvoiceOut = {
|
|
57
|
+
document: Document;
|
|
58
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LaravelModel, Translations } from './api.models';
|
|
2
|
+
import { DocumentPayment } from './api-invoices.interfaces';
|
|
2
3
|
export interface CollectionPayment extends LaravelModel {
|
|
3
4
|
_id: number;
|
|
4
5
|
country_code: string;
|
|
@@ -45,3 +46,151 @@ export interface DocumentCategory extends LaravelModel {
|
|
|
45
46
|
updated_at: string;
|
|
46
47
|
translations: Translations;
|
|
47
48
|
}
|
|
49
|
+
export interface Shipment {
|
|
50
|
+
id: number;
|
|
51
|
+
document_id: number;
|
|
52
|
+
shipment_scope_name: string;
|
|
53
|
+
is_document: boolean;
|
|
54
|
+
origin_service_area_code: string;
|
|
55
|
+
origin_facility_code: string;
|
|
56
|
+
destination_facility_code: string;
|
|
57
|
+
destination_service_area_code: string;
|
|
58
|
+
shipment_pieces_tracking_numbers: string[];
|
|
59
|
+
shipment_tracking_number: string;
|
|
60
|
+
shipper_full_name: string;
|
|
61
|
+
shipper_company_name: string;
|
|
62
|
+
shipper_email: string;
|
|
63
|
+
shipper_phone_number: string;
|
|
64
|
+
shipper_phone_code: string;
|
|
65
|
+
shipper_full_phone_number: string;
|
|
66
|
+
shipper_address_line1: string;
|
|
67
|
+
shipper_address_line2: string;
|
|
68
|
+
shipper_city_name: string;
|
|
69
|
+
shipper_state_name: string;
|
|
70
|
+
shipper_state_code: string;
|
|
71
|
+
shipper_postal_code: string;
|
|
72
|
+
receiver_full_name: string;
|
|
73
|
+
receiver_company_name: string;
|
|
74
|
+
receiver_address_line1: string;
|
|
75
|
+
receiver_address_line2: string;
|
|
76
|
+
receiver_city_name: string;
|
|
77
|
+
receiver_state_name: string;
|
|
78
|
+
receiver_state_code: string;
|
|
79
|
+
receiver_postal_code: string;
|
|
80
|
+
shipper_account: string;
|
|
81
|
+
promotion_code: string;
|
|
82
|
+
customer_identification_type_id: number;
|
|
83
|
+
customer_identification_number: string;
|
|
84
|
+
customer_email: string;
|
|
85
|
+
customer_full_phone_number: string;
|
|
86
|
+
price_override_approver_id: number;
|
|
87
|
+
price_override_reason_id: number;
|
|
88
|
+
price_override_approver_name: string;
|
|
89
|
+
price_override_reason_name: string;
|
|
90
|
+
is_proforma: boolean;
|
|
91
|
+
is_kiosk: boolean;
|
|
92
|
+
to_landing: boolean;
|
|
93
|
+
is_price_override: boolean;
|
|
94
|
+
is_promotion_code: boolean;
|
|
95
|
+
is_retail_rate: boolean;
|
|
96
|
+
payment_type_1: string;
|
|
97
|
+
payment_code_1: string;
|
|
98
|
+
amount_1: number;
|
|
99
|
+
reference_1: string;
|
|
100
|
+
payment_type_2: string;
|
|
101
|
+
payment_code_2: string;
|
|
102
|
+
amount_2: number;
|
|
103
|
+
reference_2: string;
|
|
104
|
+
document_payments?: DocumentPayment[];
|
|
105
|
+
location_id: number;
|
|
106
|
+
installation_id: number;
|
|
107
|
+
user_id: number;
|
|
108
|
+
user_username: string;
|
|
109
|
+
company_id: number;
|
|
110
|
+
country_id: number;
|
|
111
|
+
company_country_id: number;
|
|
112
|
+
country_name: string;
|
|
113
|
+
company_name: string;
|
|
114
|
+
country_code: string;
|
|
115
|
+
location_name: string;
|
|
116
|
+
location_facility_code: string;
|
|
117
|
+
installation_number: number;
|
|
118
|
+
product_global_code: string;
|
|
119
|
+
product_local_code: string;
|
|
120
|
+
shipment_gmt_offset: string;
|
|
121
|
+
shipment_pieces_number: number;
|
|
122
|
+
shipment_bill_weight: number;
|
|
123
|
+
total_published_value: number;
|
|
124
|
+
total_partner_account_value: number;
|
|
125
|
+
question_id: number;
|
|
126
|
+
question_description: string;
|
|
127
|
+
question_type: string;
|
|
128
|
+
amount_collected: number;
|
|
129
|
+
shipment_value: number;
|
|
130
|
+
declared_value: number;
|
|
131
|
+
insured_value: number;
|
|
132
|
+
shipment_status_id: number;
|
|
133
|
+
transaction_id: string;
|
|
134
|
+
shipment_type: string;
|
|
135
|
+
ein_number: string;
|
|
136
|
+
itn_number: string;
|
|
137
|
+
created_at: string;
|
|
138
|
+
updated_at: string;
|
|
139
|
+
retail_rate_adjustment: number;
|
|
140
|
+
shipment_status_code: string;
|
|
141
|
+
shipment_status_description: string;
|
|
142
|
+
shipment_status_translations: {
|
|
143
|
+
description: {
|
|
144
|
+
[key: string]: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
authorization_numbers: string[];
|
|
148
|
+
is_term_condition: boolean;
|
|
149
|
+
is_marketing_consent: boolean;
|
|
150
|
+
is_manual: boolean;
|
|
151
|
+
commercial_invoice: boolean;
|
|
152
|
+
shipment_id: number;
|
|
153
|
+
date: string;
|
|
154
|
+
date_og: string;
|
|
155
|
+
invoice_document_id?: number | null;
|
|
156
|
+
currency_code: string | null;
|
|
157
|
+
send_to_api_inventories: boolean;
|
|
158
|
+
selected?: boolean;
|
|
159
|
+
delivery_date_time: string;
|
|
160
|
+
product_subtotal: number;
|
|
161
|
+
product_tax: number;
|
|
162
|
+
product_total: number;
|
|
163
|
+
product_taxes: {
|
|
164
|
+
code: string;
|
|
165
|
+
percent: number;
|
|
166
|
+
base_amount: number;
|
|
167
|
+
amount: number;
|
|
168
|
+
}[];
|
|
169
|
+
shipment_company_country_extra_charges: {
|
|
170
|
+
_id: number;
|
|
171
|
+
subtotal: number;
|
|
172
|
+
tax: number;
|
|
173
|
+
total: number;
|
|
174
|
+
extra_charge_id: number;
|
|
175
|
+
taxes: {
|
|
176
|
+
code: string;
|
|
177
|
+
percent: number;
|
|
178
|
+
base_amount: number;
|
|
179
|
+
amount: number;
|
|
180
|
+
}[];
|
|
181
|
+
created_at: string;
|
|
182
|
+
updated_at: string;
|
|
183
|
+
global_service_code: string;
|
|
184
|
+
local_service_code: string;
|
|
185
|
+
global_service_name: string;
|
|
186
|
+
local_service_name: string;
|
|
187
|
+
is_discount: false;
|
|
188
|
+
}[];
|
|
189
|
+
additional_documents: {
|
|
190
|
+
country_id: number;
|
|
191
|
+
include_indemnity_letter: boolean;
|
|
192
|
+
include_pdf: boolean;
|
|
193
|
+
shipment_content_type_id: number;
|
|
194
|
+
shipment_scope_id: number;
|
|
195
|
+
};
|
|
196
|
+
}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { LaravelModel } from './api.models';
|
|
2
|
-
import { CollectionPayment } from './api-reports.interfaces';
|
|
2
|
+
import { CollectionPayment, Shipment } from './api-reports.interfaces';
|
|
3
3
|
export interface CollectionPaymentsOut extends LaravelModel {
|
|
4
4
|
collection_payments: CollectionPayment[];
|
|
5
5
|
total: number;
|
|
6
6
|
}
|
|
7
|
+
export type ShipmentsReportOut = {
|
|
8
|
+
shipments: Shipment[];
|
|
9
|
+
total: number;
|
|
10
|
+
};
|
|
11
|
+
export type ExistPendingPaymentsIn = {
|
|
12
|
+
installation_id: number;
|
|
13
|
+
};
|
|
14
|
+
export type ExistPendingInvoicesIn = {
|
|
15
|
+
installation_id: number;
|
|
16
|
+
};
|
|
@@ -30,3 +30,44 @@ export type ValidateAccountOut = {
|
|
|
30
30
|
account: AccountResponse;
|
|
31
31
|
transactionId: string;
|
|
32
32
|
};
|
|
33
|
+
export type ManifestMultipleIn = {
|
|
34
|
+
shipmentIds: number[];
|
|
35
|
+
customer: {
|
|
36
|
+
companyName: string;
|
|
37
|
+
fullName: string;
|
|
38
|
+
email: string;
|
|
39
|
+
phoneCode: string;
|
|
40
|
+
phoneNumber: string;
|
|
41
|
+
addressLine1: string;
|
|
42
|
+
addressLine2?: string;
|
|
43
|
+
addressLine3?: string;
|
|
44
|
+
identificationNumber?: string;
|
|
45
|
+
identificationTypeId?: number;
|
|
46
|
+
countryCode: string;
|
|
47
|
+
stateCode?: string;
|
|
48
|
+
postalCode?: string;
|
|
49
|
+
cityName?: string;
|
|
50
|
+
countyName?: string;
|
|
51
|
+
};
|
|
52
|
+
paymentDetails: {
|
|
53
|
+
totalAmount: number;
|
|
54
|
+
payments: {
|
|
55
|
+
amount: number;
|
|
56
|
+
received: number;
|
|
57
|
+
countryReferenceCurrencyId: number;
|
|
58
|
+
exchange: number;
|
|
59
|
+
countryPaymentTypeId: number;
|
|
60
|
+
dueDate: string;
|
|
61
|
+
details: Record<string, string>;
|
|
62
|
+
}[];
|
|
63
|
+
};
|
|
64
|
+
priceOverrideApproverId: number | null;
|
|
65
|
+
priceOverrideReasonId: number | null;
|
|
66
|
+
isPendingInvoice?: boolean;
|
|
67
|
+
};
|
|
68
|
+
export type ManifestMultipleOut = {
|
|
69
|
+
shipmentManifests: {
|
|
70
|
+
documentId: number;
|
|
71
|
+
};
|
|
72
|
+
transactionId: string;
|
|
73
|
+
};
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './lib/ngx-services.module';
|
|
2
2
|
export * from './lib/apis/api-companies.service';
|
|
3
3
|
export * from './lib/apis/api-invoices.service';
|
|
4
|
+
export * from './lib/apis/api-open-items.service';
|
|
4
5
|
export * from './lib/apis/api-reports.service';
|
|
5
6
|
export * from './lib/apis/api-security.service';
|
|
6
7
|
export * from './lib/apis/api-shipments.service';
|
|
@@ -8,6 +9,8 @@ export * from './lib/apis/models/api-companies.interfaces';
|
|
|
8
9
|
export * from './lib/apis/models/api-companies.types';
|
|
9
10
|
export * from './lib/apis/models/api-invoices.interfaces';
|
|
10
11
|
export * from './lib/apis/models/api-invoices.types';
|
|
12
|
+
export * from './lib/apis/models/api-open-items.interfaces';
|
|
13
|
+
export * from './lib/apis/models/api-open-items.types';
|
|
11
14
|
export * from './lib/apis/models/api-reports.interfaces';
|
|
12
15
|
export * from './lib/apis/models/api-security.interfaces';
|
|
13
16
|
export * from './lib/apis/models/api-security.types';
|