@periskope/types 0.6.239 → 0.6.241

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.
@@ -823,7 +823,6 @@ export type CreateTicketAction = {
823
823
  | 'shift_time'
824
824
  | 'user_status'
825
825
  | 'shift_time user_status'
826
- | 'none';
827
826
  };
828
827
  };
829
828
 
@@ -847,7 +846,6 @@ export type AssignTicketAction = {
847
846
  | 'shift_time'
848
847
  | 'user_status'
849
848
  | 'shift_time user_status'
850
- | 'none';
851
849
  };
852
850
  };
853
851
 
@@ -889,7 +887,6 @@ export type AssignChatAction = {
889
887
  | 'shift_time'
890
888
  | 'user_status'
891
889
  | 'shift_time user_status'
892
- | 'none';
893
890
  };
894
891
  };
895
892
 
@@ -1394,24 +1391,23 @@ export const ActionNameMap: Record<
1394
1391
  id: 'rr_check_for',
1395
1392
  type: 'dropdown',
1396
1393
  value: [
1397
- { id: 'none', value: 'none', label: 'None' },
1398
1394
  {
1399
1395
  id: 'shift_time',
1400
1396
  value: 'shift_time',
1401
- label: 'Consider shift times',
1397
+ label: 'Consider shift timings',
1402
1398
  },
1403
1399
  {
1404
1400
  id: 'user_status',
1405
1401
  value: 'user_status',
1406
- label: 'Consider online/offline status',
1402
+ label: 'Consider user online/offline status',
1407
1403
  },
1408
1404
  {
1409
1405
  id: 'shift_time user_status',
1410
1406
  value: 'shift_time user_status',
1411
- label: 'Consider both shift and status',
1407
+ label: 'Consider both shift timings and user status',
1412
1408
  },
1413
1409
  ],
1414
- label: 'Round robin assignee check',
1410
+ label: 'Check Assignee status for (Round Robin)',
1415
1411
  placeholder: 'Select...',
1416
1412
  info: 'Criteria for assigning the next available agent',
1417
1413
  required: false,
@@ -1478,24 +1474,23 @@ export const ActionNameMap: Record<
1478
1474
  id: 'rr_check_for',
1479
1475
  type: 'dropdown',
1480
1476
  value: [
1481
- { id: 'none', value: 'none', label: 'None' },
1482
1477
  {
1483
1478
  id: 'shift_time',
1484
1479
  value: 'shift_time',
1485
- label: 'Consider shift times',
1480
+ label: 'Consider shift timings',
1486
1481
  },
1487
1482
  {
1488
1483
  id: 'user_status',
1489
1484
  value: 'user_status',
1490
- label: 'Consider online/offline status',
1485
+ label: 'Consider user online/offline status',
1491
1486
  },
1492
1487
  {
1493
1488
  id: 'shift_time user_status',
1494
1489
  value: 'shift_time user_status',
1495
- label: 'Consider both shift and status',
1490
+ label: 'Consider both shift timings and user status',
1496
1491
  },
1497
1492
  ],
1498
- label: 'Round robin assignee check',
1493
+ label: 'Check Assignee status for (Round Robin)',
1499
1494
  placeholder: 'Select...',
1500
1495
  info: 'Criteria for assigning the next available agent',
1501
1496
  required: false,
@@ -1619,24 +1614,23 @@ export const ActionNameMap: Record<
1619
1614
  id: 'rr_check_for',
1620
1615
  type: 'dropdown',
1621
1616
  value: [
1622
- { id: 'none', value: 'none', label: 'None' },
1623
1617
  {
1624
1618
  id: 'shift_time',
1625
1619
  value: 'shift_time',
1626
- label: 'Consider shift times',
1620
+ label: 'Consider shift timings',
1627
1621
  },
1628
1622
  {
1629
1623
  id: 'user_status',
1630
1624
  value: 'user_status',
1631
- label: 'Consider online/offline status',
1625
+ label: 'Consider user online/offline status',
1632
1626
  },
1633
1627
  {
1634
1628
  id: 'shift_time user_status',
1635
1629
  value: 'shift_time user_status',
1636
- label: 'Consider both shift and status',
1630
+ label: 'Consider both shift timings and user status',
1637
1631
  },
1638
1632
  ],
1639
- label: 'Round robin assignee check',
1633
+ label: 'Check Assignee status for (Round Robin)',
1640
1634
  placeholder: 'Select...',
1641
1635
  info: 'Criteria for assigning the next available agent',
1642
1636
  required: false,
package/src/types.ts CHANGED
@@ -244,6 +244,8 @@ export type OrgMembersType = OverrideProperties<
244
244
  | 'saturday'
245
245
  | 'sunday']?: [[string, string]];
246
246
  };
247
+ override_status: boolean;
248
+ [key: string]: any
247
249
  };
248
250
  }
249
251
  >;