Skip to content

Commit 50eed1c

Browse files
committed
version bump
1 parent 0ff3cf6 commit 50eed1c

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/auth/entries/account/_account.type.ts

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)