Skip to content

Commit 55746db

Browse files
chore: use JsonSchema proto (#25)
* chore: use JsonSchema proto * upgrade drift-schemas + fix tests
1 parent 91e46cc commit 55746db

20 files changed

Lines changed: 279 additions & 321 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"@opentelemetry/sdk-trace-node": "^1.30.1",
8989
"@opentelemetry/semantic-conventions": "^1.17.0",
9090
"@protobuf-ts/twirp-transport": "^2.11.1",
91-
"@use-tusk/drift-schemas": "^0.1.10",
91+
"@use-tusk/drift-schemas": "^0.1.11",
9292
"import-in-the-middle": "^1.14.4",
9393
"install": "^0.13.0",
9494
"js-yaml": "^4.1.0",

src/core/ProtobufCommunicator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ export class ProtobufCommunicator {
384384
submoduleName: span.submoduleName || "",
385385
inputValue: toStruct(span.inputValue),
386386
outputValue: toStruct(span.outputValue),
387-
inputSchema: toStruct(span.inputSchema),
388-
outputSchema: toStruct(span.outputSchema),
387+
inputSchema: span.inputSchema,
388+
outputSchema: span.outputSchema,
389389
inputSchemaHash: span.inputSchemaHash || "",
390390
outputSchemaHash: span.outputSchemaHash || "",
391391
inputValueHash: span.inputValueHash || "",

0 commit comments

Comments
 (0)