@aepstore-dev/contracts 1.3.0 → 1.4.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/users.ts +7 -0
- package/package.json +1 -1
- package/proto/users.proto +5 -0
package/gen/users.ts
CHANGED
|
@@ -57,6 +57,13 @@ export interface Product {
|
|
|
57
57
|
price: string;
|
|
58
58
|
createdAt: string;
|
|
59
59
|
updatedAt: string;
|
|
60
|
+
/** profile-card preview fields */
|
|
61
|
+
preview: string;
|
|
62
|
+
/** Decimal as string */
|
|
63
|
+
finalPrice: string;
|
|
64
|
+
/** number as string */
|
|
65
|
+
averageRating: string;
|
|
66
|
+
status: string;
|
|
60
67
|
}
|
|
61
68
|
|
|
62
69
|
export interface Video {
|
package/package.json
CHANGED
package/proto/users.proto
CHANGED
|
@@ -52,6 +52,11 @@ message Product {
|
|
|
52
52
|
string price = 4; // Decimal as string (D7)
|
|
53
53
|
string created_at = 5;
|
|
54
54
|
string updated_at = 6;
|
|
55
|
+
// profile-card preview fields
|
|
56
|
+
string preview = 7;
|
|
57
|
+
string final_price = 8; // Decimal as string
|
|
58
|
+
string average_rating = 9; // number as string
|
|
59
|
+
string status = 10;
|
|
55
60
|
}
|
|
56
61
|
|
|
57
62
|
message Video {
|