syncular 0.0.6-224 → 0.0.6-227

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,9 +2,14 @@
2
2
 
3
3
  Umbrella package that re-exports the `@syncular/*` packages under a single import namespace.
4
4
 
5
- If you prefer, you can write imports like `syncular/client` instead of `@syncular/client`. Both are supported.
5
+ If you prefer, you can write imports like `syncular/client` instead of
6
+ `@syncular/client`. Both are supported.
6
7
 
7
- For plugins, use explicit umbrella subpaths (for example `syncular/client-plugin-yjs`).
8
+ For plugins and runtime-specific helpers, use explicit umbrella subpaths. Examples:
9
+
10
+ - `syncular/client-plugin-yjs`
11
+ - `syncular/dialect-neon`
12
+ - `syncular/server-dialect-neon`
8
13
 
9
14
  ## Install
10
15
 
@@ -0,0 +1,2 @@
1
+ export { createNeonServerDialect, PostgresServerSyncDialect, } from '@syncular/server-dialect-postgres';
2
+ //# sourceMappingURL=server-dialect-neon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server-dialect-neon.d.ts","sourceRoot":"","sources":["../src/server-dialect-neon.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,yBAAyB,GAC1B,MAAM,mCAAmC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { createNeonServerDialect, PostgresServerSyncDialect, } from '@syncular/server-dialect-postgres';
2
+ //# sourceMappingURL=server-dialect-neon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server-dialect-neon.js","sourceRoot":"","sources":["../src/server-dialect-neon.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,yBAAyB,GAC1B,MAAM,mCAAmC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syncular",
3
- "version": "0.0.6-224",
3
+ "version": "0.0.6-227",
4
4
  "description": "Offline-first sync framework for TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Benjamin Kniffler",
@@ -167,6 +167,13 @@
167
167
  "default": "./dist/server-dialect-postgres.js"
168
168
  }
169
169
  },
