@dqcai/sqlite 2.1.0 → 2.1.2
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/README.md +297 -2450
- package/lib/index.d.ts +0 -40
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +7 -39
- package/lib/index.mjs.map +1 -1
- package/lib/index.umd.js +1 -1
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/lib/utils/csv-import.d.ts +0 -102
- package/lib/utils/csv-import.d.ts.map +0 -1
- package/lib/utils/index.d.ts +0 -3
- package/lib/utils/index.d.ts.map +0 -1
- package/lib/utils/migration-manager.d.ts +0 -184
- package/lib/utils/migration-manager.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { UniversalDAO } from '../core/universal-dao';
|
|
2
|
-
import { ImportOptions, ImportResult, ColumnMapping } from '../types';
|
|
3
|
-
export interface CSVParseOptions {
|
|
4
|
-
delimiter?: string;
|
|
5
|
-
quote?: string;
|
|
6
|
-
escape?: string;
|
|
7
|
-
hasHeader?: boolean;
|
|
8
|
-
skipEmptyLines?: boolean;
|
|
9
|
-
trimWhitespace?: boolean;
|
|
10
|
-
encoding?: string;
|
|
11
|
-
}
|
|
12
|
-
export interface CSVImportOptions extends CSVParseOptions {
|
|
13
|
-
columnMappings?: Record<string, string> | ColumnMapping[];
|
|
14
|
-
transform?: Record<string, (value: any, row: Record<string, any>, index: number) => any>;
|
|
15
|
-
validate?: Record<string, (value: any, row: Record<string, any>, index: number) => boolean | string>;
|
|
16
|
-
onRowParsed?: (row: Record<string, any>, index: number) => Record<string, any> | null;
|
|
17
|
-
onRowError?: (error: Error, row: Record<string, any>, index: number) => boolean;
|
|
18
|
-
maxRows?: number;
|
|
19
|
-
startFromRow?: number;
|
|
20
|
-
dateFormats?: string[];
|
|
21
|
-
booleanValues?: {
|
|
22
|
-
true: string[];
|
|
23
|
-
false: string[];
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
export interface CSVParseResult {
|
|
27
|
-
data: Record<string, any>[];
|
|
28
|
-
headers: string[];
|
|
29
|
-
totalRows: number;
|
|
30
|
-
parsedRows: number;
|
|
31
|
-
skippedRows: number;
|
|
32
|
-
errors: Array<{
|
|
33
|
-
row: number;
|
|
34
|
-
column?: string;
|
|
35
|
-
error: string;
|
|
36
|
-
rawData?: string;
|
|
37
|
-
}>;
|
|
38
|
-
}
|
|
39
|
-
export declare class CSVImporter {
|
|
40
|
-
private dao;
|
|
41
|
-
constructor(dao: UniversalDAO);
|
|
42
|
-
/**
|
|
43
|
-
* Parse CSV string into structured data
|
|
44
|
-
*/
|
|
45
|
-
parseCSV(csvData: string, options?: CSVParseOptions): CSVParseResult;
|
|
46
|
-
/**
|
|
47
|
-
* Advanced CSV import with comprehensive options
|
|
48
|
-
*/
|
|
49
|
-
importFromCSV(tableName: string, csvData: string, options?: CSVImportOptions & Partial<ImportOptions>): Promise<ImportResult & {
|
|
50
|
-
parseResult: CSVParseResult;
|
|
51
|
-
}>;
|
|
52
|
-
/**
|
|
53
|
-
* Import CSV from file path (Node.js/Deno environments)
|
|
54
|
-
*/
|
|
55
|
-
importFromFile(tableName: string, filePath: string, options?: CSVImportOptions & Partial<ImportOptions>): Promise<ImportResult & {
|
|
56
|
-
parseResult: CSVParseResult;
|
|
57
|
-
}>;
|
|
58
|
-
/**
|
|
59
|
-
* Export table data to CSV format
|
|
60
|
-
*/
|
|
61
|
-
exportToCSV(tableName: string, options?: {
|
|
62
|
-
columns?: string[];
|
|
63
|
-
where?: string;
|
|
64
|
-
orderBy?: string;
|
|
65
|
-
limit?: number;
|
|
66
|
-
delimiter?: string;
|
|
67
|
-
quote?: string;
|
|
68
|
-
includeHeaders?: boolean;
|
|
69
|
-
dateFormat?: string;
|
|
70
|
-
nullValue?: string;
|
|
71
|
-
}): Promise<string>;
|
|
72
|
-
private splitCSVLines;
|
|
73
|
-
private parseCSVRow;
|
|
74
|
-
private formatCSVRow;
|
|
75
|
-
private applyColumnMappings;
|
|
76
|
-
private autoConvertTypes;
|
|
77
|
-
private convertValue;
|
|
78
|
-
private parseDate;
|
|
79
|
-
private formatDate;
|
|
80
|
-
/**
|
|
81
|
-
* Static utility methods for parsing CSV values
|
|
82
|
-
*/
|
|
83
|
-
static parseCSVValue(value: string, options?: {
|
|
84
|
-
autoConvert?: boolean;
|
|
85
|
-
booleanValues?: {
|
|
86
|
-
true: string[];
|
|
87
|
-
false: string[];
|
|
88
|
-
};
|
|
89
|
-
dateFormats?: string[];
|
|
90
|
-
}): any;
|
|
91
|
-
/**
|
|
92
|
-
* Validate CSV structure
|
|
93
|
-
*/
|
|
94
|
-
static validateCSVStructure(csvData: string, options?: CSVParseOptions): {
|
|
95
|
-
isValid: boolean;
|
|
96
|
-
errors: string[];
|
|
97
|
-
rowCount: number;
|
|
98
|
-
columnCount: number;
|
|
99
|
-
headers: string[];
|
|
100
|
-
};
|
|
101
|
-
}
|
|
102
|
-
//# sourceMappingURL=csv-import.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"csv-import.d.ts","sourceRoot":"","sources":["../../src/utils/csv-import.ts"],"names":[],"mappings":"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"}
|
package/lib/utils/index.d.ts
DELETED
package/lib/utils/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC"}
|
|
@@ -1,184 +0,0 @@
|
|
|
1
|
-
import { UniversalDAO } from "../core/universal-dao";
|
|
2
|
-
import { DatabaseSchema, ColumnDefinition } from "../types";
|
|
3
|
-
export interface Migration {
|
|
4
|
-
version: string;
|
|
5
|
-
description: string;
|
|
6
|
-
up: (dao: UniversalDAO) => Promise<void>;
|
|
7
|
-
down: (dao: UniversalDAO) => Promise<void>;
|
|
8
|
-
dependencies?: string[];
|
|
9
|
-
category?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface MigrationRecord {
|
|
12
|
-
version: string;
|
|
13
|
-
description: string;
|
|
14
|
-
category?: string;
|
|
15
|
-
applied_at: string;
|
|
16
|
-
execution_time_ms: number;
|
|
17
|
-
checksum?: string;
|
|
18
|
-
}
|
|
19
|
-
export interface MigrationStatus {
|
|
20
|
-
version: string;
|
|
21
|
-
description: string;
|
|
22
|
-
category?: string;
|
|
23
|
-
applied: boolean;
|
|
24
|
-
applied_at?: string;
|
|
25
|
-
execution_time_ms?: number;
|
|
26
|
-
dependencies_met: boolean;
|
|
27
|
-
missing_dependencies: string[];
|
|
28
|
-
}
|
|
29
|
-
export interface MigrationPlan {
|
|
30
|
-
toApply: Migration[];
|
|
31
|
-
toRollback: Migration[];
|
|
32
|
-
conflicts: string[];
|
|
33
|
-
estimatedTime: number;
|
|
34
|
-
}
|
|
35
|
-
export interface MigrationOptions {
|
|
36
|
-
dryRun?: boolean;
|
|
37
|
-
stopOnError?: boolean;
|
|
38
|
-
validateChecksums?: boolean;
|
|
39
|
-
timeout?: number;
|
|
40
|
-
onProgress?: (current: number, total: number, migration: Migration) => void;
|
|
41
|
-
onError?: (error: Error, migration: Migration) => void;
|
|
42
|
-
}
|
|
43
|
-
export declare class MigrationManager {
|
|
44
|
-
private dao;
|
|
45
|
-
private migrations;
|
|
46
|
-
private migrationTable;
|
|
47
|
-
private schemaVersion;
|
|
48
|
-
constructor(dao: UniversalDAO, options?: {
|
|
49
|
-
migrationTable?: string;
|
|
50
|
-
schemaVersion?: string;
|
|
51
|
-
});
|
|
52
|
-
/**
|
|
53
|
-
* Add a single migration
|
|
54
|
-
*/
|
|
55
|
-
addMigration(migration: Migration): void;
|
|
56
|
-
/**
|
|
57
|
-
* Add multiple migrations
|
|
58
|
-
*/
|
|
59
|
-
addMigrations(migrations: Migration[]): void;
|
|
60
|
-
/**
|
|
61
|
-
* Load migrations from a directory or configuration
|
|
62
|
-
*/
|
|
63
|
-
loadMigrations(migrations: Record<string, Migration>): void;
|
|
64
|
-
/**
|
|
65
|
-
* Remove a migration
|
|
66
|
-
*/
|
|
67
|
-
removeMigration(version: string): boolean;
|
|
68
|
-
/**
|
|
69
|
-
* Get all registered migrations
|
|
70
|
-
*/
|
|
71
|
-
getMigrations(): Migration[];
|
|
72
|
-
/**
|
|
73
|
-
* Get migration by version
|
|
74
|
-
*/
|
|
75
|
-
getMigration(version: string): Migration | undefined;
|
|
76
|
-
/**
|
|
77
|
-
* Initialize the migration tracking table
|
|
78
|
-
*/
|
|
79
|
-
initMigrationTable(): Promise<void>;
|
|
80
|
-
/**
|
|
81
|
-
* Get all applied migrations
|
|
82
|
-
*/
|
|
83
|
-
getAppliedMigrations(): Promise<MigrationRecord[]>;
|
|
84
|
-
/**
|
|
85
|
-
* Get pending migrations
|
|
86
|
-
*/
|
|
87
|
-
getPendingMigrations(): Promise<Migration[]>;
|
|
88
|
-
/**
|
|
89
|
-
* Get detailed status of all migrations
|
|
90
|
-
*/
|
|
91
|
-
getDetailedStatus(): Promise<MigrationStatus[]>;
|
|
92
|
-
/**
|
|
93
|
-
* Create a migration plan
|
|
94
|
-
*/
|
|
95
|
-
createMigrationPlan(targetVersion?: string, direction?: "up" | "down"): Promise<MigrationPlan>;
|
|
96
|
-
/**
|
|
97
|
-
* Run migrations up to a target version
|
|
98
|
-
*/
|
|
99
|
-
migrate(targetVersion?: string, options?: MigrationOptions): Promise<MigrationRecord[]>;
|
|
100
|
-
/**
|
|
101
|
-
* Rollback migrations to a target version
|
|
102
|
-
*/
|
|
103
|
-
rollback(targetVersion?: string, options?: MigrationOptions): Promise<void>;
|
|
104
|
-
/**
|
|
105
|
-
* Apply a single migration
|
|
106
|
-
*/
|
|
107
|
-
private applyMigration;
|
|
108
|
-
/**
|
|
109
|
-
* Rollback a single migration
|
|
110
|
-
*/
|
|
111
|
-
private rollbackMigration;
|
|
112
|
-
/**
|
|
113
|
-
* Reset all migrations (DANGEROUS - use with caution)
|
|
114
|
-
*/
|
|
115
|
-
reset(options?: {
|
|
116
|
-
force?: boolean;
|
|
117
|
-
}): Promise<void>;
|
|
118
|
-
/**
|
|
119
|
-
* Validate migration integrity
|
|
120
|
-
*/
|
|
121
|
-
validateIntegrity(): Promise<{
|
|
122
|
-
valid: boolean;
|
|
123
|
-
issues: string[];
|
|
124
|
-
}>;
|
|
125
|
-
/**
|
|
126
|
-
* Get migration history with statistics
|
|
127
|
-
*/
|
|
128
|
-
getHistory(): Promise<{
|
|
129
|
-
totalMigrations: number;
|
|
130
|
-
appliedMigrations: number;
|
|
131
|
-
pendingMigrations: number;
|
|
132
|
-
categories: Record<string, number>;
|
|
133
|
-
totalExecutionTime: number;
|
|
134
|
-
averageExecutionTime: number;
|
|
135
|
-
recentMigrations: MigrationRecord[];
|
|
136
|
-
}>;
|
|
137
|
-
/**
|
|
138
|
-
* Create a migration from schema differences
|
|
139
|
-
*/
|
|
140
|
-
static createMigrationFromSchema(fromSchema: DatabaseSchema, toSchema: DatabaseSchema, version: string, description?: string): Migration;
|
|
141
|
-
private validateMigration;
|
|
142
|
-
private checkDependencies;
|
|
143
|
-
private compareVersions;
|
|
144
|
-
private generateChecksum;
|
|
145
|
-
}
|
|
146
|
-
export declare const MigrationHelpers: {
|
|
147
|
-
/**
|
|
148
|
-
* Create a migration to add a new table
|
|
149
|
-
*/
|
|
150
|
-
createTable(version: string, tableName: string, columns: ColumnDefinition[], options?: {
|
|
151
|
-
description?: string;
|
|
152
|
-
category?: string;
|
|
153
|
-
indexes?: Array<{
|
|
154
|
-
name: string;
|
|
155
|
-
columns: string[];
|
|
156
|
-
unique?: boolean;
|
|
157
|
-
}>;
|
|
158
|
-
}): Migration;
|
|
159
|
-
/**
|
|
160
|
-
* Create a migration to add a column
|
|
161
|
-
*/
|
|
162
|
-
addColumn(version: string, tableName: string, columnName: string, columnType: string, options?: {
|
|
163
|
-
description?: string;
|
|
164
|
-
category?: string;
|
|
165
|
-
defaultValue?: any;
|
|
166
|
-
nullable?: boolean;
|
|
167
|
-
}): Migration;
|
|
168
|
-
/**
|
|
169
|
-
* Create a migration to add an index
|
|
170
|
-
*/
|
|
171
|
-
addIndex(version: string, tableName: string, indexName: string, columns: string[], options?: {
|
|
172
|
-
description?: string;
|
|
173
|
-
category?: string;
|
|
174
|
-
unique?: boolean;
|
|
175
|
-
}): Migration;
|
|
176
|
-
/**
|
|
177
|
-
* Create a migration to run custom SQL
|
|
178
|
-
*/
|
|
179
|
-
rawSQL(version: string, upSQL: string, downSQL: string, options?: {
|
|
180
|
-
description?: string;
|
|
181
|
-
category?: string;
|
|
182
|
-
}): Migration;
|
|
183
|
-
};
|
|
184
|
-
//# sourceMappingURL=migration-manager.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"migration-manager.d.ts","sourceRoot":"","sources":["../../src/utils/migration-manager.ts"],"names":[],"mappings":"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"}
|