@lpdjs/firestore-repo-service 2.6.16 → 2.6.18
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/dist/history/index.cjs +1 -1
- package/dist/history/index.cjs.map +1 -1
- package/dist/history/index.js +1 -1
- package/dist/history/index.js.map +1 -1
- package/dist/index.cjs +76 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +76 -76
- package/dist/index.js.map +1 -1
- package/dist/llms-full.txt +2737 -0
- package/dist/llms.txt +120 -0
- package/dist/servers/admin/index.cjs +4 -4
- package/dist/servers/admin/index.cjs.map +1 -1
- package/dist/servers/admin/index.js +4 -4
- package/dist/servers/admin/index.js.map +1 -1
- package/dist/servers/hono/cli.cjs +171 -49
- package/dist/servers/hono/cli.cjs.map +1 -1
- package/dist/servers/hono/cli.js +171 -49
- package/dist/servers/hono/cli.js.map +1 -1
- package/dist/servers/hono/index.cjs +6 -6
- package/dist/servers/hono/index.cjs.map +1 -1
- package/dist/servers/hono/index.d.cts +17 -2
- package/dist/servers/hono/index.d.ts +17 -2
- package/dist/servers/hono/index.js +6 -6
- package/dist/servers/hono/index.js.map +1 -1
- package/dist/servers/index.cjs +85 -85
- package/dist/servers/index.cjs.map +1 -1
- package/dist/servers/index.js +85 -85
- package/dist/servers/index.js.map +1 -1
- package/dist/sync/index.cjs +46 -46
- package/dist/sync/index.cjs.map +1 -1
- package/dist/sync/index.js +46 -46
- package/dist/sync/index.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -209,6 +209,14 @@ declare class RepositoryMapping<T extends Record<string, any>> {
|
|
|
209
209
|
* @private
|
|
210
210
|
*/
|
|
211
211
|
private get db();
|
|
212
|
+
/**
|
|
213
|
+
* Raw repository configs (the `mapping` passed to the factory), readable
|
|
214
|
+
* **without** triggering lazy Firestore resolution. Lets definition-time
|
|
215
|
+
* consumers (e.g. `createHistoryTriggers`) introspect static config such as
|
|
216
|
+
* the collection `path` / `history` settings before `initializeApp()` /
|
|
217
|
+
* `getFirestore()` would otherwise run.
|
|
218
|
+
*/
|
|
219
|
+
get rawMapping(): T;
|
|
212
220
|
/**
|
|
213
221
|
* Build every repository once, on first access, so cross-references and
|
|
214
222
|
* circular relations are wired in a single two-pass init.
|
package/dist/index.d.ts
CHANGED
|
@@ -209,6 +209,14 @@ declare class RepositoryMapping<T extends Record<string, any>> {
|
|
|
209
209
|
* @private
|
|
210
210
|
*/
|
|
211
211
|
private get db();
|
|
212
|
+
/**
|
|
213
|
+
* Raw repository configs (the `mapping` passed to the factory), readable
|
|
214
|
+
* **without** triggering lazy Firestore resolution. Lets definition-time
|
|
215
|
+
* consumers (e.g. `createHistoryTriggers`) introspect static config such as
|
|
216
|
+
* the collection `path` / `history` settings before `initializeApp()` /
|
|
217
|
+
* `getFirestore()` would otherwise run.
|
|
218
|
+
*/
|
|
219
|
+
get rawMapping(): T;
|
|
212
220
|
/**
|
|
213
221
|
* Build every repository once, on first access, so cross-references and
|
|
214
222
|
* circular relations are wired in a single two-pass init.
|