@experteam-mx/ngx-services 20.9.0 → 20.9.1-dev3.2

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
@@ -2743,30 +2743,15 @@ interface AccountWithDefault extends Account {
2743
2743
  }
2744
2744
  interface AccountWithLocations extends Account {
2745
2745
  account_company_countries: AccountCompanyCountryLocation[];
2746
- country: CountryAccount;
2746
+ country: CountryCompanies;
2747
2747
  }
2748
2748
  interface PostalCodeFormat extends SymfonyModel {
2749
2749
  format: string;
2750
2750
  significantChars: number;
2751
2751
  regex: string;
2752
2752
  }
2753
- interface CountryAccount {
2754
- id: number;
2755
- code: string;
2756
- name: string;
2757
- timezone: string;
2758
- hasImportService: boolean;
2759
- isActive: boolean;
2760
- isoCode: string;
2761
- codePhone: string;
2762
- phoneDigits: string | null;
2763
- createdAt: string;
2764
- updatedAt: string;
2765
- locationType: LocationType;
2766
- unit: Unit;
2767
- locationTypeFields: LocationTypeFields;
2753
+ interface CountryCompanies extends Country {
2768
2754
  postalCodeFormats: PostalCodeFormat[];
2769
- translations: Translations;
2770
2755
  }
2771
2756
 
2772
2757
  type LocationEmployeesOut = {
@@ -3385,6 +3370,13 @@ declare class ApiCompaniesService {
3385
3370
  * @return {Observable<{}>} An observable containing the response data after the employee is deleted.
3386
3371
  */
3387
3372
  deleteEmployee(id: number): Observable<{}>;
3373
+ /**
3374
+ * Exports the filtered employees list as a PDF file.
3375
+ *
3376
+ * @param {QueryParams} params - Query parameters used to filter the employees included in the export.
3377
+ * @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
3378
+ */
3379
+ getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
3388
3380
  /**
3389
3381
  * Retrieves the list of employees for a specified location based on provided query parameters.
3390
3382
  *
@@ -3967,7 +3959,7 @@ declare class ApiCompaniesService {
3967
3959
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
3968
3960
  }
3969
3961
 
3970
- declare enum CustomerType$1 {
3962
+ declare enum CustomerRoleType {
3971
3963
  SHIPPER = "SP",
3972
3964
  CONSIGNEE = "RV",
3973
3965
  IMPORTER = "IP",
@@ -4014,138 +4006,180 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
4014
4006
  stock: number;
4015
4007
  }
4016
4008
 
4017
- interface ShipmentComposition extends SymfonyModel {
4018
- currencyCode: string;
4019
- extraCharges: ExtraChargeComposition[];
4020
- globalProductCode: string;
4021
- globalProductName: string;
4022
- localProductCode: string;
4023
- localProductName: string;
4024
- trackingNumber: string;
4025
- contentDescription: string;
4026
- realWeight: number;
4027
- piecesNumber: number;
4028
- productSubtotal: number;
4029
- productTax: number;
4030
- productTotal: number;
4031
- declaredValue: number;
4032
- insuredValue: number;
4009
+ interface ShipmentComposition extends ActiveLessSymfonyModel {
4033
4010
  accountNumber: string;
4034
- userId: number;
4035
- installationId: number;
4011
+ cancellationDateTime: string | null;
4012
+ cancellationReasonId: number | null;
4013
+ commercialExchangeRate: number;
4014
+ commercialInvoice: CommercialInvoiceComposition | null;
4036
4015
  companyCountryId: number;
4037
- productId: number;
4016
+ contentDescription: string;
4038
4017
  countryReferenceCurrencyId: number;
4039
- commercialExchangeRate: number;
4040
- ibsExchangeRate: number;
4041
- shipmentStatusId: number;
4042
- shipmentAddresses: ShipmentAddresses[];
4043
- shipmentPieces: ShipmentPieces[];
4044
- shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
4045
- shipmentGsop: ShipmentGsop;
4046
- additionalData: AdditionalData;
4047
- transactionId: string;
4048
- requiresPayment: boolean;
4049
- originServiceAreaCode: string;
4050
- originFacilityCode: string;
4051
- destinationServiceAreaCode: string;
4018
+ date: string;
4019
+ declaredCurrency: string | null;
4020
+ declaredValue: number;
4021
+ deliveryDateTime: string;
4052
4022
  destinationFacilityCode: string;
4053
- productTaxes: string[];
4023
+ destinationServiceAreaCode: string;
4024
+ discountModelId: number | null;
4025
+ discountModelType: string | null;
4026
+ discountName: string | null;
4027
+ discountPercentage: number | null;
4028
+ discountReference: string | null;
4029
+ discountValue: number | null;
4030
+ dutiesAndTaxesAccountNumber: string | null;
4031
+ einNumber: string | null;
4032
+ exportReason: ExportReason | null;
4033
+ exportReasonId: number | null;
4034
+ extraFields: Record<string, unknown>;
4035
+ ibsExchangeRate: number;
4036
+ installationId: number;
4037
+ insuredCurrency: string | null;
4038
+ insuredValue: number | null;
4039
+ isCash: boolean;
4040
+ isDocument: boolean;
4041
+ isDutiesAndTaxes: boolean;
4054
4042
  isInspected: boolean;
4055
- extraFields: {
4056
- [key: string]: string | number | boolean;
4057
- };
4058
- shipmentContentTypeId: number;
4059
- commercialInvoice: CommercialInvoice;
4060
- shipmentScopeId: number;
4061
- shipmentGroupId: number;
4062
- product: string[];
4063
- declaredCurrency: string;
4064
- insuredCurrency: string;
4065
- deliveryDateTime: string;
4066
- date: string;
4067
- promotionCode: string;
4068
- priceOverrideApproverId: number;
4069
- priceOverrideReasonId: number;
4070
- customs: Customs;
4071
- exportReasonId: number;
4072
- exportReason: string[];
4073
- shipmentBookPickup: ShipmentBookPickup;
4074
- questionId: number;
4075
4043
  isInsured: boolean;
4076
- itnNumber: string;
4077
- einNumber: string;
4078
- otherAccountNumber: string;
4079
- dutiesAndTaxesAccountNumber: string;
4080
- discountId: string;
4081
- discountReference: string;
4082
- totalPublishedValue: number;
4083
- totalPartnerAccountValue: number;
4084
- isMarketingConsent: boolean;
4085
- isTermCondition: boolean;
4086
- isDocument: boolean;
4087
- isCash: boolean;
4044
+ isMarketingConsent: boolean | null;
4045
+ isOccurs: boolean;
4046
+ isOtherOrigin: boolean;
4088
4047
  isPriceOverride: boolean;
4089
4048
  isProforma: boolean;
4090
4049
  isPromotionCode: boolean;
4091
4050
  isRetailRate: boolean;
4092
- isOtherOrigin: boolean;
4093
- isOccurs: boolean;
4094
- isDutiesAndTaxes: boolean;
4051
+ isTermCondition: boolean;
4052
+ itnNumber: string | null;
4053
+ manifestDateTime: string | null;
4054
+ originFacilityCode: string;
4055
+ originServiceAreaCode: string;
4056
+ otherAccountNumber: string | null;
4057
+ piecesNumber: number;
4058
+ priceOverrideApproverId: number | null;
4059
+ priceOverrideReasonId: number | null;
4060
+ product: ShipmentProductComposition;
4061
+ productId: number;
4062
+ productSubtotal: number;
4063
+ productTax: number;
4064
+ productTaxes: TaxComposition[];
4065
+ productTotal: number;
4066
+ promotionCode: string | null;
4067
+ realWeight: number;
4068
+ requiresPayment: boolean;
4069
+ shipmentAddresses: ShipmentAddressComposition[];
4070
+ shipmentBookPickup: ShipmentBookPickup | null;
4071
+ shipmentContentTypeId: number;
4072
+ shipmentExtraCharges: ExtraChargeComposition[];
4073
+ shipmentGroupId: number;
4074
+ shipmentGsop: ShipmentGsopComposition | null;
4075
+ shipmentPieces: ShipmentPieceComposition[];
4076
+ shipmentScopeId: number;
4077
+ shipmentStatusId: number;
4078
+ shipmentTaxes: TaxComposition[];
4079
+ shipmentWithholding: unknown | null;
4080
+ subtotal: number;
4081
+ tax: number;
4082
+ total: number;
4083
+ totalPartnerAccountValue: number | null;
4084
+ totalPublishedValue: number | null;
4085
+ trackingNumber: string;
4086
+ transactionId: string;
4087
+ userId: number;
4088
+ customs: {
4089
+ ignoreValidation: boolean;
4090
+ criteria: {
4091
+ origin: string;
4092
+ destination: string;
4093
+ dutiable: boolean;
4094
+ declaredValue: number | null;
4095
+ };
4096
+ rules: {
4097
+ id: number;
4098
+ level: string;
4099
+ attributes: {
4100
+ id: number;
4101
+ field: string;
4102
+ dhlCode: string;
4103
+ values: {
4104
+ shipment: string;
4105
+ customer: CustomerRoleType;
4106
+ invoiceHeader: string;
4107
+ invoiceItem: string[];
4108
+ };
4109
+ }[];
4110
+ }[];
4111
+ };
4112
+ additionalData: {
4113
+ countryCode: string;
4114
+ productGlobalCode: string;
4115
+ productLocalCode: string;
4116
+ currencyCode: string;
4117
+ userUsername: string;
4118
+ locationFacilityCode: string;
4119
+ shipmentStatusCode: string;
4120
+ awbTypeCode?: string;
4121
+ shipmentTypeCode?: string;
4122
+ };
4095
4123
  }
4096
- interface ExtraChargeComposition {
4097
- globalServiceCode: string;
4098
- localServiceCode: string;
4099
- globalServiceName: string;
4100
- localServiceName: string;
4124
+ interface ExtraChargeComposition extends ActiveLessSymfonyModel {
4101
4125
  subtotal: number;
4102
4126
  tax: number;
4103
4127
  total: number;
4104
- taxes: Tax[];
4128
+ extraChargeId: number;
4129
+ taxes: TaxComposition[];
4130
+ extraChargeGroup: string;
4131
+ extraChargeCode: string;
4132
+ extraChargeName: string;
4133
+ extraChargeIsDiscount: boolean;
4105
4134
  }
4106
- interface Tax {
4135
+ interface TaxComposition extends ActiveLessSymfonyModel {
4107
4136
  code: string;
4108
4137
  percent: number;
4109
4138
  baseAmount: number;
4110
4139
  amount: number;
4111
4140
  }
4112
- interface ShipmentAddresses extends SymfonyModel {
4141
+ interface ShipmentAddressComposition extends ActiveLessSymfonyModel {
4113
4142
  index: number;
4114
- identificationTypeId: number;
4115
- identificationNumber: string;
4143
+ identificationTypeId: number | null;
4144
+ identificationNumber: string | null;
4116
4145
  companyName: string;
4117
4146
  fullName: string;
4118
4147
  email: string;
4119
4148
  phoneCode: string;
4120
4149
  phoneNumber: string;
4121
- postalCode: string;
4122
- stateCode: string;
4150
+ postalCode: string | null;
4151
+ stateCode: string | null;
4152
+ stateId: number | null;
4123
4153
  countyName: string;
4124
4154
  cityName: string;
4125
4155
  addressLine1: string;
4126
- addressLine2: string;
4127
- addressLine3: string;
4156
+ addressLine2: string | null;
4157
+ addressLine3: string | null;
4128
4158
  countryId: number;
4129
- identificationType: IdentificationTypeComposition;
4130
- roleType: CustomerType$1;
4131
- }
4132
- interface IdentificationTypeComposition extends SymfonyModel {
4133
- name: string;
4134
- companyCountryId: number;
4135
- }
4136
- interface ShipmentPieces extends ActiveLessSymfonyModel {
4159
+ roleType: CustomerRoleType;
4160
+ businessPartyTraderTypeId: number | null;
4161
+ registrationNumbers: unknown[];
4162
+ importerTaxIdentification: string | null;
4163
+ emailReceipt: boolean;
4164
+ residentialDelivery: boolean;
4165
+ country: CountryCompanies;
4166
+ state: State | null;
4167
+ businessPartyTraderType?: BusinessPartyTraderType | null;
4168
+ identificationType?: IdentificationType | null;
4169
+ }
4170
+ interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
4137
4171
  number: number;
4138
4172
  height: number;
4139
4173
  length: number;
4140
4174
  width: number;
4141
4175
  realWeight: number;
4142
4176
  volumetricWeight: number;
4143
- dataIdentifier: string;
4177
+ dataIdentifier: string | null;
4144
4178
  trackingNumber: string;
4145
- licensePlateBarCode: string;
4146
- shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
4179
+ licensePlateBarCode: string | null;
4180
+ shipmentPieceSupplies: ShipmentPieceSupplyComposition[];
4147
4181
  }
4148
- interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4182
+ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
4149
4183
  supplyId: number;
4150
4184
  quantity: number;
4151
4185
  subtotal: number;
@@ -4156,18 +4190,25 @@ interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4156
4190
  description: string;
4157
4191
  supply: Supply;
4158
4192
  }
4159
- interface CommercialInvoice extends ActiveLessSymfonyModel {
4193
+ interface ShipmentProductComposition extends ActiveLessSymfonyModel {
4194
+ globalCode: string;
4195
+ localCode: string;
4196
+ globalName: string;
4197
+ localName: string;
4198
+ isDocument: boolean;
4199
+ }
4200
+ interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
4160
4201
  documentTypeId: number;
4161
4202
  tradingTransactionTypeId: number;
4162
4203
  documentFunctionId: number;
4163
4204
  number: string;
4164
4205
  remarks: string;
4165
- items: Item[];
4206
+ items: ItemComposition[];
4166
4207
  documentType: DocumentTypeComposition;
4167
4208
  tradingTransactionType: TradingTransactionType;
4168
- documentFunction: DocumentFunction;
4209
+ documentFunction: DocumentFunctionComposition;
4169
4210
  }
4170
- interface Item extends ActiveLessSymfonyModel {
4211
+ interface ItemComposition extends ActiveLessSymfonyModel {
4171
4212
  description: string;
4172
4213
  quantity: number;
4173
4214
  quantityUnitId: number;
@@ -4176,32 +4217,31 @@ interface Item extends ActiveLessSymfonyModel {
4176
4217
  realWeight: number;
4177
4218
  commodityId: number;
4178
4219
  quantityUnit: QuantityUnit;
4179
- manufactureCountry: ManufactureCountry;
4220
+ manufactureCountry: {
4221
+ id: string;
4222
+ code: string;
4223
+ name: string;
4224
+ locationType: string[];
4225
+ unit: string[];
4226
+ timezone: string;
4227
+ hasImportService: boolean;
4228
+ isActive: boolean;
4229
+ regions: string[];
4230
+ zones: string[];
4231
+ isoCode: string;
4232
+ };
4180
4233
  commodity: Commodity;
4181
4234
  }
4182
- interface ManufactureCountry {
4183
- id: string;
4184
- code: string;
4185
- name: string;
4186
- locationType: string[];
4187
- unit: string[];
4188
- timezone: string;
4189
- hasImportService: boolean;
4190
- isActive: boolean;
4191
- regions: string[];
4192
- zones: string[];
4193
- isoCode: string;
4194
- }
4195
4235
  interface DocumentTypeComposition extends SymfonyModel {
4196
4236
  code: string;
4197
4237
  name: string;
4198
4238
  description: string;
4199
4239
  }
4200
- interface DocumentFunction extends SymfonyModel {
4240
+ interface DocumentFunctionComposition extends SymfonyModel {
4201
4241
  code: string;
4202
4242
  name: string;
4203
4243
  }
4204
- interface ShipmentGsop extends ActiveLessSymfonyModel {
4244
+ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
4205
4245
  productContentCode: string;
4206
4246
  originServiceAreaCode: string;
4207
4247
  destinationServiceAreaCode: string;
@@ -4209,54 +4249,6 @@ interface ShipmentGsop extends ActiveLessSymfonyModel {
4209
4249
  awbBarCode: string;
4210
4250
  dhlRoutingBarCode: string;
4211
4251
  }
4212
- interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
4213
- subtotal: number;
4214
- tax: number;
4215
- total: number;
4216
- extraChargeId: number;
4217
- extraChargeCode: string;
4218
- }
4219
- interface AdditionalData {
4220
- awbTypeCode: string;
4221
- countryCode: string;
4222
- shipmentTypeCode: string;
4223
- productGlobalCode: string;
4224
- productLocalCode: string;
4225
- currencyCode: string;
4226
- userUsername: string;
4227
- locationFacilityCode: string;
4228
- }
4229
- interface Customs {
4230
- criteria: Criteria;
4231
- rules: Rules[];
4232
- }
4233
- interface Criteria {
4234
- origin: string;
4235
- destination: string;
4236
- dutiable: boolean;
4237
- declaredValue: number;
4238
- }
4239
- interface Rules {
4240
- id: number;
4241
- level: string;
4242
- attributes: Attributes[];
4243
- }
4244
- interface Attributes {
4245
- id: number;
4246
- field: string;
4247
- dhlCode: string;
4248
- values: Values;
4249
- }
4250
- interface Values {
4251
- shipment: string;
4252
- customer: CustomerComposition;
4253
- invoiceHeader: string;
4254
- invoiceItem: string[];
4255
- }
4256
- interface CustomerComposition {
4257
- SP: string;
4258
- RV: string;
4259
- }
4260
4252
  interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4261
4253
  pickupDate: string;
4262
4254
  readyByTime: string;
@@ -4270,6 +4262,10 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4270
4262
  type ShipmentOut = {
4271
4263
  shipment: ShipmentComposition;
4272
4264
  };
4265
+ type ShipmentsOut = {
4266
+ shipments: ShipmentComposition[];
4267
+ total: number;
4268
+ };
4273
4269
  type CompositionCountryReferencesOut = {
4274
4270
  country_references: CountryReference[];
4275
4271
  total: number;
@@ -4291,6 +4287,13 @@ declare class ApiCompositionService {
4291
4287
  * @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
4292
4288
  */
4293
4289
  getShipment(id: number): Observable<ShipmentOut>;
4290
+ /**
4291
+ * Retrieves shipments based on the provided query parameters.
4292
+ *
4293
+ * @param {QueryParams} params - The query parameters for the API request.
4294
+ * @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
4295
+ */
4296
+ getShipments(params: QueryParams): Observable<ShipmentsOut>;
4294
4297
  /**
4295
4298
  * Fetches the country references data based on the provided query parameters.
4296
4299
  *
@@ -5442,7 +5445,6 @@ type DeliveryConfirmationSearchOut = {
5442
5445
  type SignaturePageConfirmationGenerateOut = {
5443
5446
  code: string;
5444
5447
  };
5445
- type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
5446
5448
  type ConfirmTermsIn = {
5447
5449
  shipment_id: number;
5448
5450
  status: 'Processed' | 'Canceled';
@@ -9563,5 +9565,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9563
9565
  [header: string]: string | string[];
9564
9566
  };
9565
9567
 
9566
- export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9567
- export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
9568
+ export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, 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 };
9569
+ 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, 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, 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.0",
3
+ "version": "20.9.1-dev3.2",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [