@synap-core/workspace-templates 0.2.1
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/define.d.ts +97 -0
- package/dist/define.d.ts.map +1 -0
- package/dist/define.js +91 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/templates.d.ts +7 -0
- package/dist/templates.d.ts.map +1 -0
- package/dist/templates.js +23354 -0
- package/dist/types.d.ts +328 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +8 -0
- package/package.json +37 -0
- package/src/agent-fleet.yaml +1434 -0
- package/src/brand-library.yaml +627 -0
- package/src/builder.yaml +1355 -0
- package/src/content-os.yaml +1424 -0
- package/src/content-studio.yaml +312 -0
- package/src/crm.yaml +2606 -0
- package/src/define.ts +184 -0
- package/src/dev-dashboard.yaml +1309 -0
- package/src/foundation.yaml +343 -0
- package/src/index.ts +62 -0
- package/src/life-os.yaml +1443 -0
- package/src/marketing.yaml +244 -0
- package/src/personal.yaml +114 -0
- package/src/project-management.yaml +1119 -0
- package/src/radar.yaml +274 -0
- package/src/templates.ts +23363 -0
- package/src/types.ts +426 -0
package/src/crm.yaml
ADDED
|
@@ -0,0 +1,2606 @@
|
|
|
1
|
+
# CRM workspace template
|
|
2
|
+
# AI-generation-friendly YAML. Validated against types.ts at build time.
|
|
3
|
+
# Merged best-of-both: relationship/consulting model (event, task, note, person,
|
|
4
|
+
# campaign, journey, conversation, document, company, deal, client) UNIONed with
|
|
5
|
+
# the validated sales model (company, contact, deal, activity, pipeline).
|
|
6
|
+
|
|
7
|
+
meta:
|
|
8
|
+
slug: crm
|
|
9
|
+
name: CRM
|
|
10
|
+
description: Sales pipeline and contact management — deals, contacts, companies, clients.
|
|
11
|
+
icon: handshake
|
|
12
|
+
color: "#6366F1"
|
|
13
|
+
tags:
|
|
14
|
+
- crm
|
|
15
|
+
- sales
|
|
16
|
+
- pipeline
|
|
17
|
+
- contacts
|
|
18
|
+
isPublic: true
|
|
19
|
+
workspace:
|
|
20
|
+
name: CRM
|
|
21
|
+
description: Sales pipeline and contact management workspace
|
|
22
|
+
proposalId: crm-v1
|
|
23
|
+
subtype: crm
|
|
24
|
+
visibility: pod_visible
|
|
25
|
+
capabilities:
|
|
26
|
+
- crm.pipeline
|
|
27
|
+
- crm.contacts
|
|
28
|
+
- crm.deals
|
|
29
|
+
- crm.clients
|
|
30
|
+
profiles:
|
|
31
|
+
- slug: event
|
|
32
|
+
displayName: Event
|
|
33
|
+
icon: calendar
|
|
34
|
+
color: blue
|
|
35
|
+
description: ""
|
|
36
|
+
properties:
|
|
37
|
+
- slug: crmMeetingType
|
|
38
|
+
label: Meeting Type
|
|
39
|
+
valueType: string
|
|
40
|
+
inputType: select
|
|
41
|
+
enumValues:
|
|
42
|
+
- discovery
|
|
43
|
+
- demo
|
|
44
|
+
- follow-up
|
|
45
|
+
- closing
|
|
46
|
+
- internal
|
|
47
|
+
- other
|
|
48
|
+
- slug: crmOutcome
|
|
49
|
+
label: Outcome
|
|
50
|
+
valueType: string
|
|
51
|
+
inputType: select
|
|
52
|
+
enumValues:
|
|
53
|
+
- pending
|
|
54
|
+
- positive
|
|
55
|
+
- no-show
|
|
56
|
+
- rescheduled
|
|
57
|
+
- cancelled
|
|
58
|
+
- slug: prepStatus
|
|
59
|
+
label: Prep Status
|
|
60
|
+
valueType: string
|
|
61
|
+
inputType: select
|
|
62
|
+
enumValues:
|
|
63
|
+
- not-started
|
|
64
|
+
- in-progress
|
|
65
|
+
- complete
|
|
66
|
+
- slug: contactId
|
|
67
|
+
label: Contact
|
|
68
|
+
valueType: string
|
|
69
|
+
inputType: text
|
|
70
|
+
- slug: dealId
|
|
71
|
+
label: Deal
|
|
72
|
+
valueType: string
|
|
73
|
+
inputType: text
|
|
74
|
+
- slug: recordingUrl
|
|
75
|
+
label: Recording
|
|
76
|
+
valueType: string
|
|
77
|
+
inputType: url
|
|
78
|
+
- slug: crmNotes
|
|
79
|
+
label: Private Notes
|
|
80
|
+
valueType: string
|
|
81
|
+
inputType: textarea
|
|
82
|
+
- slug: summary
|
|
83
|
+
label: AI Summary
|
|
84
|
+
valueType: string
|
|
85
|
+
inputType: textarea
|
|
86
|
+
- slug: nextSteps
|
|
87
|
+
label: Next Steps
|
|
88
|
+
valueType: string
|
|
89
|
+
inputType: textarea
|
|
90
|
+
- slug: task
|
|
91
|
+
displayName: Task
|
|
92
|
+
icon: check-square
|
|
93
|
+
color: green
|
|
94
|
+
description: ""
|
|
95
|
+
properties: []
|
|
96
|
+
- slug: note
|
|
97
|
+
displayName: Note
|
|
98
|
+
icon: file-text
|
|
99
|
+
color: yellow
|
|
100
|
+
description: ""
|
|
101
|
+
properties: []
|
|
102
|
+
- slug: person
|
|
103
|
+
displayName: Person
|
|
104
|
+
icon: user
|
|
105
|
+
color: amber
|
|
106
|
+
description: A person — contact or stakeholder.
|
|
107
|
+
properties:
|
|
108
|
+
- slug: source
|
|
109
|
+
label: Source
|
|
110
|
+
valueType: string
|
|
111
|
+
inputType: text
|
|
112
|
+
- slug: linkedinUrl
|
|
113
|
+
label: LinkedIn URL
|
|
114
|
+
valueType: string
|
|
115
|
+
inputType: url
|
|
116
|
+
- slug: lastContactDate
|
|
117
|
+
label: Last Contact Date
|
|
118
|
+
valueType: date
|
|
119
|
+
inputType: date
|
|
120
|
+
- slug: nextFollowUpDate
|
|
121
|
+
label: Next Follow-Up Date
|
|
122
|
+
valueType: date
|
|
123
|
+
inputType: date
|
|
124
|
+
- slug: estimatedValue
|
|
125
|
+
label: Estimated Value
|
|
126
|
+
valueType: number
|
|
127
|
+
inputType: number
|
|
128
|
+
- slug: icpScore
|
|
129
|
+
label: ICP Score
|
|
130
|
+
valueType: number
|
|
131
|
+
inputType: number
|
|
132
|
+
- slug: accountManager
|
|
133
|
+
label: Account Manager
|
|
134
|
+
valueType: string
|
|
135
|
+
inputType: text
|
|
136
|
+
- slug: inlineNote
|
|
137
|
+
label: Note
|
|
138
|
+
valueType: string
|
|
139
|
+
inputType: textarea
|
|
140
|
+
- slug: googleDriveUrl
|
|
141
|
+
label: Google Drive
|
|
142
|
+
valueType: string
|
|
143
|
+
inputType: url
|
|
144
|
+
- slug: whatsappUrl
|
|
145
|
+
label: WhatsApp
|
|
146
|
+
valueType: string
|
|
147
|
+
inputType: url
|
|
148
|
+
- slug: telegramUrl
|
|
149
|
+
label: Telegram
|
|
150
|
+
valueType: string
|
|
151
|
+
inputType: url
|
|
152
|
+
- slug: campaign
|
|
153
|
+
displayName: Campaign
|
|
154
|
+
icon: megaphone
|
|
155
|
+
color: indigo
|
|
156
|
+
description: A marketing or outreach campaign grouping leads
|
|
157
|
+
properties:
|
|
158
|
+
- slug: type
|
|
159
|
+
label: Type
|
|
160
|
+
valueType: string
|
|
161
|
+
inputType: select
|
|
162
|
+
enumValues:
|
|
163
|
+
- scoping
|
|
164
|
+
- outreach
|
|
165
|
+
- live
|
|
166
|
+
- partnership
|
|
167
|
+
- event
|
|
168
|
+
- other
|
|
169
|
+
- slug: status
|
|
170
|
+
label: Status
|
|
171
|
+
valueType: string
|
|
172
|
+
inputType: select
|
|
173
|
+
enumValues:
|
|
174
|
+
- draft
|
|
175
|
+
- active
|
|
176
|
+
- paused
|
|
177
|
+
- completed
|
|
178
|
+
- slug: color
|
|
179
|
+
label: Color
|
|
180
|
+
valueType: string
|
|
181
|
+
inputType: text
|
|
182
|
+
- slug: description
|
|
183
|
+
label: Description
|
|
184
|
+
valueType: string
|
|
185
|
+
inputType: textarea
|
|
186
|
+
- slug: startDate
|
|
187
|
+
label: Start Date
|
|
188
|
+
valueType: date
|
|
189
|
+
inputType: date
|
|
190
|
+
- slug: endDate
|
|
191
|
+
label: End Date
|
|
192
|
+
valueType: date
|
|
193
|
+
inputType: date
|
|
194
|
+
- slug: journey
|
|
195
|
+
displayName: Journey
|
|
196
|
+
icon: map
|
|
197
|
+
color: violet
|
|
198
|
+
description: A client journey along a consulting service path
|
|
199
|
+
properties:
|
|
200
|
+
- slug: pathId
|
|
201
|
+
label: Path ID
|
|
202
|
+
valueType: string
|
|
203
|
+
inputType: text
|
|
204
|
+
- slug: currentPhase
|
|
205
|
+
label: Current Phase
|
|
206
|
+
valueType: string
|
|
207
|
+
inputType: text
|
|
208
|
+
- slug: status
|
|
209
|
+
label: Status
|
|
210
|
+
valueType: string
|
|
211
|
+
inputType: select
|
|
212
|
+
enumValues:
|
|
213
|
+
- active
|
|
214
|
+
- completed
|
|
215
|
+
- paused
|
|
216
|
+
- slug: startedAt
|
|
217
|
+
label: Started At
|
|
218
|
+
valueType: date
|
|
219
|
+
inputType: date
|
|
220
|
+
- slug: dealId
|
|
221
|
+
label: Deal ID
|
|
222
|
+
valueType: string
|
|
223
|
+
inputType: text
|
|
224
|
+
- slug: dealName
|
|
225
|
+
label: Deal
|
|
226
|
+
valueType: string
|
|
227
|
+
inputType: text
|
|
228
|
+
- slug: personId
|
|
229
|
+
label: Person ID
|
|
230
|
+
valueType: string
|
|
231
|
+
inputType: text
|
|
232
|
+
- slug: personName
|
|
233
|
+
label: Person Name
|
|
234
|
+
valueType: string
|
|
235
|
+
inputType: text
|
|
236
|
+
- slug: pathTemplate
|
|
237
|
+
label: Path Template
|
|
238
|
+
valueType: string
|
|
239
|
+
inputType: text
|
|
240
|
+
- slug: isPathTemplate
|
|
241
|
+
label: Is Path Template
|
|
242
|
+
valueType: boolean
|
|
243
|
+
inputType: checkbox
|
|
244
|
+
- slug: conversation
|
|
245
|
+
displayName: Conversation
|
|
246
|
+
icon: message-circle
|
|
247
|
+
color: cyan
|
|
248
|
+
description: Unified messaging thread from any platform
|
|
249
|
+
properties:
|
|
250
|
+
- slug: platform
|
|
251
|
+
label: Platform
|
|
252
|
+
valueType: string
|
|
253
|
+
inputType: text
|
|
254
|
+
- slug: threadId
|
|
255
|
+
label: Thread ID
|
|
256
|
+
valueType: string
|
|
257
|
+
inputType: text
|
|
258
|
+
- slug: contactEntityId
|
|
259
|
+
label: Contact
|
|
260
|
+
valueType: string
|
|
261
|
+
inputType: text
|
|
262
|
+
- slug: accountId
|
|
263
|
+
label: Account
|
|
264
|
+
valueType: string
|
|
265
|
+
inputType: text
|
|
266
|
+
- slug: lastMessageAt
|
|
267
|
+
label: Last Message
|
|
268
|
+
valueType: string
|
|
269
|
+
inputType: text
|
|
270
|
+
- slug: lastMessagePreview
|
|
271
|
+
label: Preview
|
|
272
|
+
valueType: string
|
|
273
|
+
inputType: text
|
|
274
|
+
- slug: unread
|
|
275
|
+
label: Unread
|
|
276
|
+
valueType: boolean
|
|
277
|
+
inputType: checkbox
|
|
278
|
+
- slug: participantExternalId
|
|
279
|
+
label: Participant ID
|
|
280
|
+
valueType: string
|
|
281
|
+
inputType: text
|
|
282
|
+
- slug: document
|
|
283
|
+
displayName: Document
|
|
284
|
+
icon: file-text
|
|
285
|
+
color: slate
|
|
286
|
+
description: Proposals, contracts, invoices and other documents
|
|
287
|
+
properties:
|
|
288
|
+
- slug: type
|
|
289
|
+
label: Type
|
|
290
|
+
valueType: string
|
|
291
|
+
inputType: select
|
|
292
|
+
enumValues:
|
|
293
|
+
- proposal
|
|
294
|
+
- contract
|
|
295
|
+
- invoice
|
|
296
|
+
- other
|
|
297
|
+
- slug: status
|
|
298
|
+
label: Status
|
|
299
|
+
valueType: string
|
|
300
|
+
inputType: select
|
|
301
|
+
enumValues:
|
|
302
|
+
- draft
|
|
303
|
+
- sent
|
|
304
|
+
- signed
|
|
305
|
+
- archived
|
|
306
|
+
- slug: linkedContactId
|
|
307
|
+
label: Linked Contact ID
|
|
308
|
+
valueType: string
|
|
309
|
+
inputType: text
|
|
310
|
+
- slug: linkedContactName
|
|
311
|
+
label: Linked Contact
|
|
312
|
+
valueType: string
|
|
313
|
+
inputType: text
|
|
314
|
+
- slug: linkedCompanyId
|
|
315
|
+
label: Linked Company ID
|
|
316
|
+
valueType: string
|
|
317
|
+
inputType: text
|
|
318
|
+
- slug: linkedCompanyName
|
|
319
|
+
label: Linked Company
|
|
320
|
+
valueType: string
|
|
321
|
+
inputType: text
|
|
322
|
+
- slug: isTemplate
|
|
323
|
+
label: Is Template
|
|
324
|
+
valueType: boolean
|
|
325
|
+
inputType: checkbox
|
|
326
|
+
- slug: company
|
|
327
|
+
displayName: Company
|
|
328
|
+
icon: building-2
|
|
329
|
+
color: "#10B981"
|
|
330
|
+
description: Organizations you are selling to, partnering with, or tracking.
|
|
331
|
+
scope: WORKSPACE
|
|
332
|
+
properties:
|
|
333
|
+
- slug: source
|
|
334
|
+
label: Source
|
|
335
|
+
valueType: string
|
|
336
|
+
inputType: text
|
|
337
|
+
- slug: icpFit
|
|
338
|
+
label: ICP Fit
|
|
339
|
+
valueType: boolean
|
|
340
|
+
inputType: checkbox
|
|
341
|
+
- slug: revenue
|
|
342
|
+
label: Revenue
|
|
343
|
+
valueType: string
|
|
344
|
+
inputType: text
|
|
345
|
+
- slug: companySize
|
|
346
|
+
label: Company Size
|
|
347
|
+
valueType: string
|
|
348
|
+
inputType: select
|
|
349
|
+
enumValues:
|
|
350
|
+
- startup
|
|
351
|
+
- smb
|
|
352
|
+
- mid-market
|
|
353
|
+
- enterprise
|
|
354
|
+
- slug: company-status
|
|
355
|
+
label: Status
|
|
356
|
+
valueType: string
|
|
357
|
+
inputType: select
|
|
358
|
+
enumValues:
|
|
359
|
+
- Prospect
|
|
360
|
+
- Active
|
|
361
|
+
- Customer
|
|
362
|
+
- Churned
|
|
363
|
+
- Partner
|
|
364
|
+
- slug: industry
|
|
365
|
+
label: Industry
|
|
366
|
+
valueType: string
|
|
367
|
+
inputType: select
|
|
368
|
+
enumValues:
|
|
369
|
+
- SaaS
|
|
370
|
+
- Fintech
|
|
371
|
+
- Healthcare
|
|
372
|
+
- E-commerce
|
|
373
|
+
- Media
|
|
374
|
+
- Consulting
|
|
375
|
+
- Manufacturing
|
|
376
|
+
- Other
|
|
377
|
+
- slug: company-size
|
|
378
|
+
label: Team Size
|
|
379
|
+
valueType: string
|
|
380
|
+
inputType: select
|
|
381
|
+
enumValues:
|
|
382
|
+
- 1-10
|
|
383
|
+
- 11-50
|
|
384
|
+
- 51-200
|
|
385
|
+
- 201-500
|
|
386
|
+
- 500+
|
|
387
|
+
- slug: arr
|
|
388
|
+
label: ARR (€)
|
|
389
|
+
valueType: number
|
|
390
|
+
inputType: number
|
|
391
|
+
placeholder: Annual recurring revenue
|
|
392
|
+
- slug: website
|
|
393
|
+
label: Website
|
|
394
|
+
valueType: string
|
|
395
|
+
inputType: text
|
|
396
|
+
placeholder: https://...
|
|
397
|
+
constraints:
|
|
398
|
+
format: url
|
|
399
|
+
- slug: location
|
|
400
|
+
label: Location
|
|
401
|
+
valueType: string
|
|
402
|
+
inputType: text
|
|
403
|
+
placeholder: City, Country
|
|
404
|
+
- slug: health-score
|
|
405
|
+
label: Health Score
|
|
406
|
+
valueType: number
|
|
407
|
+
inputType: number
|
|
408
|
+
constraints:
|
|
409
|
+
min: 0
|
|
410
|
+
max: 100
|
|
411
|
+
- slug: account-owner
|
|
412
|
+
label: Account Owner
|
|
413
|
+
valueType: string
|
|
414
|
+
inputType: text
|
|
415
|
+
placeholder: Owner name
|
|
416
|
+
- slug: last-contact-date
|
|
417
|
+
label: Last Contact
|
|
418
|
+
valueType: date
|
|
419
|
+
- slug: company-tags
|
|
420
|
+
label: Tags
|
|
421
|
+
valueType: array
|
|
422
|
+
- slug: notes
|
|
423
|
+
label: Notes
|
|
424
|
+
valueType: string
|
|
425
|
+
inputType: text
|
|
426
|
+
placeholder: Context, history, key info...
|
|
427
|
+
- slug: employees
|
|
428
|
+
label: Employee Count
|
|
429
|
+
valueType: number
|
|
430
|
+
constraints:
|
|
431
|
+
min: 0
|
|
432
|
+
- slug: deal
|
|
433
|
+
displayName: Deal
|
|
434
|
+
icon: trending-up
|
|
435
|
+
color: "#F59E0B"
|
|
436
|
+
description: Revenue opportunities moving through your pipeline.
|
|
437
|
+
scope: WORKSPACE
|
|
438
|
+
properties:
|
|
439
|
+
- slug: dealStage
|
|
440
|
+
label: Stage
|
|
441
|
+
valueType: string
|
|
442
|
+
inputType: select
|
|
443
|
+
enumValues:
|
|
444
|
+
- lead
|
|
445
|
+
- contacted
|
|
446
|
+
- qualifying
|
|
447
|
+
- proposal
|
|
448
|
+
- negotiating
|
|
449
|
+
- won
|
|
450
|
+
- lost
|
|
451
|
+
- inactive
|
|
452
|
+
- slug: source
|
|
453
|
+
label: Source
|
|
454
|
+
valueType: string
|
|
455
|
+
inputType: text
|
|
456
|
+
- slug: sourceCampaignId
|
|
457
|
+
label: Source Campaign
|
|
458
|
+
valueType: string
|
|
459
|
+
inputType: text
|
|
460
|
+
- slug: value
|
|
461
|
+
label: Value
|
|
462
|
+
valueType: number
|
|
463
|
+
inputType: number
|
|
464
|
+
- slug: owner
|
|
465
|
+
label: Owner
|
|
466
|
+
valueType: string
|
|
467
|
+
inputType: text
|
|
468
|
+
- slug: nextStep
|
|
469
|
+
label: Next Step
|
|
470
|
+
valueType: string
|
|
471
|
+
inputType: textarea
|
|
472
|
+
- slug: nextFollowUpDate
|
|
473
|
+
label: Next Follow-Up
|
|
474
|
+
valueType: date
|
|
475
|
+
inputType: date
|
|
476
|
+
- slug: closeDate
|
|
477
|
+
label: Expected Close
|
|
478
|
+
valueType: date
|
|
479
|
+
inputType: date
|
|
480
|
+
- slug: lostReason
|
|
481
|
+
label: Lost Reason
|
|
482
|
+
valueType: string
|
|
483
|
+
inputType: textarea
|
|
484
|
+
- slug: description
|
|
485
|
+
label: Description
|
|
486
|
+
valueType: string
|
|
487
|
+
inputType: textarea
|
|
488
|
+
- slug: stage
|
|
489
|
+
label: Stage
|
|
490
|
+
valueType: string
|
|
491
|
+
inputType: select
|
|
492
|
+
enumValues:
|
|
493
|
+
- Prospecting
|
|
494
|
+
- Qualified
|
|
495
|
+
- Proposal
|
|
496
|
+
- Negotiation
|
|
497
|
+
- Closed Won
|
|
498
|
+
- Closed Lost
|
|
499
|
+
- slug: deal-value
|
|
500
|
+
label: Value (€)
|
|
501
|
+
valueType: number
|
|
502
|
+
inputType: number
|
|
503
|
+
constraints:
|
|
504
|
+
min: 0
|
|
505
|
+
- slug: probability
|
|
506
|
+
label: Win Probability (%)
|
|
507
|
+
valueType: number
|
|
508
|
+
inputType: number
|
|
509
|
+
constraints:
|
|
510
|
+
min: 0
|
|
511
|
+
max: 100
|
|
512
|
+
- slug: close-date
|
|
513
|
+
label: Expected Close
|
|
514
|
+
valueType: date
|
|
515
|
+
- slug: deal-type
|
|
516
|
+
label: Type
|
|
517
|
+
valueType: string
|
|
518
|
+
inputType: select
|
|
519
|
+
enumValues:
|
|
520
|
+
- New Business
|
|
521
|
+
- Expansion
|
|
522
|
+
- Renewal
|
|
523
|
+
- Partnership
|
|
524
|
+
- slug: deal-company
|
|
525
|
+
label: Company
|
|
526
|
+
valueType: entity_id
|
|
527
|
+
- slug: deal-contact
|
|
528
|
+
label: Primary Contact
|
|
529
|
+
valueType: entity_id
|
|
530
|
+
- slug: deal-owner
|
|
531
|
+
label: Owner
|
|
532
|
+
valueType: string
|
|
533
|
+
inputType: text
|
|
534
|
+
placeholder: Deal owner
|
|
535
|
+
- slug: next-action
|
|
536
|
+
label: Next Action
|
|
537
|
+
valueType: string
|
|
538
|
+
inputType: text
|
|
539
|
+
placeholder: What needs to happen next?
|
|
540
|
+
- slug: next-action-date
|
|
541
|
+
label: Next Action Date
|
|
542
|
+
valueType: date
|
|
543
|
+
- slug: deal-source
|
|
544
|
+
label: Source
|
|
545
|
+
valueType: string
|
|
546
|
+
inputType: select
|
|
547
|
+
enumValues:
|
|
548
|
+
- Inbound
|
|
549
|
+
- Outbound
|
|
550
|
+
- Referral
|
|
551
|
+
- Partner
|
|
552
|
+
- Event
|
|
553
|
+
- Other
|
|
554
|
+
- slug: lost-reason
|
|
555
|
+
label: Lost Reason
|
|
556
|
+
valueType: string
|
|
557
|
+
inputType: select
|
|
558
|
+
enumValues:
|
|
559
|
+
- Price
|
|
560
|
+
- Competitor
|
|
561
|
+
- No Budget
|
|
562
|
+
- No Need
|
|
563
|
+
- Timing
|
|
564
|
+
- Unresponsive
|
|
565
|
+
- Other
|
|
566
|
+
- slug: deal-tags
|
|
567
|
+
label: Tags
|
|
568
|
+
valueType: array
|
|
569
|
+
- slug: notes
|
|
570
|
+
label: Notes
|
|
571
|
+
valueType: string
|
|
572
|
+
inputType: textarea
|
|
573
|
+
- slug: client
|
|
574
|
+
displayName: Client
|
|
575
|
+
icon: briefcase
|
|
576
|
+
color: emerald
|
|
577
|
+
description: An active commercial relationship — created when a deal is won.
|
|
578
|
+
properties:
|
|
579
|
+
- slug: clientStatus
|
|
580
|
+
label: Status
|
|
581
|
+
valueType: string
|
|
582
|
+
inputType: select
|
|
583
|
+
enumValues:
|
|
584
|
+
- active
|
|
585
|
+
- paused
|
|
586
|
+
- churned
|
|
587
|
+
- slug: accountManager
|
|
588
|
+
label: Account Manager
|
|
589
|
+
valueType: string
|
|
590
|
+
inputType: text
|
|
591
|
+
- slug: engagementStartDate
|
|
592
|
+
label: Engagement Start
|
|
593
|
+
valueType: date
|
|
594
|
+
inputType: date
|
|
595
|
+
- slug: satisfactionScore
|
|
596
|
+
label: Satisfaction
|
|
597
|
+
valueType: number
|
|
598
|
+
inputType: number
|
|
599
|
+
- slug: lifetimeValue
|
|
600
|
+
label: Lifetime Value
|
|
601
|
+
valueType: number
|
|
602
|
+
inputType: number
|
|
603
|
+
- slug: notes
|
|
604
|
+
label: Notes
|
|
605
|
+
valueType: string
|
|
606
|
+
inputType: textarea
|
|
607
|
+
- slug: contractValue
|
|
608
|
+
label: Contract Value
|
|
609
|
+
valueType: number
|
|
610
|
+
inputType: number
|
|
611
|
+
- slug: renewalDate
|
|
612
|
+
label: Renewal Date
|
|
613
|
+
valueType: date
|
|
614
|
+
inputType: date
|
|
615
|
+
- slug: healthScore
|
|
616
|
+
label: Health
|
|
617
|
+
valueType: string
|
|
618
|
+
inputType: select
|
|
619
|
+
enumValues:
|
|
620
|
+
- healthy
|
|
621
|
+
- at_risk
|
|
622
|
+
- critical
|
|
623
|
+
- slug: contact
|
|
624
|
+
displayName: Contact
|
|
625
|
+
icon: user
|
|
626
|
+
color: "#6366F1"
|
|
627
|
+
description: People you interact with — leads, champions, decision-makers, partners.
|
|
628
|
+
scope: WORKSPACE
|
|
629
|
+
properties:
|
|
630
|
+
- slug: contact-role
|
|
631
|
+
label: Role
|
|
632
|
+
valueType: string
|
|
633
|
+
inputType: select
|
|
634
|
+
enumValues:
|
|
635
|
+
- Lead
|
|
636
|
+
- Champion
|
|
637
|
+
- Decision Maker
|
|
638
|
+
- Influencer
|
|
639
|
+
- Partner
|
|
640
|
+
- Advisor
|
|
641
|
+
- Other
|
|
642
|
+
- slug: contact-status
|
|
643
|
+
label: Status
|
|
644
|
+
valueType: string
|
|
645
|
+
inputType: select
|
|
646
|
+
enumValues:
|
|
647
|
+
- Active
|
|
648
|
+
- Nurturing
|
|
649
|
+
- Cold
|
|
650
|
+
- Unresponsive
|
|
651
|
+
- Converted
|
|
652
|
+
- Archived
|
|
653
|
+
- slug: job-title
|
|
654
|
+
label: Job Title
|
|
655
|
+
valueType: string
|
|
656
|
+
inputType: text
|
|
657
|
+
placeholder: e.g. Head of Product
|
|
658
|
+
- slug: company-name
|
|
659
|
+
label: Company
|
|
660
|
+
valueType: entity_id
|
|
661
|
+
- slug: email
|
|
662
|
+
label: Email
|
|
663
|
+
valueType: string
|
|
664
|
+
inputType: text
|
|
665
|
+
placeholder: name@company.com
|
|
666
|
+
constraints:
|
|
667
|
+
format: email
|
|
668
|
+
- slug: phone
|
|
669
|
+
label: Phone
|
|
670
|
+
valueType: string
|
|
671
|
+
inputType: text
|
|
672
|
+
placeholder: +33 6...
|
|
673
|
+
- slug: linkedin
|
|
674
|
+
label: LinkedIn
|
|
675
|
+
valueType: string
|
|
676
|
+
inputType: text
|
|
677
|
+
placeholder: https://linkedin.com/in/...
|
|
678
|
+
constraints:
|
|
679
|
+
format: url
|
|
680
|
+
- slug: lead-score
|
|
681
|
+
label: Lead Score
|
|
682
|
+
valueType: number
|
|
683
|
+
inputType: number
|
|
684
|
+
constraints:
|
|
685
|
+
min: 0
|
|
686
|
+
max: 100
|
|
687
|
+
- slug: contact-source
|
|
688
|
+
label: Source
|
|
689
|
+
valueType: string
|
|
690
|
+
inputType: select
|
|
691
|
+
enumValues:
|
|
692
|
+
- Inbound
|
|
693
|
+
- Outbound
|
|
694
|
+
- Referral
|
|
695
|
+
- Event
|
|
696
|
+
- LinkedIn
|
|
697
|
+
- Cold Email
|
|
698
|
+
- Other
|
|
699
|
+
- slug: contact-owner
|
|
700
|
+
label: Owner
|
|
701
|
+
valueType: string
|
|
702
|
+
inputType: text
|
|
703
|
+
placeholder: Assigned team member
|
|
704
|
+
- slug: last-interaction
|
|
705
|
+
label: Last Interaction
|
|
706
|
+
valueType: date
|
|
707
|
+
- slug: contact-tags
|
|
708
|
+
label: Tags
|
|
709
|
+
valueType: array
|
|
710
|
+
- slug: role
|
|
711
|
+
label: Role / Title
|
|
712
|
+
valueType: string
|
|
713
|
+
- slug: department
|
|
714
|
+
label: Department
|
|
715
|
+
valueType: string
|
|
716
|
+
- slug: source
|
|
717
|
+
label: Lead Source
|
|
718
|
+
valueType: string
|
|
719
|
+
inputType: select
|
|
720
|
+
enumValues:
|
|
721
|
+
- referral
|
|
722
|
+
- website
|
|
723
|
+
- event
|
|
724
|
+
- cold-outreach
|
|
725
|
+
- other
|
|
726
|
+
- slug: last-contacted
|
|
727
|
+
label: Last Contacted
|
|
728
|
+
valueType: date
|
|
729
|
+
- slug: activity
|
|
730
|
+
displayName: Activity
|
|
731
|
+
icon: message-square
|
|
732
|
+
color: "#06B6D4"
|
|
733
|
+
description: Interactions and touchpoints — calls, emails, meetings, notes.
|
|
734
|
+
scope: WORKSPACE
|
|
735
|
+
properties:
|
|
736
|
+
- slug: activity-type
|
|
737
|
+
label: Type
|
|
738
|
+
valueType: string
|
|
739
|
+
inputType: select
|
|
740
|
+
enumValues:
|
|
741
|
+
- Call
|
|
742
|
+
- Email
|
|
743
|
+
- Meeting
|
|
744
|
+
- Demo
|
|
745
|
+
- Follow-up
|
|
746
|
+
- Note
|
|
747
|
+
- Proposal Sent
|
|
748
|
+
- Contract Sent
|
|
749
|
+
- slug: activity-date
|
|
750
|
+
label: Date
|
|
751
|
+
valueType: date
|
|
752
|
+
- slug: activity-status
|
|
753
|
+
label: Status
|
|
754
|
+
valueType: string
|
|
755
|
+
inputType: select
|
|
756
|
+
enumValues:
|
|
757
|
+
- Planned
|
|
758
|
+
- Completed
|
|
759
|
+
- Cancelled
|
|
760
|
+
- No Show
|
|
761
|
+
- slug: activity-outcome
|
|
762
|
+
label: Outcome
|
|
763
|
+
valueType: string
|
|
764
|
+
inputType: select
|
|
765
|
+
enumValues:
|
|
766
|
+
- Positive
|
|
767
|
+
- Neutral
|
|
768
|
+
- Negative
|
|
769
|
+
- Pending
|
|
770
|
+
- slug: related-company
|
|
771
|
+
label: Company
|
|
772
|
+
valueType: entity_id
|
|
773
|
+
- slug: related-contact
|
|
774
|
+
label: Contact
|
|
775
|
+
valueType: entity_id
|
|
776
|
+
- slug: related-deal
|
|
777
|
+
label: Deal
|
|
778
|
+
valueType: entity_id
|
|
779
|
+
- slug: activity-owner
|
|
780
|
+
label: Owner
|
|
781
|
+
valueType: string
|
|
782
|
+
inputType: text
|
|
783
|
+
placeholder: Who ran this activity?
|
|
784
|
+
- slug: summary
|
|
785
|
+
label: Summary
|
|
786
|
+
valueType: string
|
|
787
|
+
inputType: text
|
|
788
|
+
placeholder: What happened? Key takeaways...
|
|
789
|
+
- slug: duration-min
|
|
790
|
+
label: Duration (min)
|
|
791
|
+
valueType: number
|
|
792
|
+
inputType: number
|
|
793
|
+
constraints:
|
|
794
|
+
min: 0
|
|
795
|
+
- slug: pipeline
|
|
796
|
+
displayName: Pipeline
|
|
797
|
+
icon: layers
|
|
798
|
+
color: "#8B5CF6"
|
|
799
|
+
description: Named pipelines and their stage configurations for different sales motions.
|
|
800
|
+
scope: WORKSPACE
|
|
801
|
+
properties:
|
|
802
|
+
- slug: pipeline-status
|
|
803
|
+
label: Status
|
|
804
|
+
valueType: string
|
|
805
|
+
inputType: select
|
|
806
|
+
enumValues:
|
|
807
|
+
- Active
|
|
808
|
+
- Paused
|
|
809
|
+
- Archived
|
|
810
|
+
- slug: pipeline-type
|
|
811
|
+
label: Type
|
|
812
|
+
valueType: string
|
|
813
|
+
inputType: select
|
|
814
|
+
enumValues:
|
|
815
|
+
- New Business
|
|
816
|
+
- Expansion
|
|
817
|
+
- Renewal
|
|
818
|
+
- Partnerships
|
|
819
|
+
- slug: total-value
|
|
820
|
+
label: Total Pipeline Value (€)
|
|
821
|
+
valueType: number
|
|
822
|
+
inputType: number
|
|
823
|
+
- slug: deal-count
|
|
824
|
+
label: Open Deals
|
|
825
|
+
valueType: number
|
|
826
|
+
inputType: number
|
|
827
|
+
- slug: avg-cycle-days
|
|
828
|
+
label: Avg. Cycle (days)
|
|
829
|
+
valueType: number
|
|
830
|
+
inputType: number
|
|
831
|
+
- slug: win-rate
|
|
832
|
+
label: Win Rate (%)
|
|
833
|
+
valueType: number
|
|
834
|
+
inputType: number
|
|
835
|
+
constraints:
|
|
836
|
+
min: 0
|
|
837
|
+
max: 100
|
|
838
|
+
- slug: pipeline-owner
|
|
839
|
+
label: Owner
|
|
840
|
+
valueType: string
|
|
841
|
+
inputType: text
|
|
842
|
+
- slug: quarter-target
|
|
843
|
+
label: Quarter Target (€)
|
|
844
|
+
valueType: number
|
|
845
|
+
inputType: number
|
|
846
|
+
views:
|
|
847
|
+
- name: Pipeline
|
|
848
|
+
type: kanban
|
|
849
|
+
scopeProfileSlug: deal
|
|
850
|
+
config:
|
|
851
|
+
groupBy: dealStage
|
|
852
|
+
cardFields:
|
|
853
|
+
- value
|
|
854
|
+
- owner
|
|
855
|
+
- source
|
|
856
|
+
- nextFollowUpDate
|
|
857
|
+
- name: Deals
|
|
858
|
+
type: table
|
|
859
|
+
scopeProfileSlug: deal
|
|
860
|
+
config:
|
|
861
|
+
columns:
|
|
862
|
+
- title
|
|
863
|
+
- dealStage
|
|
864
|
+
- value
|
|
865
|
+
- owner
|
|
866
|
+
- source
|
|
867
|
+
- closeDate
|
|
868
|
+
- nextFollowUpDate
|
|
869
|
+
- name: People
|
|
870
|
+
type: table
|
|
871
|
+
scopeProfileSlug: person
|
|
872
|
+
config:
|
|
873
|
+
columns:
|
|
874
|
+
- title
|
|
875
|
+
- company
|
|
876
|
+
- email
|
|
877
|
+
- icpScore
|
|
878
|
+
- nextFollowUpDate
|
|
879
|
+
- name: Activity
|
|
880
|
+
type: list
|
|
881
|
+
scopeProfileSlugs:
|
|
882
|
+
- event
|
|
883
|
+
- task
|
|
884
|
+
- note
|
|
885
|
+
config:
|
|
886
|
+
sortBy: createdAt
|
|
887
|
+
sortDir: desc
|
|
888
|
+
- name: Campaigns
|
|
889
|
+
type: table
|
|
890
|
+
scopeProfileSlug: campaign
|
|
891
|
+
config:
|
|
892
|
+
columns:
|
|
893
|
+
- title
|
|
894
|
+
- type
|
|
895
|
+
- status
|
|
896
|
+
- startDate
|
|
897
|
+
- endDate
|
|
898
|
+
- name: Journeys
|
|
899
|
+
type: table
|
|
900
|
+
scopeProfileSlug: journey
|
|
901
|
+
config:
|
|
902
|
+
columns:
|
|
903
|
+
- title
|
|
904
|
+
- pathId
|
|
905
|
+
- currentPhase
|
|
906
|
+
- status
|
|
907
|
+
- startedAt
|
|
908
|
+
- dealName
|
|
909
|
+
- name: Tasks
|
|
910
|
+
type: list
|
|
911
|
+
scopeProfileSlug: task
|
|
912
|
+
config:
|
|
913
|
+
sortBy: createdAt
|
|
914
|
+
sortDir: desc
|
|
915
|
+
- name: Documents
|
|
916
|
+
type: table
|
|
917
|
+
scopeProfileSlug: document
|
|
918
|
+
config:
|
|
919
|
+
columns:
|
|
920
|
+
- title
|
|
921
|
+
- type
|
|
922
|
+
- status
|
|
923
|
+
- linkedContactName
|
|
924
|
+
- linkedCompanyName
|
|
925
|
+
- name: Clients
|
|
926
|
+
type: table
|
|
927
|
+
scopeProfileSlug: client
|
|
928
|
+
config:
|
|
929
|
+
columns:
|
|
930
|
+
- title
|
|
931
|
+
- clientStatus
|
|
932
|
+
- accountManager
|
|
933
|
+
- engagementStartDate
|
|
934
|
+
- lifetimeValue
|
|
935
|
+
- name: Pipeline Board
|
|
936
|
+
type: kanban
|
|
937
|
+
scopeProfileSlug: deal
|
|
938
|
+
config:
|
|
939
|
+
groupByField: stage
|
|
940
|
+
cardFields:
|
|
941
|
+
- deal-value
|
|
942
|
+
- deal-company
|
|
943
|
+
- deal-contact
|
|
944
|
+
- close-date
|
|
945
|
+
- probability
|
|
946
|
+
- name: All Deals
|
|
947
|
+
type: table
|
|
948
|
+
scopeProfileSlug: deal
|
|
949
|
+
config:
|
|
950
|
+
visibleColumns:
|
|
951
|
+
- stage
|
|
952
|
+
- deal-value
|
|
953
|
+
- probability
|
|
954
|
+
- close-date
|
|
955
|
+
- deal-company
|
|
956
|
+
- deal-owner
|
|
957
|
+
- next-action
|
|
958
|
+
- deal-type
|
|
959
|
+
defaultSort:
|
|
960
|
+
field: close-date
|
|
961
|
+
direction: asc
|
|
962
|
+
rowHeight: default
|
|
963
|
+
- name: Deal Timeline
|
|
964
|
+
type: timeline
|
|
965
|
+
scopeProfileSlug: deal
|
|
966
|
+
config:
|
|
967
|
+
timeField: close-date
|
|
968
|
+
groupByField: stage
|
|
969
|
+
- name: Contacts
|
|
970
|
+
type: table
|
|
971
|
+
scopeProfileSlug: contact
|
|
972
|
+
config:
|
|
973
|
+
visibleColumns:
|
|
974
|
+
- contact-role
|
|
975
|
+
- contact-status
|
|
976
|
+
- job-title
|
|
977
|
+
- company-name
|
|
978
|
+
- email
|
|
979
|
+
- lead-score
|
|
980
|
+
- last-interaction
|
|
981
|
+
- contact-owner
|
|
982
|
+
defaultSort:
|
|
983
|
+
field: lead-score
|
|
984
|
+
direction: desc
|
|
985
|
+
rowHeight: default
|
|
986
|
+
- name: Contacts Board
|
|
987
|
+
type: kanban
|
|
988
|
+
scopeProfileSlug: contact
|
|
989
|
+
config:
|
|
990
|
+
groupByField: contact-status
|
|
991
|
+
cardFields:
|
|
992
|
+
- contact-role
|
|
993
|
+
- job-title
|
|
994
|
+
- company-name
|
|
995
|
+
- lead-score
|
|
996
|
+
- name: Companies
|
|
997
|
+
type: table
|
|
998
|
+
scopeProfileSlug: company
|
|
999
|
+
config:
|
|
1000
|
+
visibleColumns:
|
|
1001
|
+
- company-status
|
|
1002
|
+
- industry
|
|
1003
|
+
- company-size
|
|
1004
|
+
- arr
|
|
1005
|
+
- health-score
|
|
1006
|
+
- account-owner
|
|
1007
|
+
- last-contact-date
|
|
1008
|
+
- location
|
|
1009
|
+
defaultSort:
|
|
1010
|
+
field: arr
|
|
1011
|
+
direction: desc
|
|
1012
|
+
rowHeight: default
|
|
1013
|
+
- name: Companies Board
|
|
1014
|
+
type: kanban
|
|
1015
|
+
scopeProfileSlug: company
|
|
1016
|
+
config:
|
|
1017
|
+
groupByField: company-status
|
|
1018
|
+
cardFields:
|
|
1019
|
+
- industry
|
|
1020
|
+
- company-size
|
|
1021
|
+
- arr
|
|
1022
|
+
- account-owner
|
|
1023
|
+
- name: Activity Log
|
|
1024
|
+
type: table
|
|
1025
|
+
scopeProfileSlug: activity
|
|
1026
|
+
config:
|
|
1027
|
+
visibleColumns:
|
|
1028
|
+
- activity-type
|
|
1029
|
+
- activity-date
|
|
1030
|
+
- activity-status
|
|
1031
|
+
- activity-outcome
|
|
1032
|
+
- related-company
|
|
1033
|
+
- related-contact
|
|
1034
|
+
- related-deal
|
|
1035
|
+
- activity-owner
|
|
1036
|
+
defaultSort:
|
|
1037
|
+
field: activity-date
|
|
1038
|
+
direction: desc
|
|
1039
|
+
rowHeight: compact
|
|
1040
|
+
- name: Activity Calendar
|
|
1041
|
+
type: calendar
|
|
1042
|
+
scopeProfileSlug: activity
|
|
1043
|
+
config:
|
|
1044
|
+
dateField: activity-date
|
|
1045
|
+
colorField: activity-type
|
|
1046
|
+
- name: Relationship Graph
|
|
1047
|
+
type: graph
|
|
1048
|
+
scopeProfileSlugs:
|
|
1049
|
+
- company
|
|
1050
|
+
- contact
|
|
1051
|
+
- deal
|
|
1052
|
+
config:
|
|
1053
|
+
layout: force
|
|
1054
|
+
showRelations: true
|
|
1055
|
+
- name: Pipelines
|
|
1056
|
+
type: table
|
|
1057
|
+
scopeProfileSlug: pipeline
|
|
1058
|
+
config:
|
|
1059
|
+
visibleColumns:
|
|
1060
|
+
- pipeline-status
|
|
1061
|
+
- pipeline-type
|
|
1062
|
+
- total-value
|
|
1063
|
+
- deal-count
|
|
1064
|
+
- win-rate
|
|
1065
|
+
- avg-cycle-days
|
|
1066
|
+
- quarter-target
|
|
1067
|
+
- pipeline-owner
|
|
1068
|
+
rowHeight: default
|
|
1069
|
+
- name: Deal
|
|
1070
|
+
type: bento
|
|
1071
|
+
scopeProfileSlug: deal
|
|
1072
|
+
config:
|
|
1073
|
+
layout: bento
|
|
1074
|
+
blocks:
|
|
1075
|
+
- id: deal-header
|
|
1076
|
+
kind: widget
|
|
1077
|
+
widgetType: section-header
|
|
1078
|
+
pos:
|
|
1079
|
+
x: 0
|
|
1080
|
+
"y": 0
|
|
1081
|
+
w: 12
|
|
1082
|
+
h: 2
|
|
1083
|
+
config:
|
|
1084
|
+
title: Deals
|
|
1085
|
+
icon: TrendingUp
|
|
1086
|
+
color: "#F59E0B"
|
|
1087
|
+
profileSlug: deal
|
|
1088
|
+
- id: deal-count
|
|
1089
|
+
kind: widget
|
|
1090
|
+
widgetType: stat-card
|
|
1091
|
+
pos:
|
|
1092
|
+
x: 0
|
|
1093
|
+
"y": 2
|
|
1094
|
+
w: 3
|
|
1095
|
+
h: 3
|
|
1096
|
+
config:
|
|
1097
|
+
label: Total Deals
|
|
1098
|
+
aggregation: count
|
|
1099
|
+
profileSlug: deal
|
|
1100
|
+
color: "#F59E0B"
|
|
1101
|
+
- id: deal-value
|
|
1102
|
+
kind: widget
|
|
1103
|
+
widgetType: stat-card
|
|
1104
|
+
pos:
|
|
1105
|
+
x: 3
|
|
1106
|
+
"y": 2
|
|
1107
|
+
w: 3
|
|
1108
|
+
h: 3
|
|
1109
|
+
config:
|
|
1110
|
+
label: Pipeline Value
|
|
1111
|
+
aggregation: sum
|
|
1112
|
+
field: deal-value
|
|
1113
|
+
profileSlug: deal
|
|
1114
|
+
color: "#F59E0B"
|
|
1115
|
+
- id: deal-pipeline
|
|
1116
|
+
kind: view
|
|
1117
|
+
viewName: Pipeline Board
|
|
1118
|
+
pos:
|
|
1119
|
+
x: 0
|
|
1120
|
+
"y": 9
|
|
1121
|
+
w: 12
|
|
1122
|
+
h: 8
|
|
1123
|
+
- id: deal-all
|
|
1124
|
+
kind: view
|
|
1125
|
+
viewName: All Deals
|
|
1126
|
+
pos:
|
|
1127
|
+
x: 0
|
|
1128
|
+
"y": 19
|
|
1129
|
+
w: 12
|
|
1130
|
+
h: 8
|
|
1131
|
+
- id: deal-spotlight
|
|
1132
|
+
kind: widget
|
|
1133
|
+
widgetType: entity-spotlight
|
|
1134
|
+
pos:
|
|
1135
|
+
x: 0
|
|
1136
|
+
"y": 5
|
|
1137
|
+
w: 5
|
|
1138
|
+
h: 4
|
|
1139
|
+
config:
|
|
1140
|
+
profileSlug: deal
|
|
1141
|
+
seed: daily
|
|
1142
|
+
layout: detail
|
|
1143
|
+
subtitleField: stage
|
|
1144
|
+
color: "#F59E0B"
|
|
1145
|
+
- id: deal-activities
|
|
1146
|
+
kind: widget
|
|
1147
|
+
widgetType: entity-list
|
|
1148
|
+
pos:
|
|
1149
|
+
x: 5
|
|
1150
|
+
"y": 5
|
|
1151
|
+
w: 7
|
|
1152
|
+
h: 4
|
|
1153
|
+
config:
|
|
1154
|
+
profileSlug: activity
|
|
1155
|
+
title: Recent Activities
|
|
1156
|
+
limit: 6
|
|
1157
|
+
variant: compact
|
|
1158
|
+
breakpoints:
|
|
1159
|
+
lg:
|
|
1160
|
+
cols: 12
|
|
1161
|
+
rowHeight: 60
|
|
1162
|
+
gap: 12
|
|
1163
|
+
md:
|
|
1164
|
+
cols: 10
|
|
1165
|
+
rowHeight: 60
|
|
1166
|
+
gap: 12
|
|
1167
|
+
sm:
|
|
1168
|
+
cols: 6
|
|
1169
|
+
rowHeight: 60
|
|
1170
|
+
gap: 12
|
|
1171
|
+
xs:
|
|
1172
|
+
cols: 4
|
|
1173
|
+
rowHeight: 60
|
|
1174
|
+
gap: 12
|
|
1175
|
+
xxs:
|
|
1176
|
+
cols: 2
|
|
1177
|
+
rowHeight: 60
|
|
1178
|
+
gap: 12
|
|
1179
|
+
- name: Contact
|
|
1180
|
+
type: bento
|
|
1181
|
+
scopeProfileSlug: contact
|
|
1182
|
+
config:
|
|
1183
|
+
layout: bento
|
|
1184
|
+
blocks:
|
|
1185
|
+
- id: contact-header
|
|
1186
|
+
kind: widget
|
|
1187
|
+
widgetType: section-header
|
|
1188
|
+
pos:
|
|
1189
|
+
x: 0
|
|
1190
|
+
"y": 0
|
|
1191
|
+
w: 12
|
|
1192
|
+
h: 2
|
|
1193
|
+
config:
|
|
1194
|
+
title: Contacts
|
|
1195
|
+
icon: User
|
|
1196
|
+
color: "#6366F1"
|
|
1197
|
+
profileSlug: contact
|
|
1198
|
+
- id: contact-count
|
|
1199
|
+
kind: widget
|
|
1200
|
+
widgetType: stat-card
|
|
1201
|
+
pos:
|
|
1202
|
+
x: 0
|
|
1203
|
+
"y": 2
|
|
1204
|
+
w: 3
|
|
1205
|
+
h: 3
|
|
1206
|
+
config:
|
|
1207
|
+
label: Total Contacts
|
|
1208
|
+
aggregation: count
|
|
1209
|
+
profileSlug: contact
|
|
1210
|
+
color: "#6366F1"
|
|
1211
|
+
- id: contact-board
|
|
1212
|
+
kind: view
|
|
1213
|
+
viewName: Contacts Board
|
|
1214
|
+
pos:
|
|
1215
|
+
x: 0
|
|
1216
|
+
"y": 9
|
|
1217
|
+
w: 12
|
|
1218
|
+
h: 8
|
|
1219
|
+
- id: contact-table
|
|
1220
|
+
kind: view
|
|
1221
|
+
viewName: Contacts
|
|
1222
|
+
pos:
|
|
1223
|
+
x: 0
|
|
1224
|
+
"y": 19
|
|
1225
|
+
w: 12
|
|
1226
|
+
h: 8
|
|
1227
|
+
- id: contact-mentors
|
|
1228
|
+
kind: widget
|
|
1229
|
+
widgetType: entity-count
|
|
1230
|
+
pos:
|
|
1231
|
+
x: 3
|
|
1232
|
+
"y": 2
|
|
1233
|
+
w: 3
|
|
1234
|
+
h: 3
|
|
1235
|
+
config:
|
|
1236
|
+
profileSlug: contact
|
|
1237
|
+
label: Mentors
|
|
1238
|
+
icon: Star
|
|
1239
|
+
filter:
|
|
1240
|
+
relationship: mentor
|
|
1241
|
+
color: "#6366F1"
|
|
1242
|
+
- id: contact-colleagues
|
|
1243
|
+
kind: widget
|
|
1244
|
+
widgetType: entity-count
|
|
1245
|
+
pos:
|
|
1246
|
+
x: 6
|
|
1247
|
+
"y": 2
|
|
1248
|
+
w: 3
|
|
1249
|
+
h: 3
|
|
1250
|
+
config:
|
|
1251
|
+
profileSlug: contact
|
|
1252
|
+
label: Colleagues
|
|
1253
|
+
icon: Users
|
|
1254
|
+
filter:
|
|
1255
|
+
relationship: colleague
|
|
1256
|
+
color: "#8B5CF6"
|
|
1257
|
+
- id: contact-spotlight
|
|
1258
|
+
kind: widget
|
|
1259
|
+
widgetType: entity-spotlight
|
|
1260
|
+
pos:
|
|
1261
|
+
x: 0
|
|
1262
|
+
"y": 5
|
|
1263
|
+
w: 6
|
|
1264
|
+
h: 4
|
|
1265
|
+
config:
|
|
1266
|
+
profileSlug: contact
|
|
1267
|
+
seed: random
|
|
1268
|
+
layout: detail
|
|
1269
|
+
subtitleField: company
|
|
1270
|
+
color: "#6366F1"
|
|
1271
|
+
- id: contact-deals
|
|
1272
|
+
kind: widget
|
|
1273
|
+
widgetType: entity-list
|
|
1274
|
+
pos:
|
|
1275
|
+
x: 6
|
|
1276
|
+
"y": 5
|
|
1277
|
+
w: 6
|
|
1278
|
+
h: 4
|
|
1279
|
+
config:
|
|
1280
|
+
profileSlug: deal
|
|
1281
|
+
title: Recent Deals
|
|
1282
|
+
limit: 6
|
|
1283
|
+
variant: compact
|
|
1284
|
+
breakpoints:
|
|
1285
|
+
lg:
|
|
1286
|
+
cols: 12
|
|
1287
|
+
rowHeight: 60
|
|
1288
|
+
gap: 12
|
|
1289
|
+
md:
|
|
1290
|
+
cols: 10
|
|
1291
|
+
rowHeight: 60
|
|
1292
|
+
gap: 12
|
|
1293
|
+
sm:
|
|
1294
|
+
cols: 6
|
|
1295
|
+
rowHeight: 60
|
|
1296
|
+
gap: 12
|
|
1297
|
+
xs:
|
|
1298
|
+
cols: 4
|
|
1299
|
+
rowHeight: 60
|
|
1300
|
+
gap: 12
|
|
1301
|
+
xxs:
|
|
1302
|
+
cols: 2
|
|
1303
|
+
rowHeight: 60
|
|
1304
|
+
gap: 12
|
|
1305
|
+
- name: Company
|
|
1306
|
+
type: bento
|
|
1307
|
+
scopeProfileSlug: company
|
|
1308
|
+
config:
|
|
1309
|
+
layout: bento
|
|
1310
|
+
blocks:
|
|
1311
|
+
- id: company-header
|
|
1312
|
+
kind: widget
|
|
1313
|
+
widgetType: section-header
|
|
1314
|
+
pos:
|
|
1315
|
+
x: 0
|
|
1316
|
+
"y": 0
|
|
1317
|
+
w: 12
|
|
1318
|
+
h: 2
|
|
1319
|
+
config:
|
|
1320
|
+
title: Companies
|
|
1321
|
+
icon: Building2
|
|
1322
|
+
color: "#10B981"
|
|
1323
|
+
profileSlug: company
|
|
1324
|
+
- id: company-count
|
|
1325
|
+
kind: widget
|
|
1326
|
+
widgetType: stat-card
|
|
1327
|
+
pos:
|
|
1328
|
+
x: 0
|
|
1329
|
+
"y": 2
|
|
1330
|
+
w: 3
|
|
1331
|
+
h: 3
|
|
1332
|
+
config:
|
|
1333
|
+
label: Total Companies
|
|
1334
|
+
aggregation: count
|
|
1335
|
+
profileSlug: company
|
|
1336
|
+
color: "#10B981"
|
|
1337
|
+
- id: company-board
|
|
1338
|
+
kind: view
|
|
1339
|
+
viewName: Companies Board
|
|
1340
|
+
pos:
|
|
1341
|
+
x: 0
|
|
1342
|
+
"y": 9
|
|
1343
|
+
w: 12
|
|
1344
|
+
h: 8
|
|
1345
|
+
- id: company-table
|
|
1346
|
+
kind: view
|
|
1347
|
+
viewName: Companies
|
|
1348
|
+
pos:
|
|
1349
|
+
x: 0
|
|
1350
|
+
"y": 19
|
|
1351
|
+
w: 12
|
|
1352
|
+
h: 8
|
|
1353
|
+
- id: company-active-deals
|
|
1354
|
+
kind: widget
|
|
1355
|
+
widgetType: entity-count
|
|
1356
|
+
pos:
|
|
1357
|
+
x: 3
|
|
1358
|
+
"y": 2
|
|
1359
|
+
w: 3
|
|
1360
|
+
h: 3
|
|
1361
|
+
config:
|
|
1362
|
+
profileSlug: deal
|
|
1363
|
+
label: Active Deals
|
|
1364
|
+
icon: TrendingUp
|
|
1365
|
+
filter:
|
|
1366
|
+
stage: negotiation
|
|
1367
|
+
color: "#10B981"
|
|
1368
|
+
- id: company-key-contacts
|
|
1369
|
+
kind: widget
|
|
1370
|
+
widgetType: entity-count
|
|
1371
|
+
pos:
|
|
1372
|
+
x: 6
|
|
1373
|
+
"y": 2
|
|
1374
|
+
w: 3
|
|
1375
|
+
h: 3
|
|
1376
|
+
config:
|
|
1377
|
+
profileSlug: contact
|
|
1378
|
+
label: Key Contacts
|
|
1379
|
+
icon: Users
|
|
1380
|
+
color: "#6366F1"
|
|
1381
|
+
- id: company-contacts
|
|
1382
|
+
kind: widget
|
|
1383
|
+
widgetType: entity-list
|
|
1384
|
+
pos:
|
|
1385
|
+
x: 0
|
|
1386
|
+
"y": 5
|
|
1387
|
+
w: 6
|
|
1388
|
+
h: 4
|
|
1389
|
+
config:
|
|
1390
|
+
profileSlug: contact
|
|
1391
|
+
title: Contacts
|
|
1392
|
+
limit: 6
|
|
1393
|
+
variant: compact
|
|
1394
|
+
- id: company-deals
|
|
1395
|
+
kind: widget
|
|
1396
|
+
widgetType: entity-list
|
|
1397
|
+
pos:
|
|
1398
|
+
x: 6
|
|
1399
|
+
"y": 5
|
|
1400
|
+
w: 6
|
|
1401
|
+
h: 4
|
|
1402
|
+
config:
|
|
1403
|
+
profileSlug: deal
|
|
1404
|
+
title: Deals
|
|
1405
|
+
limit: 6
|
|
1406
|
+
variant: compact
|
|
1407
|
+
breakpoints:
|
|
1408
|
+
lg:
|
|
1409
|
+
cols: 12
|
|
1410
|
+
rowHeight: 60
|
|
1411
|
+
gap: 12
|
|
1412
|
+
md:
|
|
1413
|
+
cols: 10
|
|
1414
|
+
rowHeight: 60
|
|
1415
|
+
gap: 12
|
|
1416
|
+
sm:
|
|
1417
|
+
cols: 6
|
|
1418
|
+
rowHeight: 60
|
|
1419
|
+
gap: 12
|
|
1420
|
+
xs:
|
|
1421
|
+
cols: 4
|
|
1422
|
+
rowHeight: 60
|
|
1423
|
+
gap: 12
|
|
1424
|
+
xxs:
|
|
1425
|
+
cols: 2
|
|
1426
|
+
rowHeight: 60
|
|
1427
|
+
gap: 12
|
|
1428
|
+
- name: Activity Overview
|
|
1429
|
+
type: bento
|
|
1430
|
+
scopeProfileSlug: activity
|
|
1431
|
+
config:
|
|
1432
|
+
layout: bento
|
|
1433
|
+
blocks:
|
|
1434
|
+
- id: activity-header
|
|
1435
|
+
kind: widget
|
|
1436
|
+
widgetType: section-header
|
|
1437
|
+
pos:
|
|
1438
|
+
x: 0
|
|
1439
|
+
"y": 0
|
|
1440
|
+
w: 12
|
|
1441
|
+
h: 2
|
|
1442
|
+
config:
|
|
1443
|
+
title: Activities
|
|
1444
|
+
icon: MessageSquare
|
|
1445
|
+
color: "#06B6D4"
|
|
1446
|
+
profileSlug: activity
|
|
1447
|
+
- id: activity-count
|
|
1448
|
+
kind: widget
|
|
1449
|
+
widgetType: stat-card
|
|
1450
|
+
pos:
|
|
1451
|
+
x: 0
|
|
1452
|
+
"y": 2
|
|
1453
|
+
w: 3
|
|
1454
|
+
h: 3
|
|
1455
|
+
config:
|
|
1456
|
+
label: Total Activities
|
|
1457
|
+
aggregation: count
|
|
1458
|
+
profileSlug: activity
|
|
1459
|
+
color: "#06B6D4"
|
|
1460
|
+
- id: activity-log
|
|
1461
|
+
kind: view
|
|
1462
|
+
viewName: Activity Log
|
|
1463
|
+
pos:
|
|
1464
|
+
x: 0
|
|
1465
|
+
"y": 9
|
|
1466
|
+
w: 12
|
|
1467
|
+
h: 8
|
|
1468
|
+
- id: activity-cal
|
|
1469
|
+
kind: view
|
|
1470
|
+
viewName: Activity Calendar
|
|
1471
|
+
pos:
|
|
1472
|
+
x: 0
|
|
1473
|
+
"y": 19
|
|
1474
|
+
w: 12
|
|
1475
|
+
h: 8
|
|
1476
|
+
- id: activity-this-week
|
|
1477
|
+
kind: widget
|
|
1478
|
+
widgetType: entity-count
|
|
1479
|
+
pos:
|
|
1480
|
+
x: 3
|
|
1481
|
+
"y": 2
|
|
1482
|
+
w: 3
|
|
1483
|
+
h: 3
|
|
1484
|
+
config:
|
|
1485
|
+
profileSlug: activity
|
|
1486
|
+
label: This Week
|
|
1487
|
+
icon: Calendar
|
|
1488
|
+
color: "#10B981"
|
|
1489
|
+
- id: activity-overdue
|
|
1490
|
+
kind: widget
|
|
1491
|
+
widgetType: entity-count
|
|
1492
|
+
pos:
|
|
1493
|
+
x: 6
|
|
1494
|
+
"y": 2
|
|
1495
|
+
w: 3
|
|
1496
|
+
h: 3
|
|
1497
|
+
config:
|
|
1498
|
+
profileSlug: activity
|
|
1499
|
+
label: Overdue
|
|
1500
|
+
icon: AlertCircle
|
|
1501
|
+
color: "#EF4444"
|
|
1502
|
+
- id: activity-recent
|
|
1503
|
+
kind: widget
|
|
1504
|
+
widgetType: entity-list
|
|
1505
|
+
pos:
|
|
1506
|
+
x: 0
|
|
1507
|
+
"y": 5
|
|
1508
|
+
w: 12
|
|
1509
|
+
h: 4
|
|
1510
|
+
config:
|
|
1511
|
+
profileSlug: activity
|
|
1512
|
+
title: Recent Activities
|
|
1513
|
+
limit: 8
|
|
1514
|
+
variant: detailed
|
|
1515
|
+
breakpoints:
|
|
1516
|
+
lg:
|
|
1517
|
+
cols: 12
|
|
1518
|
+
rowHeight: 60
|
|
1519
|
+
gap: 12
|
|
1520
|
+
md:
|
|
1521
|
+
cols: 10
|
|
1522
|
+
rowHeight: 60
|
|
1523
|
+
gap: 12
|
|
1524
|
+
sm:
|
|
1525
|
+
cols: 6
|
|
1526
|
+
rowHeight: 60
|
|
1527
|
+
gap: 12
|
|
1528
|
+
xs:
|
|
1529
|
+
cols: 4
|
|
1530
|
+
rowHeight: 60
|
|
1531
|
+
gap: 12
|
|
1532
|
+
xxs:
|
|
1533
|
+
cols: 2
|
|
1534
|
+
rowHeight: 60
|
|
1535
|
+
gap: 12
|
|
1536
|
+
entityLinks:
|
|
1537
|
+
- sourceProfileSlug: contact
|
|
1538
|
+
targetProfileSlug: company
|
|
1539
|
+
type: works_at
|
|
1540
|
+
- sourceProfileSlug: deal
|
|
1541
|
+
targetProfileSlug: company
|
|
1542
|
+
type: belongs_to
|
|
1543
|
+
- sourceProfileSlug: deal
|
|
1544
|
+
targetProfileSlug: contact
|
|
1545
|
+
type: assigned_to
|
|
1546
|
+
- sourceProfileSlug: activity
|
|
1547
|
+
targetProfileSlug: deal
|
|
1548
|
+
type: for
|
|
1549
|
+
- sourceProfileSlug: activity
|
|
1550
|
+
targetProfileSlug: contact
|
|
1551
|
+
type: with
|
|
1552
|
+
- sourceProfileSlug: activity
|
|
1553
|
+
targetProfileSlug: company
|
|
1554
|
+
type: at
|
|
1555
|
+
- sourceProfileSlug: deal
|
|
1556
|
+
targetProfileSlug: pipeline
|
|
1557
|
+
type: belongs_to
|
|
1558
|
+
seedEntities:
|
|
1559
|
+
- profileSlug: company
|
|
1560
|
+
title: Lumio Technologies
|
|
1561
|
+
properties:
|
|
1562
|
+
company-status: Prospect
|
|
1563
|
+
industry: SaaS
|
|
1564
|
+
company-size: 51-200
|
|
1565
|
+
arr: 0
|
|
1566
|
+
website: https://lumio.io
|
|
1567
|
+
location: Paris, France
|
|
1568
|
+
health-score: 72
|
|
1569
|
+
account-owner: Antoine
|
|
1570
|
+
last-contact-date: "2026-02-10"
|
|
1571
|
+
company-tags:
|
|
1572
|
+
- ai
|
|
1573
|
+
- b2b
|
|
1574
|
+
- priority
|
|
1575
|
+
notes: Interested in the data sovereignty angle. CTO is hands-on.
|
|
1576
|
+
- profileSlug: company
|
|
1577
|
+
title: Meridian Finance
|
|
1578
|
+
properties:
|
|
1579
|
+
company-status: Customer
|
|
1580
|
+
industry: Fintech
|
|
1581
|
+
company-size: 201-500
|
|
1582
|
+
arr: 48000
|
|
1583
|
+
website: https://meridianfinance.eu
|
|
1584
|
+
location: Brussels, Belgium
|
|
1585
|
+
health-score: 88
|
|
1586
|
+
account-owner: Antoine
|
|
1587
|
+
last-contact-date: "2026-02-18"
|
|
1588
|
+
company-tags:
|
|
1589
|
+
- fintech
|
|
1590
|
+
- gdpr-sensitive
|
|
1591
|
+
- expansion
|
|
1592
|
+
notes: Renewing Q1. Explore expansion into compliance module.
|
|
1593
|
+
content: |-
|
|
1594
|
+
# Account Brief: Meridian Finance
|
|
1595
|
+
|
|
1596
|
+
## Overview
|
|
1597
|
+
|
|
1598
|
+
Meridian Finance is a mid-market financial advisory firm (201-500 employees) using Synap since Q3 2024. Currently on the Business plan (€1,400/month, 25 seats). This renewal cycle also includes an expansion conversation — compliance team wants to onboard (additional 15 seats).
|
|
1599
|
+
|
|
1600
|
+
## Relationship health
|
|
1601
|
+
|
|
1602
|
+
- **Health score**: 82/100
|
|
1603
|
+
- **Primary contact**: Marcus Holt (VP Operations) — strong champion, uses Synap daily for deal tracking and team coordination
|
|
1604
|
+
- **Usage**: High. 22 of 25 seats active. Core use cases: deal pipeline, client note-taking, compliance log
|
|
1605
|
+
|
|
1606
|
+
## Renewal context
|
|
1607
|
+
|
|
1608
|
+
Contract expires March 31, 2026. Marcus initiated the renewal conversation proactively in January — positive signal. The expansion request (compliance team) was his idea, not a upsell push from our side.
|
|
1609
|
+
|
|
1610
|
+
**Current**: €1,400/month × 12 = €16,800/year
|
|
1611
|
+
**Proposed renewal + expansion**: €1,950/month × 12 = €23,400/year (+39%)
|
|
1612
|
+
|
|
1613
|
+
## Risk factors
|
|
1614
|
+
|
|
1615
|
+
- CFO is new (joined January 2026) — unknown stance on SaaS spend
|
|
1616
|
+
- Competing internal proposal to consolidate on Microsoft 365 (SharePoint + Viva)
|
|
1617
|
+
- Marcus has confirmed he's advocating for Synap but may need us to provide ROI data
|
|
1618
|
+
|
|
1619
|
+
## Strategy
|
|
1620
|
+
|
|
1621
|
+
Lead with usage data and ROI framing. Get Marcus a one-pager he can share with the new CFO. The Microsoft consolidation risk is real — need to position Synap as complementary to M365, not competing with it.
|
|
1622
|
+
- profileSlug: company
|
|
1623
|
+
title: Arko Health
|
|
1624
|
+
properties:
|
|
1625
|
+
company-status: Active
|
|
1626
|
+
industry: Healthcare
|
|
1627
|
+
company-size: 11-50
|
|
1628
|
+
arr: 18000
|
|
1629
|
+
website: https://arkohealth.com
|
|
1630
|
+
location: Lyon, France
|
|
1631
|
+
health-score: 55
|
|
1632
|
+
account-owner: Sophie
|
|
1633
|
+
last-contact-date: "2026-01-28"
|
|
1634
|
+
company-tags:
|
|
1635
|
+
- healthcare
|
|
1636
|
+
- at-risk
|
|
1637
|
+
notes: Usage dropped last month. Schedule QBR.
|
|
1638
|
+
- profileSlug: contact
|
|
1639
|
+
title: Camille Renard
|
|
1640
|
+
properties:
|
|
1641
|
+
contact-role: Champion
|
|
1642
|
+
contact-status: Active
|
|
1643
|
+
job-title: CTO
|
|
1644
|
+
company-name: ref:company:Lumio Technologies
|
|
1645
|
+
email: c.renard@lumio.io
|
|
1646
|
+
phone: +33 6 12 34 56 78
|
|
1647
|
+
linkedin: https://linkedin.com/in/camillerenard
|
|
1648
|
+
lead-score: 84
|
|
1649
|
+
contact-source: LinkedIn
|
|
1650
|
+
contact-owner: Antoine
|
|
1651
|
+
last-interaction: "2026-02-10"
|
|
1652
|
+
contact-tags:
|
|
1653
|
+
- technical
|
|
1654
|
+
- champion
|
|
1655
|
+
- decision-maker
|
|
1656
|
+
- profileSlug: contact
|
|
1657
|
+
title: Marcus Holt
|
|
1658
|
+
properties:
|
|
1659
|
+
contact-role: Decision Maker
|
|
1660
|
+
contact-status: Active
|
|
1661
|
+
job-title: VP of Operations
|
|
1662
|
+
company-name: ref:company:Meridian Finance
|
|
1663
|
+
email: m.holt@meridianfinance.eu
|
|
1664
|
+
phone: +32 2 555 0198
|
|
1665
|
+
linkedin: https://linkedin.com/in/marcusholt
|
|
1666
|
+
lead-score: 91
|
|
1667
|
+
contact-source: Referral
|
|
1668
|
+
contact-owner: Antoine
|
|
1669
|
+
last-interaction: "2026-02-18"
|
|
1670
|
+
contact-tags:
|
|
1671
|
+
- renewal
|
|
1672
|
+
- expansion-potential
|
|
1673
|
+
- profileSlug: contact
|
|
1674
|
+
title: Isabelle Moreau
|
|
1675
|
+
properties:
|
|
1676
|
+
contact-role: Lead
|
|
1677
|
+
contact-status: Nurturing
|
|
1678
|
+
job-title: Head of Digital
|
|
1679
|
+
company-name: ref:company:Arko Health
|
|
1680
|
+
email: i.moreau@arkohealth.com
|
|
1681
|
+
lead-score: 47
|
|
1682
|
+
contact-source: Event
|
|
1683
|
+
contact-owner: Sophie
|
|
1684
|
+
last-interaction: "2026-01-28"
|
|
1685
|
+
contact-tags:
|
|
1686
|
+
- healthcare
|
|
1687
|
+
- nurture
|
|
1688
|
+
- profileSlug: deal
|
|
1689
|
+
title: Lumio — Data Pod Enterprise Licence
|
|
1690
|
+
properties:
|
|
1691
|
+
stage: Proposal
|
|
1692
|
+
deal-value: 36000
|
|
1693
|
+
probability: 60
|
|
1694
|
+
close-date: "2026-03-31"
|
|
1695
|
+
deal-type: New Business
|
|
1696
|
+
deal-company: ref:company:Lumio Technologies
|
|
1697
|
+
deal-contact: ref:contact:Camille Renard
|
|
1698
|
+
deal-owner: Antoine
|
|
1699
|
+
next-action: Send revised proposal with compliance annex
|
|
1700
|
+
next-action-date: "2026-02-25"
|
|
1701
|
+
deal-source: Outbound
|
|
1702
|
+
deal-tags:
|
|
1703
|
+
- q1
|
|
1704
|
+
- priority
|
|
1705
|
+
- enterprise
|
|
1706
|
+
content: |-
|
|
1707
|
+
# Deal Brief: Lumio Technologies — Data Pod Enterprise Licence
|
|
1708
|
+
|
|
1709
|
+
## Opportunity summary
|
|
1710
|
+
|
|
1711
|
+
Lumio Technologies is evaluating Synap as the data infrastructure layer for their internal knowledge management and client-facing data operations. Decision maker is Camille Renard (Head of Engineering), with budget authority sitting with the CTO (François Leroy, not yet in contact).
|
|
1712
|
+
|
|
1713
|
+
- **Stage**: Proposal
|
|
1714
|
+
- **Value**: €28,000 / year
|
|
1715
|
+
- **Close target**: March 31, 2026
|
|
1716
|
+
- **Win probability**: 65%
|
|
1717
|
+
|
|
1718
|
+
## Why they're looking
|
|
1719
|
+
|
|
1720
|
+
Lumio's current stack is fragmented: Notion for internal docs, HubSpot for client data, Airtable for project tracking. No single system of record. The data sovereignty angle resonates strongly — they've had two incidents in the last year where vendor downtime blocked client deliverables.
|
|
1721
|
+
|
|
1722
|
+
## Competitive situation
|
|
1723
|
+
|
|
1724
|
+
Evaluating three options: Synap, a custom-built internal tool, and extending their current Notion setup. The custom-build option is losing traction (engineering bandwidth is constrained). Synap vs. extended Notion is the real comparison.
|
|
1725
|
+
|
|
1726
|
+
## Win conditions
|
|
1727
|
+
|
|
1728
|
+
1. Demo showing cross-entity relationships — specifically, linking client records to project entities to activity logs
|
|
1729
|
+
2. Self-hosting option confirmed for their EU data residency requirement
|
|
1730
|
+
3. Pricing flexibility on seat count (currently 12 users, may scale to 30+)
|
|
1731
|
+
|
|
1732
|
+
## Next actions
|
|
1733
|
+
|
|
1734
|
+
- [ ] Send proposal deck with custom pricing table (by Feb 28)
|
|
1735
|
+
- [ ] Schedule technical session with François Leroy
|
|
1736
|
+
- [ ] Confirm self-hosting deployment timeline with engineering team
|
|
1737
|
+
- profileSlug: deal
|
|
1738
|
+
title: Meridian Finance — 2026 Renewal + Expansion
|
|
1739
|
+
properties:
|
|
1740
|
+
stage: Negotiation
|
|
1741
|
+
deal-value: 72000
|
|
1742
|
+
probability: 85
|
|
1743
|
+
close-date: "2026-03-15"
|
|
1744
|
+
deal-type: Renewal
|
|
1745
|
+
deal-company: ref:company:Meridian Finance
|
|
1746
|
+
deal-contact: ref:contact:Marcus Holt
|
|
1747
|
+
deal-owner: Antoine
|
|
1748
|
+
next-action: Final contract review call
|
|
1749
|
+
next-action-date: "2026-02-26"
|
|
1750
|
+
deal-source: Inbound
|
|
1751
|
+
deal-tags:
|
|
1752
|
+
- renewal
|
|
1753
|
+
- expansion
|
|
1754
|
+
- q1-close
|
|
1755
|
+
- profileSlug: deal
|
|
1756
|
+
title: Arko Health — Starter Workspace
|
|
1757
|
+
properties:
|
|
1758
|
+
stage: Qualified
|
|
1759
|
+
deal-value: 9600
|
|
1760
|
+
probability: 35
|
|
1761
|
+
close-date: "2026-04-30"
|
|
1762
|
+
deal-type: New Business
|
|
1763
|
+
deal-company: ref:company:Arko Health
|
|
1764
|
+
deal-contact: ref:contact:Isabelle Moreau
|
|
1765
|
+
deal-owner: Sophie
|
|
1766
|
+
next-action: Send case study from healthcare client
|
|
1767
|
+
next-action-date: "2026-03-01"
|
|
1768
|
+
deal-source: Event
|
|
1769
|
+
deal-tags:
|
|
1770
|
+
- healthcare
|
|
1771
|
+
- at-risk
|
|
1772
|
+
- q2
|
|
1773
|
+
- profileSlug: deal
|
|
1774
|
+
title: Vanta Labs — Pilot Evaluation
|
|
1775
|
+
properties:
|
|
1776
|
+
stage: Prospecting
|
|
1777
|
+
deal-value: 24000
|
|
1778
|
+
probability: 20
|
|
1779
|
+
close-date: "2026-05-15"
|
|
1780
|
+
deal-type: New Business
|
|
1781
|
+
deal-company: ref:company:Vanta Labs
|
|
1782
|
+
deal-contact: ref:contact:Thomas Geiger
|
|
1783
|
+
deal-owner: Antoine
|
|
1784
|
+
next-action: Discovery call scheduled
|
|
1785
|
+
next-action-date: "2026-02-28"
|
|
1786
|
+
deal-source: Outbound
|
|
1787
|
+
deal-tags:
|
|
1788
|
+
- pilot
|
|
1789
|
+
- early-stage
|
|
1790
|
+
- profileSlug: activity
|
|
1791
|
+
title: Product demo — Lumio CTO
|
|
1792
|
+
properties:
|
|
1793
|
+
activity-type: Demo
|
|
1794
|
+
activity-date: "2026-02-10"
|
|
1795
|
+
activity-status: Completed
|
|
1796
|
+
activity-outcome: Positive
|
|
1797
|
+
related-company: ref:company:Lumio Technologies
|
|
1798
|
+
related-contact: ref:contact:Camille Renard
|
|
1799
|
+
related-deal: ref:deal:Lumio — Data Pod Enterprise Licence
|
|
1800
|
+
activity-owner: Antoine
|
|
1801
|
+
summary: Ran full platform demo. Strong reaction to the relationship graph and pod sovereignty model. Asked for compliance documentation.
|
|
1802
|
+
duration-min: 60
|
|
1803
|
+
content: |-
|
|
1804
|
+
# Product Demo — Lumio Technologies
|
|
1805
|
+
|
|
1806
|
+
**Date**: February 10, 2026
|
|
1807
|
+
**Attendees**: Camille Renard (Head of Engineering, Lumio), Antoine (Synap)
|
|
1808
|
+
**Type**: Demo
|
|
1809
|
+
**Outcome**: Positive
|
|
1810
|
+
|
|
1811
|
+
## What we covered
|
|
1812
|
+
|
|
1813
|
+
Ran a 45-minute walkthrough of Synap's entity model, focusing on cross-profile relationships. Specifically demoed:
|
|
1814
|
+
|
|
1815
|
+
1. A Company entity with linked Contacts, Deals, and Activity log — all from one view
|
|
1816
|
+
2. The graph view showing the relationship map across entity types
|
|
1817
|
+
3. Bento dashboard with live entity counts and feed
|
|
1818
|
+
|
|
1819
|
+
Camille's reaction to the graph view: "This is what we've been trying to build manually in Notion for two years."
|
|
1820
|
+
|
|
1821
|
+
## Key objections raised
|
|
1822
|
+
|
|
1823
|
+
- **Self-hosting**: They need EU data residency. Confirmed Synap supports self-hosted deployment. Need to send technical docs.
|
|
1824
|
+
- **Migration**: Existing Notion data (~3,000 pages). Asked about import tooling — told them CSV import is live, full Notion export support in Q2 roadmap.
|
|
1825
|
+
- **Seat pricing**: Currently 12 users but expects to grow. Agreed to discuss volume pricing in proposal.
|
|
1826
|
+
|
|
1827
|
+
## Commitments made
|
|
1828
|
+
|
|
1829
|
+
- Antoine: Send proposal by Feb 28 with custom pricing for 12-30 seat range
|
|
1830
|
+
- Antoine: Intro Camille to engineering team for self-hosting technical session
|
|
1831
|
+
- Camille: Get François Leroy (CTO) into next call
|
|
1832
|
+
|
|
1833
|
+
## Assessment
|
|
1834
|
+
|
|
1835
|
+
High intent. The data sovereignty framing landed. Biggest risk is the CTO not prioritizing before Q1 close — need to get him into the room before March 15.
|
|
1836
|
+
- profileSlug: activity
|
|
1837
|
+
title: Renewal negotiation call — Meridian
|
|
1838
|
+
properties:
|
|
1839
|
+
activity-type: Call
|
|
1840
|
+
activity-date: "2026-02-18"
|
|
1841
|
+
activity-status: Completed
|
|
1842
|
+
activity-outcome: Positive
|
|
1843
|
+
related-company: ref:company:Meridian Finance
|
|
1844
|
+
related-contact: ref:contact:Marcus Holt
|
|
1845
|
+
related-deal: ref:deal:Meridian Finance — 2026 Renewal + Expansion
|
|
1846
|
+
activity-owner: Antoine
|
|
1847
|
+
summary: Aligned on price and new module scope. Final contract to be sent by Feb 26.
|
|
1848
|
+
duration-min: 45
|
|
1849
|
+
- profileSlug: activity
|
|
1850
|
+
title: Follow-up email — Arko Health
|
|
1851
|
+
properties:
|
|
1852
|
+
activity-type: Follow-up
|
|
1853
|
+
activity-date: "2026-03-01"
|
|
1854
|
+
activity-status: Planned
|
|
1855
|
+
activity-outcome: Pending
|
|
1856
|
+
related-company: ref:company:Arko Health
|
|
1857
|
+
related-contact: ref:contact:Isabelle Moreau
|
|
1858
|
+
related-deal: ref:deal:Arko Health — Starter Workspace
|
|
1859
|
+
activity-owner: Sophie
|
|
1860
|
+
summary: Send healthcare sector case study to re-engage.
|
|
1861
|
+
duration-min: 0
|
|
1862
|
+
- profileSlug: pipeline
|
|
1863
|
+
title: New Business — Q1 2026
|
|
1864
|
+
properties:
|
|
1865
|
+
pipeline-status: Active
|
|
1866
|
+
pipeline-type: New Business
|
|
1867
|
+
total-value: 69600
|
|
1868
|
+
deal-count: 3
|
|
1869
|
+
avg-cycle-days: 45
|
|
1870
|
+
win-rate: 38
|
|
1871
|
+
pipeline-owner: Antoine
|
|
1872
|
+
quarter-target: 120000
|
|
1873
|
+
- profileSlug: pipeline
|
|
1874
|
+
title: Renewals & Expansion — Q1 2026
|
|
1875
|
+
properties:
|
|
1876
|
+
pipeline-status: Active
|
|
1877
|
+
pipeline-type: Renewal
|
|
1878
|
+
total-value: 72000
|
|
1879
|
+
deal-count: 1
|
|
1880
|
+
avg-cycle-days: 21
|
|
1881
|
+
win-rate: 85
|
|
1882
|
+
pipeline-owner: Antoine
|
|
1883
|
+
quarter-target: 80000
|
|
1884
|
+
- profileSlug: company
|
|
1885
|
+
title: Vanta Labs
|
|
1886
|
+
properties:
|
|
1887
|
+
company-status: Prospect
|
|
1888
|
+
industry: Technology
|
|
1889
|
+
company-size: 11-50
|
|
1890
|
+
website: https://vantalabs.io
|
|
1891
|
+
location: Berlin, Germany
|
|
1892
|
+
health-score: 60
|
|
1893
|
+
account-owner: Antoine
|
|
1894
|
+
last-contact-date: "2026-02-05"
|
|
1895
|
+
company-tags:
|
|
1896
|
+
- prospect
|
|
1897
|
+
- pilot
|
|
1898
|
+
- germany
|
|
1899
|
+
- profileSlug: contact
|
|
1900
|
+
title: Thomas Geiger
|
|
1901
|
+
properties:
|
|
1902
|
+
contact-role: Decision Maker
|
|
1903
|
+
contact-status: Active
|
|
1904
|
+
job-title: Head of Product
|
|
1905
|
+
company-name: ref:company:Vanta Labs
|
|
1906
|
+
email: thomas@vantalabs.io
|
|
1907
|
+
lead-score: 72
|
|
1908
|
+
contact-source: Outbound
|
|
1909
|
+
contact-owner: Antoine
|
|
1910
|
+
last-interaction: "2026-02-05"
|
|
1911
|
+
contact-tags:
|
|
1912
|
+
- pilot
|
|
1913
|
+
- product-led
|
|
1914
|
+
suggestedRelations:
|
|
1915
|
+
- sourceRef: contact:Camille Renard
|
|
1916
|
+
targetRef: company:Lumio Technologies
|
|
1917
|
+
type: belongs_to_project
|
|
1918
|
+
- sourceRef: contact:Marcus Holt
|
|
1919
|
+
targetRef: company:Meridian Finance
|
|
1920
|
+
type: belongs_to_project
|
|
1921
|
+
- sourceRef: contact:Isabelle Moreau
|
|
1922
|
+
targetRef: company:Arko Health
|
|
1923
|
+
type: belongs_to_project
|
|
1924
|
+
- sourceRef: contact:Thomas Geiger
|
|
1925
|
+
targetRef: company:Vanta Labs
|
|
1926
|
+
type: belongs_to_project
|
|
1927
|
+
- sourceRef: deal:Lumio — Data Pod Enterprise Licence
|
|
1928
|
+
targetRef: company:Lumio Technologies
|
|
1929
|
+
type: belongs_to_project
|
|
1930
|
+
- sourceRef: deal:Meridian Finance — 2026 Renewal + Expansion
|
|
1931
|
+
targetRef: company:Meridian Finance
|
|
1932
|
+
type: belongs_to_project
|
|
1933
|
+
- sourceRef: deal:Arko Health — Starter Workspace
|
|
1934
|
+
targetRef: company:Arko Health
|
|
1935
|
+
type: belongs_to_project
|
|
1936
|
+
- sourceRef: deal:Vanta Labs — Pilot Evaluation
|
|
1937
|
+
targetRef: company:Vanta Labs
|
|
1938
|
+
type: belongs_to_project
|
|
1939
|
+
- sourceRef: deal:Lumio — Data Pod Enterprise Licence
|
|
1940
|
+
targetRef: contact:Camille Renard
|
|
1941
|
+
type: relates_to
|
|
1942
|
+
- sourceRef: deal:Meridian Finance — 2026 Renewal + Expansion
|
|
1943
|
+
targetRef: contact:Marcus Holt
|
|
1944
|
+
type: relates_to
|
|
1945
|
+
- sourceRef: deal:Arko Health — Starter Workspace
|
|
1946
|
+
targetRef: contact:Isabelle Moreau
|
|
1947
|
+
type: relates_to
|
|
1948
|
+
- sourceRef: deal:Vanta Labs — Pilot Evaluation
|
|
1949
|
+
targetRef: contact:Thomas Geiger
|
|
1950
|
+
type: relates_to
|
|
1951
|
+
- sourceRef: activity:Product demo — Lumio CTO
|
|
1952
|
+
targetRef: deal:Lumio — Data Pod Enterprise Licence
|
|
1953
|
+
type: relates_to
|
|
1954
|
+
- sourceRef: activity:Renewal negotiation call — Meridian
|
|
1955
|
+
targetRef: deal:Meridian Finance — 2026 Renewal + Expansion
|
|
1956
|
+
type: relates_to
|
|
1957
|
+
- sourceRef: activity:Follow-up email — Arko Health
|
|
1958
|
+
targetRef: deal:Arko Health — Starter Workspace
|
|
1959
|
+
type: relates_to
|
|
1960
|
+
- sourceRef: activity:Product demo — Lumio CTO
|
|
1961
|
+
targetRef: contact:Camille Renard
|
|
1962
|
+
type: attended_by
|
|
1963
|
+
- sourceRef: activity:Renewal negotiation call — Meridian
|
|
1964
|
+
targetRef: contact:Marcus Holt
|
|
1965
|
+
type: attended_by
|
|
1966
|
+
- sourceRef: activity:Follow-up email — Arko Health
|
|
1967
|
+
targetRef: contact:Isabelle Moreau
|
|
1968
|
+
type: attended_by
|
|
1969
|
+
- sourceRef: deal:Lumio — Data Pod Enterprise Licence
|
|
1970
|
+
targetRef: pipeline:New Business — Q1 2026
|
|
1971
|
+
type: belongs_to_project
|
|
1972
|
+
- sourceRef: deal:Arko Health — Starter Workspace
|
|
1973
|
+
targetRef: pipeline:New Business — Q1 2026
|
|
1974
|
+
type: belongs_to_project
|
|
1975
|
+
- sourceRef: deal:Vanta Labs — Pilot Evaluation
|
|
1976
|
+
targetRef: pipeline:New Business — Q1 2026
|
|
1977
|
+
type: belongs_to_project
|
|
1978
|
+
- sourceRef: deal:Meridian Finance — 2026 Renewal + Expansion
|
|
1979
|
+
targetRef: pipeline:Renewals & Expansion — Q1 2026
|
|
1980
|
+
type: belongs_to_project
|
|
1981
|
+
displayTemplates:
|
|
1982
|
+
- name: Deal Card
|
|
1983
|
+
description: Sales deal with pipeline stage, value, probability, and linked company
|
|
1984
|
+
entityType: deal
|
|
1985
|
+
targetType: entity
|
|
1986
|
+
isDefault: true
|
|
1987
|
+
config:
|
|
1988
|
+
layout:
|
|
1989
|
+
structure:
|
|
1990
|
+
header:
|
|
1991
|
+
enabled: true
|
|
1992
|
+
slots:
|
|
1993
|
+
- stage
|
|
1994
|
+
- deal-value
|
|
1995
|
+
layout: horizontal
|
|
1996
|
+
sidebar:
|
|
1997
|
+
enabled: true
|
|
1998
|
+
slots:
|
|
1999
|
+
- deal-company
|
|
2000
|
+
- deal-contact
|
|
2001
|
+
- deal-owner
|
|
2002
|
+
- close-date
|
|
2003
|
+
- next-action-date
|
|
2004
|
+
position: right
|
|
2005
|
+
width: 280px
|
|
2006
|
+
layout: vertical
|
|
2007
|
+
content:
|
|
2008
|
+
enabled: true
|
|
2009
|
+
slots:
|
|
2010
|
+
- probability
|
|
2011
|
+
- deal-type
|
|
2012
|
+
- next-action
|
|
2013
|
+
- deal-source
|
|
2014
|
+
layout: vertical
|
|
2015
|
+
fieldMapping:
|
|
2016
|
+
stage:
|
|
2017
|
+
slot: stage
|
|
2018
|
+
renderer:
|
|
2019
|
+
type: badge
|
|
2020
|
+
size: md
|
|
2021
|
+
showLabel: false
|
|
2022
|
+
order: 1
|
|
2023
|
+
deal-value:
|
|
2024
|
+
slot: deal-value
|
|
2025
|
+
renderer:
|
|
2026
|
+
type: number
|
|
2027
|
+
format: currency
|
|
2028
|
+
size: lg
|
|
2029
|
+
label: Value
|
|
2030
|
+
order: 2
|
|
2031
|
+
probability:
|
|
2032
|
+
slot: probability
|
|
2033
|
+
renderer:
|
|
2034
|
+
type: progress
|
|
2035
|
+
size: sm
|
|
2036
|
+
label: Win probability
|
|
2037
|
+
showLabel: true
|
|
2038
|
+
order: 3
|
|
2039
|
+
close-date:
|
|
2040
|
+
slot: close-date
|
|
2041
|
+
renderer:
|
|
2042
|
+
type: date
|
|
2043
|
+
format: relative
|
|
2044
|
+
label: Close date
|
|
2045
|
+
showLabel: true
|
|
2046
|
+
order: 4
|
|
2047
|
+
next-action-date:
|
|
2048
|
+
slot: next-action-date
|
|
2049
|
+
renderer:
|
|
2050
|
+
type: date
|
|
2051
|
+
format: relative
|
|
2052
|
+
label: Next action
|
|
2053
|
+
showLabel: true
|
|
2054
|
+
order: 5
|
|
2055
|
+
colors:
|
|
2056
|
+
accent: "#F59E0B"
|
|
2057
|
+
styling:
|
|
2058
|
+
borderRadius: 10px
|
|
2059
|
+
- name: Company Profile
|
|
2060
|
+
description: Account with status, health score, and key metrics
|
|
2061
|
+
entityType: company
|
|
2062
|
+
targetType: entity
|
|
2063
|
+
isDefault: true
|
|
2064
|
+
config:
|
|
2065
|
+
layout:
|
|
2066
|
+
structure:
|
|
2067
|
+
header:
|
|
2068
|
+
enabled: true
|
|
2069
|
+
slots:
|
|
2070
|
+
- company-status
|
|
2071
|
+
- industry
|
|
2072
|
+
layout: horizontal
|
|
2073
|
+
sidebar:
|
|
2074
|
+
enabled: true
|
|
2075
|
+
slots:
|
|
2076
|
+
- company-size
|
|
2077
|
+
- location
|
|
2078
|
+
- website
|
|
2079
|
+
- account-owner
|
|
2080
|
+
- last-contact-date
|
|
2081
|
+
position: right
|
|
2082
|
+
width: 260px
|
|
2083
|
+
layout: vertical
|
|
2084
|
+
content:
|
|
2085
|
+
enabled: true
|
|
2086
|
+
slots:
|
|
2087
|
+
- arr
|
|
2088
|
+
- health-score
|
|
2089
|
+
- notes
|
|
2090
|
+
layout: vertical
|
|
2091
|
+
fieldMapping:
|
|
2092
|
+
company-status:
|
|
2093
|
+
slot: company-status
|
|
2094
|
+
renderer:
|
|
2095
|
+
type: badge
|
|
2096
|
+
size: md
|
|
2097
|
+
showLabel: false
|
|
2098
|
+
order: 1
|
|
2099
|
+
industry:
|
|
2100
|
+
slot: industry
|
|
2101
|
+
renderer:
|
|
2102
|
+
type: badge
|
|
2103
|
+
variant: muted
|
|
2104
|
+
size: sm
|
|
2105
|
+
showLabel: false
|
|
2106
|
+
order: 2
|
|
2107
|
+
arr:
|
|
2108
|
+
slot: arr
|
|
2109
|
+
renderer:
|
|
2110
|
+
type: number
|
|
2111
|
+
format: currency
|
|
2112
|
+
size: lg
|
|
2113
|
+
label: ARR
|
|
2114
|
+
showLabel: true
|
|
2115
|
+
order: 3
|
|
2116
|
+
health-score:
|
|
2117
|
+
slot: health-score
|
|
2118
|
+
renderer:
|
|
2119
|
+
type: progress
|
|
2120
|
+
size: sm
|
|
2121
|
+
label: Health score
|
|
2122
|
+
showLabel: true
|
|
2123
|
+
order: 4
|
|
2124
|
+
last-contact-date:
|
|
2125
|
+
slot: last-contact-date
|
|
2126
|
+
renderer:
|
|
2127
|
+
type: date
|
|
2128
|
+
format: relative
|
|
2129
|
+
label: Last contact
|
|
2130
|
+
showLabel: true
|
|
2131
|
+
order: 5
|
|
2132
|
+
colors:
|
|
2133
|
+
accent: "#10B981"
|
|
2134
|
+
styling:
|
|
2135
|
+
borderRadius: 10px
|
|
2136
|
+
- name: Contact Card
|
|
2137
|
+
description: Contact with role, lead score, and company link
|
|
2138
|
+
entityType: contact
|
|
2139
|
+
targetType: entity
|
|
2140
|
+
isDefault: true
|
|
2141
|
+
config:
|
|
2142
|
+
layout:
|
|
2143
|
+
structure:
|
|
2144
|
+
header:
|
|
2145
|
+
enabled: true
|
|
2146
|
+
slots:
|
|
2147
|
+
- contact-role
|
|
2148
|
+
- contact-status
|
|
2149
|
+
layout: horizontal
|
|
2150
|
+
sidebar:
|
|
2151
|
+
enabled: true
|
|
2152
|
+
slots:
|
|
2153
|
+
- company-name
|
|
2154
|
+
- email
|
|
2155
|
+
- phone
|
|
2156
|
+
- linkedin
|
|
2157
|
+
- last-interaction
|
|
2158
|
+
position: right
|
|
2159
|
+
width: 260px
|
|
2160
|
+
layout: vertical
|
|
2161
|
+
content:
|
|
2162
|
+
enabled: true
|
|
2163
|
+
slots:
|
|
2164
|
+
- job-title
|
|
2165
|
+
- lead-score
|
|
2166
|
+
- contact-source
|
|
2167
|
+
- contact-owner
|
|
2168
|
+
layout: vertical
|
|
2169
|
+
fieldMapping:
|
|
2170
|
+
contact-role:
|
|
2171
|
+
slot: contact-role
|
|
2172
|
+
renderer:
|
|
2173
|
+
type: badge
|
|
2174
|
+
size: md
|
|
2175
|
+
showLabel: false
|
|
2176
|
+
order: 1
|
|
2177
|
+
contact-status:
|
|
2178
|
+
slot: contact-status
|
|
2179
|
+
renderer:
|
|
2180
|
+
type: badge
|
|
2181
|
+
variant: muted
|
|
2182
|
+
size: sm
|
|
2183
|
+
showLabel: false
|
|
2184
|
+
order: 2
|
|
2185
|
+
lead-score:
|
|
2186
|
+
slot: lead-score
|
|
2187
|
+
renderer:
|
|
2188
|
+
type: progress
|
|
2189
|
+
size: sm
|
|
2190
|
+
label: Lead score
|
|
2191
|
+
showLabel: true
|
|
2192
|
+
order: 3
|
|
2193
|
+
last-interaction:
|
|
2194
|
+
slot: last-interaction
|
|
2195
|
+
renderer:
|
|
2196
|
+
type: date
|
|
2197
|
+
format: relative
|
|
2198
|
+
label: Last interaction
|
|
2199
|
+
showLabel: true
|
|
2200
|
+
order: 4
|
|
2201
|
+
email:
|
|
2202
|
+
slot: email
|
|
2203
|
+
renderer:
|
|
2204
|
+
type: link
|
|
2205
|
+
size: sm
|
|
2206
|
+
showLabel: false
|
|
2207
|
+
order: 5
|
|
2208
|
+
colors:
|
|
2209
|
+
accent: "#6366F1"
|
|
2210
|
+
styling:
|
|
2211
|
+
borderRadius: 10px
|
|
2212
|
+
- name: Activity Log
|
|
2213
|
+
description: Activity with type, outcome, and linked deal
|
|
2214
|
+
entityType: activity
|
|
2215
|
+
targetType: entity
|
|
2216
|
+
isDefault: true
|
|
2217
|
+
config:
|
|
2218
|
+
layout:
|
|
2219
|
+
structure:
|
|
2220
|
+
header:
|
|
2221
|
+
enabled: true
|
|
2222
|
+
slots:
|
|
2223
|
+
- activity-type
|
|
2224
|
+
- activity-status
|
|
2225
|
+
- activity-outcome
|
|
2226
|
+
layout: horizontal
|
|
2227
|
+
sidebar:
|
|
2228
|
+
enabled: true
|
|
2229
|
+
slots:
|
|
2230
|
+
- related-company
|
|
2231
|
+
- related-contact
|
|
2232
|
+
- related-deal
|
|
2233
|
+
- activity-date
|
|
2234
|
+
- duration-min
|
|
2235
|
+
position: right
|
|
2236
|
+
width: 260px
|
|
2237
|
+
layout: vertical
|
|
2238
|
+
content:
|
|
2239
|
+
enabled: true
|
|
2240
|
+
slots:
|
|
2241
|
+
- summary
|
|
2242
|
+
layout: vertical
|
|
2243
|
+
fieldMapping:
|
|
2244
|
+
activity-type:
|
|
2245
|
+
slot: activity-type
|
|
2246
|
+
renderer:
|
|
2247
|
+
type: badge
|
|
2248
|
+
size: md
|
|
2249
|
+
showLabel: false
|
|
2250
|
+
order: 1
|
|
2251
|
+
activity-status:
|
|
2252
|
+
slot: activity-status
|
|
2253
|
+
renderer:
|
|
2254
|
+
type: badge
|
|
2255
|
+
variant: muted
|
|
2256
|
+
size: sm
|
|
2257
|
+
showLabel: false
|
|
2258
|
+
order: 2
|
|
2259
|
+
activity-outcome:
|
|
2260
|
+
slot: activity-outcome
|
|
2261
|
+
renderer:
|
|
2262
|
+
type: badge
|
|
2263
|
+
variant: muted
|
|
2264
|
+
size: sm
|
|
2265
|
+
label: Outcome
|
|
2266
|
+
showLabel: true
|
|
2267
|
+
order: 3
|
|
2268
|
+
activity-date:
|
|
2269
|
+
slot: activity-date
|
|
2270
|
+
renderer:
|
|
2271
|
+
type: date
|
|
2272
|
+
format: relative
|
|
2273
|
+
label: Date
|
|
2274
|
+
showLabel: true
|
|
2275
|
+
order: 4
|
|
2276
|
+
duration-min:
|
|
2277
|
+
slot: duration-min
|
|
2278
|
+
renderer:
|
|
2279
|
+
type: number
|
|
2280
|
+
size: sm
|
|
2281
|
+
label: Duration (min)
|
|
2282
|
+
showLabel: true
|
|
2283
|
+
order: 5
|
|
2284
|
+
colors:
|
|
2285
|
+
accent: "#06B6D4"
|
|
2286
|
+
styling:
|
|
2287
|
+
borderRadius: 10px
|
|
2288
|
+
profileEntityBentoTemplates:
|
|
2289
|
+
deal:
|
|
2290
|
+
blocks:
|
|
2291
|
+
- id: entity-header
|
|
2292
|
+
kind: widget
|
|
2293
|
+
widgetType: entity-header
|
|
2294
|
+
pos:
|
|
2295
|
+
x: 0
|
|
2296
|
+
"y": 0
|
|
2297
|
+
w: 12
|
|
2298
|
+
h: 2
|
|
2299
|
+
- id: entity-props
|
|
2300
|
+
kind: widget
|
|
2301
|
+
widgetType: entity-properties
|
|
2302
|
+
pos:
|
|
2303
|
+
x: 0
|
|
2304
|
+
"y": 2
|
|
2305
|
+
w: 4
|
|
2306
|
+
h: 8
|
|
2307
|
+
- id: entity-content
|
|
2308
|
+
kind: widget
|
|
2309
|
+
widgetType: entity-content
|
|
2310
|
+
pos:
|
|
2311
|
+
x: 4
|
|
2312
|
+
"y": 2
|
|
2313
|
+
w: 8
|
|
2314
|
+
h: 4
|
|
2315
|
+
- id: entity-rel
|
|
2316
|
+
kind: widget
|
|
2317
|
+
widgetType: entity-content
|
|
2318
|
+
pos:
|
|
2319
|
+
x: 4
|
|
2320
|
+
"y": 6
|
|
2321
|
+
w: 8
|
|
2322
|
+
h: 4
|
|
2323
|
+
contact:
|
|
2324
|
+
blocks:
|
|
2325
|
+
- id: entity-header
|
|
2326
|
+
kind: widget
|
|
2327
|
+
widgetType: entity-header
|
|
2328
|
+
pos:
|
|
2329
|
+
x: 0
|
|
2330
|
+
"y": 0
|
|
2331
|
+
w: 12
|
|
2332
|
+
h: 2
|
|
2333
|
+
- id: entity-props
|
|
2334
|
+
kind: widget
|
|
2335
|
+
widgetType: entity-properties
|
|
2336
|
+
pos:
|
|
2337
|
+
x: 0
|
|
2338
|
+
"y": 2
|
|
2339
|
+
w: 4
|
|
2340
|
+
h: 8
|
|
2341
|
+
- id: entity-content
|
|
2342
|
+
kind: widget
|
|
2343
|
+
widgetType: entity-content
|
|
2344
|
+
pos:
|
|
2345
|
+
x: 4
|
|
2346
|
+
"y": 2
|
|
2347
|
+
w: 8
|
|
2348
|
+
h: 4
|
|
2349
|
+
- id: entity-rel
|
|
2350
|
+
kind: widget
|
|
2351
|
+
widgetType: entity-content
|
|
2352
|
+
pos:
|
|
2353
|
+
x: 4
|
|
2354
|
+
"y": 6
|
|
2355
|
+
w: 8
|
|
2356
|
+
h: 4
|
|
2357
|
+
company:
|
|
2358
|
+
blocks:
|
|
2359
|
+
- id: entity-header
|
|
2360
|
+
kind: widget
|
|
2361
|
+
widgetType: entity-header
|
|
2362
|
+
pos:
|
|
2363
|
+
x: 0
|
|
2364
|
+
"y": 0
|
|
2365
|
+
w: 12
|
|
2366
|
+
h: 2
|
|
2367
|
+
- id: entity-props
|
|
2368
|
+
kind: widget
|
|
2369
|
+
widgetType: entity-properties
|
|
2370
|
+
pos:
|
|
2371
|
+
x: 0
|
|
2372
|
+
"y": 2
|
|
2373
|
+
w: 4
|
|
2374
|
+
h: 8
|
|
2375
|
+
- id: entity-content
|
|
2376
|
+
kind: widget
|
|
2377
|
+
widgetType: entity-content
|
|
2378
|
+
pos:
|
|
2379
|
+
x: 4
|
|
2380
|
+
"y": 2
|
|
2381
|
+
w: 8
|
|
2382
|
+
h: 4
|
|
2383
|
+
- id: entity-rel
|
|
2384
|
+
kind: widget
|
|
2385
|
+
widgetType: entity-content
|
|
2386
|
+
pos:
|
|
2387
|
+
x: 4
|
|
2388
|
+
"y": 6
|
|
2389
|
+
w: 8
|
|
2390
|
+
h: 4
|
|
2391
|
+
activity:
|
|
2392
|
+
blocks:
|
|
2393
|
+
- id: entity-header
|
|
2394
|
+
kind: widget
|
|
2395
|
+
widgetType: entity-header
|
|
2396
|
+
pos:
|
|
2397
|
+
x: 0
|
|
2398
|
+
"y": 0
|
|
2399
|
+
w: 12
|
|
2400
|
+
h: 2
|
|
2401
|
+
- id: entity-props
|
|
2402
|
+
kind: widget
|
|
2403
|
+
widgetType: entity-properties
|
|
2404
|
+
pos:
|
|
2405
|
+
x: 0
|
|
2406
|
+
"y": 2
|
|
2407
|
+
w: 4
|
|
2408
|
+
h: 6
|
|
2409
|
+
- id: entity-content
|
|
2410
|
+
kind: widget
|
|
2411
|
+
widgetType: entity-content
|
|
2412
|
+
pos:
|
|
2413
|
+
x: 4
|
|
2414
|
+
"y": 2
|
|
2415
|
+
w: 8
|
|
2416
|
+
h: 6
|
|
2417
|
+
app:
|
|
2418
|
+
kind: stored
|
|
2419
|
+
cellKey: entity-detail
|
|
2420
|
+
layout:
|
|
2421
|
+
defaultView: Pipeline
|
|
2422
|
+
defaultApp: null
|
|
2423
|
+
pinnedApps:
|
|
2424
|
+
- dashboard
|
|
2425
|
+
- data
|
|
2426
|
+
sidebarItems:
|
|
2427
|
+
- kind: view
|
|
2428
|
+
viewName: Pipeline
|
|
2429
|
+
label: Pipeline
|
|
2430
|
+
icon: git-branch
|
|
2431
|
+
- kind: view
|
|
2432
|
+
viewName: People
|
|
2433
|
+
label: People
|
|
2434
|
+
icon: users
|
|
2435
|
+
- kind: view
|
|
2436
|
+
viewName: Companies
|
|
2437
|
+
label: Companies
|
|
2438
|
+
icon: building-2
|
|
2439
|
+
- kind: view
|
|
2440
|
+
viewName: Deals
|
|
2441
|
+
label: Deals
|
|
2442
|
+
icon: handshake
|
|
2443
|
+
- kind: view
|
|
2444
|
+
viewName: Clients
|
|
2445
|
+
label: Clients
|
|
2446
|
+
icon: briefcase
|
|
2447
|
+
- kind: view
|
|
2448
|
+
viewName: Campaigns
|
|
2449
|
+
label: Campaigns
|
|
2450
|
+
icon: megaphone
|
|
2451
|
+
- kind: view
|
|
2452
|
+
viewName: Journeys
|
|
2453
|
+
label: Journeys
|
|
2454
|
+
icon: map
|
|
2455
|
+
- kind: view
|
|
2456
|
+
viewName: Tasks
|
|
2457
|
+
label: Tasks
|
|
2458
|
+
icon: check-square
|
|
2459
|
+
- kind: view
|
|
2460
|
+
viewName: Activity
|
|
2461
|
+
label: Activity
|
|
2462
|
+
icon: activity
|
|
2463
|
+
- kind: view
|
|
2464
|
+
viewName: Documents
|
|
2465
|
+
label: Documents
|
|
2466
|
+
icon: file-text
|
|
2467
|
+
bento:
|
|
2468
|
+
blocks:
|
|
2469
|
+
- kind: widget
|
|
2470
|
+
widgetType: welcome-header
|
|
2471
|
+
pos:
|
|
2472
|
+
x: 0
|
|
2473
|
+
"y": 0
|
|
2474
|
+
w: 12
|
|
2475
|
+
h: 2
|
|
2476
|
+
- kind: widget
|
|
2477
|
+
widgetType: entity-count
|
|
2478
|
+
pos:
|
|
2479
|
+
x: 0
|
|
2480
|
+
"y": 2
|
|
2481
|
+
w: 3
|
|
2482
|
+
h: 2
|
|
2483
|
+
config:
|
|
2484
|
+
profileSlug: deal
|
|
2485
|
+
label: Open Deals
|
|
2486
|
+
- kind: widget
|
|
2487
|
+
widgetType: entity-count
|
|
2488
|
+
pos:
|
|
2489
|
+
x: 3
|
|
2490
|
+
"y": 2
|
|
2491
|
+
w: 3
|
|
2492
|
+
h: 2
|
|
2493
|
+
config:
|
|
2494
|
+
profileSlug: contact
|
|
2495
|
+
label: Contacts
|
|
2496
|
+
- kind: widget
|
|
2497
|
+
widgetType: entity-count
|
|
2498
|
+
pos:
|
|
2499
|
+
x: 6
|
|
2500
|
+
"y": 2
|
|
2501
|
+
w: 3
|
|
2502
|
+
h: 2
|
|
2503
|
+
config:
|
|
2504
|
+
profileSlug: company
|
|
2505
|
+
label: Companies
|
|
2506
|
+
- kind: widget
|
|
2507
|
+
widgetType: entity-count
|
|
2508
|
+
pos:
|
|
2509
|
+
x: 9
|
|
2510
|
+
"y": 2
|
|
2511
|
+
w: 3
|
|
2512
|
+
h: 2
|
|
2513
|
+
config:
|
|
2514
|
+
profileSlug: activity
|
|
2515
|
+
label: Activities
|
|
2516
|
+
- kind: widget
|
|
2517
|
+
widgetType: entity-list
|
|
2518
|
+
pos:
|
|
2519
|
+
x: 0
|
|
2520
|
+
"y": 4
|
|
2521
|
+
w: 6
|
|
2522
|
+
h: 4
|
|
2523
|
+
config:
|
|
2524
|
+
profileSlug: deal
|
|
2525
|
+
title: Hot Deals
|
|
2526
|
+
limit: 8
|
|
2527
|
+
variant: detailed
|
|
2528
|
+
- kind: widget
|
|
2529
|
+
widgetType: entity-list
|
|
2530
|
+
pos:
|
|
2531
|
+
x: 6
|
|
2532
|
+
"y": 4
|
|
2533
|
+
w: 6
|
|
2534
|
+
h: 4
|
|
2535
|
+
config:
|
|
2536
|
+
profileSlug: contact
|
|
2537
|
+
title: Top Contacts
|
|
2538
|
+
limit: 8
|
|
2539
|
+
variant: compact
|
|
2540
|
+
- kind: widget
|
|
2541
|
+
widgetType: entity-list
|
|
2542
|
+
pos:
|
|
2543
|
+
x: 0
|
|
2544
|
+
"y": 8
|
|
2545
|
+
w: 4
|
|
2546
|
+
h: 4
|
|
2547
|
+
config:
|
|
2548
|
+
profileSlug: company
|
|
2549
|
+
title: Key Accounts
|
|
2550
|
+
limit: 6
|
|
2551
|
+
variant: compact
|
|
2552
|
+
- kind: widget
|
|
2553
|
+
widgetType: feed
|
|
2554
|
+
pos:
|
|
2555
|
+
x: 4
|
|
2556
|
+
"y": 8
|
|
2557
|
+
w: 4
|
|
2558
|
+
h: 4
|
|
2559
|
+
- kind: widget
|
|
2560
|
+
widgetType: calendar
|
|
2561
|
+
pos:
|
|
2562
|
+
x: 8
|
|
2563
|
+
"y": 8
|
|
2564
|
+
w: 4
|
|
2565
|
+
h: 4
|
|
2566
|
+
integrations:
|
|
2567
|
+
- templateKey: nango-google
|
|
2568
|
+
onboarding:
|
|
2569
|
+
goal: Capture the user's sales pipeline shape, their key accounts/contacts, and how they qualify and move deals — so the CRM reflects their real revenue motion, not a generic template.
|
|
2570
|
+
framing: "Act as a sharp revenue/sales-ops lead. Tease out how they actually sell: who they sell to, what stages a deal moves through, where leads come from, and what 'qualified' means to them. Translate their words into pipeline config, companies, contacts, and deals."
|
|
2571
|
+
collect:
|
|
2572
|
+
- profileSlug: pipeline
|
|
2573
|
+
what: Their real deal stages in order (e.g. Lead → Qualified → Demo → Proposal → Won/Lost)
|
|
2574
|
+
cardinality: one
|
|
2575
|
+
keyFields:
|
|
2576
|
+
- title
|
|
2577
|
+
- pipeline-type
|
|
2578
|
+
- quarter-target
|
|
2579
|
+
- profileSlug: company
|
|
2580
|
+
what: Their most important active accounts/prospects
|
|
2581
|
+
cardinality: several
|
|
2582
|
+
keyFields:
|
|
2583
|
+
- title
|
|
2584
|
+
- industry
|
|
2585
|
+
- website
|
|
2586
|
+
- profileSlug: contact
|
|
2587
|
+
what: Key people at those accounts
|
|
2588
|
+
cardinality: several
|
|
2589
|
+
keyFields:
|
|
2590
|
+
- title
|
|
2591
|
+
- email
|
|
2592
|
+
- contact-role
|
|
2593
|
+
- company-name
|
|
2594
|
+
- profileSlug: deal
|
|
2595
|
+
what: Open opportunities worth tracking now
|
|
2596
|
+
cardinality: few
|
|
2597
|
+
keyFields:
|
|
2598
|
+
- title
|
|
2599
|
+
- stage
|
|
2600
|
+
- deal-value
|
|
2601
|
+
- deal-company
|
|
2602
|
+
openingQuestions:
|
|
2603
|
+
- What does a deal go through from first contact to closed — what are your stages?
|
|
2604
|
+
- Who are your 3-5 most important active accounts right now?
|
|
2605
|
+
- Where do most of your leads come from?
|
|
2606
|
+
doneWhen: Pipeline stages reflect their real motion, their top accounts + key contacts exist, and at least a couple of live deals are placed on the pipeline.
|