@atlaskit/teams-app-internal-analytics 1.4.0 → 1.6.0
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/CHANGELOG.md +18 -0
- package/analytics.spec.yaml +1266 -0
- package/dist/cjs/common/utils/types.js +5 -0
- package/dist/es2019/common/utils/types.js +1 -0
- package/dist/esm/common/utils/types.js +1 -0
- package/dist/types/common/utils/generated/analytics.types.d.ts +1172 -1
- package/dist/types/common/utils/types.d.ts +3 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types-ts4.5/common/utils/generated/analytics.types.d.ts +1172 -1
- package/dist/types-ts4.5/common/utils/types.d.ts +3 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/package.json +2 -2
package/analytics.spec.yaml
CHANGED
|
@@ -42,6 +42,77 @@ shared:
|
|
|
42
42
|
type: string
|
|
43
43
|
required: false
|
|
44
44
|
description: The trace id
|
|
45
|
+
ExperienceMetadata: &ExperienceMetadata
|
|
46
|
+
sloSatisifed:
|
|
47
|
+
type: boolean
|
|
48
|
+
description: whether the slo was satisfied
|
|
49
|
+
taskDuration:
|
|
50
|
+
type: number
|
|
51
|
+
description: duration of the task
|
|
52
|
+
latencySlo:
|
|
53
|
+
type: number
|
|
54
|
+
description: latency slo
|
|
55
|
+
isStandalone:
|
|
56
|
+
type: boolean
|
|
57
|
+
description: whether the component is standalone
|
|
58
|
+
hasBrowsUsersPermission:
|
|
59
|
+
type: boolean
|
|
60
|
+
description: whether the user has browse users permission
|
|
61
|
+
ExperienceAbortMetadata: &ExperienceAbortMetadata
|
|
62
|
+
abortReason:
|
|
63
|
+
type: string
|
|
64
|
+
description: reason for aborting the task
|
|
65
|
+
ProfileCardAttributes: &ProfileCardAttributes
|
|
66
|
+
firedAt:
|
|
67
|
+
type: number
|
|
68
|
+
description: the time the event was fired
|
|
69
|
+
packageName:
|
|
70
|
+
type: string
|
|
71
|
+
description: name of the package the event was fired from
|
|
72
|
+
packageVersion:
|
|
73
|
+
type: string
|
|
74
|
+
description: version of the package the event was fired from
|
|
75
|
+
AgentProfileCardActionsAttributes: &AgentProfileCardActionsAttributes
|
|
76
|
+
agentId:
|
|
77
|
+
type: string
|
|
78
|
+
description: the id of the agent
|
|
79
|
+
source:
|
|
80
|
+
type: string
|
|
81
|
+
description: the source
|
|
82
|
+
ProfileCardRequestErrorAttributes: &ProfileCardRequestErrorAttributes
|
|
83
|
+
duration:
|
|
84
|
+
type: number
|
|
85
|
+
description: Duration of the request in milliseconds
|
|
86
|
+
errorMessage:
|
|
87
|
+
type: string
|
|
88
|
+
description: Error message returned from the request
|
|
89
|
+
errorStatusCode:
|
|
90
|
+
type: number
|
|
91
|
+
required: false
|
|
92
|
+
description: HTTP status code or error status
|
|
93
|
+
traceId:
|
|
94
|
+
type: string
|
|
95
|
+
required: false
|
|
96
|
+
description: Trace identifier for the request
|
|
97
|
+
errorCategory:
|
|
98
|
+
type: string
|
|
99
|
+
required: false
|
|
100
|
+
description: Category of the error (e.g., network, server, client)
|
|
101
|
+
errorType:
|
|
102
|
+
type: string
|
|
103
|
+
required: false
|
|
104
|
+
description: Specific type of error encountered
|
|
105
|
+
errorPath:
|
|
106
|
+
type: string
|
|
107
|
+
required: false
|
|
108
|
+
description: API path or endpoint where the error occurred
|
|
109
|
+
errorNumber:
|
|
110
|
+
type: number
|
|
111
|
+
required: false
|
|
112
|
+
description: Numeric error code, if applicable
|
|
113
|
+
isSLOFailure:
|
|
114
|
+
type: boolean
|
|
115
|
+
description: Indicates if the error resulted in an SLO (Service Level Objective) failure
|
|
45
116
|
|
|
46
117
|
events:
|
|
47
118
|
- button clicked (analyticsExample):
|
|
@@ -750,3 +821,1198 @@ events:
|
|
|
750
821
|
containerSelected:
|
|
751
822
|
type: object
|
|
752
823
|
description: the container that was selected
|
|
824
|
+
- link clicked (teamMember):
|
|
825
|
+
type: ui
|
|
826
|
+
description: fired when the link picker is successfully submitted
|
|
827
|
+
attributes:
|
|
828
|
+
<<: *PackageMetaDataContext
|
|
829
|
+
- teamMember clicked:
|
|
830
|
+
type: ui
|
|
831
|
+
description: fired when the link picker is successfully submitted
|
|
832
|
+
attributes:
|
|
833
|
+
<<: *PackageMetaDataContext
|
|
834
|
+
- teamAgent clicked:
|
|
835
|
+
type: ui
|
|
836
|
+
description: fired when the link picker is successfully submitted
|
|
837
|
+
attributes:
|
|
838
|
+
<<: *PackageMetaDataContext
|
|
839
|
+
- connectedGroup clicked:
|
|
840
|
+
type: ui
|
|
841
|
+
description: fired when connected group name is clicked
|
|
842
|
+
attributes:
|
|
843
|
+
<<: *PackageMetaDataContext
|
|
844
|
+
- teamSettingsDialog viewed:
|
|
845
|
+
type: screen
|
|
846
|
+
description: teamSettingsDialog
|
|
847
|
+
attributes:
|
|
848
|
+
<<: *PackageMetaDataContext
|
|
849
|
+
- dialog opened (deleteTeam):
|
|
850
|
+
type: ui
|
|
851
|
+
description: fired when the delete team dialog is opened
|
|
852
|
+
attributes:
|
|
853
|
+
<<: *PackageMetaDataContext
|
|
854
|
+
- agentProfile viewed:
|
|
855
|
+
type: screen
|
|
856
|
+
description: fired when agent profile viewed
|
|
857
|
+
attributes:
|
|
858
|
+
<<: *PackageMetaDataContext
|
|
859
|
+
- editAgent clicked:
|
|
860
|
+
type: ui
|
|
861
|
+
description: fired when the edit agent menuItem is clicked
|
|
862
|
+
attributes:
|
|
863
|
+
<<: *PackageMetaDataContext
|
|
864
|
+
- duplicateAgent clicked:
|
|
865
|
+
type: ui
|
|
866
|
+
description: fired when the duplicate agent menuItem is clicked
|
|
867
|
+
attributes:
|
|
868
|
+
<<: *PackageMetaDataContext
|
|
869
|
+
- copyAgent clicked:
|
|
870
|
+
type: ui
|
|
871
|
+
description: fired when the copy agent menuItem is clicked
|
|
872
|
+
attributes:
|
|
873
|
+
<<: *PackageMetaDataContext
|
|
874
|
+
- deleteAgent clicked:
|
|
875
|
+
type: ui
|
|
876
|
+
description: fired when the delete agent menuItem is clicked
|
|
877
|
+
attributes:
|
|
878
|
+
<<: *PackageMetaDataContext
|
|
879
|
+
- chatWithAgent clicked:
|
|
880
|
+
type: ui
|
|
881
|
+
description: fired when the chat button is clicked
|
|
882
|
+
attributes:
|
|
883
|
+
<<: *PackageMetaDataContext
|
|
884
|
+
- startConversationWithAgent clicked:
|
|
885
|
+
type: ui
|
|
886
|
+
description: fired when the agent conversation starter is clicked
|
|
887
|
+
attributes:
|
|
888
|
+
<<: *PackageMetaDataContext
|
|
889
|
+
- teamMember removed:
|
|
890
|
+
type: track
|
|
891
|
+
description: teamMember removed
|
|
892
|
+
attributes:
|
|
893
|
+
<<: *PackageMetaDataContext
|
|
894
|
+
teamSize:
|
|
895
|
+
type: number
|
|
896
|
+
description: number of team members
|
|
897
|
+
orgAdminTriggered:
|
|
898
|
+
type: boolean
|
|
899
|
+
description: whether the org admin triggered the action
|
|
900
|
+
memberOfTeam:
|
|
901
|
+
type: boolean
|
|
902
|
+
description: whether the user is a member of the team
|
|
903
|
+
- teamInvitation accepted:
|
|
904
|
+
type: track
|
|
905
|
+
description: teamInvitation accepted
|
|
906
|
+
attributes:
|
|
907
|
+
<<: *PackageMetaDataContext
|
|
908
|
+
teamId:
|
|
909
|
+
type: string
|
|
910
|
+
description: id of the selected team
|
|
911
|
+
- teamInvitation declined:
|
|
912
|
+
type: track
|
|
913
|
+
description: teamInvitation declined
|
|
914
|
+
attributes:
|
|
915
|
+
<<: *PackageMetaDataContext
|
|
916
|
+
teamId:
|
|
917
|
+
type: string
|
|
918
|
+
description: id of the selected team
|
|
919
|
+
- teamProfileName edited:
|
|
920
|
+
type: track
|
|
921
|
+
description: teamProfileName edited
|
|
922
|
+
attributes:
|
|
923
|
+
<<: *PackageMetaDataContext
|
|
924
|
+
teamId:
|
|
925
|
+
type: string
|
|
926
|
+
description: id of the selected team
|
|
927
|
+
orgAdminTriggered:
|
|
928
|
+
type: boolean
|
|
929
|
+
description: whether the org admin triggered the action
|
|
930
|
+
memberOfTeam:
|
|
931
|
+
type: boolean
|
|
932
|
+
description: whether the user is a member of the team
|
|
933
|
+
- teamProfileDescription edited:
|
|
934
|
+
type: track
|
|
935
|
+
description: teamProfileDescription edited
|
|
936
|
+
attributes:
|
|
937
|
+
<<: *PackageMetaDataContext
|
|
938
|
+
teamId:
|
|
939
|
+
type: string
|
|
940
|
+
description: id of the selected team
|
|
941
|
+
orgAdminTriggered:
|
|
942
|
+
type: boolean
|
|
943
|
+
description: whether the org admin triggered the action
|
|
944
|
+
memberOfTeam:
|
|
945
|
+
type: boolean
|
|
946
|
+
description: whether the user is a member of the team
|
|
947
|
+
- teamMembershipControl edited:
|
|
948
|
+
type: track
|
|
949
|
+
description: teamMembershipControl edited
|
|
950
|
+
attributes:
|
|
951
|
+
<<: *PackageMetaDataContext
|
|
952
|
+
teamType:
|
|
953
|
+
type:
|
|
954
|
+
- 'OPEN'
|
|
955
|
+
- 'MEMBER_INVITE'
|
|
956
|
+
- 'EXTERNAL'
|
|
957
|
+
currentTeamType:
|
|
958
|
+
type:
|
|
959
|
+
- 'OPEN'
|
|
960
|
+
- 'MEMBER_INVITE'
|
|
961
|
+
- 'EXTERNAL'
|
|
962
|
+
isTeamNameChanged:
|
|
963
|
+
type: boolean
|
|
964
|
+
description: whether team name is edited
|
|
965
|
+
avatarColour:
|
|
966
|
+
type: string
|
|
967
|
+
description: the avatar colour selected
|
|
968
|
+
- team joined:
|
|
969
|
+
type: track
|
|
970
|
+
description: team joined
|
|
971
|
+
attributes:
|
|
972
|
+
<<: *PackageMetaDataContext
|
|
973
|
+
actualTransition:
|
|
974
|
+
type:
|
|
975
|
+
- 'join'
|
|
976
|
+
- 'joinRequest'
|
|
977
|
+
teamId:
|
|
978
|
+
type: string
|
|
979
|
+
description: id of the selected team
|
|
980
|
+
- joinRequest created:
|
|
981
|
+
type: track
|
|
982
|
+
description: joinRequest created
|
|
983
|
+
attributes:
|
|
984
|
+
<<: *PackageMetaDataContext
|
|
985
|
+
actualTransition:
|
|
986
|
+
type:
|
|
987
|
+
- 'join'
|
|
988
|
+
- 'joinRequest'
|
|
989
|
+
teamId:
|
|
990
|
+
type: string
|
|
991
|
+
description: id of the selected team
|
|
992
|
+
- team removed:
|
|
993
|
+
type: track
|
|
994
|
+
description: team removed
|
|
995
|
+
attributes:
|
|
996
|
+
<<: *PackageMetaDataContext
|
|
997
|
+
teamId:
|
|
998
|
+
type: string
|
|
999
|
+
description: id of the selected team
|
|
1000
|
+
orgAdminTriggered:
|
|
1001
|
+
type: boolean
|
|
1002
|
+
description: whether the org admin triggered the action
|
|
1003
|
+
memberOfTeam:
|
|
1004
|
+
type: boolean
|
|
1005
|
+
description: whether the user is a member of the team
|
|
1006
|
+
teamSize:
|
|
1007
|
+
type: number
|
|
1008
|
+
description: number of team members
|
|
1009
|
+
- teamLinkCategory opened:
|
|
1010
|
+
type: ui
|
|
1011
|
+
description: fired when the team link is opened
|
|
1012
|
+
attributes:
|
|
1013
|
+
<<: *PackageMetaDataContext
|
|
1014
|
+
- teamLinkCategory clicked:
|
|
1015
|
+
type: ui
|
|
1016
|
+
description: fired when the team link is clicked
|
|
1017
|
+
attributes:
|
|
1018
|
+
<<: *PackageMetaDataContext
|
|
1019
|
+
linkType:
|
|
1020
|
+
type: string
|
|
1021
|
+
description: type of the link clicked (e.g. 'jira', 'confluence', etc.)
|
|
1022
|
+
- dialog closed (teamDeletion):
|
|
1023
|
+
type: ui
|
|
1024
|
+
description: fired when the delete team dialog is closed
|
|
1025
|
+
attributes:
|
|
1026
|
+
<<: *PackageMetaDataContext
|
|
1027
|
+
- dialog opened (teamDeletion):
|
|
1028
|
+
type: ui
|
|
1029
|
+
description: fired when the delete team dialog is opened
|
|
1030
|
+
attributes:
|
|
1031
|
+
<<: *PackageMetaDataContext
|
|
1032
|
+
- confirmation checked (teamDeletion):
|
|
1033
|
+
type: ui
|
|
1034
|
+
description: fired when the delete team dialog is successfully submitted
|
|
1035
|
+
attributes:
|
|
1036
|
+
<<: *PackageMetaDataContext
|
|
1037
|
+
checked:
|
|
1038
|
+
type: boolean
|
|
1039
|
+
description: whether the confirmation checkbox is checked
|
|
1040
|
+
- teamDeletion failed:
|
|
1041
|
+
type: track
|
|
1042
|
+
description: team removed
|
|
1043
|
+
attributes:
|
|
1044
|
+
<<: *PackageMetaDataContext
|
|
1045
|
+
teamId:
|
|
1046
|
+
type: string
|
|
1047
|
+
description: id of the selected team
|
|
1048
|
+
orgAdminTriggered:
|
|
1049
|
+
type: boolean
|
|
1050
|
+
description: whether the org admin triggered the action
|
|
1051
|
+
memberOfTeam:
|
|
1052
|
+
type: boolean
|
|
1053
|
+
description: whether the user is a member of the team
|
|
1054
|
+
teamSize:
|
|
1055
|
+
type: number
|
|
1056
|
+
description: number of team members
|
|
1057
|
+
- joinRequest accepted:
|
|
1058
|
+
type: track
|
|
1059
|
+
description: joinRequest accepted
|
|
1060
|
+
attributes:
|
|
1061
|
+
<<: *PackageMetaDataContext
|
|
1062
|
+
teamId:
|
|
1063
|
+
type: string
|
|
1064
|
+
description: id of the selected team
|
|
1065
|
+
memberId:
|
|
1066
|
+
type: string
|
|
1067
|
+
description: id of the accepted member
|
|
1068
|
+
orgAdminTriggered:
|
|
1069
|
+
type: boolean
|
|
1070
|
+
description: whether the org admin triggered the action
|
|
1071
|
+
memberOfTeam:
|
|
1072
|
+
type: boolean
|
|
1073
|
+
description: whether the user is a member of the team
|
|
1074
|
+
- joinRequest closed:
|
|
1075
|
+
type: track
|
|
1076
|
+
description: joinRequest closed
|
|
1077
|
+
attributes:
|
|
1078
|
+
<<: *PackageMetaDataContext
|
|
1079
|
+
teamId:
|
|
1080
|
+
type: string
|
|
1081
|
+
description: id of the selected team
|
|
1082
|
+
- joinRequest declined:
|
|
1083
|
+
type: track
|
|
1084
|
+
description: joinRequest declined
|
|
1085
|
+
attributes:
|
|
1086
|
+
<<: *PackageMetaDataContext
|
|
1087
|
+
teamId:
|
|
1088
|
+
type: string
|
|
1089
|
+
description: id of the selected team
|
|
1090
|
+
memberId:
|
|
1091
|
+
type: string
|
|
1092
|
+
description: id of the declined member
|
|
1093
|
+
orgAdminTriggered:
|
|
1094
|
+
type: boolean
|
|
1095
|
+
description: whether the org admin triggered the action
|
|
1096
|
+
memberOfTeam:
|
|
1097
|
+
type: boolean
|
|
1098
|
+
description: whether the user is a member of the team
|
|
1099
|
+
- joinRequestCancel failed:
|
|
1100
|
+
type: operational
|
|
1101
|
+
description: joinRequestCancel failed
|
|
1102
|
+
attributes:
|
|
1103
|
+
<<: *PackageMetaDataContext
|
|
1104
|
+
status:
|
|
1105
|
+
type: number
|
|
1106
|
+
description: status code of the failed request
|
|
1107
|
+
- teamInvitation sent:
|
|
1108
|
+
type: track
|
|
1109
|
+
description: teamInvitation sent
|
|
1110
|
+
attributes:
|
|
1111
|
+
<<: *PackageMetaDataContext
|
|
1112
|
+
teamId:
|
|
1113
|
+
type: string
|
|
1114
|
+
description: id of the selected team
|
|
1115
|
+
numberOfMembers:
|
|
1116
|
+
type: number
|
|
1117
|
+
- joinRequestAccept failed:
|
|
1118
|
+
type: operational
|
|
1119
|
+
description: joinRequestAccept failed
|
|
1120
|
+
attributes:
|
|
1121
|
+
<<: *PackageMetaDataContext
|
|
1122
|
+
status:
|
|
1123
|
+
type: number
|
|
1124
|
+
orgAdminTriggered:
|
|
1125
|
+
type: boolean
|
|
1126
|
+
description: whether the org admin triggered the action
|
|
1127
|
+
memberOfTeam:
|
|
1128
|
+
type: boolean
|
|
1129
|
+
description: whether the user is a member of the team
|
|
1130
|
+
- joinRequestDecline failed:
|
|
1131
|
+
type: operational
|
|
1132
|
+
description: joinRequestDecline failed
|
|
1133
|
+
attributes:
|
|
1134
|
+
<<: *PackageMetaDataContext
|
|
1135
|
+
status:
|
|
1136
|
+
type: number
|
|
1137
|
+
orgAdminTriggered:
|
|
1138
|
+
type: boolean
|
|
1139
|
+
description: whether the org admin triggered the action
|
|
1140
|
+
memberOfTeam:
|
|
1141
|
+
type: boolean
|
|
1142
|
+
description: whether the user is a member of the team
|
|
1143
|
+
- teamInvitation succeeded:
|
|
1144
|
+
type: operational
|
|
1145
|
+
description: teamInvitation succeeded
|
|
1146
|
+
attributes:
|
|
1147
|
+
<<: *PackageMetaDataContext
|
|
1148
|
+
orgAdminTriggered:
|
|
1149
|
+
type: boolean
|
|
1150
|
+
description: whether the org admin triggered the action
|
|
1151
|
+
memberOfTeam:
|
|
1152
|
+
type: boolean
|
|
1153
|
+
description: whether the user is a member of the team
|
|
1154
|
+
- teamInvitation failed:
|
|
1155
|
+
type: operational
|
|
1156
|
+
description: teamInvitation failed
|
|
1157
|
+
attributes:
|
|
1158
|
+
<<: *PackageMetaDataContext
|
|
1159
|
+
orgAdminTriggered:
|
|
1160
|
+
type: boolean
|
|
1161
|
+
description: whether the org admin triggered the action
|
|
1162
|
+
memberOfTeam:
|
|
1163
|
+
type: boolean
|
|
1164
|
+
description: whether the user is a member of the team
|
|
1165
|
+
- teamProfile_teamAbout taskStart:
|
|
1166
|
+
type: operational
|
|
1167
|
+
attributes:
|
|
1168
|
+
<<: *ExperienceMetadata
|
|
1169
|
+
- teamProfile_teamAbout taskSuccess:
|
|
1170
|
+
type: operational
|
|
1171
|
+
attributes:
|
|
1172
|
+
<<: *ExperienceMetadata
|
|
1173
|
+
- teamProfile_teamAbout taskAbort:
|
|
1174
|
+
type: operational
|
|
1175
|
+
attributes:
|
|
1176
|
+
<<:
|
|
1177
|
+
- *ExperienceAbortMetadata
|
|
1178
|
+
- *ExperienceMetadata
|
|
1179
|
+
- teamProfile_teamAbout taskFail:
|
|
1180
|
+
type: operational
|
|
1181
|
+
attributes:
|
|
1182
|
+
<<: *ExperienceMetadata
|
|
1183
|
+
- teamProfile_teamName taskStart:
|
|
1184
|
+
type: operational
|
|
1185
|
+
attributes:
|
|
1186
|
+
<<: *ExperienceMetadata
|
|
1187
|
+
- teamProfile_teamName taskSuccess:
|
|
1188
|
+
type: operational
|
|
1189
|
+
attributes:
|
|
1190
|
+
<<: *ExperienceMetadata
|
|
1191
|
+
- teamProfile_teamName taskAbort:
|
|
1192
|
+
type: operational
|
|
1193
|
+
attributes:
|
|
1194
|
+
<<:
|
|
1195
|
+
- *ExperienceAbortMetadata
|
|
1196
|
+
- *ExperienceMetadata
|
|
1197
|
+
- teamProfile_teamName taskFail:
|
|
1198
|
+
type: operational
|
|
1199
|
+
attributes:
|
|
1200
|
+
<<: *ExperienceMetadata
|
|
1201
|
+
- teamProfile_teamDescription taskStart:
|
|
1202
|
+
type: operational
|
|
1203
|
+
attributes:
|
|
1204
|
+
<<: *ExperienceMetadata
|
|
1205
|
+
- teamProfile_teamDescription taskSuccess:
|
|
1206
|
+
type: operational
|
|
1207
|
+
attributes:
|
|
1208
|
+
<<: *ExperienceMetadata
|
|
1209
|
+
- teamProfile_teamDescription taskAbort:
|
|
1210
|
+
type: operational
|
|
1211
|
+
attributes:
|
|
1212
|
+
<<:
|
|
1213
|
+
- *ExperienceAbortMetadata
|
|
1214
|
+
- *ExperienceMetadata
|
|
1215
|
+
- teamProfile_teamDescription taskFail:
|
|
1216
|
+
type: operational
|
|
1217
|
+
attributes:
|
|
1218
|
+
<<: *ExperienceMetadata
|
|
1219
|
+
- teamProfile_teamPermissions taskStart:
|
|
1220
|
+
type: operational
|
|
1221
|
+
attributes:
|
|
1222
|
+
<<: *ExperienceMetadata
|
|
1223
|
+
- teamProfile_teamPermissions taskSuccess:
|
|
1224
|
+
type: operational
|
|
1225
|
+
attributes:
|
|
1226
|
+
<<: *ExperienceMetadata
|
|
1227
|
+
- teamProfile_teamPermissions taskAbort:
|
|
1228
|
+
type: operational
|
|
1229
|
+
attributes:
|
|
1230
|
+
<<:
|
|
1231
|
+
- *ExperienceAbortMetadata
|
|
1232
|
+
- *ExperienceMetadata
|
|
1233
|
+
- teamProfile_teamPermissions taskFail:
|
|
1234
|
+
type: operational
|
|
1235
|
+
attributes:
|
|
1236
|
+
<<: *ExperienceMetadata
|
|
1237
|
+
- teamProfile_members taskStart:
|
|
1238
|
+
type: operational
|
|
1239
|
+
attributes:
|
|
1240
|
+
<<: *ExperienceMetadata
|
|
1241
|
+
- teamProfile_members taskSuccess:
|
|
1242
|
+
type: operational
|
|
1243
|
+
attributes:
|
|
1244
|
+
<<: *ExperienceMetadata
|
|
1245
|
+
- teamProfile_members taskAbort:
|
|
1246
|
+
type: operational
|
|
1247
|
+
attributes:
|
|
1248
|
+
<<:
|
|
1249
|
+
- *ExperienceAbortMetadata
|
|
1250
|
+
- *ExperienceMetadata
|
|
1251
|
+
- teamProfile_members taskFail:
|
|
1252
|
+
type: operational
|
|
1253
|
+
attributes:
|
|
1254
|
+
<<: *ExperienceMetadata
|
|
1255
|
+
- removeTeamMember_submit taskStart:
|
|
1256
|
+
type: operational
|
|
1257
|
+
attributes:
|
|
1258
|
+
<<: *ExperienceMetadata
|
|
1259
|
+
- removeTeamMember_submit taskSuccess:
|
|
1260
|
+
type: operational
|
|
1261
|
+
attributes:
|
|
1262
|
+
<<: *ExperienceMetadata
|
|
1263
|
+
- removeTeamMember_submit taskAbort:
|
|
1264
|
+
type: operational
|
|
1265
|
+
attributes:
|
|
1266
|
+
<<:
|
|
1267
|
+
- *ExperienceAbortMetadata
|
|
1268
|
+
- *ExperienceMetadata
|
|
1269
|
+
- removeTeamMember_submit taskFail:
|
|
1270
|
+
type: operational
|
|
1271
|
+
attributes:
|
|
1272
|
+
<<: *ExperienceMetadata
|
|
1273
|
+
- removeTeamMember taskStart:
|
|
1274
|
+
type: operational
|
|
1275
|
+
attributes:
|
|
1276
|
+
<<: *ExperienceMetadata
|
|
1277
|
+
- removeTeamMember taskSuccess:
|
|
1278
|
+
type: operational
|
|
1279
|
+
attributes:
|
|
1280
|
+
<<: *ExperienceMetadata
|
|
1281
|
+
- removeTeamMember taskAbort:
|
|
1282
|
+
type: operational
|
|
1283
|
+
attributes:
|
|
1284
|
+
<<:
|
|
1285
|
+
- *ExperienceAbortMetadata
|
|
1286
|
+
- *ExperienceMetadata
|
|
1287
|
+
- removeTeamMember taskFail:
|
|
1288
|
+
type: operational
|
|
1289
|
+
attributes:
|
|
1290
|
+
<<: *ExperienceMetadata
|
|
1291
|
+
- removeTeamMember_openDialog taskStart:
|
|
1292
|
+
type: operational
|
|
1293
|
+
attributes:
|
|
1294
|
+
<<: *ExperienceMetadata
|
|
1295
|
+
- removeTeamMember_openDialog taskSuccess:
|
|
1296
|
+
type: operational
|
|
1297
|
+
attributes:
|
|
1298
|
+
<<: *ExperienceMetadata
|
|
1299
|
+
- removeTeamMember_openDialog taskAbort:
|
|
1300
|
+
type: operational
|
|
1301
|
+
attributes:
|
|
1302
|
+
<<:
|
|
1303
|
+
- *ExperienceAbortMetadata
|
|
1304
|
+
- *ExperienceMetadata
|
|
1305
|
+
- removeTeamMember_openDialog taskFail:
|
|
1306
|
+
type: operational
|
|
1307
|
+
attributes:
|
|
1308
|
+
<<: *ExperienceMetadata
|
|
1309
|
+
- editTeamNameOrDescription taskStart:
|
|
1310
|
+
type: operational
|
|
1311
|
+
attributes:
|
|
1312
|
+
<<: *ExperienceMetadata
|
|
1313
|
+
- editTeamNameOrDescription taskSuccess:
|
|
1314
|
+
type: operational
|
|
1315
|
+
attributes:
|
|
1316
|
+
<<: *ExperienceMetadata
|
|
1317
|
+
- editTeamNameOrDescription taskAbort:
|
|
1318
|
+
type: operational
|
|
1319
|
+
attributes:
|
|
1320
|
+
<<:
|
|
1321
|
+
- *ExperienceAbortMetadata
|
|
1322
|
+
- *ExperienceMetadata
|
|
1323
|
+
- editTeamNameOrDescription taskFail:
|
|
1324
|
+
type: operational
|
|
1325
|
+
attributes:
|
|
1326
|
+
<<: *ExperienceMetadata
|
|
1327
|
+
- teamProfile_recommendedProducts taskSuccess:
|
|
1328
|
+
type: operational
|
|
1329
|
+
attributes:
|
|
1330
|
+
<<: *ExperienceMetadata
|
|
1331
|
+
- teamProfile_recommendedProducts taskFail:
|
|
1332
|
+
type: operational
|
|
1333
|
+
attributes:
|
|
1334
|
+
<<: *ExperienceMetadata
|
|
1335
|
+
- teamsPermissionsRequest failed:
|
|
1336
|
+
type: operational
|
|
1337
|
+
attributes:
|
|
1338
|
+
message:
|
|
1339
|
+
type: string
|
|
1340
|
+
description: error message
|
|
1341
|
+
status:
|
|
1342
|
+
type: string
|
|
1343
|
+
description: status code of the failed request
|
|
1344
|
+
path:
|
|
1345
|
+
type: string
|
|
1346
|
+
description: path of the failed request
|
|
1347
|
+
- teamsPermissionsRequest succeeded:
|
|
1348
|
+
type: operational
|
|
1349
|
+
attributes:
|
|
1350
|
+
<<: *PackageMetaDataContext
|
|
1351
|
+
canCreateTeams:
|
|
1352
|
+
type: boolean
|
|
1353
|
+
description: whether the user can create teams
|
|
1354
|
+
canViewTeams:
|
|
1355
|
+
type: boolean
|
|
1356
|
+
description: whether the user can view teams
|
|
1357
|
+
canAdminTeams:
|
|
1358
|
+
type: boolean
|
|
1359
|
+
description: whether the user can admin teams
|
|
1360
|
+
- teamContainerLinker opened:
|
|
1361
|
+
type: ui
|
|
1362
|
+
description: fired when the team container linker is opened
|
|
1363
|
+
attributes:
|
|
1364
|
+
<<: *PackageMetaDataContext
|
|
1365
|
+
- teamContainerLinked failed:
|
|
1366
|
+
type: track
|
|
1367
|
+
attributes:
|
|
1368
|
+
<<: *PackageMetaDataContext
|
|
1369
|
+
- teamContainerLinked success:
|
|
1370
|
+
type: ui
|
|
1371
|
+
attributes:
|
|
1372
|
+
<<: *PackageMetaDataContext
|
|
1373
|
+
- teamContainerLinked viewed:
|
|
1374
|
+
type: ui
|
|
1375
|
+
attributes:
|
|
1376
|
+
<<: *PackageMetaDataContext
|
|
1377
|
+
- teamContainerLinker viewed:
|
|
1378
|
+
type: ui
|
|
1379
|
+
attributes:
|
|
1380
|
+
<<: *PackageMetaDataContext
|
|
1381
|
+
screen:
|
|
1382
|
+
type: string
|
|
1383
|
+
- teamContainerLinkerResults viewed:
|
|
1384
|
+
type: ui
|
|
1385
|
+
attributes:
|
|
1386
|
+
<<: *PackageMetaDataContext
|
|
1387
|
+
screen:
|
|
1388
|
+
type: string
|
|
1389
|
+
- connectJiraProjectTab clicked:
|
|
1390
|
+
type: ui
|
|
1391
|
+
attributes:
|
|
1392
|
+
<<: *PackageMetaDataContext
|
|
1393
|
+
- connectLoomSpaceTab clicked:
|
|
1394
|
+
type: ui
|
|
1395
|
+
attributes:
|
|
1396
|
+
<<: *PackageMetaDataContext
|
|
1397
|
+
- connectConfluenceSpaceTab clicked:
|
|
1398
|
+
type: ui
|
|
1399
|
+
attributes:
|
|
1400
|
+
<<: *PackageMetaDataContext
|
|
1401
|
+
- teamProfileCard viewed:
|
|
1402
|
+
type: ui
|
|
1403
|
+
attributes:
|
|
1404
|
+
<<: *PackageMetaDataContext
|
|
1405
|
+
screen:
|
|
1406
|
+
type: string
|
|
1407
|
+
- teamButton viewed:
|
|
1408
|
+
type: ui
|
|
1409
|
+
description: fired when the team button is viewed
|
|
1410
|
+
attributes:
|
|
1411
|
+
<<: *PackageMetaDataContext
|
|
1412
|
+
teamsCount:
|
|
1413
|
+
type: number
|
|
1414
|
+
scope:
|
|
1415
|
+
type: string
|
|
1416
|
+
version:
|
|
1417
|
+
type: string
|
|
1418
|
+
- teamButton clicked:
|
|
1419
|
+
type: ui
|
|
1420
|
+
description: fired when the team button is clicked
|
|
1421
|
+
attributes:
|
|
1422
|
+
<<: *PackageMetaDataContext
|
|
1423
|
+
teamsCount:
|
|
1424
|
+
type: number
|
|
1425
|
+
scope:
|
|
1426
|
+
type: string
|
|
1427
|
+
version:
|
|
1428
|
+
type: string
|
|
1429
|
+
- teamProfileButton clicked:
|
|
1430
|
+
type: ui
|
|
1431
|
+
description: fired when the team profile button is clicked
|
|
1432
|
+
attributes:
|
|
1433
|
+
<<: *PackageMetaDataContext
|
|
1434
|
+
- profileRadarButton clicked:
|
|
1435
|
+
type: ui
|
|
1436
|
+
description: fired when the profile radar button is clicked
|
|
1437
|
+
attributes:
|
|
1438
|
+
<<: *PackageMetaDataContext
|
|
1439
|
+
- addTeamModal viewed:
|
|
1440
|
+
type: screen
|
|
1441
|
+
description: fired when the add team modal is viewed
|
|
1442
|
+
attributes:
|
|
1443
|
+
<<: *PackageMetaDataContext
|
|
1444
|
+
- addTeamModalConfirmButton clicked:
|
|
1445
|
+
type: ui
|
|
1446
|
+
description: fired when the add team modal confirm button is clicked
|
|
1447
|
+
attributes:
|
|
1448
|
+
<<: *PackageMetaDataContext
|
|
1449
|
+
- manageTeamsModal viewed:
|
|
1450
|
+
type: screen
|
|
1451
|
+
description: fired when the manage teams modal is viewed
|
|
1452
|
+
attributes:
|
|
1453
|
+
<<: *PackageMetaDataContext
|
|
1454
|
+
- disconnectTeamModal viewed:
|
|
1455
|
+
type: screen
|
|
1456
|
+
description: fired when the disconnect team confirmation modal is viewed
|
|
1457
|
+
attributes:
|
|
1458
|
+
<<: *PackageMetaDataContext
|
|
1459
|
+
- removeTeamButton clicked:
|
|
1460
|
+
type: ui
|
|
1461
|
+
description: fired when the remove (unlink) team button is clicked
|
|
1462
|
+
attributes:
|
|
1463
|
+
<<: *PackageMetaDataContext
|
|
1464
|
+
screen:
|
|
1465
|
+
type: string
|
|
1466
|
+
- manageTeamsButton clicked:
|
|
1467
|
+
type: ui
|
|
1468
|
+
description: fired when the manage teams button is clicked
|
|
1469
|
+
attributes:
|
|
1470
|
+
<<: *PackageMetaDataContext
|
|
1471
|
+
- teamSelector viewed:
|
|
1472
|
+
type: screen
|
|
1473
|
+
description: fired when the team selector popup is viewed
|
|
1474
|
+
attributes:
|
|
1475
|
+
<<: *PackageMetaDataContext
|
|
1476
|
+
- manageTeamsSaveButton clicked:
|
|
1477
|
+
type: ui
|
|
1478
|
+
description: fired when the save button from the manage teams modal is clicked
|
|
1479
|
+
attributes:
|
|
1480
|
+
<<: *PackageMetaDataContext
|
|
1481
|
+
- teamAgentAssociation succeeded:
|
|
1482
|
+
type: operational
|
|
1483
|
+
description: add agent to team succeeded
|
|
1484
|
+
attributes:
|
|
1485
|
+
<<: *PackageMetaDataContext
|
|
1486
|
+
orgAdminTriggered:
|
|
1487
|
+
type: boolean
|
|
1488
|
+
description: whether the org admin triggered the action
|
|
1489
|
+
memberOfTeam:
|
|
1490
|
+
type: boolean
|
|
1491
|
+
description: whether the user is a member of the team
|
|
1492
|
+
- teamAgentAssociation failed:
|
|
1493
|
+
type: operational
|
|
1494
|
+
description: add agent to team failed
|
|
1495
|
+
attributes:
|
|
1496
|
+
<<: *PackageMetaDataContext
|
|
1497
|
+
orgAdminTriggered:
|
|
1498
|
+
type: boolean
|
|
1499
|
+
description: whether the org admin triggered the action
|
|
1500
|
+
memberOfTeam:
|
|
1501
|
+
type: boolean
|
|
1502
|
+
description: whether the user is a member of the team
|
|
1503
|
+
- teamAgentAssociation succedded:
|
|
1504
|
+
type: track
|
|
1505
|
+
description: add agent to team succeeded
|
|
1506
|
+
attributes:
|
|
1507
|
+
<<: *PackageMetaDataContext
|
|
1508
|
+
numberOfAgents:
|
|
1509
|
+
type: number
|
|
1510
|
+
description: number of agents added to the team
|
|
1511
|
+
teamId:
|
|
1512
|
+
type: string
|
|
1513
|
+
description: id of the selected team
|
|
1514
|
+
- teamContainerCreatedAndLinked success:
|
|
1515
|
+
type: track
|
|
1516
|
+
description: container is created and linked to a team
|
|
1517
|
+
attributes:
|
|
1518
|
+
<<: *PackageMetaDataContext
|
|
1519
|
+
teamId:
|
|
1520
|
+
type: string
|
|
1521
|
+
description: id of the selected team
|
|
1522
|
+
containerType:
|
|
1523
|
+
type: string
|
|
1524
|
+
description: the type of container created
|
|
1525
|
+
- teamContainerCreatedAndLinked failed:
|
|
1526
|
+
type: track
|
|
1527
|
+
description: container is created and linked to a team
|
|
1528
|
+
attributes:
|
|
1529
|
+
<<: *PackageMetaDataContext
|
|
1530
|
+
teamId:
|
|
1531
|
+
type: string
|
|
1532
|
+
description: id of the selected team
|
|
1533
|
+
containerType:
|
|
1534
|
+
type: string
|
|
1535
|
+
description: the type of container created
|
|
1536
|
+
failureReason:
|
|
1537
|
+
type: string
|
|
1538
|
+
description: the reason for the failure
|
|
1539
|
+
- createJiraContainer viewed:
|
|
1540
|
+
type: ui
|
|
1541
|
+
description: the "create jira project" button is viewed
|
|
1542
|
+
attributes:
|
|
1543
|
+
<<: *PackageMetaDataContext
|
|
1544
|
+
teamId:
|
|
1545
|
+
type: string
|
|
1546
|
+
description: id of the selected team
|
|
1547
|
+
- createJiraContainer clicked:
|
|
1548
|
+
type: ui
|
|
1549
|
+
description: the "create jira space" button is clicked
|
|
1550
|
+
attributes:
|
|
1551
|
+
<<: *PackageMetaDataContext
|
|
1552
|
+
teamId:
|
|
1553
|
+
type: string
|
|
1554
|
+
description: id of the selected team
|
|
1555
|
+
- createConfluenceContainer viewed:
|
|
1556
|
+
type: ui
|
|
1557
|
+
description: the "create confluence space" button is viewed
|
|
1558
|
+
attributes:
|
|
1559
|
+
<<: *PackageMetaDataContext
|
|
1560
|
+
teamId:
|
|
1561
|
+
type: string
|
|
1562
|
+
description: id of the selected team
|
|
1563
|
+
- createConfluenceContainer clicked:
|
|
1564
|
+
type: ui
|
|
1565
|
+
description: the "create confluence space" button is clicked
|
|
1566
|
+
attributes:
|
|
1567
|
+
<<: *PackageMetaDataContext
|
|
1568
|
+
teamId:
|
|
1569
|
+
type: string
|
|
1570
|
+
description: id of the selected team
|
|
1571
|
+
- createLoomContainer viewed:
|
|
1572
|
+
type: ui
|
|
1573
|
+
description: the "create loom space" button is viewed
|
|
1574
|
+
attributes:
|
|
1575
|
+
<<: *PackageMetaDataContext
|
|
1576
|
+
teamId:
|
|
1577
|
+
type: string
|
|
1578
|
+
description: id of the selected team
|
|
1579
|
+
- createLoomContainer clicked:
|
|
1580
|
+
type: ui
|
|
1581
|
+
description: the "create loom space" button is clicked
|
|
1582
|
+
attributes:
|
|
1583
|
+
<<: *PackageMetaDataContext
|
|
1584
|
+
teamId:
|
|
1585
|
+
type: string
|
|
1586
|
+
description: id of the selected team
|
|
1587
|
+
- createWebLinkContainer viewed:
|
|
1588
|
+
type: ui
|
|
1589
|
+
description: the "create web link" button is viewed
|
|
1590
|
+
attributes:
|
|
1591
|
+
<<: *PackageMetaDataContext
|
|
1592
|
+
teamId:
|
|
1593
|
+
type: string
|
|
1594
|
+
description: id of the selected team
|
|
1595
|
+
- createWebLinkContainer clicked:
|
|
1596
|
+
type: ui
|
|
1597
|
+
description: the "create web link" button is clicked
|
|
1598
|
+
attributes:
|
|
1599
|
+
<<: *PackageMetaDataContext
|
|
1600
|
+
teamId:
|
|
1601
|
+
type: string
|
|
1602
|
+
description: id of the selected team
|
|
1603
|
+
- createContainerFooter viewed:
|
|
1604
|
+
type: ui
|
|
1605
|
+
description: the create container component is viewed
|
|
1606
|
+
attributes:
|
|
1607
|
+
<<: *PackageMetaDataContext
|
|
1608
|
+
teamId:
|
|
1609
|
+
type: string
|
|
1610
|
+
description: id of the selected team
|
|
1611
|
+
canCreateConfluenceContainer:
|
|
1612
|
+
type: boolean
|
|
1613
|
+
description: if the user has permission to create confluence space
|
|
1614
|
+
canCreateJiraContainer:
|
|
1615
|
+
type: boolean
|
|
1616
|
+
description: if the user has permission to create jira space
|
|
1617
|
+
canCreateLoomContainer:
|
|
1618
|
+
type: boolean
|
|
1619
|
+
description: if the user has permission to create loom space
|
|
1620
|
+
- showMoreTeamActivities clicked:
|
|
1621
|
+
type: ui
|
|
1622
|
+
description: fired when the Show more button is clicked in the Team activities tab
|
|
1623
|
+
attributes:
|
|
1624
|
+
<<: *PackageMetaDataContext
|
|
1625
|
+
- teamActivity clicked:
|
|
1626
|
+
type: ui
|
|
1627
|
+
description: fired when the team activity is clicked in the Team activities tab
|
|
1628
|
+
attributes:
|
|
1629
|
+
<<: *PackageMetaDataContext
|
|
1630
|
+
provider:
|
|
1631
|
+
type: string
|
|
1632
|
+
description:
|
|
1633
|
+
the product and type of the activity (e.g. 'jira issue', 'confluence page', etc.)
|
|
1634
|
+
- teamProfileActivityTab viewed:
|
|
1635
|
+
type: screen
|
|
1636
|
+
description: fired when the team profile activity tab is successfully viewed
|
|
1637
|
+
attributes:
|
|
1638
|
+
<<: *PackageMetaDataContext
|
|
1639
|
+
teamId:
|
|
1640
|
+
type: string
|
|
1641
|
+
description: id of the selected team
|
|
1642
|
+
- teamProfileTab selected:
|
|
1643
|
+
type: track
|
|
1644
|
+
description: fired when a tab profile tab is selected
|
|
1645
|
+
attributes:
|
|
1646
|
+
<<: *PackageMetaDataContext
|
|
1647
|
+
tabId:
|
|
1648
|
+
type: string
|
|
1649
|
+
description: id of the selected tab
|
|
1650
|
+
- teamConnectionItem clicked (teamProfileCard):
|
|
1651
|
+
type: ui
|
|
1652
|
+
description: fired when the team connection item is clicked
|
|
1653
|
+
attributes:
|
|
1654
|
+
<<: *PackageMetaDataContext
|
|
1655
|
+
container:
|
|
1656
|
+
type: ['ConfluenceSpace', 'JiraProject', 'LoomSpace', 'WebLink']
|
|
1657
|
+
description: the container
|
|
1658
|
+
- button clicked (viewTeamProfileButton):
|
|
1659
|
+
type: ui
|
|
1660
|
+
description: fired when the view team profile button is clicked
|
|
1661
|
+
attributes:
|
|
1662
|
+
<<: *PackageMetaDataContext
|
|
1663
|
+
- profilecard triggered:
|
|
1664
|
+
type: ui
|
|
1665
|
+
description: fired when the profilecard is triggered
|
|
1666
|
+
attributes:
|
|
1667
|
+
<<: [*PackageMetaDataContext, *ProfileCardAttributes]
|
|
1668
|
+
method:
|
|
1669
|
+
type: ['hover', 'click']
|
|
1670
|
+
description: the method of the profilecard
|
|
1671
|
+
- rovoAgentProfilecard triggered:
|
|
1672
|
+
type: ui
|
|
1673
|
+
description: fired when the rovo agent profilecard is triggered
|
|
1674
|
+
attributes:
|
|
1675
|
+
<<: [*PackageMetaDataContext, *ProfileCardAttributes]
|
|
1676
|
+
method:
|
|
1677
|
+
type: ['hover', 'click']
|
|
1678
|
+
description: the method of the profilecard
|
|
1679
|
+
- teamProfileCard triggered:
|
|
1680
|
+
type: ui
|
|
1681
|
+
description: fired when the team profilecard is triggered
|
|
1682
|
+
attributes:
|
|
1683
|
+
<<: [*PackageMetaDataContext, *ProfileCardAttributes]
|
|
1684
|
+
method:
|
|
1685
|
+
type: ['hover', 'click']
|
|
1686
|
+
description: the method of the profilecard
|
|
1687
|
+
teamId:
|
|
1688
|
+
type: string
|
|
1689
|
+
description: the id of the team
|
|
1690
|
+
- user triggered:
|
|
1691
|
+
type: ui
|
|
1692
|
+
description: fired when an unknown profilecard is triggered
|
|
1693
|
+
attributes:
|
|
1694
|
+
<<: [*PackageMetaDataContext, *ProfileCardAttributes]
|
|
1695
|
+
method:
|
|
1696
|
+
type: ['hover', 'click']
|
|
1697
|
+
description: the method of the profilecard
|
|
1698
|
+
- profilecard rendered (spinner):
|
|
1699
|
+
type: ui
|
|
1700
|
+
description: fired when the profilecard is rendered and is loading
|
|
1701
|
+
attributes:
|
|
1702
|
+
<<: *ProfileCardAttributes
|
|
1703
|
+
- teamProfileCard rendered (spinner):
|
|
1704
|
+
type: ui
|
|
1705
|
+
description: fired when the team profilecard is rendered and is loading
|
|
1706
|
+
attributes:
|
|
1707
|
+
<<: *ProfileCardAttributes
|
|
1708
|
+
- rovoAgentProfilecard rendered (spinner):
|
|
1709
|
+
type: ui
|
|
1710
|
+
description: fired when the rovo agent profilecard is rendered and is loading
|
|
1711
|
+
attributes:
|
|
1712
|
+
<<: *ProfileCardAttributes
|
|
1713
|
+
- user rendered (spinner):
|
|
1714
|
+
type: ui
|
|
1715
|
+
description: fired when an unknown profilecard is rendered and is loading
|
|
1716
|
+
attributes:
|
|
1717
|
+
<<: *ProfileCardAttributes
|
|
1718
|
+
- profilecard rendered (error):
|
|
1719
|
+
type: ui
|
|
1720
|
+
description: fired when the profilecard is rendered and is error
|
|
1721
|
+
attributes:
|
|
1722
|
+
<<: *ProfileCardAttributes
|
|
1723
|
+
hasRetry:
|
|
1724
|
+
type: boolean
|
|
1725
|
+
description: whether the profilecard has retry
|
|
1726
|
+
errorType:
|
|
1727
|
+
type: ['default', 'NotFound']
|
|
1728
|
+
description: the error type
|
|
1729
|
+
- teamProfileCard rendered (error):
|
|
1730
|
+
type: ui
|
|
1731
|
+
description: fired when the team profilecard is rendered and is error
|
|
1732
|
+
attributes:
|
|
1733
|
+
<<: *ProfileCardAttributes
|
|
1734
|
+
duration:
|
|
1735
|
+
type: number
|
|
1736
|
+
description: the duration
|
|
1737
|
+
- profilecard clicked (action):
|
|
1738
|
+
type: ui
|
|
1739
|
+
description: fired when the profilecard is clicked
|
|
1740
|
+
attributes:
|
|
1741
|
+
<<: *ProfileCardAttributes
|
|
1742
|
+
duration:
|
|
1743
|
+
type: number
|
|
1744
|
+
description: the duration
|
|
1745
|
+
hasHref:
|
|
1746
|
+
type: boolean
|
|
1747
|
+
description: whether the profilecard has href
|
|
1748
|
+
hasOnClick:
|
|
1749
|
+
type: boolean
|
|
1750
|
+
description: whether the profilecard has onClick
|
|
1751
|
+
index:
|
|
1752
|
+
type: number
|
|
1753
|
+
description: the index
|
|
1754
|
+
actionId:
|
|
1755
|
+
type: string
|
|
1756
|
+
description: the action id
|
|
1757
|
+
- profilecard clicked (reportingLines):
|
|
1758
|
+
type: ui
|
|
1759
|
+
description: fired when the profilecard is clicked
|
|
1760
|
+
attributes:
|
|
1761
|
+
<<: *ProfileCardAttributes
|
|
1762
|
+
duration:
|
|
1763
|
+
type: number
|
|
1764
|
+
description: the duration
|
|
1765
|
+
userType:
|
|
1766
|
+
type: ['manager', 'direct-report']
|
|
1767
|
+
description: the user type
|
|
1768
|
+
- profilecard rendered (content):
|
|
1769
|
+
type: ui
|
|
1770
|
+
description: fired when the profilecard is rendered and has content
|
|
1771
|
+
attributes:
|
|
1772
|
+
<<: *ProfileCardAttributes
|
|
1773
|
+
duration:
|
|
1774
|
+
type: number
|
|
1775
|
+
description: the duration
|
|
1776
|
+
numActions:
|
|
1777
|
+
type: number
|
|
1778
|
+
description: the number of actions
|
|
1779
|
+
- rovoAgentProfilecard rendered (content):
|
|
1780
|
+
type: ui
|
|
1781
|
+
description: fired when the profilecard is rendered and has content
|
|
1782
|
+
attributes:
|
|
1783
|
+
<<: *ProfileCardAttributes
|
|
1784
|
+
- teamProfileCard rendered (content):
|
|
1785
|
+
type: ui
|
|
1786
|
+
description: fired when the team profilecard is rendered and has content
|
|
1787
|
+
attributes:
|
|
1788
|
+
<<: *ProfileCardAttributes
|
|
1789
|
+
duration:
|
|
1790
|
+
type: number
|
|
1791
|
+
description: the duration
|
|
1792
|
+
numActions:
|
|
1793
|
+
type: number
|
|
1794
|
+
description: the number of actions
|
|
1795
|
+
memberCount:
|
|
1796
|
+
type: number
|
|
1797
|
+
required: false
|
|
1798
|
+
description: the number of members
|
|
1799
|
+
includingYou:
|
|
1800
|
+
type: boolean
|
|
1801
|
+
required: false
|
|
1802
|
+
description: whether the team includes the current user
|
|
1803
|
+
descriptionLength:
|
|
1804
|
+
type: number
|
|
1805
|
+
description: the length of the team description
|
|
1806
|
+
titleLength:
|
|
1807
|
+
type: number
|
|
1808
|
+
description: the length of the team title
|
|
1809
|
+
- button clicked (deleteAgentButton):
|
|
1810
|
+
type: ui
|
|
1811
|
+
description: fired when the delete agent button is clicked
|
|
1812
|
+
attributes:
|
|
1813
|
+
<<: *PackageMetaDataContext
|
|
1814
|
+
agentId:
|
|
1815
|
+
type: string
|
|
1816
|
+
description: the id of the agent
|
|
1817
|
+
source:
|
|
1818
|
+
type: string
|
|
1819
|
+
description: the source
|
|
1820
|
+
- button clicked (editAgentButton):
|
|
1821
|
+
type: ui
|
|
1822
|
+
description: fired when the edit agent button is clicked
|
|
1823
|
+
attributes:
|
|
1824
|
+
<<: [*PackageMetaDataContext, *AgentProfileCardActionsAttributes]
|
|
1825
|
+
- button clicked (copyAgentLinkButton):
|
|
1826
|
+
type: ui
|
|
1827
|
+
description: fired when the copy agent link button is clicked
|
|
1828
|
+
attributes:
|
|
1829
|
+
<<: [*PackageMetaDataContext, *AgentProfileCardActionsAttributes]
|
|
1830
|
+
- button clicked (duplicateAgentButton):
|
|
1831
|
+
type: ui
|
|
1832
|
+
description: fired when the duplicate agent button is clicked
|
|
1833
|
+
attributes:
|
|
1834
|
+
<<: [*PackageMetaDataContext, *AgentProfileCardActionsAttributes]
|
|
1835
|
+
- button clicked (viewAgentFullProfileButton):
|
|
1836
|
+
type: ui
|
|
1837
|
+
description: fired when the edit agent button is clicked
|
|
1838
|
+
attributes:
|
|
1839
|
+
<<: [*PackageMetaDataContext, *AgentProfileCardActionsAttributes]
|
|
1840
|
+
- teamProfileCard rendered (errorBoundary):
|
|
1841
|
+
type: ui
|
|
1842
|
+
description: fired when the team profilecard is rendered and is error boundary
|
|
1843
|
+
attributes:
|
|
1844
|
+
<<: *ProfileCardAttributes
|
|
1845
|
+
duration:
|
|
1846
|
+
type: number
|
|
1847
|
+
description: the duration
|
|
1848
|
+
- teamProfileCard clicked (errorRetry):
|
|
1849
|
+
type: ui
|
|
1850
|
+
description: fired when the team profilecard is rendered and is error boundary
|
|
1851
|
+
attributes:
|
|
1852
|
+
<<: *ProfileCardAttributes
|
|
1853
|
+
duration:
|
|
1854
|
+
type: number
|
|
1855
|
+
description: the duration
|
|
1856
|
+
- profilecard succeeded (request):
|
|
1857
|
+
type: operational
|
|
1858
|
+
description: fired when the profilecard request is succeeded
|
|
1859
|
+
attributes:
|
|
1860
|
+
<<: *ProfileCardAttributes
|
|
1861
|
+
duration:
|
|
1862
|
+
type: number
|
|
1863
|
+
description: the duration
|
|
1864
|
+
- profilecard triggered (request):
|
|
1865
|
+
type: operational
|
|
1866
|
+
description: fired when the profilecard request is triggered
|
|
1867
|
+
attributes:
|
|
1868
|
+
<<: *ProfileCardAttributes
|
|
1869
|
+
- profilecard failed (request):
|
|
1870
|
+
type: operational
|
|
1871
|
+
description: fired when the profilecard request is failed
|
|
1872
|
+
attributes:
|
|
1873
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1874
|
+
- teamProfileCard succeeded (request):
|
|
1875
|
+
type: operational
|
|
1876
|
+
description: fired when the team profilecard request is succeeded
|
|
1877
|
+
attributes:
|
|
1878
|
+
<<: *ProfileCardAttributes
|
|
1879
|
+
duration:
|
|
1880
|
+
type: number
|
|
1881
|
+
description: the duration
|
|
1882
|
+
gateway:
|
|
1883
|
+
type: boolean
|
|
1884
|
+
description: whether the request is a gateway request
|
|
1885
|
+
- teamProfileCard triggered (request):
|
|
1886
|
+
type: operational
|
|
1887
|
+
description: fired when the team profilecard request is triggered
|
|
1888
|
+
attributes:
|
|
1889
|
+
<<: *ProfileCardAttributes
|
|
1890
|
+
- teamProfileCard failed (request):
|
|
1891
|
+
type: operational
|
|
1892
|
+
description: fired when the team profilecard request is failed
|
|
1893
|
+
attributes:
|
|
1894
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1895
|
+
gateway:
|
|
1896
|
+
type: boolean
|
|
1897
|
+
description: whether the request is a gateway request
|
|
1898
|
+
- rovoAgentProfilecard succeeded (request):
|
|
1899
|
+
type: operational
|
|
1900
|
+
description: fired when the rovo agent profilecard request is succeeded
|
|
1901
|
+
attributes:
|
|
1902
|
+
<<: *ProfileCardAttributes
|
|
1903
|
+
duration:
|
|
1904
|
+
type: number
|
|
1905
|
+
description: the duration
|
|
1906
|
+
gateway:
|
|
1907
|
+
type: boolean
|
|
1908
|
+
description: whether the request is a gateway request
|
|
1909
|
+
- rovoAgentProfilecard triggered (request):
|
|
1910
|
+
type: operational
|
|
1911
|
+
description: fired when the rovo agent profilecard request is triggered
|
|
1912
|
+
attributes:
|
|
1913
|
+
<<: *ProfileCardAttributes
|
|
1914
|
+
- rovoAgentProfilecard failed (request):
|
|
1915
|
+
type: operational
|
|
1916
|
+
description: fired when the rovo agent profilecard request is failed
|
|
1917
|
+
attributes:
|
|
1918
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1919
|
+
gateway:
|
|
1920
|
+
type: boolean
|
|
1921
|
+
description: whether the request is a gateway request
|
|
1922
|
+
- rovoAgentProfilecard succeeded (deleteAgent):
|
|
1923
|
+
type: operational
|
|
1924
|
+
description: fired when the rovo agent profilecard deleteAgent is succeeded
|
|
1925
|
+
attributes:
|
|
1926
|
+
<<: *ProfileCardAttributes
|
|
1927
|
+
duration:
|
|
1928
|
+
type: number
|
|
1929
|
+
description: the duration
|
|
1930
|
+
gateway:
|
|
1931
|
+
type: boolean
|
|
1932
|
+
description: whether the request is a gateway request
|
|
1933
|
+
- rovoAgentProfilecard failed (deleteAgent):
|
|
1934
|
+
type: operational
|
|
1935
|
+
description: fired when the rovo agent profilecard deleteAgent is failed
|
|
1936
|
+
attributes:
|
|
1937
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1938
|
+
gateway:
|
|
1939
|
+
type: boolean
|
|
1940
|
+
description: whether the request is a gateway request
|
|
1941
|
+
- rovoAgentProfilecard succeeded (favourite):
|
|
1942
|
+
type: operational
|
|
1943
|
+
description: fired when the rovo agent profilecard favourite is succeeded
|
|
1944
|
+
attributes:
|
|
1945
|
+
<<: *ProfileCardAttributes
|
|
1946
|
+
duration:
|
|
1947
|
+
type: number
|
|
1948
|
+
description: the duration
|
|
1949
|
+
gateway:
|
|
1950
|
+
type: boolean
|
|
1951
|
+
description: whether the request is a gateway request
|
|
1952
|
+
- rovoAgentProfilecard triggered (favourite):
|
|
1953
|
+
type: operational
|
|
1954
|
+
description: fired when the rovo agent profilecard favourite is triggered
|
|
1955
|
+
attributes:
|
|
1956
|
+
<<: *ProfileCardAttributes
|
|
1957
|
+
- rovoAgentProfilecard failed (favourite):
|
|
1958
|
+
type: operational
|
|
1959
|
+
description: fired when the rovo agent profilecard favourite is failed
|
|
1960
|
+
attributes:
|
|
1961
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1962
|
+
gateway:
|
|
1963
|
+
type: boolean
|
|
1964
|
+
description: whether the request is a gateway request
|
|
1965
|
+
- rovoAgentProfilecard succeeded (unfavourite):
|
|
1966
|
+
type: operational
|
|
1967
|
+
description: fired when the rovo agent profilecard unfavourite is succeeded
|
|
1968
|
+
attributes:
|
|
1969
|
+
<<: *ProfileCardAttributes
|
|
1970
|
+
duration:
|
|
1971
|
+
type: number
|
|
1972
|
+
description: the duration
|
|
1973
|
+
gateway:
|
|
1974
|
+
type: boolean
|
|
1975
|
+
description: whether the request is a gateway request
|
|
1976
|
+
- rovoAgentProfilecard triggered (unfavourite):
|
|
1977
|
+
type: operational
|
|
1978
|
+
description: fired when the rovo agent profilecard unfavourite is triggered
|
|
1979
|
+
attributes:
|
|
1980
|
+
<<: *ProfileCardAttributes
|
|
1981
|
+
- rovoAgentProfilecard failed (unfavourite):
|
|
1982
|
+
type: operational
|
|
1983
|
+
description: fired when the rovo agent profilecard unfavourite is failed
|
|
1984
|
+
attributes:
|
|
1985
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
1986
|
+
gateway:
|
|
1987
|
+
type: boolean
|
|
1988
|
+
description: whether the request is a gateway request
|
|
1989
|
+
- rovoAgentProfilecard succeeded (getAgentPermissions):
|
|
1990
|
+
type: operational
|
|
1991
|
+
description: fired when the rovo agent profilecard getAgentPermissions is succeeded
|
|
1992
|
+
attributes:
|
|
1993
|
+
<<: *ProfileCardAttributes
|
|
1994
|
+
duration:
|
|
1995
|
+
type: number
|
|
1996
|
+
description: the duration
|
|
1997
|
+
gateway:
|
|
1998
|
+
type: boolean
|
|
1999
|
+
description: whether the request is a gateway request
|
|
2000
|
+
- rovoAgentProfilecard failed (getAgentPermissions):
|
|
2001
|
+
type: operational
|
|
2002
|
+
description: fired when the rovo agent profilecard getAgentPermissions is failed
|
|
2003
|
+
attributes:
|
|
2004
|
+
<<: [*ProfileCardAttributes, *ProfileCardRequestErrorAttributes]
|
|
2005
|
+
gateway:
|
|
2006
|
+
type: boolean
|
|
2007
|
+
description: whether the request is a gateway request
|
|
2008
|
+
- profilecard clicked (moreActions):
|
|
2009
|
+
type: ui
|
|
2010
|
+
description: fired when the more actions is clicked
|
|
2011
|
+
attributes:
|
|
2012
|
+
<<: *ProfileCardAttributes
|
|
2013
|
+
duration:
|
|
2014
|
+
type: number
|
|
2015
|
+
description: the duration
|
|
2016
|
+
numActions:
|
|
2017
|
+
type: number
|
|
2018
|
+
description: the number of actions
|