@hero-design/snowflake-guard 1.0.8 → 1.0.10

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/.env.example CHANGED
@@ -4,4 +4,6 @@ PRIVATE_KEY=
4
4
  WEBHOOK_SECRET=
5
5
  GITHUB_CLIENT_ID=
6
6
  GITHUB_CLIENT_SECRET=
7
- EH_BOT_GITHUB_TOKEN=
7
+ DB_HOST=
8
+ SNOWFLAKE_GUARD_SECRET=
9
+ PORT=4000
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @hero-design/snowflake-guard
2
2
 
3
+ ## 1.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3203](https://github.com/Thinkei/hero-design/pull/3203) [`10ec34f0d`](https://github.com/Thinkei/hero-design/commit/10ec34f0da0ff4709cbd881d6c14179e44cfa707) Thanks [@haudao-eh](https://github.com/haudao-eh)! - Use Github status check to replace PR review
8
+
9
+ ## 1.0.9
10
+
11
+ ### Patch Changes
12
+
13
+ - [#3199](https://github.com/Thinkei/hero-design/pull/3199) [`29786f5dd`](https://github.com/Thinkei/hero-design/commit/29786f5ddb80a019b5c062f1ef974165ff3b405c) Thanks [@haudao-eh](https://github.com/haudao-eh)! - Only approve when it has requested changes
14
+
3
15
  ## 1.0.8
4
16
 
5
17
  ### Patch Changes
package/app.yml CHANGED
@@ -13,7 +13,7 @@
13
13
  # The list of events the GitHub App subscribes to.
14
14
  # Uncomment the event names below to enable them.
15
15
  default_events:
16
- # - check_run
16
+ - check_run
17
17
  # - check_suite
18
18
  # - commit_comment
19
19
  # - create
@@ -58,7 +58,7 @@ default_permissions:
58
58
 
59
59
  # Checks on code.
60
60
  # https://developer.github.com/v3/apps/permissions/#permission-on-checks
61
- # checks: read
61
+ checks: write
62
62
 
63
63
  # Repository contents, commits, branches, downloads, releases, and merges.
64
64
  # https://developer.github.com/v3/apps/permissions/#permission-on-contents
@@ -36,7 +36,7 @@ describe('parseSource', () => {
36
36
  styleLocs: [54, 47, 49, 50, 51, 52, 53],
37
37
  sxLocs: [63, 58, 59, 60, 61, 62],
38
38
  styledComponentLocs: [6, 10, 15],
39
- approvedLocs: [55],
39
+ approvedLocs: [55, 65, 64],
40
40
  });
41
41
  });
42
42
  });
package/lib/src/index.js CHANGED
@@ -11,8 +11,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
13
  };
14
- const probot_1 = require("probot");
15
14
  const parseSource_1 = __importDefault(require("./parseSource"));
15
+ const constants_1 = require("./reports/constants");
16
16
  const fetchGraphql_1 = __importDefault(require("./graphql/fetchGraphql"));
17
17
  const queryGenerators_1 = require("./graphql/queryGenerators");
18
18
  const TSX_REGEX = /\.tsx$/;
@@ -22,7 +22,7 @@ const SNOWFLAKE_COMMENTS = {
22
22
  style: 'Snowflake detected! A component is customized using inline styles. Make sure to not use [prohibited CSS properties](https://docs.google.com/spreadsheets/d/1Dj8vqLdFaf-CSaSVoYqyYZIkGqF6OoyP7K4G1_9L62U/edit?usp=sharing).',
23
23
  sx: 'Snowflake detected! A component is customized via sx prop. Make sure to not use [prohibited CSS properties](https://docs.google.com/spreadsheets/d/1Dj8vqLdFaf-CSaSVoYqyYZIkGqF6OoyP7K4G1_9L62U/edit?usp=sharing).',
24
24
  'styled-component': 'Please do not use styled-component to customize this component, use sx prop or inline style instead.',
25
- className: 'Please make sure that this className is not used as a CSS classname for component customization purposes, use sx prop or inline style instead.',
25
+ className: `Please make sure that this className is not used as a CSS classname for component customization purposes, use sx prop or inline style instead. In case this is none-css classname, please flag it with this comment \`${constants_1.APPROVED_CLASSNAME_COMMENT}\`.`,
26
26
  };
