You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,16 @@ The format is based on Keep a Changelog.
6
6
7
7
## [Unreleased]
8
8
9
+
## [0.10.0] - 2026-03-12
10
+
11
+
### Removed
12
+
13
+
1. removed five exact public alias duplicates from the SDK surface: `account.acceptSale()`, `account.cancelSale()`, `account.declineOffer()`, `listings.unlistBulkListings()`, and `listings.unlistListing()`
14
+
15
+
### Changed
16
+
17
+
1. standardized the canonical trade/offer/listing naming surface around `acceptTrade()`, `cancelTrade()`, `cancelOffer()`, `deleteBulkListings()`, and `deleteListing()`
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ The project is intentionally conservative about claims. Anything called `impleme
36
36
37
37
> The goal is simple: be the SDK you reach for first if you want serious CSFloat automation instead of a thin wrapper.
38
38
>
39
-
> Install from npm: [`csfloat-node-sdk@0.9.4`](https://www.npmjs.com/package/csfloat-node-sdk)
39
+
> Install from npm: [`csfloat-node-sdk@0.10.0`](https://www.npmjs.com/package/csfloat-node-sdk)
40
40
41
41
## Documentation
42
42
@@ -104,17 +104,17 @@ This SDK is optimized for:
104
104
105
105
## What’s In The Current Generation
106
106
107
-
- live-confirmed offer flows: create, counter, cancel, decline, history, plus a low-level `acceptOffer()` helper for the browser-observed accept route
108
-
- live-confirmed purchase flows: direct `buyNow`, buy-order create/update/delete, seller-side `acceptSale`
109
-
- state-gated trade lifecycle helpers, including seller-side `acceptSale()`, buyer-side `markTradesReceived()`, and low-level single-trade helpers such as `markTradeReceived()`, `cannotDeliverTrade()`, and `rollbackTrade()`
107
+
- live-confirmed offer flows: create, counter, cancel, history, plus a low-level `acceptOffer()` helper for the browser-observed accept route
108
+
- live-confirmed purchase flows: direct `buyNow`, buy-order create/update/delete, seller-side `acceptTrade`
109
+
- state-gated trade lifecycle helpers, including seller-side `acceptTrade()`, buyer-side `markTradesReceived()`, and low-level single-trade helpers such as `markTradeReceived()`, `cannotDeliverTrade()`, and `rollbackTrade()`
110
110
- low-level trade sync helpers for the browser-observed Steam status routes: `syncSteamNewOffer()` and `syncSteamOffers()`, with optional asset-annotation payloads on the new-offer route
111
111
- low-level account verification helpers for `verifyEmail()` and `verifySms()`
112
112
- live-confirmed buy-order insight flows: inspect-based lookup and similar-order discovery
113
113
- live-confirmed buy-order expression workflows via `account.createBuyOrder({ expression, ... })`, `account.getSimilarBuyOrders({ expression }, ...)`, and composable builder helpers
114
114
- workflow-first helpers via `sdk.workflows` for public feed snapshots, account workspace snapshots, and single-skin buy-order insights
115
115
- live-confirmed support helpers around adjacent account/insight flows such as `meta.getNotary()`, `account.createNotaryToken()`, `account.createGsInspectToken()`, and `account.getSimilarBuyOrders()`
116
116
- live-confirmed auction flow pieces: bid history, max-price `placeBid()`, `deleteAutoBid()` cancellation on cheap auctions, and stable item-route bootstrap reads for `getBuyOrders()` / `getSimilar()` around active auction listings
- live-confirmed bulk listing controls: `createBulkListings()`, `updateBulkListings()`, and `deleteBulkListings()`
118
118
- live-confirmed public/account helpers around app bootstrap, schema media, checker lookup, and payments, including `meta.getApp()`, `meta.getSchemaBrowse()`, `meta.getItemExampleScreenshot()`, `meta.inspectItem()`, and `account.getPendingDeposits()`
119
119
- public market helpers: `price-list`, wear presets, range builders, category helpers
120
120
- browser-auth discoveries promoted into SDK surface where they proved stable, including `createRecommenderToken()`
@@ -149,12 +149,12 @@ See [API_COVERAGE.md](./API_COVERAGE.md) for the endpoint-by-endpoint support ma
0 commit comments