mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
620e027c3e
* feat: start on AI plan+billing UI * chore: enable plan and billing * feat: cache workspace subscription + minor fixes (#5705) * feat: update api from billing * feat: add api for workspace subscription info (#5717) * feat: refactor and start integrating AI plans * feat: refine UI and add business logic for AI * feat: complete UIUX for AI and limits * chore: remove resolved todo * chore: localize remove addon dialog * chore: fix spacing issue for usage * fix: interpret subscription + usage on action * chore: update api for billing (#5735) * chore: update revisions * fix: remove subscription cache * fix: copy improvements + use consistent dialog * chore: update to the latest client api * feat: support updating billing period * Feat/ai billing cancel reason (#5752) * chore: add cancellation reason field * fix: ci add one retry for concurrent sign up * chore: merge with main * chore: half merge * chore: fix conflict * chore: observer error * chore: remove unneeded protobuf and remove unwrap * feat: added subscription plan details * chore: check error code and update sidebar toast * chore: periodically check billing state * chore: editor ai error * chore: return file upload error * chore: fmt * chore: clippy * chore: disable upload image when exceed storage limitation * chore: remove todo * chore: remove openai i18n * chore: update log * chore: update client-api to fix stream error * chore: clippy * chore: fix language file * chore: disable billing UI --------- Co-authored-by: Zack Fu Zi Xiang <speed2exe@live.com.sg> Co-authored-by: nathan <nathan@appflowy.io>
36 lines
972 B
TOML
36 lines
972 B
TOML
[package]
|
|
name = "flowy-storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
flowy-storage-pub.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
lib-infra = { workspace = true }
|
|
url = "2.2.2"
|
|
flowy-error = { workspace = true, features = ["impl_from_reqwest", "impl_from_sqlite"] }
|
|
tokio = { workspace = true, features = ["sync", "io-util"] }
|
|
tracing.workspace = true
|
|
flowy-sqlite.workspace = true
|
|
mime_guess = "2.0.4"
|
|
fxhash = "0.2.1"
|
|
anyhow = "1.0.86"
|
|
chrono = "0.4.33"
|
|
flowy-notification = { workspace = true }
|
|
flowy-derive.workspace = true
|
|
protobuf = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
uuid = "1.6.1"
|
|
rand = { version = "0.8", features = ["std_rng"] }
|
|
|
|
[features]
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
tauri_ts = ["flowy-codegen/ts", "flowy-notification/tauri_ts"]
|
|
|
|
[build-dependencies]
|
|
flowy-codegen.workspace = true |