releases.shpreview
Webflow/Webflow JS SDK

Webflow JS SDK

$npx @buildinternet/releases show webflow-js-sdk
Mon
Wed
Fri
MayJunJulAugSepOctNovDecJanFebMarApr
Less
More
Releases4Avg1/moVersionsv3.3.0-beta → v3.3.3
Mar 16, 2026

Bugfix release for the previous version.

Mar 12, 2026

Adds a function that agents can use to create page clients to manage page-specific data.

Mar 11, 2026

What's Changed

New Contributors

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.3.0...v3.3.1

Feb 20, 2026

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.2.1...v3.3.0

Jan 7, 2026

What's Changed

  • :herb: Fern Regeneration -- December 12, 2025 by @fern-api[bot] in https://github.com/webflow/js-webflow-api/pull/297
  • patch: add license file by @zplata in https://github.com/webflow/js-webflow-api/pull/299
  • :herb: Fern Regeneration -- December 15, 2025 by @fern-api[bot] in https://github.com/webflow/js-webflow-api/pull/298
  • New: Added new API endpoints for List/Get/Update/Delete Form Submissions - You will now need to use these new SDK methods that exist under the sites resource group, which also means these APIs need a Site ID passed in as the first parameter
    • client.sites.forms.listSubmissionBySite(siteId: string)
      • Equivalent to the old client.forms.listSubmissionBySite() API
      • Still accepts elementId to filter submissions by a formElementId
    • client.sites.forms.listSubmissions(siteId: string, formId: string)
      • Equivalent to the old client.forms.listSubmissions() API
    • client.sites.forms.getSubmission(siteId: string, formSubmissionId: string)
      • Equivalent to the old client.forms.getSubmission() API
    • client.sites.forms.deleteSubmission(siteId: string, formSubmissionId: string)
      • Equivalent to the old client.forms.deleteSubmission() API
    • client.sites.forms.updateSubmission(siteId: string, formSubmissionId: string)
      • Equivalent to the old client.forms.updateSubmission() API
  • Maint: Upgrade Fern TS SDK generator
  • Fix: Set some properties to optional on AssetVariant type

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.2.1...v3.3.0-beta

Nov 5, 2025

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.2.0...v3.2.1

Aug 8, 2025

What's Changed

  • :herb: Fern Regeneration -- August 5, 2025 by @fern-api[bot] in https://github.com/webflow/js-webflow-api/pull/278
  • New: Ability to get raw response (including headers) from an API call by appending SDK function call with .withRawResponse(). Example:
{
 "data": { "sites": [] },
 "rawResponse": {
   "headers": {},
   "redirected": false,
   "status": 200,
   "statusText": "OK",
 }
}
  • New: For POST/PATCH API calls to CMS Items, you can pass in a skipInvalidFiles boolean flag to skip any potentially problematic file attachments on CMS items and continue processing the request
client.collections.items.createItem(collectionId, {
  skipInvalidFiles: true,
  // ...
})
  • New: You can pass in a branchId into the request for updating Component content/properties on branched pages.

    • E.g., client.components.updateContent(siteId, componentId, { localeId: "my-secondary-locale-id", branchId: "my-branch-id" })
    • the branchId for a given page can be retrieved via the List Pages API (client.pages.list()) if a page has a branch
  • New: Filter by lastPublished timestamps when listing CMS Items. Example:

await wf.collections.items.listItems(collectionId, { lastPublished: {
  gte: new Date("2024-01-01T00:00:00Z"),
}});
  • New: Added validations property in the response of the Get Collection Details API (client.collections.get())

Fixes

  • Constrain request payload in pages.updatePageSettings() API to only include page fields that can be updated
  • Various optional type inconsistencies to match OpenAPI specification
  • Incorrect field type in ProductFieldData. categories -> category

Maint

  • Upgraded Fern generator to v1.7.2

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.4...v3.2.0

Aug 1, 2025

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.3...v3.1.4

May 14, 2025

What's Changed

  • :herb: Fern Regeneration -- May 7, 2025 by @fern-api in https://github.com/webflow/js-webflow-api/pull/258
  • New: Comments APIs
    • Also a new comment_created webhook to get notified on new comments and replies
  • Added: Additional DOM nodes returned from Get Page Content / Get Component Content APIs for localization. Also available for updating via the Update Page Content / Update Component Content APIs
    • text-input - Update placeholder text on a text input node
    • select - Update choices on a select node
    • submit-button - Update text and waiting message on a submit button node
    • search-input - Update text on a search button node
  • New: (Enterprise) Well-known file management APIs
  • New: (Enterprise) Workspace audit log API

Fixed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.2...v3.1.3

What's Changed

Usage (docs coming soon):

await client.assets.utilities.createAndUpload(siteId, {
    fileName: "myimage.jpeg",
    file: "https://fastly.picsum.photos/id/351/200/300.jpg?hmac=OSQYmRI8IZkaMcC4ERotpBhe0AymVYajIIKPJFDzGBY",
});

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.1...v3.1.2

Mar 18, 2025

What's Changed

Fixed

  • Fix: When deleting CMS items live, using id when declaring items in the request payload instead of itemId to match API expectations

New Contributors

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.0...v3.1.1

Jan 13, 2025

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.0.1...v3.1.0

Dec 9, 2024

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v3.0.0...v3.0.1

Dec 4, 2024

Please see MIGRATION.md for changes and how to upgrade.

What's Changed

New Contributors

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v2.4.2...v2.5.0

Oct 2, 2024

What's Changed

Fixed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v2.4.1...v2.4.2

What's Changed

Fixed

New Contributors

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v2.4.0...v2.4.1

Sep 30, 2024

What's Changed

Fixed

  • [CMS] Remove requirement to supply an id to the CollectionItem request in createItemLive(), createItemForMultipleLocales()
  • [CMS] Allows other arbitrary key/value pairs to be set in fieldData when creating/updating CMS Items for custom fields
  • [CMS] createItem() and createItemLive() correctly return the newly created CMS Item
  • [CMS] publishItem() correctly returns payload with publishedItemIds
  • [Sites] publishSite() correctly returns expected payload

Maint

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v2.3.6...v2.4.0

Aug 23, 2024

What's Changed

Full Changelog: https://github.com/webflow/js-webflow-api/compare/v2.3.3...v2.3.6

Jul 11, 2024
Previous123Next
Latest
v3.3.4
Tracking Since
May 13, 2021
Last checked May 1, 2026