@griddo/core 10.6.13 → 10.6.14
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.
|
@@ -11,7 +11,9 @@ export type ArrayFieldGroup<Fields> = Array<Fields>;
|
|
|
11
11
|
export type AsyncSelect<Relations, FromList, RelatedContentType, FromDistributor> = FromList extends true ? Relations extends true | "simple" ? {
|
|
12
12
|
id?: number;
|
|
13
13
|
label?: string;
|
|
14
|
-
} : Relations extends "full" ?
|
|
14
|
+
} : Relations extends "full" ? {
|
|
15
|
+
content: RelatedContentType;
|
|
16
|
+
} : number : FromDistributor extends true ? Relations extends true ? {
|
|
15
17
|
id?: number;
|
|
16
18
|
} & QueriedDataItem<RelatedContentType> : {
|
|
17
19
|
id?: number;
|
|
@@ -308,7 +308,7 @@ export interface FullPath {
|
|
|
308
308
|
/** Slug for the compose url with the format `/language-name/` */
|
|
309
309
|
compose?: string;
|
|
310
310
|
}
|
|
311
|
-
export type ListContentType<Item> =
|
|
311
|
+
export type ListContentType<Item> = Item & {
|
|
312
312
|
id: number;
|
|
313
313
|
title: string;
|
|
314
314
|
url: string;
|
package/dist/types/global.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface SetQueryProps<ContentType> {
|
|
|
19
19
|
id: number;
|
|
20
20
|
title: string;
|
|
21
21
|
url: string;
|
|
22
|
+
urlCanonical: string;
|
|
22
23
|
}>, "__relatedContentTypeNames" | "__contentTypeKind" | "__contentTypeName">>;
|
|
23
24
|
/** Array of filterIds or Object of arrays of content type ids to filter the query */
|
|
24
25
|
/** String as HASH to cache the query (Mostly interal use) */
|
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": "10.6.
|
|
5
|
+
"version": "10.6.14",
|
|
6
6
|
"authors": [
|
|
7
7
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
8
8
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "bf6a44085efc5362970097d5e1c02a2d47dade9d"
|
|
79
79
|
}
|