@financial-times/cp-content-pipeline-client 0.6.12 → 0.6.13
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 +14 -0
- package/lib/generated/index.d.ts +16 -10
- package/lib/generated/index.js +1 -1
- package/lib/generated/index.js.map +1 -1
- package/lib/schema-version.d.ts +1 -1
- package/lib/schema-version.js +1 -1
- package/package.json +2 -2
- package/queries/article.graphql +1 -1
- package/src/generated/index.ts +18 -11
- package/src/schema-version.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -174,6 +174,20 @@
|
|
|
174
174
|
* devDependencies
|
|
175
175
|
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.9 to ^0.7.10
|
|
176
176
|
|
|
177
|
+
## [0.6.13](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.12...cp-content-pipeline-client-v0.6.13) (2023-06-13)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Bug Fixes
|
|
181
|
+
|
|
182
|
+
* disambiguate video reference type with video content type ([6fb4b0d](https://github.com/Financial-Times/cp-content-pipeline/commit/6fb4b0d97cff4fc871e0ddd1627e7848135e846e))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Dependencies
|
|
186
|
+
|
|
187
|
+
* The following workspace dependencies were updated
|
|
188
|
+
* devDependencies
|
|
189
|
+
* @financial-times/cp-content-pipeline-schema bumped from ^0.7.11 to ^0.7.12
|
|
190
|
+
|
|
177
191
|
## [0.6.12](https://github.com/Financial-Times/cp-content-pipeline/compare/cp-content-pipeline-client-v0.6.11...cp-content-pipeline-client-v0.6.12) (2023-05-25)
|
|
178
192
|
|
|
179
193
|
|
package/lib/generated/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export type Scalars = {
|
|
|
21
21
|
Int: number;
|
|
22
22
|
Float: number;
|
|
23
23
|
AccessLevel: 'premium' | 'subscribed' | 'registered' | 'free';
|
|
24
|
+
ContentType: 'Article' | 'Video' | 'Audio' | 'LiveBlogPackage' | 'LiveBlogPost' | 'ContentPackage' | 'Content' | 'MediaResource';
|
|
24
25
|
ImageFormat: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit';
|
|
25
26
|
ImageType: 'image' | 'graphic';
|
|
26
27
|
JSON: any;
|
|
@@ -51,7 +52,7 @@ export type Article = Content & {
|
|
|
51
52
|
readonly teaser?: Maybe<Teaser>;
|
|
52
53
|
readonly title: Scalars['String'];
|
|
53
54
|
readonly topper?: Maybe<Topper>;
|
|
54
|
-
readonly type: Scalars['
|
|
55
|
+
readonly type: Scalars['ContentType'];
|
|
55
56
|
readonly url: Scalars['String'];
|
|
56
57
|
};
|
|
57
58
|
export type ArticleUrlArgs = {
|
|
@@ -74,7 +75,7 @@ export type Audio = Content & {
|
|
|
74
75
|
readonly teaser?: Maybe<Teaser>;
|
|
75
76
|
readonly title: Scalars['String'];
|
|
76
77
|
readonly topper?: Maybe<Topper>;
|
|
77
|
-
readonly type: Scalars['
|
|
78
|
+
readonly type: Scalars['ContentType'];
|
|
78
79
|
readonly url: Scalars['String'];
|
|
79
80
|
};
|
|
80
81
|
export type AudioUrlArgs = {
|
|
@@ -126,7 +127,7 @@ export type Content = {
|
|
|
126
127
|
readonly teaser?: Maybe<Teaser>;
|
|
127
128
|
readonly title: Scalars['String'];
|
|
128
129
|
readonly topper?: Maybe<Topper>;
|
|
129
|
-
readonly type: Scalars['
|
|
130
|
+
readonly type: Scalars['ContentType'];
|
|
130
131
|
readonly url: Scalars['String'];
|
|
131
132
|
};
|
|
132
133
|
export type ContentUrlArgs = {
|
|
@@ -150,7 +151,7 @@ export type ContentPackage = Content & {
|
|
|
150
151
|
readonly teaser?: Maybe<Teaser>;
|
|
151
152
|
readonly title: Scalars['String'];
|
|
152
153
|
readonly topper?: Maybe<Topper>;
|
|
153
|
-
readonly type: Scalars['
|
|
154
|
+
readonly type: Scalars['ContentType'];
|
|
154
155
|
readonly url: Scalars['String'];
|
|
155
156
|
};
|
|
156
157
|
export type ContentPackageUrlArgs = {
|
|
@@ -341,7 +342,7 @@ export type LiveBlogPackage = Content & {
|
|
|
341
342
|
readonly teaser?: Maybe<Teaser>;
|
|
342
343
|
readonly title: Scalars['String'];
|
|
343
344
|
readonly topper?: Maybe<Topper>;
|
|
344
|
-
readonly type: Scalars['
|
|
345
|
+
readonly type: Scalars['ContentType'];
|
|
345
346
|
readonly url: Scalars['String'];
|
|
346
347
|
};
|
|
347
348
|
export type LiveBlogPackageUrlArgs = {
|
|
@@ -364,7 +365,7 @@ export type LiveBlogPost = Content & {
|
|
|
364
365
|
readonly teaser?: Maybe<Teaser>;
|
|
365
366
|
readonly title: Scalars['String'];
|
|
366
367
|
readonly topper?: Maybe<Topper>;
|
|
367
|
-
readonly type: Scalars['
|
|
368
|
+
readonly type: Scalars['ContentType'];
|
|
368
369
|
readonly url: Scalars['String'];
|
|
369
370
|
};
|
|
370
371
|
export type LiveBlogPostUrlArgs = {
|
|
@@ -517,7 +518,7 @@ export type Tweet = Reference & {
|
|
|
517
518
|
readonly html?: Maybe<Scalars['String']>;
|
|
518
519
|
readonly type: Scalars['String'];
|
|
519
520
|
};
|
|
520
|
-
export type Video = Content &
|
|
521
|
+
export type Video = Content & {
|
|
521
522
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
522
523
|
readonly altTitle?: Maybe<AltTitle>;
|
|
523
524
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -534,12 +535,17 @@ export type Video = Content & Reference & {
|
|
|
534
535
|
readonly teaser?: Maybe<Teaser>;
|
|
535
536
|
readonly title: Scalars['String'];
|
|
536
537
|
readonly topper?: Maybe<Topper>;
|
|
537
|
-
readonly type: Scalars['
|
|
538
|
+
readonly type: Scalars['ContentType'];
|
|
538
539
|
readonly url: Scalars['String'];
|
|
539
540
|
};
|
|
540
541
|
export type VideoUrlArgs = {
|
|
541
542
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
542
543
|
};
|
|
544
|
+
export type VideoReference = Reference & {
|
|
545
|
+
readonly id: Scalars['String'];
|
|
546
|
+
readonly title: Scalars['String'];
|
|
547
|
+
readonly type: Scalars['String'];
|
|
548
|
+
};
|
|
543
549
|
export type ConceptFragment = {
|
|
544
550
|
readonly id: string;
|
|
545
551
|
readonly prefLabel: string;
|
|
@@ -4247,12 +4253,12 @@ type ArticleReferences_Tweet_Fragment = {
|
|
|
4247
4253
|
readonly type: string;
|
|
4248
4254
|
readonly html?: string | null;
|
|
4249
4255
|
};
|
|
4250
|
-
type
|
|
4256
|
+
type ArticleReferences_VideoReference_Fragment = {
|
|
4251
4257
|
readonly type: string;
|
|
4252
4258
|
readonly title: string;
|
|
4253
4259
|
readonly id: string;
|
|
4254
4260
|
};
|
|
4255
|
-
export type ArticleReferencesFragment = ArticleReferences_Flourish_Fragment | ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_MainImage_Fragment | ArticleReferences_RawImage_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment |
|
|
4261
|
+
export type ArticleReferencesFragment = ArticleReferences_Flourish_Fragment | ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_MainImage_Fragment | ArticleReferences_RawImage_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment | ArticleReferences_VideoReference_Fragment;
|
|
4256
4262
|
export type StructuredContentFragment = {
|
|
4257
4263
|
readonly tree: any;
|
|
4258
4264
|
readonly references: ReadonlyArray<{
|
package/lib/generated/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;AAEA,8DAA8B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/generated/index.ts"],"names":[],"mappings":";;;;;;AAEA,8DAA8B;AAkuBjB,QAAA,yBAAyB,GAAG,IAAA,qBAAG,EAAA;;;;KAIvC,CAAC;AACO,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;;;MAO7B,iCAAyB,EAAE,CAAC;AACrB,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;KAWhC,CAAC;AACO,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;KAMpC,CAAC;AACO,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;KAU9B,CAAC;AACO,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA0E9B,wBAAgB;EACpB,0BAAkB;EAClB,8BAAsB;EACtB,wBAAgB,EAAE,CAAC;AACR,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiC9B,0BAAkB,EAAE,CAAC;AACd,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMnC,yBAAiB,EAAE,CAAC;AACb,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyD/B,wBAAgB;EACpB,8BAAsB,EAAE,CAAC;AACd,QAAA,mBAAmB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMhC,0BAAkB,EAAE,CAAC;AACd,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMnC,0BAAkB,EAAE,CAAC;AACd,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;KAI9B,CAAC;AACO,QAAA,gBAAgB,GAAG,IAAA,qBAAG,EAAA;;;;;KAK9B,CAAC;AACO,QAAA,mBAAmB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;KAQjC,CAAC;AACO,QAAA,mBAAmB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMhC,wBAAgB,EAAE,CAAC;AACZ,QAAA,oBAAoB,GAAG,IAAA,qBAAG,EAAA;;;;;;MAMjC,0BAAkB,EAAE,CAAC;AACd,QAAA,4BAA4B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;MAYzC,8BAAsB;EAC1B,2BAAmB;EACnB,8BAAsB;EACtB,wBAAgB;EAChB,wBAAgB;EAChB,2BAAmB;EACnB,2BAAmB;EACnB,4BAAoB,EAAE,CAAC;AACZ,QAAA,4BAA4B,GAAG,IAAA,qBAAG,EAAA;;;;;;;MAOzC,iCAAyB;EAC7B,oCAA4B,EAAE,CAAC;AACpB,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;KAK/B,CAAC;AACO,QAAA,kBAAkB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2B/B,yBAAiB;EACrB,oCAA4B;EAC5B,0BAAkB;EAClB,yBAAiB,EAAE,CAAC;AACT,QAAA,eAAe,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;MAkB5B,0BAAkB;EACtB,yBAAiB,EAAE,CAAC;AAKtB,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/lib/schema-version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.7.
|
|
1
|
+
export declare const version = "0.7.12";
|
package/lib/schema-version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/cp-content-pipeline-client",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@dotcom-tool-kit/npm": "^3.1.0",
|
|
13
13
|
"@financial-times/content-tree": "github:Financial-Times/content-tree#5983f6eacd67a5d4c8dd87660ebb217eecab4761",
|
|
14
|
-
"@financial-times/cp-content-pipeline-schema": "^0.7.
|
|
14
|
+
"@financial-times/cp-content-pipeline-schema": "^0.7.12",
|
|
15
15
|
"@graphql-codegen/typescript": "^2.7.3",
|
|
16
16
|
"@graphql-codegen/typescript-generic-sdk": "^3.0.1",
|
|
17
17
|
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
|
package/queries/article.graphql
CHANGED
package/src/generated/index.ts
CHANGED
|
@@ -14,6 +14,7 @@ export type Scalars = {
|
|
|
14
14
|
Int: number;
|
|
15
15
|
Float: number;
|
|
16
16
|
AccessLevel: 'premium' | 'subscribed' | 'registered' | 'free';
|
|
17
|
+
ContentType: 'Article' | 'Video' | 'Audio' | 'LiveBlogPackage' | 'LiveBlogPost' | 'ContentPackage' | 'Content' | 'MediaResource';
|
|
17
18
|
ImageFormat: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit';
|
|
18
19
|
ImageType: 'image' | 'graphic';
|
|
19
20
|
JSON: any;
|
|
@@ -47,7 +48,7 @@ export type Article = Content & {
|
|
|
47
48
|
readonly teaser?: Maybe<Teaser>;
|
|
48
49
|
readonly title: Scalars['String'];
|
|
49
50
|
readonly topper?: Maybe<Topper>;
|
|
50
|
-
readonly type: Scalars['
|
|
51
|
+
readonly type: Scalars['ContentType'];
|
|
51
52
|
readonly url: Scalars['String'];
|
|
52
53
|
};
|
|
53
54
|
|
|
@@ -73,7 +74,7 @@ export type Audio = Content & {
|
|
|
73
74
|
readonly teaser?: Maybe<Teaser>;
|
|
74
75
|
readonly title: Scalars['String'];
|
|
75
76
|
readonly topper?: Maybe<Topper>;
|
|
76
|
-
readonly type: Scalars['
|
|
77
|
+
readonly type: Scalars['ContentType'];
|
|
77
78
|
readonly url: Scalars['String'];
|
|
78
79
|
};
|
|
79
80
|
|
|
@@ -133,7 +134,7 @@ export type Content = {
|
|
|
133
134
|
readonly teaser?: Maybe<Teaser>;
|
|
134
135
|
readonly title: Scalars['String'];
|
|
135
136
|
readonly topper?: Maybe<Topper>;
|
|
136
|
-
readonly type: Scalars['
|
|
137
|
+
readonly type: Scalars['ContentType'];
|
|
137
138
|
readonly url: Scalars['String'];
|
|
138
139
|
};
|
|
139
140
|
|
|
@@ -160,7 +161,7 @@ export type ContentPackage = Content & {
|
|
|
160
161
|
readonly teaser?: Maybe<Teaser>;
|
|
161
162
|
readonly title: Scalars['String'];
|
|
162
163
|
readonly topper?: Maybe<Topper>;
|
|
163
|
-
readonly type: Scalars['
|
|
164
|
+
readonly type: Scalars['ContentType'];
|
|
164
165
|
readonly url: Scalars['String'];
|
|
165
166
|
};
|
|
166
167
|
|
|
@@ -386,7 +387,7 @@ export type LiveBlogPackage = Content & {
|
|
|
386
387
|
readonly teaser?: Maybe<Teaser>;
|
|
387
388
|
readonly title: Scalars['String'];
|
|
388
389
|
readonly topper?: Maybe<Topper>;
|
|
389
|
-
readonly type: Scalars['
|
|
390
|
+
readonly type: Scalars['ContentType'];
|
|
390
391
|
readonly url: Scalars['String'];
|
|
391
392
|
};
|
|
392
393
|
|
|
@@ -412,7 +413,7 @@ export type LiveBlogPost = Content & {
|
|
|
412
413
|
readonly teaser?: Maybe<Teaser>;
|
|
413
414
|
readonly title: Scalars['String'];
|
|
414
415
|
readonly topper?: Maybe<Topper>;
|
|
415
|
-
readonly type: Scalars['
|
|
416
|
+
readonly type: Scalars['ContentType'];
|
|
416
417
|
readonly url: Scalars['String'];
|
|
417
418
|
};
|
|
418
419
|
|
|
@@ -599,7 +600,7 @@ export type Tweet = Reference & {
|
|
|
599
600
|
readonly type: Scalars['String'];
|
|
600
601
|
};
|
|
601
602
|
|
|
602
|
-
export type Video = Content &
|
|
603
|
+
export type Video = Content & {
|
|
603
604
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
604
605
|
readonly altTitle?: Maybe<AltTitle>;
|
|
605
606
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
@@ -616,7 +617,7 @@ export type Video = Content & Reference & {
|
|
|
616
617
|
readonly teaser?: Maybe<Teaser>;
|
|
617
618
|
readonly title: Scalars['String'];
|
|
618
619
|
readonly topper?: Maybe<Topper>;
|
|
619
|
-
readonly type: Scalars['
|
|
620
|
+
readonly type: Scalars['ContentType'];
|
|
620
621
|
readonly url: Scalars['String'];
|
|
621
622
|
};
|
|
622
623
|
|
|
@@ -625,6 +626,12 @@ export type VideoUrlArgs = {
|
|
|
625
626
|
relative?: InputMaybe<Scalars['Boolean']>;
|
|
626
627
|
};
|
|
627
628
|
|
|
629
|
+
export type VideoReference = Reference & {
|
|
630
|
+
readonly id: Scalars['String'];
|
|
631
|
+
readonly title: Scalars['String'];
|
|
632
|
+
readonly type: Scalars['String'];
|
|
633
|
+
};
|
|
634
|
+
|
|
628
635
|
export type ConceptFragment = { readonly id: string, readonly prefLabel: string, readonly types: ReadonlyArray<string>, readonly type: string, readonly directType?: string | null, readonly predicate: string, readonly url: string, readonly relativeUrl: string };
|
|
629
636
|
|
|
630
637
|
export type StructuredTreeFragment = { readonly tree: any };
|
|
@@ -703,9 +710,9 @@ type ArticleReferences_Recommended_Fragment = { readonly type: string, readonly
|
|
|
703
710
|
|
|
704
711
|
type ArticleReferences_Tweet_Fragment = { readonly type: string, readonly html?: string | null };
|
|
705
712
|
|
|
706
|
-
type
|
|
713
|
+
type ArticleReferences_VideoReference_Fragment = { readonly type: string, readonly title: string, readonly id: string };
|
|
707
714
|
|
|
708
|
-
export type ArticleReferencesFragment = ArticleReferences_Flourish_Fragment | ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_MainImage_Fragment | ArticleReferences_RawImage_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment |
|
|
715
|
+
export type ArticleReferencesFragment = ArticleReferences_Flourish_Fragment | ArticleReferences_ImageSet_Fragment | ArticleReferences_LayoutImage_Fragment | ArticleReferences_MainImage_Fragment | ArticleReferences_RawImage_Fragment | ArticleReferences_Recommended_Fragment | ArticleReferences_Tweet_Fragment | ArticleReferences_VideoReference_Fragment;
|
|
709
716
|
|
|
710
717
|
export type StructuredContentFragment = { readonly tree: any, readonly references: ReadonlyArray<{ readonly type: string, readonly fallbackImage?: { readonly url?: string | null, readonly height?: number | null, readonly width?: number | null } | null } | { readonly type: string, readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } } | { readonly type: string, readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } } | { readonly type: string, readonly picture: { readonly __typename: 'PictureFullBleed', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureInline', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly __typename: 'PictureStandard', readonly alt: string, readonly caption?: string | null, readonly credit?: string | null, readonly imageType: 'image' | 'graphic', readonly layoutWidth?: string | null, readonly images: ReadonlyArray<{ readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string, readonly sourceSet: ReadonlyArray<{ readonly dpr?: number | null, readonly width?: number | null, readonly url: string }> } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string }>, readonly fallbackImage: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } } | { readonly type: string, readonly image: { readonly __typename: 'ImageDesktop', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageMobile', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquare', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageSquareFTEdit', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandard', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageStandardInline', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } | { readonly __typename: 'ImageWide', readonly height?: number | null, readonly width?: number | null, readonly credit?: string | null, readonly format: 'standard' | 'standard-inline' | 'desktop' | 'mobile' | 'wide' | 'square' | 'square-ftedit', readonly url?: string | null, readonly id: string } } | { readonly type: string, readonly teaser: { readonly title?: string | null, readonly id?: string | null, readonly url: string, readonly type?: string | null, readonly publishedDate?: string | null, readonly firstPublishedDate?: string | null, readonly metaPrefixText?: string | null, readonly metaSuffixText?: string | null, readonly theme?: string | null, readonly relativeUrl: string, readonly metaLink?: { readonly id: string, readonly prefLabel: string, readonly types: ReadonlyArray<string>, readonly type: string, readonly directType?: string | null, readonly predicate: string, readonly url: string, readonly relativeUrl: string } | null, readonly metaAltLink?: { readonly id: string, readonly prefLabel: string, readonly types: ReadonlyArray<string>, readonly type: string, readonly directType?: string | null, readonly predicate: string, readonly url: string, readonly relativeUrl: string } | null, readonly image?: { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | { readonly url?: string | null, readonly width?: number | null, readonly height?: number | null } | null, readonly indicators?: { readonly accessLevel?: 'premium' | 'subscribed' | 'registered' | 'free' | null, readonly isOpinion?: boolean | null, readonly isColumn?: boolean | null, readonly isPodcast?: boolean | null, readonly isEditorsChoice?: boolean | null, readonly isExclusive?: boolean | null, readonly isScoop?: boolean | null } | null } } | { readonly type: string, readonly html?: string | null } | { readonly type: string, readonly title: string, readonly id: string }> };
|
|
711
718
|
|
|
@@ -972,7 +979,7 @@ export const TweetFragmentDoc = gql`
|
|
|
972
979
|
}
|
|
973
980
|
`;
|
|
974
981
|
export const VideoFragmentDoc = gql`
|
|
975
|
-
fragment Video on
|
|
982
|
+
fragment Video on VideoReference {
|
|
976
983
|
title
|
|
977
984
|
id
|
|
978
985
|
}
|
package/src/schema-version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '0.7.
|
|
2
|
+
export const version = '0.7.12'
|
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.es2021.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.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/schema-version.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./src/index.ts","../../node_modules/@financial-times/content-tree/content-tree.d.ts","./src/type-assertions.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/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/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/cheerio/index.d.ts","../../node_modules/@types/clone-deep/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/eventsource/dom-monkeypatch.d.ts","../../node_modules/@types/eventsource/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/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/serve-static/index.d.ts","../../node_modules/@types/express/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/pretty-format/build/types.d.ts","../../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/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/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.mapvalues/index.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/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/prettier/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/ts5.0/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/stack-utils/index.d.ts","../../node_modules/@types/triple-beam/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":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","80b8a61568ddd70101eb8efe84c28dcd69a1a350d59967ee01726075e10b066d","dbd3f3cb73dd52b5f27bfe04435be66bca81ebddc67481bf55f294b67fcd5ef8","e0676cf9276a9c82f5bcdb821616c6b1120baf3ce00e4ed051e1f62abad88957","f0c9454c5c49de84d70a513b68d9a9ce7e34a689d558adf96f5e92575198a12f","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd",{"version":"4f63eb0f4589b645c8cd338f60393946f73bfff8a340ea40af2caadd65bef8ff","signature":"521b5ece08d5a220a81348dc64d77646d83a93495593c8ea7b577ca9726a191a"},{"version":"87ac8aa1354001bd3e6509e15ae74c29e6b4253e5507ba909c22371cb9387734","signature":"2efce12ecd2965acd69c389db666fe3b1d0e9eb712ec3ffe0fc995a21ad9df60"},"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab",{"version":"dc5a4604b421ea68079d44cf1698aea54c45ccd5ea2b1b33342d5aa4405be0e1","signature":"cf374399159a804bb11078d46292feb223e7063ad5fd4b90cf3f45df36ccfd57"},"bb814043145034e5d6cdeebd92d6fc94a5a76815df1b797e3ec8acf63daf8578",{"version":"c5aed5d8574fe1ebfb7f16f999efc4cbe00a483b9c7f9bebbe16934b8176920d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3",{"version":"a0f5c90bd3836ef1a73bb46a1c02723fe8e12f0838acb35fe9da29f799aa32d8","affectsGlobalScope":true},"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true},"3256f3cccd578f9e7fe3a28096c505634bebcee8afb738ffa99368e536ca3a0b","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","5cf2ea4cc712586f7425920ab8082573d186bf966ebb99cef93ef487da9a2922",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"c6b124041039647ff446e19ea0e90a7a83256593d64f23c66b4fda6e0c5b968e","affectsGlobalScope":true},{"version":"a9fc1469744055a3435f203123246b96c094e7ff8c4e1c3863829d9b705b7a34","affectsGlobalScope":true},"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90",{"version":"57a1cb6f082fa2df46deaa96fa0063463b3393dd39bd09359dab251db28000b9","affectsGlobalScope":true},"49f5c35c2d3bd0d70539fbc37675e0064389e138094146833a8f31d6466c38f0","efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b",{"version":"16a14d16cdf08b9a913f46e4a0e4d423158065b0ee276378775d5d5616059cfa","affectsGlobalScope":true},"a639a78cbf73be91da5c954684b705e98e3b809d6c8e0026b114cda70802c37c","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6278dd6eaa35d93f4ec56ee3d3f34734e26085aa9c7da61999ff78e5fa6d5e1e","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","9b5a5e0d06f8646aa2978afb1b5bb5e608649751e9cfc7290e86be42605ba42f","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"41333f3d476800f515bd357fec50fd2f8e7a309aab46d2cf2f22bcfe31210832","affectsGlobalScope":true},"a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","df5941f81d2d8a084c12b67bfa2a3a9fd2703ee68d75bd2299b15af3fa400d5e","77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8},"fileIdsList":[[102,154],[154],[102,103,104,105,106,154],[102,104,154],[127,154,161,162],[154,161],[127,154,161],[154,167],[124,127,154,161,170,171,172],[154,163,172,173,174],[125,154,161],[154,177],[154,179],[154,180],[154,185,190],[154,208],[154,196,198,199,200,201,202,203,204,205,206,207,208],[154,196,197,199,200,201,202,203,204,205,206,207,208],[154,197,198,199,200,201,202,203,204,205,206,207,208],[154,196,197,198,200,201,202,203,204,205,206,207,208],[154,196,197,198,199,201,202,203,204,205,206,207,208],[154,196,197,198,199,200,202,203,204,205,206,207,208],[154,196,197,198,199,200,201,203,204,205,206,207,208],[154,196,197,198,199,200,201,202,204,205,206,207,208],[154,196,197,198,199,200,201,202,203,205,206,207,208],[154,196,197,198,199,200,201,202,203,204,206,207,208],[154,196,197,198,199,200,201,202,203,204,205,207,208],[154,196,197,198,199,200,201,202,203,204,205,206,208],[154,196,197,198,199,200,201,202,203,204,205,206,207],[127,153,154,161,212,213],[108,154],[111,154],[112,117,145,154],[113,124,125,132,142,153,154],[113,114,124,132,154],[115,154],[116,117,125,133,154],[117,142,150,154],[118,120,124,132,154],[119,154],[120,121,154],[124,154],[122,124,154],[124,125,126,142,153,154],[124,125,126,139,142,145,154],[154,158],[120,124,127,132,142,153,154],[124,125,127,128,132,142,150,153,154],[127,129,142,150,153,154],[108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[124,130,154],[131,153,154],[120,124,132,142,154],[133,154],[134,154],[111,135,154],[136,152,154,158],[137,154],[138,154],[124,139,140,154],[139,141,154,156],[112,124,142,143,144,145,154],[112,142,144,154],[142,143,154],[145,154],[146,154],[124,148,149,154],[148,149,154],[117,132,142,150,154],[151,154],[132,152,154],[112,127,138,153,154],[117,154],[142,154,155],[154,156],[154,157],[112,117,124,126,135,142,153,154,156,158],[142,154,159],[154,223],[154,219,220,221,222],[58,97,154],[58,82,97,154],[97,154],[58,154],[58,83,97,154],[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,154],[83,97,154],[125,142,154,161,169],[127,154,161,169],[124,127,129,142,150,153,154,159,161],[154,230],[127,142,154,161],[50,55,154],[47,48,49,154],[154,182,189],[154,183,186],[154,183,186,187,188],[154,185],[154,184],[52,154],[51,52,53,154],[50,51,154],[51,54,55,154],[54,56,57,97,154],[56,99,154],[50,51,54],[56]],"referencedMap":[[104,1],[102,2],[99,2],[101,2],[107,3],[103,1],[105,4],[106,1],[163,5],[164,6],[165,2],[162,7],[166,7],[167,2],[168,8],[173,9],[175,10],[176,11],[178,12],[179,2],[180,13],[181,14],[191,15],[192,2],[193,2],[194,2],[195,2],[209,16],[197,17],[198,18],[196,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,27],[207,28],[208,29],[210,2],[169,2],[211,2],[213,2],[214,30],[108,31],[109,31],[111,32],[112,33],[113,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[121,41],[123,42],[122,43],[124,42],[125,44],[126,45],[110,46],[160,2],[127,47],[128,48],[129,49],[161,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[137,58],[138,59],[139,60],[140,60],[141,61],[142,62],[144,63],[143,64],[145,65],[146,66],[147,2],[148,67],[149,68],[150,69],[151,70],[152,71],[153,72],[154,73],[155,74],[156,75],[157,76],[158,77],[159,78],[215,2],[216,2],[217,2],[218,2],[219,2],[172,2],[171,2],[224,79],[220,2],[223,80],[225,2],[226,2],[222,2],[82,81],[83,82],[58,83],[61,83],[80,81],[81,81],[71,81],[70,84],[68,81],[63,81],[76,81],[74,81],[78,81],[62,81],[75,81],[79,81],[64,81],[65,81],[77,81],[59,81],[66,81],[67,81],[69,81],[73,81],[84,85],[72,81],[60,81],[97,86],[96,2],[91,85],[93,87],[92,85],[85,85],[86,85],[88,85],[90,85],[94,87],[95,87],[87,87],[89,87],[170,88],[174,89],[227,2],[228,2],[177,2],[229,90],[230,2],[231,91],[182,2],[221,2],[212,92],[55,93],[50,94],[47,2],[48,2],[49,2],[190,95],[183,2],[187,96],[189,97],[188,96],[186,98],[185,99],[184,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[8,2],[45,2],[42,2],[43,2],[44,2],[1,2],[46,2],[53,100],[54,101],[52,102],[51,2],[56,103],[98,104],[57,2],[100,105]],"exportedModulesMap":[[104,1],[102,2],[99,2],[101,2],[107,3],[103,1],[105,4],[106,1],[163,5],[164,6],[165,2],[162,7],[166,7],[167,2],[168,8],[173,9],[175,10],[176,11],[178,12],[179,2],[180,13],[181,14],[191,15],[192,2],[193,2],[194,2],[195,2],[209,16],[197,17],[198,18],[196,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,27],[207,28],[208,29],[210,2],[169,2],[211,2],[213,2],[214,30],[108,31],[109,31],[111,32],[112,33],[113,34],[114,35],[115,36],[116,37],[117,38],[118,39],[119,40],[120,41],[121,41],[123,42],[122,43],[124,42],[125,44],[126,45],[110,46],[160,2],[127,47],[128,48],[129,49],[161,50],[130,51],[131,52],[132,53],[133,54],[134,55],[135,56],[136,57],[137,58],[138,59],[139,60],[140,60],[141,61],[142,62],[144,63],[143,64],[145,65],[146,66],[147,2],[148,67],[149,68],[150,69],[151,70],[152,71],[153,72],[154,73],[155,74],[156,75],[157,76],[158,77],[159,78],[215,2],[216,2],[217,2],[218,2],[219,2],[172,2],[171,2],[224,79],[220,2],[223,80],[225,2],[226,2],[222,2],[82,81],[83,82],[58,83],[61,83],[80,81],[81,81],[71,81],[70,84],[68,81],[63,81],[76,81],[74,81],[78,81],[62,81],[75,81],[79,81],[64,81],[65,81],[77,81],[59,81],[66,81],[67,81],[69,81],[73,81],[84,85],[72,81],[60,81],[97,86],[96,2],[91,85],[93,87],[92,85],[85,85],[86,85],[88,85],[90,85],[94,87],[95,87],[87,87],[89,87],[170,88],[174,89],[227,2],[228,2],[177,2],[229,90],[230,2],[231,91],[182,2],[221,2],[212,92],[55,93],[50,94],[47,2],[48,2],[49,2],[190,95],[183,2],[187,96],[189,97],[188,96],[186,98],[185,99],[184,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[8,2],[45,2],[42,2],[43,2],[44,2],[1,2],[46,2],[53,100],[54,101],[52,102],[51,2],[56,106],[98,107]],"semanticDiagnosticsPerFile":[104,102,99,101,107,103,105,106,163,164,165,162,166,167,168,173,175,176,178,179,180,181,191,192,193,194,195,209,197,198,196,199,200,201,202,203,204,205,206,207,208,210,169,211,213,214,108,109,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,110,160,127,128,129,161,130,131,132,133,134,135,136,137,138,139,140,141,142,144,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,215,216,217,218,219,172,171,224,220,223,225,226,222,82,83,58,61,80,81,71,70,68,63,76,74,78,62,75,79,64,65,77,59,66,67,69,73,84,72,60,97,96,91,93,92,85,86,88,90,94,95,87,89,170,174,227,228,177,229,230,231,182,221,212,55,50,47,48,49,190,183,187,189,188,186,185,184,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,8,45,42,43,44,1,46,53,54,52,51,56,98,57,100],"latestChangedDtsFile":"./lib/type-assertions.d.ts"},"version":"4.9.5"}
|
|
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.es2021.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.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/schema-version.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./src/index.ts","../../node_modules/@financial-times/content-tree/content-tree.d.ts","./src/type-assertions.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/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/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/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/eventsource/dom-monkeypatch.d.ts","../../node_modules/@types/eventsource/index.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/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/serve-static/index.d.ts","../../node_modules/@types/express/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/pretty-format/build/types.d.ts","../../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/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/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.mapvalues/index.d.ts","../../node_modules/@types/long/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/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/prettier/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/ts5.0/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/stack-utils/index.d.ts","../../node_modules/@types/triple-beam/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":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","80b8a61568ddd70101eb8efe84c28dcd69a1a350d59967ee01726075e10b066d","dbd3f3cb73dd52b5f27bfe04435be66bca81ebddc67481bf55f294b67fcd5ef8","e0676cf9276a9c82f5bcdb821616c6b1120baf3ce00e4ed051e1f62abad88957","f0c9454c5c49de84d70a513b68d9a9ce7e34a689d558adf96f5e92575198a12f","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd",{"version":"a25d60d1110ecfc2ebc582bde14a21630899aa20254574c24fc74d2227ec5211","signature":"046976a4ec4202237e5adabd25b7d1bc1c99a0b19dd72445da5ccea981c01911"},{"version":"b9a7989d56f6ddf0ee7cc6f5ea2bf8bfa7a7194b87c983dd7cbcd05ce9d74389","signature":"6769b4d7e20171aa535b01c08b6c6e52220ce66e9918b2cc890f379f3f5922fb"},"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab",{"version":"dc5a4604b421ea68079d44cf1698aea54c45ccd5ea2b1b33342d5aa4405be0e1","signature":"cf374399159a804bb11078d46292feb223e7063ad5fd4b90cf3f45df36ccfd57"},"bb814043145034e5d6cdeebd92d6fc94a5a76815df1b797e3ec8acf63daf8578",{"version":"c5aed5d8574fe1ebfb7f16f999efc4cbe00a483b9c7f9bebbe16934b8176920d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7d2e3fea24c712c99c03ad8f556abedbfe105f87f1be10b95dbd409d24bc05a3",{"version":"a0f5c90bd3836ef1a73bb46a1c02723fe8e12f0838acb35fe9da29f799aa32d8","affectsGlobalScope":true},"3719525a8f6ab731e3dfd585d9f87df55ec7d50d461df84f74eb4d68bb165244","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","4eaff3d8e10676fd7913d8c108890e71c688e1e7d52f6d1d55c39514f493dc47","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"00dee7cdca8b8420c47ea4a31a34b8e8294013ebc4f463fd941e867e7bf05029","affectsGlobalScope":true},"3256f3cccd578f9e7fe3a28096c505634bebcee8afb738ffa99368e536ca3a0b","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","7f138842074d0a40681775af008c8452093b68c383c94de31759e853c6d06b5c","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","4f3fdeba4e28e21aa719c081b8dc8f91d47e12e773389b9d35679c08151c9d37","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","5cf2ea4cc712586f7425920ab8082573d186bf966ebb99cef93ef487da9a2922",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","1422cd9e705adcc09088fda85a900c2b70e3ad36ea85846f68bd1a884cdf4e2b","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"c6b124041039647ff446e19ea0e90a7a83256593d64f23c66b4fda6e0c5b968e","affectsGlobalScope":true},{"version":"a9fc1469744055a3435f203123246b96c094e7ff8c4e1c3863829d9b705b7a34","affectsGlobalScope":true},"868831cab82b65dfe1d68180e898af1f2101e89ba9b754d1db6fb8cc2fac1921","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"52120bb7e4583612225bdf08e7c12559548170f11e660d33a33623bae9bbdbba","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a6dd3dba8e665ac43d279e0fdf5219edda0eed69b5e9a5061f46cd6a65c4f7a1","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","49f5c35c2d3bd0d70539fbc37675e0064389e138094146833a8f31d6466c38f0","efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b",{"version":"16a14d16cdf08b9a913f46e4a0e4d423158065b0ee276378775d5d5616059cfa","affectsGlobalScope":true},"a639a78cbf73be91da5c954684b705e98e3b809d6c8e0026b114cda70802c37c","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"6278dd6eaa35d93f4ec56ee3d3f34734e26085aa9c7da61999ff78e5fa6d5e1e","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","9b5a5e0d06f8646aa2978afb1b5bb5e608649751e9cfc7290e86be42605ba42f","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"41333f3d476800f515bd357fec50fd2f8e7a309aab46d2cf2f22bcfe31210832","affectsGlobalScope":true},"a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","df5941f81d2d8a084c12b67bfa2a3a9fd2703ee68d75bd2299b15af3fa400d5e","77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8},"fileIdsList":[[102,154],[154],[102,103,104,105,106,154],[102,104,154],[127,154,161,162],[127,154,161],[154,166],[124,127,154,161,169,170,171],[154,163,171,172,173],[125,154,161],[154,176],[154,178],[154,179],[154,184,189],[154,207],[154,195,197,198,199,200,201,202,203,204,205,206,207],[154,195,196,198,199,200,201,202,203,204,205,206,207],[154,196,197,198,199,200,201,202,203,204,205,206,207],[154,195,196,197,199,200,201,202,203,204,205,206,207],[154,195,196,197,198,200,201,202,203,204,205,206,207],[154,195,196,197,198,199,201,202,203,204,205,206,207],[154,195,196,197,198,199,200,202,203,204,205,206,207],[154,195,196,197,198,199,200,201,203,204,205,206,207],[154,195,196,197,198,199,200,201,202,204,205,206,207],[154,195,196,197,198,199,200,201,202,203,205,206,207],[154,195,196,197,198,199,200,201,202,203,204,206,207],[154,195,196,197,198,199,200,201,202,203,204,205,207],[154,195,196,197,198,199,200,201,202,203,204,205,206],[127,153,154,161,211,212],[108,154],[111,154],[112,117,145,154],[113,124,125,132,142,153,154],[113,114,124,132,154],[115,154],[116,117,125,133,154],[117,142,150,154],[118,120,124,132,154],[119,154],[120,121,154],[124,154],[122,124,154],[124,125,126,142,153,154],[124,125,126,139,142,145,154],[154,158],[120,124,127,132,142,153,154],[124,125,127,128,132,142,150,153,154],[127,129,142,150,153,154],[108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[124,130,154],[131,153,154],[120,124,132,142,154],[133,154],[134,154],[111,135,154],[136,152,154,158],[137,154],[138,154],[124,139,140,154],[139,141,154,156],[112,124,142,143,144,145,154],[112,142,144,154],[142,143,154],[145,154],[146,154],[124,148,149,154],[148,149,154],[117,132,142,150,154],[151,154],[132,152,154],[112,127,138,153,154],[117,154],[142,154,155],[154,156],[154,157],[112,117,124,126,135,142,153,154,156,158],[142,154,159],[154,222],[154,218,219,220,221],[58,97,154],[58,82,97,154],[97,154],[58,154],[58,83,97,154],[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,154],[83,97,154],[125,142,154,161,168],[127,154,161,168],[124,127,129,142,150,153,154,159,161],[154,229],[127,142,154,161],[50,55,154],[47,48,49,154],[154,181,188],[154,182,185],[154,182,185,186,187],[154,184],[154,183],[52,154],[51,52,53,154],[50,51,154],[51,54,55,154],[54,56,57,97,154],[56,99,154],[50,51,54],[56]],"referencedMap":[[104,1],[102,2],[99,2],[101,2],[107,3],[103,1],[105,4],[106,1],[163,5],[164,2],[162,6],[165,6],[166,2],[167,7],[172,8],[174,9],[175,10],[177,11],[178,2],[179,12],[180,13],[190,14],[191,2],[192,2],[193,2],[194,2],[208,15],[196,16],[197,17],[195,18],[198,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,27],[207,28],[209,2],[168,2],[210,2],[212,2],[213,29],[108,30],[109,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,40],[123,41],[122,42],[124,41],[125,43],[126,44],[110,45],[160,2],[127,46],[128,47],[129,48],[161,49],[130,50],[131,51],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,59],[141,60],[142,61],[144,62],[143,63],[145,64],[146,65],[147,2],[148,66],[149,67],[150,68],[151,69],[152,70],[153,71],[154,72],[155,73],[156,74],[157,75],[158,76],[159,77],[214,2],[215,2],[216,2],[217,2],[218,2],[171,2],[170,2],[223,78],[219,2],[222,79],[224,2],[225,2],[221,2],[82,80],[83,81],[58,82],[61,82],[80,80],[81,80],[71,80],[70,83],[68,80],[63,80],[76,80],[74,80],[78,80],[62,80],[75,80],[79,80],[64,80],[65,80],[77,80],[59,80],[66,80],[67,80],[69,80],[73,80],[84,84],[72,80],[60,80],[97,85],[96,2],[91,84],[93,86],[92,84],[85,84],[86,84],[88,84],[90,84],[94,86],[95,86],[87,86],[89,86],[169,87],[173,88],[226,2],[227,2],[176,2],[228,89],[229,2],[230,90],[181,2],[220,2],[211,91],[55,92],[50,93],[47,2],[48,2],[49,2],[189,94],[182,2],[186,95],[188,96],[187,95],[185,97],[184,98],[183,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[8,2],[45,2],[42,2],[43,2],[44,2],[1,2],[46,2],[53,99],[54,100],[52,101],[51,2],[56,102],[98,103],[57,2],[100,104]],"exportedModulesMap":[[104,1],[102,2],[99,2],[101,2],[107,3],[103,1],[105,4],[106,1],[163,5],[164,2],[162,6],[165,6],[166,2],[167,7],[172,8],[174,9],[175,10],[177,11],[178,2],[179,12],[180,13],[190,14],[191,2],[192,2],[193,2],[194,2],[208,15],[196,16],[197,17],[195,18],[198,19],[199,20],[200,21],[201,22],[202,23],[203,24],[204,25],[205,26],[206,27],[207,28],[209,2],[168,2],[210,2],[212,2],[213,29],[108,30],[109,30],[111,31],[112,32],[113,33],[114,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,40],[123,41],[122,42],[124,41],[125,43],[126,44],[110,45],[160,2],[127,46],[128,47],[129,48],[161,49],[130,50],[131,51],[132,52],[133,53],[134,54],[135,55],[136,56],[137,57],[138,58],[139,59],[140,59],[141,60],[142,61],[144,62],[143,63],[145,64],[146,65],[147,2],[148,66],[149,67],[150,68],[151,69],[152,70],[153,71],[154,72],[155,73],[156,74],[157,75],[158,76],[159,77],[214,2],[215,2],[216,2],[217,2],[218,2],[171,2],[170,2],[223,78],[219,2],[222,79],[224,2],[225,2],[221,2],[82,80],[83,81],[58,82],[61,82],[80,80],[81,80],[71,80],[70,83],[68,80],[63,80],[76,80],[74,80],[78,80],[62,80],[75,80],[79,80],[64,80],[65,80],[77,80],[59,80],[66,80],[67,80],[69,80],[73,80],[84,84],[72,80],[60,80],[97,85],[96,2],[91,84],[93,86],[92,84],[85,84],[86,84],[88,84],[90,84],[94,86],[95,86],[87,86],[89,86],[169,87],[173,88],[226,2],[227,2],[176,2],[228,89],[229,2],[230,90],[181,2],[220,2],[211,91],[55,92],[50,93],[47,2],[48,2],[49,2],[189,94],[182,2],[186,95],[188,96],[187,95],[185,97],[184,98],[183,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[8,2],[45,2],[42,2],[43,2],[44,2],[1,2],[46,2],[53,99],[54,100],[52,101],[51,2],[56,105],[98,106]],"semanticDiagnosticsPerFile":[104,102,99,101,107,103,105,106,163,164,162,165,166,167,172,174,175,177,178,179,180,190,191,192,193,194,208,196,197,195,198,199,200,201,202,203,204,205,206,207,209,168,210,212,213,108,109,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,110,160,127,128,129,161,130,131,132,133,134,135,136,137,138,139,140,141,142,144,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,214,215,216,217,218,171,170,223,219,222,224,225,221,82,83,58,61,80,81,71,70,68,63,76,74,78,62,75,79,64,65,77,59,66,67,69,73,84,72,60,97,96,91,93,92,85,86,88,90,94,95,87,89,169,173,226,227,176,228,229,230,181,220,211,55,50,47,48,49,189,182,186,188,187,185,184,183,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,8,45,42,43,44,1,46,53,54,52,51,56,98,57,100],"latestChangedDtsFile":"./lib/type-assertions.d.ts"},"version":"4.9.5"}
|