@experteam-mx/ngx-services 20.0.0 → 20.0.2
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 +24 -24
- package/fesm2022/experteam-mx-ngx-services.mjs +209 -15
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +385 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,14 +33,15 @@ type Environment = {
|
|
|
33
33
|
apiCompositionUrl?: string;
|
|
34
34
|
apiCustomsUrl?: string;
|
|
35
35
|
apiDiscountsUrl?: string;
|
|
36
|
-
apiEventsUrl?: string;
|
|
37
36
|
apiEToolsAutoBilling?: string;
|
|
37
|
+
apiEventsUrl?: string;
|
|
38
38
|
apiExternalOperationsKey?: string;
|
|
39
39
|
apiExternalOperationsUrl?: string;
|
|
40
40
|
apiInventoriesUrl?: string;
|
|
41
41
|
apiInvoicesUrl?: string;
|
|
42
42
|
apiNotificationsUrl?: string;
|
|
43
43
|
apiOpenItemsUrl?: string;
|
|
44
|
+
apiQuotesUrl?: string;
|
|
44
45
|
apiReportsUrl?: string;
|
|
45
46
|
apiSecurityUrl?: string;
|
|
46
47
|
apiServicesUrl?: string;
|
|
@@ -810,6 +811,13 @@ interface Holiday extends SymfonyModel {
|
|
|
810
811
|
description: string;
|
|
811
812
|
country: Country;
|
|
812
813
|
}
|
|
814
|
+
interface BusinessPartyTraderType extends SymfonyModel {
|
|
815
|
+
code: string;
|
|
816
|
+
name: string;
|
|
817
|
+
description: string | null;
|
|
818
|
+
category: string | null;
|
|
819
|
+
esbCode: string;
|
|
820
|
+
}
|
|
813
821
|
|
|
814
822
|
type OperationTypesOut = {
|
|
815
823
|
total: number;
|
|
@@ -1012,6 +1020,16 @@ type HolidayIn = {
|
|
|
1012
1020
|
countryId: number;
|
|
1013
1021
|
isActive: boolean;
|
|
1014
1022
|
};
|
|
1023
|
+
type IdentificationTypeNumberValidationIn = {
|
|
1024
|
+
identificationTypeId: number;
|
|
1025
|
+
identificationNumber: string;
|
|
1026
|
+
section: string;
|
|
1027
|
+
};
|
|
1028
|
+
type IdentificationTypeNumberValidationOut = {};
|
|
1029
|
+
type BusinessPartyTraderTypesOut = {
|
|
1030
|
+
total: number;
|
|
1031
|
+
businessPartyTraderTypes: BusinessPartyTraderType[];
|
|
1032
|
+
};
|
|
1015
1033
|
|
|
1016
1034
|
declare class ApiCatalogsService {
|
|
1017
1035
|
private environments;
|
|
@@ -1059,7 +1077,7 @@ declare class ApiCatalogsService {
|
|
|
1059
1077
|
* @param body - The identification type payload to create (IdentificationTypeIn).
|
|
1060
1078
|
* @returns Observable<IdentificationTypeOut> that emits the created identification type on success.
|
|
1061
1079
|
*/
|
|
1062
|
-
|
|
1080
|
+
postIdentificationType(body: IdentificationTypeIn): Observable<IdentificationTypeOut>;
|
|
1063
1081
|
/**
|
|
1064
1082
|
* Update a identification type by its ID.
|
|
1065
1083
|
*
|
|
@@ -1086,6 +1104,18 @@ declare class ApiCatalogsService {
|
|
|
1086
1104
|
* The Observable will emit an error if the HTTP request fails.
|
|
1087
1105
|
*/
|
|
1088
1106
|
deleteIdentificationType(id: number): Observable<{}>;
|
|
1107
|
+
/**
|
|
1108
|
+
* Sends a POST request to validate identification type number.
|
|
1109
|
+
*
|
|
1110
|
+
* The request payload is sent as an object with a `body` property containing the provided
|
|
1111
|
+
* IdentificationTypeNumberValidationIn value (i.e. { body: IdentificationTypeNumberValidationIn }). On success the HTTP response is expected
|
|
1112
|
+
* to follow the ApiSuccess<T> shape; the operator maps that response to the inner `data`
|
|
1113
|
+
* object and emits it as a IdentificationTypeNumberValidationOut.
|
|
1114
|
+
*
|
|
1115
|
+
* @param body - The identification type number validation payload to validate (IdentificationTypeNumberValidationIn).
|
|
1116
|
+
* @returns Observable<IdentificationTypeNumberValidationOut> that emits the validate status.
|
|
1117
|
+
*/
|
|
1118
|
+
postIdentificationTypeNumberValidation(body: IdentificationTypeNumberValidationIn): Observable<IdentificationTypeNumberValidationOut>;
|
|
1089
1119
|
/**
|
|
1090
1120
|
* Fetches the extra charges based on the provided query parameters.
|
|
1091
1121
|
*
|
|
@@ -1437,6 +1467,12 @@ declare class ApiCatalogsService {
|
|
|
1437
1467
|
* The Observable will emit an error if the HTTP request fails.
|
|
1438
1468
|
*/
|
|
1439
1469
|
deleteHoliday(id: number): Observable<{}>;
|
|
1470
|
+
/**
|
|
1471
|
+
* Retrieves a list of business party trader types
|
|
1472
|
+
* @param {QueryParams} params - Query parameters for filtering and pagination (optional)
|
|
1473
|
+
* @returns {Observable<BusinessPartyTraderTypesOut>} Observable containing the list of trader types
|
|
1474
|
+
*/
|
|
1475
|
+
getBusinessPartyTraderTypes(params: QueryParams): Observable<BusinessPartyTraderTypesOut>;
|
|
1440
1476
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
|
|
1441
1477
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
1442
1478
|
}
|
|
@@ -2192,12 +2228,13 @@ type CountryReferenceProductOut = {
|
|
|
2192
2228
|
country_reference_product: CountryReferenceProduct;
|
|
2193
2229
|
};
|
|
2194
2230
|
type ExtraChargeEntitiesIn = {
|
|
2195
|
-
model_type
|
|
2196
|
-
model_id
|
|
2231
|
+
model_type?: string;
|
|
2232
|
+
model_id?: number;
|
|
2197
2233
|
extracharge_entities: {
|
|
2198
2234
|
id: number;
|
|
2199
2235
|
is_active: boolean;
|
|
2200
2236
|
}[];
|
|
2237
|
+
check_all?: boolean;
|
|
2201
2238
|
};
|
|
2202
2239
|
type ExtraChargeEntitiesOut = {
|
|
2203
2240
|
extracharge_entities: ExtraChargeEntity[];
|
|
@@ -4352,6 +4389,12 @@ type IncidentReasonComplementIn = {
|
|
|
4352
4389
|
readOnly?: boolean;
|
|
4353
4390
|
isActive?: boolean;
|
|
4354
4391
|
};
|
|
4392
|
+
type PackagesInStockIn = {
|
|
4393
|
+
packageTrackingNumbers: string[];
|
|
4394
|
+
};
|
|
4395
|
+
type PackagesInStockOut = {
|
|
4396
|
+
inStock: boolean;
|
|
4397
|
+
};
|
|
4355
4398
|
|
|
4356
4399
|
declare class ApiInventoriesService {
|
|
4357
4400
|
private environments;
|
|
@@ -4478,6 +4521,17 @@ declare class ApiInventoriesService {
|
|
|
4478
4521
|
* @returns {Observable<IncidentReasonComplementOut>} An observable that emits the result of the delete incident reason complement.
|
|
4479
4522
|
*/
|
|
4480
4523
|
deleteIncidentReasonComplement(id: Number): Observable<IncidentReasonComplementOut>;
|
|
4524
|
+
/**
|
|
4525
|
+
* Posts packages that are currently in stock.
|
|
4526
|
+
*
|
|
4527
|
+
* @param body - The input data containing package stock information
|
|
4528
|
+
* @returns {Observable<PackagesInStockOut>} An Observable that emits the packages in stock output data
|
|
4529
|
+
*
|
|
4530
|
+
* @remarks
|
|
4531
|
+
* This method sends a POST request to the `/packages/in-stock` endpoint and
|
|
4532
|
+
* extracts the data property from the API success response.
|
|
4533
|
+
*/
|
|
4534
|
+
postPackagesInStock(body: PackagesInStockIn): Observable<PackagesInStockOut>;
|
|
4481
4535
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
4482
4536
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
4483
4537
|
}
|
|
@@ -5477,6 +5531,96 @@ declare class ApiOpenItemsService {
|
|
|
5477
5531
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiOpenItemsService>;
|
|
5478
5532
|
}
|
|
5479
5533
|
|
|
5534
|
+
interface QuoteEvent extends ActiveLessSymfonyModel {
|
|
5535
|
+
date: string;
|
|
5536
|
+
quoteEventType: QuoteEventType;
|
|
5537
|
+
comment: string;
|
|
5538
|
+
userId: number;
|
|
5539
|
+
userUsername: string;
|
|
5540
|
+
userName: string;
|
|
5541
|
+
}
|
|
5542
|
+
interface QuoteEventType extends SymfonyModel {
|
|
5543
|
+
code: string;
|
|
5544
|
+
name: string;
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
type QuoteEventsOut = {
|
|
5548
|
+
total: number;
|
|
5549
|
+
quoteEvents: QuoteEvent[];
|
|
5550
|
+
};
|
|
5551
|
+
type QuoteEventIn = {
|
|
5552
|
+
date: string;
|
|
5553
|
+
quoteEventTypeId: number;
|
|
5554
|
+
comment: string;
|
|
5555
|
+
};
|
|
5556
|
+
interface QuoteEventOut {
|
|
5557
|
+
quoteEvent: QuoteEvent;
|
|
5558
|
+
}
|
|
5559
|
+
interface QuoteEventTypesOut {
|
|
5560
|
+
total: number;
|
|
5561
|
+
quoteEventTypes: QuoteEventType[];
|
|
5562
|
+
}
|
|
5563
|
+
|
|
5564
|
+
/**
|
|
5565
|
+
* Service to manage quote-related events.
|
|
5566
|
+
*
|
|
5567
|
+
* This service provides methods to retrieve, create, and get event types
|
|
5568
|
+
* related to quote processes.
|
|
5569
|
+
*/
|
|
5570
|
+
declare class ApiQuoteService {
|
|
5571
|
+
private environments;
|
|
5572
|
+
private http;
|
|
5573
|
+
constructor(environments: Environment, http: HttpClient);
|
|
5574
|
+
/**
|
|
5575
|
+
* Base URL for the Quotes API.
|
|
5576
|
+
*/
|
|
5577
|
+
get url(): string;
|
|
5578
|
+
/**
|
|
5579
|
+
* Retrieves all registered events for a specific quote.
|
|
5580
|
+
*
|
|
5581
|
+
* @param id - Quote identifier.
|
|
5582
|
+
* @param params - Optional query parameters such as pagination or filtering.
|
|
5583
|
+
* @returns Observable containing the list of quote events.
|
|
5584
|
+
*
|
|
5585
|
+
* @example
|
|
5586
|
+
* ```ts
|
|
5587
|
+
* this.apiQuoteService.getQuoteEvents(10, { page: 1 })
|
|
5588
|
+
* .subscribe((events) => console.log(events))
|
|
5589
|
+
* ```
|
|
5590
|
+
*/
|
|
5591
|
+
getQuoteEvents(id: number, params: QueryParams): Observable<QuoteEventsOut>;
|
|
5592
|
+
/**
|
|
5593
|
+
* Registers a new event related to a specific quote.
|
|
5594
|
+
*
|
|
5595
|
+
* @param id - Quote identifier.
|
|
5596
|
+
* @param body - Event payload to be created.
|
|
5597
|
+
* @returns Observable containing the newly created event.
|
|
5598
|
+
*
|
|
5599
|
+
* @example
|
|
5600
|
+
* ```ts
|
|
5601
|
+
* const event: QuoteEventIn = { code: 'WON', note: 'Client approved' }
|
|
5602
|
+
* this.apiQuoteService.postQuoteEvents(10, event)
|
|
5603
|
+
* .subscribe((response) => console.log(response))
|
|
5604
|
+
* ```
|
|
5605
|
+
*/
|
|
5606
|
+
postQuoteEvents(id: number, body: QuoteEventIn): Observable<QuoteEventOut>;
|
|
5607
|
+
/**
|
|
5608
|
+
* Retrieves the available quote event types.
|
|
5609
|
+
*
|
|
5610
|
+
* @param params - Optional query parameters such as pagination or filtering.
|
|
5611
|
+
* @returns Observable containing the list of event types.
|
|
5612
|
+
*
|
|
5613
|
+
* @example
|
|
5614
|
+
* ```ts
|
|
5615
|
+
* this.apiQuoteService.getQuoteEventTypes({ page: 1 })
|
|
5616
|
+
* .subscribe((types) => console.log(types))
|
|
5617
|
+
* ```
|
|
5618
|
+
*/
|
|
5619
|
+
getQuoteEventTypes(params: QueryParams): Observable<QuoteEventTypesOut>;
|
|
5620
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiQuoteService, never>;
|
|
5621
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiQuoteService>;
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5480
5624
|
interface CollectionPayment extends LaravelModel {
|
|
5481
5625
|
_id: number;
|
|
5482
5626
|
country_code: string;
|
|
@@ -5594,6 +5738,84 @@ interface ShipmentReports {
|
|
|
5594
5738
|
};
|
|
5595
5739
|
}[];
|
|
5596
5740
|
}
|
|
5741
|
+
interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
5742
|
+
authorization_numbers: string[] | null;
|
|
5743
|
+
commercial_invoice: boolean | null;
|
|
5744
|
+
company_id: number;
|
|
5745
|
+
company_name: string;
|
|
5746
|
+
country_id: number;
|
|
5747
|
+
country_name: string;
|
|
5748
|
+
currency_code: string | null;
|
|
5749
|
+
document_id: number;
|
|
5750
|
+
hasCreditCardPayment: boolean;
|
|
5751
|
+
installation_id: number;
|
|
5752
|
+
installation_number: number;
|
|
5753
|
+
invoice_document_id: number | null;
|
|
5754
|
+
is_document: boolean;
|
|
5755
|
+
is_manual: boolean;
|
|
5756
|
+
itn_number: string | null;
|
|
5757
|
+
location_code: string;
|
|
5758
|
+
location_facility_code: string;
|
|
5759
|
+
location_id: number;
|
|
5760
|
+
location_name: string;
|
|
5761
|
+
price_override_approver_name: string | null;
|
|
5762
|
+
price_override_reason_name: string | null;
|
|
5763
|
+
product_global_name: string;
|
|
5764
|
+
product_local_name: string;
|
|
5765
|
+
question_description: string | null;
|
|
5766
|
+
receiver_address_line1: string;
|
|
5767
|
+
receiver_address_line2: string | null;
|
|
5768
|
+
receiver_address_line3: string | null;
|
|
5769
|
+
receiver_city_name: string;
|
|
5770
|
+
receiver_company_name: string;
|
|
5771
|
+
receiver_country_name: string;
|
|
5772
|
+
receiver_county_name: string | null;
|
|
5773
|
+
receiver_email: string | null;
|
|
5774
|
+
receiver_full_name: string;
|
|
5775
|
+
receiver_full_phone_number: string | null;
|
|
5776
|
+
receiver_identification_number: string | null;
|
|
5777
|
+
receiver_postal_code: string | null;
|
|
5778
|
+
receiver_state_name: string;
|
|
5779
|
+
send_to_api_inventories: boolean;
|
|
5780
|
+
shipment_description: string;
|
|
5781
|
+
shipment_group_id: number;
|
|
5782
|
+
shipment_group_name: string;
|
|
5783
|
+
shipment_pieces_tracking_numbers: string[];
|
|
5784
|
+
shipment_status_code: string;
|
|
5785
|
+
shipment_status_id: number;
|
|
5786
|
+
shipment_status_name_EN: string;
|
|
5787
|
+
shipment_status_name_ES: string;
|
|
5788
|
+
shipment_status_name_FR: string;
|
|
5789
|
+
shipment_status_name_PT: string;
|
|
5790
|
+
shipment_tags: ShipmentTag[];
|
|
5791
|
+
shipment_tracking_number: string;
|
|
5792
|
+
shipment_type: string;
|
|
5793
|
+
shipment_value: number;
|
|
5794
|
+
shipper_account: string;
|
|
5795
|
+
shipper_address_line1: string;
|
|
5796
|
+
shipper_address_line2: string | null;
|
|
5797
|
+
shipper_address_line3: string | null;
|
|
5798
|
+
shipper_city_name: string | null;
|
|
5799
|
+
shipper_company_name: string;
|
|
5800
|
+
shipper_country_name: string;
|
|
5801
|
+
shipper_county_name: string | null;
|
|
5802
|
+
shipper_email: string | null;
|
|
5803
|
+
shipper_full_name: string;
|
|
5804
|
+
shipper_full_phone_number: string;
|
|
5805
|
+
shipper_identification_number: string | null;
|
|
5806
|
+
shipper_phone_number: string | null;
|
|
5807
|
+
shipper_postal_code: string | null;
|
|
5808
|
+
shipper_state_name: string | null;
|
|
5809
|
+
tracking: string | null;
|
|
5810
|
+
user_id: number;
|
|
5811
|
+
user_username: string;
|
|
5812
|
+
additional_documents: {
|
|
5813
|
+
country_id: number;
|
|
5814
|
+
include_indemnity_letter: boolean;
|
|
5815
|
+
shipment_content_type_id: number;
|
|
5816
|
+
shipment_scope_id: number;
|
|
5817
|
+
} | null;
|
|
5818
|
+
}
|
|
5597
5819
|
interface ShipmentTag extends ActiveLessSymfonyModel {
|
|
5598
5820
|
name: string;
|
|
5599
5821
|
code: string;
|
|
@@ -5615,6 +5837,10 @@ interface ReportExternalShipment extends ActiveLessLaravelModel {
|
|
|
5615
5837
|
total: number;
|
|
5616
5838
|
tracking_number: string;
|
|
5617
5839
|
user_id: number;
|
|
5840
|
+
customer_full_name: string;
|
|
5841
|
+
customer_email: string | null;
|
|
5842
|
+
customer_phone_code: string | null;
|
|
5843
|
+
customer_phone_number: string | null;
|
|
5618
5844
|
}
|
|
5619
5845
|
interface ReportExternalShipmentAddress extends ApiModel {
|
|
5620
5846
|
address_line_1: string;
|
|
@@ -5648,6 +5874,7 @@ interface PromotionCodeDiscount extends ApiModel {
|
|
|
5648
5874
|
origin_company_name: string;
|
|
5649
5875
|
origin_full_name: string;
|
|
5650
5876
|
promotion_code: string;
|
|
5877
|
+
discount_percentage: number;
|
|
5651
5878
|
product_subtotals: ProductSubtotal[];
|
|
5652
5879
|
}
|
|
5653
5880
|
interface ProductSubtotal {
|
|
@@ -5655,6 +5882,8 @@ interface ProductSubtotal {
|
|
|
5655
5882
|
currency_id: number;
|
|
5656
5883
|
currency_code: string;
|
|
5657
5884
|
value: number;
|
|
5885
|
+
shipment_total: number;
|
|
5886
|
+
discount_amount: number;
|
|
5658
5887
|
}
|
|
5659
5888
|
interface WithdrawalAmount {
|
|
5660
5889
|
country_reference_currency_id: number;
|
|
@@ -5708,6 +5937,34 @@ interface Invoice extends ActiveLessLaravelModel {
|
|
|
5708
5937
|
customer_county_name: string;
|
|
5709
5938
|
shipment_id: number;
|
|
5710
5939
|
}
|
|
5940
|
+
interface Sales extends ActiveLessLaravelModel {
|
|
5941
|
+
company_country_id: number;
|
|
5942
|
+
country_document_type_id: number;
|
|
5943
|
+
country_id: number;
|
|
5944
|
+
customer_address_line1: string;
|
|
5945
|
+
customer_email: string;
|
|
5946
|
+
customer_name: string;
|
|
5947
|
+
customer_phone: string;
|
|
5948
|
+
document_full_number: string;
|
|
5949
|
+
document_sap_full_number: string;
|
|
5950
|
+
document_status_name: string;
|
|
5951
|
+
document_status: number;
|
|
5952
|
+
document_type_name_EN: string;
|
|
5953
|
+
document_type_name_ES: string;
|
|
5954
|
+
document_type_name_FR: string;
|
|
5955
|
+
document_type_name_PT: string;
|
|
5956
|
+
document_type_name: string;
|
|
5957
|
+
exempt: number;
|
|
5958
|
+
identification_number: string;
|
|
5959
|
+
identification_type_id: number;
|
|
5960
|
+
identification_type_name: string;
|
|
5961
|
+
installation_id: number;
|
|
5962
|
+
location_id: number;
|
|
5963
|
+
subtotal: number;
|
|
5964
|
+
tax: number;
|
|
5965
|
+
total: number;
|
|
5966
|
+
user_id: number;
|
|
5967
|
+
}
|
|
5711
5968
|
|
|
5712
5969
|
type AuthLoginIn = {
|
|
5713
5970
|
username: string;
|
|
@@ -5856,6 +6113,10 @@ type ShipmentsReportOut = {
|
|
|
5856
6113
|
shipments: ShipmentReports[];
|
|
5857
6114
|
total: number;
|
|
5858
6115
|
};
|
|
6116
|
+
type ShipmentsLandingReportOut = {
|
|
6117
|
+
shipments_landing: ShipmentLandingReport[];
|
|
6118
|
+
total: number;
|
|
6119
|
+
};
|
|
5859
6120
|
type ExternalShipmentsOut = {
|
|
5860
6121
|
external_shipments: ReportExternalShipment[];
|
|
5861
6122
|
total: number;
|
|
@@ -5895,6 +6156,11 @@ type InvoicesOut = {
|
|
|
5895
6156
|
invoices: Invoice[];
|
|
5896
6157
|
total: number;
|
|
5897
6158
|
};
|
|
6159
|
+
type SalesBookReportOut = {
|
|
6160
|
+
sale_books: Sales[];
|
|
6161
|
+
total: number;
|
|
6162
|
+
transaction_id?: string;
|
|
6163
|
+
};
|
|
5898
6164
|
|
|
5899
6165
|
declare class ApiReportsService {
|
|
5900
6166
|
private environments;
|
|
@@ -5920,6 +6186,31 @@ declare class ApiReportsService {
|
|
|
5920
6186
|
* @return {Observable<ShipmentsReportOut>} An observable emitting the shipment report data.
|
|
5921
6187
|
*/
|
|
5922
6188
|
getShipmentsReport(params: QueryParams): Observable<ShipmentsReportOut>;
|
|
6189
|
+
/**
|
|
6190
|
+
* Retrieves the shipments landing report from the reports API.
|
|
6191
|
+
*
|
|
6192
|
+
* Sends a GET request to the `/shipments-landing-report` endpoint with the provided query parameters.
|
|
6193
|
+
* The HTTP response is expected to be wrapped in an `ApiSuccess` envelope, from which the `data`
|
|
6194
|
+
* payload is extracted and returned as the stream value.
|
|
6195
|
+
*
|
|
6196
|
+
* @param params - Query parameters used to filter or paginate the shipments landing report.
|
|
6197
|
+
* @returns An observable that emits the parsed `ShipmentsLandingReportOut` data from the API response.
|
|
6198
|
+
*
|
|
6199
|
+
* @remarks
|
|
6200
|
+
* - The underlying HTTP call uses `HttpClient.get` with `params` serialized as query string values.
|
|
6201
|
+
* - The response is piped through `map` to unwrap `data` from `ApiSuccess<T>`.
|
|
6202
|
+
* - Errors from the HTTP request are propagated through the observable stream.
|
|
6203
|
+
*
|
|
6204
|
+
* @example
|
|
6205
|
+
* ```ts
|
|
6206
|
+
* // Basic usage:
|
|
6207
|
+
* service.getShipmentsLandingReport({ page: 1, perPage: 25 })
|
|
6208
|
+
* .subscribe(report => {
|
|
6209
|
+
* // handle ShipmentsLandingReportOut
|
|
6210
|
+
* });
|
|
6211
|
+
* ```
|
|
6212
|
+
*/
|
|
6213
|
+
getShipmentsLandingReport(params: QueryParams): Observable<ShipmentsLandingReportOut>;
|
|
5923
6214
|
/**
|
|
5924
6215
|
* Retrieves a report of external shipments based on the provided query parameters.
|
|
5925
6216
|
*
|
|
@@ -5969,6 +6260,19 @@ declare class ApiReportsService {
|
|
|
5969
6260
|
* @returns An observable that emits the list of invoices.
|
|
5970
6261
|
*/
|
|
5971
6262
|
getInvoices(params: QueryParams): Observable<InvoicesOut>;
|
|
6263
|
+
/**
|
|
6264
|
+
* Retrieves the sales book report based on the provided query parameters.
|
|
6265
|
+
*
|
|
6266
|
+
* @param params - The query parameters to filter or customize the report.
|
|
6267
|
+
* @returns An Observable that emits the sales book report data.
|
|
6268
|
+
*
|
|
6269
|
+
* @example
|
|
6270
|
+
* ```typescript
|
|
6271
|
+
* this.apiReportsService.getSalesBookReport({ page: 1, limit: 10 })
|
|
6272
|
+
* .subscribe(report => console.log(report));
|
|
6273
|
+
* ```
|
|
6274
|
+
*/
|
|
6275
|
+
getSalesBookReport(params: QueryParams): Observable<SalesBookReportOut>;
|
|
5972
6276
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
|
|
5973
6277
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
|
|
5974
6278
|
}
|
|
@@ -6319,6 +6623,34 @@ interface ExportType extends SymfonyModel {
|
|
|
6319
6623
|
code: string;
|
|
6320
6624
|
name: string;
|
|
6321
6625
|
}
|
|
6626
|
+
interface DestinationCountry extends ActiveLessSymfonyModel {
|
|
6627
|
+
code: string;
|
|
6628
|
+
name: string;
|
|
6629
|
+
}
|
|
6630
|
+
interface EmbassyShipment extends SymfonyModel {
|
|
6631
|
+
id: number;
|
|
6632
|
+
countryId: number;
|
|
6633
|
+
name: string;
|
|
6634
|
+
destinationCountry: DestinationCountry;
|
|
6635
|
+
destinationCityName: string | null;
|
|
6636
|
+
destinationPostalCode: string | null;
|
|
6637
|
+
destinationCountyName: string | null;
|
|
6638
|
+
contentDescription: string | null;
|
|
6639
|
+
shipmentContentType: ShipmentContentType;
|
|
6640
|
+
piecesNumber: number | null;
|
|
6641
|
+
destinationCompanyName: string | null;
|
|
6642
|
+
destinationFullName: string | null;
|
|
6643
|
+
destinationAddressLine1: string | null;
|
|
6644
|
+
destinationAddressLine2: string | null;
|
|
6645
|
+
destinationAddressLine3: string | null;
|
|
6646
|
+
destinationPhoneCode: string | null;
|
|
6647
|
+
destinationPhoneNumber: string | null;
|
|
6648
|
+
destinationEmail: string | null;
|
|
6649
|
+
businessPartyTraderTypeId: number | null;
|
|
6650
|
+
isActive: boolean;
|
|
6651
|
+
createdAt: string;
|
|
6652
|
+
updatedAt: string;
|
|
6653
|
+
}
|
|
6322
6654
|
|
|
6323
6655
|
type ValidateAccountIn = {
|
|
6324
6656
|
accountValue: string;
|
|
@@ -6411,6 +6743,34 @@ type ExportTypesOut = {
|
|
|
6411
6743
|
exportTypes: ExportType[];
|
|
6412
6744
|
total: number;
|
|
6413
6745
|
};
|
|
6746
|
+
type EmbassyShipmentsOut = {
|
|
6747
|
+
total: number;
|
|
6748
|
+
embassyShipments: EmbassyShipment[];
|
|
6749
|
+
};
|
|
6750
|
+
type EmbassyShipmentIn = {
|
|
6751
|
+
countryId: number;
|
|
6752
|
+
name: string;
|
|
6753
|
+
destinationCountryId: number | null;
|
|
6754
|
+
destinationCityName: string | null;
|
|
6755
|
+
destinationPostalCode: string | null;
|
|
6756
|
+
destinationCountyName: string | null;
|
|
6757
|
+
contentDescription: string | null;
|
|
6758
|
+
shipmentContentTypeId: number | null;
|
|
6759
|
+
piecesNumber: number | null;
|
|
6760
|
+
destinationCompanyName: string | null;
|
|
6761
|
+
destinationFullName: string | null;
|
|
6762
|
+
destinationAddressLine1: string | null;
|
|
6763
|
+
destinationAddressLine2: string | null;
|
|
6764
|
+
destinationAddressLine3: string | null;
|
|
6765
|
+
destinationPhoneCode: string | null;
|
|
6766
|
+
destinationPhoneNumber: string | null;
|
|
6767
|
+
destinationEmail: string | null;
|
|
6768
|
+
businessPartyTraderTypeId: number | null;
|
|
6769
|
+
isActive: boolean;
|
|
6770
|
+
};
|
|
6771
|
+
interface EmbassyShipmentOut {
|
|
6772
|
+
embassyShipment: EmbassyShipment;
|
|
6773
|
+
}
|
|
6414
6774
|
|
|
6415
6775
|
declare class ApiShipmentsService {
|
|
6416
6776
|
private environments;
|
|
@@ -6461,6 +6821,25 @@ declare class ApiShipmentsService {
|
|
|
6461
6821
|
* @return {Observable<ExportTypesOut>} An observable containing the list of export types.
|
|
6462
6822
|
*/
|
|
6463
6823
|
getExportTypes(params: QueryParams): Observable<ExportTypesOut>;
|
|
6824
|
+
/**
|
|
6825
|
+
* Retrieves a paginated list of embassy shipments
|
|
6826
|
+
* @param {QueryParams} params - Query parameters for filtering and pagination
|
|
6827
|
+
* @returns {Observable<EmbassyShipmentsOut>} Observable containing the list of shipments and pagination metadata
|
|
6828
|
+
*/
|
|
6829
|
+
getEmbassyShipments(params: QueryParams): Observable<EmbassyShipmentsOut>;
|
|
6830
|
+
/**
|
|
6831
|
+
* Creates a new embassy shipment
|
|
6832
|
+
* @param {EmbassyShipmentIn} body - The shipment data to create
|
|
6833
|
+
* @returns {Observable<EmbassyShipmentOut>} Observable containing the created shipment with its assigned ID
|
|
6834
|
+
*/
|
|
6835
|
+
postEmbassyShipments(body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
6836
|
+
/**
|
|
6837
|
+
* Updates an existing embassy shipment
|
|
6838
|
+
* @param {number} id - The unique identifier of the shipment to update
|
|
6839
|
+
* @param {EmbassyShipmentIn} body - The updated shipment data
|
|
6840
|
+
* @returns {Observable<EmbassyShipmentOut>} Observable containing the updated shipment
|
|
6841
|
+
*/
|
|
6842
|
+
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
6464
6843
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
6465
6844
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
6466
6845
|
}
|
|
@@ -6769,5 +7148,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
6769
7148
|
[header: string]: string | string[];
|
|
6770
7149
|
};
|
|
6771
7150
|
|
|
6772
|
-
export { AlphaNumeric, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
|
|
6773
|
-
export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CollectionPayment, CommercialInvoice, Commodity, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCurrencyRate, CountryDocumentType, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeReports, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, Invoice, InvoiceTypeCustomParamsIn, Item, Language, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodesOut, PostalLocation, PostalLocationsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionIn, PromotionOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOut, QuestionsOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, State, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TransferenceType, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
|
|
7151
|
+
export { AlphaNumeric, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
|
|
7152
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCurrencyRate, CountryDocumentType, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeReports, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, 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, Holiday, HolidayIn, HolidayOut, HolidaysOut, 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, Invoice, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackagesInStockIn, PackagesInStockOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodesOut, PostalLocation, PostalLocationsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, State, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TransferenceType, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
|