@aepstore-dev/contracts 1.78.0 → 1.79.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
@@ -293,6 +293,8 @@ export interface ListTicketsRequest {
293
293
  dateTo: string;
294
294
  /** admin filter by ticket author */
295
295
  authorId: string;
296
+ /** current staff user for per-staff read state */
297
+ requesterId: string;
296
298
  }
297
299
  export interface AssignTicketRequest {
298
300
  ticketId: string;
package/gen/support.ts CHANGED
@@ -332,6 +332,8 @@ export interface ListTicketsRequest {
332
332
  dateTo: string;
333
333
  /** admin filter by ticket author */
334
334
  authorId: string;
335
+ /** current staff user for per-staff read state */
336
+ requesterId: string;
335
337
  }
336
338
 
337
339
  export interface AssignTicketRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.78.0",
3
+ "version": "1.79.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -302,6 +302,7 @@ message ListTicketsRequest {
302
302
  string date_from = 8; // ISO; inclusive lower bound on createdAt
303
303
  string date_to = 9;
304
304
  string author_id = 10; // admin filter by ticket author
305
+ string requester_id = 11; // current staff user for per-staff read state
305
306
  }
306
307
 
307
308
  message AssignTicketRequest {