@almadar/integrations 2.27.0 → 2.29.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.
@@ -846,6 +846,30 @@ type StorageActions = {
846
846
  url: string;
847
847
  };
848
848
  };
849
+ uploadMany: {
850
+ params: {
851
+ bucket: string;
852
+ files: Array<{
853
+ name: string;
854
+ size: number;
855
+ type: string;
856
+ content?: string;
857
+ }>;
858
+ acl?: 'public' | 'private';
859
+ maxSize?: number;
860
+ };
861
+ result: {
862
+ items: Array<{
863
+ id: string;
864
+ key: string;
865
+ url: string;
866
+ name: string;
867
+ sizeBytes: number;
868
+ mimeType: string;
869
+ }>;
870
+ count: number;
871
+ };
872
+ };
849
873
  download: {
850
874
  params: {
851
875
  bucket: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/integrations",
3
- "version": "2.27.0",
3
+ "version": "2.29.0",
4
4
  "description": "External service integrations for Almadar applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,8 +33,8 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@almadar/core": "^10.68.0",
37
- "@almadar/llm": "^2.41.0",
36
+ "@almadar/core": "^10.73.0",
37
+ "@almadar/llm": "^2.46.0",
38
38
  "@almadar/logger": "^1.11.0",
39
39
  "@aws-sdk/client-s3": "^3.700.0",
40
40
  "@aws-sdk/s3-request-presigner": "^3.700.0",
@@ -50,7 +50,7 @@
50
50
  "zod": "^3.23.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@almadar/eslint-plugin": "^2.15.0",
53
+ "@almadar/eslint-plugin": "^2.16.0",
54
54
  "@types/node": "^20.0.0",
55
55
  "@types/pg": "^8.11.10",
56
56
  "@types/web-push": "^3.6.4",