@twin.org/blob-storage-models 0.0.1-next.30 → 0.0.1-next.31

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.
@@ -13,11 +13,7 @@ const BlobStorageTypes = {
13
13
  /**
14
14
  * Represents blob storage entry.
15
15
  */
16
- Entry: "BlobStorageEntry",
17
- /**
18
- * Represents blob storage entry list.
19
- */
20
- EntryList: "BlobStorageEntryList"
16
+ Entry: "BlobStorageEntry"
21
17
  };
22
18
 
23
19
  var type = "object";
@@ -11,11 +11,7 @@ const BlobStorageTypes = {
11
11
  /**
12
12
  * Represents blob storage entry.
13
13
  */
14
- Entry: "BlobStorageEntry",
15
- /**
16
- * Represents blob storage entry list.
17
- */
18
- EntryList: "BlobStorageEntryList"
14
+ Entry: "BlobStorageEntry"
19
15
  };
20
16
 
21
17
  var type = "object";
@@ -1,6 +1,6 @@
1
1
  import type { IJsonLdContextDefinitionElement } from "@twin.org/data-json-ld";
2
+ import type { SchemaOrgContexts, SchemaOrgTypes } from "@twin.org/standards-schema-org";
2
3
  import type { BlobStorageContexts } from "./blobStorageContexts";
3
- import type { BlobStorageTypes } from "./blobStorageTypes";
4
4
  import type { IBlobStorageEntry } from "./IBlobStorageEntry";
5
5
  /**
6
6
  * Interface describing an blob storage entry list.
@@ -10,6 +10,7 @@ export interface IBlobStorageEntryList {
10
10
  * JSON-LD Context.
11
11
  */
12
12
  "@context": [
13
+ typeof SchemaOrgContexts.ContextRoot,
13
14
  typeof BlobStorageContexts.ContextRoot,
14
15
  typeof BlobStorageContexts.ContextRootCommon,
15
16
  ...IJsonLdContextDefinitionElement[]
@@ -17,13 +18,13 @@ export interface IBlobStorageEntryList {
17
18
  /**
18
19
  * JSON-LD Type.
19
20
  */
20
- type: typeof BlobStorageTypes.EntryList;
21
+ type: typeof SchemaOrgTypes.ItemList;
21
22
  /**
22
23
  * The list of entries.
23
24
  */
24
- entries: IBlobStorageEntry[];
25
+ [SchemaOrgTypes.ItemListElement]: IBlobStorageEntry[];
25
26
  /**
26
27
  * The cursor to get the next chunk of entries.
27
28
  */
28
- cursor?: string;
29
+ [SchemaOrgTypes.NextItem]?: string;
29
30
  }
@@ -6,10 +6,6 @@ export declare const BlobStorageTypes: {
6
6
  * Represents blob storage entry.
7
7
  */
8
8
  readonly Entry: "BlobStorageEntry";
9
- /**
10
- * Represents blob storage entry list.
11
- */
12
- readonly EntryList: "BlobStorageEntryList";
13
9
  };
14
10
  /**
15
11
  * The types of blob storage data.
package/docs/changelog.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @twin.org/blob-storage-models - Changelog
2
2
 
3
+ ## [0.0.1-next.31](https://github.com/twinfoundation/blob-storage/compare/blob-storage-models-v0.0.1-next.30...blob-storage-models-v0.0.1-next.31) (2025-05-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * use standard list json ld types ([d6bdfd6](https://github.com/twinfoundation/blob-storage/commit/d6bdfd68af47f70f3cc53658b4a12543497e1f48))
9
+
3
10
  ## [0.0.1-next.30](https://github.com/twinfoundation/blob-storage/compare/blob-storage-models-v0.0.1-next.29...blob-storage-models-v0.0.1-next.30) (2025-04-17)
4
11
 
5
12
 
@@ -6,7 +6,7 @@ Interface describing an blob storage entry list.
6
6
 
7
7
  ### @context
8
8
 
9
- > **@context**: \[`"https://schema.twindev.org/blob-storage/"`, `"https://schema.twindev.org/common/"`, `...IJsonLdContextDefinitionElement[]`\]
9
+ > **@context**: \[`"https://schema.org"`, `"https://schema.twindev.org/blob-storage/"`, `"https://schema.twindev.org/common/"`, `...IJsonLdContextDefinitionElement[]`\]
10
10
 
11
11
  JSON-LD Context.
12
12
 
@@ -14,22 +14,22 @@ JSON-LD Context.
14
14
 
15
15
  ### type
16
16
 
17
- > **type**: `"BlobStorageEntryList"`
17
+ > **type**: `"ItemList"`
18
18
 
19
19
  JSON-LD Type.
20
20
 
21
21
  ***
22
22
 
23
- ### entries
23
+ ### itemListElement
24
24
 
25
- > **entries**: [`IBlobStorageEntry`](IBlobStorageEntry.md)[]
25
+ > **itemListElement**: [`IBlobStorageEntry`](IBlobStorageEntry.md)[]
26
26
 
27
27
  The list of entries.
28
28
 
29
29
  ***
30
30
 
31
- ### cursor?
31
+ ### nextItem?
32
32
 
33
- > `optional` **cursor**: `string`
33
+ > `optional` **nextItem**: `string`
34
34
 
35
35
  The cursor to get the next chunk of entries.
@@ -11,9 +11,3 @@ The types of blob storage data.
11
11
  > `readonly` **Entry**: `"BlobStorageEntry"` = `"BlobStorageEntry"`
12
12
 
13
13
  Represents blob storage entry.
14
-
15
- ### EntryList
16
-
17
- > `readonly` **EntryList**: `"BlobStorageEntryList"` = `"BlobStorageEntryList"`
18
-
19
- Represents blob storage entry list.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/blob-storage-models",
3
- "version": "0.0.1-next.30",
3
+ "version": "0.0.1-next.31",
4
4
  "description": "Models which define the structure of the blob storage contracts and connectors",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,6 +19,7 @@
19
19
  "@twin.org/data-json-ld": "next",
20
20
  "@twin.org/entity": "next",
21
21
  "@twin.org/nameof": "next",
22
+ "@twin.org/standards-schema-org": "next",
22
23
  "@twin.org/web": "next"
23
24
  },
24
25
  "main": "./dist/cjs/index.cjs",