@jobsearch-works/firestore-models 2.0.1 → 2.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.
package/dist/index.d.mts CHANGED
@@ -150,11 +150,8 @@ interface VacancySuggestion {
150
150
 
151
151
  type ClientStatus = "active" | "inactive";
152
152
  interface Client {
153
- readonly id?: string;
154
153
  readonly name: string;
155
- readonly email: string;
156
154
  readonly status: ClientStatus;
157
- readonly resume?: string;
158
155
  readonly createdAt?: Date | string;
159
156
  }
160
157
 
package/dist/index.d.ts CHANGED
@@ -150,11 +150,8 @@ interface VacancySuggestion {
150
150
 
151
151
  type ClientStatus = "active" | "inactive";
152
152
  interface Client {
153
- readonly id?: string;
154
153
  readonly name: string;
155
- readonly email: string;
156
154
  readonly status: ClientStatus;
157
- readonly resume?: string;
158
155
  readonly createdAt?: Date | string;
159
156
  }
160
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobsearch-works/firestore-models",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
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",