@appsemble/types 0.24.13 → 0.25.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/README.md +3 -3
- package/cli.d.ts +4 -0
- package/index.d.ts +4 -0
- 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.25.0)
|
|
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.25.0/LICENSE.md) ©
|
|
30
30
|
[Appsemble](https://appsemble.com)
|
package/cli.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ export interface AppsembleContext {
|
|
|
42
42
|
* If `demoMode` is specified, this will override `--demo-mode` passed on the command line.
|
|
43
43
|
*/
|
|
44
44
|
demoMode?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* If `seed` is specified, this will override `--seed` passed on the command line.
|
|
47
|
+
*/
|
|
48
|
+
seed?: boolean;
|
|
45
49
|
/**
|
|
46
50
|
* Set the value of AppLock for your app.
|
|
47
51
|
*/
|
package/index.d.ts
CHANGED
|
@@ -1684,6 +1684,10 @@ export interface App {
|
|
|
1684
1684
|
* Whether the app should be used in demo mode.
|
|
1685
1685
|
*/
|
|
1686
1686
|
demoMode: boolean;
|
|
1687
|
+
/**
|
|
1688
|
+
* Whether the app should seed resources and assets in demo mode.
|
|
1689
|
+
*/
|
|
1690
|
+
seed: boolean;
|
|
1687
1691
|
}
|
|
1688
1692
|
/**
|
|
1689
1693
|
* A rating given to an app.
|