Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
21 changes: 13 additions & 8 deletions dotnet/src/Generated/Rpc.cs

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

18 changes: 13 additions & 5 deletions go/rpc/zrpc.go

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

2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
DO NOT EDIT MANUALLY. Updated by the update-copilot-dependency
workflow.
-->
<readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>^1.0.81-5</readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>
<readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>^1.0.81-6</readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>
<!-- The parent POM is not published to Maven Central. -->
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
Expand Down
72 changes: 36 additions & 36 deletions java/scripts/codegen/package-lock.json

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

2 changes: 1 addition & 1 deletion java/scripts/codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"generate:java": "tsx java.ts"
},
"dependencies": {
"@github/copilot": "^1.0.81-5",
"@github/copilot": "^1.0.81-6",
"json-schema": "^0.4.0",
"tsx": "^4.23.1"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import javax.annotation.processing.Generated;

/**
* Credentials to store after successful authentication
* Credentials to validate and store. Omit login to resolve the authenticated user from the token.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
Expand All @@ -26,7 +26,7 @@
public record AccountLoginParams(
/** GitHub host URL */
@JsonProperty("host") String host,
/** User login/username */
/** User login/username. When omitted, the runtime validates the token and resolves the login from GitHub. */
@JsonProperty("login") String login,
Comment thread
stephentoub marked this conversation as resolved.
/** GitHub authentication token */
@JsonProperty("token") String token
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ public enum PermissionModeSource {
SLASH_COMMAND("slash_command"),
/** The {@code autopilot_confirmation} variant. */
AUTOPILOT_CONFIRMATION("autopilot_confirmation"),
/** The {@code user_setting} variant. */
USER_SETTING("user_setting"),
/** The {@code rpc} variant. */
RPC("rpc");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ public enum PermissionsSetApproveAllSource {
SLASH_COMMAND("slash_command"),
/** The {@code autopilot_confirmation} variant. */
AUTOPILOT_CONFIRMATION("autopilot_confirmation"),
/** The {@code user_setting} variant. */
USER_SETTING("user_setting"),
/** The {@code rpc} variant. */
RPC("rpc");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public CompletableFuture<List<AccountAllUsers>> getAllUsers() {
}

/**
* Credentials to store after successful authentication
* Credentials to validate and store. Omit login to resolve the authenticated user from the token.
*
* @apiNote This method is experimental and may change in a future version.
* @since 1.0.0
Expand Down
Loading
Loading