@jobsearch-works/firestore-models 4.2.3 → 4.2.4

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
@@ -212,3 +212,20 @@ type LocationId = (typeof locations)[number]["id"];
212
212
  ```bash
213
213
  npm install @jobsearch-works/firestore-models
214
214
  ```
215
+
216
+ ## Consumption Policy (Important)
217
+
218
+ - Always consume this library via the published npm package (semver), e.g. `^4.x`.
219
+ - Do not link it via local file paths (e.g. `"file:../firestore-models"`) in downstream projects.
220
+ - Reason: CI/CD and remote environments cannot resolve local file links; using the registry guarantees consistent, reproducible builds.
221
+ - If you need changes, bump the version here and update dependents to that version.
222
+
223
+ Example in a consumer project's `package.json`:
224
+
225
+ ```json
226
+ {
227
+ "dependencies": {
228
+ "@jobsearch-works/firestore-models": "^4.2.3"
229
+ }
230
+ }
231
+ ```
package/dist/index.d.mts CHANGED
@@ -784,6 +784,7 @@ interface Application {
784
784
  coverLetter?: string;
785
785
  resume?: ClientResume;
786
786
  questions?: ApplicationQuestion[];
787
+ relatedEmailIds?: string[];
787
788
  automationSummary?: string;
788
789
  automationTokensUsed?: number;
789
790
  automationLog?: string;
package/dist/index.d.ts CHANGED
@@ -784,6 +784,7 @@ interface Application {
784
784
  coverLetter?: string;
785
785
  resume?: ClientResume;
786
786
  questions?: ApplicationQuestion[];
787
+ relatedEmailIds?: string[];
787
788
  automationSummary?: string;
788
789
  automationTokensUsed?: number;
789
790
  automationLog?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "4.2.3",
3
+ "version": "4.2.4",
4
4
  "description": "A shared library for standardizing Firestore document schemas and paths across multiple projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",