@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.
- package/dist/types/models/api/IAuditableItemGraphGetRequest.d.ts +2 -2
- package/dist/types/models/api/IAuditableItemGraphListRequest.d.ts +1 -1
- package/docs/changelog.md +7 -0
- package/docs/reference/interfaces/IAuditableItemGraphGetRequest.md +2 -2
- package/docs/reference/interfaces/IAuditableItemGraphListRequest.md +1 -1
- package/package.json +1 -1
|
@@ -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
|
*/
|
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
|
|
package/package.json
CHANGED