@erebos/api-bzz-base
Advanced tools
Comparing version 0.6.0 to 0.6.1
{ | ||
"name": "@erebos/api-bzz-base", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Base Bzz API", | ||
@@ -31,4 +31,4 @@ "repository": "git@github.com:MainframeHQ/erebos.git", | ||
"devDependencies": { | ||
"flow-bin": "^0.89.0" | ||
"flow-bin": "^0.90.0" | ||
} | ||
} |
@@ -109,22 +109,9 @@ import { hexInput, hexValue } from '@erebos/hex' | ||
getFeedURL(userOrHash: string, options?: FeedOptions, flag?: 'meta'): string | ||
hash(domain: string, headers?: Object): Promise<hexValue> | ||
list( | ||
hash: string, | ||
options?: DownloadOptions, | ||
headers?: Object, | ||
): Promise<ListResult> | ||
download( | ||
hash: string, | ||
options?: DownloadOptions, | ||
headers?: Object, | ||
): Promise<T> | ||
uploadFile( | ||
data: string | Buffer, | ||
options?: UploadOptions, | ||
headers?: Object, | ||
): Promise<hexValue> | ||
hash(domain: string, options?: FetchOptions): Promise<hexValue> | ||
list(hash: string, options?: DownloadOptions): Promise<ListResult> | ||
download(hash: string, options?: DownloadOptions): Promise<T> | ||
uploadFile(data: string | Buffer, options?: UploadOptions): Promise<hexValue> | ||
upload( | ||
data: string | Buffer | DirectoryData, | ||
options?: UploadOptions, | ||
headers?: Object, | ||
): Promise<hexValue> | ||
@@ -134,8 +121,8 @@ deleteResource( | ||
path: string, | ||
headers?: Object, | ||
options?: FetchOptions, | ||
): Promise<hexValue> | ||
createFeedManifest( | ||
user: string, | ||
options?: FeedOptions, | ||
headers?: Object, | ||
params?: FeedParams, | ||
options?: UploadOptions, | ||
): Promise<hexValue> | ||
@@ -142,0 +129,0 @@ getFeedMetadata( |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67355
1015