@aepstore-dev/contracts 1.75.0 → 1.77.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 +7 -1
- package/gen/support.ts +7 -1
- package/package.json +1 -1
- package/proto/support.proto +6 -1
package/gen/support.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export interface Ticket {
|
|
|
43
43
|
lastReadMessageId: string;
|
|
44
44
|
lastReadAt: string;
|
|
45
45
|
assignee: TicketAssignee | undefined;
|
|
46
|
+
reportedAt: string;
|
|
46
47
|
}
|
|
47
48
|
export interface TicketAssignee {
|
|
48
49
|
id: string;
|
|
@@ -202,7 +203,7 @@ export interface ReportTicketRequest {
|
|
|
202
203
|
requesterId: string;
|
|
203
204
|
/**
|
|
204
205
|
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
205
|
-
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
206
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
206
207
|
*/
|
|
207
208
|
reason: string;
|
|
208
209
|
description: string;
|
|
@@ -211,6 +212,9 @@ export interface ReportTicketRequest {
|
|
|
211
212
|
* REFUND_OR_COMPENSATION
|
|
212
213
|
*/
|
|
213
214
|
desiredOutcome: string;
|
|
215
|
+
/** required when reason=OTHER */
|
|
216
|
+
customReason: string;
|
|
217
|
+
attachments: TicketAttachment[];
|
|
214
218
|
}
|
|
215
219
|
export interface SupportTicketComplaint {
|
|
216
220
|
id: string;
|
|
@@ -222,6 +226,8 @@ export interface SupportTicketComplaint {
|
|
|
222
226
|
updatedAt: string;
|
|
223
227
|
description: string;
|
|
224
228
|
desiredOutcome: string;
|
|
229
|
+
customReason: string;
|
|
230
|
+
attachments: TicketAttachment[];
|
|
225
231
|
}
|
|
226
232
|
export interface RateTicketRequest {
|
|
227
233
|
ticketId: string;
|
package/gen/support.ts
CHANGED
|
@@ -55,6 +55,7 @@ export interface Ticket {
|
|
|
55
55
|
lastReadMessageId: string;
|
|
56
56
|
lastReadAt: string;
|
|
57
57
|
assignee: TicketAssignee | undefined;
|
|
58
|
+
reportedAt: string;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
export interface TicketAssignee {
|
|
@@ -232,7 +233,7 @@ export interface ReportTicketRequest {
|
|
|
232
233
|
requesterId: string;
|
|
233
234
|
/**
|
|
234
235
|
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
235
|
-
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
236
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
236
237
|
*/
|
|
237
238
|
reason: string;
|
|
238
239
|
description: string;
|
|
@@ -241,6 +242,9 @@ export interface ReportTicketRequest {
|
|
|
241
242
|
* REFUND_OR_COMPENSATION
|
|
242
243
|
*/
|
|
243
244
|
desiredOutcome: string;
|
|
245
|
+
/** required when reason=OTHER */
|
|
246
|
+
customReason: string;
|
|
247
|
+
attachments: TicketAttachment[];
|
|
244
248
|
}
|
|
245
249
|
|
|
246
250
|
export interface SupportTicketComplaint {
|
|
@@ -253,6 +257,8 @@ export interface SupportTicketComplaint {
|
|
|
253
257
|
updatedAt: string;
|
|
254
258
|
description: string;
|
|
255
259
|
desiredOutcome: string;
|
|
260
|
+
customReason: string;
|
|
261
|
+
attachments: TicketAttachment[];
|
|
256
262
|
}
|
|
257
263
|
|
|
258
264
|
export interface RateTicketRequest {
|
package/package.json
CHANGED
package/proto/support.proto
CHANGED
|
@@ -61,6 +61,7 @@ message Ticket {
|
|
|
61
61
|
string last_read_message_id = 24;
|
|
62
62
|
string last_read_at = 25;
|
|
63
63
|
TicketAssignee assignee = 26;
|
|
64
|
+
string reported_at = 27;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
message TicketAssignee {
|
|
@@ -209,7 +210,7 @@ message ReportTicketRequest {
|
|
|
209
210
|
string ticket_id = 1;
|
|
210
211
|
string requester_id = 2;
|
|
211
212
|
// LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
212
|
-
// WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
213
|
+
// WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
213
214
|
string reason = 3;
|
|
214
215
|
reserved 4;
|
|
215
216
|
reserved "message";
|
|
@@ -217,6 +218,8 @@ message ReportTicketRequest {
|
|
|
217
218
|
// REPORT_PROBLEM | ANOTHER_SPECIALIST_RESPONSE | REVIEW_DECISION |
|
|
218
219
|
// REFUND_OR_COMPENSATION
|
|
219
220
|
string desired_outcome = 6;
|
|
221
|
+
string custom_reason = 7; // required when reason=OTHER
|
|
222
|
+
repeated TicketAttachment attachments = 8;
|
|
220
223
|
}
|
|
221
224
|
|
|
222
225
|
message SupportTicketComplaint {
|
|
@@ -231,6 +234,8 @@ message SupportTicketComplaint {
|
|
|
231
234
|
string updated_at = 8;
|
|
232
235
|
string description = 9;
|
|
233
236
|
string desired_outcome = 10;
|
|
237
|
+
string custom_reason = 11;
|
|
238
|
+
repeated TicketAttachment attachments = 12;
|
|
234
239
|
}
|
|
235
240
|
|
|
236
241
|
message RateTicketRequest {
|