@experteam-mx/ngx-services 20.5.0 → 20.6.0-dev1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -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;
@@ -8033,13 +8174,23 @@ interface EmbassyShipment extends SymfonyModel {
8033
8174
  createdAt: string;
8034
8175
  updatedAt: string;
8035
8176
  }
8036
- interface SignaturePageSetting extends SymfonyModel {
8037
- country: Country;
8177
+ interface DocumentConfiguration extends SymfonyModel {
8178
+ documentType: string;
8179
+ country: CountryToDocumentConfig;
8180
+ title: string | null;
8181
+ content: string | null;
8182
+ signaturePageSetting: SignaturePageSetting | null;
8183
+ }
8184
+ interface SignaturePageSetting extends ApiModel {
8038
8185
  isDefault: boolean;
8039
8186
  termsAndCondition: string | null;
8040
8187
  marketingConsent: string | null;
8041
8188
  additionalVerbiage: string | null;
8042
8189
  }
8190
+ interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
8191
+ code: string;
8192
+ name: string;
8193
+ }
8043
8194
 
8044
8195
  type ValidateAccountIn = {
8045
8196
  accountValue: string;
@@ -8135,12 +8286,12 @@ type EmbassyShipmentsOut = {
8135
8286
  total: number;
8136
8287
  embassyShipments: EmbassyShipment[];
8137
8288
  };
8138
- type SignaturePageSettingsOut = {
8289
+ type DocumentConfigurationsOut = {
8139
8290
  total: number;
8140
- signaturePageSettings: SignaturePageSetting[];
8291
+ documentConfigurations: DocumentConfiguration[];
8141
8292
  };
8142
- type SignaturePageSettingOut = {
8143
- signaturePageSetting: SignaturePageSetting;
8293
+ type DocumentConfigurationOut = {
8294
+ documentConfiguration: DocumentConfiguration;
8144
8295
  };
8145
8296
  type EmbassyShipmentIn = {
8146
8297
  countryId: number;
@@ -8163,13 +8314,25 @@ type EmbassyShipmentIn = {
8163
8314
  businessPartyTraderTypeId: number | null;
8164
8315
  isActive: boolean;
8165
8316
  };
8166
- type SignaturePageSettingIn = {
8317
+ type DocumentConfigurationIn = {
8167
8318
  countryId: number;
8319
+ documentType: string;
8320
+ title?: string | null;
8321
+ content?: string | null;
8322
+ isActive: boolean;
8323
+ signaturePageSetting?: SignaturePageSettingIn | null;
8324
+ };
8325
+ type SignaturePageSettingIn = {
8168
8326
  isDefault: boolean;
8169
8327
  termsAndCondition: string | null;
8170
8328
  marketingConsent: string | null;
8171
8329
  additionalVerbiage: string | null;
8172
- isActive: boolean;
8330
+ };
8331
+ type DocumentConfigurationsPreviewIn = {
8332
+ html: string;
8333
+ };
8334
+ type DocumentConfigurationsPreviewOut = {
8335
+ preview: string;
8173
8336
  };
8174
8337
  interface EmbassyShipmentOut {
8175
8338
  embassyShipment: EmbassyShipment;
@@ -8253,31 +8416,41 @@ declare class ApiShipmentsService {
8253
8416
  */
8254
8417
  putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
8255
8418
  /**
8256
- * Retrieves a paginated list of signature page settings
8257
- * @param {QueryParams} params - Query parameters for filtering and pagination
8258
- * @returns {Observable<SignaturePageSettingsOut>} Observable containing the list of signature page settings and pagination metadata
8419
+ * Retrieves a paginated list of document configurations.
8420
+ *
8421
+ * @param {QueryParams} params - Query parameters used for filtering, sorting, and pagination.
8422
+ * @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
8259
8423
  */
8260
- getSignaturePageSettings(params: QueryParams): Observable<SignaturePageSettingsOut>;
8424
+ getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
8261
8425
  /**
8262
- * Retrieves the details of a signature page setting based on its ID.
8426
+ * Retrieves a document configuration by its identifier.
8263
8427
  *
8264
- * @param {number} id - The identifier of the signature page setting to fetch.
8265
- * @return {Observable<SignaturePageSettingOut>} An observable that emits the signature page setting data.
8428
+ * @param {number} id - The unique identifier of the document configuration.
8429
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
8266
8430
  */
8267
- getSignaturePageSetting(id: number): Observable<SignaturePageSettingOut>;
8431
+ getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
8268
8432
  /**
8269
- * Creates a new signature page setting
8270
- * @param {SignaturePageSettingIn} body - The signature page setting data to create
8271
- * @returns {Observable<SignaturePageSettingOut>} Observable containing the created signature page setting with its assigned ID
8433
+ * Creates a new document configuration.
8434
+ *
8435
+ * @param {DocumentConfigurationIn} body - The document configuration data to create.
8436
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
8272
8437
  */
8273
- postSignaturePageSetting(body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
8438
+ postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
8274
8439
  /**
8275
- * Updates an existing signature page setting
8276
- * @param {number} id - The unique identifier of the signature page setting to update
8277
- * @param {SignaturePageSettingIn} body - The updated signature page setting data
8278
- * @returns {Observable<SignaturePageSettingOut>} Observable containing the updated signature page setting
8440
+ * Updates an existing document configuration.
8441
+ *
8442
+ * @param {number} id - The unique identifier of the document configuration to update.
8443
+ * @param {DocumentConfigurationIn} body - The updated document configuration data.
8444
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
8445
+ */
8446
+ putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
8447
+ /**
8448
+ * Generates a preview for a document configuration.
8449
+ *
8450
+ * @param {DocumentConfigurationsPreviewIn} body - The data used to generate the document preview.
8451
+ * @returns {Observable<DocumentConfigurationsPreviewOut>} An observable containing the generated document preview.
8279
8452
  */
8280
- putSignaturePageSetting(id: number, body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
8453
+ postDocumentConfigurationPreview(body: DocumentConfigurationsPreviewIn): Observable<DocumentConfigurationsPreviewOut>;
8281
8454
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
8282
8455
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
8283
8456
  }
@@ -8767,5 +8940,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8767
8940
  [header: string]: string | string[];
8768
8941
  };
8769
8942
 
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 };
8943
+ 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 };
8944
+ 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, CountryToDocumentConfig, 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, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, 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, 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-dev1.0",
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
  },