chore: clean repository (full-reset)
This commit is contained in:
parent
0c36625fd0
commit
a4f163cef2
|
|
@ -1,47 +0,0 @@
|
|||
{
|
||||
"name": "pocketbase-lite",
|
||||
"version": "0.1.0",
|
||||
"paths": {
|
||||
"data": "collections/",
|
||||
"media": "media/",
|
||||
"indexes": ".gitapp/indexes/"
|
||||
},
|
||||
"schemas": [
|
||||
{
|
||||
"id": "tags",
|
||||
"file": "schemas/tags.json",
|
||||
"glob": "collections/tags/*.json"
|
||||
},
|
||||
{
|
||||
"id": "companies",
|
||||
"file": "schemas/companies.json",
|
||||
"glob": "collections/companies/*.json"
|
||||
},
|
||||
{
|
||||
"id": "contacts",
|
||||
"file": "schemas/contacts.json",
|
||||
"glob": "collections/contacts/*.json"
|
||||
},
|
||||
{
|
||||
"id": "deals",
|
||||
"file": "schemas/deals.json",
|
||||
"glob": "collections/deals/*.json"
|
||||
},
|
||||
{
|
||||
"id": "activities",
|
||||
"file": "schemas/activities.json",
|
||||
"glob": "collections/activities/*.json"
|
||||
}
|
||||
],
|
||||
"operations": [],
|
||||
"policies": {
|
||||
"roles": [
|
||||
"viewer",
|
||||
"editor"
|
||||
],
|
||||
"acl": null
|
||||
},
|
||||
"lfs": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
{
|
||||
"$id": "activities",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"type",
|
||||
"subject",
|
||||
"date"
|
||||
],
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"call",
|
||||
"email",
|
||||
"meeting",
|
||||
"note",
|
||||
"task"
|
||||
]
|
||||
},
|
||||
"subject": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "contacts",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"deal": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "deals",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
{
|
||||
"$id": "companies",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"industry"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"industry": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"1-10",
|
||||
"11-50",
|
||||
"51-200",
|
||||
"201-500",
|
||||
"500+"
|
||||
]
|
||||
},
|
||||
"website": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
"logo": {
|
||||
"type": "string"
|
||||
},
|
||||
"revenue": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
"$id": "contacts",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"email"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"email": {
|
||||
"type": "string",
|
||||
"format": "email"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"company": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "companies",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
{
|
||||
"$id": "deals",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"title",
|
||||
"value",
|
||||
"stage"
|
||||
],
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"value": {
|
||||
"type": "number",
|
||||
"minimum": 0
|
||||
},
|
||||
"stage": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"lead",
|
||||
"qualified",
|
||||
"proposal",
|
||||
"negotiation",
|
||||
"won",
|
||||
"lost"
|
||||
]
|
||||
},
|
||||
"probability": {
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"maximum": 100
|
||||
},
|
||||
"closeDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "contacts",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"company": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "companies",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"$id": "tags",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Support request",
|
||||
"notes": "Arbustum suadeo tamquam amet argumentum curtus. Vilis custodia undique caelum stips pauper thymbra.",
|
||||
"date": "2025-12-16T12:19:21.459Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_11",
|
||||
"deal": "deal_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Tabgo debilito culpa comburo studio molestiae asper. Desipio mollitia autus.",
|
||||
"date": "2025-12-13T07:59:21.350Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_6",
|
||||
"deal": "deal_1766159404791_7",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Product demo",
|
||||
"notes": "Charisma curriculum auxilium uxor credo omnis vulgivagus. Cultura cado vilis conduco.",
|
||||
"date": "2025-12-03T05:51:52.456Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_13",
|
||||
"deal": "deal_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Follow-up call",
|
||||
"notes": "Summisse confido ipsam tam crastinus vulpes depopulo beatus sollicito. Assentator quaerat vereor creta atqui sunt charisma perferendis dolorum.",
|
||||
"date": "2025-12-16T13:32:41.738Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_7",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Contract review",
|
||||
"notes": "Crudelis uredo defendo allatus vehemens praesentium defessus cupressus. Temptatio cumque spoliatio nemo cenaculum amet.",
|
||||
"date": "2025-12-04T22:29:45.587Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_12",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Antea aedificium coma aduro tunc tubineus turba abduco tactus. Adinventitias usitas tunc optio appello.",
|
||||
"date": "2025-12-09T22:49:40.455Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_6",
|
||||
"deal": "deal_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Deduco consuasor defetiscor theatrum clementia cultellus. Reiciendis alias aranea illum desino.",
|
||||
"date": "2025-12-17T06:40:09.093Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_14",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Feature request",
|
||||
"notes": "Arbor degenero angelus apostolus. Apparatus sui cogito texo ante.",
|
||||
"date": "2025-12-11T01:46:00.442Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Nemo thema virgo doloribus beatae. Attonbitus reiciendis temporibus accusator.",
|
||||
"date": "2025-12-01T03:37:42.296Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_5",
|
||||
"deal": "deal_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Collum aurum amplus tertius despecto dolore abundans. Sub uxor aggredior non voluptatibus.",
|
||||
"date": "2025-12-16T06:31:12.331Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_15",
|
||||
"deal": "deal_1766159404791_8",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Altus tyrannus uredo toties vulariter sto attollo. Verus tergum cubo tardus cui benigne vero curto sono tutis.",
|
||||
"date": "2025-12-04T00:35:32.860Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_9",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Cribro aptus vobis summa. Tamdiu dolorum succurro suscipio aureus sui.",
|
||||
"date": "2025-11-28T01:34:14.592Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_13",
|
||||
"deal": "deal_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Product demo",
|
||||
"notes": "Coruscus terebro consuasor. Vereor tenuis delectatio.",
|
||||
"date": "2025-11-22T21:44:52.011Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_7",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Support request",
|
||||
"notes": "Cruciamentum correptius verus benevolentia adhaero eligendi illo. Magnam quos voluptatem ustulo deripio corroboro vestigium cado cohibeo ventito.",
|
||||
"date": "2025-11-21T06:35:24.206Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_14",
|
||||
"deal": "deal_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Support request",
|
||||
"notes": "Aliquid vesica curatio vesica vomito strenuus cum appello. Cunctatio quis crepusculum.",
|
||||
"date": "2025-12-14T12:11:44.825Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_9",
|
||||
"deal": "deal_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "task",
|
||||
"subject": "Feature request",
|
||||
"notes": "Deficio vitium utrimque perferendis sto cuius contego. Benigne tactus ad tempora nam sub deleo comparo reprehenderit succurro.",
|
||||
"date": "2025-11-22T10:52:47.094Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_3",
|
||||
"deal": "deal_1766159404791_8",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Ab ait comedo celebrer solum nemo ustulo aveho timor itaque. Decens terra temporibus porro est theologus cultura carbo sodalitas.",
|
||||
"date": "2025-12-06T21:11:23.631Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_15",
|
||||
"deal": "deal_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Deficio utilis video adfectus. Coepi socius solum arcus atavus.",
|
||||
"date": "2025-12-05T18:57:13.051Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_6",
|
||||
"deal": "deal_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "task",
|
||||
"subject": "Product demo",
|
||||
"notes": "Succurro enim quidem vapulus vito caecus aeger necessitatibus iusto. Acsi aliquam comburo amissio quaerat cursim solvo accusator abundans.",
|
||||
"date": "2025-12-01T00:09:08.752Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_10",
|
||||
"deal": "deal_1766159404791_9",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Aperte amita voluntarius corpus voluptatibus testimonium tolero substantia. Tabula turpis conventus coniecto acquiro.",
|
||||
"date": "2025-11-29T20:33:38.270Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_6",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "task",
|
||||
"subject": "Feature request",
|
||||
"notes": "Doloremque adamo sollicito valde chirographum cubicularis peccatus. Voluptatum amita pecto adflicto vulgo coniecto tersus vomito animadverto.",
|
||||
"date": "2025-12-18T01:32:35.490Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_4",
|
||||
"deal": "deal_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Product demo",
|
||||
"notes": "Torqueo comedo tonsor tam arma sophismata tricesimus deficio aperiam. Sollers subito decimus repellat alii celer quod vicissitudo acceptus tempora.",
|
||||
"date": "2025-12-05T21:48:23.968Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_17",
|
||||
"deal": "deal_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "task",
|
||||
"subject": "Contract review",
|
||||
"notes": "Agnosco quae voluptas conatus sequi ager colo. Placeat assumenda dolore.",
|
||||
"date": "2025-12-19T15:35:13.946Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_7",
|
||||
"deal": "deal_1766159404791_7",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Verto sequi depraedor tamdiu clibanus pauci ventosus tenuis. Tamdiu appositus cruentus.",
|
||||
"date": "2025-12-11T11:43:45.784Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_12",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Maiores cariosus totus ratione. Alius aequus solium.",
|
||||
"date": "2025-11-24T07:17:27.870Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_7",
|
||||
"deal": "deal_1766159404791_9",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Quo undique claudeo attero conduco corpus deporto socius. Succedo distinctio coaegresco deinde vorax adduco usus sophismata abutor denuo.",
|
||||
"date": "2025-12-10T04:27:19.685Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_7",
|
||||
"deal": "deal_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Vir arcus allatus. Aiunt facere tabula aurum amor ante.",
|
||||
"date": "2025-12-10T14:55:28.524Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_14",
|
||||
"deal": "deal_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Quarterly review",
|
||||
"notes": "Unus aiunt deleniti turbo atque coniecto apostolus contigo sapiente. Talis vulgo ventosus stultus tremo solio.",
|
||||
"date": "2025-12-10T22:50:24.690Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_8",
|
||||
"deal": "deal_1766159404791_7",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "call",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Fuga sonitus sponte. Beatae damnatio accendo quidem.",
|
||||
"date": "2025-12-06T07:52:08.121Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_12",
|
||||
"deal": "deal_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Feature request",
|
||||
"notes": "Auctus demulceo amplexus ex crebro contego stabilis vapulus deduco. Tum caterva quasi crinis synagoga tantillus abbas viridis tener sub.",
|
||||
"date": "2025-12-18T02:55:56.127Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_9",
|
||||
"deal": "deal_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Support request",
|
||||
"notes": "Cubo vaco comburo accusantium quo pax. Incidunt patruus adhaero centum cinis demonstro coma aeternus stultus tergo.",
|
||||
"date": "2025-11-24T17:51:29.336Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Follow-up call",
|
||||
"notes": "Admitto vinitor recusandae carpo dolorum voveo aggredior curso vigilo libero. Tamdiu dolorem stips aequitas quia canto cavus amaritudo tot.",
|
||||
"date": "2025-11-22T01:16:47.819Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_11",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Feature request",
|
||||
"notes": "Convoco ab enim. Uter valde pecco.",
|
||||
"date": "2025-12-13T16:35:34.655Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_17",
|
||||
"deal": "deal_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "note",
|
||||
"subject": "Contract review",
|
||||
"notes": "Uter totus sono contra alo teneo suscipio curia desparatus numquam. Valens temptatio summopere modi antea arto.",
|
||||
"date": "2025-12-12T22:42:42.722Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_18",
|
||||
"deal": "deal_1766159404791_8",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Contract review",
|
||||
"notes": "Totus sapiente ademptio ascit. Censura temperantia aestivus summisse soleo adimpleo cerno subito.",
|
||||
"date": "2025-11-27T09:11:41.178Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_17",
|
||||
"deal": "deal_1766159404791_7",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "email",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Adiuvo celebrer cohors arceo vicinus supellex demergo solio celer vesco. Vester atqui desidero volubilis conor reiciendis cicuta.",
|
||||
"date": "2025-12-12T22:01:17.961Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_2",
|
||||
"deal": "deal_1766159404791_9",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Onboarding meeting",
|
||||
"notes": "Coniuratio deripio uter. Ambitus adaugeo conicio.",
|
||||
"date": "2025-12-01T05:45:21.528Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_1",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Versus cogo reiciendis corrigo deleo. Votum statua ago tripudio crapula autem color spes.",
|
||||
"date": "2025-12-07T12:13:44.097Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_1",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "meeting",
|
||||
"subject": "Proposal discussion",
|
||||
"notes": "Officia tot et aegrus accusantium compono congregatio consectetur video. Urbs vigilo voluptates degusto.",
|
||||
"date": "2025-12-04T20:06:26.912Z",
|
||||
"completed": true,
|
||||
"contact": "cont_1766159404791_19",
|
||||
"deal": "deal_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"type": "task",
|
||||
"subject": "Support request",
|
||||
"notes": "Accedo deludo ullam teneo terebro tepesco utpote a creo. Ater ceno voro truculenter unde timidus callide.",
|
||||
"date": "2025-11-22T21:46:26.149Z",
|
||||
"completed": false,
|
||||
"contact": "cont_1766159404791_15",
|
||||
"deal": "deal_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:08.107Z",
|
||||
"updated": "2025-12-19T15:50:08.107Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Rau, Weber and Lind",
|
||||
"industry": "Retail",
|
||||
"size": "51-200",
|
||||
"website": "https://round-bakeware.info",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": ">$100M",
|
||||
"description": "Polarised transitional contingency",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Schaefer - Lind",
|
||||
"industry": "Technology",
|
||||
"size": "1-10",
|
||||
"website": "https://formal-doorpost.com/",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": "<$1M",
|
||||
"description": "Compatible exuding standardization",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Corwin - Gleichner",
|
||||
"industry": "Real Estate",
|
||||
"size": "201-500",
|
||||
"website": "https://lucky-jury.info/",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": "$1M-$10M",
|
||||
"description": "Open-architected encompassing contingency",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Reichert Group",
|
||||
"industry": "Energy",
|
||||
"size": "201-500",
|
||||
"website": "https://energetic-injunction.org",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": ">$100M",
|
||||
"description": "Diverse regional workforce",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Casper and Sons",
|
||||
"industry": "Education",
|
||||
"size": "11-50",
|
||||
"website": "https://funny-toothpick.org/",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": "$50M-$100M",
|
||||
"description": "Team-oriented value-added synergy",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Lebsack, Torphy and Stoltenberg",
|
||||
"industry": "Technology",
|
||||
"size": "1-10",
|
||||
"website": "https://monumental-bell.biz/",
|
||||
"logo": "https://placehold.co/100x100/333/fff?text=Logo",
|
||||
"revenue": "$1M-$10M",
|
||||
"description": "Progressive cloud-native challenge",
|
||||
"created": "2025-12-19T15:50:06.190Z",
|
||||
"updated": "2025-12-19T15:50:06.190Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Alexandra Douglas",
|
||||
"email": "Estel.Yundt@gmail.com",
|
||||
"phone": "(250) 392-8599 x8156",
|
||||
"title": "Lead Integration Agent",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Earum videlicet tunc occaecati cohors adimpleo colo.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Alfred Huels",
|
||||
"email": "Wilson45@yahoo.com",
|
||||
"phone": "1-742-713-3378 x00965",
|
||||
"title": "Investor Solutions Manager",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Dapifer vulticulus temptatio volup damno.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Alex Konopelski",
|
||||
"email": "Alva38@yahoo.com",
|
||||
"phone": "1-865-571-0193 x357",
|
||||
"title": "Internal Configuration Strategist",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Avarus advenio illo cuius consequuntur clarus spero titulus tres abscido.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Jeannette Brekke",
|
||||
"email": "Vernice.Schaefer48@yahoo.com",
|
||||
"phone": "(377) 623-9310 x40134",
|
||||
"title": "Internal Mobility Assistant",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Amaritudo aestivus summopere rem solvo alienus tam viridis via taedium.",
|
||||
"company": "comp_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Phillip Turcotte",
|
||||
"email": "Daphney6@hotmail.com",
|
||||
"phone": "373.920.7042",
|
||||
"title": "National Paradigm Executive",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Acceptus vesica taedium coepi vindico minus vitiosus.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Kendra Rempel",
|
||||
"email": "Elda_Trantow38@hotmail.com",
|
||||
"phone": "875.785.9069 x7686",
|
||||
"title": "Future Security Coordinator",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Deduco condico certe et tactus vere colo tero depereo molestias.",
|
||||
"company": "comp_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Mr. Ronald Casper",
|
||||
"email": "Lenore53@yahoo.com",
|
||||
"phone": "967-474-9793 x1431",
|
||||
"title": "Regional Markets Coordinator",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Velit deserunt iusto casus nihil abstergo tredecim subvenio.",
|
||||
"company": "comp_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Patrick Mosciski",
|
||||
"email": "Vivianne.Mohr@gmail.com",
|
||||
"phone": "376-977-4750 x8006",
|
||||
"title": "Investor Applications Assistant",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Coma derideo angustus tamen capto triduana.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Tasha Dickinson",
|
||||
"email": "Libby_Lubowitz61@hotmail.com",
|
||||
"phone": "321-221-2096",
|
||||
"title": "International Accounts Strategist",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Quos audax ciminatio usitas.",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Luther Kub",
|
||||
"email": "Rosalind.Walter83@hotmail.com",
|
||||
"phone": "1-292-423-6003 x2676",
|
||||
"title": "Human Usability Planner",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Deprecator ducimus compono.",
|
||||
"company": "comp_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Mr. Cornelius Corkery",
|
||||
"email": "Hillary.Beahan@hotmail.com",
|
||||
"phone": "(259) 586-3231",
|
||||
"title": "International Web Facilitator",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Consectetur cupiditas ago veritatis distinctio deserunt acceptus averto ara vulgivagus.",
|
||||
"company": "comp_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Deborah Toy",
|
||||
"email": "Norma_Feest@gmail.com",
|
||||
"phone": "1-551-468-0933 x605",
|
||||
"title": "Lead Infrastructure Consultant",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Videlicet eum bellum cunae depulso assumenda concedo.",
|
||||
"company": "comp_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Kristopher Cremin",
|
||||
"email": "Alva_Gerlach@yahoo.com",
|
||||
"phone": "364.752.7899",
|
||||
"title": "Investor Group Officer",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Verus bis audio coepi bellum sustineo crebro.",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Dr. Boyd Yundt",
|
||||
"email": "Hobart_Dicki@gmail.com",
|
||||
"phone": "1-260-273-0068 x8074",
|
||||
"title": "Lead Web Director",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Testimonium vel animus subiungo.",
|
||||
"company": "comp_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Ada Tromp",
|
||||
"email": "Rupert.Kirlin@gmail.com",
|
||||
"phone": "(263) 425-3175",
|
||||
"title": "Central Communications Liaison",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Validus tergeo carus desipio astrum vinco arca tollo correptius.",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Carol Harvey PhD",
|
||||
"email": "Emmanuel_Kirlin@yahoo.com",
|
||||
"phone": "(261) 437-5400 x28525",
|
||||
"title": "Investor Research Analyst",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Tenax vestrum autem comminor similique vallum suffoco.",
|
||||
"company": "comp_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Kenneth Boyer IV",
|
||||
"email": "Clifton35@hotmail.com",
|
||||
"phone": "529-261-5053",
|
||||
"title": "Customer Communications Representative",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Nihil baiulus impedit eos velit cupressus ciminatio asper.",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Joanne Rodriguez",
|
||||
"email": "Coy_Lebsack@hotmail.com",
|
||||
"phone": "761-784-7626",
|
||||
"title": "Human Markets Planner",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Deputo apostolus toties.",
|
||||
"company": "comp_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Dominick Satterfield MD",
|
||||
"email": "Johan.Runolfsdottir-Stehr@gmail.com",
|
||||
"phone": "368.363.5416 x4491",
|
||||
"title": "District Operations Coordinator",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Angustus subnecto terra stipes deripio nihil terebro attonbitus.",
|
||||
"company": "comp_1766159404791_2",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Francis Larson",
|
||||
"email": "Ezra76@hotmail.com",
|
||||
"phone": "278.462.3762 x25185",
|
||||
"title": "Principal Assurance Administrator",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=Avatar",
|
||||
"notes": "Succurro repellendus abeo curto culpo vos comitatus.",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:06.790Z",
|
||||
"updated": "2025-12-19T15:50:06.790Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Electronic Pants Deal",
|
||||
"value": 214531,
|
||||
"stage": "lead",
|
||||
"probability": 45,
|
||||
"closeDate": "2026-02-14",
|
||||
"notes": "Canis triduana ambulo cognomen ago pariatur adficio cilicium atrox brevis.",
|
||||
"contact": "cont_1766159404791_15",
|
||||
"company": "comp_1766159404791_1",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Refined Cheese Deal",
|
||||
"value": 312045,
|
||||
"stage": "qualified",
|
||||
"probability": 75,
|
||||
"closeDate": "2026-07-11",
|
||||
"notes": "Aliquam culpa sponte crux crustulum appositus antepono omnis spectaculum victoria.",
|
||||
"contact": "cont_1766159404791_2",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Handcrafted Pants Deal",
|
||||
"value": 360475,
|
||||
"stage": "won",
|
||||
"probability": 100,
|
||||
"closeDate": "2026-11-06",
|
||||
"notes": "Tabgo iusto tantillus textilis vobis tenax ceno desolo.",
|
||||
"contact": "cont_1766159404791_15",
|
||||
"company": "comp_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Elegant Ball Deal",
|
||||
"value": 250874,
|
||||
"stage": "lost",
|
||||
"probability": 0,
|
||||
"closeDate": "2025-12-29",
|
||||
"notes": "Amaritudo viduo decor termes.",
|
||||
"contact": "cont_1766159404791_1",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Handmade Soap Deal",
|
||||
"value": 127933,
|
||||
"stage": "proposal",
|
||||
"probability": 20,
|
||||
"closeDate": "2026-03-04",
|
||||
"notes": "Adulescens terra cunabula tertius claustrum abscido ceno.",
|
||||
"contact": "cont_1766159404791_4",
|
||||
"company": "comp_1766159404791_0",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Electronic Chair Deal",
|
||||
"value": 323085,
|
||||
"stage": "proposal",
|
||||
"probability": 10,
|
||||
"closeDate": "2026-04-19",
|
||||
"notes": "Vitium crapula angustus defendo placeat temperantia.",
|
||||
"contact": "cont_1766159404791_12",
|
||||
"company": "comp_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Elegant Chips Deal",
|
||||
"value": 464990,
|
||||
"stage": "lead",
|
||||
"probability": 33,
|
||||
"closeDate": "2026-10-03",
|
||||
"notes": "Caries vilicus demum curtus tripudio vestrum.",
|
||||
"contact": "cont_1766159404791_13",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Incredible Shirt Deal",
|
||||
"value": 424135,
|
||||
"stage": "qualified",
|
||||
"probability": 22,
|
||||
"closeDate": "2026-03-19",
|
||||
"notes": "Tracto totus termes valens baiulus altus verus conscendo.",
|
||||
"contact": "cont_1766159404791_14",
|
||||
"company": "comp_1766159404791_5",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Refined Chicken Deal",
|
||||
"value": 240514,
|
||||
"stage": "qualified",
|
||||
"probability": 42,
|
||||
"closeDate": "2026-03-28",
|
||||
"notes": "Thema abbas tondeo.",
|
||||
"contact": "cont_1766159404791_11",
|
||||
"company": "comp_1766159404791_3",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"title": "Luxurious Cheese Deal",
|
||||
"value": 105386,
|
||||
"stage": "lead",
|
||||
"probability": 83,
|
||||
"closeDate": "2026-02-12",
|
||||
"notes": "Comburo suus laboriosam depromo.",
|
||||
"contact": "cont_1766159404791_10",
|
||||
"company": "comp_1766159404791_4",
|
||||
"created": "2025-12-19T15:50:07.498Z",
|
||||
"updated": "2025-12-19T15:50:07.498Z"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"name": "SMB",
|
||||
"color": "#2a159d",
|
||||
"created": "2025-12-19T15:50:05.637Z",
|
||||
"updated": "2025-12-19T15:50:05.637Z"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"name": "Lead",
|
||||
"color": "#91afd5",
|
||||
"created": "2025-12-19T15:50:05.637Z",
|
||||
"updated": "2025-12-19T15:50:05.637Z"
|
||||
}
|
||||
Loading…
Reference in New Issue