@20minutes/tyr 2.40.9 → 2.40.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types/graphql.d.ts
CHANGED
|
@@ -3262,7 +3262,7 @@ export type TCreateNewsletterType = {
|
|
|
3262
3262
|
logo?: InputMaybe<Scalars['Upload']['input']>;
|
|
3263
3263
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
3264
3264
|
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
3265
|
-
|
|
3265
|
+
theme_color_id?: InputMaybe<Scalars['ID']['input']>;
|
|
3266
3266
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
3267
3267
|
type?: InputMaybe<NewsletterType>;
|
|
3268
3268
|
};
|
|
@@ -3648,6 +3648,7 @@ export type TCreateTagInputType = {
|
|
|
3648
3648
|
editorial_text_md?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
3649
3649
|
enable_selectable_content_type?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3650
3650
|
highlighted_tag_id?: InputMaybe<Scalars['ID']['input']>;
|
|
3651
|
+
insee_code?: InputMaybe<Scalars['String']['input']>;
|
|
3651
3652
|
label: Scalars['String']['input'];
|
|
3652
3653
|
legacy?: InputMaybe<TLegacyInput>;
|
|
3653
3654
|
meta?: InputMaybe<TMetaInput>;
|
|
@@ -9252,6 +9253,8 @@ export type TNewsletter = TNode & TTimestampable & {
|
|
|
9252
9253
|
slug?: Maybe<Scalars['String']['output']>;
|
|
9253
9254
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
9254
9255
|
theme?: Maybe<NewsletterThemeType>;
|
|
9256
|
+
themeColor?: Maybe<TThemeColorSingleConnection>;
|
|
9257
|
+
theme_color_id?: Maybe<Scalars['ID']['output']>;
|
|
9255
9258
|
title?: Maybe<Scalars['String']['output']>;
|
|
9256
9259
|
type?: Maybe<NewsletterType>;
|
|
9257
9260
|
};
|
|
@@ -14625,6 +14628,7 @@ export type TTag = TCrawlable & TNode & TRouting & TTimestampable & {
|
|
|
14625
14628
|
highlighted_tag?: Maybe<THighlightedTagSingleConnection>;
|
|
14626
14629
|
highlighted_tag_id?: Maybe<Scalars['ID']['output']>;
|
|
14627
14630
|
id: Scalars['ID']['output'];
|
|
14631
|
+
insee_code?: Maybe<Scalars['String']['output']>;
|
|
14628
14632
|
label?: Maybe<Scalars['String']['output']>;
|
|
14629
14633
|
legacy?: Maybe<TLegacy>;
|
|
14630
14634
|
meta?: Maybe<TMeta>;
|
|
@@ -16051,7 +16055,7 @@ export type TUpdateNewsletterType = {
|
|
|
16051
16055
|
id: Scalars['ID']['input'];
|
|
16052
16056
|
logo?: InputMaybe<Scalars['Upload']['input']>;
|
|
16053
16057
|
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
16054
|
-
|
|
16058
|
+
theme_color_id?: InputMaybe<Scalars['ID']['input']>;
|
|
16055
16059
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
16056
16060
|
type?: InputMaybe<NewsletterType>;
|
|
16057
16061
|
};
|
|
@@ -17115,6 +17119,7 @@ export type TUserFrontInputFilter = {
|
|
|
17115
17119
|
newsletters_registration?: InputMaybe<TUserFrontFilter>;
|
|
17116
17120
|
origin?: InputMaybe<TUserFrontFilter>;
|
|
17117
17121
|
status?: InputMaybe<UserStatus>;
|
|
17122
|
+
subscriber?: InputMaybe<TUserFrontSubscriberFilter>;
|
|
17118
17123
|
top_pv_month_num?: InputMaybe<TUserFrontTopPvMonthNumFilter>;
|
|
17119
17124
|
top_reading_day_of_week?: InputMaybe<TUserFrontFilter>;
|
|
17120
17125
|
user_front_id?: InputMaybe<TUserFrontFilter>;
|
|
@@ -17211,6 +17216,22 @@ export type TUserFrontSingleConnectionOptions = {
|
|
|
17211
17216
|
export declare enum UserFrontSingleConnectionTotal {
|
|
17212
17217
|
TRUTH = "TRUTH"
|
|
17213
17218
|
}
|
|
17219
|
+
export type TUserFrontSubscriberFilter = {
|
|
17220
|
+
eq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17221
|
+
gt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17222
|
+
gte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17223
|
+
ilike?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17224
|
+
in?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
17225
|
+
like?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17226
|
+
lt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17227
|
+
lte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17228
|
+
ne?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17229
|
+
nilike?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17230
|
+
nin?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
17231
|
+
nlike?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17232
|
+
nre?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17233
|
+
re?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17234
|
+
};
|
|
17214
17235
|
export type TUserFrontTopPvMonthNumFilter = {
|
|
17215
17236
|
eq?: InputMaybe<Scalars['Int']['input']>;
|
|
17216
17237
|
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18018,6 +18039,7 @@ export type THomeReservePublishableContentStorySingleConnection = {
|
|
|
18018
18039
|
};
|
|
18019
18040
|
export declare enum HoroscopeEntityType {
|
|
18020
18041
|
chinese = "chinese",
|
|
18042
|
+
numerology = "numerology",
|
|
18021
18043
|
zodiac = "zodiac"
|
|
18022
18044
|
}
|
|
18023
18045
|
export type TImage = {
|
|
@@ -18285,6 +18307,7 @@ export declare enum NewsletterThemeType {
|
|
|
18285
18307
|
partner = "partner",
|
|
18286
18308
|
planet = "planet",
|
|
18287
18309
|
sport = "sport",
|
|
18310
|
+
tempo = "tempo",
|
|
18288
18311
|
weird = "weird"
|
|
18289
18312
|
}
|
|
18290
18313
|
export declare enum NewsletterType {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@20minutes/tyr",
|
|
3
|
-
"version": "2.40.
|
|
3
|
+
"version": "2.40.10",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@github.com/20minutes/tyr.git"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"whatwg-url": "^16.0.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@20minutes/eslint-config": "^3.0.
|
|
72
|
-
"@aws-sdk/client-s3": "3.
|
|
71
|
+
"@20minutes/eslint-config": "^3.0.3",
|
|
72
|
+
"@aws-sdk/client-s3": "3.1038.0",
|
|
73
73
|
"@graphql-codegen/cli": "^6.3.1",
|
|
74
74
|
"@graphql-codegen/typescript": "^5.0.10",
|
|
75
75
|
"@graphql-codegen/typescript-operations": "^5.1.0",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"jest-worker": "^30.3.0",
|
|
103
103
|
"jsdom": "^28.1.0",
|
|
104
104
|
"mockdate": "^3.0.5",
|
|
105
|
-
"postcss": "^8.5.
|
|
105
|
+
"postcss": "^8.5.12",
|
|
106
106
|
"purgecss": "^8.0.0",
|
|
107
107
|
"purgecss-from-html": "^8.0.0",
|
|
108
108
|
"rollup": "^4.60.2",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"schema-dts": "^2.0.0",
|
|
113
113
|
"storybook": "^10.3.5",
|
|
114
114
|
"tsx": "^4.21.0",
|
|
115
|
-
"typed-query-selector": "^2.12.
|
|
115
|
+
"typed-query-selector": "^2.12.2",
|
|
116
116
|
"typescript": "^6.0.3",
|
|
117
117
|
"unplugin-dts": "^1.0.0-beta.6",
|
|
118
118
|
"vite": "^7.3.1",
|