@tagsamurai/fats-api-services 1.0.0-alpha.244 → 1.0.0-alpha.246
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/api-services.es.js
CHANGED
|
@@ -762,8 +762,8 @@ const LicenseAssetServices = {
|
|
|
762
762
|
getFixedAssetPerGroup: (groupId, params) => {
|
|
763
763
|
return API$v.get(`/${groupId}/assets`, { params });
|
|
764
764
|
},
|
|
765
|
-
deleteAssetData: (
|
|
766
|
-
return API$v.delete("/assets", {
|
|
765
|
+
deleteAssetData: (params) => {
|
|
766
|
+
return API$v.delete("/assets", { params });
|
|
767
767
|
}
|
|
768
768
|
};
|
|
769
769
|
const LicenseServices = {
|
package/api-services.system.js
CHANGED
|
@@ -769,8 +769,8 @@ System.register(["axios"], function(exports, module) {
|
|
|
769
769
|
getFixedAssetPerGroup: (groupId, params) => {
|
|
770
770
|
return API$v.get(`/${groupId}/assets`, { params });
|
|
771
771
|
},
|
|
772
|
-
deleteAssetData: (
|
|
773
|
-
return API$v.delete("/assets", {
|
|
772
|
+
deleteAssetData: (params) => {
|
|
773
|
+
return API$v.delete("/assets", { params });
|
|
774
774
|
}
|
|
775
775
|
};
|
|
776
776
|
const LicenseServices = exports("LicenseServices", {
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@ import { PurchasedLicense } from '../types/licensePurchased.type';
|
|
|
5
5
|
import { ConcurrentUser } from '../types/licenseConcurrent.type';
|
|
6
6
|
declare const LicenseServices: {
|
|
7
7
|
getFixedAssetPerGroup: (groupId: string, params?: BasicLicenseAssetFilterQuery) => Promise<AxiosResponse<GetBasicFixedAssetPerGroup>>;
|
|
8
|
-
deleteAssetData: (
|
|
9
|
-
assets: string
|
|
8
|
+
deleteAssetData: (params: {
|
|
9
|
+
assets: string;
|
|
10
10
|
}) => Promise<AxiosResponse>;
|
|
11
11
|
getConcurrentUserData: () => Promise<AxiosResponse<FetchDetailResponse<{
|
|
12
12
|
online: number;
|