@twin.org/auditable-item-graph-models 0.0.1-next.43 → 0.0.1-next.44

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.
@@ -26,11 +26,11 @@ export interface IAuditableItemGraphGetRequest {
26
26
  /**
27
27
  * Whether to include deleted aliases, resource, edges, defaults to false.
28
28
  */
29
- includeDeleted?: boolean;
29
+ includeDeleted?: boolean | string;
30
30
  /**
31
31
  * Whether to include the changesets of the vertex, defaults to false.
32
32
  */
33
- includeChangesets?: boolean;
33
+ includeChangesets?: boolean | string;
34
34
  /**
35
35
  * How many signatures to verify, none, current or all, defaults to "none".
36
36
  */
@@ -50,6 +50,6 @@ export interface IAuditableItemGraphListRequest {
50
50
  /**
51
51
  * The maximum number of entities in a page.
52
52
  */
53
- pageSize?: number;
53
+ pageSize?: number | string;
54
54
  };
55
55
  }
package/docs/changelog.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @twin.org/auditable-item-graph-models - Changelog
2
2
 
3
+ ## [0.0.1-next.44](https://github.com/twinfoundation/auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.43...auditable-item-graph-models-v0.0.1-next.44) (2025-06-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * query params force coercion ([2dd9afe](https://github.com/twinfoundation/auditable-item-graph/commit/2dd9afe9ec37e2a91c110317fe289f7495c187a0))
9
+
3
10
  ## [0.0.1-next.43](https://github.com/twinfoundation/auditable-item-graph/compare/auditable-item-graph-models-v0.0.1-next.42...auditable-item-graph-models-v0.0.1-next.43) (2025-06-17)
4
11
 
5
12
 
@@ -38,13 +38,13 @@ The query parameters.
38
38
 
39
39
  #### includeDeleted?
40
40
 
41
- > `optional` **includeDeleted**: `boolean`
41
+ > `optional` **includeDeleted**: `string` \| `boolean`
42
42
 
43
43
  Whether to include deleted aliases, resource, edges, defaults to false.
44
44
 
45
45
  #### includeChangesets?
46
46
 
47
- > `optional` **includeChangesets**: `boolean`
47
+ > `optional` **includeChangesets**: `string` \| `boolean`
48
48
 
49
49
  Whether to include the changesets of the vertex, defaults to false.
50
50
 
@@ -72,6 +72,6 @@ The optional cursor to get next chunk.
72
72
 
73
73
  #### pageSize?
74
74
 
75
- > `optional` **pageSize**: `number`
75
+ > `optional` **pageSize**: `string` \| `number`
76
76
 
77
77
  The maximum number of entities in a page.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/auditable-item-graph-models",
3
- "version": "0.0.1-next.43",
3
+ "version": "0.0.1-next.44",
4
4
  "description": "Models which define the structure of the auditable item graph connectors and services",
5
5
  "repository": {
6
6
  "type": "git",