mirror of
https://github.com/hpd840321/craftlabs-authorization-sdk.git
synced 2026-06-09 10:00:30 +08:00
feat(m2): add contract change versioning with CHANGING state
This commit is contained in:
@@ -379,3 +379,11 @@ export function getCallbackStats(params) {
|
||||
export function getProjectHealth() {
|
||||
return axios.get('/api/v1/reports/project-health');
|
||||
}
|
||||
|
||||
// —— I11 合同变更版本 ——————————————————————————
|
||||
export function initiateContractChange(id, body) {
|
||||
return axios.post(`/api/v1/contracts/${id}/changes`, body);
|
||||
}
|
||||
export function completeContractChange(id) {
|
||||
return axios.post(`/api/v1/contracts/${id}/changes/complete`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user