Skip to content

Update capabilities to be expressible by Boolean literals #16

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 17, 2025

Conversation

mattt
Copy link
Contributor

@mattt mattt commented Mar 17, 2025

Related to #12

Before
let server = Server(
    name: "TestServer",
    version: "1.0.0",
    capabilities: .init(
        prompts: .init(),
        resources: .init(),
        tools: .init()
    )
)

After
let server = Server(
    name: "TestServer",
    version: "1.0.0",
    capabilities: .init(
        prompts: true,
        resources: true,
        tools: true
    )
)

@mattt mattt merged commit 3e628db into main Mar 17, 2025
1 check passed
@mattt mattt deleted the mattt/capabilities-expressible-by-boolean branch March 17, 2025 11:35
mattt added a commit that referenced this pull request Mar 17, 2025
mattt added a commit that referenced this pull request Mar 17, 2025
devyhan pushed a commit to devyhan/swift-sdk that referenced this pull request Apr 4, 2025
…xtprotocol#16)

* Conform Server.Capabilities types to ExpressibleByBooleanLiteral

* Conform Client.Capabilities types to ExpressibleByBooleanLiteral

* Use Boolean literatls for capabilities in tests

* Update README
devyhan pushed a commit to devyhan/swift-sdk that referenced this pull request Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant