@twin.org/standards-schema-org 0.0.1-next.39 → 0.0.1-next.41
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.
package/dist/cjs/index.cjs
CHANGED
|
@@ -67,7 +67,19 @@ const SchemaOrgTypes = {
|
|
|
67
67
|
/**
|
|
68
68
|
* Represents a structured value.
|
|
69
69
|
*/
|
|
70
|
-
StructuredValue: "StructuredValue"
|
|
70
|
+
StructuredValue: "StructuredValue",
|
|
71
|
+
/**
|
|
72
|
+
* Represents an item list.
|
|
73
|
+
*/
|
|
74
|
+
ItemList: "ItemList",
|
|
75
|
+
/**
|
|
76
|
+
* Represents an item list element.
|
|
77
|
+
*/
|
|
78
|
+
ItemListElement: "itemListElement",
|
|
79
|
+
/**
|
|
80
|
+
* Represents a next item (can be used as a cursor).
|
|
81
|
+
*/
|
|
82
|
+
NextItem: "nextItem"
|
|
71
83
|
};
|
|
72
84
|
|
|
73
85
|
var type = "object";
|
package/dist/esm/index.mjs
CHANGED
|
@@ -65,7 +65,19 @@ const SchemaOrgTypes = {
|
|
|
65
65
|
/**
|
|
66
66
|
* Represents a structured value.
|
|
67
67
|
*/
|
|
68
|
-
StructuredValue: "StructuredValue"
|
|
68
|
+
StructuredValue: "StructuredValue",
|
|
69
|
+
/**
|
|
70
|
+
* Represents an item list.
|
|
71
|
+
*/
|
|
72
|
+
ItemList: "ItemList",
|
|
73
|
+
/**
|
|
74
|
+
* Represents an item list element.
|
|
75
|
+
*/
|
|
76
|
+
ItemListElement: "itemListElement",
|
|
77
|
+
/**
|
|
78
|
+
* Represents a next item (can be used as a cursor).
|
|
79
|
+
*/
|
|
80
|
+
NextItem: "nextItem"
|
|
69
81
|
};
|
|
70
82
|
|
|
71
83
|
var type = "object";
|
|
@@ -46,6 +46,18 @@ export declare const SchemaOrgTypes: {
|
|
|
46
46
|
* Represents a structured value.
|
|
47
47
|
*/
|
|
48
48
|
readonly StructuredValue: "StructuredValue";
|
|
49
|
+
/**
|
|
50
|
+
* Represents an item list.
|
|
51
|
+
*/
|
|
52
|
+
readonly ItemList: "ItemList";
|
|
53
|
+
/**
|
|
54
|
+
* Represents an item list element.
|
|
55
|
+
*/
|
|
56
|
+
readonly ItemListElement: "itemListElement";
|
|
57
|
+
/**
|
|
58
|
+
* Represents a next item (can be used as a cursor).
|
|
59
|
+
*/
|
|
60
|
+
readonly NextItem: "nextItem";
|
|
49
61
|
};
|
|
50
62
|
/**
|
|
51
63
|
* The types of schema.org data.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @twin.org/standards-schema-org - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.41](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.1-next.40...standards-schema-org-v0.0.1-next.41) (2025-05-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add ItemList, ItemListElement and NextItem types ([19d7baf](https://github.com/twinfoundation/standards/commit/19d7baf31a3e6385c68051da75835d917d134deb))
|
|
9
|
+
* add ItemList, ItemListElement and NextItem types ([fb40e25](https://github.com/twinfoundation/standards/commit/fb40e25bd3552760452cc31d654d3f0596482ae9))
|
|
10
|
+
|
|
11
|
+
## [0.0.1-next.40](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.1-next.39...standards-schema-org-v0.0.1-next.40) (2025-05-08)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Miscellaneous Chores
|
|
15
|
+
|
|
16
|
+
* **standards-schema-org:** Synchronize repo versions
|
|
17
|
+
|
|
3
18
|
## [0.0.1-next.39](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.1-next.38...standards-schema-org-v0.0.1-next.39) (2025-05-07)
|
|
4
19
|
|
|
5
20
|
|
|
@@ -71,3 +71,21 @@ Represents a location.
|
|
|
71
71
|
> `readonly` **StructuredValue**: `"StructuredValue"` = `"StructuredValue"`
|
|
72
72
|
|
|
73
73
|
Represents a structured value.
|
|
74
|
+
|
|
75
|
+
### ItemList
|
|
76
|
+
|
|
77
|
+
> `readonly` **ItemList**: `"ItemList"` = `"ItemList"`
|
|
78
|
+
|
|
79
|
+
Represents an item list.
|
|
80
|
+
|
|
81
|
+
### ItemListElement
|
|
82
|
+
|
|
83
|
+
> `readonly` **ItemListElement**: `"itemListElement"` = `"itemListElement"`
|
|
84
|
+
|
|
85
|
+
Represents an item list element.
|
|
86
|
+
|
|
87
|
+
### NextItem
|
|
88
|
+
|
|
89
|
+
> `readonly` **NextItem**: `"nextItem"` = `"nextItem"`
|
|
90
|
+
|
|
91
|
+
Represents a next item (can be used as a cursor).
|