@experteam-mx/ngx-services 20.3.5-dev3.1 → 20.3.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
@@ -694,6 +694,24 @@ declare class ApiBillingSvService {
694
694
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingSvService>;
695
695
  }
696
696
 
697
+ declare enum DepositTypeCode {
698
+ CASH = "CASH",
699
+ CHECK = "CHECK"
700
+ }
701
+ declare enum OpeningStatusCode {
702
+ OPEN = "ABT",
703
+ UPDATING_INVENTORY = "AIV",
704
+ FINISH_INVENTORY_UPDATE = "FIV",
705
+ PRE_CLOSING_REQUEST = "SPR",
706
+ PRE_CLOSING_DENIED = "PRD",
707
+ PRE_CLOSING_APPROVED = "PRA",
708
+ PRE_CLOSING = "PRE",
709
+ CLOSED = "CER"
710
+ }
711
+ declare enum TransferenceTypeCode {
712
+ RETC = "RETC"
713
+ }
714
+
697
715
  interface InstallationCountryReferenceCurrency extends ActiveLessSymfonyModel {
698
716
  installationId?: number;
699
717
  countryReferenceCurrencyId: number;
@@ -733,6 +751,86 @@ interface TransferenceType extends SymfonyModel {
733
751
  code: string;
734
752
  name: string;
735
753
  }
754
+ interface Opening extends SymfonyModel {
755
+ openingId: number;
756
+ installationId: number;
757
+ userId: number;
758
+ roleId: number;
759
+ openingStatus: OpeningStatus;
760
+ closing: Closing | null;
761
+ openingCountryReferenceCurrencies: OpeningCountryReferenceCurrency[] | null;
762
+ openingHistories: OpeningHistory[];
763
+ locationId: number;
764
+ openingTransferences: OpeningTransference[];
765
+ userName: number;
766
+ userUsername: string;
767
+ locationName: string;
768
+ locationCode: string;
769
+ installationNumber: number;
770
+ closingPending?: boolean;
771
+ firstOfTheDay: boolean;
772
+ maxCashExceeded?: boolean;
773
+ }
774
+ interface OpeningStatus extends SymfonyModel {
775
+ code: OpeningStatusCode;
776
+ name: string;
777
+ isActive: boolean;
778
+ }
779
+ interface Closing extends SymfonyModel {
780
+ locationId: number;
781
+ userId: number;
782
+ closingPayments: ClosingPayment[];
783
+ deposits: Deposit[];
784
+ }
785
+ interface ClosingPayment extends SymfonyModel {
786
+ countryReferenceCurrencyId: number;
787
+ amount: number;
788
+ locationId: number;
789
+ paymentId: number;
790
+ }
791
+ interface Deposit extends SymfonyModel {
792
+ locationId: number;
793
+ userId: number;
794
+ countryReferenceCurrencyId: number;
795
+ countryPaymentTypeId: number;
796
+ countryPaymentTypeName: string;
797
+ amount: number;
798
+ number: string;
799
+ currencyCode: string;
800
+ bankAccount: BankAccount;
801
+ }
802
+ interface BankAccount extends SymfonyModel {
803
+ number: string;
804
+ name: string;
805
+ bank: Bank;
806
+ bankAccountType: BankAccountType;
807
+ countryReferenceCurrencyId: number;
808
+ sapNumber: string;
809
+ operationTypeId: number;
810
+ depositTypeCode: DepositTypeCode[];
811
+ isDefault: boolean;
812
+ label: string;
813
+ }
814
+ interface Bank extends SymfonyModel {
815
+ name: string;
816
+ companyCountryId: number;
817
+ }
818
+ interface BankAccountType extends SymfonyModel {
819
+ code: string;
820
+ name: string;
821
+ }
822
+ interface OpeningHistory extends SymfonyModel {
823
+ userId: number;
824
+ openingStatus: OpeningStatus;
825
+ description: string;
826
+ }
827
+ interface OpeningCountryReferenceCurrency extends SymfonyModel {
828
+ countryReferenceCurrencyId: number;
829
+ balanceInitial: number;
830
+ balanceFinal: number;
831
+ currencyCode: string;
832
+ installationCountryReferenceCurrency: InstallationCountryReferenceCurrency | null;
833
+ }
736
834
 
737
835
  type InstallationCountryReferenceCurrenciesOut = {
738
836
  total: number;
@@ -769,6 +867,45 @@ type DepositSlipOut = {
769
867
  base64: string;
770
868
  };
771
869
  };
870
+ type OpeningsOut = {
871
+ openings: Opening[];
872
+ total: number;
873
+ };
874
+ type OpeningIn = {
875
+ roleId: number;
876
+ installationId: number;
877
+ };
878
+ type OpeningOut = {
879
+ opening: Opening;
880
+ };
881
+ type BankAccountsOut = {
882
+ bankAccounts: BankAccount[];
883
+ total: number;
884
+ };
885
+ type OpeningPreClosingRequestIn = {
886
+ approved: boolean;
887
+ };
888
+ type ClosingIn = {
889
+ deposits: {
890
+ countryReferenceCurrencyId: number;
891
+ cash: {
892
+ deposit: boolean;
893
+ bankAccountId: number | null;
894
+ partialDeposit: boolean;
895
+ depositAmount: number | null;
896
+ };
897
+ checkingBankAccountId: number | null;
898
+ }[];
899
+ };
900
+ type ClosingOut = {
901
+ closing: Closing;
902
+ };
903
+ type DepositIn = {
904
+ number: string;
905
+ };
906
+ type DepositOut = {
907
+ deposit: Deposit;
908
+ };
772
909
 
773
910
  declare class ApiCashOperationsService {
774
911
  private environments;
@@ -828,6 +965,76 @@ declare class ApiCashOperationsService {
828
965
  * @returns An Observable that emits the deposit slip data
829
966
  */
830
967
  getDepositSlip(id: number): Observable<DepositSlipOut>;
968
+ /**
969
+ * Creates a batch deposit slip for the provided deposit IDs.
970
+ *
971
+ * @param {number[]} ids - The deposit IDs to include in the batch slip.
972
+ * @returns {Observable<DepositSlipOut>} The generated deposit slip.
973
+ */
974
+ postDepositsBatchSlip(ids: number[]): Observable<DepositSlipOut>;
975
+ /**
976
+ * Creates a new opening.
977
+ *
978
+ * @param {OpeningIn} body - The data to create the new opening.
979
+ * @returns {Observable<OpeningOut>} An observable that emits the newly created opening.
980
+ */
981
+ postOpening(body: OpeningIn): Observable<OpeningOut>;
982
+ /**
983
+ * Retrieves a specific opening by its ID.
984
+ *
985
+ * @param {number} id - The ID of the opening to retrieve.
986
+ * @returns {Observable<OpeningOut>} The requested opening.
987
+ */
988
+ getOpening(id: number): Observable<OpeningOut>;
989
+ /**
990
+ * Retrieves openings using the provided query parameters.
991
+ *
992
+ * @param {QueryParams} params - Query parameters for filtering openings.
993
+ * @returns {Observable<OpeningsOut>} The list of openings.
994
+ */
995
+ getOpenings(params: QueryParams): Observable<OpeningsOut>;
996
+ /**
997
+ * Retrieves bank accounts using the provided query parameters.
998
+ *
999
+ * @param {QueryParams} params - Query parameters for filtering bank accounts.
1000
+ * @returns {Observable<BankAccountsOut>} The list of bank accounts.
1001
+ */
1002
+ getBankAccounts(params: QueryParams): Observable<BankAccountsOut>;
1003
+ /**
1004
+ * Creates a pre-closing request for the current opening.
1005
+ *
1006
+ * @returns {Observable<{}>} The pre-closing request response.
1007
+ */
1008
+ postOpeningPreClosingRequest(): Observable<{}>;
1009
+ /**
1010
+ * Updates a pre-closing request for the specified opening.
1011
+ *
1012
+ * @param {number} id - The ID of the opening to update.
1013
+ * @param {OpeningPreClosingRequestIn} body - The updated pre-closing request data.
1014
+ * @returns {Observable<OpeningOut>} The updated opening.
1015
+ */
1016
+ patchOpeningPreClosingRequest(id: number, body: OpeningPreClosingRequestIn): Observable<OpeningOut>;
1017
+ /**
1018
+ * Creates a pre-closing for the current opening.
1019
+ *
1020
+ * @returns {Observable<{}>} The pre-closing response.
1021
+ */
1022
+ postOpeningPreClosing(): Observable<{}>;
1023
+ /**
1024
+ * Creates a closing record.
1025
+ *
1026
+ * @param {ClosingIn} body - The closing data to submit.
1027
+ * @returns {Observable<ClosingOut>} The created closing record.
1028
+ */
1029
+ postClosing(body: ClosingIn): Observable<ClosingOut>;
1030
+ /**
1031
+ * Updates an existing deposit.
1032
+ *
1033
+ * @param {number} id - The ID of the deposit to update.
1034
+ * @param {DepositIn} body - The updated deposit data.
1035
+ * @returns {Observable<DepositOut>} The updated deposit.
1036
+ */
1037
+ patchDeposit(id: number, body: DepositIn): Observable<DepositOut>;
831
1038
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCashOperationsService, never>;
832
1039
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCashOperationsService>;
833
1040
  }
@@ -5483,7 +5690,7 @@ interface DocumentCategory extends LaravelModel {
5483
5690
  }
5484
5691
  interface DocumentRequests extends ActiveLessLaravelModel {
5485
5692
  document_id: string;
5486
- document_status_code: DocumentStatusCode;
5693
+ document_status_code: string;
5487
5694
  service: string;
5488
5695
  times: string[];
5489
5696
  observation: string;
@@ -5492,12 +5699,6 @@ interface DocumentStatus extends LaravelModel {
5492
5699
  name: string;
5493
5700
  code: number;
5494
5701
  }
5495
- declare enum DocumentStatusCode {
5496
- CANCELLED = 2,
5497
- COMPLETED = 1,
5498
- PROCESSING = 0,
5499
- WITH_ERRORS = 3
5500
- }
5501
5702
  interface Provider extends LaravelModel {
5502
5703
  model_type: string;
5503
5704
  model_id: number;
@@ -5735,6 +5936,7 @@ type DocumentTypeRangeIn = {
5735
5936
  sap_prefix: string;
5736
5937
  sap_suffix?: string;
5737
5938
  suffix?: string;
5939
+ used_numbers?: number;
5738
5940
  valid_since: string;
5739
5941
  valid_until: string;
5740
5942
  };
@@ -5757,32 +5959,6 @@ interface DocumentsTypesRangesCurrentStatusOut {
5757
5959
  }[];
5758
5960
  collections: boolean;
5759
5961
  }
5760
- type OperationDocumentCustomerIn = {
5761
- customer: {
5762
- customer_type_id: number;
5763
- company_name: string;
5764
- full_name: string;
5765
- email: string;
5766
- phone_code: string | null;
5767
- phone_number: string | null;
5768
- address_line1: string | null;
5769
- address_line2: string | null;
5770
- address_line3: string | null;
5771
- identification_number: string;
5772
- identification_type_id: number;
5773
- postal_code: string | null;
5774
- state: string | null;
5775
- county_name: string | null;
5776
- city_name: string | null;
5777
- country_id: number;
5778
- extra_fields: {
5779
- [key: string]: string | number | boolean;
5780
- } | null;
5781
- };
5782
- };
5783
- type OperationDocumentCustomerOut = {
5784
- document: Document;
5785
- };
5786
5962
 
5787
5963
  declare class ApiInvoicesService {
5788
5964
  private environments;
@@ -6097,13 +6273,6 @@ declare class ApiInvoicesService {
6097
6273
  * @returns Observable containing the country document types data
6098
6274
  */
6099
6275
  getCountryDocumentsTypes(params: QueryParams): Observable<CountryDocumentTypesOut>;
6100
- /**
6101
- * Updates the customer information for a specific document customer.
6102
- * @param id - The unique identifier of the document customer
6103
- * @param data - The customer information to update
6104
- * @returns An Observable that emits the updated DocumentTypeRangeOut object
6105
- */
6106
- putOperationDocumentCustomer(id: number, data: OperationDocumentCustomerIn): Observable<OperationDocumentCustomerOut>;
6107
6276
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInvoicesService, never>;
6108
6277
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInvoicesService>;
6109
6278
  }
@@ -6746,67 +6915,37 @@ interface PartialWithdrawal extends ActiveLessLaravelModel {
6746
6915
  receipt_number: string;
6747
6916
  amounts: WithdrawalAmount[];
6748
6917
  }
6749
- interface InvoiceReport extends ActiveLessLaravelModel {
6750
- account_number: string;
6751
- company_country_id: number;
6752
- company_id: number;
6753
- company_name: string;
6918
+ interface Invoice extends ActiveLessLaravelModel {
6754
6919
  complete_document_number: string;
6755
- country_code: string;
6756
- country_id: number;
6757
- country_name: string;
6758
- credit_note_document_id: number | null;
6920
+ tracking_numbers: string[];
6921
+ local_currency_total_amount: number;
6922
+ identification_type_name: string;
6923
+ identification_number: string;
6924
+ customer_full_name: string;
6759
6925
  customer_address: string;
6760
- customer_city_name: string;
6761
- customer_company_name: string;
6762
- customer_county_name: string | null;
6763
6926
  customer_email: string;
6764
- customer_full_name: string;
6765
- customer_phone_code: string;
6766
- customer_phone_number: string;
6767
- customer_postal_code: string;
6768
- customer_state: string;
6769
- document_category_id: number;
6770
- document_category_name_EN: string;
6771
- document_category_name_ES: string;
6927
+ customer_extra_fields: {
6928
+ field: string;
6929
+ value: string;
6930
+ }[];
6931
+ document_type_name: string;
6932
+ document_type_name_ES: string;
6933
+ document_type_name_EN: string;
6772
6934
  document_category_name: string;
6773
- document_local_created_at: string;
6774
- document_local_updated_at: string;
6775
- document_prefix: string;
6776
- document_status_code_number: DocumentStatusCode;
6935
+ document_category_name_ES: string;
6936
+ document_category_name_EN: string;
6937
+ document_status_id: number;
6777
6938
  document_status_code: string;
6778
- document_status_id: DocumentStatusCode;
6779
- document_suffix: string | null;
6780
- document_type_id: number;
6781
- document_type_name_EN: string;
6782
- document_type_name_ES: string;
6783
- document_type_name: string;
6784
- gmt_offset: string;
6785
- identification_number: string;
6786
- identification_type_id: number;
6787
- identification_type_name: string;
6939
+ transaction_type: string;
6788
6940
  installation_id: number;
6789
- installation_number: number;
6790
- is_credit_note: boolean;
6791
- local_currency_total_amount: number;
6792
- location_facility_code: string;
6793
6941
  location_id: number;
6794
- location_location_code: string;
6795
- location_name: string;
6796
- opening_id: number;
6942
+ company_country_id: number;
6943
+ country_id: number;
6944
+ customer_phone_code: string;
6945
+ customer_phone_number: string;
6946
+ customer_city_name: string;
6947
+ customer_county_name: string;
6797
6948
  shipment_id: number;
6798
- tracking_numbers: string[];
6799
- transaction_type: string;
6800
- user_id: number;
6801
- user_username: string;
6802
- billing_extra_fields: {
6803
- field: string;
6804
- value: string;
6805
- }[];
6806
- customer_extra_fields: {
6807
- field: string;
6808
- value: string;
6809
- }[] | null;
6810
6949
  }
6811
6950
  interface Sales extends ActiveLessLaravelModel {
6812
6951
  company_country_id: number;
@@ -7150,7 +7289,7 @@ type PartialWithdrawalsOut = {
7150
7289
  total: number;
7151
7290
  };
7152
7291
  type InvoicesOut = {
7153
- invoices: InvoiceReport[];
7292
+ invoices: Invoice[];
7154
7293
  total: number;
7155
7294
  };
7156
7295
  type SalesBookReportOut = {
@@ -8357,6 +8496,15 @@ declare class ApiSurveysService {
8357
8496
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
8358
8497
  }
8359
8498
 
8499
+ declare enum PaymentTypeCode {
8500
+ CASH = "cash",
8501
+ CHECK = "check",
8502
+ CREDIT_CARD = "credit_card",
8503
+ DEBIT_CARD = "debit_card",
8504
+ ELECTRONIC_TRANSFER = "electronic_transfer",
8505
+ DEPOSIT = "deposit"
8506
+ }
8507
+
8360
8508
  declare class WebSocketsService {
8361
8509
  private pusher;
8362
8510
  private environments;
@@ -8522,5 +8670,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8522
8670
  [header: string]: string | string[];
8523
8671
  };
8524
8672
 
8525
- export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8526
- 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, 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, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, 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, CourierCheckOutPackesOut, 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, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, 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, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, 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, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsData, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, 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, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, 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, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, 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, 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, ZonesOut };
8673
+ export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8674
+ 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, 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, CheckpointEventReason, CheckpointEventReasonsOut, 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, 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, CourierCheckOutPackesOut, 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, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, 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, Invoice, InvoiceCancellationIn, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, 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, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsData, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, 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, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, 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, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, 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, 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, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.3.5-dev3.1",
3
+ "version": "20.3.5",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [