@kinevolution/appwrite-functions-shared-utils 0.1.40 → 0.1.41

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/dist/utils.d.ts CHANGED
@@ -7,6 +7,9 @@ export declare const APPWRITE_TABLE_IDS: {
7
7
  REQUESTERS_TABLE_ID: string;
8
8
  COMPANIONS_TABLE_ID: string;
9
9
  };
10
+ export declare const APPWRITE_BUCKET_IDS: {
11
+ PHOTOS_BUCKET_ID: string;
12
+ };
10
13
  export interface Config {
11
14
  method: Method;
12
15
  fields: Array<FieldDefinition>;
package/dist/utils.js CHANGED
@@ -7,6 +7,9 @@ export const APPWRITE_TABLE_IDS = {
7
7
  REQUESTERS_TABLE_ID: 'requesters',
8
8
  COMPANIONS_TABLE_ID: 'companions',
9
9
  };
10
+ export const APPWRITE_BUCKET_IDS = {
11
+ PHOTOS_BUCKET_ID: '694178120017a66e686b',
12
+ };
10
13
  /**
11
14
  * Validates the input of an Appwrite function based on the provided configuration
12
15
  * @param config - The configuration defining expected method and fields
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.40",
6
+ "version": "0.1.41",
7
7
  "license": "ISC",
8
8
  "author": "Nicolas Forêt <nicolas4@gmail.com>",
9
9
  "description": "Shared utilities for Appwrite functions",