Interface VersioningMatrix

A matrix of versions indicating which versions of the application (key) are dependent on which version of a cumulocity component (API version and Web SDK version of the shell application currently supported, indicated by the value). The versions of the dependent components can be indicated by a semver range.

{
"1.0.0": {
"sdk": ">=1016.0.0 <1017.0.0",
"api": ">=1016.0.0 <1017.0.0"
},
"2.0.0": {
"sdk": "~1017.0.0",
"api": "~1017.0.0"
},
"3.0.0": {
"sdk": ">=1018.0.0",
"api": ">=1018.0.0"
},
}

Indexable