@experteam-mx/ngx-services 20.9.1 → 20.9.3

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
@@ -1155,6 +1155,7 @@ interface Country extends SymfonyModel {
1155
1155
  hasImportService: boolean;
1156
1156
  phoneDigits: number;
1157
1157
  locationTypeFields: LocationTypeFields;
1158
+ postalCodeFormats: PostalCodeFormat[];
1158
1159
  postalCodeSuffixRegex: string;
1159
1160
  decimalPoint: number;
1160
1161
  max_quantity_document_piece: number;
@@ -1172,6 +1173,11 @@ interface Country extends SymfonyModel {
1172
1173
  use_billing?: boolean;
1173
1174
  translations: Translations;
1174
1175
  }
1176
+ interface PostalCodeFormat extends SymfonyModel {
1177
+ format: string;
1178
+ significantChars: number;
1179
+ regex: string;
1180
+ }
1175
1181
  interface LocationType extends SymfonyModel {
1176
1182
  code: string;
1177
1183
  name: string;
@@ -2822,30 +2828,10 @@ interface AccountWithDefault extends Account {
2822
2828
  }
2823
2829
  interface AccountWithLocations extends Account {
2824
2830
  account_company_countries: AccountCompanyCountryLocation[];
2825
- country: CountryAccount;
2826
- }
2827
- interface PostalCodeFormat extends SymfonyModel {
2828
- format: string;
2829
- significantChars: number;
2830
- regex: string;
2831
+ country: CountryCompanies;
2831
2832
  }
2832
- interface CountryAccount {
2833
- id: number;
2834
- code: string;
2835
- name: string;
2836
- timezone: string;
2837
- hasImportService: boolean;
2838
- isActive: boolean;
2839
- isoCode: string;
2840
- codePhone: string;
2841
- phoneDigits: string | null;
2842
- createdAt: string;
2843
- updatedAt: string;
2844
- locationType: LocationType;
2845
- unit: Unit;
2846
- locationTypeFields: LocationTypeFields;
2833
+ interface CountryCompanies extends Country {
2847
2834
  postalCodeFormats: PostalCodeFormat[];
2848
- translations: Translations;
2849
2835
  }
2850
2836
 
2851
2837
  type LocationEmployeesOut = {
@@ -4046,7 +4032,7 @@ declare class ApiCompaniesService {
4046
4032
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
4047
4033
  }
4048
4034
 
4049
- declare enum CustomerType$1 {
4035
+ declare enum CustomerRoleType {
4050
4036
  SHIPPER = "SP",
4051
4037
  CONSIGNEE = "RV",
4052
4038
  IMPORTER = "IP",
@@ -4093,138 +4079,180 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
4093
4079
  stock: number;
4094
4080
  }
4095
4081
 
4096
- interface ShipmentComposition extends SymfonyModel {
4097
- currencyCode: string;
4098
- extraCharges: ExtraChargeComposition[];
4099
- globalProductCode: string;
4100
- globalProductName: string;
4101
- localProductCode: string;
4102
- localProductName: string;
4103
- trackingNumber: string;
4104
- contentDescription: string;
4105
- realWeight: number;
4106
- piecesNumber: number;
4107
- productSubtotal: number;
4108
- productTax: number;
4109
- productTotal: number;
4110
- declaredValue: number;
4111
- insuredValue: number;
4082
+ interface ShipmentComposition extends ActiveLessSymfonyModel {
4112
4083
  accountNumber: string;
4113
- userId: number;
4114
- installationId: number;
4084
+ cancellationDateTime: string | null;
4085
+ cancellationReasonId: number | null;
4086
+ commercialExchangeRate: number;
4087
+ commercialInvoice: CommercialInvoiceComposition | null;
4115
4088
  companyCountryId: number;
4116
- productId: number;
4089
+ contentDescription: string;
4117
4090
  countryReferenceCurrencyId: number;
4118
- commercialExchangeRate: number;
4119
- ibsExchangeRate: number;
4120
- shipmentStatusId: number;
4121
- shipmentAddresses: ShipmentAddresses[];
4122
- shipmentPieces: ShipmentPieces[];
4123
- shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
4124
- shipmentGsop: ShipmentGsop;
4125
- additionalData: AdditionalData;
4126
- transactionId: string;
4127
- requiresPayment: boolean;
4128
- originServiceAreaCode: string;
4129
- originFacilityCode: string;
4130
- destinationServiceAreaCode: string;
4091
+ date: string;
4092
+ declaredCurrency: string | null;
4093
+ declaredValue: number;
4094
+ deliveryDateTime: string;
4131
4095
  destinationFacilityCode: string;
4132
- productTaxes: string[];
4096
+ destinationServiceAreaCode: string;
4097
+ discountModelId: number | null;
4098
+ discountModelType: string | null;
4099
+ discountName: string | null;
4100
+ discountPercentage: number | null;
4101
+ discountReference: string | null;
4102
+ discountValue: number | null;
4103
+ dutiesAndTaxesAccountNumber: string | null;
4104
+ einNumber: string | null;
4105
+ exportReason: ExportReason | null;
4106
+ exportReasonId: number | null;
4107
+ extraFields: Record<string, unknown>;
4108
+ ibsExchangeRate: number;
4109
+ installationId: number;
4110
+ insuredCurrency: string | null;
4111
+ insuredValue: number | null;
4112
+ isCash: boolean;
4113
+ isDocument: boolean;
4114
+ isDutiesAndTaxes: boolean;
4133
4115
  isInspected: boolean;
4134
- extraFields: {
4135
- [key: string]: string | number | boolean;
4136
- };
4137
- shipmentContentTypeId: number;
4138
- commercialInvoice: CommercialInvoice;
4139
- shipmentScopeId: number;
4140
- shipmentGroupId: number;
4141
- product: string[];
4142
- declaredCurrency: string;
4143
- insuredCurrency: string;
4144
- deliveryDateTime: string;
4145
- date: string;
4146
- promotionCode: string;
4147
- priceOverrideApproverId: number;
4148
- priceOverrideReasonId: number;
4149
- customs: Customs;
4150
- exportReasonId: number;
4151
- exportReason: string[];
4152
- shipmentBookPickup: ShipmentBookPickup;
4153
- questionId: number;
4154
4116
  isInsured: boolean;
4155
- itnNumber: string;
4156
- einNumber: string;
4157
- otherAccountNumber: string;
4158
- dutiesAndTaxesAccountNumber: string;
4159
- discountId: string;
4160
- discountReference: string;
4161
- totalPublishedValue: number;
4162
- totalPartnerAccountValue: number;
4163
- isMarketingConsent: boolean;
4164
- isTermCondition: boolean;
4165
- isDocument: boolean;
4166
- isCash: boolean;
4117
+ isMarketingConsent: boolean | null;
4118
+ isOccurs: boolean;
4119
+ isOtherOrigin: boolean;
4167
4120
  isPriceOverride: boolean;
4168
4121
  isProforma: boolean;
4169
4122
  isPromotionCode: boolean;
4170
4123
  isRetailRate: boolean;
4171
- isOtherOrigin: boolean;
4172
- isOccurs: boolean;
4173
- isDutiesAndTaxes: boolean;
4124
+ isTermCondition: boolean;
4125
+ itnNumber: string | null;
4126
+ manifestDateTime: string | null;
4127
+ originFacilityCode: string;
4128
+ originServiceAreaCode: string;
4129
+ otherAccountNumber: string | null;
4130
+ piecesNumber: number;
4131
+ priceOverrideApproverId: number | null;
4132
+ priceOverrideReasonId: number | null;
4133
+ product: ShipmentProductComposition;
4134
+ productId: number;
4135
+ productSubtotal: number;
4136
+ productTax: number;
4137
+ productTaxes: TaxComposition[];
4138
+ productTotal: number;
4139
+ promotionCode: string | null;
4140
+ realWeight: number;
4141
+ requiresPayment: boolean;
4142
+ shipmentAddresses: ShipmentAddressComposition[];
4143
+ shipmentBookPickup: ShipmentBookPickup | null;
4144
+ shipmentContentTypeId: number;
4145
+ shipmentExtraCharges: ExtraChargeComposition[];
4146
+ shipmentGroupId: number;
4147
+ shipmentGsop: ShipmentGsopComposition | null;
4148
+ shipmentPieces: ShipmentPieceComposition[];
4149
+ shipmentScopeId: number;
4150
+ shipmentStatusId: number;
4151
+ shipmentTaxes: TaxComposition[];
4152
+ shipmentWithholding: unknown | null;
4153
+ subtotal: number;
4154
+ tax: number;
4155
+ total: number;
4156
+ totalPartnerAccountValue: number | null;
4157
+ totalPublishedValue: number | null;
4158
+ trackingNumber: string;
4159
+ transactionId: string;
4160
+ userId: number;
4161
+ customs: {
4162
+ ignoreValidation: boolean;
4163
+ criteria: {
4164
+ origin: string;
4165
+ destination: string;
4166
+ dutiable: boolean;
4167
+ declaredValue: number | null;
4168
+ };
4169
+ rules: {
4170
+ id: number;
4171
+ level: string;
4172
+ attributes: {
4173
+ id: number;
4174
+ field: string;
4175
+ dhlCode: string;
4176
+ values: {
4177
+ shipment: string;
4178
+ customer: CustomerRoleType;
4179
+ invoiceHeader: string;
4180
+ invoiceItem: string[];
4181
+ };
4182
+ }[];
4183
+ }[];
4184
+ };
4185
+ additionalData: {
4186
+ countryCode: string;
4187
+ productGlobalCode: string;
4188
+ productLocalCode: string;
4189
+ currencyCode: string;
4190
+ userUsername: string;
4191
+ locationFacilityCode: string;
4192
+ shipmentStatusCode: string;
4193
+ awbTypeCode?: string;
4194
+ shipmentTypeCode?: string;
4195
+ };
4174
4196
  }
4175
- interface ExtraChargeComposition {
4176
- globalServiceCode: string;
4177
- localServiceCode: string;
4178
- globalServiceName: string;
4179
- localServiceName: string;
4197
+ interface ExtraChargeComposition extends ActiveLessSymfonyModel {
4180
4198
  subtotal: number;
4181
4199
  tax: number;
4182
4200
  total: number;
4183
- taxes: Tax[];
4201
+ extraChargeId: number;
4202
+ taxes: TaxComposition[];
4203
+ extraChargeGroup: string;
4204
+ extraChargeCode: string;
4205
+ extraChargeName: string;
4206
+ extraChargeIsDiscount: boolean;
4184
4207
  }
4185
- interface Tax {
4208
+ interface TaxComposition extends ActiveLessSymfonyModel {
4186
4209
  code: string;
4187
4210
  percent: number;
4188
4211
  baseAmount: number;
4189
4212
  amount: number;
4190
4213
  }
4191
- interface ShipmentAddresses extends SymfonyModel {
4214
+ interface ShipmentAddressComposition extends ActiveLessSymfonyModel {
4192
4215
  index: number;
4193
- identificationTypeId: number;
4194
- identificationNumber: string;
4216
+ identificationTypeId: number | null;
4217
+ identificationNumber: string | null;
4195
4218
  companyName: string;
4196
4219
  fullName: string;
4197
4220
  email: string;
4198
4221
  phoneCode: string;
4199
4222
  phoneNumber: string;
4200
- postalCode: string;
4201
- stateCode: string;
4223
+ postalCode: string | null;
4224
+ stateCode: string | null;
4225
+ stateId: number | null;
4202
4226
  countyName: string;
4203
4227
  cityName: string;
4204
4228
  addressLine1: string;
4205
- addressLine2: string;
4206
- addressLine3: string;
4229
+ addressLine2: string | null;
4230
+ addressLine3: string | null;
4207
4231
  countryId: number;
4208
- identificationType: IdentificationTypeComposition;
4209
- roleType: CustomerType$1;
4210
- }
4211
- interface IdentificationTypeComposition extends SymfonyModel {
4212
- name: string;
4213
- companyCountryId: number;
4214
- }
4215
- interface ShipmentPieces extends ActiveLessSymfonyModel {
4232
+ roleType: CustomerRoleType;
4233
+ businessPartyTraderTypeId: number | null;
4234
+ registrationNumbers: unknown[];
4235
+ importerTaxIdentification: string | null;
4236
+ emailReceipt: boolean;
4237
+ residentialDelivery: boolean;
4238
+ country: CountryCompanies;
4239
+ state: State | null;
4240
+ businessPartyTraderType?: BusinessPartyTraderType | null;
4241
+ identificationType?: IdentificationType | null;
4242
+ }
4243
+ interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
4216
4244
  number: number;
4217
4245
  height: number;
4218
4246
  length: number;
4219
4247
  width: number;
4220
4248
  realWeight: number;
4221
4249
  volumetricWeight: number;
4222
- dataIdentifier: string;
4250
+ dataIdentifier: string | null;
4223
4251
  trackingNumber: string;
4224
- licensePlateBarCode: string;
4225
- shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
4252
+ licensePlateBarCode: string | null;
4253
+ shipmentPieceSupplies: ShipmentPieceSupplyComposition[];
4226
4254
  }
4227
- interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4255
+ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
4228
4256
  supplyId: number;
4229
4257
  quantity: number;
4230
4258
  subtotal: number;
@@ -4235,18 +4263,25 @@ interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4235
4263
  description: string;
4236
4264
  supply: Supply;
4237
4265
  }
4238
- interface CommercialInvoice extends ActiveLessSymfonyModel {
4266
+ interface ShipmentProductComposition extends ActiveLessSymfonyModel {
4267
+ globalCode: string;
4268
+ localCode: string;
4269
+ globalName: string;
4270
+ localName: string;
4271
+ isDocument: boolean;
4272
+ }
4273
+ interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
4239
4274
  documentTypeId: number;
4240
4275
  tradingTransactionTypeId: number;
4241
4276
  documentFunctionId: number;
4242
4277
  number: string;
4243
4278
  remarks: string;
4244
- items: Item[];
4279
+ items: ItemComposition[];
4245
4280
  documentType: DocumentTypeComposition;
4246
4281
  tradingTransactionType: TradingTransactionType;
4247
- documentFunction: DocumentFunction;
4282
+ documentFunction: DocumentFunctionComposition;
4248
4283
  }
4249
- interface Item extends ActiveLessSymfonyModel {
4284
+ interface ItemComposition extends ActiveLessSymfonyModel {
4250
4285
  description: string;
4251
4286
  quantity: number;
4252
4287
  quantityUnitId: number;
@@ -4255,32 +4290,31 @@ interface Item extends ActiveLessSymfonyModel {
4255
4290
  realWeight: number;
4256
4291
  commodityId: number;
4257
4292
  quantityUnit: QuantityUnit;
4258
- manufactureCountry: ManufactureCountry;
4293
+ manufactureCountry: {
4294
+ id: string;
4295
+ code: string;
4296
+ name: string;
4297
+ locationType: string[];
4298
+ unit: string[];
4299
+ timezone: string;
4300
+ hasImportService: boolean;
4301
+ isActive: boolean;
4302
+ regions: string[];
4303
+ zones: string[];
4304
+ isoCode: string;
4305
+ };
4259
4306
  commodity: Commodity;
4260
4307
  }
4261
- interface ManufactureCountry {
4262
- id: string;
4263
- code: string;
4264
- name: string;
4265
- locationType: string[];
4266
- unit: string[];
4267
- timezone: string;
4268
- hasImportService: boolean;
4269
- isActive: boolean;
4270
- regions: string[];
4271
- zones: string[];
4272
- isoCode: string;
4273
- }
4274
4308
  interface DocumentTypeComposition extends SymfonyModel {
4275
4309
  code: string;
4276
4310
  name: string;
4277
4311
  description: string;
4278
4312
  }
4279
- interface DocumentFunction extends SymfonyModel {
4313
+ interface DocumentFunctionComposition extends SymfonyModel {
4280
4314
  code: string;
4281
4315
  name: string;
4282
4316
  }
4283
- interface ShipmentGsop extends ActiveLessSymfonyModel {
4317
+ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
4284
4318
  productContentCode: string;
4285
4319
  originServiceAreaCode: string;
4286
4320
  destinationServiceAreaCode: string;
@@ -4288,54 +4322,6 @@ interface ShipmentGsop extends ActiveLessSymfonyModel {
4288
4322
  awbBarCode: string;
4289
4323
  dhlRoutingBarCode: string;
4290
4324
  }
4291
- interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
4292
- subtotal: number;
4293
- tax: number;
4294
- total: number;
4295
- extraChargeId: number;
4296
- extraChargeCode: string;
4297
- }
4298
- interface AdditionalData {
4299
- awbTypeCode: string;
4300
- countryCode: string;
4301
- shipmentTypeCode: string;
4302
- productGlobalCode: string;
4303
- productLocalCode: string;
4304
- currencyCode: string;
4305
- userUsername: string;
4306
- locationFacilityCode: string;
4307
- }
4308
- interface Customs {
4309
- criteria: Criteria;
4310
- rules: Rules[];
4311
- }
4312
- interface Criteria {
4313
- origin: string;
4314
- destination: string;
4315
- dutiable: boolean;
4316
- declaredValue: number;
4317
- }
4318
- interface Rules {
4319
- id: number;
4320
- level: string;
4321
- attributes: Attributes[];
4322
- }
4323
- interface Attributes {
4324
- id: number;
4325
- field: string;
4326
- dhlCode: string;
4327
- values: Values;
4328
- }
4329
- interface Values {
4330
- shipment: string;
4331
- customer: CustomerComposition;
4332
- invoiceHeader: string;
4333
- invoiceItem: string[];
4334
- }
4335
- interface CustomerComposition {
4336
- SP: string;
4337
- RV: string;
4338
- }
4339
4325
  interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4340
4326
  pickupDate: string;
4341
4327
  readyByTime: string;
@@ -4349,6 +4335,10 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4349
4335
  type ShipmentOut = {
4350
4336
  shipment: ShipmentComposition;
4351
4337
  };
4338
+ type ShipmentsOut = {
4339
+ shipments: ShipmentComposition[];
4340
+ total: number;
4341
+ };
4352
4342
  type CompositionCountryReferencesOut = {
4353
4343
  country_references: CountryReference[];
4354
4344
  total: number;
@@ -4370,6 +4360,13 @@ declare class ApiCompositionService {
4370
4360
  * @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
4371
4361
  */
4372
4362
  getShipment(id: number): Observable<ShipmentOut>;
4363
+ /**
4364
+ * Retrieves shipments based on the provided query parameters.
4365
+ *
4366
+ * @param {QueryParams} params - The query parameters for the API request.
4367
+ * @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
4368
+ */
4369
+ getShipments(params: QueryParams): Observable<ShipmentsOut>;
4373
4370
  /**
4374
4371
  * Fetches the country references data based on the provided query parameters.
4375
4372
  *
@@ -5521,7 +5518,6 @@ type DeliveryConfirmationSearchOut = {
5521
5518
  type SignaturePageConfirmationGenerateOut = {
5522
5519
  code: string;
5523
5520
  };
5524
- type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
5525
5521
  type ConfirmTermsIn = {
5526
5522
  shipment_id: number;
5527
5523
  status: 'Processed' | 'Canceled';
@@ -9642,5 +9638,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9642
9638
  [header: string]: string | string[];
9643
9639
  };
9644
9640
 
9645
- 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 };
9646
- 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 };
9641
+ 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, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9642
+ 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, 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, 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, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.9.1",
3
+ "version": "20.9.3",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [
@@ -41,8 +41,8 @@
41
41
  "tslib": "^2.8.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@angular/common": "^20.3.25",
45
- "@angular/core": "^20.3.25",
44
+ "@angular/common": "^20.3.27",
45
+ "@angular/core": "^20.3.27",
46
46
  "ngx-cookie-service": "^20.0.0",
47
47
  "pusher-js": "^7.5.0"
48
48
  },