@aepstore-dev/contracts 1.62.0 → 1.63.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/payments.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.0
5
+ // protoc v7.35.1
6
6
  // source: payments.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
8
  exports.PAYMENTS_SERVICE_NAME = exports.PAYMENTS_V1_PACKAGE_NAME = exports.protobufPackage = void 0;
package/gen/payments.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v2.10.1
4
- // protoc v7.35.0
4
+ // protoc v7.35.1
5
5
  // source: payments.proto
6
6
 
7
7
  /* eslint-disable */
package/gen/products.d.ts CHANGED
@@ -77,6 +77,13 @@ export interface Product {
77
77
  discountPercent: string;
78
78
  /** Decimal as string, in `currency` */
79
79
  finalPrice: string;
80
+ /**
81
+ * Converted final_price display amounts by currency (RUB/USD/EUR).
82
+ * Not persisted; computed from the cached payments-service FX rates.
83
+ */
84
+ prices: {
85
+ [key: string]: string;
86
+ };
80
87
  /** double as string for consistency */
81
88
  averageRating: string;
82
89
  status: ProductStatus;
@@ -121,6 +128,10 @@ export interface Product {
121
128
  */
122
129
  attachments: ProductAttachment[];
123
130
  }
131
+ export interface Product_PricesEntry {
132
+ key: string;
133
+ value: string;
134
+ }
124
135
  export interface ProductAttachment {
125
136
  id: string;
126
137
  fileName: string;
@@ -139,6 +150,16 @@ export interface RelatedProduct {
139
150
  preview: string;
140
151
  user: ProductUser | undefined;
141
152
  categories: Category[];
153
+ /** RUB | USD | EUR */
154
+ currency: string;
155
+ /** Converted final_price display amounts. */
156
+ prices: {
157
+ [key: string]: string;
158
+ };
159
+ }
160
+ export interface RelatedProduct_PricesEntry {
161
+ key: string;
162
+ value: string;
142
163
  }
143
164
  export interface ProductResponse {
144
165
  product: Product | undefined;
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.0
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;
package/gen/products.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // Code generated by protoc-gen-ts_proto. DO NOT EDIT.
2
2
  // versions:
3
3
  // protoc-gen-ts_proto v2.10.1
4
- // protoc v7.35.0
4
+ // protoc v7.35.1
5
5
  // source: products.proto
6
6
 
7
7
  /* eslint-disable */
@@ -97,6 +97,11 @@ export interface Product {
97
97
  discountPercent: string;
98
98
  /** Decimal as string, in `currency` */
99
99
  finalPrice: string;
100
+ /**
101
+ * Converted final_price display amounts by currency (RUB/USD/EUR).
102
+ * Not persisted; computed from the cached payments-service FX rates.
103
+ */
104
+ prices: { [key: string]: string };
100
105
  /** double as string for consistency */
101
106
  averageRating: string;
102
107
  status: ProductStatus;
@@ -142,6 +147,11 @@ export interface Product {
142
147
  attachments: ProductAttachment[];
143
148
  }
144
149
 
150
+ export interface Product_PricesEntry {
151
+ key: string;
152
+ value: string;
153
+ }
154
+
145
155
  export interface ProductAttachment {
146
156
  id: string;
147
157
  fileName: string;
@@ -161,6 +171,15 @@ export interface RelatedProduct {
161
171
  preview: string;
162
172
  user: ProductUser | undefined;
163
173
  categories: Category[];
174
+ /** RUB | USD | EUR */
175
+ currency: string;
176
+ /** Converted final_price display amounts. */
177
+ prices: { [key: string]: string };
178
+ }
179
+
180
+ export interface RelatedProduct_PricesEntry {
181
+ key: string;
182
+ value: string;
164
183
  }
165
184
 
166
185
  export interface ProductResponse {
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
- {
2
- "name": "@aepstore-dev/contracts",
3
- "version": "1.62.0",
4
- "description": "Protobuf definitions for aepstore microservices",
5
- "main": "./dist/index.js",
6
- "types": "./dist/index.d.ts",
7
- "scripts": {
8
- "generate": "node scripts/generate.cjs",
9
- "build": "tsc -p tsconfig.build.json && tsc -p tsconfig.gen.json"
10
- },
11
- "files": [
12
- "dist",
13
- "proto",
14
- "gen"
15
- ],
16
- "publishConfig": {
17
- "access": "public"
18
- },
19
- "author": {
20
- "name": "torroixq",
21
- "email": "cato.ixq@gmail.com"
22
- },
23
- "peerDependencies": {
24
- "@nestjs/microservices": "^11.1.11",
25
- "rxjs": "^7.8.2"
26
- },
27
- "devDependencies": {
28
- "@nestjs/microservices": "^11.1.11",
29
- "@protobuf-ts/protoc": "^2.9.4",
30
- "@types/node": "^25.0.3",
31
- "rxjs": "^7.8.2",
32
- "ts-proto": "^2.10.1",
33
- "typescript": "^5.9.3"
34
- }
35
- }
1
+ {
2
+ "name": "@aepstore-dev/contracts",
3
+ "version": "1.63.0",
4
+ "description": "Protobuf definitions for aepstore microservices",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "scripts": {
8
+ "generate": "node scripts/generate.cjs",
9
+ "build": "tsc -p tsconfig.build.json && tsc -p tsconfig.gen.json"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "proto",
14
+ "gen"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "author": {
20
+ "name": "torroixq",
21
+ "email": "cato.ixq@gmail.com"
22
+ },
23
+ "peerDependencies": {
24
+ "@nestjs/microservices": "^11.1.11",
25
+ "rxjs": "^7.8.2"
26
+ },
27
+ "devDependencies": {
28
+ "@nestjs/microservices": "^11.1.11",
29
+ "@protobuf-ts/protoc": "^2.9.4",
30
+ "@types/node": "^25.0.3",
31
+ "rxjs": "^7.8.2",
32
+ "ts-proto": "^2.10.1",
33
+ "typescript": "^5.9.3"
34
+ }
35
+ }
@@ -1,200 +1,200 @@
1
- syntax = "proto3";
2
-
3
- package activity.v1;
4
-
5
- service ActivityService {
6
- // Reports
7
- rpc ReportCreate(CreateReportRequest) returns (ReportResponse);
8
- rpc ReportList(ListReportsRequest) returns (ReportsListResponse);
9
- rpc ReportGet(ReportIdRequest) returns (ReportResponse);
10
- rpc ReportModerate(ModerateReportRequest) returns (ReportResponse);
11
-
12
- // Report categories
13
- rpc ReportCategoryCreate(CreateReportCategoryRequest) returns (ReportCategoryResponse);
14
- rpc ReportCategoryList(ListReportCategoriesRequest) returns (ReportCategoriesListResponse);
15
- rpc ReportCategoryGet(ReportCategoryIdRequest) returns (ReportCategoryResponse);
16
- rpc ReportCategoryUpdate(UpdateReportCategoryRequest) returns (ReportCategoryResponse);
17
- rpc ReportCategoryDelete(ReportCategoryIdRequest) returns (Ok);
18
-
19
- // Reviews
20
- rpc ReviewCreate(CreateReviewRequest) returns (ReviewResponse);
21
- rpc GetProductReviews(GetProductReviewsRequest) returns (ReviewsListResponse);
22
-
23
- // NOTE: subscriptions live in users-service (CreateSubscription/DeleteSubscription).
24
- // The former activity.ToggleSubscription was a duplicate write path — removed.
25
- }
26
-
27
- // =================================================================
28
- // Enums
29
- // =================================================================
30
-
31
- // Member names match the DB enum string values exactly (enums: String on the
32
- // wire), so DB values pass straight through with no mapping. UNSPECIFIED=0
33
- // represents "no value / not provided" (e.g. an optional list filter).
34
- enum ReportType {
35
- REPORT_TYPE_UNSPECIFIED = 0;
36
- PRODUCT = 1;
37
- PROFILE = 2;
38
- REVIEW = 3;
39
- }
40
-
41
- enum ReportStatus {
42
- REPORT_STATUS_UNSPECIFIED = 0;
43
- PENDING = 1;
44
- IN_PROGRESS = 2;
45
- RESOLVED = 3;
46
- DISMISSED = 4;
47
- }
48
-
49
- // =================================================================
50
- // Reports
51
- // =================================================================
52
-
53
- message Report {
54
- string id = 1;
55
- ReportType type = 2;
56
- string object_id = 3;
57
- string user_id = 4;
58
- string product_id = 5;
59
- repeated ReportCategory categories = 6;
60
- string message = 7;
61
- ReportStatus status = 8;
62
- string created_at = 9;
63
- string updated_at = 10;
64
- }
65
-
66
- message ReportResponse {
67
- Report report = 1;
68
- }
69
-
70
- message CreateReportRequest {
71
- string user_id = 1;
72
- ReportType type = 2;
73
- string object_id = 3;
74
- repeated string categories = 4; // names
75
- string message = 5;
76
- }
77
-
78
- message ListReportsRequest {
79
- ReportType type = 1;
80
- ReportStatus status = 2;
81
- string user_id = 3;
82
- string object_id = 4;
83
- int32 page = 5;
84
- int32 limit = 6;
85
- }
86
-
87
- message ReportsListResponse {
88
- repeated Report items = 1;
89
- int32 total = 2;
90
- int32 page = 3;
91
- int32 limit = 4;
92
- }
93
-
94
- message ReportIdRequest {
95
- string id = 1;
96
- }
97
-
98
- message ModerateReportRequest {
99
- string id = 1;
100
- string action = 2; // 'accept' | 'reject'
101
- }
102
-
103
- // =================================================================
104
- // Report categories
105
- // =================================================================
106
-
107
- message ReportCategory {
108
- string id = 1;
109
- string name = 2;
110
- ReportType type = 3;
111
- string icon = 4;
112
- string description = 5;
113
- }
114
-
115
- message ReportCategoryResponse {
116
- ReportCategory category = 1;
117
- }
118
-
119
- message CreateReportCategoryRequest {
120
- string name = 1;
121
- ReportType type = 2;
122
- string icon = 3;
123
- string description = 4;
124
- }
125
-
126
- message UpdateReportCategoryRequest {
127
- string id = 1;
128
- string name = 2;
129
- string icon = 3;
130
- string description = 4;
131
- }
132
-
133
- message ListReportCategoriesRequest {
134
- ReportType type = 1;
135
- }
136
-
137
- message ReportCategoriesListResponse {
138
- repeated ReportCategory items = 1;
139
- }
140
-
141
- message ReportCategoryIdRequest {
142
- string id = 1;
143
- }
144
-
145
- // =================================================================
146
- // Reviews
147
- // =================================================================
148
-
149
- message ReviewUser {
150
- string id = 1;
151
- string username = 2;
152
- string avatar_url = 3;
153
- }
154
-
155
- message Review {
156
- reserved 4, 8, 9; // retired flat user_id / user_username / user_avatar_url
157
- string id = 1;
158
- int32 rating = 2;
159
- string text = 3;
160
- string product_id = 5;
161
- string created_at = 6;
162
- string updated_at = 7;
163
- ReviewUser user = 10;
164
- }
165
-
166
- message ReviewResponse {
167
- Review review = 1;
168
- }
169
-
170
- message CreateReviewRequest {
171
- string user_id = 1;
172
- string product_id = 2;
173
- int32 rating = 3;
174
- string text = 4;
175
- }
176
-
177
- message GetProductReviewsRequest {
178
- string product_id = 1;
179
- int32 page = 2;
180
- int32 limit = 3;
181
- }
182
-
183
- message ReviewsListResponse {
184
- repeated Review items = 1;
185
- int32 total = 2;
186
- int32 page = 3;
187
- int32 limit = 4;
188
- }
189
-
190
- // =================================================================
191
- // Subscriptions
192
- // =================================================================
193
-
194
- // =================================================================
195
- // Misc
196
- // =================================================================
197
-
198
- message Ok {
199
- bool ok = 1;
200
- }
1
+ syntax = "proto3";
2
+
3
+ package activity.v1;
4
+
5
+ service ActivityService {
6
+ // Reports
7
+ rpc ReportCreate(CreateReportRequest) returns (ReportResponse);
8
+ rpc ReportList(ListReportsRequest) returns (ReportsListResponse);
9
+ rpc ReportGet(ReportIdRequest) returns (ReportResponse);
10
+ rpc ReportModerate(ModerateReportRequest) returns (ReportResponse);
11
+
12
+ // Report categories
13
+ rpc ReportCategoryCreate(CreateReportCategoryRequest) returns (ReportCategoryResponse);
14
+ rpc ReportCategoryList(ListReportCategoriesRequest) returns (ReportCategoriesListResponse);
15
+ rpc ReportCategoryGet(ReportCategoryIdRequest) returns (ReportCategoryResponse);
16
+ rpc ReportCategoryUpdate(UpdateReportCategoryRequest) returns (ReportCategoryResponse);
17
+ rpc ReportCategoryDelete(ReportCategoryIdRequest) returns (Ok);
18
+
19
+ // Reviews
20
+ rpc ReviewCreate(CreateReviewRequest) returns (ReviewResponse);
21
+ rpc GetProductReviews(GetProductReviewsRequest) returns (ReviewsListResponse);
22
+
23
+ // NOTE: subscriptions live in users-service (CreateSubscription/DeleteSubscription).
24
+ // The former activity.ToggleSubscription was a duplicate write path — removed.
25
+ }
26
+
27
+ // =================================================================
28
+ // Enums
29
+ // =================================================================
30
+
31
+ // Member names match the DB enum string values exactly (enums: String on the
32
+ // wire), so DB values pass straight through with no mapping. UNSPECIFIED=0
33
+ // represents "no value / not provided" (e.g. an optional list filter).
34
+ enum ReportType {
35
+ REPORT_TYPE_UNSPECIFIED = 0;
36
+ PRODUCT = 1;
37
+ PROFILE = 2;
38
+ REVIEW = 3;
39
+ }
40
+
41
+ enum ReportStatus {
42
+ REPORT_STATUS_UNSPECIFIED = 0;
43
+ PENDING = 1;
44
+ IN_PROGRESS = 2;
45
+ RESOLVED = 3;
46
+ DISMISSED = 4;
47
+ }
48
+
49
+ // =================================================================
50
+ // Reports
51
+ // =================================================================
52
+
53
+ message Report {
54
+ string id = 1;
55
+ ReportType type = 2;
56
+ string object_id = 3;
57
+ string user_id = 4;
58
+ string product_id = 5;
59
+ repeated ReportCategory categories = 6;
60
+ string message = 7;
61
+ ReportStatus status = 8;
62
+ string created_at = 9;
63
+ string updated_at = 10;
64
+ }
65
+
66
+ message ReportResponse {
67
+ Report report = 1;
68
+ }
69
+
70
+ message CreateReportRequest {
71
+ string user_id = 1;
72
+ ReportType type = 2;
73
+ string object_id = 3;
74
+ repeated string categories = 4; // names
75
+ string message = 5;
76
+ }
77
+
78
+ message ListReportsRequest {
79
+ ReportType type = 1;
80
+ ReportStatus status = 2;
81
+ string user_id = 3;
82
+ string object_id = 4;
83
+ int32 page = 5;
84
+ int32 limit = 6;
85
+ }
86
+
87
+ message ReportsListResponse {
88
+ repeated Report items = 1;
89
+ int32 total = 2;
90
+ int32 page = 3;
91
+ int32 limit = 4;
92
+ }
93
+
94
+ message ReportIdRequest {
95
+ string id = 1;
96
+ }
97
+
98
+ message ModerateReportRequest {
99
+ string id = 1;
100
+ string action = 2; // 'accept' | 'reject'
101
+ }
102
+
103
+ // =================================================================
104
+ // Report categories
105
+ // =================================================================
106
+
107
+ message ReportCategory {
108
+ string id = 1;
109
+ string name = 2;
110
+ ReportType type = 3;
111
+ string icon = 4;
112
+ string description = 5;
113
+ }
114
+
115
+ message ReportCategoryResponse {
116
+ ReportCategory category = 1;
117
+ }
118
+
119
+ message CreateReportCategoryRequest {
120
+ string name = 1;
121
+ ReportType type = 2;
122
+ string icon = 3;
123
+ string description = 4;
124
+ }
125
+
126
+ message UpdateReportCategoryRequest {
127
+ string id = 1;
128
+ string name = 2;
129
+ string icon = 3;
130
+ string description = 4;
131
+ }
132
+
133
+ message ListReportCategoriesRequest {
134
+ ReportType type = 1;
135
+ }
136
+
137
+ message ReportCategoriesListResponse {
138
+ repeated ReportCategory items = 1;
139
+ }
140
+
141
+ message ReportCategoryIdRequest {
142
+ string id = 1;
143
+ }
144
+
145
+ // =================================================================
146
+ // Reviews
147
+ // =================================================================
148
+
149
+ message ReviewUser {
150
+ string id = 1;
151
+ string username = 2;
152
+ string avatar_url = 3;
153
+ }
154
+
155
+ message Review {
156
+ reserved 4, 8, 9; // retired flat user_id / user_username / user_avatar_url
157
+ string id = 1;
158
+ int32 rating = 2;
159
+ string text = 3;
160
+ string product_id = 5;
161
+ string created_at = 6;
162
+ string updated_at = 7;
163
+ ReviewUser user = 10;
164
+ }
165
+
166
+ message ReviewResponse {
167
+ Review review = 1;
168
+ }
169
+
170
+ message CreateReviewRequest {
171
+ string user_id = 1;
172
+ string product_id = 2;
173
+ int32 rating = 3;
174
+ string text = 4;
175
+ }
176
+
177
+ message GetProductReviewsRequest {
178
+ string product_id = 1;
179
+ int32 page = 2;
180
+ int32 limit = 3;
181
+ }
182
+
183
+ message ReviewsListResponse {
184
+ repeated Review items = 1;
185
+ int32 total = 2;
186
+ int32 page = 3;
187
+ int32 limit = 4;
188
+ }
189
+
190
+ // =================================================================
191
+ // Subscriptions
192
+ // =================================================================
193
+
194
+ // =================================================================
195
+ // Misc
196
+ // =================================================================
197
+
198
+ message Ok {
199
+ bool ok = 1;
200
+ }