mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-08 04:36:13 +08:00
965f4590ff
#### PR Dependency Tree * **PR #15426** 👈 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 BYOK profiles with provider/model catalogs, capability validation, connection probing, credential rotation, reordering, and secure local leases. * Added Copilot route options, selectable targets, managed tiers, explicit profile/model overrides, and improved streaming with tool callbacks and abort support. * Added Copilot availability controls to prevent access when the feature is disabled. * **Changes** * Simplified Copilot configuration and removed legacy provider-specific settings. * Removed obsolete model, token-cost, transcript strategy, and provider metadata fields from public responses. <!-- 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.4"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AffineGraphQL",
|
|
dependencies: [
|
|
.product(name: "ApolloAPI", package: "apollo-ios"),
|
|
],
|
|
path: "./Sources"
|
|
),
|
|
]
|
|
)
|