@twin.org/standards-schema-org 0.0.1-next.40 → 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.
@@ -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";
@@ -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,13 @@
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
+
3
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)
4
12
 
5
13
 
@@ -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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/standards-schema-org",
3
- "version": "0.0.1-next.40",
3
+ "version": "0.0.1-next.41",
4
4
  "description": "Models which define the structure of schema.org Standard",
5
5
  "repository": {
6
6
  "type": "git",