@tagsamurai/gsts-api-services 1.1.0-alpha.15 → 1.1.0-alpha.17
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
|
@@ -5,7 +5,7 @@ export type ChangelogResponse = FetchListResponse<ChangelogType>;
|
|
|
5
5
|
export type ChangelogOptionResponse = FetchOptionResponse<ChangelogOptionFilter>;
|
|
6
6
|
type HardwareType = 'Hardware Handheld' | 'Hardware Smart Fixed Reader' | 'Tablet';
|
|
7
7
|
export interface ChangelogFilterQuery extends TableParams {
|
|
8
|
-
|
|
8
|
+
object?: string;
|
|
9
9
|
objectName?: string[];
|
|
10
10
|
field?: string[];
|
|
11
11
|
action?: string[];
|
package/src/types/user.type.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CustomField } from './masterData.type';
|
|
1
2
|
export type UserType = 'Basic' | 'Admin';
|
|
2
3
|
export type User = {
|
|
3
4
|
_id: string;
|
|
@@ -43,6 +44,7 @@ export type UserDetail = {
|
|
|
43
44
|
expiryDate: string;
|
|
44
45
|
access: string[];
|
|
45
46
|
isConfirmed: boolean;
|
|
47
|
+
customFields: CustomField[];
|
|
46
48
|
name: string;
|
|
47
49
|
userTag?: string;
|
|
48
50
|
isSelf?: boolean;
|