@twin.org/auditable-item-stream-service 0.0.3-next.20 → 0.0.3-next.21

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.
@@ -1 +1 @@
1
- {"version":3,"file":"auditableItemStream.js","sourceRoot":"","sources":["../../../src/entities/auditableItemStream.ts"],"names":[],"mappings":"AAGA,OAAO,EAA0B,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEnE;;GAEG;AAEI,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;IAC/B;;OAEG;IAEI,EAAE,CAAU;IAEnB;;OAEG;IAEI,WAAW,CAAU;IAE5B;;OAEG;IAOI,YAAY,CAAU;IAE7B;;OAEG;IAEI,oBAAoB,CAAU;IAErC;;OAEG;IAEI,YAAY,CAAU;IAE7B;;OAEG;IAEI,gBAAgB,CAAqB;IAE5C;;OAEG;IAEI,aAAa,CAAU;IAE9B;;OAEG;IAEI,iBAAiB,CAAU;IAElC;;OAEG;IAEI,MAAM,CAAW;IAExB;;OAEG;IAEI,IAAI,CAA4B;IAEvC;;OAEG;IAEI,OAAO,CAAU;CACxB,CAAA;AAlEO;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;;+CAC3B;AAMZ;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,CAAC,UAAU,EAAE,CAAC;;wDAC/D;AAWrB;IANN,QAAQ,CAAC;QACT,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,WAAW;QACnB,aAAa,EAAE,aAAa,CAAC,UAAU;QACvC,QAAQ,EAAE,IAAI;KACd,CAAC;;yDAC2B;AAMtB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iEACR;AAM9B;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDAChB;AAMtB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAClC;AAMrC;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;0DACA;AAMvB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;8DACI;AAM3B;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACtB;AAMjB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACN;AAMhC;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACrB;AAtEZ,mBAAmB;IAD/B,MAAM,EAAE;GACI,mBAAmB,CAuE/B","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { AuditableItemStreamModes } from \"@twin.org/auditable-item-stream-models\";\nimport { type IJsonLdNodeObject, JsonLdTypes } from \"@twin.org/data-json-ld\";\nimport { entity, property, SortDirection } from \"@twin.org/entity\";\n\n/**\n * Class describing the auditable item stream.\n */\n@entity()\nexport class AuditableItemStream {\n\t/**\n\t * The id of the stream.\n\t */\n\t@property({ type: \"string\", isPrimary: true })\n\tpublic id!: string;\n\n\t/**\n\t * The date/time of when the stream was created.\n\t */\n\t@property({ type: \"string\", format: \"date-time\", sortDirection: SortDirection.Descending })\n\tpublic dateCreated!: string;\n\n\t/**\n\t * The date/time of when the stream was modified.\n\t */\n\t@property({\n\t\ttype: \"string\",\n\t\tformat: \"date-time\",\n\t\tsortDirection: SortDirection.Descending,\n\t\toptional: true\n\t})\n\tpublic dateModified?: string;\n\n\t/**\n\t * The identity of the organization which controls the stream.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic organizationIdentity?: string;\n\n\t/**\n\t * The identity of the user which created the stream.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic userIdentity?: string;\n\n\t/**\n\t * Object to associate with the stream as JSON-LD.\n\t */\n\t@property({ type: \"object\", itemTypeRef: JsonLdTypes.Object, optional: true })\n\tpublic annotationObject?: IJsonLdNodeObject;\n\n\t/**\n\t * The number of items in the stream.\n\t */\n\t@property({ type: \"integer\" })\n\tpublic numberOfItems!: number;\n\n\t/**\n\t * After how many entries do we add immutable checks.\n\t */\n\t@property({ type: \"integer\" })\n\tpublic immutableInterval!: number;\n\n\t/**\n\t * Is the stream closed for entry updates.\n\t */\n\t@property({ type: \"boolean\", optional: true })\n\tpublic closed?: boolean;\n\n\t/**\n\t * The operation mode for the stream.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic mode?: AuditableItemStreamModes;\n\n\t/**\n\t * The immutable proof id.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic proofId?: string;\n}\n"]}
1
+ {"version":3,"file":"auditableItemStream.js","sourceRoot":"","sources":["../../../src/entities/auditableItemStream.ts"],"names":[],"mappings":"AAGA,OAAO,EAA0B,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEnE;;GAEG;AAEI,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;IAC/B;;OAEG;IAEI,EAAE,CAAU;IAEnB;;OAEG;IAEI,WAAW,CAAU;IAE5B;;OAEG;IAOI,YAAY,CAAU;IAE7B;;OAEG;IAEI,oBAAoB,CAAU;IAErC;;OAEG;IAEI,YAAY,CAAU;IAE7B;;OAEG;IAEI,gBAAgB,CAAqB;IAE5C;;OAEG;IAEI,aAAa,CAAU;IAE9B;;OAEG;IAEI,iBAAiB,CAAU;IAElC;;OAEG;IAEI,MAAM,CAAW;IAExB;;OAEG;IAEI,IAAI,CAA4B;IAEvC;;OAEG;IAEI,OAAO,CAAU;CACxB,CAAA;AAlEO;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;;+CAC3B;AAMZ;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,CAAC,UAAU,EAAE,CAAC;;wDAC/D;AAWrB;IANN,QAAQ,CAAC;QACT,IAAI,EAAE,QAAQ;QACd,MAAM,EAAE,WAAW;QACnB,aAAa,EAAE,aAAa,CAAC,UAAU;QACvC,QAAQ,EAAE,IAAI;KACd,CAAC;;yDAC2B;AAMtB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;;iEACQ;AAM9B;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDAChB;AAMtB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAClC;AAMrC;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;0DACA;AAMvB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;8DACI;AAM3B;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACtB;AAMjB;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACN;AAMhC;IADN,QAAQ,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACrB;AAtEZ,mBAAmB;IAD/B,MAAM,EAAE;GACI,mBAAmB,CAuE/B","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { AuditableItemStreamModes } from \"@twin.org/auditable-item-stream-models\";\nimport { type IJsonLdNodeObject, JsonLdTypes } from \"@twin.org/data-json-ld\";\nimport { entity, property, SortDirection } from \"@twin.org/entity\";\n\n/**\n * Class describing the auditable item stream.\n */\n@entity()\nexport class AuditableItemStream {\n\t/**\n\t * The id of the stream.\n\t */\n\t@property({ type: \"string\", isPrimary: true })\n\tpublic id!: string;\n\n\t/**\n\t * The date/time of when the stream was created.\n\t */\n\t@property({ type: \"string\", format: \"date-time\", sortDirection: SortDirection.Descending })\n\tpublic dateCreated!: string;\n\n\t/**\n\t * The date/time of when the stream was modified.\n\t */\n\t@property({\n\t\ttype: \"string\",\n\t\tformat: \"date-time\",\n\t\tsortDirection: SortDirection.Descending,\n\t\toptional: true\n\t})\n\tpublic dateModified?: string;\n\n\t/**\n\t * The identity of the organization which controls the stream.\n\t */\n\t@property({ type: \"string\" })\n\tpublic organizationIdentity!: string;\n\n\t/**\n\t * The identity of the user which created the stream.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic userIdentity?: string;\n\n\t/**\n\t * Object to associate with the stream as JSON-LD.\n\t */\n\t@property({ type: \"object\", itemTypeRef: JsonLdTypes.Object, optional: true })\n\tpublic annotationObject?: IJsonLdNodeObject;\n\n\t/**\n\t * The number of items in the stream.\n\t */\n\t@property({ type: \"integer\" })\n\tpublic numberOfItems!: number;\n\n\t/**\n\t * After how many entries do we add immutable checks.\n\t */\n\t@property({ type: \"integer\" })\n\tpublic immutableInterval!: number;\n\n\t/**\n\t * Is the stream closed for entry updates.\n\t */\n\t@property({ type: \"boolean\", optional: true })\n\tpublic closed?: boolean;\n\n\t/**\n\t * The operation mode for the stream.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic mode?: AuditableItemStreamModes;\n\n\t/**\n\t * The immutable proof id.\n\t */\n\t@property({ type: \"string\", optional: true })\n\tpublic proofId?: string;\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IAuditableItemStreamServiceContext.js","sourceRoot":"","sources":["../../../src/models/IAuditableItemStreamServiceContext.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IContextIds } from \"@twin.org/context\";\n\n/**\n * Context for the auditable item stream service.\n */\nexport interface IAuditableItemStreamServiceContext {\n\t/**\n\t * The current timestamp.\n\t */\n\tnow: string;\n\n\t/**\n\t * The context ids for the operation.\n\t */\n\tcontextIds?: IContextIds;\n\n\t/**\n\t * The index counter.\n\t */\n\tindexCounter: number;\n\n\t/**\n\t * The immutable check interval.\n\t */\n\timmutableInterval: number;\n\n\t/**\n\t * The identity of the organization which controls the stream.\n\t */\n\torganizationIdentity?: string;\n}\n"]}
1
+ {"version":3,"file":"IAuditableItemStreamServiceContext.js","sourceRoot":"","sources":["../../../src/models/IAuditableItemStreamServiceContext.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IContextIds } from \"@twin.org/context\";\n\n/**\n * Context for the auditable item stream service.\n */\nexport interface IAuditableItemStreamServiceContext {\n\t/**\n\t * The current timestamp.\n\t */\n\tnow: string;\n\n\t/**\n\t * The context ids for the operation.\n\t */\n\tcontextIds?: IContextIds;\n\n\t/**\n\t * The index counter.\n\t */\n\tindexCounter: number;\n\n\t/**\n\t * The immutable check interval.\n\t */\n\timmutableInterval: number;\n\n\t/**\n\t * The identity of the organization which controls the stream.\n\t */\n\torganizationIdentity: string;\n}\n"]}
@@ -1,5 +1,5 @@
1
1
  import { type ICreatedResponse, type IHttpRequestContext, type INoContentResponse, type IRestRoute, type ITag } from "@twin.org/api-models";
2
- import { type IAuditableItemStreamListEntriesNoStreamRequest, type IAuditableItemStreamListEntryObjectsNoStreamRequest, type IAuditableItemStreamCloseRequest, type IAuditableItemStreamCreateEntryRequest, type IAuditableItemStreamCreateRequest, type IAuditableItemStreamDeleteEntryRequest, type IAuditableItemStreamDeleteRequest, type IAuditableItemStreamGetEntryObjectRequest, type IAuditableItemStreamGetEntryObjectResponse, type IAuditableItemStreamGetEntryRequest, type IAuditableItemStreamGetEntryResponse, type IAuditableItemStreamGetRequest, type IAuditableItemStreamGetResponse, type IAuditableItemStreamListEntriesRequest, type IAuditableItemStreamListEntriesResponse, type IAuditableItemStreamListEntryObjectsRequest, type IAuditableItemStreamListEntryObjectsResponse, type IAuditableItemStreamListRequest, type IAuditableItemStreamListResponse, type IAuditableItemStreamUpdateEntryRequest, type IAuditableItemStreamUpdateRequest } from "@twin.org/auditable-item-stream-models";
2
+ import { type IAuditableItemStreamListEntriesNoStreamRequest, type IAuditableItemStreamListEntryObjectsNoStreamRequest, type IAuditableItemStreamCloseRequest, type IAuditableItemStreamCreateEntryRequest, type IAuditableItemStreamCreateRequest, type IAuditableItemStreamDeleteEntryRequest, type IAuditableItemStreamDeleteRequest, type IAuditableItemStreamGetEntryObjectRequest, type IAuditableItemStreamGetEntryObjectResponse, type IAuditableItemStreamGetEntryRequest, type IAuditableItemStreamGetEntryResponse, type IAuditableItemStreamGetRequest, type IAuditableItemStreamGetResponse, type IAuditableItemStreamListEntriesRequest, type IAuditableItemStreamListEntriesResponse, type IAuditableItemStreamListEntryObjectsRequest, type IAuditableItemStreamListEntryObjectsResponse, type IAuditableItemStreamListRequest, type IAuditableItemStreamListResponse, type IAuditableItemStreamRemoveProofRequest, type IAuditableItemStreamUpdateEntryRequest, type IAuditableItemStreamUpdateRequest } from "@twin.org/auditable-item-stream-models";
3
3
  /**
4
4
  * The tag to associate with the routes.
5
5
  */
@@ -131,3 +131,11 @@ export declare function auditableItemStreamListEntryObjects(httpRequestContext:
131
131
  * @returns The response object with additional http response properties.
132
132
  */
133
133
  export declare function auditableItemStreamListEntryObjectsNoStream(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemStreamListEntryObjectsNoStreamRequest): Promise<IAuditableItemStreamListEntryObjectsResponse>;
134
+ /**
135
+ * Remove the proof from a stream.
136
+ * @param httpRequestContext The request context for the API.
137
+ * @param componentName The name of the component to use in the routes.
138
+ * @param request The request.
139
+ * @returns The response object with additional http response properties.
140
+ */
141
+ export declare function auditableItemStreamRemoveProof(httpRequestContext: IHttpRequestContext, componentName: string, request: IAuditableItemStreamRemoveProofRequest): Promise<INoContentResponse>;
@@ -19,7 +19,7 @@ export declare class AuditableItemStream {
19
19
  /**
20
20
  * The identity of the organization which controls the stream.
21
21
  */
22
- organizationIdentity?: string;
22
+ organizationIdentity: string;
23
23
  /**
24
24
  * The identity of the user which created the stream.
25
25
  */
@@ -22,5 +22,5 @@ export interface IAuditableItemStreamServiceContext {
22
22
  /**
23
23
  * The identity of the organization which controls the stream.
24
24
  */
25
- organizationIdentity?: string;
25
+ organizationIdentity: string;
26
26
  }
package/docs/changelog.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-auditable-item-stream/compare/auditable-item-stream-service-v0.0.3-next.20...auditable-item-stream-service-v0.0.3-next.21) (2026-06-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * organization identifiers ([#81](https://github.com/iotaledger/twin-auditable-item-stream/issues/81)) ([2ec82bd](https://github.com/iotaledger/twin-auditable-item-stream/commit/2ec82bd18136fddf982c60968d6b0ff89575d51c))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add removeProof to ais REST surface ([#80](https://github.com/iotaledger/twin-auditable-item-stream/issues/80)) ([c1ea8ae](https://github.com/iotaledger/twin-auditable-item-stream/commit/c1ea8aee6aa7b4620b92b88e0406cbf235d92cc3))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @twin.org/auditable-item-stream-models bumped from 0.0.3-next.20 to 0.0.3-next.21
21
+
3
22
  ## [0.0.3-next.20](https://github.com/iotaledger/twin-auditable-item-stream/compare/auditable-item-stream-service-v0.0.3-next.19...auditable-item-stream-service-v0.0.3-next.20) (2026-06-03)
4
23
 
5
24
 
@@ -2648,6 +2648,116 @@
2648
2648
  }
2649
2649
  }
2650
2650
  }
2651
+ },
2652
+ "/auditable-item-stream/{id}/proof": {
2653
+ "delete": {
2654
+ "operationId": "auditableItemStreamRemoveProof",
2655
+ "summary": "Remove the proof from a stream",
2656
+ "tags": [
2657
+ "Auditable Item Stream"
2658
+ ],
2659
+ "parameters": [
2660
+ {
2661
+ "name": "id",
2662
+ "description": "The id of the stream to remove the proof from.",
2663
+ "in": "path",
2664
+ "required": true,
2665
+ "schema": {
2666
+ "type": "string"
2667
+ },
2668
+ "style": "simple",
2669
+ "example": "ais:1234567890"
2670
+ }
2671
+ ],
2672
+ "security": [
2673
+ {
2674
+ "jwtBearerAuthScheme": []
2675
+ }
2676
+ ],
2677
+ "responses": {
2678
+ "204": {
2679
+ "description": "The rest request ended in success with no data."
2680
+ },
2681
+ "400": {
2682
+ "description": "The server cannot process the request, see the content for more details.",
2683
+ "content": {
2684
+ "application/json": {
2685
+ "schema": {
2686
+ "$ref": "#/components/schemas/Error"
2687
+ },
2688
+ "examples": {
2689
+ "exampleResponse": {
2690
+ "value": {
2691
+ "name": "GeneralError",
2692
+ "message": "errorMessage",
2693
+ "properties": {
2694
+ "foo": "bar"
2695
+ }
2696
+ }
2697
+ }
2698
+ }
2699
+ }
2700
+ }
2701
+ },
2702
+ "401": {
2703
+ "description": "You are not authorized to use the API or no credentials were supplied, see the content for more details.",
2704
+ "content": {
2705
+ "application/json": {
2706
+ "schema": {
2707
+ "$ref": "#/components/schemas/Error"
2708
+ },
2709
+ "examples": {
2710
+ "exampleResponse": {
2711
+ "value": {
2712
+ "name": "UnauthorizedError",
2713
+ "message": "errorMessage"
2714
+ }
2715
+ }
2716
+ }
2717
+ }
2718
+ }
2719
+ },
2720
+ "404": {
2721
+ "description": "The resource you tried to access does not exist, see the content for more details.",
2722
+ "content": {
2723
+ "application/json": {
2724
+ "schema": {
2725
+ "$ref": "#/components/schemas/NotFoundResponse"
2726
+ },
2727
+ "examples": {
2728
+ "exampleResponse": {
2729
+ "value": {
2730
+ "name": "NotFoundError",
2731
+ "message": "errorMessage",
2732
+ "properties": {
2733
+ "notFoundId": "1"
2734
+ }
2735
+ }
2736
+ }
2737
+ }
2738
+ }
2739
+ }
2740
+ },
2741
+ "500": {
2742
+ "description": "The server has encountered a situation it does not know how to handle, see the content for more details.",
2743
+ "content": {
2744
+ "application/json": {
2745
+ "schema": {
2746
+ "$ref": "#/components/schemas/Error"
2747
+ },
2748
+ "examples": {
2749
+ "exampleResponse": {
2750
+ "value": {
2751
+ "name": "InternalServerError",
2752
+ "message": "errorMessage"
2753
+ }
2754
+ }
2755
+ }
2756
+ }
2757
+ }
2758
+ }
2759
+ }
2760
+ }
2651
2761
  }
