@aepstore-dev/contracts 1.75.0 → 1.76.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 +6 -1
- package/gen/support.ts +6 -1
- package/package.json +1 -1
- package/proto/support.proto +5 -1
package/gen/support.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ export interface ReportTicketRequest {
|
|
|
202
202
|
requesterId: string;
|
|
203
203
|
/**
|
|
204
204
|
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
205
|
-
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
205
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
206
206
|
*/
|
|
207
207
|
reason: string;
|
|
208
208
|
description: string;
|
|
@@ -211,6 +211,9 @@ export interface ReportTicketRequest {
|
|
|
211
211
|
* REFUND_OR_COMPENSATION
|
|
212
212
|
*/
|
|
213
213
|
desiredOutcome: string;
|
|
214
|
+
/** required when reason=OTHER */
|
|
215
|
+
customReason: string;
|
|
216
|
+
attachments: TicketAttachment[];
|
|
214
217
|
}
|
|
215
218
|
export interface SupportTicketComplaint {
|
|
216
219
|
id: string;
|
|
@@ -222,6 +225,8 @@ export interface SupportTicketComplaint {
|
|
|
222
225
|
updatedAt: string;
|
|
223
226
|
description: string;
|
|
224
227
|
desiredOutcome: string;
|
|
228
|
+
customReason: string;
|
|
229
|
+
attachments: TicketAttachment[];
|
|
225
230
|
}
|
|
226
231
|
export interface RateTicketRequest {
|
|
227
232
|
ticketId: string;
|
package/gen/support.ts
CHANGED
|
@@ -232,7 +232,7 @@ export interface ReportTicketRequest {
|
|
|
232
232
|
requesterId: string;
|
|
233
233
|
/**
|
|
234
234
|
* LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
235
|
-
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
235
|
+
* WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
236
236
|
*/
|
|
237
237
|
reason: string;
|
|
238
238
|
description: string;
|
|
@@ -241,6 +241,9 @@ export interface ReportTicketRequest {
|
|
|
241
241
|
* REFUND_OR_COMPENSATION
|
|
242
242
|
*/
|
|
243
243
|
desiredOutcome: string;
|
|
244
|
+
/** required when reason=OTHER */
|
|
245
|
+
customReason: string;
|
|
246
|
+
attachments: TicketAttachment[];
|
|
244
247
|
}
|
|
245
248
|
|
|
246
249
|
export interface SupportTicketComplaint {
|
|
@@ -253,6 +256,8 @@ export interface SupportTicketComplaint {
|
|
|
253
256
|
updatedAt: string;
|
|
254
257
|
description: string;
|
|
255
258
|
desiredOutcome: string;
|
|
259
|
+
customReason: string;
|
|
260
|
+
attachments: TicketAttachment[];
|
|
256
261
|
}
|
|
257
262
|
|
|
258
263
|
export interface RateTicketRequest {
|
package/package.json
CHANGED
package/proto/support.proto
CHANGED
|
@@ -209,7 +209,7 @@ message ReportTicketRequest {
|
|
|
209
209
|
string ticket_id = 1;
|
|
210
210
|
string requester_id = 2;
|
|
211
211
|
// LONG_RESPONSE_WAIT | INCORRECT_COMMUNICATION | PROBLEM_NOT_RESOLVED |
|
|
212
|
-
// WRONG_INFORMATION | SUPPORT_RULES_VIOLATION
|
|
212
|
+
// WRONG_INFORMATION | SUPPORT_RULES_VIOLATION | OTHER
|
|
213
213
|
string reason = 3;
|
|
214
214
|
reserved 4;
|
|
215
215
|
reserved "message";
|
|
@@ -217,6 +217,8 @@ message ReportTicketRequest {
|
|
|
217
217
|
// REPORT_PROBLEM | ANOTHER_SPECIALIST_RESPONSE | REVIEW_DECISION |
|
|
218
218
|
// REFUND_OR_COMPENSATION
|
|
219
219
|
string desired_outcome = 6;
|
|
220
|
+
string custom_reason = 7; // required when reason=OTHER
|
|
221
|
+
repeated TicketAttachment attachments = 8;
|
|
220
222
|
}
|
|
221
223
|
|
|
222
224
|
message SupportTicketComplaint {
|
|
@@ -231,6 +233,8 @@ message SupportTicketComplaint {
|
|
|
231
233
|
string updated_at = 8;
|
|
232
234
|
string description = 9;
|
|
233
235
|
string desired_outcome = 10;
|
|
236
|
+
string custom_reason = 11;
|
|
237
|
+
repeated TicketAttachment attachments = 12;
|
|
234
238
|
}
|
|
235
239
|
|
|
236
240
|
message RateTicketRequest {
|