@gooday_corp/gooday-api-client 1.2.81 → 1.2.85
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.ts +2 -8
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6758,19 +6758,13 @@ export interface UserSyncDTO {
|
|
|
6758
6758
|
* @type {Array<number>}
|
|
6759
6759
|
* @memberof UserSyncDTO
|
|
6760
6760
|
*/
|
|
6761
|
-
'location'
|
|
6761
|
+
'location': Array<number>;
|
|
6762
6762
|
/**
|
|
6763
6763
|
* Timezone
|
|
6764
6764
|
* @type {string}
|
|
6765
6765
|
* @memberof UserSyncDTO
|
|
6766
6766
|
*/
|
|
6767
|
-
'timezone'
|
|
6768
|
-
/**
|
|
6769
|
-
* User permissions
|
|
6770
|
-
* @type {UserPermissionDTO}
|
|
6771
|
-
* @memberof UserSyncDTO
|
|
6772
|
-
*/
|
|
6773
|
-
'permissions'?: UserPermissionDTO;
|
|
6767
|
+
'timezone': string;
|
|
6774
6768
|
}
|
|
6775
6769
|
/**
|
|
6776
6770
|
*
|