@experteam-mx/ngx-services 20.7.0-dev1.10 → 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;
@@ -5464,8 +5624,34 @@ declare enum Group {
5464
5624
  expiration = "expiration",
5465
5625
  verification = "verification"
5466
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
+ }
5467
5653
 
5468
- interface Checkpoint extends ActiveLessSymfonyModel {
5654
+ interface CheckpointInventory extends ActiveLessSymfonyModel {
5469
5655
  code: string;
5470
5656
  name: string;
5471
5657
  event: Event;
@@ -5477,10 +5663,10 @@ interface CheckpointEventReason extends ActiveLessSymfonyModel {
5477
5663
  extraFields: {
5478
5664
  [key: string]: string;
5479
5665
  };
5480
- checkpoint: Checkpoint | null;
5666
+ checkpoint: CheckpointInventory | null;
5481
5667
  }
5482
5668
  interface Incident extends SymfonyModel {
5483
- checkpoint: Checkpoint | null;
5669
+ checkpoint: CheckpointInventory | null;
5484
5670
  countryId: string;
5485
5671
  event: Event;
5486
5672
  name: string;
@@ -5564,10 +5750,31 @@ interface OperationTypeInventory extends SymfonyModel {
5564
5750
  name: TranslateLang;
5565
5751
  };
5566
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
+ }
5567
5774
 
5568
- type CheckpointsOut = {
5775
+ type CheckpointsInventoryOut = {
5569
5776
  total: number;
5570
- checkpoints: Checkpoint[];
5777
+ checkpoints: CheckpointInventory[];
5571
5778
  };
5572
5779
  type CheckpointEventReasonsOut = {
5573
5780
  total: number;
@@ -5632,6 +5839,7 @@ type ReEntryOfMissingPackagesOut = {
5632
5839
  reEntryOfMissingPackages: ReEntryOfMissingPackages;
5633
5840
  };
5634
5841
  type ReEntryOfMissingPackagesIn = {
5842
+ transactionId: string;
5635
5843
  packagesIds: number[];
5636
5844
  };
5637
5845
  type CourierCheckOutPackesOut = {
@@ -5661,6 +5869,81 @@ type StockUpdatePackagesOut = {
5661
5869
  totalFirstMilePackages: number;
5662
5870
  totalStockUpdatePackages: number;
5663
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
+ };
5664
5947
 
5665
5948
  declare class ApiInventoriesService {
5666
5949
  private environments;
@@ -5675,9 +5958,9 @@ declare class ApiInventoriesService {
5675
5958
  * Retrieves a list of checkpoints based on query parameters.
5676
5959
  *
5677
5960
  * @param {QueryParams} params - Query parameters for filtering the checkpoints.
5678
- * @returns {Observable<CheckpointsOut>} The list of checkpoints.
5961
+ * @returns {Observable<CheckpointsInventoryOut>} The list of checkpoints.
5679
5962
  */
5680
- getCheckpoints(params: QueryParams): Observable<CheckpointsOut>;
5963
+ getCheckpoints(params: QueryParams): Observable<CheckpointsInventoryOut>;
5681
5964
  /**
5682
5965
  * Retrieves a list of checkpoint event reasons based on query parameters.
5683
5966
  *
@@ -5846,6 +6129,77 @@ declare class ApiInventoriesService {
5846
6129
  * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5847
6130
  */
5848
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>;
5849
6203
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5850
6204
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5851
6205
  }
@@ -8037,13 +8391,6 @@ declare class ApiSecurityService {
8037
8391
  * @return {Observable<AuthMeOut>} An observable that emits the authenticated user's data.
8038
8392
  */
8039
8393
  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
8394
  /**
8048
8395
  * Fetches a user by their unique ID.
8049
8396
  *
@@ -9124,6 +9471,22 @@ declare class PrintersService {
9124
9471
  static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
9125
9472
  }
9126
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
+
9127
9490
  declare enum PaymentTypeCode {
9128
9491
  CASH = "cash",
9129
9492
  CHECK = "check",
@@ -9214,15 +9577,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
9214
9577
  declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9215
9578
 
9216
9579
  /**
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.
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`.
9219
9583
  *
9220
- * @param {HttpRequest<any>} req - The HTTP request object being intercepted.
9584
+ * @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
9221
9585
  * @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
9586
+ * @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
9223
9587
  * or by invoking the next handler.
9224
9588
  */
9225
- declare function httpCachingInterceptor(req: HttpRequest<any>, next: HttpHandlerFn): Observable<HttpEvent<any>>;
9589
+ declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
9226
9590
 
9227
9591
  declare const base64PdfToUrl: (base64: string) => string;
9228
9592
  declare const downloadBase64Pdf: (base64: string) => Window | null;
@@ -9264,5 +9628,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9264
9628
  [header: string]: string | string[];
9265
9629
  };
9266
9630
 
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 };
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 };