@appsemble/types 0.20.9 → 0.20.12
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/action.d.ts +46 -0
- package/action.js +2 -0
- package/action.js.map +1 -0
- package/action.ts +93 -0
- package/{dist/app.d.ts → app.d.ts} +0 -0
- package/{dist/app.js → app.js} +0 -0
- package/app.js.map +1 -0
- package/app.ts +39 -0
- package/{dist/appMember.d.ts → appMember.d.ts} +0 -0
- package/{dist/appMember.js → appMember.js} +0 -0
- package/appMember.js.map +1 -0
- package/appMember.ts +22 -0
- package/{dist/asset.d.ts → asset.d.ts} +0 -0
- package/{dist/asset.js → asset.js} +0 -0
- package/asset.js.map +1 -0
- package/asset.ts +31 -0
- package/{dist/authentication.d.ts → authentication.d.ts} +0 -0
- package/{dist/authentication.js → authentication.js} +0 -0
- package/{dist/authentication.js.map → authentication.js.map} +1 -1
- package/authentication.ts +5 -0
- package/{dist/author.d.ts → author.d.ts} +0 -0
- package/{dist/author.js → author.js} +0 -0
- package/author.js.map +1 -0
- package/author.ts +14 -0
- package/bulma.d.ts +5 -0
- package/bulma.js +2 -0
- package/bulma.js.map +1 -0
- package/bulma.ts +14 -0
- package/changed/added/.gitkeep +0 -0
- package/changed/changed/.gitkeep +0 -0
- package/changed/deprecated/.gitkeep +0 -0
- package/changed/fixed/.gitkeep +0 -0
- package/changed/removed/.gitkeep +0 -0
- package/changed/security/.gitkeep +0 -0
- package/http.d.ts +4 -0
- package/http.js +2 -0
- package/http.js.map +1 -0
- package/http.ts +14 -0
- package/{dist/index.d.ts → index.d.ts} +44 -2
- package/{dist/index.js → index.js} +4 -0
- package/index.js.map +1 -0
- package/index.ts +1988 -0
- package/jest.config.js +1 -0
- package/package.json +5 -5
- package/{dist/resource.d.ts → resource.d.ts} +0 -0
- package/{dist/resource.js → resource.js} +0 -0
- package/resource.js.map +1 -0
- package/resource.ts +56 -0
- package/{dist/saml.d.ts → saml.d.ts} +0 -0
- package/{dist/saml.js → saml.js} +0 -0
- package/saml.js.map +1 -0
- package/saml.ts +3 -0
- package/{dist/snapshot.d.ts → snapshot.d.ts} +0 -0
- package/{dist/snapshot.js → snapshot.js} +0 -0
- package/snapshot.js.map +1 -0
- package/snapshot.ts +26 -0
- package/{dist/ssl.d.ts → ssl.d.ts} +0 -0
- package/{dist/ssl.js → ssl.js} +0 -0
- package/ssl.js.map +1 -0
- package/ssl.ts +15 -0
- package/{dist/team.d.ts → team.d.ts} +0 -0
- package/{dist/team.js → team.js} +0 -0
- package/team.js.map +1 -0
- package/team.ts +23 -0
- package/{dist/template.d.ts → template.d.ts} +0 -0
- package/{dist/template.js → template.js} +0 -0
- package/template.js.map +1 -0
- package/template.ts +33 -0
- package/theme.d.ts +54 -0
- package/theme.js +2 -0
- package/theme.js.map +1 -0
- package/theme.ts +65 -0
- package/tsconfig.json +4 -0
- package/{dist/user.d.ts → user.d.ts} +0 -0
- package/{dist/user.js → user.js} +0 -0
- package/user.js.map +1 -0
- package/user.ts +66 -0
- package/dist/app.js.map +0 -1
- package/dist/appMember.js.map +0 -1
- package/dist/asset.js.map +0 -1
- package/dist/author.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/resource.js.map +0 -1
- package/dist/saml.js.map +0 -1
- package/dist/snapshot.js.map +0 -1
- package/dist/ssl.js.map +0 -1
- package/dist/team.js.map +0 -1
- package/dist/template.js.map +0 -1
- package/dist/user.js.map +0 -1
package/action.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Remapper } from '.';
|
|
2
|
+
import { HTTPMethods } from './http';
|
|
3
|
+
interface BaseAction<T extends string> {
|
|
4
|
+
/**
|
|
5
|
+
* A function which can be called to dispatch the action.
|
|
6
|
+
*/
|
|
7
|
+
<R>(data?: any, context?: Record<string, any>): Promise<R>;
|
|
8
|
+
/**
|
|
9
|
+
* The type of the action.
|
|
10
|
+
*/
|
|
11
|
+
type: T;
|
|
12
|
+
}
|
|
13
|
+
export interface LinkAction extends BaseAction<'link'> {
|
|
14
|
+
/**
|
|
15
|
+
* Get the link that the action would link to if the given data was passed.
|
|
16
|
+
*/
|
|
17
|
+
href: (data?: unknown) => string;
|
|
18
|
+
}
|
|
19
|
+
export interface LogAction extends BaseAction<'log'> {
|
|
20
|
+
/**
|
|
21
|
+
* The logging level.
|
|
22
|
+
*/
|
|
23
|
+
level: 'error' | 'info' | 'warn';
|
|
24
|
+
}
|
|
25
|
+
interface RequestLikeAction<T extends Action['type']> extends BaseAction<T> {
|
|
26
|
+
/**
|
|
27
|
+
* The HTTP method used to make the request.
|
|
28
|
+
*/
|
|
29
|
+
method: HTTPMethods;
|
|
30
|
+
/**
|
|
31
|
+
* The URL to which the request will be made.
|
|
32
|
+
*/
|
|
33
|
+
url: Remapper;
|
|
34
|
+
}
|
|
35
|
+
export declare type RequestAction = RequestLikeAction<'request'>;
|
|
36
|
+
export declare type ResourceCreateAction = RequestLikeAction<'resource.create'>;
|
|
37
|
+
export declare type ResourceDeleteAction = RequestLikeAction<'resource.delete'>;
|
|
38
|
+
export declare type ResourceGetAction = RequestLikeAction<'resource.get'>;
|
|
39
|
+
export declare type ResourceQueryAction = RequestLikeAction<'resource.query'>;
|
|
40
|
+
export declare type ResourceCountAction = RequestLikeAction<'resource.count'>;
|
|
41
|
+
export declare type ResourceUpdateAction = RequestLikeAction<'resource.update'>;
|
|
42
|
+
/**
|
|
43
|
+
* An action that can be called from within a block.
|
|
44
|
+
*/
|
|
45
|
+
export declare type Action = BaseAction<'analytics'> | BaseAction<'condition'> | BaseAction<'dialog.error'> | BaseAction<'dialog.ok'> | BaseAction<'dialog'> | BaseAction<'download'> | BaseAction<'email'> | BaseAction<'event'> | BaseAction<'flow.back'> | BaseAction<'flow.cancel'> | BaseAction<'flow.finish'> | BaseAction<'flow.next'> | BaseAction<'flow.to'> | BaseAction<'link.back'> | BaseAction<'link.next'> | BaseAction<'message'> | BaseAction<'noop'> | BaseAction<'resource.subscription.status'> | BaseAction<'resource.subscription.subscribe'> | BaseAction<'resource.subscription.toggle'> | BaseAction<'resource.subscription.unsubscribe'> | BaseAction<'share'> | BaseAction<'static'> | BaseAction<'storage.read'> | BaseAction<'storage.write'> | BaseAction<'team.invite'> | BaseAction<'team.join'> | BaseAction<'team.list'> | BaseAction<'throw'> | BaseAction<'user.login'> | BaseAction<'user.register'> | BaseAction<'user.update'> | LinkAction | LogAction | RequestAction | ResourceCountAction | ResourceCreateAction | ResourceDeleteAction | ResourceGetAction | ResourceQueryAction | ResourceUpdateAction;
|
|
46
|
+
export {};
|
package/action.js
ADDED
package/action.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.js","sourceRoot":"","sources":["action.ts"],"names":[],"mappings":""}
|
package/action.ts
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Remapper } from '.';
|
|
2
|
+
import { HTTPMethods } from './http';
|
|
3
|
+
|
|
4
|
+
interface BaseAction<T extends string> {
|
|
5
|
+
/**
|
|
6
|
+
* A function which can be called to dispatch the action.
|
|
7
|
+
*/
|
|
8
|
+
<R>(data?: any, context?: Record<string, any>): Promise<R>;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* The type of the action.
|
|
12
|
+
*/
|
|
13
|
+
type: T;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface LinkAction extends BaseAction<'link'> {
|
|
17
|
+
/**
|
|
18
|
+
* Get the link that the action would link to if the given data was passed.
|
|
19
|
+
*/
|
|
20
|
+
href: (data?: unknown) => string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface LogAction extends BaseAction<'log'> {
|
|
24
|
+
/**
|
|
25
|
+
* The logging level.
|
|
26
|
+
*/
|
|
27
|
+
level: 'error' | 'info' | 'warn';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
interface RequestLikeAction<T extends Action['type']> extends BaseAction<T> {
|
|
31
|
+
/**
|
|
32
|
+
* The HTTP method used to make the request.
|
|
33
|
+
*/
|
|
34
|
+
method: HTTPMethods;
|
|
35
|
+
/**
|
|
36
|
+
* The URL to which the request will be made.
|
|
37
|
+
*/
|
|
38
|
+
url: Remapper;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export type RequestAction = RequestLikeAction<'request'>;
|
|
42
|
+
export type ResourceCreateAction = RequestLikeAction<'resource.create'>;
|
|
43
|
+
export type ResourceDeleteAction = RequestLikeAction<'resource.delete'>;
|
|
44
|
+
export type ResourceGetAction = RequestLikeAction<'resource.get'>;
|
|
45
|
+
export type ResourceQueryAction = RequestLikeAction<'resource.query'>;
|
|
46
|
+
export type ResourceCountAction = RequestLikeAction<'resource.count'>;
|
|
47
|
+
export type ResourceUpdateAction = RequestLikeAction<'resource.update'>;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* An action that can be called from within a block.
|
|
51
|
+
*/
|
|
52
|
+
export type Action =
|
|
53
|
+
| BaseAction<'analytics'>
|
|
54
|
+
| BaseAction<'condition'>
|
|
55
|
+
| BaseAction<'dialog.error'>
|
|
56
|
+
| BaseAction<'dialog.ok'>
|
|
57
|
+
| BaseAction<'dialog'>
|
|
58
|
+
| BaseAction<'download'>
|
|
59
|
+
| BaseAction<'email'>
|
|
60
|
+
| BaseAction<'event'>
|
|
61
|
+
| BaseAction<'flow.back'>
|
|
62
|
+
| BaseAction<'flow.cancel'>
|
|
63
|
+
| BaseAction<'flow.finish'>
|
|
64
|
+
| BaseAction<'flow.next'>
|
|
65
|
+
| BaseAction<'flow.to'>
|
|
66
|
+
| BaseAction<'link.back'>
|
|
67
|
+
| BaseAction<'link.next'>
|
|
68
|
+
| BaseAction<'message'>
|
|
69
|
+
| BaseAction<'noop'>
|
|
70
|
+
| BaseAction<'resource.subscription.status'>
|
|
71
|
+
| BaseAction<'resource.subscription.subscribe'>
|
|
72
|
+
| BaseAction<'resource.subscription.toggle'>
|
|
73
|
+
| BaseAction<'resource.subscription.unsubscribe'>
|
|
74
|
+
| BaseAction<'share'>
|
|
75
|
+
| BaseAction<'static'>
|
|
76
|
+
| BaseAction<'storage.read'>
|
|
77
|
+
| BaseAction<'storage.write'>
|
|
78
|
+
| BaseAction<'team.invite'>
|
|
79
|
+
| BaseAction<'team.join'>
|
|
80
|
+
| BaseAction<'team.list'>
|
|
81
|
+
| BaseAction<'throw'>
|
|
82
|
+
| BaseAction<'user.login'>
|
|
83
|
+
| BaseAction<'user.register'>
|
|
84
|
+
| BaseAction<'user.update'>
|
|
85
|
+
| LinkAction
|
|
86
|
+
| LogAction
|
|
87
|
+
| RequestAction
|
|
88
|
+
| ResourceCountAction
|
|
89
|
+
| ResourceCreateAction
|
|
90
|
+
| ResourceDeleteAction
|
|
91
|
+
| ResourceGetAction
|
|
92
|
+
| ResourceQueryAction
|
|
93
|
+
| ResourceUpdateAction;
|
|
File without changes
|
package/{dist/app.js → app.js}
RENAMED
|
File without changes
|
package/app.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.js","sourceRoot":"","sources":["app.ts"],"names":[],"mappings":""}
|
package/app.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The app visibility of the app in the Appsemble app store.
|
|
3
|
+
*
|
|
4
|
+
* This doesn’t affect whether or not the app can be accessed on its own domain.
|
|
5
|
+
*
|
|
6
|
+
* - **public**: The app is publicly listed in the Appsemble app store.
|
|
7
|
+
* - **unlisted**: The app store page can be accessed, but the app isn’t listed publicly in the
|
|
8
|
+
* Appsemble app store.
|
|
9
|
+
* - **private**: The app is only visible to people who are part of the organization.
|
|
10
|
+
*/
|
|
11
|
+
export type AppVisibility = 'private' | 'public' | 'unlisted';
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* This defines how teams are handled by an app.
|
|
15
|
+
*/
|
|
16
|
+
export interface TeamsDefinition {
|
|
17
|
+
/**
|
|
18
|
+
* If this is set to `anyone`, any logged in user may join a team. If this is set to `invite`,
|
|
19
|
+
* only users may join who have been invited.
|
|
20
|
+
*/
|
|
21
|
+
join: 'anyone' | 'invite';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* A list of app roles which may create a team.
|
|
25
|
+
*
|
|
26
|
+
* By default teams can only be created from Appsemble Studio.
|
|
27
|
+
*
|
|
28
|
+
* @default []
|
|
29
|
+
*/
|
|
30
|
+
create?: string[];
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* The roles here determine which users may invite a team member.
|
|
34
|
+
*
|
|
35
|
+
* The special roles `$team:member` and `$team:manager` mean that users who are already member of
|
|
36
|
+
* manager of the team may also invite new members.
|
|
37
|
+
*/
|
|
38
|
+
invite: string[];
|
|
39
|
+
}
|
|
File without changes
|
|
File without changes
|
package/appMember.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"appMember.js","sourceRoot":"","sources":["appMember.ts"],"names":[],"mappings":""}
|
package/appMember.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IconName } from '@fortawesome/fontawesome-common-types';
|
|
2
|
+
|
|
3
|
+
import { App } from '.';
|
|
4
|
+
|
|
5
|
+
export interface SSOConfiguration {
|
|
6
|
+
type: 'oauth2' | 'saml';
|
|
7
|
+
url: string;
|
|
8
|
+
icon: IconName;
|
|
9
|
+
name: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface AppAccount {
|
|
13
|
+
id: string;
|
|
14
|
+
role: string;
|
|
15
|
+
name: string;
|
|
16
|
+
email: string;
|
|
17
|
+
emailVerified: boolean;
|
|
18
|
+
picture: string;
|
|
19
|
+
app: App;
|
|
20
|
+
sso: SSOConfiguration[];
|
|
21
|
+
properties: Record<string, string>;
|
|
22
|
+
}
|
|
File without changes
|
|
File without changes
|
package/asset.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"asset.js","sourceRoot":"","sources":["asset.ts"],"names":[],"mappings":""}
|
package/asset.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export interface Asset {
|
|
2
|
+
/**
|
|
3
|
+
* The unique ID of the asset.
|
|
4
|
+
*/
|
|
5
|
+
id: string;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The mime type of the asset.
|
|
9
|
+
*/
|
|
10
|
+
mime: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The filename of the asset as it was uploaded.
|
|
14
|
+
*/
|
|
15
|
+
filename?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* A custom name that was given to the asset.
|
|
19
|
+
*/
|
|
20
|
+
name?: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the resource the asset is linked to.
|
|
24
|
+
*/
|
|
25
|
+
resourceId?: number;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* The type of the resource the asset is linked to.
|
|
29
|
+
*/
|
|
30
|
+
resourceType?: number;
|
|
31
|
+
}
|
|
File without changes
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authentication.js","sourceRoot":"","sources":["
|
|
1
|
+
{"version":3,"file":"authentication.js","sourceRoot":"","sources":["authentication.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
File without changes
|
package/author.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"author.js","sourceRoot":"","sources":["author.ts"],"names":[],"mappings":""}
|
package/author.ts
ADDED
package/bulma.d.ts
ADDED
package/bulma.js
ADDED
package/bulma.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bulma.js","sourceRoot":"","sources":["bulma.ts"],"names":[],"mappings":""}
|
package/bulma.ts
ADDED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/http.d.ts
ADDED
package/http.js
ADDED
package/http.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http.js","sourceRoot":"","sources":["http.ts"],"names":[],"mappings":""}
|
package/http.ts
ADDED
|
@@ -1,22 +1,28 @@
|
|
|
1
|
-
import { Action, BaseMessage, HTTPMethods, LogAction, Theme } from '@appsemble/sdk/src/types';
|
|
2
1
|
import { IconName } from '@fortawesome/fontawesome-common-types';
|
|
3
2
|
import { Schema } from 'jsonschema';
|
|
4
3
|
import { OpenAPIV3 } from 'openapi-types';
|
|
5
4
|
import { JsonObject, RequireExactlyOne } from 'type-fest';
|
|
5
|
+
import { Action, LogAction } from './action';
|
|
6
6
|
import { AppVisibility, TeamsDefinition } from './app';
|
|
7
|
+
import { BulmaColor } from './bulma';
|
|
8
|
+
import { HTTPMethods } from './http';
|
|
9
|
+
import { Theme } from './theme';
|
|
10
|
+
export * from './action';
|
|
7
11
|
export * from './app';
|
|
8
12
|
export * from './appMember';
|
|
9
13
|
export * from './asset';
|
|
10
14
|
export * from './authentication';
|
|
11
15
|
export * from './author';
|
|
16
|
+
export * from './bulma';
|
|
17
|
+
export * from './http';
|
|
12
18
|
export * from './snapshot';
|
|
13
19
|
export * from './resource';
|
|
14
20
|
export * from './saml';
|
|
15
21
|
export * from './ssl';
|
|
16
22
|
export * from './team';
|
|
17
23
|
export * from './template';
|
|
24
|
+
export * from './theme';
|
|
18
25
|
export * from './user';
|
|
19
|
-
export { Theme };
|
|
20
26
|
/**
|
|
21
27
|
* A representation of a generated OAuth2 authorization code response.
|
|
22
28
|
*/
|
|
@@ -129,6 +135,10 @@ export interface UserInfo {
|
|
|
129
135
|
* The end-user’s locale, represented as a BCP47 language tag.
|
|
130
136
|
*/
|
|
131
137
|
locale?: string;
|
|
138
|
+
/**
|
|
139
|
+
* The end-user’s time zone.
|
|
140
|
+
*/
|
|
141
|
+
zoneinfo?: string;
|
|
132
142
|
}
|
|
133
143
|
/**
|
|
134
144
|
* The payload stored in our JSON web tokens
|
|
@@ -569,8 +579,19 @@ export interface BaseActionDefinition<T extends Action['type']> {
|
|
|
569
579
|
/**
|
|
570
580
|
* A remapper function. This may be used to remap data before it is passed into the action
|
|
571
581
|
* function.
|
|
582
|
+
*
|
|
583
|
+
* @deprecated Since 0.20.10, use {@link remapBefore} instead.
|
|
572
584
|
*/
|
|
573
585
|
remap?: Remapper;
|
|
586
|
+
/**
|
|
587
|
+
* A remapper function. This may be used to remap data before it is passed into the action
|
|
588
|
+
* function.
|
|
589
|
+
*/
|
|
590
|
+
remapBefore?: Remapper;
|
|
591
|
+
/**
|
|
592
|
+
* The remapper used to transfrom the output before passing it to the next action.
|
|
593
|
+
*/
|
|
594
|
+
remapAfter?: Remapper;
|
|
574
595
|
/**
|
|
575
596
|
* Another action that is dispatched when the action has been dispatched successfully.
|
|
576
597
|
*/
|
|
@@ -890,6 +911,26 @@ export interface StaticActionDefinition extends BaseActionDefinition<'static'> {
|
|
|
890
911
|
*/
|
|
891
912
|
value: any;
|
|
892
913
|
}
|
|
914
|
+
export interface BaseMessage {
|
|
915
|
+
/**
|
|
916
|
+
* The color to use for the message.
|
|
917
|
+
*
|
|
918
|
+
* @default 'info'
|
|
919
|
+
*/
|
|
920
|
+
color?: BulmaColor;
|
|
921
|
+
/**
|
|
922
|
+
* The timeout period for this message (in milliseconds).
|
|
923
|
+
*
|
|
924
|
+
* @default 5000
|
|
925
|
+
*/
|
|
926
|
+
timeout?: number;
|
|
927
|
+
/**
|
|
928
|
+
* Whether or not to show the dismiss button.
|
|
929
|
+
*
|
|
930
|
+
* @default false
|
|
931
|
+
*/
|
|
932
|
+
dismissable?: boolean;
|
|
933
|
+
}
|
|
893
934
|
export declare type MessageActionDefinition = BaseActionDefinition<'message'> & BaseMessage & {
|
|
894
935
|
/**
|
|
895
936
|
* The content of the message to display.
|
|
@@ -974,6 +1015,7 @@ export interface BlockManifest {
|
|
|
974
1015
|
* If the block has no messages, this property is `null`.
|
|
975
1016
|
*/
|
|
976
1017
|
languages: string[] | null;
|
|
1018
|
+
examples?: string[];
|
|
977
1019
|
/**
|
|
978
1020
|
* Whether the block should be listed publicly
|
|
979
1021
|
* for users who aren’t part of the block’s organization.
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
+
export * from './action';
|
|
1
2
|
export * from './app';
|
|
2
3
|
export * from './appMember';
|
|
3
4
|
export * from './asset';
|
|
4
5
|
export * from './authentication';
|
|
5
6
|
export * from './author';
|
|
7
|
+
export * from './bulma';
|
|
8
|
+
export * from './http';
|
|
6
9
|
export * from './snapshot';
|
|
7
10
|
export * from './resource';
|
|
8
11
|
export * from './saml';
|
|
9
12
|
export * from './ssl';
|
|
10
13
|
export * from './team';
|
|
11
14
|
export * from './template';
|
|
15
|
+
export * from './theme';
|
|
12
16
|
export * from './user';
|
|
13
17
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAWA,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC"}
|