diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 7b304f2677..5c5c0ff8ec 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -75,9 +75,9 @@ mvn test -Dtest=CopilotClientTest ### Package Structure -- `com.github.copilot.sdk` - Core classes (CopilotClient, CopilotSession, JsonRpcClient) -- `com.github.copilot.sdk.json` - DTOs, request/response types, handler interfaces (SessionConfig, MessageOptions, ToolDefinition, etc.) -- `com.github.copilot.sdk.generated` - Generated event types for session streaming (SessionEvent, AssistantMessageEvent, SessionIdleEvent, ToolExecutionStartEvent, etc.) +- `com.github.copilot` - Core classes (CopilotClient, CopilotSession, JsonRpcClient) +- `com.github.copilot.rpc` - DTOs, request/response types, handler interfaces (SessionConfig, MessageOptions, ToolDefinition, etc.) +- `com.github.copilot.generated` - Generated event types for session streaming (SessionEvent, AssistantMessageEvent, SessionIdleEvent, ToolExecutionStartEvent, etc.) ### Test Infrastructure diff --git a/.github/prompts/agentic-merge-reference-impl.prompt.md b/.github/prompts/agentic-merge-reference-impl.prompt.md index 88cc2bdfe0..d5c3528b3f 100644 --- a/.github/prompts/agentic-merge-reference-impl.prompt.md +++ b/.github/prompts/agentic-merge-reference-impl.prompt.md @@ -135,11 +135,11 @@ For each change in the reference implementation diff, determine: | reference implementation (.NET) | Java SDK Equivalent | |------------------------------------|--------------------------------------------------------| -| `dotnet/src/Client.cs` | `src/main/java/com/github/copilot/sdk/CopilotClient.java` | -| `dotnet/src/Session.cs` | `src/main/java/com/github/copilot/sdk/CopilotSession.java` | -| `dotnet/src/Types.cs` | `src/main/java/com/github/copilot/sdk/types/*.java` | +| `dotnet/src/Client.cs` | `src/main/java/com/github/copilot/CopilotClient.java` | +| `dotnet/src/Session.cs` | `src/main/java/com/github/copilot/CopilotSession.java` | +| `dotnet/src/Types.cs` | `src/main/java/com/github/copilot/types/*.java` | | `dotnet/src/Generated/*.cs` | ❌ **DO NOT TOUCH** `src/generated/java/**` — see top of this file | -| `dotnet/test/*.cs` | `src/test/java/com/github/copilot/sdk/*Test.java` | +| `dotnet/test/*.cs` | `src/test/java/com/github/copilot/*Test.java` | | `docs/getting-started.md` | `README.md` and `src/site/markdown/*.md` | | `docs/*.md` (new files) | `src/site/markdown/*.md` + update `src/site/site.xml` | | `sdk-protocol-version.json` | (embedded in Java code or resource file) | @@ -209,7 +209,7 @@ This creates a clear history of changes that can be reviewed in the Pull Request Follow the existing Java SDK patterns: - Use Jackson for JSON serialization (`ObjectMapper`) - Use Java records for DTOs where appropriate -- Follow the existing package structure under `com.github.copilot.sdk` +- Follow the existing package structure under `com.github.copilot` - Maintain backward compatibility when possible - **Match the style of surrounding code** - Consistency with existing code is more important than reference implementation patterns - **Prefer existing abstractions** - If the Java SDK already solves a problem differently than .NET, keep the Java approach @@ -230,7 +230,7 @@ git diff "$LAST_REFERENCE_IMPL_COMMIT"..origin/main --stat -- test/snapshots/ For each new or modified test file in `dotnet/test/`: -1. **Create corresponding Java test class** in `src/test/java/com/github/copilot/sdk/` +1. **Create corresponding Java test class** in `src/test/java/com/github/copilot/` 2. **Follow existing test patterns** - Look at existing tests like `PermissionsTest.java` for structure 3. **Use the E2ETestContext** infrastructure for tests that need the test harness 4. **Match snapshot directory names** - Test snapshots in `test/snapshots/` must match the directory name used in `ctx.configureForTest()` @@ -239,10 +239,10 @@ For each new or modified test file in `dotnet/test/`: | reference implementation Test (.NET) | Java SDK Test | |-----------------------------|--------------------------------------------------------| -| `dotnet/test/AskUserTests.cs` | `src/test/java/com/github/copilot/sdk/AskUserTest.java` | -| `dotnet/test/HooksTests.cs` | `src/test/java/com/github/copilot/sdk/HooksTest.java` | -| `dotnet/test/ClientTests.cs` | `src/test/java/com/github/copilot/sdk/CopilotClientTest.java` | -| `dotnet/test/*Tests.cs` | `src/test/java/com/github/copilot/sdk/*Test.java` | +| `dotnet/test/AskUserTests.cs` | `src/test/java/com/github/copilot/AskUserTest.java` | +| `dotnet/test/HooksTests.cs` | `src/test/java/com/github/copilot/HooksTest.java` | +| `dotnet/test/ClientTests.cs` | `src/test/java/com/github/copilot/CopilotClientTest.java` | +| `dotnet/test/*Tests.cs` | `src/test/java/com/github/copilot/*Test.java` | ### Test Snapshot Compatibility @@ -353,7 +353,7 @@ var session = client.createSession( Explain the request/response objects and their properties. -See [FeatureHandler](apidocs/com/github/copilot/sdk/json/FeatureHandler.html) Javadoc for more details. +See [FeatureHandler](apidocs/com/github/copilot/rpc/FeatureHandler.html) Javadoc for more details. ``` ### Verify Documentation Consistency diff --git a/.github/prompts/documentation-coverage.prompt.md b/.github/prompts/documentation-coverage.prompt.md index 80284c6a9c..cc627e1f35 100644 --- a/.github/prompts/documentation-coverage.prompt.md +++ b/.github/prompts/documentation-coverage.prompt.md @@ -17,13 +17,13 @@ Extract all public classes, methods, and features from the SDK: ```bash # List all public classes in core package -grep -l "public class\|public interface\|public enum" src/main/java/com/github/copilot/sdk/*.java +grep -l "public class\|public interface\|public enum" src/main/java/com/github/copilot/*.java # List all public classes in json package (DTOs) -grep -l "public class" src/main/java/com/github/copilot/sdk/json/*.java +grep -l "public class" src/main/java/com/github/copilot/rpc/*.java # List all event types -ls src/main/java/com/github/copilot/sdk/events/ +ls src/main/java/com/github/copilot/events/ ``` ### Step 2: Inventory Documentation @@ -45,7 +45,7 @@ For each major feature area, determine if it's documented: Examine `CopilotClient.java` for public methods: ```bash -grep "public.*(" src/main/java/com/github/copilot/sdk/CopilotClient.java | grep -v "@" +grep "public.*(" src/main/java/com/github/copilot/CopilotClient.java | grep -v "@" ``` | Method | Purpose | Documented In | Status | @@ -66,7 +66,7 @@ grep "public.*(" src/main/java/com/github/copilot/sdk/CopilotClient.java | grep Examine `CopilotSession.java` for public methods: ```bash -grep "public.*(" src/main/java/com/github/copilot/sdk/CopilotSession.java | grep -v "@" +grep "public.*(" src/main/java/com/github/copilot/CopilotSession.java | grep -v "@" ``` | Method | Purpose | Documented In | Status | @@ -83,7 +83,7 @@ grep "public.*(" src/main/java/com/github/copilot/sdk/CopilotSession.java | grep Examine `SessionConfig.java` for configurable options: ```bash -grep "public.*set\|private.*;" src/main/java/com/github/copilot/sdk/json/SessionConfig.java +grep "public.*set\|private.*;" src/main/java/com/github/copilot/rpc/SessionConfig.java ``` | Option | Purpose | Documented | Example Provided | @@ -103,7 +103,7 @@ grep "public.*set\|private.*;" src/main/java/com/github/copilot/sdk/json/Session Check which events are documented: ```bash -grep "TYPE_MAP.put" src/main/java/com/github/copilot/sdk/events/SessionEventParser.java +grep "TYPE_MAP.put" src/main/java/com/github/copilot/events/SessionEventParser.java ``` | Event Type | Event Class | Documented | Example | @@ -118,7 +118,7 @@ grep "TYPE_MAP.put" src/main/java/com/github/copilot/sdk/events/SessionEventPars Check `SessionHooks.java` for hook types: ```bash -grep "private.*Handler" src/main/java/com/github/copilot/sdk/json/SessionHooks.java +grep "private.*Handler" src/main/java/com/github/copilot/rpc/SessionHooks.java ``` | Hook | Handler Interface | Documented | Example | @@ -193,11 +193,11 @@ Topics that warrant dedicated documentation: ## Key Files ### Source Code -- `src/main/java/com/github/copilot/sdk/CopilotClient.java` -- `src/main/java/com/github/copilot/sdk/CopilotSession.java` -- `src/main/java/com/github/copilot/sdk/json/SessionConfig.java` -- `src/main/java/com/github/copilot/sdk/json/SessionHooks.java` -- `src/main/java/com/github/copilot/sdk/events/SessionEventParser.java` +- `src/main/java/com/github/copilot/CopilotClient.java` +- `src/main/java/com/github/copilot/CopilotSession.java` +- `src/main/java/com/github/copilot/rpc/SessionConfig.java` +- `src/main/java/com/github/copilot/rpc/SessionHooks.java` +- `src/main/java/com/github/copilot/events/SessionEventParser.java` ### Documentation - `src/site/markdown/index.md` - Landing page diff --git a/.github/prompts/test-coverage-assessment.prompt.md b/.github/prompts/test-coverage-assessment.prompt.md index c2dc3b0c4d..6233ad099e 100644 --- a/.github/prompts/test-coverage-assessment.prompt.md +++ b/.github/prompts/test-coverage-assessment.prompt.md @@ -17,10 +17,10 @@ First, examine the source code to identify all components that should be tested: ```bash # List all event classes -ls src/main/java/com/github/copilot/sdk/events/ +ls src/main/java/com/github/copilot/events/ # Check the event type mapping in SessionEventParser -grep -n "TYPE_MAP.put" src/main/java/com/github/copilot/sdk/events/SessionEventParser.java +grep -n "TYPE_MAP.put" src/main/java/com/github/copilot/events/SessionEventParser.java ``` Extract the list of all registered event types from `SessionEventParser.java`. @@ -30,7 +30,7 @@ Extract the list of all registered event types from `SessionEventParser.java`. Check `SessionHooks.java` for all available hook handlers: ```bash -grep -E "private.*Handler" src/main/java/com/github/copilot/sdk/json/SessionHooks.java +grep -E "private.*Handler" src/main/java/com/github/copilot/rpc/SessionHooks.java ``` ### Step 3: Analyze Existing Tests @@ -39,13 +39,13 @@ Examine the test files to understand current coverage: ```bash # List all test files -ls src/test/java/com/github/copilot/sdk/ +ls src/test/java/com/github/copilot/ # Check for event-related tests -grep -r "import.*events\." src/test/java/com/github/copilot/sdk/ | grep -v "\.class" +grep -r "import.*events\." src/test/java/com/github/copilot/ | grep -v "\.class" # Check for hook tests -grep -l "SessionHooks\|Hook" src/test/java/com/github/copilot/sdk/*.java +grep -l "SessionHooks\|Hook" src/test/java/com/github/copilot/*.java ``` ### Step 4: Categorize Test Coverage @@ -95,13 +95,13 @@ Prioritized list of tests to add: ## Key Files to Examine -- `src/main/java/com/github/copilot/sdk/events/SessionEventParser.java` - Event type registry -- `src/main/java/com/github/copilot/sdk/json/SessionHooks.java` - Hook definitions -- `src/main/java/com/github/copilot/sdk/CopilotSession.java` - Hook handling logic -- `src/test/java/com/github/copilot/sdk/SessionEventParserTest.java` - Event parsing tests -- `src/test/java/com/github/copilot/sdk/SessionEventsE2ETest.java` - Event E2E tests -- `src/test/java/com/github/copilot/sdk/HooksTest.java` - Hook tests -- `src/test/java/com/github/copilot/sdk/SessionEventHandlingTest.java` - Event handling tests +- `src/main/java/com/github/copilot/events/SessionEventParser.java` - Event type registry +- `src/main/java/com/github/copilot/rpc/SessionHooks.java` - Hook definitions +- `src/main/java/com/github/copilot/CopilotSession.java` - Hook handling logic +- `src/test/java/com/github/copilot/SessionEventParserTest.java` - Event parsing tests +- `src/test/java/com/github/copilot/SessionEventsE2ETest.java` - Event E2E tests +- `src/test/java/com/github/copilot/HooksTest.java` - Hook tests +- `src/test/java/com/github/copilot/SessionEventHandlingTest.java` - Event handling tests ## Verification diff --git a/.github/workflows/codegen-agentic-fix.md b/.github/workflows/codegen-agentic-fix.md index b4aa0a8f20..948524999e 100644 --- a/.github/workflows/codegen-agentic-fix.md +++ b/.github/workflows/codegen-agentic-fix.md @@ -177,7 +177,7 @@ For each attempt: 2. **Read the generated types** to understand what changed. Check the generated files that the handwritten code references: ```bash # Example: check what a generated type looks like now - cat src/generated/java/com/github/copilot/sdk/generated/rpc/.java + cat src/generated/java/com/github/copilot/generated/rpc/.java ``` 3. **Fix the affected source files.** You may modify files under: diff --git a/.github/workflows/update-copilot-dependency.yml b/.github/workflows/update-copilot-dependency.yml index d29da6acb7..e6d76c2125 100644 --- a/.github/workflows/update-copilot-dependency.yml +++ b/.github/workflows/update-copilot-dependency.yml @@ -61,7 +61,7 @@ jobs: cat > /tmp/verify-codegen-prompt.txt << 'PROMPT_EOF' You are running inside the copilot-sdk-java repository. The code generator has just run and produced Java source files under - src/generated/java/com/github/copilot/sdk/generated/rpc/. + src/generated/java/com/github/copilot/generated/rpc/. Your task is to spot-check the generated API classes against the source JSON schema to verify the generator produced correct output. @@ -74,9 +74,9 @@ jobs: scripts/codegen/node_modules/@github/copilot/schemas/api.schema.json 2. Pick these 3 generated API classes to verify: - - src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsApi.java - - src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiApi.java - - src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsApi.java + - src/generated/java/com/github/copilot/generated/rpc/SessionToolsApi.java + - src/generated/java/com/github/copilot/generated/rpc/SessionUiApi.java + - src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsApi.java 3. For each class, verify: - Every RPC method in the schema's corresponding namespace has a diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e174dd216..40c47e694d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -405,7 +405,7 @@ New types: `GetForegroundSessionResponse`, `SetForegroundSessionResponse` - Advanced usage documentation with comprehensive examples - Getting started guide with Maven and JBang instructions -- Package-info.java files for `com.github.copilot.sdk`, `events`, and `json` packages +- Package-info.java files for `com.github.copilot`, `events`, and `json` packages - `@since` annotations on all public classes - Versioned documentation with version selector on GitHub Pages - Maven resources plugin for site markdown filtering diff --git a/README.md b/README.md index 37bb2d659b..e4d2cc3020 100644 --- a/README.md +++ b/README.md @@ -67,13 +67,13 @@ implementation 'com.github:copilot-sdk-java:1.0.0-beta-java.4' ## Quick Start ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionUsageInfoEvent; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionUsageInfoEvent; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import java.util.concurrent.Executors; diff --git a/config/spotbugs/spotbugs-exclude.xml b/config/spotbugs/spotbugs-exclude.xml index 1c7d415f65..b0b3628827 100644 --- a/config/spotbugs/spotbugs-exclude.xml +++ b/config/spotbugs/spotbugs-exclude.xml @@ -10,11 +10,11 @@ --> - + - + diff --git a/jbang-example.java b/jbang-example.java index 1c41679cdf..a3616e2636 100644 --- a/jbang-example.java +++ b/jbang-example.java @@ -1,11 +1,11 @@ ///usr/bin/env jbang "$0" "$@" ; exit $? //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionUsageInfoEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionUsageInfoEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import static java.lang.System.out; diff --git a/pom.xml b/pom.xml index be9e92a93a..b8ba9ef0e7 100644 --- a/pom.xml +++ b/pom.xml @@ -429,11 +429,11 @@ testExecutionAgentArgs - com/github/copilot/sdk/** + com/github/copilot/** - com/github/copilot/sdk/E2ETestContext* - com/github/copilot/sdk/CapiProxy* + com/github/copilot/E2ETestContext* + com/github/copilot/CapiProxy* diff --git a/scripts/codegen/java.ts b/scripts/codegen/java.ts index 34bc83a9d5..64fc463a0c 100644 --- a/scripts/codegen/java.ts +++ b/scripts/codegen/java.ts @@ -358,8 +358,8 @@ async function generateSessionEvents(schemaPath: string): Promise { pendingStandaloneTypes.clear(); const variants = extractEventVariants(schema); - const packageName = "com.github.copilot.sdk.generated"; - const packageDir = `src/generated/java/com/github/copilot/sdk/generated`; + const packageName = "com.github.copilot.generated"; + const packageDir = `src/generated/java/com/github/copilot/generated`; // Generate base SessionEvent class await generateSessionEventBaseClass(variants, packageName, packageDir); @@ -940,8 +940,8 @@ async function generateRpcTypes(schemaPath: string): Promise { console.warn(`[codegen] Could not load session-events schema for cross-ref resolution: ${e}`); } - const packageName = "com.github.copilot.sdk.generated.rpc"; - const packageDir = `src/generated/java/com/github/copilot/sdk/generated/rpc`; + const packageName = "com.github.copilot.generated.rpc"; + const packageDir = `src/generated/java/com/github/copilot/generated/rpc`; // Collect all RPC methods from all sections const sections: [string, Record][] = []; @@ -1562,8 +1562,8 @@ async function generateRpcWrappers(schemaPath: string): Promise { // Set module-level definitions for $ref resolution in wrapper helpers currentDefinitions = (schema.definitions ?? {}) as Record; - const packageName = "com.github.copilot.sdk.generated.rpc"; - const packageDir = `src/generated/java/com/github/copilot/sdk/generated/rpc`; + const packageName = "com.github.copilot.generated.rpc"; + const packageDir = `src/generated/java/com/github/copilot/generated/rpc`; // RpcCaller interface and shared ObjectMapper holder await generateRpcCallerInterface(packageName, packageDir); diff --git a/scripts/compare-standalone-to-monorepo.sh b/scripts/compare-standalone-to-monorepo.sh new file mode 100755 index 0000000000..139eb1b38c --- /dev/null +++ b/scripts/compare-standalone-to-monorepo.sh @@ -0,0 +1,141 @@ +#!/bin/sh +# compare-standalone-to-monorepo.sh +# +# Compare POM, Java source, and Java properties files between the +# standalone copilot-sdk-java repo and the monorepo's java/ directory. +# +# Usage: +# ./scripts/compare-standalone-to-monorepo.sh /path/to/standalone /path/to/monorepo [--diff] +# +# The standalone path should point to the root of copilot-sdk-java. +# The monorepo path should point to the root of copilot-sdk (the java/ subdir +# is appended automatically). +# +# Compatible with macOS zsh and POSIX sh/bash. + +set -e + +# ── Parse arguments ────────────────────────────────────────────────── +SHOW_DIFF=false +STANDALONE="" +MONOREPO="" + +for arg in "$@"; do + case "$arg" in + --diff) + SHOW_DIFF=true + ;; + *) + if [ -z "$STANDALONE" ]; then + STANDALONE="$arg" + elif [ -z "$MONOREPO" ]; then + MONOREPO="$arg" + else + echo "Error: unexpected argument: $arg" >&2 + echo "Usage: $0 [--diff]" >&2 + exit 1 + fi + ;; + esac +done + +if [ -z "$STANDALONE" ] || [ -z "$MONOREPO" ]; then + echo "Usage: $0 [--diff]" >&2 + exit 1 +fi + +MONO_JAVA="${MONOREPO}/java" + +if [ ! -d "$STANDALONE" ]; then + echo "Error: standalone directory does not exist: $STANDALONE" >&2 + exit 1 +fi + +if [ ! -d "$MONO_JAVA" ]; then + echo "Error: monorepo java directory does not exist: $MONO_JAVA" >&2 + exit 1 +fi + +# ── Collect comparable files from the standalone repo ──────────────── +# Excludes: target/, node_modules/, temporary-prompts/, scripts/codegen/ +# (these are build artifacts or standalone-only content) +TMPFILE=$(mktemp) +trap 'rm -f "$TMPFILE"' EXIT + +(cd "$STANDALONE" && find . -type f \( -name "pom.xml" -o -name "*.java" -o -name "*.properties" \) \ + | grep -v '/target/' \ + | grep -v '/node_modules/' \ + | grep -v '^\./temporary-prompts/' \ + | grep -v '^\./scripts/codegen/' \ + | sed 's|^\./||' \ + | sort) > "$TMPFILE" + +# ── Compare ────────────────────────────────────────────────────────── +DIFFER_COUNT=0 +MISSING_COUNT=0 +SAME_COUNT=0 +DIFFER_LIST="" +MISSING_LIST="" + +while IFS= read -r relpath; do + standalone_file="${STANDALONE}/${relpath}" + mono_file="${MONO_JAVA}/${relpath}" + + if [ ! -f "$mono_file" ]; then + MISSING_COUNT=$((MISSING_COUNT + 1)) + MISSING_LIST="${MISSING_LIST}${relpath} +" + elif ! diff -q "$standalone_file" "$mono_file" >/dev/null 2>&1; then + DIFFER_COUNT=$((DIFFER_COUNT + 1)) + DIFFER_LIST="${DIFFER_LIST}${relpath} +" + else + SAME_COUNT=$((SAME_COUNT + 1)) + fi +done < "$TMPFILE" + +TOTAL_COUNT=$(wc -l < "$TMPFILE" | tr -d ' ') + +# ── Output ─────────────────────────────────────────────────────────── +echo "Compared ${TOTAL_COUNT} files (pom.xml, *.java, *.properties)" +echo " Identical: ${SAME_COUNT}" +echo " Differ: ${DIFFER_COUNT}" +echo " Missing from monorepo: ${MISSING_COUNT}" +echo "" + +if [ "$DIFFER_COUNT" -gt 0 ]; then + echo "The following files differ between the standalone and monorepo:" + echo "" + printf '%s' "$DIFFER_LIST" | while IFS= read -r f; do + [ -n "$f" ] && echo " $f" + done + echo "" +fi + +if [ "$MISSING_COUNT" -gt 0 ]; then + echo "The following files exist in standalone but NOT in monorepo:" + echo "" + printf '%s' "$MISSING_LIST" | while IFS= read -r f; do + [ -n "$f" ] && echo " $f" + done + echo "" +fi + +if [ "$DIFFER_COUNT" -eq 0 ] && [ "$MISSING_COUNT" -eq 0 ]; then + echo "All files are identical." +fi + +# ── Optional unified diffs ─────────────────────────────────────────── +if [ "$SHOW_DIFF" = true ] && [ "$DIFFER_COUNT" -gt 0 ]; then + echo "================================================================================" + echo "Unified diffs for differing files:" + echo "================================================================================" + printf '%s' "$DIFFER_LIST" | while IFS= read -r f; do + if [ -n "$f" ]; then + echo "" + echo "--- standalone/$f" + echo "+++ monorepo/java/$f" + diff -u "${STANDALONE}/${f}" "${MONO_JAVA}/${f}" || true + fi + done +fi diff --git a/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java b/src/generated/java/com/github/copilot/generated/AbortEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java rename to src/generated/java/com/github/copilot/generated/AbortEvent.java index 297f23f722..e58922aa0d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AbortEvent.java +++ b/src/generated/java/com/github/copilot/generated/AbortEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AbortReason.java b/src/generated/java/com/github/copilot/generated/AbortReason.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/AbortReason.java rename to src/generated/java/com/github/copilot/generated/AbortReason.java index 2bb93b8865..2ffbdb8d8c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AbortReason.java +++ b/src/generated/java/com/github/copilot/generated/AbortReason.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java b/src/generated/java/com/github/copilot/generated/AssistantIntentEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantIntentEvent.java index 332daeb179..49de4cda21 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantIntentEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantIntentEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java b/src/generated/java/com/github/copilot/generated/AssistantMessageDeltaEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantMessageDeltaEvent.java index ff84f757d5..cdc0e3e26a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageDeltaEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantMessageDeltaEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java b/src/generated/java/com/github/copilot/generated/AssistantMessageEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantMessageEvent.java index ab58b24e5d..74d531008b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantMessageEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java b/src/generated/java/com/github/copilot/generated/AssistantMessageStartEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantMessageStartEvent.java index 8a83da9439..f85e33b888 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantMessageStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequest.java b/src/generated/java/com/github/copilot/generated/AssistantMessageToolRequest.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequest.java rename to src/generated/java/com/github/copilot/generated/AssistantMessageToolRequest.java index e185a01fa8..2013734012 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequest.java +++ b/src/generated/java/com/github/copilot/generated/AssistantMessageToolRequest.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequestType.java b/src/generated/java/com/github/copilot/generated/AssistantMessageToolRequestType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequestType.java rename to src/generated/java/com/github/copilot/generated/AssistantMessageToolRequestType.java index 024b845d62..acf6df7b4f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantMessageToolRequestType.java +++ b/src/generated/java/com/github/copilot/generated/AssistantMessageToolRequestType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java b/src/generated/java/com/github/copilot/generated/AssistantReasoningDeltaEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantReasoningDeltaEvent.java index 5c7a6f94b9..f9d8b25b44 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningDeltaEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantReasoningDeltaEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java b/src/generated/java/com/github/copilot/generated/AssistantReasoningEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantReasoningEvent.java index 58a7e665d4..d84b400582 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantReasoningEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantReasoningEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java b/src/generated/java/com/github/copilot/generated/AssistantStreamingDeltaEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantStreamingDeltaEvent.java index 31acae7c65..e5eae1897f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantStreamingDeltaEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantStreamingDeltaEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java b/src/generated/java/com/github/copilot/generated/AssistantTurnEndEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantTurnEndEvent.java index e349711dc8..fa245915b6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnEndEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantTurnEndEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java b/src/generated/java/com/github/copilot/generated/AssistantTurnStartEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantTurnStartEvent.java index 245803774e..f090117bf7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantTurnStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantTurnStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java b/src/generated/java/com/github/copilot/generated/AssistantUsageApiEndpoint.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java rename to src/generated/java/com/github/copilot/generated/AssistantUsageApiEndpoint.java index e69e4ef868..9f94c4a6e9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageApiEndpoint.java +++ b/src/generated/java/com/github/copilot/generated/AssistantUsageApiEndpoint.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsage.java b/src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsage.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsage.java rename to src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsage.java index ee3e9f9cfb..e9db8a530d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsage.java +++ b/src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsage.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsageTokenDetail.java b/src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsageTokenDetail.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsageTokenDetail.java rename to src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsageTokenDetail.java index bea7cf162b..9354568c7c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageCopilotUsageTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/AssistantUsageCopilotUsageTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java b/src/generated/java/com/github/copilot/generated/AssistantUsageEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java rename to src/generated/java/com/github/copilot/generated/AssistantUsageEvent.java index 7d06ae9a0c..24b74c54f3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageEvent.java +++ b/src/generated/java/com/github/copilot/generated/AssistantUsageEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java b/src/generated/java/com/github/copilot/generated/AssistantUsageQuotaSnapshot.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java rename to src/generated/java/com/github/copilot/generated/AssistantUsageQuotaSnapshot.java index 1bfa2c0886..167f420408 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AssistantUsageQuotaSnapshot.java +++ b/src/generated/java/com/github/copilot/generated/AssistantUsageQuotaSnapshot.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java b/src/generated/java/com/github/copilot/generated/AutoModeSwitchCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/AutoModeSwitchCompletedEvent.java index 09c15cc1a8..76a35dbb7d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/AutoModeSwitchCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java b/src/generated/java/com/github/copilot/generated/AutoModeSwitchRequestedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/AutoModeSwitchRequestedEvent.java index 4c68eb746a..79fc5c3169 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/AutoModeSwitchRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java b/src/generated/java/com/github/copilot/generated/AutoModeSwitchResponse.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java rename to src/generated/java/com/github/copilot/generated/AutoModeSwitchResponse.java index 3f677ca202..46745b66e8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/AutoModeSwitchResponse.java +++ b/src/generated/java/com/github/copilot/generated/AutoModeSwitchResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java b/src/generated/java/com/github/copilot/generated/CapabilitiesChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java rename to src/generated/java/com/github/copilot/generated/CapabilitiesChangedEvent.java index ff359b04a0..8f0d0809f0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/CapabilitiesChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedUI.java b/src/generated/java/com/github/copilot/generated/CapabilitiesChangedUI.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedUI.java rename to src/generated/java/com/github/copilot/generated/CapabilitiesChangedUI.java index 828733b046..89c211f6cf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CapabilitiesChangedUI.java +++ b/src/generated/java/com/github/copilot/generated/CapabilitiesChangedUI.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java b/src/generated/java/com/github/copilot/generated/CommandCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/CommandCompletedEvent.java index 584cde38b3..a334edbb19 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CommandCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/CommandCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java b/src/generated/java/com/github/copilot/generated/CommandExecuteEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java rename to src/generated/java/com/github/copilot/generated/CommandExecuteEvent.java index 5d07300e8b..efd840bbd3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CommandExecuteEvent.java +++ b/src/generated/java/com/github/copilot/generated/CommandExecuteEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java b/src/generated/java/com/github/copilot/generated/CommandQueuedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java rename to src/generated/java/com/github/copilot/generated/CommandQueuedEvent.java index f724f52993..518248aa93 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CommandQueuedEvent.java +++ b/src/generated/java/com/github/copilot/generated/CommandQueuedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java b/src/generated/java/com/github/copilot/generated/CommandsChangedCommand.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java rename to src/generated/java/com/github/copilot/generated/CommandsChangedCommand.java index cb446ee24c..383f141fcb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedCommand.java +++ b/src/generated/java/com/github/copilot/generated/CommandsChangedCommand.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java b/src/generated/java/com/github/copilot/generated/CommandsChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java rename to src/generated/java/com/github/copilot/generated/CommandsChangedEvent.java index 7b2d3c2c12..a3f8fba190 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CommandsChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/CommandsChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsed.java b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsed.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsed.java rename to src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsed.java index c3469eb7b2..ed454deafd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsed.java +++ b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsed.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java rename to src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java index 76e5a0ed8f..886229cc69 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java +++ b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsage.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java rename to src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java index 5c368251f0..83209f94c8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/CompactionCompleteCompactionTokensUsedCopilotUsageTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java b/src/generated/java/com/github/copilot/generated/CustomAgentsUpdatedAgent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java rename to src/generated/java/com/github/copilot/generated/CustomAgentsUpdatedAgent.java index 154e763778..642be86944 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/CustomAgentsUpdatedAgent.java +++ b/src/generated/java/com/github/copilot/generated/CustomAgentsUpdatedAgent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedAction.java b/src/generated/java/com/github/copilot/generated/ElicitationCompletedAction.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedAction.java rename to src/generated/java/com/github/copilot/generated/ElicitationCompletedAction.java index 32e4723e58..cc6026f259 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedAction.java +++ b/src/generated/java/com/github/copilot/generated/ElicitationCompletedAction.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java b/src/generated/java/com/github/copilot/generated/ElicitationCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/ElicitationCompletedEvent.java index ee713a1002..454cc43a0c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ElicitationCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java b/src/generated/java/com/github/copilot/generated/ElicitationRequestedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/ElicitationRequestedEvent.java index 000c242c9a..6c8aa2547d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ElicitationRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedMode.java b/src/generated/java/com/github/copilot/generated/ElicitationRequestedMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedMode.java rename to src/generated/java/com/github/copilot/generated/ElicitationRequestedMode.java index ffe24b56fa..49538450d4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedMode.java +++ b/src/generated/java/com/github/copilot/generated/ElicitationRequestedMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedSchema.java b/src/generated/java/com/github/copilot/generated/ElicitationRequestedSchema.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedSchema.java rename to src/generated/java/com/github/copilot/generated/ElicitationRequestedSchema.java index 4234867adc..d6ad62b4b0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ElicitationRequestedSchema.java +++ b/src/generated/java/com/github/copilot/generated/ElicitationRequestedSchema.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java b/src/generated/java/com/github/copilot/generated/ExitPlanModeAction.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java rename to src/generated/java/com/github/copilot/generated/ExitPlanModeAction.java index a8b85ad943..6d86641414 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeAction.java +++ b/src/generated/java/com/github/copilot/generated/ExitPlanModeAction.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java b/src/generated/java/com/github/copilot/generated/ExitPlanModeCompletedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/ExitPlanModeCompletedEvent.java index 3788532933..6056a570e4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ExitPlanModeCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java b/src/generated/java/com/github/copilot/generated/ExitPlanModeRequestedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/ExitPlanModeRequestedEvent.java index e96124bc7e..134e01cbb9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExitPlanModeRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ExitPlanModeRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtension.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java rename to src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtension.java index 32e8ae4601..b47f308c8e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtension.java +++ b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtension.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionSource.java b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionSource.java rename to src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionSource.java index d6409caf45..abf991a01a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionSource.java +++ b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionStatus.java b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionStatus.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionStatus.java rename to src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionStatus.java index a4ef8de991..8f8ca0b65c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExtensionsLoadedExtensionStatus.java +++ b/src/generated/java/com/github/copilot/generated/ExtensionsLoadedExtensionStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java b/src/generated/java/com/github/copilot/generated/ExternalToolCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/ExternalToolCompletedEvent.java index be086cb6d8..cfd9828e70 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ExternalToolCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java b/src/generated/java/com/github/copilot/generated/ExternalToolRequestedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/ExternalToolRequestedEvent.java index 72591dd47c..1f5a3a205c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ExternalToolRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ExternalToolRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/HandoffRepository.java b/src/generated/java/com/github/copilot/generated/HandoffRepository.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/HandoffRepository.java rename to src/generated/java/com/github/copilot/generated/HandoffRepository.java index a87002c9e3..e54226a8b3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/HandoffRepository.java +++ b/src/generated/java/com/github/copilot/generated/HandoffRepository.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/HandoffSourceType.java b/src/generated/java/com/github/copilot/generated/HandoffSourceType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/HandoffSourceType.java rename to src/generated/java/com/github/copilot/generated/HandoffSourceType.java index 06f39c214e..83d6677825 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/HandoffSourceType.java +++ b/src/generated/java/com/github/copilot/generated/HandoffSourceType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/HookEndError.java b/src/generated/java/com/github/copilot/generated/HookEndError.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/HookEndError.java rename to src/generated/java/com/github/copilot/generated/HookEndError.java index bbf992536a..59646b3cc1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/HookEndError.java +++ b/src/generated/java/com/github/copilot/generated/HookEndError.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java b/src/generated/java/com/github/copilot/generated/HookEndEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java rename to src/generated/java/com/github/copilot/generated/HookEndEvent.java index 71b148fb13..1b90f5fa9e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/HookEndEvent.java +++ b/src/generated/java/com/github/copilot/generated/HookEndEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java b/src/generated/java/com/github/copilot/generated/HookStartEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java rename to src/generated/java/com/github/copilot/generated/HookStartEvent.java index 0505c4182a..f4605ce257 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/HookStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/HookStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java b/src/generated/java/com/github/copilot/generated/McpOauthCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/McpOauthCompletedEvent.java index 33a56f8248..f02c7d42a2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpOauthCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/McpOauthCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java b/src/generated/java/com/github/copilot/generated/McpOauthRequiredEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java rename to src/generated/java/com/github/copilot/generated/McpOauthRequiredEvent.java index c2e9843da1..c384afcf01 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredEvent.java +++ b/src/generated/java/com/github/copilot/generated/McpOauthRequiredEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredStaticClientConfig.java b/src/generated/java/com/github/copilot/generated/McpOauthRequiredStaticClientConfig.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredStaticClientConfig.java rename to src/generated/java/com/github/copilot/generated/McpOauthRequiredStaticClientConfig.java index b037b82ac5..764f8b7fc8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpOauthRequiredStaticClientConfig.java +++ b/src/generated/java/com/github/copilot/generated/McpOauthRequiredStaticClientConfig.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java b/src/generated/java/com/github/copilot/generated/McpServerSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java rename to src/generated/java/com/github/copilot/generated/McpServerSource.java index 15cff507a4..63514743ab 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpServerSource.java +++ b/src/generated/java/com/github/copilot/generated/McpServerSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java b/src/generated/java/com/github/copilot/generated/McpServerStatus.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java rename to src/generated/java/com/github/copilot/generated/McpServerStatus.java index f9c948f10c..b5bb080935 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpServerStatus.java +++ b/src/generated/java/com/github/copilot/generated/McpServerStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServerStatusChangedStatus.java b/src/generated/java/com/github/copilot/generated/McpServerStatusChangedStatus.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/McpServerStatusChangedStatus.java rename to src/generated/java/com/github/copilot/generated/McpServerStatusChangedStatus.java index c0a6d989d2..cc11c8cabf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpServerStatusChangedStatus.java +++ b/src/generated/java/com/github/copilot/generated/McpServerStatusChangedStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java b/src/generated/java/com/github/copilot/generated/McpServersLoadedServer.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java rename to src/generated/java/com/github/copilot/generated/McpServersLoadedServer.java index dbd08ede71..aba91bdef8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServer.java +++ b/src/generated/java/com/github/copilot/generated/McpServersLoadedServer.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServerStatus.java b/src/generated/java/com/github/copilot/generated/McpServersLoadedServerStatus.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServerStatus.java rename to src/generated/java/com/github/copilot/generated/McpServersLoadedServerStatus.java index 4d09fe2a38..af3c97840f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/McpServersLoadedServerStatus.java +++ b/src/generated/java/com/github/copilot/generated/McpServersLoadedServerStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java b/src/generated/java/com/github/copilot/generated/ModelCallFailureEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java rename to src/generated/java/com/github/copilot/generated/ModelCallFailureEvent.java index 42de2f1f84..e4df713842 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureEvent.java +++ b/src/generated/java/com/github/copilot/generated/ModelCallFailureEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureSource.java b/src/generated/java/com/github/copilot/generated/ModelCallFailureSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureSource.java rename to src/generated/java/com/github/copilot/generated/ModelCallFailureSource.java index 469adaab43..747112c3db 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ModelCallFailureSource.java +++ b/src/generated/java/com/github/copilot/generated/ModelCallFailureSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java b/src/generated/java/com/github/copilot/generated/PendingMessagesModifiedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java rename to src/generated/java/com/github/copilot/generated/PendingMessagesModifiedEvent.java index 7cdcf1d3a8..2b7fecee0f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PendingMessagesModifiedEvent.java +++ b/src/generated/java/com/github/copilot/generated/PendingMessagesModifiedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java b/src/generated/java/com/github/copilot/generated/PermissionCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/PermissionCompletedEvent.java index feeb4ca822..e389863d3d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/PermissionCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedKind.java b/src/generated/java/com/github/copilot/generated/PermissionCompletedKind.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedKind.java rename to src/generated/java/com/github/copilot/generated/PermissionCompletedKind.java index c02f221fd5..61c770b65f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedKind.java +++ b/src/generated/java/com/github/copilot/generated/PermissionCompletedKind.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedResult.java b/src/generated/java/com/github/copilot/generated/PermissionCompletedResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedResult.java rename to src/generated/java/com/github/copilot/generated/PermissionCompletedResult.java index 4a180001ca..1beb805239 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PermissionCompletedResult.java +++ b/src/generated/java/com/github/copilot/generated/PermissionCompletedResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java b/src/generated/java/com/github/copilot/generated/PermissionRequestedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/PermissionRequestedEvent.java index fda4db42f3..2d79880622 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PermissionRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/PermissionRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/PlanChangedOperation.java b/src/generated/java/com/github/copilot/generated/PlanChangedOperation.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/PlanChangedOperation.java rename to src/generated/java/com/github/copilot/generated/PlanChangedOperation.java index cd52d7ec1a..35d4fece4f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/PlanChangedOperation.java +++ b/src/generated/java/com/github/copilot/generated/PlanChangedOperation.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java b/src/generated/java/com/github/copilot/generated/ReasoningSummary.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java rename to src/generated/java/com/github/copilot/generated/ReasoningSummary.java index 98897bbc92..a2b6d3e02d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ReasoningSummary.java +++ b/src/generated/java/com/github/copilot/generated/ReasoningSummary.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java b/src/generated/java/com/github/copilot/generated/SamplingCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/SamplingCompletedEvent.java index 2c6b264aa9..0cf0e9daa2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SamplingCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SamplingCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java b/src/generated/java/com/github/copilot/generated/SamplingRequestedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/SamplingRequestedEvent.java index 2be3cfc491..1982f552cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SamplingRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SamplingRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionBackgroundTasksChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionBackgroundTasksChangedEvent.java index 062954dfbf..2a712ae49a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionBackgroundTasksChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionBackgroundTasksChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java b/src/generated/java/com/github/copilot/generated/SessionCompactionCompleteEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java rename to src/generated/java/com/github/copilot/generated/SessionCompactionCompleteEvent.java index 3c1252003d..a1e418d9c7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionCompleteEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionCompactionCompleteEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java b/src/generated/java/com/github/copilot/generated/SessionCompactionStartEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java rename to src/generated/java/com/github/copilot/generated/SessionCompactionStartEvent.java index 051f83f4cf..90fcd76b62 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionCompactionStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionCompactionStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionContextChangedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionContextChangedEvent.java index 6cc775d528..1fc5ef0eaf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionContextChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionContextChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java b/src/generated/java/com/github/copilot/generated/SessionCustomAgentsUpdatedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionCustomAgentsUpdatedEvent.java index ec10ed9c93..9ceed8c658 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomAgentsUpdatedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionCustomAgentsUpdatedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java b/src/generated/java/com/github/copilot/generated/SessionCustomNotificationEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java rename to src/generated/java/com/github/copilot/generated/SessionCustomNotificationEvent.java index 3078895b7a..499d143d4c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionCustomNotificationEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionCustomNotificationEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java b/src/generated/java/com/github/copilot/generated/SessionErrorEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java rename to src/generated/java/com/github/copilot/generated/SessionErrorEvent.java index 48ae04ade0..c644adcef8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionErrorEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionErrorEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java b/src/generated/java/com/github/copilot/generated/SessionEvent.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java rename to src/generated/java/com/github/copilot/generated/SessionEvent.java index 2181be1972..e27096264c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java b/src/generated/java/com/github/copilot/generated/SessionExtensionsLoadedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionExtensionsLoadedEvent.java index a1b9b8fcef..0165be5d29 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionExtensionsLoadedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionExtensionsLoadedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java b/src/generated/java/com/github/copilot/generated/SessionHandoffEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java rename to src/generated/java/com/github/copilot/generated/SessionHandoffEvent.java index 11599defae..7edba44c09 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionHandoffEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionHandoffEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java b/src/generated/java/com/github/copilot/generated/SessionIdleEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java rename to src/generated/java/com/github/copilot/generated/SessionIdleEvent.java index cdb38a3444..dc7136c20b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionIdleEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionIdleEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java b/src/generated/java/com/github/copilot/generated/SessionInfoEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java rename to src/generated/java/com/github/copilot/generated/SessionInfoEvent.java index c0613dfa20..2d9ac36905 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionInfoEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionInfoEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionMcpServerStatusChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionMcpServerStatusChangedEvent.java index 27cf4d9cc6..345e9ab2e8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServerStatusChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionMcpServerStatusChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java b/src/generated/java/com/github/copilot/generated/SessionMcpServersLoadedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionMcpServersLoadedEvent.java index 0a0b7bc50b..d978755131 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionMcpServersLoadedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionMcpServersLoadedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionMode.java b/src/generated/java/com/github/copilot/generated/SessionMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/SessionMode.java rename to src/generated/java/com/github/copilot/generated/SessionMode.java index f6359c0df9..ba579b306a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionMode.java +++ b/src/generated/java/com/github/copilot/generated/SessionMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionModeChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionModeChangedEvent.java index c997f9850d..28fb3e9e47 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionModeChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionModeChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java b/src/generated/java/com/github/copilot/generated/SessionModelChangeEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java rename to src/generated/java/com/github/copilot/generated/SessionModelChangeEvent.java index 8225fc78f9..0c408e0b31 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionModelChangeEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionModelChangeEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionPlanChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionPlanChangedEvent.java index 266ec307dc..cf9f4706d0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionPlanChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionPlanChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionRemoteSteerableChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionRemoteSteerableChangedEvent.java index 5ba9423155..adcc3aeb7b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionRemoteSteerableChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionRemoteSteerableChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java b/src/generated/java/com/github/copilot/generated/SessionResumeEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java rename to src/generated/java/com/github/copilot/generated/SessionResumeEvent.java index a5983fc2af..e27cc2045a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionResumeEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionResumeEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java b/src/generated/java/com/github/copilot/generated/SessionScheduleCancelledEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java rename to src/generated/java/com/github/copilot/generated/SessionScheduleCancelledEvent.java index 2c480a7575..51aba5d4c9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCancelledEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionScheduleCancelledEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java b/src/generated/java/com/github/copilot/generated/SessionScheduleCreatedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionScheduleCreatedEvent.java index eb051a0142..2a9cbdeb45 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionScheduleCreatedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionScheduleCreatedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java b/src/generated/java/com/github/copilot/generated/SessionShutdownEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java rename to src/generated/java/com/github/copilot/generated/SessionShutdownEvent.java index e9d3c44323..03ad8e0275 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionShutdownEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionShutdownEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java b/src/generated/java/com/github/copilot/generated/SessionSkillsLoadedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionSkillsLoadedEvent.java index c429125bf8..f041184355 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionSkillsLoadedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionSkillsLoadedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java b/src/generated/java/com/github/copilot/generated/SessionSnapshotRewindEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java rename to src/generated/java/com/github/copilot/generated/SessionSnapshotRewindEvent.java index b121fdff3a..9c7e8765bb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionSnapshotRewindEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionSnapshotRewindEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java b/src/generated/java/com/github/copilot/generated/SessionStartEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java rename to src/generated/java/com/github/copilot/generated/SessionStartEvent.java index 0143908f5f..0bb4b800fc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java b/src/generated/java/com/github/copilot/generated/SessionTaskCompleteEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java rename to src/generated/java/com/github/copilot/generated/SessionTaskCompleteEvent.java index f114ff82b3..097f59c97c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionTaskCompleteEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionTaskCompleteEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionTitleChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionTitleChangedEvent.java index 4d6086bf3e..e835e8ae52 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionTitleChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionTitleChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java b/src/generated/java/com/github/copilot/generated/SessionToolsUpdatedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionToolsUpdatedEvent.java index 0cb8614c7a..1d80e5b608 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionToolsUpdatedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionToolsUpdatedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java b/src/generated/java/com/github/copilot/generated/SessionTruncationEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java rename to src/generated/java/com/github/copilot/generated/SessionTruncationEvent.java index 60e7134e69..0a96601b6f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionTruncationEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionTruncationEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java b/src/generated/java/com/github/copilot/generated/SessionUsageInfoEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java rename to src/generated/java/com/github/copilot/generated/SessionUsageInfoEvent.java index 84d73703a5..70ecfe01a5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionUsageInfoEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionUsageInfoEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java b/src/generated/java/com/github/copilot/generated/SessionWarningEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java rename to src/generated/java/com/github/copilot/generated/SessionWarningEvent.java index fc0a0778e6..42b2eb8df9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionWarningEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionWarningEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java b/src/generated/java/com/github/copilot/generated/SessionWorkspaceFileChangedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java rename to src/generated/java/com/github/copilot/generated/SessionWorkspaceFileChangedEvent.java index ba9032664d..85447d567f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SessionWorkspaceFileChangedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SessionWorkspaceFileChangedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownCodeChanges.java b/src/generated/java/com/github/copilot/generated/ShutdownCodeChanges.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownCodeChanges.java rename to src/generated/java/com/github/copilot/generated/ShutdownCodeChanges.java index 9512573bdb..1ca80ad715 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownCodeChanges.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownCodeChanges.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java b/src/generated/java/com/github/copilot/generated/ShutdownModelMetric.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java rename to src/generated/java/com/github/copilot/generated/ShutdownModelMetric.java index bc7d41d8b3..b7eb37fd90 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetric.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownModelMetric.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricRequests.java b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricRequests.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricRequests.java rename to src/generated/java/com/github/copilot/generated/ShutdownModelMetricRequests.java index 901d2a3e73..ebc58271ee 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricRequests.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricRequests.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricTokenDetail.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java rename to src/generated/java/com/github/copilot/generated/ShutdownModelMetricTokenDetail.java index f179898a3d..fe18de6c69 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricUsage.java b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricUsage.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricUsage.java rename to src/generated/java/com/github/copilot/generated/ShutdownModelMetricUsage.java index a2301664bd..09a61920db 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownModelMetricUsage.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownModelMetricUsage.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java b/src/generated/java/com/github/copilot/generated/ShutdownTokenDetail.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java rename to src/generated/java/com/github/copilot/generated/ShutdownTokenDetail.java index 856e4d2f68..75db095c5f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ShutdownType.java b/src/generated/java/com/github/copilot/generated/ShutdownType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/ShutdownType.java rename to src/generated/java/com/github/copilot/generated/ShutdownType.java index fbc627df8f..288d0835f5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ShutdownType.java +++ b/src/generated/java/com/github/copilot/generated/ShutdownType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java b/src/generated/java/com/github/copilot/generated/SkillInvokedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java rename to src/generated/java/com/github/copilot/generated/SkillInvokedEvent.java index 6aa2385443..5be080a643 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SkillInvokedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SkillInvokedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillSource.java b/src/generated/java/com/github/copilot/generated/SkillSource.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SkillSource.java rename to src/generated/java/com/github/copilot/generated/SkillSource.java index 9951c1da93..b681faaae8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SkillSource.java +++ b/src/generated/java/com/github/copilot/generated/SkillSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java b/src/generated/java/com/github/copilot/generated/SkillsLoadedSkill.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java rename to src/generated/java/com/github/copilot/generated/SkillsLoadedSkill.java index 21f0dc0f45..07ce97825e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SkillsLoadedSkill.java +++ b/src/generated/java/com/github/copilot/generated/SkillsLoadedSkill.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java b/src/generated/java/com/github/copilot/generated/SubagentCompletedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/SubagentCompletedEvent.java index 45bdade9a9..98924809fa 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SubagentCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SubagentCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java b/src/generated/java/com/github/copilot/generated/SubagentDeselectedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java rename to src/generated/java/com/github/copilot/generated/SubagentDeselectedEvent.java index 391df6d49a..2274ba66e0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SubagentDeselectedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SubagentDeselectedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java b/src/generated/java/com/github/copilot/generated/SubagentFailedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java rename to src/generated/java/com/github/copilot/generated/SubagentFailedEvent.java index 3437e93baa..9264b5b0ee 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SubagentFailedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SubagentFailedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java b/src/generated/java/com/github/copilot/generated/SubagentSelectedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java rename to src/generated/java/com/github/copilot/generated/SubagentSelectedEvent.java index b342e4230c..7eb82019b1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SubagentSelectedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SubagentSelectedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java b/src/generated/java/com/github/copilot/generated/SubagentStartedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java rename to src/generated/java/com/github/copilot/generated/SubagentStartedEvent.java index 737d773f12..647bc824d0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SubagentStartedEvent.java +++ b/src/generated/java/com/github/copilot/generated/SubagentStartedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java b/src/generated/java/com/github/copilot/generated/SystemMessageEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java rename to src/generated/java/com/github/copilot/generated/SystemMessageEvent.java index 82976c0044..09d39a1992 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageEvent.java +++ b/src/generated/java/com/github/copilot/generated/SystemMessageEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageMetadata.java b/src/generated/java/com/github/copilot/generated/SystemMessageMetadata.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/SystemMessageMetadata.java rename to src/generated/java/com/github/copilot/generated/SystemMessageMetadata.java index 2b054dc943..f7f5fcbf24 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageMetadata.java +++ b/src/generated/java/com/github/copilot/generated/SystemMessageMetadata.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageRole.java b/src/generated/java/com/github/copilot/generated/SystemMessageRole.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/SystemMessageRole.java rename to src/generated/java/com/github/copilot/generated/SystemMessageRole.java index 921b69ec06..3ccd8c31d6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SystemMessageRole.java +++ b/src/generated/java/com/github/copilot/generated/SystemMessageRole.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java b/src/generated/java/com/github/copilot/generated/SystemNotificationEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java rename to src/generated/java/com/github/copilot/generated/SystemNotificationEvent.java index ba11910e03..5a8a0fdfbc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/SystemNotificationEvent.java +++ b/src/generated/java/com/github/copilot/generated/SystemNotificationEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteError.java b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteError.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteError.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionCompleteError.java index dbdc99ba7e..ac4c7d843d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteError.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteError.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionCompleteEvent.java index 8d1c1c5c25..36284b4721 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteEvent.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteResult.java b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteResult.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionCompleteResult.java index 8f2830541f..4792ec8da0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionCompleteResult.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionCompleteResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java b/src/generated/java/com/github/copilot/generated/ToolExecutionPartialResultEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionPartialResultEvent.java index e548cc1b03..9c43aa2ecc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionPartialResultEvent.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionPartialResultEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java b/src/generated/java/com/github/copilot/generated/ToolExecutionProgressEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionProgressEvent.java index d2b20312a3..f3a7c1158a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionProgressEvent.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionProgressEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java b/src/generated/java/com/github/copilot/generated/ToolExecutionStartEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java rename to src/generated/java/com/github/copilot/generated/ToolExecutionStartEvent.java index a98f7dec3d..782f185f76 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolExecutionStartEvent.java +++ b/src/generated/java/com/github/copilot/generated/ToolExecutionStartEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java b/src/generated/java/com/github/copilot/generated/ToolUserRequestedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/ToolUserRequestedEvent.java index ffd69535dd..1b4d519a99 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/ToolUserRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/ToolUserRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/UnknownSessionEvent.java b/src/generated/java/com/github/copilot/generated/UnknownSessionEvent.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/UnknownSessionEvent.java rename to src/generated/java/com/github/copilot/generated/UnknownSessionEvent.java index cf56b4b4f6..8f1257cf9c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/UnknownSessionEvent.java +++ b/src/generated/java/com/github/copilot/generated/UnknownSessionEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java b/src/generated/java/com/github/copilot/generated/UserInputCompletedEvent.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java rename to src/generated/java/com/github/copilot/generated/UserInputCompletedEvent.java index 66883aa629..7750c9e702 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/UserInputCompletedEvent.java +++ b/src/generated/java/com/github/copilot/generated/UserInputCompletedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java b/src/generated/java/com/github/copilot/generated/UserInputRequestedEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java rename to src/generated/java/com/github/copilot/generated/UserInputRequestedEvent.java index bb903191b3..e7ddb28592 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/UserInputRequestedEvent.java +++ b/src/generated/java/com/github/copilot/generated/UserInputRequestedEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserMessageAgentMode.java b/src/generated/java/com/github/copilot/generated/UserMessageAgentMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/UserMessageAgentMode.java rename to src/generated/java/com/github/copilot/generated/UserMessageAgentMode.java index 6c1710602d..f6e7c60d7f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/UserMessageAgentMode.java +++ b/src/generated/java/com/github/copilot/generated/UserMessageAgentMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java b/src/generated/java/com/github/copilot/generated/UserMessageEvent.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java rename to src/generated/java/com/github/copilot/generated/UserMessageEvent.java index 0e0de5dd2e..3e8e7520fb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/UserMessageEvent.java +++ b/src/generated/java/com/github/copilot/generated/UserMessageEvent.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContext.java b/src/generated/java/com/github/copilot/generated/WorkingDirectoryContext.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContext.java rename to src/generated/java/com/github/copilot/generated/WorkingDirectoryContext.java index b023859e2f..813cd5e02f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContext.java +++ b/src/generated/java/com/github/copilot/generated/WorkingDirectoryContext.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContextHostType.java b/src/generated/java/com/github/copilot/generated/WorkingDirectoryContextHostType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContextHostType.java rename to src/generated/java/com/github/copilot/generated/WorkingDirectoryContextHostType.java index 4786b8bc0c..c87237a8de 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/WorkingDirectoryContextHostType.java +++ b/src/generated/java/com/github/copilot/generated/WorkingDirectoryContextHostType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/WorkspaceFileChangedOperation.java b/src/generated/java/com/github/copilot/generated/WorkspaceFileChangedOperation.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/WorkspaceFileChangedOperation.java rename to src/generated/java/com/github/copilot/generated/WorkspaceFileChangedOperation.java index 7e21ec5484..a6347ed77c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/WorkspaceFileChangedOperation.java +++ b/src/generated/java/com/github/copilot/generated/WorkspaceFileChangedOperation.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: session-events.schema.json -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AbortReason.java b/src/generated/java/com/github/copilot/generated/rpc/AbortReason.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AbortReason.java rename to src/generated/java/com/github/copilot/generated/rpc/AbortReason.java index 0d0302fa4a..a486400778 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AbortReason.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AbortReason.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java b/src/generated/java/com/github/copilot/generated/rpc/AccountGetQuotaResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java rename to src/generated/java/com/github/copilot/generated/rpc/AccountGetQuotaResult.java index 4685196234..257a087565 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountGetQuotaResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AccountGetQuotaResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java b/src/generated/java/com/github/copilot/generated/rpc/AccountQuotaSnapshot.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java rename to src/generated/java/com/github/copilot/generated/rpc/AccountQuotaSnapshot.java index a13f011958..88e7ba9c64 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AccountQuotaSnapshot.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AccountQuotaSnapshot.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java b/src/generated/java/com/github/copilot/generated/rpc/AgentInfo.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java rename to src/generated/java/com/github/copilot/generated/rpc/AgentInfo.java index df2a246225..ce80893730 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfo.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AgentInfo.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfoSource.java b/src/generated/java/com/github/copilot/generated/rpc/AgentInfoSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfoSource.java rename to src/generated/java/com/github/copilot/generated/rpc/AgentInfoSource.java index 699df17877..6f8afe71e8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AgentInfoSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AgentInfoSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/AuthInfoType.java b/src/generated/java/com/github/copilot/generated/rpc/AuthInfoType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/AuthInfoType.java rename to src/generated/java/com/github/copilot/generated/rpc/AuthInfoType.java index 89c5db85ce..1fb4b43ba4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/AuthInfoType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/AuthInfoType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java b/src/generated/java/com/github/copilot/generated/rpc/ConnectParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java rename to src/generated/java/com/github/copilot/generated/rpc/ConnectParams.java index b22245ed93..590dd01479 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ConnectParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java b/src/generated/java/com/github/copilot/generated/rpc/ConnectResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java rename to src/generated/java/com/github/copilot/generated/rpc/ConnectResult.java index f51b1a9c39..d24d120e12 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ConnectResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadata.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java rename to src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadata.java index 006b750c17..9e3a4a57f2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadata.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadata.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataKind.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java rename to src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataKind.java index 14e4e4b22a..8d22c1dd4d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataKind.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataKind.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataRepository.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java rename to src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataRepository.java index 562dfba8ab..7daa17bd16 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ConnectedRemoteSessionMetadataRepository.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ConnectedRemoteSessionMetadataRepository.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServer.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java rename to src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServer.java index 2cfe49334d..73095ef61d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServer.java +++ b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServer.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerSource.java b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerSource.java rename to src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerSource.java index 6bc451b349..89d7322fb7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java rename to src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerType.java index 0d4293d9a9..8e6c1417a3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/DiscoveredMcpServerType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/DiscoveredMcpServerType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/EventsAgentScope.java b/src/generated/java/com/github/copilot/generated/rpc/EventsAgentScope.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/EventsAgentScope.java rename to src/generated/java/com/github/copilot/generated/rpc/EventsAgentScope.java index e748df0d30..5e85b19269 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/EventsAgentScope.java +++ b/src/generated/java/com/github/copilot/generated/rpc/EventsAgentScope.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/EventsCursorStatus.java b/src/generated/java/com/github/copilot/generated/rpc/EventsCursorStatus.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/EventsCursorStatus.java rename to src/generated/java/com/github/copilot/generated/rpc/EventsCursorStatus.java index eb68386adc..31c1fcab01 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/EventsCursorStatus.java +++ b/src/generated/java/com/github/copilot/generated/rpc/EventsCursorStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java b/src/generated/java/com/github/copilot/generated/rpc/Extension.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java rename to src/generated/java/com/github/copilot/generated/rpc/Extension.java index 7784fa5a44..13bb851b49 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Extension.java +++ b/src/generated/java/com/github/copilot/generated/rpc/Extension.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionSource.java b/src/generated/java/com/github/copilot/generated/rpc/ExtensionSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionSource.java rename to src/generated/java/com/github/copilot/generated/rpc/ExtensionSource.java index 2ec3da3973..aeb7a144f6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ExtensionSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionStatus.java b/src/generated/java/com/github/copilot/generated/rpc/ExtensionStatus.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionStatus.java rename to src/generated/java/com/github/copilot/generated/rpc/ExtensionStatus.java index 241a5cd60c..34592663f1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ExtensionStatus.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ExtensionStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/HistoryCompactContextWindow.java b/src/generated/java/com/github/copilot/generated/rpc/HistoryCompactContextWindow.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/HistoryCompactContextWindow.java rename to src/generated/java/com/github/copilot/generated/rpc/HistoryCompactContextWindow.java index 4ac1a8fa9e..6c223f029d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/HistoryCompactContextWindow.java +++ b/src/generated/java/com/github/copilot/generated/rpc/HistoryCompactContextWindow.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstalledPlugin.java b/src/generated/java/com/github/copilot/generated/rpc/InstalledPlugin.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/InstalledPlugin.java rename to src/generated/java/com/github/copilot/generated/rpc/InstalledPlugin.java index 9f48489da7..c274dfb1a2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstalledPlugin.java +++ b/src/generated/java/com/github/copilot/generated/rpc/InstalledPlugin.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSources.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java rename to src/generated/java/com/github/copilot/generated/rpc/InstructionsSources.java index 0cc669e226..9e6a458d40 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSources.java +++ b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSources.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesLocation.java b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesLocation.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesLocation.java rename to src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesLocation.java index 943591213a..23db5a3671 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesLocation.java +++ b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesLocation.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesType.java b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesType.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesType.java rename to src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesType.java index b451f40c60..6fed6c4bf8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/InstructionsSourcesType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/InstructionsSourcesType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigAddParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigAddParams.java index a865e900e4..64ffd39517 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigAddParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigAddParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigDisableParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigDisableParams.java index 49664f8e86..e71c12f93c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigDisableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigDisableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigEnableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigEnableParams.java index 4bf6284655..952d6fb685 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigEnableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigEnableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigListResult.java index f2be8641a9..4d66442281 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigRemoveParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigRemoveParams.java index 9e87063c4b..840b72abf7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigRemoveParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigRemoveParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpConfigUpdateParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpConfigUpdateParams.java index 8c2df60725..f2c2b0faaf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpConfigUpdateParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpConfigUpdateParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java b/src/generated/java/com/github/copilot/generated/rpc/McpDiscoverParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java rename to src/generated/java/com/github/copilot/generated/rpc/McpDiscoverParams.java index 29b3860520..ed7b32bb7d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpDiscoverParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java b/src/generated/java/com/github/copilot/generated/rpc/McpDiscoverResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java rename to src/generated/java/com/github/copilot/generated/rpc/McpDiscoverResult.java index 074aedc613..b000b16ffc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpDiscoverResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpDiscoverResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingRequest.java b/src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingRequest.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingRequest.java rename to src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingRequest.java index 9dcf307eae..4fd862ebd0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingRequest.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingRequest.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingResult.java b/src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingResult.java index 6524610d03..18a838d30c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpExecuteSamplingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpExecuteSamplingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpSamplingExecutionAction.java b/src/generated/java/com/github/copilot/generated/rpc/McpSamplingExecutionAction.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpSamplingExecutionAction.java rename to src/generated/java/com/github/copilot/generated/rpc/McpSamplingExecutionAction.java index a00f41e824..d0a3802f7a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpSamplingExecutionAction.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpSamplingExecutionAction.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java b/src/generated/java/com/github/copilot/generated/rpc/McpServer.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java rename to src/generated/java/com/github/copilot/generated/rpc/McpServer.java index e8b71f7e8f..7da05f6591 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServer.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpServer.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerSource.java b/src/generated/java/com/github/copilot/generated/rpc/McpServerSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerSource.java rename to src/generated/java/com/github/copilot/generated/rpc/McpServerSource.java index 3ffe4b7978..f709df96dd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpServerSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerStatus.java b/src/generated/java/com/github/copilot/generated/rpc/McpServerStatus.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerStatus.java rename to src/generated/java/com/github/copilot/generated/rpc/McpServerStatus.java index 06bec4f307..db463a7377 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpServerStatus.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpServerStatus.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpSetEnvValueModeDetails.java b/src/generated/java/com/github/copilot/generated/rpc/McpSetEnvValueModeDetails.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/McpSetEnvValueModeDetails.java rename to src/generated/java/com/github/copilot/generated/rpc/McpSetEnvValueModeDetails.java index d62e10c30d..dda0c02ca3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/McpSetEnvValueModeDetails.java +++ b/src/generated/java/com/github/copilot/generated/rpc/McpSetEnvValueModeDetails.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotCurrentMode.java b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotCurrentMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotCurrentMode.java rename to src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotCurrentMode.java index 5d55d1c4b8..2d6c7eb574 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotCurrentMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotCurrentMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadata.java b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadata.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadata.java rename to src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadata.java index b97a5f12c9..88b6dede32 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadata.java +++ b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadata.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java rename to src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java index fb6c62e8ae..cc0bb65329 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java +++ b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataRepository.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java rename to src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java index 387d39234b..da019b5f7c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/MetadataSnapshotRemoteMetadataTaskType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java b/src/generated/java/com/github/copilot/generated/rpc/Model.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java rename to src/generated/java/com/github/copilot/generated/rpc/Model.java index 1a808911ca..0904519165 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Model.java +++ b/src/generated/java/com/github/copilot/generated/rpc/Model.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java b/src/generated/java/com/github/copilot/generated/rpc/ModelBilling.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelBilling.java index 9e634bb79a..94a8188f16 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBilling.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelBilling.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java b/src/generated/java/com/github/copilot/generated/rpc/ModelBillingTokenPrices.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelBillingTokenPrices.java index 34005daf1b..7477b85264 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelBillingTokenPrices.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelBillingTokenPrices.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilities.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilities.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilities.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilities.java index 4c6b5e3af5..168a72099b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilities.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilities.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimits.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimits.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimits.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimits.java index 8adf6812b2..694e2a2ea5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimits.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimits.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimitsVision.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimitsVision.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimitsVision.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimitsVision.java index cbfc7c3b89..d7f8e71544 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesLimitsVision.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesLimitsVision.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverride.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverride.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverride.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverride.java index 1ec67824ec..1433a7b5e6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverride.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverride.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimits.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimits.java index f5b0b4e5e8..c0de367f33 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimits.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimits.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java index 0d53e85321..86339787d3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideLimitsVision.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideSupports.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideSupports.java index 23304c82d8..ec1da750d8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesOverrideSupports.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesOverrideSupports.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesSupports.java b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesSupports.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesSupports.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesSupports.java index f898f130f5..91a98b423d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelCapabilitiesSupports.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelCapabilitiesSupports.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java b/src/generated/java/com/github/copilot/generated/rpc/ModelPickerCategory.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelPickerCategory.java index ba0bdddfd1..ab36abfd9f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerCategory.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelPickerCategory.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java b/src/generated/java/com/github/copilot/generated/rpc/ModelPickerPriceCategory.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelPickerPriceCategory.java index cf722e4968..8f70503957 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPickerPriceCategory.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelPickerPriceCategory.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java b/src/generated/java/com/github/copilot/generated/rpc/ModelPolicy.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelPolicy.java index a6cdeb5d56..f37fb85d07 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicy.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelPolicy.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java b/src/generated/java/com/github/copilot/generated/rpc/ModelPolicyState.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelPolicyState.java index 1673080d0d..525d57ca6e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelPolicyState.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelPolicyState.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/ModelsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/ModelsListResult.java index db9dd791a2..0ae1acfcec 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ModelsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ModelsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/OptionsUpdateEnvValueMode.java b/src/generated/java/com/github/copilot/generated/rpc/OptionsUpdateEnvValueMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/OptionsUpdateEnvValueMode.java rename to src/generated/java/com/github/copilot/generated/rpc/OptionsUpdateEnvValueMode.java index f75daae610..7be82f9d5b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/OptionsUpdateEnvValueMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/OptionsUpdateEnvValueMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PendingPermissionRequest.java b/src/generated/java/com/github/copilot/generated/rpc/PendingPermissionRequest.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PendingPermissionRequest.java rename to src/generated/java/com/github/copilot/generated/rpc/PendingPermissionRequest.java index f4d84c730d..de370ca5d6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PendingPermissionRequest.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PendingPermissionRequest.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionLocationType.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionLocationType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionLocationType.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionLocationType.java index c3b368cacb..1b00c5bf55 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionLocationType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionLocationType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionPathsConfig.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionPathsConfig.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionPathsConfig.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionPathsConfig.java index 1ac49881bb..29aef6c66f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionPathsConfig.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionPathsConfig.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRule.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionRule.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRule.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionRule.java index ad8a57d8f6..7980e0e832 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRule.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionRule.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRulesSet.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionRulesSet.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRulesSet.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionRulesSet.java index c29f11ba46..7cc00563f5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionRulesSet.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionRulesSet.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionUrlsConfig.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionUrlsConfig.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionUrlsConfig.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionUrlsConfig.java index 46ff5501fb..728e7b40dd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionUrlsConfig.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionUrlsConfig.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java index 2b31068e02..61108c16bb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicy.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java index c41050f1b8..c6c7f649a9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRule.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java index 372e341da2..a5d4a45f32 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyRuleSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java index 1c378ec628..f006888b79 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsConfigureAdditionalContentExclusionPolicyScope.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsModifyRulesScope.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsModifyRulesScope.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsModifyRulesScope.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsModifyRulesScope.java index 53dc333915..f574befcfd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsModifyRulesScope.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsModifyRulesScope.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsSetApproveAllSource.java b/src/generated/java/com/github/copilot/generated/rpc/PermissionsSetApproveAllSource.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsSetApproveAllSource.java rename to src/generated/java/com/github/copilot/generated/rpc/PermissionsSetApproveAllSource.java index 9e88acc593..b86b09dfa3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PermissionsSetApproveAllSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PermissionsSetApproveAllSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java b/src/generated/java/com/github/copilot/generated/rpc/PingParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java rename to src/generated/java/com/github/copilot/generated/rpc/PingParams.java index 564478b175..2e00e6cac2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PingParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java b/src/generated/java/com/github/copilot/generated/rpc/PingResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/PingResult.java index b0ed087bd1..ded50ecbdd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/PingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/PingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java b/src/generated/java/com/github/copilot/generated/rpc/Plugin.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java rename to src/generated/java/com/github/copilot/generated/rpc/Plugin.java index 1b09c22cee..b10cd31cf7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Plugin.java +++ b/src/generated/java/com/github/copilot/generated/rpc/Plugin.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItems.java b/src/generated/java/com/github/copilot/generated/rpc/QueuePendingItems.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItems.java rename to src/generated/java/com/github/copilot/generated/rpc/QueuePendingItems.java index ccffaed7ed..bfbc87f463 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItems.java +++ b/src/generated/java/com/github/copilot/generated/rpc/QueuePendingItems.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItemsKind.java b/src/generated/java/com/github/copilot/generated/rpc/QueuePendingItemsKind.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItemsKind.java rename to src/generated/java/com/github/copilot/generated/rpc/QueuePendingItemsKind.java index 90f9e7f62c..7cf13a2570 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/QueuePendingItemsKind.java +++ b/src/generated/java/com/github/copilot/generated/rpc/QueuePendingItemsKind.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java b/src/generated/java/com/github/copilot/generated/rpc/ReasoningSummary.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java rename to src/generated/java/com/github/copilot/generated/rpc/ReasoningSummary.java index 5e534e214c..3b95a9e2b2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ReasoningSummary.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ReasoningSummary.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java b/src/generated/java/com/github/copilot/generated/rpc/RemoteSessionMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java rename to src/generated/java/com/github/copilot/generated/rpc/RemoteSessionMode.java index 93238eef44..68c3e66170 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/RemoteSessionMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/RemoteSessionMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/RpcCaller.java b/src/generated/java/com/github/copilot/generated/rpc/RpcCaller.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/RpcCaller.java rename to src/generated/java/com/github/copilot/generated/rpc/RpcCaller.java index d15513ce0b..67e7571a16 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/RpcCaller.java +++ b/src/generated/java/com/github/copilot/generated/rpc/RpcCaller.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/RpcMapper.java b/src/generated/java/com/github/copilot/generated/rpc/RpcMapper.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/RpcMapper.java rename to src/generated/java/com/github/copilot/generated/rpc/RpcMapper.java index 87d4328209..0d2a4e8b73 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/RpcMapper.java +++ b/src/generated/java/com/github/copilot/generated/rpc/RpcMapper.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ScheduleEntry.java b/src/generated/java/com/github/copilot/generated/rpc/ScheduleEntry.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ScheduleEntry.java rename to src/generated/java/com/github/copilot/generated/rpc/ScheduleEntry.java index 8038341a8e..fb41975bd1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ScheduleEntry.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ScheduleEntry.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesParams.java index e8d1b5542e..3643773114 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesResult.java index 7762377ff1..f6261b638c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SecretsAddFilterValuesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SecretsAddFilterValuesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SendAgentMode.java b/src/generated/java/com/github/copilot/generated/rpc/SendAgentMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SendAgentMode.java rename to src/generated/java/com/github/copilot/generated/rpc/SendAgentMode.java index 7dee184c9b..641a1ac474 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SendAgentMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SendAgentMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SendMode.java b/src/generated/java/com/github/copilot/generated/rpc/SendMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SendMode.java rename to src/generated/java/com/github/copilot/generated/rpc/SendMode.java index c424caabc3..013f595971 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SendMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SendMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerAccountApi.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerAccountApi.java index 583e110851..d3bd444608 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerAccountApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerAccountApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerMcpApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerMcpApi.java index db70171c97..6ff26e80dd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerMcpApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerMcpConfigApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerMcpConfigApi.java index cec231c61c..6f0a2105d9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerMcpConfigApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerMcpConfigApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerModelsApi.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerModelsApi.java index e062c6f0a4..c0515a06f4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerModelsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerModelsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java b/src/generated/java/com/github/copilot/generated/rpc/ServerRpc.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerRpc.java index 436fcc6968..707e998d0e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerRpc.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerRpc.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSecretsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSecretsApi.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSecretsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSecretsApi.java index af8f6c3c5d..800722c858 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSecretsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSecretsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSessionFsApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSessionFsApi.java index 25aefcf252..93022becf2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionFsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSessionFsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSessionsApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSessionsApi.java index 72a13699c2..c4b25a6498 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSessionsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSessionsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSkill.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSkill.java index 92f9e0ccca..ba02ea28d7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkill.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSkill.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSkillsApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSkillsApi.java index 8884edc979..6404ab6fda 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSkillsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerSkillsConfigApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerSkillsConfigApi.java index a0236fd333..e552227ccb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerSkillsConfigApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerSkillsConfigApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java b/src/generated/java/com/github/copilot/generated/rpc/ServerToolsApi.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/ServerToolsApi.java index 81bbaece6d..10e64747ef 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ServerToolsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ServerToolsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAbortParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAbortParams.java index 8f7c47f7c3..4738643b86 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAbortParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAbortResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAbortResult.java index 4a8d42c719..9d75b5db5c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAbortResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAbortResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentApi.java index ab91fe3ae7..c992d36e33 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectParams.java index d412c83cfd..1b10947133 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectResult.java index 81e2e3ebb9..679a3fb83d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentDeselectResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentDeselectResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentParams.java index 24bf532ff5..59774974f5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentResult.java index fec2bc94f2..d4dfe25b49 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentGetCurrentResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentGetCurrentResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentListParams.java index 6badf614c5..9763eb5c3e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentListResult.java index 9b618b248a..d7cdd11271 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadParams.java index 5b30c866a0..c3467c5e9e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadResult.java index d058293eac..47eec9eae5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentReloadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentReloadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectParams.java index 38532ace01..372d1d1f69 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectResult.java index ea19f56488..927352e2d8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAgentSelectResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAgentSelectResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAuthApi.java index 5b87bf3b3e..0f5729fe56 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusParams.java index 4a99886682..d57a3ccccc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusResult.java index 6e58fe6c7d..3480257cc9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthGetStatusResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthGetStatusResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsParams.java index 5e5e6b5028..0b3b7aa9d3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsResult.java index 5aef213a4f..ad53ee9192 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionAuthSetCredentialsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionAuthSetCredentialsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsApi.java index 7a142ecf99..b0bc291e69 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueParams.java index 6ca80d2511..f4ca14dfa5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueResult.java index e968e1df86..649f01ca49 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsEnqueueResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsEnqueueResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteParams.java index 1f1e73acbe..f88ac4c038 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteResult.java index a03b08c661..1b1c442990 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsExecuteResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsExecuteResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandParams.java index e036870e1b..9b9c12514c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandResult.java index 101714028c..9e3698702d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsHandlePendingCommandResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsHandlePendingCommandResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsInvokeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsInvokeParams.java index ec35a5bb30..21d92ebab2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsInvokeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsInvokeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListParams.java index a1fa2728b1..d60a147d85 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListResult.java index aae276f6cb..8d532352a6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java index 8eb5d2dbc0..22b89f3645 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java index 3cf5a6de3e..1cc3961391 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionCommandsRespondToQueuedCommandResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContext.java b/src/generated/java/com/github/copilot/generated/rpc/SessionContext.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContext.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionContext.java index 1a8c148bd4..50376a0f0a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContext.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionContext.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContextHostType.java b/src/generated/java/com/github/copilot/generated/rpc/SessionContextHostType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContextHostType.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionContextHostType.java index db0945e314..8eea0e7190 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionContextHostType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionContextHostType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogApi.java index 58351e99a6..eac102aef1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadParams.java index cad49d4525..a77e8a8711 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadResult.java index 725a767926..dcd138e7ba 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestParams.java index 3bddc69041..94f68bdf76 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestResult.java index e0a6bb5a5f..ac4da49d00 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogRegisterInterestResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogRegisterInterestResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestParams.java index c6bd4efb1e..1eea25f44f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestResult.java index 0ba6b149a2..39cf07afa1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogReleaseInterestResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogReleaseInterestResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailParams.java index 270af92dcb..3906d7e6e7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailResult.java index a966cd5913..1b29827d38 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionEventLogTailResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionEventLogTailResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsApi.java index cf7e6a5059..337ba15cc8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableParams.java index 896ee43c88..f4bf4d5b36 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableResult.java index 136e858fb9..ac057e5a27 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsDisableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsDisableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableParams.java index 45db74f495..5e00268af3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableResult.java index 1b7d328e05..82d9b9c6b8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsEnableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsEnableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListParams.java index b1c320f689..52f9c08f92 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListResult.java index ae3aa777f8..ba5ea94f11 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadParams.java index e192ededf7..ceaa990f15 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadResult.java index e4a1a22640..9d118b783d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionExtensionsReloadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionExtensionsReloadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFleetApi.java index 3c59b0c4ab..27023dc89b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartParams.java index 5e687cec50..5d5e2c88c5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartResult.java index e328b4ec21..c89f377d76 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFleetStartResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFleetStartResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsAppendFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsAppendFileParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsAppendFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsAppendFileParams.java index 84a1807ce1..a3db24a0d9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsAppendFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsAppendFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsError.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsError.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsError.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsError.java index a78aa53748..349114dfde 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsError.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsError.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsErrorCode.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsErrorCode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsErrorCode.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsErrorCode.java index 099ff1236b..4098d43abd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsErrorCode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsErrorCode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsParams.java index f5217f532a..29b5107986 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsResult.java index 6209fd6356..0068ae3a32 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsExistsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsExistsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsMkdirParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsMkdirParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsMkdirParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsMkdirParams.java index 80e0e95a22..c1ed1aec71 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsMkdirParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsMkdirParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileParams.java index 851c1ac88c..d040129cc4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileResult.java index c3abbde10e..c71e1a5143 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReadFileResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReadFileResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirParams.java index 1b18f9df57..00b865c334 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirResult.java index 053017d1ef..745118beb3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntry.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntry.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntry.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntry.java index 7cafa538e9..f4c755951d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntry.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntry.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntryType.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntryType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntryType.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntryType.java index 71640ec347..67e62372ed 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesEntryType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesEntryType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesParams.java index b092d20753..a6b80481d2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesResult.java index 13f1056224..3fb693c809 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsReaddirWithTypesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsReaddirWithTypesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRenameParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsRenameParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRenameParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsRenameParams.java index f1d758cba2..76dbc8cfb9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRenameParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsRenameParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRmParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsRmParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRmParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsRmParams.java index b73a9d6318..ed50649a30 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsRmParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsRmParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderCapabilities.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderCapabilities.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderCapabilities.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderCapabilities.java index 5701821259..7d6c0adb39 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderCapabilities.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderCapabilities.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderConventions.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderConventions.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderConventions.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderConventions.java index ac669a1891..abac4795f9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderConventions.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderConventions.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderParams.java index e03dcfcc82..d99a14862f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderResult.java index 621ed7d05e..6088729f56 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSetProviderResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSetProviderResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsParams.java index 47f2bf045c..1956f804ba 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsResult.java index 0cccf0cece..6c1328e9e9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteExistsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteExistsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryParams.java index 1f07d8cacf..e489bb1222 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryResult.java index edc1e9c832..ff14d3ec1b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryType.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryType.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryType.java index ef0143da28..a59bdd1f27 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsSqliteQueryType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsSqliteQueryType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsStatParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsStatParams.java index 410b168fd0..2e6ccfdeae 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsStatParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsStatResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsStatResult.java index 2e3b811d9c..56d883d106 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsStatResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsStatResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsWriteFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionFsWriteFileParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsWriteFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionFsWriteFileParams.java index ed08b2f7df..4f4e026361 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionFsWriteFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionFsWriteFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionParams.java index c08926c395..04749d2b67 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionResult.java index efefbd1a05..7767202d70 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryAbortManualCompactionResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryAbortManualCompactionResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryApi.java index 143250b0ce..91c7702f78 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java index faba738ed1..56adc34ae9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java index 22d9b926e5..c22fdd0928 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCancelBackgroundCompactionResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactParams.java index 30a3fd3933..cbb23e96fd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactResult.java index e7546b44cb..46a52f425b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryCompactResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryCompactResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffParams.java index 946b9232ff..816af2cd1b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffResult.java index d49b225d23..3723aae25d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistorySummarizeForHandoffResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistorySummarizeForHandoffResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateParams.java index a56ed6994b..70b1331e4f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateResult.java index 7905c66b9b..3c2a74ccbb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionHistoryTruncateResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionHistoryTruncateResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstalledPlugin.java b/src/generated/java/com/github/copilot/generated/rpc/SessionInstalledPlugin.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstalledPlugin.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionInstalledPlugin.java index 8ca95b8b30..5d14285586 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstalledPlugin.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionInstalledPlugin.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsApi.java index 5aec59dfd1..15f3fce68c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesParams.java index cc1e2fb3b2..f9b683147d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesResult.java index 10badb1767..4d62780dae 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionInstructionsGetSourcesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionInstructionsGetSourcesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogLevel.java b/src/generated/java/com/github/copilot/generated/rpc/SessionLogLevel.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogLevel.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionLogLevel.java index 7ec7361a74..e9ca23da2f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogLevel.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionLogLevel.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionLogParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionLogParams.java index 66e0d4c855..edd160f82f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionLogParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionLogResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionLogResult.java index 23d9e8d6ae..7d9d79d710 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLogResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionLogResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionLspApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionLspApi.java index 79aa000555..76678266c8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionLspApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspInitializeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionLspInitializeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspInitializeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionLspInitializeParams.java index 37c064aa7c..bd0387b88d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionLspInitializeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionLspInitializeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpApi.java index be2d22d4b2..4282a2334b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionParams.java index 191eeda984..c00459e4b7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionResult.java index 35147aed20..9495602f65 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpCancelSamplingExecutionResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpCancelSamplingExecutionResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableParams.java index a9d2b00600..adee20ceb6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableResult.java index 0565cf8d1d..834dc2cb75 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpDisableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpDisableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableParams.java index f7d19088af..53b23f9eea 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableResult.java index 43319c3a93..86b1a67163 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpEnableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpEnableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingParams.java index 19a9adffbb..b6f995971f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingResult.java index d22143c531..578cb10f2d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpExecuteSamplingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpExecuteSamplingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpListParams.java index fb04ed4a17..4ae5d6a2c2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpListResult.java index d61809d422..220f663b6a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthApi.java index c603af3d7e..68535ebc42 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginParams.java index 004cd3d62b..4fcca6618d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginResult.java index 9c557f6f5b..e3d9071f7e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpOauthLoginResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpOauthLoginResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadParams.java index 705e42b72b..6df56c453c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadResult.java index 80a2c4c265..3f0d970fcb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpReloadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpReloadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubParams.java index 5c7915d9f6..0213c76f53 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubResult.java index 1f13b31c4d..1845649bc1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpRemoveGitHubResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpRemoveGitHubResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeParams.java index 01efee3336..5a524cfb0c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeResult.java index 9e69732d29..300ef08e78 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMcpSetEnvValueModeResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMcpSetEnvValueModeResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadata.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadata.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadata.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadata.java index 6069f8ab4f..c1d3e75eb6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadata.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadata.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataApi.java index b0a82347a6..7bd7e66bbf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoParams.java index 94176d544a..4b6bccf7e3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoResult.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoResult.java index fe8e15f781..de9074e8c9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataContextInfoResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataContextInfoResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingParams.java index 5e86f186ae..329dbea100 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingResult.java index fb5d4e59b1..e496bb662e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataIsProcessingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataIsProcessingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensParams.java index 27824912c9..979f8808da 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensResult.java index c8d398a4d1..4aab3841a4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecomputeContextTokensResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecomputeContextTokensResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeParams.java index 24e1c79bae..6b42c822cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeResult.java index 08d780868f..41f252b20d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataRecordContextChangeResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataRecordContextChangeResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java index 436286f65b..507b0a49fa 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java index b1c0f5fb91..85ef81026b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSetWorkingDirectoryResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotParams.java index ffbad219e7..d3e94df435 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotResult.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotResult.java index 49002659e1..ec905f0782 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMetadataSnapshotResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMetadataSnapshotResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMode.java b/src/generated/java/com/github/copilot/generated/rpc/SessionMode.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMode.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionMode.java index d335fd7cd4..e12db36240 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionMode.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionMode.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModeApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModeApi.java index b28cd5d37b..e5201bd6a5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModeApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModeGetParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModeGetParams.java index c8f660f92c..c1a4936214 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModeGetParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModeGetResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModeGetResult.java index 595dff851b..b5123aebf7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeGetResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModeGetResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModeSetParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModeSetParams.java index 22618fe35d..b12bea9ff0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModeSetParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModeSetResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModeSetResult.java index f4609f6715..c796022723 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModeSetResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModeSetResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelApi.java index b2c112b662..eda751b3ee 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentParams.java index 1687e9fff5..abcf1c2ab3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentResult.java index 5afd229112..7bb2f84968 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelGetCurrentResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelGetCurrentResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortParams.java index da6bb18709..6135c2e0a5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortResult.java index 0ec6e239e6..2d6cbd0a6a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSetReasoningEffortResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSetReasoningEffortResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToParams.java index e06d3e68ab..c5c1cbbe02 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToResult.java index 6c4e7a39cd..8bf6f2c8e5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionModelSwitchToResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionModelSwitchToResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameApi.java index 73b6c6bc2e..e7e1be58ae 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameGetParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameGetParams.java index 941a19a89b..d3728d06d3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameGetParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameGetResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameGetResult.java index 349aa81a25..b3e4599674 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameGetResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameGetResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoParams.java index 4b6db1bde8..8c69e0d5d7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoResult.java index 134694a8c9..e84407d89c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetAutoResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetAutoResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionNameSetParams.java index 6ad1fcd37e..7fd348c368 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionNameSetParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionNameSetParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionOptionsApi.java index 8624c57e31..4e46d346ad 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateParams.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateParams.java index fa768dd7bd..081817f3a9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateResult.java index a20c64ab86..4e514944ca 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionOptionsUpdateResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionOptionsUpdateResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsApi.java index 082268d896..42d9479543 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureParams.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureParams.java index 494495fc52..0ae82cd21c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureResult.java index 7f9ce41502..267403f092 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsConfigureResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsConfigureResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java index 184087f22f..27544af717 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java index dbe09efc5d..d7181cd860 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustAddTrustedResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustApi.java index 5337a40f13..00191e5c4b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java index bacbe56496..f8d666a88f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java index 3f2e26a0d0..c969d324b7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsFolderTrustIsTrustedResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java index f8f10a8d1b..2f061ed0c7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java index a517e642f0..07bcc16e7d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsHandlePendingPermissionRequestResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java index 42429498d2..bb99721ab6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java index fae259c23b..0448517203 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsAddToolApprovalResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApi.java index 388bd49dfc..c40877b6b8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyParams.java index 7af5ef28fb..aa40ddb2a8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyResult.java index b2514d8afe..842226b325 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsApplyResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsApplyResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveParams.java index d6ba06fba3..2e4f5cf2fc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveResult.java index 3254bb2c6d..ff22dcafef 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsLocationsResolveResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsLocationsResolveResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesParams.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesParams.java index ca91f611e9..3243aea8b4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesResult.java index b4ed7786f9..6c5c83675d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsModifyRulesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsModifyRulesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownParams.java index 50129680ff..8c4b25c72a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownResult.java index 6f2a368f40..092d8abf8b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsNotifyPromptShownResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsNotifyPromptShownResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddParams.java index 5730b6b5e5..272408cce5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddResult.java index efb8fd5c4f..182c39b6f3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsAddResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsAddResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsApi.java index 38ad70c675..f4fc1a7709 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java index 71bd09a613..c9d43aeb21 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java index 6aadee0685..6e876bcca9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinAllowedDirectoriesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java index 699bf4cc81..c8fafd90cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java index 3d64be687d..3eaf870520 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsIsPathWithinWorkspaceResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListParams.java index 23fad022d3..43ae1f0404 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListResult.java index ab56c4a299..78d86e370e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java index 626ef57528..98a7ccfb21 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java index 34b8c403ee..7be2981321 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPathsUpdatePrimaryResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsParams.java index c7ec7f9462..4e3f24cb7f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsResult.java index b2b3c4ec1a..33769fa8bd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsPendingRequestsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsPendingRequestsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java index 1f125f14da..dd369bf43d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java index 81f71aea3b..2097ed0647 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsResetSessionApprovalsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllParams.java index c61bdcca0d..0517a5d86d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllResult.java index 50301af4a5..7504cac18f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetApproveAllResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetApproveAllResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredParams.java index e862dd76fe..e3c3e0e34b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredResult.java index 56f90afbc4..eaab9e3787 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsSetRequiredResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsSetRequiredResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsApi.java index 1f46c66dcc..71b97adff5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java index ed3c0bc6b3..6579489eb1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java index 41199db33c..beef183a71 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPermissionsUrlsSetUnrestrictedModeResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanApi.java index 1656211380..25ff6884f2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteParams.java index 5e7732fb83..d47bd774ea 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteResult.java index 6661099853..98cb199e6a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanDeleteResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanDeleteResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadParams.java index 2891852ea7..57949be2b5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadResult.java index 3b5c1634ad..65a1ba75f1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanReadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanReadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateParams.java index fea63cf01f..128a7b814f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateResult.java index aa6c64aaf7..3e17cfedae 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPlanUpdateResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPlanUpdateResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPluginsApi.java index 176310e118..e59e2b398f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListParams.java index f5923c0d22..7229b23a06 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListResult.java index c5acac58de..bdf3e6dd81 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionPluginsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionPluginsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueueApi.java index 19533541df..9c4a13b557 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueClearParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueClearParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueClearParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueueClearParams.java index 1ab26019e3..38d4404c76 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueClearParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueClearParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsParams.java index 6bc51f8075..a4e2b10c21 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsResult.java index 9f839fdc1a..0a8e6540e5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueuePendingItemsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueuePendingItemsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentParams.java index 1ca36be68c..26419bcea6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentResult.java index a92c93d5fe..ecd428322c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionQueueRemoveMostRecentResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionQueueRemoveMostRecentResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteApi.java index f5f0ec3cc9..3e4f2ce8c3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteDisableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteDisableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteDisableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteDisableParams.java index c2ebe21e87..a49197aa14 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteDisableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteDisableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableParams.java index b487353cbc..20c3db98a2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableResult.java index b098ebbef2..5b282f91bd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteEnableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteEnableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedParams.java index 8851fad7ab..13df7f676e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedResult.java index 857f373624..4d48e604d6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRemoteNotifySteerableChangedResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRemoteNotifySteerableChangedResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRpc.java b/src/generated/java/com/github/copilot/generated/rpc/SessionRpc.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRpc.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionRpc.java index a2639eb0a6..ff66aeef30 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionRpc.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionRpc.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionScheduleApi.java index a0714233b3..e35fb21979 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListParams.java index 0b32d10d8f..3dda01502b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListResult.java index 80202f88d7..6a5ec101c3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopParams.java index f82cca373b..3215999914 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopResult.java index 8037068035..b61b0bb9ed 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionScheduleStopResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionScheduleStopResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSendParams.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSendParams.java index caebce5268..42177c82d8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSendParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSendResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSendResult.java index d93c58ce1e..747435e18e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSendResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSendResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShellApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShellApi.java index 6ed7c8b6bb..9abf8a626f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShellApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShellExecParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShellExecParams.java index 82a5815d90..817adc93c8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShellExecParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShellExecResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShellExecResult.java index d7790ce700..28a7565353 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellExecResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShellExecResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShellKillParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShellKillParams.java index c89e219822..1b26f1cb49 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShellKillParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShellKillResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShellKillResult.java index 163c990bb8..db3ff08cf4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShellKillResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShellKillResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShutdownParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionShutdownParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShutdownParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionShutdownParams.java index e7bf266e8f..c17bef956d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionShutdownParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionShutdownParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsApi.java index 82cea6a8fe..0d6a2fec37 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableParams.java index 82f20ececc..ba1df8ea2c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableResult.java index 7f3fe40b88..3bd4b7dadb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsDisableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsDisableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableParams.java index 0d42ce06ed..6e6a7fd628 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableResult.java index 1e7ea4c7fd..e8684ddc1f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnsureLoadedParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnsureLoadedParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnsureLoadedParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnsureLoadedParams.java index 8b7ab0e628..1d5a7f102c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsEnsureLoadedParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsEnsureLoadedParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedParams.java index 8ae29d5e7f..c17c00d07b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedResult.java index f20c657c07..ed62e0fc7d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsGetInvokedResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsGetInvokedResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListParams.java index 6f8986bfd1..1d45d8fa96 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListResult.java index 98bafbaff8..ded58a52f2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadParams.java index 5c2cdbeb36..3d580001c0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadResult.java index 10d4fa7de9..38c426e5be 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSkillsReloadResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSkillsReloadResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSuspendParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionSuspendParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSuspendParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionSuspendParams.java index 103cefc687..4ca1c33ab4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionSuspendParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionSuspendParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksApi.java index 5fa5ca90f5..f203c536c4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelParams.java index e00f9fcf86..56fab2d640 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelResult.java index 1ecae81525..ffb17a6f04 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksCancelResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksCancelResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableParams.java index e183c7bc4d..25a78bbc76 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableResult.java index 65eee3220c..4ca2200ec2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetCurrentPromotableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetCurrentPromotableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressParams.java index bcdf9a8d8c..0081430c52 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressResult.java index d2a4c7eb54..6f24e4bc91 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksGetProgressResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksGetProgressResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksListParams.java index 8716e95492..d645ee3480 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksListResult.java index 307cdd6b9d..ec52af7515 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java index 31c7fa94ab..b7ec7e39ee 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java index 590082505b..702aa1c4e0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteCurrentToBackgroundResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundParams.java index 6dc27fd7c5..f75e97f393 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundResult.java index 9580bc6089..5ed332b17c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksPromoteToBackgroundResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksPromoteToBackgroundResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshParams.java index 3560835af5..da6e164dff 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshResult.java index c386369763..497d412336 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRefreshResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRefreshResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveParams.java index 69fdfbd414..66a730590b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveResult.java index 44ff4eb755..0d4173cacd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksRemoveResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksRemoveResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageParams.java index 5b496b080d..841ad104ae 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageResult.java index 0f72e5a697..dee710d956 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksSendMessageResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksSendMessageResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentParams.java index 3ad64c52e4..f146e6e91c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentResult.java index 96bab97fa4..24cd051ce7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksStartAgentResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksStartAgentResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingParams.java index 6dc9358223..916c9f424a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingResult.java index 5cbce9cd5a..b8ec86d123 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTasksWaitForPendingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTasksWaitForPendingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetryApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTelemetryApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetryApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTelemetryApi.java index 5cad4e771c..92c24b4e8d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetryApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTelemetryApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java index aa0d4e3c3b..d0f364e232 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionTelemetrySetFeatureOverridesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsApi.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionToolsApi.java index ded5886273..81c04f2ca3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallParams.java index 3bdde09047..a5bfa4cca4 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallResult.java index 3eae1158d7..fefaa652e8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsHandlePendingToolCallResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsHandlePendingToolCallResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateParams.java index d3ec2aeea6..f605cb8170 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateResult.java index d25c0e5a86..b4126b3906 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionToolsInitializeAndValidateResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionToolsInitializeAndValidateResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiApi.java index 3ae8295889..c3116fe58c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationParams.java index e92aa36bd6..d684167040 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationResult.java index 4be941e08b..d08d7453ef 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiElicitationResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiElicitationResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java index ab37b178c0..1afe7d5e7a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java index 0df5ca5715..335f5d8940 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingAutoModeSwitchResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationParams.java index b648fb7a93..73d97220f8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationResult.java index bf25a16860..bb2c91b6ec 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingElicitationResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingElicitationResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java index a83d7d0389..87c492bdbf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java index c3c183b515..69fc6586d2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingExitPlanModeResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingParams.java index 6c4304fd5e..8ce2ad2e12 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingResult.java index 2fa7e09e1c..ced26ad66b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingSamplingResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingSamplingResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputParams.java index 3e1624bf26..89034cbd2c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputResult.java index fb240b3c5c..ae6369ee0e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiHandlePendingUserInputResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiHandlePendingUserInputResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java index 42c8ba2a5b..f778d3164a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java index 5aedb596ba..991954a268 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiRegisterDirectAutoModeSwitchHandlerResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java index c22ad46e78..beab56aa28 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java index 6d36ad751c..0836c5c16b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUiUnregisterDirectAutoModeSwitchHandlerResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageApi.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUsageApi.java index c3db06d6bc..b9a5a14a84 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsParams.java index 72cb52de9a..035bf64982 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsResult.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsResult.java index 21feae576b..e51b9453f9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionUsageGetMetricsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionUsageGetMetricsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContext.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContext.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContext.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContext.java index 4c17aa5ea7..b16ef01e83 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContext.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContext.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContextHostType.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContextHostType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContextHostType.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContextHostType.java index 0c5a0cffe7..1ed7e60d0e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkingDirectoryContextHostType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkingDirectoryContextHostType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceApi.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceApi.java index 8fd7d7467d..d74f670477 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileParams.java index c25fdd7903..94efe93132 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileResult.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileResult.java index e77cf58c56..f0bf113bac 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceCreateFileResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceCreateFileResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesParams.java index 0fb6431c96..a2fd1407c3 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesResult.java index 1b46df541b..96e7ce9c45 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceListFilesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceListFilesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileParams.java index ded74763a3..c39a8a5254 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileResult.java index c8705581e8..b4ece91ef7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspaceReadFileResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspaceReadFileResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesApi.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesApi.java similarity index 99% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesApi.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesApi.java index de51e4a907..df0e690a87 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesApi.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesApi.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import java.util.concurrent.CompletableFuture; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesCreateFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesCreateFileParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesCreateFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesCreateFileParams.java index b57681a172..3d757f852a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesCreateFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesCreateFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceParams.java index 9f9628bb6f..6a7482af75 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceResult.java similarity index 98% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceResult.java index ded4778b47..6beb5d453d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesGetWorkspaceResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesGetWorkspaceResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsParams.java index 3f3c1ac1e1..3d55cf43a0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsResult.java index c25be02d4c..b6f562c66f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListCheckpointsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListCheckpointsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesParams.java index 68b976a60e..7fd4771a1e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesResult.java index 06908175b3..90a7cf2ce0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesListFilesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesListFilesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointParams.java index 851a01bd45..8266acab46 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointResult.java index 4f9e18709f..1b4322994f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadCheckpointResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadCheckpointResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileParams.java index e322ee06da..85f44b6080 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileResult.java index 7a0717dbeb..b85ce3f6ef 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesReadFileResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesReadFileResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteParams.java index 466f5b7bae..23def325c2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteResult.java index 84e5719d70..523b124889 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionWorkspacesSaveLargePasteResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionWorkspacesSaveLargePasteResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteParams.java index 986103825b..e1aa506977 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteResult.java index 893dd8210c..2447d409da 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsBulkDeleteResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsBulkDeleteResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseParams.java index be8b2e3857..4be30632d8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseResult.java index c22e818cc8..1ab7edab79 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCheckInUseResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsCheckInUseResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsCloseParams.java similarity index 94% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsCloseParams.java index c29d385be6..667e18a4cf 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsCloseParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsCloseResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsCloseResult.java index fc8c5ee66a..a63c446338 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsCloseResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsCloseResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsConnectParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsConnectParams.java index a8a9e76f65..5d0dfffeb9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsConnectParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsConnectResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsConnectResult.java index b67783328b..42c5d7e2e2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsConnectResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsConnectResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataParams.java index ef3330a97b..973c952e9e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataResult.java index fee15a2ed9..864eed23d8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsEnrichMetadataResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsEnrichMetadataResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixParams.java index 628d93cb8e..285876be02 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixResult.java index 94b3a106c3..27ceb29501 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByPrefixResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByPrefixResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdParams.java index 23e1aaaedb..cd643796cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdResult.java index eb5b9bfd4f..d276340587 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsFindByTaskIdResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsFindByTaskIdResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsForkParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsForkParams.java index 19858ac970..33bfb3a81e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsForkParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsForkResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsForkResult.java index 29bcb8c92f..5e67f101ee 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsForkResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsForkResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathParams.java index a23a5434c1..a0d19b5a4f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathResult.java index 261a0d4526..9d77f105f6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetEventFilePathResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetEventFilePathResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextParams.java index 0b06f161f8..43a23a89b6 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextResult.java index c31e8d781e..018b96f71f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetLastForContextResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetLastForContextResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java index 1fd9e476f5..21f26bfcda 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java index c4de7b09b0..9dedef9818 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetPersistedRemoteSteerableResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetSizesResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetSizesResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetSizesResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsGetSizesResult.java index 98ec269e49..958f6e2424 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsGetSizesResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsGetSizesResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsListResult.java index 99060bb18b..7608fe3f35 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksParams.java index 67590914ec..347b7c7e7f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksResult.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksResult.java index 6f2299a491..194ce088de 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsLoadDeferredRepoHooksResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsLoadDeferredRepoHooksResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldParams.java index e36c033e35..d854387303 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldResult.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldResult.java index 6bcf5cecd8..c04389b0cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsPruneOldResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsPruneOldResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockParams.java index 81c9682515..76add5bcb7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockResult.java index e3c660dc66..dde0c445e8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReleaseLockResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsReleaseLockResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksParams.java index a9537382a6..82978334f1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksResult.java index 0920dd86e2..835641e4db 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsReloadPluginHooksResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsReloadPluginHooksResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsSaveParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsSaveParams.java index ae3b42b029..27f49adddb 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsSaveParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsSaveResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsSaveResult.java index 74ae1a4669..758d11885b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSaveResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsSaveResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsParams.java index 34ca74de9d..d03706e3a9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsResult.java b/src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsResult.java index e6f2a5b4cf..848ff9e086 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SessionsSetAdditionalPluginsResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SessionsSetAdditionalPluginsResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ShellKillSignal.java b/src/generated/java/com/github/copilot/generated/rpc/ShellKillSignal.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ShellKillSignal.java rename to src/generated/java/com/github/copilot/generated/rpc/ShellKillSignal.java index 92700c5c0f..646fa2be83 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ShellKillSignal.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ShellKillSignal.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ShutdownType.java b/src/generated/java/com/github/copilot/generated/rpc/ShutdownType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ShutdownType.java rename to src/generated/java/com/github/copilot/generated/rpc/ShutdownType.java index 5dac44cfbc..1b4e79dd48 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ShutdownType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ShutdownType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Skill.java b/src/generated/java/com/github/copilot/generated/rpc/Skill.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/Skill.java rename to src/generated/java/com/github/copilot/generated/rpc/Skill.java index 92f94d6615..d64f015157 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Skill.java +++ b/src/generated/java/com/github/copilot/generated/rpc/Skill.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillSource.java b/src/generated/java/com/github/copilot/generated/rpc/SkillSource.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SkillSource.java rename to src/generated/java/com/github/copilot/generated/rpc/SkillSource.java index db5f405a4a..8d723548be 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillSource.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SkillSource.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsConfigSetDisabledSkillsParams.java b/src/generated/java/com/github/copilot/generated/rpc/SkillsConfigSetDisabledSkillsParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsConfigSetDisabledSkillsParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SkillsConfigSetDisabledSkillsParams.java index f704129dd5..200e88cd7a 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsConfigSetDisabledSkillsParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SkillsConfigSetDisabledSkillsParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverParams.java b/src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverParams.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverParams.java rename to src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverParams.java index be1d1921fe..1176806996 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverResult.java b/src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverResult.java rename to src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverResult.java index c80a738376..f56c814bce 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsDiscoverResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SkillsDiscoverResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsInvokedSkill.java b/src/generated/java/com/github/copilot/generated/rpc/SkillsInvokedSkill.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsInvokedSkill.java rename to src/generated/java/com/github/copilot/generated/rpc/SkillsInvokedSkill.java index 7dde089424..697e18fa4c 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SkillsInvokedSkill.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SkillsInvokedSkill.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInfo.java similarity index 97% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java rename to src/generated/java/com/github/copilot/generated/rpc/SlashCommandInfo.java index 686018c517..722274524f 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInfo.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInfo.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInput.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java rename to src/generated/java/com/github/copilot/generated/rpc/SlashCommandInput.java index 186dec5a81..dcfc2a36e7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInput.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInput.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInputCompletion.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java rename to src/generated/java/com/github/copilot/generated/rpc/SlashCommandInputCompletion.java index c192fa9c0f..bfd2e77874 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandInputCompletion.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandInputCompletion.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandKind.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java rename to src/generated/java/com/github/copilot/generated/rpc/SlashCommandKind.java index 1f08c4efcd..1f05c47735 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/SlashCommandKind.java +++ b/src/generated/java/com/github/copilot/generated/rpc/SlashCommandKind.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/Tool.java b/src/generated/java/com/github/copilot/generated/rpc/Tool.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/Tool.java rename to src/generated/java/com/github/copilot/generated/rpc/Tool.java index 5954c2c030..e4b1361c87 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/Tool.java +++ b/src/generated/java/com/github/copilot/generated/rpc/Tool.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListParams.java b/src/generated/java/com/github/copilot/generated/rpc/ToolsListParams.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListParams.java rename to src/generated/java/com/github/copilot/generated/rpc/ToolsListParams.java index 3072c46eb9..6523f4bdc2 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListParams.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ToolsListParams.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListResult.java b/src/generated/java/com/github/copilot/generated/rpc/ToolsListResult.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListResult.java rename to src/generated/java/com/github/copilot/generated/rpc/ToolsListResult.java index 30e3b0962e..5127277fb7 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/ToolsListResult.java +++ b/src/generated/java/com/github/copilot/generated/rpc/ToolsListResult.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIAutoModeSwitchResponse.java b/src/generated/java/com/github/copilot/generated/rpc/UIAutoModeSwitchResponse.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIAutoModeSwitchResponse.java rename to src/generated/java/com/github/copilot/generated/rpc/UIAutoModeSwitchResponse.java index 170c378a44..f6a3534d88 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIAutoModeSwitchResponse.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIAutoModeSwitchResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponse.java b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponse.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponse.java rename to src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponse.java index 058a68c0df..e157ee727b 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponse.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponseAction.java b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponseAction.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponseAction.java rename to src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponseAction.java index e4811ef956..4ce8d95cd8 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationResponseAction.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationResponseAction.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationSchema.java b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationSchema.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationSchema.java rename to src/generated/java/com/github/copilot/generated/rpc/UIElicitationSchema.java index 171f5c6883..d4f0a26845 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIElicitationSchema.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIElicitationSchema.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeAction.java b/src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeAction.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeAction.java rename to src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeAction.java index 7ea38d6fdb..1670701e10 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeAction.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeAction.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeResponse.java b/src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeResponse.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeResponse.java rename to src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeResponse.java index 55cd430a9f..50e2011427 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIExitPlanModeResponse.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIExitPlanModeResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIHandlePendingSamplingResponse.java b/src/generated/java/com/github/copilot/generated/rpc/UIHandlePendingSamplingResponse.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIHandlePendingSamplingResponse.java rename to src/generated/java/com/github/copilot/generated/rpc/UIHandlePendingSamplingResponse.java index f000843154..590061f4cc 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIHandlePendingSamplingResponse.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIHandlePendingSamplingResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIUserInputResponse.java b/src/generated/java/com/github/copilot/generated/rpc/UIUserInputResponse.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UIUserInputResponse.java rename to src/generated/java/com/github/copilot/generated/rpc/UIUserInputResponse.java index ec8b6e842a..d4ce9899dd 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UIUserInputResponse.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UIUserInputResponse.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsCodeChanges.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsCodeChanges.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsCodeChanges.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsCodeChanges.java index b425ca3d5b..4c445efe1e 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsCodeChanges.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsCodeChanges.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetric.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetric.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetric.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetric.java index f86aab3540..7e34f43b38 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetric.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetric.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricRequests.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricRequests.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricRequests.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricRequests.java index ac18ded858..ef9fbe47d1 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricRequests.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricRequests.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricTokenDetail.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricTokenDetail.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricTokenDetail.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricTokenDetail.java index 1a64c76e90..e47a45fde9 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricUsage.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricUsage.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricUsage.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricUsage.java index f7c556a0f8..112c2c06d5 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsModelMetricUsage.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsModelMetricUsage.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsTokenDetail.java b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsTokenDetail.java similarity index 95% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsTokenDetail.java rename to src/generated/java/com/github/copilot/generated/rpc/UsageMetricsTokenDetail.java index 1175c7b8b1..55d0b81c8d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/UsageMetricsTokenDetail.java +++ b/src/generated/java/com/github/copilot/generated/rpc/UsageMetricsTokenDetail.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspaceSummaryHostType.java b/src/generated/java/com/github/copilot/generated/rpc/WorkspaceSummaryHostType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspaceSummaryHostType.java rename to src/generated/java/com/github/copilot/generated/rpc/WorkspaceSummaryHostType.java index 58cc24ea50..71ce8e4b6d 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspaceSummaryHostType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/WorkspaceSummaryHostType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesCheckpoints.java b/src/generated/java/com/github/copilot/generated/rpc/WorkspacesCheckpoints.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesCheckpoints.java rename to src/generated/java/com/github/copilot/generated/rpc/WorkspacesCheckpoints.java index 81c49f6fa4..07de034a96 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesCheckpoints.java +++ b/src/generated/java/com/github/copilot/generated/rpc/WorkspacesCheckpoints.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesWorkspaceDetailsHostType.java b/src/generated/java/com/github/copilot/generated/rpc/WorkspacesWorkspaceDetailsHostType.java similarity index 96% rename from src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesWorkspaceDetailsHostType.java rename to src/generated/java/com/github/copilot/generated/rpc/WorkspacesWorkspaceDetailsHostType.java index 0872a87a44..aca85030e0 100644 --- a/src/generated/java/com/github/copilot/sdk/generated/rpc/WorkspacesWorkspaceDetailsHostType.java +++ b/src/generated/java/com/github/copilot/generated/rpc/WorkspacesWorkspaceDetailsHostType.java @@ -5,7 +5,7 @@ // AUTO-GENERATED FILE - DO NOT EDIT // Generated from: api.schema.json -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import javax.annotation.processing.Generated; diff --git a/src/main/java/com/github/copilot/sdk/CliServerManager.java b/src/main/java/com/github/copilot/CliServerManager.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/CliServerManager.java rename to src/main/java/com/github/copilot/CliServerManager.java index bd4effe5a8..a6a08a8482 100644 --- a/src/main/java/com/github/copilot/sdk/CliServerManager.java +++ b/src/main/java/com/github/copilot/CliServerManager.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.BufferedReader; import java.io.File; @@ -19,7 +19,7 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; -import com.github.copilot.sdk.json.CopilotClientOptions; +import com.github.copilot.rpc.CopilotClientOptions; /** * Manages the lifecycle of the Copilot CLI server process. diff --git a/src/main/java/com/github/copilot/sdk/ConnectionState.java b/src/main/java/com/github/copilot/ConnectionState.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/ConnectionState.java rename to src/main/java/com/github/copilot/ConnectionState.java index d35528006b..5ce3782d16 100644 --- a/src/main/java/com/github/copilot/sdk/ConnectionState.java +++ b/src/main/java/com/github/copilot/ConnectionState.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; /** * Represents the connection state of a {@link CopilotClient}. diff --git a/src/main/java/com/github/copilot/sdk/CopilotClient.java b/src/main/java/com/github/copilot/CopilotClient.java similarity index 93% rename from src/main/java/com/github/copilot/sdk/CopilotClient.java rename to src/main/java/com/github/copilot/CopilotClient.java index 4d0770319a..20c7a7e7de 100644 --- a/src/main/java/com/github/copilot/sdk/CopilotClient.java +++ b/src/main/java/com/github/copilot/CopilotClient.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.IOException; import java.net.URI; @@ -19,25 +19,25 @@ import java.util.logging.Level; import java.util.logging.Logger; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.CreateSessionResponse; -import com.github.copilot.sdk.generated.rpc.ConnectParams; -import com.github.copilot.sdk.generated.rpc.ServerRpc; -import com.github.copilot.sdk.json.DeleteSessionResponse; -import com.github.copilot.sdk.json.GetAuthStatusResponse; -import com.github.copilot.sdk.json.GetLastSessionIdResponse; -import com.github.copilot.sdk.json.GetSessionMetadataResponse; -import com.github.copilot.sdk.json.GetModelsResponse; -import com.github.copilot.sdk.json.GetStatusResponse; -import com.github.copilot.sdk.json.ListSessionsResponse; -import com.github.copilot.sdk.json.ModelInfo; -import com.github.copilot.sdk.json.PingResponse; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.ResumeSessionResponse; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionLifecycleHandler; -import com.github.copilot.sdk.json.SessionListFilter; -import com.github.copilot.sdk.json.SessionMetadata; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.CreateSessionResponse; +import com.github.copilot.generated.rpc.ConnectParams; +import com.github.copilot.generated.rpc.ServerRpc; +import com.github.copilot.rpc.DeleteSessionResponse; +import com.github.copilot.rpc.GetAuthStatusResponse; +import com.github.copilot.rpc.GetLastSessionIdResponse; +import com.github.copilot.rpc.GetSessionMetadataResponse; +import com.github.copilot.rpc.GetModelsResponse; +import com.github.copilot.rpc.GetStatusResponse; +import com.github.copilot.rpc.ListSessionsResponse; +import com.github.copilot.rpc.ModelInfo; +import com.github.copilot.rpc.PingResponse; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.ResumeSessionResponse; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionLifecycleHandler; +import com.github.copilot.rpc.SessionListFilter; +import com.github.copilot.rpc.SessionMetadata; /** * Provides a client for interacting with the Copilot CLI server. @@ -249,7 +249,7 @@ private void verifyProtocolVersion(Connection connection) throws Exception { // Try the new 'connect' RPC which supports connection tokens var connectParams = new ConnectParams(effectiveConnectionToken); var connectResponse = connection.rpc - .invoke("connect", connectParams, com.github.copilot.sdk.generated.rpc.ConnectResult.class) + .invoke("connect", connectParams, com.github.copilot.generated.rpc.ConnectResult.class) .get(30, TimeUnit.SECONDS); serverVersion = connectResponse.protocolVersion() != null ? connectResponse.protocolVersion().intValue() @@ -397,8 +397,8 @@ private static void cleanupCliProcess(Process process) { * receive responses. Remember to close the session when done. *

* A permission handler is required when creating a session. Use - * {@link com.github.copilot.sdk.json.PermissionHandler#APPROVE_ALL} to approve - * all permission requests, or provide a custom handler to control permissions + * {@link com.github.copilot.rpc.PermissionHandler#APPROVE_ALL} to approve all + * permission requests, or provide a custom handler to control permissions * selectively. * *

@@ -410,14 +410,14 @@ private static void cleanupCliProcess(Process process) { * * @param config * configuration for the session, including the required - * {@link SessionConfig#setOnPermissionRequest(com.github.copilot.sdk.json.PermissionHandler)} + * {@link SessionConfig#setOnPermissionRequest(com.github.copilot.rpc.PermissionHandler)} * handler * @return a future that resolves with the created CopilotSession * @throws IllegalArgumentException * if {@code config} is {@code null} or does not have a permission * handler set * @see SessionConfig - * @see com.github.copilot.sdk.json.PermissionHandler#APPROVE_ALL + * @see com.github.copilot.rpc.PermissionHandler#APPROVE_ALL */ public CompletableFuture createSession(SessionConfig config) { if (config == null || config.getOnPermissionRequest() == null) { @@ -494,15 +494,15 @@ public CompletableFuture createSession(SessionConfig config) { * conversation. The session's history is preserved. *

* A permission handler is required when resuming a session. Use - * {@link com.github.copilot.sdk.json.PermissionHandler#APPROVE_ALL} to approve - * all permission requests, or provide a custom handler to control permissions + * {@link com.github.copilot.rpc.PermissionHandler#APPROVE_ALL} to approve all + * permission requests, or provide a custom handler to control permissions * selectively. * * @param sessionId * the ID of the session to resume * @param config * configuration for the resumed session, including the required - * {@link ResumeSessionConfig#setOnPermissionRequest(com.github.copilot.sdk.json.PermissionHandler)} + * {@link ResumeSessionConfig#setOnPermissionRequest(com.github.copilot.rpc.PermissionHandler)} * handler * @return a future that resolves with the resumed CopilotSession * @throws IllegalArgumentException @@ -510,7 +510,7 @@ public CompletableFuture createSession(SessionConfig config) { * handler set * @see #listSessions() * @see #getLastSessionId() - * @see com.github.copilot.sdk.json.PermissionHandler#APPROVE_ALL + * @see com.github.copilot.rpc.PermissionHandler#APPROVE_ALL */ public CompletableFuture resumeSession(String sessionId, ResumeSessionConfig config) { if (config == null || config.getOnPermissionRequest() == null) { @@ -659,8 +659,8 @@ public CompletableFuture getAuthStatus() { * The cache is cleared when the client disconnects. *

* If an {@code onListModels} handler was provided in - * {@link com.github.copilot.sdk.json.CopilotClientOptions}, it is called - * instead of querying the CLI server. This is useful in BYOK mode. + * {@link com.github.copilot.rpc.CopilotClientOptions}, it is called instead of + * querying the CLI server. This is useful in BYOK mode. * * @return a future that resolves with a list of available models * @see ModelInfo @@ -714,7 +714,7 @@ public CompletableFuture> listModels() { * * @return a future that resolves with the last session ID, or {@code null} if * no sessions exist - * @see #resumeSession(String, com.github.copilot.sdk.json.ResumeSessionConfig) + * @see #resumeSession(String, com.github.copilot.rpc.ResumeSessionConfig) */ public CompletableFuture getLastSessionId() { return ensureConnected().thenCompose( @@ -755,7 +755,7 @@ public CompletableFuture deleteSession(String sessionId) { * * @return a future that resolves with a list of session metadata * @see SessionMetadata - * @see #resumeSession(String, com.github.copilot.sdk.json.ResumeSessionConfig) + * @see #resumeSession(String, com.github.copilot.rpc.ResumeSessionConfig) */ public CompletableFuture> listSessions() { return listSessions(null); @@ -785,7 +785,7 @@ public CompletableFuture> listSessions() { * @return a future that resolves with a list of session metadata * @see SessionMetadata * @see SessionListFilter - * @see #resumeSession(String, com.github.copilot.sdk.json.ResumeSessionConfig) + * @see #resumeSession(String, com.github.copilot.rpc.ResumeSessionConfig) */ public CompletableFuture> listSessions(SessionListFilter filter) { return ensureConnected().thenCompose(connection -> { @@ -834,9 +834,8 @@ public CompletableFuture getSessionMetadata(String sessionId) { */ public CompletableFuture getForegroundSessionId() { return ensureConnected().thenCompose(connection -> connection.rpc - .invoke("session.getForeground", Map.of(), - com.github.copilot.sdk.json.GetForegroundSessionResponse.class) - .thenApply(com.github.copilot.sdk.json.GetForegroundSessionResponse::sessionId)); + .invoke("session.getForeground", Map.of(), com.github.copilot.rpc.GetForegroundSessionResponse.class) + .thenApply(com.github.copilot.rpc.GetForegroundSessionResponse::sessionId)); } /** @@ -853,8 +852,8 @@ public CompletableFuture getForegroundSessionId() { */ public CompletableFuture setForegroundSessionId(String sessionId) { return ensureConnected().thenCompose(connection -> connection.rpc - .invoke("session.setForeground", new com.github.copilot.sdk.json.SetForegroundSessionRequest(sessionId), - com.github.copilot.sdk.json.SetForegroundSessionResponse.class) + .invoke("session.setForeground", new com.github.copilot.rpc.SetForegroundSessionRequest(sessionId), + com.github.copilot.rpc.SetForegroundSessionResponse.class) .thenAccept(response -> { if (!response.success()) { throw new RuntimeException( @@ -882,7 +881,7 @@ public AutoCloseable onLifecycle(SessionLifecycleHandler handler) { * * @param eventType * the event type to listen for (use - * {@link com.github.copilot.sdk.json.SessionLifecycleEventTypes} + * {@link com.github.copilot.rpc.SessionLifecycleEventTypes} * constants) * @param handler * a callback that receives events of the specified type diff --git a/src/main/java/com/github/copilot/sdk/CopilotSession.java b/src/main/java/com/github/copilot/CopilotSession.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/CopilotSession.java rename to src/main/java/com/github/copilot/CopilotSession.java index 4b75fbc7e5..6a8676d8f9 100644 --- a/src/main/java/com/github/copilot/sdk/CopilotSession.java +++ b/src/main/java/com/github/copilot/CopilotSession.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.Closeable; import java.io.IOException; @@ -29,75 +29,75 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.rpc.SessionCommandsHandlePendingCommandParams; -import com.github.copilot.sdk.generated.rpc.SessionLogParams; -import com.github.copilot.sdk.generated.rpc.SessionLogLevel; -import com.github.copilot.sdk.generated.rpc.ModelCapabilitiesOverride; -import com.github.copilot.sdk.generated.rpc.ModelCapabilitiesOverrideLimits; -import com.github.copilot.sdk.generated.rpc.ModelCapabilitiesOverrideSupports; -import com.github.copilot.sdk.generated.rpc.SessionModelSwitchToParams; -import com.github.copilot.sdk.generated.rpc.SessionPermissionsHandlePendingPermissionRequestParams; -import com.github.copilot.sdk.generated.rpc.SessionRpc; -import com.github.copilot.sdk.generated.rpc.SessionToolsHandlePendingToolCallParams; -import com.github.copilot.sdk.generated.rpc.SessionUiElicitationParams; -import com.github.copilot.sdk.generated.rpc.SessionUiHandlePendingElicitationParams; -import com.github.copilot.sdk.generated.rpc.UIElicitationResponse; -import com.github.copilot.sdk.generated.rpc.UIElicitationResponseAction; -import com.github.copilot.sdk.generated.rpc.UIElicitationSchema; -import com.github.copilot.sdk.generated.CapabilitiesChangedEvent; -import com.github.copilot.sdk.generated.CommandExecuteEvent; -import com.github.copilot.sdk.generated.ElicitationRequestedEvent; -import com.github.copilot.sdk.generated.ExternalToolRequestedEvent; -import com.github.copilot.sdk.generated.PermissionRequestedEvent; -import com.github.copilot.sdk.generated.SessionErrorEvent; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.AgentInfo; -import com.github.copilot.sdk.json.AutoModeSwitchHandler; -import com.github.copilot.sdk.json.AutoModeSwitchInvocation; -import com.github.copilot.sdk.json.AutoModeSwitchRequest; -import com.github.copilot.sdk.json.AutoModeSwitchResponse; -import com.github.copilot.sdk.json.CommandContext; -import com.github.copilot.sdk.json.CommandDefinition; -import com.github.copilot.sdk.json.CommandHandler; -import com.github.copilot.sdk.json.ElicitationContext; -import com.github.copilot.sdk.json.ElicitationHandler; -import com.github.copilot.sdk.json.ElicitationParams; -import com.github.copilot.sdk.json.ElicitationResult; -import com.github.copilot.sdk.json.ElicitationResultAction; -import com.github.copilot.sdk.json.ExitPlanModeHandler; -import com.github.copilot.sdk.json.ExitPlanModeInvocation; -import com.github.copilot.sdk.json.ExitPlanModeRequest; -import com.github.copilot.sdk.json.ExitPlanModeResult; -import com.github.copilot.sdk.json.ElicitationSchema; -import com.github.copilot.sdk.json.GetMessagesResponse; -import com.github.copilot.sdk.json.HookInvocation; -import com.github.copilot.sdk.json.InputOptions; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PermissionInvocation; -import com.github.copilot.sdk.json.PermissionRequest; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.PostToolUseHookInput; -import com.github.copilot.sdk.json.PreMcpToolCallHookInput; -import com.github.copilot.sdk.json.PreToolUseHookInput; -import com.github.copilot.sdk.json.SendMessageRequest; -import com.github.copilot.sdk.json.SendMessageResponse; -import com.github.copilot.sdk.json.SessionCapabilities; -import com.github.copilot.sdk.json.SessionEndHookInput; -import com.github.copilot.sdk.json.SessionHooks; -import com.github.copilot.sdk.json.SessionStartHookInput; -import com.github.copilot.sdk.json.SessionUiApi; -import com.github.copilot.sdk.json.SessionUiCapabilities; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.ToolResultObject; -import com.github.copilot.sdk.json.UserInputHandler; -import com.github.copilot.sdk.json.UserInputInvocation; -import com.github.copilot.sdk.json.UserInputRequest; -import com.github.copilot.sdk.json.UserInputResponse; -import com.github.copilot.sdk.json.UserPromptSubmittedHookInput; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.rpc.SessionCommandsHandlePendingCommandParams; +import com.github.copilot.generated.rpc.SessionLogParams; +import com.github.copilot.generated.rpc.SessionLogLevel; +import com.github.copilot.generated.rpc.ModelCapabilitiesOverride; +import com.github.copilot.generated.rpc.ModelCapabilitiesOverrideLimits; +import com.github.copilot.generated.rpc.ModelCapabilitiesOverrideSupports; +import com.github.copilot.generated.rpc.SessionModelSwitchToParams; +import com.github.copilot.generated.rpc.SessionPermissionsHandlePendingPermissionRequestParams; +import com.github.copilot.generated.rpc.SessionRpc; +import com.github.copilot.generated.rpc.SessionToolsHandlePendingToolCallParams; +import com.github.copilot.generated.rpc.SessionUiElicitationParams; +import com.github.copilot.generated.rpc.SessionUiHandlePendingElicitationParams; +import com.github.copilot.generated.rpc.UIElicitationResponse; +import com.github.copilot.generated.rpc.UIElicitationResponseAction; +import com.github.copilot.generated.rpc.UIElicitationSchema; +import com.github.copilot.generated.CapabilitiesChangedEvent; +import com.github.copilot.generated.CommandExecuteEvent; +import com.github.copilot.generated.ElicitationRequestedEvent; +import com.github.copilot.generated.ExternalToolRequestedEvent; +import com.github.copilot.generated.PermissionRequestedEvent; +import com.github.copilot.generated.SessionErrorEvent; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.AgentInfo; +import com.github.copilot.rpc.AutoModeSwitchHandler; +import com.github.copilot.rpc.AutoModeSwitchInvocation; +import com.github.copilot.rpc.AutoModeSwitchRequest; +import com.github.copilot.rpc.AutoModeSwitchResponse; +import com.github.copilot.rpc.CommandContext; +import com.github.copilot.rpc.CommandDefinition; +import com.github.copilot.rpc.CommandHandler; +import com.github.copilot.rpc.ElicitationContext; +import com.github.copilot.rpc.ElicitationHandler; +import com.github.copilot.rpc.ElicitationParams; +import com.github.copilot.rpc.ElicitationResult; +import com.github.copilot.rpc.ElicitationResultAction; +import com.github.copilot.rpc.ExitPlanModeHandler; +import com.github.copilot.rpc.ExitPlanModeInvocation; +import com.github.copilot.rpc.ExitPlanModeRequest; +import com.github.copilot.rpc.ExitPlanModeResult; +import com.github.copilot.rpc.ElicitationSchema; +import com.github.copilot.rpc.GetMessagesResponse; +import com.github.copilot.rpc.HookInvocation; +import com.github.copilot.rpc.InputOptions; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PermissionInvocation; +import com.github.copilot.rpc.PermissionRequest; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.PostToolUseHookInput; +import com.github.copilot.rpc.PreMcpToolCallHookInput; +import com.github.copilot.rpc.PreToolUseHookInput; +import com.github.copilot.rpc.SendMessageRequest; +import com.github.copilot.rpc.SendMessageResponse; +import com.github.copilot.rpc.SessionCapabilities; +import com.github.copilot.rpc.SessionEndHookInput; +import com.github.copilot.rpc.SessionHooks; +import com.github.copilot.rpc.SessionStartHookInput; +import com.github.copilot.rpc.SessionUiApi; +import com.github.copilot.rpc.SessionUiCapabilities; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.ToolResultObject; +import com.github.copilot.rpc.UserInputHandler; +import com.github.copilot.rpc.UserInputInvocation; +import com.github.copilot.rpc.UserInputRequest; +import com.github.copilot.rpc.UserInputResponse; +import com.github.copilot.rpc.UserPromptSubmittedHookInput; /** * Represents a single conversation session with the Copilot CLI. @@ -136,9 +136,9 @@ * session.close(); * } * - * @see CopilotClient#createSession(com.github.copilot.sdk.json.SessionConfig) + * @see CopilotClient#createSession(com.github.copilot.rpc.SessionConfig) * @see CopilotClient#resumeSession(String, - * com.github.copilot.sdk.json.ResumeSessionConfig) + * com.github.copilot.rpc.ResumeSessionConfig) * @see SessionEvent * @since 1.0.0 */ @@ -867,7 +867,7 @@ private void executeToolAndRespondAsync(String requestId, String toolName, Strin JsonNode argumentsNode = arguments instanceof JsonNode jn ? jn : (arguments != null ? MAPPER.valueToTree(arguments) : null); - var invocation = new com.github.copilot.sdk.json.ToolInvocation().setSessionId(sessionId) + var invocation = new com.github.copilot.rpc.ToolInvocation().setSessionId(sessionId) .setToolCallId(toolCallId).setToolName(toolName).setArguments(argumentsNode); tool.handler().invoke(invocation).thenAccept(result -> { @@ -1463,7 +1463,7 @@ void registerHooks(SessionHooks hooks) { * Registers transform callbacks for system message sections. *

* Called internally when creating or resuming a session with - * {@link com.github.copilot.sdk.SystemMessageMode#CUSTOMIZE} and transform + * {@link com.github.copilot.SystemMessageMode#CUSTOMIZE} and transform * callbacks. * * @param callbacks @@ -1696,7 +1696,7 @@ public CompletableFuture setModel(String model, String reasoningEffort) { * @since 1.3.0 */ public CompletableFuture setModel(String model, String reasoningEffort, - com.github.copilot.sdk.json.ModelCapabilitiesOverride modelCapabilities) { + com.github.copilot.rpc.ModelCapabilitiesOverride modelCapabilities) { ensureNotTerminated(); ModelCapabilitiesOverride generatedCapabilities = null; if (modelCapabilities != null) { diff --git a/src/main/java/com/github/copilot/sdk/EventErrorHandler.java b/src/main/java/com/github/copilot/EventErrorHandler.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/EventErrorHandler.java rename to src/main/java/com/github/copilot/EventErrorHandler.java index 2ff77d9718..20510f463d 100644 --- a/src/main/java/com/github/copilot/sdk/EventErrorHandler.java +++ b/src/main/java/com/github/copilot/EventErrorHandler.java @@ -2,9 +2,9 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; -import com.github.copilot.sdk.generated.SessionEvent; +import com.github.copilot.generated.SessionEvent; /** * A handler for errors thrown by event handlers during event dispatch. diff --git a/src/main/java/com/github/copilot/sdk/EventErrorPolicy.java b/src/main/java/com/github/copilot/EventErrorPolicy.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/EventErrorPolicy.java rename to src/main/java/com/github/copilot/EventErrorPolicy.java index b7c3dca212..288af00e05 100644 --- a/src/main/java/com/github/copilot/sdk/EventErrorPolicy.java +++ b/src/main/java/com/github/copilot/EventErrorPolicy.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; /** * Controls how event dispatch behaves when an event handler throws an diff --git a/src/main/java/com/github/copilot/sdk/ExtractedTransforms.java b/src/main/java/com/github/copilot/ExtractedTransforms.java similarity index 93% rename from src/main/java/com/github/copilot/sdk/ExtractedTransforms.java rename to src/main/java/com/github/copilot/ExtractedTransforms.java index 717d873d33..bae60fc7c5 100644 --- a/src/main/java/com/github/copilot/sdk/ExtractedTransforms.java +++ b/src/main/java/com/github/copilot/ExtractedTransforms.java @@ -2,13 +2,13 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.util.Map; import java.util.concurrent.CompletableFuture; import java.util.function.Function; -import com.github.copilot.sdk.json.SystemMessageConfig; +import com.github.copilot.rpc.SystemMessageConfig; /** * Result of extracting transform callbacks from a {@link SystemMessageConfig}. diff --git a/src/main/java/com/github/copilot/sdk/JsonRpcClient.java b/src/main/java/com/github/copilot/JsonRpcClient.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/JsonRpcClient.java rename to src/main/java/com/github/copilot/JsonRpcClient.java index 73db478ca9..a7cd0e120d 100644 --- a/src/main/java/com/github/copilot/sdk/JsonRpcClient.java +++ b/src/main/java/com/github/copilot/JsonRpcClient.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.BufferedInputStream; import java.io.IOException; @@ -28,9 +28,9 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; -import com.github.copilot.sdk.json.JsonRpcError; -import com.github.copilot.sdk.json.JsonRpcRequest; -import com.github.copilot.sdk.json.JsonRpcResponse; +import com.github.copilot.rpc.JsonRpcError; +import com.github.copilot.rpc.JsonRpcRequest; +import com.github.copilot.rpc.JsonRpcResponse; /** * JSON-RPC 2.0 client implementation for communicating with the Copilot CLI. diff --git a/src/main/java/com/github/copilot/sdk/JsonRpcException.java b/src/main/java/com/github/copilot/JsonRpcException.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/JsonRpcException.java rename to src/main/java/com/github/copilot/JsonRpcException.java index dbc3ab77b7..1786466bdd 100644 --- a/src/main/java/com/github/copilot/sdk/JsonRpcException.java +++ b/src/main/java/com/github/copilot/JsonRpcException.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; /** * Exception thrown when a JSON-RPC error occurs during communication with the diff --git a/src/main/java/com/github/copilot/sdk/LifecycleEventManager.java b/src/main/java/com/github/copilot/LifecycleEventManager.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/LifecycleEventManager.java rename to src/main/java/com/github/copilot/LifecycleEventManager.java index 21c00e2337..673b9d10ed 100644 --- a/src/main/java/com/github/copilot/sdk/LifecycleEventManager.java +++ b/src/main/java/com/github/copilot/LifecycleEventManager.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.util.ArrayList; import java.util.List; @@ -11,8 +11,8 @@ import java.util.logging.Level; import java.util.logging.Logger; -import com.github.copilot.sdk.json.SessionLifecycleEvent; -import com.github.copilot.sdk.json.SessionLifecycleHandler; +import com.github.copilot.rpc.SessionLifecycleEvent; +import com.github.copilot.rpc.SessionLifecycleHandler; /** * Manages lifecycle event subscriptions and dispatching. diff --git a/src/main/java/com/github/copilot/sdk/LoggingHelpers.java b/src/main/java/com/github/copilot/LoggingHelpers.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/LoggingHelpers.java rename to src/main/java/com/github/copilot/LoggingHelpers.java index 654494ef13..c80e8fb698 100644 --- a/src/main/java/com/github/copilot/sdk/LoggingHelpers.java +++ b/src/main/java/com/github/copilot/LoggingHelpers.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.util.concurrent.TimeUnit; import java.util.logging.Level; diff --git a/src/main/java/com/github/copilot/sdk/RpcHandlerDispatcher.java b/src/main/java/com/github/copilot/RpcHandlerDispatcher.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/RpcHandlerDispatcher.java rename to src/main/java/com/github/copilot/RpcHandlerDispatcher.java index 1d76d8b88a..391f270dbf 100644 --- a/src/main/java/com/github/copilot/sdk/RpcHandlerDispatcher.java +++ b/src/main/java/com/github/copilot/RpcHandlerDispatcher.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.IOException; import java.util.ArrayList; @@ -16,17 +16,17 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.json.AutoModeSwitchRequest; -import com.github.copilot.sdk.json.ExitPlanModeRequest; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.SessionLifecycleEvent; -import com.github.copilot.sdk.json.SessionLifecycleEventMetadata; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.ToolInvocation; -import com.github.copilot.sdk.json.ToolResultObject; -import com.github.copilot.sdk.json.UserInputRequest; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.rpc.AutoModeSwitchRequest; +import com.github.copilot.rpc.ExitPlanModeRequest; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.SessionLifecycleEvent; +import com.github.copilot.rpc.SessionLifecycleEventMetadata; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.ToolInvocation; +import com.github.copilot.rpc.ToolResultObject; +import com.github.copilot.rpc.UserInputRequest; /** * Dispatches incoming JSON-RPC method calls to the appropriate handlers. diff --git a/src/main/java/com/github/copilot/sdk/SdkProtocolVersion.java b/src/main/java/com/github/copilot/SdkProtocolVersion.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/SdkProtocolVersion.java rename to src/main/java/com/github/copilot/SdkProtocolVersion.java index 3b00a88aee..8569b0104f 100644 --- a/src/main/java/com/github/copilot/sdk/SdkProtocolVersion.java +++ b/src/main/java/com/github/copilot/SdkProtocolVersion.java @@ -4,7 +4,7 @@ // Code generated by update-protocol-version.ts. DO NOT EDIT. -package com.github.copilot.sdk; +package com.github.copilot; /** * Provides the SDK protocol version. This must match the version expected by diff --git a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java b/src/main/java/com/github/copilot/SessionRequestBuilder.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java rename to src/main/java/com/github/copilot/SessionRequestBuilder.java index 0cdc4f942b..d9ad69282d 100644 --- a/src/main/java/com/github/copilot/sdk/SessionRequestBuilder.java +++ b/src/main/java/com/github/copilot/SessionRequestBuilder.java @@ -2,21 +2,21 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.util.HashMap; import java.util.Map; import java.util.concurrent.CompletableFuture; import java.util.function.Function; -import com.github.copilot.sdk.json.CreateSessionRequest; -import com.github.copilot.sdk.json.CommandWireDefinition; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.ResumeSessionRequest; -import com.github.copilot.sdk.json.SectionOverride; -import com.github.copilot.sdk.json.SectionOverrideAction; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SystemMessageConfig; +import com.github.copilot.rpc.CreateSessionRequest; +import com.github.copilot.rpc.CommandWireDefinition; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.ResumeSessionRequest; +import com.github.copilot.rpc.SectionOverride; +import com.github.copilot.rpc.SectionOverrideAction; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SystemMessageConfig; /** * Builds JSON-RPC request objects from session configuration. diff --git a/src/main/java/com/github/copilot/sdk/SystemMessageMode.java b/src/main/java/com/github/copilot/SystemMessageMode.java similarity index 80% rename from src/main/java/com/github/copilot/sdk/SystemMessageMode.java rename to src/main/java/com/github/copilot/SystemMessageMode.java index 67fb5ea5e0..d693535f92 100644 --- a/src/main/java/com/github/copilot/sdk/SystemMessageMode.java +++ b/src/main/java/com/github/copilot/SystemMessageMode.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import com.fasterxml.jackson.annotation.JsonValue; @@ -13,7 +13,7 @@ * This enum determines whether to append custom instructions to the default * system message or replace it entirely. * - * @see com.github.copilot.sdk.json.SystemMessageConfig + * @see com.github.copilot.rpc.SystemMessageConfig * @since 1.0.0 */ public enum SystemMessageMode { @@ -37,10 +37,10 @@ public enum SystemMessageMode { * Override individual sections of the system prompt. *

* Use this mode with - * {@link com.github.copilot.sdk.json.SystemMessageConfig#setSections} to - * selectively replace, remove, append, prepend, or transform individual - * sections of the default system prompt. An optional {@code content} string is - * appended after all sections when provided. + * {@link com.github.copilot.rpc.SystemMessageConfig#setSections} to selectively + * replace, remove, append, prepend, or transform individual sections of the + * default system prompt. An optional {@code content} string is appended after + * all sections when provided. * * @since 1.2.0 */ diff --git a/src/main/java/com/github/copilot/sdk/package-info.java b/src/main/java/com/github/copilot/package-info.java similarity index 63% rename from src/main/java/com/github/copilot/sdk/package-info.java rename to src/main/java/com/github/copilot/package-info.java index f775d575f2..e47d7ab1b2 100644 --- a/src/main/java/com/github/copilot/sdk/package-info.java +++ b/src/main/java/com/github/copilot/package-info.java @@ -13,16 +13,16 @@ * *

Main Classes

*
    - *
  • {@link com.github.copilot.sdk.CopilotClient} - The main client for - * connecting to and communicating with the Copilot CLI. Manages the lifecycle - * of the CLI process and provides methods for creating sessions, querying - * models, and checking authentication status.
  • - *
  • {@link com.github.copilot.sdk.CopilotSession} - Represents a single + *
  • {@link com.github.copilot.CopilotClient} - The main client for connecting + * to and communicating with the Copilot CLI. Manages the lifecycle of the CLI + * process and provides methods for creating sessions, querying models, and + * checking authentication status.
  • + *
  • {@link com.github.copilot.CopilotSession} - Represents a single * conversation session with Copilot. Sessions maintain context across multiple * messages and support streaming responses, tool invocations, and event * handling.
  • - *
  • {@link com.github.copilot.sdk.JsonRpcClient} - Low-level JSON-RPC client - * for communication with the Copilot CLI process.
  • + *
  • {@link com.github.copilot.JsonRpcClient} - Low-level JSON-RPC client for + * communication with the Copilot CLI process.
  • *
* *

Quick Start

@@ -43,15 +43,15 @@ * *

Related Packages

*
    - *
  • {@link com.github.copilot.sdk.generated} - Auto-generated event types - * emitted during session processing
  • - *
  • {@link com.github.copilot.sdk.json} - Configuration and data transfer + *
  • {@link com.github.copilot.generated} - Auto-generated event types emitted + * during session processing
  • + *
  • {@link com.github.copilot.rpc} - Configuration and data transfer * objects
  • *
* - * @see com.github.copilot.sdk.CopilotClient - * @see com.github.copilot.sdk.CopilotSession + * @see com.github.copilot.CopilotClient + * @see com.github.copilot.CopilotSession * @see GitHub * Repository */ -package com.github.copilot.sdk; +package com.github.copilot; diff --git a/src/main/java/com/github/copilot/sdk/json/AgentInfo.java b/src/main/java/com/github/copilot/rpc/AgentInfo.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/AgentInfo.java rename to src/main/java/com/github/copilot/rpc/AgentInfo.java index 1cc10a91d9..84e5126449 100644 --- a/src/main/java/com/github/copilot/sdk/json/AgentInfo.java +++ b/src/main/java/com/github/copilot/rpc/AgentInfo.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/Attachment.java b/src/main/java/com/github/copilot/rpc/Attachment.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/Attachment.java rename to src/main/java/com/github/copilot/rpc/Attachment.java index 04011d6f13..68f66af5b9 100644 --- a/src/main/java/com/github/copilot/sdk/json/Attachment.java +++ b/src/main/java/com/github/copilot/rpc/Attachment.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchHandler.java b/src/main/java/com/github/copilot/rpc/AutoModeSwitchHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/AutoModeSwitchHandler.java rename to src/main/java/com/github/copilot/rpc/AutoModeSwitchHandler.java index 5fa19f4b1f..781088ba98 100644 --- a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchHandler.java +++ b/src/main/java/com/github/copilot/rpc/AutoModeSwitchHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchInvocation.java b/src/main/java/com/github/copilot/rpc/AutoModeSwitchInvocation.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/AutoModeSwitchInvocation.java rename to src/main/java/com/github/copilot/rpc/AutoModeSwitchInvocation.java index 278d10ccfd..9dd4994a04 100644 --- a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchInvocation.java +++ b/src/main/java/com/github/copilot/rpc/AutoModeSwitchInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context for an auto-mode-switch request invocation. diff --git a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchRequest.java b/src/main/java/com/github/copilot/rpc/AutoModeSwitchRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/AutoModeSwitchRequest.java rename to src/main/java/com/github/copilot/rpc/AutoModeSwitchRequest.java index 0ef784c02a..5b0f0d4919 100644 --- a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchRequest.java +++ b/src/main/java/com/github/copilot/rpc/AutoModeSwitchRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchResponse.java b/src/main/java/com/github/copilot/rpc/AutoModeSwitchResponse.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/AutoModeSwitchResponse.java rename to src/main/java/com/github/copilot/rpc/AutoModeSwitchResponse.java index c072b73e2b..a254f9ca88 100644 --- a/src/main/java/com/github/copilot/sdk/json/AutoModeSwitchResponse.java +++ b/src/main/java/com/github/copilot/rpc/AutoModeSwitchResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonValue; diff --git a/src/main/java/com/github/copilot/sdk/json/AzureOptions.java b/src/main/java/com/github/copilot/rpc/AzureOptions.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/AzureOptions.java rename to src/main/java/com/github/copilot/rpc/AzureOptions.java index c2e146c196..7adbc5656b 100644 --- a/src/main/java/com/github/copilot/sdk/json/AzureOptions.java +++ b/src/main/java/com/github/copilot/rpc/AzureOptions.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/BlobAttachment.java b/src/main/java/com/github/copilot/rpc/BlobAttachment.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/BlobAttachment.java rename to src/main/java/com/github/copilot/rpc/BlobAttachment.java index d58a1e15e7..fe15293c62 100644 --- a/src/main/java/com/github/copilot/sdk/json/BlobAttachment.java +++ b/src/main/java/com/github/copilot/rpc/BlobAttachment.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java b/src/main/java/com/github/copilot/rpc/CloudSessionOptions.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java rename to src/main/java/com/github/copilot/rpc/CloudSessionOptions.java index 897d07edaf..b63bfbbcd5 100644 --- a/src/main/java/com/github/copilot/sdk/json/CloudSessionOptions.java +++ b/src/main/java/com/github/copilot/rpc/CloudSessionOptions.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java b/src/main/java/com/github/copilot/rpc/CloudSessionRepository.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java rename to src/main/java/com/github/copilot/rpc/CloudSessionRepository.java index 5806c22cd7..c502693c3d 100644 --- a/src/main/java/com/github/copilot/sdk/json/CloudSessionRepository.java +++ b/src/main/java/com/github/copilot/rpc/CloudSessionRepository.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/CommandContext.java b/src/main/java/com/github/copilot/rpc/CommandContext.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/CommandContext.java rename to src/main/java/com/github/copilot/rpc/CommandContext.java index 4657699bb9..ec423831b6 100644 --- a/src/main/java/com/github/copilot/sdk/json/CommandContext.java +++ b/src/main/java/com/github/copilot/rpc/CommandContext.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context passed to a {@link CommandHandler} when a slash command is executed. diff --git a/src/main/java/com/github/copilot/sdk/json/CommandDefinition.java b/src/main/java/com/github/copilot/rpc/CommandDefinition.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/CommandDefinition.java rename to src/main/java/com/github/copilot/rpc/CommandDefinition.java index 33a6cbada5..c64c71cd9e 100644 --- a/src/main/java/com/github/copilot/sdk/json/CommandDefinition.java +++ b/src/main/java/com/github/copilot/rpc/CommandDefinition.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Defines a slash command that users can invoke from the CLI TUI. diff --git a/src/main/java/com/github/copilot/sdk/json/CommandHandler.java b/src/main/java/com/github/copilot/rpc/CommandHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/CommandHandler.java rename to src/main/java/com/github/copilot/rpc/CommandHandler.java index d63955638b..1d54c9535d 100644 --- a/src/main/java/com/github/copilot/sdk/json/CommandHandler.java +++ b/src/main/java/com/github/copilot/rpc/CommandHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/CommandWireDefinition.java b/src/main/java/com/github/copilot/rpc/CommandWireDefinition.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/CommandWireDefinition.java rename to src/main/java/com/github/copilot/rpc/CommandWireDefinition.java index 2ee65c58ed..20b8d5b63d 100644 --- a/src/main/java/com/github/copilot/sdk/json/CommandWireDefinition.java +++ b/src/main/java/com/github/copilot/rpc/CommandWireDefinition.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/CopilotClientOptions.java b/src/main/java/com/github/copilot/rpc/CopilotClientOptions.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/CopilotClientOptions.java rename to src/main/java/com/github/copilot/rpc/CopilotClientOptions.java index e4605ffe10..cb372d914b 100644 --- a/src/main/java/com/github/copilot/sdk/json/CopilotClientOptions.java +++ b/src/main/java/com/github/copilot/rpc/CopilotClientOptions.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Arrays; import java.util.HashMap; @@ -20,7 +20,7 @@ /** * Configuration options for creating a - * {@link com.github.copilot.sdk.CopilotClient}. + * {@link com.github.copilot.CopilotClient}. *

* This class provides a fluent API for configuring how the client connects to * and manages the Copilot CLI server. All setter methods return {@code this} @@ -35,7 +35,7 @@ * var client = new CopilotClient(options); * } * - * @see com.github.copilot.sdk.CopilotClient + * @see com.github.copilot.CopilotClient * @since 1.0.0 */ @JsonInclude(JsonInclude.Include.NON_NULL) diff --git a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java b/src/main/java/com/github/copilot/rpc/CreateSessionRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java rename to src/main/java/com/github/copilot/rpc/CreateSessionRequest.java index 881840a736..ae353f8e49 100644 --- a/src/main/java/com/github/copilot/sdk/json/CreateSessionRequest.java +++ b/src/main/java/com/github/copilot/rpc/CreateSessionRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; @@ -15,10 +15,9 @@ * Internal request object for creating a new session. *

* This is a low-level class for JSON-RPC communication. For creating sessions, - * use - * {@link com.github.copilot.sdk.CopilotClient#createSession(SessionConfig)}. + * use {@link com.github.copilot.CopilotClient#createSession(SessionConfig)}. * - * @see com.github.copilot.sdk.CopilotClient#createSession(SessionConfig) + * @see com.github.copilot.CopilotClient#createSession(SessionConfig) * @see SessionConfig * @since 1.0.0 */ diff --git a/src/main/java/com/github/copilot/sdk/json/CreateSessionResponse.java b/src/main/java/com/github/copilot/rpc/CreateSessionResponse.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/CreateSessionResponse.java rename to src/main/java/com/github/copilot/rpc/CreateSessionResponse.java index b47af050bc..e109267692 100644 --- a/src/main/java/com/github/copilot/sdk/json/CreateSessionResponse.java +++ b/src/main/java/com/github/copilot/rpc/CreateSessionResponse.java @@ -1,4 +1,4 @@ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java b/src/main/java/com/github/copilot/rpc/CustomAgentConfig.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java rename to src/main/java/com/github/copilot/rpc/CustomAgentConfig.java index cb2dbf452b..5136f77786 100644 --- a/src/main/java/com/github/copilot/sdk/json/CustomAgentConfig.java +++ b/src/main/java/com/github/copilot/rpc/CustomAgentConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/DefaultAgentConfig.java b/src/main/java/com/github/copilot/rpc/DefaultAgentConfig.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/DefaultAgentConfig.java rename to src/main/java/com/github/copilot/rpc/DefaultAgentConfig.java index 88f39ecff9..4be5dbbb9b 100644 --- a/src/main/java/com/github/copilot/sdk/json/DefaultAgentConfig.java +++ b/src/main/java/com/github/copilot/rpc/DefaultAgentConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/DeleteSessionResponse.java b/src/main/java/com/github/copilot/rpc/DeleteSessionResponse.java similarity index 89% rename from src/main/java/com/github/copilot/sdk/json/DeleteSessionResponse.java rename to src/main/java/com/github/copilot/rpc/DeleteSessionResponse.java index 1f53dfac3a..33e7091830 100644 --- a/src/main/java/com/github/copilot/sdk/json/DeleteSessionResponse.java +++ b/src/main/java/com/github/copilot/rpc/DeleteSessionResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; @@ -13,7 +13,7 @@ * This is a low-level class for JSON-RPC communication containing the result of * a session deletion operation. * - * @see com.github.copilot.sdk.CopilotClient#deleteSession(String) + * @see com.github.copilot.CopilotClient#deleteSession(String) * @since 1.0.0 */ @JsonInclude(JsonInclude.Include.NON_NULL) diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationContext.java b/src/main/java/com/github/copilot/rpc/ElicitationContext.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ElicitationContext.java rename to src/main/java/com/github/copilot/rpc/ElicitationContext.java index 87687b1940..84c870e93a 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationContext.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationContext.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context for an elicitation request received from the server or MCP tools. diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationHandler.java b/src/main/java/com/github/copilot/rpc/ElicitationHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ElicitationHandler.java rename to src/main/java/com/github/copilot/rpc/ElicitationHandler.java index d0a0d06163..ed62d1248f 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationHandler.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationParams.java b/src/main/java/com/github/copilot/rpc/ElicitationParams.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ElicitationParams.java rename to src/main/java/com/github/copilot/rpc/ElicitationParams.java index 8bd81022e0..273681bba9 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationParams.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationParams.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Parameters for an elicitation request sent from the SDK to the host. diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationResult.java b/src/main/java/com/github/copilot/rpc/ElicitationResult.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ElicitationResult.java rename to src/main/java/com/github/copilot/rpc/ElicitationResult.java index 3ba30b83d9..42073de351 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationResult.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationResult.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationResultAction.java b/src/main/java/com/github/copilot/rpc/ElicitationResultAction.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/ElicitationResultAction.java rename to src/main/java/com/github/copilot/rpc/ElicitationResultAction.java index fd280cdebb..51fea7852d 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationResultAction.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationResultAction.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Action value for an {@link ElicitationResult}. diff --git a/src/main/java/com/github/copilot/sdk/json/ElicitationSchema.java b/src/main/java/com/github/copilot/rpc/ElicitationSchema.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ElicitationSchema.java rename to src/main/java/com/github/copilot/rpc/ElicitationSchema.java index c3d5487753..6111bf53b3 100644 --- a/src/main/java/com/github/copilot/sdk/json/ElicitationSchema.java +++ b/src/main/java/com/github/copilot/rpc/ElicitationSchema.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeHandler.java b/src/main/java/com/github/copilot/rpc/ExitPlanModeHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ExitPlanModeHandler.java rename to src/main/java/com/github/copilot/rpc/ExitPlanModeHandler.java index 13ecbe075c..28addcb0c2 100644 --- a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeHandler.java +++ b/src/main/java/com/github/copilot/rpc/ExitPlanModeHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeInvocation.java b/src/main/java/com/github/copilot/rpc/ExitPlanModeInvocation.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/ExitPlanModeInvocation.java rename to src/main/java/com/github/copilot/rpc/ExitPlanModeInvocation.java index 6fd0231266..934c77d65f 100644 --- a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeInvocation.java +++ b/src/main/java/com/github/copilot/rpc/ExitPlanModeInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context for an exit-plan-mode request invocation. diff --git a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeRequest.java b/src/main/java/com/github/copilot/rpc/ExitPlanModeRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ExitPlanModeRequest.java rename to src/main/java/com/github/copilot/rpc/ExitPlanModeRequest.java index be09350ef3..63499ee570 100644 --- a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeRequest.java +++ b/src/main/java/com/github/copilot/rpc/ExitPlanModeRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeResult.java b/src/main/java/com/github/copilot/rpc/ExitPlanModeResult.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ExitPlanModeResult.java rename to src/main/java/com/github/copilot/rpc/ExitPlanModeResult.java index 876e750b46..d61377cbcc 100644 --- a/src/main/java/com/github/copilot/sdk/json/ExitPlanModeResult.java +++ b/src/main/java/com/github/copilot/rpc/ExitPlanModeResult.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetAuthStatusResponse.java b/src/main/java/com/github/copilot/rpc/GetAuthStatusResponse.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/GetAuthStatusResponse.java rename to src/main/java/com/github/copilot/rpc/GetAuthStatusResponse.java index 4cf5d80c6a..d2e65c89b5 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetAuthStatusResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetAuthStatusResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetForegroundSessionResponse.java b/src/main/java/com/github/copilot/rpc/GetForegroundSessionResponse.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/GetForegroundSessionResponse.java rename to src/main/java/com/github/copilot/rpc/GetForegroundSessionResponse.java index 96962c6903..65c0557cac 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetForegroundSessionResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetForegroundSessionResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetLastSessionIdResponse.java b/src/main/java/com/github/copilot/rpc/GetLastSessionIdResponse.java similarity index 89% rename from src/main/java/com/github/copilot/sdk/json/GetLastSessionIdResponse.java rename to src/main/java/com/github/copilot/rpc/GetLastSessionIdResponse.java index 52042f57c1..3f488d0e9e 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetLastSessionIdResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetLastSessionIdResponse.java @@ -1,4 +1,4 @@ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetMessagesResponse.java b/src/main/java/com/github/copilot/rpc/GetMessagesResponse.java similarity index 91% rename from src/main/java/com/github/copilot/sdk/json/GetMessagesResponse.java rename to src/main/java/com/github/copilot/rpc/GetMessagesResponse.java index 1a3ed6aaec..7726ab649f 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetMessagesResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetMessagesResponse.java @@ -1,4 +1,4 @@ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/GetModelsResponse.java b/src/main/java/com/github/copilot/rpc/GetModelsResponse.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/GetModelsResponse.java rename to src/main/java/com/github/copilot/rpc/GetModelsResponse.java index 8f13912b99..b5eefa9ef2 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetModelsResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetModelsResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetSessionMetadataResponse.java b/src/main/java/com/github/copilot/rpc/GetSessionMetadataResponse.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/json/GetSessionMetadataResponse.java rename to src/main/java/com/github/copilot/rpc/GetSessionMetadataResponse.java index eeceb41776..7ffeb29d03 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetSessionMetadataResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetSessionMetadataResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/GetStatusResponse.java b/src/main/java/com/github/copilot/rpc/GetStatusResponse.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/GetStatusResponse.java rename to src/main/java/com/github/copilot/rpc/GetStatusResponse.java index a77f378abe..434f00353b 100644 --- a/src/main/java/com/github/copilot/sdk/json/GetStatusResponse.java +++ b/src/main/java/com/github/copilot/rpc/GetStatusResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/HookInvocation.java b/src/main/java/com/github/copilot/rpc/HookInvocation.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/HookInvocation.java rename to src/main/java/com/github/copilot/rpc/HookInvocation.java index 39ab506862..40d807246a 100644 --- a/src/main/java/com/github/copilot/sdk/json/HookInvocation.java +++ b/src/main/java/com/github/copilot/rpc/HookInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context for a hook invocation. diff --git a/src/main/java/com/github/copilot/sdk/json/InfiniteSessionConfig.java b/src/main/java/com/github/copilot/rpc/InfiniteSessionConfig.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/InfiniteSessionConfig.java rename to src/main/java/com/github/copilot/rpc/InfiniteSessionConfig.java index 561796ede7..02718d6a2f 100644 --- a/src/main/java/com/github/copilot/sdk/json/InfiniteSessionConfig.java +++ b/src/main/java/com/github/copilot/rpc/InfiniteSessionConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/InputOptions.java b/src/main/java/com/github/copilot/rpc/InputOptions.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/InputOptions.java rename to src/main/java/com/github/copilot/rpc/InputOptions.java index ca1cc5d385..db938a3f49 100644 --- a/src/main/java/com/github/copilot/sdk/json/InputOptions.java +++ b/src/main/java/com/github/copilot/rpc/InputOptions.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/src/main/java/com/github/copilot/sdk/json/JsonRpcError.java b/src/main/java/com/github/copilot/rpc/JsonRpcError.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/JsonRpcError.java rename to src/main/java/com/github/copilot/rpc/JsonRpcError.java index e7f021f43d..f270c43274 100644 --- a/src/main/java/com/github/copilot/sdk/json/JsonRpcError.java +++ b/src/main/java/com/github/copilot/rpc/JsonRpcError.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/JsonRpcRequest.java b/src/main/java/com/github/copilot/rpc/JsonRpcRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/JsonRpcRequest.java rename to src/main/java/com/github/copilot/rpc/JsonRpcRequest.java index 1921370e25..6bef7f370f 100644 --- a/src/main/java/com/github/copilot/sdk/json/JsonRpcRequest.java +++ b/src/main/java/com/github/copilot/rpc/JsonRpcRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/JsonRpcResponse.java b/src/main/java/com/github/copilot/rpc/JsonRpcResponse.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/JsonRpcResponse.java rename to src/main/java/com/github/copilot/rpc/JsonRpcResponse.java index 1a78ed0174..6c80474afd 100644 --- a/src/main/java/com/github/copilot/sdk/json/JsonRpcResponse.java +++ b/src/main/java/com/github/copilot/rpc/JsonRpcResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ListSessionsResponse.java b/src/main/java/com/github/copilot/rpc/ListSessionsResponse.java similarity index 89% rename from src/main/java/com/github/copilot/sdk/json/ListSessionsResponse.java rename to src/main/java/com/github/copilot/rpc/ListSessionsResponse.java index b535ee396a..61955eb422 100644 --- a/src/main/java/com/github/copilot/sdk/json/ListSessionsResponse.java +++ b/src/main/java/com/github/copilot/rpc/ListSessionsResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; @@ -15,7 +15,7 @@ * This is a low-level class for JSON-RPC communication containing the list of * available sessions. * - * @see com.github.copilot.sdk.CopilotClient#listSessions() + * @see com.github.copilot.CopilotClient#listSessions() * @see SessionMetadata * @since 1.0.0 */ diff --git a/src/main/java/com/github/copilot/sdk/json/McpHttpServerConfig.java b/src/main/java/com/github/copilot/rpc/McpHttpServerConfig.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/McpHttpServerConfig.java rename to src/main/java/com/github/copilot/rpc/McpHttpServerConfig.java index 7017db3d2d..83a42a88f8 100644 --- a/src/main/java/com/github/copilot/sdk/json/McpHttpServerConfig.java +++ b/src/main/java/com/github/copilot/rpc/McpHttpServerConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/McpServerConfig.java b/src/main/java/com/github/copilot/rpc/McpServerConfig.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/McpServerConfig.java rename to src/main/java/com/github/copilot/rpc/McpServerConfig.java index 7cf39af6b6..aef365d3f3 100644 --- a/src/main/java/com/github/copilot/sdk/json/McpServerConfig.java +++ b/src/main/java/com/github/copilot/rpc/McpServerConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/McpStdioServerConfig.java b/src/main/java/com/github/copilot/rpc/McpStdioServerConfig.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/McpStdioServerConfig.java rename to src/main/java/com/github/copilot/rpc/McpStdioServerConfig.java index 900034be61..8ce739ffbd 100644 --- a/src/main/java/com/github/copilot/sdk/json/McpStdioServerConfig.java +++ b/src/main/java/com/github/copilot/rpc/McpStdioServerConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/MessageAttachment.java b/src/main/java/com/github/copilot/rpc/MessageAttachment.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/MessageAttachment.java rename to src/main/java/com/github/copilot/rpc/MessageAttachment.java index 3371a56ba3..e28c5da2ea 100644 --- a/src/main/java/com/github/copilot/sdk/json/MessageAttachment.java +++ b/src/main/java/com/github/copilot/rpc/MessageAttachment.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonSubTypes; import com.fasterxml.jackson.annotation.JsonTypeInfo; diff --git a/src/main/java/com/github/copilot/sdk/json/MessageOptions.java b/src/main/java/com/github/copilot/rpc/MessageOptions.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/MessageOptions.java rename to src/main/java/com/github/copilot/rpc/MessageOptions.java index 21909d5766..49b25c0947 100644 --- a/src/main/java/com/github/copilot/sdk/json/MessageOptions.java +++ b/src/main/java/com/github/copilot/rpc/MessageOptions.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.ArrayList; import java.util.Collections; @@ -36,7 +36,7 @@ * session.send(options).get(); * } * - * @see com.github.copilot.sdk.CopilotSession#send(MessageOptions) + * @see com.github.copilot.CopilotSession#send(MessageOptions) * @since 1.0.0 */ @JsonInclude(JsonInclude.Include.NON_NULL) diff --git a/src/main/java/com/github/copilot/sdk/json/ModelBilling.java b/src/main/java/com/github/copilot/rpc/ModelBilling.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/ModelBilling.java rename to src/main/java/com/github/copilot/rpc/ModelBilling.java index d04ef0d3e5..c7bfc72b59 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelBilling.java +++ b/src/main/java/com/github/copilot/rpc/ModelBilling.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelCapabilities.java b/src/main/java/com/github/copilot/rpc/ModelCapabilities.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/ModelCapabilities.java rename to src/main/java/com/github/copilot/rpc/ModelCapabilities.java index 1cadcb05e4..2a71601cfd 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelCapabilities.java +++ b/src/main/java/com/github/copilot/rpc/ModelCapabilities.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelCapabilitiesOverride.java b/src/main/java/com/github/copilot/rpc/ModelCapabilitiesOverride.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ModelCapabilitiesOverride.java rename to src/main/java/com/github/copilot/rpc/ModelCapabilitiesOverride.java index 02727d4b5c..6a670252a4 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelCapabilitiesOverride.java +++ b/src/main/java/com/github/copilot/rpc/ModelCapabilitiesOverride.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; @@ -16,7 +16,7 @@ * defaults. *

* Use this to override specific model capabilities when creating a session or - * switching models with {@link com.github.copilot.sdk.CopilotSession#setModel}. + * switching models with {@link com.github.copilot.CopilotSession#setModel}. * Only non-null fields are applied; unset fields retain their runtime defaults. * *

Example: Disable vision for a session

@@ -33,7 +33,7 @@ * new ModelCapabilitiesOverride().setSupports(new ModelCapabilitiesOverride.Supports().setVision(true))).get(); * } * - * @see com.github.copilot.sdk.CopilotSession#setModel(String, String, + * @see com.github.copilot.CopilotSession#setModel(String, String, * ModelCapabilitiesOverride) * @see SessionConfig#setModelCapabilities(ModelCapabilitiesOverride) * @since 1.3.0 diff --git a/src/main/java/com/github/copilot/sdk/json/ModelInfo.java b/src/main/java/com/github/copilot/rpc/ModelInfo.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/ModelInfo.java rename to src/main/java/com/github/copilot/rpc/ModelInfo.java index e047900698..b9331c8681 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelInfo.java +++ b/src/main/java/com/github/copilot/rpc/ModelInfo.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelLimits.java b/src/main/java/com/github/copilot/rpc/ModelLimits.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ModelLimits.java rename to src/main/java/com/github/copilot/rpc/ModelLimits.java index 734a50deda..a27741823b 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelLimits.java +++ b/src/main/java/com/github/copilot/rpc/ModelLimits.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelPolicy.java b/src/main/java/com/github/copilot/rpc/ModelPolicy.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/ModelPolicy.java rename to src/main/java/com/github/copilot/rpc/ModelPolicy.java index 9cf2262722..75fe36b11e 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelPolicy.java +++ b/src/main/java/com/github/copilot/rpc/ModelPolicy.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelSupports.java b/src/main/java/com/github/copilot/rpc/ModelSupports.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ModelSupports.java rename to src/main/java/com/github/copilot/rpc/ModelSupports.java index 905ac68235..1462cdd983 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelSupports.java +++ b/src/main/java/com/github/copilot/rpc/ModelSupports.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ModelVisionLimits.java b/src/main/java/com/github/copilot/rpc/ModelVisionLimits.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ModelVisionLimits.java rename to src/main/java/com/github/copilot/rpc/ModelVisionLimits.java index 331985e539..204099adfd 100644 --- a/src/main/java/com/github/copilot/sdk/json/ModelVisionLimits.java +++ b/src/main/java/com/github/copilot/rpc/ModelVisionLimits.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/PermissionHandler.java b/src/main/java/com/github/copilot/rpc/PermissionHandler.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PermissionHandler.java rename to src/main/java/com/github/copilot/rpc/PermissionHandler.java index d230748fcf..bd8e70b750 100644 --- a/src/main/java/com/github/copilot/sdk/json/PermissionHandler.java +++ b/src/main/java/com/github/copilot/rpc/PermissionHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/PermissionInvocation.java b/src/main/java/com/github/copilot/rpc/PermissionInvocation.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/PermissionInvocation.java rename to src/main/java/com/github/copilot/rpc/PermissionInvocation.java index 218a570cf5..bda5bdde0a 100644 --- a/src/main/java/com/github/copilot/sdk/json/PermissionInvocation.java +++ b/src/main/java/com/github/copilot/rpc/PermissionInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context information for a permission request invocation. diff --git a/src/main/java/com/github/copilot/sdk/json/PermissionRequest.java b/src/main/java/com/github/copilot/rpc/PermissionRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PermissionRequest.java rename to src/main/java/com/github/copilot/rpc/PermissionRequest.java index 99dc7018ab..51a303feb0 100644 --- a/src/main/java/com/github/copilot/sdk/json/PermissionRequest.java +++ b/src/main/java/com/github/copilot/rpc/PermissionRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/PermissionRequestResult.java b/src/main/java/com/github/copilot/rpc/PermissionRequestResult.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PermissionRequestResult.java rename to src/main/java/com/github/copilot/rpc/PermissionRequestResult.java index 3d7390f036..6c611a064a 100644 --- a/src/main/java/com/github/copilot/sdk/json/PermissionRequestResult.java +++ b/src/main/java/com/github/copilot/rpc/PermissionRequestResult.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/PermissionRequestResultKind.java b/src/main/java/com/github/copilot/rpc/PermissionRequestResultKind.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/PermissionRequestResultKind.java rename to src/main/java/com/github/copilot/rpc/PermissionRequestResultKind.java index f782fd76b6..95476c36f6 100644 --- a/src/main/java/com/github/copilot/sdk/json/PermissionRequestResultKind.java +++ b/src/main/java/com/github/copilot/rpc/PermissionRequestResultKind.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Objects; diff --git a/src/main/java/com/github/copilot/sdk/json/PingResponse.java b/src/main/java/com/github/copilot/rpc/PingResponse.java similarity index 92% rename from src/main/java/com/github/copilot/sdk/json/PingResponse.java rename to src/main/java/com/github/copilot/rpc/PingResponse.java index 3dec2b352d..efa607c6b1 100644 --- a/src/main/java/com/github/copilot/sdk/json/PingResponse.java +++ b/src/main/java/com/github/copilot/rpc/PingResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; @@ -13,7 +13,7 @@ * The ping response confirms connectivity and provides information about the * server, including the protocol version. * - * @see com.github.copilot.sdk.CopilotClient#ping(String) + * @see com.github.copilot.CopilotClient#ping(String) * @since 1.0.0 */ @JsonInclude(JsonInclude.Include.NON_NULL) diff --git a/src/main/java/com/github/copilot/sdk/json/PostToolUseHandler.java b/src/main/java/com/github/copilot/rpc/PostToolUseHandler.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/PostToolUseHandler.java rename to src/main/java/com/github/copilot/rpc/PostToolUseHandler.java index 12688e63c4..7b5f1601cd 100644 --- a/src/main/java/com/github/copilot/sdk/json/PostToolUseHandler.java +++ b/src/main/java/com/github/copilot/rpc/PostToolUseHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java b/src/main/java/com/github/copilot/rpc/PostToolUseHookInput.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java rename to src/main/java/com/github/copilot/rpc/PostToolUseHookInput.java index 4ac3985064..9da5aee883 100644 --- a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookInput.java +++ b/src/main/java/com/github/copilot/rpc/PostToolUseHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookOutput.java b/src/main/java/com/github/copilot/rpc/PostToolUseHookOutput.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/PostToolUseHookOutput.java rename to src/main/java/com/github/copilot/rpc/PostToolUseHookOutput.java index a532bf15e6..24af027076 100644 --- a/src/main/java/com/github/copilot/sdk/json/PostToolUseHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/PostToolUseHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHandler.java b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHandler.java rename to src/main/java/com/github/copilot/rpc/PreMcpToolCallHandler.java index 4ace4d8d8a..9e7d147edd 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHandler.java +++ b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookInput.java b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHookInput.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookInput.java rename to src/main/java/com/github/copilot/rpc/PreMcpToolCallHookInput.java index 17e32c02f8..881065aa86 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookInput.java +++ b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookOutput.java b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHookOutput.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookOutput.java rename to src/main/java/com/github/copilot/rpc/PreMcpToolCallHookOutput.java index a051113266..21da35e5e6 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreMcpToolCallHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/PreMcpToolCallHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/PreToolUseHandler.java b/src/main/java/com/github/copilot/rpc/PreToolUseHandler.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/PreToolUseHandler.java rename to src/main/java/com/github/copilot/rpc/PreToolUseHandler.java index 3f98972e54..94f17acab4 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreToolUseHandler.java +++ b/src/main/java/com/github/copilot/rpc/PreToolUseHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java b/src/main/java/com/github/copilot/rpc/PreToolUseHookInput.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java rename to src/main/java/com/github/copilot/rpc/PreToolUseHookInput.java index 6cbab78b7f..b6cb118590 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookInput.java +++ b/src/main/java/com/github/copilot/rpc/PreToolUseHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookOutput.java b/src/main/java/com/github/copilot/rpc/PreToolUseHookOutput.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/PreToolUseHookOutput.java rename to src/main/java/com/github/copilot/rpc/PreToolUseHookOutput.java index a92c8f01a9..25d49a54d5 100644 --- a/src/main/java/com/github/copilot/sdk/json/PreToolUseHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/PreToolUseHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ProviderConfig.java b/src/main/java/com/github/copilot/rpc/ProviderConfig.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/ProviderConfig.java rename to src/main/java/com/github/copilot/rpc/ProviderConfig.java index 1c5e6fcc7f..6c9cf379fe 100644 --- a/src/main/java/com/github/copilot/sdk/json/ProviderConfig.java +++ b/src/main/java/com/github/copilot/rpc/ProviderConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java b/src/main/java/com/github/copilot/rpc/ResumeSessionConfig.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java rename to src/main/java/com/github/copilot/rpc/ResumeSessionConfig.java index 72c9f6f47a..e110af3fff 100644 --- a/src/main/java/com/github/copilot/sdk/json/ResumeSessionConfig.java +++ b/src/main/java/com/github/copilot/rpc/ResumeSessionConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.ArrayList; import java.util.Collections; @@ -13,7 +13,7 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonIgnore; -import com.github.copilot.sdk.generated.SessionEvent; +import com.github.copilot.generated.SessionEvent; import java.util.Optional; /** @@ -31,7 +31,7 @@ * var session = client.resumeSession(sessionId, config).get(); * } * - * @see com.github.copilot.sdk.CopilotClient#resumeSession(String, + * @see com.github.copilot.CopilotClient#resumeSession(String, * ResumeSessionConfig) * @since 1.0.0 */ @@ -241,7 +241,7 @@ public ResumeSessionConfig setProvider(ProviderConfig provider) { * {@code true}, telemetry is enabled for GitHub-authenticated sessions. When a * custom {@link ProviderConfig} (BYOK) is configured, session telemetry is * always disabled regardless of this setting. This is independent of - * {@link com.github.copilot.sdk.json.CopilotClientOptions#getTelemetry() + * {@link com.github.copilot.rpc.CopilotClientOptions#getTelemetry() * CopilotClientOptions.TelemetryConfig}, which configures OpenTelemetry export * for observability. * @@ -743,9 +743,9 @@ public Consumer getOnEvent() { * Sets an event handler that is registered on the session before the * {@code session.resume} RPC is issued. *

- * Equivalent to calling - * {@link com.github.copilot.sdk.CopilotSession#on(Consumer)} immediately after - * resumption, but executes earlier in the lifecycle so no events are missed. + * Equivalent to calling {@link com.github.copilot.CopilotSession#on(Consumer)} + * immediately after resumption, but executes earlier in the lifecycle so no + * events are missed. * * @param onEvent * the event handler to register before session resumption diff --git a/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java b/src/main/java/com/github/copilot/rpc/ResumeSessionRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java rename to src/main/java/com/github/copilot/rpc/ResumeSessionRequest.java index 8aca77b7d2..bd8613d547 100644 --- a/src/main/java/com/github/copilot/sdk/json/ResumeSessionRequest.java +++ b/src/main/java/com/github/copilot/rpc/ResumeSessionRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; @@ -16,9 +16,9 @@ *

* This is a low-level class for JSON-RPC communication. For resuming sessions, * use - * {@link com.github.copilot.sdk.CopilotClient#resumeSession(String, ResumeSessionConfig)}. + * {@link com.github.copilot.CopilotClient#resumeSession(String, ResumeSessionConfig)}. * - * @see com.github.copilot.sdk.CopilotClient#resumeSession(String, + * @see com.github.copilot.CopilotClient#resumeSession(String, * ResumeSessionConfig) * @see ResumeSessionConfig * @since 1.0.0 diff --git a/src/main/java/com/github/copilot/sdk/json/ResumeSessionResponse.java b/src/main/java/com/github/copilot/rpc/ResumeSessionResponse.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/ResumeSessionResponse.java rename to src/main/java/com/github/copilot/rpc/ResumeSessionResponse.java index 8349c5d307..cd787d37fb 100644 --- a/src/main/java/com/github/copilot/sdk/json/ResumeSessionResponse.java +++ b/src/main/java/com/github/copilot/rpc/ResumeSessionResponse.java @@ -1,4 +1,4 @@ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SectionOverride.java b/src/main/java/com/github/copilot/rpc/SectionOverride.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/SectionOverride.java rename to src/main/java/com/github/copilot/rpc/SectionOverride.java index 40a58449d3..0b4dd05ce9 100644 --- a/src/main/java/com/github/copilot/sdk/json/SectionOverride.java +++ b/src/main/java/com/github/copilot/rpc/SectionOverride.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; import java.util.function.Function; diff --git a/src/main/java/com/github/copilot/sdk/json/SectionOverrideAction.java b/src/main/java/com/github/copilot/rpc/SectionOverrideAction.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SectionOverrideAction.java rename to src/main/java/com/github/copilot/rpc/SectionOverrideAction.java index 2d179f753f..f3569009b8 100644 --- a/src/main/java/com/github/copilot/sdk/json/SectionOverrideAction.java +++ b/src/main/java/com/github/copilot/rpc/SectionOverrideAction.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonValue; diff --git a/src/main/java/com/github/copilot/sdk/json/SendMessageRequest.java b/src/main/java/com/github/copilot/rpc/SendMessageRequest.java similarity index 92% rename from src/main/java/com/github/copilot/sdk/json/SendMessageRequest.java rename to src/main/java/com/github/copilot/rpc/SendMessageRequest.java index 2ef39770f0..bdd904a597 100644 --- a/src/main/java/com/github/copilot/sdk/json/SendMessageRequest.java +++ b/src/main/java/com/github/copilot/rpc/SendMessageRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; @@ -15,10 +15,10 @@ * Internal request object for sending a message to a session. *

* This is a low-level class for JSON-RPC communication. For sending messages, - * use {@link com.github.copilot.sdk.CopilotSession#send(String)} or - * {@link com.github.copilot.sdk.CopilotSession#sendAndWait(String)}. + * use {@link com.github.copilot.CopilotSession#send(String)} or + * {@link com.github.copilot.CopilotSession#sendAndWait(String)}. * - * @see com.github.copilot.sdk.CopilotSession + * @see com.github.copilot.CopilotSession * @see MessageOptions * @since 1.0.0 */ diff --git a/src/main/java/com/github/copilot/sdk/json/SendMessageResponse.java b/src/main/java/com/github/copilot/rpc/SendMessageResponse.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/SendMessageResponse.java rename to src/main/java/com/github/copilot/rpc/SendMessageResponse.java index 7d79a7a2b2..b3d158864d 100644 --- a/src/main/java/com/github/copilot/sdk/json/SendMessageResponse.java +++ b/src/main/java/com/github/copilot/rpc/SendMessageResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionCapabilities.java b/src/main/java/com/github/copilot/rpc/SessionCapabilities.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/SessionCapabilities.java rename to src/main/java/com/github/copilot/rpc/SessionCapabilities.java index 4eb4fc025c..b0daf4a5b9 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionCapabilities.java +++ b/src/main/java/com/github/copilot/rpc/SessionCapabilities.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Represents the capabilities reported by the host for a session. diff --git a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java b/src/main/java/com/github/copilot/rpc/SessionConfig.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionConfig.java rename to src/main/java/com/github/copilot/rpc/SessionConfig.java index ddf06cca7f..3ba19d8c26 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionConfig.java +++ b/src/main/java/com/github/copilot/rpc/SessionConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.ArrayList; import java.util.Collections; @@ -13,7 +13,7 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonIgnore; -import com.github.copilot.sdk.generated.SessionEvent; +import com.github.copilot.generated.SessionEvent; import java.util.Optional; /** @@ -32,7 +32,7 @@ * var session = client.createSession(config).get(); * } * - * @see com.github.copilot.sdk.CopilotClient#createSession(SessionConfig) + * @see com.github.copilot.CopilotClient#createSession(SessionConfig) * @since 1.0.0 */ @JsonInclude(JsonInclude.Include.NON_NULL) @@ -205,9 +205,9 @@ public SystemMessageConfig getSystemMessage() { * Sets the system message configuration. *

* The system message controls the behavior and personality of the assistant. - * Use {@link com.github.copilot.sdk.SystemMessageMode#APPEND} to add - * instructions while preserving default behavior, or - * {@link com.github.copilot.sdk.SystemMessageMode#REPLACE} to fully customize. + * Use {@link com.github.copilot.SystemMessageMode#APPEND} to add instructions + * while preserving default behavior, or + * {@link com.github.copilot.SystemMessageMode#REPLACE} to fully customize. * * @param systemMessage * the system message configuration @@ -296,7 +296,7 @@ public SessionConfig setProvider(ProviderConfig provider) { * {@code true}, telemetry is enabled for GitHub-authenticated sessions. When a * custom {@link ProviderConfig} (BYOK) is configured, session telemetry is * always disabled regardless of this setting. This is independent of - * {@link com.github.copilot.sdk.json.CopilotClientOptions#getTelemetry() + * {@link com.github.copilot.rpc.CopilotClientOptions#getTelemetry() * CopilotClientOptions.TelemetryConfig}, which configures OpenTelemetry export * for observability. * @@ -794,12 +794,12 @@ public Consumer getOnEvent() { * Sets an event handler that is registered on the session before the * {@code session.create} RPC is issued. *

- * Equivalent to calling - * {@link com.github.copilot.sdk.CopilotSession#on(Consumer)} immediately after - * creation, but executes earlier in the lifecycle so no events are missed. - * Using this property rather than {@code CopilotSession.on()} guarantees that - * early events emitted by the CLI during session creation (e.g. - * {@code session.start}) are delivered to the handler. + * Equivalent to calling {@link com.github.copilot.CopilotSession#on(Consumer)} + * immediately after creation, but executes earlier in the lifecycle so no + * events are missed. Using this property rather than + * {@code CopilotSession.on()} guarantees that early events emitted by the CLI + * during session creation (e.g. {@code session.start}) are delivered to the + * handler. * * @param onEvent * the event handler to register before session creation diff --git a/src/main/java/com/github/copilot/sdk/json/SessionContext.java b/src/main/java/com/github/copilot/rpc/SessionContext.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/SessionContext.java rename to src/main/java/com/github/copilot/rpc/SessionContext.java index fb6e16f8c6..1703082671 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionContext.java +++ b/src/main/java/com/github/copilot/rpc/SessionContext.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionEndHandler.java b/src/main/java/com/github/copilot/rpc/SessionEndHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionEndHandler.java rename to src/main/java/com/github/copilot/rpc/SessionEndHandler.java index e8fc908df8..d7d6082618 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionEndHandler.java +++ b/src/main/java/com/github/copilot/rpc/SessionEndHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java b/src/main/java/com/github/copilot/rpc/SessionEndHookInput.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java rename to src/main/java/com/github/copilot/rpc/SessionEndHookInput.java index 0d3d3e2945..f29b698385 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionEndHookInput.java +++ b/src/main/java/com/github/copilot/rpc/SessionEndHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionEndHookOutput.java b/src/main/java/com/github/copilot/rpc/SessionEndHookOutput.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/SessionEndHookOutput.java rename to src/main/java/com/github/copilot/rpc/SessionEndHookOutput.java index 23ebf958e0..068e85682a 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionEndHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/SessionEndHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionHooks.java b/src/main/java/com/github/copilot/rpc/SessionHooks.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/SessionHooks.java rename to src/main/java/com/github/copilot/rpc/SessionHooks.java index 301d64cb55..ebfeffe335 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionHooks.java +++ b/src/main/java/com/github/copilot/rpc/SessionHooks.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Hook handlers configuration for a session. diff --git a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEvent.java b/src/main/java/com/github/copilot/rpc/SessionLifecycleEvent.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionLifecycleEvent.java rename to src/main/java/com/github/copilot/rpc/SessionLifecycleEvent.java index 59d1e252fa..55857a74a8 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEvent.java +++ b/src/main/java/com/github/copilot/rpc/SessionLifecycleEvent.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventMetadata.java b/src/main/java/com/github/copilot/rpc/SessionLifecycleEventMetadata.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventMetadata.java rename to src/main/java/com/github/copilot/rpc/SessionLifecycleEventMetadata.java index 7c76c07aae..bf384a7ce7 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventMetadata.java +++ b/src/main/java/com/github/copilot/rpc/SessionLifecycleEventMetadata.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventTypes.java b/src/main/java/com/github/copilot/rpc/SessionLifecycleEventTypes.java similarity index 90% rename from src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventTypes.java rename to src/main/java/com/github/copilot/rpc/SessionLifecycleEventTypes.java index b3eb35598b..109c85b940 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleEventTypes.java +++ b/src/main/java/com/github/copilot/rpc/SessionLifecycleEventTypes.java @@ -2,13 +2,13 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Types of session lifecycle events. *

* Constants for session lifecycle event types used with - * {@link com.github.copilot.sdk.CopilotClient#onLifecycle(String, SessionLifecycleHandler)}. + * {@link com.github.copilot.CopilotClient#onLifecycle(String, SessionLifecycleHandler)}. * * @since 1.0.0 */ diff --git a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleHandler.java b/src/main/java/com/github/copilot/rpc/SessionLifecycleHandler.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/SessionLifecycleHandler.java rename to src/main/java/com/github/copilot/rpc/SessionLifecycleHandler.java index 11937ee643..755f2aa4ea 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionLifecycleHandler.java +++ b/src/main/java/com/github/copilot/rpc/SessionLifecycleHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Handler for session lifecycle events. diff --git a/src/main/java/com/github/copilot/sdk/json/SessionListFilter.java b/src/main/java/com/github/copilot/rpc/SessionListFilter.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/SessionListFilter.java rename to src/main/java/com/github/copilot/rpc/SessionListFilter.java index f62f7674f1..d6c4548525 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionListFilter.java +++ b/src/main/java/com/github/copilot/rpc/SessionListFilter.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Filter options for listing sessions. @@ -22,7 +22,7 @@ * var sessions = client.listSessions(filter).get(); * } * - * @see com.github.copilot.sdk.CopilotClient#listSessions(SessionListFilter) + * @see com.github.copilot.CopilotClient#listSessions(SessionListFilter) * @since 1.0.0 */ public class SessionListFilter extends SessionContext { diff --git a/src/main/java/com/github/copilot/sdk/json/SessionMetadata.java b/src/main/java/com/github/copilot/rpc/SessionMetadata.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/json/SessionMetadata.java rename to src/main/java/com/github/copilot/rpc/SessionMetadata.java index cb2690d199..90207b9c7c 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionMetadata.java +++ b/src/main/java/com/github/copilot/rpc/SessionMetadata.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; @@ -11,7 +11,7 @@ * Metadata about an existing Copilot session. *

* This class represents session information returned when listing available - * sessions via {@link com.github.copilot.sdk.CopilotClient#listSessions()}. It + * sessions via {@link com.github.copilot.CopilotClient#listSessions()}. It * includes timing information, a summary of the conversation, and whether the * session is stored remotely. * @@ -26,8 +26,8 @@ * } * } * - * @see com.github.copilot.sdk.CopilotClient#listSessions() - * @see com.github.copilot.sdk.CopilotClient#resumeSession(String, + * @see com.github.copilot.CopilotClient#listSessions() + * @see com.github.copilot.CopilotClient#resumeSession(String, * ResumeSessionConfig) * @since 1.0.0 */ diff --git a/src/main/java/com/github/copilot/sdk/json/SessionStartHandler.java b/src/main/java/com/github/copilot/rpc/SessionStartHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionStartHandler.java rename to src/main/java/com/github/copilot/rpc/SessionStartHandler.java index fd631cb7f1..3c65a6944a 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionStartHandler.java +++ b/src/main/java/com/github/copilot/rpc/SessionStartHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java b/src/main/java/com/github/copilot/rpc/SessionStartHookInput.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java rename to src/main/java/com/github/copilot/rpc/SessionStartHookInput.java index 55bff3e262..d6e5b37596 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionStartHookInput.java +++ b/src/main/java/com/github/copilot/rpc/SessionStartHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionStartHookOutput.java b/src/main/java/com/github/copilot/rpc/SessionStartHookOutput.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/SessionStartHookOutput.java rename to src/main/java/com/github/copilot/rpc/SessionStartHookOutput.java index 3ef5971c43..2650a5efa1 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionStartHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/SessionStartHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/SessionUiApi.java b/src/main/java/com/github/copilot/rpc/SessionUiApi.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/json/SessionUiApi.java rename to src/main/java/com/github/copilot/rpc/SessionUiApi.java index f0a43f2610..1cf32e4680 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionUiApi.java +++ b/src/main/java/com/github/copilot/rpc/SessionUiApi.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; @@ -11,7 +11,7 @@ *

* All methods on this interface throw {@link IllegalStateException} if the host * does not report elicitation support via - * {@link com.github.copilot.sdk.CopilotSession#getCapabilities()}. Check + * {@link com.github.copilot.CopilotSession#getCapabilities()}. Check * {@code session.getCapabilities().getUi() != null && * Boolean.TRUE.equals(session.getCapabilities().getUi().getElicitation())} * before calling. @@ -25,7 +25,7 @@ * } * } * - * @see com.github.copilot.sdk.CopilotSession#getUi() + * @see com.github.copilot.CopilotSession#getUi() * @since 1.0.0 */ public interface SessionUiApi { diff --git a/src/main/java/com/github/copilot/sdk/json/SessionUiCapabilities.java b/src/main/java/com/github/copilot/rpc/SessionUiCapabilities.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/SessionUiCapabilities.java rename to src/main/java/com/github/copilot/rpc/SessionUiCapabilities.java index d19d531eef..015220d0c1 100644 --- a/src/main/java/com/github/copilot/sdk/json/SessionUiCapabilities.java +++ b/src/main/java/com/github/copilot/rpc/SessionUiCapabilities.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Optional; diff --git a/src/main/java/com/github/copilot/sdk/json/SetForegroundSessionRequest.java b/src/main/java/com/github/copilot/rpc/SetForegroundSessionRequest.java similarity index 94% rename from src/main/java/com/github/copilot/sdk/json/SetForegroundSessionRequest.java rename to src/main/java/com/github/copilot/rpc/SetForegroundSessionRequest.java index d3944871a0..faa35406b5 100644 --- a/src/main/java/com/github/copilot/sdk/json/SetForegroundSessionRequest.java +++ b/src/main/java/com/github/copilot/rpc/SetForegroundSessionRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SetForegroundSessionResponse.java b/src/main/java/com/github/copilot/rpc/SetForegroundSessionResponse.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/SetForegroundSessionResponse.java rename to src/main/java/com/github/copilot/rpc/SetForegroundSessionResponse.java index c4680c95dd..43bc907359 100644 --- a/src/main/java/com/github/copilot/sdk/json/SetForegroundSessionResponse.java +++ b/src/main/java/com/github/copilot/rpc/SetForegroundSessionResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/SystemMessageConfig.java b/src/main/java/com/github/copilot/rpc/SystemMessageConfig.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/SystemMessageConfig.java rename to src/main/java/com/github/copilot/rpc/SystemMessageConfig.java index 94af117ea5..973168f4d4 100644 --- a/src/main/java/com/github/copilot/sdk/json/SystemMessageConfig.java +++ b/src/main/java/com/github/copilot/rpc/SystemMessageConfig.java @@ -2,12 +2,12 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; import com.fasterxml.jackson.annotation.JsonInclude; -import com.github.copilot.sdk.SystemMessageMode; +import com.github.copilot.SystemMessageMode; /** * Configuration for customizing the system message. diff --git a/src/main/java/com/github/copilot/sdk/json/SystemPromptSections.java b/src/main/java/com/github/copilot/rpc/SystemPromptSections.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/SystemPromptSections.java rename to src/main/java/com/github/copilot/rpc/SystemPromptSections.java index fa512d032b..c68fcbe0c0 100644 --- a/src/main/java/com/github/copilot/sdk/json/SystemPromptSections.java +++ b/src/main/java/com/github/copilot/rpc/SystemPromptSections.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Well-known system prompt section identifiers for use with diff --git a/src/main/java/com/github/copilot/sdk/json/TelemetryConfig.java b/src/main/java/com/github/copilot/rpc/TelemetryConfig.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/TelemetryConfig.java rename to src/main/java/com/github/copilot/rpc/TelemetryConfig.java index 7272c98841..c0b75f29d6 100644 --- a/src/main/java/com/github/copilot/sdk/json/TelemetryConfig.java +++ b/src/main/java/com/github/copilot/rpc/TelemetryConfig.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Optional; diff --git a/src/main/java/com/github/copilot/sdk/json/ToolBinaryResult.java b/src/main/java/com/github/copilot/rpc/ToolBinaryResult.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/ToolBinaryResult.java rename to src/main/java/com/github/copilot/rpc/ToolBinaryResult.java index e00fce9cf6..f89b6a55f7 100644 --- a/src/main/java/com/github/copilot/sdk/json/ToolBinaryResult.java +++ b/src/main/java/com/github/copilot/rpc/ToolBinaryResult.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/ToolDefinition.java b/src/main/java/com/github/copilot/rpc/ToolDefinition.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/ToolDefinition.java rename to src/main/java/com/github/copilot/rpc/ToolDefinition.java index ba33ce1e35..c880e5a77a 100644 --- a/src/main/java/com/github/copilot/sdk/json/ToolDefinition.java +++ b/src/main/java/com/github/copilot/rpc/ToolDefinition.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/ToolHandler.java b/src/main/java/com/github/copilot/rpc/ToolHandler.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/ToolHandler.java rename to src/main/java/com/github/copilot/rpc/ToolHandler.java index e3e421b65f..15e52512e3 100644 --- a/src/main/java/com/github/copilot/sdk/json/ToolHandler.java +++ b/src/main/java/com/github/copilot/rpc/ToolHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/ToolInvocation.java b/src/main/java/com/github/copilot/rpc/ToolInvocation.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/ToolInvocation.java rename to src/main/java/com/github/copilot/rpc/ToolInvocation.java index e5febba6ff..dddfdd06f0 100644 --- a/src/main/java/com/github/copilot/sdk/json/ToolInvocation.java +++ b/src/main/java/com/github/copilot/rpc/ToolInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/ToolResultObject.java b/src/main/java/com/github/copilot/rpc/ToolResultObject.java similarity index 99% rename from src/main/java/com/github/copilot/sdk/json/ToolResultObject.java rename to src/main/java/com/github/copilot/rpc/ToolResultObject.java index dcb5ad78f1..e55ff9ab6e 100644 --- a/src/main/java/com/github/copilot/sdk/json/ToolResultObject.java +++ b/src/main/java/com/github/copilot/rpc/ToolResultObject.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.List; import java.util.Map; diff --git a/src/main/java/com/github/copilot/sdk/json/UserInputHandler.java b/src/main/java/com/github/copilot/rpc/UserInputHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/UserInputHandler.java rename to src/main/java/com/github/copilot/rpc/UserInputHandler.java index e5d1710989..7595bc5b97 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserInputHandler.java +++ b/src/main/java/com/github/copilot/rpc/UserInputHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/UserInputInvocation.java b/src/main/java/com/github/copilot/rpc/UserInputInvocation.java similarity index 95% rename from src/main/java/com/github/copilot/sdk/json/UserInputInvocation.java rename to src/main/java/com/github/copilot/rpc/UserInputInvocation.java index 3232b0c344..3eed480ca3 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserInputInvocation.java +++ b/src/main/java/com/github/copilot/rpc/UserInputInvocation.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; /** * Context for a user input request invocation. diff --git a/src/main/java/com/github/copilot/sdk/json/UserInputRequest.java b/src/main/java/com/github/copilot/rpc/UserInputRequest.java similarity index 98% rename from src/main/java/com/github/copilot/sdk/json/UserInputRequest.java rename to src/main/java/com/github/copilot/rpc/UserInputRequest.java index 23b0d88123..8e3551c5ac 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserInputRequest.java +++ b/src/main/java/com/github/copilot/rpc/UserInputRequest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.Collections; import java.util.List; diff --git a/src/main/java/com/github/copilot/sdk/json/UserInputResponse.java b/src/main/java/com/github/copilot/rpc/UserInputResponse.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/UserInputResponse.java rename to src/main/java/com/github/copilot/rpc/UserInputResponse.java index 4cfaa13f02..c9e0133c74 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserInputResponse.java +++ b/src/main/java/com/github/copilot/rpc/UserInputResponse.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHandler.java b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHandler.java similarity index 97% rename from src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHandler.java rename to src/main/java/com/github/copilot/rpc/UserPromptSubmittedHandler.java index 0dc59762be..e0953ed7f7 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHandler.java +++ b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHandler.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import java.util.concurrent.CompletableFuture; diff --git a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookInput.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java rename to src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookInput.java index 2f3a0948df..8b37df6773 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookInput.java +++ b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookInput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookOutput.java b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookOutput.java similarity index 96% rename from src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookOutput.java rename to src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookOutput.java index d5b345556d..ac37f2bd98 100644 --- a/src/main/java/com/github/copilot/sdk/json/UserPromptSubmittedHookOutput.java +++ b/src/main/java/com/github/copilot/rpc/UserPromptSubmittedHookOutput.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.json; +package com.github.copilot.rpc; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/src/main/java/com/github/copilot/rpc/package-info.java b/src/main/java/com/github/copilot/rpc/package-info.java new file mode 100644 index 0000000000..edc7dedcfc --- /dev/null +++ b/src/main/java/com/github/copilot/rpc/package-info.java @@ -0,0 +1,95 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + *--------------------------------------------------------------------------------------------*/ + +/** + * Configuration classes and data transfer objects for the Copilot SDK. + * + *

+ * This package contains all the configuration, request, response, and data + * transfer objects used throughout the SDK. These classes are designed for JSON + * serialization with Jackson and provide fluent setter methods for convenient + * configuration. + * + *

Client Configuration

+ *
    + *
  • {@link com.github.copilot.rpc.CopilotClientOptions} - Options for + * configuring the {@link com.github.copilot.CopilotClient}, including CLI path, + * port, transport mode, and auto-start behavior.
  • + *
+ * + *

Session Configuration

+ *
    + *
  • {@link com.github.copilot.rpc.SessionConfig} - Configuration for creating + * a new session, including model selection, tools, system message, and MCP + * server configuration.
  • + *
  • {@link com.github.copilot.rpc.ResumeSessionConfig} - Configuration for + * resuming an existing session.
  • + *
  • {@link com.github.copilot.rpc.InfiniteSessionConfig} - Configuration for + * infinite sessions with automatic context compaction.
  • + *
  • {@link com.github.copilot.rpc.SystemMessageConfig} - System message + * customization options.
  • + *
+ * + *

Message and Tool Configuration

+ *
    + *
  • {@link com.github.copilot.rpc.MessageOptions} - Options for sending + * messages, including prompt text and attachments.
  • + *
  • {@link com.github.copilot.rpc.ToolDefinition} - Definition of a custom + * tool that can be invoked by the assistant.
  • + *
  • {@link com.github.copilot.rpc.ToolInvocation} - Represents a tool + * invocation request from the assistant.
  • + *
  • {@link com.github.copilot.rpc.Attachment} - File attachment for + * messages.
  • + *
+ * + *

Provider Configuration (BYOK)

+ *
    + *
  • {@link com.github.copilot.rpc.ProviderConfig} - Configuration for using + * your own API keys with custom providers (OpenAI, Azure, etc.).
  • + *
  • {@link com.github.copilot.rpc.AzureOptions} - Azure-specific + * configuration options.
  • + *
+ * + *

Model Information

+ *
    + *
  • {@link com.github.copilot.rpc.ModelInfo} - Information about an available + * AI model.
  • + *
  • {@link com.github.copilot.rpc.ModelCapabilities} - Model capabilities and + * limits.
  • + *
  • {@link com.github.copilot.rpc.ModelPolicy} - Model policy and state + * information.
  • + *
+ * + *

Custom Agents

+ *
    + *
  • {@link com.github.copilot.rpc.CustomAgentConfig} - Configuration for + * custom agents with specialized behaviors and tools.
  • + *
+ * + *

Permissions

+ *
    + *
  • {@link com.github.copilot.rpc.PermissionHandler} - Handler for permission + * requests from the assistant.
  • + *
  • {@link com.github.copilot.rpc.PermissionRequest} - A permission request + * from the assistant.
  • + *
  • {@link com.github.copilot.rpc.PermissionRequestResult} - Result of a + * permission request decision.
  • + *
+ * + *

Usage Example

+ * + *
{@code
+ * var config = new SessionConfig().setModel("gpt-4.1").setStreaming(true)
+ * 		.setSystemMessage(new SystemMessageConfig().setMode(SystemMessageMode.APPEND)
+ * 				.setContent("Be concise in your responses."))
+ * 		.setTools(List.of(ToolDefinition.create("my_tool", "Description", schema, handler)));
+ *
+ * var session = client.createSession(config).get();
+ * }
+ * + * @see com.github.copilot.CopilotClient + * @see com.github.copilot.CopilotSession + */ +@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "DTOs for JSON deserialization - low risk") +package com.github.copilot.rpc; diff --git a/src/main/java/com/github/copilot/sdk/json/package-info.java b/src/main/java/com/github/copilot/sdk/json/package-info.java deleted file mode 100644 index aabf620691..0000000000 --- a/src/main/java/com/github/copilot/sdk/json/package-info.java +++ /dev/null @@ -1,95 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - *--------------------------------------------------------------------------------------------*/ - -/** - * Configuration classes and data transfer objects for the Copilot SDK. - * - *

- * This package contains all the configuration, request, response, and data - * transfer objects used throughout the SDK. These classes are designed for JSON - * serialization with Jackson and provide fluent setter methods for convenient - * configuration. - * - *

Client Configuration

- *
    - *
  • {@link com.github.copilot.sdk.json.CopilotClientOptions} - Options for - * configuring the {@link com.github.copilot.sdk.CopilotClient}, including CLI - * path, port, transport mode, and auto-start behavior.
  • - *
- * - *

Session Configuration

- *
    - *
  • {@link com.github.copilot.sdk.json.SessionConfig} - Configuration for - * creating a new session, including model selection, tools, system message, and - * MCP server configuration.
  • - *
  • {@link com.github.copilot.sdk.json.ResumeSessionConfig} - Configuration - * for resuming an existing session.
  • - *
  • {@link com.github.copilot.sdk.json.InfiniteSessionConfig} - Configuration - * for infinite sessions with automatic context compaction.
  • - *
  • {@link com.github.copilot.sdk.json.SystemMessageConfig} - System message - * customization options.
  • - *
- * - *

Message and Tool Configuration

- *
    - *
  • {@link com.github.copilot.sdk.json.MessageOptions} - Options for sending - * messages, including prompt text and attachments.
  • - *
  • {@link com.github.copilot.sdk.json.ToolDefinition} - Definition of a - * custom tool that can be invoked by the assistant.
  • - *
  • {@link com.github.copilot.sdk.json.ToolInvocation} - Represents a tool - * invocation request from the assistant.
  • - *
  • {@link com.github.copilot.sdk.json.Attachment} - File attachment for - * messages.
  • - *
- * - *

Provider Configuration (BYOK)

- *
    - *
  • {@link com.github.copilot.sdk.json.ProviderConfig} - Configuration for - * using your own API keys with custom providers (OpenAI, Azure, etc.).
  • - *
  • {@link com.github.copilot.sdk.json.AzureOptions} - Azure-specific - * configuration options.
  • - *
- * - *

Model Information

- *
    - *
  • {@link com.github.copilot.sdk.json.ModelInfo} - Information about an - * available AI model.
  • - *
  • {@link com.github.copilot.sdk.json.ModelCapabilities} - Model - * capabilities and limits.
  • - *
  • {@link com.github.copilot.sdk.json.ModelPolicy} - Model policy and state - * information.
  • - *
- * - *

Custom Agents

- *
    - *
  • {@link com.github.copilot.sdk.json.CustomAgentConfig} - Configuration for - * custom agents with specialized behaviors and tools.
  • - *
- * - *

Permissions

- *
    - *
  • {@link com.github.copilot.sdk.json.PermissionHandler} - Handler for - * permission requests from the assistant.
  • - *
  • {@link com.github.copilot.sdk.json.PermissionRequest} - A permission - * request from the assistant.
  • - *
  • {@link com.github.copilot.sdk.json.PermissionRequestResult} - Result of a - * permission request decision.
  • - *
- * - *

Usage Example

- * - *
{@code
- * var config = new SessionConfig().setModel("gpt-4.1").setStreaming(true)
- * 		.setSystemMessage(new SystemMessageConfig().setMode(SystemMessageMode.APPEND)
- * 				.setContent("Be concise in your responses."))
- * 		.setTools(List.of(ToolDefinition.create("my_tool", "Description", schema, handler)));
- *
- * var session = client.createSession(config).get();
- * }
- * - * @see com.github.copilot.sdk.CopilotClient - * @see com.github.copilot.sdk.CopilotSession - */ -@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "DTOs for JSON deserialization - low risk") -package com.github.copilot.sdk.json; diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index d912fb420f..01b7416949 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -5,7 +5,7 @@ /** * GitHub Copilot SDK for Java. */ -module com.github.copilot.sdk.java { +module com.github.copilot.java { requires transitive com.fasterxml.jackson.annotation; requires com.fasterxml.jackson.core; requires transitive com.fasterxml.jackson.databind; @@ -15,12 +15,12 @@ requires static java.net.http; requires java.logging; - exports com.github.copilot.sdk; - exports com.github.copilot.sdk.generated; - exports com.github.copilot.sdk.generated.rpc; - exports com.github.copilot.sdk.json; + exports com.github.copilot; + exports com.github.copilot.generated; + exports com.github.copilot.generated.rpc; + exports com.github.copilot.rpc; - opens com.github.copilot.sdk to com.fasterxml.jackson.databind; - opens com.github.copilot.sdk.generated to com.fasterxml.jackson.databind; - opens com.github.copilot.sdk.json to com.fasterxml.jackson.databind; + opens com.github.copilot to com.fasterxml.jackson.databind; + opens com.github.copilot.generated to com.fasterxml.jackson.databind; + opens com.github.copilot.rpc to com.fasterxml.jackson.databind; } diff --git a/src/site/markdown/advanced.md b/src/site/markdown/advanced.md index 85694185dd..5a2cafda37 100644 --- a/src/site/markdown/advanced.md +++ b/src/site/markdown/advanced.md @@ -90,7 +90,7 @@ var session = client.createSession( ).get(); ``` -See [ToolDefinition](apidocs/com/github/copilot/sdk/json/ToolDefinition.html) Javadoc for schema details. +See [ToolDefinition](apidocs/com/github/copilot/rpc/ToolDefinition.html) Javadoc for schema details. ### Overriding Built-in Tools @@ -149,7 +149,7 @@ var safeLookup = ToolDefinition.createSkipPermission( The CLI bypasses the permission request for this tool invocation, so no `PermissionRequestedEvent` is emitted and the `onPermissionRequest` handler is not called. -See [ToolDefinition](apidocs/com/github/copilot/sdk/json/ToolDefinition.html) Javadoc for details. +See [ToolDefinition](apidocs/com/github/copilot/rpc/ToolDefinition.html) Javadoc for details. --- @@ -177,10 +177,10 @@ session.sendAndWait(new MessageOptions().setPrompt("Continue with the new model" The `reasoningEffort` parameter accepts `"low"`, `"medium"`, `"high"`, or `"xhigh"` for models that support reasoning. Pass `null` (or use the single-argument overload) to use the default. -The session emits a [`SessionModelChangeEvent`](apidocs/com/github/copilot/sdk/generated/SessionModelChangeEvent.html) +The session emits a [`SessionModelChangeEvent`](apidocs/com/github/copilot/generated/SessionModelChangeEvent.html) when the switch completes, which you can observe with `session.on(SessionModelChangeEvent.class, event -> ...)`. -See [CopilotSession.setModel()](apidocs/com/github/copilot/sdk/CopilotSession.html#setModel(java.lang.String)) Javadoc for details. +See [CopilotSession.setModel()](apidocs/com/github/copilot/CopilotSession.html#setModel(java.lang.String)) Javadoc for details. --- @@ -265,9 +265,9 @@ var session = client.createSession( ).get(); ``` -See [SystemMessageConfig](apidocs/com/github/copilot/sdk/json/SystemMessageConfig.html), -[SectionOverride](apidocs/com/github/copilot/sdk/json/SectionOverride.html), and -[SystemPromptSections](apidocs/com/github/copilot/sdk/json/SystemPromptSections.html) Javadoc for details. +See [SystemMessageConfig](apidocs/com/github/copilot/rpc/SystemMessageConfig.html), +[SectionOverride](apidocs/com/github/copilot/rpc/SectionOverride.html), and +[SystemPromptSections](apidocs/com/github/copilot/rpc/SystemPromptSections.html) Javadoc for details. --- @@ -323,7 +323,7 @@ session.send(new MessageOptions() ).get(); ``` -See [BlobAttachment](apidocs/com/github/copilot/sdk/json/BlobAttachment.html) Javadoc for details. +See [BlobAttachment](apidocs/com/github/copilot/rpc/BlobAttachment.html) Javadoc for details. Both `Attachment` and `BlobAttachment` implement the sealed `MessageAttachment` interface. For a mixed list with both types, use an explicit type hint: @@ -590,7 +590,7 @@ var session = client.createSession( ).get(); ``` -See [CustomAgentConfig](apidocs/com/github/copilot/sdk/json/CustomAgentConfig.html) Javadoc for full details. +See [CustomAgentConfig](apidocs/com/github/copilot/rpc/CustomAgentConfig.html) Javadoc for full details. ### Programmatic Agent Selection @@ -717,7 +717,7 @@ Use cases: - Sending status updates to the session log - Debugging session behavior with contextual messages -See [CopilotSession.log()](apidocs/com/github/copilot/sdk/CopilotSession.html#log(java.lang.String)) Javadoc for details. +See [CopilotSession.log()](apidocs/com/github/copilot/CopilotSession.html#log(java.lang.String)) Javadoc for details. --- @@ -783,7 +783,7 @@ The `UserInputResponse` should include: - `setAnswer(String)` - The user's answer - `setWasFreeform(boolean)` - `true` if the answer was freeform text, `false` if it was from the provided choices -See [UserInputHandler](apidocs/com/github/copilot/sdk/json/UserInputHandler.html) Javadoc for more details. +See [UserInputHandler](apidocs/com/github/copilot/rpc/UserInputHandler.html) Javadoc for more details. --- @@ -812,7 +812,7 @@ The `PermissionRequestResultKind` class provides well-known constants for common | `PermissionRequestResultKind.NO_RESULT` | `"no-result"` | No permission decision was made (protocol v3 only) | You can also pass a raw string to `setKind(String)` for custom or extension values. Use -[`PermissionHandler.APPROVE_ALL`](apidocs/com/github/copilot/sdk/json/PermissionHandler.html) to approve all +[`PermissionHandler.APPROVE_ALL`](apidocs/com/github/copilot/rpc/PermissionHandler.html) to approve all requests without writing a handler. --- @@ -970,7 +970,7 @@ subscription.close(); ### Subscribing to Specific Event Types ```java -import com.github.copilot.sdk.json.SessionLifecycleEventTypes; +import com.github.copilot.rpc.SessionLifecycleEventTypes; // Listen only for session creation var subscription = client.onLifecycle( @@ -1118,7 +1118,7 @@ session.setEventErrorPolicy(EventErrorPolicy.PROPAGATE_AND_LOG_ERRORS); session.setEventErrorPolicy(EventErrorPolicy.SUPPRESS_AND_LOG_ERRORS); ``` -See [EventErrorPolicy](apidocs/com/github/copilot/sdk/EventErrorPolicy.html) and [EventErrorHandler](apidocs/com/github/copilot/sdk/EventErrorHandler.html) Javadoc for details. +See [EventErrorPolicy](apidocs/com/github/copilot/EventErrorPolicy.html) and [EventErrorHandler](apidocs/com/github/copilot/EventErrorHandler.html) Javadoc for details. --- @@ -1155,7 +1155,7 @@ var options = new CopilotClientOptions() | `sourceName` | `COPILOT_OTEL_SOURCE_NAME` | Source name for telemetry spans | | `captureContent` | `OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT` | Whether to capture message content | -See [TelemetryConfig](apidocs/com/github/copilot/sdk/json/TelemetryConfig.html) Javadoc for details. +See [TelemetryConfig](apidocs/com/github/copilot/rpc/TelemetryConfig.html) Javadoc for details. --- @@ -1405,7 +1405,7 @@ var session = client.createSession( ).get(); ``` -See [CloudSessionOptions](apidocs/com/github/copilot/sdk/json/CloudSessionOptions.html) and [CloudSessionRepository](apidocs/com/github/copilot/sdk/json/CloudSessionRepository.html) Javadoc for details. +See [CloudSessionOptions](apidocs/com/github/copilot/rpc/CloudSessionOptions.html) and [CloudSessionRepository](apidocs/com/github/copilot/rpc/CloudSessionRepository.html) Javadoc for details. --- diff --git a/src/site/markdown/cookbook/error-handling.md b/src/site/markdown/cookbook/error-handling.md index 963b8b0933..5078afa3fd 100644 --- a/src/site/markdown/cookbook/error-handling.md +++ b/src/site/markdown/cookbook/error-handling.md @@ -31,11 +31,11 @@ jbang BasicErrorHandling.java **Code:** ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; public class BasicErrorHandling { public static void main(String[] args) { @@ -65,7 +65,7 @@ public class BasicErrorHandling { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; +import com.github.copilot.CopilotClient; import java.util.concurrent.ExecutionException; public class SpecificErrorHandling { @@ -100,9 +100,9 @@ public class SpecificErrorHandling { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotSession; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.CopilotSession; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; @@ -131,8 +131,8 @@ public class TimeoutHandling { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotSession; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.CopilotSession; +import com.github.copilot.rpc.MessageOptions; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; @@ -163,7 +163,7 @@ public class AbortRequest { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; +import com.github.copilot.CopilotClient; public class GracefulShutdown { public static void main(String[] args) { @@ -193,11 +193,11 @@ public class GracefulShutdown { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; public class TryWithResources { public static void doWork() throws Exception { @@ -225,13 +225,13 @@ public class TryWithResources { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.ToolResultObject; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.ToolResultObject; import java.util.Map; import java.util.List; import java.util.concurrent.CompletableFuture; diff --git a/src/site/markdown/cookbook/managing-local-files.md b/src/site/markdown/cookbook/managing-local-files.md index 2a7b5540f9..4d79dc29d5 100644 --- a/src/site/markdown/cookbook/managing-local-files.md +++ b/src/site/markdown/cookbook/managing-local-files.md @@ -35,14 +35,14 @@ jbang ManagingLocalFiles.java **Code:** ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.generated.ToolExecutionCompleteEvent; -import com.github.copilot.sdk.generated.ToolExecutionStartEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.generated.ToolExecutionCompleteEvent; +import com.github.copilot.generated.ToolExecutionStartEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import java.nio.file.Paths; import java.util.concurrent.CountDownLatch; diff --git a/src/site/markdown/cookbook/multiple-sessions.md b/src/site/markdown/cookbook/multiple-sessions.md index 84da5a2556..5849394d51 100644 --- a/src/site/markdown/cookbook/multiple-sessions.md +++ b/src/site/markdown/cookbook/multiple-sessions.md @@ -31,11 +31,11 @@ jbang MultipleSessions.java **Code:** ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; public class MultipleSessions { public static void main(String[] args) throws Exception { @@ -177,11 +177,11 @@ common-pool threads: ```java //DEPS com.github:copilot-sdk-java:${project.version} -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; +import com.github.copilot.CopilotClient; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; import java.util.List; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ExecutorService; diff --git a/src/site/markdown/cookbook/persisting-sessions.md b/src/site/markdown/cookbook/persisting-sessions.md index ef80fd3d09..89837bc140 100644 --- a/src/site/markdown/cookbook/persisting-sessions.md +++ b/src/site/markdown/cookbook/persisting-sessions.md @@ -31,11 +31,11 @@ jbang PersistingSessions.java **Code:** ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; public class PersistingSessions { public static void main(String[] args) throws Exception { @@ -128,11 +128,11 @@ public class DeleteSession { ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.UserMessageEvent; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.UserMessageEvent; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; public class SessionHistory { public static void main(String[] args) throws Exception { diff --git a/src/site/markdown/cookbook/pr-visualization.md b/src/site/markdown/cookbook/pr-visualization.md index 1036bb0f7d..b72d9088b2 100644 --- a/src/site/markdown/cookbook/pr-visualization.md +++ b/src/site/markdown/cookbook/pr-visualization.md @@ -35,13 +35,13 @@ jbang PRVisualization.java github/copilot-sdk ```java //DEPS com.github:copilot-sdk-java:1.0.0-beta-java.4 -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.ToolExecutionStartEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SystemMessageConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.ToolExecutionStartEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SystemMessageConfig; import java.io.BufferedReader; import java.io.EOFException; import java.io.IOException; diff --git a/src/site/markdown/documentation.md b/src/site/markdown/documentation.md index 7b0c958e3d..5812e83fdf 100644 --- a/src/site/markdown/documentation.md +++ b/src/site/markdown/documentation.md @@ -27,9 +27,9 @@ This guide covers common use cases for the GitHub Copilot SDK for Java. For comp Create a client, start a session, and send a message: ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; try (var client = new CopilotClient()) { client.start().get(); @@ -266,7 +266,7 @@ The SDK supports event types organized by category. All events extend `SessionEv | `ExitPlanModeRequestedEvent` | `exit_plan_mode.requested` | Exit from plan mode was requested | | `ExitPlanModeCompletedEvent` | `exit_plan_mode.completed` | Exit from plan mode completed | -See the [generated package Javadoc](apidocs/com/github/copilot/sdk/generated/package-summary.html) for detailed event data structures. +See the [generated package Javadoc](apidocs/com/github/copilot/generated/package-summary.html) for detailed event data structures. --- @@ -563,7 +563,7 @@ var pong = client.ping("hello").get(); System.out.println("Server responded, protocol version: " + pong.protocolVersion()); ``` -See [ConnectionState](apidocs/com/github/copilot/sdk/ConnectionState.html), [GetStatusResponse](apidocs/com/github/copilot/sdk/json/GetStatusResponse.html), and [GetAuthStatusResponse](apidocs/com/github/copilot/sdk/json/GetAuthStatusResponse.html) Javadoc for details. +See [ConnectionState](apidocs/com/github/copilot/ConnectionState.html), [GetStatusResponse](apidocs/com/github/copilot/rpc/GetStatusResponse.html), and [GetAuthStatusResponse](apidocs/com/github/copilot/rpc/GetAuthStatusResponse.html) Javadoc for details. --- @@ -662,7 +662,7 @@ var config = new ResumeSessionConfig().setOnPermissionRequest(PermissionHandler. var session = client.resumeSession("user-123-task-456", config).get(); ``` -See [ResumeSessionConfig](apidocs/com/github/copilot/sdk/json/ResumeSessionConfig.html) Javadoc for complete options. +See [ResumeSessionConfig](apidocs/com/github/copilot/rpc/ResumeSessionConfig.html) Javadoc for complete options. ### Clean Up Sessions @@ -725,7 +725,7 @@ var derived = base.clone() `clone()` creates a shallow copy. Collection fields are copied into new collection instances, while nested objects/handlers are shared references. -See [SessionConfig](apidocs/com/github/copilot/sdk/json/SessionConfig.html) Javadoc for full details. +See [SessionConfig](apidocs/com/github/copilot/rpc/SessionConfig.html) Javadoc for full details. --- diff --git a/src/site/markdown/getting-started.md b/src/site/markdown/getting-started.md index 724b1a2dd5..0bde2ef50d 100644 --- a/src/site/markdown/getting-started.md +++ b/src/site/markdown/getting-started.md @@ -64,10 +64,10 @@ For the fastest way to try the SDK without setting up a project, use [JBang](htt Create a new file and add the following code. This is the simplest way to use the SDK. ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; public class HelloCopilot { public static void main(String[] args) throws Exception { @@ -109,12 +109,12 @@ Congratulations! You just built your first Copilot-powered app. Right now, you wait for the complete response before seeing anything. Let's make it interactive by streaming the response as it's generated. ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageDeltaEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageDeltaEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import java.util.concurrent.CompletableFuture; public class StreamingExample { @@ -156,13 +156,13 @@ Run the code again. You'll see the response appear word by word. Now for the powerful part. Let's give Copilot the ability to call your code by defining a custom tool. We'll create a simple weather lookup tool. ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageDeltaEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageDeltaEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; import java.util.List; import java.util.Map; import java.util.Random; @@ -238,13 +238,13 @@ Run it and you'll see Copilot call your tool to get weather data, then respond w Let's put it all together into a useful interactive assistant: ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageDeltaEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageDeltaEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; import java.util.List; import java.util.Map; import java.util.Random; diff --git a/src/site/markdown/hooks.md b/src/site/markdown/hooks.md index cb978ef8b0..3bed031df8 100644 --- a/src/site/markdown/hooks.md +++ b/src/site/markdown/hooks.md @@ -337,11 +337,11 @@ var hooks = new SessionHooks() Combining multiple hooks for comprehensive session control: ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PreToolUseHookOutput; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionHooks; +import com.github.copilot.CopilotClient; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PreToolUseHookOutput; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionHooks; import java.util.concurrent.CompletableFuture; public class HooksExample { @@ -459,11 +459,11 @@ To handle errors gracefully in your hooks: ## See Also -- [SessionHooks Javadoc](apidocs/com/github/copilot/sdk/json/SessionHooks.html) -- [PreToolUseHookInput Javadoc](apidocs/com/github/copilot/sdk/json/PreToolUseHookInput.html) -- [PreToolUseHookOutput Javadoc](apidocs/com/github/copilot/sdk/json/PreToolUseHookOutput.html) -- [PostToolUseHookInput Javadoc](apidocs/com/github/copilot/sdk/json/PostToolUseHookInput.html) -- [PostToolUseHookOutput Javadoc](apidocs/com/github/copilot/sdk/json/PostToolUseHookOutput.html) +- [SessionHooks Javadoc](apidocs/com/github/copilot/rpc/SessionHooks.html) +- [PreToolUseHookInput Javadoc](apidocs/com/github/copilot/rpc/PreToolUseHookInput.html) +- [PreToolUseHookOutput Javadoc](apidocs/com/github/copilot/rpc/PreToolUseHookOutput.html) +- [PostToolUseHookInput Javadoc](apidocs/com/github/copilot/rpc/PostToolUseHookInput.html) +- [PostToolUseHookOutput Javadoc](apidocs/com/github/copilot/rpc/PostToolUseHookOutput.html) --- diff --git a/src/site/markdown/index.md b/src/site/markdown/index.md index a097da69e4..645645d4bc 100644 --- a/src/site/markdown/index.md +++ b/src/site/markdown/index.md @@ -36,12 +36,12 @@ implementation 'com.github:copilot-sdk-java:${project.version}' ### Quick Example ```java -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import java.util.concurrent.CompletableFuture; public class Example { @@ -87,12 +87,12 @@ You can quickly try the SDK without setting up a full project using [JBang](http # Create a simple script cat > hello-copilot.java << 'EOF' //DEPS com.github:copilot-sdk-java:${project.version} -import com.github.copilot.sdk.CopilotClient; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.CopilotClient; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; import java.util.concurrent.CompletableFuture; class hello { diff --git a/src/test/java/com/github/copilot/sdk/AgentInfoTest.java b/src/test/java/com/github/copilot/AgentInfoTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/AgentInfoTest.java rename to src/test/java/com/github/copilot/AgentInfoTest.java index 0893773e71..3b15f5582c 100644 --- a/src/test/java/com/github/copilot/sdk/AgentInfoTest.java +++ b/src/test/java/com/github/copilot/AgentInfoTest.java @@ -2,13 +2,13 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.AgentInfo; +import com.github.copilot.rpc.AgentInfo; /** * Unit tests for {@link AgentInfo} getters, setters, and fluent chaining. diff --git a/src/test/java/com/github/copilot/sdk/AskUserTest.java b/src/test/java/com/github/copilot/AskUserTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/AskUserTest.java rename to src/test/java/com/github/copilot/AskUserTest.java index a2ad13b188..f32a6632d1 100644 --- a/src/test/java/com/github/copilot/sdk/AskUserTest.java +++ b/src/test/java/com/github/copilot/AskUserTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -14,11 +14,11 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.UserInputRequest; -import com.github.copilot.sdk.json.UserInputResponse; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.UserInputRequest; +import com.github.copilot.rpc.UserInputResponse; /** * Tests for user input handler (ask_user) functionality. diff --git a/src/test/java/com/github/copilot/sdk/CapiProxy.java b/src/test/java/com/github/copilot/CapiProxy.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/CapiProxy.java rename to src/test/java/com/github/copilot/CapiProxy.java index 09c4e20161..90c2dd0a75 100644 --- a/src/test/java/com/github/copilot/sdk/CapiProxy.java +++ b/src/test/java/com/github/copilot/CapiProxy.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.BufferedReader; import java.io.IOException; diff --git a/src/test/java/com/github/copilot/sdk/CliServerManagerTest.java b/src/test/java/com/github/copilot/CliServerManagerTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/CliServerManagerTest.java rename to src/test/java/com/github/copilot/CliServerManagerTest.java index 90e6dcc3c3..2df5dafabb 100644 --- a/src/test/java/com/github/copilot/sdk/CliServerManagerTest.java +++ b/src/test/java/com/github/copilot/CliServerManagerTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,8 +12,8 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.TelemetryConfig; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.TelemetryConfig; /** * Unit tests for {@link CliServerManager} covering parseCliUrl, diff --git a/src/test/java/com/github/copilot/sdk/ClosedSessionGuardTest.java b/src/test/java/com/github/copilot/ClosedSessionGuardTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/ClosedSessionGuardTest.java rename to src/test/java/com/github/copilot/ClosedSessionGuardTest.java index edc503f948..12636fb77e 100644 --- a/src/test/java/com/github/copilot/sdk/ClosedSessionGuardTest.java +++ b/src/test/java/com/github/copilot/ClosedSessionGuardTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; import static org.junit.jupiter.api.Assertions.assertEquals; @@ -13,10 +13,10 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * Tests for closed-session guard functionality in CopilotSession. diff --git a/src/test/java/com/github/copilot/sdk/CommandsTest.java b/src/test/java/com/github/copilot/CommandsTest.java similarity index 93% rename from src/test/java/com/github/copilot/sdk/CommandsTest.java rename to src/test/java/com/github/copilot/CommandsTest.java index 6bddbed288..0da8822a2b 100644 --- a/src/test/java/com/github/copilot/sdk/CommandsTest.java +++ b/src/test/java/com/github/copilot/CommandsTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -11,13 +11,13 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.CommandContext; -import com.github.copilot.sdk.json.CommandDefinition; -import com.github.copilot.sdk.json.CommandHandler; -import com.github.copilot.sdk.json.CommandWireDefinition; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.rpc.CommandContext; +import com.github.copilot.rpc.CommandDefinition; +import com.github.copilot.rpc.CommandHandler; +import com.github.copilot.rpc.CommandWireDefinition; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; /** * Unit tests for the Commands feature (CommandDefinition, CommandContext, diff --git a/src/test/java/com/github/copilot/sdk/CompactionTest.java b/src/test/java/com/github/copilot/CompactionTest.java similarity index 93% rename from src/test/java/com/github/copilot/sdk/CompactionTest.java rename to src/test/java/com/github/copilot/CompactionTest.java index 306eeb6c72..100b8e8fe1 100644 --- a/src/test/java/com/github/copilot/sdk/CompactionTest.java +++ b/src/test/java/com/github/copilot/CompactionTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -16,14 +16,14 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Timeout; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionCompactionCompleteEvent; -import com.github.copilot.sdk.generated.SessionCompactionStartEvent; -import com.github.copilot.sdk.json.InfiniteSessionConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionCompactionCompleteEvent; +import com.github.copilot.generated.SessionCompactionStartEvent; +import com.github.copilot.rpc.InfiniteSessionConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * Tests for compaction and infinite sessions functionality. diff --git a/src/test/java/com/github/copilot/sdk/ConfigCloneTest.java b/src/test/java/com/github/copilot/ConfigCloneTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/ConfigCloneTest.java rename to src/test/java/com/github/copilot/ConfigCloneTest.java index 09bd3ee385..f26f67ed91 100644 --- a/src/test/java/com/github/copilot/sdk/ConfigCloneTest.java +++ b/src/test/java/com/github/copilot/ConfigCloneTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -15,18 +15,18 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.json.AutoModeSwitchResponse; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.DefaultAgentConfig; -import com.github.copilot.sdk.json.ExitPlanModeResult; -import com.github.copilot.sdk.json.InfiniteSessionConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.ModelInfo; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SystemMessageConfig; -import com.github.copilot.sdk.json.TelemetryConfig; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.rpc.AutoModeSwitchResponse; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.DefaultAgentConfig; +import com.github.copilot.rpc.ExitPlanModeResult; +import com.github.copilot.rpc.InfiniteSessionConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.ModelInfo; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SystemMessageConfig; +import com.github.copilot.rpc.TelemetryConfig; class ConfigCloneTest { diff --git a/src/test/java/com/github/copilot/sdk/CopilotClientTest.java b/src/test/java/com/github/copilot/CopilotClientTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/CopilotClientTest.java rename to src/test/java/com/github/copilot/CopilotClientTest.java index 137ad360ba..1d6bfc7044 100644 --- a/src/test/java/com/github/copilot/sdk/CopilotClientTest.java +++ b/src/test/java/com/github/copilot/CopilotClientTest.java @@ -2,17 +2,17 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PingResponse; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionLifecycleEvent; -import com.github.copilot.sdk.json.SessionLifecycleEventTypes; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PingResponse; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionLifecycleEvent; +import com.github.copilot.rpc.SessionLifecycleEventTypes; import java.lang.reflect.Field; import java.util.ArrayList; @@ -473,8 +473,8 @@ void testNullOptionsDefaultsToEmpty() { @Test void testListModels_WithCustomHandler_CallsHandler() throws Exception { - var customModels = new ArrayList(); - var model = new com.github.copilot.sdk.json.ModelInfo(); + var customModels = new ArrayList(); + var model = new com.github.copilot.rpc.ModelInfo(); model.setId("my-custom-model"); customModels.add(model); @@ -494,8 +494,8 @@ void testListModels_WithCustomHandler_CallsHandler() throws Exception { @Test void testListModels_WithCustomHandler_CachesResults() throws Exception { - var customModels = new ArrayList(); - var model = new com.github.copilot.sdk.json.ModelInfo(); + var customModels = new ArrayList(); + var model = new com.github.copilot.rpc.ModelInfo(); model.setId("cached-model"); customModels.add(model); @@ -514,8 +514,8 @@ void testListModels_WithCustomHandler_CachesResults() throws Exception { @Test void testListModels_WithCustomHandler_WorksWithoutStart() throws Exception { - var customModels = new ArrayList(); - var model = new com.github.copilot.sdk.json.ModelInfo(); + var customModels = new ArrayList(); + var model = new com.github.copilot.rpc.ModelInfo(); model.setId("no-start-model"); customModels.add(model); diff --git a/src/test/java/com/github/copilot/sdk/CopilotSessionTest.java b/src/test/java/com/github/copilot/CopilotSessionTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/CopilotSessionTest.java rename to src/test/java/com/github/copilot/CopilotSessionTest.java index 6a2f758096..9c74d49464 100644 --- a/src/test/java/com/github/copilot/sdk/CopilotSessionTest.java +++ b/src/test/java/com/github/copilot/CopilotSessionTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -23,21 +23,21 @@ import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AbortEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.generated.SessionStartEvent; -import com.github.copilot.sdk.generated.ToolExecutionStartEvent; -import com.github.copilot.sdk.generated.UserMessageEvent; -import com.github.copilot.sdk.generated.rpc.SessionRpc; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.DefaultAgentConfig; -import com.github.copilot.sdk.json.SystemMessageConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AbortEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.generated.SessionStartEvent; +import com.github.copilot.generated.ToolExecutionStartEvent; +import com.github.copilot.generated.UserMessageEvent; +import com.github.copilot.generated.rpc.SessionRpc; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.DefaultAgentConfig; +import com.github.copilot.rpc.SystemMessageConfig; +import com.github.copilot.rpc.ToolDefinition; /** * Tests for CopilotSession. @@ -830,8 +830,8 @@ void testSessionListFilterFluentAPI() throws Exception { var session = client .createSession(new SessionConfig().setOnPermissionRequest(PermissionHandler.APPROVE_ALL)).get(); - var filter = new com.github.copilot.sdk.json.SessionListFilter().setCwd("/test/path") - .setRepository("owner/repo").setBranch("main").setGitRoot("/test"); + var filter = new com.github.copilot.rpc.SessionListFilter().setCwd("/test/path").setRepository("owner/repo") + .setBranch("main").setGitRoot("/test"); assertEquals("/test/path", filter.getCwd()); assertEquals("owner/repo", filter.getRepository()); @@ -865,7 +865,7 @@ void testShouldGetSessionMetadataById() throws Exception { // state asynchronously so it may not be queryable immediately // (mirrors .NET WaitForConditionAsync pattern). var sessionId = session.getSessionId(); - com.github.copilot.sdk.json.SessionMetadata metadata = null; + com.github.copilot.rpc.SessionMetadata metadata = null; long deadline = System.currentTimeMillis() + 10_000; while (System.currentTimeMillis() < deadline) { long remaining = Math.max(1, deadline - System.currentTimeMillis()); diff --git a/src/test/java/com/github/copilot/sdk/DataObjectCoverageTest.java b/src/test/java/com/github/copilot/DataObjectCoverageTest.java similarity index 91% rename from src/test/java/com/github/copilot/sdk/DataObjectCoverageTest.java rename to src/test/java/com/github/copilot/DataObjectCoverageTest.java index 3c83b8286d..ece824234b 100644 --- a/src/test/java/com/github/copilot/sdk/DataObjectCoverageTest.java +++ b/src/test/java/com/github/copilot/DataObjectCoverageTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -10,22 +10,22 @@ import com.fasterxml.jackson.databind.node.JsonNodeFactory; import com.fasterxml.jackson.databind.node.ObjectNode; -import com.github.copilot.sdk.json.CustomAgentConfig; -import com.github.copilot.sdk.json.GetForegroundSessionResponse; -import com.github.copilot.sdk.json.McpHttpServerConfig; -import com.github.copilot.sdk.json.McpStdioServerConfig; -import com.github.copilot.sdk.json.ModelCapabilitiesOverride; -import com.github.copilot.sdk.json.PermissionRequest; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PostToolUseHookInput; -import com.github.copilot.sdk.json.PostToolUseHookOutput; -import com.github.copilot.sdk.json.PreToolUseHookInput; -import com.github.copilot.sdk.json.PreToolUseHookOutput; -import com.github.copilot.sdk.json.SectionOverride; -import com.github.copilot.sdk.json.SetForegroundSessionRequest; -import com.github.copilot.sdk.json.SetForegroundSessionResponse; -import com.github.copilot.sdk.json.ToolBinaryResult; -import com.github.copilot.sdk.json.ToolResultObject; +import com.github.copilot.rpc.CustomAgentConfig; +import com.github.copilot.rpc.GetForegroundSessionResponse; +import com.github.copilot.rpc.McpHttpServerConfig; +import com.github.copilot.rpc.McpStdioServerConfig; +import com.github.copilot.rpc.ModelCapabilitiesOverride; +import com.github.copilot.rpc.PermissionRequest; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PostToolUseHookInput; +import com.github.copilot.rpc.PostToolUseHookOutput; +import com.github.copilot.rpc.PreToolUseHookInput; +import com.github.copilot.rpc.PreToolUseHookOutput; +import com.github.copilot.rpc.SectionOverride; +import com.github.copilot.rpc.SetForegroundSessionRequest; +import com.github.copilot.rpc.SetForegroundSessionResponse; +import com.github.copilot.rpc.ToolBinaryResult; +import com.github.copilot.rpc.ToolResultObject; /** * Unit tests for various data transfer objects and record types that were diff --git a/src/test/java/com/github/copilot/sdk/DocumentationSamplesTest.java b/src/test/java/com/github/copilot/DocumentationSamplesTest.java similarity index 94% rename from src/test/java/com/github/copilot/sdk/DocumentationSamplesTest.java rename to src/test/java/com/github/copilot/DocumentationSamplesTest.java index bb8a6f07e2..f7170f4fde 100644 --- a/src/test/java/com/github/copilot/sdk/DocumentationSamplesTest.java +++ b/src/test/java/com/github/copilot/DocumentationSamplesTest.java @@ -1,4 +1,4 @@ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -7,7 +7,6 @@ import java.nio.file.Path; import java.util.ArrayList; import java.util.List; -import java.util.stream.Stream; import org.junit.jupiter.api.Test; @@ -135,11 +134,6 @@ private static List documentationFiles() throws IOException { List files = new ArrayList<>(); files.add(root.resolve("README.md")); files.add(root.resolve("jbang-example.java")); - - try (Stream markdownFiles = Files.walk(root.resolve("src/site/markdown"))) { - markdownFiles.filter(Files::isRegularFile).filter(path -> path.toString().endsWith(".md")) - .forEach(files::add); - } return files; } } diff --git a/src/test/java/com/github/copilot/sdk/E2ETestContext.java b/src/test/java/com/github/copilot/E2ETestContext.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/E2ETestContext.java rename to src/test/java/com/github/copilot/E2ETestContext.java index 9680148ff6..2bc139d940 100644 --- a/src/test/java/com/github/copilot/sdk/E2ETestContext.java +++ b/src/test/java/com/github/copilot/E2ETestContext.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.BufferedReader; import java.io.IOException; @@ -18,7 +18,7 @@ import java.util.regex.Matcher; import java.util.regex.Pattern; -import com.github.copilot.sdk.json.CopilotClientOptions; +import com.github.copilot.rpc.CopilotClientOptions; /** * E2E test context that manages the test environment including the CapiProxy, @@ -121,6 +121,13 @@ public Path getWorkDir() { return workDir; } + /** + * Gets the repository root for locating shared test assets. + */ + public Path getRepoRoot() { + return repoRoot; + } + /** * Gets the proxy URL. */ diff --git a/src/test/java/com/github/copilot/sdk/ElicitationTest.java b/src/test/java/com/github/copilot/ElicitationTest.java similarity index 90% rename from src/test/java/com/github/copilot/sdk/ElicitationTest.java rename to src/test/java/com/github/copilot/ElicitationTest.java index 1f62451276..2fcb03fe5e 100644 --- a/src/test/java/com/github/copilot/sdk/ElicitationTest.java +++ b/src/test/java/com/github/copilot/ElicitationTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,18 +12,18 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.ElicitationContext; -import com.github.copilot.sdk.json.ElicitationHandler; -import com.github.copilot.sdk.json.ElicitationParams; -import com.github.copilot.sdk.json.ElicitationResult; -import com.github.copilot.sdk.json.ElicitationResultAction; -import com.github.copilot.sdk.json.ElicitationSchema; -import com.github.copilot.sdk.json.InputOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionCapabilities; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionUiCapabilities; +import com.github.copilot.rpc.ElicitationContext; +import com.github.copilot.rpc.ElicitationHandler; +import com.github.copilot.rpc.ElicitationParams; +import com.github.copilot.rpc.ElicitationResult; +import com.github.copilot.rpc.ElicitationResultAction; +import com.github.copilot.rpc.ElicitationSchema; +import com.github.copilot.rpc.InputOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionCapabilities; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionUiCapabilities; /** * Unit tests for the Elicitation feature and Session Capabilities. diff --git a/src/test/java/com/github/copilot/sdk/ErrorHandlingTest.java b/src/test/java/com/github/copilot/ErrorHandlingTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/ErrorHandlingTest.java rename to src/test/java/com/github/copilot/ErrorHandlingTest.java index 8c606930a7..32579ffc4e 100644 --- a/src/test/java/com/github/copilot/sdk/ErrorHandlingTest.java +++ b/src/test/java/com/github/copilot/ErrorHandlingTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -16,13 +16,13 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionErrorEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionErrorEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; import java.util.Map; @@ -84,7 +84,7 @@ void testHandlesToolCallingErrors_toolErrorDoesNotCrashSession() throws Exceptio assertNotNull(response, "Should receive a response even when tool fails"); // Should have received session.idle (indicating successful completion) - assertTrue(allEvents.stream().anyMatch(e -> e instanceof com.github.copilot.sdk.generated.SessionIdleEvent), + assertTrue(allEvents.stream().anyMatch(e -> e instanceof com.github.copilot.generated.SessionIdleEvent), "Session should reach idle state after handling tool error"); session.close(); diff --git a/src/test/java/com/github/copilot/sdk/EventFidelityTest.java b/src/test/java/com/github/copilot/EventFidelityTest.java similarity index 91% rename from src/test/java/com/github/copilot/sdk/EventFidelityTest.java rename to src/test/java/com/github/copilot/EventFidelityTest.java index 60b8e13275..cca63b4d67 100644 --- a/src/test/java/com/github/copilot/sdk/EventFidelityTest.java +++ b/src/test/java/com/github/copilot/EventFidelityTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -14,12 +14,12 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantUsageEvent; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.SessionUsageInfoEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.AssistantUsageEvent; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.SessionUsageInfoEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * E2E tests for event fidelity — verifying the shape, ordering, and presence of diff --git a/src/test/java/com/github/copilot/sdk/ExecutorWiringTest.java b/src/test/java/com/github/copilot/ExecutorWiringTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/ExecutorWiringTest.java rename to src/test/java/com/github/copilot/ExecutorWiringTest.java index a5eb3a62dc..78764db0fb 100644 --- a/src/test/java/com/github/copilot/sdk/ExecutorWiringTest.java +++ b/src/test/java/com/github/copilot/ExecutorWiringTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -21,17 +21,17 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.PreToolUseHookOutput; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionHooks; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.UserInputResponse; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.PreToolUseHookOutput; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionHooks; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.UserInputResponse; /** * Tests verifying that when an {@link Executor} is provided via diff --git a/src/test/java/com/github/copilot/sdk/ForwardCompatibilityTest.java b/src/test/java/com/github/copilot/ForwardCompatibilityTest.java similarity index 94% rename from src/test/java/com/github/copilot/sdk/ForwardCompatibilityTest.java rename to src/test/java/com/github/copilot/ForwardCompatibilityTest.java index 06e2af5cf0..40166307e3 100644 --- a/src/test/java/com/github/copilot/sdk/ForwardCompatibilityTest.java +++ b/src/test/java/com/github/copilot/ForwardCompatibilityTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -10,9 +10,9 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.UnknownSessionEvent; -import com.github.copilot.sdk.generated.UserMessageEvent; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.UnknownSessionEvent; +import com.github.copilot.generated.UserMessageEvent; /** * Unit tests for forward-compatible handling of unknown session event types. diff --git a/src/test/java/com/github/copilot/sdk/HooksTest.java b/src/test/java/com/github/copilot/HooksTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/HooksTest.java rename to src/test/java/com/github/copilot/HooksTest.java index 1278d082b5..4608848f19 100644 --- a/src/test/java/com/github/copilot/sdk/HooksTest.java +++ b/src/test/java/com/github/copilot/HooksTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -18,13 +18,13 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PostToolUseHookInput; -import com.github.copilot.sdk.json.PreToolUseHookInput; -import com.github.copilot.sdk.json.PreToolUseHookOutput; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionHooks; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PostToolUseHookInput; +import com.github.copilot.rpc.PreToolUseHookInput; +import com.github.copilot.rpc.PreToolUseHookOutput; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionHooks; /** * Tests for hooks functionality (pre-tool-use and post-tool-use hooks). diff --git a/src/test/java/com/github/copilot/sdk/JsonIncludeNonNullTest.java b/src/test/java/com/github/copilot/JsonIncludeNonNullTest.java similarity index 89% rename from src/test/java/com/github/copilot/sdk/JsonIncludeNonNullTest.java rename to src/test/java/com/github/copilot/JsonIncludeNonNullTest.java index 7465507f50..7a9554b7b4 100644 --- a/src/test/java/com/github/copilot/sdk/JsonIncludeNonNullTest.java +++ b/src/test/java/com/github/copilot/JsonIncludeNonNullTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,20 +12,20 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.CustomAgentConfig; -import com.github.copilot.sdk.json.InfiniteSessionConfig; -import com.github.copilot.sdk.json.InputOptions; -import com.github.copilot.sdk.json.ModelCapabilitiesOverride; -import com.github.copilot.sdk.json.ProviderConfig; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionUiCapabilities; -import com.github.copilot.sdk.json.TelemetryConfig; -import com.github.copilot.sdk.json.UserInputRequest; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.CustomAgentConfig; +import com.github.copilot.rpc.InfiniteSessionConfig; +import com.github.copilot.rpc.InputOptions; +import com.github.copilot.rpc.ModelCapabilitiesOverride; +import com.github.copilot.rpc.ProviderConfig; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionUiCapabilities; +import com.github.copilot.rpc.TelemetryConfig; +import com.github.copilot.rpc.UserInputRequest; /** - * Verifies that public DTO classes in the {@code com.github.copilot.sdk.json} + * Verifies that public DTO classes in the {@code com.github.copilot.rpc} * package are annotated with {@code @JsonInclude(JsonInclude.Include.NON_NULL)} * so that null-valued fields are omitted during JSON serialization. */ diff --git a/src/test/java/com/github/copilot/sdk/JsonRpcClientTest.java b/src/test/java/com/github/copilot/JsonRpcClientTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/JsonRpcClientTest.java rename to src/test/java/com/github/copilot/JsonRpcClientTest.java index 4fb43f4b62..3491ac8ab4 100644 --- a/src/test/java/com/github/copilot/sdk/JsonRpcClientTest.java +++ b/src/test/java/com/github/copilot/JsonRpcClientTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; diff --git a/src/test/java/com/github/copilot/sdk/LifecycleEventManagerTest.java b/src/test/java/com/github/copilot/LifecycleEventManagerTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/LifecycleEventManagerTest.java rename to src/test/java/com/github/copilot/LifecycleEventManagerTest.java index 1500f2794f..6ec6fb5a32 100644 --- a/src/test/java/com/github/copilot/sdk/LifecycleEventManagerTest.java +++ b/src/test/java/com/github/copilot/LifecycleEventManagerTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -11,7 +11,7 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.SessionLifecycleEvent; +import com.github.copilot.rpc.SessionLifecycleEvent; /** * Unit tests for {@link LifecycleEventManager} covering subscribe, unsubscribe, diff --git a/src/test/java/com/github/copilot/sdk/McpAndAgentsTest.java b/src/test/java/com/github/copilot/McpAndAgentsTest.java similarity index 86% rename from src/test/java/com/github/copilot/sdk/McpAndAgentsTest.java rename to src/test/java/com/github/copilot/McpAndAgentsTest.java index 03f989f5b9..f39e56eab3 100644 --- a/src/test/java/com/github/copilot/sdk/McpAndAgentsTest.java +++ b/src/test/java/com/github/copilot/McpAndAgentsTest.java @@ -2,10 +2,11 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; +import java.nio.file.Path; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -16,16 +17,17 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.CustomAgentConfig; -import com.github.copilot.sdk.json.DefaultAgentConfig; -import com.github.copilot.sdk.json.McpServerConfig; -import com.github.copilot.sdk.json.McpStdioServerConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.rpc.McpServerStatus; +import com.github.copilot.rpc.CustomAgentConfig; +import com.github.copilot.rpc.DefaultAgentConfig; +import com.github.copilot.rpc.McpServerConfig; +import com.github.copilot.rpc.McpStdioServerConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; /** * Tests for MCP Servers and Custom Agents functionality. @@ -51,9 +53,33 @@ static void teardown() throws Exception { } } - // Helper method to create an MCP stdio server configuration - private McpStdioServerConfig createLocalMcpServer(String command, List args) { - return new McpStdioServerConfig().setCommand(command).setArgs(args).setTools(List.of("*")); + private Map createTestMcpServers(String... serverNames) { + Map servers = new HashMap<>(); + for (String serverName : serverNames) { + servers.put(serverName, createTestMcpServer()); + } + return servers; + } + + private McpStdioServerConfig createTestMcpServer() { + Path harnessDir = ctx.getRepoRoot().resolve("test").resolve("harness"); + return new McpStdioServerConfig().setCommand("node") + .setArgs(List.of(harnessDir.resolve("test-mcp-server.mjs").toString())) + .setWorkingDirectory(harnessDir.toString()).setTools(List.of("*")); + } + + private void waitForMcpServerStatus(CopilotSession session, String serverName, McpServerStatus expectedStatus) + throws Exception { + long deadline = System.nanoTime() + TimeUnit.SECONDS.toNanos(60); + while (System.nanoTime() < deadline) { + var result = session.getRpc().mcp.list().get(5, TimeUnit.SECONDS); + if (result.servers() != null && result.servers().stream() + .anyMatch(server -> serverName.equals(server.name()) && expectedStatus == server.status())) { + return; + } + Thread.sleep(200); + } + fail(serverName + " did not reach " + expectedStatus); } // ============ MCP Server Tests ============ @@ -68,8 +94,7 @@ private McpStdioServerConfig createLocalMcpServer(String command, List a void testShouldAcceptMcpServerConfigurationOnSessionCreate() throws Exception { ctx.configureForTest("mcp_and_agents", "should_accept_mcp_server_configuration_on_session_create"); - var mcpServers = new HashMap(); - mcpServers.put("test-server", createLocalMcpServer("echo", List.of("hello"))); + var mcpServers = createTestMcpServers("test-server"); try (CopilotClient client = ctx.createClient()) { CopilotSession session = client.createSession( @@ -77,6 +102,7 @@ void testShouldAcceptMcpServerConfigurationOnSessionCreate() throws Exception { .get(); assertNotNull(session.getSessionId()); + waitForMcpServerStatus(session, "test-server", McpServerStatus.CONNECTED); // Simple interaction to verify session works AssistantMessageEvent response = session.sendAndWait(new MessageOptions().setPrompt("What is 2+2?")).get(60, @@ -108,20 +134,13 @@ void testShouldAcceptMcpServerConfigurationOnSessionResume() throws Exception { session1.sendAndWait(new MessageOptions().setPrompt("What is 1+1?")).get(60, TimeUnit.SECONDS); // Resume with MCP servers - var mcpServers = new HashMap(); - mcpServers.put("test-server", createLocalMcpServer("echo", List.of("hello"))); + var mcpServers = createTestMcpServers("test-server"); CopilotSession session2 = client.resumeSession(sessionId, new ResumeSessionConfig() .setMcpServers(mcpServers).setOnPermissionRequest(PermissionHandler.APPROVE_ALL)).get(); assertEquals(sessionId, session2.getSessionId()); - - AssistantMessageEvent response = session2.sendAndWait(new MessageOptions().setPrompt("What is 3+3?")) - .get(60, TimeUnit.SECONDS); - - assertNotNull(response); - assertTrue(response.getData().content().contains("6"), - "Response should contain 6: " + response.getData().content()); + waitForMcpServerStatus(session2, "test-server", McpServerStatus.CONNECTED); session2.close(); } @@ -139,9 +158,7 @@ void testShouldHandleMultipleMcpServers() throws Exception { // count ctx.configureForTest("mcp_and_agents", "should_accept_mcp_server_configuration_on_session_create"); - var mcpServers = new HashMap(); - mcpServers.put("server1", createLocalMcpServer("echo", List.of("server1"))); - mcpServers.put("server2", createLocalMcpServer("echo", List.of("server2"))); + var mcpServers = createTestMcpServers("server1", "server2"); try (CopilotClient client = ctx.createClient()) { CopilotSession session = client.createSession( @@ -149,6 +166,8 @@ void testShouldHandleMultipleMcpServers() throws Exception { .get(); assertNotNull(session.getSessionId()); + waitForMcpServerStatus(session, "server1", McpServerStatus.CONNECTED); + waitForMcpServerStatus(session, "server2", McpServerStatus.CONNECTED); session.close(); } } @@ -296,8 +315,7 @@ void testShouldAcceptCustomAgentWithMcpServers() throws Exception { // Use combined snapshot since this uses both MCP servers and custom agents ctx.configureForTest("mcp_and_agents", "should_accept_both_mcp_servers_and_custom_agents"); - var agentMcpServers = new HashMap(); - agentMcpServers.put("agent-server", createLocalMcpServer("echo", List.of("agent-mcp"))); + var agentMcpServers = createTestMcpServers("agent-server"); List customAgents = List.of(new CustomAgentConfig().setName("mcp-agent") .setDisplayName("MCP Agent").setDescription("An agent with its own MCP servers") @@ -350,8 +368,7 @@ void testShouldAcceptMultipleCustomAgents() throws Exception { void testShouldAcceptBothMcpServersAndCustomAgents() throws Exception { ctx.configureForTest("mcp_and_agents", "should_accept_both_mcp_servers_and_custom_agents"); - var mcpServers = new HashMap(); - mcpServers.put("shared-server", createLocalMcpServer("echo", List.of("shared"))); + var mcpServers = createTestMcpServers("shared-server"); List customAgents = List.of(new CustomAgentConfig().setName("combined-agent") .setDisplayName("Combined Agent").setDescription("An agent using shared MCP servers") @@ -362,6 +379,7 @@ void testShouldAcceptBothMcpServersAndCustomAgents() throws Exception { .setCustomAgents(customAgents).setOnPermissionRequest(PermissionHandler.APPROVE_ALL)).get(); assertNotNull(session.getSessionId()); + waitForMcpServerStatus(session, "shared-server", McpServerStatus.CONNECTED); AssistantMessageEvent response = session.sendAndWait(new MessageOptions().setPrompt("What is 7+7?")).get(60, TimeUnit.SECONDS); diff --git a/src/test/java/com/github/copilot/sdk/MessageAttachmentTest.java b/src/test/java/com/github/copilot/MessageAttachmentTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/MessageAttachmentTest.java rename to src/test/java/com/github/copilot/MessageAttachmentTest.java index 3150cecc2e..27e9f56cc3 100644 --- a/src/test/java/com/github/copilot/sdk/MessageAttachmentTest.java +++ b/src/test/java/com/github/copilot/MessageAttachmentTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,11 +12,11 @@ import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.Attachment; -import com.github.copilot.sdk.json.BlobAttachment; -import com.github.copilot.sdk.json.MessageAttachment; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.SendMessageRequest; +import com.github.copilot.rpc.Attachment; +import com.github.copilot.rpc.BlobAttachment; +import com.github.copilot.rpc.MessageAttachment; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.SendMessageRequest; /** * Tests for the {@link MessageAttachment} sealed interface and type-safe diff --git a/src/test/java/com/github/copilot/sdk/MetadataApiTest.java b/src/test/java/com/github/copilot/MetadataApiTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/MetadataApiTest.java rename to src/test/java/com/github/copilot/MetadataApiTest.java index 3a9120a525..b2c775eb13 100644 --- a/src/test/java/com/github/copilot/sdk/MetadataApiTest.java +++ b/src/test/java/com/github/copilot/MetadataApiTest.java @@ -2,12 +2,12 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.ToolExecutionProgressEvent; -import com.github.copilot.sdk.json.*; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.ToolExecutionProgressEvent; +import com.github.copilot.rpc.*; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; diff --git a/src/test/java/com/github/copilot/sdk/ModeHandlersTest.java b/src/test/java/com/github/copilot/ModeHandlersTest.java similarity index 89% rename from src/test/java/com/github/copilot/sdk/ModeHandlersTest.java rename to src/test/java/com/github/copilot/ModeHandlersTest.java index 965d431e02..62202c903e 100644 --- a/src/test/java/com/github/copilot/sdk/ModeHandlersTest.java +++ b/src/test/java/com/github/copilot/ModeHandlersTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -15,17 +15,17 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.ExitPlanModeAction; -import com.github.copilot.sdk.generated.ExitPlanModeCompletedEvent; -import com.github.copilot.sdk.generated.ExitPlanModeRequestedEvent; -import com.github.copilot.sdk.json.AutoModeSwitchRequest; -import com.github.copilot.sdk.json.AutoModeSwitchResponse; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.ExitPlanModeRequest; -import com.github.copilot.sdk.json.ExitPlanModeResult; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.ExitPlanModeAction; +import com.github.copilot.generated.ExitPlanModeCompletedEvent; +import com.github.copilot.generated.ExitPlanModeRequestedEvent; +import com.github.copilot.rpc.AutoModeSwitchRequest; +import com.github.copilot.rpc.AutoModeSwitchResponse; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.ExitPlanModeRequest; +import com.github.copilot.rpc.ExitPlanModeResult; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * E2E tests for exit-plan-mode and auto-mode-switch handler APIs. diff --git a/src/test/java/com/github/copilot/sdk/ModelInfoTest.java b/src/test/java/com/github/copilot/ModelInfoTest.java similarity index 91% rename from src/test/java/com/github/copilot/sdk/ModelInfoTest.java rename to src/test/java/com/github/copilot/ModelInfoTest.java index f36d0c4bd7..b4936d1cca 100644 --- a/src/test/java/com/github/copilot/sdk/ModelInfoTest.java +++ b/src/test/java/com/github/copilot/ModelInfoTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -10,9 +10,9 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.ModelInfo; -import com.github.copilot.sdk.json.ModelSupports; -import com.github.copilot.sdk.json.SessionMetadata; +import com.github.copilot.rpc.ModelInfo; +import com.github.copilot.rpc.ModelSupports; +import com.github.copilot.rpc.SessionMetadata; /** * Unit tests for {@link ModelInfo}, {@link ModelSupports}, and diff --git a/src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java b/src/test/java/com/github/copilot/ModuleDescriptorTest.java similarity index 75% rename from src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java rename to src/test/java/com/github/copilot/ModuleDescriptorTest.java index 36be137345..f7c16bb233 100644 --- a/src/test/java/com/github/copilot/sdk/ModuleDescriptorTest.java +++ b/src/test/java/com/github/copilot/ModuleDescriptorTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -16,12 +16,11 @@ class ModuleDescriptorTest { void sdkHasExplicitModuleDescriptor() { Module module = CopilotClient.class.getModule(); assertTrue(module.isNamed()); - assertEquals("com.github.copilot.sdk.java", module.getName()); + assertEquals("com.github.copilot.java", module.getName()); ModuleDescriptor descriptor = module.getDescriptor(); - assertTrue(descriptor.exports().stream().anyMatch(export -> export.source().equals("com.github.copilot.sdk"))); - assertTrue(descriptor.exports().stream() - .anyMatch(export -> export.source().equals("com.github.copilot.sdk.json"))); + assertTrue(descriptor.exports().stream().anyMatch(export -> export.source().equals("com.github.copilot"))); + assertTrue(descriptor.exports().stream().anyMatch(export -> export.source().equals("com.github.copilot.rpc"))); assertTrue(descriptor.requires().stream() .anyMatch(require -> require.name().equals("com.fasterxml.jackson.databind"))); } diff --git a/src/test/java/com/github/copilot/sdk/OptionalApiAndJacksonTest.java b/src/test/java/com/github/copilot/OptionalApiAndJacksonTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/OptionalApiAndJacksonTest.java rename to src/test/java/com/github/copilot/OptionalApiAndJacksonTest.java index 2a9770e2e2..1db593dbe2 100644 --- a/src/test/java/com/github/copilot/sdk/OptionalApiAndJacksonTest.java +++ b/src/test/java/com/github/copilot/OptionalApiAndJacksonTest.java @@ -2,22 +2,22 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.CustomAgentConfig; -import com.github.copilot.sdk.json.InfiniteSessionConfig; -import com.github.copilot.sdk.json.InputOptions; -import com.github.copilot.sdk.json.ModelCapabilitiesOverride; -import com.github.copilot.sdk.json.ProviderConfig; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionUiCapabilities; -import com.github.copilot.sdk.json.TelemetryConfig; -import com.github.copilot.sdk.json.UserInputRequest; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.CustomAgentConfig; +import com.github.copilot.rpc.InfiniteSessionConfig; +import com.github.copilot.rpc.InputOptions; +import com.github.copilot.rpc.ModelCapabilitiesOverride; +import com.github.copilot.rpc.ProviderConfig; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionUiCapabilities; +import com.github.copilot.rpc.TelemetryConfig; +import com.github.copilot.rpc.UserInputRequest; import org.junit.jupiter.api.Test; /** diff --git a/src/test/java/com/github/copilot/sdk/PerSessionAuthTest.java b/src/test/java/com/github/copilot/PerSessionAuthTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/PerSessionAuthTest.java rename to src/test/java/com/github/copilot/PerSessionAuthTest.java index dd5de81b83..000d36e4ba 100644 --- a/src/test/java/com/github/copilot/sdk/PerSessionAuthTest.java +++ b/src/test/java/com/github/copilot/PerSessionAuthTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -13,10 +13,10 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.rpc.SessionAuthGetStatusResult; -import com.github.copilot.sdk.json.CopilotClientOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.rpc.SessionAuthGetStatusResult; +import com.github.copilot.rpc.CopilotClientOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * Tests for per-session GitHub authentication. diff --git a/src/test/java/com/github/copilot/sdk/PermissionRequestResultKindTest.java b/src/test/java/com/github/copilot/PermissionRequestResultKindTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/PermissionRequestResultKindTest.java rename to src/test/java/com/github/copilot/PermissionRequestResultKindTest.java index ab81966dc9..0bd08f47d7 100644 --- a/src/test/java/com/github/copilot/sdk/PermissionRequestResultKindTest.java +++ b/src/test/java/com/github/copilot/PermissionRequestResultKindTest.java @@ -2,15 +2,15 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import org.junit.jupiter.api.Test; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; /** * Unit tests for {@link PermissionRequestResultKind}. diff --git a/src/test/java/com/github/copilot/sdk/PermissionsTest.java b/src/test/java/com/github/copilot/PermissionsTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/PermissionsTest.java rename to src/test/java/com/github/copilot/PermissionsTest.java index 6cc8eaa301..6f10f353c2 100644 --- a/src/test/java/com/github/copilot/sdk/PermissionsTest.java +++ b/src/test/java/com/github/copilot/PermissionsTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -17,15 +17,15 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.ToolExecutionCompleteEvent; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PermissionRequest; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.ToolExecutionCompleteEvent; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PermissionRequest; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.MessageOptions; /** * Tests for permission callback functionality. @@ -417,7 +417,7 @@ void testShouldShortCircuitPermissionHandlerWhenSetApproveAllEnabled() throws Ex // Set approve-all so the runtime short-circuits var setResult = session.getRpc().permissions - .setApproveAll(new com.github.copilot.sdk.generated.rpc.SessionPermissionsSetApproveAllParams( + .setApproveAll(new com.github.copilot.generated.rpc.SessionPermissionsSetApproveAllParams( session.getSessionId(), true, null)) .get(10, TimeUnit.SECONDS); assertTrue(setResult.success(), "setApproveAll should succeed"); diff --git a/src/test/java/com/github/copilot/sdk/PreMcpToolCallHookTest.java b/src/test/java/com/github/copilot/PreMcpToolCallHookTest.java similarity index 93% rename from src/test/java/com/github/copilot/sdk/PreMcpToolCallHookTest.java rename to src/test/java/com/github/copilot/PreMcpToolCallHookTest.java index 37db10c17e..5da0d2002f 100644 --- a/src/test/java/com/github/copilot/sdk/PreMcpToolCallHookTest.java +++ b/src/test/java/com/github/copilot/PreMcpToolCallHookTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -19,15 +19,15 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.McpServerConfig; -import com.github.copilot.sdk.json.McpStdioServerConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PreMcpToolCallHookInput; -import com.github.copilot.sdk.json.PreMcpToolCallHookOutput; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionHooks; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.McpServerConfig; +import com.github.copilot.rpc.McpStdioServerConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PreMcpToolCallHookInput; +import com.github.copilot.rpc.PreMcpToolCallHookOutput; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionHooks; /** * Tests for preMcpToolCall hook functionality. diff --git a/src/test/java/com/github/copilot/sdk/ProviderConfigTest.java b/src/test/java/com/github/copilot/ProviderConfigTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/ProviderConfigTest.java rename to src/test/java/com/github/copilot/ProviderConfigTest.java index 6bbb3ae284..5c40230ecc 100644 --- a/src/test/java/com/github/copilot/sdk/ProviderConfigTest.java +++ b/src/test/java/com/github/copilot/ProviderConfigTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; @@ -14,10 +14,10 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.AzureOptions; -import com.github.copilot.sdk.json.ProviderConfig; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.rpc.AzureOptions; +import com.github.copilot.rpc.ProviderConfig; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; /** * Tests for {@link ProviderConfig} and {@link AzureOptions} BYOK (Bring Your diff --git a/src/test/java/com/github/copilot/sdk/RemoteSessionTest.java b/src/test/java/com/github/copilot/RemoteSessionTest.java similarity index 95% rename from src/test/java/com/github/copilot/sdk/RemoteSessionTest.java rename to src/test/java/com/github/copilot/RemoteSessionTest.java index 6e093db6ca..67c5f5bb6a 100644 --- a/src/test/java/com/github/copilot/sdk/RemoteSessionTest.java +++ b/src/test/java/com/github/copilot/RemoteSessionTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,10 +12,10 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.CreateSessionRequest; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.ResumeSessionRequest; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.rpc.CreateSessionRequest; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.ResumeSessionRequest; +import com.github.copilot.rpc.SessionConfig; /** * Tests for the {@code remoteSession} feature across all session config types. @@ -368,12 +368,12 @@ void handoffEvent_withRemoteSourceType_containsRemoteSessionId() throws Exceptio } """; - var event = (com.github.copilot.sdk.generated.SessionHandoffEvent) MAPPER.readValue(json, - com.github.copilot.sdk.generated.SessionEvent.class); + var event = (com.github.copilot.generated.SessionHandoffEvent) MAPPER.readValue(json, + com.github.copilot.generated.SessionEvent.class); assertNotNull(event); var data = event.getData(); assertEquals("remote-sess-42", data.remoteSessionId()); - assertEquals(com.github.copilot.sdk.generated.HandoffSourceType.REMOTE, data.sourceType()); + assertEquals(com.github.copilot.generated.HandoffSourceType.REMOTE, data.sourceType()); assertEquals("Session exported for remote execution", data.summary()); assertEquals("test-org", data.repository().owner()); assertEquals("test-repo", data.repository().name()); @@ -391,8 +391,8 @@ void handoffEvent_withoutRemoteSessionId_fieldIsNull() throws Exception { } """; - var event = (com.github.copilot.sdk.generated.SessionHandoffEvent) MAPPER.readValue(json, - com.github.copilot.sdk.generated.SessionEvent.class); + var event = (com.github.copilot.generated.SessionHandoffEvent) MAPPER.readValue(json, + com.github.copilot.generated.SessionEvent.class); assertNotNull(event); assertNull(event.getData().remoteSessionId()); } diff --git a/src/test/java/com/github/copilot/sdk/RpcHandlerDispatcherTest.java b/src/test/java/com/github/copilot/RpcHandlerDispatcherTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/RpcHandlerDispatcherTest.java rename to src/test/java/com/github/copilot/RpcHandlerDispatcherTest.java index 7453a7b266..76c2d41b29 100644 --- a/src/test/java/com/github/copilot/sdk/RpcHandlerDispatcherTest.java +++ b/src/test/java/com/github/copilot/RpcHandlerDispatcherTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -24,14 +24,14 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.PreToolUseHookOutput; -import com.github.copilot.sdk.json.SessionHooks; -import com.github.copilot.sdk.json.SessionLifecycleEvent; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.ToolResultObject; -import com.github.copilot.sdk.json.UserInputResponse; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.PreToolUseHookOutput; +import com.github.copilot.rpc.SessionHooks; +import com.github.copilot.rpc.SessionLifecycleEvent; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.ToolResultObject; +import com.github.copilot.rpc.UserInputResponse; /** * Unit tests for {@link RpcHandlerDispatcher} focusing on coverage gaps diff --git a/src/test/java/com/github/copilot/sdk/RpcWrappersTest.java b/src/test/java/com/github/copilot/RpcWrappersTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/RpcWrappersTest.java rename to src/test/java/com/github/copilot/RpcWrappersTest.java index e2356d985a..7b01e1d386 100644 --- a/src/test/java/com/github/copilot/sdk/RpcWrappersTest.java +++ b/src/test/java/com/github/copilot/RpcWrappersTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -15,13 +15,13 @@ import org.junit.jupiter.api.Test; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.rpc.McpConfigAddParams; -import com.github.copilot.sdk.generated.rpc.McpDiscoverParams; -import com.github.copilot.sdk.generated.rpc.RpcCaller; -import com.github.copilot.sdk.generated.rpc.ServerRpc; -import com.github.copilot.sdk.generated.rpc.SessionAgentSelectParams; -import com.github.copilot.sdk.generated.rpc.SessionModelSwitchToParams; -import com.github.copilot.sdk.generated.rpc.SessionRpc; +import com.github.copilot.generated.rpc.McpConfigAddParams; +import com.github.copilot.generated.rpc.McpDiscoverParams; +import com.github.copilot.generated.rpc.RpcCaller; +import com.github.copilot.generated.rpc.ServerRpc; +import com.github.copilot.generated.rpc.SessionAgentSelectParams; +import com.github.copilot.generated.rpc.SessionModelSwitchToParams; +import com.github.copilot.generated.rpc.SessionRpc; /** * Unit tests for the generated RPC wrapper classes ({@link ServerRpc} and @@ -90,7 +90,7 @@ void serverRpc_ping_passes_params_directly() { var stub = new StubCaller(); var server = new ServerRpc(stub); - var params = new com.github.copilot.sdk.generated.rpc.PingParams(null); + var params = new com.github.copilot.generated.rpc.PingParams(null); server.ping(params); assertEquals(1, stub.calls.size()); diff --git a/src/test/java/com/github/copilot/sdk/SchedulerShutdownRaceTest.java b/src/test/java/com/github/copilot/SchedulerShutdownRaceTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/SchedulerShutdownRaceTest.java rename to src/test/java/com/github/copilot/SchedulerShutdownRaceTest.java index e60e4aa345..48a58bbc90 100644 --- a/src/test/java/com/github/copilot/sdk/SchedulerShutdownRaceTest.java +++ b/src/test/java/com/github/copilot/SchedulerShutdownRaceTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import static org.mockito.ArgumentMatchers.*; @@ -16,7 +16,7 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.rpc.MessageOptions; /** * Regression coverage for the race between {@code sendAndWait()} and diff --git a/src/test/java/com/github/copilot/sdk/SessionConfigE2ETest.java b/src/test/java/com/github/copilot/SessionConfigE2ETest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/SessionConfigE2ETest.java rename to src/test/java/com/github/copilot/SessionConfigE2ETest.java index 4c2691d86f..dbae0fe9f9 100644 --- a/src/test/java/com/github/copilot/sdk/SessionConfigE2ETest.java +++ b/src/test/java/com/github/copilot/SessionConfigE2ETest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -16,11 +16,11 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ProviderConfig; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ProviderConfig; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; /** * E2E tests for session configuration features. diff --git a/src/test/java/com/github/copilot/sdk/SessionEventDeserializationTest.java b/src/test/java/com/github/copilot/SessionEventDeserializationTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/SessionEventDeserializationTest.java rename to src/test/java/com/github/copilot/SessionEventDeserializationTest.java index 0abec58f95..06c3ef02a1 100644 --- a/src/test/java/com/github/copilot/sdk/SessionEventDeserializationTest.java +++ b/src/test/java/com/github/copilot/SessionEventDeserializationTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,7 +12,7 @@ import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.generated.*; +import com.github.copilot.generated.*; /** * Tests for session event deserialization. @@ -841,7 +841,7 @@ void testParseUnknownEventType() throws Exception { SessionEvent event = parseJson(json); assertNotNull(event, "Unknown event types should return an UnknownSessionEvent"); - assertInstanceOf(com.github.copilot.sdk.generated.UnknownSessionEvent.class, event, + assertInstanceOf(com.github.copilot.generated.UnknownSessionEvent.class, event, "Unknown event types should return UnknownSessionEvent for forward compatibility"); assertEquals("unknown.event.type", event.getType(), "UnknownSessionEvent should preserve the original type from JSON"); @@ -859,7 +859,7 @@ void testParseMissingTypeField() throws Exception { SessionEvent event = parseJson(json); assertNotNull(event, "Events without type field should return UnknownSessionEvent"); - assertInstanceOf(com.github.copilot.sdk.generated.UnknownSessionEvent.class, event); + assertInstanceOf(com.github.copilot.generated.UnknownSessionEvent.class, event); } @Test @@ -887,7 +887,7 @@ void testParseEmptyJson() throws Exception { SessionEvent event = parseJson(json); assertNotNull(event, "Empty JSON should return UnknownSessionEvent"); - assertInstanceOf(com.github.copilot.sdk.generated.UnknownSessionEvent.class, event); + assertInstanceOf(com.github.copilot.generated.UnknownSessionEvent.class, event); } // ========================================================================= diff --git a/src/test/java/com/github/copilot/sdk/SessionEventHandlingTest.java b/src/test/java/com/github/copilot/SessionEventHandlingTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/SessionEventHandlingTest.java rename to src/test/java/com/github/copilot/SessionEventHandlingTest.java index 94f2c3dc76..e3a415b8b5 100644 --- a/src/test/java/com/github/copilot/sdk/SessionEventHandlingTest.java +++ b/src/test/java/com/github/copilot/SessionEventHandlingTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -21,10 +21,10 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.generated.SessionStartEvent; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.generated.SessionStartEvent; /** * Unit tests for session event handling API. diff --git a/src/test/java/com/github/copilot/sdk/SessionEventsE2ETest.java b/src/test/java/com/github/copilot/SessionEventsE2ETest.java similarity index 94% rename from src/test/java/com/github/copilot/sdk/SessionEventsE2ETest.java rename to src/test/java/com/github/copilot/SessionEventsE2ETest.java index d13c84247d..161839a533 100644 --- a/src/test/java/com/github/copilot/sdk/SessionEventsE2ETest.java +++ b/src/test/java/com/github/copilot/SessionEventsE2ETest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -16,18 +16,18 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.generated.AssistantTurnEndEvent; -import com.github.copilot.sdk.generated.AssistantTurnStartEvent; -import com.github.copilot.sdk.generated.AssistantUsageEvent; -import com.github.copilot.sdk.generated.SessionIdleEvent; -import com.github.copilot.sdk.generated.ToolExecutionCompleteEvent; -import com.github.copilot.sdk.generated.ToolExecutionStartEvent; -import com.github.copilot.sdk.generated.UserMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.generated.AssistantTurnEndEvent; +import com.github.copilot.generated.AssistantTurnStartEvent; +import com.github.copilot.generated.AssistantUsageEvent; +import com.github.copilot.generated.SessionIdleEvent; +import com.github.copilot.generated.ToolExecutionCompleteEvent; +import com.github.copilot.generated.ToolExecutionStartEvent; +import com.github.copilot.generated.UserMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * E2E tests for session events to verify event lifecycle. diff --git a/src/test/java/com/github/copilot/sdk/SessionHandlerTest.java b/src/test/java/com/github/copilot/SessionHandlerTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/SessionHandlerTest.java rename to src/test/java/com/github/copilot/SessionHandlerTest.java index 5a8dc3fcbe..1b672e6e25 100644 --- a/src/test/java/com/github/copilot/sdk/SessionHandlerTest.java +++ b/src/test/java/com/github/copilot/SessionHandlerTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -16,15 +16,15 @@ import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.SessionEndHookOutput; -import com.github.copilot.sdk.json.SessionHooks; -import com.github.copilot.sdk.json.SessionStartHookOutput; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.UserInputRequest; -import com.github.copilot.sdk.json.UserInputResponse; -import com.github.copilot.sdk.json.UserPromptSubmittedHookOutput; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.SessionEndHookOutput; +import com.github.copilot.rpc.SessionHooks; +import com.github.copilot.rpc.SessionStartHookOutput; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.UserInputRequest; +import com.github.copilot.rpc.UserInputResponse; +import com.github.copilot.rpc.UserPromptSubmittedHookOutput; /** * Unit tests for CopilotSession internal handler methods. diff --git a/src/test/java/com/github/copilot/sdk/SessionRequestBuilderTest.java b/src/test/java/com/github/copilot/SessionRequestBuilderTest.java similarity index 93% rename from src/test/java/com/github/copilot/sdk/SessionRequestBuilderTest.java rename to src/test/java/com/github/copilot/SessionRequestBuilderTest.java index 5c8f008382..49a4c9c308 100644 --- a/src/test/java/com/github/copilot/sdk/SessionRequestBuilderTest.java +++ b/src/test/java/com/github/copilot/SessionRequestBuilderTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -12,21 +12,21 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.AutoModeSwitchResponse; -import com.github.copilot.sdk.json.CloudSessionOptions; -import com.github.copilot.sdk.json.CloudSessionRepository; -import com.github.copilot.sdk.json.CreateSessionRequest; -import com.github.copilot.sdk.json.DefaultAgentConfig; -import com.github.copilot.sdk.json.ElicitationHandler; -import com.github.copilot.sdk.json.ElicitationResult; -import com.github.copilot.sdk.json.ElicitationResultAction; -import com.github.copilot.sdk.json.ExitPlanModeResult; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.ResumeSessionRequest; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.SessionHooks; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.UserInputResponse; +import com.github.copilot.rpc.AutoModeSwitchResponse; +import com.github.copilot.rpc.CloudSessionOptions; +import com.github.copilot.rpc.CloudSessionRepository; +import com.github.copilot.rpc.CreateSessionRequest; +import com.github.copilot.rpc.DefaultAgentConfig; +import com.github.copilot.rpc.ElicitationHandler; +import com.github.copilot.rpc.ElicitationResult; +import com.github.copilot.rpc.ElicitationResultAction; +import com.github.copilot.rpc.ExitPlanModeResult; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.ResumeSessionRequest; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.SessionHooks; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.UserInputResponse; /** * Unit tests for {@link SessionRequestBuilder} branch coverage. @@ -245,7 +245,7 @@ void testConfigureResumeSessionWithUserInputHandler() throws Exception { // Handler was registered — verify by calling handleUserInputRequest // (package-private) - var response = session.handleUserInputRequest(new com.github.copilot.sdk.json.UserInputRequest()).get(); + var response = session.handleUserInputRequest(new com.github.copilot.rpc.UserInputRequest()).get(); assertNotNull(response); } @@ -301,8 +301,8 @@ void extractTransformCallbacks_nullSystemMessage_returnsNull() { @Test void extractTransformCallbacks_appendMode_returnsOriginalConfig() { - var config = new com.github.copilot.sdk.json.SystemMessageConfig() - .setMode(com.github.copilot.sdk.SystemMessageMode.APPEND).setContent("extra content"); + var config = new com.github.copilot.rpc.SystemMessageConfig() + .setMode(com.github.copilot.SystemMessageMode.APPEND).setContent("extra content"); ExtractedTransforms result = SessionRequestBuilder.extractTransformCallbacks(config); assertSame(config, result.wireSystemMessage()); assertNull(result.transformCallbacks()); @@ -310,10 +310,10 @@ void extractTransformCallbacks_appendMode_returnsOriginalConfig() { @Test void extractTransformCallbacks_customizeModeNoTransforms_returnsOriginalConfig() { - var sections = Map.of("tone", new com.github.copilot.sdk.json.SectionOverride() - .setAction(com.github.copilot.sdk.json.SectionOverrideAction.REMOVE)); - var config = new com.github.copilot.sdk.json.SystemMessageConfig() - .setMode(com.github.copilot.sdk.SystemMessageMode.CUSTOMIZE).setSections(sections); + var sections = Map.of("tone", new com.github.copilot.rpc.SectionOverride() + .setAction(com.github.copilot.rpc.SectionOverrideAction.REMOVE)); + var config = new com.github.copilot.rpc.SystemMessageConfig() + .setMode(com.github.copilot.SystemMessageMode.CUSTOMIZE).setSections(sections); ExtractedTransforms result = SessionRequestBuilder.extractTransformCallbacks(config); assertSame(config, result.wireSystemMessage()); assertNull(result.transformCallbacks()); @@ -323,9 +323,9 @@ void extractTransformCallbacks_customizeModeNoTransforms_returnsOriginalConfig() void extractTransformCallbacks_customizeModeWithTransform_extractsCallbacks() { var transformFn = (java.util.function.Function>) content -> CompletableFuture .completedFuture(content + " modified"); - var sections = Map.of("identity", new com.github.copilot.sdk.json.SectionOverride().setTransform(transformFn)); - var config = new com.github.copilot.sdk.json.SystemMessageConfig() - .setMode(com.github.copilot.sdk.SystemMessageMode.CUSTOMIZE).setSections(sections); + var sections = Map.of("identity", new com.github.copilot.rpc.SectionOverride().setTransform(transformFn)); + var config = new com.github.copilot.rpc.SystemMessageConfig() + .setMode(com.github.copilot.SystemMessageMode.CUSTOMIZE).setSections(sections); ExtractedTransforms result = SessionRequestBuilder.extractTransformCallbacks(config); @@ -338,7 +338,7 @@ void extractTransformCallbacks_customizeModeWithTransform_extractsCallbacks() { assertNotNull(result.wireSystemMessage().getSections()); var wireSection = result.wireSystemMessage().getSections().get("identity"); assertNotNull(wireSection); - assertEquals(com.github.copilot.sdk.json.SectionOverrideAction.TRANSFORM, wireSection.getAction()); + assertEquals(com.github.copilot.rpc.SectionOverrideAction.TRANSFORM, wireSection.getAction()); assertNull(wireSection.getTransform()); } @@ -366,7 +366,7 @@ void configureSessionWithNullConfig_returnsEarly() { void configureSessionWithCommands_registersCommands() { CopilotSession session = new CopilotSession("session-1", null); - var cmd = new com.github.copilot.sdk.json.CommandDefinition().setName("deploy") + var cmd = new com.github.copilot.rpc.CommandDefinition().setName("deploy") .setHandler(ctx -> CompletableFuture.completedFuture(null)); var config = new SessionConfig().setCommands(List.of(cmd)); @@ -402,7 +402,7 @@ void configureSessionWithOnEvent_registersEventHandler() { void configureResumedSessionWithCommands_registersCommands() { CopilotSession session = new CopilotSession("session-1", null); - var cmd = new com.github.copilot.sdk.json.CommandDefinition().setName("rollback") + var cmd = new com.github.copilot.rpc.CommandDefinition().setName("rollback") .setHandler(ctx -> CompletableFuture.completedFuture(null)); var config = new ResumeSessionConfig().setCommands(List.of(cmd)); diff --git a/src/test/java/com/github/copilot/sdk/SkillsTest.java b/src/test/java/com/github/copilot/SkillsTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/SkillsTest.java rename to src/test/java/com/github/copilot/SkillsTest.java index 6cf34044fe..6d4b7e1f76 100644 --- a/src/test/java/com/github/copilot/sdk/SkillsTest.java +++ b/src/test/java/com/github/copilot/SkillsTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -17,11 +17,11 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.CustomAgentConfig; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.CustomAgentConfig; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; /** * Tests for skills configuration functionality. diff --git a/src/test/java/com/github/copilot/sdk/StreamingFidelityTest.java b/src/test/java/com/github/copilot/StreamingFidelityTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/StreamingFidelityTest.java rename to src/test/java/com/github/copilot/StreamingFidelityTest.java index d3df63eb06..631496a8f7 100644 --- a/src/test/java/com/github/copilot/sdk/StreamingFidelityTest.java +++ b/src/test/java/com/github/copilot/StreamingFidelityTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; @@ -17,13 +17,13 @@ import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.AssistantMessageDeltaEvent; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.ResumeSessionConfig; -import com.github.copilot.sdk.json.SessionConfig; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.AssistantMessageDeltaEvent; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.ResumeSessionConfig; +import com.github.copilot.rpc.SessionConfig; /** * E2E tests for streaming fidelity — verifying that delta events are produced diff --git a/src/test/java/com/github/copilot/sdk/TelemetryConfigTest.java b/src/test/java/com/github/copilot/TelemetryConfigTest.java similarity index 96% rename from src/test/java/com/github/copilot/sdk/TelemetryConfigTest.java rename to src/test/java/com/github/copilot/TelemetryConfigTest.java index 278777ce13..2dd41c28a7 100644 --- a/src/test/java/com/github/copilot/sdk/TelemetryConfigTest.java +++ b/src/test/java/com/github/copilot/TelemetryConfigTest.java @@ -2,13 +2,13 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.json.TelemetryConfig; +import com.github.copilot.rpc.TelemetryConfig; /** * Unit tests for {@link TelemetryConfig} getters, setters, and fluent chaining. diff --git a/src/test/java/com/github/copilot/sdk/TestUtil.java b/src/test/java/com/github/copilot/TestUtil.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/TestUtil.java rename to src/test/java/com/github/copilot/TestUtil.java index af44745901..cadef040b6 100644 --- a/src/test/java/com/github/copilot/sdk/TestUtil.java +++ b/src/test/java/com/github/copilot/TestUtil.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import java.io.BufferedReader; import java.io.InputStreamReader; diff --git a/src/test/java/com/github/copilot/sdk/TimeoutEdgeCaseTest.java b/src/test/java/com/github/copilot/TimeoutEdgeCaseTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/TimeoutEdgeCaseTest.java rename to src/test/java/com/github/copilot/TimeoutEdgeCaseTest.java index b771f65b2c..17e1851bb4 100644 --- a/src/test/java/com/github/copilot/sdk/TimeoutEdgeCaseTest.java +++ b/src/test/java/com/github/copilot/TimeoutEdgeCaseTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -15,8 +15,8 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; /** * Regression tests for timeout edge cases in diff --git a/src/test/java/com/github/copilot/sdk/ToolInvocationTest.java b/src/test/java/com/github/copilot/ToolInvocationTest.java similarity index 98% rename from src/test/java/com/github/copilot/sdk/ToolInvocationTest.java rename to src/test/java/com/github/copilot/ToolInvocationTest.java index 3dcbf7c9ac..2bc9edb1b4 100644 --- a/src/test/java/com/github/copilot/sdk/ToolInvocationTest.java +++ b/src/test/java/com/github/copilot/ToolInvocationTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -10,7 +10,7 @@ import com.fasterxml.jackson.databind.node.JsonNodeFactory; import com.fasterxml.jackson.databind.node.ObjectNode; -import com.github.copilot.sdk.json.ToolInvocation; +import com.github.copilot.rpc.ToolInvocation; /** * Unit tests for {@link ToolInvocation}. diff --git a/src/test/java/com/github/copilot/sdk/ToolResultsTest.java b/src/test/java/com/github/copilot/ToolResultsTest.java similarity index 93% rename from src/test/java/com/github/copilot/sdk/ToolResultsTest.java rename to src/test/java/com/github/copilot/ToolResultsTest.java index 31f9d1b07d..54216d9216 100644 --- a/src/test/java/com/github/copilot/sdk/ToolResultsTest.java +++ b/src/test/java/com/github/copilot/ToolResultsTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -16,13 +16,13 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.SessionEvent; -import com.github.copilot.sdk.generated.ToolExecutionCompleteEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; -import com.github.copilot.sdk.json.ToolResultObject; +import com.github.copilot.generated.SessionEvent; +import com.github.copilot.generated.ToolExecutionCompleteEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; +import com.github.copilot.rpc.ToolResultObject; /** * E2E tests for tool result types — verifying that rejected and denied result diff --git a/src/test/java/com/github/copilot/sdk/ToolsTest.java b/src/test/java/com/github/copilot/ToolsTest.java similarity index 97% rename from src/test/java/com/github/copilot/sdk/ToolsTest.java rename to src/test/java/com/github/copilot/ToolsTest.java index 6cd0c99bd3..3bbe767847 100644 --- a/src/test/java/com/github/copilot/sdk/ToolsTest.java +++ b/src/test/java/com/github/copilot/ToolsTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; @@ -20,14 +20,14 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; -import com.github.copilot.sdk.json.PermissionHandler; -import com.github.copilot.sdk.json.PermissionRequest; -import com.github.copilot.sdk.json.PermissionRequestResult; -import com.github.copilot.sdk.json.PermissionRequestResultKind; -import com.github.copilot.sdk.json.SessionConfig; -import com.github.copilot.sdk.json.ToolDefinition; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; +import com.github.copilot.rpc.PermissionHandler; +import com.github.copilot.rpc.PermissionRequest; +import com.github.copilot.rpc.PermissionRequestResult; +import com.github.copilot.rpc.PermissionRequestResultKind; +import com.github.copilot.rpc.SessionConfig; +import com.github.copilot.rpc.ToolDefinition; /** * Tests for custom tools functionality. diff --git a/src/test/java/com/github/copilot/sdk/ZeroTimeoutContractTest.java b/src/test/java/com/github/copilot/ZeroTimeoutContractTest.java similarity index 94% rename from src/test/java/com/github/copilot/sdk/ZeroTimeoutContractTest.java rename to src/test/java/com/github/copilot/ZeroTimeoutContractTest.java index 524026e698..3d986566dc 100644 --- a/src/test/java/com/github/copilot/sdk/ZeroTimeoutContractTest.java +++ b/src/test/java/com/github/copilot/ZeroTimeoutContractTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk; +package com.github.copilot; import static org.junit.jupiter.api.Assertions.*; import static org.mockito.ArgumentMatchers.*; @@ -12,8 +12,8 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.generated.AssistantMessageEvent; -import com.github.copilot.sdk.json.MessageOptions; +import com.github.copilot.generated.AssistantMessageEvent; +import com.github.copilot.rpc.MessageOptions; /** * Verifies the documented contract that {@code timeoutMs <= 0} means "no diff --git a/src/test/java/com/github/copilot/sdk/generated/GeneratedEventTypesCoverageTest.java b/src/test/java/com/github/copilot/generated/GeneratedEventTypesCoverageTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/generated/GeneratedEventTypesCoverageTest.java rename to src/test/java/com/github/copilot/generated/GeneratedEventTypesCoverageTest.java index 7cbaf9a0c6..28e2aba3b3 100644 --- a/src/test/java/com/github/copilot/sdk/generated/GeneratedEventTypesCoverageTest.java +++ b/src/test/java/com/github/copilot/generated/GeneratedEventTypesCoverageTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.generated; +package com.github.copilot.generated; import static org.junit.jupiter.api.Assertions.*; @@ -15,8 +15,8 @@ /** * Deserialization tests for generated session event types that are not covered - * in {@link com.github.copilot.sdk.SessionEventDeserializationTest}. Verifies - * that each event deserializes correctly from JSON and that the {@code type} + * in {@link com.github.copilot.SessionEventDeserializationTest}. Verifies that + * each event deserializes correctly from JSON and that the {@code type} * discriminator and {@code data} fields are accessible. */ public class GeneratedEventTypesCoverageTest { diff --git a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java b/src/test/java/com/github/copilot/generated/rpc/GeneratedRpcApiCoverageTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java rename to src/test/java/com/github/copilot/generated/rpc/GeneratedRpcApiCoverageTest.java index e0f66bd595..4bc1cc06bf 100644 --- a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcApiCoverageTest.java +++ b/src/test/java/com/github/copilot/generated/rpc/GeneratedRpcApiCoverageTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import static org.junit.jupiter.api.Assertions.*; diff --git a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java b/src/test/java/com/github/copilot/generated/rpc/GeneratedRpcRecordsCoverageTest.java similarity index 99% rename from src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java rename to src/test/java/com/github/copilot/generated/rpc/GeneratedRpcRecordsCoverageTest.java index 6601b48298..d34fa76b1b 100644 --- a/src/test/java/com/github/copilot/sdk/generated/rpc/GeneratedRpcRecordsCoverageTest.java +++ b/src/test/java/com/github/copilot/generated/rpc/GeneratedRpcRecordsCoverageTest.java @@ -2,7 +2,7 @@ * Copyright (c) Microsoft Corporation. All rights reserved. *--------------------------------------------------------------------------------------------*/ -package com.github.copilot.sdk.generated.rpc; +package com.github.copilot.generated.rpc; import static org.junit.jupiter.api.Assertions.*; @@ -13,7 +13,7 @@ import org.junit.jupiter.api.Test; -import com.github.copilot.sdk.TestUtil; +import com.github.copilot.TestUtil; /** * Tests for generated RPC param and result record types. Exercises diff --git a/src/test/resources/logging-debug.properties b/src/test/resources/logging-debug.properties index 096ed002e7..d461aa1e3c 100644 --- a/src/test/resources/logging-debug.properties +++ b/src/test/resources/logging-debug.properties @@ -15,7 +15,7 @@ java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.SimpleFormatter.format=%1$tF %1$tT.%1$tL %4$-7s [%3$s] %5$s%6$s%n # Set FINE level for Copilot SDK classes -com.github.copilot.sdk.level=FINE +com.github.copilot.level=FINE # Root logger level .level=INFO diff --git a/src/test/resources/logging.properties b/src/test/resources/logging.properties index d294b56610..6aff48d466 100644 --- a/src/test/resources/logging.properties +++ b/src/test/resources/logging.properties @@ -3,6 +3,6 @@ java.util.logging.ConsoleHandler.level=INFO java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter java.util.logging.SimpleFormatter.format=%1$tF %1$tT.%1$tL %4$-7s [%3$s] %5$s%6$s%n -com.github.copilot.sdk.level=INFO +com.github.copilot.level=INFO .level=INFO