@appsemble/types 0.27.8 → 0.27.9
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 +25 -7
- 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.9)
|
|
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.27.
|
|
29
|
+
[LGPL-3.0-only](https://gitlab.com/appsemble/appsemble/-/blob/0.27.9/LICENSE.md) ©
|
|
30
30
|
[Appsemble](https://appsemble.com)
|
package/cli.d.ts
CHANGED
|
@@ -75,6 +75,12 @@ export interface AppsembleContext {
|
|
|
75
75
|
* command line.
|
|
76
76
|
*/
|
|
77
77
|
showAppDefinition?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* The alternative app variant to use instead.
|
|
80
|
+
*
|
|
81
|
+
* If `variant` is specified, this will override `--variant` passed on the command line.
|
|
82
|
+
*/
|
|
83
|
+
variant?: string;
|
|
78
84
|
/**
|
|
79
85
|
* Determine the app visibility of the app in the Appsemble app store.
|
|
80
86
|
*
|
|
@@ -100,13 +106,6 @@ export interface AppsembleContext {
|
|
|
100
106
|
* If `demoMode` is specified, this will override `--demo-mode` passed on the command line.
|
|
101
107
|
*/
|
|
102
108
|
demoMode?: boolean;
|
|
103
|
-
/**
|
|
104
|
-
* Whether app assets should be clonable.
|
|
105
|
-
*
|
|
106
|
-
* If `assetsClonable` is specified, this will override `--assets-clonable` passed on the command
|
|
107
|
-
* line.
|
|
108
|
-
*/
|
|
109
|
-
assetsClonable?: boolean;
|
|
110
109
|
/**
|
|
111
110
|
* Set the value of AppLock for your app.
|
|
112
111
|
*
|
|
@@ -119,6 +118,25 @@ export interface AppsembleContext {
|
|
|
119
118
|
* If `collections` is specified, this will override `--collections` passed on the command line.
|
|
120
119
|
*/
|
|
121
120
|
collections?: number[];
|
|
121
|
+
/**
|
|
122
|
+
* Whether to publish resources from the resources directory.
|
|
123
|
+
*
|
|
124
|
+
* If resources is specified, this will override --resources passed on the command line.
|
|
125
|
+
*/
|
|
126
|
+
resources?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Whether to publish assets from the assets directory.
|
|
129
|
+
*
|
|
130
|
+
* If assets is specified, this will override --assets passed on the command line.
|
|
131
|
+
*/
|
|
132
|
+
assets?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Whether app assets should be clonable.
|
|
135
|
+
*
|
|
136
|
+
* If `assetsClonable` is specified, this will override `--assets-clonable` passed on the command
|
|
137
|
+
* line.
|
|
138
|
+
*/
|
|
139
|
+
assetsClonable?: boolean;
|
|
122
140
|
}
|
|
123
141
|
export interface AppsembleRC {
|
|
124
142
|
/**
|