@tolinax/ayoune-interfaces 2026.2.3 → 2026.2.4
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/api/IResponseLocals.d.ts +2 -2
- package/package.json +1 -1
package/api/IResponseLocals.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export interface IResponseAuth {
|
|
|
55
55
|
}
|
|
56
56
|
export interface IResponseRights {
|
|
57
57
|
requiredRights?: string[];
|
|
58
|
-
userRights?:
|
|
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?:
|
|
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 {
|