@experteam-mx/ngx-services 20.2.2-dev3.1 → 20.2.3-dev3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -125,9 +125,10 @@ type QueryParams = {
125
125
  [param: string]: string | number | boolean | ReadonlyArray<string | number | boolean>;
126
126
  };
127
127
  interface Translations {
128
- [key: string]: {
129
- [langCode: string]: string;
130
- };
128
+ [key: string]: TranslateLang;
129
+ }
130
+ interface TranslateLang {
131
+ [langCode: string]: string;
131
132
  }
132
133
 
133
134
  interface IncomeType extends LaravelModel {
@@ -6443,6 +6444,194 @@ interface Sales extends ActiveLessLaravelModel {
6443
6444
  total: number;
6444
6445
  user_id: number;
6445
6446
  }
6447
+ interface HistoryReport extends ActiveLessLaravelModel {
6448
+ shipment_tracking_number: string;
6449
+ package_tracking_number: string;
6450
+ country_name: string;
6451
+ country_id: number;
6452
+ company_name: string;
6453
+ company_country_id: number;
6454
+ location_name: string;
6455
+ location_id: number;
6456
+ installation_number: number;
6457
+ installation_id: number;
6458
+ username: string;
6459
+ user_id: number;
6460
+ position: string | null;
6461
+ operation_type_id: number;
6462
+ operation_type_name: string;
6463
+ operation_type_translations: {
6464
+ name: TranslateLang;
6465
+ shortName: TranslateLang;
6466
+ };
6467
+ status_id: number;
6468
+ status_name: string;
6469
+ status_translations: {
6470
+ name: TranslateLang;
6471
+ description: TranslateLang;
6472
+ };
6473
+ origin: string;
6474
+ destination: string;
6475
+ is_inspected: boolean | null;
6476
+ courier_number: string | null;
6477
+ courier_name: string;
6478
+ courier_id: string | null;
6479
+ receiver_name: string | null;
6480
+ shipper_name: string;
6481
+ checkpoints: HistoryReportCheckpoint[];
6482
+ courier_confirmation_number: string | null;
6483
+ operation_datetime: string;
6484
+ }
6485
+ interface ParcelReport extends ActiveLessLaravelModel {
6486
+ package_id: number;
6487
+ location_facility_code: string;
6488
+ commission_account: string | null;
6489
+ shipment_tracking_number: string;
6490
+ package_tracking_number: string;
6491
+ receiver_company_name: string | null;
6492
+ operation_receiver_name: string | null;
6493
+ country_id: number;
6494
+ company_country_id: number;
6495
+ location_id: number;
6496
+ country_name: string;
6497
+ company_name: string;
6498
+ country_code: string | null;
6499
+ location_name: string;
6500
+ first_mile_operation_location_address: string;
6501
+ last_mile_operation_location_address: string | null;
6502
+ gmt_offset: string;
6503
+ last_operation_type_id: number;
6504
+ last_operation_type_code: string;
6505
+ last_operation_type_name: string;
6506
+ last_operation_type_translations: {
6507
+ name: TranslateLang;
6508
+ shortName: TranslateLang;
6509
+ };
6510
+ last_operation_updated_at: string;
6511
+ last_operation_local_updated_at: string;
6512
+ local_updated_at: string;
6513
+ }
6514
+ interface OperationReport extends ActiveLessLaravelModel {
6515
+ number: string;
6516
+ country_id: number;
6517
+ country_code: string;
6518
+ country_name: string;
6519
+ company_id: number;
6520
+ company_name: string;
6521
+ location_id: number;
6522
+ location_name: string;
6523
+ location_facility_code: string;
6524
+ location_location_code: string;
6525
+ installation_id: number;
6526
+ installation_number: number;
6527
+ user_id: number;
6528
+ username: string;
6529
+ operation_type_id: number;
6530
+ operation_type_code: string;
6531
+ operation_type_name: string;
6532
+ operation_type_translations: {
6533
+ name: TranslateLang;
6534
+ shortName: TranslateLang;
6535
+ };
6536
+ courier_id: string | null;
6537
+ courier_number: string | null;
6538
+ courier_name: string | null;
6539
+ is_labelless: boolean;
6540
+ }
6541
+ interface PackageReport extends ApiModel {
6542
+ package_id: number;
6543
+ shipment_tracking_number: string;
6544
+ package_tracking_number: string;
6545
+ country_code: string;
6546
+ country_name: string;
6547
+ country_id: number;
6548
+ location_name: string;
6549
+ location_facility_code: string;
6550
+ location_location_code: string;
6551
+ location_id: number;
6552
+ installation_number: number;
6553
+ installation_id: number;
6554
+ username: string;
6555
+ user_id: number;
6556
+ package_in_stock: boolean;
6557
+ package_status_id: number;
6558
+ package_status_name: string;
6559
+ package_status_translations: {
6560
+ name: TranslateLang;
6561
+ description: TranslateLang | null;
6562
+ };
6563
+ package_position: string | null;
6564
+ operation_type_id: number;
6565
+ operation_type_name: string;
6566
+ operation_type_translations: {
6567
+ name: TranslateLang;
6568
+ shortName: TranslateLang;
6569
+ };
6570
+ checkin_operation_type_id: number;
6571
+ checkin_operation_type_name: string;
6572
+ checkin_operation_type_translations: {
6573
+ name: TranslateLang;
6574
+ shortName: TranslateLang;
6575
+ };
6576
+ checkin_operation_created_at: string;
6577
+ checkin_operation_updated_at: string;
6578
+ checkin_operation_gmt_offset: string;
6579
+ package_last_checkpoint: string;
6580
+ package_last_checkpoint_created_at: string;
6581
+ origin: string;
6582
+ destination: string;
6583
+ locker_is_candidate: boolean;
6584
+ locker_position: string | null;
6585
+ }
6586
+ interface InventoryReport extends ActiveLessLaravelModel {
6587
+ shipment_tracking_number: string;
6588
+ package_tracking_number: string;
6589
+ status_id: number;
6590
+ status_name: string;
6591
+ status_translations: {
6592
+ name: TranslateLang;
6593
+ description: TranslateLang | null;
6594
+ };
6595
+ package_last_incident_code: string | null;
6596
+ package_last_incident_name: string | null;
6597
+ package_last_incident_is_finisher: string | null;
6598
+ checkin_operation_type_id: number;
6599
+ checkin_operation_type_code: string;
6600
+ checkin_operation_type_name: string;
6601
+ checkin_operation_type_translations: {
6602
+ name: TranslateLang;
6603
+ shortName: TranslateLang;
6604
+ };
6605
+ last_operation_type_id: number;
6606
+ last_operation_type_code: string;
6607
+ last_operation_type_name: string;
6608
+ last_operation_type_translations: {
6609
+ name: TranslateLang;
6610
+ shortName: TranslateLang;
6611
+ };
6612
+ is_first_mile: boolean;
6613
+ is_expired: boolean;
6614
+ origin: string;
6615
+ destination: string;
6616
+ last_checkpoint: string;
6617
+ last_checkpoint_datetime: string;
6618
+ position: string | null;
6619
+ package_id: number;
6620
+ shipment_id: number;
6621
+ country_name: string;
6622
+ country_id: number;
6623
+ company_name: string;
6624
+ company_country_id: number;
6625
+ location_name: string;
6626
+ location_id: number;
6627
+ checkin_datetime: string;
6628
+ }
6629
+ interface HistoryReportCheckpoint extends ApiModel {
6630
+ event_reason_code: string;
6631
+ transaction_id: string;
6632
+ remark: string;
6633
+ local_created_at: string;
6634
+ }
6446
6635
 
6447
6636
  type CollectionPaymentsOut = {
6448
6637
  collection_payments: CollectionPayment[];
@@ -6500,6 +6689,31 @@ type SalesBookReportOut = {
6500
6689
  total: number;
6501
6690
  transaction_id?: string;
6502
6691
  };
6692
+ type HistoriesReportOut = {
6693
+ histories: HistoryReport[];
6694
+ total: number;
6695
+ transaction_id?: string;
6696
+ };
6697
+ type ParcelsReportOut = {
6698
+ parcels: ParcelReport[];
6699
+ total: number;
6700
+ transaction_id?: string;
6701
+ };
6702
+ type OperationsReportOut = {
6703
+ operations: OperationReport[];
6704
+ total: number;
6705
+ transaction_id?: string;
6706
+ };
6707
+ type PackagesReportOut = {
6708
+ packages: PackageReport[];
6709
+ total: number;
6710
+ transaction_id?: string;
6711
+ };
6712
+ type InventoriesReportOut = {
6713
+ inventories: InventoryReport[];
6714
+ total: number;
6715
+ transaction_id?: string;
6716
+ };
6503
6717
 
6504
6718
  declare class ApiReportsService {
6505
6719
  private environments;
@@ -6611,6 +6825,41 @@ declare class ApiReportsService {
6611
6825
  * ```
6612
6826
  */
6613
6827
  getSalesBookReport(params: QueryParams): Observable<SalesBookReportOut>;
6828
+ /**
6829
+ * Retrieves a list of shipment histories based on the provided query parameters.
6830
+ *
6831
+ * @param params - The query parameters used to filter the shipment histories.
6832
+ * @returns An observable that emits the list of shipment histories.
6833
+ */
6834
+ getHistoriesReport(params: QueryParams): Observable<HistoriesReportOut>;
6835
+ /**
6836
+ * Retrieves a list of parcels based on the provided query parameters.
6837
+ *
6838
+ * @param params - The query parameters used to filter the parcels.
6839
+ * @returns An observable that emits the list of parcels.
6840
+ */
6841
+ getParcelsReport(params: QueryParams): Observable<ParcelsReportOut>;
6842
+ /**
6843
+ * Retrieves a list of operations based on the provided query parameters.
6844
+ *
6845
+ * @param params - The query parameters used to filter the operations.
6846
+ * @returns An observable that emits the list of operations.
6847
+ */
6848
+ getOperationsReport(params: QueryParams): Observable<OperationsReportOut>;
6849
+ /**
6850
+ * Retrieves a list of operations based on the provided query parameters.
6851
+ *
6852
+ * @param params - The query parameters used to filter the operations.
6853
+ * @returns An observable that emits the list of operations.
6854
+ */
6855
+ getPackagesReport(params: QueryParams): Observable<PackagesReportOut>;
6856
+ /**
6857
+ * Retrieves a list of inventories based on the provided query parameters.
6858
+ *
6859
+ * @param params - The query parameters used to filter the inventories.
6860
+ * @returns An observable that emits the list of inventories.
6861
+ */
6862
+ getInventoriesReport(params: QueryParams): Observable<InventoriesReportOut>;
6614
6863
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
6615
6864
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
6616
6865
  }
@@ -7434,6 +7683,7 @@ interface SurveyQuestion extends LaravelModel {
7434
7683
  question_options: QuestionOption[];
7435
7684
  question_type_id: number;
7436
7685
  question_type_name: string;
7686
+ question_type: QuestionType;
7437
7687
  sequence: number;
7438
7688
  survey_id: number;
7439
7689
  threshold_sequence: number | null;
@@ -7446,10 +7696,32 @@ interface QuestionOption extends LaravelModel {
7446
7696
  }
7447
7697
  interface QuestionType extends LaravelModel {
7448
7698
  allows_feedback: boolean;
7449
- code: string;
7699
+ code: 'MULTIPLE_CHOICE' | 'OPEN_FIELD' | 'SCALE_1_TO_5' | 'YES_OR_NO';
7450
7700
  has_options: boolean;
7451
7701
  name: string;
7452
7702
  }
7703
+ interface CustomerSurvey extends LaravelModel {
7704
+ customer_name: string;
7705
+ customer_email: string;
7706
+ shipment_tracking_number: string;
7707
+ location_code_name: string;
7708
+ user_name: string;
7709
+ installation_id: number;
7710
+ location_id: number;
7711
+ company_country_id: number;
7712
+ uuid: string;
7713
+ survey_ids: number[];
7714
+ answered_at: string;
7715
+ questions: SurveyQuestion[];
7716
+ responses?: QuestionResponse[];
7717
+ }
7718
+ interface QuestionResponse extends LaravelModel {
7719
+ customer_survey_id: number;
7720
+ survey_question_id: number;
7721
+ question: string;
7722
+ answer: string;
7723
+ answer_detail: string[];
7724
+ }
7453
7725
 
7454
7726
  type SurveysOut = {
7455
7727
  surveys: Survey[];
@@ -7491,15 +7763,35 @@ type QuestionTypesOut = {
7491
7763
  question_types: QuestionType[];
7492
7764
  total: number;
7493
7765
  };
7766
+ type CustomerSurveyOut = {
7767
+ customer_survey: CustomerSurvey;
7768
+ };
7769
+ type CustomerSurveyIn = {
7770
+ questions: {
7771
+ feedback?: {
7772
+ title?: string;
7773
+ answer: string;
7774
+ complement?: string;
7775
+ };
7776
+ answer: string | string[] | boolean | number;
7777
+ id: number;
7778
+ }[];
7779
+ };
7780
+ type CustomerSurveyFinishIn = {
7781
+ to_be_contacted_name: string;
7782
+ to_be_contacted_phone: string;
7783
+ };
7494
7784
 
7495
7785
  declare class ApiSurveysService {
7496
7786
  private environments;
7497
7787
  private http;
7788
+ private appKey;
7498
7789
  /**
7499
7790
  * Base URL for surveys API endpoints.
7500
7791
  * @returns The configured surveys API URL or an empty string.
7501
7792
  */
7502
7793
  get url(): string;
7794
+ private appKeyHeader;
7503
7795
  /**
7504
7796
  * Retrieves surveys list based on query parameters.
7505
7797
  * @param params Query parameters used to filter, paginate, or sort surveys.
@@ -7560,6 +7852,26 @@ declare class ApiSurveysService {
7560
7852
  * @returns Observable stream with question types response data.
7561
7853
  */
7562
7854
  getQuestionTypes(params: QueryParams): Observable<QuestionTypesOut>;
7855
+ /**
7856
+ * Retrieves a customer survey by UUID.
7857
+ * @param uuid Customer survey identifier.
7858
+ * @returns Observable stream with customer survey data.
7859
+ */
7860
+ getCustomerSurvey(uuid: string): Observable<CustomerSurveyOut>;
7861
+ /**
7862
+ * Updates an existing customer survey by UUID.
7863
+ * @param uuid Customer survey identifier.
7864
+ * @param body Customer survey payload used to update the resource.
7865
+ * @returns Observable stream with updated customer survey data.
7866
+ */
7867
+ putCustomerSurvey(uuid: string, body: CustomerSurveyIn): Observable<CustomerSurveyOut>;
7868
+ /**
7869
+ * Marks a customer survey as finished by UUID.
7870
+ * @param uuid Customer survey identifier.
7871
+ * @param body Customer survey finish payload.
7872
+ * @returns Observable stream with updated customer survey data.
7873
+ */
7874
+ postCustomerSurveyFinish(uuid: string, body: CustomerSurveyFinishIn): Observable<CustomerSurveyOut>;
7563
7875
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiSurveysService, never>;
7564
7876
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
7565
7877
  }
@@ -7730,4 +8042,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
7730
8042
  };
7731
8043
 
7732
8044
  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 };
7733
- 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, 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, 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, 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, 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, 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, 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, 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 };
8045
+ 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, 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, 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, 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, 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, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, 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, 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.2.2-dev3.1",
3
+ "version": "20.2.3-dev3.0",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [