@jobsearch-works/firestore-models 4.0.1 → 4.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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1032,6 +1032,10 @@ declare const firestorePaths: {
|
|
|
1032
1032
|
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1033
1033
|
readonly doc: (clientId: string, applicationId: string, questionId: string) => string;
|
|
1034
1034
|
};
|
|
1035
|
+
readonly notes: {
|
|
1036
|
+
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1037
|
+
readonly doc: (clientId: string, applicationId: string, noteId: string) => string;
|
|
1038
|
+
};
|
|
1035
1039
|
readonly enrichedForms: {
|
|
1036
1040
|
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1037
1041
|
readonly doc: (clientId: string, applicationId: string, formId: string) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1032,6 +1032,10 @@ declare const firestorePaths: {
|
|
|
1032
1032
|
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1033
1033
|
readonly doc: (clientId: string, applicationId: string, questionId: string) => string;
|
|
1034
1034
|
};
|
|
1035
|
+
readonly notes: {
|
|
1036
|
+
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1037
|
+
readonly doc: (clientId: string, applicationId: string, noteId: string) => string;
|
|
1038
|
+
};
|
|
1035
1039
|
readonly enrichedForms: {
|
|
1036
1040
|
readonly collection: (clientId: string, applicationId: string) => string;
|
|
1037
1041
|
readonly doc: (clientId: string, applicationId: string, formId: string) => string;
|
package/dist/index.js
CHANGED
|
@@ -1320,6 +1320,10 @@ var firestorePaths = {
|
|
|
1320
1320
|
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/questions`,
|
|
1321
1321
|
doc: (clientId, applicationId, questionId) => `clients/${clientId}/applications/${applicationId}/questions/${questionId}`
|
|
1322
1322
|
},
|
|
1323
|
+
notes: {
|
|
1324
|
+
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/notes`,
|
|
1325
|
+
doc: (clientId, applicationId, noteId) => `clients/${clientId}/applications/${applicationId}/notes/${noteId}`
|
|
1326
|
+
},
|
|
1323
1327
|
enrichedForms: {
|
|
1324
1328
|
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/enrichedForms`,
|
|
1325
1329
|
doc: (clientId, applicationId, formId) => `clients/${clientId}/applications/${applicationId}/enrichedForms/${formId}`
|
package/dist/index.mjs
CHANGED
|
@@ -1286,6 +1286,10 @@ var firestorePaths = {
|
|
|
1286
1286
|
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/questions`,
|
|
1287
1287
|
doc: (clientId, applicationId, questionId) => `clients/${clientId}/applications/${applicationId}/questions/${questionId}`
|
|
1288
1288
|
},
|
|
1289
|
+
notes: {
|
|
1290
|
+
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/notes`,
|
|
1291
|
+
doc: (clientId, applicationId, noteId) => `clients/${clientId}/applications/${applicationId}/notes/${noteId}`
|
|
1292
|
+
},
|
|
1289
1293
|
enrichedForms: {
|
|
1290
1294
|
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/enrichedForms`,
|
|
1291
1295
|
doc: (clientId, applicationId, formId) => `clients/${clientId}/applications/${applicationId}/enrichedForms/${formId}`
|
package/package.json
CHANGED