@experteam-mx/ngx-services 20.5.0 → 20.6.0-dev2.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
@@ -1044,6 +1044,13 @@ declare enum ViewSectionOption {
1044
1044
  BILLING = "billing",
1045
1045
  CUSTOMER_RESTRICTION = "customerRestriction"
1046
1046
  }
1047
+ declare enum ShipmentIncomeTypeCode {
1048
+ MANUAL = "EM",
1049
+ MOBILE = "EE",
1050
+ FOLIO = "EF",
1051
+ EMPLOYEE = "EEM",
1052
+ EMBASSY = "EMB"
1053
+ }
1047
1054
 
1048
1055
  interface Country extends SymfonyModel {
1049
1056
  name: string;
@@ -1186,7 +1193,7 @@ interface GenericFolio extends SymfonyModel {
1186
1193
  customer: string;
1187
1194
  accountNumber: string;
1188
1195
  content: string;
1189
- packaging: true;
1196
+ packaging: boolean;
1190
1197
  destinationFullName: string;
1191
1198
  destinationAddressLine1: string;
1192
1199
  destinationAddressLine2: string;
@@ -1202,19 +1209,28 @@ interface GenericFolio extends SymfonyModel {
1202
1209
  destinationEmail: string;
1203
1210
  countryReferenceProductIds: number[];
1204
1211
  productLocalCodes: string;
1212
+ accountValidationData: {
1213
+ status: boolean;
1214
+ accountStatus: string;
1215
+ creditStatus: string;
1216
+ country: string;
1217
+ isCreditStop: boolean;
1218
+ isImportEnabled: boolean;
1219
+ accountType: string;
1220
+ };
1205
1221
  }
1206
1222
  interface Product extends SymfonyModel {
1207
- globalCode: number;
1208
- localCode: string;
1223
+ discounts: [];
1224
+ globalCode: string;
1209
1225
  globalName: string;
1210
- localName: string;
1211
1226
  isDocument: string;
1227
+ localCode: string;
1228
+ localName: string;
1212
1229
  restrictedAccounts: {
1213
1230
  id: string;
1214
1231
  number: string;
1215
1232
  isActive: boolean;
1216
1233
  }[];
1217
- discounts: [];
1218
1234
  }
1219
1235
  interface ShipmentIncomeType extends SymfonyModel {
1220
1236
  countryId: number;
@@ -1261,6 +1277,27 @@ interface PackageLocation extends SymfonyModel {
1261
1277
  interface CountryToExportReason extends ApiModel {
1262
1278
  name: string;
1263
1279
  }
1280
+ interface TradingTransactionType extends SymfonyModel {
1281
+ code: string;
1282
+ name: string;
1283
+ description: string;
1284
+ }
1285
+ interface CommercialInvoiceType extends SymfonyModel {
1286
+ code: string;
1287
+ name: string;
1288
+ description: string;
1289
+ excludeCountryDestinationIds?: number[];
1290
+ }
1291
+ interface Commodity extends SymfonyModel {
1292
+ code: string;
1293
+ name: string;
1294
+ countryId: number;
1295
+ }
1296
+ interface QuantityUnit extends SymfonyModel {
1297
+ code: string;
1298
+ name: string;
1299
+ quantityUnitOrder: number;
1300
+ }
1264
1301
  interface ExportReason extends SymfonyModel {
1265
1302
  code: string;
1266
1303
  name: string;
@@ -1270,6 +1307,19 @@ interface ExportReason extends SymfonyModel {
1270
1307
  interface ExportReasonTypes extends SymfonyModel {
1271
1308
  code: string;
1272
1309
  name: string;
1310
+ description: string;
1311
+ }
1312
+ interface ShipmentDescription extends SymfonyModel {
1313
+ name: string;
1314
+ countryId: number;
1315
+ }
1316
+ interface PriceOverrideApprover extends SymfonyModel {
1317
+ name: string;
1318
+ countryId: number;
1319
+ }
1320
+ interface PriceOverrideReason extends SymfonyModel {
1321
+ name: string;
1322
+ countryId: number;
1273
1323
  }
1274
1324
 
1275
1325
  type OperationTypesOut = {
@@ -1324,6 +1374,9 @@ type ZonesOut = {
1324
1374
  total: number;
1325
1375
  zones: Zone[];
1326
1376
  };
1377
+ type ZoneOut = {
1378
+ zone: Zone;
1379
+ };
1327
1380
  type ManagementAreasOut = {
1328
1381
  total: number;
1329
1382
  managementAreas: ManagementArea[];
@@ -1353,6 +1406,9 @@ type LanguagesOut = {
1353
1406
  total: number;
1354
1407
  languages: Language[];
1355
1408
  };
1409
+ type LanguageOut = {
1410
+ language: Language;
1411
+ };
1356
1412
  type UnitsOut = {
1357
1413
  total: number;
1358
1414
  units: Unit[];
@@ -1484,12 +1540,40 @@ type IdentificationTypeNumberValidationIn = {
1484
1540
  };
1485
1541
  type IdentificationTypeNumberValidationOut = {};
1486
1542
  type BusinessPartyTraderTypesOut = {
1487
- total: number;
1488
1543
  businessPartyTraderTypes: BusinessPartyTraderType[];
1489
- };
1490
- type PackageLocationsData = {
1491
1544
  total: number;
1545
+ };
1546
+ type PackageLocationsOut = {
1492
1547
  packageLocations: PackageLocation[];
1548
+ total: number;
1549
+ };
1550
+ type TradingTransactionTypesOut = {
1551
+ tradingTransactionTypes: TradingTransactionType[];
1552
+ total: number;
1553
+ };
1554
+ type DocumentTypesOut = {
1555
+ documentTypes: CommercialInvoiceType[];
1556
+ total: number;
1557
+ };
1558
+ type CommoditiesOut = {
1559
+ commodities: Commodity[];
1560
+ total: number;
1561
+ };
1562
+ type QuantityUnitsOut = {
1563
+ total: number;
1564
+ quantityUnits: QuantityUnit[];
1565
+ };
1566
+ type ShipmentDescriptionsOut = {
1567
+ shipmentDescriptions: ShipmentDescription[];
1568
+ total: number;
1569
+ };
1570
+ type PriceOverrideApproversOut = {
1571
+ priceOverrideApprovers: PriceOverrideApprover[];
1572
+ total: number;
1573
+ };
1574
+ type PriceOverrideReasonsOut = {
1575
+ priceOverrideReasons: PriceOverrideReason[];
1576
+ total: number;
1493
1577
  };
1494
1578
  type ExportReasonsOut = {
1495
1579
  exportReasons: ExportReason[];
@@ -1526,7 +1610,7 @@ declare class ApiCatalogsService {
1526
1610
  */
1527
1611
  getOperationTypes(params: QueryParams): Observable<OperationTypesOut>;
1528
1612
  /**
1529
- * Retrieves the list of identificatios types
1613
+ * Retrieves the list of identifications types
1530
1614
  *
1531
1615
  * @param {QueryParams} params - The query parameters used to fetch the identification types.
1532
1616
  * @return {Observable<IdentificationTypesOut[]>} An observable that emits an array of identification type.
@@ -1535,7 +1619,7 @@ declare class ApiCatalogsService {
1535
1619
  /**
1536
1620
  * Retrieve a single identification type by its id.
1537
1621
  *
1538
- * Sends an HTTP GET request to the indentification type endpoint and returns an Observable that emits
1622
+ * Sends an HTTP GET request to the identification type endpoint and returns an Observable that emits
1539
1623
  * the IdentificationTypeOut payload extracted from the API success envelope.
1540
1624
  *
1541
1625
  * @param id - The numeric identifier of the identification type to fetch.
@@ -1651,6 +1735,13 @@ declare class ApiCatalogsService {
1651
1735
  * @return {Observable<ZonesOut>} An observable that emits the fetched zones data.
1652
1736
  */
1653
1737
  getZones(params: QueryParams): Observable<ZonesOut>;
1738
+ /**
1739
+ * Retrieves a zone by its ID.
1740
+ *
1741
+ * @param {number} id - The ID of the zone.
1742
+ * @return {Observable<ZoneOut>} An observable containing the zone data.
1743
+ */
1744
+ getZone(id: number): Observable<ZoneOut>;
1654
1745
  /**
1655
1746
  * Fetches the management areas based on the provided query parameters.
1656
1747
  *
@@ -1700,6 +1791,13 @@ declare class ApiCatalogsService {
1700
1791
  * @return {Observable<LanguagesOut>} An observable that emits the available languages.
1701
1792
  */
1702
1793
  getLanguages(params: QueryParams): Observable<LanguagesOut>;
1794
+ /**
1795
+ * Retrieves a language by its ID.
1796
+ *
1797
+ * @param {number} id - The ID of the language.
1798
+ * @return {Observable<LanguageOut>} An observable containing the language data.
1799
+ */
1800
+ getLanguage(id: number): Observable<LanguageOut>;
1703
1801
  /**
1704
1802
  * Fetches the available units from the API based on the provided query parameters.
1705
1803
  *
@@ -1728,6 +1826,14 @@ declare class ApiCatalogsService {
1728
1826
  * @return {Observable<GenericFoliosOut>} An observable containing the fetched generic folios.
1729
1827
  */
1730
1828
  getGenericFolios(params: QueryParams): Observable<GenericFoliosOut>;
1829
+ /**
1830
+ * Retrieves a generic folio by its country ID and code.
1831
+ *
1832
+ * @param {number} countryId - The ID of the country.
1833
+ * @param {string} code - The code of the generic folio.
1834
+ * @return {Observable<GenericFolioOut>} An observable containing the generic folio data.
1835
+ */
1836
+ getGenericFolioByCountryAndCode(countryId: number, code: string): Observable<GenericFolioOut>;
1731
1837
  /**
1732
1838
  * Sends a POST request to create or update a generic folio.
1733
1839
  *
@@ -1751,6 +1857,13 @@ declare class ApiCatalogsService {
1751
1857
  * @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
1752
1858
  */
1753
1859
  pathGenericFolio(id: number, body: Partial<GenericFolioIn>): Observable<GenericFolioOut>;
1860
+ /**
1861
+ * Retrieves a product by its unique identifier.
1862
+ *
1863
+ * @param {number} id - The unique identifier of the product to retrieve.
1864
+ * @return {Observable<ProductOut>} An observable containing the product data.
1865
+ */
1866
+ getProduct(id: number): Observable<ProductOut>;
1754
1867
  /**
1755
1868
  * Sends a POST request to create a new product.
1756
1869
  *
@@ -1961,7 +2074,49 @@ declare class ApiCatalogsService {
1961
2074
  * @param params - Query parameters to filter or configure the package locations request
1962
2075
  * @returns An Observable that emits the package locations data
1963
2076
  */
1964
- getPackageLocations(params: QueryParams): Observable<PackageLocationsData>;
2077
+ getPackageLocations(params: QueryParams): Observable<PackageLocationsOut>;
2078
+ /**
2079
+ * Retrieves trading transaction types based on the provided query parameters.
2080
+ * @param params - Query parameters to filter or configure the trading transaction types request
2081
+ * @returns An Observable that emits the trading transaction types data
2082
+ */
2083
+ getTradingTransactionTypes(params: QueryParams): Observable<TradingTransactionTypesOut>;
2084
+ /**
2085
+ * Retrieves document types based on the provided query parameters.
2086
+ * @param params - Query parameters to filter or configure the document types request
2087
+ * @returns An Observable that emits the document types data
2088
+ */
2089
+ getDocumentTypes(params: QueryParams): Observable<DocumentTypesOut>;
2090
+ /**
2091
+ * Retrieves commodities based on the provided query parameters.
2092
+ * @param params - Query parameters to filter or configure the commodities request
2093
+ * @returns An Observable that emits the commodities data
2094
+ */
2095
+ getCommodities(params: QueryParams): Observable<CommoditiesOut>;
2096
+ /**
2097
+ * Retrieves quantity units based on the provided query parameters.
2098
+ * @param params - Query parameters to filter or configure the quantity units request
2099
+ * @returns An Observable that emits the quantity units data
2100
+ */
2101
+ getQuantityUnits(params: QueryParams): Observable<QuantityUnitsOut>;
2102
+ /**
2103
+ * Retrieves shipment descriptions based on the provided query parameters.
2104
+ * @param params - Query parameters to filter or configure the shipment descriptions request
2105
+ * @returns An Observable that emits the shipment descriptions data
2106
+ */
2107
+ getShipmentDescriptions(params: QueryParams): Observable<ShipmentDescriptionsOut>;
2108
+ /**
2109
+ * Retrieves price override approvers based on the provided query parameters.
2110
+ * @param params - Query parameters to filter or configure the price override approvers request
2111
+ * @returns An Observable that emits the price override approvers data
2112
+ */
2113
+ getPriceOverrideApprovers(params: QueryParams): Observable<PriceOverrideApproversOut>;
2114
+ /**
2115
+ * Retrieves price override reasons based on the provided query parameters.
2116
+ * @param params - Query parameters to filter or configure the price override reasons request
2117
+ * @returns An Observable that emits the price override reasons data
2118
+ */
2119
+ getPriceOverrideReasons(params: QueryParams): Observable<PriceOverrideReasonsOut>;
1965
2120
  /**
1966
2121
  * Retrieves export reasons based on the provided query parameters.
1967
2122
  * @param params - Query parameters to filter, sort, or paginate export reasons
@@ -3964,10 +4119,6 @@ interface Item extends ActiveLessSymfonyModel {
3964
4119
  manufactureCountry: ManufactureCountry;
3965
4120
  commodity: Commodity;
3966
4121
  }
3967
- interface QuantityUnit extends SymfonyModel {
3968
- code: string;
3969
- name: string;
3970
- }
3971
4122
  interface ManufactureCountry {
3972
4123
  id: string;
3973
4124
  code: string;
@@ -3981,21 +4132,11 @@ interface ManufactureCountry {
3981
4132
  zones: string[];
3982
4133
  isoCode: string;
3983
4134
  }
3984
- interface Commodity extends SymfonyModel {
3985
- code: string;
3986
- name: string;
3987
- countryId: number;
3988
- }
3989
4135
  interface DocumentTypeComposition extends SymfonyModel {
3990
4136
  code: string;
3991
4137
  name: string;
3992
4138
  description: string;
3993
4139
  }
3994
- interface TradingTransactionType extends SymfonyModel {
3995
- code: string;
3996
- name: string;
3997
- description: string;
3998
- }
3999
4140
  interface DocumentFunction extends SymfonyModel {
4000
4141
  code: string;
4001
4142
  name: string;
@@ -5213,6 +5354,11 @@ interface OperationTypeInventory extends SymfonyModel {
5213
5354
  name: TranslateLang;
5214
5355
  };
5215
5356
  }
5357
+ interface CourierRoute extends SymfonyModel {
5358
+ number: string;
5359
+ name: string;
5360
+ locationId: number;
5361
+ }
5216
5362
 
5217
5363
  type CheckpointsOut = {
5218
5364
  total: number;
@@ -5310,6 +5456,19 @@ type StockUpdatePackagesOut = {
5310
5456
  totalFirstMilePackages: number;
5311
5457
  totalStockUpdatePackages: number;
5312
5458
  };
5459
+ type CourierRoutesOut = {
5460
+ courierRoutes: CourierRoute[];
5461
+ total: number;
5462
+ };
5463
+ type CourierRouteOut = {
5464
+ courierRoute: CourierRoute;
5465
+ };
5466
+ type CourierRouteIn = {
5467
+ number: string;
5468
+ name: string;
5469
+ locationId: number;
5470
+ isActive: boolean;
5471
+ };
5313
5472
 
5314
5473
  declare class ApiInventoriesService {
5315
5474
  private environments;
@@ -5495,6 +5654,42 @@ declare class ApiInventoriesService {
5495
5654
  * @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
5496
5655
  */
5497
5656
  getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
5657
+ /**
5658
+ * Retrieves a list of courier routes based on query parameters.
5659
+ *
5660
+ * @param {QueryParams} params - Query parameters for filtering the courier routes.
5661
+ * @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
5662
+ */
5663
+ getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
5664
+ /**
5665
+ * Fetches the courier route details based on the provided courier route ID.
5666
+ *
5667
+ * @param {number} id - The courier route id
5668
+ * @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
5669
+ */
5670
+ getCourierRoute(id: Number): Observable<CourierRouteOut>;
5671
+ /**
5672
+ * Creates a new courier route.
5673
+ *
5674
+ * @param {CourierRouteIn} body - The data for the new courier route.
5675
+ * @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
5676
+ */
5677
+ postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
5678
+ /**
5679
+ * Update an existing courier route.
5680
+ *
5681
+ * @param {number} id - The identifier of the courier route record to update.
5682
+ * @param {CourierRouteIn} body - The courier route data to be updated.
5683
+ * @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
5684
+ */
5685
+ putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
5686
+ /**
5687
+ * Delete an existing courier route.
5688
+ *
5689
+ * @param {number} id - The unique identifier of the courier route to be deleted.
5690
+ * @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
5691
+ */
5692
+ deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
5498
5693
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
5499
5694
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
5500
5695
  }
@@ -8767,5 +8962,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8767
8962
  [header: string]: string | string[];
8768
8963
  };
8769
8964
 
8770
- 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, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8771
- 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, Bank, BankAccount, BankAccountType, BankAccountsOut, 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, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, 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, CountryToExportReason, 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, Deposit, DepositIn, DepositOut, 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, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, 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, InvoiceCancellationIn, InvoiceReport, 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, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, 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 };
8965
+ 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, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8966
+ 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, Bank, BankAccount, BankAccountType, BankAccountsOut, 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, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceType, CommoditiesOut, 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, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, 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, Deposit, DepositIn, DepositOut, 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, DocumentTypesOut, 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, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, 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, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, 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, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, 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, PackageLocationsOut, 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, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, 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, ShipmentDescription, ShipmentDescriptionsOut, 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, TradingTransactionTypesOut, 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, ZoneOut, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.5.0",
3
+ "version": "20.6.0-dev2.1",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [
@@ -41,8 +41,8 @@
41
41
  "tslib": "^2.8.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@angular/common": "^20.0.0",
45
- "@angular/core": "^20.0.0",
44
+ "@angular/common": "^20.3.25",
45
+ "@angular/core": "^20.3.25",
46
46
  "ngx-cookie-service": "^20.0.0",
47
47
  "pusher-js": "^7.5.0"
48
48
  },