@cofondateurauchomage/libs 1.1.159 → 1.1.160
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 +5 -0
- package/package.json +1 -1
package/build/db.model.d.ts
CHANGED
|
@@ -102,6 +102,8 @@ export interface IStripeMeta {
|
|
|
102
102
|
/** Stripe `cancellation_details.feedback`. */
|
|
103
103
|
subscriptionCancellationFeedback?: string;
|
|
104
104
|
subscriptionCancellationComment?: string;
|
|
105
|
+
/** Origin of the checkout session (e.g. "Page abonnement", "Page profil", "Page recherche", etc.). */
|
|
106
|
+
checkoutOrigin?: string;
|
|
105
107
|
}
|
|
106
108
|
/** CRM mirror of `prospects/{id}` without heavy assets or long text fields. */
|
|
107
109
|
type ICrmProspectProfileSnapshot = Omit<IProspect, "motivations" | "bestStrength" | "partner" | "business" | "description" | "status_detail">;
|
|
@@ -117,6 +119,9 @@ interface ICrmProfileBase {
|
|
|
117
119
|
/** 0 if not called */
|
|
118
120
|
lastTeamCallAt: number;
|
|
119
121
|
foundPartner?: boolean;
|
|
122
|
+
hasStripe?: boolean;
|
|
123
|
+
hasTel?: boolean;
|
|
124
|
+
hasLinkedin?: boolean;
|
|
120
125
|
}
|
|
121
126
|
export interface ICrmProfileProspect extends ICrmProfileBase {
|
|
122
127
|
type: "prospect";
|