@medusajs/core-flows 2.8.4-preview-20250527150145 → 2.8.4-preview-20250527210137

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.
@@ -19,7 +19,7 @@ export type UploadFilesStepInput = {
19
19
  mimeType: string;
20
20
  /**
21
21
  * The content of the file. For images, for example,
22
- * use base64 encoding. For CSV files, use the CSV content.
22
+ * use binary string. For CSV files, use the CSV content.
23
23
  */
24
24
  content: string;
25
25
  /**
@@ -43,7 +43,7 @@ export declare const uploadFilesStepId = "upload-files";
43
43
  * {
44
44
  * filename: "test.jpg",
45
45
  * mimeType: "img/jpg",
46
- * content: "base64Content",
46
+ * content: "binary-string",
47
47
  * access: "public"
48
48
  * }
49
49
  * ]
@@ -14,7 +14,7 @@ exports.uploadFilesStepId = "upload-files";
14
14
  * {
15
15
  * filename: "test.jpg",
16
16
  * mimeType: "img/jpg",
17
- * content: "base64Content",
17
+ * content: "binary-string",
18
18
  * access: "public"
19
19
  * }
20
20
  * ]
@@ -20,7 +20,7 @@ export type UploadFilesWorkflowInput = {
20
20
  mimeType: string;
21
21
  /**
22
22
  * The content of the file. For images, for example,
23
- * use base64 encoding. For CSV files, use the CSV content.
23
+ * use binary string. For CSV files, use the CSV content.
24
24
  */
25
25
  content: string;
26
26
  /**
@@ -50,7 +50,7 @@ export declare const uploadFilesWorkflowId = "upload-files";
50
50
  * {
51
51
  * filename: "test.jpg",
52
52
  * mimeType: "img/jpg",
53
- * content: "base64Content",
53
+ * content: "binary-string",
54
54
  * access: "public"
55
55
  * }
56
56
  * ]
@@ -20,7 +20,7 @@ exports.uploadFilesWorkflowId = "upload-files";
20
20
  * {
21
21
  * filename: "test.jpg",
22
22
  * mimeType: "img/jpg",
23
- * content: "base64Content",
23
+ * content: "binary-string",
24
24
  * access: "public"
25
25
  * }
26
26
  * ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/core-flows",
3
- "version": "2.8.4-preview-20250527150145",
3
+ "version": "2.8.4-preview-20250527210137",
4
4
  "description": "Set of workflow definitions for Medusa",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -26,7 +26,7 @@
26
26
  "author": "Medusa",
27
27
  "license": "MIT",
28
28
  "devDependencies": {
29
- "@medusajs/framework": "2.8.4-preview-20250527150145",
29
+ "@medusajs/framework": "2.8.4-preview-20250527210137",
30
30
  "@mikro-orm/core": "6.4.3",
31
31
  "@mikro-orm/knex": "6.4.3",
32
32
  "@mikro-orm/migrations": "6.4.3",
@@ -44,7 +44,7 @@
44
44
  "json-2-csv": "^5.5.4"
45
45
  },
46
46
  "peerDependencies": {
47
- "@medusajs/framework": "2.8.4-preview-20250527150145",
47
+ "@medusajs/framework": "2.8.4-preview-20250527210137",
48
48
  "awilix": "^8.0.1"
49
49
  },
50
50
  "scripts": {