react-native-nitro-sqlite 8.2.2-nitro.1 → 9.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/RNNitroSQLite.podspec +22 -5
- package/android/CMakeLists.txt +42 -5
- package/android/build.gradle +83 -23
- package/android/{src/main/cpp/cpp-adapter.cpp → cpp-adapter.cpp} +1 -1
- package/android/gradle.properties +5 -0
- package/android/src/main/java/com/margelo/rnnitrosqlite/DocPathSetter.kt +13 -0
- package/android/src/main/java/com/margelo/rnnitrosqlite/RNNitroSQLitePackage.kt +40 -0
- package/android/src/newarch/com/margelo/rnnitrosqlite/RNNitroSQLiteOnLoadModule.kt +41 -0
- package/android/src/oldarch/com/margelo/rnnitrosqlite/RNNitroSQLiteOnLoadModule.kt +43 -0
- package/cpp/operations.cpp +0 -3
- package/cpp/sqlite/sqlite3.c +41 -41
- package/cpp/sqliteExecuteBatch.cpp +0 -1
- package/lib/commonjs/index.js +6 -6
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/nitro.js.map +1 -1
- package/lib/commonjs/operations/execute.js +1 -1
- package/lib/commonjs/operations/execute.js.map +1 -1
- package/lib/commonjs/operations/session.js +3 -3
- package/lib/commonjs/operations/session.js.map +1 -1
- package/lib/commonjs/operations/transaction.js +4 -7
- package/lib/commonjs/operations/transaction.js.map +1 -1
- package/lib/commonjs/specs/NativeNitroSQLiteOnLoad.ios.js.map +1 -1
- package/lib/commonjs/specs/NativeNitroSQLiteOnLoad.js.map +1 -1
- package/lib/commonjs/specs/NativeQueryResult.nitro.js.map +1 -1
- package/lib/commonjs/specs/NitroSQLite.nitro.js.map +1 -1
- package/lib/commonjs/typeORM.js +1 -1
- package/lib/commonjs/typeORM.js.map +1 -1
- package/lib/commonjs/types.js +0 -1
- package/lib/commonjs/types.js.map +1 -1
- package/lib/module/index.js +9 -7
- package/lib/module/index.js.map +1 -1
- package/lib/module/nitro.js +2 -0
- package/lib/module/nitro.js.map +1 -1
- package/lib/module/operations/execute.js +3 -1
- package/lib/module/operations/execute.js.map +1 -1
- package/lib/module/operations/session.js +5 -3
- package/lib/module/operations/session.js.map +1 -1
- package/lib/module/operations/transaction.js +6 -7
- package/lib/module/operations/transaction.js.map +1 -1
- package/lib/module/specs/NativeNitroSQLiteOnLoad.ios.js +2 -0
- package/lib/module/specs/NativeNitroSQLiteOnLoad.ios.js.map +1 -1
- package/lib/module/specs/NativeNitroSQLiteOnLoad.js +2 -0
- package/lib/module/specs/NativeNitroSQLiteOnLoad.js.map +1 -1
- package/lib/module/specs/NativeQueryResult.nitro.js +2 -0
- package/lib/module/specs/NativeQueryResult.nitro.js.map +1 -1
- package/lib/module/specs/NitroSQLite.nitro.js +2 -0
- package/lib/module/specs/NitroSQLite.nitro.js.map +1 -1
- package/lib/module/typeORM.js +3 -1
- package/lib/module/typeORM.js.map +1 -1
- package/lib/module/types.js +2 -1
- package/lib/module/types.js.map +1 -1
- package/lib/tsconfig.build.tsbuildinfo +1 -0
- package/lib/typescript/{index.d.ts → commonjs/index.d.ts} +1 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/{nitro.d.ts → commonjs/nitro.d.ts} +1 -0
- package/lib/typescript/commonjs/nitro.d.ts.map +1 -0
- package/lib/typescript/{operations → commonjs/operations}/execute.d.ts +1 -0
- package/lib/typescript/commonjs/operations/execute.d.ts.map +1 -0
- package/lib/typescript/{operations → commonjs/operations}/session.d.ts +1 -0
- package/lib/typescript/commonjs/operations/session.d.ts.map +1 -0
- package/lib/typescript/{operations → commonjs/operations}/transaction.d.ts +1 -0
- package/lib/typescript/commonjs/operations/transaction.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/{specs → commonjs/specs}/NativeNitroSQLiteOnLoad.d.ts +1 -0
- package/lib/typescript/commonjs/specs/NativeNitroSQLiteOnLoad.d.ts.map +1 -0
- package/lib/typescript/{specs → commonjs/specs}/NativeNitroSQLiteOnLoad.ios.d.ts +1 -0
- package/lib/typescript/commonjs/specs/NativeNitroSQLiteOnLoad.ios.d.ts.map +1 -0
- package/lib/typescript/{specs → commonjs/specs}/NativeQueryResult.nitro.d.ts +1 -0
- package/lib/typescript/commonjs/specs/NativeQueryResult.nitro.d.ts.map +1 -0
- package/lib/typescript/{specs → commonjs/specs}/NitroSQLite.nitro.d.ts +1 -0
- package/lib/typescript/commonjs/specs/NitroSQLite.nitro.d.ts.map +1 -0
- package/lib/typescript/{typeORM.d.ts → commonjs/typeORM.d.ts} +1 -0
- package/lib/typescript/commonjs/typeORM.d.ts.map +1 -0
- package/lib/typescript/{types.d.ts → commonjs/types.d.ts} +1 -0
- package/lib/typescript/commonjs/types.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +31 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/nitro.d.ts +8 -0
- package/lib/typescript/module/nitro.d.ts.map +1 -0
- package/lib/typescript/module/operations/execute.d.ts +4 -0
- package/lib/typescript/module/operations/execute.d.ts.map +1 -0
- package/lib/typescript/module/operations/session.d.ts +5 -0
- package/lib/typescript/module/operations/session.d.ts.map +1 -0
- package/lib/typescript/module/operations/transaction.d.ts +6 -0
- package/lib/typescript/module/operations/transaction.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/specs/NativeNitroSQLiteOnLoad.d.ts +7 -0
- package/lib/typescript/module/specs/NativeNitroSQLiteOnLoad.d.ts.map +1 -0
- package/lib/typescript/module/specs/NativeNitroSQLiteOnLoad.ios.d.ts +4 -0
- package/lib/typescript/module/specs/NativeNitroSQLiteOnLoad.ios.d.ts.map +1 -0
- package/lib/typescript/module/specs/NativeQueryResult.nitro.d.ts +38 -0
- package/lib/typescript/module/specs/NativeQueryResult.nitro.d.ts.map +1 -0
- package/lib/typescript/module/specs/NitroSQLite.nitro.d.ts +20 -0
- package/lib/typescript/module/specs/NitroSQLite.nitro.d.ts.map +1 -0
- package/lib/typescript/module/typeORM.d.ts +20 -0
- package/lib/typescript/module/typeORM.d.ts.map +1 -0
- package/lib/typescript/module/types.d.ts +80 -0
- package/lib/typescript/module/types.d.ts.map +1 -0
- package/nitrogen/generated/android/RNNitroSQLite+autolinking.cmake +13 -1
- package/nitrogen/generated/android/RNNitroSQLite+autolinking.gradle +2 -0
- package/nitrogen/generated/ios/RNNitroSQLite+autolinking.rb +1 -1
- package/nitrogen/generated/ios/RNNitroSQLite-Swift-Cxx-Bridge.hpp +0 -6
- package/package.json +87 -43
- package/src/operations/transaction.ts +2 -3
- package/src/types.ts +0 -1
- package/android/src/main/java/com/margelo/rnnitrosqlite/RNNitroSQLiteOnLoadModule.java +0 -57
- package/android/src/main/java/com/margelo/rnnitrosqlite/RNNitroSQLitePackage.java +0 -48
- package/lib/tsconfig.tsbuildinfo +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["HybridNitroSQLite","execute","dbName","query","params","nativeResult","result","buildJsQueryResult","executeAsync","insertId","rowsAffected","results","data","rows","_array","length","item","idx"],"
|
|
1
|
+
{"version":3,"names":["HybridNitroSQLite","execute","dbName","query","params","nativeResult","result","buildJsQueryResult","executeAsync","insertId","rowsAffected","results","data","rows","_array","length","item","idx"],"sourceRoot":"../../../src","sources":["operations/execute.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,aAAU;AAI5C,OAAO,SAASC,OAAOA,CACrBC,MAAc,EACdC,KAAa,EACbC,MAA0B,EACP;EACnB,MAAMC,YAAY,GAAGL,iBAAiB,CAACC,OAAO,CAACC,MAAM,EAAEC,KAAK,EAAEC,MAAM,CAAC;EACrE,MAAME,MAAM,GAAGC,kBAAkB,CAAOF,YAAY,CAAC;EACrD,OAAOC,MAAM;AACf;AAEA,OAAO,eAAeE,YAAYA,CAChCN,MAAc,EACdC,KAAa,EACbC,MAA0B,EACE;EAC5B,MAAMC,YAAY,GAAG,MAAML,iBAAiB,CAACQ,YAAY,CACvDN,MAAM,EACNC,KAAK,EACLC,MACF,CAAC;EACD,MAAME,MAAM,GAAGC,kBAAkB,CAAOF,YAAY,CAAC;EACrD,OAAOC,MAAM;AACf;AAEA,SAASC,kBAAkBA,CAAkC;EAC3DE,QAAQ;EACRC,YAAY;EACZC;AACiB,CAAC,EAAqB;EACvC,MAAMC,IAAI,GAAGD,OAAiB;EAE9B,OAAO;IACLF,QAAQ;IACRC,YAAY;IACZG,IAAI,EAAE;MACJC,MAAM,EAAEF,IAAI;MACZG,MAAM,EAAEH,IAAI,CAACG,MAAM;MACnBC,IAAI,EAAGC,GAAW,IAAKL,IAAI,CAACK,GAAG;IACjC;EACF,CAAC;AACH","ignoreList":[]}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import {
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { locks, HybridNitroSQLite } from "../nitro.js";
|
|
4
|
+
import { transaction } from "./transaction.js";
|
|
5
|
+
import { execute, executeAsync } from "./execute.js";
|
|
4
6
|
export function open(options) {
|
|
5
7
|
openDb(options.name, options.location);
|
|
6
8
|
return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["locks","HybridNitroSQLite","transaction","execute","executeAsync","open","options","openDb","name","location","close","delete","drop","attach","dbNameToAttach","alias","detach","fn","query","params","executeBatch","commands","executeBatchAsync","loadFile","loadFileAsync","dbName","queue","inProgress"],"
|
|
1
|
+
{"version":3,"names":["locks","HybridNitroSQLite","transaction","execute","executeAsync","open","options","openDb","name","location","close","delete","drop","attach","dbNameToAttach","alias","detach","fn","query","params","executeBatch","commands","executeBatchAsync","loadFile","loadFileAsync","dbName","queue","inProgress"],"sourceRoot":"../../../src","sources":["operations/session.ts"],"mappings":";;AAAA,SAASA,KAAK,EAAEC,iBAAiB,QAAQ,aAAU;AACnD,SAASC,WAAW,QAAQ,kBAAe;AAU3C,SAASC,OAAO,EAAEC,YAAY,QAAQ,cAAW;AAEjD,OAAO,SAASC,IAAIA,CAClBC,OAAqC,EACd;EACvBC,MAAM,CAACD,OAAO,CAACE,IAAI,EAAEF,OAAO,CAACG,QAAQ,CAAC;EAEtC,OAAO;IACLC,KAAK,EAAEA,CAAA,KAAMA,KAAK,CAACJ,OAAO,CAACE,IAAI,CAAC;IAChCG,MAAM,EAAEA,CAAA,KAAMV,iBAAiB,CAACW,IAAI,CAACN,OAAO,CAACE,IAAI,EAAEF,OAAO,CAACG,QAAQ,CAAC;IACpEI,MAAM,EAAEA,CAACC,cAAsB,EAAEC,KAAa,EAAEN,QAAiB,KAC/DR,iBAAiB,CAACY,MAAM,CAACP,OAAO,CAACE,IAAI,EAAEM,cAAc,EAAEC,KAAK,EAAEN,QAAQ,CAAC;IACzEO,MAAM,EAAGD,KAAa,IAAKd,iBAAiB,CAACe,MAAM,CAACV,OAAO,CAACE,IAAI,EAAEO,KAAK,CAAC;IACxEb,WAAW,EAAGe,EAA6C,IACzDf,WAAW,CAACI,OAAO,CAACE,IAAI,EAAES,EAAE,CAAC;IAC/Bd,OAAO,EAAEA,CACPe,KAAa,EACbC,MAA0B,KACJhB,OAAO,CAACG,OAAO,CAACE,IAAI,EAAEU,KAAK,EAAEC,MAAM,CAAC;IAC5Df,YAAY,EAAEA,CACZc,KAAa,EACbC,MAA0B,KACKf,YAAY,CAACE,OAAO,CAACE,IAAI,EAAEU,KAAK,EAAEC,MAAM,CAAC;IAC1EC,YAAY,EAAGC,QAA6B,IAC1CpB,iBAAiB,CAACmB,YAAY,CAACd,OAAO,CAACE,IAAI,EAAEa,QAAQ,CAAC;IACxDC,iBAAiB,EAAGD,QAA6B,IAC/CpB,iBAAiB,CAACqB,iBAAiB,CAAChB,OAAO,CAACE,IAAI,EAAEa,QAAQ,CAAC;IAC7DE,QAAQ,EAAGd,QAAgB,IACzBR,iBAAiB,CAACsB,QAAQ,CAACjB,OAAO,CAACE,IAAI,EAAEC,QAAQ,CAAC;IACpDe,aAAa,EAAGf,QAAgB,IAC9BR,iBAAiB,CAACuB,aAAa,CAAClB,OAAO,CAACE,IAAI,EAAEC,QAAQ;EAC1D,CAAC;AACH;AAEA,OAAO,SAASF,MAAMA,CAACkB,MAAc,EAAEhB,QAAiB,EAAE;EACxDR,iBAAiB,CAACI,IAAI,CAACoB,MAAM,EAAEhB,QAAQ,CAAC;EAExCT,KAAK,CAACyB,MAAM,CAAC,GAAG;IACdC,KAAK,EAAE,EAAE;IACTC,UAAU,EAAE;EACd,CAAC;AACH;AAEA,OAAO,SAASjB,KAAKA,CAACe,MAAc,EAAE;EACpCxB,iBAAiB,CAACS,KAAK,CAACe,MAAM,CAAC;EAC/B,OAAOzB,KAAK,CAACyB,MAAM,CAAC;AACtB","ignoreList":[]}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { locks, HybridNitroSQLite } from "../nitro.js";
|
|
4
|
+
import { execute, executeAsync } from "./execute.js";
|
|
5
|
+
export const transaction = (dbName, fn) => {
|
|
4
6
|
if (locks[dbName] == null) throw Error(`Nitro SQLite Error: No lock found on db: ${dbName}`);
|
|
5
7
|
let isFinalized = false;
|
|
6
8
|
|
|
@@ -53,20 +55,18 @@ export const transaction = async (dbName, fn) => {
|
|
|
53
55
|
}
|
|
54
56
|
throw executionError;
|
|
55
57
|
} finally {
|
|
56
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
57
58
|
locks[dbName].inProgress = false;
|
|
58
59
|
isFinalized = false;
|
|
59
60
|
startNextTransaction(dbName);
|
|
60
61
|
}
|
|
61
62
|
}
|
|
62
63
|
return new Promise((resolve, reject) => {
|
|
63
|
-
var _locks$dbName;
|
|
64
64
|
const tx = {
|
|
65
65
|
start: () => {
|
|
66
66
|
run().then(resolve).catch(reject);
|
|
67
67
|
}
|
|
68
68
|
};
|
|
69
|
-
|
|
69
|
+
locks[dbName]?.queue.push(tx);
|
|
70
70
|
startNextTransaction(dbName);
|
|
71
71
|
});
|
|
72
72
|
};
|
|
@@ -78,7 +78,6 @@ function startNextTransaction(dbName) {
|
|
|
78
78
|
}
|
|
79
79
|
if (locks[dbName].queue.length > 0) {
|
|
80
80
|
locks[dbName].inProgress = true;
|
|
81
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
82
81
|
const tx = locks[dbName].queue.shift();
|
|
83
82
|
setImmediate(() => {
|
|
84
83
|
tx.start();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["locks","HybridNitroSQLite","execute","executeAsync","transaction","dbName","fn","Error","isFinalized","executeOnTransaction","query","params","executeAsyncOnTransaction","commit","result","rollback","run","executionError","rollbackError","inProgress","startNextTransaction","Promise","resolve","reject","
|
|
1
|
+
{"version":3,"names":["locks","HybridNitroSQLite","execute","executeAsync","transaction","dbName","fn","Error","isFinalized","executeOnTransaction","query","params","executeAsyncOnTransaction","commit","result","rollback","run","executionError","rollbackError","inProgress","startNextTransaction","Promise","resolve","reject","tx","start","then","catch","queue","push","length","shift","setImmediate"],"sourceRoot":"../../../src","sources":["operations/transaction.ts"],"mappings":";;AAAA,SAASA,KAAK,EAAEC,iBAAiB,QAAQ,aAAU;AAOnD,SAASC,OAAO,EAAEC,YAAY,QAAQ,cAAW;AAejD,OAAO,MAAMC,WAAW,GAAGA,CACzBC,MAAc,EACdC,EAA6C,KAC3B;EAClB,IAAIN,KAAK,CAACK,MAAM,CAAC,IAAI,IAAI,EACvB,MAAME,KAAK,CAAC,4CAA4CF,MAAM,EAAE,CAAC;EAEnE,IAAIG,WAAW,GAAG,KAAK;;EAEvB;EACA,MAAMC,oBAAoB,GAAGA,CAC3BC,KAAa,EACbC,MAA0B,KACJ;IACtB,IAAIH,WAAW,EAAE;MACf,MAAMD,KAAK,CACT,sEAAsEF,MAAM,EAC9E,CAAC;IACH;IACA,OAAOH,OAAO,CAACG,MAAM,EAAEK,KAAK,EAAEC,MAAM,CAAC;EACvC,CAAC;EAED,MAAMC,yBAAyB,GAAGA,CAChCF,KAAa,EACbC,MAA0B,KACK;IAC/B,IAAIH,WAAW,EAAE;MACf,MAAMD,KAAK,CACT,sEAAsEF,MAAM,EAC9E,CAAC;IACH;IACA,OAAOF,YAAY,CAACE,MAAM,EAAEK,KAAK,EAAEC,MAAM,CAAC;EAC5C,CAAC;EAED,MAAME,MAAM,GAAGA,CAAA,KAAM;IACnB,IAAIL,WAAW,EAAE;MACf,MAAMD,KAAK,CACT,uEAAuEF,MAAM,EAC/E,CAAC;IACH;IACA,MAAMS,MAAM,GAAGb,iBAAiB,CAACC,OAAO,CAACG,MAAM,EAAE,QAAQ,CAAC;IAC1DG,WAAW,GAAG,IAAI;IAClB,OAAOM,MAAM;EACf,CAAC;EAED,MAAMC,QAAQ,GAAGA,CAAA,KAAM;IACrB,IAAIP,WAAW,EAAE;MACf,MAAMD,KAAK,CACT,yEAAyEF,MAAM,EACjF,CAAC;IACH;IACA,MAAMS,MAAM,GAAGb,iBAAiB,CAACC,OAAO,CAACG,MAAM,EAAE,UAAU,CAAC;IAC5DG,WAAW,GAAG,IAAI;IAClB,OAAOM,MAAM;EACf,CAAC;EAED,eAAeE,GAAGA,CAAA,EAAG;IACnB,IAAI;MACF,MAAMf,iBAAiB,CAACE,YAAY,CAACE,MAAM,EAAE,mBAAmB,CAAC;MAEjE,MAAMC,EAAE,CAAC;QACPO,MAAM;QACNX,OAAO,EAAEO,oBAAoB;QAC7BN,YAAY,EAAES,yBAAyB;QACvCG;MACF,CAAC,CAAC;MAEF,IAAI,CAACP,WAAW,EAAEK,MAAM,CAAC,CAAC;IAC5B,CAAC,CAAC,OAAOI,cAAc,EAAE;MACvB,IAAI,CAACT,WAAW,EAAE;QAChB,IAAI;UACFO,QAAQ,CAAC,CAAC;QACZ,CAAC,CAAC,OAAOG,aAAa,EAAE;UACtB,MAAMA,aAAa;QACrB;MACF;MAEA,MAAMD,cAAc;IACtB,CAAC,SAAS;MACRjB,KAAK,CAACK,MAAM,CAAC,CAAEc,UAAU,GAAG,KAAK;MACjCX,WAAW,GAAG,KAAK;MACnBY,oBAAoB,CAACf,MAAM,CAAC;IAC9B;EACF;EAEA,OAAO,IAAIgB,OAAO,CAAC,CAACC,OAAO,EAAEC,MAAM,KAAK;IACtC,MAAMC,EAAsB,GAAG;MAC7BC,KAAK,EAAEA,CAAA,KAAM;QACXT,GAAG,CAAC,CAAC,CAACU,IAAI,CAACJ,OAAO,CAAC,CAACK,KAAK,CAACJ,MAAM,CAAC;MACnC;IACF,CAAC;IAEDvB,KAAK,CAACK,MAAM,CAAC,EAAEuB,KAAK,CAACC,IAAI,CAACL,EAAE,CAAC;IAC7BJ,oBAAoB,CAACf,MAAM,CAAC;EAC9B,CAAC,CAAC;AACJ,CAAC;AAED,SAASe,oBAAoBA,CAACf,MAAc,EAAE;EAC5C,IAAIL,KAAK,CAACK,MAAM,CAAC,IAAI,IAAI,EAAE,MAAME,KAAK,CAAC,0BAA0BF,MAAM,EAAE,CAAC;EAE1E,IAAIL,KAAK,CAACK,MAAM,CAAC,CAACc,UAAU,EAAE;IAC5B;IACA;EACF;EAEA,IAAInB,KAAK,CAACK,MAAM,CAAC,CAACuB,KAAK,CAACE,MAAM,GAAG,CAAC,EAAE;IAClC9B,KAAK,CAACK,MAAM,CAAC,CAACc,UAAU,GAAG,IAAI;IAE/B,MAAMK,EAAE,GAAGxB,KAAK,CAACK,MAAM,CAAC,CAACuB,KAAK,CAACG,KAAK,CAAC,CAAE;IACvCC,YAAY,CAAC,MAAM;MACjBR,EAAE,CAACC,KAAK,CAAC,CAAC;IACZ,CAAC,CAAC;EACJ;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["noop","onReactApplicationContextReady","undefined"],"
|
|
1
|
+
{"version":3,"names":["noop","onReactApplicationContextReady","undefined"],"sourceRoot":"../../../src","sources":["specs/NativeNitroSQLiteOnLoad.ios.ts"],"mappings":";;AAEA,OAAO,MAAMA,IAAkC,GAAG;EAChDC,8BAA8B,EAAEA,CAAA,KAAMC;AACxC,CAAC;AAED,eAAeF,IAAI","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["TurboModuleRegistry","getEnforcing"],"
|
|
1
|
+
{"version":3,"names":["TurboModuleRegistry","getEnforcing"],"sourceRoot":"../../../src","sources":["specs/NativeNitroSQLiteOnLoad.ts"],"mappings":";;AAAA,SAASA,mBAAmB,QAA0B,cAAc;AAMpE,eAAeA,mBAAmB,CAACC,YAAY,CAAO,qBAAqB,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["specs/NativeQueryResult.nitro.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["specs/NitroSQLite.nitro.ts"],"mappings":"","ignoreList":[]}
|
package/lib/module/typeORM.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
1
3
|
// _________ _______ ______ ____ _____ __ __ _____ _____
|
|
2
4
|
// |__ __\ \ / / __ \| ____/ __ \| __ \| \/ | /\ | __ \_ _|
|
|
3
5
|
// | | \ \_/ /| |__) | |__ | | | | |__) | \ / | / \ | |__) || |
|
|
@@ -5,7 +7,7 @@
|
|
|
5
7
|
// | | | | | | | |___| |__| | | \ \| | | | / ____ \| | _| |_
|
|
6
8
|
// |_| |_| |_| |______\____/|_| \_\_| |_| /_/ \_\_| |_____|
|
|
7
9
|
|
|
8
|
-
import * as Operations from
|
|
10
|
+
import * as Operations from "./operations/session.js";
|
|
9
11
|
/**
|
|
10
12
|
* DO NOT USE THIS! THIS IS MEANT FOR TYPEORM
|
|
11
13
|
* If you are looking for a convenience wrapper use `connect`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Operations","typeORMDriver","openDatabase","options","ok","fail","db","open","connection","executeSql","sql","params","okExecute","failExecute","result","executeAsync","e","transaction","fn","close","okClose","failClose","attach","dbNameToAttach","alias","location","callback","detach"],"
|
|
1
|
+
{"version":3,"names":["Operations","typeORMDriver","openDatabase","options","ok","fail","db","open","connection","executeSql","sql","params","okExecute","failExecute","result","executeAsync","e","transaction","fn","close","okClose","failClose","attach","dbNameToAttach","alias","location","callback","detach"],"sourceRoot":"../../src","sources":["typeORM.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;;AAQA,OAAO,KAAKA,UAAU,MAAM,yBAAsB;AAoBlD;AACA;AACA;AACA;AACA,OAAO,MAAMC,aAAa,GAAG;EAC3BC,YAAY,EAAEA,CACZC,OAGC,EACDC,EAA8C,EAC9CC,IAA2B,KACa;IACxC,IAAI;MACF,MAAMC,EAAE,GAAGN,UAAU,CAACO,IAAI,CAACJ,OAAO,CAAC;MAEnC,MAAMK,UAAwC,GAAG;QAC/CC,UAAU,EAAE,MAAAA,CACVC,GAAW,EACXC,MAAqC,EACrCC,SAA8C,EAC9CC,WAAkC,KAC/B;UACH,IAAI;YACF,MAAMC,MAAM,GAAG,MAAMR,EAAE,CAACS,YAAY,CAAUL,GAAG,EAAEC,MAAM,CAAC;YAC1DC,SAAS,CAACE,MAAM,CAAC;UACnB,CAAC,CAAC,OAAOE,CAAU,EAAE;YACnBH,WAAW,CAACG,CAAW,CAAC;UAC1B;QACF,CAAC;QACDC,WAAW,EACTC,EAAsC,IACpB;UAClB,OAAOZ,EAAE,CAACW,WAAW,CAACC,EAAE,CAAC;QAC3B,CAAC;QACDC,KAAK,EAAEA,CAACC,OAAmB,EAAEC,SAA+B,KAAK;UAC/D,IAAI;YACFf,EAAE,CAACa,KAAK,CAAC,CAAC;YACVC,OAAO,CAAC,CAAC;UACX,CAAC,CAAC,OAAOJ,CAAC,EAAE;YACVK,SAAS,CAACL,CAAC,CAAC;UACd;QACF,CAAC;QACDM,MAAM,EAAEA,CACNC,cAAsB,EACtBC,KAAa,EACbC,QAA4B,EAC5BC,QAAoB,KACjB;UACHpB,EAAE,CAACgB,MAAM,CAACC,cAAc,EAAEC,KAAK,EAAEC,QAAQ,CAAC;UAC1CC,QAAQ,CAAC,CAAC;QACZ,CAAC;QACDC,MAAM,EAAEA,CAACH,KAAa,EAAEE,QAAoB,KAAK;UAC/CpB,EAAE,CAACqB,MAAM,CAACH,KAAK,CAAC;UAChBE,QAAQ,CAAC,CAAC;QACZ;MACF,CAAC;MAEDtB,EAAE,CAACI,UAAU,CAAC;MAEd,OAAOA,UAAU;IACnB,CAAC,CAAC,OAAOQ,CAAU,EAAE;MACnBX,IAAI,CAACW,CAAW,CAAC;MAEjB,OAAO,IAAI;IACb;EACF;AACF,CAAC","ignoreList":[]}
|
package/lib/module/types.js
CHANGED
package/lib/module/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ColumnType"],"
|
|
1
|
+
{"version":3,"names":["ColumnType"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":";;AAmBA,WAAYA,UAAU,0BAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAVA,UAAU,CAAVA,UAAU;EAAA,OAAVA,UAAU;AAAA;;AAStB;AACA;AACA;;AA+CA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;;AAKA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/hybridobject.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/boxedhybridobject.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/nitromodulesproxy.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/turbomodule/nativenitromodules.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/nitromodules.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/anymap.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/constructor.d.ts","../../node_modules/react-native-nitro-modules/lib/typescript/index.d.ts","../src/types.ts","../src/specs/nativequeryresult.nitro.ts","../src/specs/nitrosqlite.nitro.ts","../src/nitro.ts","../src/operations/execute.ts","../src/operations/transaction.ts","../src/operations/session.ts","../../node_modules/react-native/types/modules/batchedbridge.d.ts","../../node_modules/react-native/types/modules/codegen.d.ts","../../node_modules/react-native/types/modules/devtools.d.ts","../../node_modules/react-native/types/modules/globals.d.ts","../../node_modules/react-native/types/modules/launchscreen.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/react-native/types/private/utilities.d.ts","../../node_modules/react-native/types/public/insets.d.ts","../../node_modules/react-native/types/public/reactnativetypes.d.ts","../../node_modules/react-native/libraries/types/coreeventtypes.d.ts","../../node_modules/react-native/types/public/reactnativerenderer.d.ts","../../node_modules/react-native/libraries/components/touchable/touchable.d.ts","../../node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","../../node_modules/react-native/libraries/components/view/viewproptypes.d.ts","../../node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","../../node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","../../node_modules/react-native/libraries/components/view/view.d.ts","../../node_modules/react-native/libraries/image/imageresizemode.d.ts","../../node_modules/react-native/libraries/image/imagesource.d.ts","../../node_modules/react-native/libraries/image/image.d.ts","../../node_modules/@react-native/virtualized-lists/lists/virtualizedlist.d.ts","../../node_modules/@react-native/virtualized-lists/index.d.ts","../../node_modules/react-native/libraries/lists/flatlist.d.ts","../../node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","../../node_modules/react-native/libraries/lists/sectionlist.d.ts","../../node_modules/react-native/libraries/text/text.d.ts","../../node_modules/react-native/libraries/animated/animated.d.ts","../../node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","../../node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","../../node_modules/react-native/libraries/stylesheet/processcolor.d.ts","../../node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","../../node_modules/react-native/libraries/alert/alert.d.ts","../../node_modules/react-native/libraries/animated/easing.d.ts","../../node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","../../node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","../../node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","../../node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","../../node_modules/react-native/libraries/appstate/appstate.d.ts","../../node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","../../node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","../../node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","../../node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","../../node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","../../node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","../../node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","../../node_modules/react-native/types/private/timermixin.d.ts","../../node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","../../node_modules/react-native/libraries/components/pressable/pressable.d.ts","../../node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","../../node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","../../node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","../../node_modules/react-native/libraries/components/switch/switch.d.ts","../../node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","../../node_modules/react-native/libraries/components/textinput/textinput.d.ts","../../node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","../../node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","../../node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","../../node_modules/react-native/libraries/components/button.d.ts","../../node_modules/react-native/libraries/core/registercallablemodule.d.ts","../../node_modules/react-native/libraries/devtoolssettings/devtoolssettingsmanager.d.ts","../../node_modules/react-native/libraries/interaction/interactionmanager.d.ts","../../node_modules/react-native/libraries/interaction/panresponder.d.ts","../../node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","../../node_modules/react-native/libraries/linking/linking.d.ts","../../node_modules/react-native/libraries/logbox/logbox.d.ts","../../node_modules/react-native/libraries/modal/modal.d.ts","../../node_modules/react-native/libraries/performance/systrace.d.ts","../../node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","../../node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","../../node_modules/react-native/libraries/utilities/iperformancelogger.d.ts","../../node_modules/react-native/libraries/reactnative/appregistry.d.ts","../../node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","../../node_modules/react-native/libraries/reactnative/roottag.d.ts","../../node_modules/react-native/libraries/reactnative/uimanager.d.ts","../../node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","../../node_modules/react-native/libraries/settings/settings.d.ts","../../node_modules/react-native/libraries/share/share.d.ts","../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","../../node_modules/react-native/libraries/turbomodule/rctexport.d.ts","../../node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","../../node_modules/react-native/libraries/utilities/appearance.d.ts","../../node_modules/react-native/libraries/utilities/backhandler.d.ts","../../node_modules/react-native/libraries/utilities/devsettings.d.ts","../../node_modules/react-native/libraries/utilities/dimensions.d.ts","../../node_modules/react-native/libraries/utilities/pixelratio.d.ts","../../node_modules/react-native/libraries/utilities/platform.d.ts","../../node_modules/react-native/libraries/vibration/vibration.d.ts","../../node_modules/react-native/libraries/yellowbox/yellowboxdeprecated.d.ts","../../node_modules/react-native/libraries/vendor/core/errorutils.d.ts","../../node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","../../node_modules/react-native/types/index.d.ts","../src/specs/nativenitrosqliteonload.ts","../src/typeorm.ts","../src/index.ts","../src/specs/nativenitrosqliteonload.ios.ts","../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/ts5.6/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"90538ea42b1b8f3ac4ec7306a0a27ba7afee541df9684991e87202ffc9a6beb7","impliedFormat":1},{"version":"e5d121b23622c120b8e60e5efccd1436d9212b89f4cb180eb330f7d00cbe0e5d","impliedFormat":1},{"version":"36b6eabd3267624fa7b13a790877fc05eec7db80154aabb57f9c031c066189e9","impliedFormat":1},{"version":"c071991397ba57b75b07574dd2d11efe990aea9c59136423d149ce6c3f301eea","affectsGlobalScope":true,"impliedFormat":1},{"version":"edac49118a9eb46d842c8d24a567e31f0290ecdf8d44a5fc78da3112c2fdda54","impliedFormat":1},{"version":"5d6084b922921ea84fce8617204272f5fb30ef8bedd91da18102c160fcf591aa","impliedFormat":1},{"version":"a94e72e6c01437b8fa4f74fe9f192a8cc62b76e4c67730ca240f8db734f7c75e","impliedFormat":1},{"version":"ab8b3b5fdcd840447d69c2dd1b62b0104e7f4a6242e8af92d26433fa3dd9ff39","impliedFormat":1},{"version":"bad6bdff7cf4720e5cf1ea801cdc2e3cfd5bd735d1daddc4c30abb7fc24f25a3","signature":"f857292778fb7e1679b20e4b5a899d341f3f6251c89ec9a0937b634e0a89190f","impliedFormat":1},{"version":"1782890750928a68cb2a22995f533f5ce7831cbf6fef354cc80326b9ef317d07","signature":"3f1148d1c8b734349250e67947cfc0c0b69e4a29c12c982f8f53f4e876cd64d5","impliedFormat":1},{"version":"aa34ffbcceadccddb7b6ae21592536240b4dba4d15a1b59b76cb256a1d0e7649","signature":"67231995685912e74f95cfadb08a33c5337597e43dea1c2b0d594bc007142cb3","impliedFormat":1},{"version":"c21ee51738dad3e8f0c2623a59b9b98738d7e6a045bcf2a2cdde4325b54d8e28","signature":"7be04278b5dafd1b49eb83445aa6a4f201dc28f870d48d545f7ac72080343ed8","impliedFormat":1},{"version":"0c961a6d9bc99fdba77740cbab3d828b03205248f12531a2db331e6bc91bc04d","signature":"121a5e7519faace36ff9684a820107ecd3e31427e38e4178e37f3dd037e6864e","impliedFormat":1},{"version":"5d4605376afe6b0db231668c4089e3c7530114a314479e9e8729f4a73fc69b14","signature":"dff99e3000b3fdc3bfbb03221b79c6ae810475e7bea876e6b7cd05809c89577e","impliedFormat":1},{"version":"128785e006dfd2ec6ea1a25a0d76d92f2caa308e130eda4241e5f80309d4a8b6","signature":"99b232e5ca28a50f195db9ef987f5ca89291830c520ec2bcf1f06631184bdde0","impliedFormat":1},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b47c8df863142d9383f948c987e1ebd25ade3867aeb4ae60e9d6009035dfe46","impliedFormat":1},{"version":"b8dd45aa6e099a5f564edcabfe8114096b096eb1ffaa343dd6f3fe73f1a6e85e","impliedFormat":1},{"version":"38e8ac2d182bd3f85d28de9bdf1386c19a319f9c0280aa43960204c353b07878","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc4db28f3510994e45bbabba1ee33e9a0d27dab33d4c8a5844cee8c85438a058","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"78e9a9dec8fcd712a2a775d8b67bf7d166c2fb06644bba3132f33dbef06db781","affectsGlobalScope":true,"impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"53390c21d095fb54e6c0b8351cbf7f4008f096ade9717bc5ee75e340bc3dfa30","impliedFormat":1},{"version":"71493b2c538dffa1e3e968b55b70984b542cc6e488012850865f72768ff32630","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"8b94ac8c460c9a2578ca3308fecfcf034e21af89e9c287c97710e9717ffae133","impliedFormat":1},{"version":"a7266bcc42f8ec0f31f319c2dd8100411b4d7b8a534235cb00a719f1c8a2a42e","impliedFormat":1},{"version":"3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","impliedFormat":1},{"version":"a1e3cda52746919d2a95784ce0b1b9ffa22052209aab5f54e079e7b920f5339e","impliedFormat":1},{"version":"1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","impliedFormat":1},{"version":"f387a979388291b2688ba0f604e3ae78874f5f777616b448d34109762a4f05a9","impliedFormat":1},{"version":"cae0fb826d8a88749189b8a924dfcb5d3ad629e3bc5ec934195fbd83fa48b068","impliedFormat":1},{"version":"376b8482d1224aa83f4521590672304e30ba847d0b87b9e1a62b2e60a5c788f2","impliedFormat":1},{"version":"488242948cc48ee6413a159c60bcaf70de15db01364741737a962662f1a127a5","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"b326790c20287ad266b5fcd0c388e2a83320a24747856727dcb70c7bbd489dfc","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"60526d9010e8ccb2a76a59821061463464c3acd5bc7a50320df6d2e4e0d6e4f7","impliedFormat":1},{"version":"562cce1c8e14e8d5a55d1931cb1848b1df49cc7b1024356d56f3550ed57ad67f","impliedFormat":1},{"version":"623fa4efc706bb9956d0ae94b13321c6617655bf8ebdb270c9792bb398f82e44","impliedFormat":1},{"version":"f20c96192f5841cbf982d2c1989c1e9fdef41c4a9db7543edff131007bf1dbfb","impliedFormat":1},{"version":"79d6871ce0da76f4c865a58daa509d5c8a10545d510b804501daa5d0626e7028","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"442856ad0787bc213f659e134c204ad0d502179aa216bf700faefb5572208358","impliedFormat":1},{"version":"443702ca8101ef0adc827c2cc530ca93cf98d41e36ce4399efb9bc833ad9cb62","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"35db266b474b3b9dfd0bc7d25dff3926cc227de45394262f3783b8b174182a16","impliedFormat":1},{"version":"8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"8387fa3287992c71702756fe6ecea68e2f8f2c5aa434493e3afe4817dd4a4787","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"fff527e2567a24dd634a30268f1aa8a220315fed9c513d70ee872e54f67f27f3","impliedFormat":1},{"version":"5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","impliedFormat":1},{"version":"d1d78d1ef0f21ac77cdc436d2a4d56592453a8a2e51af2040ec9a69a5d35e4de","impliedFormat":1},{"version":"bc55b91274e43f88030c9cfe2c4217fae57894c3c302173ab6e9743c29484e3d","impliedFormat":1},{"version":"8bb22f70bfd7bf186631fa565c9202ee6a1009ffb961197b7d092b5a1e1d56b1","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"6c28f4f95aaa6c3c8b1a0681c29f446b0bf0ed1aa5aa11e8b2ca6fc9e066e9f2","impliedFormat":1},{"version":"64ce8e260a1362d4cadd6c753581a912a9869d4a53ec6e733dc61018f9250f5d","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"b96364fcb0c9d521e7618346b00acf3fe16ccf9368404ceac1658edee7b6332c","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"7889f4932dfa7b1126cdc17914d85d80b5860cc3d62ba329494007e8aab45430","impliedFormat":1},{"version":"d9725ef7f60a791668f7fb808eb90b1789feaaef989a686fefc0f7546a51dcdc","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"8ebb6f0603bf481e893311c49e4d2e2061413c51b9ba5898cd9b0a01f5ef19c8","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"38faab59a79924ce5eb4f2f3e7e7db91e74d425b4183f908cc014be213f0d971","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"cdca67bd898deff48e3acb05fb44500b5ebce16c26a8ec99dee1522cf9879795","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"869073d7523e75f45bd65b2072865c60002d5e0cbd3d17831e999cf011312778","impliedFormat":1},{"version":"bc7b5906a6ce6c5744a640c314e020856be6c50a693e77dc12aff2d77b12ca76","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"e2ddb2877f5a841866f4fc772a601b58e90ac8399b35f9a06535be81b8e08b47","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"5bc29a9918feba88816b71e32960cf11243b77b76630e9e87cad961e5e1d31d0","impliedFormat":1},{"version":"341ffa358628577f490f128f3880c01d50ef31412d1be012bb1cd959b0a383ea","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"52e8612d284467b4417143ca8fe54d30145fdfc3815f5b5ea9b14b677f422be5","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"a0259c6054e3ed2c5fb705b6638e384446cbcdf7fd2072c659b43bd56e214b9a","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"6466cbb0aa561e1c1a87850a1f066692f1692a0a9513c508a3886cd66a62dae8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b794e0da52e2653601a9c6ce0bde36c4b22fe28e8079bf696dab7c2d73947ae9","signature":"4e7168ebcf75ebc1a5cc0e6f1cb0a6afe095c5082991932d894c7c5187f75211","impliedFormat":1},{"version":"c7dd96c7c234ed616c944d88ed97ccdf1eba5579f190e0de6d9b00d6b24113ea","signature":"8328fd0bed2dbace9dd154ab045cba44f1a03779ff8cb8c665c55e84db46ca81","impliedFormat":1},{"version":"d717f3d92aaea6dfc0ee6f8f86904443a05c75f03315567c897f39087f43f257","signature":"cbc3b9d843f2eb86898cd82045e9d4d5f79d238fae2be9cace74aa51e1ef77bb","impliedFormat":1},{"version":"cdfc9396b114aec31e7f25d7483dcab41f004fe135824cf6c6ca6fcd34507c40","signature":"d334ebb057c1be6ee360b74c8b2bed0f4214568b1d4e3ca8d06d9caf5080ec27","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"bb2cd9339d0201e7e78ccb6ff2f71aac103934bf35eaaa37e139ac2b68af0db8","affectsGlobalScope":true,"impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"c956ba45704d4a97f7a96923a307a6203bc0e7c4c532930d4c8ca261eaaff32a","impliedFormat":1},{"version":"ab0e88d33ccf15d8b3c891038b5a16094b0dd7e860ab0e2ba08da4384afce02b","impliedFormat":1},{"version":"954580f86c8e2a4abd5dcd1bcdf1a4c7e012495f1c39e058dc738bc93024642a","impliedFormat":1},{"version":"fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","impliedFormat":1},{"version":"8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b56de03a9f79f3fc1ac3a01a0d63bb48cc15f95a6b95549b4fb420e6030973","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"c86b9afa9b39b12db8e877d23b48888d80f26e1fe72a95f58552746a6e1fa4fe","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","impliedFormat":1},{"version":"07b9d3b7204d931acc29269c98ac3aac87ebcba6e05141552d42a4c17f895aa4","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"1425f76ac97ce8617d1e2fa79e9a14e0fd1cfdaa155e13d4e92403a468177bc2","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","impliedFormat":1},{"version":"125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"18f5c7c4ad71748cffdd42e829398acdfd2d150a887e5f07aae4f2acab68e71b","affectsGlobalScope":true,"impliedFormat":1},{"version":"72ed3074450a4a315063278f046637afdeea90aa72b2292a7976958ceafc344a","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","impliedFormat":1},{"version":"6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2b6058d3dd78c1b4dafc97083c5d44bdfbf4155194044bd17b8fcca554e766a","impliedFormat":1}],"root":[[80,86],[184,187]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":2,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../src","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[110,189,232],[95,183,189,232],[189,190,232],[189,231,232],[189,232,237,267],[189,232,233,238,244,245,252,264,275],[189,232,233,234,244,252],[189,232,235,276],[189,232,236,237,245,253],[189,232,237,264,272],[189,232,238,240,244,252],[189,231,232,239],[189,232,240,241],[189,232,244],[189,232,242,244],[189,231,232,244],[189,232,244,245,246,264,275],[189,232,244,245,246,259,264,267],[189,229,232,280],[189,232],[189,229,232,240,244,247,252,264,275],[189,232,244,245,247,248,252,264,272,275],[189,232,247,249,264,272,275],[189,232,244,250],[189,232,251,275,280],[189,232,240,244,252,264],[189,232,253],[189,232,254],[189,231,232,255],[189,190,191,231,232,233,234,235,236,237,238,239,240,241,242,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281],[189,232,257],[189,232,258],[189,232,244,259,260],[189,232,259,261,276,278],[189,232,244,264,265,266,267],[189,232,264,266],[189,232,264,265],[189,232,267],[189,232,268],[189,190,232,264],[189,232,244,270,271],[189,232,270,271],[189,232,237,252,264,272],[189,232,273],[232],[188,189,190,191,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282],[189,232,252,274],[189,232,247,258,275],[189,232,237,276],[189,232,264,277],[189,232,251,278],[189,232,279],[189,232,237,244,246,255,264,275,278,280],[189,232,264,281],[92,93,94,189,232],[72,189,232],[72,76,77,78,189,232],[75,189,232],[72,73,189,232],[74,189,232],[118,119,189,232],[95,99,105,106,109,112,114,115,118,189,232],[116,189,232],[126,189,232],[95,98,124,189,232],[95,96,98,99,103,117,118,189,232],[95,118,147,148,189,232],[95,96,98,99,103,118,189,232],[124,133,189,232],[95,96,103,117,118,135,189,232],[95,97,99,102,103,106,117,118,189,232],[95,96,98,103,118,189,232],[95,96,98,103,189,232],[95,96,97,99,101,103,104,117,118,189,232],[95,118,189,232],[95,117,118,189,232],[95,96,98,99,102,103,117,118,124,135,189,232],[95,97,99,189,232],[95,106,117,118,145,189,232],[95,96,101,118,145,147,189,232],[95,106,145,189,232],[95,96,97,99,101,102,117,118,135,189,232],[99,189,232],[95,97,99,100,101,102,117,118,189,232],[124,189,232],[125,189,232],[95,96,97,98,99,102,107,108,117,118,189,232],[99,100,189,232],[95,105,106,111,117,118,189,232],[95,105,111,113,117,118,189,232],[95,99,103,189,232],[95,117,161,189,232],[95,189,232],[98,189,232],[95,98,189,232],[118,189,232],[117,189,232],[107,116,118,189,232],[95,96,98,99,102,117,118,189,232],[171,189,232],[133,189,232],[87,88,89,90,91,97,98,99,100,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,189,232],[183,189,232],[89,189,232],[189,201,205,232,275],[189,201,232,264,275],[189,196,232],[189,198,201,232,272,275],[189,232,252,272],[189,232,283],[189,196,232,283],[189,198,201,232,252,275],[189,193,194,197,200,232,244,264,275],[189,201,208,232],[189,193,199,232],[189,201,222,223,232],[189,197,201,232,267,275,283],[189,222,232,283],[189,195,196,232,283],[189,201,232],[189,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,232],[189,201,216,232],[189,201,208,209,232],[189,199,201,209,210,232],[189,200,232],[189,193,196,201,232],[189,201,205,209,210,232],[189,205,232],[189,199,201,204,232,275],[189,193,198,201,208,232],[189,232,264],[189,196,201,222,232,280,283],[80,83,84,85,86,184,185,189,232],[79,82,85,189,232],[80,81,83,189,232],[80,83,84,85,189,232],[80,83,84,189,232],[184,189,232],[79,80,189,232],[79,80,81,189,232],[80,86,189,232]],"referencedMap":[[111,1],[110,2],[190,3],[191,3],[231,4],[232,5],[233,6],[234,7],[235,8],[236,9],[237,10],[238,11],[239,12],[240,13],[241,13],[243,14],[242,15],[244,16],[245,17],[246,18],[230,19],[282,20],[247,21],[248,22],[249,23],[250,24],[251,25],[252,26],[253,27],[254,28],[255,29],[256,30],[257,31],[258,32],[259,33],[260,33],[261,34],[262,20],[263,20],[264,35],[266,36],[265,37],[267,38],[268,39],[269,40],[270,41],[271,42],[272,43],[273,44],[189,45],[188,20],[283,46],[274,47],[275,48],[276,49],[277,50],[278,51],[279,52],[280,53],[281,54],[94,20],[92,20],[95,55],[192,20],[93,20],[77,20],[73,56],[78,56],[72,20],[79,57],[76,58],[74,59],[75,60],[120,61],[121,20],[116,62],[122,20],[123,63],[127,64],[128,20],[129,65],[130,66],[149,67],[131,20],[132,68],[134,69],[136,70],[137,71],[138,72],[104,72],[139,73],[105,74],[140,75],[141,66],[142,76],[143,77],[144,20],[101,78],[146,79],[148,80],[147,81],[145,82],[106,73],[102,83],[103,84],[150,20],[151,20],[133,85],[125,85],[126,86],[109,87],[107,20],[108,20],[152,85],[153,88],[154,20],[155,69],[112,89],[114,90],[156,20],[157,91],[158,20],[159,20],[160,20],[162,92],[163,20],[113,93],[166,94],[164,93],[165,95],[167,20],[168,96],[170,96],[169,96],[119,96],[118,97],[117,98],[115,99],[171,20],[172,100],[99,95],[173,64],[174,64],[175,101],[176,85],[161,20],[177,20],[178,20],[181,20],[124,20],[179,20],[180,93],[183,102],[87,20],[88,103],[89,104],[90,20],[91,20],[135,20],[96,20],[182,103],[97,20],[100,83],[98,93],[70,20],[71,20],[13,20],[12,20],[2,20],[14,20],[15,20],[16,20],[17,20],[18,20],[19,20],[20,20],[21,20],[3,20],[22,20],[4,20],[23,20],[27,20],[24,20],[25,20],[26,20],[28,20],[29,20],[30,20],[5,20],[31,20],[32,20],[33,20],[34,20],[6,20],[38,20],[35,20],[36,20],[37,20],[39,20],[7,20],[40,20],[45,20],[46,20],[41,20],[42,20],[43,20],[44,20],[8,20],[50,20],[47,20],[48,20],[49,20],[51,20],[9,20],[52,20],[53,20],[54,20],[57,20],[55,20],[56,20],[58,20],[59,20],[10,20],[60,20],[1,20],[61,20],[62,20],[11,20],[67,20],[64,20],[63,20],[68,20],[66,20],[69,20],[65,20],[208,105],[218,106],[207,105],[228,107],[199,108],[198,109],[227,110],[221,111],[226,112],[201,113],[215,114],[200,115],[224,116],[196,117],[195,110],[225,118],[197,119],[202,120],[203,20],[206,120],[193,20],[229,121],[219,122],[210,123],[211,124],[213,125],[209,126],[212,127],[222,110],[204,128],[205,129],[214,130],[194,131],[217,122],[216,120],[220,20],[223,132],[186,133],[83,134],[84,135],[86,136],[85,137],[187,138],[184,103],[81,139],[82,140],[185,141],[80,20]],"latestChangedDtsFile":"./typescript/specs/NativeNitroSQLiteOnLoad.ios.d.ts"},"version":"5.5.4"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAE3C,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAE5D,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAA;AAEzC,eAAO,MAAM,aAAa,eAExB,CAAA;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;CAUvB,CAAA;AAED,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nitro.d.ts","sourceRoot":"","sources":["../../../src/nitro.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,IAAI,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC/E,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAA;AAElE,eAAO,MAAM,iBAAiB,iBACmC,CAAA;AAEjE,eAAO,MAAM,KAAK,EAAE,MAAM,CACxB,MAAM,EACN;IAAE,KAAK,EAAE,kBAAkB,EAAE,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE,CAChD,CAAA"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { QueryResult, SQLiteItem, SQLiteQueryParams } from '../types';
|
|
2
2
|
export declare function execute<Data extends SQLiteItem = never>(dbName: string, query: string, params?: SQLiteQueryParams): QueryResult<Data>;
|
|
3
3
|
export declare function executeAsync<Data extends SQLiteItem = never>(dbName: string, query: string, params?: SQLiteQueryParams): Promise<QueryResult<Data>>;
|
|
4
|
+
//# sourceMappingURL=execute.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.d.ts","sourceRoot":"","sources":["../../../../src/operations/execute.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAE1E,wBAAgB,OAAO,CAAC,IAAI,SAAS,UAAU,GAAG,KAAK,EACrD,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,WAAW,CAAC,IAAI,CAAC,CAInB;AAED,wBAAsB,YAAY,CAAC,IAAI,SAAS,UAAU,GAAG,KAAK,EAChE,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAQ5B"}
|
|
@@ -2,3 +2,4 @@ import type { NitroSQLiteConnection, NitroSQLiteConnectionOptions } from '../typ
|
|
|
2
2
|
export declare function open(options: NitroSQLiteConnectionOptions): NitroSQLiteConnection;
|
|
3
3
|
export declare function openDb(dbName: string, location?: string): void;
|
|
4
4
|
export declare function close(dbName: string): void;
|
|
5
|
+
//# sourceMappingURL=session.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"session.d.ts","sourceRoot":"","sources":["../../../../src/operations/session.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAEV,qBAAqB,EACrB,4BAA4B,EAK7B,MAAM,UAAU,CAAA;AAGjB,wBAAgB,IAAI,CAClB,OAAO,EAAE,4BAA4B,GACpC,qBAAqB,CA4BvB;AAED,wBAAgB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,QAOvD;AAED,wBAAgB,KAAK,CAAC,MAAM,EAAE,MAAM,QAGnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transaction.d.ts","sourceRoot":"","sources":["../../../../src/operations/transaction.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAIV,WAAW,EACZ,MAAM,UAAU,CAAA;AAGjB,MAAM,WAAW,kBAAkB;IAUjC,KAAK,EAAE,MAAM,IAAI,CAAA;CAClB;AAED,eAAO,MAAM,WAAW,WACd,MAAM,MACV,CAAC,EAAE,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,KAC5C,OAAO,CAAC,IAAI,CA4Fd,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"commonjs"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeNitroSQLiteOnLoad.d.ts","sourceRoot":"","sources":["../../../../src/specs/NativeNitroSQLiteOnLoad.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,WAAW,EAAE,MAAM,cAAc,CAAA;AAEpE,MAAM,WAAW,IAAK,SAAQ,WAAW;IACvC,8BAA8B,CAAC,QAAQ,EAAE,MAAM,IAAI,GAAG,IAAI,CAAA;CAC3D;;AAED,wBAA4E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeNitroSQLiteOnLoad.ios.d.ts","sourceRoot":"","sources":["../../../../src/specs/NativeNitroSQLiteOnLoad.ios.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,IAAI,4BAA4B,EAAE,MAAM,2BAA2B,CAAA;AAErF,eAAO,MAAM,IAAI,EAAE,4BAElB,CAAA;AAED,eAAe,IAAI,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeQueryResult.nitro.d.ts","sourceRoot":"","sources":["../../../../src/specs/NativeQueryResult.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAEvD;;;;;;;;;GASG;AACH,MAAM,WAAW,iBACf,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IACpD,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B,oBAAoB;IACpB,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAA;IACpC,qBAAqB;IACrB,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,yBAAyB,CAAC,CAAA;CAC9D;AAED;;;;GAIG;AAIH,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,EAAE,CAAA;AAI9D,MAAM,WAAW,yBAAyB;IACxC,wDAAwD;IACxD,IAAI,EAAE,MAAM,CAAA;IACZ,uLAAuL;IACvL,IAAI,EAAE,UAAU,CAAA;IAChB,oDAAoD;IACpD,KAAK,EAAE,MAAM,CAAA;CACd"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NitroSQLite.nitro.d.ts","sourceRoot":"","sources":["../../../../src/specs/NitroSQLite.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,UAAU,CAAA;AACjB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAA;AAElE,MAAM,WAAW,WACf,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IACpD,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC7C,KAAK,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC7C,MAAM,CACJ,UAAU,EAAE,MAAM,EAClB,cAAc,EAAE,MAAM,EACtB,KAAK,EAAE,MAAM,EACb,QAAQ,CAAC,EAAE,MAAM,GAChB,IAAI,CAAA;IACP,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IAC/C,OAAO,CACL,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,iBAAiB,CAAA;IACpB,YAAY,CACV,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,OAAO,CAAC,iBAAiB,CAAC,CAAA;IAC7B,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,iBAAiB,EAAE,GAAG,gBAAgB,CAAA;IAC7E,iBAAiB,CACf,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,iBAAiB,EAAE,GAC5B,OAAO,CAAC,gBAAgB,CAAC,CAAA;IAC5B,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,cAAc,CAAA;IAC1D,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;CACzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typeORM.d.ts","sourceRoot":"","sources":["../../../src/typeORM.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,WAAW,EACX,UAAU,EACV,iBAAiB,EACjB,WAAW,EACZ,MAAM,SAAS,CAAA;AAGhB,UAAU,4BAA4B;IACpC,UAAU,EAAE,CAAC,OAAO,SAAS,UAAU,GAAG,KAAK,EAC7C,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,iBAAiB,GAAG,SAAS,EACrC,SAAS,EAAE,CAAC,GAAG,EAAE,WAAW,CAAC,OAAO,CAAC,KAAK,IAAI,EAC9C,WAAW,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,KAC/B,OAAO,CAAC,IAAI,CAAC,CAAA;IAClB,WAAW,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;IACtE,KAAK,EAAE,CAAC,OAAO,EAAE,MAAM,IAAI,EAAE,SAAS,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,KAAK,IAAI,CAAA;IACrE,MAAM,EAAE,CACN,cAAc,EAAE,MAAM,EACtB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,GAAG,SAAS,EAC5B,QAAQ,EAAE,MAAM,IAAI,KACjB,IAAI,CAAA;IACT,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,IAAI,KAAK,IAAI,CAAA;CACtD;AAED;;;GAGG;AACH,eAAO,MAAM,aAAa;4BAEb;QACP,IAAI,EAAE,MAAM,CAAA;QACZ,QAAQ,CAAC,EAAE,MAAM,CAAA;KAClB,MACG,CAAC,EAAE,EAAE,4BAA4B,KAAK,IAAI,QACxC,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,KAC1B,4BAA4B,GAAG,IAAI;CAuDvC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { open } from './operations/session';
|
|
2
|
+
import { execute, executeAsync } from './operations/execute';
|
|
3
|
+
export * from './types';
|
|
4
|
+
export { typeORMDriver } from './typeORM';
|
|
5
|
+
export declare const onInitialized: Promise<void>;
|
|
6
|
+
export declare const NitroSQLite: {
|
|
7
|
+
native: import("./specs/NitroSQLite.nitro").NitroSQLite;
|
|
8
|
+
onInitialized: Promise<void>;
|
|
9
|
+
open: typeof open;
|
|
10
|
+
transaction: (dbName: string, fn: (tx: import("./types").Transaction) => Promise<void> | void) => Promise<void>;
|
|
11
|
+
execute: typeof execute;
|
|
12
|
+
executeAsync: typeof executeAsync;
|
|
13
|
+
close(dbName: string): void;
|
|
14
|
+
drop(dbName: string, location?: string): void;
|
|
15
|
+
attach(mainDbName: string, dbNameToAttach: string, alias: string, location?: string): void;
|
|
16
|
+
detach(mainDbName: string, alias: string): void;
|
|
17
|
+
executeBatch(dbName: string, commands: import("./types").BatchQueryCommand[]): import("./types").BatchQueryResult;
|
|
18
|
+
executeBatchAsync(dbName: string, commands: import("./types").BatchQueryCommand[]): Promise<import("./types").BatchQueryResult>;
|
|
19
|
+
loadFile(dbName: string, location: string): import("./types").FileLoadResult;
|
|
20
|
+
loadFileAsync(dbName: string, location: string): Promise<import("./types").FileLoadResult>;
|
|
21
|
+
__type?: string;
|
|
22
|
+
name: string;
|
|
23
|
+
toString(): string;
|
|
24
|
+
equals(other: import("react-native-nitro-modules").HybridObject<{
|
|
25
|
+
ios: "c++";
|
|
26
|
+
android: "c++";
|
|
27
|
+
}>): boolean;
|
|
28
|
+
dispose(): void;
|
|
29
|
+
};
|
|
30
|
+
export { open } from './operations/session';
|
|
31
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAE3C,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAE5D,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAA;AAEzC,eAAO,MAAM,aAAa,eAExB,CAAA;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;CAUvB,CAAA;AAED,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { NitroSQLite as NitroSQLiteSpec } from './specs/NitroSQLite.nitro';
|
|
2
|
+
import type { PendingTransaction } from './operations/transaction';
|
|
3
|
+
export declare const HybridNitroSQLite: NitroSQLiteSpec;
|
|
4
|
+
export declare const locks: Record<string, {
|
|
5
|
+
queue: PendingTransaction[];
|
|
6
|
+
inProgress: boolean;
|
|
7
|
+
}>;
|
|
8
|
+
//# sourceMappingURL=nitro.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nitro.d.ts","sourceRoot":"","sources":["../../../src/nitro.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,IAAI,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAC/E,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAA;AAElE,eAAO,MAAM,iBAAiB,iBACmC,CAAA;AAEjE,eAAO,MAAM,KAAK,EAAE,MAAM,CACxB,MAAM,EACN;IAAE,KAAK,EAAE,kBAAkB,EAAE,CAAC;IAAC,UAAU,EAAE,OAAO,CAAA;CAAE,CAChD,CAAA"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { QueryResult, SQLiteItem, SQLiteQueryParams } from '../types';
|
|
2
|
+
export declare function execute<Data extends SQLiteItem = never>(dbName: string, query: string, params?: SQLiteQueryParams): QueryResult<Data>;
|
|
3
|
+
export declare function executeAsync<Data extends SQLiteItem = never>(dbName: string, query: string, params?: SQLiteQueryParams): Promise<QueryResult<Data>>;
|
|
4
|
+
//# sourceMappingURL=execute.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.d.ts","sourceRoot":"","sources":["../../../../src/operations/execute.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAE1E,wBAAgB,OAAO,CAAC,IAAI,SAAS,UAAU,GAAG,KAAK,EACrD,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,WAAW,CAAC,IAAI,CAAC,CAInB;AAED,wBAAsB,YAAY,CAAC,IAAI,SAAS,UAAU,GAAG,KAAK,EAChE,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,iBAAiB,GACzB,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAQ5B"}
|