@financial-times/cp-content-pipeline-client 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/lib/generated/index.d.ts +49 -13
- package/lib/generated/index.js +14 -2
- package/lib/generated/index.js.map +1 -1
- package/package.json +2 -2
- package/queries/article.graphql +10 -0
- package/src/generated/index.ts +26 -12
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,26 @@
|
|
|
6
6
|
* devDependencies
|
|
7
7
|
* @financial-times/cp-content-pipeline-schema bumped from ^0.2.0 to ^0.2.1
|
|
8
8
|
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
* The following workspace dependencies were updated
|
|
12
|
+
* devDependencies
|
|
13
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.3.0 to ^0.3.1
|
|
14
|
+
|
|
15
|
+
## [0.2.5](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.2.4...cp-content-pipeline-client-v0.2.5) (2022-10-18)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* add tag class for Tweets and basic blockquote ([e5f525a](https://github.com/Financial-Times/cp-content-pipeline/commit/e5f525ac3c89128332852a79e1a580505f1741d0))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* The following workspace dependencies were updated
|
|
26
|
+
* devDependencies
|
|
27
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.3.1 to ^0.3.2
|
|
28
|
+
|
|
9
29
|
## [0.2.3](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.2.2...cp-content-pipeline-client-v0.2.3) (2022-10-11)
|
|
10
30
|
|
|
11
31
|
|
package/lib/generated/index.d.ts
CHANGED
|
@@ -89,11 +89,6 @@ export declare type Content = {
|
|
|
89
89
|
export declare type ContentUrlArgs = {
|
|
90
90
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
91
91
|
};
|
|
92
|
-
export declare type FtContent = {
|
|
93
|
-
readonly __typename?: 'FTContent';
|
|
94
|
-
readonly type?: Maybe<Scalars['String']>;
|
|
95
|
-
readonly url?: Maybe<Scalars['String']>;
|
|
96
|
-
};
|
|
97
92
|
export declare type FullBleedTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
98
93
|
readonly __typename?: 'FullBleedTopper';
|
|
99
94
|
readonly backgroundColour?: Maybe<TopperBackgroundColour>;
|
|
@@ -229,7 +224,7 @@ export declare type Recommended = {
|
|
|
229
224
|
readonly teaser: Teaser;
|
|
230
225
|
readonly title: Scalars['String'];
|
|
231
226
|
};
|
|
232
|
-
export declare type Reference =
|
|
227
|
+
export declare type Reference = ImageSet | LayoutImage | Link | PullQuote | Recommended | Tweet;
|
|
233
228
|
export declare type RichText = {
|
|
234
229
|
readonly __typename?: 'RichText';
|
|
235
230
|
readonly raw: Scalars['String'];
|
|
@@ -315,6 +310,11 @@ export declare type TopperWithTheme = {
|
|
|
315
310
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']>;
|
|
316
311
|
readonly layout?: Maybe<Scalars['String']>;
|
|
317
312
|
};
|
|
313
|
+
export declare type Tweet = {
|
|
314
|
+
readonly __typename?: 'Tweet';
|
|
315
|
+
readonly embed?: Maybe<RichText>;
|
|
316
|
+
readonly tweetUrl?: Maybe<Scalars['String']>;
|
|
317
|
+
};
|
|
318
318
|
export declare type ConceptFragment = {
|
|
319
319
|
readonly __typename?: 'Concept';
|
|
320
320
|
readonly id: string;
|
|
@@ -1046,8 +1046,16 @@ export declare type PullQuoteFragment = {
|
|
|
1046
1046
|
readonly text?: string;
|
|
1047
1047
|
readonly source?: string;
|
|
1048
1048
|
};
|
|
1049
|
-
declare type
|
|
1050
|
-
readonly __typename
|
|
1049
|
+
export declare type TweetFragment = {
|
|
1050
|
+
readonly __typename?: 'Tweet';
|
|
1051
|
+
readonly tweetUrl?: string;
|
|
1052
|
+
readonly embed?: {
|
|
1053
|
+
readonly __typename?: 'RichText';
|
|
1054
|
+
readonly structured: {
|
|
1055
|
+
readonly __typename?: 'StructuredContent';
|
|
1056
|
+
readonly tree: any;
|
|
1057
|
+
};
|
|
1058
|
+
};
|
|
1051
1059
|
};
|
|
1052
1060
|
declare type ArticleReferences_ImageSet_Fragment = {
|
|
1053
1061
|
readonly __typename: 'ImageSet';
|
|
@@ -1325,13 +1333,22 @@ declare type ArticleReferences_Recommended_Fragment = {
|
|
|
1325
1333
|
};
|
|
1326
1334
|
};
|
|
1327
1335
|
};
|
|
1328
|
-
|
|
1336
|
+
declare type ArticleReferences_Tweet_Fragment = {
|
|
1337
|
+
readonly __typename: 'Tweet';
|
|
1338
|
+
readonly tweetUrl?: string;
|
|
1339
|
+
readonly embed?: {
|
|
1340
|
+
readonly __typename?: 'RichText';
|
|
1341
|
+
readonly structured: {
|
|
1342
|
+
readonly __typename?: 'StructuredContent';
|
|
1343
|
+
readonly tree: any;
|
|
1344
|
+
};
|
|
1345
|
+
};
|
|
1346
|
+
};
|
|
1347
|
+
export declare type ArticleReferencesFragment = ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_Link_Fragment | ArticleReferences_PullQuote_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment;
|
|
1329
1348
|
export declare type StructuredContentFragment = {
|
|
1330
1349
|
readonly __typename?: 'StructuredContent';
|
|
1331
1350
|
readonly tree: any;
|
|
1332
1351
|
readonly references: ReadonlyArray<{
|
|
1333
|
-
readonly __typename: 'FTContent';
|
|
1334
|
-
} | {
|
|
1335
1352
|
readonly __typename: 'ImageSet';
|
|
1336
1353
|
readonly picture: {
|
|
1337
1354
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -1602,6 +1619,16 @@ export declare type StructuredContentFragment = {
|
|
|
1602
1619
|
readonly isScoop?: boolean;
|
|
1603
1620
|
};
|
|
1604
1621
|
};
|
|
1622
|
+
} | {
|
|
1623
|
+
readonly __typename: 'Tweet';
|
|
1624
|
+
readonly tweetUrl?: string;
|
|
1625
|
+
readonly embed?: {
|
|
1626
|
+
readonly __typename?: 'RichText';
|
|
1627
|
+
readonly structured: {
|
|
1628
|
+
readonly __typename?: 'StructuredContent';
|
|
1629
|
+
readonly tree: any;
|
|
1630
|
+
};
|
|
1631
|
+
};
|
|
1605
1632
|
}>;
|
|
1606
1633
|
};
|
|
1607
1634
|
export declare type ArticleQueryVariables = Exact<{
|
|
@@ -1834,8 +1861,6 @@ export declare type ArticleQuery = {
|
|
|
1834
1861
|
readonly __typename?: 'StructuredContent';
|
|
1835
1862
|
readonly tree: any;
|
|
1836
1863
|
readonly references: ReadonlyArray<{
|
|
1837
|
-
readonly __typename: 'FTContent';
|
|
1838
|
-
} | {
|
|
1839
1864
|
readonly __typename: 'ImageSet';
|
|
1840
1865
|
readonly picture: {
|
|
1841
1866
|
readonly __typename: 'PictureFullBleed';
|
|
@@ -2106,6 +2131,16 @@ export declare type ArticleQuery = {
|
|
|
2106
2131
|
readonly isScoop?: boolean;
|
|
2107
2132
|
};
|
|
2108
2133
|
};
|
|
2134
|
+
} | {
|
|
2135
|
+
readonly __typename: 'Tweet';
|
|
2136
|
+
readonly tweetUrl?: string;
|
|
2137
|
+
readonly embed?: {
|
|
2138
|
+
readonly __typename?: 'RichText';
|
|
2139
|
+
readonly structured: {
|
|
2140
|
+
readonly __typename?: 'StructuredContent';
|
|
2141
|
+
readonly tree: any;
|
|
2142
|
+
};
|
|
2143
|
+
};
|
|
2109
2144
|
}>;
|
|
2110
2145
|
};
|
|
2111
2146
|
};
|
|
@@ -2123,6 +2158,7 @@ export declare const PictureFragmentDoc: import("graphql/language/ast").Document
|
|
|
2123
2158
|
export declare const ImageSetFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2124
2159
|
export declare const LayoutImageFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2125
2160
|
export declare const PullQuoteFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2161
|
+
export declare const TweetFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2126
2162
|
export declare const ArticleReferencesFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2127
2163
|
export declare const StructuredContentFragmentDoc: import("graphql/language/ast").DocumentNode;
|
|
2128
2164
|
export declare const ArticleDocument: import("graphql/language/ast").DocumentNode;
|
package/lib/generated/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.getSdk = exports.ArticleDocument = exports.StructuredContentFragmentDoc = exports.ArticleReferencesFragmentDoc = exports.PullQuoteFragmentDoc = exports.LayoutImageFragmentDoc = exports.ImageSetFragmentDoc = exports.PictureFragmentDoc = exports.RecommendedFragmentDoc = exports.TeaserFragmentDoc = exports.TopperFragmentDoc = exports.ConceptFragmentDoc = exports.StructuredTreeFragmentDoc = exports.TopperImagesFragmentDoc = exports.ImageFragmentDoc = exports.ImageSourceFragmentDoc = exports.TopperBackgroundColour = exports.Source = exports.ImageType = exports.AccessLevel = void 0;
|
|
6
|
+
exports.getSdk = exports.ArticleDocument = exports.StructuredContentFragmentDoc = exports.ArticleReferencesFragmentDoc = exports.TweetFragmentDoc = exports.PullQuoteFragmentDoc = exports.LayoutImageFragmentDoc = exports.ImageSetFragmentDoc = exports.PictureFragmentDoc = exports.RecommendedFragmentDoc = exports.TeaserFragmentDoc = exports.TopperFragmentDoc = exports.ConceptFragmentDoc = exports.StructuredTreeFragmentDoc = exports.TopperImagesFragmentDoc = exports.ImageFragmentDoc = exports.ImageSourceFragmentDoc = exports.TopperBackgroundColour = exports.Source = exports.ImageType = exports.AccessLevel = void 0;
|
|
7
7
|
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
|
8
8
|
var AccessLevel;
|
|
9
9
|
(function (AccessLevel) {
|
|
@@ -302,6 +302,16 @@ exports.PullQuoteFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
302
302
|
source
|
|
303
303
|
}
|
|
304
304
|
`;
|
|
305
|
+
exports.TweetFragmentDoc = (0, graphql_tag_1.default) `
|
|
306
|
+
fragment Tweet on Tweet {
|
|
307
|
+
tweetUrl
|
|
308
|
+
embed {
|
|
309
|
+
structured {
|
|
310
|
+
...StructuredTree
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
${exports.StructuredTreeFragmentDoc}`;
|
|
305
315
|
exports.ArticleReferencesFragmentDoc = (0, graphql_tag_1.default) `
|
|
306
316
|
fragment ArticleReferences on Reference {
|
|
307
317
|
__typename
|
|
@@ -309,11 +319,13 @@ exports.ArticleReferencesFragmentDoc = (0, graphql_tag_1.default) `
|
|
|
309
319
|
...ImageSet
|
|
310
320
|
...LayoutImage
|
|
311
321
|
...PullQuote
|
|
322
|
+
...Tweet
|
|
312
323
|
}
|
|
313
324
|
${exports.RecommendedFragmentDoc}
|
|
314
325
|
${exports.ImageSetFragmentDoc}
|
|
315
326
|
${exports.LayoutImageFragmentDoc}
|
|
316
|
-
${exports.PullQuoteFragmentDoc}
|
|
327
|
+
${exports.PullQuoteFragmentDoc}
|
|
328
|
+
${exports.TweetFragmentDoc}`;
|
|
317
329
|
exports.StructuredContentFragmentDoc = (0, graphql_tag_1.default) `
|
|
318
330
|
fragment StructuredContent on StructuredContent {
|
|
319
331
|
...StructuredTree
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;AAEA,8DAA8B;AAgB9B,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,kCAAmB,CAAA;IACnB,wCAAyB,CAAA;IACzB,wCAAyB,CAAA;AAC3B,CAAC,EALW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAKtB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;AAEA,8DAA8B;AAgB9B,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,kCAAmB,CAAA;IACnB,wCAAyB,CAAA;IACzB,wCAAyB,CAAA;AAC3B,CAAC,EALW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAKtB;AA+HD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;AACjB,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;AAoHD,IAAY,MAGX;AAHD,WAAY,MAAM;IAChB,mCAAyB,CAAA;IACzB,6BAAmB,CAAA;AACrB,CAAC,EAHW,MAAM,GAAN,cAAM,KAAN,cAAM,QAGjB;AAgDD,IAAY,sBAUX;AAVD,WAAY,sBAAsB;IAChC,yCAAe,CAAA;IACf,2CAAiB,CAAA;IACjB,6CAAmB,CAAA;IACnB,2CAAiB,CAAA;IACjB,yCAAe,CAAA;IACf,qCAAW,CAAA;IACX,yCAAe,CAAA;IACf,yCAAe,CAAA;IACf,yCAAe,CAAA;AACjB,CAAC,EAVW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAUjC;AAyGY,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;KAMpC,CAAC;AACO,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;MAW7B,8BAAsB,EAAE,CAAC;AAClB,QAAA,uBAAuB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;MAepC,wBAAgB,EAAE,CAAC;AACZ,QAAA,yBAAyB,GAAG,IAAA,qBAAG,EAAA;;;;KAIvC,CAAC;AACO,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;KAOhC,CAAC;AACO,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiF9B,iCAAyB;EAC7B,0BAAkB;EAClB,8BAAsB,EAAE,CAAC;AACd,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAgC9B,0BAAkB,EAAE,CAAC;AACd,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;;MAOnC,yBAAiB,EAAE,CAAC;AACb,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0E/B,8BAAsB,EAAE,CAAC;AAClB,QAAA,mBAAmB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMhC,0BAAkB,EAAE,CAAC;AACd,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMnC,0BAAkB,EAAE,CAAC;AACd,QAAA,oBAAoB,GAAG,IAAA,qBAAG,EAAA;;;;;KAKlC,CAAC;AACO,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;MAS7B,iCAAyB,EAAE,CAAC;AACrB,QAAA,4BAA4B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;MASzC,8BAAsB;EAC1B,2BAAmB;EACnB,8BAAsB;EACtB,4BAAoB;EACpB,wBAAgB,EAAE,CAAC;AACR,QAAA,4BAA4B,GAAG,IAAA,qBAAG,EAAA;;;;;;;MAOzC,iCAAyB;EAC7B,oCAA4B,EAAE,CAAC;AACpB,QAAA,eAAe,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;MAkB5B,yBAAiB;EACrB,oCAA4B,EAAE,CAAC;AAKjC,MAAM,cAAc,GAAuB,CAAC,MAAM,EAAE,cAAc,EAAE,cAAc,EAAE,EAAE,CAAC,MAAM,EAAE,CAAC;AAEhG,SAAgB,MAAM,CAAC,MAAqB,EAAE,cAAkC,cAAc;IAC5F,OAAO;QACL,OAAO,CAAC,SAAgC,EAAE,cAA2C;YACnF,OAAO,WAAW,CAAC,CAAC,qBAAqB,EAAE,EAAE,CAAC,MAAM,CAAC,OAAO,CAAe,uBAAe,EAAE,SAAS,EAAE,EAAC,GAAG,cAAc,EAAE,GAAG,qBAAqB,EAAC,CAAC,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;QAC7K,CAAC;KACF,CAAC;AACJ,CAAC;AAND,wBAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/cp-content-pipeline-client",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@dotcom-tool-kit/npm": "^2.0.8",
|
|
13
|
-
"@financial-times/cp-content-pipeline-schema": "^0.3.
|
|
13
|
+
"@financial-times/cp-content-pipeline-schema": "^0.3.2",
|
|
14
14
|
"@graphql-codegen/typescript": "^2.7.3",
|
|
15
15
|
"@graphql-codegen/typescript-generic-sdk": "^3.0.1",
|
|
16
16
|
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
|
package/queries/article.graphql
CHANGED
|
@@ -259,12 +259,22 @@ fragment PullQuote on PullQuote {
|
|
|
259
259
|
source
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
+
fragment Tweet on Tweet {
|
|
263
|
+
tweetUrl
|
|
264
|
+
embed {
|
|
265
|
+
structured {
|
|
266
|
+
...StructuredTree
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
262
271
|
fragment ArticleReferences on Reference {
|
|
263
272
|
__typename
|
|
264
273
|
...Recommended
|
|
265
274
|
...ImageSet
|
|
266
275
|
...LayoutImage
|
|
267
276
|
...PullQuote
|
|
277
|
+
...Tweet
|
|
268
278
|
}
|
|
269
279
|
|
|
270
280
|
fragment StructuredContent on StructuredContent {
|
package/src/generated/index.ts
CHANGED
|
@@ -94,12 +94,6 @@ export type ContentUrlArgs = {
|
|
|
94
94
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
-
export type FtContent = {
|
|
98
|
-
readonly __typename?: 'FTContent';
|
|
99
|
-
readonly type?: Maybe<Scalars['String']>;
|
|
100
|
-
readonly url?: Maybe<Scalars['String']>;
|
|
101
|
-
};
|
|
102
|
-
|
|
103
97
|
export type FullBleedTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
104
98
|
readonly __typename?: 'FullBleedTopper';
|
|
105
99
|
readonly backgroundColour?: Maybe<TopperBackgroundColour>;
|
|
@@ -264,7 +258,7 @@ export type Recommended = {
|
|
|
264
258
|
readonly title: Scalars['String'];
|
|
265
259
|
};
|
|
266
260
|
|
|
267
|
-
export type Reference =
|
|
261
|
+
export type Reference = ImageSet | LayoutImage | Link | PullQuote | Recommended | Tweet;
|
|
268
262
|
|
|
269
263
|
export type RichText = {
|
|
270
264
|
readonly __typename?: 'RichText';
|
|
@@ -367,6 +361,12 @@ export type TopperWithTheme = {
|
|
|
367
361
|
readonly layout?: Maybe<Scalars['String']>;
|
|
368
362
|
};
|
|
369
363
|
|
|
364
|
+
export type Tweet = {
|
|
365
|
+
readonly __typename?: 'Tweet';
|
|
366
|
+
readonly embed?: Maybe<RichText>;
|
|
367
|
+
readonly tweetUrl?: Maybe<Scalars['String']>;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
370
|
export type ConceptFragment = { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string };
|
|
371
371
|
|
|
372
372
|
export type StructuredTreeFragment = { readonly __typename?: 'StructuredContent', readonly tree: any };
|
|
@@ -407,7 +407,7 @@ export type RecommendedFragment = { readonly __typename?: 'Recommended', readonl
|
|
|
407
407
|
|
|
408
408
|
export type PullQuoteFragment = { readonly __typename?: 'PullQuote', readonly text?: string, readonly source?: string };
|
|
409
409
|
|
|
410
|
-
type
|
|
410
|
+
export type TweetFragment = { readonly __typename?: 'Tweet', readonly tweetUrl?: string, readonly embed?: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } } };
|
|
411
411
|
|
|
412
412
|
type ArticleReferences_ImageSet_Fragment = { readonly __typename: 'ImageSet', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } };
|
|
413
413
|
|
|
@@ -419,9 +419,11 @@ type ArticleReferences_PullQuote_Fragment = { readonly __typename: 'PullQuote',
|
|
|
419
419
|
|
|
420
420
|
type ArticleReferences_Recommended_Fragment = { readonly __typename: 'Recommended', readonly title: string, readonly teaser: { readonly __typename?: 'Teaser', readonly title?: string, readonly id?: string, readonly url: string, readonly type?: string, readonly publishedDate?: string, readonly firstPublishedDate?: string, readonly metaPrefixText?: string, readonly metaSuffixText?: string, readonly relativeUrl: string, readonly metaLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly metaAltLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly image?: { readonly __typename?: 'Image', readonly url?: string, readonly width?: number, readonly height?: number }, readonly indicators?: { readonly __typename?: 'Indicators', readonly accessLevel?: AccessLevel, readonly isOpinion?: boolean, readonly isColumn?: boolean, readonly isPodcast?: boolean, readonly isEditorsChoice?: boolean, readonly isExclusive?: boolean, readonly isScoop?: boolean } } };
|
|
421
421
|
|
|
422
|
-
|
|
422
|
+
type ArticleReferences_Tweet_Fragment = { readonly __typename: 'Tweet', readonly tweetUrl?: string, readonly embed?: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } } };
|
|
423
|
+
|
|
424
|
+
export type ArticleReferencesFragment = ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_Link_Fragment | ArticleReferences_PullQuote_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment;
|
|
423
425
|
|
|
424
|
-
export type StructuredContentFragment = { readonly __typename?: 'StructuredContent', readonly tree: any, readonly references: ReadonlyArray<{ readonly __typename: '
|
|
426
|
+
export type StructuredContentFragment = { readonly __typename?: 'StructuredContent', readonly tree: any, readonly references: ReadonlyArray<{ readonly __typename: 'ImageSet', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'LayoutImage', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'Link' } | { readonly __typename: 'PullQuote', readonly text?: string, readonly source?: string } | { readonly __typename: 'Recommended', readonly title: string, readonly teaser: { readonly __typename?: 'Teaser', readonly title?: string, readonly id?: string, readonly url: string, readonly type?: string, readonly publishedDate?: string, readonly firstPublishedDate?: string, readonly metaPrefixText?: string, readonly metaSuffixText?: string, readonly relativeUrl: string, readonly metaLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly metaAltLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly image?: { readonly __typename?: 'Image', readonly url?: string, readonly width?: number, readonly height?: number }, readonly indicators?: { readonly __typename?: 'Indicators', readonly accessLevel?: AccessLevel, readonly isOpinion?: boolean, readonly isColumn?: boolean, readonly isPodcast?: boolean, readonly isEditorsChoice?: boolean, readonly isExclusive?: boolean, readonly isScoop?: boolean } } } | { readonly __typename: 'Tweet', readonly tweetUrl?: string, readonly embed?: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } } }> };
|
|
425
427
|
|
|
426
428
|
export type ArticleQueryVariables = Exact<{
|
|
427
429
|
uuid: Scalars['String'];
|
|
@@ -429,7 +431,7 @@ export type ArticleQueryVariables = Exact<{
|
|
|
429
431
|
}>;
|
|
430
432
|
|
|
431
433
|
|
|
432
|
-
export type ArticleQuery = { readonly __typename?: 'Query', readonly content: { readonly __typename?: 'Content', readonly title: string, readonly publishedDate: string, readonly byline?: { readonly __typename?: 'StructuredContent', readonly tree: any }, readonly topper?: { readonly __typename: 'BasicTopper', readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'BrandedTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'FullBleedTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly images?: { readonly __typename?: 'TopperImages', readonly standard?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly square?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly wide?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly fallback?: { readonly __typename?: 'Image', readonly copyright?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'OpinionTopper', readonly headshot?: string, readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly columnist?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'SplitTextTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly images?: { readonly __typename?: 'TopperImages', readonly standard?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly square?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly fallback?: { readonly __typename?: 'Image', readonly copyright?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } }, readonly body: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any, readonly references: ReadonlyArray<{ readonly __typename: 'FTContent' } | { readonly __typename: 'ImageSet', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'LayoutImage', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'Link' } | { readonly __typename: 'PullQuote', readonly text?: string, readonly source?: string } | { readonly __typename: 'Recommended', readonly title: string, readonly teaser: { readonly __typename?: 'Teaser', readonly title?: string, readonly id?: string, readonly url: string, readonly type?: string, readonly publishedDate?: string, readonly firstPublishedDate?: string, readonly metaPrefixText?: string, readonly metaSuffixText?: string, readonly relativeUrl: string, readonly metaLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly metaAltLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly image?: { readonly __typename?: 'Image', readonly url?: string, readonly width?: number, readonly height?: number }, readonly indicators?: { readonly __typename?: 'Indicators', readonly accessLevel?: AccessLevel, readonly isOpinion?: boolean, readonly isColumn?: boolean, readonly isPodcast?: boolean, readonly isEditorsChoice?: boolean, readonly isExclusive?: boolean, readonly isScoop?: boolean } } }> } } } };
|
|
434
|
+
export type ArticleQuery = { readonly __typename?: 'Query', readonly content: { readonly __typename?: 'Content', readonly title: string, readonly publishedDate: string, readonly byline?: { readonly __typename?: 'StructuredContent', readonly tree: any }, readonly topper?: { readonly __typename: 'BasicTopper', readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'BrandedTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'FullBleedTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly images?: { readonly __typename?: 'TopperImages', readonly standard?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly square?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly wide?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly fallback?: { readonly __typename?: 'Image', readonly copyright?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'OpinionTopper', readonly headshot?: string, readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly columnist?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } } | { readonly __typename: 'SplitTextTopper', readonly isLargeHeadline?: boolean, readonly layout?: string, readonly headline: string, readonly backgroundColour?: TopperBackgroundColour, readonly brandConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly images?: { readonly __typename?: 'TopperImages', readonly standard?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly square?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly fallback?: { readonly __typename?: 'Image', readonly copyright?: string, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } }, readonly intro?: { readonly __typename?: 'RichText', readonly source: Source, readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } }, readonly displayConcept?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string } }, readonly body: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any, readonly references: ReadonlyArray<{ readonly __typename: 'ImageSet', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'LayoutImage', readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly small?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly large?: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string, readonly imageType: ImageType, readonly images?: { readonly __typename?: 'PictureImages', readonly standard: { readonly __typename?: 'Image', readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly S?: { readonly __typename?: 'Image', readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> }, readonly L: { readonly __typename?: 'Image', readonly minDisplayWidth?: string, readonly maxDisplayWidth?: string, readonly originalWidth?: number, readonly originalHeight?: number, readonly sources: ReadonlyArray<{ readonly __typename?: 'ImageSource', readonly dpr?: number, readonly width?: number, readonly url: string }> } } } } | { readonly __typename: 'Link' } | { readonly __typename: 'PullQuote', readonly text?: string, readonly source?: string } | { readonly __typename: 'Recommended', readonly title: string, readonly teaser: { readonly __typename?: 'Teaser', readonly title?: string, readonly id?: string, readonly url: string, readonly type?: string, readonly publishedDate?: string, readonly firstPublishedDate?: string, readonly metaPrefixText?: string, readonly metaSuffixText?: string, readonly relativeUrl: string, readonly metaLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly metaAltLink?: { readonly __typename?: 'Concept', readonly id: string, readonly prefLabel: string, readonly url: string, readonly relativeUrl: string }, readonly image?: { readonly __typename?: 'Image', readonly url?: string, readonly width?: number, readonly height?: number }, readonly indicators?: { readonly __typename?: 'Indicators', readonly accessLevel?: AccessLevel, readonly isOpinion?: boolean, readonly isColumn?: boolean, readonly isPodcast?: boolean, readonly isEditorsChoice?: boolean, readonly isExclusive?: boolean, readonly isScoop?: boolean } } } | { readonly __typename: 'Tweet', readonly tweetUrl?: string, readonly embed?: { readonly __typename?: 'RichText', readonly structured: { readonly __typename?: 'StructuredContent', readonly tree: any } } }> } } } };
|
|
433
435
|
|
|
434
436
|
export const ImageSourceFragmentDoc = gql`
|
|
435
437
|
fragment ImageSource on ImageSource {
|
|
@@ -699,6 +701,16 @@ export const PullQuoteFragmentDoc = gql`
|
|
|
699
701
|
source
|
|
700
702
|
}
|
|
701
703
|
`;
|
|
704
|
+
export const TweetFragmentDoc = gql`
|
|
705
|
+
fragment Tweet on Tweet {
|
|
706
|
+
tweetUrl
|
|
707
|
+
embed {
|
|
708
|
+
structured {
|
|
709
|
+
...StructuredTree
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
${StructuredTreeFragmentDoc}`;
|
|
702
714
|
export const ArticleReferencesFragmentDoc = gql`
|
|
703
715
|
fragment ArticleReferences on Reference {
|
|
704
716
|
__typename
|
|
@@ -706,11 +718,13 @@ export const ArticleReferencesFragmentDoc = gql`
|
|
|
706
718
|
...ImageSet
|
|
707
719
|
...LayoutImage
|
|
708
720
|
...PullQuote
|
|
721
|
+
...Tweet
|
|
709
722
|
}
|
|
710
723
|
${RecommendedFragmentDoc}
|
|
711
724
|
${ImageSetFragmentDoc}
|
|
712
725
|
${LayoutImageFragmentDoc}
|
|
713
|
-
${PullQuoteFragmentDoc}
|
|
726
|
+
${PullQuoteFragmentDoc}
|
|
727
|
+
${TweetFragmentDoc}`;
|
|
714
728
|
export const StructuredContentFragmentDoc = gql`
|
|
715
729
|
fragment StructuredContent on StructuredContent {
|
|
716
730
|
...StructuredTree
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../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.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/typescript/lib/lib.es2019.full.d.ts","../../node_modules/graphql/language/kinds.d.ts","../../node_modules/graphql/language/source.d.ts","../../node_modules/graphql/language/tokenKind.d.ts","../../node_modules/graphql/language/ast.d.ts","../../node_modules/graphql-request/dist/types.dom.d.ts","../../node_modules/graphql-request/dist/types.d.ts","../../node_modules/graphql-request/dist/graphql-ws.d.ts","../../node_modules/graphql-request/dist/index.d.ts","../../node_modules/graphql-tag/lib/index.d.ts","./src/generated/index.ts","./src/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/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/accepts/index.d.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/clone-deep/index.d.ts","../../node_modules/@types/cors/index.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/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-matcher-utils/node_modules/pretty-format/build/types.d.ts","../../node_modules/jest-matcher-utils/node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npm-package-arg/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true,"impliedFormat":1},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","impliedFormat":1},{"version":"cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","impliedFormat":1},{"version":"b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","impliedFormat":1},{"version":"0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","impliedFormat":1},{"version":"7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","impliedFormat":1},{"version":"80b8a61568ddd70101eb8efe84c28dcd69a1a350d59967ee01726075e10b066d","impliedFormat":1},{"version":"dbd3f3cb73dd52b5f27bfe04435be66bca81ebddc67481bf55f294b67fcd5ef8","impliedFormat":1},{"version":"e0676cf9276a9c82f5bcdb821616c6b1120baf3ce00e4ed051e1f62abad88957","impliedFormat":1},{"version":"f0c9454c5c49de84d70a513b68d9a9ce7e34a689d558adf96f5e92575198a12f","impliedFormat":1},{"version":"5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","impliedFormat":1},{"version":"2c9f9ef5580b37e012be18b4167df0f2a9611ef5afe589214ebe31cfa9013944","signature":"4ff8d0dd132e4ad97afc5053d75751a22879cb5a3a362eadc25906ab2e7aa888","impliedFormat":1},{"version":"b2dc755fb3cf117882270d6c5a7e4ce076002bc54ab681521e6d8fdab44aa024","signature":"b194ba88f5e7dee6ae36aa540c9b560135af73a0ac99d4d7a82c8fc635a48545","impliedFormat":1},{"version":"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"55c428f339f80f4ede27cfed15aa1124cd583b43ac3feaf59da19c492c9cd6be","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","impliedFormat":1},{"version":"aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","impliedFormat":1},{"version":"acfbb5aaef964e1d441f961a1846197f03241dba3c63b1e4d1903684888ef465","impliedFormat":1},{"version":"09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","impliedFormat":1},{"version":"8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9499ba4dcd1ee0596d8c98d01341bc874840c5291156513bda667fecad54d5be","impliedFormat":1},{"version":"a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","impliedFormat":1},{"version":"cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","impliedFormat":1},{"version":"cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b","impliedFormat":1},{"version":"59104b2e80c588b813d03d3a45f57117ca4601ae3fc216c5ffbcbafc4effc1c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","impliedFormat":1},{"version":"6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","impliedFormat":1},{"version":"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","impliedFormat":1},{"version":"9b6d2a9f610aac2dc6c3fcc45a90dbbde0411dd677bdc956d76f484f397640f1","impliedFormat":1},{"version":"cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","impliedFormat":1},{"version":"a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","impliedFormat":1},{"version":"93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","impliedFormat":1},{"version":"c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","impliedFormat":1},{"version":"5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"49f5c35c2d3bd0d70539fbc37675e0064389e138094146833a8f31d6466c38f0","impliedFormat":1},{"version":"6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","impliedFormat":1},{"version":"951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","impliedFormat":1},{"version":"f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","impliedFormat":1},{"version":"3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","impliedFormat":1},{"version":"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","impliedFormat":1},{"version":"3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","impliedFormat":1},{"version":"8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","impliedFormat":1},{"version":"7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","impliedFormat":1},{"version":"f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","impliedFormat":1},{"version":"462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","impliedFormat":1},{"version":"dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","impliedFormat":1},{"version":"1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","impliedFormat":1},{"version":"8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","impliedFormat":1},{"version":"7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true,"impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5","impliedFormat":1},{"version":"0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"9b5a5e0d06f8646aa2978afb1b5bb5e608649751e9cfc7290e86be42605ba42f","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","impliedFormat":1},{"version":"62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","impliedFormat":1},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","impliedFormat":1},{"version":"f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5","impliedFormat":1},{"version":"515ee54ff10b6503aeabf3419cad1ed1f6e5e3c444f3d4f24279f17cb61be012","affectsGlobalScope":true,"impliedFormat":1},{"version":"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","impliedFormat":1},{"version":"67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","impliedFormat":1},{"version":"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","impliedFormat":1},{"version":"3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","impliedFormat":1},{"version":"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","impliedFormat":1},{"version":"a2b7081f3e83eaa6b7140f1d6210576bfa29d064cbfe482085bf3e4d4c715284","impliedFormat":1},{"version":"4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","impliedFormat":1},{"version":"b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","impliedFormat":1},{"version":"8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","impliedFormat":1},{"version":"ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","impliedFormat":1},{"version":"083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","impliedFormat":1},{"version":"274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","impliedFormat":1},{"version":"6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","impliedFormat":1},{"version":"5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","impliedFormat":1},{"version":"f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","impliedFormat":1},{"version":"0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","impliedFormat":1},{"version":"05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","impliedFormat":1},{"version":"e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","impliedFormat":1},{"version":"d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","impliedFormat":1},{"version":"e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","impliedFormat":1},{"version":"b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","impliedFormat":1},{"version":"b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","impliedFormat":1},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"5e19d765e36e4b673d8eeeec8d8fb65dafb17ba6202cc21e9172bac2bce0fd04","impliedFormat":1}],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":100,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[102,112],[102],[75,102,109],[102,112,113,114,115,116],[102,112,114],[75,102,109,118],[75,102],[72,75,102,109,122,123],[102,119,123,124,127],[72,73,102,109,129],[73,102,109],[102,132],[102,134],[102,135],[102,140,145],[102,139],[102,109],[102,126],[102,125],[57,102],[60,102],[61,66,102],[62,72,73,80,90,101,102],[62,63,72,80,102],[64,102],[65,66,73,81,102],[66,90,98,102],[67,69,72,80,102],[68,102],[69,70,102],[71,72,102],[72,102],[72,73,74,90,101,102],[72,73,74,90,93,102],[102,106],[75,80,90,101,102],[72,73,75,76,80,90,98,101,102],[75,77,90,98,101,102],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,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],[72,78,102],[79,101,102],[69,72,80,90,102],[81,102],[82,102],[60,83,102],[84,100,102,106],[85,102],[86,102],[72,87,88,102],[87,89,102,104],[72,90,91,92,93,102],[90,92,102],[90,91,102],[93,102],[94,102],[72,96,97,102],[96,97,102],[66,80,90,98,102],[99,102],[80,100,102],[61,75,86,101,102],[66,102],[90,102,103],[102,104],[102,105],[61,66,72,74,83,90,101,102,104,106],[90,102,107],[102,158],[102,159],[102,166],[102,161,163,164,165],[75,102,109,126],[102,173],[102,109,177,178,179,180,181,182,183,184,185,186,187],[102,176,177,186],[102,177,186],[102,170,176,177,186],[102,177],[66,102,176,186],[102,176,177,178,179,180,181,182,183,184,185,187],[66,102,109,172,173,174,175,188],[72,75,77,90,98,101,102,107,109],[102,191],[51,102],[50,51,52,102],[49,50,102],[49,54,102],[46,47,48,102],[102,137,144],[102,138,141],[102,138,141,142,143],[102,140],[50,53,54,102],[53,55,102],[49,50,53],[55]],"referencedMap":[[114,1],[112,2],[110,3],[111,2],[117,4],[113,1],[115,5],[116,1],[119,6],[120,2],[118,3],[121,7],[124,8],[128,9],[130,10],[131,11],[133,12],[134,2],[135,13],[136,14],[147,15],[146,16],[148,2],[149,2],[150,2],[151,2],[152,17],[153,2],[125,18],[126,19],[129,2],[154,2],[57,20],[58,20],[60,21],[61,22],[62,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,30],[71,31],[72,32],[73,33],[74,34],[59,35],[108,2],[75,36],[76,37],[77,38],[109,39],[78,40],[79,41],[80,42],[81,43],[82,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,49],[89,50],[90,51],[92,52],[91,53],[93,54],[94,55],[95,2],[96,56],[97,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[155,2],[156,2],[157,2],[159,68],[158,69],[160,2],[161,2],[162,2],[123,2],[122,2],[167,70],[163,2],[166,71],[168,2],[169,2],[165,2],[127,72],[170,2],[171,2],[172,2],[174,73],[132,2],[188,74],[187,75],[178,76],[179,77],[180,77],[181,76],[182,76],[183,76],[184,78],[177,79],[185,75],[186,80],[176,2],[189,81],[190,82],[191,2],[192,83],[175,2],[137,2],[164,2],[52,84],[53,85],[51,86],[50,2],[54,87],[49,88],[46,2],[47,2],[48,2],[145,89],[138,2],[142,90],[144,91],[143,90],[141,92],[140,16],[139,2],[173,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[55,93],[56,94]],"exportedModulesMap":[[114,1],[112,2],[110,3],[111,2],[117,4],[113,1],[115,5],[116,1],[119,6],[120,2],[118,3],[121,7],[124,8],[128,9],[130,10],[131,11],[133,12],[134,2],[135,13],[136,14],[147,15],[146,16],[148,2],[149,2],[150,2],[151,2],[152,17],[153,2],[125,18],[126,19],[129,2],[154,2],[57,20],[58,20],[60,21],[61,22],[62,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,30],[71,31],[72,32],[73,33],[74,34],[59,35],[108,2],[75,36],[76,37],[77,38],[109,39],[78,40],[79,41],[80,42],[81,43],[82,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,49],[89,50],[90,51],[92,52],[91,53],[93,54],[94,55],[95,2],[96,56],[97,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[155,2],[156,2],[157,2],[159,68],[158,69],[160,2],[161,2],[162,2],[123,2],[122,2],[167,70],[163,2],[166,71],[168,2],[169,2],[165,2],[127,72],[170,2],[171,2],[172,2],[174,73],[132,2],[188,74],[187,75],[178,76],[179,77],[180,77],[181,76],[182,76],[183,76],[184,78],[177,79],[185,75],[186,80],[176,2],[189,81],[190,82],[191,2],[192,83],[175,2],[137,2],[164,2],[52,84],[53,85],[51,86],[50,2],[54,87],[49,88],[46,2],[47,2],[48,2],[145,89],[138,2],[142,90],[144,91],[143,90],[141,92],[140,16],[139,2],[173,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[55,95],[56,96]],"semanticDiagnosticsPerFile":[114,112,110,111,117,113,115,116,119,120,118,121,124,128,130,131,133,134,135,136,147,146,148,149,150,151,152,153,125,126,129,154,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,108,75,76,77,109,78,79,80,81,82,83,84,85,86,87,88,89,90,92,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,155,156,157,159,158,160,161,162,123,122,167,163,166,168,169,165,127,170,171,172,174,132,188,187,178,179,180,181,182,183,184,177,185,186,176,189,190,191,192,175,137,164,52,53,51,50,54,49,46,47,48,145,138,142,144,143,141,140,139,173,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,45,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,55,56]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../../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.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/typescript/lib/lib.es2019.full.d.ts","../../node_modules/graphql/language/kinds.d.ts","../../node_modules/graphql/language/source.d.ts","../../node_modules/graphql/language/tokenKind.d.ts","../../node_modules/graphql/language/ast.d.ts","../../node_modules/graphql-request/dist/types.dom.d.ts","../../node_modules/graphql-request/dist/types.d.ts","../../node_modules/graphql-request/dist/graphql-ws.d.ts","../../node_modules/graphql-request/dist/index.d.ts","../../node_modules/graphql-tag/lib/index.d.ts","./src/generated/index.ts","./src/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.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/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/accepts/index.d.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/clone-deep/index.d.ts","../../node_modules/@types/cors/index.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/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-matcher-utils/node_modules/pretty-format/build/types.d.ts","../../node_modules/jest-matcher-utils/node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-matcher-utils/node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../types/next-metrics/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npm-package-arg/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true,"impliedFormat":1},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","impliedFormat":1},{"version":"cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","impliedFormat":1},{"version":"b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","impliedFormat":1},{"version":"0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","impliedFormat":1},{"version":"7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","impliedFormat":1},{"version":"80b8a61568ddd70101eb8efe84c28dcd69a1a350d59967ee01726075e10b066d","impliedFormat":1},{"version":"dbd3f3cb73dd52b5f27bfe04435be66bca81ebddc67481bf55f294b67fcd5ef8","impliedFormat":1},{"version":"e0676cf9276a9c82f5bcdb821616c6b1120baf3ce00e4ed051e1f62abad88957","impliedFormat":1},{"version":"f0c9454c5c49de84d70a513b68d9a9ce7e34a689d558adf96f5e92575198a12f","impliedFormat":1},{"version":"5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","impliedFormat":1},{"version":"5cfb58da6c0cb72d0e3206339c7e9fcedda9bc83c4e83c2b1928bfcf60f4b65f","signature":"20d7ba2ae84eaf3750ca9e285ad8f868cf012de1938408df143f360de573bfbc","impliedFormat":1},{"version":"b2dc755fb3cf117882270d6c5a7e4ce076002bc54ab681521e6d8fdab44aa024","signature":"b194ba88f5e7dee6ae36aa540c9b560135af73a0ac99d4d7a82c8fc635a48545","impliedFormat":1},{"version":"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"55c428f339f80f4ede27cfed15aa1124cd583b43ac3feaf59da19c492c9cd6be","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","impliedFormat":1},{"version":"aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","impliedFormat":1},{"version":"acfbb5aaef964e1d441f961a1846197f03241dba3c63b1e4d1903684888ef465","impliedFormat":1},{"version":"09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","impliedFormat":1},{"version":"8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9499ba4dcd1ee0596d8c98d01341bc874840c5291156513bda667fecad54d5be","impliedFormat":1},{"version":"a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","impliedFormat":1},{"version":"cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","impliedFormat":1},{"version":"cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b","impliedFormat":1},{"version":"59104b2e80c588b813d03d3a45f57117ca4601ae3fc216c5ffbcbafc4effc1c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","impliedFormat":1},{"version":"6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","impliedFormat":1},{"version":"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","impliedFormat":1},{"version":"9b6d2a9f610aac2dc6c3fcc45a90dbbde0411dd677bdc956d76f484f397640f1","impliedFormat":1},{"version":"cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","impliedFormat":1},{"version":"a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","impliedFormat":1},{"version":"93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","impliedFormat":1},{"version":"c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","impliedFormat":1},{"version":"5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"49f5c35c2d3bd0d70539fbc37675e0064389e138094146833a8f31d6466c38f0","impliedFormat":1},{"version":"6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","impliedFormat":1},{"version":"951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","impliedFormat":1},{"version":"f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","impliedFormat":1},{"version":"3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","impliedFormat":1},{"version":"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","impliedFormat":1},{"version":"3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","impliedFormat":1},{"version":"8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","impliedFormat":1},{"version":"7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","impliedFormat":1},{"version":"f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","impliedFormat":1},{"version":"462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","impliedFormat":1},{"version":"dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","impliedFormat":1},{"version":"1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","impliedFormat":1},{"version":"8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","impliedFormat":1},{"version":"7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true,"impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5","impliedFormat":1},{"version":"0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"9c957685bf0f707c8d278a0cfcd36aae3fc78a7f6ba5c9d94c879d9cd33c4547","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"9b5a5e0d06f8646aa2978afb1b5bb5e608649751e9cfc7290e86be42605ba42f","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","impliedFormat":1},{"version":"62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","impliedFormat":1},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","impliedFormat":1},{"version":"f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5","impliedFormat":1},{"version":"515ee54ff10b6503aeabf3419cad1ed1f6e5e3c444f3d4f24279f17cb61be012","affectsGlobalScope":true,"impliedFormat":1},{"version":"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","impliedFormat":1},{"version":"67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","impliedFormat":1},{"version":"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","impliedFormat":1},{"version":"3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","impliedFormat":1},{"version":"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","impliedFormat":1},{"version":"a2b7081f3e83eaa6b7140f1d6210576bfa29d064cbfe482085bf3e4d4c715284","impliedFormat":1},{"version":"4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","impliedFormat":1},{"version":"b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","impliedFormat":1},{"version":"8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","impliedFormat":1},{"version":"ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","impliedFormat":1},{"version":"083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","impliedFormat":1},{"version":"274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","impliedFormat":1},{"version":"6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","impliedFormat":1},{"version":"5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","impliedFormat":1},{"version":"f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","impliedFormat":1},{"version":"0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","impliedFormat":1},{"version":"05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","impliedFormat":1},{"version":"e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","impliedFormat":1},{"version":"d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","impliedFormat":1},{"version":"e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","impliedFormat":1},{"version":"b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","impliedFormat":1},{"version":"b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","impliedFormat":1},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"5e19d765e36e4b673d8eeeec8d8fb65dafb17ba6202cc21e9172bac2bce0fd04","impliedFormat":1}],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":100,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[102,112],[102],[75,102,109],[102,112,113,114,115,116],[102,112,114],[75,102,109,118],[75,102],[72,75,102,109,122,123],[102,119,123,124,127],[72,73,102,109,129],[73,102,109],[102,132],[102,134],[102,135],[102,140,145],[102,139],[102,109],[102,126],[102,125],[57,102],[60,102],[61,66,102],[62,72,73,80,90,101,102],[62,63,72,80,102],[64,102],[65,66,73,81,102],[66,90,98,102],[67,69,72,80,102],[68,102],[69,70,102],[71,72,102],[72,102],[72,73,74,90,101,102],[72,73,74,90,93,102],[102,106],[75,80,90,101,102],[72,73,75,76,80,90,98,101,102],[75,77,90,98,101,102],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,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],[72,78,102],[79,101,102],[69,72,80,90,102],[81,102],[82,102],[60,83,102],[84,100,102,106],[85,102],[86,102],[72,87,88,102],[87,89,102,104],[72,90,91,92,93,102],[90,92,102],[90,91,102],[93,102],[94,102],[72,96,97,102],[96,97,102],[66,80,90,98,102],[99,102],[80,100,102],[61,75,86,101,102],[66,102],[90,102,103],[102,104],[102,105],[61,66,72,74,83,90,101,102,104,106],[90,102,107],[102,159],[102,160],[102,167],[102,162,164,165,166],[75,102,109,126],[102,174],[102,109,178,179,180,181,182,183,184,185,186,187,188],[102,177,178,187],[102,178,187],[102,171,177,178,187],[102,178],[66,102,177,187],[102,177,178,179,180,181,182,183,184,185,186,188],[66,102,109,173,174,175,176,189],[72,75,77,90,98,101,102,107,109],[102,192],[51,102],[50,51,52,102],[49,50,102],[49,54,102],[46,47,48,102],[102,137,144],[102,138,141],[102,138,141,142,143],[102,140],[50,53,54,102],[53,55,102],[49,50,53],[55]],"referencedMap":[[114,1],[112,2],[110,3],[111,2],[117,4],[113,1],[115,5],[116,1],[119,6],[120,2],[118,3],[121,7],[124,8],[128,9],[130,10],[131,11],[133,12],[134,2],[135,13],[136,14],[147,15],[146,16],[148,2],[149,2],[150,2],[151,2],[152,17],[153,2],[125,18],[126,19],[129,2],[154,2],[57,20],[58,20],[60,21],[61,22],[62,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,30],[71,31],[72,32],[73,33],[74,34],[59,35],[108,2],[75,36],[76,37],[77,38],[109,39],[78,40],[79,41],[80,42],[81,43],[82,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,49],[89,50],[90,51],[92,52],[91,53],[93,54],[94,55],[95,2],[96,56],[97,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[156,2],[157,2],[158,2],[160,68],[159,69],[161,2],[162,2],[163,2],[123,2],[122,2],[168,70],[164,2],[167,71],[169,2],[170,2],[166,2],[127,72],[171,2],[172,2],[173,2],[175,73],[132,2],[189,74],[188,75],[179,76],[180,77],[181,77],[182,76],[183,76],[184,76],[185,78],[178,79],[186,75],[187,80],[177,2],[190,81],[191,82],[192,2],[193,83],[176,2],[137,2],[165,2],[52,84],[53,85],[51,86],[50,2],[54,87],[49,88],[46,2],[47,2],[48,2],[145,89],[138,2],[142,90],[144,91],[143,90],[141,92],[140,16],[139,2],[174,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[55,93],[56,94],[155,2]],"exportedModulesMap":[[114,1],[112,2],[110,3],[111,2],[117,4],[113,1],[115,5],[116,1],[119,6],[120,2],[118,3],[121,7],[124,8],[128,9],[130,10],[131,11],[133,12],[134,2],[135,13],[136,14],[147,15],[146,16],[148,2],[149,2],[150,2],[151,2],[152,17],[153,2],[125,18],[126,19],[129,2],[154,2],[57,20],[58,20],[60,21],[61,22],[62,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,30],[71,31],[72,32],[73,33],[74,34],[59,35],[108,2],[75,36],[76,37],[77,38],[109,39],[78,40],[79,41],[80,42],[81,43],[82,44],[83,45],[84,46],[85,47],[86,48],[87,49],[88,49],[89,50],[90,51],[92,52],[91,53],[93,54],[94,55],[95,2],[96,56],[97,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[156,2],[157,2],[158,2],[160,68],[159,69],[161,2],[162,2],[163,2],[123,2],[122,2],[168,70],[164,2],[167,71],[169,2],[170,2],[166,2],[127,72],[171,2],[172,2],[173,2],[175,73],[132,2],[189,74],[188,75],[179,76],[180,77],[181,77],[182,76],[183,76],[184,76],[185,78],[178,79],[186,75],[187,80],[177,2],[190,81],[191,82],[192,2],[193,83],[176,2],[137,2],[165,2],[52,84],[53,85],[51,86],[50,2],[54,87],[49,88],[46,2],[47,2],[48,2],[145,89],[138,2],[142,90],[144,91],[143,90],[141,92],[140,16],[139,2],[174,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[45,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[44,2],[11,2],[10,2],[55,95],[56,96],[155,2]],"semanticDiagnosticsPerFile":[114,112,110,111,117,113,115,116,119,120,118,121,124,128,130,131,133,134,135,136,147,146,148,149,150,151,152,153,125,126,129,154,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,108,75,76,77,109,78,79,80,81,82,83,84,85,86,87,88,89,90,92,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,156,157,158,160,159,161,162,163,123,122,168,164,167,169,170,166,127,171,172,173,175,132,189,188,179,180,181,182,183,184,185,178,186,187,177,190,191,192,193,176,137,165,52,53,51,50,54,49,46,47,48,145,138,142,144,143,141,140,139,174,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,45,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,55,56,155]},"version":"4.7.4"}
|