Skip to content
Merged
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
2 changes: 1 addition & 1 deletion core
Submodule core updated 487 files
30 changes: 14 additions & 16 deletions typespec-extension/package-lock.json

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

10 changes: 5 additions & 5 deletions typespec-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"generator/http-client-generator/target/classes/PerfAutomation.jfc"
],
"peerDependencies": {
"@azure-tools/openai-typespec": "^1.9.0",
"@azure-tools/openai-typespec": "^1.10.0",
"@azure-tools/typespec-autorest": ">=0.65.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.65.0 <1.0.0",
"@azure-tools/typespec-azure-resource-manager": ">=0.65.0 <1.0.0",
"@azure-tools/typespec-azure-rulesets": ">=0.65.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.65.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.65.1 <1.0.0",
"@azure-tools/typespec-liftr-base": ">=0.11.0 <1.0.0",
"@typespec/compiler": "^1.9.0",
"@typespec/http": "^1.9.0",
Expand All @@ -67,12 +67,12 @@
"lodash": "~4.17.23"
},
"devDependencies": {
"@azure-tools/openai-typespec": "^1.9.0",
"@azure-tools/openai-typespec": "^1.10.0",
"@azure-tools/typespec-autorest": "0.65.0",
"@azure-tools/typespec-azure-core": "0.65.0",
"@azure-tools/typespec-azure-resource-manager": "0.65.0",
"@azure-tools/typespec-azure-rulesets": "0.65.0",
"@azure-tools/typespec-client-generator-core": "0.65.0",
"@azure-tools/typespec-client-generator-core": "0.65.1",
"@azure-tools/typespec-liftr-base": "0.11.0",
"@microsoft/api-extractor": "^7.56.3",
"@types/js-yaml": "~4.0.9",
Expand All @@ -96,7 +96,7 @@
"eslint": "~9.39.2",
"eslint-plugin-deprecation": "~3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"prettier": "~3.8.1",
"rimraf": "~6.1.2",
"typescript": "~5.9.3",
Expand Down
2 changes: 1 addition & 1 deletion typespec-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@typespec/sse": "0.79.0",
"@typespec/streams": "0.79.0",
"@azure-tools/typespec-azure-core": "0.65.0",
"@azure-tools/typespec-client-generator-core": "0.65.0",
"@azure-tools/typespec-client-generator-core": "0.65.1",
"@azure-tools/typespec-azure-resource-manager": "0.65.0",
"@azure-tools/typespec-autorest": "0.65.0",
"@azure-tools/typespec-liftr-base": "0.11.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@
/**
* A builder for creating a new instance of the ClientInitializationClient type.
*/
@ServiceClientBuilder(serviceClients = { ClientInitializationClient.class, ClientInitializationAsyncClient.class })
@ServiceClientBuilder(
serviceClients = {
ClientInitializationClient.class,
ClientInitializationAsyncClient.class,
SubClient.class,
SubAsyncClient.class })
public final class ClientInitializationClientBuilder implements HttpTrait<ClientInitializationClientBuilder>,
ConfigurationTrait<ClientInitializationClientBuilder>, EndpointTrait<ClientInitializationClientBuilder> {
@Generated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Initializes a new instance of the asynchronous SubClient type.
*/
@ServiceClient(builder = SubClientBuilder.class, isAsync = true)
@ServiceClient(builder = ClientInitializationClientBuilder.class, isAsync = true)
public final class SubAsyncClient {
@Generated
private final SubClientImpl serviceClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Initializes a new instance of the synchronous SubClient type.
*/
@ServiceClient(builder = SubClientBuilder.class)
@ServiceClient(builder = ClientInitializationClientBuilder.class)
public final class SubClient {
@Generated
private final SubClientImpl serviceClient;
Expand Down
Loading
Loading