@vendure/common 3.0.0-next.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 +4 -3
- package/lib/shared-types.d.ts +3 -3
- package/package.json +2 -2
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
|
|
35
|
-
|
|
36
|
-
[
|
|
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)
|
package/lib/shared-types.d.ts
CHANGED
|
@@ -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/#
|
|
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 '
|
|
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
|
|
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.
|
|
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": "
|
|
25
|
+
"gitHead": "8e126574cecfb3c17a4ea364383fb89ba087fee1"
|
|
26
26
|
}
|