@experteam-mx/ngx-services 20.3.1-dev3.0 → 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;
@@ -47,6 +46,7 @@ type Environment = {
47
46
  apiServicesUrl?: string;
48
47
  apiShipmentUrl?: string;
49
48
  apiSuppliesUrl?: string;
49
+ apiSurveysKey?: string;
50
50
  apiSurveysUrl?: string;
51
51
  authCookie?: string;
52
52
  cacheTtl?: number;
@@ -132,206 +132,6 @@ 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
-
335
135
  interface IncomeType extends LaravelModel {
336
136
  code: string;
337
137
  name: string;
@@ -4821,6 +4621,14 @@ declare enum AlphaNumeric {
4821
4621
  alphabetic = "alphabetic",
4822
4622
  amount = "amount"
4823
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
+ }
4824
4632
 
4825
4633
  interface Checkpoint extends ActiveLessSymfonyModel {
4826
4634
  code: string;
@@ -4880,6 +4688,47 @@ interface ReEntryOfMissingPackages {
4880
4688
  packages: PackageMissing[];
4881
4689
  };
4882
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
+ }
4883
4732
 
4884
4733
  type CheckpointsOut = {
4885
4734
  total: number;
@@ -4950,6 +4799,33 @@ type ReEntryOfMissingPackagesOut = {
4950
4799
  type ReEntryOfMissingPackagesIn = {
4951
4800
  packagesIds: number[];
4952
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
+ };
4953
4829
 
4954
4830
  declare class ApiInventoriesService {
4955
4831
  private environments;
@@ -5100,6 +4976,41 @@ declare class ApiInventoriesService {
5100
4976
  * @returns {Observable<ReEntryOfMissingPackagesOut>} An observable detail of the updated incident reason complement.
5101
4977
  */
5102
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>;
5103
5014
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5104
5015
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5105
5016
  }
@@ -7884,6 +7795,7 @@ interface SurveyQuestion extends LaravelModel {
7884
7795
  question_options: QuestionOption[];
7885
7796
  question_type_id: number;
7886
7797
  question_type_name: string;
7798
+ question_type: QuestionType;
7887
7799
  sequence: number;
7888
7800
  survey_id: number;
7889
7801
  threshold_sequence: number | null;
@@ -7896,10 +7808,32 @@ interface QuestionOption extends LaravelModel {
7896
7808
  }
7897
7809
  interface QuestionType extends LaravelModel {
7898
7810
  allows_feedback: boolean;
7899
- code: string;
7811
+ code: 'MULTIPLE_CHOICE' | 'OPEN_FIELD' | 'SCALE_1_TO_5' | 'YES_OR_NO';
7900
7812
  has_options: boolean;
7901
7813
  name: string;
7902
7814
  }
7815
+ interface CustomerSurvey extends LaravelModel {
7816
+ customer_name: string;
7817
+ customer_email: string;
7818
+ shipment_tracking_number: string;
7819
+ location_code_name: string;
7820
+ user_name: string;
7821
+ installation_id: number;
7822
+ location_id: number;
7823
+ company_country_id: number;
7824
+ uuid: string;
7825
+ survey_ids: number[];
7826
+ answered_at: string;
7827
+ questions: SurveyQuestion[];
7828
+ responses?: QuestionResponse[];
7829
+ }
7830
+ interface QuestionResponse extends LaravelModel {
7831
+ customer_survey_id: number;
7832
+ survey_question_id: number;
7833
+ question: string;
7834
+ answer: string;
7835
+ answer_detail: string[];
7836
+ }
7903
7837
 
7904
7838
  type SurveysOut = {
7905
7839
  surveys: Survey[];
@@ -7941,15 +7875,35 @@ type QuestionTypesOut = {
7941
7875
  question_types: QuestionType[];
7942
7876
  total: number;
7943
7877
  };
7878
+ type CustomerSurveyOut = {
7879
+ customer_survey: CustomerSurvey;
7880
+ };
7881
+ type CustomerSurveyIn = {
7882
+ questions: {
7883
+ feedback?: {
7884
+ title?: string;
7885
+ answer: string;
7886
+ complement?: string;
7887
+ };
7888
+ answer: string | string[] | boolean | number;
7889
+ id: number;
7890
+ }[];
7891
+ };
7892
+ type CustomerSurveyFinishIn = {
7893
+ to_be_contacted_name: string;
7894
+ to_be_contacted_phone: string;
7895
+ };
7944
7896
 
7945
7897
  declare class ApiSurveysService {
7946
7898
  private environments;
7947
7899
  private http;
7900
+ private appKey;
7948
7901
  /**
7949
7902
  * Base URL for surveys API endpoints.
7950
7903
  * @returns The configured surveys API URL or an empty string.
7951
7904
  */
7952
7905
  get url(): string;
7906
+ private appKeyHeader;
7953
7907
  /**
7954
7908
  * Retrieves surveys list based on query parameters.
7955
7909
  * @param params Query parameters used to filter, paginate, or sort surveys.
@@ -8010,6 +7964,26 @@ declare class ApiSurveysService {
8010
7964
  * @returns Observable stream with question types response data.
8011
7965
  */
8012
7966
  getQuestionTypes(params: QueryParams): Observable<QuestionTypesOut>;
7967
+ /**
7968
+ * Retrieves a customer survey by UUID.
7969
+ * @param uuid Customer survey identifier.
7970
+ * @returns Observable stream with customer survey data.
7971
+ */
7972
+ getCustomerSurvey(uuid: string): Observable<CustomerSurveyOut>;
7973
+ /**
7974
+ * Updates an existing customer survey by UUID.
7975
+ * @param uuid Customer survey identifier.
7976
+ * @param body Customer survey payload used to update the resource.
7977
+ * @returns Observable stream with updated customer survey data.
7978
+ */
7979
+ putCustomerSurvey(uuid: string, body: CustomerSurveyIn): Observable<CustomerSurveyOut>;
7980
+ /**
7981
+ * Marks a customer survey as finished by UUID.
7982
+ * @param uuid Customer survey identifier.
7983
+ * @param body Customer survey finish payload.
7984
+ * @returns Observable stream with updated customer survey data.
7985
+ */
7986
+ postCustomerSurveyFinish(uuid: string, body: CustomerSurveyFinishIn): Observable<CustomerSurveyOut>;
8013
7987
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiSurveysService, never>;
8014
7988
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
8015
7989
  }
@@ -8179,5 +8153,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8179
8153
  [header: string]: string | string[];
8180
8154
  };
8181
8155
 
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 };
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.0",
3
+ "version": "20.3.1",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [