@webex/cc-components 1.28.0-ccwidgets.62 → 1.28.0-ccwidgets.63

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.
@@ -90,5 +90,13 @@ export interface IStationLoginProps {
90
90
  * Handler for Contact Center logout
91
91
  */
92
92
  onCCSignOut?: () => void;
93
+ /**
94
+ * The team id for agent login
95
+ */
96
+ teamId: string;
97
+ /**
98
+ * Handler to set team Id
99
+ */
100
+ setTeamId: (teamId: string) => void;
93
101
  }
94
- export type StationLoginComponentProps = Pick<IStationLoginProps, 'teams' | 'loginOptions' | 'login' | 'logout' | 'loginSuccess' | 'loginFailure' | 'logoutSuccess' | 'setDeviceType' | 'setDialNumber' | 'setTeam' | 'isAgentLoggedIn' | 'handleContinue' | 'deviceType' | 'dialNumber' | 'dialNumberRegex' | 'showMultipleLoginAlert' | 'onCCSignOut'>;
102
+ export type StationLoginComponentProps = Pick<IStationLoginProps, 'teams' | 'loginOptions' | 'login' | 'logout' | 'loginSuccess' | 'loginFailure' | 'logoutSuccess' | 'setDeviceType' | 'setDialNumber' | 'setTeam' | 'isAgentLoggedIn' | 'handleContinue' | 'deviceType' | 'dialNumber' | 'dialNumberRegex' | 'showMultipleLoginAlert' | 'onCCSignOut' | 'teamId' | 'setTeamId'>;