@experteam-mx/ngx-services 20.9.2 → 20.9.4-dev2.0

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
@@ -1417,6 +1417,26 @@ interface PriceOverrideReason extends SymfonyModel {
1417
1417
  name: string;
1418
1418
  countryId: number;
1419
1419
  }
1420
+ interface UpsellingIndicator extends SymfonyModel {
1421
+ name: string;
1422
+ upsellingIndicatorMethod: UpsellingIndicatorMethod;
1423
+ countryIds: UpsellingIndicatorCountry[];
1424
+ productIds: UpsellingIndicatorProduct[];
1425
+ flagName: string;
1426
+ flagColor: string;
1427
+ flagTextColor: string;
1428
+ }
1429
+ interface UpsellingIndicatorCountry extends ApiModel {
1430
+ name: string;
1431
+ }
1432
+ interface UpsellingIndicatorProduct extends ApiModel {
1433
+ globalCode: string;
1434
+ name: string;
1435
+ }
1436
+ interface UpsellingIndicatorMethod extends SymfonyModel {
1437
+ code: string;
1438
+ name: string;
1439
+ }
1420
1440
 
1421
1441
  type OperationTypesOut = {
1422
1442
  total: number;
@@ -1562,6 +1582,10 @@ type ProductIn = {
1562
1582
  localName: string;
1563
1583
  isDocument: boolean;
1564
1584
  };
1585
+ type ProductsOut = {
1586
+ products: Product[];
1587
+ total: number;
1588
+ };
1565
1589
  type ProductOut = {
1566
1590
  product: Product;
1567
1591
  };
@@ -1688,6 +1712,30 @@ type ExportReasonTypesOut = {
1688
1712
  type ExportReasonOut = {
1689
1713
  exportReason: ExportReason;
1690
1714
  };
1715
+ type UpsellingIndicatorsOut = {
1716
+ total: number;
1717
+ upsellingIndicators: UpsellingIndicator[];
1718
+ };
1719
+ type UpsellingIndicatorOut = {
1720
+ upsellingIndicator: UpsellingIndicator;
1721
+ };
1722
+ type UpsellingIndicatorIn = {
1723
+ name: string;
1724
+ upsellingIndicatorMethod: number;
1725
+ flagName: string;
1726
+ flagTextColor: string;
1727
+ flagColor: string;
1728
+ countryIds: number[];
1729
+ productIds: number[];
1730
+ isActive: boolean;
1731
+ };
1732
+ type UpsellingIndicatorMethodsOut = {
1733
+ total: number;
1734
+ upsellingIndicatorMethods: UpsellingIndicatorMethod[];
1735
+ };
1736
+ type UpsellingIndicatorMethodOut = {
1737
+ upsellingIndicatorMethod: UpsellingIndicatorMethod;
1738
+ };
1691
1739
 
1692
1740
  declare class ApiCatalogsService {
1693
1741
  private environments;
@@ -1953,6 +2001,13 @@ declare class ApiCatalogsService {
1953
2001
  * @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
1954
2002
  */
1955
2003
  pathGenericFolio(id: number, body: Partial<GenericFolioIn>): Observable<GenericFolioOut>;
2004
+ /**
2005
+ * Retrieves the list of products.
2006
+ *
2007
+ * @param params Query parameters used to filter or paginate the products.
2008
+ * @returns An observable containing the list of products.
2009
+ */
2010
+ getProducts(params: QueryParams): Observable<ProductsOut>;
1956
2011
  /**
1957
2012
  * Retrieves a product by its unique identifier.
1958
2013
  *
@@ -2251,6 +2306,59 @@ declare class ApiCatalogsService {
2251
2306
  * @returns An Observable that emits the export reason types data
2252
2307
  */
2253
2308
  getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
2309
+ /**
2310
+ * Retrieves the list of upselling indicators.
2311
+ * @param params - Query parameters used to filter or paginate the results
2312
+ * @returns An Observable that emits the upselling indicators and total count
2313
+ */
2314
+ getUpsellingIndicators(params: QueryParams): Observable<UpsellingIndicatorsOut>;
2315
+ /**
2316
+ * Retrieves an upselling indicator by its ID.
2317
+ *
2318
+ * @param id Unique identifier of the upselling indicator.
2319
+ * @returns Observable containing the requested upselling indicator.
2320
+ */
2321
+ getUpsellingIndicator(id: number): Observable<UpsellingIndicatorOut>;
2322
+ /**
2323
+ * Creates a new upselling indicator.
2324
+ * @param body - Upselling indicator data
2325
+ * @returns An Observable that emits the created upselling indicator
2326
+ */
2327
+ postUpsellingIndicator(body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2328
+ /**
2329
+ * Updates an existing upselling indicator.
2330
+ * @param id - Identifier of the upselling indicator to update
2331
+ * @param body - Updated upselling indicator data
2332
+ * @returns An Observable that emits the updated upselling indicator
2333
+ */
2334
+ putUpsellingIndicator(id: number, body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
2335
+ /**
2336
+ * Deletes an upselling indicator by its identifier.
2337
+ * @param id - Identifier of the upselling indicator to delete
2338
+ * @returns An Observable that emits the operation result
2339
+ */
2340
+ deleteUpsellingIndicator(id: number): Observable<{}>;
2341
+ /**
2342
+ * Updates the active status of an upselling indicator.
2343
+ * @param id - Identifier of the upselling indicator
2344
+ * @param isActive - Indicates whether the upselling indicator should be active or inactive
2345
+ * @returns An Observable that emits the operation result
2346
+ */
2347
+ patchUpsellingIndicator(id: number, isActive: boolean): Observable<{}>;
2348
+ /**
2349
+ * Retrieves the list of upselling indicator methods.
2350
+ *
2351
+ * @param params Query parameters used to filter, paginate, or sort the methods.
2352
+ * @returns Observable containing the upselling indicator methods.
2353
+ */
2354
+ getUpsellingIndicatorMethods(params: QueryParams): Observable<UpsellingIndicatorMethodsOut>;
2355
+ /**
2356
+ * Retrieves an upselling indicator method by its ID.
2357
+ *
2358
+ * @param id Unique identifier of the upselling indicator method.
2359
+ * @returns Observable containing the requested upselling indicator method.
2360
+ */
2361
+ getUpsellingIndicatorMethod(id: number): Observable<UpsellingIndicatorMethodOut>;
2254
2362
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
2255
2363
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
2256
2364
  }
@@ -2828,25 +2936,10 @@ interface AccountWithDefault extends Account {
2828
2936
  }
2829
2937
  interface AccountWithLocations extends Account {
2830
2938
  account_company_countries: AccountCompanyCountryLocation[];
2831
- country: CountryAccount;
2939
+ country: CountryCompanies;
2832
2940
  }
2833
- interface CountryAccount {
2834
- id: number;
2835
- code: string;
2836
- name: string;
2837
- timezone: string;
2838
- hasImportService: boolean;
2839
- isActive: boolean;
2840
- isoCode: string;
2841
- codePhone: string;
2842
- phoneDigits: string | null;
2843
- createdAt: string;
2844
- updatedAt: string;
2845
- locationType: LocationType;
2846
- unit: Unit;
2847
- locationTypeFields: LocationTypeFields;
2941
+ interface CountryCompanies extends Country {
2848
2942
  postalCodeFormats: PostalCodeFormat[];
2849
- translations: Translations;
2850
2943
  }
2851
2944
 
2852
2945
  type LocationEmployeesOut = {
@@ -4047,7 +4140,7 @@ declare class ApiCompaniesService {
4047
4140
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
4048
4141
  }
4049
4142
 
4050
- declare enum CustomerType$1 {
4143
+ declare enum CustomerRoleType {
4051
4144
  SHIPPER = "SP",
4052
4145
  CONSIGNEE = "RV",
4053
4146
  IMPORTER = "IP",
@@ -4094,138 +4187,180 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
4094
4187
  stock: number;
4095
4188
  }
4096
4189
 
4097
- interface ShipmentComposition extends SymfonyModel {
4098
- currencyCode: string;
4099
- extraCharges: ExtraChargeComposition[];
4100
- globalProductCode: string;
4101
- globalProductName: string;
4102
- localProductCode: string;
4103
- localProductName: string;
4104
- trackingNumber: string;
4105
- contentDescription: string;
4106
- realWeight: number;
4107
- piecesNumber: number;
4108
- productSubtotal: number;
4109
- productTax: number;
4110
- productTotal: number;
4111
- declaredValue: number;
4112
- insuredValue: number;
4190
+ interface ShipmentComposition extends ActiveLessSymfonyModel {
4113
4191
  accountNumber: string;
4114
- userId: number;
4115
- installationId: number;
4192
+ cancellationDateTime: string | null;
4193
+ cancellationReasonId: number | null;
4194
+ commercialExchangeRate: number;
4195
+ commercialInvoice: CommercialInvoiceComposition | null;
4116
4196
  companyCountryId: number;
4117
- productId: number;
4197
+ contentDescription: string;
4118
4198
  countryReferenceCurrencyId: number;
4119
- commercialExchangeRate: number;
4120
- ibsExchangeRate: number;
4121
- shipmentStatusId: number;
4122
- shipmentAddresses: ShipmentAddresses[];
4123
- shipmentPieces: ShipmentPieces[];
4124
- shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
4125
- shipmentGsop: ShipmentGsop;
4126
- additionalData: AdditionalData;
4127
- transactionId: string;
4128
- requiresPayment: boolean;
4129
- originServiceAreaCode: string;
4130
- originFacilityCode: string;
4131
- destinationServiceAreaCode: string;
4199
+ date: string;
4200
+ declaredCurrency: string | null;
4201
+ declaredValue: number;
4202
+ deliveryDateTime: string;
4132
4203
  destinationFacilityCode: string;
4133
- productTaxes: string[];
4204
+ destinationServiceAreaCode: string;
4205
+ discountModelId: number | null;
4206
+ discountModelType: string | null;
4207
+ discountName: string | null;
4208
+ discountPercentage: number | null;
4209
+ discountReference: string | null;
4210
+ discountValue: number | null;
4211
+ dutiesAndTaxesAccountNumber: string | null;
4212
+ einNumber: string | null;
4213
+ exportReason: ExportReason | null;
4214
+ exportReasonId: number | null;
4215
+ extraFields: Record<string, unknown>;
4216
+ ibsExchangeRate: number;
4217
+ installationId: number;
4218
+ insuredCurrency: string | null;
4219
+ insuredValue: number | null;
4220
+ isCash: boolean;
4221
+ isDocument: boolean;
4222
+ isDutiesAndTaxes: boolean;
4134
4223
  isInspected: boolean;
4135
- extraFields: {
4136
- [key: string]: string | number | boolean;
4137
- };
4138
- shipmentContentTypeId: number;
4139
- commercialInvoice: CommercialInvoice;
4140
- shipmentScopeId: number;
4141
- shipmentGroupId: number;
4142
- product: string[];
4143
- declaredCurrency: string;
4144
- insuredCurrency: string;
4145
- deliveryDateTime: string;
4146
- date: string;
4147
- promotionCode: string;
4148
- priceOverrideApproverId: number;
4149
- priceOverrideReasonId: number;
4150
- customs: Customs;
4151
- exportReasonId: number;
4152
- exportReason: string[];
4153
- shipmentBookPickup: ShipmentBookPickup;
4154
- questionId: number;
4155
4224
  isInsured: boolean;
4156
- itnNumber: string;
4157
- einNumber: string;
4158
- otherAccountNumber: string;
4159
- dutiesAndTaxesAccountNumber: string;
4160
- discountId: string;
4161
- discountReference: string;
4162
- totalPublishedValue: number;
4163
- totalPartnerAccountValue: number;
4164
- isMarketingConsent: boolean;
4165
- isTermCondition: boolean;
4166
- isDocument: boolean;
4167
- isCash: boolean;
4225
+ isMarketingConsent: boolean | null;
4226
+ isOccurs: boolean;
4227
+ isOtherOrigin: boolean;
4168
4228
  isPriceOverride: boolean;
4169
4229
  isProforma: boolean;
4170
4230
  isPromotionCode: boolean;
4171
4231
  isRetailRate: boolean;
4172
- isOtherOrigin: boolean;
4173
- isOccurs: boolean;
4174
- isDutiesAndTaxes: boolean;
4232
+ isTermCondition: boolean;
4233
+ itnNumber: string | null;
4234
+ manifestDateTime: string | null;
4235
+ originFacilityCode: string;
4236
+ originServiceAreaCode: string;
4237
+ otherAccountNumber: string | null;
4238
+ piecesNumber: number;
4239
+ priceOverrideApproverId: number | null;
4240
+ priceOverrideReasonId: number | null;
4241
+ product: ShipmentProductComposition;
4242
+ productId: number;
4243
+ productSubtotal: number;
4244
+ productTax: number;
4245
+ productTaxes: TaxComposition[];
4246
+ productTotal: number;
4247
+ promotionCode: string | null;
4248
+ realWeight: number;
4249
+ requiresPayment: boolean;
4250
+ shipmentAddresses: ShipmentAddressComposition[];
4251
+ shipmentBookPickup: ShipmentBookPickup | null;
4252
+ shipmentContentTypeId: number;
4253
+ shipmentExtraCharges: ExtraChargeComposition[];
4254
+ shipmentGroupId: number;
4255
+ shipmentGsop: ShipmentGsopComposition | null;
4256
+ shipmentPieces: ShipmentPieceComposition[];
4257
+ shipmentScopeId: number;
4258
+ shipmentStatusId: number;
4259
+ shipmentTaxes: TaxComposition[];
4260
+ shipmentWithholding: unknown | null;
4261
+ subtotal: number;
4262
+ tax: number;
4263
+ total: number;
4264
+ totalPartnerAccountValue: number | null;
4265
+ totalPublishedValue: number | null;
4266
+ trackingNumber: string;
4267
+ transactionId: string;
4268
+ userId: number;
4269
+ customs: {
4270
+ ignoreValidation: boolean;
4271
+ criteria: {
4272
+ origin: string;
4273
+ destination: string;
4274
+ dutiable: boolean;
4275
+ declaredValue: number | null;
4276
+ };
4277
+ rules: {
4278
+ id: number;
4279
+ level: string;
4280
+ attributes: {
4281
+ id: number;
4282
+ field: string;
4283
+ dhlCode: string;
4284
+ values: {
4285
+ shipment: string;
4286
+ customer: CustomerRoleType;
4287
+ invoiceHeader: string;
4288
+ invoiceItem: string[];
4289
+ };
4290
+ }[];
4291
+ }[];
4292
+ };
4293
+ additionalData: {
4294
+ countryCode: string;
4295
+ productGlobalCode: string;
4296
+ productLocalCode: string;
4297
+ currencyCode: string;
4298
+ userUsername: string;
4299
+ locationFacilityCode: string;
4300
+ shipmentStatusCode: string;
4301
+ awbTypeCode?: string;
4302
+ shipmentTypeCode?: string;
4303
+ };
4175
4304
  }
4176
- interface ExtraChargeComposition {
4177
- globalServiceCode: string;
4178
- localServiceCode: string;
4179
- globalServiceName: string;
4180
- localServiceName: string;
4305
+ interface ExtraChargeComposition extends ActiveLessSymfonyModel {
4181
4306
  subtotal: number;
4182
4307
  tax: number;
4183
4308
  total: number;
4184
- taxes: Tax[];
4309
+ extraChargeId: number;
4310
+ taxes: TaxComposition[];
4311
+ extraChargeGroup: string;
4312
+ extraChargeCode: string;
4313
+ extraChargeName: string;
4314
+ extraChargeIsDiscount: boolean;
4185
4315
  }
4186
- interface Tax {
4316
+ interface TaxComposition extends ActiveLessSymfonyModel {
4187
4317
  code: string;
4188
4318
  percent: number;
4189
4319
  baseAmount: number;
4190
4320
  amount: number;
4191
4321
  }
4192
- interface ShipmentAddresses extends SymfonyModel {
4322
+ interface ShipmentAddressComposition extends ActiveLessSymfonyModel {
4193
4323
  index: number;
4194
- identificationTypeId: number;
4195
- identificationNumber: string;
4324
+ identificationTypeId: number | null;
4325
+ identificationNumber: string | null;
4196
4326
  companyName: string;
4197
4327
  fullName: string;
4198
4328
  email: string;
4199
4329
  phoneCode: string;
4200
4330
  phoneNumber: string;
4201
- postalCode: string;
4202
- stateCode: string;
4331
+ postalCode: string | null;
4332
+ stateCode: string | null;
4333
+ stateId: number | null;
4203
4334
  countyName: string;
4204
4335
  cityName: string;
4205
4336
  addressLine1: string;
4206
- addressLine2: string;
4207
- addressLine3: string;
4337
+ addressLine2: string | null;
4338
+ addressLine3: string | null;
4208
4339
  countryId: number;
4209
- identificationType: IdentificationTypeComposition;
4210
- roleType: CustomerType$1;
4211
- }
4212
- interface IdentificationTypeComposition extends SymfonyModel {
4213
- name: string;
4214
- companyCountryId: number;
4215
- }
4216
- interface ShipmentPieces extends ActiveLessSymfonyModel {
4340
+ roleType: CustomerRoleType;
4341
+ businessPartyTraderTypeId: number | null;
4342
+ registrationNumbers: unknown[];
4343
+ importerTaxIdentification: string | null;
4344
+ emailReceipt: boolean;
4345
+ residentialDelivery: boolean;
4346
+ country: CountryCompanies;
4347
+ state: State | null;
4348
+ businessPartyTraderType?: BusinessPartyTraderType | null;
4349
+ identificationType?: IdentificationType | null;
4350
+ }
4351
+ interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
4217
4352
  number: number;
4218
4353
  height: number;
4219
4354
  length: number;
4220
4355
  width: number;
4221
4356
  realWeight: number;
4222
4357
  volumetricWeight: number;
4223
- dataIdentifier: string;
4358
+ dataIdentifier: string | null;
4224
4359
  trackingNumber: string;
4225
- licensePlateBarCode: string;
4226
- shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
4360
+ licensePlateBarCode: string | null;
4361
+ shipmentPieceSupplies: ShipmentPieceSupplyComposition[];
4227
4362
  }
4228
- interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4363
+ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
4229
4364
  supplyId: number;
4230
4365
  quantity: number;
4231
4366
  subtotal: number;
@@ -4236,18 +4371,25 @@ interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4236
4371
  description: string;
4237
4372
  supply: Supply;
4238
4373
  }
4239
- interface CommercialInvoice extends ActiveLessSymfonyModel {
4374
+ interface ShipmentProductComposition extends ActiveLessSymfonyModel {
4375
+ globalCode: string;
4376
+ localCode: string;
4377
+ globalName: string;
4378
+ localName: string;
4379
+ isDocument: boolean;
4380
+ }
4381
+ interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
4240
4382
  documentTypeId: number;
4241
4383
  tradingTransactionTypeId: number;
4242
4384
  documentFunctionId: number;
4243
4385
  number: string;
4244
4386
  remarks: string;
4245
- items: Item[];
4387
+ items: ItemComposition[];
4246
4388
  documentType: DocumentTypeComposition;
4247
4389
  tradingTransactionType: TradingTransactionType;
4248
- documentFunction: DocumentFunction;
4390
+ documentFunction: DocumentFunctionComposition;
4249
4391
  }
4250
- interface Item extends ActiveLessSymfonyModel {
4392
+ interface ItemComposition extends ActiveLessSymfonyModel {
4251
4393
  description: string;
4252
4394
  quantity: number;
4253
4395
  quantityUnitId: number;
@@ -4256,32 +4398,31 @@ interface Item extends ActiveLessSymfonyModel {
4256
4398
  realWeight: number;
4257
4399
  commodityId: number;
4258
4400
  quantityUnit: QuantityUnit;
4259
- manufactureCountry: ManufactureCountry;
4401
+ manufactureCountry: {
4402
+ id: string;
4403
+ code: string;
4404
+ name: string;
4405
+ locationType: string[];
4406
+ unit: string[];
4407
+ timezone: string;
4408
+ hasImportService: boolean;
4409
+ isActive: boolean;
4410
+ regions: string[];
4411
+ zones: string[];
4412
+ isoCode: string;
4413
+ };
4260
4414
  commodity: Commodity;
4261
4415
  }
4262
- interface ManufactureCountry {
4263
- id: string;
4264
- code: string;
4265
- name: string;
4266
- locationType: string[];
4267
- unit: string[];
4268
- timezone: string;
4269
- hasImportService: boolean;
4270
- isActive: boolean;
4271
- regions: string[];
4272
- zones: string[];
4273
- isoCode: string;
4274
- }
4275
4416
  interface DocumentTypeComposition extends SymfonyModel {
4276
4417
  code: string;
4277
4418
  name: string;
4278
4419
  description: string;
4279
4420
  }
4280
- interface DocumentFunction extends SymfonyModel {
4421
+ interface DocumentFunctionComposition extends SymfonyModel {
4281
4422
  code: string;
4282
4423
  name: string;
4283
4424
  }
4284
- interface ShipmentGsop extends ActiveLessSymfonyModel {
4425
+ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
4285
4426
  productContentCode: string;
4286
4427
  originServiceAreaCode: string;
4287
4428
  destinationServiceAreaCode: string;
@@ -4289,54 +4430,6 @@ interface ShipmentGsop extends ActiveLessSymfonyModel {
4289
4430
  awbBarCode: string;
4290
4431
  dhlRoutingBarCode: string;
4291
4432
  }
4292
- interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
4293
- subtotal: number;
4294
- tax: number;
4295
- total: number;
4296
- extraChargeId: number;
4297
- extraChargeCode: string;
4298
- }
4299
- interface AdditionalData {
4300
- awbTypeCode: string;
4301
- countryCode: string;
4302
- shipmentTypeCode: string;
4303
- productGlobalCode: string;
4304
- productLocalCode: string;
4305
- currencyCode: string;
4306
- userUsername: string;
4307
- locationFacilityCode: string;
4308
- }
4309
- interface Customs {
4310
- criteria: Criteria;
4311
- rules: Rules[];
4312
- }
4313
- interface Criteria {
4314
- origin: string;
4315
- destination: string;
4316
- dutiable: boolean;
4317
- declaredValue: number;
4318
- }
4319
- interface Rules {
4320
- id: number;
4321
- level: string;
4322
- attributes: Attributes[];
4323
- }
4324
- interface Attributes {
4325
- id: number;
4326
- field: string;
4327
- dhlCode: string;
4328
- values: Values;
4329
- }
4330
- interface Values {
4331
- shipment: string;
4332
- customer: CustomerComposition;
4333
- invoiceHeader: string;
4334
- invoiceItem: string[];
4335
- }
4336
- interface CustomerComposition {
4337
- SP: string;
4338
- RV: string;
4339
- }
4340
4433
  interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4341
4434
  pickupDate: string;
4342
4435
  readyByTime: string;
@@ -4350,6 +4443,10 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4350
4443
  type ShipmentOut = {
4351
4444
  shipment: ShipmentComposition;
4352
4445
  };
4446
+ type ShipmentsOut = {
4447
+ shipments: ShipmentComposition[];
4448
+ total: number;
4449
+ };
4353
4450
  type CompositionCountryReferencesOut = {
4354
4451
  country_references: CountryReference[];
4355
4452
  total: number;
@@ -4371,6 +4468,13 @@ declare class ApiCompositionService {
4371
4468
  * @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
4372
4469
  */
4373
4470
  getShipment(id: number): Observable<ShipmentOut>;
4471
+ /**
4472
+ * Retrieves shipments based on the provided query parameters.
4473
+ *
4474
+ * @param {QueryParams} params - The query parameters for the API request.
4475
+ * @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
4476
+ */
4477
+ getShipments(params: QueryParams): Observable<ShipmentsOut>;
4374
4478
  /**
4375
4479
  * Fetches the country references data based on the provided query parameters.
4376
4480
  *
@@ -5522,7 +5626,6 @@ type DeliveryConfirmationSearchOut = {
5522
5626
  type SignaturePageConfirmationGenerateOut = {
5523
5627
  code: string;
5524
5628
  };
5525
- type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
5526
5629
  type ConfirmTermsIn = {
5527
5630
  shipment_id: number;
5528
5631
  status: 'Processed' | 'Canceled';
@@ -5665,6 +5768,10 @@ declare enum RouteModelType {
5665
5768
  COURIER = "Courier",
5666
5769
  COURIER_ROUTE = "CourierRoute"
5667
5770
  }
5771
+ declare enum InventoryControlType {
5772
+ LAST_MILE = "lastMile",
5773
+ FIRST_MILE = "firstMile"
5774
+ }
5668
5775
 
5669
5776
  interface CheckpointInventory extends ActiveLessSymfonyModel {
5670
5777
  code: string;
@@ -5786,6 +5893,13 @@ interface Package9 extends ApiModel {
5786
5893
  shipmentTrackingNumber: string;
5787
5894
  trackingNumber: string;
5788
5895
  }
5896
+ interface InventoryControl extends SymfonyModel {
5897
+ countryId: number;
5898
+ country: Country;
5899
+ type: InventoryControlType;
5900
+ maxShipments: number;
5901
+ expirationDays: number;
5902
+ }
5789
5903
 
5790
5904
  type CheckpointsInventoryOut = {
5791
5905
  total: number;
@@ -5959,6 +6073,20 @@ type PackageOnHoldOut = {
5959
6073
  packages: Package9[];
5960
6074
  };
5961
6075
  };
6076
+ type InventoryControlsOut = {
6077
+ inventoryControls: InventoryControl[];
6078
+ total: number;
6079
+ };
6080
+ type InventoryControlOut = {
6081
+ inventoryControl: InventoryControl;
6082
+ };
6083
+ type InventoryControlIn = {
6084
+ countryId: number;
6085
+ type: InventoryControlType;
6086
+ maxShipments: number;
6087
+ expirationDays: number;
6088
+ isActive: boolean;
6089
+ };
5962
6090
 
5963
6091
  declare class ApiInventoriesService {
5964
6092
  private environments;
@@ -6215,6 +6343,38 @@ declare class ApiInventoriesService {
6215
6343
  * @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
6216
6344
  */
6217
6345
  putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
6346
+ /**
6347
+ * Retrieves inventory controls based on the provided query parameters.
6348
+ * @param params - Query parameters to filter, sort, or paginate inventory controls
6349
+ * @returns An Observable that emits the inventory controls data
6350
+ */
6351
+ getInventoryControls(params: QueryParams): Observable<InventoryControlsOut>;
6352
+ /**
6353
+ * Fetches the inventory control details based on the provided inventory control ID.
6354
+ *
6355
+ * @param {number} id - The inventory control id
6356
+ * @return {Observable<InventoryControlOut>} An observable that emits the inventory control data.
6357
+ */
6358
+ getInventoryControl(id: Number): Observable<InventoryControlOut>;
6359
+ /**
6360
+ * Creates a new inventory control.
6361
+ * @param body - Inventory control data to create
6362
+ * @returns An Observable that emits the created inventory control
6363
+ */
6364
+ postInventoryControl(body: InventoryControlIn): Observable<InventoryControlOut>;
6365
+ /**
6366
+ * Updates an existing inventory control.
6367
+ * @param id - Identifier of the inventory control to update
6368
+ * @param body - Updated inventory control data
6369
+ * @returns An Observable that emits the updated inventory control
6370
+ */
6371
+ putInventoryControl(id: number, body: InventoryControlIn): Observable<InventoryControlOut>;
6372
+ /**
6373
+ * Deletes an inventory control by its identifier.
6374
+ * @param id - Identifier of the inventory control to delete
6375
+ * @returns An Observable that emits the operation result
6376
+ */
6377
+ deleteInventoryControl(id: number): Observable<{}>;
6218
6378
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
6219
6379
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
6220
6380
  }
@@ -9643,5 +9803,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9643
9803
  [header: string]: string | string[];
9644
9804
  };
9645
9805
 
9646
- export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, 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 };
9647
- 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, Connection, ConnectionsOut, 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, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, 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 };
9806
+ export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, CustomerRoleType, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryControlType, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9807
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoiceComposition, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, CountriesOut, Country, CountryCompanies, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryControl, InventoryControlIn, InventoryControlOut, InventoryControlsOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, ItemComposition, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, ProductsOut, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, TaxComposition, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, UpsellingIndicator, UpsellingIndicatorCountry, UpsellingIndicatorIn, UpsellingIndicatorMethod, UpsellingIndicatorMethodOut, UpsellingIndicatorMethodsOut, UpsellingIndicatorOut, UpsellingIndicatorProduct, UpsellingIndicatorsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };