@experteam-mx/ngx-services 18.7.9 → 18.7.11
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/esm2022/lib/apis/api-discounts.service.mjs +222 -0
- package/esm2022/lib/apis/api-notifications.service.mjs +104 -0
- package/esm2022/lib/apis/models/api-discounts.interfaces.mjs +2 -0
- package/esm2022/lib/apis/models/api-discounts.types.mjs +2 -0
- package/esm2022/lib/apis/models/api-notifications.interfaces.mjs +2 -0
- package/esm2022/lib/apis/models/api-notifications.types.mjs +2 -0
- package/esm2022/lib/apis/models/api.models.mjs +1 -1
- package/esm2022/lib/ngx-services.models.mjs +1 -1
- package/esm2022/public-api.mjs +8 -2
- package/fesm2022/experteam-mx-ngx-services.mjs +319 -1
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/lib/apis/api-discounts.service.d.ts +152 -0
- package/lib/apis/api-notifications.service.d.ts +70 -0
- package/lib/apis/models/api-discounts.interfaces.d.ts +74 -0
- package/lib/apis/models/api-discounts.types.d.ts +83 -0
- package/lib/apis/models/api-notifications.interfaces.d.ts +36 -0
- package/lib/apis/models/api-notifications.types.d.ts +34 -0
- package/lib/apis/models/api.models.d.ts +8 -8
- package/lib/ngx-services.models.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +7 -1
|
@@ -1725,6 +1725,224 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1725
1725
|
args: ['env']
|
|
1726
1726
|
}] }, { type: i1$1.CookieService }, { type: i1.HttpClient }] });
|
|
1727
1727
|
|
|
1728
|
+
class ApiDiscountsService {
|
|
1729
|
+
environments;
|
|
1730
|
+
http;
|
|
1731
|
+
constructor(environments, http) {
|
|
1732
|
+
this.environments = environments;
|
|
1733
|
+
this.http = http;
|
|
1734
|
+
}
|
|
1735
|
+
/**
|
|
1736
|
+
* Gets the API endpoint URL for discounts from the environments configuration.
|
|
1737
|
+
*
|
|
1738
|
+
* @return {string} The URL for the discounts API. Returns an empty string if not defined.
|
|
1739
|
+
*/
|
|
1740
|
+
get url() {
|
|
1741
|
+
return this.environments.apiDiscounts ?? '';
|
|
1742
|
+
}
|
|
1743
|
+
/**
|
|
1744
|
+
* Fetches available discounts based on the provided query parameters.
|
|
1745
|
+
*
|
|
1746
|
+
* @param {QueryParams} params - The query parameters used to filter and retrieve discounts.
|
|
1747
|
+
* @return {Observable<DiscountsOut>} An Observable that emits the retrieved discounts data.
|
|
1748
|
+
*/
|
|
1749
|
+
getDiscounts(params) {
|
|
1750
|
+
return this.http.get(`${this.url}/discounts`, { params })
|
|
1751
|
+
.pipe(map(({ data }) => data));
|
|
1752
|
+
}
|
|
1753
|
+
/**
|
|
1754
|
+
* Sends a request to create or update discounts on the server.
|
|
1755
|
+
*
|
|
1756
|
+
* @param {DiscountIn} body - The discount information to be submitted.
|
|
1757
|
+
* @return {Observable<DiscountOut>} An Observable emitting the server's response containing the created or updated discount details.
|
|
1758
|
+
*/
|
|
1759
|
+
postDiscounts(body) {
|
|
1760
|
+
return this.http.post(`${this.url}/discounts`, body)
|
|
1761
|
+
.pipe(map(({ data }) => data));
|
|
1762
|
+
}
|
|
1763
|
+
/**
|
|
1764
|
+
* Updates the discount information for a specific item.
|
|
1765
|
+
*
|
|
1766
|
+
* @param {number} id - The unique identifier of the item whose discount is to be updated.
|
|
1767
|
+
* @param {DiscountIn} body - The payload containing the updated discount details.
|
|
1768
|
+
* @return {Observable<DiscountOut>} An observable emitting the updated discount details.
|
|
1769
|
+
*/
|
|
1770
|
+
putDiscounts(id, body) {
|
|
1771
|
+
return this.http.put(`${this.url}/discounts/${id}`, body)
|
|
1772
|
+
.pipe(map(({ data }) => data));
|
|
1773
|
+
}
|
|
1774
|
+
/**
|
|
1775
|
+
* Retrieves the top customers based on the provided query parameters.
|
|
1776
|
+
*
|
|
1777
|
+
* @param {QueryParams} params - The query parameters to filter and sort the top customers.
|
|
1778
|
+
* @return {Observable<TopCustomersOut>} An observable emitting the list of top customers.
|
|
1779
|
+
*/
|
|
1780
|
+
getTopCustomers(params) {
|
|
1781
|
+
return this.http.get(`${this.url}/top-customers`, { params })
|
|
1782
|
+
.pipe(map(({ data }) => data));
|
|
1783
|
+
}
|
|
1784
|
+
/**
|
|
1785
|
+
* Sends a POST request to load the top customer data in the system, using the provided input.
|
|
1786
|
+
* Transforms the API response to extract the data field containing the discount information.
|
|
1787
|
+
*
|
|
1788
|
+
* @param {OperationsLoadTopCustomerV2In} body - The input payload containing the company country ID and the file.
|
|
1789
|
+
* @param {number} body.company_country_id - The ID of the company's country.
|
|
1790
|
+
* @param {File} body.file - The file containing data to be processed.
|
|
1791
|
+
* @return {Observable<DiscountOut>} An observable containing the discount output information.
|
|
1792
|
+
*/
|
|
1793
|
+
postOperationsLoadTopCustomerV2(body) {
|
|
1794
|
+
const formData = new FormData();
|
|
1795
|
+
formData.append('company_country_id', String(body.company_country_id));
|
|
1796
|
+
formData.append('file', body.file);
|
|
1797
|
+
return this.http.post(`${this.url}/operations/load-top-customer/V2`, formData)
|
|
1798
|
+
.pipe(map(({ data }) => data));
|
|
1799
|
+
}
|
|
1800
|
+
/**
|
|
1801
|
+
* Fetches the loyalty periods based on the provided query parameters.
|
|
1802
|
+
*
|
|
1803
|
+
* @param {QueryParams} params - An object containing query parameters to filter the periods.
|
|
1804
|
+
* @return {Observable<LoyaltyPeriodsOut>} An observable that emits the fetched loyalty periods.
|
|
1805
|
+
*/
|
|
1806
|
+
getLoyaltyPeriods(params) {
|
|
1807
|
+
return this.http.get(`${this.url}/loyalty-periods`, { params })
|
|
1808
|
+
.pipe(map(({ data }) => data));
|
|
1809
|
+
}
|
|
1810
|
+
/**
|
|
1811
|
+
* Retrieves the loyalty period details for the given ID.
|
|
1812
|
+
*
|
|
1813
|
+
* @param {number} id - The unique identifier of the loyalty period to retrieve.
|
|
1814
|
+
* @return {Observable<LoyaltyPeriodOut>} An observable emitting the loyalty period details.
|
|
1815
|
+
*/
|
|
1816
|
+
getLoyaltyPeriod(id) {
|
|
1817
|
+
return this.http.get(`${this.url}/loyalty-periods/${id}`)
|
|
1818
|
+
.pipe(map(({ data }) => data));
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* Sends a PUT request to update the loyalty period with the provided data.
|
|
1822
|
+
*
|
|
1823
|
+
* @param {LoyaltyPeriodIn} body - The data for the loyalty period to be updated.
|
|
1824
|
+
* @return {Observable<LoyaltyPeriodOut>} An observable that emits the updated loyalty period data.
|
|
1825
|
+
*/
|
|
1826
|
+
postLoyaltyPeriod(body) {
|
|
1827
|
+
return this.http.put(`${this.url}/loyalty-periods`, body)
|
|
1828
|
+
.pipe(map(({ data }) => data));
|
|
1829
|
+
}
|
|
1830
|
+
/**
|
|
1831
|
+
* Updates the loyalty period for a specified ID with the provided data.
|
|
1832
|
+
*
|
|
1833
|
+
* @param {number} id - The unique identifier of the loyalty period to update.
|
|
1834
|
+
* @param {LoyaltyPeriodIn} body - An object containing the updated details of the loyalty period.
|
|
1835
|
+
* @return {Observable<LoyaltyPeriodOut>} An observable that emits the updated loyalty period details.
|
|
1836
|
+
*/
|
|
1837
|
+
putLoyaltyPeriod(id, body) {
|
|
1838
|
+
return this.http.put(`${this.url}/loyalty-periods/${id}`, body)
|
|
1839
|
+
.pipe(map(({ data }) => data));
|
|
1840
|
+
}
|
|
1841
|
+
/**
|
|
1842
|
+
* Retrieves the loyalty rules based on the provided query parameters.
|
|
1843
|
+
*
|
|
1844
|
+
* @param {QueryParams} params - The query parameters to filter the loyalty rules.
|
|
1845
|
+
* @return {Observable<LoyaltyRulesOut>} An observable containing the loyalty rules output.
|
|
1846
|
+
*/
|
|
1847
|
+
getLoyaltyRules(params) {
|
|
1848
|
+
return this.http.get(`${this.url}/loyalty-rules`, { params })
|
|
1849
|
+
.pipe(map(({ data }) => data));
|
|
1850
|
+
}
|
|
1851
|
+
/**
|
|
1852
|
+
* Retrieves a specific loyalty rule based on the provided ID.
|
|
1853
|
+
*
|
|
1854
|
+
* @param {number} id - The unique identifier of the loyalty rule to retrieve.
|
|
1855
|
+
* @return {Observable<LoyaltyRuleOut>} An observable that emits the details of the specified loyalty rule.
|
|
1856
|
+
*/
|
|
1857
|
+
getLoyaltyRule(id) {
|
|
1858
|
+
return this.http.get(`${this.url}/loyalty-rules/${id}`)
|
|
1859
|
+
.pipe(map(({ data }) => data));
|
|
1860
|
+
}
|
|
1861
|
+
/**
|
|
1862
|
+
* Sends a request to add or update a loyalty rule.
|
|
1863
|
+
*
|
|
1864
|
+
* @param {LoyaltyRuleIn} body - The loyalty rule data to be sent to the server.
|
|
1865
|
+
* @return {Observable<LoyaltyRuleOut>} An observable that emits the updated loyalty rule details.
|
|
1866
|
+
*/
|
|
1867
|
+
postLoyaltyRule(body) {
|
|
1868
|
+
return this.http.put(`${this.url}/loyalty-rules`, body)
|
|
1869
|
+
.pipe(map(({ data }) => data));
|
|
1870
|
+
}
|
|
1871
|
+
/**
|
|
1872
|
+
* Updates an existing loyalty rule with the provided data.
|
|
1873
|
+
*
|
|
1874
|
+
* @param {number} id - The unique identifier of the loyalty rule to update.
|
|
1875
|
+
* @param {LoyaltyRuleIn} body - The data to update the loyalty rule with.
|
|
1876
|
+
* @return {Observable<LoyaltyRuleOut>} An observable that emits the updated loyalty rule.
|
|
1877
|
+
*/
|
|
1878
|
+
putLoyaltyRule(id, body) {
|
|
1879
|
+
return this.http.put(`${this.url}/loyalty-rules/${id}`, body)
|
|
1880
|
+
.pipe(map(({ data }) => data));
|
|
1881
|
+
}
|
|
1882
|
+
/**
|
|
1883
|
+
* Fetches customer restrictions based on the provided query parameters.
|
|
1884
|
+
*
|
|
1885
|
+
* @param {QueryParams} params - The query parameters to filter customer restrictions.
|
|
1886
|
+
* @return {Observable<CustomerRestrictionsOut>} An observable that emits the customer restrictions data.
|
|
1887
|
+
*/
|
|
1888
|
+
getCustomerRestrictions(params) {
|
|
1889
|
+
return this.http.get(`${this.url}/customer-restrictions`, { params })
|
|
1890
|
+
.pipe(map(({ data }) => data));
|
|
1891
|
+
}
|
|
1892
|
+
/**
|
|
1893
|
+
* Retrieves customer restriction details for a given customer ID.
|
|
1894
|
+
*
|
|
1895
|
+
* @param {number} id - The unique identifier of the customer.
|
|
1896
|
+
* @return {Observable<CustomerRestrictionOut>} An observable containing the customer restriction details.
|
|
1897
|
+
*/
|
|
1898
|
+
getCustomerRestriction(id) {
|
|
1899
|
+
return this.http.get(`${this.url}/customer-restrictions/${id}`)
|
|
1900
|
+
.pipe(map(({ data }) => data));
|
|
1901
|
+
}
|
|
1902
|
+
/**
|
|
1903
|
+
* Sends a request to apply a restriction to a customer.
|
|
1904
|
+
*
|
|
1905
|
+
* @param {CustomerRestrictionIn} body - The restriction details to be applied to the customer.
|
|
1906
|
+
* @return {Observable<CustomerRestrictionOut>} An observable containing the response with the applied customer restriction.
|
|
1907
|
+
*/
|
|
1908
|
+
postCustomerRestriction(body) {
|
|
1909
|
+
return this.http.put(`${this.url}/customer-restrictions`, body)
|
|
1910
|
+
.pipe(map(({ data }) => data));
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* Updates customer restrictions using the provided ID and data.
|
|
1914
|
+
*
|
|
1915
|
+
* @param {number} id - The unique identifier of the customer restriction to be updated.
|
|
1916
|
+
* @param {LoyaltyRuleIn} body - The data object containing the customer restriction details to be updated.
|
|
1917
|
+
* @return {Observable<CustomerRestrictionOut>} An observable emitting the updated customer restriction details.
|
|
1918
|
+
*/
|
|
1919
|
+
putCustomerRestriction(id, body) {
|
|
1920
|
+
return this.http.put(`${this.url}/customer-restrictions/${id}`, body)
|
|
1921
|
+
.pipe(map(({ data }) => data));
|
|
1922
|
+
}
|
|
1923
|
+
/**
|
|
1924
|
+
* Deletes a customer restriction by its ID.
|
|
1925
|
+
*
|
|
1926
|
+
* @param {number} id - The unique identifier of the customer restriction to delete.
|
|
1927
|
+
* @return {Observable<{}>} An Observable that emits the result of the deletion operation.
|
|
1928
|
+
*/
|
|
1929
|
+
deleteCustomerRestriction(id) {
|
|
1930
|
+
return this.http.delete(`${this.url}/customer-restrictions/${id}`)
|
|
1931
|
+
.pipe(map(({ data }) => data));
|
|
1932
|
+
}
|
|
1933
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiDiscountsService, deps: [{ token: 'env' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1934
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiDiscountsService, providedIn: 'root' });
|
|
1935
|
+
}
|
|
1936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiDiscountsService, decorators: [{
|
|
1937
|
+
type: Injectable,
|
|
1938
|
+
args: [{
|
|
1939
|
+
providedIn: 'root'
|
|
1940
|
+
}]
|
|
1941
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
1942
|
+
type: Inject,
|
|
1943
|
+
args: ['env']
|
|
1944
|
+
}] }, { type: i1.HttpClient }] });
|
|
1945
|
+
|
|
1728
1946
|
class ApiEToolsAutoBillingService {
|
|
1729
1947
|
environments;
|
|
1730
1948
|
http;
|
|
@@ -2403,6 +2621,106 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2403
2621
|
args: ['env']
|
|
2404
2622
|
}] }, { type: i1.HttpClient }] });
|
|
2405
2623
|
|
|
2624
|
+
class ApiNotificationsService {
|
|
2625
|
+
environments;
|
|
2626
|
+
http;
|
|
2627
|
+
constructor(environments, http) {
|
|
2628
|
+
this.environments = environments;
|
|
2629
|
+
this.http = http;
|
|
2630
|
+
}
|
|
2631
|
+
/**
|
|
2632
|
+
* Retrieves the URL for the notifications API from the environment settings.
|
|
2633
|
+
* If the URL is not defined, an empty string is returned.
|
|
2634
|
+
*
|
|
2635
|
+
* @return {string} The API Notifications URL or an empty string if not defined.
|
|
2636
|
+
*/
|
|
2637
|
+
get url() {
|
|
2638
|
+
return this.environments.apiNotificationsUrl ?? '';
|
|
2639
|
+
}
|
|
2640
|
+
/**
|
|
2641
|
+
* Retrieves notifications based on the provided query parameters.
|
|
2642
|
+
*
|
|
2643
|
+
* @param {QueryParams} params - The query parameters used to filter and retrieve notifications.
|
|
2644
|
+
* @return {Observable<NotificationsOut>} An observable that emits the fetched notifications.
|
|
2645
|
+
*/
|
|
2646
|
+
getNotifications(params) {
|
|
2647
|
+
return this.http.get(`${this.url}/notifications`, { params })
|
|
2648
|
+
.pipe(map(({ data }) => data));
|
|
2649
|
+
}
|
|
2650
|
+
/**
|
|
2651
|
+
* Sends a notification request to the server using the provided body.
|
|
2652
|
+
*
|
|
2653
|
+
* @param {NotificationIn} body - The notification data to be sent in the request body.
|
|
2654
|
+
* @return {Observable<NotificationOut>} An observable emitting the response containing the notification output data.
|
|
2655
|
+
*/
|
|
2656
|
+
postNotification(body) {
|
|
2657
|
+
return this.http.post(`${this.url}/notifications`, { body })
|
|
2658
|
+
.pipe(map(({ data }) => data));
|
|
2659
|
+
}
|
|
2660
|
+
/**
|
|
2661
|
+
* Sends a PUT request to update a notification with the provided ID and body.
|
|
2662
|
+
*
|
|
2663
|
+
* @param {number} id - The unique identifier of the notification to be updated.
|
|
2664
|
+
* @param {NotificationIn} body - The data to update the notification with.
|
|
2665
|
+
* @return {Observable<NotificationOut>} An observable containing the updated notification data.
|
|
2666
|
+
*/
|
|
2667
|
+
putNotification(id, body) {
|
|
2668
|
+
return this.http.put(`${this.url}/notifications/${id}`, { body })
|
|
2669
|
+
.pipe(map(({ data }) => data));
|
|
2670
|
+
}
|
|
2671
|
+
/**
|
|
2672
|
+
* Deletes a notification by its unique identifier.
|
|
2673
|
+
*
|
|
2674
|
+
* @param {number} id - The unique identifier of the notification to delete.
|
|
2675
|
+
* @return {Observable<{}>} An observable that emits the response after deleting the notification.
|
|
2676
|
+
*/
|
|
2677
|
+
deleteNotification(id) {
|
|
2678
|
+
return this.http.delete(`${this.url}/notifications/${id}`)
|
|
2679
|
+
.pipe(map(({ data }) => data));
|
|
2680
|
+
}
|
|
2681
|
+
/**
|
|
2682
|
+
* Marks the notification as finished for the specified notification ID.
|
|
2683
|
+
*
|
|
2684
|
+
* @param {number} id - The unique identifier of the notification to be marked as finished.
|
|
2685
|
+
* @return {Observable<NotificationOut>} An Observable emitting the updated notification object.
|
|
2686
|
+
*/
|
|
2687
|
+
putNotificationFinish(id) {
|
|
2688
|
+
return this.http.put(`${this.url}/notifications/finish/${id}`, {})
|
|
2689
|
+
.pipe(map(({ data }) => data));
|
|
2690
|
+
}
|
|
2691
|
+
/**
|
|
2692
|
+
* Sends a POST request to create or update notification configurations.
|
|
2693
|
+
*
|
|
2694
|
+
* @param {NotificationConfigurationIn} body - The notification configuration payload to be sent in the request.
|
|
2695
|
+
* @return {Observable<NotificationConfigurationOut>} An observable emitting the response containing the created or updated notification configuration.
|
|
2696
|
+
*/
|
|
2697
|
+
postNotificationConfigurations(body) {
|
|
2698
|
+
return this.http.post(`${this.url}/notification-configurations`, { body })
|
|
2699
|
+
.pipe(map(({ data }) => data));
|
|
2700
|
+
}
|
|
2701
|
+
/**
|
|
2702
|
+
* Retrieves the notification types based on the provided query parameters.
|
|
2703
|
+
*
|
|
2704
|
+
* @param {QueryParams} params - The query parameters for fetching the notification types.
|
|
2705
|
+
* @return {Observable<NotificationsTypeOut>} An observable that emits the fetched notification types.
|
|
2706
|
+
*/
|
|
2707
|
+
getNotificationsType(params) {
|
|
2708
|
+
return this.http.get(`${this.url}/notifications-type`, { params })
|
|
2709
|
+
.pipe(map(({ data }) => data));
|
|
2710
|
+
}
|
|
2711
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiNotificationsService, deps: [{ token: 'env' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2712
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiNotificationsService, providedIn: 'root' });
|
|
2713
|
+
}
|
|
2714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ApiNotificationsService, decorators: [{
|
|
2715
|
+
type: Injectable,
|
|
2716
|
+
args: [{
|
|
2717
|
+
providedIn: 'root'
|
|
2718
|
+
}]
|
|
2719
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2720
|
+
type: Inject,
|
|
2721
|
+
args: ['env']
|
|
2722
|
+
}] }, { type: i1.HttpClient }] });
|
|
2723
|
+
|
|
2406
2724
|
class ApiOpenItemsService {
|
|
2407
2725
|
environments;
|
|
2408
2726
|
http;
|
|
@@ -3288,5 +3606,5 @@ const xmlHeaders = (format = 'object') => {
|
|
|
3288
3606
|
* Generated bundle index. Do not edit.
|
|
3289
3607
|
*/
|
|
3290
3608
|
|
|
3291
|
-
export { AlphaNumeric, ApiBillingDOService, ApiBillingMxService, ApiBillingPaService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiEToolsAutoBillingService, ApiExternalPickupsService, ApiInventoriesService, ApiInvoicesService, ApiOpenItemsService, ApiReportsService, ApiSecurityService, ApiShipmentsService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
|
|
3609
|
+
export { AlphaNumeric, ApiBillingDOService, ApiBillingMxService, ApiBillingPaService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiExternalPickupsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiReportsService, ApiSecurityService, ApiShipmentsService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
|
|
3292
3610
|
//# sourceMappingURL=experteam-mx-ngx-services.mjs.map
|