@aepstore-dev/contracts 1.86.0 → 1.87.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/gen/products.d.ts CHANGED
@@ -139,8 +139,6 @@ export interface ProductAttachment {
139
139
  id: string;
140
140
  fileName: string;
141
141
  fileSize: number;
142
- url: string;
143
- mimeType: string;
144
142
  }
145
143
  /** Compact product shape for "related products" — only the fields a card needs. */
146
144
  export interface RelatedProduct {
package/gen/products.ts CHANGED
@@ -159,8 +159,6 @@ export interface ProductAttachment {
159
159
  id: string;
160
160
  fileName: string;
161
161
  fileSize: number;
162
- url: string;
163
- mimeType: string;
164
162
  }
165
163
 
166
164
  /** Compact product shape for "related products" — only the fields a card needs. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.86.0",
3
+ "version": "1.87.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -168,8 +168,8 @@ message ProductAttachment {
168
168
  string id = 1;
169
169
  string file_name = 2;
170
170
  double file_size = 3;
171
- string url = 4;
172
- string mime_type = 5;
171
+ reserved 4, 5;
172
+ reserved "url", "mime_type";
173
173
  }
174
174
 
175
175
  // Compact product shape for "related products" — only the fields a card needs.