@aepstore-dev/contracts 1.64.0 → 1.65.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 CHANGED
@@ -49,6 +49,11 @@ export interface TicketMessage {
49
49
  attachments: TicketAttachment[];
50
50
  /** '' если не редактировалось */
51
51
  editedAt: string;
52
+ /**
53
+ * Отображаемое имя автора: агент — «Имя Ф.» из fullName (фолбэк username),
54
+ * клиент — username, системное — ''.
55
+ */
56
+ authorName: string;
52
57
  }
53
58
  export interface TicketAttachment {
54
59
  fileName: string;
package/gen/support.ts CHANGED
@@ -62,6 +62,11 @@ export interface TicketMessage {
62
62
  attachments: TicketAttachment[];
63
63
  /** '' если не редактировалось */
64
64
  editedAt: string;
65
+ /**
66
+ * Отображаемое имя автора: агент — «Имя Ф.» из fullName (фолбэк username),
67
+ * клиент — username, системное — ''.
68
+ */
69
+ authorName: string;
65
70
  }
66
71
 
67
72
  export interface TicketAttachment {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.64.0",
3
+ "version": "1.65.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -60,6 +60,9 @@ message TicketMessage {
60
60
  bool is_system = 8; // автосообщение платформы
61
61
  repeated TicketAttachment attachments = 9;
62
62
  string edited_at = 10; // '' если не редактировалось
63
+ // Отображаемое имя автора: агент — «Имя Ф.» из fullName (фолбэк username),
64
+ // клиент — username, системное — ''.
65
+ string author_name = 11;
63
66
  }
64
67
 
65
68
  message TicketAttachment {