@lpdjs/firestore-repo-service 2.3.7 → 2.4.3
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 +4 -0
- package/dist/{create-servers-BmgAjUFD.d.cts → create-servers-B9dTUhvR.d.cts} +2 -2
- package/dist/{create-servers-Dv0V1LB8.d.ts → create-servers-BFhdPPeo.d.ts} +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/{queue-DLrIuZ7L.d.ts → queue-CVchaGAh.d.ts} +1 -1
- package/dist/{queue-CmBKfeqG.d.cts → queue-xMOZxY0M.d.cts} +1 -1
- package/dist/servers/index.cjs.map +1 -1
- package/dist/servers/index.d.cts +3 -3
- package/dist/servers/index.d.ts +3 -3
- package/dist/servers/index.js.map +1 -1
- package/dist/sync/bigquery.cjs +7 -8
- package/dist/sync/bigquery.cjs.map +1 -1
- package/dist/sync/bigquery.d.cts +147 -35
- package/dist/sync/bigquery.d.ts +147 -35
- package/dist/sync/bigquery.js +7 -8
- package/dist/sync/bigquery.js.map +1 -1
- package/dist/sync/index.cjs.map +1 -1
- package/dist/sync/index.d.cts +4 -4
- package/dist/sync/index.d.ts +4 -4
- package/dist/sync/index.js.map +1 -1
- package/dist/{types-_JSH59Iy.d.cts → types-BgIGWlR1.d.cts} +1 -2
- package/dist/{types-Bhy7MfCj.d.ts → types-ChzVPw4k.d.ts} +1 -2
- package/package.json +1 -14
- package/dist/sync/bigquery-storage.cjs +0 -8
- package/dist/sync/bigquery-storage.cjs.map +0 -1
- package/dist/sync/bigquery-storage.d.cts +0 -125
- package/dist/sync/bigquery-storage.d.ts +0 -125
- package/dist/sync/bigquery-storage.js +0 -8
- package/dist/sync/bigquery-storage.js.map +0 -1
package/README.md
CHANGED
|
@@ -427,7 +427,9 @@ export const { functions } = servers.sync({
|
|
|
427
427
|
deps: { firestoreTriggers, pubsubHandler, pubsub: new PubSub() },
|
|
428
428
|
adapter: new BigQueryAdapter({
|
|
429
429
|
bigquery: new BigQuery({ projectId: "my-project" }),
|
|
430
|
+
projectId: "my-project",
|
|
430
431
|
datasetId: "firestore_sync",
|
|
432
|
+
maxStaleness: "INTERVAL 15 MINUTE",
|
|
431
433
|
}),
|
|
432
434
|
topicPrefix: "firestore-sync",
|
|
433
435
|
autoMigrate: true,
|
|
@@ -777,7 +779,9 @@ export const { functions } = servers.sync({
|
|
|
777
779
|
deps: { firestoreTriggers, pubsubHandler, pubsub: new PubSub() },
|
|
778
780
|
adapter: new BigQueryAdapter({
|
|
779
781
|
bigquery: new BigQuery({ projectId: "my-project" }),
|
|
782
|
+
projectId: "my-project",
|
|
780
783
|
datasetId: "firestore_sync",
|
|
784
|
+
maxStaleness: "INTERVAL 15 MINUTE",
|
|
781
785
|
}),
|
|
782
786
|
topicPrefix: "firestore-sync",
|
|
783
787
|
autoMigrate: true,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SyncQueue } from './queue-
|
|
2
|
-
import { F as FirestoreSyncConfig, S as SyncEvent } from './types-
|
|
1
|
+
import { S as SyncQueue } from './queue-xMOZxY0M.cjs';
|
|
2
|
+
import { F as FirestoreSyncConfig, S as SyncEvent } from './types-BgIGWlR1.cjs';
|
|
3
3
|
import { O as OpenAPIDocument } from './openapi-ML_1hTx2.cjs';
|
|
4
4
|
import * as firebase_functions_v2_https from 'firebase-functions/v2/https';
|
|
5
5
|
import { onRequest, HttpsOptions } from 'firebase-functions/v2/https';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SyncQueue } from './queue-
|
|
2
|
-
import { F as FirestoreSyncConfig, S as SyncEvent } from './types-
|
|
1
|
+
import { S as SyncQueue } from './queue-CVchaGAh.js';
|
|
2
|
+
import { F as FirestoreSyncConfig, S as SyncEvent } from './types-ChzVPw4k.js';
|
|
3
3
|
import { O as OpenAPIDocument } from './openapi-DIoQV_yQ.js';
|
|
4
4
|
import * as firebase_functions_v2_https from 'firebase-functions/v2/https';
|
|
5
5
|
import { onRequest, HttpsOptions } from 'firebase-functions/v2/https';
|