@dao42/d42paas-front 0.7.63 → 0.7.64

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/DaoPaaS.d.ts CHANGED
@@ -92,7 +92,7 @@ interface UserInfo {
92
92
  color?: string;
93
93
  name?: string;
94
94
  username?: string;
95
- userId?: string;
95
+ agentUserId?: string;
96
96
  role?: string;
97
97
  avatar?: string;
98
98
  onlineCount?: number;
@@ -100,9 +100,9 @@ interface UserInfo {
100
100
 
101
101
  // interface ReplayType {
102
102
  // /**
103
- // * The userId of the user who started the replay
103
+ // * The agentUserId of the user who started the replay
104
104
  // */
105
- // userId?: UserInfo['userId'];
105
+ // agentUserId?: UserInfo['agentUserId'];
106
106
 
107
107
  // /**
108
108
  // * The timestamp of the replay
@@ -404,10 +404,10 @@ export interface Options {
404
404
 
405
405
  /**
406
406
  *
407
- * userId for the playground.
407
+ * agentUserId for the playground.
408
408
  *
409
409
  */
410
- // userId: string;
410
+ // agentUserId: string;
411
411
 
412
412
  /**
413
413
  *
@@ -535,7 +535,7 @@ export class DaoPaaS {
535
535
  * @param {followUser} args
536
536
  *
537
537
  */
538
- followUser(userId: string, callback: (userInfo: UserInfo) => void): void;
538
+ followUser(agentUserId: string, callback: (userInfo: UserInfo) => void): void;
539
539
 
540
540
  /**
541
541
  *
@@ -552,7 +552,7 @@ export class DaoPaaS {
552
552
  * @param {ReplayType} args
553
553
  *
554
554
  */
555
- replay(userId: Pick<UserInfo, 'userId'>): void;
555
+ replay(agentUserId: Pick<UserInfo, 'agentUserId'>): void;
556
556
 
557
557
  /**
558
558
  *