lancer-shared 1.2.347 → 1.2.349

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.
@@ -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: 'follow_up', label: 'Follow Up', color: 'amber', position: 2 },
6010
- { id: 'won', label: 'Active Contract', color: 'violet', position: 3 },
6011
- { id: 'completed', label: 'Completed', color: 'slate', position: 4 },
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;
@@ -6977,6 +6981,10 @@ const assignDecodoProxyToBidderAccountSchema = z.object({
6977
6981
  proxyString: z.string().min(1),
6978
6982
  country: proxyCountryEnum,
6979
6983
  });
6984
+ const assignProxyCheapProxyToBidderAccountSchema = z.object({
6985
+ proxyString: z.string().min(1),
6986
+ country: proxyCountryEnum,
6987
+ });
6980
6988
  const reconnectBidderAccountResponseSchema = z.object({
6981
6989
  agencyName: z.string(),
6982
6990
  photoUrl: z.string(),
@@ -15908,6 +15916,7 @@ const ROUTES = {
15908
15916
  AGENCIES: 'admin/bidder-accounts/agencies',
15909
15917
  ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
15910
15918
  ASSIGN_DECODO_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-decodo-proxy`,
15919
+ ASSIGN_PROXY_CHEAP_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-proxy-cheap-proxy`,
15911
15920
  RETRY_CONNECT: (bidderId) => `admin/bidder-accounts/${bidderId}/retry-connect`,
15912
15921
  SYNC_PROPOSALS_STATUS: (bidderId) => `admin/bidder-accounts/${bidderId}/sync-proposals-status`,
15913
15922
  },
@@ -24937,6 +24946,7 @@ exports.agentTaskResponseSchema = agentTaskResponseSchema;
24937
24946
  exports.aiConfigSchema = aiConfigSchema;
24938
24947
  exports.alreadyHiredActionEnum = alreadyHiredActionEnum;
24939
24948
  exports.assignDecodoProxyToBidderAccountSchema = assignDecodoProxyToBidderAccountSchema;
24949
+ exports.assignProxyCheapProxyToBidderAccountSchema = assignProxyCheapProxyToBidderAccountSchema;
24940
24950
  exports.assignRoomTagsRequestBodySchema = assignRoomTagsRequestBodySchema;
24941
24951
  exports.bidAsEnum = bidAsEnum;
24942
24952
  exports.bidConfigSchema = bidConfigSchema;