@griddo/core 1.75.254 → 1.75.255

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.
@@ -85,7 +85,7 @@ interface LinkCommon {
85
85
  }
86
86
  interface LinkUrl extends LinkCommon {
87
87
  linkType: "url";
88
- url: Url;
88
+ url?: Url;
89
89
  }
90
90
  interface LinkModal<ModalComponents> extends LinkCommon {
91
91
  linkType: "modal";
@@ -93,7 +93,7 @@ interface LinkModal<ModalComponents> extends LinkCommon {
93
93
  }
94
94
  /** Field of type link in which a whitelist of modules can be added, for example to open them in a modal. */
95
95
  export type Link<ModalComponents = unknown> = ModalComponents extends {
96
- modal: Array<unknown>;
96
+ modal?: Array<unknown>;
97
97
  } ? LinkModal<ModalComponents> : LinkUrl;
98
98
  type MultiCheckSelectWithRelations<FromDistributor, RelatedContentType> = FromDistributor extends true ? QueriedDataItem<RelatedContentType> : {
99
99
  name?: number;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@griddo/core",
3
3
  "description": "Reload version of Griddo Core",
4
4
  "license": "UNLICENSED",
5
- "version": "1.75.254",
5
+ "version": "1.75.255",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -78,5 +78,5 @@
78
78
  "resolutions": {
79
79
  "colors": "1.4.0"
80
80
  },
81
- "gitHead": "95a6b9960eb7a11b8536e2c9a81575f2d22aaeea"
81
+ "gitHead": "5eb1acb0661051a96cf40b52512b0400eaa60651"
82
82
  }