27
27
  const getDiffLocs = (diffStrs) => {
28
28
  const locs = [];
@@ -66,10 +66,7 @@ module.exports = (app) => {
66
66
  // Get file contents
67
67
  const prFileContentPromises = tsxFiles.map((file) => context.octokit.repos.getContent(Object.assign(Object.assign({}, repoInfo), { path: file.filename, ref: prBranch })));
68
68
  const prFileContents = yield Promise.all(prFileContentPromises);
69
- const styleComments = [];
70
- const sxComments = [];
71
- const styledComponentComments = [];
72
- const classNameComments = [];
69
+ const snowflakeComments = [];
73
70
  const approvedSnowflakeLocs = [];
74
71
  prFileContents.forEach((file) => __awaiter(void 0, void 0, void 0, function* () {
75
72
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
@@ -84,7 +81,7 @@ module.exports = (app) => {
84
81
  const snowflakeReport = (0, parseSource_1.default)(stringContent);
85
82
  snowflakeReport.styleLocs.forEach((loc) => {
86
83
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
87
- styleComments.push({
84
+ snowflakeComments.push({
88
85
  path: filePath,
89
86
  body: SNOWFLAKE_COMMENTS['style'],
90
87
  line: loc,
@@ -93,7 +90,7 @@ module.exports = (app) => {
93
90
  });
94
91
  snowflakeReport.sxLocs.forEach((loc) => {
95
92
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
96
- sxComments.push({
93
+ snowflakeComments.push({
97
94
  path: filePath,
98
95
  body: SNOWFLAKE_COMMENTS['sx'],
99
96
  line: loc,
@@ -102,7 +99,7 @@ module.exports = (app) => {
102
99
  });
103
100
  snowflakeReport.styledComponentLocs.forEach((loc) => {
104
101
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
105
- styledComponentComments.push({
102
+ snowflakeComments.push({
106
103
  path: filePath,
107
104
  body: SNOWFLAKE_COMMENTS['styled-component'],
108
105
  line: loc,
@@ -111,7 +108,7 @@ module.exports = (app) => {
111
108
  });
112
109
  snowflakeReport.classNameLocs.forEach((loc) => {
113
110
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
114
- classNameComments.push({
111
+ snowflakeComments.push({
115
112
  path: filePath,
116
113
  body: SNOWFLAKE_COMMENTS['className'],
117
114
  line: loc,
@@ -124,14 +121,8 @@ module.exports = (app) => {
124
121
  }
125
122
  });
126
123
  }));
127
- const personalOctokit = new probot_1.ProbotOctokit({
128
- auth: { token: process.env.EH_BOT_GITHUB_TOKEN },
129
- });
130
124
  // Saving report
131
- const snowflakeCount = styleComments.length +
132
- sxComments.length +
133
- styledComponentComments.length +
134
- classNameComments.length;
125
+ const snowflakeCount = snowflakeComments.length;
135
126
  const report = (yield (0, fetchGraphql_1.default)((0, queryGenerators_1.generateFetchReportQuery)({ repoName: repoInfo.repo, prNumber })));
136
127
  const reportData = (_a = report.data) === null || _a === void 0 ? void 0 : _a.fetchHdSnowflakeGuardReport;
137
128
  if (reportData) {
@@ -151,25 +142,14 @@ module.exports = (app) => {
151
142
  approvedCount: approvedSnowflakeLocs.length,
152
143
  }));
153
144
  }
154
- // No snowflakes detected or only potential snowflakes using classname
155
- if (styleComments.length === 0 &&
156
- sxComments.length === 0 &&
157
- styledComponentComments.length === 0) {
158
- const reviewBody = classNameComments.length > 0
159
- ? {
160
- body: '[WARNING] Potential snowflakes detected in this PR using classnames. Please review the following comments.',
161
- comments: classNameComments,
162
- }
163
- : {
164
- body: 'No snowflakes detected in this PR.',
165
- };
166
- return personalOctokit.pulls.createReview(Object.assign(Object.assign(Object.assign({}, repoInfo), { pull_number: prNumber, commit_id: context.payload.pull_request.head.sha, event: 'APPROVE' }), reviewBody));
145
+ // No snowflakes detected
146
+ // Create success check-run
147
+ if (snowflakeCount === 0) {
148
+ return context.octokit.checks.create(Object.assign(Object.assign({}, repoInfo), { name: 'SnowflakeGuard/Check', head_sha: context.payload.pull_request.head.sha, status: 'completed', conclusion: 'success' }));
167
149
  }
168
- return personalOctokit.pulls.createReview(Object.assign(Object.assign({}, repoInfo), { pull_number: prNumber, commit_id: context.payload.pull_request.head.sha, event: 'REQUEST_CHANGES', body: 'Snowflake Guard Bot has detected some snowflakes in this PR. Please review the following comments.', comments: [
169
- ...styleComments,
170
- ...sxComments,
171
- ...styledComponentComments,
172
- ...classNameComments,
173
- ] }));
150
+ // Snowflakes detected
151
+ // Create failed check-run & comment
152
+ yield context.octokit.checks.create(Object.assign(Object.assign({}, repoInfo), { name: 'SnowflakeGuard/Check', head_sha: context.payload.pull_request.head.sha, status: 'completed', conclusion: 'failure' }));
153
+ return context.octokit.pulls.createReview(Object.assign(Object.assign({}, repoInfo), { pull_number: prNumber, commit_id: context.payload.pull_request.head.sha, event: 'COMMENT', body: 'Snowflake Guard Bot has detected some snowflakes in this PR. Please review the following comments.', comments: snowflakeComments }));
174
154
  }));
175
155
  };
@@ -41,6 +41,7 @@ const parseSource = (source) => {
41
41
  let styleLocs = [];
42
42
  let sxLocs = [];
43
43
  const approvedCmtLocs = [];
44
+ const approvedClassnameLocs = [];
44
45
  const ast = recast.parse(source, { parser: tsParser });
45
46
  recast.visit(ast, {
46
47
  visitImportDeclaration(path) {
@@ -76,15 +77,19 @@ const parseSource = (source) => {
76
77
  if (comment.toLowerCase().includes(constants_1.APPROVED_COMMENT.toLowerCase())) {
77
78
  approvedCmtLocs.push(path.value.loc.start.line);
78
79
  }
80
+ if (comment.toLowerCase().includes(constants_1.APPROVED_CLASSNAME_COMMENT.toLowerCase())) {
81
+ approvedClassnameLocs.push(path.value.loc.start.line);
82
+ }
79
83
  },
80
84
  });
81
85
  const isNotApprovedSnowflakes = (loc) => !approvedCmtLocs.includes(loc);
86
+ const isNotApprovedClassnameSnowflakes = (loc) => !approvedClassnameLocs.includes(loc);
82
87
  if (hasHeroDesignImport) {
83
88
  // Case 1: Using className to customise components
84
89
  // Case 2: Using style object to customise components
85
90
  // Case 3: Using sx object to customise components
86
91
  const customPropLocs = (0, reportCustomStyleProperties_1.default)(ast, componentList);
87
- classNameLocs = customPropLocs.className.filter(isNotApprovedSnowflakes);
92
+ classNameLocs = customPropLocs.className.filter((loc) => isNotApprovedSnowflakes(loc) && isNotApprovedClassnameSnowflakes(loc));
88
93
  styleLocs = customPropLocs.style.filter(isNotApprovedSnowflakes);
89
94
  sxLocs = customPropLocs.sx.filter(isNotApprovedSnowflakes);
90
95
  // Case 4: Using styled-components to customise components
@@ -97,7 +102,7 @@ const parseSource = (source) => {
97
102
  styleLocs,
98
103
  sxLocs,
99
104
  styledComponentLocs,
100
- approvedLocs: approvedCmtLocs,
105
+ approvedLocs: [...approvedCmtLocs, ...approvedClassnameLocs],
101
106
  };
102
107
  };
103
108
  exports.default = parseSource;
@@ -212,4 +212,5 @@ declare const SX_RULESET_MAP: {
212
212
  };
213
213
  declare const HD_COMPONENTS: readonly ["Alert", "Badge", "Banner", "Breadcrumb", "Button", "Card", "Carousel", "Chart", "Checkbox", "Collapse", "Comment", "ContextPanel", "DatePicker", "Divider", "Dropdown", "Empty", "File", "Filters", "Form", "Grid", "Icon", "InPageNavigation", "Input", "MediaQuery", "Menu", "Modal", "Notification", "PageHeader", "Pagination", "Portal", "Portlet", "Progress", "Radio", "Rate", "Result", "Select", "SelectButton", "SideBar", "Slider", "Spinner", "Statistic", "Steps", "Switch", "Table", "Tabs", "Tag", "TagInput", "TimePicker", "Timeline", "Tooltip", "Typography", "Widget"];
214
214
  declare const APPROVED_COMMENT = "@snowflake-guard/snowflake-approved-by-andromeda";
215
- export { HD_COMPONENTS, RULESET_MAP, SX_RULESET_MAP, APPROVED_COMMENT };
215
+ declare const APPROVED_CLASSNAME_COMMENT = "@snowflake-guard/none-css-classname";
216
+ export { HD_COMPONENTS, RULESET_MAP, SX_RULESET_MAP, APPROVED_COMMENT, APPROVED_CLASSNAME_COMMENT, };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.APPROVED_COMMENT = exports.SX_RULESET_MAP = exports.RULESET_MAP = exports.HD_COMPONENTS = void 0;
3
+ exports.APPROVED_CLASSNAME_COMMENT = exports.APPROVED_COMMENT = exports.SX_RULESET_MAP = exports.RULESET_MAP = exports.HD_COMPONENTS = void 0;
4
4
  const PADDING_ATTRS = [
5
5
  'padding',
6
6
  'paddingTop',
@@ -846,3 +846,5 @@ const HD_COMPONENTS = [
846
846
  exports.HD_COMPONENTS = HD_COMPONENTS;
847
847
  const APPROVED_COMMENT = '@snowflake-guard/snowflake-approved-by-andromeda';
848
848
  exports.APPROVED_COMMENT = APPROVED_COMMENT;
849
+ const APPROVED_CLASSNAME_COMMENT = '@snowflake-guard/none-css-classname';
850
+ exports.APPROVED_CLASSNAME_COMMENT = APPROVED_CLASSNAME_COMMENT;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es6.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../../../node_modules/@types/pino/node_modules/sonic-boom/types/index.d.ts","../../../node_modules/pino-std-serializers/index.d.ts","../../../node_modules/pino-pretty/index.d.ts","../../../node_modules/@types/pino/index.d.ts","../../../node_modules/@octokit/types/dist-types/RequestMethod.d.ts","../../../node_modules/@octokit/types/dist-types/Url.d.ts","../../../node_modules/@octokit/types/dist-types/Fetch.d.ts","../../../node_modules/@octokit/types/dist-types/Signal.d.ts","../../../node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts","../../../node_modules/@octokit/types/dist-types/RequestHeaders.d.ts","../../../node_modules/@octokit/types/dist-types/RequestParameters.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointOptions.d.ts","../../../node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts","../../../node_modules/@octokit/types/dist-types/OctokitResponse.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts","../../../node_modules/@octokit/types/dist-types/RequestOptions.d.ts","../../../node_modules/@octokit/types/dist-types/Route.d.ts","../../../node_modules/@octokit/types/node_modules/@octokit/openapi-types/types.d.ts","../../../node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointInterface.d.ts","../../../node_modules/@octokit/types/dist-types/RequestInterface.d.ts","../../../node_modules/@octokit/types/dist-types/AuthInterface.d.ts","../../../node_modules/@octokit/types/dist-types/RequestError.d.ts","../../../node_modules/@octokit/types/dist-types/StrategyInterface.d.ts","../../../node_modules/@octokit/types/dist-types/VERSION.d.ts","../../../node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts","../../../node_modules/@octokit/types/dist-types/index.d.ts","../../../node_modules/@octokit/request-error/dist-types/types.d.ts","../../../node_modules/@octokit/request-error/dist-types/index.d.ts","../../../node_modules/@octokit/webhooks-types/schema.d.ts","../../../node_modules/@octokit/webhooks/dist-types/createLogger.d.ts","../../../node_modules/@octokit/webhooks/dist-types/generated/webhook-names.d.ts","../../../node_modules/@octokit/webhooks/dist-types/types.d.ts","../../../node_modules/@octokit/webhooks/dist-types/event-handler/index.d.ts","../../../node_modules/@octokit/webhooks/dist-types/middleware/node/types.d.ts","../../../node_modules/@octokit/webhooks/dist-types/middleware/node/index.d.ts","../../../node_modules/@octokit/webhooks/dist-types/index.d.ts","../../../node_modules/deepmerge/index.d.ts","../../../node_modules/before-after-hook/index.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/request/dist-types/index.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/types.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/error.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/index.d.ts","../../../node_modules/@octokit/core/dist-types/types.d.ts","../../../node_modules/@octokit/core/dist-types/index.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/generated/paginating-endpoints.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/types.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/compose-paginate.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/paginating-endpoints.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/index.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/types.d.ts","../../../node_modules/@probot/octokit-plugin-config/dist-types/types.d.ts","../../../node_modules/probot/lib/octokit/probot-octokit.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/probot/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/probot/node_modules/@types/express/index.d.ts","../../../node_modules/@types/ioredis/index.d.ts","../../../node_modules/@types/pino-http/index.d.ts","../../../node_modules/probot/lib/types.d.ts","../../../node_modules/probot/lib/context.d.ts","../../../node_modules/probot/lib/probot.d.ts","../../../node_modules/probot/lib/server/server.d.ts","../../../node_modules/probot/lib/run.d.ts","../../../node_modules/probot/lib/create-node-middleware.d.ts","../../../node_modules/probot/lib/create-probot.d.ts","../../../node_modules/probot/lib/index.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/namedTypes.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/kinds.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/builders.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/types.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/path.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/visitor.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/main.d.ts","../../../node_modules/recast/lib/options.d.ts","../../../node_modules/recast/lib/parser.d.ts","../../../node_modules/recast/lib/printer.d.ts","../../../node_modules/recast/main.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/recast/parsers/_babel_options.d.ts","../src/parsers/typescript.ts","../src/reports/reportClassName.ts","../src/reports/constants.ts","../src/reports/types.ts","../src/reports/reportInlineStyle.ts","../src/reports/reportCustomStyleProperties.ts","../src/reports/reportStyledComponents.ts","../src/parseSource.ts","../src/graphql/fetchGraphql.ts","../src/graphql/queryGenerators.ts","../src/graphql/types.ts","../src/index.ts","../src/__tests__/parseSource.spec.ts","../src/graphql/__tests__/fetchGrapql.spec.ts","../src/graphql/__tests__/queryGenerators.spec.ts","../../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../../node_modules/@types/aws-lambda/handler.d.ts","../../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../../node_modules/@types/aws-lambda/trigger/codecommit.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../../node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts","../../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../../node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts","../../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../../node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts","../../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../../node_modules/@types/aws-lambda/index.d.ts","../../../node_modules/@probot/adapter-aws-lambda-serverless/index.d.ts","../netlify/functions/snowflake.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"b6a4a51bc749ad882c33d98563ff5a94716ca884bfde949a8c97bad530e4ee2c","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","c9e6ea53a25729dbb5b5bb6960db4387df2f8e88add9cbf36b6ff590481134f9","3e95e6310d49db6d575ac6c2896c02761426aa5aab0b18169f971151c709b770","7eb0662b995994db248290a0f0a1d8ed685991a162ff9eb4dee36f099cccd0d9","bea5c9fc0843a6961411ab4a04df856a8372448bc0d180da0c3a054ff31044b8","715873cecbfcebb49f293f0521bd0955d6298486e2eeb9c7bbf5e9f20a6ed152","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"6c7b9d2139abd8f2e83ed8fa018c3799ab3187755a6665621feb6e93d3429ac3","affectsGlobalScope":true},"a019c9782ea4e21c83881c780cebce8ad86e3f78122619336eacbd87e47fe674","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","5899ab1898582115c432cccef063298f75477bf2cebe5473360043fddd67bcc6","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"c874bfffe38a94b129077eaba4e26575972d545d5d04cd64e90c02d2c029ead6","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"4ee9304173804c2c6dff4fcb8ad900619a4078b30d37f7e455236836e8e87a45","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","cdaaf046791d7d588f28f32197c5d6acc43343e62540a67eed194c9c20535fdc","4b1ff655bd8edd879dd4f04f15338ce0109f58ccb424165d44fa07e7ea39c4bf",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","24b8c93eb91a64a6fbb877a295cfac4c10aa4660599970c954a99d33697534a3","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"ca619678b887ae262316673b55bb358c517593d3b6b96c1271972716c699da32","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"d1ef1d8516286380fd0a6f498f1650d374a8cb5f03d91633b6124e4fb8fb131d","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","2641e5e19268b6f5038ad48a6e2598965301df8a77c48c99d8df760a6a154204",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","172f31b538f6e3f70c2d001d665d5a46c4b043f707ba822b4d906d59bd9c229d","4fe80f12b1d5189384a219095c2eabadbb389c2d3703aae7c5376dbaa56061df","877f45a462a235fb899bc00e0bedbf94349730a4e4dd3eac174257c66880a84d","685fbeeffdff5e703820a6328ef0c7b693d398bf8d061e1050e20344f8ddf47a","54160aaec4f72e2045e7341301c096344b9e5162a1e48333a531117af5938713","3f0d8705992ebf25221e0d3f72d496bbcebacb47c2b6ee90f4de66d760ee9152","af628c57e9826fbe767ae6afbffa7b197405a8c53ba6197bb32e806d35c1ca8f","76b87f8b5d13712d3fc53a231be1664c4071186120624f2ae1b5bf3db6c7b502","2c7742afcffed27fef8e373c7939f20b64b8783d37e737bba2b3e0d70899ee2c","a9cdd476c9e36aa3bf4212f4337254f2f2676506aabb6f7d8f6db50490d25c33","52c0780e990d8d2ef666d618a303bca67a5e968dbaa4e4eaaad4e415a7217fd1","80a16135e14ed2540f9687f4fb5daee3a4249126272a5a922a5a21ee3b7048c3","7f7aa3e938180da966143e16c4686c7eb2ab8d0f762f038648e1cc6577e1d52e","6e9413bf8a3ce70c3b7db79a29de97281576b731de079d0853f1de499304fbb3","f6aef032da1a16fa155757a6ee8a79c749e579a378d9ba54256d1cefc753d475","5f9c212f98b4df7d638dd9a8125c5e828acbf9710586cd8027e41e4e55819a37","2c574466b0d7ded0bfedaea3660d8f008cefa06db748d79274b4aaea46564763","caa881dd5d50ad64aab709ecf06219874cbc23045e46630bdcdc7c4c32892965","ae07438e2c832c3fb33b98bf3894e460fe71a590b65e6dc55d5a5e1a32062066","7e122724e79d97fc601b9517da07dacf9e8162f5d78ad5740b349e2065ded611","3c9c80b328558dde371257f1dec7ee2f26004c3497b3e302b94fc415b01c0190","3455a4c5f5feefa1f7062e4d8b00837e1edf7922b10cb50769b4ed3c5e37437f","74fd4b09963df6d2a1c94b653199c48d5a578164517a7ae27ff86771662f6764","6a6752f432019855ae0c882f1dd5b6ca11d4da35f2279e7efaa98caec41588af","569c4482357560c490a62d200409d3bedf92efa43bd2e2d728be1daa6d4140ab","7a50f76e773ead4a34b5308879130da83192040ef6dafc5f18570ff6ad2bda61","70f53130d4dcf2f25b58eba7bb7ab4dd80994ad7dab46b37e60cd13a70761fd4","6d575187149a38a8d06d986e6d8111aad796785dd57847672f01ba07987c8e3d","24a1a5007809de3b55b5f86ae8dac8a71f262d508595a04d8de76f692cd127b0","cdeea24d217b06f597246c215af7c8488a8cc963b26aeab3f30fdbc04c3638c7","32684eca94b76799df29ff777e9425062456489d4d80405f4ac5d769ac1dbb7d","b708fc2911456eb3065f831c8e152a24ec42e8b2ec260b1772e6976039616ef0","16739082244f59e0856fae2410fdc9d38eddce8ad6424dc5d4223ca59e4a7ec2","189ba8368e43627d18bb88c99de5982ac347e5911f5d89851a3c43f8b6e14569","4f10472206bfa7bed6ccad0775423dfb19daff28b7ac32ace3b72d3721596eef","7984964df543f9092f501c17ddf6e705a41b3fcfa17708716e0dfdeaf4b15087","092f926dc9f141977dc163cb0a4bd8df28d1def1a3091f30af42ea702db98fc1","f163b1edf76fbde01836f8522fbe646fe2f55e313bb7fdd363891748f9b57c60","f4fc6f33af72add3d409feae7e6eb6fd48dd05a7fda785a832addafa4c7ce8a7","758e92a92871b11a9aede1787106be4764ae6a32f6c76bb29f072bfa28d9f69a","5c291d7429bff327ce5502221f1d2fea64277760793324e7419892e3af29dd63","126eb12a1d90e542ab5c67389bf04063eb0a6102450903a4e9a660fb1b1d2abe","a513bf738f28c66621a4c2c577d72f37b74175df5c645dc6df6befdd6b090044","8e7ed96554279194f78c20d966ed1517aaa27dcfb60d23e5d36a51e07daeb823","63db3f21f835af9dfa90829a54ba11a5f34c9fb9f73a235d603d5705c126f7bb","5a0e97850ab7f500be1fae2c73135e8722011dbe325352405da40e5694c2105a","bbb47b581e8e5495c1754b066202d24f762fd7fccfe1fcc443aec07c992cc229","0940279b6cdfb51032bd6bb0b02c3a4ac2b0a73e380d6c48bf8b503d0de08350","06ae8b7ddac3aff63085a4c6384557b36ef61075aa6c5173fdf3834b19a702d6","b5b49a989ba1e33c2d84afe92eb47029b57df7c14a226468ca0b34c65f995a91","95eb6d75484e2d939a90fde29d6f8d44f7b60e95383b0b2fbe509312b96a5927","7acba69bb1e26caff186d177f681eab25b4b10284c2d19d6368d48f999f1857f","c523378d3aa12273db8ccda1879bc645b76161b32bde7060c7381af113879312","d0bda71c912cccf24d8774ed6bee6e19bb997022d1cd2e875169c3edd2647a74","b5421e0f77d815a6cef21c15a820d08959be4e79d465f42856c3c9c35600ac66","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a",{"version":"50072f976cfa86af1a3044f55cd729d992abe39222d2f6cdf929266c77a42b0b","affectsGlobalScope":true},"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","be00321090ed100e3bd1e566c0408004137e73feb19d6380eba57d68519ff6c5","90e7d6685ccdde9fbd813aff4b998c1d41204512a9a26998d611d7da665a4a44","b89a51fec964dfd1ce9d7ca0399bdaa415cc106dbce3a0081d7c8fb6035e5213","89ac227fcc00596dddb43b2c3f6d43707e62a998d043d63ce83e5b6a032c6ef6","5f0a41bd45c707df7721bffeb54e3445b0356d1d2dcc132c3dbadd68b68f3c0c","34b4cdb7eec8647ae6deb505a3c04e1c06310f68cb94bbb3ea033805dcd2c513","c8065e48aa118c1a6f0b003f53139992700438188549947f54619e8c95733744","a94a6f6aa721b13bf191faf387e3867f0b7fb63bce1dccd87a2aefeedeb986f9","cd75d46c18ea1b72aef4a46d0345a8e9e55b37cc78725e949787b240e74eed8c","606ec8b7eaaf1d2a1aa015fddcc7d711e7db777cc30b38f7cfe9d2d80ed629e1","0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","07c50b6db67b8b943aed3e410bfeebfb6d3ba1fd1e2819bc889e48f81e94ed2d","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","923c136dcbf20f140c369078a7eb56f6697889d104397d694f70e21dd08b1810","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","923c136dcbf20f140c369078a7eb56f6697889d104397d694f70e21dd08b1810","96c23535f4f9dd15beb767e070559ea672f6a35f103152836a67100605136a96","68708f52470e53b6a96cdaf9f7cd5117c6aa4bc6ccbeab1d6e4f7e317318482e",{"version":"7dd0b381a26e858399db5d05b161633f68573210eba08de008827af2d66d0771","signature":"c98980b1795d9700814bffe0dfb15e7e71b28a6eca8d48b1392e26443557897b"},{"version":"82b0c28a768a9e30f5eaff7f4ea3e8df44f8df1dab1de791cd6025c2273b54fc","signature":"67c425c9dd47ace291ca621c736ac011931f5a1c5134bd8d8865a7dc47414c52"},{"version":"0aa2ada6481c4767d689e2b63af5f96c88b5df9343d6fb4bfe6047d5b4863487","signature":"b78466d1d8814283adb83523e496da2288683068fdb2876a6cea89caa6365c47"},{"version":"c5569283752502d4577545135f7d98b63cf5b9543ff2fe8a5ae63c1d34f1b2cb","signature":"b6420bcdbf4888a544dcd721ebac0aa357fa3a6e262dec9da189c105f23082ef"},{"version":"f0c595d9f6260b4d7fb0d64a760efebbf1def9832e48ac9a8a9983fafdf47245","signature":"e9b654b42bfab8bbf2a0b09b29fcc48a2025baafb2c3de8862c658f551f40ccb"},{"version":"1ea45b495fd489176ea0a644ecda5903f77df7118b37e6d933b92cbdae5f94a3","signature":"4f94845e97c2ba80789184df3e8568d524836f59e87f561860b13b41b19079b5"},{"version":"2381ab938523a13aa940f9775cb0595c8dd3931be7fa5f6b510d4843e0ee8a0c","signature":"1bce9a7853785749760d0299b09e02e8476a42a2d67a72d13eeb525313eccc1e"},{"version":"d487c162740d167d4879cbf4753531cb0f558d12955c2f12d95e213fe0c36def","signature":"b4cad15061424ae9d81c58602d1ee0177e12512aa09afd92c5d7c9471994eb50"},{"version":"f79301533e4f61e5cb09d3028e7c8db4ccf3149a2e3c6c66a007ac484d3560fa","signature":"223e7601abd4ddcf145d3baef621b402782dfe3d689dd5bd67518ec16519b554"},{"version":"ee99d1328ee18fe9392f15f159d6056998007509eb4bc49aae83eb204da509c7","signature":"46fe4082873f42e577f6a58346f9da3e3d357805a05325664a050b89e18c31fa"},{"version":"f27a80c9e1a8af20b32b753bddc1defe8774d7f42ddd43778628c80c7760d026","signature":"9622fbb941c5512f3073b872cdb381f748d86c704c9faaffa2ba35cac35e0fbe"},{"version":"be877caa006e0aa676c8f164127f7a0b4b331bcfd7e3db3151cb1d1b5a261c49","signature":"ccf7f6f3c6b6b7d73f342c059e2c418655522e107417319639e1391492d28167"},{"version":"bad52611d661c11873e1e10225891a794205be90d66fe3c16732675646fa2407","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9c440d9fb88b0b2857a2ae4b2f055fe5322cd44a710a2e9cf6c66fb17946d469","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"eb6dfe687c453baa6fe385cc2cc596322baba81afdaa192abf448a348b71b744","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"78ef0198c323d0f7b16f993ada3459f0e7e20567e7f56fe0c5ee78f31cb0840c","88533ff507514078998ea6e02390b4a7934bcff52fe9b8389e06037af8619cb2","5ec614ed82e045de15417a47e2568be5310d43d4764ee43d295ea38caafbfd17","b788ef070e70003842cbd03c3e04f87d46b67a47b71e9e7d8713fd8c58c5f5ec","583d365dc19f813f1e2767771e844c7c4ea9ab1a01e85e0119f2e083488379c2","16ab5b20dbc2b0860c3c59941570e616f8a6fc31a689fdc8c1b984b96dcd11af","0dfbdeb122565d1b0ecf42a04648c7c370a880ea27b74b8c2a87cc9b9f73398d","58c7f7820dc027a539b0437be7e1f8bdf663f91fbc9e861d80bb9368a38d4a94","f8e6a8fa14ad7cfab128f9922505b57fb4fbd82828047c46d7137c066c9bff21","57ab70cf1fcc245d66577501f0846fae49a953c92f004e7927e5ea7bb57c6a68","bbc49fd9dc6ee162ba3d270c834398e0c1d44e657ac4edfa55ac837902b7e0da","6993f360de4984b6743764fad3b88246d5dc6cfa45567783fc23833ad4e50c13","715682cddbefe50e27e5e7896acf4af0ffc48f9e18f64b0a0c2f8041e3ea869b","6d2f5a67bfe2034aa77b38f10977a57e762fd64e53c14372bcc5f1d3175ca322","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","33859aa36b264dd91bef77c279a5a0d259c6b63684d0c6ad538e515c69a489ec","33fa69f400b34c83e541dd5f4474f1c6fb2788614a1790c6c7b346b5c7eaa7dd","be213d7cbc3e5982b22df412cf223c2ac9d841c75014eae4c263761cd9d5e4c0","66451f9540fdf68a5fd93898257ccd7428cf7e49029f2e71b8ce70c8d927b87a","8a051690018330af516fd9ea42b460d603f0839f44d3946ebb4b551fe3bc7703","301fb04ef91ae1340bec1ebc3acdd223861c887a4a1127303d8eef7638b2d893","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","fc26991e51514bfc82e0f20c25132268b1d41e8928552dbaed7cc6f3d08fc3ac","5d82bb58dec5014c02aaeb3da465d34f4b7d5c724afea07559e3dfca6d8da5bc","44448f58f4d731dc28a02b5987ab6f20b9f77ad407dcf57b68c853fe52195cd7","b2818e8d05d6e6ad0f1899abf90a70309240a15153ea4b8d5e0c151e117b7338","1c708c15bb96473ce8ec2a946bd024ecded341169a0b84846931f979172244ba","ba1b8e276abe5519e0ba134fd0afba6668ba26d8d5a1fb359d88aff6357457c2","dc187f457333356ddc1ab8ec7833cd836f85e0bbcade61290dc55116244867cb","25525e173de74143042e824eaa786fa18c6b19e9dafb64da71a5faacc5bd2a5c","7a3d649f2de01db4b316cf4a0ce5d96832ee83641f1dc84d3e9981accf29c3a1","26e4260ee185d4af23484d8c11ef422807fb8f51d33aa68d83fab72eb568f228","c4d52d78e3fb4f66735d81663e351cf56037270ed7d00a9b787e35c1fc7183ce","864a5505d0e9db2e1837dce8d8aae8b7eeaa5450754d8a1967bf2843124cc262","2d045f00292ac7a14ead30d1f83269f1f0ad3e75d1f8e5a245ab87159523cf98","54bcb32ab0c7c72b61becd622499a0ae1c309af381801a30878667e21cba85bb","20666518864143f162a9a43249db66ca1d142e445e2d363d5650a524a399b992","28439c9ebd31185ae3353dd8524115eaf595375cd94ca157eefcf1280920436a","84344d56f84577d4ac1d0d59749bb2fde14c0fb460d0bfb04e57c023748c48a6","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","35a0eac48984d20f6da39947cf81cd71e0818feefc03dcb28b4ac7b87a636cfd","f6c226d8222108b3485eb0745e8b0ee48b0b901952660db20e983741e8852654","93c3b758c4dc64ea499c9416b1ed0e69725133644b299b86c5435e375d823c75","4e85f443714cff4858fdaffed31052492fdd03ff7883b22ed938fc0e34b48093","0146912d3cad82e53f779a0b7663f181824bba60e32715adb0e9bd02c560b8c6","b515457bebb2ad795d748d1c30d9d093a1364946379baf1fbb6f83fd17523ed5","220783c7ca903c6ce296b210fae5d7e5c5cc1942c5a469b23d537f0fbd37eb18","0974c67cf3e2d539d0046c84a5e816e235b81c8516b242ece2ed1bdbb5dbd3d6","b4186237e7787a397b6c5ae64e155e70ac2a43fdd13ff24dfb6c1e3d2f930570","2647784fffa95a08af418c179b7b75cf1d20c3d32ed71418f0a13259bf505c54","0480102d1a385b96c05316b10de45c3958512bb9e834dbecbbde9cc9c0b22db3","eea44cfed69c9b38cc6366bd149a5cfa186776ca2a9fb87a3746e33b7e4f5e74","7f375e5ef1deb2c2357cba319b51a8872063d093cab750675ac2eb1cef77bee9","b7f06aec971823244f909996a30ef2bbeae69a31c40b0b208d0dfd86a8c16d4f","0421510c9570dfae34b3911e1691f606811818df00354df7abd028cee454979f","c61d8cc814035424b5d55348b6aede37074151c408de931ac3f63c7b6f761efb","39bb270617bc26839893067727c812c0c270c59c12526958813cdce37e32784b","4666fc05a14ec56162b4ac5e535e541f9c84abaa9e95013d782c08d2f19fc568",{"version":"dadb698ae95d7ffaf0c23876cbbb946549e4980b206ebc5fc4bda91da7b22f68","signature":"d73ff7d8748035098c235ebfa8f50a1db153d94eee761bf8abb75e487472c360"},"6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9",{"version":"46894b2a21a60f8449ca6b2b7223b7179bba846a61b1434bed77b34b2902c306","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"inlineSources":false,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":2},"fileIdsList":[[224],[173,174,177,178],[161,163,179],[161,175],[174,175,176],[161],[181],[179,181,182,183],[180],[161,179,180],[161,185],[161,186],[161,162],[145,146,148,151,155],[139,140,144,145],[145,149,150,151,153],[139,140,145],[140,147],[145,148,151,153,154],[139,140,143,144],[140,143,144],[141,142],[156],[143,144,148,152],[139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160],[167],[166,167,168,170],[169,171],[165],[163,164,165,166],[202,209,300],[244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],[246],[246,250],[244,246,248],[244,246],[246,252],[245,246],[256],[246,262,263,264],[246,266],[246,267,268,269,270,271,272,273,274,275,276,277,278,279],[246,249],[246,248],[246,256],[100,134,195,201],[100,134,201],[97,100,134,190,191,201],[97,115,123,134],[100,138,201],[97,100,115,134,135,136,137,201],[97,134],[98,115,134,193],[100,134,193,201],[138,167,171,172,189,202],[100,134,201,202],[134,202,204],[138,189,202,203,204,205,206,207,208],[163,178,179,184,186,187,188],[138,171,189,202],[202,205],[100,134,138,198,199,201,202,209],[138,171,189,199,200,201,203,209],[97,100,134,190,191,197,201],[191,192,194,196,198],[220],[219,220,221,222],[210,211],[210],[211,213],[210,216,217],[210,212,213,214,216,217,218],[213,214,215],[213,216,218],[213],[213,216],[210,212],[227],[59,63,126],[59,115,126],[54],[56,59,123,126],[105,123],[134],[54,134],[56,59,105,126],[51,52,55,58,85,97,115,126],[51,57],[55,59,85,118,126,134],[85,134],[75,85,134],[53,54,134],[59],[53,54,55,56,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,81],[59,66,67],[57,59,67,68],[58],[51,54,59],[59,63,67,68],[63],[57,59,62,126],[51,56,57,59,63,66],[85,115],[54,59,75,85,131,134],[240,301],[305],[307,310],[47],[84],[85,90,118],[86,97,98,105,115,126],[86,87,97,105],[88,127],[89,90,98,106],[90,115,123],[91,93,97,105],[92],[93,94],[97],[95,97],[84,97],[97,98,99,115,126],[97,98,99,112,115,118],[82,131],[93,97,100,105,115,126,201],[97,98,100,101,105,115,123,126],[100,102,115,123,126],[47,48,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[97,103],[104,126,131],[93,97,105,115],[106],[107],[84,108],[109,125,131],[110],[111],[97,112,113],[112,114,127,129],[85,97,115,116,117,118],[85,115,117],[115,116],[118],[119],[84,115],[97,121,122],[121,122],[90,105,115,123],[124],[105,125],[85,100,111,126],[90,127],[115,128],[104,129],[130],[85,90,97,99,108,115,126,129,131],[115,132],[84,134,303,309],[307],[304,308],[306],[98,236],[237],[238],[209,236,237,238,239],[223,229,231,232,234,235],[225,228],[223],[223,230,232,233],[223,231,232],[223,232],[231],[300],[209],[224,225,228]],"referencedMap":[[227,1],[179,2],[178,3],[176,4],[177,5],[175,6],[174,6],[182,7],[180,6],[184,8],[183,9],[181,10],[186,11],[185,6],[187,12],[163,13],[162,6],[156,14],[149,15],[154,16],[146,17],[148,18],[155,19],[150,20],[145,21],[143,22],[158,23],[153,24],[161,25],[168,26],[171,27],[170,28],[169,29],[167,30],[301,31],[300,32],[247,33],[290,34],[249,35],[248,36],[250,33],[251,33],[253,37],[252,33],[254,38],[255,38],[257,39],[258,33],[259,39],[260,33],[262,33],[263,33],[264,33],[265,40],[261,33],[267,41],[268,41],[269,41],[270,41],[271,41],[280,42],[272,41],[273,41],[274,41],[275,41],[277,41],[276,41],[278,41],[279,41],[281,33],[282,33],[256,33],[284,43],[283,33],[285,33],[286,33],[287,44],[289,33],[288,33],[291,33],[293,33],[294,45],[292,33],[295,33],[296,33],[297,33],[298,33],[299,33],[196,46],[195,47],[192,48],[200,49],[201,50],[138,51],[135,52],[197,53],[194,54],[136,47],[203,55],[207,56],[208,57],[209,58],[189,59],[204,60],[206,61],[205,62],[202,63],[198,64],[199,65],[221,66],[223,67],[212,68],[211,69],[210,70],[218,71],[219,72],[216,73],[217,74],[214,75],[215,76],[213,77],[228,78],[66,79],[73,80],[65,79],[80,81],[57,82],[56,83],[79,84],[74,85],[77,86],[59,87],[58,88],[54,89],[53,90],[76,91],[55,92],[60,93],[64,93],[82,94],[81,93],[68,95],[69,96],[71,97],[67,98],[70,99],[75,84],[62,100],[63,101],[72,102],[52,103],[78,104],[302,105],[225,1],[306,106],[311,107],[47,108],[48,108],[84,109],[85,110],[86,111],[87,112],[88,113],[89,114],[90,115],[91,116],[92,117],[93,118],[94,118],[96,119],[95,120],[97,121],[98,122],[99,123],[83,124],[100,125],[101,126],[102,127],[134,128],[103,129],[104,130],[105,131],[106,132],[107,133],[108,134],[109,135],[110,136],[111,137],[112,138],[113,138],[114,139],[115,140],[117,141],[116,142],[118,143],[119,144],[120,145],[121,146],[122,147],[123,148],[124,149],[125,150],[126,151],[127,152],[128,153],[129,154],[130,155],[131,156],[132,157],[310,158],[308,159],[309,160],[307,161],[241,162],[242,163],[243,164],[240,165],[236,166],[229,167],[230,168],[234,169],[233,170],[235,171],[232,172]],"exportedModulesMap":[[227,1],[179,2],[178,3],[176,4],[177,5],[175,6],[174,6],[182,7],[180,6],[184,8],[183,9],[181,10],[186,11],[185,6],[187,12],[163,13],[162,6],[156,14],[149,15],[154,16],[146,17],[148,18],[155,19],[150,20],[145,21],[143,22],[158,23],[153,24],[161,25],[168,26],[171,27],[170,28],[169,29],[167,30],[301,31],[300,32],[247,33],[290,34],[249,35],[248,36],[250,33],[251,33],[253,37],[252,33],[254,38],[255,38],[257,39],[258,33],[259,39],[260,33],[262,33],[263,33],[264,33],[265,40],[261,33],[267,41],[268,41],[269,41],[270,41],[271,41],[280,42],[272,41],[273,41],[274,41],[275,41],[277,41],[276,41],[278,41],[279,41],[281,33],[282,33],[256,33],[284,43],[283,33],[285,33],[286,33],[287,44],[289,33],[288,33],[291,33],[293,33],[294,45],[292,33],[295,33],[296,33],[297,33],[298,33],[299,33],[196,46],[195,47],[192,48],[200,49],[201,50],[138,51],[135,52],[197,53],[194,54],[136,47],[203,55],[207,56],[208,57],[209,58],[189,59],[204,60],[206,61],[205,62],[202,63],[198,64],[199,65],[221,66],[223,67],[212,68],[211,69],[210,70],[218,71],[219,72],[216,73],[217,74],[214,75],[215,76],[213,77],[228,78],[66,79],[73,80],[65,79],[80,81],[57,82],[56,83],[79,84],[74,85],[77,86],[59,87],[58,88],[54,89],[53,90],[76,91],[55,92],[60,93],[64,93],[82,94],[81,93],[68,95],[69,96],[71,97],[67,98],[70,99],[75,84],[62,100],[63,101],[72,102],[52,103],[78,104],[302,173],[225,1],[306,106],[311,107],[47,108],[48,108],[84,109],[85,110],[86,111],[87,112],[88,113],[89,114],[90,115],[91,116],[92,117],[93,118],[94,118],[96,119],[95,120],[97,121],[98,122],[99,123],[83,124],[100,125],[101,126],[102,127],[134,128],[103,129],[104,130],[105,131],[106,132],[107,133],[108,134],[109,135],[110,136],[111,137],[112,138],[113,138],[114,139],[115,140],[117,141],[116,142],[118,143],[119,144],[120,145],[121,146],[122,147],[123,148],[124,149],[125,150],[126,151],[127,152],[128,153],[129,154],[130,155],[131,156],[132,157],[310,158],[308,159],[309,160],[307,161],[240,174],[229,175],[230,168],[234,171],[233,171],[235,171],[232,172]],"semanticDiagnosticsPerFile":[226,227,179,178,176,177,175,174,182,180,184,183,181,186,185,187,163,162,156,149,154,146,141,160,148,157,144,155,139,150,145,143,147,151,142,158,140,159,153,161,152,164,165,168,166,171,170,169,167,301,188,305,244,245,246,300,247,290,249,248,250,251,253,252,254,255,257,258,259,260,262,263,264,265,261,266,267,268,269,270,271,280,272,273,274,275,277,276,278,279,281,282,256,284,283,285,286,287,289,288,291,293,294,292,295,296,297,298,299,196,195,49,192,200,193,201,138,135,191,190,197,194,173,50,304,172,137,136,203,207,208,209,189,204,206,205,202,198,199,220,221,222,223,212,211,210,218,219,216,217,214,215,213,228,66,73,65,80,57,56,79,74,77,59,58,54,53,76,55,60,61,64,51,82,81,68,69,71,67,70,75,62,63,72,52,78,302,225,224,303,306,311,47,48,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,83,133,100,101,102,134,103,104,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,310,308,309,307,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,37,34,35,36,38,8,39,44,45,40,41,42,43,2,1,46,12,11,241,242,243,237,238,239,240,236,229,231,230,234,233,235,232]},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es6.d.ts","../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../../../node_modules/@types/pino/node_modules/sonic-boom/types/index.d.ts","../../../node_modules/pino-std-serializers/index.d.ts","../../../node_modules/pino-pretty/index.d.ts","../../../node_modules/@types/pino/index.d.ts","../../../node_modules/@octokit/types/dist-types/RequestMethod.d.ts","../../../node_modules/@octokit/types/dist-types/Url.d.ts","../../../node_modules/@octokit/types/dist-types/Fetch.d.ts","../../../node_modules/@octokit/types/dist-types/Signal.d.ts","../../../node_modules/@octokit/types/dist-types/RequestRequestOptions.d.ts","../../../node_modules/@octokit/types/dist-types/RequestHeaders.d.ts","../../../node_modules/@octokit/types/dist-types/RequestParameters.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointOptions.d.ts","../../../node_modules/@octokit/types/dist-types/ResponseHeaders.d.ts","../../../node_modules/@octokit/types/dist-types/OctokitResponse.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointDefaults.d.ts","../../../node_modules/@octokit/types/dist-types/RequestOptions.d.ts","../../../node_modules/@octokit/types/dist-types/Route.d.ts","../../../node_modules/@octokit/types/node_modules/@octokit/openapi-types/types.d.ts","../../../node_modules/@octokit/types/dist-types/generated/Endpoints.d.ts","../../../node_modules/@octokit/types/dist-types/EndpointInterface.d.ts","../../../node_modules/@octokit/types/dist-types/RequestInterface.d.ts","../../../node_modules/@octokit/types/dist-types/AuthInterface.d.ts","../../../node_modules/@octokit/types/dist-types/RequestError.d.ts","../../../node_modules/@octokit/types/dist-types/StrategyInterface.d.ts","../../../node_modules/@octokit/types/dist-types/VERSION.d.ts","../../../node_modules/@octokit/types/dist-types/GetResponseTypeFromEndpointMethod.d.ts","../../../node_modules/@octokit/types/dist-types/index.d.ts","../../../node_modules/@octokit/request-error/dist-types/types.d.ts","../../../node_modules/@octokit/request-error/dist-types/index.d.ts","../../../node_modules/@octokit/webhooks-types/schema.d.ts","../../../node_modules/@octokit/webhooks/dist-types/createLogger.d.ts","../../../node_modules/@octokit/webhooks/dist-types/generated/webhook-names.d.ts","../../../node_modules/@octokit/webhooks/dist-types/types.d.ts","../../../node_modules/@octokit/webhooks/dist-types/event-handler/index.d.ts","../../../node_modules/@octokit/webhooks/dist-types/middleware/node/types.d.ts","../../../node_modules/@octokit/webhooks/dist-types/middleware/node/index.d.ts","../../../node_modules/@octokit/webhooks/dist-types/index.d.ts","../../../node_modules/deepmerge/index.d.ts","../../../node_modules/before-after-hook/index.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/request/dist-types/index.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/types.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/error.d.ts","../../../node_modules/@octokit/core/node_modules/@octokit/graphql/dist-types/index.d.ts","../../../node_modules/@octokit/core/dist-types/types.d.ts","../../../node_modules/@octokit/core/dist-types/index.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/generated/paginating-endpoints.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/types.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/compose-paginate.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/paginating-endpoints.d.ts","../../../node_modules/@octokit/plugin-paginate-rest/dist-types/index.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.d.ts","../../../node_modules/@octokit/plugin-rest-endpoint-methods/dist-types/types.d.ts","../../../node_modules/@probot/octokit-plugin-config/dist-types/types.d.ts","../../../node_modules/probot/lib/octokit/probot-octokit.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/probot/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/probot/node_modules/@types/express/index.d.ts","../../../node_modules/@types/ioredis/index.d.ts","../../../node_modules/@types/pino-http/index.d.ts","../../../node_modules/probot/lib/types.d.ts","../../../node_modules/probot/lib/context.d.ts","../../../node_modules/probot/lib/probot.d.ts","../../../node_modules/probot/lib/server/server.d.ts","../../../node_modules/probot/lib/run.d.ts","../../../node_modules/probot/lib/create-node-middleware.d.ts","../../../node_modules/probot/lib/create-probot.d.ts","../../../node_modules/probot/lib/index.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/namedTypes.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/kinds.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/builders.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/types.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/path.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/gen/visitor.d.ts","../../../node_modules/recast/node_modules/ast-types/lib/main.d.ts","../../../node_modules/recast/lib/options.d.ts","../../../node_modules/recast/lib/parser.d.ts","../../../node_modules/recast/lib/printer.d.ts","../../../node_modules/recast/main.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/recast/parsers/_babel_options.d.ts","../src/parsers/typescript.ts","../src/reports/reportClassName.ts","../src/reports/constants.ts","../src/reports/types.ts","../src/reports/reportInlineStyle.ts","../src/reports/reportCustomStyleProperties.ts","../src/reports/reportStyledComponents.ts","../src/parseSource.ts","../src/graphql/fetchGraphql.ts","../src/graphql/queryGenerators.ts","../src/graphql/types.ts","../src/index.ts","../src/__tests__/parseSource.spec.ts","../src/graphql/__tests__/fetchGrapql.spec.ts","../src/graphql/__tests__/queryGenerators.spec.ts","../../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../../node_modules/@types/aws-lambda/handler.d.ts","../../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../../node_modules/@types/aws-lambda/trigger/codecommit.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../../node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts","../../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../../node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts","../../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../../node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts","../../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../../node_modules/@types/aws-lambda/index.d.ts","../../../node_modules/@probot/adapter-aws-lambda-serverless/index.d.ts","../netlify/functions/snowflake.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"b6a4a51bc749ad882c33d98563ff5a94716ca884bfde949a8c97bad530e4ee2c","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","c9e6ea53a25729dbb5b5bb6960db4387df2f8e88add9cbf36b6ff590481134f9","3e95e6310d49db6d575ac6c2896c02761426aa5aab0b18169f971151c709b770","7eb0662b995994db248290a0f0a1d8ed685991a162ff9eb4dee36f099cccd0d9","bea5c9fc0843a6961411ab4a04df856a8372448bc0d180da0c3a054ff31044b8","715873cecbfcebb49f293f0521bd0955d6298486e2eeb9c7bbf5e9f20a6ed152","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"6c7b9d2139abd8f2e83ed8fa018c3799ab3187755a6665621feb6e93d3429ac3","affectsGlobalScope":true},"a019c9782ea4e21c83881c780cebce8ad86e3f78122619336eacbd87e47fe674","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","5899ab1898582115c432cccef063298f75477bf2cebe5473360043fddd67bcc6","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"c874bfffe38a94b129077eaba4e26575972d545d5d04cd64e90c02d2c029ead6","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"4ee9304173804c2c6dff4fcb8ad900619a4078b30d37f7e455236836e8e87a45","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","cdaaf046791d7d588f28f32197c5d6acc43343e62540a67eed194c9c20535fdc","4b1ff655bd8edd879dd4f04f15338ce0109f58ccb424165d44fa07e7ea39c4bf",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","24b8c93eb91a64a6fbb877a295cfac4c10aa4660599970c954a99d33697534a3","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"ca619678b887ae262316673b55bb358c517593d3b6b96c1271972716c699da32","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"d1ef1d8516286380fd0a6f498f1650d374a8cb5f03d91633b6124e4fb8fb131d","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","2641e5e19268b6f5038ad48a6e2598965301df8a77c48c99d8df760a6a154204",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","172f31b538f6e3f70c2d001d665d5a46c4b043f707ba822b4d906d59bd9c229d","4fe80f12b1d5189384a219095c2eabadbb389c2d3703aae7c5376dbaa56061df","877f45a462a235fb899bc00e0bedbf94349730a4e4dd3eac174257c66880a84d","685fbeeffdff5e703820a6328ef0c7b693d398bf8d061e1050e20344f8ddf47a","54160aaec4f72e2045e7341301c096344b9e5162a1e48333a531117af5938713","3f0d8705992ebf25221e0d3f72d496bbcebacb47c2b6ee90f4de66d760ee9152","af628c57e9826fbe767ae6afbffa7b197405a8c53ba6197bb32e806d35c1ca8f","76b87f8b5d13712d3fc53a231be1664c4071186120624f2ae1b5bf3db6c7b502","2c7742afcffed27fef8e373c7939f20b64b8783d37e737bba2b3e0d70899ee2c","a9cdd476c9e36aa3bf4212f4337254f2f2676506aabb6f7d8f6db50490d25c33","52c0780e990d8d2ef666d618a303bca67a5e968dbaa4e4eaaad4e415a7217fd1","80a16135e14ed2540f9687f4fb5daee3a4249126272a5a922a5a21ee3b7048c3","7f7aa3e938180da966143e16c4686c7eb2ab8d0f762f038648e1cc6577e1d52e","6e9413bf8a3ce70c3b7db79a29de97281576b731de079d0853f1de499304fbb3","f6aef032da1a16fa155757a6ee8a79c749e579a378d9ba54256d1cefc753d475","5f9c212f98b4df7d638dd9a8125c5e828acbf9710586cd8027e41e4e55819a37","2c574466b0d7ded0bfedaea3660d8f008cefa06db748d79274b4aaea46564763","caa881dd5d50ad64aab709ecf06219874cbc23045e46630bdcdc7c4c32892965","ae07438e2c832c3fb33b98bf3894e460fe71a590b65e6dc55d5a5e1a32062066","7e122724e79d97fc601b9517da07dacf9e8162f5d78ad5740b349e2065ded611","3c9c80b328558dde371257f1dec7ee2f26004c3497b3e302b94fc415b01c0190","3455a4c5f5feefa1f7062e4d8b00837e1edf7922b10cb50769b4ed3c5e37437f","74fd4b09963df6d2a1c94b653199c48d5a578164517a7ae27ff86771662f6764","6a6752f432019855ae0c882f1dd5b6ca11d4da35f2279e7efaa98caec41588af","569c4482357560c490a62d200409d3bedf92efa43bd2e2d728be1daa6d4140ab","7a50f76e773ead4a34b5308879130da83192040ef6dafc5f18570ff6ad2bda61","70f53130d4dcf2f25b58eba7bb7ab4dd80994ad7dab46b37e60cd13a70761fd4","6d575187149a38a8d06d986e6d8111aad796785dd57847672f01ba07987c8e3d","24a1a5007809de3b55b5f86ae8dac8a71f262d508595a04d8de76f692cd127b0","cdeea24d217b06f597246c215af7c8488a8cc963b26aeab3f30fdbc04c3638c7","32684eca94b76799df29ff777e9425062456489d4d80405f4ac5d769ac1dbb7d","b708fc2911456eb3065f831c8e152a24ec42e8b2ec260b1772e6976039616ef0","16739082244f59e0856fae2410fdc9d38eddce8ad6424dc5d4223ca59e4a7ec2","189ba8368e43627d18bb88c99de5982ac347e5911f5d89851a3c43f8b6e14569","4f10472206bfa7bed6ccad0775423dfb19daff28b7ac32ace3b72d3721596eef","7984964df543f9092f501c17ddf6e705a41b3fcfa17708716e0dfdeaf4b15087","092f926dc9f141977dc163cb0a4bd8df28d1def1a3091f30af42ea702db98fc1","f163b1edf76fbde01836f8522fbe646fe2f55e313bb7fdd363891748f9b57c60","f4fc6f33af72add3d409feae7e6eb6fd48dd05a7fda785a832addafa4c7ce8a7","758e92a92871b11a9aede1787106be4764ae6a32f6c76bb29f072bfa28d9f69a","5c291d7429bff327ce5502221f1d2fea64277760793324e7419892e3af29dd63","126eb12a1d90e542ab5c67389bf04063eb0a6102450903a4e9a660fb1b1d2abe","a513bf738f28c66621a4c2c577d72f37b74175df5c645dc6df6befdd6b090044","8e7ed96554279194f78c20d966ed1517aaa27dcfb60d23e5d36a51e07daeb823","63db3f21f835af9dfa90829a54ba11a5f34c9fb9f73a235d603d5705c126f7bb","5a0e97850ab7f500be1fae2c73135e8722011dbe325352405da40e5694c2105a","bbb47b581e8e5495c1754b066202d24f762fd7fccfe1fcc443aec07c992cc229","0940279b6cdfb51032bd6bb0b02c3a4ac2b0a73e380d6c48bf8b503d0de08350","06ae8b7ddac3aff63085a4c6384557b36ef61075aa6c5173fdf3834b19a702d6","b5b49a989ba1e33c2d84afe92eb47029b57df7c14a226468ca0b34c65f995a91","95eb6d75484e2d939a90fde29d6f8d44f7b60e95383b0b2fbe509312b96a5927","7acba69bb1e26caff186d177f681eab25b4b10284c2d19d6368d48f999f1857f","c523378d3aa12273db8ccda1879bc645b76161b32bde7060c7381af113879312","d0bda71c912cccf24d8774ed6bee6e19bb997022d1cd2e875169c3edd2647a74","b5421e0f77d815a6cef21c15a820d08959be4e79d465f42856c3c9c35600ac66","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a",{"version":"50072f976cfa86af1a3044f55cd729d992abe39222d2f6cdf929266c77a42b0b","affectsGlobalScope":true},"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","be00321090ed100e3bd1e566c0408004137e73feb19d6380eba57d68519ff6c5","90e7d6685ccdde9fbd813aff4b998c1d41204512a9a26998d611d7da665a4a44","b89a51fec964dfd1ce9d7ca0399bdaa415cc106dbce3a0081d7c8fb6035e5213","89ac227fcc00596dddb43b2c3f6d43707e62a998d043d63ce83e5b6a032c6ef6","5f0a41bd45c707df7721bffeb54e3445b0356d1d2dcc132c3dbadd68b68f3c0c","34b4cdb7eec8647ae6deb505a3c04e1c06310f68cb94bbb3ea033805dcd2c513","c8065e48aa118c1a6f0b003f53139992700438188549947f54619e8c95733744","a94a6f6aa721b13bf191faf387e3867f0b7fb63bce1dccd87a2aefeedeb986f9","cd75d46c18ea1b72aef4a46d0345a8e9e55b37cc78725e949787b240e74eed8c","606ec8b7eaaf1d2a1aa015fddcc7d711e7db777cc30b38f7cfe9d2d80ed629e1","0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","07c50b6db67b8b943aed3e410bfeebfb6d3ba1fd1e2819bc889e48f81e94ed2d","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","923c136dcbf20f140c369078a7eb56f6697889d104397d694f70e21dd08b1810","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","923c136dcbf20f140c369078a7eb56f6697889d104397d694f70e21dd08b1810","96c23535f4f9dd15beb767e070559ea672f6a35f103152836a67100605136a96","68708f52470e53b6a96cdaf9f7cd5117c6aa4bc6ccbeab1d6e4f7e317318482e",{"version":"7dd0b381a26e858399db5d05b161633f68573210eba08de008827af2d66d0771","signature":"c98980b1795d9700814bffe0dfb15e7e71b28a6eca8d48b1392e26443557897b"},{"version":"82b0c28a768a9e30f5eaff7f4ea3e8df44f8df1dab1de791cd6025c2273b54fc","signature":"67c425c9dd47ace291ca621c736ac011931f5a1c5134bd8d8865a7dc47414c52"},{"version":"294abb30691bc00bb62d95960d31c7fc997f8de13f4660c08685c0246e3a1aa5","signature":"8d639558ecfe4265a084226c02dc9930cddccb9042325b41fbc9eae364557b7e"},{"version":"c5569283752502d4577545135f7d98b63cf5b9543ff2fe8a5ae63c1d34f1b2cb","signature":"b6420bcdbf4888a544dcd721ebac0aa357fa3a6e262dec9da189c105f23082ef"},{"version":"f0c595d9f6260b4d7fb0d64a760efebbf1def9832e48ac9a8a9983fafdf47245","signature":"e9b654b42bfab8bbf2a0b09b29fcc48a2025baafb2c3de8862c658f551f40ccb"},{"version":"1ea45b495fd489176ea0a644ecda5903f77df7118b37e6d933b92cbdae5f94a3","signature":"4f94845e97c2ba80789184df3e8568d524836f59e87f561860b13b41b19079b5"},{"version":"2381ab938523a13aa940f9775cb0595c8dd3931be7fa5f6b510d4843e0ee8a0c","signature":"1bce9a7853785749760d0299b09e02e8476a42a2d67a72d13eeb525313eccc1e"},{"version":"61c3b26acbae46d674387f9ffe1beba47e6f04d0af22a002d46b2485d513333c","signature":"b4cad15061424ae9d81c58602d1ee0177e12512aa09afd92c5d7c9471994eb50"},{"version":"f79301533e4f61e5cb09d3028e7c8db4ccf3149a2e3c6c66a007ac484d3560fa","signature":"223e7601abd4ddcf145d3baef621b402782dfe3d689dd5bd67518ec16519b554"},{"version":"ee99d1328ee18fe9392f15f159d6056998007509eb4bc49aae83eb204da509c7","signature":"46fe4082873f42e577f6a58346f9da3e3d357805a05325664a050b89e18c31fa"},{"version":"f27a80c9e1a8af20b32b753bddc1defe8774d7f42ddd43778628c80c7760d026","signature":"9622fbb941c5512f3073b872cdb381f748d86c704c9faaffa2ba35cac35e0fbe"},{"version":"f19d68514ccf1a78376e7893ba056f60aff1eda437867ddaf28c2f8098b5438b","signature":"ccf7f6f3c6b6b7d73f342c059e2c418655522e107417319639e1391492d28167"},{"version":"662f7d4dd7effcae2f09ba217b5718efec07773d9cc1e979fdd1ed1f94a66510","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"9c440d9fb88b0b2857a2ae4b2f055fe5322cd44a710a2e9cf6c66fb17946d469","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"eb6dfe687c453baa6fe385cc2cc596322baba81afdaa192abf448a348b71b744","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"78ef0198c323d0f7b16f993ada3459f0e7e20567e7f56fe0c5ee78f31cb0840c","88533ff507514078998ea6e02390b4a7934bcff52fe9b8389e06037af8619cb2","5ec614ed82e045de15417a47e2568be5310d43d4764ee43d295ea38caafbfd17","b788ef070e70003842cbd03c3e04f87d46b67a47b71e9e7d8713fd8c58c5f5ec","583d365dc19f813f1e2767771e844c7c4ea9ab1a01e85e0119f2e083488379c2","16ab5b20dbc2b0860c3c59941570e616f8a6fc31a689fdc8c1b984b96dcd11af","0dfbdeb122565d1b0ecf42a04648c7c370a880ea27b74b8c2a87cc9b9f73398d","58c7f7820dc027a539b0437be7e1f8bdf663f91fbc9e861d80bb9368a38d4a94","f8e6a8fa14ad7cfab128f9922505b57fb4fbd82828047c46d7137c066c9bff21","57ab70cf1fcc245d66577501f0846fae49a953c92f004e7927e5ea7bb57c6a68","bbc49fd9dc6ee162ba3d270c834398e0c1d44e657ac4edfa55ac837902b7e0da","6993f360de4984b6743764fad3b88246d5dc6cfa45567783fc23833ad4e50c13","715682cddbefe50e27e5e7896acf4af0ffc48f9e18f64b0a0c2f8041e3ea869b","6d2f5a67bfe2034aa77b38f10977a57e762fd64e53c14372bcc5f1d3175ca322","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","33859aa36b264dd91bef77c279a5a0d259c6b63684d0c6ad538e515c69a489ec","33fa69f400b34c83e541dd5f4474f1c6fb2788614a1790c6c7b346b5c7eaa7dd","be213d7cbc3e5982b22df412cf223c2ac9d841c75014eae4c263761cd9d5e4c0","66451f9540fdf68a5fd93898257ccd7428cf7e49029f2e71b8ce70c8d927b87a","8a051690018330af516fd9ea42b460d603f0839f44d3946ebb4b551fe3bc7703","301fb04ef91ae1340bec1ebc3acdd223861c887a4a1127303d8eef7638b2d893","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","fc26991e51514bfc82e0f20c25132268b1d41e8928552dbaed7cc6f3d08fc3ac","5d82bb58dec5014c02aaeb3da465d34f4b7d5c724afea07559e3dfca6d8da5bc","44448f58f4d731dc28a02b5987ab6f20b9f77ad407dcf57b68c853fe52195cd7","b2818e8d05d6e6ad0f1899abf90a70309240a15153ea4b8d5e0c151e117b7338","1c708c15bb96473ce8ec2a946bd024ecded341169a0b84846931f979172244ba","ba1b8e276abe5519e0ba134fd0afba6668ba26d8d5a1fb359d88aff6357457c2","dc187f457333356ddc1ab8ec7833cd836f85e0bbcade61290dc55116244867cb","25525e173de74143042e824eaa786fa18c6b19e9dafb64da71a5faacc5bd2a5c","7a3d649f2de01db4b316cf4a0ce5d96832ee83641f1dc84d3e9981accf29c3a1","26e4260ee185d4af23484d8c11ef422807fb8f51d33aa68d83fab72eb568f228","c4d52d78e3fb4f66735d81663e351cf56037270ed7d00a9b787e35c1fc7183ce","864a5505d0e9db2e1837dce8d8aae8b7eeaa5450754d8a1967bf2843124cc262","2d045f00292ac7a14ead30d1f83269f1f0ad3e75d1f8e5a245ab87159523cf98","54bcb32ab0c7c72b61becd622499a0ae1c309af381801a30878667e21cba85bb","20666518864143f162a9a43249db66ca1d142e445e2d363d5650a524a399b992","28439c9ebd31185ae3353dd8524115eaf595375cd94ca157eefcf1280920436a","84344d56f84577d4ac1d0d59749bb2fde14c0fb460d0bfb04e57c023748c48a6","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","35a0eac48984d20f6da39947cf81cd71e0818feefc03dcb28b4ac7b87a636cfd","f6c226d8222108b3485eb0745e8b0ee48b0b901952660db20e983741e8852654","93c3b758c4dc64ea499c9416b1ed0e69725133644b299b86c5435e375d823c75","4e85f443714cff4858fdaffed31052492fdd03ff7883b22ed938fc0e34b48093","0146912d3cad82e53f779a0b7663f181824bba60e32715adb0e9bd02c560b8c6","b515457bebb2ad795d748d1c30d9d093a1364946379baf1fbb6f83fd17523ed5","220783c7ca903c6ce296b210fae5d7e5c5cc1942c5a469b23d537f0fbd37eb18","0974c67cf3e2d539d0046c84a5e816e235b81c8516b242ece2ed1bdbb5dbd3d6","b4186237e7787a397b6c5ae64e155e70ac2a43fdd13ff24dfb6c1e3d2f930570","2647784fffa95a08af418c179b7b75cf1d20c3d32ed71418f0a13259bf505c54","0480102d1a385b96c05316b10de45c3958512bb9e834dbecbbde9cc9c0b22db3","eea44cfed69c9b38cc6366bd149a5cfa186776ca2a9fb87a3746e33b7e4f5e74","7f375e5ef1deb2c2357cba319b51a8872063d093cab750675ac2eb1cef77bee9","b7f06aec971823244f909996a30ef2bbeae69a31c40b0b208d0dfd86a8c16d4f","0421510c9570dfae34b3911e1691f606811818df00354df7abd028cee454979f","c61d8cc814035424b5d55348b6aede37074151c408de931ac3f63c7b6f761efb","39bb270617bc26839893067727c812c0c270c59c12526958813cdce37e32784b","4666fc05a14ec56162b4ac5e535e541f9c84abaa9e95013d782c08d2f19fc568",{"version":"dadb698ae95d7ffaf0c23876cbbb946549e4980b206ebc5fc4bda91da7b22f68","signature":"d73ff7d8748035098c235ebfa8f50a1db153d94eee761bf8abb75e487472c360"},"6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9",{"version":"46894b2a21a60f8449ca6b2b7223b7179bba846a61b1434bed77b34b2902c306","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"inlineSources":false,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":true,"target":2},"fileIdsList":[[224],[173,174,177,178],[161,163,179],[161,175],[174,175,176],[161],[181],[179,181,182,183],[180],[161,179,180],[161,185],[161,186],[161,162],[145,146,148,151,155],[139,140,144,145],[145,149,150,151,153],[139,140,145],[140,147],[145,148,151,153,154],[139,140,143,144],[140,143,144],[141,142],[156],[143,144,148,152],[139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160],[167],[166,167,168,170],[169,171],[165],[163,164,165,166],[202,209,300],[244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299],[246],[246,250],[244,246,248],[244,246],[246,252],[245,246],[256],[246,262,263,264],[246,266],[246,267,268,269,270,271,272,273,274,275,276,277,278,279],[246,249],[246,248],[246,256],[100,134,195,201],[100,134,201],[97,100,134,190,191,201],[97,115,123,134],[100,138,201],[97,100,115,134,135,136,137,201],[97,134],[98,115,134,193],[100,134,193,201],[138,167,171,172,189,202],[100,134,201,202],[134,202,204],[138,189,202,203,204,205,206,207,208],[163,178,179,184,186,187,188],[138,171,189,202],[202,205],[100,134,138,198,199,201,202,209],[138,171,189,199,200,201,203,209],[97,100,134,190,191,197,201],[191,192,194,196,198],[220],[219,220,221,222],[210,211],[210],[211,213],[210,216,217],[210,212,213,214,216,217,218],[213,214,215],[213,216,218],[213],[213,216],[210,212],[227],[59,63,126],[59,115,126],[54],[56,59,123,126],[105,123],[134],[54,134],[56,59,105,126],[51,52,55,58,85,97,115,126],[51,57],[55,59,85,118,126,134],[85,134],[75,85,134],[53,54,134],[59],[53,54,55,56,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,81],[59,66,67],[57,59,67,68],[58],[51,54,59],[59,63,67,68],[63],[57,59,62,126],[51,56,57,59,63,66],[85,115],[54,59,75,85,131,134],[240,301],[305],[307,310],[47],[84],[85,90,118],[86,97,98,105,115,126],[86,87,97,105],[88,127],[89,90,98,106],[90,115,123],[91,93,97,105],[92],[93,94],[97],[95,97],[84,97],[97,98,99,115,126],[97,98,99,112,115,118],[82,131],[93,97,100,105,115,126,201],[97,98,100,101,105,115,123,126],[100,102,115,123,126],[47,48,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[97,103],[104,126,131],[93,97,105,115],[106],[107],[84,108],[109,125,131],[110],[111],[97,112,113],[112,114,127,129],[85,97,115,116,117,118],[85,115,117],[115,116],[118],[119],[84,115],[97,121,122],[121,122],[90,105,115,123],[124],[105,125],[85,100,111,126],[90,127],[115,128],[104,129],[130],[85,90,97,99,108,115,126,129,131],[115,132],[84,134,303,309],[307],[304,308],[306],[98,236],[237],[238],[209,231,236,237,238,239],[223,229,231,232,234,235],[225,228],[223],[223,230,232,233],[223,231,232],[223,232],[231],[300],[209],[224,225,228]],"referencedMap":[[227,1],[179,2],[178,3],[176,4],[177,5],[175,6],[174,6],[182,7],[180,6],[184,8],[183,9],[181,10],[186,11],[185,6],[187,12],[163,13],[162,6],[156,14],[149,15],[154,16],[146,17],[148,18],[155,19],[150,20],[145,21],[143,22],[158,23],[153,24],[161,25],[168,26],[171,27],[170,28],[169,29],[167,30],[301,31],[300,32],[247,33],[290,34],[249,35],[248,36],[250,33],[251,33],[253,37],[252,33],[254,38],[255,38],[257,39],[258,33],[259,39],[260,33],[262,33],[263,33],[264,33],[265,40],[261,33],[267,41],[268,41],[269,41],[270,41],[271,41],[280,42],[272,41],[273,41],[274,41],[275,41],[277,41],[276,41],[278,41],[279,41],[281,33],[282,33],[256,33],[284,43],[283,33],[285,33],[286,33],[287,44],[289,33],[288,33],[291,33],[293,33],[294,45],[292,33],[295,33],[296,33],[297,33],[298,33],[299,33],[196,46],[195,47],[192,48],[200,49],[201,50],[138,51],[135,52],[197,53],[194,54],[136,47],[203,55],[207,56],[208,57],[209,58],[189,59],[204,60],[206,61],[205,62],[202,63],[198,64],[199,65],[221,66],[223,67],[212,68],[211,69],[210,70],[218,71],[219,72],[216,73],[217,74],[214,75],[215,76],[213,77],[228,78],[66,79],[73,80],[65,79],[80,81],[57,82],[56,83],[79,84],[74,85],[77,86],[59,87],[58,88],[54,89],[53,90],[76,91],[55,92],[60,93],[64,93],[82,94],[81,93],[68,95],[69,96],[71,97],[67,98],[70,99],[75,84],[62,100],[63,101],[72,102],[52,103],[78,104],[302,105],[225,1],[306,106],[311,107],[47,108],[48,108],[84,109],[85,110],[86,111],[87,112],[88,113],[89,114],[90,115],[91,116],[92,117],[93,118],[94,118],[96,119],[95,120],[97,121],[98,122],[99,123],[83,124],[100,125],[101,126],[102,127],[134,128],[103,129],[104,130],[105,131],[106,132],[107,133],[108,134],[109,135],[110,136],[111,137],[112,138],[113,138],[114,139],[115,140],[117,141],[116,142],[118,143],[119,144],[120,145],[121,146],[122,147],[123,148],[124,149],[125,150],[126,151],[127,152],[128,153],[129,154],[130,155],[131,156],[132,157],[310,158],[308,159],[309,160],[307,161],[241,162],[242,163],[243,164],[240,165],[236,166],[229,167],[230,168],[234,169],[233,170],[235,171],[232,172]],"exportedModulesMap":[[227,1],[179,2],[178,3],[176,4],[177,5],[175,6],[174,6],[182,7],[180,6],[184,8],[183,9],[181,10],[186,11],[185,6],[187,12],[163,13],[162,6],[156,14],[149,15],[154,16],[146,17],[148,18],[155,19],[150,20],[145,21],[143,22],[158,23],[153,24],[161,25],[168,26],[171,27],[170,28],[169,29],[167,30],[301,31],[300,32],[247,33],[290,34],[249,35],[248,36],[250,33],[251,33],[253,37],[252,33],[254,38],[255,38],[257,39],[258,33],[259,39],[260,33],[262,33],[263,33],[264,33],[265,40],[261,33],[267,41],[268,41],[269,41],[270,41],[271,41],[280,42],[272,41],[273,41],[274,41],[275,41],[277,41],[276,41],[278,41],[279,41],[281,33],[282,33],[256,33],[284,43],[283,33],[285,33],[286,33],[287,44],[289,33],[288,33],[291,33],[293,33],[294,45],[292,33],[295,33],[296,33],[297,33],[298,33],[299,33],[196,46],[195,47],[192,48],[200,49],[201,50],[138,51],[135,52],[197,53],[194,54],[136,47],[203,55],[207,56],[208,57],[209,58],[189,59],[204,60],[206,61],[205,62],[202,63],[198,64],[199,65],[221,66],[223,67],[212,68],[211,69],[210,70],[218,71],[219,72],[216,73],[217,74],[214,75],[215,76],[213,77],[228,78],[66,79],[73,80],[65,79],[80,81],[57,82],[56,83],[79,84],[74,85],[77,86],[59,87],[58,88],[54,89],[53,90],[76,91],[55,92],[60,93],[64,93],[82,94],[81,93],[68,95],[69,96],[71,97],[67,98],[70,99],[75,84],[62,100],[63,101],[72,102],[52,103],[78,104],[302,173],[225,1],[306,106],[311,107],[47,108],[48,108],[84,109],[85,110],[86,111],[87,112],[88,113],[89,114],[90,115],[91,116],[92,117],[93,118],[94,118],[96,119],[95,120],[97,121],[98,122],[99,123],[83,124],[100,125],[101,126],[102,127],[134,128],[103,129],[104,130],[105,131],[106,132],[107,133],[108,134],[109,135],[110,136],[111,137],[112,138],[113,138],[114,139],[115,140],[117,141],[116,142],[118,143],[119,144],[120,145],[121,146],[122,147],[123,148],[124,149],[125,150],[126,151],[127,152],[128,153],[129,154],[130,155],[131,156],[132,157],[310,158],[308,159],[309,160],[307,161],[240,174],[229,175],[230,168],[234,171],[233,171],[235,171],[232,172]],"semanticDiagnosticsPerFile":[226,227,179,178,176,177,175,174,182,180,184,183,181,186,185,187,163,162,156,149,154,146,141,160,148,157,144,155,139,150,145,143,147,151,142,158,140,159,153,161,152,164,165,168,166,171,170,169,167,301,188,305,244,245,246,300,247,290,249,248,250,251,253,252,254,255,257,258,259,260,262,263,264,265,261,266,267,268,269,270,271,280,272,273,274,275,277,276,278,279,281,282,256,284,283,285,286,287,289,288,291,293,294,292,295,296,297,298,299,196,195,49,192,200,193,201,138,135,191,190,197,194,173,50,304,172,137,136,203,207,208,209,189,204,206,205,202,198,199,220,221,222,223,212,211,210,218,219,216,217,214,215,213,228,66,73,65,80,57,56,79,74,77,59,58,54,53,76,55,60,61,64,51,82,81,68,69,71,67,70,75,62,63,72,52,78,302,225,224,303,306,311,47,48,84,85,86,87,88,89,90,91,92,93,94,96,95,97,98,99,83,133,100,101,102,134,103,104,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,310,308,309,307,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,37,34,35,36,38,8,39,44,45,40,41,42,43,2,1,46,12,11,241,242,243,237,238,239,240,236,229,231,230,234,233,235,232]},"version":"4.9.5"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/snowflake-guard",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "A hero-design bot detecting snowflake usage",
5
5
  "author": "Hau Dao",
6
6
  "license": "ISC",
@@ -39,9 +39,9 @@ const Sample = () => {
39
39
  <StyledLinkButton />
40
40
  <StyledLink />
41
41
  {/* Snowflakes using classname */}
42
- <Button className="custom-class" />
43
- <Button.Link className="custom-class" />
44
- <Link className="custom-class" />
42
+ <Button className="custom-classname" />
43
+ <Button.Link className="custom-classname" />
44
+ <Link className="custom-classname" />
45
45
  {/* Snowflakes using style prop */}
46
46
  <Button style={{ width: 200 }} /> {/* acceptable */}
47
47
  <Empty style={{ width: 200 }} />
@@ -61,6 +61,8 @@ const Sample = () => {
61
61
  <Badge sx={styles.badge} />
62
62
  <Badge sx={{ ...styles.badge }} />
63
63
  <Link sx={{ padding: 20 }} />
64
+ <Button className="none-css-class" /> {/* @snowflake-guard/none-css-classname */}
65
+ <Button className="custom-classname" /> {/* @snowflake-guard/snowflake-approved-by-andromeda */}
64
66
  </>;
65
67
  };
66
68
 
@@ -10,7 +10,7 @@ describe('parseSource', () => {
10
10
  styleLocs: [54, 47, 49, 50, 51, 52, 53],
11
11
  sxLocs: [63, 58, 59, 60, 61, 62],
12
12
  styledComponentLocs: [6, 10, 15],
13
- approvedLocs: [55],
13
+ approvedLocs: [55, 65, 64],
14
14
  });
15
15
  });
16
16
  });
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { Probot, ProbotOctokit } from 'probot';
1
+ import { Probot } from 'probot';
2
2
  import parseSource from './parseSource';
3
+ import { APPROVED_CLASSNAME_COMMENT } from './reports/constants';
3
4
  import fetchGraphql from './graphql/fetchGraphql';
4
5
  import {
5
6
  generateFetchReportQuery,
@@ -26,8 +27,7 @@ const SNOWFLAKE_COMMENTS = {
26
27
  sx: 'Snowflake detected! A component is customized via sx prop. Make sure to not use [prohibited CSS properties](https://docs.google.com/spreadsheets/d/1Dj8vqLdFaf-CSaSVoYqyYZIkGqF6OoyP7K4G1_9L62U/edit?usp=sharing).',
27
28
  'styled-component':
28
29
  'Please do not use styled-component to customize this component, use sx prop or inline style instead.',
29
- className:
30
- 'Please make sure that this className is not used as a CSS classname for component customization purposes, use sx prop or inline style instead.',
30
+ className: `Please make sure that this className is not used as a CSS classname for component customization purposes, use sx prop or inline style instead. In case this is none-css classname, please flag it with this comment \`${APPROVED_CLASSNAME_COMMENT}\`.`,
31
31
  };
32
32
 
33
33
  const getDiffLocs = (diffStrs: string[]) => {
@@ -97,10 +97,7 @@ export = (app: Probot) => {
97
97
  );
98
98
  const prFileContents = await Promise.all(prFileContentPromises);
99
99
 
100
- const styleComments: Comment[] = [];
101
- const sxComments: Comment[] = [];
102
- const styledComponentComments: Comment[] = [];
103
- const classNameComments: Comment[] = [];
100
+ const snowflakeComments: Comment[] = [];
104
101
  const approvedSnowflakeLocs: number[] = [];
105
102
 
106
103
  prFileContents.forEach(async (file) => {
@@ -123,7 +120,7 @@ export = (app: Probot) => {
123
120
 
124
121
  snowflakeReport.styleLocs.forEach((loc) => {
125
122
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
126
- styleComments.push({
123
+ snowflakeComments.push({
127
124
  path: filePath,
128
125
  body: SNOWFLAKE_COMMENTS['style'],
129
126
  line: loc,
@@ -133,7 +130,7 @@ export = (app: Probot) => {
133
130
 
134
131
  snowflakeReport.sxLocs.forEach((loc) => {
135
132
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
136
- sxComments.push({
133
+ snowflakeComments.push({
137
134
  path: filePath,
138
135
  body: SNOWFLAKE_COMMENTS['sx'],
139
136
  line: loc,
@@ -143,7 +140,7 @@ export = (app: Probot) => {
143
140
 
144
141
  snowflakeReport.styledComponentLocs.forEach((loc) => {
145
142
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
146
- styledComponentComments.push({
143
+ snowflakeComments.push({
147
144
  path: filePath,
148
145
  body: SNOWFLAKE_COMMENTS['styled-component'],
149
146
  line: loc,
@@ -153,7 +150,7 @@ export = (app: Probot) => {
153
150
 
154
151
  snowflakeReport.classNameLocs.forEach((loc) => {
155
152
  if (checkIfDetectedSnowflakesInDiff(diffLocs, loc)) {
156
- classNameComments.push({
153
+ snowflakeComments.push({
157
154
  path: filePath,
158
155
  body: SNOWFLAKE_COMMENTS['className'],
159
156
  line: loc,
@@ -168,16 +165,8 @@ export = (app: Probot) => {
168
165
  });
169
166
  });
170
167
 
171
- const personalOctokit = new ProbotOctokit({
172
- auth: { token: process.env.EH_BOT_GITHUB_TOKEN },
173
- });
174
-
175
168
  // Saving report
176
- const snowflakeCount =
177
- styleComments.length +
178
- sxComments.length +
179
- styledComponentComments.length +
180
- classNameComments.length;
169
+ const snowflakeCount = snowflakeComments.length;
181
170
  const report = (await fetchGraphql(
182
171
  generateFetchReportQuery({ repoName: repoInfo.repo, prNumber })
183
172
  )) as FetchReportResponse;
@@ -203,43 +192,35 @@ export = (app: Probot) => {
203
192
  );
204
193
  }
205
194
 
206
- // No snowflakes detected or only potential snowflakes using classname
207
- if (
208
- styleComments.length === 0 &&
209
- sxComments.length === 0 &&
210
- styledComponentComments.length === 0
211
- ) {
212
- const reviewBody =
213
- classNameComments.length > 0
214
- ? {
215
- body: '[WARNING] Potential snowflakes detected in this PR using classnames. Please review the following comments.',
216
- comments: classNameComments,
217
- }
218
- : {
219
- body: 'No snowflakes detected in this PR.',
220
- };
221
-
222
- return personalOctokit.pulls.createReview({
195
+ // No snowflakes detected
196
+ // Create success check-run
197
+ if (snowflakeCount === 0) {
198
+ return context.octokit.checks.create({
223
199
  ...repoInfo,
224
- pull_number: prNumber,
225
- commit_id: context.payload.pull_request.head.sha,
226
- event: 'APPROVE',
227
- ...reviewBody,
200
+ name: 'SnowflakeGuard/Check',
201
+ head_sha: context.payload.pull_request.head.sha,
202
+ status: 'completed',
203
+ conclusion: 'success',
228
204
  });
229
205
  }
230
206
 
231
- return personalOctokit.pulls.createReview({
207
+ // Snowflakes detected
208
+ // Create failed check-run & comment
209
+ await context.octokit.checks.create({
210
+ ...repoInfo,
211
+ name: 'SnowflakeGuard/Check',
212
+ head_sha: context.payload.pull_request.head.sha,
213
+ status: 'completed',
214
+ conclusion: 'failure',
215
+ });
216
+
217
+ return context.octokit.pulls.createReview({
232
218
  ...repoInfo,
233
219
  pull_number: prNumber,
234
220
  commit_id: context.payload.pull_request.head.sha,
235
- event: 'REQUEST_CHANGES',
221
+ event: 'COMMENT',
236
222
  body: 'Snowflake Guard Bot has detected some snowflakes in this PR. Please review the following comments.',
237
- comments: [
238
- ...styleComments,
239
- ...sxComments,
240
- ...styledComponentComments,
241
- ...classNameComments,
242
- ],
223
+ comments: snowflakeComments,
243
224
  });
244
225
  }
245
226
  );
@@ -2,7 +2,11 @@ import * as recast from 'recast';
2
2
  import * as tsParser from './parsers/typescript';
3
3
  import reportCustomProperties from './reports/reportCustomStyleProperties';
4
4
  import reportStyledComponents from './reports/reportStyledComponents';
5
- import { HD_COMPONENTS, APPROVED_COMMENT } from './reports/constants';
5
+ import {
6
+ HD_COMPONENTS,
7
+ APPROVED_COMMENT,
8
+ APPROVED_CLASSNAME_COMMENT,
9
+ } from './reports/constants';
6
10
  import type { ComponentName } from './reports/types';
7
11
 
8
12
  const parseSource = (source: string) => {
@@ -17,6 +21,7 @@ const parseSource = (source: string) => {
17
21
  let styleLocs: number[] = [];
18
22
  let sxLocs: number[] = [];
19
23
  const approvedCmtLocs: number[] = [];
24
+ const approvedClassnameLocs: number[] = [];
20
25
 
21
26
  const ast = recast.parse(source, { parser: tsParser });
22
27
 
@@ -61,18 +66,30 @@ const parseSource = (source: string) => {
61
66
  if (comment.toLowerCase().includes(APPROVED_COMMENT.toLowerCase())) {
62
67
  approvedCmtLocs.push(path.value.loc.start.line);
63
68
  }
69
+
70
+ if (
71
+ comment.toLowerCase().includes(APPROVED_CLASSNAME_COMMENT.toLowerCase())
72
+ ) {
73
+ approvedClassnameLocs.push(path.value.loc.start.line);
74
+ }
64
75
  },
65
76
  });
66
77
 
67
78
  const isNotApprovedSnowflakes = (loc: number) =>
68
79
  !approvedCmtLocs.includes(loc);
69
80
 
81
+ const isNotApprovedClassnameSnowflakes = (loc: number) =>
82
+ !approvedClassnameLocs.includes(loc);
83
+
70
84
  if (hasHeroDesignImport) {
71
85
  // Case 1: Using className to customise components
72
86
  // Case 2: Using style object to customise components
73
87
  // Case 3: Using sx object to customise components
74
88
  const customPropLocs = reportCustomProperties(ast, componentList);
75
- classNameLocs = customPropLocs.className.filter(isNotApprovedSnowflakes);
89
+ classNameLocs = customPropLocs.className.filter(
90
+ (loc) =>
91
+ isNotApprovedSnowflakes(loc) && isNotApprovedClassnameSnowflakes(loc)
92
+ );
76
93
  styleLocs = customPropLocs.style.filter(isNotApprovedSnowflakes);
77
94
  sxLocs = customPropLocs.sx.filter(isNotApprovedSnowflakes);
78
95
 
@@ -91,7 +108,7 @@ const parseSource = (source: string) => {
91
108
  styleLocs,
92
109
  sxLocs,
93
110
  styledComponentLocs,
94
- approvedLocs: approvedCmtLocs,
111
+ approvedLocs: [...approvedCmtLocs, ...approvedClassnameLocs],
95
112
  };
96
113
  };
97
114
 
@@ -961,5 +961,12 @@ const HD_COMPONENTS = [
961
961
  ] as const;
962
962
 
963
963
  const APPROVED_COMMENT = '@snowflake-guard/snowflake-approved-by-andromeda';
964
+ const APPROVED_CLASSNAME_COMMENT = '@snowflake-guard/none-css-classname';
964
965
 
965
- export { HD_COMPONENTS, RULESET_MAP, SX_RULESET_MAP, APPROVED_COMMENT };
966
+ export {
967
+ HD_COMPONENTS,
968
+ RULESET_MAP,
969
+ SX_RULESET_MAP,
970
+ APPROVED_COMMENT,
971
+ APPROVED_CLASSNAME_COMMENT,
972
+ };