@experteam-mx/ngx-services 20.7.0-dev1.1 → 20.7.0-dev1.11

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
@@ -4,6 +4,15 @@ import { Observable, BehaviorSubject } from 'rxjs';
4
4
  import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
5
5
  import { Channel } from 'pusher-js';
6
6
 
7
+ /**
8
+ * Opt-in HTTP cache rule. First matching pattern against `req.urlWithParams` wins.
9
+ */
10
+ type HttpCacheRoute = {
11
+ /** RegExp source matched against `req.urlWithParams` */
12
+ pattern: string;
13
+ /** TTL in milliseconds */
14
+ ttl: number;
15
+ };
7
16
  /**
8
17
  * Represents the configuration settings for the application's environment.
9
18
  * This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
@@ -16,7 +25,7 @@ import { Channel } from 'pusher-js';
16
25
  * - apiSecurityUrl: The URL for the security-related API endpoint.
17
26
  * - apiShipmentUrl: The URL for the shipment API endpoint.
18
27
  * - authCookie: The name of the authentication cookie used for user sessions.
19
- * - cacheTtl: Optional. Specifies the time-to-live (TTL) for cached items.
28
+ * - cacheRoutes: Optional. Opt-in HTTP cache rules; first matching pattern wins.
20
29
  * - printUrl: Optional. The URL used for generating or downloading printable documents.
21
30
  * - secretKey: A secret key used for authentication or other secure operations.
22
31
  */
