Function LibraryStructureApiAxiosParamCreator
- LibraryStructureApiAxiosParamCreator(configuration?): {
addMediaPath: ((mediaPathDto: MediaPathDto, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
addVirtualFolder: ((name?: string, collectionType?: CollectionTypeOptions, paths?: string[], refreshLibrary?: boolean, addVirtualFolderDto?: AddVirtualFolderDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
getVirtualFolders: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
removeMediaPath: ((name?: string, path?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
removeVirtualFolder: ((name?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
renameVirtualFolder: ((name?: string, newName?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
updateLibraryOptions: ((updateLibraryOptionsDto?: UpdateLibraryOptionsDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
updateMediaPath: ((updateMediaPathRequestDto: UpdateMediaPathRequestDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
} Returns {
addMediaPath: ((mediaPathDto: MediaPathDto, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
addVirtualFolder: ((name?: string, collectionType?: CollectionTypeOptions, paths?: string[], refreshLibrary?: boolean, addVirtualFolderDto?: AddVirtualFolderDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
getVirtualFolders: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
removeMediaPath: ((name?: string, path?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
removeVirtualFolder: ((name?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
renameVirtualFolder: ((name?: string, newName?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
updateLibraryOptions: ((updateLibraryOptionsDto?: UpdateLibraryOptionsDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
updateMediaPath: ((updateMediaPathRequestDto: UpdateMediaPathRequestDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
}
addMediaPath: ((mediaPathDto: MediaPathDto, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (mediaPathDto, refreshLibrary?, options?): Promise<RequestArgs>
Parameters
- mediaPathDto: MediaPathDto
Optional
refreshLibrary: booleanOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
addVirtualFolder: ((name?: string, collectionType?: CollectionTypeOptions, paths?: string[], refreshLibrary?: boolean, addVirtualFolderDto?: AddVirtualFolderDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (name?, collectionType?, paths?, refreshLibrary?, addVirtualFolderDto?, options?): Promise<RequestArgs>
Parameters
Optional
name: stringOptional
collectionType: CollectionTypeOptionsOptional
paths: string[]Optional
refreshLibrary: booleanOptional
addVirtualFolderDto: AddVirtualFolderDtoOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getVirtualFolders: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
removeMediaPath: ((name?: string, path?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (name?, path?, refreshLibrary?, options?): Promise<RequestArgs>
Parameters
Optional
name: stringOptional
path: stringOptional
refreshLibrary: booleanOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
removeVirtualFolder: ((name?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (name?, refreshLibrary?, options?): Promise<RequestArgs>
Parameters
Optional
name: stringOptional
refreshLibrary: booleanOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
renameVirtualFolder: ((name?: string, newName?: string, refreshLibrary?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (name?, newName?, refreshLibrary?, options?): Promise<RequestArgs>
Parameters
Optional
name: stringOptional
newName: stringOptional
refreshLibrary: booleanOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
updateLibraryOptions: ((updateLibraryOptionsDto?: UpdateLibraryOptionsDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (updateLibraryOptionsDto?, options?): Promise<RequestArgs>
Returns Promise<RequestArgs>
updateMediaPath: ((updateMediaPathRequestDto: UpdateMediaPathRequestDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (updateMediaPathRequestDto, options?): Promise<RequestArgs>
Returns Promise<RequestArgs>
LibraryStructureApi - axios parameter creator
Export