@experteam-mx/ngx-services 20.0.0-beta.1 → 20.0.0-beta.2

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
@@ -675,7 +675,7 @@ interface IdentificationType extends SymfonyModel {
675
675
  identificationType: number | null;
676
676
  name: string;
677
677
  viewSection?: Record<ViewSectionOption, boolean>;
678
- regex: string | null;
678
+ regex: string[] | null;
679
679
  isExternalValidation: boolean;
680
680
  }
681
681
  interface OperationType extends SymfonyModel {
@@ -828,7 +828,7 @@ type IdentificationTypeIn = {
828
828
  identificationType?: number | null;
829
829
  name: string;
830
830
  viewSection: Record<ViewSectionOption, boolean>;
831
- regex: string | null;
831
+ regex: string[] | null;
832
832
  isExternalValidation?: boolean;
833
833
  isActive: boolean;
834
834
  };
@@ -3947,74 +3947,6 @@ declare class ApiDiscountsService {
3947
3947
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
3948
3948
  }
3949
3949
 
3950
- declare enum OperationModuleStatus {
3951
- CANCELED = "canceled",
3952
- COMPLETED = "completed",
3953
- IN_PROGESS = "in_progress"
3954
- }
3955
-
3956
- interface OperationModule extends SymfonyModel {
3957
- lastUserId: number;
3958
- event: OperationEvent;
3959
- lastAction: OperationAction;
3960
- status: OperationModuleStatus;
3961
- extraFields: {
3962
- [key: string]: string | number | boolean | null;
3963
- };
3964
- }
3965
- interface OperationEvent extends SymfonyModel {
3966
- code: string;
3967
- name: string;
3968
- description: string;
3969
- }
3970
- interface OperationAction extends SymfonyModel {
3971
- code: string;
3972
- name: string;
3973
- description: string;
3974
- }
3975
-
3976
- type OperationModuleStartIn = {
3977
- eventCode: string;
3978
- };
3979
- type OperationModuleEndIn = {
3980
- status: OperationModuleStatus;
3981
- extraFields?: {
3982
- [key: string]: string | number | boolean | null;
3983
- };
3984
- };
3985
- type OperationModuleOut = {
3986
- operationModule: OperationModule;
3987
- };
3988
-
3989
- declare class ApiEventsService {
3990
- private environments;
3991
- private http;
3992
- constructor(environments: Environment, http: HttpClient);
3993
- /**
3994
- * Gets the API endpoint URL for Events from the environments configuration.
3995
- *
3996
- * @return {string} The URL for the Events API. Returns an empty string if not defined.
3997
- */
3998
- get url(): string;
3999
- /**
4000
- * Sends a request to start an event
4001
- *
4002
- * @param {OperationModuleStartIn} body - The event information to be submitted.
4003
- * @return {Observable<OperationModuleOut>} An Observable emitting the server's response containing the created event details.
4004
- */
4005
- postOperationModulesStart(body: OperationModuleStartIn): Observable<OperationModuleOut>;
4006
- /**
4007
- * Updates the discount information for a specific item.
4008
- *
4009
- * @param {number} id - The unique identifier of the item whose event is to be updated.
4010
- * @param {OperationModuleEndIn} body - The payload containing the updated event details.
4011
- * @return {Observable<OperationModuleOut>} An observable emitting the updated event details.
4012
- */
4013
- putOperationModulesEnd(id: number, body: OperationModuleEndIn): Observable<OperationModuleOut>;
4014
- static ɵfac: i0.ɵɵFactoryDeclaration<ApiEventsService, never>;
4015
- static ɵprov: i0.ɵɵInjectableDeclaration<ApiEventsService>;
4016
- }
4017
-
4018
3950
  interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
4019
3951
  addressLine1: string;
4020
3952
  addressLine2: string;
@@ -4134,6 +4066,95 @@ declare class ApiEToolsAutoBillingService {
4134
4066
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiEToolsAutoBillingService>;
4135
4067
  }
4136
4068
 
4069
+ declare enum OperationModuleStatus {
4070
+ CANCELED = "canceled",
4071
+ COMPLETED = "completed",
4072
+ IN_PROGESS = "in_progress"
4073
+ }
4074
+
4075
+ interface OperationModule extends SymfonyModel {
4076
+ lastUserId: number;
4077
+ event: OperationEvent;
4078
+ lastAction: OperationAction;
4079
+ status: OperationModuleStatus;
4080
+ extraFields: {
4081
+ [key: string]: string | number | boolean | null;
4082
+ };
4083
+ }
4084
+ interface OperationEvent extends SymfonyModel {
4085
+ code: string;
4086
+ name: string;
4087
+ description: string;
4088
+ }
4089
+ interface OperationAction extends SymfonyModel {
4090
+ code: string;
4091
+ name: string;
4092
+ description: string;
4093
+ }
4094
+
4095
+ type OperationModuleStartIn = {
4096
+ eventCode: string;
4097
+ };
4098
+ type OperationModuleEndIn = {
4099
+ status: OperationModuleStatus;
4100
+ extraFields?: {
4101
+ [key: string]: string | number | boolean | null;
4102
+ };
4103
+ };
4104
+ type OperationModuleOut = {
4105
+ operationModule: OperationModule;
4106
+ };
4107
+
4108
+ declare class ApiEventsService {
4109
+ private environments;
4110
+ private http;
4111
+ constructor(environments: Environment, http: HttpClient);
4112
+ /**
4113
+ * Gets the API endpoint URL for Events from the environments configuration.
4114
+ *
4115
+ * @return {string} The URL for the Events API. Returns an empty string if not defined.
4116
+ */
4117
+ get url(): string;
4118
+ /**
4119
+ * Sends a request to start an event
4120
+ *
4121
+ * @param {OperationModuleStartIn} body - The event information to be submitted.
4122
+ * @return {Observable<OperationModuleOut>} An Observable emitting the server's response containing the created event details.
4123
+ */
4124
+ postOperationModulesStart(body: OperationModuleStartIn): Observable<OperationModuleOut>;
4125
+ /**
4126
+ * Updates the discount information for a specific item.
4127
+ *
4128
+ * @param {number} id - The unique identifier of the item whose event is to be updated.
4129
+ * @param {OperationModuleEndIn} body - The payload containing the updated event details.
4130
+ * @return {Observable<OperationModuleOut>} An observable emitting the updated event details.
4131
+ */
4132
+ putOperationModulesEnd(id: number, body: OperationModuleEndIn): Observable<OperationModuleOut>;
4133
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiEventsService, never>;
4134
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiEventsService>;
4135
+ }
4136
+
4137
+ interface Operation extends LaravelModel {
4138
+ _id: string;
4139
+ operation_id: number;
4140
+ status: 'Pending' | 'Completed' | 'Canceled';
4141
+ code: number;
4142
+ signature: {
4143
+ signature_base_64: string;
4144
+ mime_type: 'image/png';
4145
+ client: {
4146
+ full_name: string;
4147
+ };
4148
+ package_detail: {
4149
+ shipment_tracking_number: string;
4150
+ pieces: {
4151
+ tracking_number: string;
4152
+ status: null | 'damaged' | 'lost';
4153
+ }[];
4154
+ }[];
4155
+ };
4156
+ }
4157
+
4137
4158
  type DeliveryConfirmationGenerateOut = {
4138
4159
  code: string;
4139
4160
  };
@@ -4165,12 +4186,15 @@ type DeliveryConfirmationIn = {
4165
4186
  };
4166
4187
  otp?: string;
4167
4188
  };
