@vendure/common 3.0.0 → 3.0.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/LICENSE.md CHANGED
@@ -31,6 +31,7 @@ Commercial Distributions - must be used in accordance with the terms and conditi
31
31
  contained in a separate written agreement between you and Vendure GmbH.
32
32
  For more information about the Vendure Commercial License (VCL) please contact contact@vendure.io.
33
33
 
34
- Please see also (files in this directory):
35
- [Licensing FAQ - license-faq.md](license/license-faq.md)
36
- [GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - gpl-3.0.txt](license/gpl-3.0.txt)
34
+ Please see also:
35
+
36
+ - [Licensing FAQ - license-faq.md](license/license-faq.md)
37
+ - [GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - gpl-3.0.txt](license/gpl-3.0.txt)
@@ -68,7 +68,7 @@ export type ID = string | number;
68
68
  * datetime | datetime (m,s), timestamp (p) | DateTime
69
69
  * relation | many-to-one / many-to-many relation | As specified in config
70
70
  *
71
- * Additionally, the CustomFieldType also dictates which [configuration options](/reference/typescript-api/custom-fields/#configuration-options)
71
+ * Additionally, the CustomFieldType also dictates which [configuration options](/reference/typescript-api/custom-fields/#custom-field-config-properties)
72
72
  * are available for that custom field.
73
73
  *
74
74
  * @docsCategory custom-fields
@@ -176,7 +176,7 @@ export interface AdminUiConfig {
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
  *
179
- * @default 'http://localhost'
179
+ * @default 'auto'
180
180
  */
181
181
  apiHost: string | 'auto';
182
182
  /**
@@ -185,7 +185,7 @@ export interface AdminUiConfig {
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
  *
188
- * @default 3000
188
+ * @default 'auto'
189
189
  */
190
190
  apiPort: number | 'auto';
191
191
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendure/common",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "main": "index.js",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "scripts": {
@@ -22,5 +22,5 @@
22
22
  "rimraf": "^5.0.5",
23
23
  "typescript": "5.3.3"
24
24
  },
25
- "gitHead": "a23b3ae5d4675eb459bb646ba7dd4ab0b085eb08"
25
+ "gitHead": "8e126574cecfb3c17a4ea364383fb89ba087fee1"
26
26
  }