@or-sdk/files 3.1.3-beta.1092.0 → 3.1.3-beta.1093.0

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/src/Files.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/files",
3
- "version": "3.1.3-beta.1092.0",
3
+ "version": "3.1.3-beta.1093.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/src/Files.ts CHANGED
@@ -266,7 +266,7 @@ export class Files extends Base {
266
266
  * @param key folder name
267
267
  * @param isPublic does this file public or private
268
268
  * @param expireMs how long PRIVATE file link will be accessible in seconds
269
- * @param checkFileExist how long PRIVATE file link will be accessible in seconds
269
+ * @param checkFileExist check that file exists in database
270
270
  * @return file url
271
271
  */
272
272
  async getDownloadUrl(key: string, isPublic: boolean, expireMs = 86400000, checkFileExist?: boolean): Promise<string> {