Function CollectionApiAxiosParamCreator
- CollectionApiAxiosParamCreator(
configuration?: Configuration,
): {
acceptInvitation: (
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
changeCollaboratorAccessLevel: (
userId: number,
id: number,
changeCollaboratorAccessLevelRequest?: ChangeCollaboratorAccessLevelRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
createCollection: (
createCollectionRequest?: CreateCollectionRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
deleteCollaborator: (
userId: number,
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
emptyTrash: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
getChildCollections: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getCollaborators: (
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getCollection: (
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getFeaturedCovers: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getRootCollections: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getSystemCollectionStats: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
mergeCollections: (
mergeCollectionsRequest?: MergeCollectionsRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
removeAllEmptyCollections: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
removeCollection: (
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
removeCollections: (
removeCollectionsRequest?: RemoveCollectionsRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
reorderAllCollections: (
reorderAllCollectionsRequest?: ReorderAllCollectionsRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
searchCovers: (
text: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
shareCollection: (
id: number,
shareCollectionRequest?: ShareCollectionRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
unshareOrLeaveCollection: (
id: number,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
updateCollection: (
id: number,
updateCollectionRequest?: UpdateCollectionRequest,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
uploadCollectionCover: (
id: number,
cover?: File,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
CollectionApi - axios parameter creator
Export