@experteam-mx/ngx-services 20.8.6-dev3.0 → 20.9.0-dev1.0
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/README.md +8 -2
- package/fesm2022/experteam-mx-ngx-services.mjs +322 -124
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +598 -187
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
3
|
-
import { Observable, BehaviorSubject } from 'rxjs';
|
|
4
3
|
import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
4
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { Channel } from 'pusher-js';
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Opt-in HTTP cache rule. First matching pattern against `req.urlWithParams` wins.
|
|
9
|
+
*/
|
|
10
|
+
type HttpCacheRoute = {
|
|
11
|
+
/** RegExp source matched against `req.urlWithParams` */
|
|
12
|
+
pattern: string;
|
|
13
|
+
/** TTL in milliseconds */
|
|
14
|
+
ttl: number;
|
|
15
|
+
};
|
|
7
16
|
/**
|
|
8
17
|
* Represents the configuration settings for the application's environment.
|
|
9
18
|
* This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
|
|
10
19
|
*
|
|
11
20
|
* Properties:
|
|
21
|
+
* - apiAuditsUrl: The URL for the audits API endpoint.
|
|
12
22
|
* - apiCompaniesUrl: The URL for the companies API endpoint.
|
|
13
23
|
* - apiEventsUrl: The URL for the events API endpoint.
|
|
14
24
|
* - apiInvoicesUrl: The URL for the invoices API endpoint.
|
|
@@ -16,11 +26,12 @@ import { Channel } from 'pusher-js';
|
|
|
16
26
|
* - apiSecurityUrl: The URL for the security-related API endpoint.
|
|
17
27
|
* - apiShipmentUrl: The URL for the shipment API endpoint.
|
|
18
28
|
* - authCookie: The name of the authentication cookie used for user sessions.
|
|
19
|
-
* -
|
|
29
|
+
* - cacheRoutes: Optional. Opt-in HTTP cache rules; first matching pattern wins.
|
|
20
30
|
* - printUrl: Optional. The URL used for generating or downloading printable documents.
|
|
21
31
|
* - secretKey: A secret key used for authentication or other secure operations.
|
|
22
32
|
*/
|
|
23
33
|
type Environment = {
|
|
34
|
+
apiAuditsUrl?: string;
|
|
24
35
|
apiBillingCO?: string;
|
|
25
36
|
apiBillingDO?: string;
|
|
26
37
|
apiBillingGT?: string;
|
|
@@ -50,7 +61,7 @@ type Environment = {
|
|
|
50
61
|
apiSuppliesUrl?: string;
|
|
51
62
|
apiSurveysUrl?: string;
|
|
52
63
|
authCookie?: string;
|
|
53
|
-
|
|
64
|
+
cacheRoutes?: HttpCacheRoute[];
|
|
54
65
|
printUrl?: string;
|
|
55
66
|
secretKey?: string;
|
|
56
67
|
sockets?: {
|
|
@@ -133,6 +144,83 @@ interface TranslateLang {
|
|
|
133
144
|
[langCode: string]: string;
|
|
134
145
|
}
|
|
135
146
|
|
|
147
|
+
interface Connection extends ActiveLessLaravelModel {
|
|
148
|
+
api: string;
|
|
149
|
+
connection: string;
|
|
150
|
+
version: string;
|
|
151
|
+
}
|
|
152
|
+
interface TransactionLog extends ActiveLessLaravelModel {
|
|
153
|
+
api: string;
|
|
154
|
+
username: string;
|
|
155
|
+
table: string;
|
|
156
|
+
action: string;
|
|
157
|
+
ID: string;
|
|
158
|
+
last_value: unknown | null;
|
|
159
|
+
new_value: unknown | null;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
type ConnectionsOut = {
|
|
163
|
+
connections: Connection[];
|
|
164
|
+
total: number;
|
|
165
|
+
};
|
|
166
|
+
type TransactionLogsOut = {
|
|
167
|
+
transaction_logs: TransactionLog[];
|
|
168
|
+
total: number;
|
|
169
|
+
};
|
|
170
|
+
type TransactionLogsDownloadOut = {
|
|
171
|
+
transaction_id: string;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
declare class ApiAuditsService {
|
|
175
|
+
private environments;
|
|
176
|
+
private http;
|
|
177
|
+
/**
|
|
178
|
+
* Retrieves the URL for the audits API from the environment configurations.
|
|
179
|
+
* If the URL is not defined, an empty string is returned.
|
|
180
|
+
*
|
|
181
|
+
* @return {string} The API Audits URL or an empty string if not defined.
|
|
182
|
+
*/
|
|
183
|
+
get url(): string;
|
|
184
|
+
/**
|
|
185
|
+
* Retrieves a list of database connections based on query parameters.
|
|
186
|
+
*
|
|
187
|
+
* @param {QueryParams} params - Query parameters for filtering and pagination.
|
|
188
|
+
* @returns {Observable<ConnectionsOut>} The list of connections.
|
|
189
|
+
*/
|
|
190
|
+
getConnections(params: QueryParams): Observable<ConnectionsOut>;
|
|
191
|
+
/**
|
|
192
|
+
* Retrieves transaction logs based on the provided query parameters.
|
|
193
|
+
*
|
|
194
|
+
* @param {QueryParams} params - Query parameters for filtering, pagination, and order.
|
|
195
|
+
* @returns {Observable<TransactionLogsOut>} The list of transaction logs and total count.
|
|
196
|
+
*/
|
|
197
|
+
getTransactionLogs(params: QueryParams): Observable<TransactionLogsOut>;
|
|
198
|
+
/**
|
|
199
|
+
* Starts an asynchronous Excel generation for all transaction logs matching the filters.
|
|
200
|
+
* Pass filters without page limit/offset. Response includes a transaction_id for progress tracking.
|
|
201
|
+
*
|
|
202
|
+
* @param {QueryParams} params - Filter query parameters (no pagination).
|
|
203
|
+
* @returns {Observable<TransactionLogsDownloadOut>} Observable with the export transaction id.
|
|
204
|
+
*/
|
|
205
|
+
requestTransactionLogsExcel(params: QueryParams): Observable<TransactionLogsDownloadOut>;
|
|
206
|
+
/**
|
|
207
|
+
* Downloads the generated Excel file for the given transaction id.
|
|
208
|
+
*
|
|
209
|
+
* @param {string} transactionId - Export transaction identifier.
|
|
210
|
+
* @returns {Observable<HttpResponse<ArrayBuffer>>} HTTP response with the Excel binary.
|
|
211
|
+
*/
|
|
212
|
+
getDownload(transactionId: string): Observable<HttpResponse<ArrayBuffer>>;
|
|
213
|
+
/**
|
|
214
|
+
* Cancels a pending Excel generation for the given transaction id.
|
|
215
|
+
*
|
|
216
|
+
* @param {string} transactionId - Export transaction identifier.
|
|
217
|
+
* @returns {Observable<{}>} Observable that completes when cancellation is processed.
|
|
218
|
+
*/
|
|
219
|
+
deleteFileCheck(transactionId: string): Observable<{}>;
|
|
220
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAuditsService, never>;
|
|
221
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiAuditsService>;
|
|
222
|
+
}
|
|
223
|
+
|
|
136
224
|
interface CoCustomer {
|
|
137
225
|
identification_number: string;
|
|
138
226
|
identification_type_id: number;
|
|
@@ -1323,6 +1411,26 @@ interface PriceOverrideReason extends SymfonyModel {
|
|
|
1323
1411
|
name: string;
|
|
1324
1412
|
countryId: number;
|
|
1325
1413
|
}
|
|
1414
|
+
interface UpsellingIndicator extends SymfonyModel {
|
|
1415
|
+
name: string;
|
|
1416
|
+
upsellingIndicatorMethod: UpsellingIndicatorMethod;
|
|
1417
|
+
countryIds: UpsellingIndicatorCountry[];
|
|
1418
|
+
productIds: UpsellingIndicatorProduct[];
|
|
1419
|
+
flagName: string;
|
|
1420
|
+
flagColor: string;
|
|
1421
|
+
flagTextColor: string;
|
|
1422
|
+
}
|
|
1423
|
+
interface UpsellingIndicatorCountry extends ApiModel {
|
|
1424
|
+
name: string;
|
|
1425
|
+
}
|
|
1426
|
+
interface UpsellingIndicatorProduct extends ApiModel {
|
|
1427
|
+
globalCode: string;
|
|
1428
|
+
globalName: string;
|
|
1429
|
+
}
|
|
1430
|
+
interface UpsellingIndicatorMethod extends SymfonyModel {
|
|
1431
|
+
code: string;
|
|
1432
|
+
name: string;
|
|
1433
|
+
}
|
|
1326
1434
|
|
|
1327
1435
|
type OperationTypesOut = {
|
|
1328
1436
|
total: number;
|
|
@@ -1468,6 +1576,10 @@ type ProductIn = {
|
|
|
1468
1576
|
localName: string;
|
|
1469
1577
|
isDocument: boolean;
|
|
1470
1578
|
};
|
|
1579
|
+
type ProductsOut = {
|
|
1580
|
+
products: Product[];
|
|
1581
|
+
total: number;
|
|
1582
|
+
};
|
|
1471
1583
|
type ProductOut = {
|
|
1472
1584
|
product: Product;
|
|
1473
1585
|
};
|
|
@@ -1594,6 +1706,30 @@ type ExportReasonTypesOut = {
|
|
|
1594
1706
|
type ExportReasonOut = {
|
|
1595
1707
|
exportReason: ExportReason;
|
|
1596
1708
|
};
|
|
1709
|
+
type UpsellingIndicatorsOut = {
|
|
1710
|
+
total: number;
|
|
1711
|
+
upsellingIndicators: UpsellingIndicator[];
|
|
1712
|
+
};
|
|
1713
|
+
type UpsellingIndicatorOut = {
|
|
1714
|
+
upsellingIndicator: UpsellingIndicator;
|
|
1715
|
+
};
|
|
1716
|
+
type UpsellingIndicatorIn = {
|
|
1717
|
+
name: string;
|
|
1718
|
+
upsellingIndicatorMethod: number;
|
|
1719
|
+
flagName: string;
|
|
1720
|
+
flagTextColor: string;
|
|
1721
|
+
flagColor: string;
|
|
1722
|
+
countryIds: number[];
|
|
1723
|
+
productIds: number[];
|
|
1724
|
+
isActive: boolean;
|
|
1725
|
+
};
|
|
1726
|
+
type UpsellingIndicatorMethodsOut = {
|
|
1727
|
+
total: number;
|
|
1728
|
+
upsellingIndicatorMethods: UpsellingIndicatorMethod[];
|
|
1729
|
+
};
|
|
1730
|
+
type UpsellingIndicatorMethodOut = {
|
|
1731
|
+
upsellingIndicatorMethod: UpsellingIndicatorMethod;
|
|
1732
|
+
};
|
|
1597
1733
|
|
|
1598
1734
|
declare class ApiCatalogsService {
|
|
1599
1735
|
private environments;
|
|
@@ -1859,6 +1995,13 @@ declare class ApiCatalogsService {
|
|
|
1859
1995
|
* @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
|
|
1860
1996
|
*/
|
|
1861
1997
|
pathGenericFolio(id: number, body: Partial<GenericFolioIn>): Observable<GenericFolioOut>;
|
|
1998
|
+
/**
|
|
1999
|
+
* Retrieves the list of products.
|
|
2000
|
+
*
|
|
2001
|
+
* @param params Query parameters used to filter or paginate the products.
|
|
2002
|
+
* @returns An observable containing the list of products.
|
|
2003
|
+
*/
|
|
2004
|
+
getProducts(params: QueryParams): Observable<ProductsOut>;
|
|
1862
2005
|
/**
|
|
1863
2006
|
* Retrieves a product by its unique identifier.
|
|
1864
2007
|
*
|
|
@@ -2157,6 +2300,59 @@ declare class ApiCatalogsService {
|
|
|
2157
2300
|
* @returns An Observable that emits the export reason types data
|
|
2158
2301
|
*/
|
|
2159
2302
|
getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
|
|
2303
|
+
/**
|
|
2304
|
+
* Retrieves the list of upselling indicators.
|
|
2305
|
+
* @param params - Query parameters used to filter or paginate the results
|
|
2306
|
+
* @returns An Observable that emits the upselling indicators and total count
|
|
2307
|
+
*/
|
|
2308
|
+
getUpsellingIndicators(params: QueryParams): Observable<UpsellingIndicatorsOut>;
|
|
2309
|
+
/**
|
|
2310
|
+
* Retrieves an upselling indicator by its ID.
|
|
2311
|
+
*
|
|
2312
|
+
* @param id Unique identifier of the upselling indicator.
|
|
2313
|
+
* @returns Observable containing the requested upselling indicator.
|
|
2314
|
+
*/
|
|
2315
|
+
getUpsellingIndicator(id: number): Observable<UpsellingIndicatorOut>;
|
|
2316
|
+
/**
|
|
2317
|
+
* Creates a new upselling indicator.
|
|
2318
|
+
* @param body - Upselling indicator data
|
|
2319
|
+
* @returns An Observable that emits the created upselling indicator
|
|
2320
|
+
*/
|
|
2321
|
+
postUpsellingIndicator(body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
|
|
2322
|
+
/**
|
|
2323
|
+
* Updates an existing upselling indicator.
|
|
2324
|
+
* @param id - Identifier of the upselling indicator to update
|
|
2325
|
+
* @param body - Updated upselling indicator data
|
|
2326
|
+
* @returns An Observable that emits the updated upselling indicator
|
|
2327
|
+
*/
|
|
2328
|
+
putUpsellingIndicator(id: number, body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
|
|
2329
|
+
/**
|
|
2330
|
+
* Deletes an upselling indicator by its identifier.
|
|
2331
|
+
* @param id - Identifier of the upselling indicator to delete
|
|
2332
|
+
* @returns An Observable that emits the operation result
|
|
2333
|
+
*/
|
|
2334
|
+
deleteUpsellingIndicator(id: number): Observable<{}>;
|
|
2335
|
+
/**
|
|
2336
|
+
* Updates the active status of an upselling indicator.
|
|
2337
|
+
* @param id - Identifier of the upselling indicator
|
|
2338
|
+
* @param isActive - Indicates whether the upselling indicator should be active or inactive
|
|
2339
|
+
* @returns An Observable that emits the operation result
|
|
2340
|
+
*/
|
|
2341
|
+
patchUpsellingIndicator(id: number, isActive: boolean): Observable<{}>;
|
|
2342
|
+
/**
|
|
2343
|
+
* Retrieves the list of upselling indicator methods.
|
|
2344
|
+
*
|
|
2345
|
+
* @param params Query parameters used to filter, paginate, or sort the methods.
|
|
2346
|
+
* @returns Observable containing the upselling indicator methods.
|
|
2347
|
+
*/
|
|
2348
|
+
getUpsellingIndicatorMethods(params: QueryParams): Observable<UpsellingIndicatorMethodsOut>;
|
|
2349
|
+
/**
|
|
2350
|
+
* Retrieves an upselling indicator method by its ID.
|
|
2351
|
+
*
|
|
2352
|
+
* @param id Unique identifier of the upselling indicator method.
|
|
2353
|
+
* @returns Observable containing the requested upselling indicator method.
|
|
2354
|
+
*/
|
|
2355
|
+
getUpsellingIndicatorMethod(id: number): Observable<UpsellingIndicatorMethodOut>;
|
|
2160
2356
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
|
|
2161
2357
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
2162
2358
|
}
|
|
@@ -2734,15 +2930,30 @@ interface AccountWithDefault extends Account {
|
|
|
2734
2930
|
}
|
|
2735
2931
|
interface AccountWithLocations extends Account {
|
|
2736
2932
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2737
|
-
country:
|
|
2933
|
+
country: CountryAccount;
|
|
2738
2934
|
}
|
|
2739
2935
|
interface PostalCodeFormat extends SymfonyModel {
|
|
2740
2936
|
format: string;
|
|
2741
2937
|
significantChars: number;
|
|
2742
2938
|
regex: string;
|
|
2743
2939
|
}
|
|
2744
|
-
interface
|
|
2940
|
+
interface CountryAccount {
|
|
2941
|
+
id: number;
|
|
2942
|
+
code: string;
|
|
2943
|
+
name: string;
|
|
2944
|
+
timezone: string;
|
|
2945
|
+
hasImportService: boolean;
|
|
2946
|
+
isActive: boolean;
|
|
2947
|
+
isoCode: string;
|
|
2948
|
+
codePhone: string;
|
|
2949
|
+
phoneDigits: string | null;
|
|
2950
|
+
createdAt: string;
|
|
2951
|
+
updatedAt: string;
|
|
2952
|
+
locationType: LocationType;
|
|
2953
|
+
unit: Unit;
|
|
2954
|
+
locationTypeFields: LocationTypeFields;
|
|
2745
2955
|
postalCodeFormats: PostalCodeFormat[];
|
|
2956
|
+
translations: Translations;
|
|
2746
2957
|
}
|
|
2747
2958
|
|
|
2748
2959
|
type LocationEmployeesOut = {
|
|
@@ -3943,7 +4154,7 @@ declare class ApiCompaniesService {
|
|
|
3943
4154
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
3944
4155
|
}
|
|
3945
4156
|
|
|
3946
|
-
declare enum
|
|
4157
|
+
declare enum CustomerType$1 {
|
|
3947
4158
|
SHIPPER = "SP",
|
|
3948
4159
|
CONSIGNEE = "RV",
|
|
3949
4160
|
IMPORTER = "IP",
|
|
@@ -3990,180 +4201,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
3990
4201
|
stock: number;
|
|
3991
4202
|
}
|
|
3992
4203
|
|
|
3993
|
-
interface ShipmentComposition extends
|
|
4204
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
4205
|
+
currencyCode: string;
|
|
4206
|
+
extraCharges: ExtraChargeComposition[];
|
|
4207
|
+
globalProductCode: string;
|
|
4208
|
+
globalProductName: string;
|
|
4209
|
+
localProductCode: string;
|
|
4210
|
+
localProductName: string;
|
|
4211
|
+
trackingNumber: string;
|
|
4212
|
+
contentDescription: string;
|
|
4213
|
+
realWeight: number;
|
|
4214
|
+
piecesNumber: number;
|
|
4215
|
+
productSubtotal: number;
|
|
4216
|
+
productTax: number;
|
|
4217
|
+
productTotal: number;
|
|
4218
|
+
declaredValue: number;
|
|
4219
|
+
insuredValue: number;
|
|
3994
4220
|
accountNumber: string;
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
commercialExchangeRate: number;
|
|
3998
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
4221
|
+
userId: number;
|
|
4222
|
+
installationId: number;
|
|
3999
4223
|
companyCountryId: number;
|
|
4000
|
-
|
|
4224
|
+
productId: number;
|
|
4001
4225
|
countryReferenceCurrencyId: number;
|
|
4002
|
-
|
|
4003
|
-
declaredCurrency: string | null;
|
|
4004
|
-
declaredValue: number;
|
|
4005
|
-
deliveryDateTime: string;
|
|
4006
|
-
destinationFacilityCode: string;
|
|
4007
|
-
destinationServiceAreaCode: string;
|
|
4008
|
-
discountModelId: number | null;
|
|
4009
|
-
discountModelType: string | null;
|
|
4010
|
-
discountName: string | null;
|
|
4011
|
-
discountPercentage: number | null;
|
|
4012
|
-
discountReference: string | null;
|
|
4013
|
-
discountValue: number | null;
|
|
4014
|
-
dutiesAndTaxesAccountNumber: string | null;
|
|
4015
|
-
einNumber: string | null;
|
|
4016
|
-
exportReason: ExportReason | null;
|
|
4017
|
-
exportReasonId: number | null;
|
|
4018
|
-
extraFields: Record<string, unknown>;
|
|
4226
|
+
commercialExchangeRate: number;
|
|
4019
4227
|
ibsExchangeRate: number;
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4228
|
+
shipmentStatusId: number;
|
|
4229
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
4230
|
+
shipmentPieces: ShipmentPieces[];
|
|
4231
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
4232
|
+
shipmentGsop: ShipmentGsop;
|
|
4233
|
+
additionalData: AdditionalData;
|
|
4234
|
+
transactionId: string;
|
|
4235
|
+
requiresPayment: boolean;
|
|
4236
|
+
originServiceAreaCode: string;
|
|
4237
|
+
originFacilityCode: string;
|
|
4238
|
+
destinationServiceAreaCode: string;
|
|
4239
|
+
destinationFacilityCode: string;
|
|
4240
|
+
productTaxes: string[];
|
|
4026
4241
|
isInspected: boolean;
|
|
4242
|
+
extraFields: {
|
|
4243
|
+
[key: string]: string | number | boolean;
|
|
4244
|
+
};
|
|
4245
|
+
shipmentContentTypeId: number;
|
|
4246
|
+
commercialInvoice: CommercialInvoice;
|
|
4247
|
+
shipmentScopeId: number;
|
|
4248
|
+
shipmentGroupId: number;
|
|
4249
|
+
product: string[];
|
|
4250
|
+
declaredCurrency: string;
|
|
4251
|
+
insuredCurrency: string;
|
|
4252
|
+
deliveryDateTime: string;
|
|
4253
|
+
date: string;
|
|
4254
|
+
promotionCode: string;
|
|
4255
|
+
priceOverrideApproverId: number;
|
|
4256
|
+
priceOverrideReasonId: number;
|
|
4257
|
+
customs: Customs;
|
|
4258
|
+
exportReasonId: number;
|
|
4259
|
+
exportReason: string[];
|
|
4260
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4261
|
+
questionId: number;
|
|
4027
4262
|
isInsured: boolean;
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4263
|
+
itnNumber: string;
|
|
4264
|
+
einNumber: string;
|
|
4265
|
+
otherAccountNumber: string;
|
|
4266
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4267
|
+
discountId: string;
|
|
4268
|
+
discountReference: string;
|
|
4269
|
+
totalPublishedValue: number;
|
|
4270
|
+
totalPartnerAccountValue: number;
|
|
4271
|
+
isMarketingConsent: boolean;
|
|
4272
|
+
isTermCondition: boolean;
|
|
4273
|
+
isDocument: boolean;
|
|
4274
|
+
isCash: boolean;
|
|
4031
4275
|
isPriceOverride: boolean;
|
|
4032
4276
|
isProforma: boolean;
|
|
4033
4277
|
isPromotionCode: boolean;
|
|
4034
4278
|
isRetailRate: boolean;
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
originFacilityCode: string;
|
|
4039
|
-
originServiceAreaCode: string;
|
|
4040
|
-
otherAccountNumber: string | null;
|
|
4041
|
-
piecesNumber: number;
|
|
4042
|
-
priceOverrideApproverId: number | null;
|
|
4043
|
-
priceOverrideReasonId: number | null;
|
|
4044
|
-
product: ShipmentProductComposition;
|
|
4045
|
-
productId: number;
|
|
4046
|
-
productSubtotal: number;
|
|
4047
|
-
productTax: number;
|
|
4048
|
-
productTaxes: TaxComposition[];
|
|
4049
|
-
productTotal: number;
|
|
4050
|
-
promotionCode: string | null;
|
|
4051
|
-
realWeight: number;
|
|
4052
|
-
requiresPayment: boolean;
|
|
4053
|
-
shipmentAddresses: ShipmentAddressComposition[];
|
|
4054
|
-
shipmentBookPickup: ShipmentBookPickup | null;
|
|
4055
|
-
shipmentContentTypeId: number;
|
|
4056
|
-
shipmentExtraCharges: ExtraChargeComposition[];
|
|
4057
|
-
shipmentGroupId: number;
|
|
4058
|
-
shipmentGsop: ShipmentGsopComposition | null;
|
|
4059
|
-
shipmentPieces: ShipmentPieceComposition[];
|
|
4060
|
-
shipmentScopeId: number;
|
|
4061
|
-
shipmentStatusId: number;
|
|
4062
|
-
shipmentTaxes: TaxComposition[];
|
|
4063
|
-
shipmentWithholding: unknown | null;
|
|
4064
|
-
subtotal: number;
|
|
4065
|
-
tax: number;
|
|
4066
|
-
total: number;
|
|
4067
|
-
totalPartnerAccountValue: number | null;
|
|
4068
|
-
totalPublishedValue: number | null;
|
|
4069
|
-
trackingNumber: string;
|
|
4070
|
-
transactionId: string;
|
|
4071
|
-
userId: number;
|
|
4072
|
-
customs: {
|
|
4073
|
-
ignoreValidation: boolean;
|
|
4074
|
-
criteria: {
|
|
4075
|
-
origin: string;
|
|
4076
|
-
destination: string;
|
|
4077
|
-
dutiable: boolean;
|
|
4078
|
-
declaredValue: number | null;
|
|
4079
|
-
};
|
|
4080
|
-
rules: {
|
|
4081
|
-
id: number;
|
|
4082
|
-
level: string;
|
|
4083
|
-
attributes: {
|
|
4084
|
-
id: number;
|
|
4085
|
-
field: string;
|
|
4086
|
-
dhlCode: string;
|
|
4087
|
-
values: {
|
|
4088
|
-
shipment: string;
|
|
4089
|
-
customer: CustomerRoleType;
|
|
4090
|
-
invoiceHeader: string;
|
|
4091
|
-
invoiceItem: string[];
|
|
4092
|
-
};
|
|
4093
|
-
}[];
|
|
4094
|
-
}[];
|
|
4095
|
-
};
|
|
4096
|
-
additionalData: {
|
|
4097
|
-
countryCode: string;
|
|
4098
|
-
productGlobalCode: string;
|
|
4099
|
-
productLocalCode: string;
|
|
4100
|
-
currencyCode: string;
|
|
4101
|
-
userUsername: string;
|
|
4102
|
-
locationFacilityCode: string;
|
|
4103
|
-
shipmentStatusCode: string;
|
|
4104
|
-
awbTypeCode?: string;
|
|
4105
|
-
shipmentTypeCode?: string;
|
|
4106
|
-
};
|
|
4279
|
+
isOtherOrigin: boolean;
|
|
4280
|
+
isOccurs: boolean;
|
|
4281
|
+
isDutiesAndTaxes: boolean;
|
|
4107
4282
|
}
|
|
4108
|
-
interface ExtraChargeComposition
|
|
4283
|
+
interface ExtraChargeComposition {
|
|
4284
|
+
globalServiceCode: string;
|
|
4285
|
+
localServiceCode: string;
|
|
4286
|
+
globalServiceName: string;
|
|
4287
|
+
localServiceName: string;
|
|
4109
4288
|
subtotal: number;
|
|
4110
4289
|
tax: number;
|
|
4111
4290
|
total: number;
|
|
4112
|
-
|
|
4113
|
-
taxes: TaxComposition[];
|
|
4114
|
-
extraChargeGroup: string;
|
|
4115
|
-
extraChargeCode: string;
|
|
4116
|
-
extraChargeName: string;
|
|
4117
|
-
extraChargeIsDiscount: boolean;
|
|
4291
|
+
taxes: Tax[];
|
|
4118
4292
|
}
|
|
4119
|
-
interface
|
|
4293
|
+
interface Tax {
|
|
4120
4294
|
code: string;
|
|
4121
4295
|
percent: number;
|
|
4122
4296
|
baseAmount: number;
|
|
4123
4297
|
amount: number;
|
|
4124
4298
|
}
|
|
4125
|
-
interface
|
|
4299
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4126
4300
|
index: number;
|
|
4127
|
-
identificationTypeId: number
|
|
4128
|
-
identificationNumber: string
|
|
4301
|
+
identificationTypeId: number;
|
|
4302
|
+
identificationNumber: string;
|
|
4129
4303
|
companyName: string;
|
|
4130
4304
|
fullName: string;
|
|
4131
4305
|
email: string;
|
|
4132
4306
|
phoneCode: string;
|
|
4133
4307
|
phoneNumber: string;
|
|
4134
|
-
postalCode: string
|
|
4135
|
-
stateCode: string
|
|
4136
|
-
stateId: number | null;
|
|
4308
|
+
postalCode: string;
|
|
4309
|
+
stateCode: string;
|
|
4137
4310
|
countyName: string;
|
|
4138
4311
|
cityName: string;
|
|
4139
4312
|
addressLine1: string;
|
|
4140
|
-
addressLine2: string
|
|
4141
|
-
addressLine3: string
|
|
4313
|
+
addressLine2: string;
|
|
4314
|
+
addressLine3: string;
|
|
4142
4315
|
countryId: number;
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4152
|
-
identificationType?: IdentificationType | null;
|
|
4153
|
-
}
|
|
4154
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4316
|
+
identificationType: IdentificationTypeComposition;
|
|
4317
|
+
roleType: CustomerType$1;
|
|
4318
|
+
}
|
|
4319
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4320
|
+
name: string;
|
|
4321
|
+
companyCountryId: number;
|
|
4322
|
+
}
|
|
4323
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4155
4324
|
number: number;
|
|
4156
4325
|
height: number;
|
|
4157
4326
|
length: number;
|
|
4158
4327
|
width: number;
|
|
4159
4328
|
realWeight: number;
|
|
4160
4329
|
volumetricWeight: number;
|
|
4161
|
-
dataIdentifier: string
|
|
4330
|
+
dataIdentifier: string;
|
|
4162
4331
|
trackingNumber: string;
|
|
4163
|
-
licensePlateBarCode: string
|
|
4164
|
-
|
|
4332
|
+
licensePlateBarCode: string;
|
|
4333
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4165
4334
|
}
|
|
4166
|
-
interface
|
|
4335
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4167
4336
|
supplyId: number;
|
|
4168
4337
|
quantity: number;
|
|
4169
4338
|
subtotal: number;
|
|
@@ -4174,25 +4343,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4174
4343
|
description: string;
|
|
4175
4344
|
supply: Supply;
|
|
4176
4345
|
}
|
|
4177
|
-
interface
|
|
4178
|
-
globalCode: string;
|
|
4179
|
-
localCode: string;
|
|
4180
|
-
globalName: string;
|
|
4181
|
-
localName: string;
|
|
4182
|
-
isDocument: boolean;
|
|
4183
|
-
}
|
|
4184
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4346
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4185
4347
|
documentTypeId: number;
|
|
4186
4348
|
tradingTransactionTypeId: number;
|
|
4187
4349
|
documentFunctionId: number;
|
|
4188
4350
|
number: string;
|
|
4189
4351
|
remarks: string;
|
|
4190
|
-
items:
|
|
4352
|
+
items: Item[];
|
|
4191
4353
|
documentType: DocumentTypeComposition;
|
|
4192
4354
|
tradingTransactionType: TradingTransactionType;
|
|
4193
|
-
documentFunction:
|
|
4355
|
+
documentFunction: DocumentFunction;
|
|
4194
4356
|
}
|
|
4195
|
-
interface
|
|
4357
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4196
4358
|
description: string;
|
|
4197
4359
|
quantity: number;
|
|
4198
4360
|
quantityUnitId: number;
|
|
@@ -4201,31 +4363,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4201
4363
|
realWeight: number;
|
|
4202
4364
|
commodityId: number;
|
|
4203
4365
|
quantityUnit: QuantityUnit;
|
|
4204
|
-
manufactureCountry:
|
|
4205
|
-
id: string;
|
|
4206
|
-
code: string;
|
|
4207
|
-
name: string;
|
|
4208
|
-
locationType: string[];
|
|
4209
|
-
unit: string[];
|
|
4210
|
-
timezone: string;
|
|
4211
|
-
hasImportService: boolean;
|
|
4212
|
-
isActive: boolean;
|
|
4213
|
-
regions: string[];
|
|
4214
|
-
zones: string[];
|
|
4215
|
-
isoCode: string;
|
|
4216
|
-
};
|
|
4366
|
+
manufactureCountry: ManufactureCountry;
|
|
4217
4367
|
commodity: Commodity;
|
|
4218
4368
|
}
|
|
4369
|
+
interface ManufactureCountry {
|
|
4370
|
+
id: string;
|
|
4371
|
+
code: string;
|
|
4372
|
+
name: string;
|
|
4373
|
+
locationType: string[];
|
|
4374
|
+
unit: string[];
|
|
4375
|
+
timezone: string;
|
|
4376
|
+
hasImportService: boolean;
|
|
4377
|
+
isActive: boolean;
|
|
4378
|
+
regions: string[];
|
|
4379
|
+
zones: string[];
|
|
4380
|
+
isoCode: string;
|
|
4381
|
+
}
|
|
4219
4382
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4220
4383
|
code: string;
|
|
4221
4384
|
name: string;
|
|
4222
4385
|
description: string;
|
|
4223
4386
|
}
|
|
4224
|
-
interface
|
|
4387
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4225
4388
|
code: string;
|
|
4226
4389
|
name: string;
|
|
4227
4390
|
}
|
|
4228
|
-
interface
|
|
4391
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4229
4392
|
productContentCode: string;
|
|
4230
4393
|
originServiceAreaCode: string;
|
|
4231
4394
|
destinationServiceAreaCode: string;
|
|
@@ -4233,6 +4396,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4233
4396
|
awbBarCode: string;
|
|
4234
4397
|
dhlRoutingBarCode: string;
|
|
4235
4398
|
}
|
|
4399
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4400
|
+
subtotal: number;
|
|
4401
|
+
tax: number;
|
|
4402
|
+
total: number;
|
|
4403
|
+
extraChargeId: number;
|
|
4404
|
+
extraChargeCode: string;
|
|
4405
|
+
}
|
|
4406
|
+
interface AdditionalData {
|
|
4407
|
+
awbTypeCode: string;
|
|
4408
|
+
countryCode: string;
|
|
4409
|
+
shipmentTypeCode: string;
|
|
4410
|
+
productGlobalCode: string;
|
|
4411
|
+
productLocalCode: string;
|
|
4412
|
+
currencyCode: string;
|
|
4413
|
+
userUsername: string;
|
|
4414
|
+
locationFacilityCode: string;
|
|
4415
|
+
}
|
|
4416
|
+
interface Customs {
|
|
4417
|
+
criteria: Criteria;
|
|
4418
|
+
rules: Rules[];
|
|
4419
|
+
}
|
|
4420
|
+
interface Criteria {
|
|
4421
|
+
origin: string;
|
|
4422
|
+
destination: string;
|
|
4423
|
+
dutiable: boolean;
|
|
4424
|
+
declaredValue: number;
|
|
4425
|
+
}
|
|
4426
|
+
interface Rules {
|
|
4427
|
+
id: number;
|
|
4428
|
+
level: string;
|
|
4429
|
+
attributes: Attributes[];
|
|
4430
|
+
}
|
|
4431
|
+
interface Attributes {
|
|
4432
|
+
id: number;
|
|
4433
|
+
field: string;
|
|
4434
|
+
dhlCode: string;
|
|
4435
|
+
values: Values;
|
|
4436
|
+
}
|
|
4437
|
+
interface Values {
|
|
4438
|
+
shipment: string;
|
|
4439
|
+
customer: CustomerComposition;
|
|
4440
|
+
invoiceHeader: string;
|
|
4441
|
+
invoiceItem: string[];
|
|
4442
|
+
}
|
|
4443
|
+
interface CustomerComposition {
|
|
4444
|
+
SP: string;
|
|
4445
|
+
RV: string;
|
|
4446
|
+
}
|
|
4236
4447
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4237
4448
|
pickupDate: string;
|
|
4238
4449
|
readyByTime: string;
|
|
@@ -4246,10 +4457,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4246
4457
|
type ShipmentOut = {
|
|
4247
4458
|
shipment: ShipmentComposition;
|
|
4248
4459
|
};
|
|
4249
|
-
type ShipmentsOut = {
|
|
4250
|
-
shipments: ShipmentComposition[];
|
|
4251
|
-
total: number;
|
|
4252
|
-
};
|
|
4253
4460
|
type CompositionCountryReferencesOut = {
|
|
4254
4461
|
country_references: CountryReference[];
|
|
4255
4462
|
total: number;
|
|
@@ -4271,13 +4478,6 @@ declare class ApiCompositionService {
|
|
|
4271
4478
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4272
4479
|
*/
|
|
4273
4480
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
4274
|
-
/**
|
|
4275
|
-
* Retrieves shipments based on the provided query parameters.
|
|
4276
|
-
*
|
|
4277
|
-
* @param {QueryParams} params - The query parameters for the API request.
|
|
4278
|
-
* @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
|
|
4279
|
-
*/
|
|
4280
|
-
getShipments(params: QueryParams): Observable<ShipmentsOut>;
|
|
4281
4481
|
/**
|
|
4282
4482
|
* Fetches the country references data based on the provided query parameters.
|
|
4283
4483
|
*
|
|
@@ -5227,6 +5427,170 @@ interface Operation extends LaravelModel {
|
|
|
5227
5427
|
}[];
|
|
5228
5428
|
};
|
|
5229
5429
|
}
|
|
5430
|
+
interface TaxToSignaturePage extends ActiveLessLaravelModel {
|
|
5431
|
+
code: string;
|
|
5432
|
+
percent: number;
|
|
5433
|
+
base_amount: number;
|
|
5434
|
+
amount: number;
|
|
5435
|
+
}
|
|
5436
|
+
interface ExtraChargeTax {
|
|
5437
|
+
code: string;
|
|
5438
|
+
percent: number;
|
|
5439
|
+
base_amount: number;
|
|
5440
|
+
amount: number;
|
|
5441
|
+
}
|
|
5442
|
+
interface ExtraChargeToSignaturePage {
|
|
5443
|
+
global_service_code: string;
|
|
5444
|
+
local_service_code: string;
|
|
5445
|
+
global_service_name: string;
|
|
5446
|
+
local_service_name: string;
|
|
5447
|
+
is_discount: boolean;
|
|
5448
|
+
subtotal: number;
|
|
5449
|
+
tax: number;
|
|
5450
|
+
total: number;
|
|
5451
|
+
taxes: ExtraChargeTax[];
|
|
5452
|
+
}
|
|
5453
|
+
interface AddressToSignaturePage {
|
|
5454
|
+
role_type: CustomerRoleType;
|
|
5455
|
+
identification_type_name: string | null;
|
|
5456
|
+
identification_number: string | null;
|
|
5457
|
+
company_name: string;
|
|
5458
|
+
full_name: string;
|
|
5459
|
+
email: string;
|
|
5460
|
+
phone_code: string;
|
|
5461
|
+
phone_number: string;
|
|
5462
|
+
postal_code: string | null;
|
|
5463
|
+
state_code: string | null;
|
|
5464
|
+
county_name: string | null;
|
|
5465
|
+
city_name: string;
|
|
5466
|
+
address_line_1: string;
|
|
5467
|
+
address_line_2: string | null;
|
|
5468
|
+
address_line_3: string | null;
|
|
5469
|
+
country_name: string;
|
|
5470
|
+
state: string | null;
|
|
5471
|
+
business_party_trader_type_name: string | null;
|
|
5472
|
+
}
|
|
5473
|
+
interface PiecesToSignaturePage {
|
|
5474
|
+
number: number;
|
|
5475
|
+
height: number;
|
|
5476
|
+
length: number;
|
|
5477
|
+
width: number;
|
|
5478
|
+
real_weight: number;
|
|
5479
|
+
volumetric_weight: number;
|
|
5480
|
+
tracking_number: string;
|
|
5481
|
+
shipment_piece_supplies: PieceSupplyToSignaturePage[];
|
|
5482
|
+
}
|
|
5483
|
+
interface PieceSupplyToSignaturePage {
|
|
5484
|
+
quantity: number;
|
|
5485
|
+
subtotal: number;
|
|
5486
|
+
tax_base: number;
|
|
5487
|
+
tax_percent: number;
|
|
5488
|
+
tax: number;
|
|
5489
|
+
total: number;
|
|
5490
|
+
supply_name: string;
|
|
5491
|
+
}
|
|
5492
|
+
interface CommercialInvoiceItemToSignaturePage {
|
|
5493
|
+
description: string;
|
|
5494
|
+
quantity: number;
|
|
5495
|
+
quantity_unit_name: string;
|
|
5496
|
+
subtotal: number;
|
|
5497
|
+
manufacture_country_name: string;
|
|
5498
|
+
real_weight: number;
|
|
5499
|
+
commodity_name: string | null;
|
|
5500
|
+
}
|
|
5501
|
+
interface CommercialInvoiceToSignaturePage {
|
|
5502
|
+
document_type_name: string;
|
|
5503
|
+
trading_transaction_type_name: string | null;
|
|
5504
|
+
number: number | null;
|
|
5505
|
+
remarks: string | null;
|
|
5506
|
+
items: CommercialInvoiceItemToSignaturePage[];
|
|
5507
|
+
}
|
|
5508
|
+
interface BookPickupToSignaturePage {
|
|
5509
|
+
pickup_date: string | null;
|
|
5510
|
+
ready_by_time: string | null;
|
|
5511
|
+
close_time: string | null;
|
|
5512
|
+
confirmation_number: string | null;
|
|
5513
|
+
package_location_name: string | null;
|
|
5514
|
+
remarks: string | null;
|
|
5515
|
+
}
|
|
5516
|
+
interface CustomsAttribute {
|
|
5517
|
+
field: string | null;
|
|
5518
|
+
dhl_code: string | null;
|
|
5519
|
+
input_label: string;
|
|
5520
|
+
values: CustomsAttributeValues;
|
|
5521
|
+
}
|
|
5522
|
+
interface CustomsAttributeValues {
|
|
5523
|
+
shipment?: string;
|
|
5524
|
+
customer?: Record<string, string>;
|
|
5525
|
+
invoiceHeader?: string;
|
|
5526
|
+
invoiceItem?: string[];
|
|
5527
|
+
}
|
|
5528
|
+
interface CustomsRule {
|
|
5529
|
+
level: string;
|
|
5530
|
+
attributes: CustomsAttribute[];
|
|
5531
|
+
}
|
|
5532
|
+
interface ShipmentCustoms {
|
|
5533
|
+
rules: CustomsRule[];
|
|
5534
|
+
}
|
|
5535
|
+
interface ShipmentDataToSignaturePage {
|
|
5536
|
+
currency_code: string;
|
|
5537
|
+
decimal_point: number;
|
|
5538
|
+
decimal_separator: string;
|
|
5539
|
+
thousands_separator: string;
|
|
5540
|
+
tracking_number: string;
|
|
5541
|
+
content_description: string;
|
|
5542
|
+
pieces_number: number;
|
|
5543
|
+
global_product_code: string;
|
|
5544
|
+
global_product_name: string;
|
|
5545
|
+
local_product_code: string;
|
|
5546
|
+
local_product_name: string;
|
|
5547
|
+
delivery_date_time: string;
|
|
5548
|
+
is_document: boolean;
|
|
5549
|
+
is_insured: boolean;
|
|
5550
|
+
declared_value: number | null;
|
|
5551
|
+
insured_value: number | null;
|
|
5552
|
+
declared_currency: string | null;
|
|
5553
|
+
insured_currency: string | null;
|
|
5554
|
+
promotion_code: string | null;
|
|
5555
|
+
export_reason_name: string | null;
|
|
5556
|
+
product_subtotal: number;
|
|
5557
|
+
product_tax: number;
|
|
5558
|
+
product_total: number;
|
|
5559
|
+
subtotal: number;
|
|
5560
|
+
tax: number;
|
|
5561
|
+
total: number;
|
|
5562
|
+
product_taxes: TaxToSignaturePage[];
|
|
5563
|
+
shipment_taxes: TaxToSignaturePage[];
|
|
5564
|
+
extra_charges_mandatory: ExtraChargeToSignaturePage[];
|
|
5565
|
+
extra_charges_optional: ExtraChargeToSignaturePage[];
|
|
5566
|
+
extra_charges_aggregated: ExtraChargeToSignaturePage[];
|
|
5567
|
+
shipment_addresses: AddressToSignaturePage[];
|
|
5568
|
+
shipment_pieces: PiecesToSignaturePage[];
|
|
5569
|
+
commercial_invoice: CommercialInvoiceToSignaturePage | null;
|
|
5570
|
+
shipment_book_pickup: BookPickupToSignaturePage | null;
|
|
5571
|
+
customs: ShipmentCustoms | null;
|
|
5572
|
+
created_at: string;
|
|
5573
|
+
updated_at: string;
|
|
5574
|
+
}
|
|
5575
|
+
interface SignaturePage {
|
|
5576
|
+
terms_and_condition: string;
|
|
5577
|
+
marketing_consent: string | null;
|
|
5578
|
+
marketing_consent_mandatory: boolean;
|
|
5579
|
+
additional_verbiage: string | null;
|
|
5580
|
+
}
|
|
5581
|
+
interface SignaturePageAnswers {
|
|
5582
|
+
terms_and_condition: boolean;
|
|
5583
|
+
marketing_consent: boolean | null;
|
|
5584
|
+
additional_verbiage: boolean | null;
|
|
5585
|
+
}
|
|
5586
|
+
interface SignaturePageConfirmation extends ActiveLessLaravelModel {
|
|
5587
|
+
shipment_id: number;
|
|
5588
|
+
code: string;
|
|
5589
|
+
status: string;
|
|
5590
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5591
|
+
signature_page: SignaturePage;
|
|
5592
|
+
expiry: number;
|
|
5593
|
+
}
|
|
5230
5594
|
|
|
5231
5595
|
type DeliveryConfirmationGenerateOut = {
|
|
5232
5596
|
code: string;
|
|
@@ -5262,6 +5626,29 @@ type DeliveryConfirmationIn = {
|
|
|
5262
5626
|
type DeliveryConfirmationSearchOut = {
|
|
5263
5627
|
operation: Operation;
|
|
5264
5628
|
};
|
|
5629
|
+
type SignaturePageConfirmationGenerateOut = {
|
|
5630
|
+
code: string;
|
|
5631
|
+
};
|
|
5632
|
+
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5633
|
+
type ConfirmTermsIn = {
|
|
5634
|
+
shipment_id: number;
|
|
5635
|
+
status: 'Processed' | 'Canceled';
|
|
5636
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5637
|
+
};
|
|
5638
|
+
type SignaturePageConfirmationOut = {
|
|
5639
|
+
operation: SignaturePageConfirmation;
|
|
5640
|
+
};
|
|
5641
|
+
type ShipmentSignaturePageIn = {
|
|
5642
|
+
shipment_id: number;
|
|
5643
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5644
|
+
signature_page: SignaturePage;
|
|
5645
|
+
};
|
|
5646
|
+
type ShipmentSignaturePageConfirmationIn = {
|
|
5647
|
+
shipment_id: number;
|
|
5648
|
+
status: string;
|
|
5649
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5650
|
+
otp: string;
|
|
5651
|
+
};
|
|
5265
5652
|
|
|
5266
5653
|
declare class ApiExternalOperationsService {
|
|
5267
5654
|
private http;
|
|
@@ -5278,7 +5665,7 @@ declare class ApiExternalOperationsService {
|
|
|
5278
5665
|
* Retrieves delivery confirmation details based on the provided OTP code.
|
|
5279
5666
|
*
|
|
5280
5667
|
* @param {string} otpCode - The OTP code used to search for delivery confirmation.
|
|
5281
|
-
* @return {Observable<
|
|
5668
|
+
* @return {Observable<DeliveryConfirmationSearchOut>} An observable containing the delivery confirmation data.
|
|
5282
5669
|
*/
|
|
5283
5670
|
getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
|
|
5284
5671
|
/**
|
|
@@ -5306,6 +5693,29 @@ declare class ApiExternalOperationsService {
|
|
|
5306
5693
|
* @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
|
|
5307
5694
|
*/
|
|
5308
5695
|
putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
|
|
5696
|
+
/**
|
|
5697
|
+
* Retrieves signature page confirmation information associated with an OTP code.
|
|
5698
|
+
*
|
|
5699
|
+
* @param {string} otpCode - OTP code used to search for the signature page confirmation.
|
|
5700
|
+
* @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
|
|
5701
|
+
*/
|
|
5702
|
+
getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
|
|
5703
|
+
/**
|
|
5704
|
+
* Generates a signature page confirmation request for a shipment.
|
|
5705
|
+
*
|
|
5706
|
+
* @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
|
|
5707
|
+
* @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
|
|
5708
|
+
*/
|
|
5709
|
+
postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
|
|
5710
|
+
/**
|
|
5711
|
+
* Confirms a shipment signature page using an OTP code.
|
|
5712
|
+
*
|
|
5713
|
+
* @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
|
|
5714
|
+
* @param {string} input.otp - OTP code used to validate the confirmation.
|
|
5715
|
+
* @param {...Object} input.body - Additional confirmation information sent in the request body.
|
|
5716
|
+
* @returns {Observable<{}>} An observable that emits the API response data.
|
|
5717
|
+
*/
|
|
5718
|
+
putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
|
|
5309
5719
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
|
|
5310
5720
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
|
|
5311
5721
|
}
|
|
@@ -9289,15 +9699,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
|
|
|
9289
9699
|
declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9290
9700
|
|
|
9291
9701
|
/**
|
|
9292
|
-
* Interceptor function to handle HTTP caching for GET requests
|
|
9293
|
-
*
|
|
9702
|
+
* Interceptor function to handle opt-in HTTP caching for GET requests that match
|
|
9703
|
+
* a configured `cacheRoutes` pattern. Non-matching GETs pass through uncached.
|
|
9704
|
+
* Concurrent in-flight requests for the same key are deduplicated via `shareReplay`.
|
|
9294
9705
|
*
|
|
9295
|
-
* @param {HttpRequest<
|
|
9706
|
+
* @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
|
|
9296
9707
|
* @param {HttpHandlerFn} next - The next HTTP handler function in the chain to process the request.
|
|
9297
|
-
* @return {Observable<HttpEvent<
|
|
9708
|
+
* @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
|
|
9298
9709
|
* or by invoking the next handler.
|
|
9299
9710
|
*/
|
|
9300
|
-
declare function httpCachingInterceptor(req: HttpRequest<
|
|
9711
|
+
declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9301
9712
|
|
|
9302
9713
|
declare const base64PdfToUrl: (base64: string) => string;
|
|
9303
9714
|
declare const downloadBase64Pdf: (base64: string) => Window | null;
|
|
@@ -9339,5 +9750,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9339
9750
|
[header: string]: string | string[];
|
|
9340
9751
|
};
|
|
9341
9752
|
|
|
9342
|
-
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService,
|
|
9343
|
-
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoiceComposition, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCompanies, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, ItemComposition, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, TaxComposition, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|
|
9753
|
+
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9754
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, ProductsOut, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, UpsellingIndicator, UpsellingIndicatorCountry, UpsellingIndicatorIn, UpsellingIndicatorMethod, UpsellingIndicatorMethodOut, UpsellingIndicatorMethodsOut, UpsellingIndicatorOut, UpsellingIndicatorProduct, UpsellingIndicatorsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|