@atlaskit/teams-app-internal-analytics 1.5.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 +11 -0
- package/analytics.spec.yaml +420 -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 +377 -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 +377 -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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/teams-app-internal-analytics
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a5484f724ef0b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a5484f724ef0b) -
|
|
8
|
+
Migrated user profile card analytics to @atlaskit/teams-app-internal-analytics
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 1.5.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/analytics.spec.yaml
CHANGED
|
@@ -62,6 +62,57 @@ shared:
|
|
|
62
62
|
abortReason:
|
|
63
63
|
type: string
|
|
64
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
|
|
65
116
|
|
|
66
117
|
events:
|
|
67
118
|
- button clicked (analyticsExample):
|
|
@@ -1596,3 +1647,372 @@ events:
|
|
|
1596
1647
|
tabId:
|
|
1597
1648
|
type: string
|
|
1598
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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::2d0914551b7a5bd52432cf172a7e879e>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -735,6 +735,250 @@ export type TeamProfileActivityTabViewedAttributesType = {
|
|
|
735
735
|
export type TeamProfileTabSelectedAttributesType = {
|
|
736
736
|
tabId: string;
|
|
737
737
|
};
|
|
738
|
+
export type TeamConnectionItemClickedTeamProfileCardAttributesType = {
|
|
739
|
+
container: 'ConfluenceSpace' | 'JiraProject' | 'LoomSpace' | 'WebLink';
|
|
740
|
+
};
|
|
741
|
+
export type ButtonClickedViewTeamProfileButtonAttributesType = {};
|
|
742
|
+
export type ProfilecardTriggeredAttributesType = {
|
|
743
|
+
firedAt: number;
|
|
744
|
+
method: 'hover' | 'click';
|
|
745
|
+
};
|
|
746
|
+
export type RovoAgentProfilecardTriggeredAttributesType = {
|
|
747
|
+
firedAt: number;
|
|
748
|
+
method: 'hover' | 'click';
|
|
749
|
+
};
|
|
750
|
+
export type TeamProfileCardTriggeredAttributesType = {
|
|
751
|
+
firedAt: number;
|
|
752
|
+
method: 'hover' | 'click';
|
|
753
|
+
teamId: string;
|
|
754
|
+
};
|
|
755
|
+
export type UserTriggeredAttributesType = {
|
|
756
|
+
firedAt: number;
|
|
757
|
+
method: 'hover' | 'click';
|
|
758
|
+
};
|
|
759
|
+
export type ProfilecardRenderedSpinnerAttributesType = {
|
|
760
|
+
firedAt: number;
|
|
761
|
+
};
|
|
762
|
+
export type TeamProfileCardRenderedSpinnerAttributesType = {
|
|
763
|
+
firedAt: number;
|
|
764
|
+
};
|
|
765
|
+
export type RovoAgentProfilecardRenderedSpinnerAttributesType = {
|
|
766
|
+
firedAt: number;
|
|
767
|
+
};
|
|
768
|
+
export type UserRenderedSpinnerAttributesType = {
|
|
769
|
+
firedAt: number;
|
|
770
|
+
};
|
|
771
|
+
export type ProfilecardRenderedErrorAttributesType = {
|
|
772
|
+
firedAt: number;
|
|
773
|
+
hasRetry: boolean;
|
|
774
|
+
errorType: 'default' | 'NotFound';
|
|
775
|
+
};
|
|
776
|
+
export type TeamProfileCardRenderedErrorAttributesType = {
|
|
777
|
+
firedAt: number;
|
|
778
|
+
duration: number;
|
|
779
|
+
};
|
|
780
|
+
export type ProfilecardClickedActionAttributesType = {
|
|
781
|
+
firedAt: number;
|
|
782
|
+
duration: number;
|
|
783
|
+
hasHref: boolean;
|
|
784
|
+
hasOnClick: boolean;
|
|
785
|
+
index: number;
|
|
786
|
+
actionId: string;
|
|
787
|
+
};
|
|
788
|
+
export type ProfilecardClickedReportingLinesAttributesType = {
|
|
789
|
+
firedAt: number;
|
|
790
|
+
duration: number;
|
|
791
|
+
userType: 'manager' | 'direct-report';
|
|
792
|
+
};
|
|
793
|
+
export type ProfilecardRenderedContentAttributesType = {
|
|
794
|
+
firedAt: number;
|
|
795
|
+
duration: number;
|
|
796
|
+
numActions: number;
|
|
797
|
+
};
|
|
798
|
+
export type RovoAgentProfilecardRenderedContentAttributesType = {
|
|
799
|
+
firedAt: number;
|
|
800
|
+
};
|
|
801
|
+
export type TeamProfileCardRenderedContentAttributesType = {
|
|
802
|
+
firedAt: number;
|
|
803
|
+
duration: number;
|
|
804
|
+
numActions: number;
|
|
805
|
+
memberCount: number | null;
|
|
806
|
+
includingYou: boolean | null;
|
|
807
|
+
descriptionLength: number;
|
|
808
|
+
titleLength: number;
|
|
809
|
+
};
|
|
810
|
+
export type ButtonClickedDeleteAgentButtonAttributesType = {
|
|
811
|
+
agentId: string;
|
|
812
|
+
source: string;
|
|
813
|
+
};
|
|
814
|
+
export type ButtonClickedEditAgentButtonAttributesType = {
|
|
815
|
+
agentId: string;
|
|
816
|
+
source: string;
|
|
817
|
+
};
|
|
818
|
+
export type ButtonClickedCopyAgentLinkButtonAttributesType = {
|
|
819
|
+
agentId: string;
|
|
820
|
+
source: string;
|
|
821
|
+
};
|
|
822
|
+
export type ButtonClickedDuplicateAgentButtonAttributesType = {
|
|
823
|
+
agentId: string;
|
|
824
|
+
source: string;
|
|
825
|
+
};
|
|
826
|
+
export type ButtonClickedViewAgentFullProfileButtonAttributesType = {
|
|
827
|
+
agentId: string;
|
|
828
|
+
source: string;
|
|
829
|
+
};
|
|
830
|
+
export type TeamProfileCardRenderedErrorBoundaryAttributesType = {
|
|
831
|
+
firedAt: number;
|
|
832
|
+
duration: number;
|
|
833
|
+
};
|
|
834
|
+
export type TeamProfileCardClickedErrorRetryAttributesType = {
|
|
835
|
+
firedAt: number;
|
|
836
|
+
duration: number;
|
|
837
|
+
};
|
|
838
|
+
export type ProfilecardSucceededRequestAttributesType = {
|
|
839
|
+
firedAt: number;
|
|
840
|
+
duration: number;
|
|
841
|
+
};
|
|
842
|
+
export type ProfilecardTriggeredRequestAttributesType = {
|
|
843
|
+
firedAt: number;
|
|
844
|
+
};
|
|
845
|
+
export type ProfilecardFailedRequestAttributesType = {
|
|
846
|
+
firedAt: number;
|
|
847
|
+
duration: number;
|
|
848
|
+
errorMessage: string;
|
|
849
|
+
errorStatusCode: number | null;
|
|
850
|
+
traceId: string | null;
|
|
851
|
+
errorCategory: string | null;
|
|
852
|
+
errorType: string | null;
|
|
853
|
+
errorPath: string | null;
|
|
854
|
+
errorNumber: number | null;
|
|
855
|
+
isSLOFailure: boolean;
|
|
856
|
+
};
|
|
857
|
+
export type TeamProfileCardSucceededRequestAttributesType = {
|
|
858
|
+
firedAt: number;
|
|
859
|
+
duration: number;
|
|
860
|
+
gateway: boolean;
|
|
861
|
+
};
|
|
862
|
+
export type TeamProfileCardTriggeredRequestAttributesType = {
|
|
863
|
+
firedAt: number;
|
|
864
|
+
};
|
|
865
|
+
export type TeamProfileCardFailedRequestAttributesType = {
|
|
866
|
+
firedAt: number;
|
|
867
|
+
duration: number;
|
|
868
|
+
errorMessage: string;
|
|
869
|
+
errorStatusCode: number | null;
|
|
870
|
+
traceId: string | null;
|
|
871
|
+
errorCategory: string | null;
|
|
872
|
+
errorType: string | null;
|
|
873
|
+
errorPath: string | null;
|
|
874
|
+
errorNumber: number | null;
|
|
875
|
+
isSLOFailure: boolean;
|
|
876
|
+
gateway: boolean;
|
|
877
|
+
};
|
|
878
|
+
export type RovoAgentProfilecardSucceededRequestAttributesType = {
|
|
879
|
+
firedAt: number;
|
|
880
|
+
duration: number;
|
|
881
|
+
gateway: boolean;
|
|
882
|
+
};
|
|
883
|
+
export type RovoAgentProfilecardTriggeredRequestAttributesType = {
|
|
884
|
+
firedAt: number;
|
|
885
|
+
};
|
|
886
|
+
export type RovoAgentProfilecardFailedRequestAttributesType = {
|
|
887
|
+
firedAt: number;
|
|
888
|
+
duration: number;
|
|
889
|
+
errorMessage: string;
|
|
890
|
+
errorStatusCode: number | null;
|
|
891
|
+
traceId: string | null;
|
|
892
|
+
errorCategory: string | null;
|
|
893
|
+
errorType: string | null;
|
|
894
|
+
errorPath: string | null;
|
|
895
|
+
errorNumber: number | null;
|
|
896
|
+
isSLOFailure: boolean;
|
|
897
|
+
gateway: boolean;
|
|
898
|
+
};
|
|
899
|
+
export type RovoAgentProfilecardSucceededDeleteAgentAttributesType = {
|
|
900
|
+
firedAt: number;
|
|
901
|
+
duration: number;
|
|
902
|
+
gateway: boolean;
|
|
903
|
+
};
|
|
904
|
+
export type RovoAgentProfilecardFailedDeleteAgentAttributesType = {
|
|
905
|
+
firedAt: number;
|
|
906
|
+
duration: number;
|
|
907
|
+
errorMessage: string;
|
|
908
|
+
errorStatusCode: number | null;
|
|
909
|
+
traceId: string | null;
|
|
910
|
+
errorCategory: string | null;
|
|
911
|
+
errorType: string | null;
|
|
912
|
+
errorPath: string | null;
|
|
913
|
+
errorNumber: number | null;
|
|
914
|
+
isSLOFailure: boolean;
|
|
915
|
+
gateway: boolean;
|
|
916
|
+
};
|
|
917
|
+
export type RovoAgentProfilecardSucceededFavouriteAttributesType = {
|
|
918
|
+
firedAt: number;
|
|
919
|
+
duration: number;
|
|
920
|
+
gateway: boolean;
|
|
921
|
+
};
|
|
922
|
+
export type RovoAgentProfilecardTriggeredFavouriteAttributesType = {
|
|
923
|
+
firedAt: number;
|
|
924
|
+
};
|
|
925
|
+
export type RovoAgentProfilecardFailedFavouriteAttributesType = {
|
|
926
|
+
firedAt: number;
|
|
927
|
+
duration: number;
|
|
928
|
+
errorMessage: string;
|
|
929
|
+
errorStatusCode: number | null;
|
|
930
|
+
traceId: string | null;
|
|
931
|
+
errorCategory: string | null;
|
|
932
|
+
errorType: string | null;
|
|
933
|
+
errorPath: string | null;
|
|
934
|
+
errorNumber: number | null;
|
|
935
|
+
isSLOFailure: boolean;
|
|
936
|
+
gateway: boolean;
|
|
937
|
+
};
|
|
938
|
+
export type RovoAgentProfilecardSucceededUnfavouriteAttributesType = {
|
|
939
|
+
firedAt: number;
|
|
940
|
+
duration: number;
|
|
941
|
+
gateway: boolean;
|
|
942
|
+
};
|
|
943
|
+
export type RovoAgentProfilecardTriggeredUnfavouriteAttributesType = {
|
|
944
|
+
firedAt: number;
|
|
945
|
+
};
|
|
946
|
+
export type RovoAgentProfilecardFailedUnfavouriteAttributesType = {
|
|
947
|
+
firedAt: number;
|
|
948
|
+
duration: number;
|
|
949
|
+
errorMessage: string;
|
|
950
|
+
errorStatusCode: number | null;
|
|
951
|
+
traceId: string | null;
|
|
952
|
+
errorCategory: string | null;
|
|
953
|
+
errorType: string | null;
|
|
954
|
+
errorPath: string | null;
|
|
955
|
+
errorNumber: number | null;
|
|
956
|
+
isSLOFailure: boolean;
|
|
957
|
+
gateway: boolean;
|
|
958
|
+
};
|
|
959
|
+
export type RovoAgentProfilecardSucceededGetAgentPermissionsAttributesType = {
|
|
960
|
+
firedAt: number;
|
|
961
|
+
duration: number;
|
|
962
|
+
gateway: boolean;
|
|
963
|
+
};
|
|
964
|
+
export type RovoAgentProfilecardFailedGetAgentPermissionsAttributesType = {
|
|
965
|
+
firedAt: number;
|
|
966
|
+
duration: number;
|
|
967
|
+
errorMessage: string;
|
|
968
|
+
errorStatusCode: number | null;
|
|
969
|
+
traceId: string | null;
|
|
970
|
+
errorCategory: string | null;
|
|
971
|
+
errorType: string | null;
|
|
972
|
+
errorPath: string | null;
|
|
973
|
+
errorNumber: number | null;
|
|
974
|
+
isSLOFailure: boolean;
|
|
975
|
+
gateway: boolean;
|
|
976
|
+
};
|
|
977
|
+
export type ProfilecardClickedMoreActionsAttributesType = {
|
|
978
|
+
firedAt: number;
|
|
979
|
+
duration: number;
|
|
980
|
+
numActions: number;
|
|
981
|
+
};
|
|
738
982
|
export type AnalyticsEventAttributes = {
|
|
739
983
|
/**
|
|
740
984
|
* fired when the teams-app-internal-analytics example button is clicked */
|
|
@@ -1248,5 +1492,137 @@ export type AnalyticsEventAttributes = {
|
|
|
1248
1492
|
/**
|
|
1249
1493
|
* fired when a tab profile tab is selected */
|
|
1250
1494
|
'track.teamProfileTab.selected': TeamProfileTabSelectedAttributesType;
|
|
1495
|
+
/**
|
|
1496
|
+
* fired when the team connection item is clicked */
|
|
1497
|
+
'ui.teamConnectionItem.clicked.teamProfileCard': TeamConnectionItemClickedTeamProfileCardAttributesType;
|
|
1498
|
+
/**
|
|
1499
|
+
* fired when the view team profile button is clicked */
|
|
1500
|
+
'ui.button.clicked.viewTeamProfileButton': ButtonClickedViewTeamProfileButtonAttributesType;
|
|
1501
|
+
/**
|
|
1502
|
+
* fired when the profilecard is triggered */
|
|
1503
|
+
'ui.profilecard.triggered': ProfilecardTriggeredAttributesType;
|
|
1504
|
+
/**
|
|
1505
|
+
* fired when the rovo agent profilecard is triggered */
|
|
1506
|
+
'ui.rovoAgentProfilecard.triggered': RovoAgentProfilecardTriggeredAttributesType;
|
|
1507
|
+
/**
|
|
1508
|
+
* fired when the team profilecard is triggered */
|
|
1509
|
+
'ui.teamProfileCard.triggered': TeamProfileCardTriggeredAttributesType;
|
|
1510
|
+
/**
|
|
1511
|
+
* fired when an unknown profilecard is triggered */
|
|
1512
|
+
'ui.user.triggered': UserTriggeredAttributesType;
|
|
1513
|
+
/**
|
|
1514
|
+
* fired when the profilecard is rendered and is loading */
|
|
1515
|
+
'ui.profilecard.rendered.spinner': ProfilecardRenderedSpinnerAttributesType;
|
|
1516
|
+
/**
|
|
1517
|
+
* fired when the team profilecard is rendered and is loading */
|
|
1518
|
+
'ui.teamProfileCard.rendered.spinner': TeamProfileCardRenderedSpinnerAttributesType;
|
|
1519
|
+
/**
|
|
1520
|
+
* fired when the rovo agent profilecard is rendered and is loading */
|
|
1521
|
+
'ui.rovoAgentProfilecard.rendered.spinner': RovoAgentProfilecardRenderedSpinnerAttributesType;
|
|
1522
|
+
/**
|
|
1523
|
+
* fired when an unknown profilecard is rendered and is loading */
|
|
1524
|
+
'ui.user.rendered.spinner': UserRenderedSpinnerAttributesType;
|
|
1525
|
+
/**
|
|
1526
|
+
* fired when the profilecard is rendered and is error */
|
|
1527
|
+
'ui.profilecard.rendered.error': ProfilecardRenderedErrorAttributesType;
|
|
1528
|
+
/**
|
|
1529
|
+
* fired when the team profilecard is rendered and is error */
|
|
1530
|
+
'ui.teamProfileCard.rendered.error': TeamProfileCardRenderedErrorAttributesType;
|
|
1531
|
+
/**
|
|
1532
|
+
* fired when the profilecard is clicked */
|
|
1533
|
+
'ui.profilecard.clicked.action': ProfilecardClickedActionAttributesType;
|
|
1534
|
+
/**
|
|
1535
|
+
* fired when the profilecard is clicked */
|
|
1536
|
+
'ui.profilecard.clicked.reportingLines': ProfilecardClickedReportingLinesAttributesType;
|
|
1537
|
+
/**
|
|
1538
|
+
* fired when the profilecard is rendered and has content */
|
|
1539
|
+
'ui.profilecard.rendered.content': ProfilecardRenderedContentAttributesType;
|
|
1540
|
+
/**
|
|
1541
|
+
* fired when the profilecard is rendered and has content */
|
|
1542
|
+
'ui.rovoAgentProfilecard.rendered.content': RovoAgentProfilecardRenderedContentAttributesType;
|
|
1543
|
+
/**
|
|
1544
|
+
* fired when the team profilecard is rendered and has content */
|
|
1545
|
+
'ui.teamProfileCard.rendered.content': TeamProfileCardRenderedContentAttributesType;
|
|
1546
|
+
/**
|
|
1547
|
+
* fired when the delete agent button is clicked */
|
|
1548
|
+
'ui.button.clicked.deleteAgentButton': ButtonClickedDeleteAgentButtonAttributesType;
|
|
1549
|
+
/**
|
|
1550
|
+
* fired when the edit agent button is clicked */
|
|
1551
|
+
'ui.button.clicked.editAgentButton': ButtonClickedEditAgentButtonAttributesType;
|
|
1552
|
+
/**
|
|
1553
|
+
* fired when the copy agent link button is clicked */
|
|
1554
|
+
'ui.button.clicked.copyAgentLinkButton': ButtonClickedCopyAgentLinkButtonAttributesType;
|
|
1555
|
+
/**
|
|
1556
|
+
* fired when the duplicate agent button is clicked */
|
|
1557
|
+
'ui.button.clicked.duplicateAgentButton': ButtonClickedDuplicateAgentButtonAttributesType;
|
|
1558
|
+
/**
|
|
1559
|
+
* fired when the edit agent button is clicked */
|
|
1560
|
+
'ui.button.clicked.viewAgentFullProfileButton': ButtonClickedViewAgentFullProfileButtonAttributesType;
|
|
1561
|
+
/**
|
|
1562
|
+
* fired when the team profilecard is rendered and is error boundary */
|
|
1563
|
+
'ui.teamProfileCard.rendered.errorBoundary': TeamProfileCardRenderedErrorBoundaryAttributesType;
|
|
1564
|
+
/**
|
|
1565
|
+
* fired when the team profilecard is rendered and is error boundary */
|
|
1566
|
+
'ui.teamProfileCard.clicked.errorRetry': TeamProfileCardClickedErrorRetryAttributesType;
|
|
1567
|
+
/**
|
|
1568
|
+
* fired when the profilecard request is succeeded */
|
|
1569
|
+
'operational.profilecard.succeeded.request': ProfilecardSucceededRequestAttributesType;
|
|
1570
|
+
/**
|
|
1571
|
+
* fired when the profilecard request is triggered */
|
|
1572
|
+
'operational.profilecard.triggered.request': ProfilecardTriggeredRequestAttributesType;
|
|
1573
|
+
/**
|
|
1574
|
+
* fired when the profilecard request is failed */
|
|
1575
|
+
'operational.profilecard.failed.request': ProfilecardFailedRequestAttributesType;
|
|
1576
|
+
/**
|
|
1577
|
+
* fired when the team profilecard request is succeeded */
|
|
1578
|
+
'operational.teamProfileCard.succeeded.request': TeamProfileCardSucceededRequestAttributesType;
|
|
1579
|
+
/**
|
|
1580
|
+
* fired when the team profilecard request is triggered */
|
|
1581
|
+
'operational.teamProfileCard.triggered.request': TeamProfileCardTriggeredRequestAttributesType;
|
|
1582
|
+
/**
|
|
1583
|
+
* fired when the team profilecard request is failed */
|
|
1584
|
+
'operational.teamProfileCard.failed.request': TeamProfileCardFailedRequestAttributesType;
|
|
1585
|
+
/**
|
|
1586
|
+
* fired when the rovo agent profilecard request is succeeded */
|
|
1587
|
+
'operational.rovoAgentProfilecard.succeeded.request': RovoAgentProfilecardSucceededRequestAttributesType;
|
|
1588
|
+
/**
|
|
1589
|
+
* fired when the rovo agent profilecard request is triggered */
|
|
1590
|
+
'operational.rovoAgentProfilecard.triggered.request': RovoAgentProfilecardTriggeredRequestAttributesType;
|
|
1591
|
+
/**
|
|
1592
|
+
* fired when the rovo agent profilecard request is failed */
|
|
1593
|
+
'operational.rovoAgentProfilecard.failed.request': RovoAgentProfilecardFailedRequestAttributesType;
|
|
1594
|
+
/**
|
|
1595
|
+
* fired when the rovo agent profilecard deleteAgent is succeeded */
|
|
1596
|
+
'operational.rovoAgentProfilecard.succeeded.deleteAgent': RovoAgentProfilecardSucceededDeleteAgentAttributesType;
|
|
1597
|
+
/**
|
|
1598
|
+
* fired when the rovo agent profilecard deleteAgent is failed */
|
|
1599
|
+
'operational.rovoAgentProfilecard.failed.deleteAgent': RovoAgentProfilecardFailedDeleteAgentAttributesType;
|
|
1600
|
+
/**
|
|
1601
|
+
* fired when the rovo agent profilecard favourite is succeeded */
|
|
1602
|
+
'operational.rovoAgentProfilecard.succeeded.favourite': RovoAgentProfilecardSucceededFavouriteAttributesType;
|
|
1603
|
+
/**
|
|
1604
|
+
* fired when the rovo agent profilecard favourite is triggered */
|
|
1605
|
+
'operational.rovoAgentProfilecard.triggered.favourite': RovoAgentProfilecardTriggeredFavouriteAttributesType;
|
|
1606
|
+
/**
|
|
1607
|
+
* fired when the rovo agent profilecard favourite is failed */
|
|
1608
|
+
'operational.rovoAgentProfilecard.failed.favourite': RovoAgentProfilecardFailedFavouriteAttributesType;
|
|
1609
|
+
/**
|
|
1610
|
+
* fired when the rovo agent profilecard unfavourite is succeeded */
|
|
1611
|
+
'operational.rovoAgentProfilecard.succeeded.unfavourite': RovoAgentProfilecardSucceededUnfavouriteAttributesType;
|
|
1612
|
+
/**
|
|
1613
|
+
* fired when the rovo agent profilecard unfavourite is triggered */
|
|
1614
|
+
'operational.rovoAgentProfilecard.triggered.unfavourite': RovoAgentProfilecardTriggeredUnfavouriteAttributesType;
|
|
1615
|
+
/**
|
|
1616
|
+
* fired when the rovo agent profilecard unfavourite is failed */
|
|
1617
|
+
'operational.rovoAgentProfilecard.failed.unfavourite': RovoAgentProfilecardFailedUnfavouriteAttributesType;
|
|
1618
|
+
/**
|
|
1619
|
+
* fired when the rovo agent profilecard getAgentPermissions is succeeded */
|
|
1620
|
+
'operational.rovoAgentProfilecard.succeeded.getAgentPermissions': RovoAgentProfilecardSucceededGetAgentPermissionsAttributesType;
|
|
1621
|
+
/**
|
|
1622
|
+
* fired when the rovo agent profilecard getAgentPermissions is failed */
|
|
1623
|
+
'operational.rovoAgentProfilecard.failed.getAgentPermissions': RovoAgentProfilecardFailedGetAgentPermissionsAttributesType;
|
|
1624
|
+
/**
|
|
1625
|
+
* fired when the more actions is clicked */
|
|
1626
|
+
'ui.profilecard.clicked.moreActions': ProfilecardClickedMoreActionsAttributesType;
|
|
1251
1627
|
};
|
|
1252
1628
|
export type EventKey = keyof AnalyticsEventAttributes;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { TeamsAppAnalyticsContext } from './ui/analytics-context';
|
|
2
2
|
export { useAnalyticsEvents } from './common/utils/generated/use-analytics-events';
|
|
3
3
|
export type { AnalyticsEventAttributes } from './common/utils/generated/analytics.types';
|
|
4
|
+
export type { FireEventType } from './common/utils/types';
|
|
@@ -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::2d0914551b7a5bd52432cf172a7e879e>>
|
|
7
7
|
* @codegenCommand yarn workspace @atlassian/analytics-tooling run analytics:codegen teams-app-internal-analytics
|
|
8
8
|
*/
|
|
9
9
|
export type PackageMetaDataType = {
|
|
@@ -735,6 +735,250 @@ export type TeamProfileActivityTabViewedAttributesType = {
|
|
|
735
735
|
export type TeamProfileTabSelectedAttributesType = {
|
|
736
736
|
tabId: string;
|
|
737
737
|
};
|
|
738
|
+
export type TeamConnectionItemClickedTeamProfileCardAttributesType = {
|
|
739
|
+
container: 'ConfluenceSpace' | 'JiraProject' | 'LoomSpace' | 'WebLink';
|
|
740
|
+
};
|
|
741
|
+
export type ButtonClickedViewTeamProfileButtonAttributesType = {};
|
|
742
|
+
export type ProfilecardTriggeredAttributesType = {
|
|
743
|
+
firedAt: number;
|
|
744
|
+
method: 'hover' | 'click';
|
|
745
|
+
};
|
|
746
|
+
export type RovoAgentProfilecardTriggeredAttributesType = {
|
|
747
|
+
firedAt: number;
|
|
748
|
+
method: 'hover' | 'click';
|
|
749
|
+
};
|
|
750
|
+
export type TeamProfileCardTriggeredAttributesType = {
|
|
751
|
+
firedAt: number;
|
|
752
|
+
method: 'hover' | 'click';
|
|
753
|
+
teamId: string;
|
|
754
|
+
};
|
|
755
|
+
export type UserTriggeredAttributesType = {
|
|
756
|
+
firedAt: number;
|
|
757
|
+
method: 'hover' | 'click';
|
|
758
|
+
};
|
|
759
|
+
export type ProfilecardRenderedSpinnerAttributesType = {
|
|
760
|
+
firedAt: number;
|
|
761
|
+
};
|
|
762
|
+
export type TeamProfileCardRenderedSpinnerAttributesType = {
|
|
763
|
+
firedAt: number;
|
|
764
|
+
};
|
|
765
|
+
export type RovoAgentProfilecardRenderedSpinnerAttributesType = {
|
|
766
|
+
firedAt: number;
|
|
767
|
+
};
|
|
768
|
+
export type UserRenderedSpinnerAttributesType = {
|
|
769
|
+
firedAt: number;
|
|
770
|
+
};
|
|
771
|
+
export type ProfilecardRenderedErrorAttributesType = {
|
|
772
|
+
firedAt: number;
|
|
773
|
+
hasRetry: boolean;
|
|
774
|
+
errorType: 'default' | 'NotFound';
|
|
775
|
+
};
|
|
776
|
+
export type TeamProfileCardRenderedErrorAttributesType = {
|
|
777
|
+
firedAt: number;
|
|
778
|
+
duration: number;
|
|
779
|
+
};
|
|
780
|
+
export type ProfilecardClickedActionAttributesType = {
|
|
781
|
+
firedAt: number;
|
|
782
|
+
duration: number;
|
|
783
|
+
hasHref: boolean;
|
|
784
|
+
hasOnClick: boolean;
|
|
785
|
+
index: number;
|
|
786
|
+
actionId: string;
|
|
787
|
+
};
|
|
788
|
+
export type ProfilecardClickedReportingLinesAttributesType = {
|
|
789
|
+
firedAt: number;
|
|
790
|
+
duration: number;
|
|
791
|
+
userType: 'manager' | 'direct-report';
|
|
792
|
+
};
|
|
793
|
+
export type ProfilecardRenderedContentAttributesType = {
|
|
794
|
+
firedAt: number;
|
|
795
|
+
duration: number;
|
|
796
|
+
numActions: number;
|
|
797
|
+
};
|
|
798
|
+
export type RovoAgentProfilecardRenderedContentAttributesType = {
|
|
799
|
+
firedAt: number;
|
|
800
|
+
};
|
|
801
|
+
export type TeamProfileCardRenderedContentAttributesType = {
|
|
802
|
+
firedAt: number;
|
|
803
|
+
duration: number;
|
|
804
|
+
numActions: number;
|
|
805
|
+
memberCount: number | null;
|
|
806
|
+
includingYou: boolean | null;
|
|
807
|
+
descriptionLength: number;
|
|
808
|
+
titleLength: number;
|
|
809
|
+
};
|
|
810
|
+
export type ButtonClickedDeleteAgentButtonAttributesType = {
|
|
811
|
+
agentId: string;
|
|
812
|
+
source: string;
|
|
813
|
+
};
|
|
814
|
+
export type ButtonClickedEditAgentButtonAttributesType = {
|
|
815
|
+
agentId: string;
|
|
816
|
+
source: string;
|
|
817
|
+
};
|
|
818
|
+
export type ButtonClickedCopyAgentLinkButtonAttributesType = {
|
|
819
|
+
agentId: string;
|
|
820
|
+
source: string;
|
|
821
|
+
};
|
|
822
|
+
export type ButtonClickedDuplicateAgentButtonAttributesType = {
|
|
823
|
+
agentId: string;
|
|
824
|
+
source: string;
|
|
825
|
+
};
|
|
826
|
+
export type ButtonClickedViewAgentFullProfileButtonAttributesType = {
|
|
827
|
+
agentId: string;
|
|
828
|
+
source: string;
|
|
829
|
+
};
|
|
830
|
+
export type TeamProfileCardRenderedErrorBoundaryAttributesType = {
|
|
831
|
+
firedAt: number;
|
|
832
|
+
duration: number;
|
|
833
|
+
};
|
|
834
|
+
export type TeamProfileCardClickedErrorRetryAttributesType = {
|
|
835
|
+
firedAt: number;
|
|
836
|
+
duration: number;
|
|
837
|
+
};
|
|
838
|
+
export type ProfilecardSucceededRequestAttributesType = {
|
|
839
|
+
firedAt: number;
|
|
840
|
+
duration: number;
|
|
841
|
+
};
|
|
842
|
+
export type ProfilecardTriggeredRequestAttributesType = {
|
|
843
|
+
firedAt: number;
|
|
844
|
+
};
|
|
845
|
+
export type ProfilecardFailedRequestAttributesType = {
|
|
846
|
+
firedAt: number;
|
|
847
|
+
duration: number;
|
|
848
|
+
errorMessage: string;
|
|
849
|
+
errorStatusCode: number | null;
|
|
850
|
+
traceId: string | null;
|
|
851
|
+
errorCategory: string | null;
|
|
852
|
+
errorType: string | null;
|
|
853
|
+
errorPath: string | null;
|
|
854
|
+
errorNumber: number | null;
|
|
855
|
+
isSLOFailure: boolean;
|
|
856
|
+
};
|
|
857
|
+
export type TeamProfileCardSucceededRequestAttributesType = {
|
|
858
|
+
firedAt: number;
|
|
859
|
+
duration: number;
|
|
860
|
+
gateway: boolean;
|
|
861
|
+
};
|
|
862
|
+
export type TeamProfileCardTriggeredRequestAttributesType = {
|
|
863
|
+
firedAt: number;
|
|
864
|
+
};
|
|
865
|
+
export type TeamProfileCardFailedRequestAttributesType = {
|
|
866
|
+
firedAt: number;
|
|
867
|
+
duration: number;
|
|
868
|
+
errorMessage: string;
|
|
869
|
+
errorStatusCode: number | null;
|
|
870
|
+
traceId: string | null;
|
|
871
|
+
errorCategory: string | null;
|
|
872
|
+
errorType: string | null;
|
|
873
|
+
errorPath: string | null;
|
|
874
|
+
errorNumber: number | null;
|
|
875
|
+
isSLOFailure: boolean;
|
|
876
|
+
gateway: boolean;
|
|
877
|
+
};
|
|
878
|
+
export type RovoAgentProfilecardSucceededRequestAttributesType = {
|
|
879
|
+
firedAt: number;
|
|
880
|
+
duration: number;
|
|
881
|
+
gateway: boolean;
|
|
882
|
+
};
|
|
883
|
+
export type RovoAgentProfilecardTriggeredRequestAttributesType = {
|
|
884
|
+
firedAt: number;
|
|
885
|
+
};
|
|
886
|
+
export type RovoAgentProfilecardFailedRequestAttributesType = {
|
|
887
|
+
firedAt: number;
|
|
888
|
+
duration: number;
|
|
889
|
+
errorMessage: string;
|
|
890
|
+
errorStatusCode: number | null;
|
|
891
|
+
traceId: string | null;
|
|
892
|
+
errorCategory: string | null;
|
|
893
|
+
errorType: string | null;
|
|
894
|
+
errorPath: string | null;
|
|
895
|
+
errorNumber: number | null;
|
|
896
|
+
isSLOFailure: boolean;
|
|
897
|
+
gateway: boolean;
|
|
898
|
+
};
|
|
899
|
+
export type RovoAgentProfilecardSucceededDeleteAgentAttributesType = {
|
|
900
|
+
firedAt: number;
|
|
901
|
+
duration: number;
|
|
902
|
+
gateway: boolean;
|
|
903
|
+
};
|
|
904
|
+
export type RovoAgentProfilecardFailedDeleteAgentAttributesType = {
|
|
905
|
+
firedAt: number;
|
|
906
|
+
duration: number;
|
|
907
|
+
errorMessage: string;
|
|
908
|
+
errorStatusCode: number | null;
|
|
909
|
+
traceId: string | null;
|
|
910
|
+
errorCategory: string | null;
|
|
911
|
+
errorType: string | null;
|
|
912
|
+
errorPath: string | null;
|
|
913
|
+
errorNumber: number | null;
|
|
914
|
+
isSLOFailure: boolean;
|
|
915
|
+
gateway: boolean;
|
|
916
|
+
};
|
|
917
|
+
export type RovoAgentProfilecardSucceededFavouriteAttributesType = {
|
|
918
|
+
firedAt: number;
|
|
919
|
+
duration: number;
|
|
920
|
+
gateway: boolean;
|
|
921
|
+
};
|
|
922
|
+
export type RovoAgentProfilecardTriggeredFavouriteAttributesType = {
|
|
923
|
+
firedAt: number;
|
|
924
|
+
};
|
|
925
|
+
export type RovoAgentProfilecardFailedFavouriteAttributesType = {
|
|
926
|
+
firedAt: number;
|
|
927
|
+
duration: number;
|
|
928
|
+
errorMessage: string;
|
|
929
|
+
errorStatusCode: number | null;
|
|
930
|
+
traceId: string | null;
|
|
931
|
+
errorCategory: string | null;
|
|
932
|
+
errorType: string | null;
|
|
933
|
+
errorPath: string | null;
|
|
934
|
+
errorNumber: number | null;
|
|
935
|
+
isSLOFailure: boolean;
|
|
936
|
+
gateway: boolean;
|
|
937
|
+
};
|
|
938
|
+
export type RovoAgentProfilecardSucceededUnfavouriteAttributesType = {
|
|
939
|
+
firedAt: number;
|
|
940
|
+
duration: number;
|
|
941
|
+
gateway: boolean;
|
|
942
|
+
};
|
|
943
|
+
export type RovoAgentProfilecardTriggeredUnfavouriteAttributesType = {
|
|
944
|
+
firedAt: number;
|
|
945
|
+
};
|
|
946
|
+
export type RovoAgentProfilecardFailedUnfavouriteAttributesType = {
|
|
947
|
+
firedAt: number;
|
|
948
|
+
duration: number;
|
|
949
|
+
errorMessage: string;
|
|
950
|
+
errorStatusCode: number | null;
|
|
951
|
+
traceId: string | null;
|
|
952
|
+
errorCategory: string | null;
|
|
953
|
+
errorType: string | null;
|
|
954
|
+
errorPath: string | null;
|
|
955
|
+
errorNumber: number | null;
|
|
956
|
+
isSLOFailure: boolean;
|
|
957
|
+
gateway: boolean;
|
|
958
|
+
};
|
|
959
|
+
export type RovoAgentProfilecardSucceededGetAgentPermissionsAttributesType = {
|
|
960
|
+
firedAt: number;
|
|
961
|
+
duration: number;
|
|
962
|
+
gateway: boolean;
|
|
963
|
+
};
|
|
964
|
+
export type RovoAgentProfilecardFailedGetAgentPermissionsAttributesType = {
|
|
965
|
+
firedAt: number;
|
|
966
|
+
duration: number;
|
|
967
|
+
errorMessage: string;
|
|
968
|
+
errorStatusCode: number | null;
|
|
969
|
+
traceId: string | null;
|
|
970
|
+
errorCategory: string | null;
|
|
971
|
+
errorType: string | null;
|
|
972
|
+
errorPath: string | null;
|
|
973
|
+
errorNumber: number | null;
|
|
974
|
+
isSLOFailure: boolean;
|
|
975
|
+
gateway: boolean;
|
|
976
|
+
};
|
|
977
|
+
export type ProfilecardClickedMoreActionsAttributesType = {
|
|
978
|
+
firedAt: number;
|
|
979
|
+
duration: number;
|
|
980
|
+
numActions: number;
|
|
981
|
+
};
|
|
738
982
|
export type AnalyticsEventAttributes = {
|
|
739
983
|
/**
|
|
740
984
|
* fired when the teams-app-internal-analytics example button is clicked */
|
|
@@ -1248,5 +1492,137 @@ export type AnalyticsEventAttributes = {
|
|
|
1248
1492
|
/**
|
|
1249
1493
|
* fired when a tab profile tab is selected */
|
|
1250
1494
|
'track.teamProfileTab.selected': TeamProfileTabSelectedAttributesType;
|
|
1495
|
+
/**
|
|
1496
|
+
* fired when the team connection item is clicked */
|
|
1497
|
+
'ui.teamConnectionItem.clicked.teamProfileCard': TeamConnectionItemClickedTeamProfileCardAttributesType;
|
|
1498
|
+
/**
|
|
1499
|
+
* fired when the view team profile button is clicked */
|
|
1500
|
+
'ui.button.clicked.viewTeamProfileButton': ButtonClickedViewTeamProfileButtonAttributesType;
|
|
1501
|
+
/**
|
|
1502
|
+
* fired when the profilecard is triggered */
|
|
1503
|
+
'ui.profilecard.triggered': ProfilecardTriggeredAttributesType;
|
|
1504
|
+
/**
|
|
1505
|
+
* fired when the rovo agent profilecard is triggered */
|
|
1506
|
+
'ui.rovoAgentProfilecard.triggered': RovoAgentProfilecardTriggeredAttributesType;
|
|
1507
|
+
/**
|
|
1508
|
+
* fired when the team profilecard is triggered */
|
|
1509
|
+
'ui.teamProfileCard.triggered': TeamProfileCardTriggeredAttributesType;
|
|
1510
|
+
/**
|
|
1511
|
+
* fired when an unknown profilecard is triggered */
|
|
1512
|
+
'ui.user.triggered': UserTriggeredAttributesType;
|
|
1513
|
+
/**
|
|
1514
|
+
* fired when the profilecard is rendered and is loading */
|
|
1515
|
+
'ui.profilecard.rendered.spinner': ProfilecardRenderedSpinnerAttributesType;
|
|
1516
|
+
/**
|
|
1517
|
+
* fired when the team profilecard is rendered and is loading */
|
|
1518
|
+
'ui.teamProfileCard.rendered.spinner': TeamProfileCardRenderedSpinnerAttributesType;
|
|
1519
|
+
/**
|
|
1520
|
+
* fired when the rovo agent profilecard is rendered and is loading */
|
|
1521
|
+
'ui.rovoAgentProfilecard.rendered.spinner': RovoAgentProfilecardRenderedSpinnerAttributesType;
|
|
1522
|
+
/**
|
|
1523
|
+
* fired when an unknown profilecard is rendered and is loading */
|
|
1524
|
+
'ui.user.rendered.spinner': UserRenderedSpinnerAttributesType;
|
|
1525
|
+
/**
|
|
1526
|
+
* fired when the profilecard is rendered and is error */
|
|
1527
|
+
'ui.profilecard.rendered.error': ProfilecardRenderedErrorAttributesType;
|
|
1528
|
+
/**
|
|
1529
|
+
* fired when the team profilecard is rendered and is error */
|
|
1530
|
+
'ui.teamProfileCard.rendered.error': TeamProfileCardRenderedErrorAttributesType;
|
|
1531
|
+
/**
|
|
1532
|
+
* fired when the profilecard is clicked */
|
|
1533
|
+
'ui.profilecard.clicked.action': ProfilecardClickedActionAttributesType;
|
|
1534
|
+
/**
|
|
1535
|
+
* fired when the profilecard is clicked */
|
|
1536
|
+
'ui.profilecard.clicked.reportingLines': ProfilecardClickedReportingLinesAttributesType;
|
|
1537
|
+
/**
|
|
1538
|
+
* fired when the profilecard is rendered and has content */
|
|
1539
|
+
'ui.profilecard.rendered.content': ProfilecardRenderedContentAttributesType;
|
|
1540
|
+
/**
|
|
1541
|
+
* fired when the profilecard is rendered and has content */
|
|
1542
|
+
'ui.rovoAgentProfilecard.rendered.content': RovoAgentProfilecardRenderedContentAttributesType;
|
|
1543
|
+
/**
|
|
1544
|
+
* fired when the team profilecard is rendered and has content */
|
|
1545
|
+
'ui.teamProfileCard.rendered.content': TeamProfileCardRenderedContentAttributesType;
|
|
1546
|
+
/**
|
|
1547
|
+
* fired when the delete agent button is clicked */
|
|
1548
|
+
'ui.button.clicked.deleteAgentButton': ButtonClickedDeleteAgentButtonAttributesType;
|
|
1549
|
+
/**
|
|
1550
|
+
* fired when the edit agent button is clicked */
|
|
1551
|
+
'ui.button.clicked.editAgentButton': ButtonClickedEditAgentButtonAttributesType;
|
|
1552
|
+
/**
|
|
1553
|
+
* fired when the copy agent link button is clicked */
|
|
1554
|
+
'ui.button.clicked.copyAgentLinkButton': ButtonClickedCopyAgentLinkButtonAttributesType;
|
|
1555
|
+
/**
|
|
1556
|
+
* fired when the duplicate agent button is clicked */
|
|
1557
|
+
'ui.button.clicked.duplicateAgentButton': ButtonClickedDuplicateAgentButtonAttributesType;
|
|
1558
|
+
/**
|
|
1559
|
+
* fired when the edit agent button is clicked */
|
|
1560
|
+
'ui.button.clicked.viewAgentFullProfileButton': ButtonClickedViewAgentFullProfileButtonAttributesType;
|
|
1561
|
+
/**
|
|
1562
|
+
* fired when the team profilecard is rendered and is error boundary */
|
|
1563
|
+
'ui.teamProfileCard.rendered.errorBoundary': TeamProfileCardRenderedErrorBoundaryAttributesType;
|
|
1564
|
+
/**
|
|
1565
|
+
* fired when the team profilecard is rendered and is error boundary */
|
|
1566
|
+
'ui.teamProfileCard.clicked.errorRetry': TeamProfileCardClickedErrorRetryAttributesType;
|
|
1567
|
+
/**
|
|
1568
|
+
* fired when the profilecard request is succeeded */
|
|
1569
|
+
'operational.profilecard.succeeded.request': ProfilecardSucceededRequestAttributesType;
|
|
1570
|
+
/**
|
|
1571
|
+
* fired when the profilecard request is triggered */
|
|
1572
|
+
'operational.profilecard.triggered.request': ProfilecardTriggeredRequestAttributesType;
|
|
1573
|
+
/**
|
|
1574
|
+
* fired when the profilecard request is failed */
|
|
1575
|
+
'operational.profilecard.failed.request': ProfilecardFailedRequestAttributesType;
|
|
1576
|
+
/**
|
|
1577
|
+
* fired when the team profilecard request is succeeded */
|
|
1578
|
+
'operational.teamProfileCard.succeeded.request': TeamProfileCardSucceededRequestAttributesType;
|
|
1579
|
+
/**
|
|
1580
|
+
* fired when the team profilecard request is triggered */
|
|
1581
|
+
'operational.teamProfileCard.triggered.request': TeamProfileCardTriggeredRequestAttributesType;
|
|
1582
|
+
/**
|
|
1583
|
+
* fired when the team profilecard request is failed */
|
|
1584
|
+
'operational.teamProfileCard.failed.request': TeamProfileCardFailedRequestAttributesType;
|
|
1585
|
+
/**
|
|
1586
|
+
* fired when the rovo agent profilecard request is succeeded */
|
|
1587
|
+
'operational.rovoAgentProfilecard.succeeded.request': RovoAgentProfilecardSucceededRequestAttributesType;
|
|
1588
|
+
/**
|
|
1589
|
+
* fired when the rovo agent profilecard request is triggered */
|
|
1590
|
+
'operational.rovoAgentProfilecard.triggered.request': RovoAgentProfilecardTriggeredRequestAttributesType;
|
|
1591
|
+
/**
|
|
1592
|
+
* fired when the rovo agent profilecard request is failed */
|
|
1593
|
+
'operational.rovoAgentProfilecard.failed.request': RovoAgentProfilecardFailedRequestAttributesType;
|
|
1594
|
+
/**
|
|
1595
|
+
* fired when the rovo agent profilecard deleteAgent is succeeded */
|
|
1596
|
+
'operational.rovoAgentProfilecard.succeeded.deleteAgent': RovoAgentProfilecardSucceededDeleteAgentAttributesType;
|
|
1597
|
+
/**
|
|
1598
|
+
* fired when the rovo agent profilecard deleteAgent is failed */
|
|
1599
|
+
'operational.rovoAgentProfilecard.failed.deleteAgent': RovoAgentProfilecardFailedDeleteAgentAttributesType;
|
|
1600
|
+
/**
|
|
1601
|
+
* fired when the rovo agent profilecard favourite is succeeded */
|
|
1602
|
+
'operational.rovoAgentProfilecard.succeeded.favourite': RovoAgentProfilecardSucceededFavouriteAttributesType;
|
|
1603
|
+
/**
|
|
1604
|
+
* fired when the rovo agent profilecard favourite is triggered */
|
|
1605
|
+
'operational.rovoAgentProfilecard.triggered.favourite': RovoAgentProfilecardTriggeredFavouriteAttributesType;
|
|
1606
|
+
/**
|
|
1607
|
+
* fired when the rovo agent profilecard favourite is failed */
|
|
1608
|
+
'operational.rovoAgentProfilecard.failed.favourite': RovoAgentProfilecardFailedFavouriteAttributesType;
|
|
1609
|
+
/**
|
|
1610
|
+
* fired when the rovo agent profilecard unfavourite is succeeded */
|
|
1611
|
+
'operational.rovoAgentProfilecard.succeeded.unfavourite': RovoAgentProfilecardSucceededUnfavouriteAttributesType;
|
|
1612
|
+
/**
|
|
1613
|
+
* fired when the rovo agent profilecard unfavourite is triggered */
|
|
1614
|
+
'operational.rovoAgentProfilecard.triggered.unfavourite': RovoAgentProfilecardTriggeredUnfavouriteAttributesType;
|
|
1615
|
+
/**
|
|
1616
|
+
* fired when the rovo agent profilecard unfavourite is failed */
|
|
1617
|
+
'operational.rovoAgentProfilecard.failed.unfavourite': RovoAgentProfilecardFailedUnfavouriteAttributesType;
|
|
1618
|
+
/**
|
|
1619
|
+
* fired when the rovo agent profilecard getAgentPermissions is succeeded */
|
|
1620
|
+
'operational.rovoAgentProfilecard.succeeded.getAgentPermissions': RovoAgentProfilecardSucceededGetAgentPermissionsAttributesType;
|
|
1621
|
+
/**
|
|
1622
|
+
* fired when the rovo agent profilecard getAgentPermissions is failed */
|
|
1623
|
+
'operational.rovoAgentProfilecard.failed.getAgentPermissions': RovoAgentProfilecardFailedGetAgentPermissionsAttributesType;
|
|
1624
|
+
/**
|
|
1625
|
+
* fired when the more actions is clicked */
|
|
1626
|
+
'ui.profilecard.clicked.moreActions': ProfilecardClickedMoreActionsAttributesType;
|
|
1251
1627
|
};
|
|
1252
1628
|
export type EventKey = keyof AnalyticsEventAttributes;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { TeamsAppAnalyticsContext } from './ui/analytics-context';
|
|
2
2
|
export { useAnalyticsEvents } from './common/utils/generated/use-analytics-events';
|
|
3
3
|
export type { AnalyticsEventAttributes } from './common/utils/generated/analytics.types';
|
|
4
|
+
export type { FireEventType } from './common/utils/types';
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"name": "@atlaskit/teams-app-internal-analytics",
|
|
91
|
-
"version": "1.
|
|
91
|
+
"version": "1.6.0",
|
|
92
92
|
"description": "A package used by the teams app and platform packages to handle people and teams analytics",
|
|
93
93
|
"author": "Atlassian Pty Ltd",
|
|
94
94
|
"license": "Apache-2.0",
|