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
25,774 changes: 14,506 additions & 11,268 deletions dotnet/src/Generated/Rpc.cs

Large diffs are not rendered by default.

271 changes: 135 additions & 136 deletions dotnet/src/Generated/SessionEvents.cs

Large diffs are not rendered by default.

1,972 changes: 1,815 additions & 157 deletions go/rpc/zrpc.go

Large diffs are not rendered by default.

2,448 changes: 1,771 additions & 677 deletions go/rpc/zrpc_encoding.go

Large diffs are not rendered by default.

244 changes: 117 additions & 127 deletions go/rpc/zsession_events.go

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions go/zsession_events.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-2</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-4</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-2",
"@github/copilot": "^1.0.81-4",
"json-schema": "^0.4.0",
"tsx": "^4.23.1"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public enum ManagedSettingsEnforcedEscalation {
ALLOW_ALL("allow_all"),
/** The {@code approve_all} variant. */
APPROVE_ALL("approve_all"),
/** The {@code auto_approval} variant. */
AUTO_APPROVAL("auto_approval"),
/** The {@code assisted_approval} variant. */
ASSISTED_APPROVAL("assisted_approval"),
/** The {@code unrestricted_paths} variant. */
UNRESTRICTED_PATHS("unrestricted_paths"),
/** The {@code unrestricted_urls} variant. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@
import javax.annotation.processing.Generated;

/**
* Allow-all mode for the session.
* Permission mode for the session.
*
* @since 1.0.0
*/
@javax.annotation.processing.Generated("copilot-sdk-codegen")
public enum PermissionAllowAllMode {
/** The {@code off} variant. */
OFF("off"),
/** The {@code on} variant. */
ON("on"),
/** The {@code auto} variant. */
AUTO("auto");
public enum PermissionMode {
/** The {@code manual} variant. */
MANUAL("manual"),
/** The {@code assisted} variant. */
ASSISTED("assisted"),
/** The {@code allow-all} variant. */
ALLOW_ALL("allow-all");

private final String value;
PermissionAllowAllMode(String value) { this.value = value; }
PermissionMode(String value) { this.value = value; }
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() { return value; }
@com.fasterxml.jackson.annotation.JsonCreator
public static PermissionAllowAllMode fromValue(String value) {
for (PermissionAllowAllMode v : values()) {
public static PermissionMode fromValue(String value) {
for (PermissionMode v : values()) {
if (v.value.equals(value)) return v;
}
throw new IllegalArgumentException("Unknown PermissionAllowAllMode value: " + value);
throw new IllegalArgumentException("Unknown PermissionMode value: " + value);
}
}
Loading
Loading