lancer-shared 1.2.347 → 1.2.348
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/bundle.cjs.js +9 -5
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -5
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/chat/index.d.ts +13 -13
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -5820,7 +5820,10 @@ const roomCrmStatusEnum = z.enum([
|
|
|
5820
5820
|
'new',
|
|
5821
5821
|
'follow_up',
|
|
5822
5822
|
'qualified',
|
|
5823
|
+
'meeting_arranged',
|
|
5824
|
+
'proposal_sent',
|
|
5823
5825
|
'won',
|
|
5826
|
+
'lost',
|
|
5824
5827
|
'archived',
|
|
5825
5828
|
]);
|
|
5826
5829
|
const roomCrmArchivedReasonEnum = z.enum([
|
|
@@ -6004,11 +6007,12 @@ const PIPELINE_COLUMN_COLORS = [
|
|
|
6004
6007
|
'pink',
|
|
6005
6008
|
];
|
|
6006
6009
|
const DEFAULT_PIPELINE_COLUMNS = [
|
|
6007
|
-
{ id: 'new', label: 'New', color: 'blue', position: 0 },
|
|
6008
|
-
{ id: 'qualified', label: 'Qualified', color: 'emerald', position: 1 },
|
|
6009
|
-
{ id: '
|
|
6010
|
-
{ id: '
|
|
6011
|
-
{ id: '
|
|
6010
|
+
{ id: 'new', label: 'New Leads', color: 'blue', position: 0 },
|
|
6011
|
+
{ id: 'qualified', label: 'Qualified Leads', color: 'emerald', position: 1 },
|
|
6012
|
+
{ id: 'meeting_arranged', label: 'Meeting Arranged', color: 'amber', position: 2 },
|
|
6013
|
+
{ id: 'proposal_sent', label: 'Proposal Sent', color: 'cyan', position: 3 },
|
|
6014
|
+
{ id: 'won', label: 'Won', color: 'violet', position: 4 },
|
|
6015
|
+
{ id: 'lost', label: 'Lost', color: 'rose', position: 5 },
|
|
6012
6016
|
];
|
|
6013
6017
|
const DEFAULT_PIPELINE_COLUMN_ID = 'new';
|
|
6014
6018
|
const DEFAULT_ROOM_CRM_STATUS = DEFAULT_PIPELINE_COLUMN_ID;
|