Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions eng/emitter-package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-java": "0.38.0"
"@azure-tools/typespec-java": "/mnt/vss/_work/1/s/autorest.java/typespec-extension/azure-tools-typespec-java-0.37.4.tgz"
},
"devDependencies": {
"@azure-tools/typespec-autorest": "0.63.1",
"@azure-tools/typespec-azure-core": "0.63.1",
"@azure-tools/typespec-azure-core": "0.63.0",
"@azure-tools/typespec-azure-resource-manager": "0.63.0",
"@azure-tools/typespec-azure-rulesets": "0.63.0",
"@azure-tools/typespec-client-generator-core": "0.63.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ public ClientEventConversationItemCreate setItem(ConversationRequestItem item) {
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("event_id", getEventId());
jsonWriter.writeStringField("type", this.type == null ? null : this.type.toString());
jsonWriter.writeStringField("event_id", this.eventId);
jsonWriter.writeStringField("previous_item_id", this.previousItemId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public String getEventId() {
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("event_id", getEventId());
jsonWriter.writeStringField("type", this.type == null ? null : this.type.toString());
jsonWriter.writeJsonField("item", this.item);
jsonWriter.writeStringField("event_id", this.eventId);
Expand Down
Loading