I don’t think there were any breaking changes. Can you share examples?
For example about “component properties” for instance swap etc.
About 2-3 months ago (I dont remember the exact date), component properties were like:
{
"componentProperties": {
"definitions": s
{
"type": "",
"defaultValue":""
}
],
"assignments": s
{
"type": "",
"value": ""
}
],
"references": {
"mainComponent": "",
"characters": "",
"visible": ""
}
}
}
Now, It seems like:
"componentPropertyDefinitions": {
"Label#69:0": {
"type": "TEXT",
"defaultValue": "Label"
},
"Icon#2:0": {
"type": "INSTANCE_SWAP",
"defaultValue": "2:4",
"preferredValues": s]
}
}
{
"componentPropertyReferences": {
"mainComponent": "Icon#2:0"
}
}
{
"componentProperties": {
"Icon#2:0": {
"value": "2:4",
"type": "INSTANCE_SWAP",
"preferredValues": s]
},
"Label#69:0": {
"value": "Label",
"type": "TEXT"
}
}
}
I believe the original example you sent was never documented this way, it was more of an “accidental” release (there were no announcements or documentation on this way, so it wasn’t an “official” part of the API). I understand the frustration though.
Yes, there was no documentation about that. We found it by examining the rest api response when the “instance swap” feature had introduced. It’s good to hear that there will be no breaking change on the same version. Thanks.
Thanks for raising the issue. This was indeed an inadvertent breaking change. Our aim is for API shapes to remain stable, even if they’re not yet documented. We’re working to improve our monitoring so we catch issues like this in future earlier!