@@ -29,10 +38,12 @@ type Environment = {
29
38
  apiBillingSV?: string;
30
39
  apiCashOperationsUrl?: string;
31
40
  apiCatalogsUrl?: string;
41
+ apiCheckpointsUrl?: string;
32
42
  apiCompaniesUrl?: string;
33
43
  apiCompositionUrl?: string;
34
44
  apiCustomsUrl?: string;
35
45
  apiDiscountsUrl?: string;
46
+ apiDropoffUrl?: string;
36
47
  apiEToolsAutoBilling?: string;
37
48
  apiEventsUrl?: string;
38
49
  apiExternalOperationsUrl?: string;
@@ -48,7 +59,7 @@ type Environment = {
48
59
  apiSuppliesUrl?: string;
49
60
  apiSurveysUrl?: string;
50
61
  authCookie?: string;
51
- cacheTtl?: number;
62
+ cacheRoutes?: HttpCacheRoute[];
52
63
  printUrl?: string;
53
64
  secretKey?: string;
54
65
  sockets?: {
@@ -1321,6 +1332,22 @@ interface PriceOverrideReason extends SymfonyModel {
1321
1332
  name: string;
1322
1333
  countryId: number;
1323
1334
  }
1335
+ interface UpsellingIndicator extends SymfonyModel {
1336
+ name: string;
1337
+ method: 'product_based' | 'delivery_date_based' | string;
1338
+ countryIds: UpsellingIndicatorCountry[];
1339
+ productIds: UpsellingIndicatorProduct[];
1340
+ flagName: string;
1341
+ flagColor: string;
1342
+ flagTextColor: string;
1343
+ }
1344
+ interface UpsellingIndicatorCountry extends ApiModel {
1345
+ name: string;
1346
+ }
1347
+ interface UpsellingIndicatorProduct extends ApiModel {
1348
+ globalCode: string;
1349
+ globalName: string;
1350
+ }
1324
1351
 
1325
1352
  type OperationTypesOut = {
1326
1353
  total: number;
@@ -1592,6 +1619,23 @@ type ExportReasonTypesOut = {
1592
1619
  type ExportReasonOut = {
1593
1620
  exportReason: ExportReason;
1594
1621
  };
1622
+ type UpsellingIndicatorsOut = {
1623
+ total: number;
1624
+ upsellingIndicators: UpsellingIndicator[];
1625
+ };
1626
+ type UpsellingIndicatorOut = {
1627
+ upsellingIndicators: UpsellingIndicator;
1628
+ };
1629
+ type UpsellingIndicatorIn = {
1630
+ name: string;
1631
+ method: string;
1632
+ flagName: string;
1633
+ flagTextColor: string;
1634
+ flagColor: string;
1635
+ countries: UpsellingIndicatorCountry[];
1636
+ products: UpsellingIndicatorProduct[];
1637
+ isActive: boolean;
1638
+ };
1595
1639
 
1596
1640
  declare class ApiCatalogsService {
1597
1641
  private environments;
@@ -2155,10 +2199,113 @@ declare class ApiCatalogsService {
2155
2199
  * @returns An Observable that emits the export reason types data
2156
2200
  */
2157
2201
  getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
2202
+ /**
2203
+ * Retrieves the list of upselling indicators.
2204
+ * @param params - Query parameters used to filter or paginate the results
2205
+ * @returns An Observable that emits the upselling indicators and total count
2206
+ */
2207
+ getUpsellingIndicators(params: QueryParams): Observable<UpsellingIndicatorsOut>;
2208
+ /**
2209
+ * Creates a new upselling indicator.
2210
+ * @param body - Upselling indicator data
2211
+ * @returns An Observable that emits the created upselling indicator
2212
+ */
2213
+ postUpsellingIndicator(body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2214
+ /**
2215
+ * Updates an existing upselling indicator.
2216
+ * @param id - Identifier of the upselling indicator to update
2217
+ * @param body - Updated upselling indicator data
2218
+ * @returns An Observable that emits the updated upselling indicator
2219
+ */
2220
+ putUpsellingIndicator(id: number, body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2221
+ /**
2222
+ * Deletes an upselling indicator by its identifier.
2223
+ * @param id - Identifier of the upselling indicator to delete
2224
+ * @returns An Observable that emits the operation result
2225
+ */
2226
+ deleteUpsellingIndicator(id: number): Observable<{}>;
2227
+ /**
2228
+ * Updates the active status of an upselling indicator.
2229
+ * @param id - Identifier of the upselling indicator
2230
+ * @param isActive - Indicates whether the upselling indicator should be active or inactive
2231
+ * @returns An Observable that emits the operation result
2232
+ */
2233
+ patchUpsellingIndicator(id: number, isActive: boolean): Observable<{}>;
2158
2234
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
2159
2235
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
2160
2236
  }
2161
2237
 
2238
+ interface EventRegister extends LaravelModel {
2239
+ shipment_tracking_number: string;
2240
+ package_tracking_number: string;
2241
+ checkpoint_code_id: number;
2242
+ datetime: string;
2243
+ gmt_offset: string;
2244
+ iata: string;
2245
+ facility_code: string;
2246
+ route_number: string;
2247
+ status: number;
2248
+ client: string;
2249
+ extra_fields: {
2250
+ OrgFcId: string;
2251
+ };
2252
+ event_reason_code: string;
2253
+ transaction_id: string;
2254
+ esb_data: {
2255
+ Remark: string;
2256
+ };
2257
+ checkpoint_code: CheckpointCode;
2258
+ }
2259
+ interface CheckpointCode extends LaravelModel {
2260
+ checkpoint_id: number;
2261
+ event_type_code: string;
2262
+ event_reason_code: string;
2263
+ template_script: string;
2264
+ description: string;
2265
+ checkpoint: Checkpoint;
2266
+ }
2267
+ interface Checkpoint extends LaravelModel {
2268
+ name: string;
2269
+ code: string;
2270
+ checkpoint_type: number;
2271
+ }
2272
+
2273
+ type EventRegistersOut = {
2274
+ event_registers: EventRegister[];
2275
+ total: number;
2276
+ };
2277
+ type CheckpointsOut = {
2278
+ checkpoints: Checkpoint[];
2279
+ total: number;
2280
+ };
2281
+
2282
+ declare class ApiCheckpointsService {
2283
+ private environments;
2284
+ private http;
2285
+ /**
2286
+ * Retrieves the API checkpoints URL from the environment configuration.
2287
+ *
2288
+ * @returns {string} The API checkpoints URL.
2289
+ */
2290
+ get url(): string;
2291
+ /**
2292
+ * Retrieves event registers from the checkpoints API.
2293
+ *
2294
+ * @param {QueryParams} params - Query parameters for filtering and pagination.
2295
+ * @returns {Observable<EventRegistersOut>} An observable containing the event registers data.
2296
+ */
2297
+ getEventRegisters(params: QueryParams): Observable<EventRegistersOut>;
2298
+ /**
2299
+ * Retrieves checkpoints from the checkpoints API.
2300
+ *
2301
+ * @param {QueryParams} params - Query parameters for filtering and pagination.
2302
+ * @returns {Observable<CheckpointsInventoryOut>} An observable containing the checkpoints data.
2303
+ */
2304
+ getCheckpoints(params: QueryParams): Observable<CheckpointsOut>;
2305
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiCheckpointsService, never>;
2306
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiCheckpointsService>;
2307
+ }
2308
+
2162
2309
  type AuthLoginIn = {
2163
2310
  username: string;
2164
2311
  password: string;
@@ -2512,9 +2659,7 @@ interface Parameter extends LaravelModel {
2512
2659
  type: string;
2513
2660
  regex: string;
2514
2661
  description: string;
2515
- value: string | number | boolean | null | {
2516
- [key: string]: (string | number | boolean | null)[];
2517
- };
2662
+ value: unknown;
2518
2663
  parameter_type_id: number;
2519
2664
  }
2520
2665
  interface ParameterConfig {
@@ -2913,25 +3058,22 @@ type ParametersOut = {
2913
3058
  parameters: Parameter[];
2914
3059
  total: number;
2915
3060
  };
2916
- type ParametersValuesIn = {
2917
- paramNames: string[];
2918
- };
2919
3061
  type ParametersValuesOut = {
2920
- parameters: Parameter[];
2921
- total: number;
3062
+ parameters: {
3063
+ id: number;
3064
+ name: string;
3065
+ value: Parameter['value'];
3066
+ model_type: string;
3067
+ model_id: number;
3068
+ }[];
2922
3069
  };
2923
- type ParametersByLevelIn = {
3070
+ type ParametersByModelIn = {
2924
3071
  name: string;
2925
3072
  model_type: string;
2926
3073
  model_id: number;
2927
3074
  }[];
2928
- type ParameterValueIn = {
2929
- paramName: string;
2930
- };
2931
3075
  type ParameterValueOut = {
2932
- value: string | boolean | number | {
2933
- [key: string]: (string | boolean | number)[];
2934
- };
3076
+ value: Parameter['value'];
2935
3077
  };
2936
3078
  type CountryReferencesOut = {
2937
3079
  country_references: CountryReference[];
@@ -3156,9 +3298,6 @@ type TDXAccountSettingsIn = {
3156
3298
  product_id: number;
3157
3299
  is_active: boolean;
3158
3300
  };
3159
- type LocationEmployeesIn = {
3160
- token: string;
3161
- } & QueryParams;
3162
3301
 
3163
3302
  declare class ApiCompaniesService {
3164
3303
  private environments;
@@ -3583,26 +3722,24 @@ declare class ApiCompaniesService {
3583
3722
  /**
3584
3723
  * Retrieves the parameter values based on the provided parameter names.
3585
3724
  *
3586
- * @param {Object} params - An object containing the required parameters.
3587
- * @param {string[]} params.paramNames - An array of parameter names for which the values need to be fetched.
3725
+ * @param {string[]} names - An array of parameter names for which the values need to be fetched.
3588
3726
  * @return {Observable<ParametersValuesOut>} An observable that emits the fetched parameter values.
3589
3727
  */
3590
- postParametersValues({ paramNames }: ParametersValuesIn): Observable<ParametersValuesOut>;
3728
+ postParametersValues(names: string[]): Observable<ParametersValuesOut>;
3591
3729
  /**
3592
- * Retrieves parameter values based on the provided level configuration.
3730
+ * Retrieves parameter values based on the provided model configuration.
3593
3731
  *
3594
- * @param {ParametersByLevelIn} parameters - The input object containing the criteria or level details to retrieve the parameters.
3732
+ * @param {ParametersByModelIn} parameters - The input object containing the criteria or model details to retrieve the parameters.
3595
3733
  * @return {Observable<ParametersValuesOut>} An observable that emits the parameter values fetched from the server.
3596
3734
  */
3597
- postParameterValueByModel(parameters: ParametersByLevelIn): Observable<ParametersValuesOut>;
3735
+ postParameterValueByModel(parameters: ParametersByModelIn): Observable<ParametersValuesOut>;
3598
3736
  /**
3599
3737
  * Retrieves the value of a specified parameter.
3600
3738
  *
3601
- * @param {Object} input - The input object containing the parameter details.
3602
- * @param {string} input.paramName - The name of the parameter whose value is to be retrieved.
3739
+ * @param {string} name - The name of the parameter whose value is to be retrieved.
3603
3740
  * @return {Observable<ParameterValueOut>} An observable emitting the value of the specified parameter.
3604
3741
  */
3605
- getParameterValue({ paramName, }: ParameterValueIn): Observable<ParameterValueOut>;
3742
+ getParameterValue(name: string): Observable<ParameterValueOut>;
3606
3743
  /**
3607
3744
  * Retrieves a list of country references based on the given query parameters.
3608
3745
  *
@@ -3891,18 +4028,6 @@ declare class ApiCompaniesService {
3891
4028
  * @returns {Observable<TDXAccountSettingsOut>} An observable containing the updated TDX account setting.
3892
4029
  */
3893
4030
  putTDXAccountSettings(id: number, body: TDXAccountSettingsIn): Observable<TDXAccountSettingsOut>;
3894
- /**
3895
- * Retrieves the employees of a specific location using a provided token.
3896
- *
3897
- * @param params - Input parameters for the request, defined by the `LocationEmployeesIn` interface.
3898
- * @returns An `Observable<LocationEmployeesOut>` that emits the employees
3899
- * associated with the given location.
3900
- * @returns The response type is `ApiSuccess<LocationEmployeesOut>`, from which the `data` field is extracted.
3901
- */
3902
- getLocationEmployeesByToken(params: {
3903
- token: string;
3904
- queryParams: QueryParams;
3905
- }): Observable<LocationEmployeesOut>;
3906
4031
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCompaniesService, never>;
3907
4032
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
3908
4033
  }
@@ -4887,6 +5012,41 @@ declare class ApiDiscountsService {
4887
5012
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
4888
5013
  }
4889
5014
 
5015
+ type ShipmentsBookingIn = {
5016
+ transactionId: string;
5017
+ shipmentTrackingNumbers: string[];
5018
+ };
5019
+ type ShipmentsEReceiptIn = {
5020
+ transactionId: string;
5021
+ shipmentTrackingNumbers: string[];
5022
+ addresses: string[];
5023
+ };
5024
+
5025
+ declare class ApiDropoffsService {
5026
+ private environments;
5027
+ private http;
5028
+ /**
5029
+ * Retrieves the URL for the Inventories API from the environment configurations.
5030
+ *
5031
+ * @return {string} The URL of the Inventories API.
5032
+ */
5033
+ get url(): string;
5034
+ /**
5035
+ * Send a Courier Request for Shipment.
5036
+ *
5037
+ * @param {ShipmentsBookingIn} body - The courier for shipment data.
5038
+ */
5039
+ postShipmentsBooking(body: ShipmentsBookingIn): Observable<{}>;
5040
+ /**
5041
+ * Send a EReceipt for Shipment.
5042
+ *
5043
+ * @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
5044
+ */
5045
+ postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
5046
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
5047
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
5048
+ }
5049
+
4890
5050
  interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
4891
5051
  addressLine1: string;
4892
5052
  addressLine2: string;
@@ -5145,6 +5305,170 @@ interface Operation extends LaravelModel {
5145
5305
  }[];
5146
5306
  };
5147
5307
  }
5308
+ interface TaxToSignaturePage extends ActiveLessLaravelModel {
5309
+ code: string;
5310
+ percent: number;
5311
+ base_amount: number;
5312
+ amount: number;
5313
+ }
5314
+ interface ExtraChargeTax {
5315
+ code: string;
5316
+ percent: number;
5317
+ base_amount: number;
5318
+ amount: number;
5319
+ }
5320
+ interface ExtraChargeToSignaturePage {
5321
+ global_service_code: string;
5322
+ local_service_code: string;
5323
+ global_service_name: string;
5324
+ local_service_name: string;
5325
+ is_discount: boolean;
5326
+ subtotal: number;
5327
+ tax: number;
5328
+ total: number;
5329
+ taxes: ExtraChargeTax[];
5330
+ }
5331
+ interface AddressToSignaturePage {
5332
+ role_type: CustomerRoleType;
5333
+ identification_type_name: string | null;
5334
+ identification_number: string | null;
5335
+ company_name: string;
5336
+ full_name: string;
5337
+ email: string;
5338
+ phone_code: string;
5339
+ phone_number: string;
5340
+ postal_code: string | null;
5341
+ state_code: string | null;
5342
+ county_name: string | null;
5343
+ city_name: string;
5344
+ address_line_1: string;
5345
+ address_line_2: string | null;
5346
+ address_line_3: string | null;
5347
+ country_name: string;
5348
+ state: string | null;
5349
+ business_party_trader_type_name: string | null;
5350
+ }
5351
+ interface PiecesToSignaturePage {
5352
+ number: number;
5353
+ height: number;
5354
+ length: number;
5355
+ width: number;
5356
+ real_weight: number;
5357
+ volumetric_weight: number;
5358
+ tracking_number: string;
5359
+ shipment_piece_supplies: PieceSupplyToSignaturePage[];
5360
+ }
5361
+ interface PieceSupplyToSignaturePage {
5362
+ quantity: number;
5363
+ subtotal: number;
5364
+ tax_base: number;
5365
+ tax_percent: number;
5366
+ tax: number;
5367
+ total: number;
5368
+ supply_name: string;
5369
+ }
5370
+ interface CommercialInvoiceItemToSignaturePage {
5371
+ description: string;
5372
+ quantity: number;
5373
+ quantity_unit_name: string;
5374
+ subtotal: number;
5375
+ manufacture_country_name: string;
5376
+ real_weight: number;
5377
+ commodity_name: string | null;
5378
+ }
5379
+ interface CommercialInvoiceToSignaturePage {
5380
+ document_type_name: string;
5381
+ trading_transaction_type_name: string | null;
5382
+ number: number | null;
5383
+ remarks: string | null;
5384
+ items: CommercialInvoiceItemToSignaturePage[];
5385
+ }
5386
+ interface BookPickupToSignaturePage {
5387
+ pickup_date: string | null;
5388
+ ready_by_time: string | null;
5389
+ close_time: string | null;
5390
+ confirmation_number: string | null;
5391
+ package_location_name: string | null;
5392
+ remarks: string | null;
5393
+ }
5394
+ interface CustomsAttribute {
5395
+ field: string | null;
5396
+ dhl_code: string | null;
5397
+ input_label: string;
5398
+ values: CustomsAttributeValues;
5399
+ }
5400
+ interface CustomsAttributeValues {
5401
+ shipment?: string;
5402
+ customer?: Record<string, string>;
5403
+ invoiceHeader?: string;
5404
+ invoiceItem?: string[];
5405
+ }
5406
+ interface CustomsRule {
5407
+ level: string;
5408
+ attributes: CustomsAttribute[];
5409
+ }
5410
+ interface ShipmentCustoms {
5411
+ rules: CustomsRule[];
5412
+ }
5413
+ interface ShipmentDataToSignaturePage {
5414
+ currency_code: string;
5415
+ decimal_point: number;
5416
+ decimal_separator: string;
5417
+ thousands_separator: string;
5418
+ tracking_number: string;
5419
+ content_description: string;
5420
+ pieces_number: number;
5421
+ global_product_code: string;
5422
+ global_product_name: string;
5423
+ local_product_code: string;
5424
+ local_product_name: string;
5425
+ delivery_date_time: string;
5426
+ is_document: boolean;
5427
+ is_insured: boolean;
5428
+ declared_value: number | null;
5429
+ insured_value: number | null;
5430
+ declared_currency: string | null;
5431
+ insured_currency: string | null;
5432
+ promotion_code: string | null;
5433
+ export_reason_name: string | null;
5434
+ product_subtotal: number;
5435
+ product_tax: number;
5436
+ product_total: number;
5437
+ subtotal: number;
5438
+ tax: number;
5439
+ total: number;
5440
+ product_taxes: TaxToSignaturePage[];
5441
+ shipment_taxes: TaxToSignaturePage[];
5442
+ extra_charges_mandatory: ExtraChargeToSignaturePage[];
5443
+ extra_charges_optional: ExtraChargeToSignaturePage[];
5444
+ extra_charges_aggregated: ExtraChargeToSignaturePage[];
5445
+ shipment_addresses: AddressToSignaturePage[];
5446
+ shipment_pieces: PiecesToSignaturePage[];
5447
+ commercial_invoice: CommercialInvoiceToSignaturePage | null;
5448
+ shipment_book_pickup: BookPickupToSignaturePage | null;
5449
+ customs: ShipmentCustoms | null;
5450
+ created_at: string;
5451
+ updated_at: string;
5452
+ }
5453
+ interface SignaturePage {
5454
+ terms_and_condition: string;
5455
+ marketing_consent: string | null;
5456
+ marketing_consent_mandatory: boolean;
5457
+ additional_verbiage: string | null;
5458
+ }
5459
+ interface SignaturePageAnswers {
5460
+ terms_and_condition: boolean;
5461
+ marketing_consent: boolean | null;
5462
+ additional_verbiage: boolean | null;
5463
+ }
5464
+ interface SignaturePageConfirmation extends ActiveLessLaravelModel {
5465
+ shipment_id: number;
5466
+ code: string;
5467
+ status: string;
5468
+ shipment_data: ShipmentDataToSignaturePage;
5469
+ signature_page: SignaturePage;
5470
+ expiry: number;
5471
+ }
5148
5472
 
5149
5473
  type DeliveryConfirmationGenerateOut = {
5150
5474
  code: string;
@@ -5180,6 +5504,29 @@ type DeliveryConfirmationIn = {
5180
5504
  type DeliveryConfirmationSearchOut = {
5181
5505
  operation: Operation;
5182
5506
  };
5507
+ type SignaturePageConfirmationGenerateOut = {
5508
+ code: string;
5509
+ };
5510
+ type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
5511
+ type ConfirmTermsIn = {
5512
+ shipment_id: number;
5513
+ status: 'Processed' | 'Canceled';
5514
+ signature_page_answers: SignaturePageAnswers | null;
5515
+ };
5516
+ type SignaturePageConfirmationOut = {
5517
+ operation: SignaturePageConfirmation;
5518
+ };
5519
+ type ShipmentSignaturePageIn = {
5520
+ shipment_id: number;
5521
+ shipment_data: ShipmentDataToSignaturePage;
5522
+ signature_page: SignaturePage;
5523
+ };
5524
+ type ShipmentSignaturePageConfirmationIn = {
5525
+ shipment_id: number;
5526
+ status: string;
5527
+ signature_page_answers: SignaturePageAnswers | null;
5528
+ otp: string;
5529
+ };
5183
5530
 
5184
5531
  declare class ApiExternalOperationsService {
5185
5532
  private http;
@@ -5196,7 +5543,7 @@ declare class ApiExternalOperationsService {
5196
5543
  * Retrieves delivery confirmation details based on the provided OTP code.
5197
5544
  *
5198
5545
  * @param {string} otpCode - The OTP code used to search for delivery confirmation.
5199
- * @return {Observable<DeliveryConfirmationData>} An observable containing the delivery confirmation data.
5546
+ * @return {Observable<DeliveryConfirmationSearchOut>} An observable containing the delivery confirmation data.
5200
5547
  */
5201
5548
  getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
5202
5549
  /**
@@ -5224,6 +5571,29 @@ declare class ApiExternalOperationsService {
5224
5571
  * @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
5225
5572
  */
5226
5573
  putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
5574
+ /**
5575
+ * Retrieves signature page confirmation information associated with an OTP code.
5576
+ *
5577
+ * @param {string} otpCode - OTP code used to search for the signature page confirmation.
5578
+ * @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
5579
+ */
5580
+ getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
5581
+ /**
5582
+ * Generates a signature page confirmation request for a shipment.
5583
+ *
5584
+ * @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
5585
+ * @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
5586
+ */
5587
+ postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
5588
+ /**
5589
+ * Confirms a shipment signature page using an OTP code.
5590
+ *
5591
+ * @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
5592
+ * @param {string} input.otp - OTP code used to validate the confirmation.
5593
+ * @param {...Object} input.body - Additional confirmation information sent in the request body.
5594
+ * @returns {Observable<{}>} An observable that emits the API response data.
5595
+ */
5596
+ putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
5227
5597
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
5228
5598
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
5229
5599
  }
@@ -5254,8 +5624,34 @@ declare enum Group {
5254
5624
  expiration = "expiration",
5255
5625
  verification = "verification"
5256
5626
  }
5627
+ declare enum InventoryActions {
5628
+ INVENTORY_CHECK_OUT = "inventoryCheckOut",
5629
+ INVENTORY_COURIER_PICK_UP = "inventoryCourierPickUp",
5630
+ INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
5631
+ INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
5632
+ INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
5633
+ INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications",
5634
+ INVENTORY_ON_HOLD_MISSED_CONNECTION = "inventoryOnHoldMissed"
5635
+ }
5636
+ declare enum InventoryErrorCodes {
5637
+ CODE_SHP_FORMAT = "INV-E001",
5638
+ CODE_PCKG_FORMAT = "INV-E002",
5639
+ CODE_PACKAGE_NOT_FOUND = "INV-E101",
5640
+ CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
5641
+ CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
5642
+ CODE_PACKAGE_NOT_MISSING = "INV-E107",
5643
+ CODE_ACTION_NOT_VALID = "INV-E108",
5644
+ CODE_MULTIPLE_PACKAGES = "INV-E109",
5645
+ CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
5646
+ CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
5647
+ }
5648
+ declare enum RouteModelType {
5649
+ ROUTE_ID = "RouteId",
5650
+ COURIER = "Courier",
5651
+ COURIER_ROUTE = "CourierRoute"
5652
+ }
5257
5653
 
5258
- interface Checkpoint extends ActiveLessSymfonyModel {
5654
+ interface CheckpointInventory extends ActiveLessSymfonyModel {
5259
5655
  code: string;
5260
5656
  name: string;
5261
5657
  event: Event;
@@ -5267,10 +5663,10 @@ interface CheckpointEventReason extends ActiveLessSymfonyModel {
5267
5663
  extraFields: {
5268
5664
  [key: string]: string;
5269
5665
  };
5270
- checkpoint: Checkpoint | null;
5666
+ checkpoint: CheckpointInventory | null;
5271
5667
  }
5272
5668
  interface Incident extends SymfonyModel {
5273
- checkpoint: Checkpoint | null;
5669
+ checkpoint: CheckpointInventory | null;
5274
5670
  countryId: string;
5275
5671
  event: Event;
5276
5672
  name: string;
@@ -5354,10 +5750,31 @@ interface OperationTypeInventory extends SymfonyModel {
5354
5750
  name: TranslateLang;
5355
5751
  };
5356
5752
  }
5753
+ interface CourierRoute extends SymfonyModel {
5754
+ number: string;
5755
+ name: string;
5756
+ locationId: number;
5757
+ }
5758
+ interface Package5 extends ApiModel {
5759
+ shipmentTrackingNumber: string;
5760
+ trackingNumber: string;
5761
+ position: string | null;
5762
+ messageFail: string;
5763
+ lastStatus: Status5;
5764
+ }
5765
+ interface Status5 {
5766
+ code: string;
5767
+ name: string;
5768
+ description: string | null;
5769
+ }
5770
+ interface Package9 extends ApiModel {
5771
+ shipmentTrackingNumber: string;
5772
+ trackingNumber: string;
5773
+ }
5357
5774
 
5358
- type CheckpointsOut = {
5775
+ type CheckpointsInventoryOut = {
5359
5776
  total: number;
5360
- checkpoints: Checkpoint[];
5777
+ checkpoints: CheckpointInventory[];
5361
5778
  };
5362
5779
  type CheckpointEventReasonsOut = {
5363
5780
  total: number;
@@ -5422,6 +5839,7 @@ type ReEntryOfMissingPackagesOut = {
5422
5839
  reEntryOfMissingPackages: ReEntryOfMissingPackages;
5423
5840
  };
5424
5841
  type ReEntryOfMissingPackagesIn = {
5842
+ transactionId: string;
5425
5843
  packagesIds: number[];
5426
5844
  };
5427
5845
  type CourierCheckOutPackesOut = {
@@ -5451,6 +5869,81 @@ type StockUpdatePackagesOut = {
5451
5869
  totalFirstMilePackages: number;
5452
5870
  totalStockUpdatePackages: number;
5453
5871
  };
5872
+ type CourierRoutesOut = {
5873
+ courierRoutes: CourierRoute[];
5874
+ total: number;
5875
+ };
5876
+ type CourierRouteOut = {
5877
+ courierRoute: CourierRoute;
5878
+ };
5879
+ type CourierRouteIn = {
5880
+ number: string;
5881
+ name: string;
5882
+ locationId: number;
5883
+ isActive: boolean;
5884
+ };
5885
+ type PackageValidationActionIn = {
5886
+ shipmentTrackingNumber?: string;
5887
+ trackingNumber?: string;
5888
+ action: InventoryActions;
5889
+ transactionId?: string;
5890
+ };
5891
+ type PackageValidationActionOut = {
5892
+ packageValidation: {
5893
+ transactionId: string;
5894
+ package: {
5895
+ id: number;
5896
+ shipmentTrackingNumber: string;
5897
+ trackingNumber: string;
5898
+ };
5899
+ };
5900
+ };
5901
+ type ReturnFirstMileIn = {
5902
+ packagesIds: number[];
5903
+ transactionId: string;
5904
+ routeModelId: string | number;
5905
+ routeModelType: RouteModelType;
5906
+ };
5907
+ type ReturnFirstMileOut = {
5908
+ returnFirstMile: {
5909
+ status: boolean;
5910
+ messages: string[];
5911
+ number: string;
5912
+ };
5913
+ };
5914
+ type PackageReassignPositionIn = {
5915
+ packagesIds: number[];
5916
+ transactionId: string;
5917
+ position: string;
5918
+ };
5919
+ type PackageReassignPositionOut = {
5920
+ packageReassignPositions: {
5921
+ number: number;
5922
+ packages: Package5[];
5923
+ };
5924
+ };
5925
+ type MissingPackagesIn = {
5926
+ packagesIds: number[];
5927
+ transactionId: string;
5928
+ };
5929
+ type MissingPackagesOut = {
5930
+ missingPackages: {
5931
+ number: string;
5932
+ operationPackages: {
5933
+ packages: Package9[];
5934
+ };
5935
+ };
5936
+ };
5937
+ type PackageOnHoldIn = {
5938
+ packagesIds: number[];
5939
+ transactionId: string;
5940
+ };
5941
+ type PackageOnHoldOut = {
5942
+ PackagesOnHold: {
5943
+ number: number;
5944
+ packages: Package9[];
5945
+ };
5946
+ };
5454
5947
 
5455
5948
  declare class ApiInventoriesService {
5456
5949
  private environments;
@@ -5465,9 +5958,9 @@ declare class ApiInventoriesService {
5465
5958
  * Retrieves a list of checkpoints based on query parameters.
5466
5959
  *
5467
5960
  * @param {QueryParams} params - Query parameters for filtering the checkpoints.
5468
- * @returns {Observable<CheckpointsOut>} The list of checkpoints.
5961
+ * @returns {Observable<CheckpointsInventoryOut>} The list of checkpoints.
5469
5962
  */
5470
- getCheckpoints(params: QueryParams): Observable<CheckpointsOut>;
5963
+ getCheckpoints(params: QueryParams): Observable<CheckpointsInventoryOut>;
5471
5964
  /**
5472
5965
  * Retrieves a list of checkpoint event reasons based on query parameters.
5473
5966
  *
@@ -5636,6 +6129,77 @@ declare class ApiInventoriesService {
5636
6129
  * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5637
6130
  */
5638
6131
  getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
6132
+ /**
6133
+ * Retrieves a list of courier routes based on query parameters.
6134
+ *
6135
+ * @param {QueryParams} params - Query parameters for filtering the courier routes.
6136
+ * @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
6137
+ */
6138
+ getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
6139
+ /**
6140
+ * Fetches the courier route details based on the provided courier route ID.
6141
+ *
6142
+ * @param {number} id - The courier route id
6143
+ * @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
6144
+ */
6145
+ getCourierRoute(id: Number): Observable<CourierRouteOut>;
6146
+ /**
6147
+ * Creates a new courier route.
6148
+ *
6149
+ * @param {CourierRouteIn} body - The data for the new courier route.
6150
+ * @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
6151
+ */
6152
+ postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
6153
+ /**
6154
+ * Update an existing courier route.
6155
+ *
6156
+ * @param {number} id - The identifier of the courier route record to update.
6157
+ * @param {CourierRouteIn} body - The courier route data to be updated.
6158
+ * @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
6159
+ */
6160
+ putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
6161
+ /**
6162
+ * Delete an existing courier route.
6163
+ *
6164
+ * @param {number} id - The unique identifier of the courier route to be deleted.
6165
+ * @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
6166
+ */
6167
+ deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
6168
+ /**
6169
+ * Get a package/shipment enabled to perform an action.
6170
+ *
6171
+ * @param {PackageValidationActionIn} body - package/shipment number to validate.
6172
+ * @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
6173
+ */
6174
+ postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
6175
+ /**
6176
+ * Edit return first mile resource.
6177
+ *
6178
+ * @param {ReturnFirstMileIn} body - The first mile data to be updated.
6179
+ * @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
6180
+ */
6181
+ putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
6182
+ /**
6183
+ * Replaces a Package Reassign Position resource.
6184
+ *
6185
+ * @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
6186
+ * @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
6187
+ */
6188
+ putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
6189
+ /**
6190
+ * Edit missing package resource.
6191
+ *
6192
+ * @param {MissingPackagesIn} body - The missing package resource data to be updated.
6193
+ * @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
6194
+ */
6195
+ putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
6196
+ /**
6197
+ * Edit package on hold resource..
6198
+ *
6199
+ * @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
6200
+ * @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
6201
+ */
6202
+ putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
5639
6203
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5640
6204
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5641
6205
  }
@@ -6997,6 +7561,7 @@ interface ShipmentReports {
6997
7561
  interface ShipmentLandingReport extends ActiveLessLaravelModel {
6998
7562
  authorization_numbers: string[] | null;
6999
7563
  commercial_invoice: boolean | null;
7564
+ has_documents: boolean | null;
7000
7565
  company_country_id: number;
7001
7566
  company_id: number;
7002
7567
  company_name: string;
@@ -7071,6 +7636,7 @@ interface ShipmentLandingReport extends ActiveLessLaravelModel {
7071
7636
  include_indemnity_letter: boolean;
7072
7637
  shipment_content_type_id: number;
7073
7638
  shipment_scope_id: number;
7639
+ include_release_of_liability?: boolean;
7074
7640
  } | null;
7075
7641
  manifest_date_time?: string | null;
7076
7642
  date_time?: string;
@@ -7825,13 +8391,6 @@ declare class ApiSecurityService {
7825
8391
  * @return {Observable<AuthMeOut>} An observable that emits the authenticated user's data.
7826
8392
  */
7827
8393
  getAuthMe(): Observable<AuthMeOut>;
7828
- /**
7829
- * Fetches the authenticated user's details from the server.
7830
- *
7831
- * @param token The JWT token used for authorization.
7832
- * @return An Observable that emits the user's details encapsulated in a MeOut object.
7833
- */
7834
- getOtherMe(token: string): Observable<AuthMeOut>;
7835
8394
  /**
7836
8395
  * Fetches a user by their unique ID.
7837
8396
  *
@@ -8202,6 +8761,7 @@ interface SignaturePageSetting extends ApiModel {
8202
8761
  termsAndCondition: string | null;
8203
8762
  marketingConsent: string | null;
8204
8763
  additionalVerbiage: string | null;
8764
+ marketingConsentMandatory: boolean;
8205
8765
  }
8206
8766
  interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
8207
8767
  code: string;
@@ -8347,6 +8907,7 @@ type SignaturePageSettingIn = {
8347
8907
  termsAndCondition: string | null;
8348
8908
  marketingConsent: string | null;
8349
8909
  additionalVerbiage: string | null;
8910
+ marketingConsentMandatory: boolean;
8350
8911
  };
8351
8912
  type DocumentConfigurationsPreviewIn = {
8352
8913
  html: string;
@@ -8910,6 +9471,22 @@ declare class PrintersService {
8910
9471
  static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
8911
9472
  }
8912
9473
 
9474
+ declare enum AccountTypeId {
9475
+ CASH = 1,
9476
+ COMAT = 2,
9477
+ FOC = 3,
9478
+ EMPLOYEE = 4,
9479
+ RPA = 5,
9480
+ GL = 6,
9481
+ CUS = 7,
9482
+ VENDOR = 8,
9483
+ WPX = 9,
9484
+ DHL = 12
9485
+ }
9486
+ declare enum AccountTypeName {
9487
+ EMBASSY = "EMBASSY"
9488
+ }
9489
+
8913
9490
  declare enum PaymentTypeCode {
8914
9491
  CASH = "cash",
8915
9492
  CHECK = "check",
@@ -9000,15 +9577,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
9000
9577
  declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9001
9578
 
9002
9579
  /**
9003
- * Interceptor function to handle HTTP caching for GET requests. It retrieves cached responses
9004
- * if available and valid; otherwise, it processes the request and caches the response for future use.
9580
+ * Interceptor function to handle opt-in HTTP caching for GET requests that match
9581
+ * a configured `cacheRoutes` pattern. Non-matching GETs pass through uncached.
9582
+ * Concurrent in-flight requests for the same key are deduplicated via `shareReplay`.
9005
9583
  *
9006
- * @param {HttpRequest<any>} req - The HTTP request object being intercepted.
9584
+ * @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
9007
9585
  * @param {HttpHandlerFn} next - The next HTTP handler function in the chain to process the request.
9008
- * @return {Observable<HttpEvent<any>>} An observable that emits the HTTP event, either from cache
9586
+ * @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
9009
9587
  * or by invoking the next handler.
9010
9588
  */
9011
- declare function httpCachingInterceptor(req: HttpRequest<any>, next: HttpHandlerFn): Observable<HttpEvent<any>>;
9589
+ declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9012
9590
 
9013
9591
  declare const base64PdfToUrl: (base64: string) => string;
9014
9592
  declare const downloadBase64Pdf: (base64: string) => Window | null;
@@ -9050,5 +9628,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9050
9628
  [header: string]: string | string[];
9051
9629
  };
9052
9630
 
9053
- export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9054
- export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, 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, 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, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
9631
+ export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9632
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, UpsellingIndicator, UpsellingIndicatorCountry, UpsellingIndicatorIn, UpsellingIndicatorOut, UpsellingIndicatorProduct, UpsellingIndicatorsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };