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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/quickblox.d.ts +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quickblox",
3
3
  "description": "QuickBlox JavaScript SDK",
4
- "version": "2.19.3-beta.1",
4
+ "version": "2.19.3-beta.2",
5
5
  "homepage": "https://quickblox.com/developers/Javascript",
6
6
  "main": "src/qbMain.js",
7
7
  "types": "quickblox.d.ts",
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 {