@vendure/common 1.9.1 → 1.9.3
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/lib/shared-types.d.ts +4 -4
- package/package.json +2 -2
package/lib/shared-types.d.ts
CHANGED
|
@@ -172,7 +172,7 @@ export declare type CustomFieldsObject = {
|
|
|
172
172
|
export interface AdminUiConfig {
|
|
173
173
|
/**
|
|
174
174
|
* @description
|
|
175
|
-
* The hostname of the Vendure server which the admin
|
|
175
|
+
* The hostname of the Vendure server which the admin UI will be making API calls
|
|
176
176
|
* to. If set to "auto", the Admin UI app will determine the hostname from the
|
|
177
177
|
* current location (i.e. `window.location.hostname`).
|
|
178
178
|
*
|
|
@@ -181,7 +181,7 @@ export interface AdminUiConfig {
|
|
|
181
181
|
apiHost: string | 'auto';
|
|
182
182
|
/**
|
|
183
183
|
* @description
|
|
184
|
-
* The port of the Vendure server which the admin
|
|
184
|
+
* The port of the Vendure server which the admin UI will be making API calls
|
|
185
185
|
* to. If set to "auto", the Admin UI app will determine the port from the
|
|
186
186
|
* current location (i.e. `window.location.port`).
|
|
187
187
|
*
|
|
@@ -288,7 +288,7 @@ export interface AdminUiConfig {
|
|
|
288
288
|
export interface AdminUiAppConfig {
|
|
289
289
|
/**
|
|
290
290
|
* @description
|
|
291
|
-
* The path to the compiled admin
|
|
291
|
+
* The path to the compiled admin UI app files. If not specified, an internal
|
|
292
292
|
* default build is used. This path should contain the `vendure-ui-config.json` file,
|
|
293
293
|
* index.html, the compiled js bundles etc.
|
|
294
294
|
*/
|
|
@@ -315,7 +315,7 @@ export interface AdminUiAppConfig {
|
|
|
315
315
|
export interface AdminUiAppDevModeConfig {
|
|
316
316
|
/**
|
|
317
317
|
* @description
|
|
318
|
-
* The path to the uncompiled
|
|
318
|
+
* The path to the uncompiled UI app source files. This path should contain the `vendure-ui-config.json` file.
|
|
319
319
|
*/
|
|
320
320
|
sourcePath: string;
|
|
321
321
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/common",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"rimraf": "^3.0.2",
|
|
23
23
|
"typescript": "4.3.5"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "02513db6da212c870299c5b15b576b4ebf25563e"
|
|
26
26
|
}
|