Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Automation] Generate SDK based on TypeSpec 0.15.10 #39752

Merged
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
30 changes: 15 additions & 15 deletions eng/emitter-package-lock.json

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

12 changes: 6 additions & 6 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-java": "0.15.8"
"@azure-tools/typespec-java": "0.15.10"
},
"devDependencies": {
"@azure-tools/typespec-client-generator-core": "0.41.0",
"@typespec/versioning": "0.55.0",
"@typespec/compiler": "0.55.0",
"@azure-tools/typespec-client-generator-core": "0.41.2",
"@typespec/rest": "0.55.0",
"@azure-tools/typespec-azure-core": "0.41.0",
"@typespec/http": "0.55.0",
"@typespec/rest": "0.55.0",
"@typespec/openapi": "0.55.0"
"@typespec/compiler": "0.55.0",
"@typespec/openapi": "0.55.0",
"@typespec/versioning": "0.55.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public final class JobRouterClient {
* </table>
* You can add these to a request with {@link RequestOptions#addHeader}
* <p><strong>Request Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -131,9 +131,9 @@ public final class JobRouterClient {
* }
* }
* }</pre>
*
*
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -621,7 +621,7 @@ public RouterJob createJobWithClassificationPolicy(
/**
* Retrieves an existing job by Id.
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -858,7 +858,7 @@ public BinaryData cancelJob(String jobId, RequestOptions requestOptions) {
* </table>
* You can add these to a request with {@link RequestOptions#addQueryParam}
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -929,7 +929,7 @@ public PagedIterable<BinaryData> listJobs(RequestOptions requestOptions) {
/**
* Gets a job's position details.
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* jobId: String (Required)
Expand Down Expand Up @@ -957,15 +957,15 @@ public Response<BinaryData> getQueuePositionWithResponse(String jobId, RequestOp
/**
* Unassign a job.
* <p><strong>Request Body Schema</strong></p>
*
*
* <pre>{@code
* {
* suspendMatching: Boolean (Optional)
* }
* }</pre>
*
*
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* jobId: String (Required)
Expand All @@ -992,7 +992,7 @@ public Response<BinaryData> unassignJobWithResponse(String jobId, String assignm
/**
* Accepts an offer to work on a job and returns a 409/Conflict if another agent accepted the job already.
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* assignmentId: String (Required)
Expand Down Expand Up @@ -1090,7 +1090,7 @@ public BinaryData declineJobOffer(String workerId, String offerId, RequestOption
/**
* Retrieves a queue's statistics.
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* queueId: String (Required)
Expand Down Expand Up @@ -1129,7 +1129,7 @@ public Response<BinaryData> getQueueStatisticsWithResponse(String queueId, Reque
* </table>
* You can add these to a request with {@link RequestOptions#addHeader}
* <p><strong>Request Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -1174,9 +1174,9 @@ public Response<BinaryData> getQueueStatisticsWithResponse(String queueId, Reque
* maxConcurrentOffers: Integer (Optional)
* }
* }</pre>
*
*
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -1571,7 +1571,7 @@ public RouterWorker createWorker(CreateWorkerOptions createWorkerOptions) {
/**
* Retrieves an existing worker by Id.
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down Expand Up @@ -1667,7 +1667,7 @@ public Response<Void> deleteWorkerWithResponse(String workerId, RequestOptions r
* </table>
* You can add these to a request with {@link RequestOptions#addQueryParam}
* <p><strong>Response Body Schema</strong></p>
*
*
* <pre>{@code
* {
* etag: String (Required)
Expand Down
Loading
Loading