@cofondateurauchomage/libs 1.1.148 → 1.1.149
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/build/db.model.d.ts +1 -1
- package/package.json +1 -1
package/build/db.model.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export interface IStripeMeta {
|
|
|
103
103
|
subscriptionCancellationComment?: string;
|
|
104
104
|
}
|
|
105
105
|
/** CRM mirror of `prospects/{id}` without heavy assets or long text fields. */
|
|
106
|
-
type ICrmProspectProfileSnapshot = Omit<IProspect, "
|
|
106
|
+
type ICrmProspectProfileSnapshot = Omit<IProspect, "motivations" | "bestStrength" | "partner" | "business" | "description" | "status_detail">;
|
|
107
107
|
/** CRM mirror of `users/{id}` without heavy assets or long text fields. */
|
|
108
108
|
type ICrmUserProfileSnapshot = Omit<IUser, "photo" | "motivations" | "bestStrength" | "partner" | "business">;
|
|
109
109
|
/** CRM mirror of `projects/{id}` without heavy assets or long text fields. */
|