@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 +0 -2
- package/gen/products.ts +0 -2
- package/package.json +1 -1
- package/proto/products.proto +2 -2
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
package/package.json
CHANGED
package/proto/products.proto
CHANGED
|
@@ -168,8 +168,8 @@ message ProductAttachment {
|
|
|
168
168
|
string id = 1;
|
|
169
169
|
string file_name = 2;
|
|
170
170
|
double file_size = 3;
|
|
171
|
-
|
|
172
|
-
|
|
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.
|