fix(ts_interfaces): rename generated TypeScript interface files to remove the loint-reception prefix

This commit is contained in:
2026-04-20 08:44:05 +00:00
parent 525a72b73b
commit 68469b0740
32 changed files with 9 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { TAppType } from './loint-reception.app.js';
export type TAppConnectionStatus = 'active' | 'disconnected';
export interface IAppConnection {
id: string;
data: {
organizationId: string;
appId: string;
appType: TAppType;
status: TAppConnectionStatus;
connectedAt: number;
connectedByUserId: string;
grantedScopes: string[];
};
}