@vendure/common 2.1.0-next.4 → 2.1.0-next.6

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.
@@ -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](/docs/typescript-api/custom-fields/#configuration-options)
71
+ * Additionally, the CustomFieldType also dictates which [configuration options](/reference/typescript-api/custom-fields/#configuration-options)
72
72
  * are available for that custom field.
73
73
  *
74
74
  * @docsCategory custom-fields
@@ -167,7 +167,7 @@ export type CustomFieldsObject = {
167
167
  * The values are loaded at run-time by the Admin UI app, and allow core configuration to be
168
168
  * managed without the need to re-build the application.
169
169
  *
170
- * @docsCategory core plugins/AdminUiPlugin
170
+ * @docsCategory common/AdminUi
171
171
  */
172
172
  export interface AdminUiConfig {
173
173
  /**
@@ -279,7 +279,7 @@ export interface AdminUiConfig {
279
279
  * @description
280
280
  * Allows you to provide default reasons for a refund or cancellation. This will be used in the
281
281
  * refund/cancel dialog. The values can be literal strings (e.g. "Not in stock") or translation
282
- * tokens (see [Adding Admin UI Translations](/docs/plugins/extending-the-admin-ui/adding-ui-translations/)).
282
+ * tokens (see [Adding Admin UI Translations](/guides/extending-the-admin-ui/adding-ui-translations/)).
283
283
  *
284
284
  * @since 1.5.0
285
285
  * @default ['order.cancel-reason-customer-request', 'order.cancel-reason-not-available']
@@ -290,7 +290,7 @@ export interface AdminUiConfig {
290
290
  * @description
291
291
  * Configures the path to a custom-build of the Admin UI app.
292
292
  *
293
- * @docsCategory core plugins/AdminUiPlugin
293
+ * @docsCategory common/AdminUi
294
294
  */
295
295
  export interface AdminUiAppConfig {
296
296
  /**
@@ -317,7 +317,7 @@ export interface AdminUiAppConfig {
317
317
  * @description
318
318
  * Information about the Admin UI app dev server.
319
319
  *
320
- * @docsCategory core plugins/AdminUiPlugin
320
+ * @docsCategory common/AdminUi
321
321
  */
322
322
  export interface AdminUiAppDevModeConfig {
323
323
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendure/common",
3
- "version": "2.1.0-next.4",
3
+ "version": "2.1.0-next.6",
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.9.5"
24
24
  },
25
- "gitHead": "10ba12c0a870f30bb083bffc142feb040f76db22"
25
+ "gitHead": "e81dcd69f73ea61731abf72068b8d576609b4b24"
26
26
  }