| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import type { IStudio } from "../auth/Studio"
- import type { IUser } from "../auth/User"
- import type { IChannel } from "../channel/Channel"
- import type { TRole } from "./Auth"
- export interface ITermDataRequest {
- id?: string;
- word: string;
- tag?: string;
- meaning: string;
- other_meaning?: string;
- note?: string;
- channel?: string;
- studioName?: string;
- studioId?: string;
- language?: string;
- parent_channel_id?: string;
- save_as?: boolean;
- copy_channel?: string;
- copy_lang?: string;
- pr?: boolean;
- }
- export interface ITermDataResponse {
- id: number;
- guid: string;
- word: string;
- tag: string;
- meaning: string;
- other_meaning: string;
- note: string | null;
- html?: string;
- channal: string;
- channel?: IChannel;
- studio: IStudio;
- editor: IUser;
- role?: TRole;
- exp?: number;
- language: string;
- community?: boolean;
- summary?: string;
- summary_is_community?: boolean;
- created_at: string;
- updated_at: string;
- }
- export interface ITermResponse {
- ok: boolean;
- message: string;
- data: ITermDataResponse;
- }
- export interface ITermListResponse {
- ok: boolean;
- message: string;
- data: {
- rows: ITermDataResponse[];
- count: number;
- };
- }
- interface IMeaningCount {
- meaning: string;
- count: number;
- }
- interface IStudioChannel {
- name: string;
- uid: string;
- }
- export interface ITermCreate {
- word: string;
- meaningCount: IMeaningCount[];
- studioChannels: IStudioChannel[];
- language: string;
- studio: IStudio;
- }
- export interface ITermCreateResponse {
- ok: boolean;
- message: string;
- data: ITermCreate;
- }
- export interface ITermDeleteRequest {
- uuid: boolean;
- id: string[];
- }
|