@experteam-mx/ngx-services 20.8.3 → 20.8.5

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
@@ -34,6 +34,7 @@ type Environment = {
34
34
  apiCompositionUrl?: string;
35
35
  apiCustomsUrl?: string;
36
36
  apiDiscountsUrl?: string;
37
+ apiDropoffUrl?: string;
37
38
  apiEToolsAutoBilling?: string;
38
39
  apiEventsUrl?: string;
39
40
  apiExternalOperationsUrl?: string;
@@ -4937,6 +4938,41 @@ declare class ApiDiscountsService {
4937
4938
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
4938
4939
  }
4939
4940
 
4941
+ type ShipmentsBookingIn = {
4942
+ transactionId: string;
4943
+ shipmentTrackingNumbers: string[];
4944
+ };
4945
+ type ShipmentsEReceiptIn = {
4946
+ transactionId: string;
4947
+ shipmentTrackingNumbers: string[];
4948
+ addresses: string[];
4949
+ };
4950
+
4951
+ declare class ApiDropoffsService {
4952
+ private environments;
4953
+ private http;
4954
+ /**
4955
+ * Retrieves the URL for the Inventories API from the environment configurations.
4956
+ *
4957
+ * @return {string} The URL of the Inventories API.
4958
+ */
4959
+ get url(): string;
4960
+ /**
4961
+ * Send a Courier Request for Shipment.
4962
+ *
4963
+ * @param {ShipmentsBookingIn} body - The courier for shipment data.
4964
+ */
4965
+ postShipmentsBooking(body: ShipmentsBookingIn): Observable<{}>;
4966
+ /**
4967
+ * Send a EReceipt for Shipment.
4968
+ *
4969
+ * @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
4970
+ */
4971
+ postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
4972
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
4973
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
4974
+ }
4975
+
4940
4976
  interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
4941
4977
  addressLine1: string;
4942
4978
  addressLine2: string;
@@ -5304,6 +5340,32 @@ declare enum Group {
5304
5340
  expiration = "expiration",
5305
5341
  verification = "verification"
5306
5342
  }
5343
+ declare enum InventoryActions {
5344
+ INVENTORY_CHECK_OUT = "inventoryCheckOut",
5345
+ INVENTORY_COURIER_PICK_UP = "inventoryCourierPickUp",
5346
+ INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
5347
+ INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
5348
+ INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
5349
+ INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications",
5350
+ INVENTORY_ON_HOLD_MISSED_CONNECTION = "inventoryOnHoldMissed"
5351
+ }
5352
+ declare enum InventoryErrorCodes {
5353
+ CODE_SHP_FORMAT = "INV-E001",
5354
+ CODE_PCKG_FORMAT = "INV-E002",
5355
+ CODE_PACKAGE_NOT_FOUND = "INV-E101",
5356
+ CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
5357
+ CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
5358
+ CODE_PACKAGE_NOT_MISSING = "INV-E107",
5359
+ CODE_ACTION_NOT_VALID = "INV-E108",
5360
+ CODE_MULTIPLE_PACKAGES = "INV-E109",
5361
+ CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
5362
+ CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
5363
+ }
5364
+ declare enum RouteModelType {
5365
+ ROUTE_ID = "RouteId",
5366
+ COURIER = "Courier",
5367
+ COURIER_ROUTE = "CourierRoute"
5368
+ }
5307
5369
 
5308
5370
  interface CheckpointInventory extends ActiveLessSymfonyModel {
5309
5371
  code: string;
@@ -5409,6 +5471,22 @@ interface CourierRoute extends SymfonyModel {
5409
5471
  name: string;
5410
5472
  locationId: number;
5411
5473
  }
5474
+ interface Package5 extends ApiModel {
5475
+ shipmentTrackingNumber: string;
5476
+ trackingNumber: string;
5477
+ position: string | null;
5478
+ messageFail: string;
5479
+ lastStatus: Status5;
5480
+ }
5481
+ interface Status5 {
5482
+ code: string;
5483
+ name: string;
5484
+ description: string | null;
5485
+ }
5486
+ interface Package9 extends ApiModel {
5487
+ shipmentTrackingNumber: string;
5488
+ trackingNumber: string;
5489
+ }
5412
5490
 
5413
5491
  type CheckpointsInventoryOut = {
5414
5492
  total: number;
@@ -5477,6 +5555,7 @@ type ReEntryOfMissingPackagesOut = {
5477
5555
  reEntryOfMissingPackages: ReEntryOfMissingPackages;
5478
5556
  };
5479
5557
  type ReEntryOfMissingPackagesIn = {
5558
+ transactionId: string;
5480
5559
  packagesIds: number[];
5481
5560
  };
5482
5561
  type CourierCheckOutPackesOut = {
@@ -5519,6 +5598,68 @@ type CourierRouteIn = {
5519
5598
  locationId: number;
5520
5599
  isActive: boolean;
5521
5600
  };
5601
+ type PackageValidationActionIn = {
5602
+ shipmentTrackingNumber?: string;
5603
+ trackingNumber?: string;
5604
+ action: InventoryActions;
5605
+ transactionId?: string;
5606
+ };
5607
+ type PackageValidationActionOut = {
5608
+ packageValidation: {
5609
+ transactionId: string;
5610
+ package: {
5611
+ id: number;
5612
+ shipmentTrackingNumber: string;
5613
+ trackingNumber: string;
5614
+ };
5615
+ };
5616
+ };
5617
+ type ReturnFirstMileIn = {
5618
+ packagesIds: number[];
5619
+ transactionId: string;
5620
+ routeModelId: string | number;
5621
+ routeModelType: RouteModelType;
5622
+ };
5623
+ type ReturnFirstMileOut = {
5624
+ returnFirstMile: {
5625
+ status: boolean;
5626
+ messages: string[];
5627
+ number: string;
5628
+ };
5629
+ };
5630
+ type PackageReassignPositionIn = {
5631
+ packagesIds: number[];
5632
+ transactionId: string;
5633
+ position: string;
5634
+ };
5635
+ type PackageReassignPositionOut = {
5636
+ packageReassignPositions: {
5637
+ number: number;
5638
+ packages: Package5[];
5639
+ };
5640
+ };
5641
+ type MissingPackagesIn = {
5642
+ packagesIds: number[];
5643
+ transactionId: string;
5644
+ };
5645
+ type MissingPackagesOut = {
5646
+ missingPackages: {
5647
+ number: string;
5648
+ operationPackages: {
5649
+ packages: Package9[];
5650
+ };
5651
+ };
5652
+ };
5653
+ type PackageOnHoldIn = {
5654
+ packagesIds: number[];
5655
+ transactionId: string;
5656
+ };
5657
+ type PackageOnHoldOut = {
5658
+ PackagesOnHold: {
5659
+ number: number;
5660
+ packages: Package9[];
5661
+ };
5662
+ };
5522
5663
 
5523
5664
  declare class ApiInventoriesService {
5524
5665
  private environments;
@@ -5740,6 +5881,41 @@ declare class ApiInventoriesService {
5740
5881
  * @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
5741
5882
  */
5742
5883
  deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
5884
+ /**
5885
+ * Get a package/shipment enabled to perform an action.
5886
+ *
5887
+ * @param {PackageValidationActionIn} body - package/shipment number to validate.
5888
+ * @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
5889
+ */
5890
+ postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
5891
+ /**
5892
+ * Edit return first mile resource.
5893
+ *
5894
+ * @param {ReturnFirstMileIn} body - The first mile data to be updated.
5895
+ * @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
5896
+ */
5897
+ putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
5898
+ /**
5899
+ * Replaces a Package Reassign Position resource.
5900
+ *
5901
+ * @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
5902
+ * @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
5903
+ */
5904
+ putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
5905
+ /**
5906
+ * Edit missing package resource.
5907
+ *
5908
+ * @param {MissingPackagesIn} body - The missing package resource data to be updated.
5909
+ * @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
5910
+ */
5911
+ putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
5912
+ /**
5913
+ * Edit package on hold resource..
5914
+ *
5915
+ * @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
5916
+ * @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
5917
+ */
5918
+ putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
5743
5919
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5744
5920
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5745
5921
  }
@@ -9167,5 +9343,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9167
9343
  [header: string]: string | string[];
9168
9344
  };
9169
9345
 
9170
- export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9171
- 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, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, 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, 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, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, 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 };
9346
+ 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 };
9347
+ 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, 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, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.8.3",
3
+ "version": "20.8.5",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [