@twin.org/immutable-proof-models 0.0.1-next.32 → 0.0.1-next.33
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/cjs/index.cjs +19 -18
- package/dist/esm/index.mjs +19 -18
- package/docs/changelog.md +7 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
var dataCore = require('@twin.org/data-core');
|
|
4
4
|
|
|
5
|
+
// Copyright 2024 IOTA Stiftung.
|
|
6
|
+
// SPDX-License-Identifier: Apache-2.0.
|
|
7
|
+
/**
|
|
8
|
+
* The contexts of immutable proof data.
|
|
9
|
+
*/
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
11
|
+
const ImmutableProofContexts = {
|
|
12
|
+
/**
|
|
13
|
+
* The context root for the immutable proof types.
|
|
14
|
+
*/
|
|
15
|
+
ContextRoot: "https://schema.twindev.org/immutable-proof/",
|
|
16
|
+
/**
|
|
17
|
+
* The context root for the common types.
|
|
18
|
+
*/
|
|
19
|
+
ContextRootCommon: "https://schema.twindev.org/common/"
|
|
20
|
+
};
|
|
21
|
+
|
|
5
22
|
// Copyright 2024 IOTA Stiftung.
|
|
6
23
|
// SPDX-License-Identifier: Apache-2.0.
|
|
7
24
|
/**
|
|
@@ -105,7 +122,8 @@ class ImmutableProofDataTypes {
|
|
|
105
122
|
* Register all the data types.
|
|
106
123
|
*/
|
|
107
124
|
static registerTypes() {
|
|
108
|
-
dataCore.DataTypeHandlerFactory.register(ImmutableProofTypes.ImmutableProof
|
|
125
|
+
dataCore.DataTypeHandlerFactory.register(`${ImmutableProofContexts.ContextRoot}${ImmutableProofTypes.ImmutableProof}`, () => ({
|
|
126
|
+
context: ImmutableProofContexts.ContextRoot,
|
|
109
127
|
type: ImmutableProofTypes.ImmutableProof,
|
|
110
128
|
defaultValue: {},
|
|
111
129
|
jsonSchema: async () => ImmutableProofSchema
|
|
@@ -113,23 +131,6 @@ class ImmutableProofDataTypes {
|
|
|
113
131
|
}
|
|
114
132
|
}
|
|
115
133
|
|
|
116
|
-
// Copyright 2024 IOTA Stiftung.
|
|
117
|
-
// SPDX-License-Identifier: Apache-2.0.
|
|
118
|
-
/**
|
|
119
|
-
* The contexts of immutable proof data.
|
|
120
|
-
*/
|
|
121
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
122
|
-
const ImmutableProofContexts = {
|
|
123
|
-
/**
|
|
124
|
-
* The context root for the immutable proof types.
|
|
125
|
-
*/
|
|
126
|
-
ContextRoot: "https://schema.twindev.org/immutable-proof/",
|
|
127
|
-
/**
|
|
128
|
-
* The context root for the common types.
|
|
129
|
-
*/
|
|
130
|
-
ContextRootCommon: "https://schema.twindev.org/common/"
|
|
131
|
-
};
|
|
132
|
-
|
|
133
134
|
// Copyright 2024 IOTA Stiftung.
|
|
134
135
|
// SPDX-License-Identifier: Apache-2.0.
|
|
135
136
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { DataTypeHandlerFactory } from '@twin.org/data-core';
|
|
2
2
|
|
|
3
|
+
// Copyright 2024 IOTA Stiftung.
|
|
4
|
+
// SPDX-License-Identifier: Apache-2.0.
|
|
5
|
+
/**
|
|
6
|
+
* The contexts of immutable proof data.
|
|
7
|
+
*/
|
|
8
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
9
|
+
const ImmutableProofContexts = {
|
|
10
|
+
/**
|
|
11
|
+
* The context root for the immutable proof types.
|
|
12
|
+
*/
|
|
13
|
+
ContextRoot: "https://schema.twindev.org/immutable-proof/",
|
|
14
|
+
/**
|
|
15
|
+
* The context root for the common types.
|
|
16
|
+
*/
|
|
17
|
+
ContextRootCommon: "https://schema.twindev.org/common/"
|
|
18
|
+
};
|
|
19
|
+
|
|
3
20
|
// Copyright 2024 IOTA Stiftung.
|
|
4
21
|
// SPDX-License-Identifier: Apache-2.0.
|
|
5
22
|
/**
|
|
@@ -103,7 +120,8 @@ class ImmutableProofDataTypes {
|
|
|
103
120
|
* Register all the data types.
|
|
104
121
|
*/
|
|
105
122
|
static registerTypes() {
|
|
106
|
-
DataTypeHandlerFactory.register(ImmutableProofTypes.ImmutableProof
|
|
123
|
+
DataTypeHandlerFactory.register(`${ImmutableProofContexts.ContextRoot}${ImmutableProofTypes.ImmutableProof}`, () => ({
|
|
124
|
+
context: ImmutableProofContexts.ContextRoot,
|
|
107
125
|
type: ImmutableProofTypes.ImmutableProof,
|
|
108
126
|
defaultValue: {},
|
|
109
127
|
jsonSchema: async () => ImmutableProofSchema
|
|
@@ -111,23 +129,6 @@ class ImmutableProofDataTypes {
|
|
|
111
129
|
}
|
|
112
130
|
}
|
|
113
131
|
|
|
114
|
-
// Copyright 2024 IOTA Stiftung.
|
|
115
|
-
// SPDX-License-Identifier: Apache-2.0.
|
|
116
|
-
/**
|
|
117
|
-
* The contexts of immutable proof data.
|
|
118
|
-
*/
|
|
119
|
-
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
120
|
-
const ImmutableProofContexts = {
|
|
121
|
-
/**
|
|
122
|
-
* The context root for the immutable proof types.
|
|
123
|
-
*/
|
|
124
|
-
ContextRoot: "https://schema.twindev.org/immutable-proof/",
|
|
125
|
-
/**
|
|
126
|
-
* The context root for the common types.
|
|
127
|
-
*/
|
|
128
|
-
ContextRootCommon: "https://schema.twindev.org/common/"
|
|
129
|
-
};
|
|
130
|
-
|
|
131
132
|
// Copyright 2024 IOTA Stiftung.
|
|
132
133
|
// SPDX-License-Identifier: Apache-2.0.
|
|
133
134
|
/**
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/immutable-proof-models - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.33](https://github.com/twinfoundation/immutable-proof/compare/immutable-proof-models-v0.0.1-next.32...immutable-proof-models-v0.0.1-next.33) (2025-05-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update data types to use fully qualified names ([e94d0f5](https://github.com/twinfoundation/immutable-proof/commit/e94d0f5db93856b5b59cfd34e55252fa13a7f4e0))
|
|
9
|
+
|
|
3
10
|
## [0.0.1-next.32](https://github.com/twinfoundation/immutable-proof/compare/immutable-proof-models-v0.0.1-next.31...immutable-proof-models-v0.0.1-next.32) (2025-04-17)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED