@griddo/core 1.74.17 → 1.74.19
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.
|
@@ -12,7 +12,7 @@ export interface PageDataSchema extends BaseDataSchema, DataPacks, ExpirationDat
|
|
|
12
12
|
/** It is not necessary to specify the `taxonomy` prop because it will always
|
|
13
13
|
* be `false`. @deprecated */
|
|
14
14
|
taxonomy?: false;
|
|
15
|
-
/**
|
|
15
|
+
/** Always mus be true to indicate that is page Content Type */
|
|
16
16
|
fromPage: true;
|
|
17
17
|
/** Schema for data. */
|
|
18
18
|
schema: PageDataSchemaProp | null;
|
|
@@ -7,9 +7,8 @@ declare type PureDataSchemaProp = SearchFrom & {
|
|
|
7
7
|
fields: Array<PureDataFieldsSchema>;
|
|
8
8
|
};
|
|
9
9
|
export interface PureDataSchema extends BaseDataSchema, DataPacks, ExpirationData {
|
|
10
|
-
/**
|
|
11
|
-
|
|
12
|
-
fromPage?: false;
|
|
10
|
+
/** Always mus be false to indicate that is simple Content Type */
|
|
11
|
+
fromPage: false;
|
|
13
12
|
schema: PureDataSchemaProp;
|
|
14
13
|
}
|
|
15
14
|
export {};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@griddo/core",
|
|
3
3
|
"description": "Reload version of Griddo Core",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.74.
|
|
5
|
+
"version": "1.74.19",
|
|
6
6
|
"authors": [
|
|
7
7
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
8
8
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"resolutions": {
|
|
74
74
|
"colors": "1.4.0"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "404937904e9a41b05f15e0a4ef2a33c00a94ff28"
|
|
77
77
|
}
|