@powerhousedao/reactor-api 1.14.4 → 1.14.6

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 CHANGED
@@ -1,12 +1,17 @@
1
- ## 1.14.4 (2025-01-09)
1
+ ## 1.14.6 (2025-01-10)
2
2
 
3
3
  ### 🩹 Fixes
4
4
 
5
- - **reactor-api:** missing graphql fields ([c067dc70](https://github.com/powerhouse-inc/powerhouse/commit/c067dc70))
5
+ - **codegen:** added prettier dependency ([b104d473](https://github.com/powerhouse-inc/powerhouse/commit/b104d473))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated document-model-libs to 1.125.3
10
+ - Updated document-drive to 1.13.3
6
11
 
7
12
  ### ❤️ Thank You
8
13
 
9
- - Frank
14
+ - acaldas @acaldas
10
15
 
11
16
  ## 1.2.0 (2024-10-29)
12
17
 
package/dist/index.js CHANGED
@@ -14996,6 +14996,7 @@ var getDocumentModelTypeDefs = (documentDriveServer, typeDefs2) => {
14996
14996
  revision: Int!
14997
14997
  created: DateTime!
14998
14998
  lastModified: DateTime!
14999
+ ${documentModel2.name !== "DocumentModel" ? `initialState: ${documentModel2.name}State!` : ""}
14999
15000
  ${documentModel2.name !== "DocumentModel" ? `state: ${documentModel2.name}State!` : ""}
15000
15001
  }
15001
15002
  `;
@@ -25867,7 +25868,7 @@ var DriveSubgraph = class extends Subgraph {
25867
25868
  type Query {
25868
25869
  system: System
25869
25870
  drive: DocumentDriveState
25870
- document(id: ID!): IDocument
25871
+ document(id: String!): IDocument
25871
25872
  documents: [String!]!
25872
25873
  }
25873
25874