@experteam-mx/ngx-services 20.4.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/fesm2022/experteam-mx-ngx-services.mjs +250 -191
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +225 -92
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -35,7 +35,6 @@ type Environment = {
|
|
|
35
35
|
apiDiscountsUrl?: string;
|
|
36
36
|
apiEToolsAutoBilling?: string;
|
|
37
37
|
apiEventsUrl?: string;
|
|
38
|
-
apiExternalOperationsKey?: string;
|
|
39
38
|
apiExternalOperationsUrl?: string;
|
|
40
39
|
apiInventoriesUrl?: string;
|
|
41
40
|
apiInvoicesUrl?: string;
|
|
@@ -47,7 +46,6 @@ type Environment = {
|
|
|
47
46
|
apiServicesUrl?: string;
|
|
48
47
|
apiShipmentUrl?: string;
|
|
49
48
|
apiSuppliesUrl?: string;
|
|
50
|
-
apiSurveysKey?: string;
|
|
51
49
|
apiSurveysUrl?: string;
|
|
52
50
|
authCookie?: string;
|
|
53
51
|
cacheTtl?: number;
|
|
@@ -1046,6 +1044,13 @@ declare enum ViewSectionOption {
|
|
|
1046
1044
|
BILLING = "billing",
|
|
1047
1045
|
CUSTOMER_RESTRICTION = "customerRestriction"
|
|
1048
1046
|
}
|
|
1047
|
+
declare enum ShipmentIncomeTypeCode {
|
|
1048
|
+
MANUAL = "EM",
|
|
1049
|
+
MOBILE = "EE",
|
|
1050
|
+
FOLIO = "EF",
|
|
1051
|
+
EMPLOYEE = "EEM",
|
|
1052
|
+
EMBASSY = "EMB"
|
|
1053
|
+
}
|
|
1049
1054
|
|
|
1050
1055
|
interface Country extends SymfonyModel {
|
|
1051
1056
|
name: string;
|
|
@@ -1188,7 +1193,7 @@ interface GenericFolio extends SymfonyModel {
|
|
|
1188
1193
|
customer: string;
|
|
1189
1194
|
accountNumber: string;
|
|
1190
1195
|
content: string;
|
|
1191
|
-
packaging:
|
|
1196
|
+
packaging: boolean;
|
|
1192
1197
|
destinationFullName: string;
|
|
1193
1198
|
destinationAddressLine1: string;
|
|
1194
1199
|
destinationAddressLine2: string;
|
|
@@ -1204,19 +1209,28 @@ interface GenericFolio extends SymfonyModel {
|
|
|
1204
1209
|
destinationEmail: string;
|
|
1205
1210
|
countryReferenceProductIds: number[];
|
|
1206
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
|
+
};
|
|
1207
1221
|
}
|
|
1208
1222
|
interface Product extends SymfonyModel {
|
|
1209
|
-
|
|
1210
|
-
|
|
1223
|
+
discounts: [];
|
|
1224
|
+
globalCode: string;
|
|
1211
1225
|
globalName: string;
|
|
1212
|
-
localName: string;
|
|
1213
1226
|
isDocument: string;
|
|
1227
|
+
localCode: string;
|
|
1228
|
+
localName: string;
|
|
1214
1229
|
restrictedAccounts: {
|
|
1215
1230
|
id: string;
|
|
1216
1231
|
number: string;
|
|
1217
1232
|
isActive: boolean;
|
|
1218
1233
|
}[];
|
|
1219
|
-
discounts: [];
|
|
1220
1234
|
}
|
|
1221
1235
|
interface ShipmentIncomeType extends SymfonyModel {
|
|
1222
1236
|
countryId: number;
|
|
@@ -1263,6 +1277,27 @@ interface PackageLocation extends SymfonyModel {
|
|
|
1263
1277
|
interface CountryToExportReason extends ApiModel {
|
|
1264
1278
|
name: string;
|
|
1265
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
|
+
}
|
|
1266
1301
|
interface ExportReason extends SymfonyModel {
|
|
1267
1302
|
code: string;
|
|
1268
1303
|
name: string;
|
|
@@ -1272,6 +1307,19 @@ interface ExportReason extends SymfonyModel {
|
|
|
1272
1307
|
interface ExportReasonTypes extends SymfonyModel {
|
|
1273
1308
|
code: string;
|
|
1274
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;
|
|
1275
1323
|
}
|
|
1276
1324
|
|
|
1277
1325
|
type OperationTypesOut = {
|
|
@@ -1326,6 +1374,9 @@ type ZonesOut = {
|
|
|
1326
1374
|
total: number;
|
|
1327
1375
|
zones: Zone[];
|
|
1328
1376
|
};
|
|
1377
|
+
type ZoneOut = {
|
|
1378
|
+
zone: Zone;
|
|
1379
|
+
};
|
|
1329
1380
|
type ManagementAreasOut = {
|
|
1330
1381
|
total: number;
|
|
1331
1382
|
managementAreas: ManagementArea[];
|
|
@@ -1355,6 +1406,9 @@ type LanguagesOut = {
|
|
|
1355
1406
|
total: number;
|
|
1356
1407
|
languages: Language[];
|
|
1357
1408
|
};
|
|
1409
|
+
type LanguageOut = {
|
|
1410
|
+
language: Language;
|
|
1411
|
+
};
|
|
1358
1412
|
type UnitsOut = {
|
|
1359
1413
|
total: number;
|
|
1360
1414
|
units: Unit[];
|
|
@@ -1486,12 +1540,40 @@ type IdentificationTypeNumberValidationIn = {
|
|
|
1486
1540
|
};
|
|
1487
1541
|
type IdentificationTypeNumberValidationOut = {};
|
|
1488
1542
|
type BusinessPartyTraderTypesOut = {
|
|
1489
|
-
total: number;
|
|
1490
1543
|
businessPartyTraderTypes: BusinessPartyTraderType[];
|
|
1491
|
-
};
|
|
1492
|
-
type PackageLocationsData = {
|
|
1493
1544
|
total: number;
|
|
1545
|
+
};
|
|
1546
|
+
type PackageLocationsOut = {
|
|
1494
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;
|
|
1495
1577
|
};
|
|
1496
1578
|
type ExportReasonsOut = {
|
|
1497
1579
|
exportReasons: ExportReason[];
|
|
@@ -1528,7 +1610,7 @@ declare class ApiCatalogsService {
|
|
|
1528
1610
|
*/
|
|
1529
1611
|
getOperationTypes(params: QueryParams): Observable<OperationTypesOut>;
|
|
1530
1612
|
/**
|
|
1531
|
-
* Retrieves the list of
|
|
1613
|
+
* Retrieves the list of identifications types
|
|
1532
1614
|
*
|
|
1533
1615
|
* @param {QueryParams} params - The query parameters used to fetch the identification types.
|
|
1534
1616
|
* @return {Observable<IdentificationTypesOut[]>} An observable that emits an array of identification type.
|
|
@@ -1537,7 +1619,7 @@ declare class ApiCatalogsService {
|
|
|
1537
1619
|
/**
|
|
1538
1620
|
* Retrieve a single identification type by its id.
|
|
1539
1621
|
*
|
|
1540
|
-
* Sends an HTTP GET request to the
|
|
1622
|
+
* Sends an HTTP GET request to the identification type endpoint and returns an Observable that emits
|
|
1541
1623
|
* the IdentificationTypeOut payload extracted from the API success envelope.
|
|
1542
1624
|
*
|
|
1543
1625
|
* @param id - The numeric identifier of the identification type to fetch.
|
|
@@ -1653,6 +1735,13 @@ declare class ApiCatalogsService {
|
|
|
1653
1735
|
* @return {Observable<ZonesOut>} An observable that emits the fetched zones data.
|
|
1654
1736
|
*/
|
|
1655
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>;
|
|
1656
1745
|
/**
|
|
1657
1746
|
* Fetches the management areas based on the provided query parameters.
|
|
1658
1747
|
*
|
|
@@ -1702,6 +1791,13 @@ declare class ApiCatalogsService {
|
|
|
1702
1791
|
* @return {Observable<LanguagesOut>} An observable that emits the available languages.
|
|
1703
1792
|
*/
|
|
1704
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>;
|
|
1705
1801
|
/**
|
|
1706
1802
|
* Fetches the available units from the API based on the provided query parameters.
|
|
1707
1803
|
*
|
|
@@ -1730,6 +1826,14 @@ declare class ApiCatalogsService {
|
|
|
1730
1826
|
* @return {Observable<GenericFoliosOut>} An observable containing the fetched generic folios.
|
|
1731
1827
|
*/
|
|
1732
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>;
|
|
1733
1837
|
/**
|
|
1734
1838
|
* Sends a POST request to create or update a generic folio.
|
|
1735
1839
|
*
|
|
@@ -1753,6 +1857,13 @@ declare class ApiCatalogsService {
|
|
|
1753
1857
|
* @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
|
|
1754
1858
|
*/
|
|
1755
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>;
|
|
1756
1867
|
/**
|
|
1757
1868
|
* Sends a POST request to create a new product.
|
|
1758
1869
|
*
|
|
@@ -1963,7 +2074,49 @@ declare class ApiCatalogsService {
|
|
|
1963
2074
|
* @param params - Query parameters to filter or configure the package locations request
|
|
1964
2075
|
* @returns An Observable that emits the package locations data
|
|
1965
2076
|
*/
|
|
1966
|
-
getPackageLocations(params: QueryParams): Observable<
|
|
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>;
|
|
1967
2120
|
/**
|
|
1968
2121
|
* Retrieves export reasons based on the provided query parameters.
|
|
1969
2122
|
* @param params - Query parameters to filter, sort, or paginate export reasons
|
|
@@ -3966,10 +4119,6 @@ interface Item extends ActiveLessSymfonyModel {
|
|
|
3966
4119
|
manufactureCountry: ManufactureCountry;
|
|
3967
4120
|
commodity: Commodity;
|
|
3968
4121
|
}
|
|
3969
|
-
interface QuantityUnit extends SymfonyModel {
|
|
3970
|
-
code: string;
|
|
3971
|
-
name: string;
|
|
3972
|
-
}
|
|
3973
4122
|
interface ManufactureCountry {
|
|
3974
4123
|
id: string;
|
|
3975
4124
|
code: string;
|
|
@@ -3983,21 +4132,11 @@ interface ManufactureCountry {
|
|
|
3983
4132
|
zones: string[];
|
|
3984
4133
|
isoCode: string;
|
|
3985
4134
|
}
|
|
3986
|
-
interface Commodity extends SymfonyModel {
|
|
3987
|
-
code: string;
|
|
3988
|
-
name: string;
|
|
3989
|
-
countryId: number;
|
|
3990
|
-
}
|
|
3991
4135
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
3992
4136
|
code: string;
|
|
3993
4137
|
name: string;
|
|
3994
4138
|
description: string;
|
|
3995
4139
|
}
|
|
3996
|
-
interface TradingTransactionType extends SymfonyModel {
|
|
3997
|
-
code: string;
|
|
3998
|
-
name: string;
|
|
3999
|
-
description: string;
|
|
4000
|
-
}
|
|
4001
4140
|
interface DocumentFunction extends SymfonyModel {
|
|
4002
4141
|
code: string;
|
|
4003
4142
|
name: string;
|
|
@@ -5045,7 +5184,6 @@ type DeliveryConfirmationSearchOut = {
|
|
|
5045
5184
|
declare class ApiExternalOperationsService {
|
|
5046
5185
|
private http;
|
|
5047
5186
|
private environment;
|
|
5048
|
-
private appKey;
|
|
5049
5187
|
/**
|
|
5050
5188
|
* Getter method to retrieve the API's external operations URL.
|
|
5051
5189
|
* Fetches the URL from the `apiExternalOperationsUrl` property of the environment object.
|
|
@@ -5086,7 +5224,6 @@ declare class ApiExternalOperationsService {
|
|
|
5086
5224
|
* @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
|
|
5087
5225
|
*/
|
|
5088
5226
|
putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
|
|
5089
|
-
private getAppKeyHeader;
|
|
5090
5227
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
|
|
5091
5228
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
|
|
5092
5229
|
}
|
|
@@ -8037,13 +8174,23 @@ interface EmbassyShipment extends SymfonyModel {
|
|
|
8037
8174
|
createdAt: string;
|
|
8038
8175
|
updatedAt: string;
|
|
8039
8176
|
}
|
|
8040
|
-
interface
|
|
8041
|
-
|
|
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 {
|
|
8042
8185
|
isDefault: boolean;
|
|
8043
8186
|
termsAndCondition: string | null;
|
|
8044
8187
|
marketingConsent: string | null;
|
|
8045
8188
|
additionalVerbiage: string | null;
|
|
8046
8189
|
}
|
|
8190
|
+
interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
|
|
8191
|
+
code: string;
|
|
8192
|
+
name: string;
|
|
8193
|
+
}
|
|
8047
8194
|
|
|
8048
8195
|
type ValidateAccountIn = {
|
|
8049
8196
|
accountValue: string;
|
|
@@ -8139,12 +8286,12 @@ type EmbassyShipmentsOut = {
|
|
|
8139
8286
|
total: number;
|
|
8140
8287
|
embassyShipments: EmbassyShipment[];
|
|
8141
8288
|
};
|
|
8142
|
-
type
|
|
8289
|
+
type DocumentConfigurationsOut = {
|
|
8143
8290
|
total: number;
|
|
8144
|
-
|
|
8291
|
+
documentConfigurations: DocumentConfiguration[];
|
|
8145
8292
|
};
|
|
8146
|
-
type
|
|
8147
|
-
|
|
8293
|
+
type DocumentConfigurationOut = {
|
|
8294
|
+
documentConfiguration: DocumentConfiguration;
|
|
8148
8295
|
};
|
|
8149
8296
|
type EmbassyShipmentIn = {
|
|
8150
8297
|
countryId: number;
|
|
@@ -8167,13 +8314,25 @@ type EmbassyShipmentIn = {
|
|
|
8167
8314
|
businessPartyTraderTypeId: number | null;
|
|
8168
8315
|
isActive: boolean;
|
|
8169
8316
|
};
|
|
8170
|
-
type
|
|
8317
|
+
type DocumentConfigurationIn = {
|
|
8171
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 = {
|
|
8172
8326
|
isDefault: boolean;
|
|
8173
8327
|
termsAndCondition: string | null;
|
|
8174
8328
|
marketingConsent: string | null;
|
|
8175
8329
|
additionalVerbiage: string | null;
|
|
8176
|
-
|
|
8330
|
+
};
|
|
8331
|
+
type DocumentConfigurationsPreviewIn = {
|
|
8332
|
+
html: string;
|
|
8333
|
+
};
|
|
8334
|
+
type DocumentConfigurationsPreviewOut = {
|
|
8335
|
+
preview: string;
|
|
8177
8336
|
};
|
|
8178
8337
|
interface EmbassyShipmentOut {
|
|
8179
8338
|
embassyShipment: EmbassyShipment;
|
|
@@ -8257,31 +8416,41 @@ declare class ApiShipmentsService {
|
|
|
8257
8416
|
*/
|
|
8258
8417
|
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
8259
8418
|
/**
|
|
8260
|
-
* Retrieves a paginated list of
|
|
8261
|
-
*
|
|
8262
|
-
* @
|
|
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.
|
|
8423
|
+
*/
|
|
8424
|
+
getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
|
|
8425
|
+
/**
|
|
8426
|
+
* Retrieves a document configuration by its identifier.
|
|
8427
|
+
*
|
|
8428
|
+
* @param {number} id - The unique identifier of the document configuration.
|
|
8429
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
8263
8430
|
*/
|
|
8264
|
-
|
|
8431
|
+
getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
|
|
8265
8432
|
/**
|
|
8266
|
-
*
|
|
8433
|
+
* Creates a new document configuration.
|
|
8267
8434
|
*
|
|
8268
|
-
* @param {
|
|
8269
|
-
* @
|
|
8435
|
+
* @param {DocumentConfigurationIn} body - The document configuration data to create.
|
|
8436
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
|
|
8270
8437
|
*/
|
|
8271
|
-
|
|
8438
|
+
postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8272
8439
|
/**
|
|
8273
|
-
*
|
|
8274
|
-
*
|
|
8275
|
-
* @
|
|
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.
|
|
8276
8445
|
*/
|
|
8277
|
-
|
|
8446
|
+
putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8278
8447
|
/**
|
|
8279
|
-
*
|
|
8280
|
-
*
|
|
8281
|
-
* @param {
|
|
8282
|
-
* @returns {Observable<
|
|
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.
|
|
8283
8452
|
*/
|
|
8284
|
-
|
|
8453
|
+
postDocumentConfigurationPreview(body: DocumentConfigurationsPreviewIn): Observable<DocumentConfigurationsPreviewOut>;
|
|
8285
8454
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
8286
8455
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
8287
8456
|
}
|
|
@@ -8542,13 +8711,11 @@ type CustomerSurveyFinishIn = {
|
|
|
8542
8711
|
declare class ApiSurveysService {
|
|
8543
8712
|
private environments;
|
|
8544
8713
|
private http;
|
|
8545
|
-
private appKey;
|
|
8546
8714
|
/**
|
|
8547
8715
|
* Base URL for surveys API endpoints.
|
|
8548
8716
|
* @returns The configured surveys API URL or an empty string.
|
|
8549
8717
|
*/
|
|
8550
8718
|
get url(): string;
|
|
8551
|
-
private appKeyHeader;
|
|
8552
8719
|
/**
|
|
8553
8720
|
* Retrieves surveys list based on query parameters.
|
|
8554
8721
|
* @param params Query parameters used to filter, paginate, or sort surveys.
|
|
@@ -8712,40 +8879,6 @@ declare class CryptoService {
|
|
|
8712
8879
|
*/
|
|
8713
8880
|
declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
8714
8881
|
|
|
8715
|
-
/**
|
|
8716
|
-
* HTTP interceptor that injects the external operations API key into outbound requests.
|
|
8717
|
-
*
|
|
8718
|
-
* The interceptor:
|
|
8719
|
-
* 1. Reads `apiExternalOperationsKey` from the injected `ENVIRONMENT_TOKEN`.
|
|
8720
|
-
* 2. Skips modification if the key is absent.
|
|
8721
|
-
* 3. Leaves the request unchanged if it already contains an `AppKey` header (caller override).
|
|
8722
|
-
* 4. Otherwise clones the request adding `AppKey: apiExternalOperationsKey`.
|
|
8723
|
-
*
|
|
8724
|
-
* This enables centralized, transparent authentication for services targeting external
|
|
8725
|
-
* operations endpoints while allowing explicit per-request overrides.
|
|
8726
|
-
*
|
|
8727
|
-
* Example:
|
|
8728
|
-
* ```ts
|
|
8729
|
-
* provideHttpClient(
|
|
8730
|
-
* withInterceptors([apiKeyInterceptor])
|
|
8731
|
-
* );
|
|
8732
|
-
* ```
|
|
8733
|
-
*
|
|
8734
|
-
* @param request The original immutable `HttpRequest` instance.
|
|
8735
|
-
* @param next The next handler in the interceptor chain, used to forward the (possibly cloned) request.
|
|
8736
|
-
* @returns An `Observable` stream of the HTTP events for the (potentially augmented) request.
|
|
8737
|
-
*
|
|
8738
|
-
* @remarks
|
|
8739
|
-
* - If you need to intentionally send a different key for a specific request, set the `AppKey`
|
|
8740
|
-
* header manually before this interceptor runs.
|
|
8741
|
-
* - If `apiExternalOperationsKey` is undefined (e.g., missing configuration), the request is passed through unchanged.
|
|
8742
|
-
* - Order matters: place this interceptor before others that rely on the presence of the `AppKey` header.
|
|
8743
|
-
*
|
|
8744
|
-
* @see HttpRequest
|
|
8745
|
-
* @see HttpHandlerFn
|
|
8746
|
-
*/
|
|
8747
|
-
declare function apiKeyInterceptor(request: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
8748
|
-
|
|
8749
8882
|
/**
|
|
8750
8883
|
* An HTTP interceptor to append an Authorization header with a Bearer token
|
|
8751
8884
|
* to outgoing HTTP requests if certain conditions are met.
|
|
@@ -8807,5 +8940,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8807
8940
|
[header: string]: string | string[];
|
|
8808
8941
|
};
|
|
8809
8942
|
|
|
8810
|
-
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,
|
|
8811
|
-
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.
|
|
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.
|
|
45
|
-
"@angular/core": "^20.
|
|
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
|
},
|