@powerhousedao/reactor-api 1.14.2 → 1.14.3
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/CHANGELOG.md +7 -4
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/utils/create-schema.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
## 1.14.
|
|
1
|
+
## 1.14.3 (2025-01-08)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### 🩹 Fixes
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
|
|
5
|
+
- **reactor-api:** add missing ids ([8d246c14](https://github.com/powerhouse-inc/powerhouse/commit/8d246c14))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Frank
|
|
7
10
|
|
|
8
11
|
## 1.2.0 (2024-10-29)
|
|
9
12
|
|
package/dist/index.js
CHANGED
|
@@ -15004,12 +15004,14 @@ var getDocumentModelTypeDefs = (documentDriveServer, typeDefs2) => {
|
|
|
15004
15004
|
${typeDefs.join("\n").replaceAll(";", "")}
|
|
15005
15005
|
|
|
15006
15006
|
type Operation {
|
|
15007
|
+
id: ID!
|
|
15007
15008
|
type: String!
|
|
15008
15009
|
index: Int!
|
|
15009
15010
|
timestamp: DateTime!
|
|
15010
15011
|
hash: String!
|
|
15011
15012
|
}
|
|
15012
15013
|
interface IDocument {
|
|
15014
|
+
id: ID!
|
|
15013
15015
|
name: String!
|
|
15014
15016
|
documentType: String!
|
|
15015
15017
|
revision: Int!
|