@aepstore-dev/contracts 1.66.0 → 1.67.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/activity.js +1 -1
- package/gen/activity.ts +270 -270
- package/gen/auth.js +1 -1
- package/gen/auth.ts +323 -323
- package/gen/mail.js +1 -1
- package/gen/mail.ts +121 -121
- package/gen/payments.js +1 -1
- package/gen/payments.ts +1048 -1048
- package/gen/products.d.ts +9 -0
- package/gen/products.js +1 -1
- package/gen/products.ts +616 -607
- package/gen/taxonomy.js +1 -1
- package/gen/taxonomy.ts +185 -185
- package/gen/upload.js +1 -1
- package/gen/upload.ts +287 -287
- package/gen/users.js +1 -1
- package/gen/users.ts +1026 -1026
- package/package.json +1 -1
- package/proto/products.proto +29 -20
package/gen/products.d.ts
CHANGED
|
@@ -40,6 +40,9 @@ export interface ProductMedia {
|
|
|
40
40
|
id: string;
|
|
41
41
|
url: string;
|
|
42
42
|
type: MediaType;
|
|
43
|
+
fileName: string;
|
|
44
|
+
fileSize: number;
|
|
45
|
+
mimeType: string;
|
|
43
46
|
}
|
|
44
47
|
export interface Attachment {
|
|
45
48
|
id: string;
|
|
@@ -136,6 +139,8 @@ export interface ProductAttachment {
|
|
|
136
139
|
id: string;
|
|
137
140
|
fileName: string;
|
|
138
141
|
fileSize: number;
|
|
142
|
+
url: string;
|
|
143
|
+
mimeType: string;
|
|
139
144
|
}
|
|
140
145
|
/** Compact product shape for "related products" — only the fields a card needs. */
|
|
141
146
|
export interface RelatedProduct {
|
|
@@ -266,6 +271,9 @@ export interface FavoriteRequest {
|
|
|
266
271
|
export interface MediaFile {
|
|
267
272
|
url: string;
|
|
268
273
|
type: MediaType;
|
|
274
|
+
fileName: string;
|
|
275
|
+
fileSize: number;
|
|
276
|
+
mimeType: string;
|
|
269
277
|
}
|
|
270
278
|
export interface SaveMediaMetadataRequest {
|
|
271
279
|
id: string;
|
|
@@ -278,6 +286,7 @@ export interface AttachmentMeta {
|
|
|
278
286
|
fileKey: string;
|
|
279
287
|
fileName: string;
|
|
280
288
|
fileSize: number;
|
|
289
|
+
mimeType: string;
|
|
281
290
|
}
|
|
282
291
|
export interface SaveAttachmentMetadataRequest {
|
|
283
292
|
id: string;
|
package/gen/products.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
3
|
// versions:
|
|
4
4
|
// protoc-gen-ts_proto v2.10.1
|
|
5
|
-
// protoc v7.35.
|
|
5
|
+
// protoc v7.35.1
|
|
6
6
|
// source: products.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
8
|
exports.PRODUCTS_SERVICE_NAME = exports.PRODUCTS_V1_PACKAGE_NAME = exports.MediaType = exports.ModerationStatus = exports.ProductStatus = exports.protobufPackage = void 0;
|