Skip to content

Commit

Permalink
Update api.generatedTypes.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
alten-dturus committed Dec 12, 2024
1 parent d9e4459 commit 1d36eeb
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/api/api.generatedTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ export interface DelegationEService {
export interface Delegation {
/** @format uuid */
id: string
eservice: DelegationEService
eservice?: DelegationEService
delegate: DelegationTenant
delegator: DelegationTenant
activationContract?: Document
Expand Down Expand Up @@ -3071,6 +3071,34 @@ export namespace Eservices {
}
export type ResponseBody = CreatedResource
}
/**
* No description
* @tags eservices
* @name UpdateDescriptorAttributes
* @summary Update e-service published descriptor attributes
* @request POST:/eservices/{eServiceId}/descriptors/{descriptorId}/attributes/update
* @secure
*/
export namespace UpdateDescriptorAttributes {
export type RequestParams = {
/**
* the eservice id
* @format uuid
*/
eServiceId: string
/**
* the descriptor id
* @format uuid
*/
descriptorId: string
}
export type RequestQuery = {}
export type RequestBody = DescriptorAttributesSeed
export type RequestHeaders = {
'X-Correlation-Id': string
}
export type ResponseBody = CreatedResource
}
/**
* No description
* @tags eservices
Expand Down

0 comments on commit 1d36eeb

Please sign in to comment.