@experteam-mx/ngx-services 20.2.3-dev3.1 → 20.3.0-dev-2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -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;
@@ -46,8 +47,8 @@ type Environment = {
46
47
  apiServicesUrl?: string;
47
48
  apiShipmentUrl?: string;
48
49
  apiSuppliesUrl?: string;
49
- apiSurveysUrl?: string;
50
50
  apiSurveysKey?: string;
51
+ apiSurveysUrl?: string;
51
52
  authCookie?: string;
52
53
  cacheTtl?: number;
53
54
  printUrl?: string;
@@ -132,6 +133,209 @@ interface TranslateLang {
132
133
  [langCode: string]: string;
133
134
  }
134
135
 
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
+
135
339
  interface IncomeType extends LaravelModel {
136
340
  code: string;
137
341
  name: string;
@@ -4621,6 +4825,14 @@ declare enum AlphaNumeric {
4621
4825
  alphabetic = "alphabetic",
4622
4826
  amount = "amount"
4623
4827
  }
4828
+ declare enum Group {
4829
+ check_in = "check_in",
4830
+ check_out = "check_out",
4831
+ movement = "movement",
4832
+ incident = "incident",
4833
+ expiration = "expiration",
4834
+ verification = "verification"
4835
+ }
4624
4836
 
4625
4837
  interface Checkpoint extends ActiveLessSymfonyModel {
4626
4838
  code: string;
@@ -4680,6 +4892,47 @@ interface ReEntryOfMissingPackages {
4680
4892
  packages: PackageMissing[];
4681
4893
  };
4682
4894
  }
4895
+ interface PackageInventory extends SymfonyModel {
4896
+ locationId: number | null;
4897
+ shipmentId: number | null;
4898
+ trackingNumber: string | null;
4899
+ shipmentTrackingNumber: string | null;
4900
+ destination: string | null;
4901
+ origin: string | null;
4902
+ inStock: boolean | null;
4903
+ canCheckOut: boolean | null;
4904
+ isExpired: boolean | null;
4905
+ isFirstMile: boolean | null;
4906
+ isMissing: boolean | null;
4907
+ position?: string | null;
4908
+ isLastStockUpdateOperation: boolean | null;
4909
+ lastStatusCode: string | null;
4910
+ lastStatusName: string | null;
4911
+ lastOperationTypeCode: string | null;
4912
+ lastOperationTypeName: string | null;
4913
+ checkInOperationTypeCode: string | null;
4914
+ checkInOperationTypeName: string | null;
4915
+ lastCheckpointCode: string | null;
4916
+ inventoryDays: number;
4917
+ }
4918
+ interface Status extends SymfonyModel {
4919
+ code: string;
4920
+ name: string;
4921
+ description: string | null;
4922
+ translations: {
4923
+ name: TranslateLang;
4924
+ };
4925
+ }
4926
+ interface OperationTypeInventory extends SymfonyModel {
4927
+ code: string;
4928
+ name: string;
4929
+ shortName: string | null;
4930
+ group: Group;
4931
+ countriesId: string[] | null;
4932
+ translations: {
4933
+ name: TranslateLang;
4934
+ };
4935
+ }
4683
4936
 
4684
4937
  type CheckpointsOut = {
4685
4938
  total: number;
@@ -4750,6 +5003,33 @@ type ReEntryOfMissingPackagesOut = {
4750
5003
  type ReEntryOfMissingPackagesIn = {
4751
5004
  packagesIds: number[];
4752
5005
  };
5006
+ type CourierCheckOutPackesOut = {
5007
+ packages: PackageInventory[];
5008
+ totalShipments: number;
5009
+ totalPackages: number;
5010
+ totalExpiredPackages: number;
5011
+ totalFirstMilePackages: number;
5012
+ totalStockUpdatePackages: number;
5013
+ };
5014
+ type PackageInStockDetailOut = {
5015
+ package: PackageInventory;
5016
+ };
5017
+ type StatusesOut = {
5018
+ statuses: Status[];
5019
+ total: number;
5020
+ };
5021
+ type OperationTypesInventoryOut = {
5022
+ operationTypes: OperationTypeInventory[];
5023
+ total: number;
5024
+ };
5025
+ type StockUpdatePackagesOut = {
5026
+ packages: PackageInventory[];
5027
+ totalShipments: number;
5028
+ totalPackages: number;
5029
+ totalExpiredPackages: number;
5030
+ totalFirstMilePackages: number;
5031
+ totalStockUpdatePackages: number;
5032
+ };
4753
5033
 
4754
5034
  declare class ApiInventoriesService {
4755
5035
  private environments;
@@ -4900,6 +5180,41 @@ declare class ApiInventoriesService {
4900
5180
  * @returns {Observable<ReEntryOfMissingPackagesOut>} An observable detail of the updated incident reason complement.
4901
5181
  */
4902
5182
  putReEntryOfMissingPackages(body: ReEntryOfMissingPackagesIn): Observable<ReEntryOfMissingPackagesOut>;
5183
+ /**
5184
+ * Fetches the packages details based on the provided operation check out ID.
5185
+ *
5186
+ * @param {number} id - The operation check out id
5187
+ * @return {Observable<CourierCheckOutPackesOut>} An observable that emits the packages data.
5188
+ */
5189
+ getCourierCheckOutPackages(id: Number): Observable<CourierCheckOutPackesOut>;
5190
+ /**
5191
+ * Fetches the statuses based on query parameters.
5192
+ *
5193
+ * @param {QueryParams} params - The query parameters for filtering the statuses.
5194
+ * @return {Observable<StatusesOut>} An observable that emits the statuses.
5195
+ */
5196
+ getStatuses(params: QueryParams): Observable<StatusesOut>;
5197
+ /**
5198
+ * Fetches the operation types based on query parameters.
5199
+ *
5200
+ * @param {QueryParams} params - The query parameters for filtering the operation types.
5201
+ * @return {Observable<OperationTypesInventoryOut>} An observable that emits the operation types.
5202
+ */
5203
+ getOperationTypes(params: QueryParams): Observable<OperationTypesInventoryOut>;
5204
+ /**
5205
+ * Fetches the package in stock details based on query parameters.
5206
+ *
5207
+ * @param {QueryParams} params - The query parameters for get the package in stock.
5208
+ * @return {Observable<PackageInStockDetailOut>} An observable that emits the package detail in stock.
5209
+ */
5210
+ getPackageInStockDetail(params: QueryParams): Observable<PackageInStockDetailOut>;
5211
+ /**
5212
+ * Fetches the packages details based on the provided operation stock update ID.
5213
+ *
5214
+ * @param {number} id - The operation stock update id
5215
+ * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5216
+ */
5217
+ getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
4903
5218
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
4904
5219
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
4905
5220
  }
@@ -6633,6 +6948,83 @@ interface HistoryReportCheckpoint extends ApiModel {
6633
6948
  remark: string;
6634
6949
  local_created_at: string;
6635
6950
  }
6951
+ interface BillingDetailsReport extends ActiveLessLaravelModel {
6952
+ authorization: string;
6953
+ cancellation_reason: string | null;
6954
+ company_country_id: number;
6955
+ company_id: number;
6956
+ country_id: number;
6957
+ customer_company_name: string;
6958
+ customer_identification_number: string;
6959
+ customer_identification_type_name: string;
6960
+ document_category_name_EN: string;
6961
+ document_category_name_ES: string;
6962
+ document_category_name_FR: string;
6963
+ document_category_name_PT: string;
6964
+ document_category_name: string;
6965
+ document_full_number: string;
6966
+ document_id: number;
6967
+ document_sap_full_number: string;
6968
+ document_status_name_EN: string;
6969
+ document_status_name_ES: string;
6970
+ document_status_name_FR: string;
6971
+ document_status_name_PT: string;
6972
+ document_status_name: string;
6973
+ document_status: number;
6974
+ document_type_name_EN: string;
6975
+ document_type_name_ES: string;
6976
+ document_type_name_FR: string;
6977
+ document_type_name_PT: string;
6978
+ document_type_name: string;
6979
+ exchange: number;
6980
+ extracharge_codes: string[];
6981
+ installation_id: number;
6982
+ invoice_bill_state: string;
6983
+ is_expand?: boolean;
6984
+ issue_date: string;
6985
+ local_currency_amount_received: number;
6986
+ location_id: number;
6987
+ payments: BillingDetailsPayment[];
6988
+ shipment_account: string;
6989
+ shipment_destination_service_area_code: string;
6990
+ shipment_discount_amount_usd: number;
6991
+ shipment_discount_amount: number;
6992
+ shipment_freight_amount_usd: number;
6993
+ shipment_freight_amount: number;
6994
+ shipment_fuel_amount_usd: number;
6995
+ shipment_fuel_amount: number;
6996
+ shipment_invoiced_weight: number;
6997
+ shipment_origin_service_area_code: string;
6998
+ shipment_other_services_amount_usd: number;
6999
+ shipment_other_services_amount: number;
7000
+ shipment_packages_count: number;
7001
+ shipment_payer_account?: string;
7002
+ shipment_product_local_code: string;
7003
+ shipment_protection_value_amount_usd: number;
7004
+ shipment_protection_value_amount: number;
7005
+ shipment_real_weight: number;
7006
+ shipment_subtotal_usd: number;
7007
+ shipment_subtotal: number;
7008
+ shipment_total_usd: number;
7009
+ shipment_total: number;
7010
+ shipment_tracking_number: string;
7011
+ shipment_vat_usd: number;
7012
+ shipment_vat: number;
7013
+ user_id: number;
7014
+ user_username: string;
7015
+ validity: string;
7016
+ volumetric_weight: number;
7017
+ }
7018
+ interface BillingDetailsPayment extends ApiModel {
7019
+ country_payment_type_name: string;
7020
+ currency_code: string;
7021
+ amount_received: number;
7022
+ translations?: {
7023
+ name: {
7024
+ [key: string]: string | null;
7025
+ };
7026
+ };
7027
+ }
6636
7028
 
6637
7029
  type CollectionPaymentsOut = {
6638
7030
  collection_payments: CollectionPayment[];
@@ -6715,6 +7107,11 @@ type InventoriesReportOut = {
6715
7107
  total: number;
6716
7108
  transaction_id?: string;
6717
7109
  };
7110
+ interface BillingDetailsReportOut {
7111
+ billing_details: BillingDetailsReport[];
7112
+ total: number;
7113
+ transaction_id?: string;
7114
+ }
6718
7115
 
6719
7116
  declare class ApiReportsService {
6720
7117
  private environments;
@@ -6861,6 +7258,13 @@ declare class ApiReportsService {
6861
7258
  * @returns An observable that emits the list of inventories.
6862
7259
  */
6863
7260
  getInventoriesReport(params: QueryParams): Observable<InventoriesReportOut>;
7261
+ /**
7262
+ * Retrieves billing details based on the provided query parameters.
7263
+ *
7264
+ * @param params - The query parameters used to filter the billing details.
7265
+ * @returns An observable that emits the billing details.
7266
+ */
7267
+ getBillingDetails(params: QueryParams): Observable<BillingDetailsReportOut>;
6864
7268
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
6865
7269
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
6866
7270
  }
@@ -8042,5 +8446,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8042
8446
  [header: string]: string | string[];
8043
8447
  };
8044
8448
 
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 };
8449
+ 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, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8450
+ 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, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, 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, 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.2.3-dev3.1",
3
+ "version": "20.3.0-dev-2.2",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [