@aepstore-dev/contracts 1.84.0 → 1.85.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.
@@ -27,6 +27,8 @@ export interface ListNotificationsRequest {
27
27
  limit: number;
28
28
  entityType: string;
29
29
  entityId: string;
30
+ /** empty|desc|asc */
31
+ order: string;
30
32
  }
31
33
  export interface NotificationsListResponse {
32
34
  items: Notification[];
@@ -39,6 +39,8 @@ export interface ListNotificationsRequest {
39
39
  limit: number;
40
40
  entityType: string;
41
41
  entityId: string;
42
+ /** empty|desc|asc */
43
+ order: string;
42
44
  }
43
45
 
44
46
  export interface NotificationsListResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.84.0",
3
+ "version": "1.85.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -38,6 +38,7 @@ message ListNotificationsRequest {
38
38
  int32 limit = 6;
39
39
  string entity_type = 7;
40
40
  string entity_id = 8;
41
+ string order = 9; // empty|desc|asc
41
42
  }
42
43
 
43
44
  message NotificationsListResponse {