When migrating to a new major version of this SDK, please consult the notes here for breaking changes, new features, and related fixes.
There are a few breaking changes with v3.0.0 of the Webflow JS SDK
- CHANGED: Deleting a Collection is now achieved through
client.collections.delete()
, which was previously an API used to delete a Collection field.- We've removed
client.collections.deleteCollection()
- To delete a Collection field, use
client.collections.fields.delete()
- We've removed
- CHANGED: Creating bulk CMS Items in multiple locales is now achieved through
client.collections.createItems()
- We've removed
client.collections.createItemForMultipleLocales()
- We've removed
- CHANGED: The
locale
query parameter is nowlocaleId
- We've added Bulk API support. See docs for more on usage.
createItems()
updateItems()
updateItemsLive()
deleteItems()
deleteItemsLive()
- Some APIs that created resources (i.e.
collections.items.createItem()
) had types that required anid
, which is not possible to provide. This is no longer required. fieldData
type in CMS Items now allows arbitrary extra key/value pairs