feat: sync Rust client with Apify OpenAPI spec v2-2026-09-02T154542Z - #24
Open
Pijukatel wants to merge 1 commit into
Open
feat: sync Rust client with Apify OpenAPI spec v2-2026-09-02T154542Z#24Pijukatel wants to merge 1 commit into
Pijukatel wants to merge 1 commit into
Conversation
…v2-2026-09-02T154542Z - Add Task::description, matching the spec's newly-documented task description field (already exposed untyped by the reference JS client). - Bump API_SPEC_VERSION to v2-2026-09-02T154542Z. - No other functional changes: the spec's other deltas over this window (nullable generalAccess on storages/runs, nullable ActorDefinition readme/input/changelog, optional UserPrivateInfo billing fields, task input accepting an array) fall through this client's generic extra map and require no code changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Syncs the Rust client with the Apify OpenAPI spec
v2-2026-09-02T154542Z(apify-docs PRs #2931, #2932, #2922).Changes
src/models.rs— add typedTask::descriptionfield (Option<String>, camelCase,#[serde(default)]), moved out of the genericextraflatten map to match spec PR #2922.src/version.rs— bumpAPI_SPEC_VERSIONtov2-2026-09-02T154542Z.Cargo.toml— bump crate version0.9.1→0.10.0(additive, minor).docs/tasks.md— document the new field.tests/task.rs— extendtask_crud_flowto round-tripdescription.CHANGELOG.md—0.10.0entry.The remaining spec deltas (nullable
generalAccessacross storages/runs, nullableActorDefinition.readme/input/changelog, optionalUserPrivateInfobilling fields,DailyServiceUsages.dateformat, taskinputaccepting an array) require no code changes: those fields are not typed explicitly and are captured by the generic#[serde(flatten)] extramap / generic input types.Verification
cargo fmt --check,cargo build,cargo clippy --all-targets -D warningsclean. Full integration suite + doc tests + example smoke tests pass locally againstAPIFY_TOKEN.Generated by Claude Code