File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @inspatial/cloud" ,
3- "version" : " 0.6.11 " ,
3+ "version" : " 0.6.12 " ,
44 "license" : " Apache-2.0" ,
55 "exports" : {
66 "." : " ./mod.ts" ,
Original file line number Diff line number Diff line change @@ -68,14 +68,9 @@ export interface Account extends EntryBase {
6868 user ?: string ;
6969 /**
7070 * **Role** (ChoicesField)
71- * @type {'systemAdmin' | 'accountOwner' | 'organisationAdmin' | 'organisationManager' | 'organisationStaff' }
71+ * @type {'systemAdmin' | 'accountOwner' }
7272 */
73- role ?:
74- | "systemAdmin"
75- | "accountOwner"
76- | "organisationAdmin"
77- | "organisationManager"
78- | "organisationStaff" ;
73+ role ?: "systemAdmin" | "accountOwner" ;
7974 /**
8075 * **Is Owner** (BooleanField)
8176 * @type {boolean }
@@ -167,15 +162,10 @@ type AccountParamsActionMap = {
167162 email : string ;
168163 /**
169164 * **Role** (ChoicesField)
170- * @type {'systemAdmin' | 'accountOwner' | 'organisationAdmin' | 'organisationManager' | 'organisationStaff' }
165+ * @type {'systemAdmin' | 'accountOwner' }
171166 * @required true
172167 */
173- role :
174- | "systemAdmin"
175- | "accountOwner"
176- | "organisationAdmin"
177- | "organisationManager"
178- | "organisationStaff" ;
168+ role : "systemAdmin" | "accountOwner" ;
179169 } ;
180170 return : Promise < any > ;
181171 } ;
You can’t perform that action at this time.
0 commit comments