@aepstore-dev/contracts 1.73.0 → 1.75.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 +5 -1
- package/gen/support.ts +5 -1
- package/package.json +1 -1
- package/proto/support.proto +5 -1
package/gen/support.d.ts
CHANGED
|
@@ -46,7 +46,11 @@ export interface Ticket {
|
|
|
46
46
|
}
|
|
47
47
|
export interface TicketAssignee {
|
|
48
48
|
id: string;
|
|
49
|
-
|
|
49
|
+
/**
|
|
50
|
+
* Same display format as TicketMessage.author_name for staff:
|
|
51
|
+
* short fullName (John D.) with username fallback.
|
|
52
|
+
*/
|
|
53
|
+
authorName: string;
|
|
50
54
|
}
|
|
51
55
|
export interface TicketMessage {
|
|
52
56
|
id: string;
|
package/gen/support.ts
CHANGED
|
@@ -59,7 +59,11 @@ export interface Ticket {
|
|
|
59
59
|
|
|
60
60
|
export interface TicketAssignee {
|
|
61
61
|
id: string;
|
|
62
|
-
|
|
62
|
+
/**
|
|
63
|
+
* Same display format as TicketMessage.author_name for staff:
|
|
64
|
+
* short fullName (John D.) with username fallback.
|
|
65
|
+
*/
|
|
66
|
+
authorName: string;
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
export interface TicketMessage {
|
package/package.json
CHANGED
package/proto/support.proto
CHANGED
|
@@ -65,7 +65,11 @@ message Ticket {
|
|
|
65
65
|
|
|
66
66
|
message TicketAssignee {
|
|
67
67
|
string id = 1;
|
|
68
|
-
|
|
68
|
+
reserved 2;
|
|
69
|
+
reserved "username";
|
|
70
|
+
// Same display format as TicketMessage.author_name for staff:
|
|
71
|
+
// short fullName (John D.) with username fallback.
|
|
72
|
+
string author_name = 3;
|
|
69
73
|
}
|
|
70
74
|
|
|
71
75
|
message TicketMessage {
|