generate new server models

This commit is contained in:
Mads Rasmussen
2024-06-18 12:24:25 +02:00
parent abf8fa66f4
commit e107f6e818
2 changed files with 631 additions and 593 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -8566,6 +8566,29 @@ providerName
});
}
/**
* @returns unknown OK
* @throws ApiError
*/
public static getUserByIdCalculateStartNodes(data: UserData['payloads']['GetUserByIdCalculateStartNodes']): CancelablePromise<UserData['responses']['GetUserByIdCalculateStartNodes']> {
const {
id
} = data;
return __request(OpenAPI, {
method: 'GET',
url: '/umbraco/management/api/v1/user/{id}/calculate-start-nodes',
path: {
id
},
errors: {
401: `The resource is protected and requires an authentication token`,
403: `The authenticated user do not have access to this resource`,
404: `Not Found`,
},
});
}
/**
* @returns string OK
* @throws ApiError