@atlaskit/profilecard 16.6.0 → 16.6.1
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 +6 -0
- package/dist/cjs/client/TeamCentralCardClient.js +1 -1
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/client/TeamCentralCardClient.js +1 -1
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/client/TeamCentralCardClient.js +1 -1
- package/dist/esm/util/analytics.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/client/TeamCentralCardClient.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -43,7 +43,7 @@ var buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey,
|
|
|
43
43
|
query: "\n query isFeatureKeyEnabled($featureKey: String!, $context: [IsFeatureEnabledContextInput]) {\n isFeatureEnabled(featureKey: $featureKey, context: $context) {\n enabled\n }\n }\n ",
|
|
44
44
|
variables: {
|
|
45
45
|
featureKey: featureKey,
|
|
46
|
-
context: context
|
|
46
|
+
context: context || []
|
|
47
47
|
}
|
|
48
48
|
};
|
|
49
49
|
};
|
|
@@ -56,7 +56,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
56
56
|
actionSubjectId: actionSubjectId,
|
|
57
57
|
attributes: _objectSpread(_objectSpread({
|
|
58
58
|
packageName: "@atlaskit/profilecard",
|
|
59
|
-
packageVersion: "16.6.
|
|
59
|
+
packageVersion: "16.6.1"
|
|
60
60
|
}, attributes), {}, {
|
|
61
61
|
firedAt: (0, _performance.getPageTime)()
|
|
62
62
|
})
|
package/dist/cjs/version.json
CHANGED
|
@@ -35,7 +35,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
|
|
|
35
35
|
actionSubjectId,
|
|
36
36
|
attributes: {
|
|
37
37
|
packageName: "@atlaskit/profilecard",
|
|
38
|
-
packageVersion: "16.6.
|
|
38
|
+
packageVersion: "16.6.1",
|
|
39
39
|
...attributes,
|
|
40
40
|
firedAt: getPageTime()
|
|
41
41
|
}
|
package/dist/es2019/version.json
CHANGED
|
@@ -27,7 +27,7 @@ var buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey,
|
|
|
27
27
|
query: "\n query isFeatureKeyEnabled($featureKey: String!, $context: [IsFeatureEnabledContextInput]) {\n isFeatureEnabled(featureKey: $featureKey, context: $context) {\n enabled\n }\n }\n ",
|
|
28
28
|
variables: {
|
|
29
29
|
featureKey: featureKey,
|
|
30
|
-
context: context
|
|
30
|
+
context: context || []
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
33
|
};
|
|
@@ -45,7 +45,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
45
45
|
actionSubjectId: actionSubjectId,
|
|
46
46
|
attributes: _objectSpread(_objectSpread({
|
|
47
47
|
packageName: "@atlaskit/profilecard",
|
|
48
|
-
packageVersion: "16.6.
|
|
48
|
+
packageVersion: "16.6.1"
|
|
49
49
|
}, attributes), {}, {
|
|
50
50
|
firedAt: getPageTime()
|
|
51
51
|
})
|
package/dist/esm/version.json
CHANGED
|
@@ -20,7 +20,7 @@ declare class TeamCentralCardClient extends CachingClient<TeamCentralReportingLi
|
|
|
20
20
|
bypassOnFailure: boolean;
|
|
21
21
|
featureFlagKeys: Map<string, boolean>;
|
|
22
22
|
constructor(options: TeamCentralCardClientOptions);
|
|
23
|
-
makeFeatureFlagCheckRequest(featureKey: string, context
|
|
23
|
+
makeFeatureFlagCheckRequest(featureKey: string, context?: FeatureFlagExtraContext[]): Promise<boolean>;
|
|
24
24
|
makeRequest(userId: string): Promise<TeamCentralReportingLinesData>;
|
|
25
25
|
getReportingLines(userId: string): Promise<TeamCentralReportingLinesData>;
|
|
26
26
|
getFlagEnabled(featureKey: string, productIdentifier?: string): Promise<boolean>;
|