@fragus/sam-types 1.0.73 → 1.0.74

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,5 +1,5 @@
1
1
  {
2
- "version": "1.0.73",
2
+ "version": "1.0.74",
3
3
  "name": "@fragus/sam-types",
4
4
  "description": "Typescript interfaces for all types used to communicate between SAM client(s) and the SAM API",
5
5
  "author": "Fragus",
@@ -2,12 +2,12 @@ import { IUserResponse } from './user'
2
2
 
3
3
  export type ISuperAdminUserResponse = IUserResponse & {
4
4
  userLastSeen: Date | null
5
- restrictToTheseCountries: string[]
5
+ restrictToTheseCountries: number[]
6
6
  }
7
7
 
8
8
  export interface ISuperAdminUserRequest {
9
9
  email: string
10
- restrictToTheseCountries: string[]
10
+ restrictToTheseCountries: number[]
11
11
  contactPerson: {
12
12
  name: string
13
13
  email: string
@@ -17,14 +17,14 @@ export interface ISuperAdminUserRequest {
17
17
  address2?: string
18
18
  city: string
19
19
  postalCode: string
20
- countryIsoName: string
20
+ countryId: number
21
21
  }
22
22
  }
23
23
  }
24
24
 
25
25
  export interface ISuperAdminUserRequestGet {
26
26
  search?: string
27
- country?: string
27
+ countryId?: number
28
28
  limit: number
29
29
  cursor?: number
30
30
  }