2652
2762
  },
2653
2763
  "components": {
@@ -38,9 +38,9 @@ The date/time of when the stream was modified.
38
38
 
39
39
  ***
40
40
 
41
- ### organizationIdentity? {#organizationidentity}
41
+ ### organizationIdentity {#organizationidentity}
42
42
 
43
- > `optional` **organizationIdentity?**: `string`
43
+ > **organizationIdentity**: `string`
44
44
 
45
45
  The identity of the organization which controls the stream.
46
46
 
@@ -0,0 +1,31 @@
1
+ # Function: auditableItemStreamRemoveProof()
2
+
3
+ > **auditableItemStreamRemoveProof**(`httpRequestContext`, `componentName`, `request`): `Promise`\<`INoContentResponse`\>
4
+
5
+ Remove the proof from a stream.
6
+
7
+ ## Parameters
8
+
9
+ ### httpRequestContext
10
+
11
+ `IHttpRequestContext`
12
+
13
+ The request context for the API.
14
+
15
+ ### componentName
16
+
17
+ `string`
18
+
19
+ The name of the component to use in the routes.
20
+
21
+ ### request
22
+
23
+ `IAuditableItemStreamRemoveProofRequest`
24
+
25
+ The request.
26
+
27
+ ## Returns
28
+
29
+ `Promise`\<`INoContentResponse`\>
30
+
31
+ The response object with additional http response properties.
@@ -34,4 +34,5 @@
34
34
  - [auditableItemStreamListEntriesNoStream](functions/auditableItemStreamListEntriesNoStream.md)
35
35
  - [auditableItemStreamListEntryObjects](functions/auditableItemStreamListEntryObjects.md)
36
36
  - [auditableItemStreamListEntryObjectsNoStream](functions/auditableItemStreamListEntryObjectsNoStream.md)
37
+ - [auditableItemStreamRemoveProof](functions/auditableItemStreamRemoveProof.md)
37
38
  - [initSchema](functions/initSchema.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/auditable-item-stream-service",
3
- "version": "0.0.3-next.20",
3
+ "version": "0.0.3-next.21",
4
4
  "description": "Service implementation and REST route generation for managing auditable streams and entries.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@twin.org/api-models": "next",
18
- "@twin.org/auditable-item-stream-models": "0.0.3-next.20",
18
+ "@twin.org/auditable-item-stream-models": "0.0.3-next.21",
19
19
  "@twin.org/context": "next",
20
20
  "@twin.org/core": "next",
21
21
  "@twin.org/crypto": "next",