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.esm.js
CHANGED
|
@@ -5818,7 +5818,10 @@ const roomCrmStatusEnum = z.enum([
|
|
|
5818
5818
|
'new',
|
|
5819
5819
|
'follow_up',
|
|
5820
5820
|
'qualified',
|
|
5821
|
+
'meeting_arranged',
|
|
5822
|
+
'proposal_sent',
|
|
5821
5823
|
'won',
|
|
5824
|
+
'lost',
|
|
5822
5825
|
'archived',
|
|
5823
5826
|
]);
|
|
5824
5827
|
const roomCrmArchivedReasonEnum = z.enum([
|
|
@@ -6002,11 +6005,12 @@ const PIPELINE_COLUMN_COLORS = [
|
|
|
6002
6005
|
'pink',
|
|
6003
6006
|
];
|
|
6004
6007
|
const DEFAULT_PIPELINE_COLUMNS = [
|
|
6005
|
-
{ id: 'new', label: 'New', color: 'blue', position: 0 },
|
|
6006
|
-
{ id: 'qualified', label: 'Qualified', color: 'emerald', position: 1 },
|
|
6007
|
-
{ id: '
|
|
6008
|
-
{ id: '
|
|
6009
|
-
{ id: '
|
|
6008
|
+
{ id: 'new', label: 'New Leads', color: 'blue', position: 0 },
|
|
6009
|
+
{ id: 'qualified', label: 'Qualified Leads', color: 'emerald', position: 1 },
|
|
6010
|
+
{ id: 'meeting_arranged', label: 'Meeting Arranged', color: 'amber', position: 2 },
|
|
6011
|
+
{ id: 'proposal_sent', label: 'Proposal Sent', color: 'cyan', position: 3 },
|
|
6012
|
+
{ id: 'won', label: 'Won', color: 'violet', position: 4 },
|
|
6013
|
+
{ id: 'lost', label: 'Lost', color: 'rose', position: 5 },
|
|
6010
6014
|
];
|
|
6011
6015
|
const DEFAULT_PIPELINE_COLUMN_ID = 'new';
|
|
6012
6016
|
const DEFAULT_ROOM_CRM_STATUS = DEFAULT_PIPELINE_COLUMN_ID;
|