cat-qw-lib 2.1.42 → 2.1.46

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.
@@ -183,6 +183,7 @@ class SHARED {
183
183
  static INCOME = 'income';
184
184
  static VALUATION = 'valuation';
185
185
  static VALUATIONID = 'ValuationId';
186
+ static BROKERCOMPANY_NAME = 'brokerCompanyName';
186
187
  static WIDGET_NAME = 'widgetName';
187
188
  static IS_MENU = 'isMenu';
188
189
  static ON_WIDGET_UPDATE = 'onWidgetUpdate';
@@ -6228,7 +6229,8 @@ class QueueRecordTableBuilderService extends TableBuilder {
6228
6229
  SHARED.ASSIGNED_TO,
6229
6230
  SHARED.TASK_COMPLETION_PERCENT,
6230
6231
  SHARED.RISK_RATING,
6231
- SHARED.LENDING
6232
+ SHARED.LENDING,
6233
+ SHARED.BROKERCOMPANY_NAME
6232
6234
  ]; // Fields to exclude from table columns
6233
6235
  // Get all fields from the first record, excluding specified fields
6234
6236
  const availableFields = Object.keys(firstRecord).filter(field => !excludedFields.includes(field));