This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Conversation
Greptile SummaryUpdated the SDK dependency from version 0.22.4 to 0.22.5 and modified pagination behavior for Key Changes:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant CLI as CLI Command
participant Ops as ops.rs
participant SDK as s2-sdk (v0.22.5)
participant API as S2 API
alt list-basins (auto-paginate)
CLI->>Ops: list_basins(no_auto_paginate=false)
Ops->>Ops: Create ListAllBasinsInput
Ops->>Ops: Set ignore_pending_deletions=false
Ops->>SDK: list_all_basins(input)
SDK->>API: Paginate through basins
API-->>SDK: Include pending deletion resources
SDK-->>Ops: Stream of BasinInfo
Ops-->>CLI: Return basin stream
end
alt list-streams (auto-paginate)
CLI->>Ops: list_streams(no_auto_paginate=false)
Ops->>Ops: Create ListAllStreamsInput
Ops->>Ops: Set ignore_pending_deletions=false
Ops->>SDK: list_all_streams(input)
SDK->>API: Paginate through streams
API-->>SDK: Include pending deletion resources
SDK-->>Ops: Stream of StreamInfo
Ops-->>CLI: Return stream stream
end
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
No description provided.