@tagsamurai/gsts-api-services 2.0.1-alpha.13 → 2.0.1-alpha.14

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/gsts-api-services",
3
- "version": "2.0.1-alpha.13",
3
+ "version": "2.0.1-alpha.14",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -55,7 +55,7 @@ export type GetGlobalUserOptionsParams = Partial<Record<keyof GlobalUserOptions,
55
55
  export interface SetActiveGlobalUserPayload {
56
56
  isActive: boolean;
57
57
  }
58
- export interface EditUserPayload extends CreateUserPayload {
58
+ export interface EditUserPayload extends Partial<CreateUserPayload> {
59
59
  }
60
60
  export interface EditUserFcmTokenPayload {
61
61
  data: {
@@ -109,6 +109,7 @@ export type NotPairedYetCounts = {
109
109
  damagedMissing: number;
110
110
  };
111
111
  };
112
+ export type NotPairedModule = 'RFID' | 'NFC';
112
113
  export type AuditTAGDetailResponse = FetchResponse & {
113
114
  data: AuditTAGDetail;
114
115
  };