@atlaskit/teams-app-internal-analytics 1.3.0 → 1.5.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 +1109 -0
- package/dist/cjs/ui/analytics-context/index.js +1 -1
- package/dist/es2019/ui/analytics-context/index.js +1 -1
- package/dist/esm/ui/analytics-context/index.js +1 -1
- package/dist/types/common/utils/generated/analytics.types.d.ts +970 -1
- package/dist/types-ts4.5/common/utils/generated/analytics.types.d.ts +970 -1
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generates Typescript types for analytics events from analytics.spec.yaml
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::28c908eb9e3683af4c16be073bb18c4c>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -22,6 +22,16 @@ export type AutomationFiredAnalyticsExampleAttributesType = {
|
|
|
22
22
|
export type AnalyticsExampleScreenViewedAttributesType = {
|
|
23
23
|
testAttribute: string;
|
|
24
24
|
};
|
|
25
|
+
export type AssignTeamToASiteMessageViewedAttributesType = {};
|
|
26
|
+
export type AssignThisTeamToASiteClickedAttributesType = {};
|
|
27
|
+
export type AssignTeamToASiteModalViewedAttributesType = {};
|
|
28
|
+
export type AssignTeamToASiteSiteSelectedSelectedAttributesType = {
|
|
29
|
+
isSuggestedSite: boolean;
|
|
30
|
+
};
|
|
31
|
+
export type AssignTeamToASiteConfirmButtonClickedAttributesType = {
|
|
32
|
+
success: boolean;
|
|
33
|
+
};
|
|
34
|
+
export type AssignTeamToASiteCancelButtonClickedAttributesType = {};
|
|
25
35
|
export type MemberPickerErrorAttributesType = {};
|
|
26
36
|
export type RequestedContainersRequestedAttributesType = {
|
|
27
37
|
containers: Record<string, unknown>;
|
|
@@ -155,6 +165,576 @@ export type TeamMenuLinkFailedAttributesType = {
|
|
|
155
165
|
status: number | null;
|
|
156
166
|
error: string;
|
|
157
167
|
};
|
|
168
|
+
export type ParentTeamLinkerOpenedAttributesType = {};
|
|
169
|
+
export type ParentTeamLinkerClosedAttributesType = {
|
|
170
|
+
isCanceled: boolean;
|
|
171
|
+
newParentTeamId: string;
|
|
172
|
+
};
|
|
173
|
+
export type AddParentTeamFailedAttributesType = {
|
|
174
|
+
parentTeamId: string;
|
|
175
|
+
error: string;
|
|
176
|
+
};
|
|
177
|
+
export type RemoveParentTeamFailedAttributesType = {
|
|
178
|
+
error: string;
|
|
179
|
+
};
|
|
180
|
+
export type SubTeamLinkerOpenedAttributesType = {};
|
|
181
|
+
export type SubTeamListUpdatedAttributesType = {
|
|
182
|
+
subTeamId: string;
|
|
183
|
+
action: 'add' | 'remove';
|
|
184
|
+
};
|
|
185
|
+
export type AddSubTeamFailedAttributesType = {
|
|
186
|
+
subTeamId: string;
|
|
187
|
+
error: string;
|
|
188
|
+
};
|
|
189
|
+
export type RemoveSubTeamFailedAttributesType = {
|
|
190
|
+
subTeamId: string;
|
|
191
|
+
error: string;
|
|
192
|
+
};
|
|
193
|
+
export type FetchTeamContainersSucceededAttributesType = {
|
|
194
|
+
teamId: string;
|
|
195
|
+
};
|
|
196
|
+
export type FetchTeamContainersFailedAttributesType = {
|
|
197
|
+
teamId: string;
|
|
198
|
+
error: Record<string, unknown>;
|
|
199
|
+
};
|
|
200
|
+
export type RefetchTeamContainersSucceededAttributesType = {
|
|
201
|
+
teamId: string;
|
|
202
|
+
};
|
|
203
|
+
export type RefetchTeamContainersFailedAttributesType = {
|
|
204
|
+
teamId: string;
|
|
205
|
+
error: Record<string, unknown>;
|
|
206
|
+
};
|
|
207
|
+
export type FetchNumberOfConnectedTeamsSucceededAttributesType = {
|
|
208
|
+
containerId: string;
|
|
209
|
+
numberOfTeams: number | null;
|
|
210
|
+
};
|
|
211
|
+
export type FetchNumberOfConnectedTeamsFailedAttributesType = {
|
|
212
|
+
containerId: string;
|
|
213
|
+
numberOfTeams: number | null;
|
|
214
|
+
error: Record<string, unknown>;
|
|
215
|
+
};
|
|
216
|
+
export type FetchConnectedTeamsSucceededAttributesType = {
|
|
217
|
+
containerId: string;
|
|
218
|
+
numberOfTeams: number | null;
|
|
219
|
+
};
|
|
220
|
+
export type FetchConnectedTeamsFailedAttributesType = {
|
|
221
|
+
containerId: string;
|
|
222
|
+
numberOfTeams: number | null;
|
|
223
|
+
error: Record<string, unknown>;
|
|
224
|
+
};
|
|
225
|
+
export type ContainerClickedTeamContainerAttributesType = {
|
|
226
|
+
containerSelected: Record<string, unknown>;
|
|
227
|
+
};
|
|
228
|
+
export type UnlinkContainerDialogOpenedAttributesType = {
|
|
229
|
+
teamId: string;
|
|
230
|
+
};
|
|
231
|
+
export type TeamContainerUnlinkedFailedAttributesType = {};
|
|
232
|
+
export type TeamContainerUnlinkedSucceededAttributesType = {
|
|
233
|
+
teamId: string;
|
|
234
|
+
containerRemoved: Record<string, unknown>;
|
|
235
|
+
};
|
|
236
|
+
export type ButtonClickedContainerUnlinkButtonAttributesType = {
|
|
237
|
+
containerSelected: Record<string, unknown> | null;
|
|
238
|
+
};
|
|
239
|
+
export type ButtonClickedContainerEditLinkButtonAttributesType = {
|
|
240
|
+
containerSelected: Record<string, unknown>;
|
|
241
|
+
};
|
|
242
|
+
export type ButtonClickedContainerRemoveLinkButtonAttributesType = {
|
|
243
|
+
containerSelected: Record<string, unknown>;
|
|
244
|
+
};
|
|
245
|
+
export type LinkClickedTeamMemberAttributesType = {};
|
|
246
|
+
export type TeamMemberClickedAttributesType = {};
|
|
247
|
+
export type TeamAgentClickedAttributesType = {};
|
|
248
|
+
export type ConnectedGroupClickedAttributesType = {};
|
|
249
|
+
export type TeamSettingsDialogViewedAttributesType = {};
|
|
250
|
+
export type DialogOpenedDeleteTeamAttributesType = {};
|
|
251
|
+
export type AgentProfileViewedAttributesType = {};
|
|
252
|
+
export type EditAgentClickedAttributesType = {};
|
|
253
|
+
export type DuplicateAgentClickedAttributesType = {};
|
|
254
|
+
export type CopyAgentClickedAttributesType = {};
|
|
255
|
+
export type DeleteAgentClickedAttributesType = {};
|
|
256
|
+
export type ChatWithAgentClickedAttributesType = {};
|
|
257
|
+
export type StartConversationWithAgentClickedAttributesType = {};
|
|
258
|
+
export type TeamMemberRemovedAttributesType = {
|
|
259
|
+
teamSize: number;
|
|
260
|
+
orgAdminTriggered: boolean;
|
|
261
|
+
memberOfTeam: boolean;
|
|
262
|
+
};
|
|
263
|
+
export type TeamInvitationAcceptedAttributesType = {
|
|
264
|
+
teamId: string;
|
|
265
|
+
};
|
|
266
|
+
export type TeamInvitationDeclinedAttributesType = {
|
|
267
|
+
teamId: string;
|
|
268
|
+
};
|
|
269
|
+
export type TeamProfileNameEditedAttributesType = {
|
|
270
|
+
teamId: string;
|
|
271
|
+
orgAdminTriggered: boolean;
|
|
272
|
+
memberOfTeam: boolean;
|
|
273
|
+
};
|
|
274
|
+
export type TeamProfileDescriptionEditedAttributesType = {
|
|
275
|
+
teamId: string;
|
|
276
|
+
orgAdminTriggered: boolean;
|
|
277
|
+
memberOfTeam: boolean;
|
|
278
|
+
};
|
|
279
|
+
export type TeamMembershipControlEditedAttributesType = {
|
|
280
|
+
teamType: 'OPEN' | 'MEMBER_INVITE' | 'EXTERNAL';
|
|
281
|
+
currentTeamType: 'OPEN' | 'MEMBER_INVITE' | 'EXTERNAL';
|
|
282
|
+
isTeamNameChanged: boolean;
|
|
283
|
+
avatarColour: string;
|
|
284
|
+
};
|
|
285
|
+
export type TeamJoinedAttributesType = {
|
|
286
|
+
actualTransition: 'join' | 'joinRequest';
|
|
287
|
+
teamId: string;
|
|
288
|
+
};
|
|
289
|
+
export type JoinRequestCreatedAttributesType = {
|
|
290
|
+
actualTransition: 'join' | 'joinRequest';
|
|
291
|
+
teamId: string;
|
|
292
|
+
};
|
|
293
|
+
export type TeamRemovedAttributesType = {
|
|
294
|
+
teamId: string;
|
|
295
|
+
orgAdminTriggered: boolean;
|
|
296
|
+
memberOfTeam: boolean;
|
|
297
|
+
teamSize: number;
|
|
298
|
+
};
|
|
299
|
+
export type TeamLinkCategoryOpenedAttributesType = {};
|
|
300
|
+
export type TeamLinkCategoryClickedAttributesType = {
|
|
301
|
+
linkType: string;
|
|
302
|
+
};
|
|
303
|
+
export type DialogClosedTeamDeletionAttributesType = {};
|
|
304
|
+
export type DialogOpenedTeamDeletionAttributesType = {};
|
|
305
|
+
export type ConfirmationCheckedTeamDeletionAttributesType = {
|
|
306
|
+
checked: boolean;
|
|
307
|
+
};
|
|
308
|
+
export type TeamDeletionFailedAttributesType = {
|
|
309
|
+
teamId: string;
|
|
310
|
+
orgAdminTriggered: boolean;
|
|
311
|
+
memberOfTeam: boolean;
|
|
312
|
+
teamSize: number;
|
|
313
|
+
};
|
|
314
|
+
export type JoinRequestAcceptedAttributesType = {
|
|
315
|
+
teamId: string;
|
|
316
|
+
memberId: string;
|
|
317
|
+
orgAdminTriggered: boolean;
|
|
318
|
+
memberOfTeam: boolean;
|
|
319
|
+
};
|
|
320
|
+
export type JoinRequestClosedAttributesType = {
|
|
321
|
+
teamId: string;
|
|
322
|
+
};
|
|
323
|
+
export type JoinRequestDeclinedAttributesType = {
|
|
324
|
+
teamId: string;
|
|
325
|
+
memberId: string;
|
|
326
|
+
orgAdminTriggered: boolean;
|
|
327
|
+
memberOfTeam: boolean;
|
|
328
|
+
};
|
|
329
|
+
export type JoinRequestCancelFailedAttributesType = {
|
|
330
|
+
status: number;
|
|
331
|
+
};
|
|
332
|
+
export type TeamInvitationSentAttributesType = {
|
|
333
|
+
teamId: string;
|
|
334
|
+
numberOfMembers: number;
|
|
335
|
+
};
|
|
336
|
+
export type JoinRequestAcceptFailedAttributesType = {
|
|
337
|
+
status: number;
|
|
338
|
+
orgAdminTriggered: boolean;
|
|
339
|
+
memberOfTeam: boolean;
|
|
340
|
+
};
|
|
341
|
+
export type JoinRequestDeclineFailedAttributesType = {
|
|
342
|
+
status: number;
|
|
343
|
+
orgAdminTriggered: boolean;
|
|
344
|
+
memberOfTeam: boolean;
|
|
345
|
+
};
|
|
346
|
+
export type TeamInvitationSucceededAttributesType = {
|
|
347
|
+
orgAdminTriggered: boolean;
|
|
348
|
+
memberOfTeam: boolean;
|
|
349
|
+
};
|
|
350
|
+
export type TeamInvitationFailedAttributesType = {
|
|
351
|
+
orgAdminTriggered: boolean;
|
|
352
|
+
memberOfTeam: boolean;
|
|
353
|
+
};
|
|
354
|
+
export type TeamAboutTaskStartAttributesType = {
|
|
355
|
+
sloSatisifed: boolean;
|
|
356
|
+
taskDuration: number;
|
|
357
|
+
latencySlo: number;
|
|
358
|
+
isStandalone: boolean;
|
|
359
|
+
hasBrowsUsersPermission: boolean;
|
|
360
|
+
};
|
|
361
|
+
export type TeamAboutTaskSuccessAttributesType = {
|
|
362
|
+
sloSatisifed: boolean;
|
|
363
|
+
taskDuration: number;
|
|
364
|
+
latencySlo: number;
|
|
365
|
+
isStandalone: boolean;
|
|
366
|
+
hasBrowsUsersPermission: boolean;
|
|
367
|
+
};
|
|
368
|
+
export type TeamAboutTaskAbortAttributesType = {
|
|
369
|
+
abortReason: string;
|
|
370
|
+
sloSatisifed: boolean;
|
|
371
|
+
taskDuration: number;
|
|
372
|
+
latencySlo: number;
|
|
373
|
+
isStandalone: boolean;
|
|
374
|
+
hasBrowsUsersPermission: boolean;
|
|
375
|
+
};
|
|
376
|
+
export type TeamAboutTaskFailAttributesType = {
|
|
377
|
+
sloSatisifed: boolean;
|
|
378
|
+
taskDuration: number;
|
|
379
|
+
latencySlo: number;
|
|
380
|
+
isStandalone: boolean;
|
|
381
|
+
hasBrowsUsersPermission: boolean;
|
|
382
|
+
};
|
|
383
|
+
export type TeamNameTaskStartAttributesType = {
|
|
384
|
+
sloSatisifed: boolean;
|
|
385
|
+
taskDuration: number;
|
|
386
|
+
latencySlo: number;
|
|
387
|
+
isStandalone: boolean;
|
|
388
|
+
hasBrowsUsersPermission: boolean;
|
|
389
|
+
};
|
|
390
|
+
export type TeamNameTaskSuccessAttributesType = {
|
|
391
|
+
sloSatisifed: boolean;
|
|
392
|
+
taskDuration: number;
|
|
393
|
+
latencySlo: number;
|
|
394
|
+
isStandalone: boolean;
|
|
395
|
+
hasBrowsUsersPermission: boolean;
|
|
396
|
+
};
|
|
397
|
+
export type TeamNameTaskAbortAttributesType = {
|
|
398
|
+
abortReason: string;
|
|
399
|
+
sloSatisifed: boolean;
|
|
400
|
+
taskDuration: number;
|
|
401
|
+
latencySlo: number;
|
|
402
|
+
isStandalone: boolean;
|
|
403
|
+
hasBrowsUsersPermission: boolean;
|
|
404
|
+
};
|
|
405
|
+
export type TeamNameTaskFailAttributesType = {
|
|
406
|
+
sloSatisifed: boolean;
|
|
407
|
+
taskDuration: number;
|
|
408
|
+
latencySlo: number;
|
|
409
|
+
isStandalone: boolean;
|
|
410
|
+
hasBrowsUsersPermission: boolean;
|
|
411
|
+
};
|
|
412
|
+
export type TeamDescriptionTaskStartAttributesType = {
|
|
413
|
+
sloSatisifed: boolean;
|
|
414
|
+
taskDuration: number;
|
|
415
|
+
latencySlo: number;
|
|
416
|
+
isStandalone: boolean;
|
|
417
|
+
hasBrowsUsersPermission: boolean;
|
|
418
|
+
};
|
|
419
|
+
export type TeamDescriptionTaskSuccessAttributesType = {
|
|
420
|
+
sloSatisifed: boolean;
|
|
421
|
+
taskDuration: number;
|
|
422
|
+
latencySlo: number;
|
|
423
|
+
isStandalone: boolean;
|
|
424
|
+
hasBrowsUsersPermission: boolean;
|
|
425
|
+
};
|
|
426
|
+
export type TeamDescriptionTaskAbortAttributesType = {
|
|
427
|
+
abortReason: string;
|
|
428
|
+
sloSatisifed: boolean;
|
|
429
|
+
taskDuration: number;
|
|
430
|
+
latencySlo: number;
|
|
431
|
+
isStandalone: boolean;
|
|
432
|
+
hasBrowsUsersPermission: boolean;
|
|
433
|
+
};
|
|
434
|
+
export type TeamDescriptionTaskFailAttributesType = {
|
|
435
|
+
sloSatisifed: boolean;
|
|
436
|
+
taskDuration: number;
|
|
437
|
+
latencySlo: number;
|
|
438
|
+
isStandalone: boolean;
|
|
439
|
+
hasBrowsUsersPermission: boolean;
|
|
440
|
+
};
|
|
441
|
+
export type TeamPermissionsTaskStartAttributesType = {
|
|
442
|
+
sloSatisifed: boolean;
|
|
443
|
+
taskDuration: number;
|
|
444
|
+
latencySlo: number;
|
|
445
|
+
isStandalone: boolean;
|
|
446
|
+
hasBrowsUsersPermission: boolean;
|
|
447
|
+
};
|
|
448
|
+
export type TeamPermissionsTaskSuccessAttributesType = {
|
|
449
|
+
sloSatisifed: boolean;
|
|
450
|
+
taskDuration: number;
|
|
451
|
+
latencySlo: number;
|
|
452
|
+
isStandalone: boolean;
|
|
453
|
+
hasBrowsUsersPermission: boolean;
|
|
454
|
+
};
|
|
455
|
+
export type TeamPermissionsTaskAbortAttributesType = {
|
|
456
|
+
abortReason: string;
|
|
457
|
+
sloSatisifed: boolean;
|
|
458
|
+
taskDuration: number;
|
|
459
|
+
latencySlo: number;
|
|
460
|
+
isStandalone: boolean;
|
|
461
|
+
hasBrowsUsersPermission: boolean;
|
|
462
|
+
};
|
|
463
|
+
export type TeamPermissionsTaskFailAttributesType = {
|
|
464
|
+
sloSatisifed: boolean;
|
|
465
|
+
taskDuration: number;
|
|
466
|
+
latencySlo: number;
|
|
467
|
+
isStandalone: boolean;
|
|
468
|
+
hasBrowsUsersPermission: boolean;
|
|
469
|
+
};
|
|
470
|
+
export type MembersTaskStartAttributesType = {
|
|
471
|
+
sloSatisifed: boolean;
|
|
472
|
+
taskDuration: number;
|
|
473
|
+
latencySlo: number;
|
|
474
|
+
isStandalone: boolean;
|
|
475
|
+
hasBrowsUsersPermission: boolean;
|
|
476
|
+
};
|
|
477
|
+
export type MembersTaskSuccessAttributesType = {
|
|
478
|
+
sloSatisifed: boolean;
|
|
479
|
+
taskDuration: number;
|
|
480
|
+
latencySlo: number;
|
|
481
|
+
isStandalone: boolean;
|
|
482
|
+
hasBrowsUsersPermission: boolean;
|
|
483
|
+
};
|
|
484
|
+
export type MembersTaskAbortAttributesType = {
|
|
485
|
+
abortReason: string;
|
|
486
|
+
sloSatisifed: boolean;
|
|
487
|
+
taskDuration: number;
|
|
488
|
+
latencySlo: number;
|
|
489
|
+
isStandalone: boolean;
|
|
490
|
+
hasBrowsUsersPermission: boolean;
|
|
491
|
+
};
|
|
492
|
+
export type MembersTaskFailAttributesType = {
|
|
493
|
+
sloSatisifed: boolean;
|
|
494
|
+
taskDuration: number;
|
|
495
|
+
latencySlo: number;
|
|
496
|
+
isStandalone: boolean;
|
|
497
|
+
hasBrowsUsersPermission: boolean;
|
|
498
|
+
};
|
|
499
|
+
export type SubmitTaskStartAttributesType = {
|
|
500
|
+
sloSatisifed: boolean;
|
|
501
|
+
taskDuration: number;
|
|
502
|
+
latencySlo: number;
|
|
503
|
+
isStandalone: boolean;
|
|
504
|
+
hasBrowsUsersPermission: boolean;
|
|
505
|
+
};
|
|
506
|
+
export type SubmitTaskSuccessAttributesType = {
|
|
507
|
+
sloSatisifed: boolean;
|
|
508
|
+
taskDuration: number;
|
|
509
|
+
latencySlo: number;
|
|
510
|
+
isStandalone: boolean;
|
|
511
|
+
hasBrowsUsersPermission: boolean;
|
|
512
|
+
};
|
|
513
|
+
export type SubmitTaskAbortAttributesType = {
|
|
514
|
+
abortReason: string;
|
|
515
|
+
sloSatisifed: boolean;
|
|
516
|
+
taskDuration: number;
|
|
517
|
+
latencySlo: number;
|
|
518
|
+
isStandalone: boolean;
|
|
519
|
+
hasBrowsUsersPermission: boolean;
|
|
520
|
+
};
|
|
521
|
+
export type SubmitTaskFailAttributesType = {
|
|
522
|
+
sloSatisifed: boolean;
|
|
523
|
+
taskDuration: number;
|
|
524
|
+
latencySlo: number;
|
|
525
|
+
isStandalone: boolean;
|
|
526
|
+
hasBrowsUsersPermission: boolean;
|
|
527
|
+
};
|
|
528
|
+
export type RemoveTeamMemberTaskStartAttributesType = {
|
|
529
|
+
sloSatisifed: boolean;
|
|
530
|
+
taskDuration: number;
|
|
531
|
+
latencySlo: number;
|
|
532
|
+
isStandalone: boolean;
|
|
533
|
+
hasBrowsUsersPermission: boolean;
|
|
534
|
+
};
|
|
535
|
+
export type RemoveTeamMemberTaskSuccessAttributesType = {
|
|
536
|
+
sloSatisifed: boolean;
|
|
537
|
+
taskDuration: number;
|
|
538
|
+
latencySlo: number;
|
|
539
|
+
isStandalone: boolean;
|
|
540
|
+
hasBrowsUsersPermission: boolean;
|
|
541
|
+
};
|
|
542
|
+
export type RemoveTeamMemberTaskAbortAttributesType = {
|
|
543
|
+
abortReason: string;
|
|
544
|
+
sloSatisifed: boolean;
|
|
545
|
+
taskDuration: number;
|
|
546
|
+
latencySlo: number;
|
|
547
|
+
isStandalone: boolean;
|
|
548
|
+
hasBrowsUsersPermission: boolean;
|
|
549
|
+
};
|
|
550
|
+
export type RemoveTeamMemberTaskFailAttributesType = {
|
|
551
|
+
sloSatisifed: boolean;
|
|
552
|
+
taskDuration: number;
|
|
553
|
+
latencySlo: number;
|
|
554
|
+
isStandalone: boolean;
|
|
555
|
+
hasBrowsUsersPermission: boolean;
|
|
556
|
+
};
|
|
557
|
+
export type OpenDialogTaskStartAttributesType = {
|
|
558
|
+
sloSatisifed: boolean;
|
|
559
|
+
taskDuration: number;
|
|
560
|
+
latencySlo: number;
|
|
561
|
+
isStandalone: boolean;
|
|
562
|
+
hasBrowsUsersPermission: boolean;
|
|
563
|
+
};
|
|
564
|
+
export type OpenDialogTaskSuccessAttributesType = {
|
|
565
|
+
sloSatisifed: boolean;
|
|
566
|
+
taskDuration: number;
|
|
567
|
+
latencySlo: number;
|
|
568
|
+
isStandalone: boolean;
|
|
569
|
+
hasBrowsUsersPermission: boolean;
|
|
570
|
+
};
|
|
571
|
+
export type OpenDialogTaskAbortAttributesType = {
|
|
572
|
+
abortReason: string;
|
|
573
|
+
sloSatisifed: boolean;
|
|
574
|
+
taskDuration: number;
|
|
575
|
+
latencySlo: number;
|
|
576
|
+
isStandalone: boolean;
|
|
577
|
+
hasBrowsUsersPermission: boolean;
|
|
578
|
+
};
|
|
579
|
+
export type OpenDialogTaskFailAttributesType = {
|
|
580
|
+
sloSatisifed: boolean;
|
|
581
|
+
taskDuration: number;
|
|
582
|
+
latencySlo: number;
|
|
583
|
+
isStandalone: boolean;
|
|
584
|
+
hasBrowsUsersPermission: boolean;
|
|
585
|
+
};
|
|
586
|
+
export type EditTeamNameOrDescriptionTaskStartAttributesType = {
|
|
587
|
+
sloSatisifed: boolean;
|
|
588
|
+
taskDuration: number;
|
|
589
|
+
latencySlo: number;
|
|
590
|
+
isStandalone: boolean;
|
|
591
|
+
hasBrowsUsersPermission: boolean;
|
|
592
|
+
};
|
|
593
|
+
export type EditTeamNameOrDescriptionTaskSuccessAttributesType = {
|
|
594
|
+
sloSatisifed: boolean;
|
|
595
|
+
taskDuration: number;
|
|
596
|
+
latencySlo: number;
|
|
597
|
+
isStandalone: boolean;
|
|
598
|
+
hasBrowsUsersPermission: boolean;
|
|
599
|
+
};
|
|
600
|
+
export type EditTeamNameOrDescriptionTaskAbortAttributesType = {
|
|
601
|
+
abortReason: string;
|
|
602
|
+
sloSatisifed: boolean;
|
|
603
|
+
taskDuration: number;
|
|
604
|
+
latencySlo: number;
|
|
605
|
+
isStandalone: boolean;
|
|
606
|
+
hasBrowsUsersPermission: boolean;
|
|
607
|
+
};
|
|
608
|
+
export type EditTeamNameOrDescriptionTaskFailAttributesType = {
|
|
609
|
+
sloSatisifed: boolean;
|
|
610
|
+
taskDuration: number;
|
|
611
|
+
latencySlo: number;
|
|
612
|
+
isStandalone: boolean;
|
|
613
|
+
hasBrowsUsersPermission: boolean;
|
|
614
|
+
};
|
|
615
|
+
export type RecommendedProductsTaskSuccessAttributesType = {
|
|
616
|
+
sloSatisifed: boolean;
|
|
617
|
+
taskDuration: number;
|
|
618
|
+
latencySlo: number;
|
|
619
|
+
isStandalone: boolean;
|
|
620
|
+
hasBrowsUsersPermission: boolean;
|
|
621
|
+
};
|
|
622
|
+
export type RecommendedProductsTaskFailAttributesType = {
|
|
623
|
+
sloSatisifed: boolean;
|
|
624
|
+
taskDuration: number;
|
|
625
|
+
latencySlo: number;
|
|
626
|
+
isStandalone: boolean;
|
|
627
|
+
hasBrowsUsersPermission: boolean;
|
|
628
|
+
};
|
|
629
|
+
export type TeamsPermissionsRequestFailedAttributesType = {
|
|
630
|
+
message: string;
|
|
631
|
+
status: string;
|
|
632
|
+
path: string;
|
|
633
|
+
};
|
|
634
|
+
export type TeamsPermissionsRequestSucceededAttributesType = {
|
|
635
|
+
canCreateTeams: boolean;
|
|
636
|
+
canViewTeams: boolean;
|
|
637
|
+
canAdminTeams: boolean;
|
|
638
|
+
};
|
|
639
|
+
export type TeamContainerLinkerOpenedAttributesType = {};
|
|
640
|
+
export type TeamContainerLinkedFailedAttributesType = {};
|
|
641
|
+
export type TeamContainerLinkedSuccessAttributesType = {};
|
|
642
|
+
export type TeamContainerLinkedViewedAttributesType = {};
|
|
643
|
+
export type TeamContainerLinkerViewedAttributesType = {
|
|
644
|
+
screen: string;
|
|
645
|
+
};
|
|
646
|
+
export type TeamContainerLinkerResultsViewedAttributesType = {
|
|
647
|
+
screen: string;
|
|
648
|
+
};
|
|
649
|
+
export type ConnectJiraProjectTabClickedAttributesType = {};
|
|
650
|
+
export type ConnectLoomSpaceTabClickedAttributesType = {};
|
|
651
|
+
export type ConnectConfluenceSpaceTabClickedAttributesType = {};
|
|
652
|
+
export type TeamProfileCardViewedAttributesType = {
|
|
653
|
+
screen: string;
|
|
654
|
+
};
|
|
655
|
+
export type TeamButtonViewedAttributesType = {
|
|
656
|
+
teamsCount: number;
|
|
657
|
+
scope: string;
|
|
658
|
+
version: string;
|
|
659
|
+
};
|
|
660
|
+
export type TeamButtonClickedAttributesType = {
|
|
661
|
+
teamsCount: number;
|
|
662
|
+
scope: string;
|
|
663
|
+
version: string;
|
|
664
|
+
};
|
|
665
|
+
export type TeamProfileButtonClickedAttributesType = {};
|
|
666
|
+
export type ProfileRadarButtonClickedAttributesType = {};
|
|
667
|
+
export type AddTeamModalViewedAttributesType = {};
|
|
668
|
+
export type AddTeamModalConfirmButtonClickedAttributesType = {};
|
|
669
|
+
export type ManageTeamsModalViewedAttributesType = {};
|
|
670
|
+
export type DisconnectTeamModalViewedAttributesType = {};
|
|
671
|
+
export type RemoveTeamButtonClickedAttributesType = {
|
|
672
|
+
screen: string;
|
|
673
|
+
};
|
|
674
|
+
export type ManageTeamsButtonClickedAttributesType = {};
|
|
675
|
+
export type TeamSelectorViewedAttributesType = {};
|
|
676
|
+
export type ManageTeamsSaveButtonClickedAttributesType = {};
|
|
677
|
+
export type TeamAgentAssociationSucceededAttributesType = {
|
|
678
|
+
orgAdminTriggered: boolean;
|
|
679
|
+
memberOfTeam: boolean;
|
|
680
|
+
};
|
|
681
|
+
export type TeamAgentAssociationFailedAttributesType = {
|
|
682
|
+
orgAdminTriggered: boolean;
|
|
683
|
+
memberOfTeam: boolean;
|
|
684
|
+
};
|
|
685
|
+
export type TeamAgentAssociationSucceddedAttributesType = {
|
|
686
|
+
numberOfAgents: number;
|
|
687
|
+
teamId: string;
|
|
688
|
+
};
|
|
689
|
+
export type TeamContainerCreatedAndLinkedSuccessAttributesType = {
|
|
690
|
+
teamId: string;
|
|
691
|
+
containerType: string;
|
|
692
|
+
};
|
|
693
|
+
export type TeamContainerCreatedAndLinkedFailedAttributesType = {
|
|
694
|
+
teamId: string;
|
|
695
|
+
containerType: string;
|
|
696
|
+
failureReason: string;
|
|
697
|
+
};
|
|
698
|
+
export type CreateJiraContainerViewedAttributesType = {
|
|
699
|
+
teamId: string;
|
|
700
|
+
};
|
|
701
|
+
export type CreateJiraContainerClickedAttributesType = {
|
|
702
|
+
teamId: string;
|
|
703
|
+
};
|
|
704
|
+
export type CreateConfluenceContainerViewedAttributesType = {
|
|
705
|
+
teamId: string;
|
|
706
|
+
};
|
|
707
|
+
export type CreateConfluenceContainerClickedAttributesType = {
|
|
708
|
+
teamId: string;
|
|
709
|
+
};
|
|
710
|
+
export type CreateLoomContainerViewedAttributesType = {
|
|
711
|
+
teamId: string;
|
|
712
|
+
};
|
|
713
|
+
export type CreateLoomContainerClickedAttributesType = {
|
|
714
|
+
teamId: string;
|
|
715
|
+
};
|
|
716
|
+
export type CreateWebLinkContainerViewedAttributesType = {
|
|
717
|
+
teamId: string;
|
|
718
|
+
};
|
|
719
|
+
export type CreateWebLinkContainerClickedAttributesType = {
|
|
720
|
+
teamId: string;
|
|
721
|
+
};
|
|
722
|
+
export type CreateContainerFooterViewedAttributesType = {
|
|
723
|
+
teamId: string;
|
|
724
|
+
canCreateConfluenceContainer: boolean;
|
|
725
|
+
canCreateJiraContainer: boolean;
|
|
726
|
+
canCreateLoomContainer: boolean;
|
|
727
|
+
};
|
|
728
|
+
export type ShowMoreTeamActivitiesClickedAttributesType = {};
|
|
729
|
+
export type TeamActivityClickedAttributesType = {
|
|
730
|
+
provider: string;
|
|
731
|
+
};
|
|
732
|
+
export type TeamProfileActivityTabViewedAttributesType = {
|
|
733
|
+
teamId: string;
|
|
734
|
+
};
|
|
735
|
+
export type TeamProfileTabSelectedAttributesType = {
|
|
736
|
+
tabId: string;
|
|
737
|
+
};
|
|
158
738
|
export type AnalyticsEventAttributes = {
|
|
159
739
|
/**
|
|
160
740
|
* fired when the teams-app-internal-analytics example button is clicked */
|
|
@@ -168,6 +748,24 @@ export type AnalyticsEventAttributes = {
|
|
|
168
748
|
/**
|
|
169
749
|
* fired when the teams-app-internal-analytics example is viewed */
|
|
170
750
|
'screen.analyticsExampleScreen.viewed': AnalyticsExampleScreenViewedAttributesType;
|
|
751
|
+
/**
|
|
752
|
+
* fired when the assign team to a site section message is viewed on the team profile page */
|
|
753
|
+
'screen.assignTeamToASiteMessage.viewed': AssignTeamToASiteMessageViewedAttributesType;
|
|
754
|
+
/**
|
|
755
|
+
* fired when the assign this team to a site action in the assign team to a site section message is clicked */
|
|
756
|
+
'ui.assignThisTeamToASite.clicked': AssignThisTeamToASiteClickedAttributesType;
|
|
757
|
+
/**
|
|
758
|
+
* fired when the assign team to a site modal is viewed */
|
|
759
|
+
'screen.assignTeamToASiteModal.viewed': AssignTeamToASiteModalViewedAttributesType;
|
|
760
|
+
/**
|
|
761
|
+
* fired when the site is selected in the assign team to a site modal */
|
|
762
|
+
'track.assignTeamToASiteSiteSelected.selected': AssignTeamToASiteSiteSelectedSelectedAttributesType;
|
|
763
|
+
/**
|
|
764
|
+
* fired when the confirm button is clicked in the assign team to a site modal */
|
|
765
|
+
'ui.assignTeamToASiteConfirmButton.clicked': AssignTeamToASiteConfirmButtonClickedAttributesType;
|
|
766
|
+
/**
|
|
767
|
+
* fired when the cancel button is clicked in the assign team to a site modal */
|
|
768
|
+
'ui.assignTeamToASiteCancelButton.clicked': AssignTeamToASiteCancelButtonClickedAttributesType;
|
|
171
769
|
/**
|
|
172
770
|
* fired when the member picker error is triggered */
|
|
173
771
|
'track.memberPicker.error': MemberPickerErrorAttributesType;
|
|
@@ -279,5 +877,376 @@ export type AnalyticsEventAttributes = {
|
|
|
279
877
|
/**
|
|
280
878
|
* fired when the people menu link is failed */
|
|
281
879
|
'operational.teamMenuLink.failed': TeamMenuLinkFailedAttributesType;
|
|
880
|
+
/**
|
|
881
|
+
* fired when the parent team field is clicked */
|
|
882
|
+
'ui.parentTeamLinker.opened': ParentTeamLinkerOpenedAttributesType;
|
|
883
|
+
/**
|
|
884
|
+
* fired when the parent team linker is closed */
|
|
885
|
+
'ui.parentTeamLinker.closed': ParentTeamLinkerClosedAttributesType;
|
|
886
|
+
/**
|
|
887
|
+
* fired when the add parent team operation fails */
|
|
888
|
+
'operational.addParentTeam.failed': AddParentTeamFailedAttributesType;
|
|
889
|
+
/**
|
|
890
|
+
* fired when the remove parent team operation fails */
|
|
891
|
+
'operational.removeParentTeam.failed': RemoveParentTeamFailedAttributesType;
|
|
892
|
+
/**
|
|
893
|
+
* fired when the sub team linker is viewed */
|
|
894
|
+
'ui.subTeamLinker.opened': SubTeamLinkerOpenedAttributesType;
|
|
895
|
+
/**
|
|
896
|
+
* fired when the sub team linker is closed */
|
|
897
|
+
'ui.subTeamList.updated': SubTeamListUpdatedAttributesType;
|
|
898
|
+
/**
|
|
899
|
+
* fired when the add sub team operation fails */
|
|
900
|
+
'operational.addSubTeam.failed': AddSubTeamFailedAttributesType;
|
|
901
|
+
/**
|
|
902
|
+
* fired when the remove sub team operation fails */
|
|
903
|
+
'operational.removeSubTeam.failed': RemoveSubTeamFailedAttributesType;
|
|
904
|
+
/**
|
|
905
|
+
* fired when the fetchTeamContainers succeeded */
|
|
906
|
+
'operational.fetchTeamContainers.succeeded': FetchTeamContainersSucceededAttributesType;
|
|
907
|
+
/**
|
|
908
|
+
* fired when the fetchTeamContainers failed */
|
|
909
|
+
'operational.fetchTeamContainers.failed': FetchTeamContainersFailedAttributesType;
|
|
910
|
+
/**
|
|
911
|
+
* fired when the fetchTeamContainers succeeded */
|
|
912
|
+
'operational.refetchTeamContainers.succeeded': RefetchTeamContainersSucceededAttributesType;
|
|
913
|
+
/**
|
|
914
|
+
* fired when the fetchTeamContainers failed */
|
|
915
|
+
'operational.refetchTeamContainers.failed': RefetchTeamContainersFailedAttributesType;
|
|
916
|
+
/**
|
|
917
|
+
* fired when the fetchNumberOfConnectedTeams succeeded */
|
|
918
|
+
'operational.fetchNumberOfConnectedTeams.succeeded': FetchNumberOfConnectedTeamsSucceededAttributesType;
|
|
919
|
+
/**
|
|
920
|
+
* fired when the fetchNumberOfConnectedTeams failed */
|
|
921
|
+
'operational.fetchNumberOfConnectedTeams.failed': FetchNumberOfConnectedTeamsFailedAttributesType;
|
|
922
|
+
/**
|
|
923
|
+
* fired when the fetchConnectedTeams succeeded */
|
|
924
|
+
'operational.fetchConnectedTeams.succeeded': FetchConnectedTeamsSucceededAttributesType;
|
|
925
|
+
/**
|
|
926
|
+
* fired when the fetchConnectedTeams failed */
|
|
927
|
+
'operational.fetchConnectedTeams.failed': FetchConnectedTeamsFailedAttributesType;
|
|
928
|
+
/**
|
|
929
|
+
* fired when the team container is clicked */
|
|
930
|
+
'ui.container.clicked.teamContainer': ContainerClickedTeamContainerAttributesType;
|
|
931
|
+
/**
|
|
932
|
+
* fired when the unlink container dialog is opened */
|
|
933
|
+
'track.unlinkContainerDialog.opened': UnlinkContainerDialogOpenedAttributesType;
|
|
934
|
+
/**
|
|
935
|
+
* fired when the team container unlink failed */
|
|
936
|
+
'track.teamContainerUnlinked.failed': TeamContainerUnlinkedFailedAttributesType;
|
|
937
|
+
/**
|
|
938
|
+
* fired when the team container unlink succeeded */
|
|
939
|
+
'track.teamContainerUnlinked.succeeded': TeamContainerUnlinkedSucceededAttributesType;
|
|
940
|
+
/**
|
|
941
|
+
* fired when the container unlink button is clicked */
|
|
942
|
+
'ui.button.clicked.containerUnlinkButton': ButtonClickedContainerUnlinkButtonAttributesType;
|
|
943
|
+
/**
|
|
944
|
+
* fired when the container edit link button is clicked */
|
|
945
|
+
'ui.button.clicked.containerEditLinkButton': ButtonClickedContainerEditLinkButtonAttributesType;
|
|
946
|
+
/**
|
|
947
|
+
* fired when the container remove link button is clicked */
|
|
948
|
+
'ui.button.clicked.containerRemoveLinkButton': ButtonClickedContainerRemoveLinkButtonAttributesType;
|
|
949
|
+
/**
|
|
950
|
+
* fired when the link picker is successfully submitted */
|
|
951
|
+
'ui.link.clicked.teamMember': LinkClickedTeamMemberAttributesType;
|
|
952
|
+
/**
|
|
953
|
+
* fired when the link picker is successfully submitted */
|
|
954
|
+
'ui.teamMember.clicked': TeamMemberClickedAttributesType;
|
|
955
|
+
/**
|
|
956
|
+
* fired when the link picker is successfully submitted */
|
|
957
|
+
'ui.teamAgent.clicked': TeamAgentClickedAttributesType;
|
|
958
|
+
/**
|
|
959
|
+
* fired when connected group name is clicked */
|
|
960
|
+
'ui.connectedGroup.clicked': ConnectedGroupClickedAttributesType;
|
|
961
|
+
/**
|
|
962
|
+
* teamSettingsDialog */
|
|
963
|
+
'screen.teamSettingsDialog.viewed': TeamSettingsDialogViewedAttributesType;
|
|
964
|
+
/**
|
|
965
|
+
* fired when the delete team dialog is opened */
|
|
966
|
+
'ui.dialog.opened.deleteTeam': DialogOpenedDeleteTeamAttributesType;
|
|
967
|
+
/**
|
|
968
|
+
* fired when agent profile viewed */
|
|
969
|
+
'screen.agentProfile.viewed': AgentProfileViewedAttributesType;
|
|
970
|
+
/**
|
|
971
|
+
* fired when the edit agent menuItem is clicked */
|
|
972
|
+
'ui.editAgent.clicked': EditAgentClickedAttributesType;
|
|
973
|
+
/**
|
|
974
|
+
* fired when the duplicate agent menuItem is clicked */
|
|
975
|
+
'ui.duplicateAgent.clicked': DuplicateAgentClickedAttributesType;
|
|
976
|
+
/**
|
|
977
|
+
* fired when the copy agent menuItem is clicked */
|
|
978
|
+
'ui.copyAgent.clicked': CopyAgentClickedAttributesType;
|
|
979
|
+
/**
|
|
980
|
+
* fired when the delete agent menuItem is clicked */
|
|
981
|
+
'ui.deleteAgent.clicked': DeleteAgentClickedAttributesType;
|
|
982
|
+
/**
|
|
983
|
+
* fired when the chat button is clicked */
|
|
984
|
+
'ui.chatWithAgent.clicked': ChatWithAgentClickedAttributesType;
|
|
985
|
+
/**
|
|
986
|
+
* fired when the agent conversation starter is clicked */
|
|
987
|
+
'ui.startConversationWithAgent.clicked': StartConversationWithAgentClickedAttributesType;
|
|
988
|
+
/**
|
|
989
|
+
* teamMember removed */
|
|
990
|
+
'track.teamMember.removed': TeamMemberRemovedAttributesType;
|
|
991
|
+
/**
|
|
992
|
+
* teamInvitation accepted */
|
|
993
|
+
'track.teamInvitation.accepted': TeamInvitationAcceptedAttributesType;
|
|
994
|
+
/**
|
|
995
|
+
* teamInvitation declined */
|
|
996
|
+
'track.teamInvitation.declined': TeamInvitationDeclinedAttributesType;
|
|
997
|
+
/**
|
|
998
|
+
* teamProfileName edited */
|
|
999
|
+
'track.teamProfileName.edited': TeamProfileNameEditedAttributesType;
|
|
1000
|
+
/**
|
|
1001
|
+
* teamProfileDescription edited */
|
|
1002
|
+
'track.teamProfileDescription.edited': TeamProfileDescriptionEditedAttributesType;
|
|
1003
|
+
/**
|
|
1004
|
+
* teamMembershipControl edited */
|
|
1005
|
+
'track.teamMembershipControl.edited': TeamMembershipControlEditedAttributesType;
|
|
1006
|
+
/**
|
|
1007
|
+
* team joined */
|
|
1008
|
+
'track.team.joined': TeamJoinedAttributesType;
|
|
1009
|
+
/**
|
|
1010
|
+
* joinRequest created */
|
|
1011
|
+
'track.joinRequest.created': JoinRequestCreatedAttributesType;
|
|
1012
|
+
/**
|
|
1013
|
+
* team removed */
|
|
1014
|
+
'track.team.removed': TeamRemovedAttributesType;
|
|
1015
|
+
/**
|
|
1016
|
+
* fired when the team link is opened */
|
|
1017
|
+
'ui.teamLinkCategory.opened': TeamLinkCategoryOpenedAttributesType;
|
|
1018
|
+
/**
|
|
1019
|
+
* fired when the team link is clicked */
|
|
1020
|
+
'ui.teamLinkCategory.clicked': TeamLinkCategoryClickedAttributesType;
|
|
1021
|
+
/**
|
|
1022
|
+
* fired when the delete team dialog is closed */
|
|
1023
|
+
'ui.dialog.closed.teamDeletion': DialogClosedTeamDeletionAttributesType;
|
|
1024
|
+
/**
|
|
1025
|
+
* fired when the delete team dialog is opened */
|
|
1026
|
+
'ui.dialog.opened.teamDeletion': DialogOpenedTeamDeletionAttributesType;
|
|
1027
|
+
/**
|
|
1028
|
+
* fired when the delete team dialog is successfully submitted */
|
|
1029
|
+
'ui.confirmation.checked.teamDeletion': ConfirmationCheckedTeamDeletionAttributesType;
|
|
1030
|
+
/**
|
|
1031
|
+
* team removed */
|
|
1032
|
+
'track.teamDeletion.failed': TeamDeletionFailedAttributesType;
|
|
1033
|
+
/**
|
|
1034
|
+
* joinRequest accepted */
|
|
1035
|
+
'track.joinRequest.accepted': JoinRequestAcceptedAttributesType;
|
|
1036
|
+
/**
|
|
1037
|
+
* joinRequest closed */
|
|
1038
|
+
'track.joinRequest.closed': JoinRequestClosedAttributesType;
|
|
1039
|
+
/**
|
|
1040
|
+
* joinRequest declined */
|
|
1041
|
+
'track.joinRequest.declined': JoinRequestDeclinedAttributesType;
|
|
1042
|
+
/**
|
|
1043
|
+
* joinRequestCancel failed */
|
|
1044
|
+
'operational.joinRequestCancel.failed': JoinRequestCancelFailedAttributesType;
|
|
1045
|
+
/**
|
|
1046
|
+
* teamInvitation sent */
|
|
1047
|
+
'track.teamInvitation.sent': TeamInvitationSentAttributesType;
|
|
1048
|
+
/**
|
|
1049
|
+
* joinRequestAccept failed */
|
|
1050
|
+
'operational.joinRequestAccept.failed': JoinRequestAcceptFailedAttributesType;
|
|
1051
|
+
/**
|
|
1052
|
+
* joinRequestDecline failed */
|
|
1053
|
+
'operational.joinRequestDecline.failed': JoinRequestDeclineFailedAttributesType;
|
|
1054
|
+
/**
|
|
1055
|
+
* teamInvitation succeeded */
|
|
1056
|
+
'operational.teamInvitation.succeeded': TeamInvitationSucceededAttributesType;
|
|
1057
|
+
/**
|
|
1058
|
+
* teamInvitation failed */
|
|
1059
|
+
'operational.teamInvitation.failed': TeamInvitationFailedAttributesType;
|
|
1060
|
+
/** */
|
|
1061
|
+
'operational.teamAbout.taskStart': TeamAboutTaskStartAttributesType;
|
|
1062
|
+
/** */
|
|
1063
|
+
'operational.teamAbout.taskSuccess': TeamAboutTaskSuccessAttributesType;
|
|
1064
|
+
/** */
|
|
1065
|
+
'operational.teamAbout.taskAbort': TeamAboutTaskAbortAttributesType;
|
|
1066
|
+
/** */
|
|
1067
|
+
'operational.teamAbout.taskFail': TeamAboutTaskFailAttributesType;
|
|
1068
|
+
/** */
|
|
1069
|
+
'operational.teamName.taskStart': TeamNameTaskStartAttributesType;
|
|
1070
|
+
/** */
|
|
1071
|
+
'operational.teamName.taskSuccess': TeamNameTaskSuccessAttributesType;
|
|
1072
|
+
/** */
|
|
1073
|
+
'operational.teamName.taskAbort': TeamNameTaskAbortAttributesType;
|
|
1074
|
+
/** */
|
|
1075
|
+
'operational.teamName.taskFail': TeamNameTaskFailAttributesType;
|
|
1076
|
+
/** */
|
|
1077
|
+
'operational.teamDescription.taskStart': TeamDescriptionTaskStartAttributesType;
|
|
1078
|
+
/** */
|
|
1079
|
+
'operational.teamDescription.taskSuccess': TeamDescriptionTaskSuccessAttributesType;
|
|
1080
|
+
/** */
|
|
1081
|
+
'operational.teamDescription.taskAbort': TeamDescriptionTaskAbortAttributesType;
|
|
1082
|
+
/** */
|
|
1083
|
+
'operational.teamDescription.taskFail': TeamDescriptionTaskFailAttributesType;
|
|
1084
|
+
/** */
|
|
1085
|
+
'operational.teamPermissions.taskStart': TeamPermissionsTaskStartAttributesType;
|
|
1086
|
+
/** */
|
|
1087
|
+
'operational.teamPermissions.taskSuccess': TeamPermissionsTaskSuccessAttributesType;
|
|
1088
|
+
/** */
|
|
1089
|
+
'operational.teamPermissions.taskAbort': TeamPermissionsTaskAbortAttributesType;
|
|
1090
|
+
/** */
|
|
1091
|
+
'operational.teamPermissions.taskFail': TeamPermissionsTaskFailAttributesType;
|
|
1092
|
+
/** */
|
|
1093
|
+
'operational.members.taskStart': MembersTaskStartAttributesType;
|
|
1094
|
+
/** */
|
|
1095
|
+
'operational.members.taskSuccess': MembersTaskSuccessAttributesType;
|
|
1096
|
+
/** */
|
|
1097
|
+
'operational.members.taskAbort': MembersTaskAbortAttributesType;
|
|
1098
|
+
/** */
|
|
1099
|
+
'operational.members.taskFail': MembersTaskFailAttributesType;
|
|
1100
|
+
/** */
|
|
1101
|
+
'operational.submit.taskStart': SubmitTaskStartAttributesType;
|
|
1102
|
+
/** */
|
|
1103
|
+
'operational.submit.taskSuccess': SubmitTaskSuccessAttributesType;
|
|
1104
|
+
/** */
|
|
1105
|
+
'operational.submit.taskAbort': SubmitTaskAbortAttributesType;
|
|
1106
|
+
/** */
|
|
1107
|
+
'operational.submit.taskFail': SubmitTaskFailAttributesType;
|
|
1108
|
+
/** */
|
|
1109
|
+
'operational.removeTeamMember.taskStart': RemoveTeamMemberTaskStartAttributesType;
|
|
1110
|
+
/** */
|
|
1111
|
+
'operational.removeTeamMember.taskSuccess': RemoveTeamMemberTaskSuccessAttributesType;
|
|
1112
|
+
/** */
|
|
1113
|
+
'operational.removeTeamMember.taskAbort': RemoveTeamMemberTaskAbortAttributesType;
|
|
1114
|
+
/** */
|
|
1115
|
+
'operational.removeTeamMember.taskFail': RemoveTeamMemberTaskFailAttributesType;
|
|
1116
|
+
/** */
|
|
1117
|
+
'operational.openDialog.taskStart': OpenDialogTaskStartAttributesType;
|
|
1118
|
+
/** */
|
|
1119
|
+
'operational.openDialog.taskSuccess': OpenDialogTaskSuccessAttributesType;
|
|
1120
|
+
/** */
|
|
1121
|
+
'operational.openDialog.taskAbort': OpenDialogTaskAbortAttributesType;
|
|
1122
|
+
/** */
|
|
1123
|
+
'operational.openDialog.taskFail': OpenDialogTaskFailAttributesType;
|
|
1124
|
+
/** */
|
|
1125
|
+
'operational.editTeamNameOrDescription.taskStart': EditTeamNameOrDescriptionTaskStartAttributesType;
|
|
1126
|
+
/** */
|
|
1127
|
+
'operational.editTeamNameOrDescription.taskSuccess': EditTeamNameOrDescriptionTaskSuccessAttributesType;
|
|
1128
|
+
/** */
|
|
1129
|
+
'operational.editTeamNameOrDescription.taskAbort': EditTeamNameOrDescriptionTaskAbortAttributesType;
|
|
1130
|
+
/** */
|
|
1131
|
+
'operational.editTeamNameOrDescription.taskFail': EditTeamNameOrDescriptionTaskFailAttributesType;
|
|
1132
|
+
/** */
|
|
1133
|
+
'operational.recommendedProducts.taskSuccess': RecommendedProductsTaskSuccessAttributesType;
|
|
1134
|
+
/** */
|
|
1135
|
+
'operational.recommendedProducts.taskFail': RecommendedProductsTaskFailAttributesType;
|
|
1136
|
+
/** */
|
|
1137
|
+
'operational.teamsPermissionsRequest.failed': TeamsPermissionsRequestFailedAttributesType;
|
|
1138
|
+
/** */
|
|
1139
|
+
'operational.teamsPermissionsRequest.succeeded': TeamsPermissionsRequestSucceededAttributesType;
|
|
1140
|
+
/**
|
|
1141
|
+
* fired when the team container linker is opened */
|
|
1142
|
+
'ui.teamContainerLinker.opened': TeamContainerLinkerOpenedAttributesType;
|
|
1143
|
+
/** */
|
|
1144
|
+
'track.teamContainerLinked.failed': TeamContainerLinkedFailedAttributesType;
|
|
1145
|
+
/** */
|
|
1146
|
+
'ui.teamContainerLinked.success': TeamContainerLinkedSuccessAttributesType;
|
|
1147
|
+
/** */
|
|
1148
|
+
'ui.teamContainerLinked.viewed': TeamContainerLinkedViewedAttributesType;
|
|
1149
|
+
/** */
|
|
1150
|
+
'ui.teamContainerLinker.viewed': TeamContainerLinkerViewedAttributesType;
|
|
1151
|
+
/** */
|
|
1152
|
+
'ui.teamContainerLinkerResults.viewed': TeamContainerLinkerResultsViewedAttributesType;
|
|
1153
|
+
/** */
|
|
1154
|
+
'ui.connectJiraProjectTab.clicked': ConnectJiraProjectTabClickedAttributesType;
|
|
1155
|
+
/** */
|
|
1156
|
+
'ui.connectLoomSpaceTab.clicked': ConnectLoomSpaceTabClickedAttributesType;
|
|
1157
|
+
/** */
|
|
1158
|
+
'ui.connectConfluenceSpaceTab.clicked': ConnectConfluenceSpaceTabClickedAttributesType;
|
|
1159
|
+
/** */
|
|
1160
|
+
'ui.teamProfileCard.viewed': TeamProfileCardViewedAttributesType;
|
|
1161
|
+
/**
|
|
1162
|
+
* fired when the team button is viewed */
|
|
1163
|
+
'ui.teamButton.viewed': TeamButtonViewedAttributesType;
|
|
1164
|
+
/**
|
|
1165
|
+
* fired when the team button is clicked */
|
|
1166
|
+
'ui.teamButton.clicked': TeamButtonClickedAttributesType;
|
|
1167
|
+
/**
|
|
1168
|
+
* fired when the team profile button is clicked */
|
|
1169
|
+
'ui.teamProfileButton.clicked': TeamProfileButtonClickedAttributesType;
|
|
1170
|
+
/**
|
|
1171
|
+
* fired when the profile radar button is clicked */
|
|
1172
|
+
'ui.profileRadarButton.clicked': ProfileRadarButtonClickedAttributesType;
|
|
1173
|
+
/**
|
|
1174
|
+
* fired when the add team modal is viewed */
|
|
1175
|
+
'screen.addTeamModal.viewed': AddTeamModalViewedAttributesType;
|
|
1176
|
+
/**
|
|
1177
|
+
* fired when the add team modal confirm button is clicked */
|
|
1178
|
+
'ui.addTeamModalConfirmButton.clicked': AddTeamModalConfirmButtonClickedAttributesType;
|
|
1179
|
+
/**
|
|
1180
|
+
* fired when the manage teams modal is viewed */
|
|
1181
|
+
'screen.manageTeamsModal.viewed': ManageTeamsModalViewedAttributesType;
|
|
1182
|
+
/**
|
|
1183
|
+
* fired when the disconnect team confirmation modal is viewed */
|
|
1184
|
+
'screen.disconnectTeamModal.viewed': DisconnectTeamModalViewedAttributesType;
|
|
1185
|
+
/**
|
|
1186
|
+
* fired when the remove (unlink) team button is clicked */
|
|
1187
|
+
'ui.removeTeamButton.clicked': RemoveTeamButtonClickedAttributesType;
|
|
1188
|
+
/**
|
|
1189
|
+
* fired when the manage teams button is clicked */
|
|
1190
|
+
'ui.manageTeamsButton.clicked': ManageTeamsButtonClickedAttributesType;
|
|
1191
|
+
/**
|
|
1192
|
+
* fired when the team selector popup is viewed */
|
|
1193
|
+
'screen.teamSelector.viewed': TeamSelectorViewedAttributesType;
|
|
1194
|
+
/**
|
|
1195
|
+
* fired when the save button from the manage teams modal is clicked */
|
|
1196
|
+
'ui.manageTeamsSaveButton.clicked': ManageTeamsSaveButtonClickedAttributesType;
|
|
1197
|
+
/**
|
|
1198
|
+
* add agent to team succeeded */
|
|
1199
|
+
'operational.teamAgentAssociation.succeeded': TeamAgentAssociationSucceededAttributesType;
|
|
1200
|
+
/**
|
|
1201
|
+
* add agent to team failed */
|
|
1202
|
+
'operational.teamAgentAssociation.failed': TeamAgentAssociationFailedAttributesType;
|
|
1203
|
+
/**
|
|
1204
|
+
* add agent to team succeeded */
|
|
1205
|
+
'track.teamAgentAssociation.succedded': TeamAgentAssociationSucceddedAttributesType;
|
|
1206
|
+
/**
|
|
1207
|
+
* container is created and linked to a team */
|
|
1208
|
+
'track.teamContainerCreatedAndLinked.success': TeamContainerCreatedAndLinkedSuccessAttributesType;
|
|
1209
|
+
/**
|
|
1210
|
+
* container is created and linked to a team */
|
|
1211
|
+
'track.teamContainerCreatedAndLinked.failed': TeamContainerCreatedAndLinkedFailedAttributesType;
|
|
1212
|
+
/**
|
|
1213
|
+
* the "create jira project" button is viewed */
|
|
1214
|
+
'ui.createJiraContainer.viewed': CreateJiraContainerViewedAttributesType;
|
|
1215
|
+
/**
|
|
1216
|
+
* the "create jira space" button is clicked */
|
|
1217
|
+
'ui.createJiraContainer.clicked': CreateJiraContainerClickedAttributesType;
|
|
1218
|
+
/**
|
|
1219
|
+
* the "create confluence space" button is viewed */
|
|
1220
|
+
'ui.createConfluenceContainer.viewed': CreateConfluenceContainerViewedAttributesType;
|
|
1221
|
+
/**
|
|
1222
|
+
* the "create confluence space" button is clicked */
|
|
1223
|
+
'ui.createConfluenceContainer.clicked': CreateConfluenceContainerClickedAttributesType;
|
|
1224
|
+
/**
|
|
1225
|
+
* the "create loom space" button is viewed */
|
|
1226
|
+
'ui.createLoomContainer.viewed': CreateLoomContainerViewedAttributesType;
|
|
1227
|
+
/**
|
|
1228
|
+
* the "create loom space" button is clicked */
|
|
1229
|
+
'ui.createLoomContainer.clicked': CreateLoomContainerClickedAttributesType;
|
|
1230
|
+
/**
|
|
1231
|
+
* the "create web link" button is viewed */
|
|
1232
|
+
'ui.createWebLinkContainer.viewed': CreateWebLinkContainerViewedAttributesType;
|
|
1233
|
+
/**
|
|
1234
|
+
* the "create web link" button is clicked */
|
|
1235
|
+
'ui.createWebLinkContainer.clicked': CreateWebLinkContainerClickedAttributesType;
|
|
1236
|
+
/**
|
|
1237
|
+
* the create container component is viewed */
|
|
1238
|
+
'ui.createContainerFooter.viewed': CreateContainerFooterViewedAttributesType;
|
|
1239
|
+
/**
|
|
1240
|
+
* fired when the Show more button is clicked in the Team activities tab */
|
|
1241
|
+
'ui.showMoreTeamActivities.clicked': ShowMoreTeamActivitiesClickedAttributesType;
|
|
1242
|
+
/**
|
|
1243
|
+
* fired when the team activity is clicked in the Team activities tab */
|
|
1244
|
+
'ui.teamActivity.clicked': TeamActivityClickedAttributesType;
|
|
1245
|
+
/**
|
|
1246
|
+
* fired when the team profile activity tab is successfully viewed */
|
|
1247
|
+
'screen.teamProfileActivityTab.viewed': TeamProfileActivityTabViewedAttributesType;
|
|
1248
|
+
/**
|
|
1249
|
+
* fired when a tab profile tab is selected */
|
|
1250
|
+
'track.teamProfileTab.selected': TeamProfileTabSelectedAttributesType;
|
|
282
1251
|
};
|
|
283
1252
|
export type EventKey = keyof AnalyticsEventAttributes;
|