@experteam-mx/ngx-services 20.3.1-dev3.1 → 20.3.1

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
@@ -21,7 +21,6 @@ import { Channel } from 'pusher-js';
21
21
  * - secretKey: A secret key used for authentication or other secure operations.
22
22
  */
23
23
  type Environment = {
24
- apiBillingCO?: string;
25
24
  apiBillingDO?: string;
26
25
  apiBillingGT?: string;
27
26
  apiBillingMX?: string;
@@ -133,209 +132,6 @@ interface TranslateLang {
133
132
  [langCode: string]: string;
134
133
  }
135
134
 
136
- interface CoCustomer {
137
- identification_number: string;
138
- identification_type_id: number;
139
- customer_type_id: number | null;
140
- company_name: string;
141
- full_name: string;
142
- email: string;
143
- phone_code: string;
144
- phone_number: string;
145
- birth_date: string | null;
146
- postal_code: string;
147
- state: string;
148
- county_name: string | null;
149
- city_name: string | null;
150
- address_line1: string;
151
- address_line2: string | null;
152
- address_line3: string | null;
153
- company_id: number | null;
154
- country_id: number | null;
155
- extra_fields: CoExtraFields;
156
- }
157
- interface CoExtraFields {
158
- social_reason: string;
159
- comercial_name: string | null;
160
- mercantile_registration: string | null;
161
- notification_mail: string;
162
- fiscal_responsibilities: string[];
163
- tributes: string[];
164
- fiscal_regime: string;
165
- first_name: string;
166
- other_name: string;
167
- last_name: string;
168
- second_last_name: string;
169
- department: string;
170
- municipality: string;
171
- open_id: number;
172
- [key: string]: string | number | boolean | string[] | null;
173
- }
174
- interface CoDepartment extends LaravelModel {
175
- code: string;
176
- description: string;
177
- }
178
- interface CoMunicipality extends LaravelModel {
179
- department_id: number;
180
- code: string;
181
- description: string;
182
- }
183
- interface CoPostalCode extends LaravelModel {
184
- code: string;
185
- }
186
- interface CoFiscalRegime extends LaravelModel {
187
- code: string;
188
- description: string;
189
- }
190
- interface CoFiscalResponsibility extends LaravelModel {
191
- code: string;
192
- description: string;
193
- applies_to: string;
194
- }
195
- interface CoTribute extends LaravelModel {
196
- code: string;
197
- name: string;
198
- type: string;
199
- description: string;
200
- applies_tribute: boolean;
201
- applies_to_tribute: string;
202
- }
203
-
204
- type CoCustomerOut = {
205
- customer: CoCustomer;
206
- };
207
- type CoDepartmentsOut = {
208
- departments: CoDepartment[];
209
- total: number;
210
- };
211
- type CoMunicipalitiesOut = {
212
- municipalities: CoMunicipality[];
213
- total: number;
214
- };
215
- type CoPostalCodesOut = {
216
- postal_codes: CoPostalCode[];
217
- total: number;
218
- };
219
- type CoFiscalRegimesOut = {
220
- fiscal_regimes: CoFiscalRegime[];
221
- total: number;
222
- };
223
- type CoFiscalResponsibilitiesOut = {
224
- fiscal_responsibilities: CoFiscalResponsibility[];
225
- total: number;
226
- };
227
- type CoTributesOut = {
228
- tributes: CoTribute[];
229
- total: number;
230
- };
231
- type CoCustomerIn = {
232
- customer: {
233
- identification_number: string;
234
- identification_type_id: number;
235
- company_name: string;
236
- full_name: string;
237
- email: string;
238
- phone_number: string;
239
- postal_code: string;
240
- state: string;
241
- address_line1: string;
242
- extra_fields: {
243
- social_reason: string;
244
- comercial_name: string | null;
245
- notification_mail: string;
246
- fiscal_responsibilities: string[];
247
- tributes: string[];
248
- fiscal_regime: string | null;
249
- first_name: string | null;
250
- other_name: string | null;
251
- last_name: string | null;
252
- second_last_name: string | null;
253
- department: string;
254
- municipality: string;
255
- contacts?: [] | null;
256
- open_id?: number;
257
- };
258
- };
259
- };
260
-
261
- declare class ApiBillingCOService {
262
- private environments;
263
- private http;
264
- /**
265
- * Retrieves the URL for the billing API.
266
- * If the URL is not defined in the environments configuration, returns an empty string.
267
- *
268
- * @returns {string} The billing API URL or an empty string if not set.
269
- */
270
- get url(): string;
271
- /**
272
- * Retrieves the information of a customer by its identifier.
273
- *
274
- * @param {number} id - Unique customer identifier.
275
- * @returns {Observable<CoCustomerOut>}
276
- * Observable emitting the customer information.
277
- */
278
- getCustomer(id: number): Observable<CoCustomerOut>;
279
- /**
280
- * Creates a new customer.
281
- *
282
- * @param {CoCustomerIn} body - Customer data to be created.
283
- * @returns {Observable<CoCustomerOut>}
284
- * Observable emitting the created customer information.
285
- */
286
- postCustomer(body: CoCustomerIn): Observable<CoCustomerOut>;
287
- /**
288
- * Retrieves the list of departments based on the provided query parameters.
289
- *
290
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
291
- * @returns {Observable<CoDepartmentsOut>}
292
- * Observable emitting the departments list.
293
- */
294
- getDepartments(params: QueryParams): Observable<CoDepartmentsOut>;
295
- /**
296
- * Retrieves the list of municipalities based on the provided query parameters.
297
- *
298
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
299
- * @returns {Observable<CoMunicipalitiesOut>}
300
- * Observable emitting the municipalities list.
301
- */
302
- getMunicipalities(params: QueryParams): Observable<CoMunicipalitiesOut>;
303
- /**
304
- * Retrieves the list of postal codes based on the provided query parameters.
305
- *
306
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
307
- * @returns {Observable<CoPostalCodesOut>}
308
- * Observable emitting the postal codes list.
309
- */
310
- getPostalCodes(params: QueryParams): Observable<CoPostalCodesOut>;
311
- /**
312
- * Retrieves the list of fiscal regimes based on the provided query parameters.
313
- *
314
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
315
- * @returns {Observable<CoFiscalRegimesOut>}
316
- * Observable emitting the fiscal regimes list.
317
- */
318
- getFiscalRegimes(params: QueryParams): Observable<CoFiscalRegimesOut>;
319
- /**
320
- * Retrieves the list of fiscal responsibilities based on the provided query parameters.
321
- *
322
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
323
- * @returns {Observable<CoFiscalResponsibilitiesOut>}
324
- * Observable emitting the fiscal responsibilities list.
325
- */
326
- getFiscalResponsibilities(params: QueryParams): Observable<CoFiscalResponsibilitiesOut>;
327
- /**
328
- * Retrieves the list of tributes based on the provided query parameters.
329
- *
330
- * @param {QueryParams} params - Query parameters used to filter or paginate the request.
331
- * @returns {Observable<CoTributesOut>}
332
- * Observable emitting the tributes list.
333
- */
334
- getTributes(params: QueryParams): Observable<CoTributesOut>;
335
- static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingCOService, never>;
336
- static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingCOService>;
337
- }
338
-
339
135
  interface IncomeType extends LaravelModel {
340
136
  code: string;
341
137
  name: string;
@@ -4825,6 +4621,14 @@ declare enum AlphaNumeric {
4825
4621
  alphabetic = "alphabetic",
4826
4622
  amount = "amount"
4827
4623
  }
4624
+ declare enum Group {
4625
+ check_in = "check_in",
4626
+ check_out = "check_out",
4627
+ movement = "movement",
4628
+ incident = "incident",
4629
+ expiration = "expiration",
4630
+ verification = "verification"
4631
+ }
4828
4632
 
4829
4633
  interface Checkpoint extends ActiveLessSymfonyModel {
4830
4634
  code: string;
@@ -4884,6 +4688,47 @@ interface ReEntryOfMissingPackages {
4884
4688
  packages: PackageMissing[];
4885
4689
  };
4886
4690
  }
4691
+ interface PackageInventory extends SymfonyModel {
4692
+ locationId: number | null;
4693
+ shipmentId: number | null;
4694
+ trackingNumber: string | null;
4695
+ shipmentTrackingNumber: string | null;
4696
+ destination: string | null;
4697
+ origin: string | null;
4698
+ inStock: boolean | null;
4699
+ canCheckOut: boolean | null;
4700
+ isExpired: boolean | null;
4701
+ isFirstMile: boolean | null;
4702
+ isMissing: boolean | null;
4703
+ position?: string | null;
4704
+ isLastStockUpdateOperation: boolean | null;
4705
+ lastStatusCode: string | null;
4706
+ lastStatusName: string | null;
4707
+ lastOperationTypeCode: string | null;
4708
+ lastOperationTypeName: string | null;
4709
+ checkInOperationTypeCode: string | null;
4710
+ checkInOperationTypeName: string | null;
4711
+ lastCheckpointCode: string | null;
4712
+ inventoryDays: number;
4713
+ }
4714
+ interface Status extends SymfonyModel {
4715
+ code: string;
4716
+ name: string;
4717
+ description: string | null;
4718
+ translations: {
4719
+ name: TranslateLang;
4720
+ };
4721
+ }
4722
+ interface OperationTypeInventory extends SymfonyModel {
4723
+ code: string;
4724
+ name: string;
4725
+ shortName: string | null;
4726
+ group: Group;
4727
+ countriesId: string[] | null;
4728
+ translations: {
4729
+ name: TranslateLang;
4730
+ };
4731
+ }
4887
4732
 
4888
4733
  type CheckpointsOut = {
4889
4734
  total: number;
@@ -4954,6 +4799,33 @@ type ReEntryOfMissingPackagesOut = {
4954
4799
  type ReEntryOfMissingPackagesIn = {
4955
4800
  packagesIds: number[];
4956
4801
  };
4802
+ type CourierCheckOutPackesOut = {
4803
+ packages: PackageInventory[];
4804
+ totalShipments: number;
4805
+ totalPackages: number;
4806
+ totalExpiredPackages: number;
4807
+ totalFirstMilePackages: number;
4808
+ totalStockUpdatePackages: number;
4809
+ };
4810
+ type PackageInStockDetailOut = {
4811
+ package: PackageInventory;
4812
+ };
4813
+ type StatusesOut = {
4814
+ statuses: Status[];
4815
+ total: number;
4816
+ };
4817
+ type OperationTypesInventoryOut = {
4818
+ operationTypes: OperationTypeInventory[];
4819
+ total: number;
4820
+ };
4821
+ type StockUpdatePackagesOut = {
4822
+ packages: PackageInventory[];
4823
+ totalShipments: number;
4824
+ totalPackages: number;
4825
+ totalExpiredPackages: number;
4826
+ totalFirstMilePackages: number;
4827
+ totalStockUpdatePackages: number;
4828
+ };
4957
4829
 
4958
4830
  declare class ApiInventoriesService {
4959
4831
  private environments;
@@ -5104,6 +4976,41 @@ declare class ApiInventoriesService {
5104
4976
  * @returns {Observable<ReEntryOfMissingPackagesOut>} An observable detail of the updated incident reason complement.
5105
4977
  */
5106
4978
  putReEntryOfMissingPackages(body: ReEntryOfMissingPackagesIn): Observable<ReEntryOfMissingPackagesOut>;
4979
+ /**
4980
+ * Fetches the packages details based on the provided operation check out ID.
4981
+ *
4982
+ * @param {number} id - The operation check out id
4983
+ * @return {Observable<CourierCheckOutPackesOut>} An observable that emits the packages data.
4984
+ */
4985
+ getCourierCheckOutPackages(id: Number): Observable<CourierCheckOutPackesOut>;
4986
+ /**
4987
+ * Fetches the statuses based on query parameters.
4988
+ *
4989
+ * @param {QueryParams} params - The query parameters for filtering the statuses.
4990
+ * @return {Observable<StatusesOut>} An observable that emits the statuses.
4991
+ */
4992
+ getStatuses(params: QueryParams): Observable<StatusesOut>;
4993
+ /**
4994
+ * Fetches the operation types based on query parameters.
4995
+ *
4996
+ * @param {QueryParams} params - The query parameters for filtering the operation types.
4997
+ * @return {Observable<OperationTypesInventoryOut>} An observable that emits the operation types.
4998
+ */
4999
+ getOperationTypes(params: QueryParams): Observable<OperationTypesInventoryOut>;
5000
+ /**
5001
+ * Fetches the package in stock details based on query parameters.
5002
+ *
5003
+ * @param {QueryParams} params - The query parameters for get the package in stock.
5004
+ * @return {Observable<PackageInStockDetailOut>} An observable that emits the package detail in stock.
5005
+ */
5006
+ getPackageInStockDetail(params: QueryParams): Observable<PackageInStockDetailOut>;
5007
+ /**
5008
+ * Fetches the packages details based on the provided operation stock update ID.
5009
+ *
5010
+ * @param {number} id - The operation stock update id
5011
+ * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5012
+ */
5013
+ getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
5107
5014
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5108
5015
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5109
5016
  }
@@ -8246,5 +8153,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8246
8153
  [header: string]: string | string[];
8247
8154
  };
8248
8155
 
8249
- export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8250
- 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, CoCustomer, CoCustomerIn, CoCustomerOut, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoMunicipalitiesOut, CoMunicipality, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, 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 };
8156
+ 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, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8157
+ 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, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, 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, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsData, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.3.1-dev3.1",
3
+ "version": "20.3.1",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [