mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-11 14:08:55 +08:00
386e92acb6
#### PR Dependency Tree * **PR #15455** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added workspace artifact management, artifact details, and removal support. - Added workspace BYOK configuration insights, model capabilities, connection checks, and validation status. - Added profile reordering and credential revision safeguards. - **Improvements** - Improved Copilot session creation with server-provided history and metadata. - Streamlined context handling with document scope selections and selected-source synchronization. - **Bug Fixes** - Improved compatibility and reliability across web, Android, and iOS Copilot workflows. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
29 lines
569 B
Swift
29 lines
569 B
Swift
// swift-tools-version:5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AffineGraphQL",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.macOS(.v10_14),
|
|
.tvOS(.v12),
|
|
.watchOS(.v5),
|
|
],
|
|
products: [
|
|
.library(name: "AffineGraphQL", targets: ["AffineGraphQL"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apollographql/apollo-ios", exact: "1.25.7"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AffineGraphQL",
|
|
dependencies: [
|
|
.product(name: "ApolloAPI", package: "apollo-ios"),
|
|
],
|
|
path: "./Sources"
|
|
),
|
|
]
|
|
)
|