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
399 changes: 317 additions & 82 deletions dotnet/src/Generated/Rpc.cs

Large diffs are not rendered by default.

277 changes: 208 additions & 69 deletions dotnet/src/Generated/SessionEvents.cs

Large diffs are not rendered by default.

235 changes: 209 additions & 26 deletions go/rpc/zrpc.go

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions go/rpc/zrpc_encoding.go

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

24 changes: 24 additions & 0 deletions go/rpc/zsession_encoding.go

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

126 changes: 108 additions & 18 deletions go/rpc/zsession_events.go

Large diffs are not rendered by default.

11 changes: 8 additions & 3 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 @@ -86,7 +86,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.64-3</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.65</readonly-copilot-sdk-ref-impl-version-from-lastmerge-file-updated-by-reference-impl-sync>

</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.64-3",
"@github/copilot": "^1.0.65",
"json-schema": "^0.4.0",
"tsx": "^4.22.4"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ public record AssistantUsageQuotaSnapshot(
/** Percentage of quota remaining (0 to 100) */
@JsonProperty("remainingPercentage") Double remainingPercentage,
/** Date when the quota resets */
@JsonProperty("resetDate") OffsetDateTime resetDate
@JsonProperty("resetDate") OffsetDateTime resetDate,
/** Whether the user currently has quota available for use */
@JsonProperty("hasQuota") Boolean hasQuota,
/** Whether this snapshot uses token-based billing (AI-credits allocation) */
@JsonProperty("tokenBasedBilling") Boolean tokenBasedBilling,
/** Pay-as-you-go additional-usage budget cap in AI credits (1 credit = $0.01); present only when CAPI emits a finite value */
@JsonProperty("overageEntitlement") Double overageEntitlement
) {
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
import javax.annotation.processing.Generated;

/**
Expand Down Expand Up @@ -58,6 +59,8 @@ public record ModelCallFailureEventData(
@JsonProperty("errorCode") String errorCode,
/** For HTTP 400 failures only: the `type` from the CAPI error envelope (e.g. 'websocket_error'), a coarser companion to errorCode for envelopes that carry no code. Raw server-controlled string, emitted only through restricted telemetry. Absent for bodyless or non-400 failures. */
@JsonProperty("errorType") String errorType,
/** Per-quota usage snapshots parsed from the failed response's quota headers, keyed by quota identifier. Present when the error response carried quota headers (e.g. a 402 once the additional spend limit is reached) so the UI can refresh the quota display on failure. */
@JsonProperty("quotaSnapshots") Map<String, AssistantUsageQuotaSnapshot> quotaSnapshots,
/** Content-free structural summary of the failing request. Contains only counts and shape flags (no prompt content), so it is safe for unrestricted telemetry. Populated only for client-error (4xx) failures. */
@JsonProperty("requestFingerprint") ModelCallFailureRequestFingerprint requestFingerprint
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ public record SessionCanvasOpenedEventData(
/** URL for web-rendered canvases */
@JsonProperty("url") String url,
/** Input supplied when the instance was opened */
@JsonProperty("input") Object input,
/** Whether this notification represents an idempotent reopen */
@JsonProperty("reopen") Boolean reopen,
/** Runtime-controlled routing state for the instance. "ready" when the provider connection is live; "stale" when the provider has gone away and the instance is awaiting rebinding. */
@JsonProperty("availability") CanvasOpenedAvailability availability
@JsonProperty("input") Object input
) {
}
}
Loading
Loading