Skip to content

Commit

Permalink
[Automation] Generate SDK based on TypeSpec 0.15.16 (#40121)
Browse files Browse the repository at this point in the history
  • Loading branch information
azure-sdk committed May 11, 2024
1 parent e7deb7b commit 6807a66
Show file tree
Hide file tree
Showing 8 changed files with 105 additions and 122 deletions.
184 changes: 84 additions & 100 deletions eng/emitter-package-lock.json

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

19 changes: 9 additions & 10 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-java": "0.15.15"
"@azure-tools/typespec-java": "0.15.16"
},
"devDependencies": {
"@azure-tools/typespec-client-generator-core": "0.41.8",
"@typespec/rest": "0.55.0",
"@typespec/compiler": "0.55.0",
"@typespec/openapi": "0.55.0",
"@azure-tools/typespec-azure-core": "0.41.0",
"@typespec/versioning": "0.55.0",
"@typespec/http": "0.55.0",
"@azure-tools/typespec-azure-resource-manager": "0.41.0",
"@azure-tools/typespec-autorest": "0.41.1"
"@typespec/rest": "0.56.0",
"@azure-tools/typespec-azure-resource-manager": "0.42.0",
"@typespec/versioning": "0.56.0",
"@typespec/openapi": "0.56.0",
"@typespec/http": "0.56.0",
"@typespec/compiler": "0.56.0",
"@azure-tools/typespec-azure-core": "0.42.0",
"@azure-tools/typespec-client-generator-core": "0.42.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final class OperationInner {
private Origin origin;

/*
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
* Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
*/
@JsonProperty(value = "actionType")
private ActionType actionType;
Expand Down Expand Up @@ -91,8 +91,8 @@ public Origin origin() {
}

/**
* Get the actionType property: Enum. Indicates the action type. "Internal" refers to actions that are for internal
* only APIs.
* Get the actionType property: Extensible enum. Indicates the action type. "Internal" refers to actions that are
* for internal only APIs.
*
* @return the actionType value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Collection;

/**
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
* Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
*/
public final class ActionType extends ExpandableStringEnum<ActionType> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public interface Operation {
Origin origin();

/**
* Gets the actionType property: Enum. Indicates the action type. "Internal" refers to actions that are for internal
* only APIs.
* Gets the actionType property: Extensible enum. Indicates the action type. "Internal" refers to actions that are
* for internal only APIs.
*
* @return the actionType value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final class OperationInner {
private Origin origin;

/*
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
* Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
*/
@JsonProperty(value = "actionType")
private ActionType actionType;
Expand Down Expand Up @@ -91,8 +91,8 @@ public Origin origin() {
}

/**
* Get the actionType property: Enum. Indicates the action type. "Internal" refers to actions that are for internal
* only APIs.
* Get the actionType property: Extensible enum. Indicates the action type. "Internal" refers to actions that are
* for internal only APIs.
*
* @return the actionType value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.Collection;

/**
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
* Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
*/
public final class ActionType extends ExpandableStringEnum<ActionType> {
/**
Expand Down

0 comments on commit 6807a66

Please sign in to comment.