@aepstore-dev/contracts 1.67.0 → 1.68.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.67.0",
3
+ "version": "1.68.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -304,11 +304,11 @@ message FavoriteRequest {
304
304
  // =================================================================
305
305
 
306
306
  message MediaFile {
307
- string url = 1;
308
- MediaType type = 2;
307
+ reserved 1, 2;
309
308
  string file_name = 3;
310
309
  double file_size = 4;
311
310
  string mime_type = 5;
311
+ string storage_key = 6;
312
312
  }
313
313
 
314
314
  message SaveMediaMetadataRequest {
@@ -319,8 +319,8 @@ message SaveMediaMetadataRequest {
319
319
  }
320
320
 
321
321
  message AttachmentMeta {
322
- string url = 1;
323
- string file_key = 2;
322
+ reserved 1;
323
+ string storage_key = 2;
324
324
  string file_name = 3;
325
325
  double file_size = 4;
326
326
  string mime_type = 5;