@powersync/service-types 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,147 @@
1
+ import * as t from 'ts-codec';
2
+
3
+ /**
4
+ * Users might specify ports as strings if using YAML custom tag environment substitutions
5
+ */
6
+ const portCodec = t.codec<number, number | string>(
7
+ 'Port',
8
+ (value) => value,
9
+ (value) => (typeof value == 'number' ? value : parseInt(value))
10
+ );
11
+
12
+ /**
13
+ * This gets used whenever generating a JSON schema
14
+ */
15
+ export const portParser = {
16
+ tag: portCodec._tag,
17
+ parse: () => ({
18
+ anyOf: [{ type: 'number' }, { type: 'string' }]
19
+ })
20
+ };
21
+
22
+ export const postgresConnection = t.object({
23
+ type: t.literal('postgresql'),
24
+ /** Unique identifier for the connection - optional when a single connection is present. */
25
+ id: t.string.optional(),
26
+ /** Tag used as reference in sync rules. Defaults to "default". Does not have to be unique. */
27
+ tag: t.string.optional(),
28
+ uri: t.string.optional(),
29
+ hostname: t.string.optional(),
30
+ port: portCodec.optional(),
31
+ username: t.string.optional(),
32
+ password: t.string.optional(),
33
+ database: t.string.optional(),
34
+
35
+ /** Defaults to verify-full */
36
+ sslmode: t.literal('verify-full').or(t.literal('verify-ca')).or(t.literal('disable')).optional(),
37
+ /** Required for verify-ca, optional for verify-full */
38
+ cacert: t.string.optional(),
39
+
40
+ client_certificate: t.string.optional(),
41
+ client_private_key: t.string.optional(),
42
+
43
+ /** Expose database credentials */
44
+ demo_database: t.boolean.optional(),
45
+ /** Expose "execute-sql" */
46
+ debug_api: t.boolean.optional(),
47
+
48
+ /**
49
+ * Prefix for the slot name. Defaults to "powersync_"
50
+ */
51
+ slot_name_prefix: t.string.optional()
52
+ });
53
+
54
+ export type PostgresConnection = t.Decoded<typeof postgresConnection>;
55
+
56
+ export const jwkRSA = t.object({
57
+ kty: t.literal('RSA'),
58
+ kid: t.string,
59
+ n: t.string,
60
+ e: t.string,
61
+ alg: t.literal('RS256').or(t.literal('RS384')).or(t.literal('RS512')).optional(),
62
+ use: t.string.optional()
63
+ });
64
+
65
+ export const jwkHmac = t.object({
66
+ kty: t.literal('oct'),
67
+ /**
68
+ * undefined kid indicates it can match any JWT, with or without a kid.
69
+ * Use a kid wherever possible.
70
+ */
71
+ kid: t.string.optional(),
72
+ k: t.string,
73
+ alg: t.literal('HS256').or(t.literal('HS384')).or(t.literal('HS512')),
74
+ use: t.string.optional()
75
+ });
76
+
77
+ const jwk = t.union(jwkRSA, jwkHmac);
78
+
79
+ export const strictJwks = t.object({
80
+ keys: t.array(jwk)
81
+ });
82
+
83
+ export type StrictJwk = t.Decoded<typeof jwk>;
84
+
85
+ export const storageConfig = t.object({
86
+ type: t.literal('mongodb'),
87
+ uri: t.string,
88
+ database: t.string.optional(),
89
+ username: t.string.optional(),
90
+ password: t.string.optional()
91
+ });
92
+
93
+ export type StorageConfig = t.Decoded<typeof storageConfig>;
94
+
95
+ export const powerSyncConfig = t.object({
96
+ replication: t
97
+ .object({
98
+ connections: t.array(postgresConnection).optional()
99
+ })
100
+ .optional(),
101
+
102
+ dev: t
103
+ .object({
104
+ demo_auth: t.boolean.optional(),
105
+ demo_password: t.string.optional(),
106
+ crud_api: t.boolean.optional(),
107
+ demo_client: t.boolean.optional()
108
+ })
109
+ .optional(),
110
+
111
+ client_auth: t
112
+ .object({
113
+ jwks_uri: t.string.or(t.array(t.string)).optional(),
114
+ block_local_jwks: t.boolean.optional(),
115
+ jwks: strictJwks.optional(),
116
+ supabase: t.boolean.optional(),
117
+ audience: t.array(t.string).optional()
118
+ })
119
+ .optional(),
120
+
121
+ api: t
122
+ .object({
123
+ tokens: t.array(t.string).optional()
124
+ })
125
+ .optional(),
126
+
127
+ storage: storageConfig,
128
+
129
+ port: portCodec.optional(),
130
+ sync_rules: t
131
+ .object({
132
+ path: t.string.optional(),
133
+ content: t.string.optional()
134
+ })
135
+ .optional(),
136
+
137
+ metadata: t.record(t.string).optional(),
138
+
139
+ migrations: t
140
+ .object({
141
+ disable_auto_migration: t.boolean.optional()
142
+ })
143
+ .optional()
144
+ });
145
+
146
+ export type PowerSyncConfig = t.Decoded<typeof powerSyncConfig>;
147
+ export type SerializedPowerSyncConfig = t.Encoded<typeof powerSyncConfig>;
@@ -0,0 +1,114 @@
1
+ import { PostgresConnection } from './PowerSyncConfig.js';
2
+ import * as urijs from 'uri-js';
3
+
4
+ /**
5
+ * Validate and normalize connection options.
6
+ *
7
+ * Returns destructured options.
8
+ */
9
+ export function normalizeConnection(options: PostgresConnection): NormalizedPostgresConnection {
10
+ let uri: urijs.URIComponents;
11
+ if (options.uri) {
12
+ uri = urijs.parse(options.uri);
13
+ if (uri.scheme != 'postgresql' && uri.scheme != 'postgres') {
14
+ `Invalid URI - protocol must be postgresql, got ${uri.scheme}`;
15
+ } else if (uri.scheme != 'postgresql') {
16
+ uri.scheme = 'postgresql';
17
+ }
18
+ } else {
19
+ uri = urijs.parse('postgresql:///');
20
+ }
21
+
22
+ const hostname = options.hostname ?? uri.host ?? '';
23
+ const port = validatePort(options.port ?? uri.port ?? 5432);
24
+
25
+ const database = options.database ?? uri.path?.substring(1) ?? '';
26
+
27
+ const [uri_username, uri_password] = (uri.userinfo ?? '').split(':');
28
+
29
+ const username = options.username ?? uri_username ?? '';
30
+ const password = options.password ?? uri_password ?? '';
31
+
32
+ const sslmode = options.sslmode ?? 'verify-full'; // Configuration not supported via URI
33
+ const cacert = options.cacert;
34
+
35
+ if (sslmode == 'verify-ca' && cacert == null) {
36
+ throw new Error('Explicit cacert is required for sslmode=verify-ca');
37
+ }
38
+
39
+ if (hostname == '') {
40
+ throw new Error(`hostname required`);
41
+ }
42
+
43
+ if (username == '') {
44
+ throw new Error(`username required`);
45
+ }
46
+
47
+ if (password == '') {
48
+ throw new Error(`password required`);
49
+ }
50
+
51
+ if (database == '') {
52
+ throw new Error(`database required`);
53
+ }
54
+
55
+ return {
56
+ id: options.id ?? 'default',
57
+ tag: options.tag ?? 'default',
58
+
59
+ hostname,
60
+ port,
61
+ database,
62
+
63
+ username,
64
+ password,
65
+ sslmode,
66
+ cacert,
67
+
68
+ client_certificate: options.client_certificate ?? undefined,
69
+ client_private_key: options.client_private_key ?? undefined
70
+ };
71
+ }
72
+
73
+ export interface NormalizedPostgresConnection {
74
+ id: string;
75
+ tag: string;
76
+
77
+ hostname: string;
78
+ port: number;
79
+ database: string;
80
+
81
+ username: string;
82
+ password: string;
83
+
84
+ sslmode: 'verify-full' | 'verify-ca' | 'disable';
85
+ cacert: string | undefined;
86
+
87
+ client_certificate: string | undefined;
88
+ client_private_key: string | undefined;
89
+ }
90
+
91
+ /**
92
+ * Check whether the port is in a "safe" range.
93
+ *
94
+ * We do not support connecting to "privileged" ports.
95
+ */
96
+ export function validatePort(port: string | number): number {
97
+ if (typeof port == 'string') {
98
+ port = parseInt(port);
99
+ }
100
+ if (port >= 1024 && port <= 49151) {
101
+ return port;
102
+ } else {
103
+ throw new Error(`Port ${port} not supported`);
104
+ }
105
+ }
106
+
107
+ /**
108
+ * Construct a postgres URI, without username, password or ssl options.
109
+ *
110
+ * Only contains hostname, port, database.
111
+ */
112
+ export function baseUri(options: NormalizedPostgresConnection) {
113
+ return `postgresql://${options.hostname}:${options.port}/${options.database}`;
114
+ }
@@ -0,0 +1,117 @@
1
+ import * as t from 'ts-codec';
2
+
3
+ export const ReplicationError = t.object({
4
+ /** Warning: Could indicate an issue. Fatal: Prevents replicating. */
5
+ level: t.literal('warning').or(t.literal('fatal')),
6
+ message: t.string
7
+ });
8
+ export type ReplicationError = t.Encoded<typeof ReplicationError>;
9
+
10
+ export const TableInfo = t.object({
11
+ schema: t.string,
12
+ name: t.string,
13
+
14
+ /** Specified if this table is part of a wildcard pattern. */
15
+ pattern: t.string.optional(),
16
+
17
+ /** Usually just ['id'] */
18
+ replication_id: t.array(t.string),
19
+ /** Used in data replication */
20
+ data_queries: t.boolean,
21
+ /** Used for parameter query replication */
22
+ parameter_queries: t.boolean,
23
+
24
+ /** Also included in the global errors array. */
25
+ errors: t.array(ReplicationError)
26
+ });
27
+ export type TableInfo = t.Encoded<typeof TableInfo>;
28
+
29
+ export const SyncRulesStatus = t.object({
30
+ content: t.string.optional(),
31
+ connections: t.array(
32
+ t.object({
33
+ id: t.string,
34
+ tag: t.string,
35
+
36
+ /**
37
+ * PostgreSQL logical replication slot name.
38
+ */
39
+ slot_name: t.string,
40
+
41
+ /**
42
+ * Once initial replication is done, this moves over to
43
+ * logical replication.
44
+ */
45
+ initial_replication_done: t.boolean,
46
+
47
+ /**
48
+ * The last LSN that has been replicated. This may be in the middle of a transaction.
49
+ */
50
+ last_lsn: t.string.optional(),
51
+
52
+ /**
53
+ * The last time any replication activity was recorded.
54
+ *
55
+ * This is typically (but not always) updated together with last_lsn
56
+ */
57
+ last_keepalive_ts: t.string.optional(),
58
+
59
+ /**
60
+ * The last time we created a new checkpoint. In other words, a transaction
61
+ * was successfully replicated.
62
+ */
63
+ last_checkpoint_ts: t.string.optional(),
64
+
65
+ /** Replication lag in bytes. undefined if we cannot calculate this. */
66
+ replication_lag_bytes: t.number.optional(),
67
+
68
+ tables: t.array(TableInfo)
69
+ })
70
+ ),
71
+ /** Sync-rule-level errors */
72
+ errors: t.array(ReplicationError)
73
+ });
74
+ export type SyncRulesStatus = t.Encoded<typeof SyncRulesStatus>;
75
+
76
+ export const ConnectionStatus = t.object({
77
+ id: t.string,
78
+ postgres_uri: t.string,
79
+ connected: t.boolean,
80
+ /** Connection-level errors */
81
+ errors: t.array(ReplicationError)
82
+ });
83
+ export type ConnectionStatus = t.Encoded<typeof ConnectionStatus>;
84
+
85
+ export const DatabaseSchema = t.object({
86
+ name: t.string,
87
+ tables: t.array(
88
+ t.object({
89
+ name: t.string,
90
+ columns: t.array(
91
+ t.object({
92
+ name: t.string,
93
+ /**
94
+ * Full type name, e.g. "character varying(255)[]"
95
+ */
96
+ type: t.string,
97
+ /**
98
+ * Internal postgres type, e.g. "varchar[]".
99
+ */
100
+ pg_type: t.string
101
+ })
102
+ )
103
+ })
104
+ )
105
+ });
106
+ export type DatabaseSchema = t.Encoded<typeof DatabaseSchema>;
107
+
108
+ export const InstanceSchema = t.object({
109
+ connections: t.array(
110
+ t.object({
111
+ id: t.string.optional(),
112
+ tag: t.string,
113
+ schemas: t.array(DatabaseSchema)
114
+ })
115
+ )
116
+ });
117
+ export type InstanceSchema = t.Encoded<typeof InstanceSchema>;
package/src/index.ts ADDED
@@ -0,0 +1,6 @@
1
+ export * as configFile from './config/PowerSyncConfig.js';
2
+ export { PostgresConnection } from './config/PowerSyncConfig.js';
3
+
4
+ export * from './definitions.js';
5
+ export * from './config/normalize.js';
6
+ export * as internal_routes from './routes.js';
package/src/routes.ts ADDED
@@ -0,0 +1,94 @@
1
+ import * as t from 'ts-codec';
2
+ import { ConnectionStatus, InstanceSchema, SyncRulesStatus } from './definitions';
3
+
4
+ export const GetSchemaRequest = t.object({});
5
+ export type GetSchemaRequest = t.Encoded<typeof GetSchemaRequest>;
6
+
7
+ export const GetSchemaResponse = InstanceSchema;
8
+ export type GetSchemaResponse = t.Encoded<typeof GetSchemaResponse>;
9
+
10
+ export const ExecuteSqlRequest = t.object({
11
+ connection_id: t.string.optional(),
12
+ sql: t.object({
13
+ query: t.string,
14
+ args: t.array(t.string.or(t.number).or(t.boolean))
15
+ })
16
+ });
17
+ export type ExecuteSqlRequest = t.Encoded<typeof ExecuteSqlRequest>;
18
+
19
+ export const ExecuteSqlResponse = t.object({
20
+ success: t.boolean,
21
+ results: t.object({
22
+ columns: t.array(t.string),
23
+ rows: t.array(t.array(t.string.or(t.number).or(t.boolean).or(t.Null)))
24
+ }),
25
+ /** Set if success = false */
26
+ error: t.string.optional()
27
+ });
28
+ export type ExecuteSqlResponse = t.Encoded<typeof ExecuteSqlResponse>;
29
+
30
+ export const DemoCredentialsRequest = t.object({
31
+ connection_id: t.string.optional()
32
+ });
33
+ export type DemoCredentialsRequest = t.Encoded<typeof DemoCredentialsRequest>;
34
+
35
+ export const DemoCredentialsResponse = t.object({
36
+ /** If this instance has a demo database, this contains the credentials. */
37
+ credentials: t
38
+ .object({
39
+ postgres_uri: t.string
40
+ })
41
+ .optional()
42
+ });
43
+ export type DemoCredentialsResponse = t.Encoded<typeof DemoCredentialsResponse>;
44
+
45
+ export const DiagnosticsRequest = t.object({
46
+ sync_rules_content: t.boolean.optional()
47
+ });
48
+ export type DiagnosticsRequest = t.Encoded<typeof DiagnosticsRequest>;
49
+
50
+ export const DiagnosticsResponse = t.object({
51
+ /**
52
+ * Connection-level errors are listed here.
53
+ */
54
+ connections: t.array(ConnectionStatus),
55
+
56
+ /**
57
+ * Present if there are fully-deployed sync rules.
58
+ *
59
+ * Sync-rule-level errors are listed here.
60
+ */
61
+ active_sync_rules: SyncRulesStatus.optional(),
62
+
63
+ /**
64
+ * Present if there are sync rules in the process of being deployed / initial replication.
65
+ *
66
+ * Once initial replication is done, this will be placed in `active_sync_rules`.
67
+ *
68
+ * Sync-rule-level errors are listed here.
69
+ */
70
+ deploying_sync_rules: SyncRulesStatus.optional()
71
+ });
72
+ export type DiagnosticsResponse = t.Encoded<typeof DiagnosticsResponse>;
73
+
74
+ export const ReprocessRequest = t.object({});
75
+ export type ReprocessRequest = t.Encoded<typeof ReprocessRequest>;
76
+
77
+ export const ReprocessResponse = t.object({
78
+ connections: t.array(
79
+ t.object({
80
+ id: t.string.optional(),
81
+ tag: t.string,
82
+ slot_name: t.string
83
+ })
84
+ )
85
+ });
86
+ export type ReprocessResponse = t.Encoded<typeof ReprocessResponse>;
87
+
88
+ export const ValidateRequest = t.object({
89
+ sync_rules: t.string
90
+ });
91
+ export type ValidateRequest = t.Encoded<typeof ValidateRequest>;
92
+
93
+ export const ValidateResponse = SyncRulesStatus;
94
+ export type ValidateResponse = t.Encoded<typeof ValidateResponse>;
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "@journeyapps-platform/micro-dev/tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "outDir": "dist",
5
+ "declarationDir": "dist",
6
+ "rootDir": "src",
7
+ "skipLibCheck": true
8
+ },
9
+ "include": ["src"],
10
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/definitions.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/definitions.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/generator.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/combinators.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/primitives.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/recursive.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/objects.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/arrays.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/root.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/parsers/index.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/utils.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/json-schema/index.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/combinators.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/primitives.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/recursive.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/arrays.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/codec.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/types/maps.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/utils.d.ts","../../node_modules/.pnpm/ts-codec@1.2.2/node_modules/ts-codec/dist/@types/index.d.ts","./src/definitions.ts","./src/config/PowerSyncConfig.ts","../../node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js/dist/es5/uri.all.d.ts","./src/config/normalize.ts","./src/routes.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.11.11/node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","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":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","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":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","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":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true,"impliedFormat":1},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","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":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"4adea1841ed26c17fc7b2fe888e30072e8a0bbcfd29c209e7268e24b19acad5d","impliedFormat":1},{"version":"6d1fd9a6b9823303554af5c59287dab3013be39720e6e18416956f4b88e2e3da","impliedFormat":1},{"version":"e7b9d145da1e25419ac57a6f804da356a3e9b99e4d81d3045d534e1dbefad14c","impliedFormat":1},{"version":"0fb7e2fd9a55a699b721005f9b971bb102b8bfe6aba92b0431d974b542fdabd7","impliedFormat":1},{"version":"8db3b7b47410ccabea0234d975dffea72f5ed4586305dc54b22a164721804cc5","impliedFormat":1},{"version":"3c33b043fbba511e7af9b21cf6ffdfd77a5b33114cf13bcd93871545bdbcc5cb","impliedFormat":1},{"version":"fffd95262f9eaa6988088f5b3fefed8af0719d60e913e63f6fbe724eba3f118d","impliedFormat":1},{"version":"3c683aee5744dedcb460b2e1c47804f4010ac8fba73f3093f88ccbb013a3c678","impliedFormat":1},{"version":"51ebb8f5a78bf7b58c0479fd51a3d39c1f91075a6a31620c3e510e6295ef43f1","impliedFormat":1},{"version":"a34327c4c9e71742f9248374e9506fb555d724121ddbd57e45e14cc9ee99e857","impliedFormat":1},{"version":"28febab4f39ed27ad0bac2705f35d83a434c74a3c49328f02f7d2a813ac937ab","impliedFormat":1},{"version":"dfe421b0e52e642279c9ebb5473acf33c091d5714ac09b75592067ee641deff2","impliedFormat":1},{"version":"aa5f3aa895ba91f1a0e3db5f9737f72d11e6d753cd9783b44aba6f105f0631d5","impliedFormat":1},{"version":"d3762251e9a5dc6f0d407a8877b89856428a3f27af1e82b236c21bde779d4c6d","impliedFormat":1},{"version":"cf95c55d326a751f162723f17a88a499399dc288729ce8b8568baaff249425ba","impliedFormat":1},{"version":"4cde2fc9f63efcd3c7a22f47f7e57dcbc69a2ca3656bda166493105d8ec218b9","impliedFormat":1},{"version":"502128497b075e263f1288795506807fe1bc4766adc74a51095aced7d5e6e16b","impliedFormat":1},{"version":"8e785000e355e822b7794e1be735fbe27853ffcca6ae07ff3ee6e1da4cfb4119","impliedFormat":1},{"version":"62d71a517af7dfc46dc0f7047f31eb47f21cbc99eb8ee2a817114a55e6470380","impliedFormat":1},{"version":"a22b4fc7c03f685be422cc8ed799a2a9b7218d28a9f20dfe27f45396c7e58036","impliedFormat":1},{"version":"faa88cd90fecf290a95da9623937f17e621416f32eccfcac36b316a5f2706154","signature":"9ea2b5a003602de111c40f95cc9d942e2ab34110a9cab650fb78172128c3c409","impliedFormat":1},{"version":"42a8e7e83dec4cbe65f8dcd3f9bcefa9c0faf6d03ab6b444d0aeaed4dd949da2","signature":"5944c4f959058c26077423d0daa559f142f8851c934ce6d4e0024076a09c806d","impliedFormat":1},{"version":"9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","impliedFormat":1},{"version":"c477c4209917b2264db1bd5224bfb432af75233c683749a15e7e651088ac690c","signature":"74d21e99d2613d9584ba056c0c3b3c2bb46a7afaff201aa4f6d2e271b91e4d4a","impliedFormat":1},{"version":"0af249f2ef37920a35f04c1f9c183c351f2c056d08026a0129db08e5dae3c689","signature":"ddb3bdf52975f1c68c4c65b1f328c3bb352072d69d202908d743c8e6860fa726","impliedFormat":1},{"version":"1ca9a65a1f636c62a4b196757de406a9166fa44f3dac37f608b2ef9890379368","signature":"1cb7b96dfade5ac12ad8a964c8029fac26e0d473a2a7a360309dc918a956236f","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","impliedFormat":1},{"version":"b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","impliedFormat":1},{"version":"7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836","impliedFormat":1}],"root":[71,72,[74,76]],"options":{"composite":true,"declaration":true,"declarationDir":"./dist","module":199,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[77,123],[80,123],[81,86,114,123],[82,93,94,101,111,122,123],[82,83,93,101,123],[84,123],[85,86,94,102,123],[86,111,119,123],[87,89,93,101,123],[88,123],[89,90,123],[93,123],[91,93,123],[93,94,95,111,122,123],[93,94,95,108,111,114,123],[123,127],[123],[96,101,111,122,123],[93,94,96,97,101,111,119,122,123],[96,98,111,119,122,123],[77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129],[93,99,123],[100,122,123],[89,93,101,111,123],[102,123],[103,123],[80,104,123],[105,121,123,127],[106,123],[107,123],[93,108,109,123],[108,110,123,125],[81,93,111,112,113,114,123],[81,111,113,123],[111,112,123],[114,123],[115,123],[93,117,118,123],[117,118,123],[86,101,111,119,123],[120,123],[101,121,123],[81,96,107,122,123],[86,123],[111,123,124],[123,125],[123,126],[81,86,93,95,104,111,122,123,125,127],[111,123,128],[51,62,63,64,65,66,67,68,69,123],[51,123],[51,52,123],[52,53,60,61,123],[51,62,123],[54,55,56,57,58,59,123],[70,123],[72,73,123],[71,72,74,75,123],[70,71,123],[70],[72],[71,72,74,75]],"referencedMap":[[77,1],[78,1],[80,2],[81,3],[82,4],[83,5],[84,6],[85,7],[86,8],[87,9],[88,10],[89,11],[90,11],[92,12],[91,13],[93,12],[94,14],[95,15],[79,16],[129,17],[96,18],[97,19],[98,20],[130,21],[99,22],[100,23],[101,24],[102,25],[103,26],[104,27],[105,28],[106,29],[107,30],[108,31],[109,31],[110,32],[111,33],[113,34],[112,35],[114,36],[115,37],[116,17],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[51,17],[70,50],[52,51],[53,52],[62,53],[58,54],[54,54],[60,55],[57,54],[55,54],[56,54],[59,52],[61,52],[66,51],[67,51],[63,51],[68,51],[64,51],[65,51],[69,51],[49,17],[50,17],[10,17],[9,17],[2,17],[11,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[3,17],[19,17],[4,17],[20,17],[24,17],[21,17],[22,17],[23,17],[25,17],[26,17],[27,17],[5,17],[28,17],[29,17],[30,17],[31,17],[6,17],[35,17],[32,17],[33,17],[34,17],[36,17],[7,17],[37,17],[42,17],[43,17],[38,17],[39,17],[40,17],[41,17],[8,17],[47,17],[44,17],[45,17],[46,17],[1,17],[48,17],[73,17],[72,56],[74,57],[71,56],[76,58],[75,59]],"exportedModulesMap":[[77,1],[78,1],[80,2],[81,3],[82,4],[83,5],[84,6],[85,7],[86,8],[87,9],[88,10],[89,11],[90,11],[92,12],[91,13],[93,12],[94,14],[95,15],[79,16],[129,17],[96,18],[97,19],[98,20],[130,21],[99,22],[100,23],[101,24],[102,25],[103,26],[104,27],[105,28],[106,29],[107,30],[108,31],[109,31],[110,32],[111,33],[113,34],[112,35],[114,36],[115,37],[116,17],[117,38],[118,39],[119,40],[120,41],[121,42],[122,43],[123,44],[124,45],[125,46],[126,47],[127,48],[128,49],[51,17],[70,50],[52,51],[53,52],[62,53],[58,54],[54,54],[60,55],[57,54],[55,54],[56,54],[59,52],[61,52],[66,51],[67,51],[63,51],[68,51],[64,51],[65,51],[69,51],[49,17],[50,17],[10,17],[9,17],[2,17],[11,17],[12,17],[13,17],[14,17],[15,17],[16,17],[17,17],[18,17],[3,17],[19,17],[4,17],[20,17],[24,17],[21,17],[22,17],[23,17],[25,17],[26,17],[27,17],[5,17],[28,17],[29,17],[30,17],[31,17],[6,17],[35,17],[32,17],[33,17],[34,17],[36,17],[7,17],[37,17],[42,17],[43,17],[38,17],[39,17],[40,17],[41,17],[8,17],[47,17],[44,17],[45,17],[46,17],[1,17],[48,17],[73,17],[72,60],[74,61],[71,60],[76,62],[75,60]],"semanticDiagnosticsPerFile":[77,78,80,81,82,83,84,85,86,87,88,89,90,92,91,93,94,95,79,129,96,97,98,130,99,100,101,102,103,104,105,106,107,108,109,110,111,113,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,51,70,52,53,62,58,54,60,57,55,56,59,61,66,67,63,68,64,65,69,49,50,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,73,72,74,71,76,75],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.4.5"}