@experteam-mx/ngx-services 20.9.9 → 20.10.1
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/index.d.ts
CHANGED
|
@@ -17,18 +17,34 @@ type HttpCacheRoute = {
|
|
|
17
17
|
* Represents the configuration settings for the application's environment.
|
|
18
18
|
* This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
|
|
19
19
|
*
|
|
20
|
-
*
|
|
21
|
-
* -
|
|
22
|
-
* -
|
|
23
|
-
* -
|
|
24
|
-
* -
|
|
25
|
-
* -
|
|
26
|
-
* -
|
|
27
|
-
* -
|
|
28
|
-
* -
|
|
29
|
-
* -
|
|
30
|
-
* -
|
|
31
|
-
* -
|
|
20
|
+
* Environment properties:
|
|
21
|
+
* - apiBillingCO, apiBillingDO, apiBillingGT, apiBillingMX, apiBillingPA, apiBillingSV: URLs for region-specific billing APIs.
|
|
22
|
+
* - apiCashOperationsUrl: URL for cash operations API.
|
|
23
|
+
* - apiCatalogsUrl: URL for catalog APIs.
|
|
24
|
+
* - apiCompaniesUrl: URL for the companies API endpoint.
|
|
25
|
+
* - apiCompositionUrl: URL for composition API.
|
|
26
|
+
* - apiCustomsUrl: URL for customs API.
|
|
27
|
+
* - apiDiscountsUrl: URL for discounts API.
|
|
28
|
+
* - apiDropoffUrl: URL for dropoff API endpoint.
|
|
29
|
+
* - apiEToolsAutoBilling: URL for auto billing tools.
|
|
30
|
+
* - apiEventsUrl: URL for the events API endpoint.
|
|
31
|
+
* - apiExternalOperationsUrl: URL for external operations API.
|
|
32
|
+
* - apiInventoriesUrl: URL for inventories API.
|
|
33
|
+
* - apiInvoicesUrl: URL for the invoices API endpoint.
|
|
34
|
+
* - apiNotificationsUrl: URL for notifications API.
|
|
35
|
+
* - apiOpenItemsUrl: URL for open items API.
|
|
36
|
+
* - apiQuotesUrl: URL for quotes API.
|
|
37
|
+
* - apiReportsUrl: URL for the reports API endpoint.
|
|
38
|
+
* - apiSecurityUrl: URL for security-related API endpoint.
|
|
39
|
+
* - apiServicesUrl: URL for services API.
|
|
40
|
+
* - apiShipmentUrl: URL for the shipment API endpoint.
|
|
41
|
+
* - apiSuppliesUrl: URL for supplies API.
|
|
42
|
+
* - apiSurveysUrl: URL for surveys API.
|
|
43
|
+
* - authCookie: Authentication cookie name for sessions.
|
|
44
|
+
* - cacheTtl: (Optional) Time-to-live (TTL) value for cached items.
|
|
45
|
+
* - printUrl: (Optional) URL for generating or downloading printable documents.
|
|
46
|
+
* - secretKey: Secret key for authentication or secure operations.
|
|
47
|
+
* - sockets: (Optional) Realtime socket config: includes app_key, url, port, and optional debug flag.
|
|
32
48
|
*/
|
|
33
49
|
type Environment = {
|
|
34
50
|
apiAuditsUrl?: string;
|
|
@@ -4664,6 +4680,15 @@ interface Dropdown {
|
|
|
4664
4680
|
suffix: string | null;
|
|
4665
4681
|
_catalogName?: string | null;
|
|
4666
4682
|
}
|
|
4683
|
+
interface DocumentCustoms extends SymfonyModel {
|
|
4684
|
+
countryId: string;
|
|
4685
|
+
code: string;
|
|
4686
|
+
name: string;
|
|
4687
|
+
description: string;
|
|
4688
|
+
shipmentContentTypes: number[];
|
|
4689
|
+
shipmentScopes: number[];
|
|
4690
|
+
pdf: string;
|
|
4691
|
+
}
|
|
4667
4692
|
|
|
4668
4693
|
type FieldsOut = {
|
|
4669
4694
|
total: number;
|
|
@@ -4754,6 +4779,26 @@ type RulesByCriteriaOut = {
|
|
|
4754
4779
|
total: number;
|
|
4755
4780
|
rules: RuleByCriteria[];
|
|
4756
4781
|
};
|
|
4782
|
+
type DocumentsByCountryIn = {
|
|
4783
|
+
countryId: number;
|
|
4784
|
+
includeIndemnityLetter: boolean;
|
|
4785
|
+
includePdf: boolean;
|
|
4786
|
+
shipmentContentTypeId: number;
|
|
4787
|
+
shipmentScopeId: number;
|
|
4788
|
+
shipmentId?: number;
|
|
4789
|
+
};
|
|
4790
|
+
type DocumentsByCountryOut = {
|
|
4791
|
+
total: number;
|
|
4792
|
+
documents: DocumentCustoms[];
|
|
4793
|
+
};
|
|
4794
|
+
type DocumentsPrintIn = {
|
|
4795
|
+
countryId: number;
|
|
4796
|
+
shipmentId: number;
|
|
4797
|
+
code: string;
|
|
4798
|
+
};
|
|
4799
|
+
type DocumentsPrintOut = {
|
|
4800
|
+
pdf: string;
|
|
4801
|
+
};
|
|
4757
4802
|
|
|
4758
4803
|
declare class ApiCustomsService {
|
|
4759
4804
|
private environments;
|
|
@@ -4855,6 +4900,20 @@ declare class ApiCustomsService {
|
|
|
4855
4900
|
* @return {Observable<CountryGroupsOut>} An Observable that emits the list of country groups.
|
|
4856
4901
|
*/
|
|
4857
4902
|
getCountryGroups(params: QueryParams): Observable<CountryGroupsOut>;
|
|
4903
|
+
/**
|
|
4904
|
+
* Retrieves the documents for a specific country.
|
|
4905
|
+
*
|
|
4906
|
+
* @param {DocumentsByCountryIn} body - The body of the request.
|
|
4907
|
+
* @return {Observable<DocumentsByCountryOut>} An Observable that emits the documents.
|
|
4908
|
+
*/
|
|
4909
|
+
postDocumentsByCountry(body: DocumentsByCountryIn): Observable<DocumentsByCountryOut>;
|
|
4910
|
+
/**
|
|
4911
|
+
* Prints a document for a specific country and code.
|
|
4912
|
+
*
|
|
4913
|
+
* @param {DocumentsPrintIn} body - The body of the request.
|
|
4914
|
+
* @return {Observable<DocumentsPrintOut>} An Observable that emits the printed document.
|
|
4915
|
+
*/
|
|
4916
|
+
postDocumentsPrint(body: DocumentsPrintIn): Observable<DocumentsPrintOut>;
|
|
4858
4917
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCustomsService, never>;
|
|
4859
4918
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCustomsService>;
|
|
4860
4919
|
}
|
|
@@ -4935,6 +4994,47 @@ interface CustomerRestriction extends ActiveLessLaravelModel {
|
|
|
4935
4994
|
phone_code?: string;
|
|
4936
4995
|
phone_country_code?: string;
|
|
4937
4996
|
}
|
|
4997
|
+
interface RegisteredCustomer extends LaravelModel {
|
|
4998
|
+
identification_type_id: number;
|
|
4999
|
+
identification_number: string;
|
|
5000
|
+
name: string;
|
|
5001
|
+
email: string;
|
|
5002
|
+
phone_number?: string;
|
|
5003
|
+
phone_code?: string;
|
|
5004
|
+
phone_extension?: string;
|
|
5005
|
+
phone_country_code?: string;
|
|
5006
|
+
cellphone_number?: string;
|
|
5007
|
+
cellphone_code?: string;
|
|
5008
|
+
cellphone_country_code?: string;
|
|
5009
|
+
company_country_id: number;
|
|
5010
|
+
date_of_birth: string;
|
|
5011
|
+
}
|
|
5012
|
+
interface RegisteredCustomerShipment extends LaravelModel {
|
|
5013
|
+
registered_customer_id: number;
|
|
5014
|
+
shipment_id: number;
|
|
5015
|
+
shipment_tracking_number: string;
|
|
5016
|
+
shipment_product: string;
|
|
5017
|
+
shipment_total: number;
|
|
5018
|
+
shipment_content_type_id: number;
|
|
5019
|
+
shipment_scope_id: number;
|
|
5020
|
+
shipment_group_id: number;
|
|
5021
|
+
shipment_local_updated_at: string;
|
|
5022
|
+
}
|
|
5023
|
+
interface SearchTopCustomer extends ActiveLessLaravelModel {
|
|
5024
|
+
identification_type_id: number;
|
|
5025
|
+
identification_number: string;
|
|
5026
|
+
contact_name_1: string;
|
|
5027
|
+
contact_name_2: string;
|
|
5028
|
+
contact_name_3: string;
|
|
5029
|
+
email: string;
|
|
5030
|
+
phone_number: string;
|
|
5031
|
+
discount_percentage: number;
|
|
5032
|
+
account: string;
|
|
5033
|
+
shipment_scopes: number[];
|
|
5034
|
+
company_country_id: number;
|
|
5035
|
+
company_name: string;
|
|
5036
|
+
level: string;
|
|
5037
|
+
}
|
|
4938
5038
|
|
|
4939
5039
|
type DiscountIn = {
|
|
4940
5040
|
code: string;
|
|
@@ -5024,6 +5124,47 @@ type CustomerRestrictionInV2 = CustomerRestrictionIn & {
|
|
|
5024
5124
|
type CustomerRestrictionOut = {
|
|
5025
5125
|
customer_restriction: CustomerRestriction;
|
|
5026
5126
|
};
|
|
5127
|
+
type OperationsSearchCustomerV2In = {
|
|
5128
|
+
identification_type_id?: number;
|
|
5129
|
+
identification_number?: string;
|
|
5130
|
+
phone_code?: string;
|
|
5131
|
+
phone_number?: string;
|
|
5132
|
+
email?: string;
|
|
5133
|
+
};
|
|
5134
|
+
type LoyaltyRuleWithPeriod = LoyaltyRule & {
|
|
5135
|
+
loyalty_period: LoyaltyPeriod;
|
|
5136
|
+
};
|
|
5137
|
+
type OperationsSearchCustomerRegisteredOut = {
|
|
5138
|
+
customer: RegisteredCustomer;
|
|
5139
|
+
shipments: RegisteredCustomerShipment[];
|
|
5140
|
+
loyalty_rule: LoyaltyRuleWithPeriod | null;
|
|
5141
|
+
discount_products: string[];
|
|
5142
|
+
total_shipments: number;
|
|
5143
|
+
customer_restriction: CustomerRestriction | null;
|
|
5144
|
+
};
|
|
5145
|
+
type OperationsSearchCustomerTopOut = {
|
|
5146
|
+
customer: SearchTopCustomer;
|
|
5147
|
+
customer_restriction: CustomerRestriction | null;
|
|
5148
|
+
};
|
|
5149
|
+
type OperationsSearchCustomerV2Out = [] | OperationsSearchCustomerRegisteredOut | OperationsSearchCustomerTopOut;
|
|
5150
|
+
type RegisteredCustomerIn = {
|
|
5151
|
+
identification_type_id: number;
|
|
5152
|
+
identification_number: string;
|
|
5153
|
+
name: string;
|
|
5154
|
+
email: string;
|
|
5155
|
+
phone_number?: string;
|
|
5156
|
+
phone_code?: string;
|
|
5157
|
+
phone_country_code?: string;
|
|
5158
|
+
cellphone_number?: string;
|
|
5159
|
+
cellphone_code?: string;
|
|
5160
|
+
cellphone_country_code?: string;
|
|
5161
|
+
company_country_id: number;
|
|
5162
|
+
date_of_birth: string;
|
|
5163
|
+
is_active: boolean;
|
|
5164
|
+
};
|
|
5165
|
+
type RegisteredCustomerOut = {
|
|
5166
|
+
registered_customer: RegisteredCustomer;
|
|
5167
|
+
};
|
|
5027
5168
|
|
|
5028
5169
|
declare class ApiDiscountsService {
|
|
5029
5170
|
private environments;
|
|
@@ -5041,6 +5182,27 @@ declare class ApiDiscountsService {
|
|
|
5041
5182
|
* @return {Observable<DiscountsOut>} An Observable that emits the retrieved discounts data.
|
|
5042
5183
|
*/
|
|
5043
5184
|
getDiscounts(params: QueryParams): Observable<DiscountsOut>;
|
|
5185
|
+
/**
|
|
5186
|
+
* Retrieves a list of active discounts.
|
|
5187
|
+
*
|
|
5188
|
+
* @param {QueryParams} [params] - Optional query parameters to filter active discounts.
|
|
5189
|
+
* @return {Observable<DiscountsOut>} An Observable that emits the active discounts data.
|
|
5190
|
+
*/
|
|
5191
|
+
getDiscountsActives(params?: QueryParams): Observable<DiscountsOut>;
|
|
5192
|
+
/**
|
|
5193
|
+
* Searches for a customer by identification, phone, or email (Version 2).
|
|
5194
|
+
*
|
|
5195
|
+
* @param {OperationsSearchCustomerV2In} body - The search criteria for the customer.
|
|
5196
|
+
* @return {Observable<OperationsSearchCustomerV2Out>} An Observable that emits the search result.
|
|
5197
|
+
*/
|
|
5198
|
+
postOperationsSearchCustomerV2(body: OperationsSearchCustomerV2In): Observable<OperationsSearchCustomerV2Out>;
|
|
5199
|
+
/**
|
|
5200
|
+
* Creates a registered customer (Version 2).
|
|
5201
|
+
*
|
|
5202
|
+
* @param {RegisteredCustomerIn} body - The registered customer data to create.
|
|
5203
|
+
* @return {Observable<RegisteredCustomerOut>} An Observable that emits the created registered customer.
|
|
5204
|
+
*/
|
|
5205
|
+
postRegisteredCustomersV2(body: RegisteredCustomerIn): Observable<RegisteredCustomerOut>;
|
|
5044
5206
|
/**
|
|
5045
5207
|
* Sends a request to create or update discounts on the server.
|
|
5046
5208
|
*
|
|
@@ -5194,6 +5356,14 @@ type ShipmentsEReceiptIn = {
|
|
|
5194
5356
|
shipmentTrackingNumbers: string[];
|
|
5195
5357
|
addresses: string[];
|
|
5196
5358
|
};
|
|
5359
|
+
type CheckInPrintOut = {
|
|
5360
|
+
printLabel: string;
|
|
5361
|
+
clientPrintID: string;
|
|
5362
|
+
transactionId: string;
|
|
5363
|
+
};
|
|
5364
|
+
type OperationTicketsOut = {
|
|
5365
|
+
ticket: string;
|
|
5366
|
+
};
|
|
5197
5367
|
|
|
5198
5368
|
declare class ApiDropoffsService {
|
|
5199
5369
|
private environments;
|
|
@@ -5216,6 +5386,21 @@ declare class ApiDropoffsService {
|
|
|
5216
5386
|
* @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
|
|
5217
5387
|
*/
|
|
5218
5388
|
postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
|
|
5389
|
+
/**
|
|
5390
|
+
* Retrieves the check-in print payload for the given operation.
|
|
5391
|
+
*
|
|
5392
|
+
* @param {number} operationId - The unique identifier of the check-in operation to print.
|
|
5393
|
+
* @param {QueryParams} params - The query parameters used to customize the print request.
|
|
5394
|
+
* @return {Observable<CheckInPrintOut>} An observable that emits the check-in print data.
|
|
5395
|
+
*/
|
|
5396
|
+
getCheckInPrint(operationId: number, params: QueryParams): Observable<CheckInPrintOut>;
|
|
5397
|
+
/**
|
|
5398
|
+
* Retrieves the printable ticket payload for the given dropoff operation.
|
|
5399
|
+
*
|
|
5400
|
+
* @param {number} operationId - The unique identifier of the operation.
|
|
5401
|
+
* @return {Observable<OperationTicketsOut>} An observable that emits the operation ticket data.
|
|
5402
|
+
*/
|
|
5403
|
+
getOperationTickets(operationId: number): Observable<OperationTicketsOut>;
|
|
5219
5404
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
|
|
5220
5405
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
|
|
5221
5406
|
}
|
|
@@ -7031,7 +7216,7 @@ declare class ApiInvoicesService {
|
|
|
7031
7216
|
* @param documentId - Numeric identifier of the document to print.
|
|
7032
7217
|
* @returns An Observable that emits the ticket data for the given document.
|
|
7033
7218
|
*/
|
|
7034
|
-
getOperationPrintTicket(documentId: number): Observable<OperationPrintTicketOut>;
|
|
7219
|
+
getOperationPrintTicket(documentId: number, params?: QueryParams): Observable<OperationPrintTicketOut>;
|
|
7035
7220
|
/**
|
|
7036
7221
|
* Retrieves the printable document payload for a billing operation.
|
|
7037
7222
|
*
|
|
@@ -7055,7 +7240,7 @@ declare class ApiInvoicesService {
|
|
|
7055
7240
|
* @param {number} id - The unique identifier of the collection for which the receipt needs to be retrieved.
|
|
7056
7241
|
* @return {Observable<PrintCollectionReceiptOut>} An observable containing the collection receipt data.
|
|
7057
7242
|
*/
|
|
7058
|
-
|
|
7243
|
+
getOperationPrintCollectionReceipt(id: number): Observable<PrintCollectionReceiptOut>;
|
|
7059
7244
|
/**
|
|
7060
7245
|
* Handles the account payment operation by sending a POST request to the specified endpoint.
|
|
7061
7246
|
* Processes the response and returns the operation data.
|
|
@@ -9280,6 +9465,23 @@ type ShipmentSignaturePageOut = {
|
|
|
9280
9465
|
type ShipmentDocumentsOut = {
|
|
9281
9466
|
shipmentDocuments: ShipmentDocument[];
|
|
9282
9467
|
};
|
|
9468
|
+
type ShipmentLabelOut = {
|
|
9469
|
+
shipmentLabel: {
|
|
9470
|
+
format: string;
|
|
9471
|
+
base64: string;
|
|
9472
|
+
};
|
|
9473
|
+
transactionId: string;
|
|
9474
|
+
};
|
|
9475
|
+
type CommercialInvoiceLabelIn = {
|
|
9476
|
+
date: string;
|
|
9477
|
+
};
|
|
9478
|
+
type CommercialInvoiceLabelOut = {
|
|
9479
|
+
commercialInvoiceLabel: {
|
|
9480
|
+
format: 'pdf';
|
|
9481
|
+
base64: string;
|
|
9482
|
+
};
|
|
9483
|
+
transactionId: string;
|
|
9484
|
+
};
|
|
9283
9485
|
|
|
9284
9486
|
declare class ApiShipmentsService {
|
|
9285
9487
|
private environments;
|
|
@@ -9397,6 +9599,20 @@ declare class ApiShipmentsService {
|
|
|
9397
9599
|
* @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
|
|
9398
9600
|
* */
|
|
9399
9601
|
getDocuments(id: number): Observable<ShipmentDocumentsOut>;
|
|
9602
|
+
/**
|
|
9603
|
+
* Retrieves the label for a specific shipment
|
|
9604
|
+
* @param {number} shipmentId - The unique identifier of the shipment to retrieve the label for
|
|
9605
|
+
* @returns {Observable<ShipmentLabelOut>} Observable containing the label for the shipment
|
|
9606
|
+
*/
|
|
9607
|
+
getShipmentLabel(shipmentId: number, format?: string): Observable<ShipmentLabelOut>;
|
|
9608
|
+
/**
|
|
9609
|
+
* Generates a commercial invoice label for the specified shipment.
|
|
9610
|
+
*
|
|
9611
|
+
* @param {number} shipmentId - The unique identifier of the shipment.
|
|
9612
|
+
* @param {CommercialInvoiceLabelIn} body - Payload containing the invoice label date.
|
|
9613
|
+
* @returns {Observable<CommercialInvoiceLabelOut>} Observable emitting the generated commercial invoice label for the shipment.
|
|
9614
|
+
*/
|
|
9615
|
+
postCommercialInvoiceLabel(shipmentId: number, body: CommercialInvoiceLabelIn): Observable<CommercialInvoiceLabelOut>;
|
|
9400
9616
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
9401
9617
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
9402
9618
|
}
|
|
@@ -9768,12 +9984,14 @@ interface Printable {
|
|
|
9768
9984
|
}
|
|
9769
9985
|
|
|
9770
9986
|
type Printer = {
|
|
9771
|
-
name: PrintersType;
|
|
9772
9987
|
configured: boolean;
|
|
9988
|
+
name: string;
|
|
9989
|
+
type: PrintersType;
|
|
9773
9990
|
};
|
|
9774
9991
|
type SetUpData = {
|
|
9775
9992
|
country: Country;
|
|
9776
9993
|
printMode: PrintMode;
|
|
9994
|
+
printServiceUrl?: string;
|
|
9777
9995
|
};
|
|
9778
9996
|
type AvailablePrintersOut = {
|
|
9779
9997
|
printer: {
|
|
@@ -9782,11 +10000,11 @@ type AvailablePrintersOut = {
|
|
|
9782
10000
|
};
|
|
9783
10001
|
|
|
9784
10002
|
declare class PrintersService {
|
|
9785
|
-
private environments;
|
|
9786
10003
|
private http;
|
|
9787
10004
|
availablePrinters$: BehaviorSubject<Printer[]>;
|
|
9788
|
-
private printMode;
|
|
9789
10005
|
private printers;
|
|
10006
|
+
private printMode;
|
|
10007
|
+
private printServiceUrl;
|
|
9790
10008
|
/**
|
|
9791
10009
|
* Retrieves the print URL from the environments configuration or defaults to 'http://localhost:9100'
|
|
9792
10010
|
* if not specified.
|
|
@@ -9794,6 +10012,12 @@ declare class PrintersService {
|
|
|
9794
10012
|
* @return {string} The URL to be used for printing.
|
|
9795
10013
|
*/
|
|
9796
10014
|
get url(): string;
|
|
10015
|
+
/**
|
|
10016
|
+
* Indicates whether any configured printers are available for use.
|
|
10017
|
+
*
|
|
10018
|
+
* @return {boolean} Returns true if at least one printer is configured; otherwise, false.
|
|
10019
|
+
*/
|
|
10020
|
+
get usingPrinters(): boolean;
|
|
9797
10021
|
/**
|
|
9798
10022
|
* Prints or displays a document based on the current print mode.
|
|
9799
10023
|
* It can handle printing to a physical printer, displaying in the browser,
|
|
@@ -9802,7 +10026,7 @@ declare class PrintersService {
|
|
|
9802
10026
|
* @param {Printable} document - The document to be printed or displayed.
|
|
9803
10027
|
* @return {Promise<void>} A promise that resolves when the printing or displaying process is complete, or rejects if an error occurs.
|
|
9804
10028
|
*/
|
|
9805
|
-
print(document: Printable): Promise<void>;
|
|
10029
|
+
print(document: Printable, printMode?: PrintMode): Promise<void>;
|
|
9806
10030
|
/**
|
|
9807
10031
|
* Configures and initializes the print settings based on the provided parameters.
|
|
9808
10032
|
*
|
|
@@ -9811,7 +10035,7 @@ declare class PrintersService {
|
|
|
9811
10035
|
* @param {PrintMode} config.printMode - The mode of printing, defining whether to use print, digital, or both.
|
|
9812
10036
|
* @return {void} This method does not return any value.
|
|
9813
10037
|
*/
|
|
9814
|
-
setUp({ country, printMode }: SetUpData): void;
|
|
10038
|
+
setUp({ country, printMode, printServiceUrl }: SetUpData): void;
|
|
9815
10039
|
/**
|
|
9816
10040
|
* Resets the printers list and updates the availablePrinters$ observable.
|
|
9817
10041
|
* The method clears the current list of printers, emits the updated empty list
|
|
@@ -9985,4 +10209,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9985
10209
|
};
|
|
9986
10210
|
|
|
9987
10211
|
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, CustomerRoleType, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryControlType, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9988
|
-
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, AddressToSignaturePage, AdyenAbortIn, AdyenAbortOut, AdyenPaymentIn, AdyenPaymentOut, 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, 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, CommercialInvoiceComposition, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, 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, 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, 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, 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, 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, InventoryControl, InventoryControlIn, InventoryControlOut, InventoryControlsOut, InventoryLocationCapacityIn, InventoryLocationCapacityOut, 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, 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, RpaShipmentNotification, RpaShipmentNotificationIn, RpaShipmentNotificationOut, RpaShipmentNotificationsOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, 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, TaxComposition, TaxReport, TaxReportTax, TaxToSignaturePage, TaxesReportOut, 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, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|
|
10212
|
+
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, AddressToSignaturePage, AdyenAbortIn, AdyenAbortOut, AdyenPaymentIn, AdyenPaymentOut, 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, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, CheckInPrintOut, 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, CommercialInvoiceItemToSignaturePage, CommercialInvoiceLabelIn, CommercialInvoiceLabelOut, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, 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, 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, DocumentCustoms, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsByCountryIn, DocumentsByCountryOut, DocumentsPrintIn, DocumentsPrintOut, 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, 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, InventoryControl, InventoryControlIn, InventoryControlOut, InventoryControlsOut, InventoryLocationCapacityIn, InventoryLocationCapacityOut, 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, LoyaltyRuleWithPeriod, 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, OperationTicketsOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OperationsSearchCustomerRegisteredOut, OperationsSearchCustomerTopOut, OperationsSearchCustomerV2In, OperationsSearchCustomerV2Out, 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, RegisteredCustomer, RegisteredCustomerIn, RegisteredCustomerOut, RegisteredCustomerShipment, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, RpaShipmentNotification, RpaShipmentNotificationIn, RpaShipmentNotificationOut, RpaShipmentNotificationsOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, SearchTopCustomer, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLabelOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, 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, TaxComposition, TaxReport, TaxReportTax, TaxToSignaturePage, TaxesReportOut, 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, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|