@budibase/types 3.18.14 → 3.19.0
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/dist/api/web/user.d.ts +3 -7
- package/package.json +2 -2
package/dist/api/web/user.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export interface Invite {
|
|
|
7
7
|
export interface InviteWithCode extends Invite {
|
|
8
8
|
code: string;
|
|
9
9
|
}
|
|
10
|
+
export interface EditUserPermissionsResponse {
|
|
11
|
+
_rev: string;
|
|
12
|
+
}
|
|
10
13
|
export interface SaveUserResponse {
|
|
11
14
|
_id: string;
|
|
12
15
|
_rev: string;
|
|
@@ -144,13 +147,6 @@ export interface CheckInviteResponse {
|
|
|
144
147
|
email: string;
|
|
145
148
|
}
|
|
146
149
|
export type GetUserInvitesResponse = InviteWithCode[];
|
|
147
|
-
export interface UpdateInviteRequest extends Omit<Invite, "email"> {
|
|
148
|
-
email?: string;
|
|
149
|
-
builder?: {
|
|
150
|
-
apps: string[];
|
|
151
|
-
};
|
|
152
|
-
apps: string[];
|
|
153
|
-
}
|
|
154
150
|
export interface UpdateInviteResponse extends Invite {
|
|
155
151
|
}
|
|
156
152
|
export type LookupAccountHolderResponse = AccountMetadata | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.19.0",
|
|
4
4
|
"description": "Budibase types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"scim-patch": "^0.8.1"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "72863c719173848d3128cbef9556a0af09708c20"
|
|
30
30
|
}
|