@experteam-mx/ngx-services 20.7.0-dev1.10 → 20.7.0-dev1.12

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;
@@ -1466,6 +1493,10 @@ type ProductIn = {
1466
1493
  localName: string;
1467
1494
  isDocument: boolean;
1468
1495
  };
1496
+ type ProductsOut = {
1497
+ products: Product[];
1498
+ total: number;
1499
+ };
1469
1500
  type ProductOut = {
1470
1501
  product: Product;
1471
1502
  };
@@ -1592,6 +1623,23 @@ type ExportReasonTypesOut = {
1592
1623
  type ExportReasonOut = {
1593
1624
  exportReason: ExportReason;
1594
1625
  };
1626
+ type UpsellingIndicatorsOut = {
1627
+ total: number;
1628
+ upsellingIndicators: UpsellingIndicator[];
1629
+ };
1630
+ type UpsellingIndicatorOut = {
1631
+ upsellingIndicators: UpsellingIndicator;
1632
+ };
1633
+ type UpsellingIndicatorIn = {
1634
+ name: string;
1635
+ upsellingIndicatorMethod: string;
1636
+ flagName: string;
1637
+ flagTextColor: string;
1638
+ flagColor: string;
1639
+ countryIds: UpsellingIndicatorCountry[];
1640
+ products: UpsellingIndicatorProduct[];
1641
+ isActive: boolean;
1642
+ };
1595
1643
 
1596
1644
  declare class ApiCatalogsService {
1597
1645
  private environments;
@@ -1857,6 +1905,13 @@ declare class ApiCatalogsService {
1857
1905
  * @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
1858
1906
  */
1859
1907
  pathGenericFolio(id: number, body: Partial<GenericFolioIn>): Observable<GenericFolioOut>;
1908
+ /**
1909
+ * Retrieves the list of products.
1910
+ *
1911
+ * @param params Query parameters used to filter or paginate the products.
1912
+ * @returns An observable containing the list of products.
1913
+ */
1914
+ getProducts(params: QueryParams): Observable<ProductsOut>;
1860
1915
  /**
1861
1916
  * Retrieves a product by its unique identifier.
1862
1917
  *
@@ -2155,10 +2210,113 @@ declare class ApiCatalogsService {
2155
2210
  * @returns An Observable that emits the export reason types data
2156
2211
  */
2157
2212
  getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
2213
+ /**
2214
+ * Retrieves the list of upselling indicators.
2215
+ * @param params - Query parameters used to filter or paginate the results
2216
+ * @returns An Observable that emits the upselling indicators and total count
2217
+ */
2218
+ getUpsellingIndicators(params: QueryParams): Observable<UpsellingIndicatorsOut>;
2219
+ /**
2220
+ * Creates a new upselling indicator.
2221
+ * @param body - Upselling indicator data
2222
+ * @returns An Observable that emits the created upselling indicator
2223
+ */
2224
+ postUpsellingIndicator(body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2225
+ /**
2226
+ * Updates an existing upselling indicator.
2227
+ * @param id - Identifier of the upselling indicator to update
2228
+ * @param body - Updated upselling indicator data
2229
+ * @returns An Observable that emits the updated upselling indicator
2230
+ */
2231
+ putUpsellingIndicator(id: number, body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2232
+ /**
2233
+ * Deletes an upselling indicator by its identifier.
2234
+ * @param id - Identifier of the upselling indicator to delete
2235
+ * @returns An Observable that emits the operation result
2236
+ */
2237
+ deleteUpsellingIndicator(id: number): Observable<{}>;
2238
+ /**
2239
+ * Updates the active status of an upselling indicator.
2240
+ * @param id - Identifier of the upselling indicator
2241
+ * @param isActive - Indicates whether the upselling indicator should be active or inactive
2242
+ * @returns An Observable that emits the operation result
2243
+ */
2244
+ patchUpsellingIndicator(id: number, isActive: boolean): Observable<{}>;
2158
2245
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
2159
2246
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
2160
2247
  }
2161
2248
 
2249
+ interface EventRegister extends LaravelModel {
2250
+ shipment_tracking_number: string;
2251
+ package_tracking_number: string;
2252
+ checkpoint_code_id: number;
2253
+ datetime: string;
2254
+ gmt_offset: string;
2255
+ iata: string;
2256
+ facility_code: string;
2257
+ route_number: string;
2258
+ status: number;
2259
+ client: string;
2260
+ extra_fields: {
2261
+ OrgFcId: string;
2262
+ };
2263
+ event_reason_code: string;
2264
+ transaction_id: string;
2265
+ esb_data: {
2266
+ Remark: string;
2267
+ };
2268
+ checkpoint_code: CheckpointCode;
2269
+ }
2270
+ interface CheckpointCode extends LaravelModel {
2271
+ checkpoint_id: number;
2272
+ event_type_code: string;
2273
+ event_reason_code: string;
2274
+ template_script: string;
2275
+ description: string;
2276
+ checkpoint: Checkpoint;
2277
+ }
2278
+ interface Checkpoint extends LaravelModel {
2279
+ name: string;
2280
+ code: string;
2281
+ checkpoint_type: number;
2282
+ }
2283
+
2284
+ type EventRegistersOut = {
2285
+ event_registers: EventRegister[];
2286
+ total: number;
2287
+ };
2288
+ type CheckpointsOut = {
2289
+ checkpoints: Checkpoint[];
2290
+ total: number;
2291
+ };
2292
+
2293
+ declare class ApiCheckpointsService {
2294
+ private environments;
2295
+ private http;
2296
+ /**
2297
+ * Retrieves the API checkpoints URL from the environment configuration.
2298
+ *
2299
+ * @returns {string} The API checkpoints URL.
2300
+ */
2301
+ get url(): string;
2302
+ /**
2303
+ * Retrieves event registers from the checkpoints API.
2304
+ *
2305
+ * @param {QueryParams} params - Query parameters for filtering and pagination.
2306
+ * @returns {Observable<EventRegistersOut>} An observable containing the event registers data.
2307
+ */
2308
+ getEventRegisters(params: QueryParams): Observable<EventRegistersOut>;
2309
+ /**
2310
+ * Retrieves checkpoints from the checkpoints API.
2311
+ *
2312
+ * @param {QueryParams} params - Query parameters for filtering and pagination.
2313
+ * @returns {Observable<CheckpointsInventoryOut>} An observable containing the checkpoints data.
2314
+ */
2315
+ getCheckpoints(params: QueryParams): Observable<CheckpointsOut>;
2316
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiCheckpointsService, never>;
2317
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiCheckpointsService>;
2318
+ }
2319
+
2162
2320
  type AuthLoginIn = {
2163
2321
  username: string;
2164
2322
  password: string;
@@ -2512,9 +2670,7 @@ interface Parameter extends LaravelModel {
2512
2670
  type: string;
2513
2671
  regex: string;
2514
2672
  description: string;
2515
- value: string | number | boolean | null | {
2516
- [key: string]: (string | number | boolean | null)[];
2517
- };
2673
+ value: unknown;
2518
2674
  parameter_type_id: number;
2519
2675
  }
2520
2676
  interface ParameterConfig {
@@ -2913,25 +3069,22 @@ type ParametersOut = {
2913
3069
  parameters: Parameter[];
2914
3070
  total: number;
2915
3071
  };
2916
- type ParametersValuesIn = {
2917
- paramNames: string[];
2918
- };
2919
3072
  type ParametersValuesOut = {
2920
- parameters: Parameter[];
2921
- total: number;
3073
+ parameters: {
3074
+ id: number;
3075
+ name: string;
3076
+ value: Parameter['value'];
3077
+ model_type: string;
3078
+ model_id: number;
3079
+ }[];
2922
3080
  };
2923
- type ParametersByLevelIn = {
3081
+ type ParametersByModelIn = {
2924
3082
  name: string;
2925
3083
  model_type: string;
2926
3084
  model_id: number;
2927
3085
  }[];
2928
- type ParameterValueIn = {
2929
- paramName: string;
2930
- };
2931
3086
  type ParameterValueOut = {
2932
- value: string | boolean | number | {
2933
- [key: string]: (string | boolean | number)[];
2934
- };
3087
+ value: Parameter['value'];
2935
3088
  };
2936
3089
  type CountryReferencesOut = {
2937
3090
  country_references: CountryReference[];
@@ -3156,9 +3309,6 @@ type TDXAccountSettingsIn = {
3156
3309
  product_id: number;
3157
3310
  is_active: boolean;
3158
3311
  };
3159
- type LocationEmployeesIn = {
3160
- token: string;
3161
- } & QueryParams;
3162
3312
 
3163
3313
  declare class ApiCompaniesService {
3164
3314
  private environments;
@@ -3583,26 +3733,24 @@ declare class ApiCompaniesService {
3583
3733
  /**
3584
3734
  * Retrieves the parameter values based on the provided parameter names.
3585
3735
  *
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.
3736
+ * @param {string[]} names - An array of parameter names for which the values need to be fetched.
3588
3737
  * @return {Observable<ParametersValuesOut>} An observable that emits the fetched parameter values.
3589
3738
  */
3590
- postParametersValues({ paramNames }: ParametersValuesIn): Observable<ParametersValuesOut>;
3739
+ postParametersValues(names: string[]): Observable<ParametersValuesOut>;
3591
3740
  /**
3592
- * Retrieves parameter values based on the provided level configuration.
3741
+ * Retrieves parameter values based on the provided model configuration.
3593
3742
  *
3594
- * @param {ParametersByLevelIn} parameters - The input object containing the criteria or level details to retrieve the parameters.
3743
+ * @param {ParametersByModelIn} parameters - The input object containing the criteria or model details to retrieve the parameters.
3595
3744
  * @return {Observable<ParametersValuesOut>} An observable that emits the parameter values fetched from the server.
3596
3745
  */
3597
- postParameterValueByModel(parameters: ParametersByLevelIn): Observable<ParametersValuesOut>;
3746
+ postParameterValueByModel(parameters: ParametersByModelIn): Observable<ParametersValuesOut>;
3598
3747
  /**
3599
3748
  * Retrieves the value of a specified parameter.
3600
3749
  *
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.
3750
+ * @param {string} name - The name of the parameter whose value is to be retrieved.
3603
3751
  * @return {Observable<ParameterValueOut>} An observable emitting the value of the specified parameter.
3604
3752
  */
3605
- getParameterValue({ paramName, }: ParameterValueIn): Observable<ParameterValueOut>;
3753
+ getParameterValue(name: string): Observable<ParameterValueOut>;
3606
3754
  /**
3607
3755
  * Retrieves a list of country references based on the given query parameters.
3608
3756
  *
@@ -3891,18 +4039,6 @@ declare class ApiCompaniesService {
3891
4039
  * @returns {Observable<TDXAccountSettingsOut>} An observable containing the updated TDX account setting.
3892
4040
  */
3893
4041
  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
4042
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCompaniesService, never>;
3907
4043
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
3908
4044
  }
@@ -4887,6 +5023,41 @@ declare class ApiDiscountsService {
4887
5023
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
4888
5024
  }
4889
5025
 
5026
+ type ShipmentsBookingIn = {
5027
+ transactionId: string;
5028
+ shipmentTrackingNumbers: string[];
5029
+ };
5030
+ type ShipmentsEReceiptIn = {
5031
+ transactionId: string;
5032
+ shipmentTrackingNumbers: string[];
5033
+ addresses: string[];
5034
+ };
5035
+
5036
+ declare class ApiDropoffsService {
5037
+ private environments;
5038
+ private http;
5039
+ /**
5040
+ * Retrieves the URL for the Inventories API from the environment configurations.
5041
+ *
5042
+ * @return {string} The URL of the Inventories API.
5043
+ */
5044
+ get url(): string;
5045
+ /**
5046
+ * Send a Courier Request for Shipment.
5047
+ *
5048
+ * @param {ShipmentsBookingIn} body - The courier for shipment data.
5049
+ */
5050
+ postShipmentsBooking(body: ShipmentsBookingIn): Observable<{}>;
5051
+ /**
5052
+ * Send a EReceipt for Shipment.
5053
+ *
5054
+ * @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
5055
+ */
5056
+ postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
5057
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
5058
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
5059
+ }
5060
+
4890
5061
  interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
4891
5062
  addressLine1: string;
4892
5063
  addressLine2: string;
@@ -5464,8 +5635,34 @@ declare enum Group {
5464
5635
  expiration = "expiration",
5465
5636
  verification = "verification"
5466
5637
  }
5638
+ declare enum InventoryActions {
5639
+ INVENTORY_CHECK_OUT = "inventoryCheckOut",
5640
+ INVENTORY_COURIER_PICK_UP = "inventoryCourierPickUp",
5641
+ INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
5642
+ INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
5643
+ INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
5644
+ INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications",
5645
+ INVENTORY_ON_HOLD_MISSED_CONNECTION = "inventoryOnHoldMissed"
5646
+ }
5647
+ declare enum InventoryErrorCodes {
5648
+ CODE_SHP_FORMAT = "INV-E001",
5649
+ CODE_PCKG_FORMAT = "INV-E002",
5650
+ CODE_PACKAGE_NOT_FOUND = "INV-E101",
5651
+ CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
5652
+ CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
5653
+ CODE_PACKAGE_NOT_MISSING = "INV-E107",
5654
+ CODE_ACTION_NOT_VALID = "INV-E108",
5655
+ CODE_MULTIPLE_PACKAGES = "INV-E109",
5656
+ CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
5657
+ CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
5658
+ }
5659
+ declare enum RouteModelType {
5660
+ ROUTE_ID = "RouteId",
5661
+ COURIER = "Courier",
5662
+ COURIER_ROUTE = "CourierRoute"
5663
+ }
5467
5664
 
5468
- interface Checkpoint extends ActiveLessSymfonyModel {
5665
+ interface CheckpointInventory extends ActiveLessSymfonyModel {
5469
5666
  code: string;
5470
5667
  name: string;
5471
5668
  event: Event;
@@ -5477,10 +5674,10 @@ interface CheckpointEventReason extends ActiveLessSymfonyModel {
5477
5674
  extraFields: {
5478
5675
  [key: string]: string;
5479
5676
  };
5480
- checkpoint: Checkpoint | null;
5677
+ checkpoint: CheckpointInventory | null;
5481
5678
  }
5482
5679
  interface Incident extends SymfonyModel {
5483
- checkpoint: Checkpoint | null;
5680
+ checkpoint: CheckpointInventory | null;
5484
5681
  countryId: string;
5485
5682
  event: Event;
5486
5683
  name: string;
@@ -5564,10 +5761,31 @@ interface OperationTypeInventory extends SymfonyModel {
5564
5761
  name: TranslateLang;
5565
5762
  };
5566
5763
  }
5764
+ interface CourierRoute extends SymfonyModel {
5765
+ number: string;
5766
+ name: string;
5767
+ locationId: number;
5768
+ }
5769
+ interface Package5 extends ApiModel {
5770
+ shipmentTrackingNumber: string;
5771
+ trackingNumber: string;
5772
+ position: string | null;
5773
+ messageFail: string;
5774
+ lastStatus: Status5;
5775
+ }
5776
+ interface Status5 {
5777
+ code: string;
5778
+ name: string;
5779
+ description: string | null;
5780
+ }
5781
+ interface Package9 extends ApiModel {
5782
+ shipmentTrackingNumber: string;
5783
+ trackingNumber: string;
5784
+ }
5567
5785
 
5568
- type CheckpointsOut = {
5786
+ type CheckpointsInventoryOut = {
5569
5787
  total: number;
5570
- checkpoints: Checkpoint[];
5788
+ checkpoints: CheckpointInventory[];
5571
5789
  };
5572
5790
  type CheckpointEventReasonsOut = {
5573
5791
  total: number;
@@ -5632,6 +5850,7 @@ type ReEntryOfMissingPackagesOut = {
5632
5850
  reEntryOfMissingPackages: ReEntryOfMissingPackages;
5633
5851
  };
5634
5852
  type ReEntryOfMissingPackagesIn = {
5853
+ transactionId: string;
5635
5854
  packagesIds: number[];
5636
5855
  };
5637
5856
  type CourierCheckOutPackesOut = {
@@ -5661,6 +5880,81 @@ type StockUpdatePackagesOut = {
5661
5880
  totalFirstMilePackages: number;
5662
5881
  totalStockUpdatePackages: number;
5663
5882
  };
5883
+ type CourierRoutesOut = {
5884
+ courierRoutes: CourierRoute[];
5885
+ total: number;
5886
+ };
5887
+ type CourierRouteOut = {
5888
+ courierRoute: CourierRoute;
5889
+ };
5890
+ type CourierRouteIn = {
5891
+ number: string;
5892
+ name: string;
5893
+ locationId: number;
5894
+ isActive: boolean;
5895
+ };
5896
+ type PackageValidationActionIn = {
5897
+ shipmentTrackingNumber?: string;
5898
+ trackingNumber?: string;
5899
+ action: InventoryActions;
5900
+ transactionId?: string;
5901
+ };
5902
+ type PackageValidationActionOut = {
5903
+ packageValidation: {
5904
+ transactionId: string;
5905
+ package: {
5906
+ id: number;
5907
+ shipmentTrackingNumber: string;
5908
+ trackingNumber: string;
5909
+ };
5910
+ };
5911
+ };
5912
+ type ReturnFirstMileIn = {
5913
+ packagesIds: number[];
5914
+ transactionId: string;
5915
+ routeModelId: string | number;
5916
+ routeModelType: RouteModelType;
5917
+ };
5918
+ type ReturnFirstMileOut = {
5919
+ returnFirstMile: {
5920
+ status: boolean;
5921
+ messages: string[];
5922
+ number: string;
5923
+ };
5924
+ };
5925
+ type PackageReassignPositionIn = {
5926
+ packagesIds: number[];
5927
+ transactionId: string;
5928
+ position: string;
5929
+ };
5930
+ type PackageReassignPositionOut = {
5931
+ packageReassignPositions: {
5932
+ number: number;
5933
+ packages: Package5[];
5934
+ };
5935
+ };
5936
+ type MissingPackagesIn = {
5937
+ packagesIds: number[];
5938
+ transactionId: string;
5939
+ };
5940
+ type MissingPackagesOut = {
5941
+ missingPackages: {
5942
+ number: string;
5943
+ operationPackages: {
5944
+ packages: Package9[];
5945
+ };
5946
+ };
5947
+ };
5948
+ type PackageOnHoldIn = {
5949
+ packagesIds: number[];
5950
+ transactionId: string;
5951
+ };
5952
+ type PackageOnHoldOut = {
5953
+ PackagesOnHold: {
5954
+ number: number;
5955
+ packages: Package9[];
5956
+ };
5957
+ };
5664
5958
 
5665
5959
  declare class ApiInventoriesService {
5666
5960
  private environments;
@@ -5675,9 +5969,9 @@ declare class ApiInventoriesService {
5675
5969
  * Retrieves a list of checkpoints based on query parameters.
5676
5970
  *
5677
5971
  * @param {QueryParams} params - Query parameters for filtering the checkpoints.
5678
- * @returns {Observable<CheckpointsOut>} The list of checkpoints.
5972
+ * @returns {Observable<CheckpointsInventoryOut>} The list of checkpoints.
5679
5973
  */
5680
- getCheckpoints(params: QueryParams): Observable<CheckpointsOut>;
5974
+ getCheckpoints(params: QueryParams): Observable<CheckpointsInventoryOut>;
5681
5975
  /**
5682
5976
  * Retrieves a list of checkpoint event reasons based on query parameters.
5683
5977
  *
@@ -5846,6 +6140,77 @@ declare class ApiInventoriesService {
5846
6140
  * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5847
6141
  */
5848
6142
  getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
6143
+ /**
6144
+ * Retrieves a list of courier routes based on query parameters.
6145
+ *
6146
+ * @param {QueryParams} params - Query parameters for filtering the courier routes.
6147
+ * @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
6148
+ */
6149
+ getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
6150
+ /**
6151
+ * Fetches the courier route details based on the provided courier route ID.
6152
+ *
6153
+ * @param {number} id - The courier route id
6154
+ * @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
6155
+ */
6156
+ getCourierRoute(id: Number): Observable<CourierRouteOut>;
6157
+ /**
6158
+ * Creates a new courier route.
6159
+ *
6160
+ * @param {CourierRouteIn} body - The data for the new courier route.
6161
+ * @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
6162
+ */
6163
+ postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
6164
+ /**
6165
+ * Update an existing courier route.
6166
+ *
6167
+ * @param {number} id - The identifier of the courier route record to update.
6168
+ * @param {CourierRouteIn} body - The courier route data to be updated.
6169
+ * @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
6170
+ */
6171
+ putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
6172
+ /**
6173
+ * Delete an existing courier route.
6174
+ *
6175
+ * @param {number} id - The unique identifier of the courier route to be deleted.
6176
+ * @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
6177
+ */
6178
+ deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
6179
+ /**
6180
+ * Get a package/shipment enabled to perform an action.
6181
+ *
6182
+ * @param {PackageValidationActionIn} body - package/shipment number to validate.
6183
+ * @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
6184
+ */
6185
+ postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
6186
+ /**
6187
+ * Edit return first mile resource.
6188
+ *
6189
+ * @param {ReturnFirstMileIn} body - The first mile data to be updated.
6190
+ * @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
6191
+ */
6192
+ putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
6193
+ /**
6194
+ * Replaces a Package Reassign Position resource.
6195
+ *
6196
+ * @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
6197
+ * @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
6198
+ */
6199
+ putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
6200
+ /**
6201
+ * Edit missing package resource.
6202
+ *
6203
+ * @param {MissingPackagesIn} body - The missing package resource data to be updated.
6204
+ * @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
6205
+ */
6206
+ putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
6207
+ /**
6208
+ * Edit package on hold resource..
6209
+ *
6210
+ * @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
6211
+ * @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
6212
+ */
6213
+ putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
5849
6214
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5850
6215
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5851
6216
  }
@@ -8037,13 +8402,6 @@ declare class ApiSecurityService {
8037
8402
  * @return {Observable<AuthMeOut>} An observable that emits the authenticated user's data.
8038
8403
  */
8039
8404
  getAuthMe(): Observable<AuthMeOut>;
8040
- /**
8041
- * Fetches the authenticated user's details from the server.
8042
- *
8043
- * @param token The JWT token used for authorization.
8044
- * @return An Observable that emits the user's details encapsulated in a MeOut object.
8045
- */
8046
- getOtherMe(token: string): Observable<AuthMeOut>;
8047
8405
  /**
8048
8406
  * Fetches a user by their unique ID.
8049
8407
  *
@@ -9124,6 +9482,22 @@ declare class PrintersService {
9124
9482
  static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
9125
9483
  }
9126
9484
 
9485
+ declare enum AccountTypeId {
9486
+ CASH = 1,
9487
+ COMAT = 2,
9488
+ FOC = 3,
9489
+ EMPLOYEE = 4,
9490
+ RPA = 5,
9491
+ GL = 6,
9492
+ CUS = 7,
9493
+ VENDOR = 8,
9494
+ WPX = 9,
9495
+ DHL = 12
9496
+ }
9497
+ declare enum AccountTypeName {
9498
+ EMBASSY = "EMBASSY"
9499
+ }
9500
+
9127
9501
  declare enum PaymentTypeCode {
9128
9502
  CASH = "cash",
9129
9503
  CHECK = "check",
@@ -9214,15 +9588,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
9214
9588
  declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9215
9589
 
9216
9590
  /**
9217
- * Interceptor function to handle HTTP caching for GET requests. It retrieves cached responses
9218
- * if available and valid; otherwise, it processes the request and caches the response for future use.
9591
+ * Interceptor function to handle opt-in HTTP caching for GET requests that match
9592
+ * a configured `cacheRoutes` pattern. Non-matching GETs pass through uncached.
9593
+ * Concurrent in-flight requests for the same key are deduplicated via `shareReplay`.
9219
9594
  *
9220
- * @param {HttpRequest<any>} req - The HTTP request object being intercepted.
9595
+ * @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
9221
9596
  * @param {HttpHandlerFn} next - The next HTTP handler function in the chain to process the request.
9222
- * @return {Observable<HttpEvent<any>>} An observable that emits the HTTP event, either from cache
9597
+ * @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
9223
9598
  * or by invoking the next handler.
9224
9599
  */
9225
- declare function httpCachingInterceptor(req: HttpRequest<any>, next: HttpHandlerFn): Observable<HttpEvent<any>>;
9600
+ declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9226
9601
 
9227
9602
  declare const base64PdfToUrl: (base64: string) => string;
9228
9603
  declare const downloadBase64Pdf: (base64: string) => Window | null;
@@ -9264,5 +9639,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9264
9639
  [header: string]: string | string[];
9265
9640
  };
9266
9641
 
9267
- 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 };
9268
- 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, 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, 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, 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, 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, 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, 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, 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, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, 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, TaxToSignaturePage, 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 };
9642
+ 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 };
9643
+ 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, ProductsOut, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, 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 };