@experteam-mx/ngx-services 20.8.4 → 20.8.6-dev3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -2734,30 +2734,15 @@ interface AccountWithDefault extends Account {
2734
2734
  }
2735
2735
  interface AccountWithLocations extends Account {
2736
2736
  account_company_countries: AccountCompanyCountryLocation[];
2737
- country: CountryAccount;
2737
+ country: CountryCompanies;
2738
2738
  }
2739
2739
  interface PostalCodeFormat extends SymfonyModel {
2740
2740
  format: string;
2741
2741
  significantChars: number;
2742
2742
  regex: string;
2743
2743
  }
2744
- interface CountryAccount {
2745
- id: number;
2746
- code: string;
2747
- name: string;
2748
- timezone: string;
2749
- hasImportService: boolean;
2750
- isActive: boolean;
2751
- isoCode: string;
2752
- codePhone: string;
2753
- phoneDigits: string | null;
2754
- createdAt: string;
2755
- updatedAt: string;
2756
- locationType: LocationType;
2757
- unit: Unit;
2758
- locationTypeFields: LocationTypeFields;
2744
+ interface CountryCompanies extends Country {
2759
2745
  postalCodeFormats: PostalCodeFormat[];
2760
- translations: Translations;
2761
2746
  }
2762
2747
 
2763
2748
  type LocationEmployeesOut = {
@@ -3958,7 +3943,7 @@ declare class ApiCompaniesService {
3958
3943
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
3959
3944
  }
3960
3945
 
3961
- declare enum CustomerType$1 {
3946
+ declare enum CustomerRoleType {
3962
3947
  SHIPPER = "SP",
3963
3948
  CONSIGNEE = "RV",
3964
3949
  IMPORTER = "IP",
@@ -4005,138 +3990,180 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
4005
3990
  stock: number;
4006
3991
  }
4007
3992
 
4008
- interface ShipmentComposition extends SymfonyModel {
4009
- currencyCode: string;
4010
- extraCharges: ExtraChargeComposition[];
4011
- globalProductCode: string;
4012
- globalProductName: string;
4013
- localProductCode: string;
4014
- localProductName: string;
4015
- trackingNumber: string;
4016
- contentDescription: string;
4017
- realWeight: number;
4018
- piecesNumber: number;
4019
- productSubtotal: number;
4020
- productTax: number;
4021
- productTotal: number;
4022
- declaredValue: number;
4023
- insuredValue: number;
3993
+ interface ShipmentComposition extends ActiveLessSymfonyModel {
4024
3994
  accountNumber: string;
4025
- userId: number;
4026
- installationId: number;
3995
+ cancellationDateTime: string | null;
3996
+ cancellationReasonId: number | null;
3997
+ commercialExchangeRate: number;
3998
+ commercialInvoice: CommercialInvoiceComposition | null;
4027
3999
  companyCountryId: number;
4028
- productId: number;
4000
+ contentDescription: string;
4029
4001
  countryReferenceCurrencyId: number;
4030
- commercialExchangeRate: number;
4031
- ibsExchangeRate: number;
4032
- shipmentStatusId: number;
4033
- shipmentAddresses: ShipmentAddresses[];
4034
- shipmentPieces: ShipmentPieces[];
4035
- shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
4036
- shipmentGsop: ShipmentGsop;
4037
- additionalData: AdditionalData;
4038
- transactionId: string;
4039
- requiresPayment: boolean;
4040
- originServiceAreaCode: string;
4041
- originFacilityCode: string;
4042
- destinationServiceAreaCode: string;
4002
+ date: string;
4003
+ declaredCurrency: string | null;
4004
+ declaredValue: number;
4005
+ deliveryDateTime: string;
4043
4006
  destinationFacilityCode: string;
4044
- productTaxes: string[];
4007
+ destinationServiceAreaCode: string;
4008
+ discountModelId: number | null;
4009
+ discountModelType: string | null;
4010
+ discountName: string | null;
4011
+ discountPercentage: number | null;
4012
+ discountReference: string | null;
4013
+ discountValue: number | null;
4014
+ dutiesAndTaxesAccountNumber: string | null;
4015
+ einNumber: string | null;
4016
+ exportReason: ExportReason | null;
4017
+ exportReasonId: number | null;
4018
+ extraFields: Record<string, unknown>;
4019
+ ibsExchangeRate: number;
4020
+ installationId: number;
4021
+ insuredCurrency: string | null;
4022
+ insuredValue: number | null;
4023
+ isCash: boolean;
4024
+ isDocument: boolean;
4025
+ isDutiesAndTaxes: boolean;
4045
4026
  isInspected: boolean;
4046
- extraFields: {
4047
- [key: string]: string | number | boolean;
4048
- };
4049
- shipmentContentTypeId: number;
4050
- commercialInvoice: CommercialInvoice;
4051
- shipmentScopeId: number;
4052
- shipmentGroupId: number;
4053
- product: string[];
4054
- declaredCurrency: string;
4055
- insuredCurrency: string;
4056
- deliveryDateTime: string;
4057
- date: string;
4058
- promotionCode: string;
4059
- priceOverrideApproverId: number;
4060
- priceOverrideReasonId: number;
4061
- customs: Customs;
4062
- exportReasonId: number;
4063
- exportReason: string[];
4064
- shipmentBookPickup: ShipmentBookPickup;
4065
- questionId: number;
4066
4027
  isInsured: boolean;
4067
- itnNumber: string;
4068
- einNumber: string;
4069
- otherAccountNumber: string;
4070
- dutiesAndTaxesAccountNumber: string;
4071
- discountId: string;
4072
- discountReference: string;
4073
- totalPublishedValue: number;
4074
- totalPartnerAccountValue: number;
4075
- isMarketingConsent: boolean;
4076
- isTermCondition: boolean;
4077
- isDocument: boolean;
4078
- isCash: boolean;
4028
+ isMarketingConsent: boolean | null;
4029
+ isOccurs: boolean;
4030
+ isOtherOrigin: boolean;
4079
4031
  isPriceOverride: boolean;
4080
4032
  isProforma: boolean;
4081
4033
  isPromotionCode: boolean;
4082
4034
  isRetailRate: boolean;
4083
- isOtherOrigin: boolean;
4084
- isOccurs: boolean;
4085
- isDutiesAndTaxes: boolean;
4035
+ isTermCondition: boolean;
4036
+ itnNumber: string | null;
4037
+ manifestDateTime: string | null;
4038
+ originFacilityCode: string;
4039
+ originServiceAreaCode: string;
4040
+ otherAccountNumber: string | null;
4041
+ piecesNumber: number;
4042
+ priceOverrideApproverId: number | null;
4043
+ priceOverrideReasonId: number | null;
4044
+ product: ShipmentProductComposition;
4045
+ productId: number;
4046
+ productSubtotal: number;
4047
+ productTax: number;
4048
+ productTaxes: TaxComposition[];
4049
+ productTotal: number;
4050
+ promotionCode: string | null;
4051
+ realWeight: number;
4052
+ requiresPayment: boolean;
4053
+ shipmentAddresses: ShipmentAddressComposition[];
4054
+ shipmentBookPickup: ShipmentBookPickup | null;
4055
+ shipmentContentTypeId: number;
4056
+ shipmentExtraCharges: ExtraChargeComposition[];
4057
+ shipmentGroupId: number;
4058
+ shipmentGsop: ShipmentGsopComposition | null;
4059
+ shipmentPieces: ShipmentPieceComposition[];
4060
+ shipmentScopeId: number;
4061
+ shipmentStatusId: number;
4062
+ shipmentTaxes: TaxComposition[];
4063
+ shipmentWithholding: unknown | null;
4064
+ subtotal: number;
4065
+ tax: number;
4066
+ total: number;
4067
+ totalPartnerAccountValue: number | null;
4068
+ totalPublishedValue: number | null;
4069
+ trackingNumber: string;
4070
+ transactionId: string;
4071
+ userId: number;
4072
+ customs: {
4073
+ ignoreValidation: boolean;
4074
+ criteria: {
4075
+ origin: string;
4076
+ destination: string;
4077
+ dutiable: boolean;
4078
+ declaredValue: number | null;
4079
+ };
4080
+ rules: {
4081
+ id: number;
4082
+ level: string;
4083
+ attributes: {
4084
+ id: number;
4085
+ field: string;
4086
+ dhlCode: string;
4087
+ values: {
4088
+ shipment: string;
4089
+ customer: CustomerRoleType;
4090
+ invoiceHeader: string;
4091
+ invoiceItem: string[];
4092
+ };
4093
+ }[];
4094
+ }[];
4095
+ };
4096
+ additionalData: {
4097
+ countryCode: string;
4098
+ productGlobalCode: string;
4099
+ productLocalCode: string;
4100
+ currencyCode: string;
4101
+ userUsername: string;
4102
+ locationFacilityCode: string;
4103
+ shipmentStatusCode: string;
4104
+ awbTypeCode?: string;
4105
+ shipmentTypeCode?: string;
4106
+ };
4086
4107
  }
4087
- interface ExtraChargeComposition {
4088
- globalServiceCode: string;
4089
- localServiceCode: string;
4090
- globalServiceName: string;
4091
- localServiceName: string;
4108
+ interface ExtraChargeComposition extends ActiveLessSymfonyModel {
4092
4109
  subtotal: number;
4093
4110
  tax: number;
4094
4111
  total: number;
4095
- taxes: Tax[];
4112
+ extraChargeId: number;
4113
+ taxes: TaxComposition[];
4114
+ extraChargeGroup: string;
4115
+ extraChargeCode: string;
4116
+ extraChargeName: string;
4117
+ extraChargeIsDiscount: boolean;
4096
4118
  }
4097
- interface Tax {
4119
+ interface TaxComposition extends ActiveLessSymfonyModel {
4098
4120
  code: string;
4099
4121
  percent: number;
4100
4122
  baseAmount: number;
4101
4123
  amount: number;
4102
4124
  }
4103
- interface ShipmentAddresses extends SymfonyModel {
4125
+ interface ShipmentAddressComposition extends ActiveLessSymfonyModel {
4104
4126
  index: number;
4105
- identificationTypeId: number;
4106
- identificationNumber: string;
4127
+ identificationTypeId: number | null;
4128
+ identificationNumber: string | null;
4107
4129
  companyName: string;
4108
4130
  fullName: string;
4109
4131
  email: string;
4110
4132
  phoneCode: string;
4111
4133
  phoneNumber: string;
4112
- postalCode: string;
4113
- stateCode: string;
4134
+ postalCode: string | null;
4135
+ stateCode: string | null;
4136
+ stateId: number | null;
4114
4137
  countyName: string;
4115
4138
  cityName: string;
4116
4139
  addressLine1: string;
4117
- addressLine2: string;
4118
- addressLine3: string;
4140
+ addressLine2: string | null;
4141
+ addressLine3: string | null;
4119
4142
  countryId: number;
4120
- identificationType: IdentificationTypeComposition;
4121
- roleType: CustomerType$1;
4122
- }
4123
- interface IdentificationTypeComposition extends SymfonyModel {
4124
- name: string;
4125
- companyCountryId: number;
4126
- }
4127
- interface ShipmentPieces extends ActiveLessSymfonyModel {
4143
+ roleType: CustomerRoleType;
4144
+ businessPartyTraderTypeId: number | null;
4145
+ registrationNumbers: unknown[];
4146
+ importerTaxIdentification: string | null;
4147
+ emailReceipt: boolean;
4148
+ residentialDelivery: boolean;
4149
+ country: CountryCompanies;
4150
+ state: State | null;
4151
+ businessPartyTraderType?: BusinessPartyTraderType | null;
4152
+ identificationType?: IdentificationType | null;
4153
+ }
4154
+ interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
4128
4155
  number: number;
4129
4156
  height: number;
4130
4157
  length: number;
4131
4158
  width: number;
4132
4159
  realWeight: number;
4133
4160
  volumetricWeight: number;
4134
- dataIdentifier: string;
4161
+ dataIdentifier: string | null;
4135
4162
  trackingNumber: string;
4136
- licensePlateBarCode: string;
4137
- shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
4163
+ licensePlateBarCode: string | null;
4164
+ shipmentPieceSupplies: ShipmentPieceSupplyComposition[];
4138
4165
  }
4139
- interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4166
+ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
4140
4167
  supplyId: number;
4141
4168
  quantity: number;
4142
4169
  subtotal: number;
@@ -4147,18 +4174,25 @@ interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
4147
4174
  description: string;
4148
4175
  supply: Supply;
4149
4176
  }
4150
- interface CommercialInvoice extends ActiveLessSymfonyModel {
4177
+ interface ShipmentProductComposition extends ActiveLessSymfonyModel {
4178
+ globalCode: string;
4179
+ localCode: string;
4180
+ globalName: string;
4181
+ localName: string;
4182
+ isDocument: boolean;
4183
+ }
4184
+ interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
4151
4185
  documentTypeId: number;
4152
4186
  tradingTransactionTypeId: number;
4153
4187
  documentFunctionId: number;
4154
4188
  number: string;
4155
4189
  remarks: string;
4156
- items: Item[];
4190
+ items: ItemComposition[];
4157
4191
  documentType: DocumentTypeComposition;
4158
4192
  tradingTransactionType: TradingTransactionType;
4159
- documentFunction: DocumentFunction;
4193
+ documentFunction: DocumentFunctionComposition;
4160
4194
  }
4161
- interface Item extends ActiveLessSymfonyModel {
4195
+ interface ItemComposition extends ActiveLessSymfonyModel {
4162
4196
  description: string;
4163
4197
  quantity: number;
4164
4198
  quantityUnitId: number;
@@ -4167,32 +4201,31 @@ interface Item extends ActiveLessSymfonyModel {
4167
4201
  realWeight: number;
4168
4202
  commodityId: number;
4169
4203
  quantityUnit: QuantityUnit;
4170
- manufactureCountry: ManufactureCountry;
4204
+ manufactureCountry: {
4205
+ id: string;
4206
+ code: string;
4207
+ name: string;
4208
+ locationType: string[];
4209
+ unit: string[];
4210
+ timezone: string;
4211
+ hasImportService: boolean;
4212
+ isActive: boolean;
4213
+ regions: string[];
4214
+ zones: string[];
4215
+ isoCode: string;
4216
+ };
4171
4217
  commodity: Commodity;
4172
4218
  }
4173
- interface ManufactureCountry {
4174
- id: string;
4175
- code: string;
4176
- name: string;
4177
- locationType: string[];
4178
- unit: string[];
4179
- timezone: string;
4180
- hasImportService: boolean;
4181
- isActive: boolean;
4182
- regions: string[];
4183
- zones: string[];
4184
- isoCode: string;
4185
- }
4186
4219
  interface DocumentTypeComposition extends SymfonyModel {
4187
4220
  code: string;
4188
4221
  name: string;
4189
4222
  description: string;
4190
4223
  }
4191
- interface DocumentFunction extends SymfonyModel {
4224
+ interface DocumentFunctionComposition extends SymfonyModel {
4192
4225
  code: string;
4193
4226
  name: string;
4194
4227
  }
4195
- interface ShipmentGsop extends ActiveLessSymfonyModel {
4228
+ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
4196
4229
  productContentCode: string;
4197
4230
  originServiceAreaCode: string;
4198
4231
  destinationServiceAreaCode: string;
@@ -4200,54 +4233,6 @@ interface ShipmentGsop extends ActiveLessSymfonyModel {
4200
4233
  awbBarCode: string;
4201
4234
  dhlRoutingBarCode: string;
4202
4235
  }
4203
- interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
4204
- subtotal: number;
4205
- tax: number;
4206
- total: number;
4207
- extraChargeId: number;
4208
- extraChargeCode: string;
4209
- }
4210
- interface AdditionalData {
4211
- awbTypeCode: string;
4212
- countryCode: string;
4213
- shipmentTypeCode: string;
4214
- productGlobalCode: string;
4215
- productLocalCode: string;
4216
- currencyCode: string;
4217
- userUsername: string;
4218
- locationFacilityCode: string;
4219
- }
4220
- interface Customs {
4221
- criteria: Criteria;
4222
- rules: Rules[];
4223
- }
4224
- interface Criteria {
4225
- origin: string;
4226
- destination: string;
4227
- dutiable: boolean;
4228
- declaredValue: number;
4229
- }
4230
- interface Rules {
4231
- id: number;
4232
- level: string;
4233
- attributes: Attributes[];
4234
- }
4235
- interface Attributes {
4236
- id: number;
4237
- field: string;
4238
- dhlCode: string;
4239
- values: Values;
4240
- }
4241
- interface Values {
4242
- shipment: string;
4243
- customer: CustomerComposition;
4244
- invoiceHeader: string;
4245
- invoiceItem: string[];
4246
- }
4247
- interface CustomerComposition {
4248
- SP: string;
4249
- RV: string;
4250
- }
4251
4236
  interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4252
4237
  pickupDate: string;
4253
4238
  readyByTime: string;
@@ -4261,6 +4246,10 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
4261
4246
  type ShipmentOut = {
4262
4247
  shipment: ShipmentComposition;
4263
4248
  };
4249
+ type ShipmentsOut = {
4250
+ shipments: ShipmentComposition[];
4251
+ total: number;
4252
+ };
4264
4253
  type CompositionCountryReferencesOut = {
4265
4254
  country_references: CountryReference[];
4266
4255
  total: number;
@@ -4282,6 +4271,13 @@ declare class ApiCompositionService {
4282
4271
  * @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
4283
4272
  */
4284
4273
  getShipment(id: number): Observable<ShipmentOut>;
4274
+ /**
4275
+ * Retrieves shipments based on the provided query parameters.
4276
+ *
4277
+ * @param {QueryParams} params - The query parameters for the API request.
4278
+ * @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
4279
+ */
4280
+ getShipments(params: QueryParams): Observable<ShipmentsOut>;
4285
4281
  /**
4286
4282
  * Fetches the country references data based on the provided query parameters.
4287
4283
  *
@@ -5346,7 +5342,8 @@ declare enum InventoryActions {
5346
5342
  INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
5347
5343
  INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
5348
5344
  INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
5349
- INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications"
5345
+ INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications",
5346
+ INVENTORY_ON_HOLD_MISSED_CONNECTION = "inventoryOnHoldMissed"
5350
5347
  }
5351
5348
  declare enum InventoryErrorCodes {
5352
5349
  CODE_SHP_FORMAT = "INV-E001",
@@ -5649,6 +5646,16 @@ type MissingPackagesOut = {
5649
5646
  };
5650
5647
  };
5651
5648
  };
5649
+ type PackageOnHoldIn = {
5650
+ packagesIds: number[];
5651
+ transactionId: string;
5652
+ };
5653
+ type PackageOnHoldOut = {
5654
+ PackagesOnHold: {
5655
+ number: number;
5656
+ packages: Package9[];
5657
+ };
5658
+ };
5652
5659
 
5653
5660
  declare class ApiInventoriesService {
5654
5661
  private environments;
@@ -5898,6 +5905,13 @@ declare class ApiInventoriesService {
5898
5905
  * @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
5899
5906
  */
5900
5907
  putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
5908
+ /**
5909
+ * Edit package on hold resource..
5910
+ *
5911
+ * @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
5912
+ * @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
5913
+ */
5914
+ putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
5901
5915
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5902
5916
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5903
5917
  }
@@ -9325,5 +9339,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9325
9339
  [header: string]: string | string[];
9326
9340
  };
9327
9341
 
9328
- 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 };
9329
- 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, 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, 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, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, 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, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, 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, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, 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, 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, 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, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, 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, 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 };
9342
+ 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 };
9343
+ 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, 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, 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, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, 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, 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, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, 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, 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, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, 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, 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.8.4",
3
+ "version": "20.8.6-dev3.0",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [