@experteam-mx/ngx-services 20.1.12 → 20.1.14

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
@@ -549,6 +549,12 @@ type OpeningTransferenceOut = {
549
549
  type ReceiptFileOut = {
550
550
  receipt: ReceiptFile;
551
551
  };
552
+ type DepositSlipOut = {
553
+ depositSlip: {
554
+ format: string;
555
+ base64: string;
556
+ };
557
+ };
552
558
 
553
559
  declare class ApiCashOperationsService {
554
560
  private environments;
@@ -602,6 +608,12 @@ declare class ApiCashOperationsService {
602
608
  * @returns {Observable<ReceiptFileOut>} An observable that emits the receipt file data.
603
609
  */
604
610
  getOpeningTransferenceReceipt(id: number): Observable<ReceiptFileOut>;
611
+ /**
612
+ * Retrieves a deposit slip by its ID.
613
+ * @param id - The unique identifier of the deposit slip to retrieve
614
+ * @returns An Observable that emits the deposit slip data
615
+ */
616
+ getDepositSlip(id: number): Observable<DepositSlipOut>;
605
617
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCashOperationsService, never>;
606
618
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCashOperationsService>;
607
619
  }
@@ -1505,6 +1517,145 @@ declare class ApiCatalogsService {
1505
1517
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
1506
1518
  }
1507
1519
 
1520
+ type AuthLoginIn = {
1521
+ username: string;
1522
+ password: string;
1523
+ role?: number;
1524
+ system_name?: string;
1525
+ };
1526
+ type AuthLoginOut = {
1527
+ access_token: string;
1528
+ token_type: string;
1529
+ expires_in: number;
1530
+ };
1531
+ type AuthUserLoginIn = {
1532
+ username: string;
1533
+ };
1534
+ type SessionIn = {
1535
+ modelType: string;
1536
+ modelId: number;
1537
+ token?: string;
1538
+ };
1539
+ type SessionOut = {
1540
+ session: Session;
1541
+ };
1542
+ type PutUsersIn = {
1543
+ user: User;
1544
+ };
1545
+ type PutUsersOut = {
1546
+ user: User;
1547
+ };
1548
+ type GetUserOut = {
1549
+ user: User;
1550
+ };
1551
+ type GetUsersOut = {
1552
+ users: User[];
1553
+ total: number;
1554
+ };
1555
+ type AuthMeOut = {
1556
+ user: UserMe;
1557
+ };
1558
+ type ChangeLanguageIn = {
1559
+ languageId: number;
1560
+ };
1561
+ type RolesOut = {
1562
+ roles: Role[];
1563
+ total: number;
1564
+ };
1565
+ type Pivot = {
1566
+ role_id: number;
1567
+ permission_id: number;
1568
+ } | {
1569
+ module_id: string;
1570
+ permission_id: string;
1571
+ };
1572
+ type RoleOut = {
1573
+ role: Role;
1574
+ };
1575
+ type RoleIn = {
1576
+ name: string;
1577
+ role_type_id: number;
1578
+ company_country_id: number;
1579
+ regional_country_id?: number[] | null;
1580
+ is_active: boolean;
1581
+ permissions?: string[];
1582
+ };
1583
+ type RoleTypesOut = {
1584
+ role_types: RoleType[];
1585
+ total: number;
1586
+ };
1587
+ type ModulesOut = {
1588
+ modules: Module[];
1589
+ total: number;
1590
+ };
1591
+
1592
+ interface Session extends LaravelModel {
1593
+ model_type: string;
1594
+ model_id: number;
1595
+ status: string;
1596
+ last_activity: string;
1597
+ user_agent: string;
1598
+ gmt_offset: string;
1599
+ opening_id: number;
1600
+ user_id: number;
1601
+ installation_id: number;
1602
+ locale: string | null;
1603
+ decimal_point: number;
1604
+ country_id: number;
1605
+ company_id: number;
1606
+ company_country_id: number;
1607
+ location_id: number;
1608
+ country_reference_currency_id: number;
1609
+ location_employee_id: number;
1610
+ }
1611
+ interface Role extends LaravelModel {
1612
+ name: string;
1613
+ guard_name: string;
1614
+ company_country_id: number;
1615
+ role_type_id: number;
1616
+ regional_country_id: number | null;
1617
+ role_type: RoleType;
1618
+ permissions?: Permission[];
1619
+ }
1620
+ interface RoleType extends LaravelModel {
1621
+ name: string;
1622
+ level: number;
1623
+ }
1624
+ interface Permission extends LaravelModel {
1625
+ name: string;
1626
+ guard_name: string;
1627
+ description: string;
1628
+ is_default: boolean;
1629
+ pivot: Pivot;
1630
+ }
1631
+ interface User extends LaravelModel {
1632
+ name: string;
1633
+ username: string;
1634
+ model_type: string;
1635
+ model_id: number;
1636
+ auth_type: string;
1637
+ language_id: number;
1638
+ email: string;
1639
+ roles: Role[];
1640
+ }
1641
+ interface UserMe extends Omit<User, 'roles'> {
1642
+ permissions: string[];
1643
+ session: Session | null;
1644
+ role: Role;
1645
+ }
1646
+ interface Module extends LaravelModel {
1647
+ name: string;
1648
+ code: string;
1649
+ module_type_id: number;
1650
+ module_type: ModuleType;
1651
+ permissions: Permission[];
1652
+ require_default_permission?: boolean;
1653
+ }
1654
+ interface ModuleType extends LaravelModel {
1655
+ name: string;
1656
+ description: string;
1657
+ }
1658
+
1508
1659
  interface Account extends LaravelModel {
1509
1660
  number: string;
1510
1661
  description: string | null;
@@ -1621,18 +1772,20 @@ interface ExtraChargeEntity extends LaravelModel {
1621
1772
  name: string;
1622
1773
  }
1623
1774
  interface Employee extends LaravelModel {
1624
- name: string;
1625
- last_name: string;
1626
- number: string;
1627
- email: string;
1628
- username: string;
1775
+ auth_type: string;
1629
1776
  company_id: number;
1777
+ company: Company;
1630
1778
  country_id: number;
1779
+ email: string;
1631
1780
  external: boolean;
1781
+ last_name: string;
1782
+ locations: Location[];
1783
+ name: string;
1784
+ number: string;
1632
1785
  phone_code: string;
1633
1786
  phone_number: string;
1634
- locations: Location[];
1635
- company: Company;
1787
+ roles: Role[];
1788
+ username: string;
1636
1789
  }
1637
1790
  interface Exchange extends LaravelModel {
1638
1791
  company_country_currency_id: number;
@@ -4441,6 +4594,26 @@ interface IncidentReasonComplement extends SymfonyModel {
4441
4594
  name: string;
4442
4595
  readOnly: boolean;
4443
4596
  }
4597
+ interface PackageMissing {
4598
+ id: string;
4599
+ shipmentTrackingNumber: string;
4600
+ trackingNumber: string;
4601
+ checkInOperation: {
4602
+ operationType: {
4603
+ name: string;
4604
+ shortName: string | null;
4605
+ };
4606
+ };
4607
+ }
4608
+ interface PackageReEntryMissing {
4609
+ package: PackageMissing;
4610
+ }
4611
+ interface PackageReEntryMissings {
4612
+ number: string;
4613
+ operationPackages: {
4614
+ packages: PackageMissing[];
4615
+ };
4616
+ }
4444
4617
 
4445
4618
  type CheckpointsOut = {
4446
4619
  total: number;
@@ -4502,6 +4675,15 @@ type PackagesInStockIn = {
4502
4675
  type PackagesInStockOut = {
4503
4676
  inStock: boolean;
4504
4677
  };
4678
+ type PackageReEntryMissingOut = {
4679
+ packageReEntryMissing: PackageReEntryMissing;
4680
+ };
4681
+ type PackageReEntryMissingsOut = {
4682
+ packageReEntryMissings: PackageReEntryMissings;
4683
+ };
4684
+ type PackageReEntryMissingIn = {
4685
+ packagesIds: number[];
4686
+ };
4505
4687
 
4506
4688
  declare class ApiInventoriesService {
4507
4689
  private environments;
@@ -4638,6 +4820,20 @@ declare class ApiInventoriesService {
4638
4820
  * extracts the data property from the API success response.
4639
4821
  */
4640
4822
  postPackagesInStock(body: PackagesInStockIn): Observable<PackagesInStockOut>;
4823
+ /**
4824
+ * Fetches the missing package details based on query parameters.
4825
+ *
4826
+ * @param {QueryParams} params - The query parameters for filtering the missing package details.
4827
+ * @return {Observable<PackageReEntryMissingOut>} An observable that emits the detail missing package data.
4828
+ */
4829
+ getPackageReEntryMissing(params: QueryParams): Observable<PackageReEntryMissingOut>;
4830
+ /**
4831
+ * Re-entry missing packages
4832
+ *
4833
+ * @param {IncidentIn} body - The missing packages data to be re-entry.
4834
+ * @returns {Observable<PackageReEntryMissingsOut>} An observable detail of the updated incident reason complement.
4835
+ */
4836
+ putPackageReEntryMissing(body: PackageReEntryMissingIn): Observable<PackageReEntryMissingsOut>;
4641
4837
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
4642
4838
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
4643
4839
  }
@@ -6184,145 +6380,6 @@ interface Sales extends ActiveLessLaravelModel {
6184
6380
  user_id: number;
6185
6381
  }
6186
6382
 
6187
- type AuthLoginIn = {
6188
- username: string;
6189
- password: string;
6190
- role?: number;
6191
- system_name?: string;
6192
- };
6193
- type AuthLoginOut = {
6194
- access_token: string;
6195
- token_type: string;
6196
- expires_in: number;
6197
- };
6198
- type AuthUserLoginIn = {
6199
- username: string;
6200
- };
6201
- type SessionIn = {
6202
- modelType: string;
6203
- modelId: number;
6204
- token?: string;
6205
- };
6206
- type SessionOut = {
6207
- session: Session;
6208
- };
6209
- type PutUsersIn = {
6210
- user: User;
6211
- };
6212
- type PutUsersOut = {
6213
- user: User;
6214
- };
6215
- type GetUserOut = {
6216
- user: User;
6217
- };
6218
- type GetUsersOut = {
6219
- users: User[];
6220
- total: number;
6221
- };
6222
- type AuthMeOut = {
6223
- user: UserMe;
6224
- };
6225
- type ChangeLanguageIn = {
6226
- languageId: number;
6227
- };
6228
- type RolesOut = {
6229
- roles: Role[];
6230
- total: number;
6231
- };
6232
- type Pivot = {
6233
- role_id: number;
6234
- permission_id: number;
6235
- } | {
6236
- module_id: string;
6237
- permission_id: string;
6238
- };
6239
- type RoleOut = {
6240
- role: Role;
6241
- };
6242
- type RoleIn = {
6243
- name: string;
6244
- role_type_id: number;
6245
- company_country_id: number;
6246
- regional_country_id?: number[] | null;
6247
- is_active: boolean;
6248
- permissions?: string[];
6249
- };
6250
- type RoleTypesOut = {
6251
- role_types: RoleType[];
6252
- total: number;
6253
- };
6254
- type ModulesOut = {
6255
- modules: Module[];
6256
- total: number;
6257
- };
6258
-
6259
- interface Session extends LaravelModel {
6260
- model_type: string;
6261
- model_id: number;
6262
- status: string;
6263
- last_activity: string;
6264
- user_agent: string;
6265
- gmt_offset: string;
6266
- opening_id: number;
6267
- user_id: number;
6268
- installation_id: number;
6269
- locale: string | null;
6270
- decimal_point: number;
6271
- country_id: number;
6272
- company_id: number;
6273
- company_country_id: number;
6274
- location_id: number;
6275
- country_reference_currency_id: number;
6276
- location_employee_id: number;
6277
- }
6278
- interface Role extends LaravelModel {
6279
- name: string;
6280
- guard_name: string;
6281
- company_country_id: number;
6282
- role_type_id: number;
6283
- regional_country_id: number | null;
6284
- role_type: RoleType;
6285
- permissions?: Permission[];
6286
- }
6287
- interface RoleType extends LaravelModel {
6288
- name: string;
6289
- level: number;
6290
- }
6291
- interface Permission extends LaravelModel {
6292
- name: string;
6293
- guard_name: string;
6294
- description: string;
6295
- is_default: boolean;
6296
- pivot: Pivot;
6297
- }
6298
- interface User extends LaravelModel {
6299
- name: string;
6300
- username: string;
6301
- model_type: string;
6302
- model_id: number;
6303
- auth_type: string;
6304
- language_id: number;
6305
- email: string;
6306
- roles: Role[];
6307
- }
6308
- interface UserMe extends Omit<User, 'roles'> {
6309
- permissions: string[];
6310
- session: Session | null;
6311
- role: Role;
6312
- }
6313
- interface Module extends LaravelModel {
6314
- name: string;
6315
- code: string;
6316
- module_type_id: number;
6317
- module_type: ModuleType;
6318
- permissions: Permission[];
6319
- require_default_permission?: boolean;
6320
- }
6321
- interface ModuleType extends LaravelModel {
6322
- name: string;
6323
- description: string;
6324
- }
6325
-
6326
6383
  type CollectionPaymentsOut = {
6327
6384
  collection_payments: CollectionPayment[];
6328
6385
  total: number;
@@ -7610,4 +7667,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
7610
7667
  };
7611
7668
 
7612
7669
  export { AlphaNumeric, 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, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
7613
- export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, 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, 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, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, 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, 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, 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, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, PackagesInStockIn, PackagesInStockOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, 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, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, 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, 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, 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 };
7670
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, 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, 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, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, 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, 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, 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, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, PackageMissing, PackageReEntryMissing, PackageReEntryMissingIn, PackageReEntryMissingOut, PackageReEntryMissings, PackageReEntryMissingsOut, PackagesInStockIn, PackagesInStockOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, 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, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, 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, 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, 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.1.12",
3
+ "version": "20.1.14",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [