@tagsamurai/gsts-api-services 1.0.1-alpha.7 → 1.0.1-alpha.9
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/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangelogType } from '../types/changelog.type';
|
|
2
2
|
import { FetchListResponse, FetchOptionResponse } from '../types/fetchResponse.type';
|
|
3
|
+
import { FilterOptions } from './dataTable.dto';
|
|
3
4
|
export type ChangelogResponse = FetchListResponse<ChangelogType>;
|
|
4
|
-
export type ChangelogOptionResponse = FetchOptionResponse<
|
|
5
|
+
export type ChangelogOptionResponse = FetchOptionResponse<FilterOptions>;
|
|
5
6
|
export type ChangelogFilterQuery = {
|
|
6
7
|
object?: string;
|
|
7
8
|
objectName?: string;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { MultiSelectOption } from '../types/options.type';
|
|
2
2
|
import { ApplicationModule } from '../types/tag.type';
|
|
3
3
|
export type FilterOptions = {
|
|
4
|
+
skuOptions?: MultiSelectOption[];
|
|
5
|
+
statusOptions?: MultiSelectOption[];
|
|
6
|
+
typeOptions?: MultiSelectOption[];
|
|
7
|
+
modifiedByOptions?: MultiSelectOption[];
|
|
8
|
+
fieldOptions?: MultiSelectOption[];
|
|
4
9
|
deviceNameOptions?: MultiSelectOption[];
|
|
5
10
|
nameOptions?: MultiSelectOption[];
|
|
6
11
|
userFullNameOptions?: MultiSelectOption[];
|
|
@@ -9,14 +14,11 @@ export type FilterOptions = {
|
|
|
9
14
|
modelOptions?: MultiSelectOption[];
|
|
10
15
|
moduleOptions?: MultiSelectOption[];
|
|
11
16
|
reportedByOptions?: MultiSelectOption[];
|
|
12
|
-
modifiedByOptions?: MultiSelectOption[];
|
|
13
|
-
fieldOptions?: MultiSelectOption[];
|
|
14
17
|
activityOptions?: MultiSelectOption[];
|
|
15
18
|
pairedInOptions?: MultiSelectOption[];
|
|
16
19
|
availabilityOptions?: MultiSelectOption[];
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
typeOptions?: MultiSelectOption[];
|
|
20
|
+
actionOptions?: MultiSelectOption[];
|
|
21
|
+
objectNameOptions?: MultiSelectOption[];
|
|
20
22
|
};
|
|
21
23
|
export type BooleanOptions = {
|
|
22
24
|
deviceNameOptions?: boolean;
|
|
@@ -3,9 +3,7 @@ import { BooleanOptions } from '../dto/dataTable.dto';
|
|
|
3
3
|
import { TAGEventlogDetailResponse, TAGEventlogFetchOptionResponse, TAGEventlogFetchResponse, TAGEventlogFilterQuery } from '../dto/tagEventlog.dto';
|
|
4
4
|
declare const TagEventlogServices: {
|
|
5
5
|
getTAGEventlog: (params?: TAGEventlogFilterQuery) => Promise<AxiosResponse<TAGEventlogFetchResponse>>;
|
|
6
|
-
getTAGEventlogOptions: (params?: BooleanOptions) => Promise<AxiosResponse<
|
|
7
|
-
data: TAGEventlogFetchOptionResponse;
|
|
8
|
-
}>>;
|
|
6
|
+
getTAGEventlogOptions: (params?: BooleanOptions) => Promise<AxiosResponse<TAGEventlogFetchOptionResponse>>;
|
|
9
7
|
getDetailTAGEventlog: (eventlogId?: string) => Promise<AxiosResponse<TAGEventlogDetailResponse>>;
|
|
10
8
|
};
|
|
11
9
|
export default TagEventlogServices;
|