@aepstore-dev/contracts 1.71.0 → 1.72.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/support.d.ts +12 -2
- package/gen/support.ts +12 -2
- package/package.json +1 -1
- package/proto/support.proto +12 -2
package/gen/support.d.ts
CHANGED
|
@@ -191,8 +191,17 @@ export interface ReopenTicketResponse {
|
|
|
191
191
|
export interface ReportTicketRequest {
|
|
192
192
|
ticketId: string;
|
|
193
193
|
requesterId: string;
|
|
194
|
+
/**
|
|
195
|
+
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
196
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
197
|
+
*/
|
|
194
198
|
reason: string;
|
|
195
|
-
|
|
199
|
+
description: string;
|
|
200
|
+
/**
|
|
201
|
+
* REPORT_PROBLEM | ANOTHER_SPECIALIST_RESPONSE | REVIEW_DECISION |
|
|
202
|
+
* REFUND_OR_COMPENSATION
|
|
203
|
+
*/
|
|
204
|
+
desiredOutcome: string;
|
|
196
205
|
}
|
|
197
206
|
export interface SupportTicketComplaint {
|
|
198
207
|
id: string;
|
|
@@ -200,9 +209,10 @@ export interface SupportTicketComplaint {
|
|
|
200
209
|
userId: string;
|
|
201
210
|
operatorId: string;
|
|
202
211
|
reason: string;
|
|
203
|
-
message: string;
|
|
204
212
|
createdAt: string;
|
|
205
213
|
updatedAt: string;
|
|
214
|
+
description: string;
|
|
215
|
+
desiredOutcome: string;
|
|
206
216
|
}
|
|
207
217
|
export interface RateTicketRequest {
|
|
208
218
|
ticketId: string;
|
package/gen/support.ts
CHANGED
|
@@ -220,8 +220,17 @@ export interface ReopenTicketResponse {
|
|
|
220
220
|
export interface ReportTicketRequest {
|
|
221
221
|
ticketId: string;
|
|
222
222
|
requesterId: string;
|
|
223
|
+
/**
|
|
224
|
+
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
225
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
226
|
+
*/
|
|
223
227
|
reason: string;
|
|
224
|
-
|
|
228
|
+
description: string;
|
|
229
|
+
/**
|
|
230
|
+
* REPORT_PROBLEM | ANOTHER_SPECIALIST_RESPONSE | REVIEW_DECISION |
|
|
231
|
+
* REFUND_OR_COMPENSATION
|
|
232
|
+
*/
|
|
233
|
+
desiredOutcome: string;
|
|
225
234
|
}
|
|
226
235
|
|
|
227
236
|
export interface SupportTicketComplaint {
|
|
@@ -230,9 +239,10 @@ export interface SupportTicketComplaint {
|
|
|
230
239
|
userId: string;
|
|
231
240
|
operatorId: string;
|
|
232
241
|
reason: string;
|
|
233
|
-
message: string;
|
|
234
242
|
createdAt: string;
|
|
235
243
|
updatedAt: string;
|
|
244
|
+
description: string;
|
|
245
|
+
desiredOutcome: string;
|
|
236
246
|
}
|
|
237
247
|
|
|
238
248
|
export interface RateTicketRequest {
|
package/package.json
CHANGED
package/proto/support.proto
CHANGED
|
@@ -198,8 +198,15 @@ message ReopenTicketResponse {
|
|
|
198
198
|
message ReportTicketRequest {
|
|
199
199
|
string ticket_id = 1;
|
|
200
200
|
string requester_id = 2;
|
|
201
|
+
// LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
202
|
+
// WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
201
203
|
string reason = 3;
|
|
202
|
-
|
|
204
|
+
reserved 4;
|
|
205
|
+
reserved "message";
|
|
206
|
+
string description = 5;
|
|
207
|
+
// REPORT_PROBLEM | ANOTHER_SPECIALIST_RESPONSE | REVIEW_DECISION |
|
|
208
|
+
// REFUND_OR_COMPENSATION
|
|
209
|
+
string desired_outcome = 6;
|
|
203
210
|
}
|
|
204
211
|
|
|
205
212
|
message SupportTicketComplaint {
|
|
@@ -208,9 +215,12 @@ message SupportTicketComplaint {
|
|
|
208
215
|
string user_id = 3;
|
|
209
216
|
string operator_id = 4;
|
|
210
217
|
string reason = 5;
|
|
211
|
-
|
|
218
|
+
reserved 6;
|
|
219
|
+
reserved "message";
|
|
212
220
|
string created_at = 7;
|
|
213
221
|
string updated_at = 8;
|
|
222
|
+
string description = 9;
|
|
223
|
+
string desired_outcome = 10;
|
|
214
224
|
}
|
|
215
225
|
|
|
216
226
|
message RateTicketRequest {
|