@atlaskit/profilecard 22.0.0 → 22.0.2

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 22.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#108339](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108339)
8
+ [`b629c99c2cb05`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b629c99c2cb05) -
9
+ Updated gql query to use gql tags
10
+
11
+ ## 22.0.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 22.0.0
4
18
 
5
19
  ### Major Changes
@@ -12,13 +12,18 @@ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime
12
12
  var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
13
13
  var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
14
14
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
15
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
16
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
17
+ var _graphql = require("graphql");
18
+ var _graphqlTag = _interopRequireDefault(require("graphql-tag"));
19
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
16
20
  var _analytics = require("../util/analytics");
17
21
  var _date = require("../util/date");
18
22
  var _performance = require("../util/performance");
19
23
  var _CachingClient2 = _interopRequireDefault(require("./CachingClient"));
20
24
  var _errorUtils = require("./errorUtils");
21
25
  var _graphqlUtils = require("./graphqlUtils");
26
+ var _templateObject;
22
27
  function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
23
28
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
24
29
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
@@ -53,9 +58,11 @@ var modifyResponse = exports.modifyResponse = function modifyResponse(response)
53
58
  accountType: data.accountType || undefined
54
59
  };
55
60
  };
61
+ var aggUserQuery = (0, _graphqlTag.default)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n\tquery user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n\t\t\t\tappType\n\t\t\t}\n\t\t}\n\t}\n"])));
62
+ var aggUserQueryString = "query user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n \t\t\tappType\n \t\t}\n\t\t}\n\t}";
56
63
  var buildAggUserQuery = exports.buildAggUserQuery = function buildAggUserQuery(userId) {
57
64
  return {
58
- query: "query user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n \t\t\tappType\n \t\t}\n\t\t}\n\t}",
65
+ query: (0, _platformFeatureFlags.fg)('platform_agg_user_query_doc_change') ? (0, _graphql.print)(aggUserQuery) : aggUserQueryString,
59
66
  variables: {
60
67
  userId: userId
61
68
  }
@@ -21,12 +21,12 @@ function isIgnoredError(error) {
21
21
  }
22
22
  return false;
23
23
  }
24
- var getErrorAttributes = exports.getErrorAttributes = function getErrorAttributes(error) {
24
+ var _getErrorAttributes = exports.getErrorAttributes = function getErrorAttributes(error) {
25
25
  if (error instanceof _errors.DirectoryGraphQLErrors) {
26
26
  return {
27
27
  errorMessage: error.message,
28
28
  errorCount: error.errors.length,
29
- errorDetails: error.errors.map(getErrorAttributes),
29
+ errorDetails: error.errors.map(_getErrorAttributes),
30
30
  isSLOFailure: !error.errors.every(isIgnoredError),
31
31
  traceId: error.traceId
32
32
  };
@@ -43,7 +43,7 @@ var getErrorAttributes = exports.getErrorAttributes = function getErrorAttribute
43
43
  return {
44
44
  errorMessage: error.message,
45
45
  errorCount: error.errors.length,
46
- errorDetails: error.errors.map(getErrorAttributes),
46
+ errorDetails: error.errors.map(_getErrorAttributes),
47
47
  isSLOFailure: !error.errors.every(isIgnoredError),
48
48
  traceId: error.traceId
49
49
  };
@@ -61,7 +61,7 @@ var getErrorAttributes = exports.getErrorAttributes = function getErrorAttribute
61
61
  if (error.hasOwnProperty('cause')) {
62
62
  var causeError = error.cause;
63
63
  if (causeError instanceof _errors.DirectoryGraphQLErrors || causeError instanceof _errors.AGGErrors) {
64
- return getErrorAttributes(causeError);
64
+ return _getErrorAttributes(causeError);
65
65
  }
66
66
  }
67
67
  return {
@@ -11,7 +11,7 @@ var _graphqlUtils = require("./graphqlUtils");
11
11
  var ORG_ID_FROM_CLOUD_ID_QUERY = "query OrgIdFromCloudId($cloudId: ID!) {\n\ttenantContexts(cloudIds: [$cloudId]) {\n\t\torgId\n\t}\n}";
12
12
  var addHeaders = function addHeaders(headers) {
13
13
  headers.append('atl-client-name', "@atlaskit/profilecard");
14
- headers.append('atl-client-version', "22.0.0");
14
+ headers.append('atl-client-version', "22.0.2");
15
15
  return headers;
16
16
  };
17
17
  function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -66,7 +66,7 @@ var addHeaders = exports.addHeaders = function addHeaders(headers) {
66
66
  headers.append('X-ExperimentalApi', 'teams-beta');
67
67
  headers.append('X-ExperimentalApi', 'team-members-beta');
68
68
  headers.append('atl-client-name', "@atlaskit/profilecard");
69
- headers.append('atl-client-version', "22.0.0");
69
+ headers.append('atl-client-version', "22.0.2");
70
70
  return headers;
71
71
  };
72
72
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -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: "22.0.0"
48
+ packageVersion: "22.0.2"
49
49
  }, attributes), {}, {
50
50
  firedAt: Math.round((0, _performance.getPageTime)())
51
51
  })
@@ -1,3 +1,6 @@
1
+ import { print } from 'graphql';
2
+ import gql from 'graphql-tag';
3
+ import { fg } from '@atlaskit/platform-feature-flags';
1
4
  import { userRequestAnalytics } from '../util/analytics';
2
5
  import { localTime } from '../util/date';
3
6
  import { getPageTime } from '../util/performance';
@@ -37,8 +40,37 @@ export const modifyResponse = response => {
37
40
  accountType: data.accountType || undefined
38
41
  };
39
42
  };
40
- export const buildAggUserQuery = userId => ({
41
- query: `query user($userId: ID!) {
43
+ const aggUserQuery = gql`
44
+ query user($userId: ID!) {
45
+ user(accountId: $userId) {
46
+ id
47
+ name
48
+ picture
49
+ accountStatus
50
+ __typename
51
+ ... on AtlassianAccountUser {
52
+ email
53
+ nickname
54
+ zoneinfo
55
+ extendedProfile {
56
+ jobTitle
57
+ organization
58
+ location
59
+ closedDate
60
+ inactiveDate
61
+ }
62
+ }
63
+ ... on CustomerUser {
64
+ email
65
+ zoneinfo
66
+ }
67
+ ... on AppUser {
68
+ appType
69
+ }
70
+ }
71
+ }
72
+ `;
73
+ const aggUserQueryString = `query user($userId: ID!) {
42
74
  user(accountId: $userId) {
43
75
  id
44
76
  name
@@ -65,7 +97,9 @@ export const buildAggUserQuery = userId => ({
65
97
  appType
66
98
  }
67
99
  }
68
- }`,
100
+ }`;
101
+ export const buildAggUserQuery = userId => ({
102
+ query: fg('platform_agg_user_query_doc_change') ? print(aggUserQuery) : aggUserQueryString,
69
103
  variables: {
70
104
  userId
71
105
  }
@@ -6,7 +6,7 @@ const ORG_ID_FROM_CLOUD_ID_QUERY = `query OrgIdFromCloudId($cloudId: ID!) {
6
6
  }`;
7
7
  const addHeaders = headers => {
8
8
  headers.append('atl-client-name', "@atlaskit/profilecard");
9
- headers.append('atl-client-version', "22.0.0");
9
+ headers.append('atl-client-version', "22.0.2");
10
10
  return headers;
11
11
  };
12
12
  export async function getOrgIdForCloudIdFromAGG(url, cloudId) {
@@ -75,7 +75,7 @@ export const addHeaders = headers => {
75
75
  headers.append('X-ExperimentalApi', 'teams-beta');
76
76
  headers.append('X-ExperimentalApi', 'team-members-beta');
77
77
  headers.append('atl-client-name', "@atlaskit/profilecard");
78
- headers.append('atl-client-version', "22.0.0");
78
+ headers.append('atl-client-version', "22.0.2");
79
79
  return headers;
80
80
  };
81
81
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -32,7 +32,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
32
32
  actionSubjectId,
33
33
  attributes: {
34
34
  packageName: "@atlaskit/profilecard",
35
- packageVersion: "22.0.0",
35
+ packageVersion: "22.0.2",
36
36
  ...attributes,
37
37
  firedAt: Math.round(getPageTime())
38
38
  }
@@ -4,12 +4,17 @@ import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstruct
4
4
  import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
5
5
  import _inherits from "@babel/runtime/helpers/inherits";
6
6
  import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
7
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
7
8
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
9
+ var _templateObject;
8
10
  function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
9
11
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
10
12
  import _regeneratorRuntime from "@babel/runtime/regenerator";
11
13
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
12
14
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
15
+ import { print } from 'graphql';
16
+ import gql from 'graphql-tag';
17
+ import { fg } from '@atlaskit/platform-feature-flags';
13
18
  import { userRequestAnalytics } from '../util/analytics';
14
19
  import { localTime } from '../util/date';
15
20
  import { getPageTime } from '../util/performance';
@@ -47,9 +52,11 @@ export var modifyResponse = function modifyResponse(response) {
47
52
  accountType: data.accountType || undefined
48
53
  };
49
54
  };
55
+ var aggUserQuery = gql(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\tquery user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n\t\t\t\tappType\n\t\t\t}\n\t\t}\n\t}\n"])));
56
+ var aggUserQueryString = "query user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n \t\t\tappType\n \t\t}\n\t\t}\n\t}";
50
57
  export var buildAggUserQuery = function buildAggUserQuery(userId) {
51
58
  return {
52
- query: "query user($userId: ID!) {\n\t\tuser(accountId: $userId) {\n\t\t\tid\n\t\t\tname\n\t\t\tpicture\n\t\t\taccountStatus\n\t\t\t__typename\n\t\t\t... on AtlassianAccountUser {\n\t\t\t\temail\n\t\t\t\tnickname\n\t\t\t\tzoneinfo\n\t\t\t\textendedProfile {\n\t\t\t\t\tjobTitle\n\t\t\t\t\torganization\n\t\t\t\t\tlocation\n\t\t\t\t\tclosedDate\n\t\t\t\t\tinactiveDate\n\t\t\t\t}\n\t\t\t}\n\t\t\t... on CustomerUser {\n\t\t\t\temail\n\t\t\t\tzoneinfo\n\t\t\t}\n\t\t\t... on AppUser {\n \t\t\tappType\n \t\t}\n\t\t}\n\t}",
59
+ query: fg('platform_agg_user_query_doc_change') ? print(aggUserQuery) : aggUserQueryString,
53
60
  variables: {
54
61
  userId: userId
55
62
  }
@@ -15,12 +15,12 @@ function isIgnoredError(error) {
15
15
  }
16
16
  return false;
17
17
  }
18
- export var getErrorAttributes = function getErrorAttributes(error) {
18
+ var _getErrorAttributes = function getErrorAttributes(error) {
19
19
  if (error instanceof DirectoryGraphQLErrors) {
20
20
  return {
21
21
  errorMessage: error.message,
22
22
  errorCount: error.errors.length,
23
- errorDetails: error.errors.map(getErrorAttributes),
23
+ errorDetails: error.errors.map(_getErrorAttributes),
24
24
  isSLOFailure: !error.errors.every(isIgnoredError),
25
25
  traceId: error.traceId
26
26
  };
@@ -37,7 +37,7 @@ export var getErrorAttributes = function getErrorAttributes(error) {
37
37
  return {
38
38
  errorMessage: error.message,
39
39
  errorCount: error.errors.length,
40
- errorDetails: error.errors.map(getErrorAttributes),
40
+ errorDetails: error.errors.map(_getErrorAttributes),
41
41
  isSLOFailure: !error.errors.every(isIgnoredError),
42
42
  traceId: error.traceId
43
43
  };
@@ -55,7 +55,7 @@ export var getErrorAttributes = function getErrorAttributes(error) {
55
55
  if (error.hasOwnProperty('cause')) {
56
56
  var causeError = error.cause;
57
57
  if (causeError instanceof DirectoryGraphQLErrors || causeError instanceof AGGErrors) {
58
- return getErrorAttributes(causeError);
58
+ return _getErrorAttributes(causeError);
59
59
  }
60
60
  }
61
61
  return {
@@ -75,6 +75,7 @@ export var getErrorAttributes = function getErrorAttributes(error) {
75
75
  isSLOFailure: true
76
76
  };
77
77
  };
78
+ export { _getErrorAttributes as getErrorAttributes };
78
79
  export var handleDirectoryGraphQLErrors = function handleDirectoryGraphQLErrors(errors, traceId) {
79
80
  throw new DirectoryGraphQLErrors(errors, traceId);
80
81
  };
@@ -4,7 +4,7 @@ import { AGGQuery } from './graphqlUtils';
4
4
  var ORG_ID_FROM_CLOUD_ID_QUERY = "query OrgIdFromCloudId($cloudId: ID!) {\n\ttenantContexts(cloudIds: [$cloudId]) {\n\t\torgId\n\t}\n}";
5
5
  var addHeaders = function addHeaders(headers) {
6
6
  headers.append('atl-client-name', "@atlaskit/profilecard");
7
- headers.append('atl-client-version', "22.0.0");
7
+ headers.append('atl-client-version', "22.0.2");
8
8
  return headers;
9
9
  };
10
10
  export function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -57,7 +57,7 @@ export var addHeaders = function addHeaders(headers) {
57
57
  headers.append('X-ExperimentalApi', 'teams-beta');
58
58
  headers.append('X-ExperimentalApi', 'team-members-beta');
59
59
  headers.append('atl-client-name', "@atlaskit/profilecard");
60
- headers.append('atl-client-version', "22.0.0");
60
+ headers.append('atl-client-version', "22.0.2");
61
61
  return headers;
62
62
  };
63
63
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -39,7 +39,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
39
39
  actionSubjectId: actionSubjectId,
40
40
  attributes: _objectSpread(_objectSpread({
41
41
  packageName: "@atlaskit/profilecard",
42
- packageVersion: "22.0.0"
42
+ packageVersion: "22.0.2"
43
43
  }, attributes), {}, {
44
44
  firedAt: Math.round(getPageTime())
45
45
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "22.0.0",
3
+ "version": "22.0.2",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -59,12 +59,12 @@
59
59
  "@atlaskit/empty-state": "^8.2.0",
60
60
  "@atlaskit/focus-ring": "^2.1.0",
61
61
  "@atlaskit/give-kudos": "^3.1.0",
62
- "@atlaskit/icon": "^23.5.0",
62
+ "@atlaskit/icon": "^23.6.0",
63
63
  "@atlaskit/lozenge": "^11.13.0",
64
64
  "@atlaskit/menu": "^2.14.0",
65
65
  "@atlaskit/modal-dialog": "^12.20.0",
66
66
  "@atlaskit/people-teams-ui-public": "^2.1.0",
67
- "@atlaskit/platform-feature-flags": "^0.3.0",
67
+ "@atlaskit/platform-feature-flags": "^1.0.0",
68
68
  "@atlaskit/popup": "^1.31.0",
69
69
  "@atlaskit/primitives": "^13.4.0",
70
70
  "@atlaskit/rovo-agent-components": "^1.17.0",
@@ -78,6 +78,8 @@
78
78
  "@emotion/styled": "^11.0.0",
79
79
  "date-fns": "^2.17.0",
80
80
  "date-fns-tz": "^2.0.0",
81
+ "graphql": "^15.8.0",
82
+ "graphql-tag": "^2.10.1",
81
83
  "lodash": "^4.17.21",
82
84
  "lru_map": "^0.4.1",
83
85
  "react-intl-next": "npm:react-intl@^5.18.1"
@@ -128,6 +130,9 @@
128
130
  "enable_ptc_townsquare_reporting_lines_unsharded": {
129
131
  "type": "boolean"
130
132
  },
133
+ "platform_agg_user_query_doc_change": {
134
+ "type": "boolean"
135
+ },
131
136
  "rovo_use_agent_permissions": {
132
137
  "type": "boolean"
133
138
  },