@surveilr/bootstrap-sql 0.0.1

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/dist/views.js ADDED
@@ -0,0 +1,87 @@
1
+ import {
2
+ codeNotebookCellLatest,
3
+ codeNotebookCellVersions,
4
+ codeNotebookMigrationSql,
5
+ codeNotebookSqlCellMigratable,
6
+ codeNotebookSqlCellMigratableNotExecuted,
7
+ codeNotebookSqlCellMigratableState,
8
+ codeNotebookSqlCellMigratableVersion,
9
+ consoleContentTabular,
10
+ consoleInformationSchemaTable,
11
+ consoleInformationSchemaTableColFkey,
12
+ consoleInformationSchemaTableColIndex,
13
+ consoleInformationSchemaView,
14
+ deviceGraphAnalytics,
15
+ deviceGraphCorrelations,
16
+ deviceGraphOverview,
17
+ emailMessagesWithTimezone,
18
+ filesystemGraph,
19
+ imapGraph,
20
+ networkDeviceTopology,
21
+ orchestrationExecutionSuccessRateByType,
22
+ orchestrationExecutionsByType,
23
+ orchestrationIssueRemediation,
24
+ orchestrationLogsBySession,
25
+ orchestrationSessionByDevice,
26
+ orchestrationSessionDuration,
27
+ orchestrationSessionScript,
28
+ orchestrationSessionSummary,
29
+ orchestrationSuccessRate,
30
+ rssdStatisticsOverview,
31
+ rssdTableStatistic,
32
+ snmpCollectionSummary,
33
+ snmpDeviceInventory,
34
+ snmpOidPerformance,
35
+ uniformResourceFile,
36
+ uniformResourceImap,
37
+ uniformResourceImapContent,
38
+ urIngestSessionFileIssue,
39
+ urIngestSessionFilesStats,
40
+ urIngestSessionFilesStatsLatest,
41
+ urIngestSessionTasksStats,
42
+ urIngestSessionTasksStatsLatest
43
+ } from "./chunk-QTY32BJY.js";
44
+ import "./chunk-HZLAQ5XF.js";
45
+ export {
46
+ codeNotebookCellLatest,
47
+ codeNotebookCellVersions,
48
+ codeNotebookMigrationSql,
49
+ codeNotebookSqlCellMigratable,
50
+ codeNotebookSqlCellMigratableNotExecuted,
51
+ codeNotebookSqlCellMigratableState,
52
+ codeNotebookSqlCellMigratableVersion,
53
+ consoleContentTabular,
54
+ consoleInformationSchemaTable,
55
+ consoleInformationSchemaTableColFkey,
56
+ consoleInformationSchemaTableColIndex,
57
+ consoleInformationSchemaView,
58
+ deviceGraphAnalytics,
59
+ deviceGraphCorrelations,
60
+ deviceGraphOverview,
61
+ emailMessagesWithTimezone,
62
+ filesystemGraph,
63
+ imapGraph,
64
+ networkDeviceTopology,
65
+ orchestrationExecutionSuccessRateByType,
66
+ orchestrationExecutionsByType,
67
+ orchestrationIssueRemediation,
68
+ orchestrationLogsBySession,
69
+ orchestrationSessionByDevice,
70
+ orchestrationSessionDuration,
71
+ orchestrationSessionScript,
72
+ orchestrationSessionSummary,
73
+ orchestrationSuccessRate,
74
+ rssdStatisticsOverview,
75
+ rssdTableStatistic,
76
+ snmpCollectionSummary,
77
+ snmpDeviceInventory,
78
+ snmpOidPerformance,
79
+ uniformResourceFile,
80
+ uniformResourceImap,
81
+ uniformResourceImapContent,
82
+ urIngestSessionFileIssue,
83
+ urIngestSessionFilesStats,
84
+ urIngestSessionFilesStatsLatest,
85
+ urIngestSessionTasksStats,
86
+ urIngestSessionTasksStatsLatest
87
+ };
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@surveilr/bootstrap-sql",
3
+ "version": "0.0.1",
4
+ "description": "RSSD Drizzle Schema",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./models": {
16
+ "types": "./dist/models.d.ts",
17
+ "import": "./dist/models.js",
18
+ "require": "./dist/models.cjs"
19
+ },
20
+ "./views": {
21
+ "types": "./dist/views.d.ts",
22
+ "import": "./dist/views.js",
23
+ "require": "./dist/views.cjs"
24
+ }
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup models.ts views.ts index.ts --format cjs,esm --dts --clean",
32
+ "dev": "tsup models.ts views.ts index.ts --format cjs,esm --dts --watch",
33
+ "lint": "tsc --noEmit"
34
+ },
35
+ "keywords": [
36
+ "drizzle",
37
+ "orm",
38
+ "rssd",
39
+ "sqlite"
40
+ ],
41
+ "author": "",
42
+ "license": "ISC",
43
+ "devDependencies": {
44
+ "drizzle-orm": "^0.45.1",
45
+ "tsup": "^8.2.4",
46
+ "typescript": "^5.5.4"
47
+ },
48
+ "peerDependencies": {
49
+ "drizzle-orm": "^0.45.1"
50
+ }
51
+ }