@griddo/core 1.74.18 → 1.74.20

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
- /** Indicates that the data is of type page. Must always be `true`. */
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
- /** It is not necessary to indicate the `fromPage` prop in a schema: Pure
11
- * structured data. It will always be `false`. @deprecated */
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.18",
5
+ "version": "1.74.20",
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": "6789c32f74d563e6503a793debaa106ba11ca9ac"
76
+ "gitHead": "f3f8927174aa35a0cfb99b25a096efd3065a7442"
77
77
  }