4189
+ type DeliveryConfirmationSearchOut = {
4190
+ operation: Operation;
4191
+ };
4168
4192
 
4169
- declare class ApiExternalPickupsService {
4170
- private httpClient;
4193
+ declare class ApiExternalOperationsService {
4194
+ private http;
4171
4195
  private environment;
4172
4196
  private appKey;
4173
- constructor(httpClient: HttpClient, environment: Environment);
4197
+ constructor(http: HttpClient, environment: Environment);
4174
4198
  /**
4175
4199
  * Getter method to retrieve the API's external operations URL.
4176
4200
  * Fetches the URL from the `apiExternalOperationsUrl` property of the environment object.
@@ -4179,6 +4203,13 @@ declare class ApiExternalPickupsService {
4179
4203
  * @return {string} The external operations URL or an empty string if unavailable.
4180
4204
  */
4181
4205
  get url(): string;
4206
+ /**
4207
+ * Retrieves delivery confirmation details based on the provided OTP code.
4208
+ *
4209
+ * @param {string} otpCode - The OTP code used to search for delivery confirmation.
4210
+ * @return {Observable<DeliveryConfirmationData>} An observable containing the delivery confirmation data.
4211
+ */
4212
+ getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
4182
4213
  /**
4183
4214
  * Generates a delivery confirmation by sending the provided payload to the API.
4184
4215
  *
@@ -4204,8 +4235,9 @@ declare class ApiExternalPickupsService {
4204
4235
  * @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
4205
4236
  */
4206
4237
  putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
4207
- static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalPickupsService, never>;
4208
- static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalPickupsService>;
4238
+ private getAppKeyHeader;
4239
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
4240
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
4209
4241
  }
4210
4242
 
4211
4243
  declare enum Event {
@@ -5541,6 +5573,8 @@ interface ShipmentReports {
5541
5573
  shipper_phone_number: string;
5542
5574
  shipper_postal_code: string;
5543
5575
  shipper_state_name: string | null;
5576
+ subtotal: number;
5577
+ tax: number;
5544
5578
  total: number;
5545
5579
  tracking: string | null;
5546
5580
  updated_at: string;
@@ -6640,6 +6674,40 @@ declare class CryptoService {
6640
6674
  */
6641
6675
  declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
6642
6676
 
6677
+ /**
6678
+ * HTTP interceptor that injects the external operations API key into outbound requests.
6679
+ *
6680
+ * The interceptor:
6681
+ * 1. Reads `apiExternalOperationsKey` from the injected `ENVIRONMENT_TOKEN`.
6682
+ * 2. Skips modification if the key is absent.
6683
+ * 3. Leaves the request unchanged if it already contains an `AppKey` header (caller override).
6684
+ * 4. Otherwise clones the request adding `AppKey: apiExternalOperationsKey`.
6685
+ *
6686
+ * This enables centralized, transparent authentication for services targeting external
6687
+ * operations endpoints while allowing explicit per-request overrides.
6688
+ *
6689
+ * Example:
6690
+ * ```ts
6691
+ * provideHttpClient(
6692
+ * withInterceptors([apiKeyInterceptor])
6693
+ * );
6694
+ * ```
6695
+ *
6696
+ * @param request The original immutable `HttpRequest` instance.
6697
+ * @param next The next handler in the interceptor chain, used to forward the (possibly cloned) request.
6698
+ * @returns An `Observable` stream of the HTTP events for the (potentially augmented) request.
6699
+ *
6700
+ * @remarks
6701
+ * - If you need to intentionally send a different key for a specific request, set the `AppKey`
6702
+ * header manually before this interceptor runs.
6703
+ * - If `apiExternalOperationsKey` is undefined (e.g., missing configuration), the request is passed through unchanged.
6704
+ * - Order matters: place this interceptor before others that rely on the presence of the `AppKey` header.
6705
+ *
6706
+ * @see HttpRequest
6707
+ * @see HttpHandlerFn
6708
+ */
6709
+ declare function apiKeyInterceptor(request: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
6710
+
6643
6711
  /**
6644
6712
  * An HTTP interceptor to append an Authorization header with a Bearer token
6645
6713
  * to outgoing HTTP requests if certain conditions are met.
@@ -6661,6 +6729,9 @@ declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandle
6661
6729
  */
6662
6730
  declare function httpCachingInterceptor(req: HttpRequest<any>, next: HttpHandlerFn): Observable<HttpEvent<any>>;
6663
6731
 
6732
+ declare const base64PdfToUrl: (base64: string) => string;
6733
+ declare const downloadBase64Pdf: (base64: string) => Window | null;
6734
+
6664
6735
  /**
6665
6736
  * Convert an object of key-value pairs into a URL query string.
6666
6737
  *
@@ -6698,8 +6769,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
6698
6769
  [header: string]: string | string[];
6699
6770
  };
6700
6771
 
6701
- declare const base64PdfToUrl: (base64: string) => string;
6702
- declare const downloadBase64Pdf: (base64: string) => Window | null;
6703
-
6704
- export { AlphaNumeric, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalPickupsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
6705
- export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CollectionPayment, CommercialInvoice, Commodity, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCurrencyRate, CountryDocumentType, 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, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, Department, DepartmentsOut, DependentRules, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeReports, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, 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, InvoiceTypeCustomParamsIn, 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, 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, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, 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, PromotionIn, PromotionOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOut, QuestionsOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, State, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, 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 };
6772
+ export { AlphaNumeric, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
6773
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CollectionPayment, CommercialInvoice, Commodity, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCurrencyRate, CountryDocumentType, 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, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeReports, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, 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, InvoiceTypeCustomParamsIn, 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, 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, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, 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, PromotionIn, PromotionOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOut, QuestionsOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, State, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, 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.0.0-beta.1",
3
+ "version": "20.0.0-beta.2",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [