quickblox 2.19.3-beta.1 → 2.19.3-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/quickblox.d.ts +2 -2
package/package.json
CHANGED
package/quickblox.d.ts
CHANGED
|
@@ -912,12 +912,12 @@ interface QBContentModule {
|
|
|
912
912
|
* Get private URL for file download by file_uid (blob_uid)
|
|
913
913
|
* ([read more](https://docs.quickblox.com/docs/js-content#get-private-url)).
|
|
914
914
|
*/
|
|
915
|
-
privateUrl(fileUID: string): string
|
|
915
|
+
privateUrl(fileUID: string | number): string
|
|
916
916
|
/**
|
|
917
917
|
* Get public URL for file download by file_uid (blob_uid)
|
|
918
918
|
* ([read more](https://docs.quickblox.com/docs/js-content#get-public-url)).
|
|
919
919
|
*/
|
|
920
|
-
publicUrl(fileUID: string): string
|
|
920
|
+
publicUrl(fileUID: string | number): string
|
|
921
921
|
}
|
|
922
922
|
|
|
923
923
|
export declare interface QBCustomObjectAccess {
|