@capacitor-community/sqlite 7.0.3 → 8.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/CapacitorCommunitySqlite.podspec +1 -1
- package/README.md +1 -1
- package/android/build.gradle +10 -10
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/CapacitorSQLitePlugin.java +44 -49
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/NotificationCenter.java +1 -1
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/SQLite/ImportExportJson/ImportFromJson.java +1 -1
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/SQLite/UtilsDelete.java +1 -1
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/SQLite/UtilsDrop.java +1 -1
- package/android/src/main/java/com/getcapacitor/community/database/sqlite/SQLite/UtilsSQLStatement.java +2 -2
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js.map +1 -1
- package/electron/dist/plugin.js +21 -21
- package/electron/dist/plugin.js.map +1 -1
- package/electron/tsconfig.json +18 -18
- package/package.json +18 -17
package/electron/tsconfig.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"allowSyntheticDefaultImports": true,
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"experimentalDecorators": true,
|
|
6
|
+
"noEmitHelpers": true,
|
|
7
|
+
"importHelpers": true,
|
|
8
|
+
"lib": ["dom", "esnext"],
|
|
9
|
+
"module": "commonjs",
|
|
10
|
+
"noImplicitAny": true,
|
|
11
|
+
"noUnusedLocals": true,
|
|
12
|
+
"noUnusedParameters": true,
|
|
13
|
+
"outDir": "build",
|
|
14
|
+
"sourceMap": true,
|
|
15
|
+
"strict": false,
|
|
16
|
+
"target": "ES2020"
|
|
17
|
+
},
|
|
18
|
+
"include": ["src/**/*"]
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor-community/sqlite",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Community plugin for native & electron SQLite databases",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -60,27 +60,28 @@
|
|
|
60
60
|
"release": "commit-and-tag-version"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@capacitor/android": "
|
|
64
|
-
"@capacitor/cli": "
|
|
65
|
-
"@capacitor/core": "
|
|
66
|
-
"@capacitor/docgen": "0.3.
|
|
67
|
-
"@capacitor/ios": "
|
|
68
|
-
"@ionic/eslint-config": "0.4.0",
|
|
69
|
-
"@ionic/prettier-config": "4.0.0",
|
|
70
|
-
"@ionic/swiftlint-config": "2.0.0",
|
|
63
|
+
"@capacitor/android": "^8.0.0",
|
|
64
|
+
"@capacitor/cli": "^8.0.0",
|
|
65
|
+
"@capacitor/core": "^8.0.0",
|
|
66
|
+
"@capacitor/docgen": "^0.3.1",
|
|
67
|
+
"@capacitor/ios": "^8.0.0",
|
|
68
|
+
"@ionic/eslint-config": "^0.4.0",
|
|
69
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
70
|
+
"@ionic/swiftlint-config": "^2.0.0",
|
|
71
71
|
"@rollup/plugin-commonjs": "28.0.2",
|
|
72
72
|
"@rollup/plugin-node-resolve": "16.0.0",
|
|
73
|
+
"@types/node": "25.0.3",
|
|
73
74
|
"commit-and-tag-version": "12.6.1",
|
|
74
|
-
"eslint": "8.57.
|
|
75
|
-
"prettier": "3.
|
|
76
|
-
"prettier-plugin-java": "2.
|
|
77
|
-
"rimraf": "6.0
|
|
78
|
-
"rollup": "4.
|
|
79
|
-
"swiftlint": "2.0.0",
|
|
80
|
-
"typescript": "
|
|
75
|
+
"eslint": "^8.57.1",
|
|
76
|
+
"prettier": "^3.6.2",
|
|
77
|
+
"prettier-plugin-java": "^2.7.7",
|
|
78
|
+
"rimraf": "^6.1.0",
|
|
79
|
+
"rollup": "^4.53.2",
|
|
80
|
+
"swiftlint": "^2.0.0",
|
|
81
|
+
"typescript": "^5.9.3"
|
|
81
82
|
},
|
|
82
83
|
"peerDependencies": {
|
|
83
|
-
"@capacitor/core": ">=
|
|
84
|
+
"@capacitor/core": ">=8.0.0"
|
|
84
85
|
},
|
|
85
86
|
"prettier": "@ionic/prettier-config",
|
|
86
87
|
"swiftlint": "@ionic/swiftlint-config",
|