@twin.org/dataspace-models 0.0.3-next.27 → 0.0.3-next.28

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.
@@ -2,7 +2,7 @@
2
2
  // SPDX-License-Identifier: Apache-2.0.
3
3
  /**
4
4
  * TWIN transfer format identifiers used in TransferRequestMessage.format.
5
- * Follows the Eclipse EDC canonical pattern: <DestinationType-FlowType>.
5
+ * Follows the Eclipse EDC canonical pattern: DestinationType-FlowType.
6
6
  * See RFC-007 Data Transfer Profile.
7
7
  */
8
8
  // eslint-disable-next-line @typescript-eslint/naming-convention
@@ -1 +1 @@
1
- {"version":3,"file":"dataspaceTransferFormat.js","sourceRoot":"","sources":["../../../src/models/dataspaceTransferFormat.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;;;GAIG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACtC;;;OAGG;IACH,aAAa,EAAE,gBAAgB;IAE/B;;;;OAIG;IACH,aAAa,EAAE,gBAAgB;IAE/B;;;;OAIG;IACH,aAAa,EAAE,gBAAgB;CACtB,CAAC","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * TWIN transfer format identifiers used in TransferRequestMessage.format.\n * Follows the Eclipse EDC canonical pattern: <DestinationType-FlowType>.\n * See RFC-007 Data Transfer Profile.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const DataspaceTransferFormat = {\n\t/**\n\t * PULL mode: consumer queries data via a bearer-token-protected endpoint.\n\t * Data flows: Consumer GET provider endpoint (with token).\n\t */\n\tHttpProxyPull: \"HttpProxy-PULL\",\n\n\t/**\n\t * Consumer-initiated PUSH mode: consumer supplies their /inbox endpoint in the\n\t * TransferRequestMessage. Provider pushes ActivityStreams objects to that endpoint.\n\t * Data flows: Provider POST to consumer's /inbox.\n\t */\n\tHttpProxyPush: \"HttpProxy-PUSH\",\n\n\t/**\n\t * Provider-initiated PUSH mode (inverted flow): consumer supplies no dataAddress.\n\t * Provider returns its own /inbox URL + signed JWT. Consumer then posts data there.\n\t * Data flows: Consumer POST to provider's /inbox.\n\t */\n\tHttpProxyPost: \"HttpProxy-POST\"\n} as const;\n\n/**\n * Type for the DataspaceTransferFormat const values.\n */\nexport type DataspaceTransferFormat =\n\t(typeof DataspaceTransferFormat)[keyof typeof DataspaceTransferFormat];\n"]}
1
+ {"version":3,"file":"dataspaceTransferFormat.js","sourceRoot":"","sources":["../../../src/models/dataspaceTransferFormat.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;;;GAIG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACtC;;;OAGG;IACH,aAAa,EAAE,gBAAgB;IAE/B;;;;OAIG;IACH,aAAa,EAAE,gBAAgB;IAE/B;;;;OAIG;IACH,aAAa,EAAE,gBAAgB;CACtB,CAAC","sourcesContent":["// Copyright 2025 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * TWIN transfer format identifiers used in TransferRequestMessage.format.\n * Follows the Eclipse EDC canonical pattern: DestinationType-FlowType.\n * See RFC-007 Data Transfer Profile.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const DataspaceTransferFormat = {\n\t/**\n\t * PULL mode: consumer queries data via a bearer-token-protected endpoint.\n\t * Data flows: Consumer GET provider endpoint (with token).\n\t */\n\tHttpProxyPull: \"HttpProxy-PULL\",\n\n\t/**\n\t * Consumer-initiated PUSH mode: consumer supplies their /inbox endpoint in the\n\t * TransferRequestMessage. Provider pushes ActivityStreams objects to that endpoint.\n\t * Data flows: Provider POST to consumer's /inbox.\n\t */\n\tHttpProxyPush: \"HttpProxy-PUSH\",\n\n\t/**\n\t * Provider-initiated PUSH mode (inverted flow): consumer supplies no dataAddress.\n\t * Provider returns its own /inbox URL + signed JWT. Consumer then posts data there.\n\t * Data flows: Consumer POST to provider's /inbox.\n\t */\n\tHttpProxyPost: \"HttpProxy-POST\"\n} as const;\n\n/**\n * Type for the DataspaceTransferFormat const values.\n */\nexport type DataspaceTransferFormat =\n\t(typeof DataspaceTransferFormat)[keyof typeof DataspaceTransferFormat];\n"]}
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * TWIN transfer format identifiers used in TransferRequestMessage.format.
3
- * Follows the Eclipse EDC canonical pattern: <DestinationType-FlowType>.
3
+ * Follows the Eclipse EDC canonical pattern: DestinationType-FlowType.
4
4
  * See RFC-007 Data Transfer Profile.
5
5
  */
6
6
  export declare const DataspaceTransferFormat: {
package/docs/changelog.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.27...dataspace-models-v0.0.3-next.28) (2026-05-12)
4
+
5
+
6
+ ### Features
7
+
8
+ * typescript 6 update ([340f10e](https://github.com/iotaledger/twin-dataspace/commit/340f10e4767f6285c694938944f7e044474f9aaa))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * docs ([652f4f2](https://github.com/iotaledger/twin-dataspace/commit/652f4f2fec8601bb3772e054b2c823f599ef68dc))
14
+
3
15
  ## [0.0.3-next.27](https://github.com/iotaledger/twin-dataspace/compare/dataspace-models-v0.0.3-next.26...dataspace-models-v0.0.3-next.27) (2026-05-08)
4
16
 
5
17
 
@@ -3,7 +3,7 @@
3
3
  > `const` **DataspaceTransferFormat**: `object`
4
4
 
5
5
  TWIN transfer format identifiers used in TransferRequestMessage.format.
6
- Follows the Eclipse EDC canonical pattern: <DestinationType-FlowType>.
6
+ Follows the Eclipse EDC canonical pattern: DestinationType-FlowType.
7
7
  See RFC-007 Data Transfer Profile.
8
8
 
9
9
  ## Type Declaration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/dataspace-models",
3
- "version": "0.0.3-next.27",
3
+ "version": "0.0.3-next.28",
4
4
  "description": "Defines shared entities, interfaces, and data types used by control plane and data plane components.",
5
5
  "repository": {
6
6
  "type": "git",