-
Notifications
You must be signed in to change notification settings - Fork 319
Feature: Add support for restoring asset(s) by asset id #707
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
9047c9d
ab5558c
9ad22f6
66f73bf
e7be6c7
88b03a7
29bc9da
391cd26
6298ca8
d65bbff
f6b26a3
9dead40
a0ef684
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1102,6 +1102,10 @@ declare module 'cloudinary' { | |
|
||
function restore(public_ids: string[], callback?: ResponseCallback): Promise<any>; | ||
|
||
function restore_by_asset_ids(asset_ids: string[] | string, options?: AdminAndResourceOptions, callback?: ResponseCallback): Promise<ResourceApiResponse>; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I see correctly, the implementation of |
||
|
||
function restore_by_asset_ids(asset_ids: string[] | string, callback?: ResponseCallback): Promise<ResourceApiResponse>; | ||
|
||
function root_folders(callback?: ResponseCallback, options?: AdminApiOptions): Promise<any>; | ||
|
||
function search(params: string, options?: AdminApiOptions, callback?: ResponseCallback): Promise<any>; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this intentional?