@aepstore-dev/contracts 1.74.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 CHANGED
@@ -46,7 +46,6 @@ export interface Ticket {
46
46
  }
47
47
  export interface TicketAssignee {
48
48
  id: string;
49
- username: string;
50
49
  /**
51
50
  * Same display format as TicketMessage.author_name for staff:
52
51
  * short fullName (John D.) with username fallback.
package/gen/support.ts CHANGED
@@ -59,7 +59,6 @@ export interface Ticket {
59
59
 
60
60
  export interface TicketAssignee {
61
61
  id: string;
62
- username: string;
63
62
  /**
64
63
  * Same display format as TicketMessage.author_name for staff:
65
64
  * short fullName (John D.) with username fallback.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.74.0",
3
+ "version": "1.75.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -65,7 +65,8 @@ message Ticket {
65
65
 
66
66
  message TicketAssignee {
67
67
  string id = 1;
68
- string username = 2;
68
+ reserved 2;
69
+ reserved "username";
69
70
  // Same display format as TicketMessage.author_name for staff:
70
71
  // short fullName (John D.) with username fallback.
71
72
  string author_name = 3;