170
+ "./server-dialect-neon": {
171
+ "bun": "./src/server-dialect-neon.ts",
172
+ "import": {
173
+ "types": "./dist/server-dialect-neon.d.ts",
174
+ "default": "./dist/server-dialect-neon.js"
175
+ }
176
+ },
170
177
  "./transport-http": {
171
178
  "bun": "./src/transport-http.ts",
172
179
  "import": {
@@ -320,43 +327,43 @@
320
327
  "src"
321
328
  ],
322
329
  "dependencies": {
323
- "@syncular/client": "0.0.6-224",
324
- "@syncular/client-plugin-blob": "0.0.6-224",
325
- "@syncular/client-plugin-offline-auth": "0.0.6-224",
326
- "@syncular/client-plugin-offline-auth-react": "0.0.6-224",
327
- "@syncular/client-plugin-encryption": "0.0.6-224",
328
- "@syncular/client-plugin-yjs": "0.0.6-224",
329
- "@syncular/client-react": "0.0.6-224",
330
- "@syncular/console": "0.0.6-224",
331
- "@syncular/core": "0.0.6-224",
332
- "@syncular/dialect-better-sqlite3": "0.0.6-224",
333
- "@syncular/dialect-bun-sqlite": "0.0.6-224",
334
- "@syncular/dialect-d1": "0.0.6-224",
335
- "@syncular/dialect-electron-sqlite": "0.0.6-224",
336
- "@syncular/dialect-expo-sqlite": "0.0.6-224",
337
- "@syncular/dialect-libsql": "0.0.6-224",
338
- "@syncular/dialect-neon": "0.0.6-224",
339
- "@syncular/dialect-pglite": "0.0.6-224",
340
- "@syncular/dialect-react-native-nitro-sqlite": "0.0.6-224",
341
- "@syncular/dialect-sqlite3": "0.0.6-224",
342
- "@syncular/dialect-wa-sqlite": "0.0.6-224",
343
- "@syncular/migrations": "0.0.6-224",
344
- "@syncular/observability-sentry": "0.0.6-224",
345
- "@syncular/relay": "0.0.6-224",
346
- "@syncular/server": "0.0.6-224",
347
- "@syncular/server-cloudflare": "0.0.6-224",
348
- "@syncular/server-dialect-postgres": "0.0.6-224",
349
- "@syncular/server-dialect-sqlite": "0.0.6-224",
350
- "@syncular/server-hono": "0.0.6-224",
351
- "@syncular/server-plugin-yjs": "0.0.6-224",
352
- "@syncular/server-service-worker": "0.0.6-224",
353
- "@syncular/server-storage-filesystem": "0.0.6-224",
354
- "@syncular/server-storage-s3": "0.0.6-224",
355
- "@syncular/testkit": "0.0.6-224",
356
- "@syncular/transport-http": "0.0.6-224",
357
- "@syncular/transport-ws": "0.0.6-224",
358
- "@syncular/typegen": "0.0.6-224",
359
- "@syncular/ui": "0.0.6-224"
330
+ "@syncular/client": "0.0.6-227",
331
+ "@syncular/client-plugin-blob": "0.0.6-227",
332
+ "@syncular/client-plugin-offline-auth": "0.0.6-227",
333
+ "@syncular/client-plugin-offline-auth-react": "0.0.6-227",
334
+ "@syncular/client-plugin-encryption": "0.0.6-227",
335
+ "@syncular/client-plugin-yjs": "0.0.6-227",
336
+ "@syncular/client-react": "0.0.6-227",
337
+ "@syncular/console": "0.0.6-227",
338
+ "@syncular/core": "0.0.6-227",
339
+ "@syncular/dialect-better-sqlite3": "0.0.6-227",
340
+ "@syncular/dialect-bun-sqlite": "0.0.6-227",
341
+ "@syncular/dialect-d1": "0.0.6-227",
342
+ "@syncular/dialect-electron-sqlite": "0.0.6-227",
343
+ "@syncular/dialect-expo-sqlite": "0.0.6-227",
344
+ "@syncular/dialect-libsql": "0.0.6-227",
345
+ "@syncular/dialect-neon": "0.0.6-227",
346
+ "@syncular/dialect-pglite": "0.0.6-227",
347
+ "@syncular/dialect-react-native-nitro-sqlite": "0.0.6-227",
348
+ "@syncular/dialect-sqlite3": "0.0.6-227",
349
+ "@syncular/dialect-wa-sqlite": "0.0.6-227",
350
+ "@syncular/migrations": "0.0.6-227",
351
+ "@syncular/observability-sentry": "0.0.6-227",
352
+ "@syncular/relay": "0.0.6-227",
353
+ "@syncular/server": "0.0.6-227",
354
+ "@syncular/server-cloudflare": "0.0.6-227",
355
+ "@syncular/server-dialect-postgres": "0.0.6-227",
356
+ "@syncular/server-dialect-sqlite": "0.0.6-227",
357
+ "@syncular/server-hono": "0.0.6-227",
358
+ "@syncular/server-plugin-yjs": "0.0.6-227",
359
+ "@syncular/server-service-worker": "0.0.6-227",
360
+ "@syncular/server-storage-filesystem": "0.0.6-227",
361
+ "@syncular/server-storage-s3": "0.0.6-227",
362
+ "@syncular/testkit": "0.0.6-227",
363
+ "@syncular/transport-http": "0.0.6-227",
364
+ "@syncular/transport-ws": "0.0.6-227",
365
+ "@syncular/typegen": "0.0.6-227",
366
+ "@syncular/ui": "0.0.6-227"
360
367
  },
361
368
  "devDependencies": {
362
369
  "@cloudflare/workers-types": "*",
@@ -0,0 +1,4 @@
1
+ export {
2
+ createNeonServerDialect,
3
+ PostgresServerSyncDialect,
4
+ } from '@syncular/server-dialect-postgres';