@localess/js-client 0.3.1-next.20250107-201546.0 → 0.3.2-next.20250108-000424.0
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.
|
@@ -2,10 +2,7 @@ import { ContentAsset } from "./content-asset";
|
|
|
2
2
|
import { ContentLink } from "./content-link";
|
|
3
3
|
import { ContentRichText } from "./content-rich-text";
|
|
4
4
|
import { ContentReference } from "./content-reference";
|
|
5
|
-
|
|
6
|
-
* ContentData defined Object to connect all possible root Schemas.
|
|
7
|
-
*/
|
|
8
|
-
export type ContentData = {
|
|
5
|
+
export type ContentDataMetadata = {
|
|
9
6
|
/**
|
|
10
7
|
* Unique identifier of a component in a content.
|
|
11
8
|
*/
|
|
@@ -14,6 +11,11 @@ export type ContentData = {
|
|
|
14
11
|
* Unique identifier for the Schema object.
|
|
15
12
|
*/
|
|
16
13
|
schema: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* ContentData defined Object to connect all possible root Schemas.
|
|
17
|
+
*/
|
|
18
|
+
export type ContentData = ContentDataMetadata & {
|
|
17
19
|
/**
|
|
18
20
|
* Other Schema specific fields
|
|
19
21
|
*/
|
|
@@ -2,10 +2,7 @@ import { ContentAsset } from "./content-asset";
|
|
|
2
2
|
import { ContentLink } from "./content-link";
|
|
3
3
|
import { ContentRichText } from "./content-rich-text";
|
|
4
4
|
import { ContentReference } from "./content-reference";
|
|
5
|
-
|
|
6
|
-
* ContentData defined Object to connect all possible root Schemas.
|
|
7
|
-
*/
|
|
8
|
-
export type ContentData = {
|
|
5
|
+
export type ContentDataMetadata = {
|
|
9
6
|
/**
|
|
10
7
|
* Unique identifier of a component in a content.
|
|
11
8
|
*/
|
|
@@ -14,6 +11,11 @@ export type ContentData = {
|
|
|
14
11
|
* Unique identifier for the Schema object.
|
|
15
12
|
*/
|
|
16
13
|
schema: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* ContentData defined Object to connect all possible root Schemas.
|
|
17
|
+
*/
|
|
18
|
+
export type ContentData = ContentDataMetadata & {
|
|
17
19
|
/**
|
|
18
20
|
* Other Schema specific fields
|
|
19
21
|
*/
|