@appsemble/types 0.29.11 → 0.30.2
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/README.md +3 -3
- package/action.d.ts +1 -1
- package/app.d.ts +0 -25
- package/index.d.ts +255 -122
- package/index.js +3 -3
- package/{user.d.ts → oauth2.d.ts} +0 -26
- package/oauth2.js +2 -0
- package/package.json +1 -1
- package/permissions.d.ts +385 -0
- package/permissions.js +411 -0
- package/resource.d.ts +14 -0
- package/roles.d.ts +48 -0
- package/roles.js +202 -0
- package/appMember.d.ts +0 -19
- package/appMember.js +0 -2
- package/team.d.ts +0 -20
- package/team.js +0 -2
- package/user.js +0 -2
package/appMember.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { type IconName } from '@fortawesome/fontawesome-common-types';
|
|
2
|
-
import { type App } from './index.js';
|
|
3
|
-
export interface SSOConfiguration {
|
|
4
|
-
type: 'oauth2' | 'saml';
|
|
5
|
-
url: string;
|
|
6
|
-
icon: IconName;
|
|
7
|
-
name: string;
|
|
8
|
-
}
|
|
9
|
-
export interface AppAccount {
|
|
10
|
-
id: string;
|
|
11
|
-
role: string;
|
|
12
|
-
name: string;
|
|
13
|
-
email: string;
|
|
14
|
-
emailVerified: boolean;
|
|
15
|
-
picture: string;
|
|
16
|
-
app: App;
|
|
17
|
-
sso: SSOConfiguration[];
|
|
18
|
-
properties: Record<string, string>;
|
|
19
|
-
}
|
package/appMember.js
DELETED
package/team.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Represents a team within an organization.
|
|
3
|
-
*/
|
|
4
|
-
export interface Team {
|
|
5
|
-
/**
|
|
6
|
-
* The ID of the team.
|
|
7
|
-
*/
|
|
8
|
-
id: number;
|
|
9
|
-
/**
|
|
10
|
-
* The display name of the team.
|
|
11
|
-
*/
|
|
12
|
-
name: string;
|
|
13
|
-
/**
|
|
14
|
-
* Custom annotations for the team.
|
|
15
|
-
*/
|
|
16
|
-
annotations?: Record<string, string>;
|
|
17
|
-
}
|
|
18
|
-
export interface TeamMember extends Team {
|
|
19
|
-
role: 'manager' | 'member';
|
|
20
|
-
}
|
package/team.js
DELETED
package/user.js
DELETED