2025-06-07 17:28:15 +00:00
|
|
|
import * as plugins from '../plugins.js';
|
|
|
|
|
import * as authInterfaces from '../data/auth.js';
|
|
|
|
|
|
2026-02-03 23:26:51 +00:00
|
|
|
// Get Configuration (read-only)
|
2025-06-07 17:28:15 +00:00
|
|
|
export interface IReq_GetConfiguration extends plugins.typedrequestInterfaces.implementsTR<
|
|
|
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
|
|
|
IReq_GetConfiguration
|
|
|
|
|
> {
|
|
|
|
|
method: 'getConfiguration';
|
|
|
|
|
request: {
|
|
|
|
|
identity?: authInterfaces.IIdentity;
|
|
|
|
|
section?: string;
|
|
|
|
|
};
|
|
|
|
|
response: {
|
|
|
|
|
config: any;
|
|
|
|
|
section?: string;
|
|
|
|
|
};
|
|
|
|
|
}
|