@experteam-mx/ngx-services 20.4.0 → 20.6.0-dev2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/experteam-mx-ngx-services.mjs +266 -170
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +222 -67
- 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
|
}
|
|
@@ -5217,6 +5354,11 @@ interface OperationTypeInventory extends SymfonyModel {
|
|
|
5217
5354
|
name: TranslateLang;
|
|
5218
5355
|
};
|
|
5219
5356
|
}
|
|
5357
|
+
interface CourierRoute extends SymfonyModel {
|
|
5358
|
+
number: string;
|
|
5359
|
+
name: string;
|
|
5360
|
+
locationId: number;
|
|
5361
|
+
}
|
|
5220
5362
|
|
|
5221
5363
|
type CheckpointsOut = {
|
|
5222
5364
|
total: number;
|
|
@@ -5314,6 +5456,19 @@ type StockUpdatePackagesOut = {
|
|
|
5314
5456
|
totalFirstMilePackages: number;
|
|
5315
5457
|
totalStockUpdatePackages: number;
|
|
5316
5458
|
};
|
|
5459
|
+
type CourierRoutesOut = {
|
|
5460
|
+
courierRoutes: CourierRoute[];
|
|
5461
|
+
total: number;
|
|
5462
|
+
};
|
|
5463
|
+
type CourierRouteOut = {
|
|
5464
|
+
courierRoute: CourierRoute;
|
|
5465
|
+
};
|
|
5466
|
+
type CourierRouteIn = {
|
|
5467
|
+
number: string;
|
|
5468
|
+
name: string;
|
|
5469
|
+
locationId: number;
|
|
5470
|
+
isActive: boolean;
|
|
5471
|
+
};
|
|
5317
5472
|
|
|
5318
5473
|
declare class ApiInventoriesService {
|
|
5319
5474
|
private environments;
|
|
@@ -5499,6 +5654,42 @@ declare class ApiInventoriesService {
|
|
|
5499
5654
|
* @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
|
|
5500
5655
|
*/
|
|
5501
5656
|
getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
|
|
5657
|
+
/**
|
|
5658
|
+
* Retrieves a list of courier routes based on query parameters.
|
|
5659
|
+
*
|
|
5660
|
+
* @param {QueryParams} params - Query parameters for filtering the courier routes.
|
|
5661
|
+
* @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
|
|
5662
|
+
*/
|
|
5663
|
+
getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
|
|
5664
|
+
/**
|
|
5665
|
+
* Fetches the courier route details based on the provided courier route ID.
|
|
5666
|
+
*
|
|
5667
|
+
* @param {number} id - The courier route id
|
|
5668
|
+
* @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
|
|
5669
|
+
*/
|
|
5670
|
+
getCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5671
|
+
/**
|
|
5672
|
+
* Creates a new courier route.
|
|
5673
|
+
*
|
|
5674
|
+
* @param {CourierRouteIn} body - The data for the new courier route.
|
|
5675
|
+
* @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
|
|
5676
|
+
*/
|
|
5677
|
+
postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5678
|
+
/**
|
|
5679
|
+
* Update an existing courier route.
|
|
5680
|
+
*
|
|
5681
|
+
* @param {number} id - The identifier of the courier route record to update.
|
|
5682
|
+
* @param {CourierRouteIn} body - The courier route data to be updated.
|
|
5683
|
+
* @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
|
|
5684
|
+
*/
|
|
5685
|
+
putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5686
|
+
/**
|
|
5687
|
+
* Delete an existing courier route.
|
|
5688
|
+
*
|
|
5689
|
+
* @param {number} id - The unique identifier of the courier route to be deleted.
|
|
5690
|
+
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5691
|
+
*/
|
|
5692
|
+
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5502
5693
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5503
5694
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5504
5695
|
}
|
|
@@ -8542,13 +8733,11 @@ type CustomerSurveyFinishIn = {
|
|
|
8542
8733
|
declare class ApiSurveysService {
|
|
8543
8734
|
private environments;
|
|
8544
8735
|
private http;
|
|
8545
|
-
private appKey;
|
|
8546
8736
|
/**
|
|
8547
8737
|
* Base URL for surveys API endpoints.
|
|
8548
8738
|
* @returns The configured surveys API URL or an empty string.
|
|
8549
8739
|
*/
|
|
8550
8740
|
get url(): string;
|
|
8551
|
-
private appKeyHeader;
|
|
8552
8741
|
/**
|
|
8553
8742
|
* Retrieves surveys list based on query parameters.
|
|
8554
8743
|
* @param params Query parameters used to filter, paginate, or sort surveys.
|
|
@@ -8712,40 +8901,6 @@ declare class CryptoService {
|
|
|
8712
8901
|
*/
|
|
8713
8902
|
declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
8714
8903
|
|
|
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
8904
|
/**
|
|
8750
8905
|
* An HTTP interceptor to append an Authorization header with a Bearer token
|
|
8751
8906
|
* to outgoing HTTP requests if certain conditions are met.
|
|
@@ -8807,5 +8962,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8807
8962
|
[header: string]: string | string[];
|
|
8808
8963
|
};
|
|
8809
8964
|
|
|
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 };
|
|
8965
|
+
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
8966
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@experteam-mx/ngx-services",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.6.0-dev2.1",
|
|
4
4
|
"description": "Angular common services for Experteam apps",
|
|
5
5
|
"author": "Experteam Cía. Ltda.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"tslib": "^2.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@angular/common": "^20.
|
|
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
|
},
|