mirror of
https://github.com/frappe/books.git
synced 2026-08-24 10:04:45 -05:00
incr: insert or update .template.html files
- move .template.html files out of fixtures
This commit is contained in:
@@ -22,6 +22,7 @@ export enum IPC_ACTIONS {
|
||||
SELECT_FILE = 'select-file',
|
||||
GET_CREDS = 'get-creds',
|
||||
GET_DB_LIST = 'get-db-list',
|
||||
GET_TEMPLATES = 'get-templates',
|
||||
DELETE_FILE = 'delete-file',
|
||||
// Database messages
|
||||
DB_CREATE = 'db-create',
|
||||
|
||||
+8
-2
@@ -23,14 +23,18 @@ export interface VersionParts {
|
||||
beta?: number;
|
||||
}
|
||||
|
||||
export type Creds = { errorLogUrl: string; telemetryUrl: string; tokenString: string };
|
||||
export type Creds = {
|
||||
errorLogUrl: string;
|
||||
telemetryUrl: string;
|
||||
tokenString: string;
|
||||
};
|
||||
|
||||
export type UnexpectedLogObject = {
|
||||
name: string;
|
||||
message: string;
|
||||
stack: string;
|
||||
more: Record<string, unknown>;
|
||||
}
|
||||
};
|
||||
|
||||
export interface SelectFileOptions {
|
||||
title: string;
|
||||
@@ -48,3 +52,5 @@ export interface SelectFileReturn {
|
||||
export type PropertyEnum<T extends Record<string, any>> = {
|
||||
[key in keyof Required<T>]: key;
|
||||
};
|
||||
|
||||
export type TemplateFile = { file: string; template: string; modified: string };
|
||||
|
||||
Reference in New Issue
Block a user