@20minutes/tyr 2.36.0 → 2.36.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
import { EditorialContentModelType, Maybe, Picto,
|
|
1
|
+
import { EditorialContentModelType, Maybe, Picto, TContentMedia } from '../types/graphql';
|
|
2
2
|
import { CardImageProps } from '@20minutes/hela';
|
|
3
|
-
type TMedia = TPublishableContentMedia | TArticleMediasMedia | TExternalContentMediasMedia | TJobMediasMedia | TLiveMediasMedia | TPageMediasMedia;
|
|
4
3
|
export declare const getIllustrationPhoto: ({ medias, imgEndpoint, }: {
|
|
5
|
-
medias?: (
|
|
4
|
+
medias?: (TContentMedia | null)[];
|
|
6
5
|
imgEndpoint: string;
|
|
7
6
|
}) => string;
|
|
8
7
|
export declare const getImageCaption: ({ medias, picto, editorialModel, }: {
|
|
9
|
-
medias?: (
|
|
8
|
+
medias?: (TContentMedia | null)[];
|
|
10
9
|
picto?: Maybe<Picto>;
|
|
11
10
|
editorialModel?: Maybe<EditorialContentModelType>;
|
|
12
11
|
}) => Pick<CardImageProps, "caption"> | undefined;
|
|
13
|
-
export {};
|
|
@@ -227,7 +227,7 @@ export type TArticle = TCounting & TCrawlable & TLockable & TNode & TProofreadab
|
|
|
227
227
|
locked_at?: Maybe<Scalars['DateTime']['output']>;
|
|
228
228
|
locked_by?: Maybe<TContentLockerSingleConnection>;
|
|
229
229
|
locked_by_user_id?: Maybe<Scalars['ID']['output']>;
|
|
230
|
-
medias?: Maybe<Array<Maybe<
|
|
230
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
231
231
|
meta?: Maybe<TMeta>;
|
|
232
232
|
on_home?: Maybe<Scalars['Boolean']['output']>;
|
|
233
233
|
picto?: Maybe<Picto>;
|
|
@@ -2206,6 +2206,25 @@ export type TContentLockerSingleConnection = {
|
|
|
2206
2206
|
node?: Maybe<TUserBack>;
|
|
2207
2207
|
resolveInfo?: Maybe<TResolveInfo>;
|
|
2208
2208
|
};
|
|
2209
|
+
export type TContentMedia = {
|
|
2210
|
+
__typename?: 'ContentMedia';
|
|
2211
|
+
embed?: Maybe<TEmbed>;
|
|
2212
|
+
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
2213
|
+
legend?: Maybe<Scalars['String']['output']>;
|
|
2214
|
+
photo?: Maybe<TContentMediaPhotoSingleConnection>;
|
|
2215
|
+
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
2216
|
+
podcast?: Maybe<TPodcast>;
|
|
2217
|
+
type?: Maybe<MediaSourceType>;
|
|
2218
|
+
video?: Maybe<TMediaVideo>;
|
|
2219
|
+
};
|
|
2220
|
+
export type TContentMediaPhotoArgs = {
|
|
2221
|
+
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
2222
|
+
};
|
|
2223
|
+
export type TContentMediaPhotoSingleConnection = {
|
|
2224
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
2225
|
+
node?: Maybe<TPhoto>;
|
|
2226
|
+
resolveInfo?: Maybe<TResolveInfo>;
|
|
2227
|
+
};
|
|
2209
2228
|
export type TContentMetaInput = {
|
|
2210
2229
|
date?: InputMaybe<Scalars['String']['input']>;
|
|
2211
2230
|
display_photo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4061,7 +4080,7 @@ export type TExternalContent = TCounting & TLockable & TNode & TProofreadable &
|
|
|
4061
4080
|
locked_at?: Maybe<Scalars['DateTime']['output']>;
|
|
4062
4081
|
locked_by?: Maybe<TContentLockerSingleConnection>;
|
|
4063
4082
|
locked_by_user_id?: Maybe<Scalars['ID']['output']>;
|
|
4064
|
-
medias?: Maybe<Array<Maybe<
|
|
4083
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
4065
4084
|
on_home?: Maybe<Scalars['Boolean']['output']>;
|
|
4066
4085
|
pinterest_count?: Maybe<Scalars['Int']['output']>;
|
|
4067
4086
|
proofreading_state?: Maybe<TProofreadingState>;
|
|
@@ -5327,7 +5346,7 @@ export type TJob = TNode & TTimestampable & {
|
|
|
5327
5346
|
jobSector?: Maybe<TJobSectorSingleConnection>;
|
|
5328
5347
|
job_sector_id: Scalars['ID']['output'];
|
|
5329
5348
|
lead?: Maybe<Scalars['String']['output']>;
|
|
5330
|
-
medias?: Maybe<Array<Maybe<
|
|
5349
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
5331
5350
|
meta?: Maybe<TMeta>;
|
|
5332
5351
|
name?: Maybe<Scalars['String']['output']>;
|
|
5333
5352
|
partner_url?: Maybe<Scalars['String']['output']>;
|
|
@@ -6021,7 +6040,7 @@ export type TLive = TCounting & TCrawlable & TLockable & TNode & TPublishable &
|
|
|
6021
6040
|
locked_at?: Maybe<Scalars['DateTime']['output']>;
|
|
6022
6041
|
locked_by?: Maybe<TContentLockerSingleConnection>;
|
|
6023
6042
|
locked_by_user_id?: Maybe<Scalars['ID']['output']>;
|
|
6024
|
-
medias?: Maybe<Array<Maybe<
|
|
6043
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
6025
6044
|
meta?: Maybe<TMeta>;
|
|
6026
6045
|
on_home?: Maybe<Scalars['Boolean']['output']>;
|
|
6027
6046
|
pinterest_count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -10192,7 +10211,7 @@ export type TPage = TCounting & TCrawlable & TLockable & TNode & TProofreadable
|
|
|
10192
10211
|
locked_at?: Maybe<Scalars['DateTime']['output']>;
|
|
10193
10212
|
locked_by?: Maybe<TContentLockerSingleConnection>;
|
|
10194
10213
|
locked_by_user_id?: Maybe<Scalars['ID']['output']>;
|
|
10195
|
-
medias?: Maybe<Array<Maybe<
|
|
10214
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
10196
10215
|
meta?: Maybe<TMeta>;
|
|
10197
10216
|
on_home?: Maybe<Scalars['Boolean']['output']>;
|
|
10198
10217
|
pinterest_count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11428,7 +11447,7 @@ export type TPublishableContent = TCounting & TNode & TProofreadable & TPublisha
|
|
|
11428
11447
|
locked_at?: Maybe<Scalars['DateTime']['output']>;
|
|
11429
11448
|
locked_by?: Maybe<TContentLockerSingleConnection>;
|
|
11430
11449
|
locked_by_user_id?: Maybe<Scalars['ID']['output']>;
|
|
11431
|
-
medias?: Maybe<Array<Maybe<
|
|
11450
|
+
medias?: Maybe<Array<Maybe<TContentMedia>>>;
|
|
11432
11451
|
meta?: Maybe<TMeta>;
|
|
11433
11452
|
meta_all?: Maybe<TMeta>;
|
|
11434
11453
|
meta_detail?: Maybe<TMeta>;
|
|
@@ -11704,20 +11723,6 @@ export type TPublishableContentListConnectionOptions = {
|
|
|
11704
11723
|
export declare enum PublishableContentListConnectionTotal {
|
|
11705
11724
|
TRUTH = "TRUTH"
|
|
11706
11725
|
}
|
|
11707
|
-
export type TPublishableContentMedia = {
|
|
11708
|
-
__typename?: 'PublishableContentMedia';
|
|
11709
|
-
embed?: Maybe<TEmbed>;
|
|
11710
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
11711
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
11712
|
-
photo?: Maybe<TPublishableContentPhotoSingleConnection>;
|
|
11713
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
11714
|
-
podcast?: Maybe<TPodcast>;
|
|
11715
|
-
type?: Maybe<MediaSourceType>;
|
|
11716
|
-
video?: Maybe<TMediaVideo>;
|
|
11717
|
-
};
|
|
11718
|
-
export type TPublishableContentMediaPhotoArgs = {
|
|
11719
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
11720
|
-
};
|
|
11721
11726
|
export type TPublishableContentOrder = {
|
|
11722
11727
|
direction?: InputMaybe<OrderDirection>;
|
|
11723
11728
|
field?: InputMaybe<PublishableContentOrderField>;
|
|
@@ -11737,11 +11742,6 @@ export declare enum PublishableContentOrderField {
|
|
|
11737
11742
|
TOTAL_CURRENT_VISITS = "TOTAL_CURRENT_VISITS",
|
|
11738
11743
|
TOTAL_VISIT_COUNT = "TOTAL_VISIT_COUNT"
|
|
11739
11744
|
}
|
|
11740
|
-
export type TPublishableContentPhotoSingleConnection = {
|
|
11741
|
-
__typename?: 'PublishableContentPhotoSingleConnection';
|
|
11742
|
-
node?: Maybe<TPhoto>;
|
|
11743
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
11744
|
-
};
|
|
11745
11745
|
export type TPublishableContentRubricIdFilter = {
|
|
11746
11746
|
eq?: InputMaybe<Scalars['ID']['input']>;
|
|
11747
11747
|
gt?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -17537,25 +17537,6 @@ export type TArticleLinkedContentseditorialContentPageArgs = {
|
|
|
17537
17537
|
export type TArticleLinkedContentseditorialContentStoryArgs = {
|
|
17538
17538
|
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
17539
17539
|
};
|
|
17540
|
-
export type TArticleMediasMedia = {
|
|
17541
|
-
__typename?: 'articleMediasMedia';
|
|
17542
|
-
embed?: Maybe<TEmbed>;
|
|
17543
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
17544
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
17545
|
-
photo?: Maybe<TArticleMediasPhotoSingleConnection>;
|
|
17546
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
17547
|
-
podcast?: Maybe<TPodcast>;
|
|
17548
|
-
type?: Maybe<MediaSourceType>;
|
|
17549
|
-
video?: Maybe<TMediaVideo>;
|
|
17550
|
-
};
|
|
17551
|
-
export type TArticleMediasMediaPhotoArgs = {
|
|
17552
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
17553
|
-
};
|
|
17554
|
-
export type TArticleMediasPhotoSingleConnection = {
|
|
17555
|
-
__typename?: 'articleMediasPhotoSingleConnection';
|
|
17556
|
-
node?: Maybe<TPhoto>;
|
|
17557
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
17558
|
-
};
|
|
17559
17540
|
export type TAskBookReviewSubscriptionUserFrontType = {
|
|
17560
17541
|
brand_id: Scalars['ID']['input'];
|
|
17561
17542
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17874,25 +17855,6 @@ export type TEnableBookReviewSubscriptionUserFrontType = {
|
|
|
17874
17855
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
17875
17856
|
id: Scalars['ID']['input'];
|
|
17876
17857
|
};
|
|
17877
|
-
export type TExternalContentMediasMedia = {
|
|
17878
|
-
__typename?: 'externalContentMediasMedia';
|
|
17879
|
-
embed?: Maybe<TEmbed>;
|
|
17880
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
17881
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
17882
|
-
photo?: Maybe<TExternalContentMediasPhotoSingleConnection>;
|
|
17883
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
17884
|
-
podcast?: Maybe<TPodcast>;
|
|
17885
|
-
type?: Maybe<MediaSourceType>;
|
|
17886
|
-
video?: Maybe<TMediaVideo>;
|
|
17887
|
-
};
|
|
17888
|
-
export type TExternalContentMediasMediaPhotoArgs = {
|
|
17889
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
17890
|
-
};
|
|
17891
|
-
export type TExternalContentMediasPhotoSingleConnection = {
|
|
17892
|
-
__typename?: 'externalContentMediasPhotoSingleConnection';
|
|
17893
|
-
node?: Maybe<TPhoto>;
|
|
17894
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
17895
|
-
};
|
|
17896
17858
|
export type TFillCampaignsResultsPushType = {
|
|
17897
17859
|
brand_id: Scalars['ID']['input'];
|
|
17898
17860
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18070,25 +18032,6 @@ export type TImageInput = {
|
|
|
18070
18032
|
credits?: InputMaybe<Scalars['String']['input']>;
|
|
18071
18033
|
src?: InputMaybe<Scalars['URL']['input']>;
|
|
18072
18034
|
};
|
|
18073
|
-
export type TJobMediasMedia = {
|
|
18074
|
-
__typename?: 'jobMediasMedia';
|
|
18075
|
-
embed?: Maybe<TEmbed>;
|
|
18076
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
18077
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
18078
|
-
photo?: Maybe<TJobMediasPhotoSingleConnection>;
|
|
18079
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
18080
|
-
podcast?: Maybe<TPodcast>;
|
|
18081
|
-
type?: Maybe<MediaSourceType>;
|
|
18082
|
-
video?: Maybe<TMediaVideo>;
|
|
18083
|
-
};
|
|
18084
|
-
export type TJobMediasMediaPhotoArgs = {
|
|
18085
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
18086
|
-
};
|
|
18087
|
-
export type TJobMediasPhotoSingleConnection = {
|
|
18088
|
-
__typename?: 'jobMediasPhotoSingleConnection';
|
|
18089
|
-
node?: Maybe<TPhoto>;
|
|
18090
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
18091
|
-
};
|
|
18092
18035
|
export type TKeyword = {
|
|
18093
18036
|
__typename?: 'keyword';
|
|
18094
18037
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -18244,25 +18187,6 @@ export type TLiveLockPayload = {
|
|
|
18244
18187
|
live?: Maybe<TLiveLock>;
|
|
18245
18188
|
resolveInfo?: Maybe<TResolveInfo>;
|
|
18246
18189
|
};
|
|
18247
|
-
export type TLiveMediasMedia = {
|
|
18248
|
-
__typename?: 'liveMediasMedia';
|
|
18249
|
-
embed?: Maybe<TEmbed>;
|
|
18250
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
18251
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
18252
|
-
photo?: Maybe<TLiveMediasPhotoSingleConnection>;
|
|
18253
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
18254
|
-
podcast?: Maybe<TPodcast>;
|
|
18255
|
-
type?: Maybe<MediaSourceType>;
|
|
18256
|
-
video?: Maybe<TMediaVideo>;
|
|
18257
|
-
};
|
|
18258
|
-
export type TLiveMediasMediaPhotoArgs = {
|
|
18259
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
18260
|
-
};
|
|
18261
|
-
export type TLiveMediasPhotoSingleConnection = {
|
|
18262
|
-
__typename?: 'liveMediasPhotoSingleConnection';
|
|
18263
|
-
node?: Maybe<TPhoto>;
|
|
18264
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
18265
|
-
};
|
|
18266
18190
|
export declare enum Local {
|
|
18267
18191
|
bordeaux = "bordeaux",
|
|
18268
18192
|
lille = "lille",
|
|
@@ -18612,25 +18536,6 @@ export type TPageLinkedArticleseditorialContentPageArgs = {
|
|
|
18612
18536
|
export type TPageLinkedArticleseditorialContentStoryArgs = {
|
|
18613
18537
|
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
18614
18538
|
};
|
|
18615
|
-
export type TPageMediasMedia = {
|
|
18616
|
-
__typename?: 'pageMediasMedia';
|
|
18617
|
-
embed?: Maybe<TEmbed>;
|
|
18618
|
-
illustration?: Maybe<Scalars['Boolean']['output']>;
|
|
18619
|
-
legend?: Maybe<Scalars['String']['output']>;
|
|
18620
|
-
photo?: Maybe<TPageMediasPhotoSingleConnection>;
|
|
18621
|
-
photo_id?: Maybe<Scalars['ID']['output']>;
|
|
18622
|
-
podcast?: Maybe<TPodcast>;
|
|
18623
|
-
type?: Maybe<MediaSourceType>;
|
|
18624
|
-
video?: Maybe<TMediaVideo>;
|
|
18625
|
-
};
|
|
18626
|
-
export type TPageMediasMediaPhotoArgs = {
|
|
18627
|
-
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
18628
|
-
};
|
|
18629
|
-
export type TPageMediasPhotoSingleConnection = {
|
|
18630
|
-
__typename?: 'pageMediasPhotoSingleConnection';
|
|
18631
|
-
node?: Maybe<TPhoto>;
|
|
18632
|
-
resolveInfo?: Maybe<TResolveInfo>;
|
|
18633
|
-
};
|
|
18634
18539
|
export type TPaymentConfirmationUserFrontType = {
|
|
18635
18540
|
brand_id: Scalars['ID']['input'];
|
|
18636
18541
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19305,12 +19210,12 @@ export type TPublishableContentFragment = {
|
|
|
19305
19210
|
} | null;
|
|
19306
19211
|
} | null;
|
|
19307
19212
|
medias?: Array<{
|
|
19308
|
-
__typename?: '
|
|
19213
|
+
__typename?: 'ContentMedia';
|
|
19309
19214
|
type?: MediaSourceType | null;
|
|
19310
19215
|
illustration?: boolean | null;
|
|
19311
19216
|
legend?: string | null;
|
|
19312
19217
|
photo?: {
|
|
19313
|
-
__typename?: '
|
|
19218
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19314
19219
|
node?: {
|
|
19315
19220
|
__typename?: 'Photo';
|
|
19316
19221
|
id: string;
|
|
@@ -19380,9 +19285,9 @@ export type TGetBreakingNewsQuery = {
|
|
|
19380
19285
|
title?: string | null;
|
|
19381
19286
|
url_current?: string | null;
|
|
19382
19287
|
medias?: Array<{
|
|
19383
|
-
__typename?: '
|
|
19288
|
+
__typename?: 'ContentMedia';
|
|
19384
19289
|
photo?: {
|
|
19385
|
-
__typename?: '
|
|
19290
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19386
19291
|
node?: {
|
|
19387
19292
|
__typename?: 'Photo';
|
|
19388
19293
|
slug?: string | null;
|
|
@@ -19400,9 +19305,9 @@ export type TGetBreakingNewsQuery = {
|
|
|
19400
19305
|
title?: string | null;
|
|
19401
19306
|
url_current?: string | null;
|
|
19402
19307
|
medias?: Array<{
|
|
19403
|
-
__typename?: '
|
|
19308
|
+
__typename?: 'ContentMedia';
|
|
19404
19309
|
photo?: {
|
|
19405
|
-
__typename?: '
|
|
19310
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19406
19311
|
node?: {
|
|
19407
19312
|
__typename?: 'Photo';
|
|
19408
19313
|
slug?: string | null;
|
|
@@ -19501,12 +19406,12 @@ export type TGetHomeLocalNewsQuery = {
|
|
|
19501
19406
|
} | null;
|
|
19502
19407
|
} | null;
|
|
19503
19408
|
medias?: Array<{
|
|
19504
|
-
__typename?: '
|
|
19409
|
+
__typename?: 'ContentMedia';
|
|
19505
19410
|
type?: MediaSourceType | null;
|
|
19506
19411
|
illustration?: boolean | null;
|
|
19507
19412
|
legend?: string | null;
|
|
19508
19413
|
photo?: {
|
|
19509
|
-
__typename?: '
|
|
19414
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19510
19415
|
node?: {
|
|
19511
19416
|
__typename?: 'Photo';
|
|
19512
19417
|
id: string;
|
|
@@ -19617,12 +19522,12 @@ export type TGetLatestContentsQuery = {
|
|
|
19617
19522
|
} | null;
|
|
19618
19523
|
} | null;
|
|
19619
19524
|
medias?: Array<{
|
|
19620
|
-
__typename?: '
|
|
19525
|
+
__typename?: 'ContentMedia';
|
|
19621
19526
|
type?: MediaSourceType | null;
|
|
19622
19527
|
illustration?: boolean | null;
|
|
19623
19528
|
legend?: string | null;
|
|
19624
19529
|
photo?: {
|
|
19625
|
-
__typename?: '
|
|
19530
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19626
19531
|
node?: {
|
|
19627
19532
|
__typename?: 'Photo';
|
|
19628
19533
|
id: string;
|
|
@@ -19796,12 +19701,12 @@ export type TGetLiveAndMostReadQuery = {
|
|
|
19796
19701
|
} | null;
|
|
19797
19702
|
} | null;
|
|
19798
19703
|
medias?: Array<{
|
|
19799
|
-
__typename?: '
|
|
19704
|
+
__typename?: 'ContentMedia';
|
|
19800
19705
|
type?: MediaSourceType | null;
|
|
19801
19706
|
illustration?: boolean | null;
|
|
19802
19707
|
legend?: string | null;
|
|
19803
19708
|
photo?: {
|
|
19804
|
-
__typename?: '
|
|
19709
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19805
19710
|
node?: {
|
|
19806
19711
|
__typename?: 'Photo';
|
|
19807
19712
|
id: string;
|
|
@@ -19889,12 +19794,12 @@ export type TGetLiveAndMostReadQuery = {
|
|
|
19889
19794
|
} | null;
|
|
19890
19795
|
} | null;
|
|
19891
19796
|
medias?: Array<{
|
|
19892
|
-
__typename?: '
|
|
19797
|
+
__typename?: 'ContentMedia';
|
|
19893
19798
|
type?: MediaSourceType | null;
|
|
19894
19799
|
illustration?: boolean | null;
|
|
19895
19800
|
legend?: string | null;
|
|
19896
19801
|
photo?: {
|
|
19897
|
-
__typename?: '
|
|
19802
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
19898
19803
|
node?: {
|
|
19899
19804
|
__typename?: 'Photo';
|
|
19900
19805
|
id: string;
|
|
@@ -20068,12 +19973,12 @@ export type TGetMostReadQuery = {
|
|
|
20068
19973
|
} | null;
|
|
20069
19974
|
} | null;
|
|
20070
19975
|
medias?: Array<{
|
|
20071
|
-
__typename?: '
|
|
19976
|
+
__typename?: 'ContentMedia';
|
|
20072
19977
|
type?: MediaSourceType | null;
|
|
20073
19978
|
illustration?: boolean | null;
|
|
20074
19979
|
legend?: string | null;
|
|
20075
19980
|
photo?: {
|
|
20076
|
-
__typename?: '
|
|
19981
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20077
19982
|
node?: {
|
|
20078
19983
|
__typename?: 'Photo';
|
|
20079
19984
|
id: string;
|
|
@@ -20161,12 +20066,12 @@ export type TGetMostReadQuery = {
|
|
|
20161
20066
|
} | null;
|
|
20162
20067
|
} | null;
|
|
20163
20068
|
medias?: Array<{
|
|
20164
|
-
__typename?: '
|
|
20069
|
+
__typename?: 'ContentMedia';
|
|
20165
20070
|
type?: MediaSourceType | null;
|
|
20166
20071
|
illustration?: boolean | null;
|
|
20167
20072
|
legend?: string | null;
|
|
20168
20073
|
photo?: {
|
|
20169
|
-
__typename?: '
|
|
20074
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20170
20075
|
node?: {
|
|
20171
20076
|
__typename?: 'Photo';
|
|
20172
20077
|
id: string;
|
|
@@ -20270,12 +20175,12 @@ export type TGetMostReadContentsQuery = {
|
|
|
20270
20175
|
} | null;
|
|
20271
20176
|
} | null;
|
|
20272
20177
|
medias?: Array<{
|
|
20273
|
-
__typename?: '
|
|
20178
|
+
__typename?: 'ContentMedia';
|
|
20274
20179
|
type?: MediaSourceType | null;
|
|
20275
20180
|
illustration?: boolean | null;
|
|
20276
20181
|
legend?: string | null;
|
|
20277
20182
|
photo?: {
|
|
20278
|
-
__typename?: '
|
|
20183
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20279
20184
|
node?: {
|
|
20280
20185
|
__typename?: 'Photo';
|
|
20281
20186
|
id: string;
|
|
@@ -20493,12 +20398,12 @@ export type TGetTagArticlesWithCursorQuery = {
|
|
|
20493
20398
|
} | null;
|
|
20494
20399
|
} | null;
|
|
20495
20400
|
medias?: Array<{
|
|
20496
|
-
__typename?: '
|
|
20401
|
+
__typename?: 'ContentMedia';
|
|
20497
20402
|
type?: MediaSourceType | null;
|
|
20498
20403
|
illustration?: boolean | null;
|
|
20499
20404
|
legend?: string | null;
|
|
20500
20405
|
photo?: {
|
|
20501
|
-
__typename?: '
|
|
20406
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20502
20407
|
node?: {
|
|
20503
20408
|
__typename?: 'Photo';
|
|
20504
20409
|
id: string;
|
|
@@ -20588,11 +20493,11 @@ export type TGetTvReplaysOrExtractsQuery = {
|
|
|
20588
20493
|
} | null;
|
|
20589
20494
|
} | null;
|
|
20590
20495
|
medias?: Array<{
|
|
20591
|
-
__typename?: '
|
|
20496
|
+
__typename?: 'ContentMedia';
|
|
20592
20497
|
type?: MediaSourceType | null;
|
|
20593
20498
|
illustration?: boolean | null;
|
|
20594
20499
|
photo?: {
|
|
20595
|
-
__typename?: '
|
|
20500
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20596
20501
|
node?: {
|
|
20597
20502
|
__typename?: 'Photo';
|
|
20598
20503
|
brand_id: string;
|
|
@@ -20675,12 +20580,12 @@ export type TGetUserBackArticlesWithCursorQuery = {
|
|
|
20675
20580
|
} | null;
|
|
20676
20581
|
} | null;
|
|
20677
20582
|
medias?: Array<{
|
|
20678
|
-
__typename?: '
|
|
20583
|
+
__typename?: 'ContentMedia';
|
|
20679
20584
|
type?: MediaSourceType | null;
|
|
20680
20585
|
illustration?: boolean | null;
|
|
20681
20586
|
legend?: string | null;
|
|
20682
20587
|
photo?: {
|
|
20683
|
-
__typename?: '
|
|
20588
|
+
__typename?: 'ContentMediaPhotoSingleConnection';
|
|
20684
20589
|
node?: {
|
|
20685
20590
|
__typename?: 'Photo';
|
|
20686
20591
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@20minutes/tyr",
|
|
3
|
-
"version": "2.36.
|
|
3
|
+
"version": "2.36.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/20minutes/tyr.git"
|
|
@@ -71,15 +71,15 @@
|
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@20minutes/eslint-config": "^2.0.0",
|
|
74
|
-
"@aws-sdk/client-s3": "3.
|
|
74
|
+
"@aws-sdk/client-s3": "3.1002.0",
|
|
75
75
|
"@graphql-codegen/cli": "^6.1.2",
|
|
76
76
|
"@graphql-codegen/typescript": "^5.0.8",
|
|
77
77
|
"@graphql-codegen/typescript-operations": "^5.0.8",
|
|
78
78
|
"@octokit/core": "7.0.6",
|
|
79
|
-
"@rollup/plugin-commonjs": "^29.0.
|
|
79
|
+
"@rollup/plugin-commonjs": "^29.0.1",
|
|
80
80
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
81
81
|
"@rollup/plugin-replace": "^6.0.3",
|
|
82
|
-
"@rollup/plugin-terser": "^0.
|
|
82
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
83
83
|
"@storybook/addon-docs": "^10.2.15",
|
|
84
84
|
"@storybook/addon-links": "^10.2.15",
|
|
85
85
|
"@storybook/react-vite": "^10.2.15",
|