@experteam-mx/ngx-services 20.2.3-dev3.1 → 20.3.1-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
@@ -21,6 +21,7 @@ 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;
24
25
  apiBillingDO?: string;
25
26
  apiBillingGT?: string;
26
27
  apiBillingMX?: string;
@@ -47,7 +48,6 @@ type Environment = {
47
48
  apiShipmentUrl?: string;
48
49
  apiSuppliesUrl?: string;
49
50
  apiSurveysUrl?: string;
50
- apiSurveysKey?: string;
51
51
  authCookie?: string;
52
52
  cacheTtl?: number;
53
53
  printUrl?: string;
@@ -132,6 +132,206 @@ interface TranslateLang {
132
132
  [langCode: string]: string;
133
133
  }
134
134
 
135
+ interface CustomerCo {
136
+ identification_number: string;
137
+ identification_type_id: number;
138
+ customer_type_id: number | null;
139
+ company_name: string;
140
+ full_name: string;
141
+ email: string;
142
+ phone_code: string;
143
+ phone_number: string;
144
+ birth_date: string | null;
145
+ postal_code: string;
146
+ state: string;
147
+ county_name: string | null;
148
+ city_name: string | null;
149
+ address_line1: string;
150
+ address_line2: string | null;
151
+ address_line3: string | null;
152
+ company_id: number | null;
153
+ country_id: number | null;
154
+ extra_fields: ExtraFields;
155
+ }
156
+ interface ExtraFields {
157
+ social_reason: string;
158
+ comercial_name: string | null;
159
+ mercantile_registration: string | null;
160
+ notification_mail: string;
161
+ fiscal_responsibilities: string[];
162
+ tributes: string[];
163
+ fiscal_regime: string;
164
+ first_name: string;
165
+ other_name: string;
166
+ last_name: string;
167
+ second_last_name: string;
168
+ department: string;
169
+ municipality: string;
170
+ open_id: number;
171
+ [key: string]: string | number | boolean | string[] | null;
172
+ }
173
+ interface DepartmentCO extends LaravelModel {
174
+ code: string;
175
+ description: string;
176
+ }
177
+ interface MunicipalityCO extends LaravelModel {
178
+ department_id: number;
179
+ code: string;
180
+ description: string;
181
+ }
182
+ interface PostalCodeCO extends LaravelModel {
183
+ code: string;
184
+ }
185
+ interface FiscalRegimeCO extends LaravelModel {
186
+ code: string;
187
+ description: string;
188
+ }
189
+ interface FiscalResponsibility extends LaravelModel {
190
+ code: string;
191
+ description: string;
192
+ applies_to: string;
193
+ }
194
+ interface TributeCO extends LaravelModel {
195
+ code: string;
196
+ name: string;
197
+ type: string;
198
+ description: string;
199
+ applies_tribute: boolean;
200
+ applies_to_tribute: string;
201
+ }
202
+
203
+ type BillingCoCustomerOut = {
204
+ customer: CustomerCo;
205
+ };
206
+ type DepartmentCoOut = {
207
+ departments: DepartmentCO[];
208
+ };
209
+ type MunicipalityCoOut = {
210
+ municipalities: MunicipalityCO[];
211
+ };
212
+ type PostalCodeCoOut = {
213
+ postal_codes: PostalCodeCO[];
214
+ total: number;
215
+ };
216
+ type FiscalRegimeCoOut = {
217
+ fiscal_regimes: FiscalRegimeCO[];
218
+ };
219
+ type FiscalResponsibilityCoOut = {
220
+ fiscal_responsibilities: FiscalResponsibility[];
221
+ };
222
+ type TributeCoOut = {
223
+ tributes: TributeCO[];
224
+ };
225
+ type BillingCOCustomerIn = {
226
+ customer: CustomerCoIn;
227
+ };
228
+ type CustomerCoIn = {
229
+ identification_number: string;
230
+ identification_type_id: number;
231
+ company_name: string;
232
+ full_name: string;
233
+ email: string;
234
+ phone_number: string;
235
+ postal_code: string;
236
+ state: string;
237
+ address_line1: string;
238
+ extra_fields: ExtraFieldsCOIn;
239
+ };
240
+ type ExtraFieldsCOIn = {
241
+ social_reason: string;
242
+ comercial_name: string | null;
243
+ notification_mail: string;
244
+ fiscal_responsibilities: string[];
245
+ tributes: string[];
246
+ fiscal_regime: string | null;
247
+ first_name: string | null;
248
+ other_name: string | null;
249
+ last_name: string | null;
250
+ second_last_name: string | null;
251
+ department: string;
252
+ municipality: string;
253
+ contacts?: [] | null;
254
+ open_id?: number;
255
+ };
256
+
257
+ declare class ApiBillingCOService {
258
+ private environments;
259
+ private http;
260
+ /**
261
+ * Retrieves the URL for the billing API.
262
+ * If the URL is not defined in the environments configuration, returns an empty string.
263
+ *
264
+ * @returns {string} The billing API URL or an empty string if not set.
265
+ */
266
+ get url(): string;
267
+ /**
268
+ * Retrieves the information of a customer by its identifier.
269
+ *
270
+ * @param {number} id - Unique customer identifier.
271
+ * @returns {Observable<BillingCoCustomerOut>}
272
+ * Observable emitting the customer information.
273
+ */
274
+ getCustomer(id: number): Observable<BillingCoCustomerOut>;
275
+ /**
276
+ * Creates a new customer.
277
+ *
278
+ * @param {BillingCOCustomerIn} body - Customer data to be created.
279
+ * @returns {Observable<BillingCoCustomerOut>}
280
+ * Observable emitting the created customer information.
281
+ */
282
+ postCustomer(body: BillingCOCustomerIn): Observable<BillingCoCustomerOut>;
283
+ /**
284
+ * Retrieves the list of departments based on the provided query parameters.
285
+ *
286
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
287
+ * @returns {Observable<DepartmentCoOut>}
288
+ * Observable emitting the departments list.
289
+ */
290
+ getDepartments(params: QueryParams): Observable<DepartmentCoOut>;
291
+ /**
292
+ * Retrieves the list of municipalities based on the provided query parameters.
293
+ *
294
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
295
+ * @returns {Observable<MunicipalityCoOut>}
296
+ * Observable emitting the municipalities list.
297
+ */
298
+ getMunicipalities(params: QueryParams): Observable<MunicipalityCoOut>;
299
+ /**
300
+ * Retrieves the list of postal codes based on the provided query parameters.
301
+ *
302
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
303
+ * @returns {Observable<PostalCodeCoOut>}
304
+ * Observable emitting the postal codes list.
305
+ */
306
+ getPostalCodes(params: QueryParams): Observable<PostalCodeCoOut>;
307
+ /**
308
+ * Retrieves the list of fiscal regimes based on the provided query parameters.
309
+ *
310
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
311
+ * @returns {Observable<FiscalRegimeCoOut>}
312
+ * Observable emitting the fiscal regimes list.
313
+ */
314
+ getFiscalRegimes(params: QueryParams): Observable<FiscalRegimeCoOut>;
315
+ /**
316
+ * Retrieves the list of fiscal responsibilities based on the provided query parameters.
317
+ *
318
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
319
+ * @returns {Observable<FiscalResponsibilityCoOut>}
320
+ * Observable emitting the fiscal responsibilities list.
321
+ */
322
+ getFiscalResponsibilities(params: QueryParams): Observable<FiscalResponsibilityCoOut>;
323
+ /**
324
+ * Retrieves the list of tributes based on the provided query parameters.
325
+ *
326
+ * @param {QueryParams} params - Query parameters used to filter or paginate the request.
327
+ * @returns {Observable<TributeCoOut>}
328
+ * Observable emitting the tributes list.
329
+ */
330
+ getTributes(params: QueryParams): Observable<TributeCoOut>;
331
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingCOService, never>;
332
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingCOService>;
333
+ }
334
+
135
335
  interface IncomeType extends LaravelModel {
136
336
  code: string;
137
337
  name: string;
@@ -7684,7 +7884,6 @@ interface SurveyQuestion extends LaravelModel {
7684
7884
  question_options: QuestionOption[];
7685
7885
  question_type_id: number;
7686
7886
  question_type_name: string;
7687
- question_type: QuestionType;
7688
7887
  sequence: number;
7689
7888
  survey_id: number;
7690
7889
  threshold_sequence: number | null;
@@ -7697,32 +7896,10 @@ interface QuestionOption extends LaravelModel {
7697
7896
  }
7698
7897
  interface QuestionType extends LaravelModel {
7699
7898
  allows_feedback: boolean;
7700
- code: 'MULTIPLE_CHOICE' | 'OPEN_FIELD' | 'SCALE_1_TO_5' | 'YES_OR_NO';
7899
+ code: string;
7701
7900
  has_options: boolean;
7702
7901
  name: string;
7703
7902
  }
7704
- interface CustomerSurvey extends LaravelModel {
7705
- customer_name: string;
7706
- customer_email: string;
7707
- shipment_tracking_number: string;
7708
- location_code_name: string;
7709
- user_name: string;
7710
- installation_id: number;
7711
- location_id: number;
7712
- company_country_id: number;
7713
- uuid: string;
7714
- survey_ids: number[];
7715
- answered_at: string;
7716
- questions: SurveyQuestion[];
7717
- responses?: QuestionResponse[];
7718
- }
7719
- interface QuestionResponse extends LaravelModel {
7720
- customer_survey_id: number;
7721
- survey_question_id: number;
7722
- question: string;
7723
- answer: string;
7724
- answer_detail: string[];
7725
- }
7726
7903
 
7727
7904
  type SurveysOut = {
7728
7905
  surveys: Survey[];
@@ -7764,35 +7941,15 @@ type QuestionTypesOut = {
7764
7941
  question_types: QuestionType[];
7765
7942
  total: number;
7766
7943
  };
7767
- type CustomerSurveyOut = {
7768
- customer_survey: CustomerSurvey;
7769
- };
7770
- type CustomerSurveyIn = {
7771
- questions: {
7772
- feedback?: {
7773
- title?: string;
7774
- answer: string;
7775
- complement?: string;
7776
- };
7777
- answer: string | string[] | boolean | number;
7778
- id: number;
7779
- }[];
7780
- };
7781
- type CustomerSurveyFinishIn = {
7782
- to_be_contacted_name: string;
7783
- to_be_contacted_phone: string;
7784
- };
7785
7944
 
7786
7945
  declare class ApiSurveysService {
7787
7946
  private environments;
7788
7947
  private http;
7789
- private appKey;
7790
7948
  /**
7791
7949
  * Base URL for surveys API endpoints.
7792
7950
  * @returns The configured surveys API URL or an empty string.
7793
7951
  */
7794
7952
  get url(): string;
7795
- private appKeyHeader;
7796
7953
  /**
7797
7954
  * Retrieves surveys list based on query parameters.
7798
7955
  * @param params Query parameters used to filter, paginate, or sort surveys.
@@ -7853,26 +8010,6 @@ declare class ApiSurveysService {
7853
8010
  * @returns Observable stream with question types response data.
7854
8011
  */
7855
8012
  getQuestionTypes(params: QueryParams): Observable<QuestionTypesOut>;
7856
- /**
7857
- * Retrieves a customer survey by UUID.
7858
- * @param uuid Customer survey identifier.
7859
- * @returns Observable stream with customer survey data.
7860
- */
7861
- getCustomerSurvey(uuid: string): Observable<CustomerSurveyOut>;
7862
- /**
7863
- * Updates an existing customer survey by UUID.
7864
- * @param uuid Customer survey identifier.
7865
- * @param body Customer survey payload used to update the resource.
7866
- * @returns Observable stream with updated customer survey data.
7867
- */
7868
- putCustomerSurvey(uuid: string, body: CustomerSurveyIn): Observable<CustomerSurveyOut>;
7869
- /**
7870
- * Marks a customer survey as finished by UUID.
7871
- * @param uuid Customer survey identifier.
7872
- * @param body Customer survey finish payload.
7873
- * @returns Observable stream with updated customer survey data.
7874
- */
7875
- postCustomerSurveyFinish(uuid: string, body: CustomerSurveyFinishIn): Observable<CustomerSurveyOut>;
7876
8013
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiSurveysService, never>;
7877
8014
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
7878
8015
  }
@@ -8042,5 +8179,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8042
8179
  [header: string]: string | string[];
8043
8180
  };
8044
8181
 
8045
- 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 };
8046
- 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 };
8182
+ 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 };
8183
+ 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, BillingCOCustomerIn, BillingCoCustomerOut, 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, CustomerCo, CustomerCoIn, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentCO, DepartmentCoOut, 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, ExtraFields, ExtraFieldsCOIn, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimeCO, FiscalRegimeCoOut, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, FiscalResponsibility, FiscalResponsibilityCoOut, 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, MunicipalityCO, MunicipalityCoOut, 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, PostalCodeCO, PostalCodeCoOut, 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, TranslateLang, Translations, TributeCO, TributeCoOut, 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.3-dev3.1",
3
+ "version": "20.3.1-dev3.0",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [