@jobsearch-works/firestore-models 1.1.4 → 1.1.6
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -119,7 +119,7 @@ var pathStrings = {
|
|
119
119
|
gmailMessages: (clientId) => `clientEmails/${clientId}/messages`,
|
120
120
|
gmailMessage: (clientId, messageId) => `clientEmails/${clientId}/messages/${messageId}`,
|
121
121
|
// TargetPreferences paths
|
122
|
-
targetPreferences: (clientId) => `clients/${clientId}/targetPreferences`
|
122
|
+
targetPreferences: (clientId) => `clients/${clientId}/preferences/targetPreferences`
|
123
123
|
};
|
124
124
|
// Annotate the CommonJS export names for ESM import in node:
|
125
125
|
0 && (module.exports = {
|
package/dist/index.mjs
CHANGED
@@ -89,7 +89,7 @@ var pathStrings = {
|
|
89
89
|
gmailMessages: (clientId) => `clientEmails/${clientId}/messages`,
|
90
90
|
gmailMessage: (clientId, messageId) => `clientEmails/${clientId}/messages/${messageId}`,
|
91
91
|
// TargetPreferences paths
|
92
|
-
targetPreferences: (clientId) => `clients/${clientId}/targetPreferences`
|
92
|
+
targetPreferences: (clientId) => `clients/${clientId}/preferences/targetPreferences`
|
93
93
|
};
|
94
94
|
export {
|
95
95
|
ApplicationQuestionTypeOptions,
|
package/package.json
CHANGED