@appsemble/types 0.26.0 → 0.27.1
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/cli.d.ts +8 -0
- package/index.d.ts +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#  Appsemble Types
|
|
2
2
|
|
|
3
3
|
> Reusable TypeScript types
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@appsemble/types)
|
|
6
|
-
[](https://gitlab.com/appsemble/appsemble/-/releases/0.27.1)
|
|
7
7
|
[](https://prettier.io)
|
|
8
8
|
|
|
9
9
|
## Table of Contents
|
|
@@ -26,5 +26,5 @@ not guaranteed.
|
|
|
26
26
|
|
|
27
27
|
## License
|
|
28
28
|
|
|
29
|
-
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.
|
|
29
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.27.1/LICENSE.md) ©
|
|
30
30
|
[Appsemble](https://appsemble.com)
|
package/cli.d.ts
CHANGED
|
@@ -46,10 +46,18 @@ export interface AppsembleContext {
|
|
|
46
46
|
* If `seed` is specified, this will override `--seed` passed on the command line.
|
|
47
47
|
*/
|
|
48
48
|
seed?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Whether app assets should be clonable.
|
|
51
|
+
*/
|
|
52
|
+
assetsClonable?: boolean;
|
|
49
53
|
/**
|
|
50
54
|
* Set the value of AppLock for your app.
|
|
51
55
|
*/
|
|
52
56
|
appLock?: AppLock;
|
|
57
|
+
/**
|
|
58
|
+
* A list of collections the app needs to be added to
|
|
59
|
+
*/
|
|
60
|
+
collections?: string[];
|
|
53
61
|
}
|
|
54
62
|
export interface AppsembleRC {
|
|
55
63
|
/**
|
package/index.d.ts
CHANGED
|
@@ -1688,10 +1688,6 @@ export interface App {
|
|
|
1688
1688
|
* Whether the app should be used in demo mode.
|
|
1689
1689
|
*/
|
|
1690
1690
|
demoMode: boolean;
|
|
1691
|
-
/**
|
|
1692
|
-
* Whether the app should seed resources and assets in demo mode.
|
|
1693
|
-
*/
|
|
1694
|
-
seed: boolean;
|
|
1695
1691
|
}
|
|
1696
1692
|
/**
|
|
1697
1693
|
* A rating given to an app.
|