@tolinax/ayoune-interfaces 2026.2.3 → 2026.2.5

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.
@@ -38,7 +38,7 @@ export interface IResponseRateLimit {
38
38
  limit: string;
39
39
  remaining: string;
40
40
  reset: string;
41
- resetDate: string;
41
+ resetDate: Date;
42
42
  }
43
43
  export interface IResponseIdentity {
44
44
  id?: string;
@@ -55,7 +55,7 @@ export interface IResponseAuth {
55
55
  }
56
56
  export interface IResponseRights {
57
57
  requiredRights?: string[];
58
- userRights?: string[];
58
+ userRights?: any[];
59
59
  customerRights?: string[];
60
60
  }
61
61
  export interface IResponseQuery {
@@ -104,7 +104,7 @@ export interface IResponseAudit {
104
104
  startHrTime?: [number, number];
105
105
  }
106
106
  export interface IResponseFieldManagement {
107
- removedFields?: string[];
107
+ removedFields?: [];
108
108
  updateMode?: "replace" | "merge" | string;
109
109
  }
110
110
  export interface IResponseLocals extends IResponseIdentity, IResponseAuth, IResponseRights, IResponseQuery, IResponseConfig, IResponseClient, IResponseMeta, IResponseHypermedia, IResponseAudit, IResponseFieldManagement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2026.2.3",
3
+ "version": "2026.2.5",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",