appwrite-utils
Advanced tools
Comparing version 0.3.92 to 0.3.93
export { areCollectionNamesSame } from "./functions/collections.js"; | ||
export { converterFunctions, type ConverterFunctions, } from "./functions/converters.js"; | ||
export { getFileDownloadUrl, getFileViewUrl } from "./functions/files.js"; | ||
export { getFileDownloadUrl, getFileViewUrl, getFilePreviewUrl } from "./functions/files.js"; | ||
export { validationRules, type ValidationRules, } from "./functions/validationRules.js"; | ||
@@ -5,0 +5,0 @@ export { type AfterImportActions } from "./functions/afterImportActions.js"; |
export { areCollectionNamesSame } from "./functions/collections.js"; | ||
export { converterFunctions, } from "./functions/converters.js"; | ||
export { getFileDownloadUrl, getFileViewUrl } from "./functions/files.js"; | ||
export { getFileDownloadUrl, getFileViewUrl, getFilePreviewUrl } from "./functions/files.js"; | ||
export { validationRules, } from "./functions/validationRules.js"; | ||
@@ -5,0 +5,0 @@ export { booleanAttributeSchema, } from "./schemas/booleanAttribute.js"; |
{ | ||
"name": "appwrite-utils", | ||
"module": "dist/index.js", | ||
"version": "0.3.92", | ||
"version": "0.3.93", | ||
"main": "dist/index.js", | ||
@@ -6,0 +6,0 @@ "types": "dist/index.d.ts", |
@@ -75,2 +75,3 @@ # appwrite-utils | ||
- 0.3.93: Forgot to export it 👁👄👁 | ||
- 0.3.92: Added a `getFilePreviewUrl` which allows you to modify image files, or just get a preview of a file, without downloading it (creates a URL instead of an `ArrayBuffer`) | ||
@@ -77,0 +78,0 @@ - 0.3.91: Updated permissions to include `parsePermissions` which maps my permissions (`target`, `permission` to the Appwrite strings) -- also added `PermissionToAppwritePermission` which converts one of mine (target, permission) to Appwrite |
@@ -8,3 +8,3 @@ import { z } from "zod"; | ||
} from "./functions/converters.js"; | ||
export { getFileDownloadUrl, getFileViewUrl } from "./functions/files.js"; | ||
export { getFileDownloadUrl, getFileViewUrl, getFilePreviewUrl } from "./functions/files.js"; | ||
export { | ||
@@ -11,0 +11,0 @@ validationRules, |
369462
95