fix(ios): crash at swift runtime error (#13635)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
* Fetch copilot model options per prompt (default, optional, pro) with
generated GraphQL query and schema types.

* **Chores**
* Upgraded iOS deps: Apollo iOS 1.23.0, EventSource 0.1.5, Swift
Collections 1.2.1.
* Switched Intelligents to static linking and updated project
integration.
* Parameterized and standardized GraphQL codegen tooling; setup
automation now syncs versions and safely backs up/restores custom
scalars.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Lakr
2025-09-23 13:56:08 +08:00
committed by GitHub
parent b25759c264
commit 75a6c79b2c
10 changed files with 184 additions and 20 deletions

View File

@@ -10,7 +10,8 @@ let package = Package(
.iOS(.v16),
],
products: [
.library(name: "Intelligents", type: .dynamic, targets: ["Intelligents"]),
// static linking is required or GraphQL (ApolloAPI) will crash
.library(name: "Intelligents", type: .static, targets: ["Intelligents"]),
],
dependencies: [
.package(path: "../AffineGraphQL"),