create-vitnode-app 0.0.9 → 0.0.10-canary.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.
- package/dist/index.cjs +1 -1
- package/package.json +2 -2
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/[...slug]/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/legal/[code]/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/legal/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/login/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/login/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/page.tsx +23 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/profile/[id]/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/confirm-email/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/devices/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/files/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/error.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/global.css +94 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/layout.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/[...slug]/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/advanced/files/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/dashboard/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/diagnostic/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/langs/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/layout.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/nav/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/permissions-admin/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/ai/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/authorization/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/logs/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/legal/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/main/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/metadata/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/security/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/styles/editor/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/styles/nav/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/groups/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/staff/administrators/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/[id]/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/error.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/core/styles/theme-editor/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/install/page.tsx +11 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/global.css +94 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/layout.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/layout.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/not-found.tsx +8 -0
- package/templates/basic/apps/frontend/src/graphql/types.ts +1381 -0
- package/templates/basic/apps/frontend/src/i18n.ts +13 -0
- package/templates/basic/apps/frontend/src/middleware.ts +7 -0
- package/templates/basic/apps/frontend/src/plugins/admin/langs/en.json +654 -0
- package/templates/basic/apps/frontend/src/plugins/core/langs/en.json +372 -0
- package/templates/basic/apps/frontend/src/plugins/welcome/langs/en.json +17 -0
- package/templates/basic/apps/frontend/src/plugins/welcome/templates/default-page.tsx +40 -0
|
@@ -0,0 +1,1381 @@
|
|
|
1
|
+
export type Maybe<T> = T;
|
|
2
|
+
export type InputMaybe<T> = T;
|
|
3
|
+
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
4
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
5
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
6
|
+
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
7
|
+
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
|
8
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
9
|
+
export type Scalars = {
|
|
10
|
+
ID: { input: string; output: string; }
|
|
11
|
+
String: { input: string; output: string; }
|
|
12
|
+
Boolean: { input: boolean; output: boolean; }
|
|
13
|
+
Int: { input: number; output: number; }
|
|
14
|
+
Float: { input: number; output: number; }
|
|
15
|
+
DateTime: { input: Date; output: Date; }
|
|
16
|
+
Upload: { input: File; output: File; }
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const AllowTypeFilesEnum = {
|
|
20
|
+
all: 'all',
|
|
21
|
+
images: 'images',
|
|
22
|
+
images_videos: 'images_videos',
|
|
23
|
+
none: 'none'
|
|
24
|
+
} as const;
|
|
25
|
+
|
|
26
|
+
export type AllowTypeFilesEnum = typeof AllowTypeFilesEnum[keyof typeof AllowTypeFilesEnum];
|
|
27
|
+
export type AuthorizationAdminSessionsObj = {
|
|
28
|
+
__typename?: 'AuthorizationAdminSessionsObj';
|
|
29
|
+
files: FilesAuthorizationCoreSessions;
|
|
30
|
+
restart_server: Scalars['Boolean']['output'];
|
|
31
|
+
user?: Maybe<AuthorizationCurrentUserObj>;
|
|
32
|
+
version: Scalars['String']['output'];
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type AuthorizationCoreMiddleware = {
|
|
36
|
+
__typename?: 'AuthorizationCoreMiddleware';
|
|
37
|
+
force_login: Scalars['Boolean']['output'];
|
|
38
|
+
lock_register: Scalars['Boolean']['output'];
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export type AuthorizationCoreSessionsObj = {
|
|
42
|
+
__typename?: 'AuthorizationCoreSessionsObj';
|
|
43
|
+
files: FilesAuthorizationCoreSessions;
|
|
44
|
+
plugin_default: Scalars['String']['output'];
|
|
45
|
+
user?: Maybe<AuthorizationCurrentUserObj>;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export type AuthorizationCurrentUserObj = {
|
|
49
|
+
__typename?: 'AuthorizationCurrentUserObj';
|
|
50
|
+
avatar?: Maybe<AvatarUser>;
|
|
51
|
+
avatar_color: Scalars['String']['output'];
|
|
52
|
+
email: Scalars['String']['output'];
|
|
53
|
+
group: GroupUser;
|
|
54
|
+
id: Scalars['Int']['output'];
|
|
55
|
+
is_admin: Scalars['Boolean']['output'];
|
|
56
|
+
is_mod: Scalars['Boolean']['output'];
|
|
57
|
+
language: Scalars['String']['output'];
|
|
58
|
+
name: Scalars['String']['output'];
|
|
59
|
+
name_seo: Scalars['String']['output'];
|
|
60
|
+
newsletter: Scalars['Boolean']['output'];
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export type AvatarUser = {
|
|
64
|
+
__typename?: 'AvatarUser';
|
|
65
|
+
dir_folder: Scalars['String']['output'];
|
|
66
|
+
file_name: Scalars['String']['output'];
|
|
67
|
+
id: Scalars['Int']['output'];
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export type CaptchaSecurityCoreMiddleware = {
|
|
71
|
+
__typename?: 'CaptchaSecurityCoreMiddleware';
|
|
72
|
+
site_key: Scalars['String']['output'];
|
|
73
|
+
type: CaptchaTypeEnum | `${CaptchaTypeEnum}`;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const CaptchaTypeEnum = {
|
|
77
|
+
cloudflare_turnstile: 'cloudflare_turnstile',
|
|
78
|
+
none: 'none',
|
|
79
|
+
recaptcha_v2_checkbox: 'recaptcha_v2_checkbox',
|
|
80
|
+
recaptcha_v2_invisible: 'recaptcha_v2_invisible',
|
|
81
|
+
recaptcha_v3: 'recaptcha_v3'
|
|
82
|
+
} as const;
|
|
83
|
+
|
|
84
|
+
export type CaptchaTypeEnum = typeof CaptchaTypeEnum[keyof typeof CaptchaTypeEnum];
|
|
85
|
+
export type ColorsEditAdminThemeEditor = {
|
|
86
|
+
accent: ThemeVariableInput;
|
|
87
|
+
accent_foreground: ThemeVariableInput;
|
|
88
|
+
background: ThemeVariableInput;
|
|
89
|
+
border: ThemeVariableInput;
|
|
90
|
+
card: ThemeVariableInput;
|
|
91
|
+
cover: ThemeVariableInput;
|
|
92
|
+
cover_foreground: ThemeVariableInput;
|
|
93
|
+
destructive: ThemeVariableInput;
|
|
94
|
+
destructive_foreground: ThemeVariableInput;
|
|
95
|
+
muted: ThemeVariableInput;
|
|
96
|
+
muted_foreground: ThemeVariableInput;
|
|
97
|
+
primary: ThemeVariableInput;
|
|
98
|
+
primary_foreground: ThemeVariableInput;
|
|
99
|
+
secondary: ThemeVariableInput;
|
|
100
|
+
secondary_foreground: ThemeVariableInput;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export type ColorsShowCoreThemeEditor = {
|
|
104
|
+
__typename?: 'ColorsShowCoreThemeEditor';
|
|
105
|
+
accent: ThemeVariable;
|
|
106
|
+
accent_foreground: ThemeVariable;
|
|
107
|
+
background: ThemeVariable;
|
|
108
|
+
border: ThemeVariable;
|
|
109
|
+
card: ThemeVariable;
|
|
110
|
+
cover: ThemeVariable;
|
|
111
|
+
cover_foreground: ThemeVariable;
|
|
112
|
+
destructive: ThemeVariable;
|
|
113
|
+
destructive_foreground: ThemeVariable;
|
|
114
|
+
muted: ThemeVariable;
|
|
115
|
+
muted_foreground: ThemeVariable;
|
|
116
|
+
primary: ThemeVariable;
|
|
117
|
+
primary_foreground: ThemeVariable;
|
|
118
|
+
secondary: ThemeVariable;
|
|
119
|
+
secondary_foreground: ThemeVariable;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
export type ContentCreateAdminGroups = {
|
|
123
|
+
files_allow_upload: Scalars['Boolean']['input'];
|
|
124
|
+
files_max_storage_for_submit: Scalars['Int']['input'];
|
|
125
|
+
files_total_max_storage: Scalars['Int']['input'];
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export type ContentShowAdminGroups = {
|
|
129
|
+
__typename?: 'ContentShowAdminGroups';
|
|
130
|
+
files_allow_upload: Scalars['Boolean']['output'];
|
|
131
|
+
files_max_storage_for_submit: Scalars['Int']['output'];
|
|
132
|
+
files_total_max_storage: Scalars['Int']['output'];
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
export type EditAdminMembersObj = {
|
|
136
|
+
__typename?: 'EditAdminMembersObj';
|
|
137
|
+
birthday?: Maybe<Scalars['DateTime']['output']>;
|
|
138
|
+
email: Scalars['String']['output'];
|
|
139
|
+
first_name?: Maybe<Scalars['String']['output']>;
|
|
140
|
+
id: Scalars['Int']['output'];
|
|
141
|
+
last_name?: Maybe<Scalars['String']['output']>;
|
|
142
|
+
name: Scalars['String']['output'];
|
|
143
|
+
newsletter: Scalars['Boolean']['output'];
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
export type EditAdminSettingsObj = {
|
|
147
|
+
__typename?: 'EditAdminSettingsObj';
|
|
148
|
+
site_copyright: Array<StringLanguage>;
|
|
149
|
+
site_description: Array<StringLanguage>;
|
|
150
|
+
site_name: Scalars['String']['output'];
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
export type EditorShowCoreMiddleware = {
|
|
154
|
+
__typename?: 'EditorShowCoreMiddleware';
|
|
155
|
+
files: FilesEditorShowCoreMiddleware;
|
|
156
|
+
sticky: Scalars['Boolean']['output'];
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
export type FilesAuthorizationCoreSessions = {
|
|
160
|
+
__typename?: 'FilesAuthorizationCoreSessions';
|
|
161
|
+
allow_upload: Scalars['Boolean']['output'];
|
|
162
|
+
max_storage_for_submit: Scalars['Int']['output'];
|
|
163
|
+
space_used: Scalars['Float']['output'];
|
|
164
|
+
total_max_storage: Scalars['Int']['output'];
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
export type FilesEditAdminEditorStyles = {
|
|
168
|
+
allow_type: AllowTypeFilesEnum | `${AllowTypeFilesEnum}`;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
export type FilesEditorShowCoreMiddleware = {
|
|
172
|
+
__typename?: 'FilesEditorShowCoreMiddleware';
|
|
173
|
+
allow_type: AllowTypeFilesEnum | `${AllowTypeFilesEnum}`;
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
export type GroupUser = {
|
|
177
|
+
__typename?: 'GroupUser';
|
|
178
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
id: Scalars['Int']['output'];
|
|
180
|
+
name: Array<StringLanguage>;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
export type HslColor = {
|
|
184
|
+
__typename?: 'HslColor';
|
|
185
|
+
h: Scalars['Int']['output'];
|
|
186
|
+
l: Scalars['Int']['output'];
|
|
187
|
+
s: Scalars['Int']['output'];
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
export type HslColorInput = {
|
|
191
|
+
h: Scalars['Int']['input'];
|
|
192
|
+
l: Scalars['Int']['input'];
|
|
193
|
+
s: Scalars['Int']['input'];
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
export type LanguagesCoreMiddleware = {
|
|
197
|
+
__typename?: 'LanguagesCoreMiddleware';
|
|
198
|
+
code: Scalars['String']['output'];
|
|
199
|
+
default: Scalars['Boolean']['output'];
|
|
200
|
+
enabled: Scalars['Boolean']['output'];
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
export const LayoutAdminInstallEnum = {
|
|
204
|
+
account: 'ACCOUNT',
|
|
205
|
+
database: 'DATABASE',
|
|
206
|
+
finish: 'FINISH'
|
|
207
|
+
} as const;
|
|
208
|
+
|
|
209
|
+
export type LayoutAdminInstallEnum = typeof LayoutAdminInstallEnum[keyof typeof LayoutAdminInstallEnum];
|
|
210
|
+
export type LayoutAdminInstallObj = {
|
|
211
|
+
__typename?: 'LayoutAdminInstallObj';
|
|
212
|
+
status: LayoutAdminInstallEnum | `${LayoutAdminInstallEnum}`;
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
export type LogoShowCoreThemeEditor = {
|
|
216
|
+
__typename?: 'LogoShowCoreThemeEditor';
|
|
217
|
+
dark?: Maybe<UploadCoreFilesObj>;
|
|
218
|
+
light?: Maybe<UploadCoreFilesObj>;
|
|
219
|
+
mobile_dark?: Maybe<UploadCoreFilesObj>;
|
|
220
|
+
mobile_light?: Maybe<UploadCoreFilesObj>;
|
|
221
|
+
mobile_width: Scalars['Float']['output'];
|
|
222
|
+
text: Scalars['String']['output'];
|
|
223
|
+
width: Scalars['Float']['output'];
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
export type LogosEditAdminThemeEditor = {
|
|
227
|
+
dark?: InputMaybe<UploadWithKeepCoreFilesArgs>;
|
|
228
|
+
light?: InputMaybe<UploadWithKeepCoreFilesArgs>;
|
|
229
|
+
mobile_dark?: InputMaybe<UploadWithKeepCoreFilesArgs>;
|
|
230
|
+
mobile_light?: InputMaybe<UploadWithKeepCoreFilesArgs>;
|
|
231
|
+
mobile_width: Scalars['Float']['input'];
|
|
232
|
+
text: Scalars['String']['input'];
|
|
233
|
+
width: Scalars['Float']['input'];
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
export type LogsAdminEmail = {
|
|
237
|
+
__typename?: 'LogsAdminEmail';
|
|
238
|
+
created: Scalars['DateTime']['output'];
|
|
239
|
+
error: Scalars['String']['output'];
|
|
240
|
+
html: Scalars['String']['output'];
|
|
241
|
+
id: Scalars['Float']['output'];
|
|
242
|
+
subject: Scalars['String']['output'];
|
|
243
|
+
to: Scalars['String']['output'];
|
|
244
|
+
};
|
|
245
|
+
|
|
246
|
+
export type LogsAdminEmailObj = {
|
|
247
|
+
__typename?: 'LogsAdminEmailObj';
|
|
248
|
+
edges: Array<LogsAdminEmail>;
|
|
249
|
+
pageInfo: PageInfo;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export type Mutation = {
|
|
253
|
+
__typename?: 'Mutation';
|
|
254
|
+
admin__core_ai__test: Scalars['String']['output'];
|
|
255
|
+
admin__core_authorization_settings__edit: ShowAdminAuthorizationSettingsObj;
|
|
256
|
+
admin__core_email_settings__edit: ShowAdminEmailSettingsServiceObj;
|
|
257
|
+
admin__core_email_settings__test: Scalars['String']['output'];
|
|
258
|
+
admin__core_files__delete: Scalars['String']['output'];
|
|
259
|
+
admin__core_groups__create: ShowAdminGroups;
|
|
260
|
+
admin__core_groups__delete: Scalars['String']['output'];
|
|
261
|
+
admin__core_groups__edit: ShowAdminGroups;
|
|
262
|
+
admin__core_languages__create: ShowCoreLanguages;
|
|
263
|
+
admin__core_languages__delete: Scalars['String']['output'];
|
|
264
|
+
admin__core_languages__edit: ShowCoreLanguages;
|
|
265
|
+
admin__core_main_settings__edit: EditAdminSettingsObj;
|
|
266
|
+
admin__core_manifest_metadata__edit: ShowAdminManifestMetadataObj;
|
|
267
|
+
admin__core_members__confirm_email: Scalars['String']['output'];
|
|
268
|
+
admin__core_members__create: SignUpCoreSessionsObj;
|
|
269
|
+
admin__core_members__delete: Scalars['String']['output'];
|
|
270
|
+
admin__core_members__edit: EditAdminMembersObj;
|
|
271
|
+
admin__core_nav_styles__change_position: Scalars['String']['output'];
|
|
272
|
+
admin__core_plugins__create: ShowAdminPlugins;
|
|
273
|
+
admin__core_plugins__delete: Scalars['String']['output'];
|
|
274
|
+
admin__core_plugins__download: Scalars['String']['output'];
|
|
275
|
+
admin__core_plugins__edit: ShowAdminPlugins;
|
|
276
|
+
admin__core_plugins__nav__change_position: Scalars['String']['output'];
|
|
277
|
+
admin__core_plugins__nav__create: ShowAdminNavPluginsObj;
|
|
278
|
+
admin__core_plugins__nav__delete: Scalars['String']['output'];
|
|
279
|
+
admin__core_plugins__nav__edit: ShowAdminNavPluginsObj;
|
|
280
|
+
admin__core_plugins__permissions_admin__create_edit: ShowAdminPermissionsAdminPluginsObj;
|
|
281
|
+
admin__core_plugins__permissions_admin__delete: Scalars['String']['output'];
|
|
282
|
+
admin__core_plugins__upload: Scalars['String']['output'];
|
|
283
|
+
admin__core_security__captcha__edit: ShowAdminCaptchaSecurityObj;
|
|
284
|
+
admin__core_staff_administrators__create: ShowAdminStaffAdministrators;
|
|
285
|
+
admin__core_staff_administrators__delete: Scalars['String']['output'];
|
|
286
|
+
admin__core_staff_moderators__create: ShowAdminStaffModerators;
|
|
287
|
+
admin__core_staff_moderators__delete: Scalars['String']['output'];
|
|
288
|
+
admin__core_styles__editor__edit: EditorShowCoreMiddleware;
|
|
289
|
+
admin__core_styles__nav__create: ShowCoreNav;
|
|
290
|
+
admin__core_styles__nav__delete: Scalars['String']['output'];
|
|
291
|
+
admin__core_styles__nav__edit: ShowCoreNav;
|
|
292
|
+
admin__core_terms_settings__create: ShowCoreTerms;
|
|
293
|
+
admin__core_terms_settings__delete: Scalars['String']['output'];
|
|
294
|
+
admin__core_terms_settings__edit: ShowCoreTerms;
|
|
295
|
+
admin__core_theme_editor__edit: Scalars['String']['output'];
|
|
296
|
+
admin__install__create_database: Scalars['String']['output'];
|
|
297
|
+
admin_sessions__sign_out: Scalars['String']['output'];
|
|
298
|
+
core_editor_files__delete: Scalars['String']['output'];
|
|
299
|
+
core_editor_files__upload: ShowCoreFiles;
|
|
300
|
+
core_members__avatar__delete: Scalars['String']['output'];
|
|
301
|
+
core_members__avatar__upload: UploadAvatarCoreMembersObj;
|
|
302
|
+
core_members__change_password: Scalars['String']['output'];
|
|
303
|
+
core_members__reset_password__create_key: Scalars['String']['output'];
|
|
304
|
+
core_sessions__sign_in: Scalars['String']['output'];
|
|
305
|
+
core_sessions__sign_out: Scalars['String']['output'];
|
|
306
|
+
core_sessions__sign_up: SignUpCoreSessionsObj;
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
export type MutationAdmin__Core_Ai__TestArgs = {
|
|
311
|
+
prompt: Scalars['String']['input'];
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
export type MutationAdmin__Core_Authorization_Settings__EditArgs = {
|
|
316
|
+
force_login: Scalars['Boolean']['input'];
|
|
317
|
+
lock_register: Scalars['Boolean']['input'];
|
|
318
|
+
require_confirm_email: Scalars['Boolean']['input'];
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
export type MutationAdmin__Core_Email_Settings__EditArgs = {
|
|
323
|
+
color_primary: Scalars['String']['input'];
|
|
324
|
+
color_primary_foreground: Scalars['String']['input'];
|
|
325
|
+
logo?: InputMaybe<UploadWithKeepCoreFilesArgs>;
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
export type MutationAdmin__Core_Email_Settings__TestArgs = {
|
|
330
|
+
message: Scalars['String']['input'];
|
|
331
|
+
preview_text?: InputMaybe<Scalars['String']['input']>;
|
|
332
|
+
subject: Scalars['String']['input'];
|
|
333
|
+
to: Scalars['String']['input'];
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
export type MutationAdmin__Core_Files__DeleteArgs = {
|
|
338
|
+
id: Scalars['Int']['input'];
|
|
339
|
+
};
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
export type MutationAdmin__Core_Groups__CreateArgs = {
|
|
343
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
344
|
+
content: ContentCreateAdminGroups;
|
|
345
|
+
name: Array<StringLanguageInput>;
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
export type MutationAdmin__Core_Groups__DeleteArgs = {
|
|
350
|
+
id: Scalars['Int']['input'];
|
|
351
|
+
};
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
export type MutationAdmin__Core_Groups__EditArgs = {
|
|
355
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
356
|
+
content: ContentCreateAdminGroups;
|
|
357
|
+
id: Scalars['Int']['input'];
|
|
358
|
+
name: Array<StringLanguageInput>;
|
|
359
|
+
};
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
export type MutationAdmin__Core_Languages__CreateArgs = {
|
|
363
|
+
allow_in_input: Scalars['Boolean']['input'];
|
|
364
|
+
code: Scalars['String']['input'];
|
|
365
|
+
locale: Scalars['String']['input'];
|
|
366
|
+
name: Scalars['String']['input'];
|
|
367
|
+
time_24: Scalars['Boolean']['input'];
|
|
368
|
+
timezone: Scalars['String']['input'];
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
export type MutationAdmin__Core_Languages__DeleteArgs = {
|
|
373
|
+
code: Scalars['String']['input'];
|
|
374
|
+
};
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
export type MutationAdmin__Core_Languages__EditArgs = {
|
|
378
|
+
allow_in_input: Scalars['Boolean']['input'];
|
|
379
|
+
default: Scalars['Boolean']['input'];
|
|
380
|
+
enabled: Scalars['Boolean']['input'];
|
|
381
|
+
id: Scalars['Int']['input'];
|
|
382
|
+
locale: Scalars['String']['input'];
|
|
383
|
+
name: Scalars['String']['input'];
|
|
384
|
+
time_24: Scalars['Boolean']['input'];
|
|
385
|
+
timezone: Scalars['String']['input'];
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
export type MutationAdmin__Core_Main_Settings__EditArgs = {
|
|
390
|
+
contact_email: Scalars['String']['input'];
|
|
391
|
+
site_copyright: Array<StringLanguageInput>;
|
|
392
|
+
site_description: Array<StringLanguageInput>;
|
|
393
|
+
site_name: Scalars['String']['input'];
|
|
394
|
+
site_short_name: Scalars['String']['input'];
|
|
395
|
+
};
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
export type MutationAdmin__Core_Manifest_Metadata__EditArgs = {
|
|
399
|
+
background_color: Scalars['String']['input'];
|
|
400
|
+
display: Scalars['String']['input'];
|
|
401
|
+
start_url: Scalars['String']['input'];
|
|
402
|
+
theme_color: Scalars['String']['input'];
|
|
403
|
+
};
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
export type MutationAdmin__Core_Members__Confirm_EmailArgs = {
|
|
407
|
+
id: Scalars['Float']['input'];
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
export type MutationAdmin__Core_Members__CreateArgs = {
|
|
412
|
+
email: Scalars['String']['input'];
|
|
413
|
+
name: Scalars['String']['input'];
|
|
414
|
+
password: Scalars['String']['input'];
|
|
415
|
+
};
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
export type MutationAdmin__Core_Members__DeleteArgs = {
|
|
419
|
+
id: Scalars['Float']['input'];
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
export type MutationAdmin__Core_Members__EditArgs = {
|
|
424
|
+
email: Scalars['String']['input'];
|
|
425
|
+
id: Scalars['Int']['input'];
|
|
426
|
+
name: Scalars['String']['input'];
|
|
427
|
+
newsletter: Scalars['Boolean']['input'];
|
|
428
|
+
};
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
export type MutationAdmin__Core_Nav_Styles__Change_PositionArgs = {
|
|
432
|
+
id: Scalars['Int']['input'];
|
|
433
|
+
index_to_move: Scalars['Int']['input'];
|
|
434
|
+
parent_id: Scalars['Int']['input'];
|
|
435
|
+
};
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
export type MutationAdmin__Core_Plugins__CreateArgs = {
|
|
439
|
+
author: Scalars['String']['input'];
|
|
440
|
+
author_url?: InputMaybe<Scalars['String']['input']>;
|
|
441
|
+
code: Scalars['String']['input'];
|
|
442
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
443
|
+
name: Scalars['String']['input'];
|
|
444
|
+
support_url: Scalars['String']['input'];
|
|
445
|
+
};
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
export type MutationAdmin__Core_Plugins__DeleteArgs = {
|
|
449
|
+
code: Scalars['String']['input'];
|
|
450
|
+
};
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
export type MutationAdmin__Core_Plugins__DownloadArgs = {
|
|
454
|
+
code: Scalars['String']['input'];
|
|
455
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
456
|
+
version_code?: InputMaybe<Scalars['Int']['input']>;
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
export type MutationAdmin__Core_Plugins__EditArgs = {
|
|
461
|
+
author: Scalars['String']['input'];
|
|
462
|
+
author_url?: InputMaybe<Scalars['String']['input']>;
|
|
463
|
+
code: Scalars['String']['input'];
|
|
464
|
+
default?: InputMaybe<Scalars['Boolean']['input']>;
|
|
465
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
466
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
467
|
+
name: Scalars['String']['input'];
|
|
468
|
+
support_url: Scalars['String']['input'];
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
export type MutationAdmin__Core_Plugins__Nav__Change_PositionArgs = {
|
|
473
|
+
code: Scalars['String']['input'];
|
|
474
|
+
index_to_move: Scalars['Int']['input'];
|
|
475
|
+
parent_code?: InputMaybe<Scalars['String']['input']>;
|
|
476
|
+
plugin_code: Scalars['String']['input'];
|
|
477
|
+
};
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
export type MutationAdmin__Core_Plugins__Nav__CreateArgs = {
|
|
481
|
+
code: Scalars['String']['input'];
|
|
482
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
483
|
+
keywords: Array<Scalars['String']['input']>;
|
|
484
|
+
parent_code?: InputMaybe<Scalars['String']['input']>;
|
|
485
|
+
plugin_code: Scalars['String']['input'];
|
|
486
|
+
};
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
export type MutationAdmin__Core_Plugins__Nav__DeleteArgs = {
|
|
490
|
+
code: Scalars['String']['input'];
|
|
491
|
+
parent_code?: InputMaybe<Scalars['String']['input']>;
|
|
492
|
+
plugin_code: Scalars['String']['input'];
|
|
493
|
+
};
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
export type MutationAdmin__Core_Plugins__Nav__EditArgs = {
|
|
497
|
+
code: Scalars['String']['input'];
|
|
498
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
499
|
+
keywords: Array<Scalars['String']['input']>;
|
|
500
|
+
parent_code?: InputMaybe<Scalars['String']['input']>;
|
|
501
|
+
plugin_code: Scalars['String']['input'];
|
|
502
|
+
previous_code: Scalars['String']['input'];
|
|
503
|
+
};
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
export type MutationAdmin__Core_Plugins__Permissions_Admin__Create_EditArgs = {
|
|
507
|
+
id: Scalars['String']['input'];
|
|
508
|
+
old_id?: InputMaybe<Scalars['String']['input']>;
|
|
509
|
+
parent_id?: InputMaybe<Scalars['String']['input']>;
|
|
510
|
+
plugin_code: Scalars['String']['input'];
|
|
511
|
+
};
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
export type MutationAdmin__Core_Plugins__Permissions_Admin__DeleteArgs = {
|
|
515
|
+
id: Scalars['String']['input'];
|
|
516
|
+
parent_id?: InputMaybe<Scalars['String']['input']>;
|
|
517
|
+
plugin_code: Scalars['String']['input'];
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
export type MutationAdmin__Core_Plugins__UploadArgs = {
|
|
522
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
523
|
+
file: Scalars['Upload']['input'];
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
export type MutationAdmin__Core_Security__Captcha__EditArgs = {
|
|
528
|
+
secret_key: Scalars['String']['input'];
|
|
529
|
+
site_key: Scalars['String']['input'];
|
|
530
|
+
type: CaptchaTypeEnum;
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
export type MutationAdmin__Core_Staff_Administrators__CreateArgs = {
|
|
535
|
+
group_id?: InputMaybe<Scalars['Int']['input']>;
|
|
536
|
+
unrestricted: Scalars['Boolean']['input'];
|
|
537
|
+
user_id?: InputMaybe<Scalars['Int']['input']>;
|
|
538
|
+
};
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
export type MutationAdmin__Core_Staff_Administrators__DeleteArgs = {
|
|
542
|
+
id: Scalars['Int']['input'];
|
|
543
|
+
};
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
export type MutationAdmin__Core_Staff_Moderators__CreateArgs = {
|
|
547
|
+
group_id?: InputMaybe<Scalars['Int']['input']>;
|
|
548
|
+
unrestricted: Scalars['Boolean']['input'];
|
|
549
|
+
user_id?: InputMaybe<Scalars['Int']['input']>;
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
export type MutationAdmin__Core_Staff_Moderators__DeleteArgs = {
|
|
554
|
+
id: Scalars['Int']['input'];
|
|
555
|
+
};
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
export type MutationAdmin__Core_Styles__Editor__EditArgs = {
|
|
559
|
+
files: FilesEditAdminEditorStyles;
|
|
560
|
+
sticky: Scalars['Boolean']['input'];
|
|
561
|
+
};
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
export type MutationAdmin__Core_Styles__Nav__CreateArgs = {
|
|
565
|
+
description: Array<StringLanguageInput>;
|
|
566
|
+
external: Scalars['Boolean']['input'];
|
|
567
|
+
href: Scalars['String']['input'];
|
|
568
|
+
name: Array<StringLanguageInput>;
|
|
569
|
+
};
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
export type MutationAdmin__Core_Styles__Nav__DeleteArgs = {
|
|
573
|
+
id: Scalars['Int']['input'];
|
|
574
|
+
};
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
export type MutationAdmin__Core_Styles__Nav__EditArgs = {
|
|
578
|
+
description: Array<StringLanguageInput>;
|
|
579
|
+
external: Scalars['Boolean']['input'];
|
|
580
|
+
href: Scalars['String']['input'];
|
|
581
|
+
id: Scalars['Int']['input'];
|
|
582
|
+
name: Array<StringLanguageInput>;
|
|
583
|
+
};
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
export type MutationAdmin__Core_Terms_Settings__CreateArgs = {
|
|
587
|
+
code: Scalars['String']['input'];
|
|
588
|
+
content: Array<StringLanguageInput>;
|
|
589
|
+
href?: InputMaybe<Scalars['String']['input']>;
|
|
590
|
+
title: Array<StringLanguageInput>;
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
export type MutationAdmin__Core_Terms_Settings__DeleteArgs = {
|
|
595
|
+
code: Scalars['String']['input'];
|
|
596
|
+
};
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
export type MutationAdmin__Core_Terms_Settings__EditArgs = {
|
|
600
|
+
code: Scalars['String']['input'];
|
|
601
|
+
content: Array<StringLanguageInput>;
|
|
602
|
+
href?: InputMaybe<Scalars['String']['input']>;
|
|
603
|
+
id: Scalars['Float']['input'];
|
|
604
|
+
title: Array<StringLanguageInput>;
|
|
605
|
+
};
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
export type MutationAdmin__Core_Theme_Editor__EditArgs = {
|
|
609
|
+
colors?: InputMaybe<ColorsEditAdminThemeEditor>;
|
|
610
|
+
logos: LogosEditAdminThemeEditor;
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
export type MutationCore_Editor_Files__DeleteArgs = {
|
|
615
|
+
id: Scalars['Int']['input'];
|
|
616
|
+
security_key?: InputMaybe<Scalars['String']['input']>;
|
|
617
|
+
};
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
export type MutationCore_Editor_Files__UploadArgs = {
|
|
621
|
+
file: Scalars['Upload']['input'];
|
|
622
|
+
folder: Scalars['String']['input'];
|
|
623
|
+
plugin: Scalars['String']['input'];
|
|
624
|
+
};
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
export type MutationCore_Members__Avatar__UploadArgs = {
|
|
628
|
+
file: Scalars['Upload']['input'];
|
|
629
|
+
};
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
export type MutationCore_Members__Change_PasswordArgs = {
|
|
633
|
+
hashKey: Scalars['String']['input'];
|
|
634
|
+
password: Scalars['String']['input'];
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
export type MutationCore_Members__Reset_Password__Create_KeyArgs = {
|
|
639
|
+
email: Scalars['String']['input'];
|
|
640
|
+
};
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
export type MutationCore_Sessions__Sign_InArgs = {
|
|
644
|
+
admin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
645
|
+
email: Scalars['String']['input'];
|
|
646
|
+
password: Scalars['String']['input'];
|
|
647
|
+
remember?: InputMaybe<Scalars['Boolean']['input']>;
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
export type MutationCore_Sessions__Sign_UpArgs = {
|
|
652
|
+
email: Scalars['String']['input'];
|
|
653
|
+
name: Scalars['String']['input'];
|
|
654
|
+
newsletter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
655
|
+
password: Scalars['String']['input'];
|
|
656
|
+
};
|
|
657
|
+
|
|
658
|
+
export type NavSearchAdminSessions = {
|
|
659
|
+
__typename?: 'NavSearchAdminSessions';
|
|
660
|
+
code: Scalars['String']['output'];
|
|
661
|
+
code_plugin: Scalars['String']['output'];
|
|
662
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
663
|
+
keywords: Array<Scalars['String']['output']>;
|
|
664
|
+
parent_nav_code?: Maybe<Scalars['String']['output']>;
|
|
665
|
+
};
|
|
666
|
+
|
|
667
|
+
export type PageInfo = {
|
|
668
|
+
__typename?: 'PageInfo';
|
|
669
|
+
count: Scalars['Float']['output'];
|
|
670
|
+
endCursor?: Maybe<Scalars['Int']['output']>;
|
|
671
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
672
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
673
|
+
startCursor?: Maybe<Scalars['Int']['output']>;
|
|
674
|
+
totalCount: Scalars['Float']['output'];
|
|
675
|
+
};
|
|
676
|
+
|
|
677
|
+
export type PermissionsAdminStaffAdministrators = {
|
|
678
|
+
__typename?: 'PermissionsAdminStaffAdministrators';
|
|
679
|
+
permissions: Array<ShowAdminPermissionsAdminPluginsObj>;
|
|
680
|
+
plugin: Scalars['String']['output'];
|
|
681
|
+
plugin_code: Scalars['String']['output'];
|
|
682
|
+
};
|
|
683
|
+
|
|
684
|
+
export type Query = {
|
|
685
|
+
__typename?: 'Query';
|
|
686
|
+
admin__core_authorization_settings__show: ShowAdminAuthorizationSettingsObj;
|
|
687
|
+
admin__core_email__logs: LogsAdminEmailObj;
|
|
688
|
+
admin__core_email_settings__show: ShowAdminEmailSettingsServiceObj;
|
|
689
|
+
admin__core_files__show: ShowAdminFilesObj;
|
|
690
|
+
admin__core_groups__show: ShowAdminGroupsObj;
|
|
691
|
+
admin__core_manifest_metadata__show: ShowAdminManifestMetadataObj;
|
|
692
|
+
admin__core_members__show: ShowAdminMembersObj;
|
|
693
|
+
admin__core_members__stats_sign_up: Array<SignUpStatsAdminMembers>;
|
|
694
|
+
admin__core_plugins__nav__show: Array<ShowAdminNavPluginsObj>;
|
|
695
|
+
admin__core_plugins__permissions_admin__show: Array<ShowAdminPermissionsAdminPluginsObj>;
|
|
696
|
+
admin__core_plugins__show: ShowAdminPluginsObj;
|
|
697
|
+
admin__core_security__captcha__show: ShowAdminCaptchaSecurityObj;
|
|
698
|
+
admin__core_staff_administrators__show: ShowAdminStaffAdministratorsObj;
|
|
699
|
+
admin__core_staff_moderators__show: ShowAdminStaffModeratorsObj;
|
|
700
|
+
admin__install__layout: LayoutAdminInstallObj;
|
|
701
|
+
admin__nav__show: Array<ShowAdminNavObj>;
|
|
702
|
+
admin__sessions__authorization: AuthorizationAdminSessionsObj;
|
|
703
|
+
admin__sessions__search: SearchAdminSessionsObj;
|
|
704
|
+
core_files__show: ShowCoreFilesObj;
|
|
705
|
+
core_languages__show: ShowCoreLanguagesObj;
|
|
706
|
+
core_members__show: ShowCoreMembersObj;
|
|
707
|
+
core_middleware__show: ShowCoreMiddlewareObj;
|
|
708
|
+
core_nav__show: ShowCoreNavObj;
|
|
709
|
+
core_plugins__show: Array<ShowCorePluginsObj>;
|
|
710
|
+
core_sessions__authorization: AuthorizationCoreSessionsObj;
|
|
711
|
+
core_sessions__devices__show: Array<ShowCoreSessionDevicesObj>;
|
|
712
|
+
core_sessions__email_verify: Scalars['String']['output'];
|
|
713
|
+
core_settings__show: ShowSettingsObj;
|
|
714
|
+
core_terms__show: ShowCoreTermsObj;
|
|
715
|
+
core_theme_editor__show: ShowCoreThemeEditorObj;
|
|
716
|
+
};
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
export type QueryAdmin__Core_Email__LogsArgs = {
|
|
720
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
722
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
723
|
+
};
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
export type QueryAdmin__Core_Files__ShowArgs = {
|
|
727
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
728
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
729
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
730
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
sortBy?: InputMaybe<ShowCoreFilesSortByArgs>;
|
|
732
|
+
};
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
export type QueryAdmin__Core_Groups__ShowArgs = {
|
|
736
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
737
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
738
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
739
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
+
sortBy?: InputMaybe<ShowAdminGroupsSortByArgs>;
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
export type QueryAdmin__Core_Members__ShowArgs = {
|
|
745
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
746
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
747
|
+
groups?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
748
|
+
id?: InputMaybe<Scalars['Float']['input']>;
|
|
749
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
750
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
751
|
+
sortBy?: InputMaybe<ShowAdminMembersSortByArgs>;
|
|
752
|
+
};
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
export type QueryAdmin__Core_Plugins__Nav__ShowArgs = {
|
|
756
|
+
plugin_code: Scalars['String']['input'];
|
|
757
|
+
};
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
export type QueryAdmin__Core_Plugins__Permissions_Admin__ShowArgs = {
|
|
761
|
+
plugin_code: Scalars['String']['input'];
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
export type QueryAdmin__Core_Plugins__ShowArgs = {
|
|
766
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
767
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
768
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
769
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
770
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
771
|
+
sortBy?: InputMaybe<ShowAdminPluginsSortByArgs>;
|
|
772
|
+
};
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
export type QueryAdmin__Core_Staff_Administrators__ShowArgs = {
|
|
776
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
777
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
778
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
779
|
+
sortBy?: InputMaybe<ShowAdminStaffAdministratorsSortByArgs>;
|
|
780
|
+
};
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
export type QueryAdmin__Core_Staff_Moderators__ShowArgs = {
|
|
784
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
785
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
786
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
787
|
+
sortBy?: InputMaybe<ShowAdminStaffModeratorsSortByArgs>;
|
|
788
|
+
};
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
export type QueryAdmin__Sessions__SearchArgs = {
|
|
792
|
+
search: Scalars['String']['input'];
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
export type QueryCore_Files__ShowArgs = {
|
|
797
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
798
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
799
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
800
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
801
|
+
sortBy?: InputMaybe<ShowCoreFilesSortByArgs>;
|
|
802
|
+
};
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
export type QueryCore_Languages__ShowArgs = {
|
|
806
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
808
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
809
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
810
|
+
sortBy?: InputMaybe<ShowCoreLanguagesSortByArgs>;
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
export type QueryCore_Members__ShowArgs = {
|
|
815
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
817
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
818
|
+
name_seo?: InputMaybe<Scalars['String']['input']>;
|
|
819
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
+
sortBy?: InputMaybe<ShowCoreMembersSortByArgs>;
|
|
821
|
+
};
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
export type QueryCore_Nav__ShowArgs = {
|
|
825
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
826
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
827
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
828
|
+
};
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
export type QueryCore_Sessions__Email_VerifyArgs = {
|
|
832
|
+
token: Scalars['String']['input'];
|
|
833
|
+
user_id: Scalars['Float']['input'];
|
|
834
|
+
};
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
export type QueryCore_Terms__ShowArgs = {
|
|
838
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
839
|
+
cursor?: InputMaybe<Scalars['Int']['input']>;
|
|
840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
841
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
842
|
+
};
|
|
843
|
+
|
|
844
|
+
export type SearchAdminSessionsObj = {
|
|
845
|
+
__typename?: 'SearchAdminSessionsObj';
|
|
846
|
+
nav: Array<NavSearchAdminSessions>;
|
|
847
|
+
};
|
|
848
|
+
|
|
849
|
+
export type SecurityCoreMiddleware = {
|
|
850
|
+
__typename?: 'SecurityCoreMiddleware';
|
|
851
|
+
captcha: CaptchaSecurityCoreMiddleware;
|
|
852
|
+
};
|
|
853
|
+
|
|
854
|
+
export type ShowAdminAuthorizationSettingsObj = {
|
|
855
|
+
__typename?: 'ShowAdminAuthorizationSettingsObj';
|
|
856
|
+
force_login: Scalars['Boolean']['output'];
|
|
857
|
+
lock_register: Scalars['Boolean']['output'];
|
|
858
|
+
require_confirm_email: Scalars['Boolean']['output'];
|
|
859
|
+
};
|
|
860
|
+
|
|
861
|
+
export type ShowAdminCaptchaSecurityObj = {
|
|
862
|
+
__typename?: 'ShowAdminCaptchaSecurityObj';
|
|
863
|
+
secret_key: Scalars['String']['output'];
|
|
864
|
+
site_key: Scalars['String']['output'];
|
|
865
|
+
type: CaptchaTypeEnum | `${CaptchaTypeEnum}`;
|
|
866
|
+
};
|
|
867
|
+
|
|
868
|
+
export type ShowAdminEmailSettingsServiceObj = {
|
|
869
|
+
__typename?: 'ShowAdminEmailSettingsServiceObj';
|
|
870
|
+
color_primary: Scalars['String']['output'];
|
|
871
|
+
is_enabled: Scalars['Boolean']['output'];
|
|
872
|
+
logo?: Maybe<UploadCoreFilesObj>;
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
export type ShowAdminFiles = {
|
|
876
|
+
__typename?: 'ShowAdminFiles';
|
|
877
|
+
count_uses: Scalars['Int']['output'];
|
|
878
|
+
created: Scalars['DateTime']['output'];
|
|
879
|
+
dir_folder: Scalars['String']['output'];
|
|
880
|
+
extension: Scalars['String']['output'];
|
|
881
|
+
file_alt?: Maybe<Scalars['String']['output']>;
|
|
882
|
+
file_name: Scalars['String']['output'];
|
|
883
|
+
file_name_original: Scalars['String']['output'];
|
|
884
|
+
file_size: Scalars['Int']['output'];
|
|
885
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
886
|
+
id: Scalars['Int']['output'];
|
|
887
|
+
mimetype: Scalars['String']['output'];
|
|
888
|
+
security_key?: Maybe<Scalars['String']['output']>;
|
|
889
|
+
user?: Maybe<User>;
|
|
890
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
891
|
+
};
|
|
892
|
+
|
|
893
|
+
export type ShowAdminFilesObj = {
|
|
894
|
+
__typename?: 'ShowAdminFilesObj';
|
|
895
|
+
edges: Array<ShowAdminFiles>;
|
|
896
|
+
pageInfo: PageInfo;
|
|
897
|
+
};
|
|
898
|
+
|
|
899
|
+
export type ShowAdminGroups = {
|
|
900
|
+
__typename?: 'ShowAdminGroups';
|
|
901
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
902
|
+
content: ContentShowAdminGroups;
|
|
903
|
+
created: Scalars['DateTime']['output'];
|
|
904
|
+
default: Scalars['Boolean']['output'];
|
|
905
|
+
guest: Scalars['Boolean']['output'];
|
|
906
|
+
id: Scalars['Int']['output'];
|
|
907
|
+
name: Array<StringLanguage>;
|
|
908
|
+
protected: Scalars['Boolean']['output'];
|
|
909
|
+
root: Scalars['Boolean']['output'];
|
|
910
|
+
updated: Scalars['DateTime']['output'];
|
|
911
|
+
users_count: Scalars['Int']['output'];
|
|
912
|
+
};
|
|
913
|
+
|
|
914
|
+
export type ShowAdminGroupsObj = {
|
|
915
|
+
__typename?: 'ShowAdminGroupsObj';
|
|
916
|
+
edges: Array<ShowAdminGroups>;
|
|
917
|
+
pageInfo: PageInfo;
|
|
918
|
+
};
|
|
919
|
+
|
|
920
|
+
export type ShowAdminGroupsSortByArgs = {
|
|
921
|
+
column: ShowAdminGroupsSortingColumnEnum | `${ShowAdminGroupsSortingColumnEnum}`;
|
|
922
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
923
|
+
};
|
|
924
|
+
|
|
925
|
+
export const ShowAdminGroupsSortingColumnEnum = {
|
|
926
|
+
created: 'created',
|
|
927
|
+
updated: 'updated'
|
|
928
|
+
} as const;
|
|
929
|
+
|
|
930
|
+
export type ShowAdminGroupsSortingColumnEnum = typeof ShowAdminGroupsSortingColumnEnum[keyof typeof ShowAdminGroupsSortingColumnEnum];
|
|
931
|
+
export type ShowAdminManifestMetadataObj = {
|
|
932
|
+
__typename?: 'ShowAdminManifestMetadataObj';
|
|
933
|
+
background_color: Scalars['String']['output'];
|
|
934
|
+
display: Scalars['String']['output'];
|
|
935
|
+
id: Scalars['String']['output'];
|
|
936
|
+
lang: Scalars['String']['output'];
|
|
937
|
+
start_url: Scalars['String']['output'];
|
|
938
|
+
theme_color: Scalars['String']['output'];
|
|
939
|
+
};
|
|
940
|
+
|
|
941
|
+
export type ShowAdminMembers = {
|
|
942
|
+
__typename?: 'ShowAdminMembers';
|
|
943
|
+
avatar?: Maybe<AvatarUser>;
|
|
944
|
+
avatar_color: Scalars['String']['output'];
|
|
945
|
+
email: Scalars['String']['output'];
|
|
946
|
+
email_verified: Scalars['Boolean']['output'];
|
|
947
|
+
group: GroupUser;
|
|
948
|
+
id: Scalars['Int']['output'];
|
|
949
|
+
joined: Scalars['DateTime']['output'];
|
|
950
|
+
language: Scalars['String']['output'];
|
|
951
|
+
name: Scalars['String']['output'];
|
|
952
|
+
name_seo: Scalars['String']['output'];
|
|
953
|
+
newsletter: Scalars['Boolean']['output'];
|
|
954
|
+
};
|
|
955
|
+
|
|
956
|
+
export type ShowAdminMembersObj = {
|
|
957
|
+
__typename?: 'ShowAdminMembersObj';
|
|
958
|
+
edges: Array<ShowAdminMembers>;
|
|
959
|
+
pageInfo: PageInfo;
|
|
960
|
+
};
|
|
961
|
+
|
|
962
|
+
export type ShowAdminMembersSortByArgs = {
|
|
963
|
+
column: ShowAdminMembersSortingColumnEnum | `${ShowAdminMembersSortingColumnEnum}`;
|
|
964
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
965
|
+
};
|
|
966
|
+
|
|
967
|
+
export const ShowAdminMembersSortingColumnEnum = {
|
|
968
|
+
first_name: 'first_name',
|
|
969
|
+
followers: 'followers',
|
|
970
|
+
joined: 'joined',
|
|
971
|
+
last_name: 'last_name',
|
|
972
|
+
name: 'name',
|
|
973
|
+
posts: 'posts',
|
|
974
|
+
reactions: 'reactions'
|
|
975
|
+
} as const;
|
|
976
|
+
|
|
977
|
+
export type ShowAdminMembersSortingColumnEnum = typeof ShowAdminMembersSortingColumnEnum[keyof typeof ShowAdminMembersSortingColumnEnum];
|
|
978
|
+
export type ShowAdminNavObj = {
|
|
979
|
+
__typename?: 'ShowAdminNavObj';
|
|
980
|
+
code: Scalars['String']['output'];
|
|
981
|
+
nav: Array<ShowAdminNavPluginsObj>;
|
|
982
|
+
};
|
|
983
|
+
|
|
984
|
+
export type ShowAdminNavPlugins = {
|
|
985
|
+
__typename?: 'ShowAdminNavPlugins';
|
|
986
|
+
code: Scalars['String']['output'];
|
|
987
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
988
|
+
keywords: Array<Scalars['String']['output']>;
|
|
989
|
+
};
|
|
990
|
+
|
|
991
|
+
export type ShowAdminNavPluginsObj = {
|
|
992
|
+
__typename?: 'ShowAdminNavPluginsObj';
|
|
993
|
+
children?: Maybe<Array<ShowAdminNavPlugins>>;
|
|
994
|
+
code: Scalars['String']['output'];
|
|
995
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
996
|
+
keywords: Array<Scalars['String']['output']>;
|
|
997
|
+
};
|
|
998
|
+
|
|
999
|
+
export type ShowAdminPermissionsAdminPlugins = {
|
|
1000
|
+
__typename?: 'ShowAdminPermissionsAdminPlugins';
|
|
1001
|
+
id: Scalars['String']['output'];
|
|
1002
|
+
};
|
|
1003
|
+
|
|
1004
|
+
export type ShowAdminPermissionsAdminPluginsObj = {
|
|
1005
|
+
__typename?: 'ShowAdminPermissionsAdminPluginsObj';
|
|
1006
|
+
children: Array<ShowAdminPermissionsAdminPlugins>;
|
|
1007
|
+
id: Scalars['String']['output'];
|
|
1008
|
+
};
|
|
1009
|
+
|
|
1010
|
+
export type ShowAdminPlugins = {
|
|
1011
|
+
__typename?: 'ShowAdminPlugins';
|
|
1012
|
+
allow_default: Scalars['Boolean']['output'];
|
|
1013
|
+
author: Scalars['String']['output'];
|
|
1014
|
+
author_url?: Maybe<Scalars['String']['output']>;
|
|
1015
|
+
code: Scalars['String']['output'];
|
|
1016
|
+
created: Scalars['DateTime']['output'];
|
|
1017
|
+
default: Scalars['Boolean']['output'];
|
|
1018
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1019
|
+
enabled: Scalars['Boolean']['output'];
|
|
1020
|
+
id: Scalars['Int']['output'];
|
|
1021
|
+
name: Scalars['String']['output'];
|
|
1022
|
+
support_url: Scalars['String']['output'];
|
|
1023
|
+
updated: Scalars['DateTime']['output'];
|
|
1024
|
+
version: Scalars['String']['output'];
|
|
1025
|
+
version_code: Scalars['Int']['output'];
|
|
1026
|
+
};
|
|
1027
|
+
|
|
1028
|
+
export type ShowAdminPluginsObj = {
|
|
1029
|
+
__typename?: 'ShowAdminPluginsObj';
|
|
1030
|
+
edges: Array<ShowAdminPlugins>;
|
|
1031
|
+
pageInfo: PageInfo;
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
export type ShowAdminPluginsSortByArgs = {
|
|
1035
|
+
column: ShowAdminPluginsSortingColumnEnum | `${ShowAdminPluginsSortingColumnEnum}`;
|
|
1036
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1037
|
+
};
|
|
1038
|
+
|
|
1039
|
+
export const ShowAdminPluginsSortingColumnEnum = {
|
|
1040
|
+
created: 'created',
|
|
1041
|
+
updated: 'updated'
|
|
1042
|
+
} as const;
|
|
1043
|
+
|
|
1044
|
+
export type ShowAdminPluginsSortingColumnEnum = typeof ShowAdminPluginsSortingColumnEnum[keyof typeof ShowAdminPluginsSortingColumnEnum];
|
|
1045
|
+
export type ShowAdminStaffAdministrators = {
|
|
1046
|
+
__typename?: 'ShowAdminStaffAdministrators';
|
|
1047
|
+
created: Scalars['DateTime']['output'];
|
|
1048
|
+
id: Scalars['Int']['output'];
|
|
1049
|
+
protected: Scalars['Boolean']['output'];
|
|
1050
|
+
unrestricted: Scalars['Boolean']['output'];
|
|
1051
|
+
updated: Scalars['DateTime']['output'];
|
|
1052
|
+
user_or_group: UserOrGroupCoreStaffUnion;
|
|
1053
|
+
};
|
|
1054
|
+
|
|
1055
|
+
export type ShowAdminStaffAdministratorsObj = {
|
|
1056
|
+
__typename?: 'ShowAdminStaffAdministratorsObj';
|
|
1057
|
+
edges: Array<ShowAdminStaffAdministrators>;
|
|
1058
|
+
pageInfo: PageInfo;
|
|
1059
|
+
permissions: Array<PermissionsAdminStaffAdministrators>;
|
|
1060
|
+
};
|
|
1061
|
+
|
|
1062
|
+
export type ShowAdminStaffAdministratorsSortByArgs = {
|
|
1063
|
+
column: ShowAdminStaffAdministratorsSortingColumnEnum | `${ShowAdminStaffAdministratorsSortingColumnEnum}`;
|
|
1064
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1065
|
+
};
|
|
1066
|
+
|
|
1067
|
+
export const ShowAdminStaffAdministratorsSortingColumnEnum = {
|
|
1068
|
+
updated: 'updated'
|
|
1069
|
+
} as const;
|
|
1070
|
+
|
|
1071
|
+
export type ShowAdminStaffAdministratorsSortingColumnEnum = typeof ShowAdminStaffAdministratorsSortingColumnEnum[keyof typeof ShowAdminStaffAdministratorsSortingColumnEnum];
|
|
1072
|
+
export type ShowAdminStaffModerators = {
|
|
1073
|
+
__typename?: 'ShowAdminStaffModerators';
|
|
1074
|
+
created: Scalars['DateTime']['output'];
|
|
1075
|
+
id: Scalars['Int']['output'];
|
|
1076
|
+
protected: Scalars['Boolean']['output'];
|
|
1077
|
+
unrestricted: Scalars['Boolean']['output'];
|
|
1078
|
+
updated: Scalars['DateTime']['output'];
|
|
1079
|
+
user_or_group: UserOrGroupCoreStaffUnion;
|
|
1080
|
+
};
|
|
1081
|
+
|
|
1082
|
+
export type ShowAdminStaffModeratorsObj = {
|
|
1083
|
+
__typename?: 'ShowAdminStaffModeratorsObj';
|
|
1084
|
+
edges: Array<ShowAdminStaffModerators>;
|
|
1085
|
+
pageInfo: PageInfo;
|
|
1086
|
+
};
|
|
1087
|
+
|
|
1088
|
+
export type ShowAdminStaffModeratorsSortByArgs = {
|
|
1089
|
+
column: ShowAdminStaffModeratorsSortingColumnEnum | `${ShowAdminStaffModeratorsSortingColumnEnum}`;
|
|
1090
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1091
|
+
};
|
|
1092
|
+
|
|
1093
|
+
export const ShowAdminStaffModeratorsSortingColumnEnum = {
|
|
1094
|
+
updated: 'updated'
|
|
1095
|
+
} as const;
|
|
1096
|
+
|
|
1097
|
+
export type ShowAdminStaffModeratorsSortingColumnEnum = typeof ShowAdminStaffModeratorsSortingColumnEnum[keyof typeof ShowAdminStaffModeratorsSortingColumnEnum];
|
|
1098
|
+
export type ShowCoreFiles = {
|
|
1099
|
+
__typename?: 'ShowCoreFiles';
|
|
1100
|
+
count_uses: Scalars['Int']['output'];
|
|
1101
|
+
created: Scalars['DateTime']['output'];
|
|
1102
|
+
dir_folder: Scalars['String']['output'];
|
|
1103
|
+
extension: Scalars['String']['output'];
|
|
1104
|
+
file_alt?: Maybe<Scalars['String']['output']>;
|
|
1105
|
+
file_name: Scalars['String']['output'];
|
|
1106
|
+
file_name_original: Scalars['String']['output'];
|
|
1107
|
+
file_size: Scalars['Int']['output'];
|
|
1108
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
1109
|
+
id: Scalars['Int']['output'];
|
|
1110
|
+
mimetype: Scalars['String']['output'];
|
|
1111
|
+
security_key?: Maybe<Scalars['String']['output']>;
|
|
1112
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1115
|
+
export type ShowCoreFilesObj = {
|
|
1116
|
+
__typename?: 'ShowCoreFilesObj';
|
|
1117
|
+
edges: Array<ShowCoreFiles>;
|
|
1118
|
+
pageInfo: PageInfo;
|
|
1119
|
+
};
|
|
1120
|
+
|
|
1121
|
+
export type ShowCoreFilesSortByArgs = {
|
|
1122
|
+
column: ShowCoreFilesSortingColumnEnum | `${ShowCoreFilesSortingColumnEnum}`;
|
|
1123
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
export const ShowCoreFilesSortingColumnEnum = {
|
|
1127
|
+
created: 'created',
|
|
1128
|
+
file_size: 'file_size'
|
|
1129
|
+
} as const;
|
|
1130
|
+
|
|
1131
|
+
export type ShowCoreFilesSortingColumnEnum = typeof ShowCoreFilesSortingColumnEnum[keyof typeof ShowCoreFilesSortingColumnEnum];
|
|
1132
|
+
export type ShowCoreLanguages = {
|
|
1133
|
+
__typename?: 'ShowCoreLanguages';
|
|
1134
|
+
allow_in_input: Scalars['Boolean']['output'];
|
|
1135
|
+
code: Scalars['String']['output'];
|
|
1136
|
+
created: Scalars['DateTime']['output'];
|
|
1137
|
+
default: Scalars['Boolean']['output'];
|
|
1138
|
+
enabled: Scalars['Boolean']['output'];
|
|
1139
|
+
id: Scalars['Int']['output'];
|
|
1140
|
+
locale: Scalars['String']['output'];
|
|
1141
|
+
name: Scalars['String']['output'];
|
|
1142
|
+
protected: Scalars['Boolean']['output'];
|
|
1143
|
+
time_24: Scalars['Boolean']['output'];
|
|
1144
|
+
timezone: Scalars['String']['output'];
|
|
1145
|
+
updated: Scalars['DateTime']['output'];
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
export type ShowCoreLanguagesObj = {
|
|
1149
|
+
__typename?: 'ShowCoreLanguagesObj';
|
|
1150
|
+
edges: Array<ShowCoreLanguages>;
|
|
1151
|
+
pageInfo: PageInfo;
|
|
1152
|
+
};
|
|
1153
|
+
|
|
1154
|
+
export type ShowCoreLanguagesSortByArgs = {
|
|
1155
|
+
column: ShowCoreLanguagesSortingColumnEnum | `${ShowCoreLanguagesSortingColumnEnum}`;
|
|
1156
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1157
|
+
};
|
|
1158
|
+
|
|
1159
|
+
export const ShowCoreLanguagesSortingColumnEnum = {
|
|
1160
|
+
created: 'created',
|
|
1161
|
+
updated: 'updated'
|
|
1162
|
+
} as const;
|
|
1163
|
+
|
|
1164
|
+
export type ShowCoreLanguagesSortingColumnEnum = typeof ShowCoreLanguagesSortingColumnEnum[keyof typeof ShowCoreLanguagesSortingColumnEnum];
|
|
1165
|
+
export type ShowCoreMembers = {
|
|
1166
|
+
__typename?: 'ShowCoreMembers';
|
|
1167
|
+
avatar?: Maybe<AvatarUser>;
|
|
1168
|
+
avatar_color: Scalars['String']['output'];
|
|
1169
|
+
group: GroupUser;
|
|
1170
|
+
id: Scalars['Int']['output'];
|
|
1171
|
+
joined: Scalars['DateTime']['output'];
|
|
1172
|
+
language: Scalars['String']['output'];
|
|
1173
|
+
name: Scalars['String']['output'];
|
|
1174
|
+
name_seo: Scalars['String']['output'];
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
export type ShowCoreMembersObj = {
|
|
1178
|
+
__typename?: 'ShowCoreMembersObj';
|
|
1179
|
+
edges: Array<ShowCoreMembers>;
|
|
1180
|
+
pageInfo: PageInfo;
|
|
1181
|
+
};
|
|
1182
|
+
|
|
1183
|
+
export type ShowCoreMembersSortByArgs = {
|
|
1184
|
+
column: ShowCoreMembersSortingColumnEnum | `${ShowCoreMembersSortingColumnEnum}`;
|
|
1185
|
+
direction: SortDirectionEnum | `${SortDirectionEnum}`;
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export const ShowCoreMembersSortingColumnEnum = {
|
|
1189
|
+
first_name: 'first_name',
|
|
1190
|
+
followers: 'followers',
|
|
1191
|
+
joined: 'joined',
|
|
1192
|
+
last_name: 'last_name',
|
|
1193
|
+
name: 'name',
|
|
1194
|
+
posts: 'posts',
|
|
1195
|
+
reactions: 'reactions'
|
|
1196
|
+
} as const;
|
|
1197
|
+
|
|
1198
|
+
export type ShowCoreMembersSortingColumnEnum = typeof ShowCoreMembersSortingColumnEnum[keyof typeof ShowCoreMembersSortingColumnEnum];
|
|
1199
|
+
export type ShowCoreMiddlewareObj = {
|
|
1200
|
+
__typename?: 'ShowCoreMiddlewareObj';
|
|
1201
|
+
authorization: AuthorizationCoreMiddleware;
|
|
1202
|
+
editor: EditorShowCoreMiddleware;
|
|
1203
|
+
is_ai_enabled: Scalars['Boolean']['output'];
|
|
1204
|
+
is_email_enabled: Scalars['Boolean']['output'];
|
|
1205
|
+
languages: Array<LanguagesCoreMiddleware>;
|
|
1206
|
+
plugins: Array<Scalars['String']['output']>;
|
|
1207
|
+
security: SecurityCoreMiddleware;
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
export type ShowCoreNav = {
|
|
1211
|
+
__typename?: 'ShowCoreNav';
|
|
1212
|
+
children: Array<ShowCoreNavItem>;
|
|
1213
|
+
description: Array<StringLanguage>;
|
|
1214
|
+
external: Scalars['Boolean']['output'];
|
|
1215
|
+
href: Scalars['String']['output'];
|
|
1216
|
+
id: Scalars['Int']['output'];
|
|
1217
|
+
name: Array<StringLanguage>;
|
|
1218
|
+
position: Scalars['Int']['output'];
|
|
1219
|
+
};
|
|
1220
|
+
|
|
1221
|
+
export type ShowCoreNavItem = {
|
|
1222
|
+
__typename?: 'ShowCoreNavItem';
|
|
1223
|
+
description: Array<StringLanguage>;
|
|
1224
|
+
external: Scalars['Boolean']['output'];
|
|
1225
|
+
href: Scalars['String']['output'];
|
|
1226
|
+
id: Scalars['Int']['output'];
|
|
1227
|
+
name: Array<StringLanguage>;
|
|
1228
|
+
position: Scalars['Int']['output'];
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1231
|
+
export type ShowCoreNavObj = {
|
|
1232
|
+
__typename?: 'ShowCoreNavObj';
|
|
1233
|
+
edges: Array<ShowCoreNav>;
|
|
1234
|
+
pageInfo: PageInfo;
|
|
1235
|
+
};
|
|
1236
|
+
|
|
1237
|
+
export type ShowCorePluginsObj = {
|
|
1238
|
+
__typename?: 'ShowCorePluginsObj';
|
|
1239
|
+
allow_default: Scalars['Boolean']['output'];
|
|
1240
|
+
code: Scalars['String']['output'];
|
|
1241
|
+
};
|
|
1242
|
+
|
|
1243
|
+
export type ShowCoreSessionDevicesObj = {
|
|
1244
|
+
__typename?: 'ShowCoreSessionDevicesObj';
|
|
1245
|
+
created: Scalars['DateTime']['output'];
|
|
1246
|
+
expires: Scalars['DateTime']['output'];
|
|
1247
|
+
id: Scalars['Int']['output'];
|
|
1248
|
+
ip_address: Scalars['String']['output'];
|
|
1249
|
+
last_seen: Scalars['DateTime']['output'];
|
|
1250
|
+
login_token: Scalars['String']['output'];
|
|
1251
|
+
uagent_browser: Scalars['String']['output'];
|
|
1252
|
+
uagent_os: Scalars['String']['output'];
|
|
1253
|
+
uagent_version: Scalars['String']['output'];
|
|
1254
|
+
};
|
|
1255
|
+
|
|
1256
|
+
export type ShowCoreTerms = {
|
|
1257
|
+
__typename?: 'ShowCoreTerms';
|
|
1258
|
+
code: Scalars['String']['output'];
|
|
1259
|
+
content: Array<StringLanguage>;
|
|
1260
|
+
created: Scalars['DateTime']['output'];
|
|
1261
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
1262
|
+
id: Scalars['Float']['output'];
|
|
1263
|
+
title: Array<StringLanguage>;
|
|
1264
|
+
updated: Scalars['DateTime']['output'];
|
|
1265
|
+
};
|
|
1266
|
+
|
|
1267
|
+
export type ShowCoreTermsObj = {
|
|
1268
|
+
__typename?: 'ShowCoreTermsObj';
|
|
1269
|
+
edges: Array<ShowCoreTerms>;
|
|
1270
|
+
pageInfo: PageInfo;
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
export type ShowCoreThemeEditorObj = {
|
|
1274
|
+
__typename?: 'ShowCoreThemeEditorObj';
|
|
1275
|
+
colors?: Maybe<ColorsShowCoreThemeEditor>;
|
|
1276
|
+
logos: LogoShowCoreThemeEditor;
|
|
1277
|
+
};
|
|
1278
|
+
|
|
1279
|
+
export type ShowSettingsObj = {
|
|
1280
|
+
__typename?: 'ShowSettingsObj';
|
|
1281
|
+
contact_email: Scalars['String']['output'];
|
|
1282
|
+
site_copyright: Array<StringLanguage>;
|
|
1283
|
+
site_description: Array<StringLanguage>;
|
|
1284
|
+
site_name: Scalars['String']['output'];
|
|
1285
|
+
site_short_name: Scalars['String']['output'];
|
|
1286
|
+
};
|
|
1287
|
+
|
|
1288
|
+
export type SignUpCoreSessionsObj = {
|
|
1289
|
+
__typename?: 'SignUpCoreSessionsObj';
|
|
1290
|
+
email: Scalars['String']['output'];
|
|
1291
|
+
email_verified: Scalars['Boolean']['output'];
|
|
1292
|
+
group_id: Scalars['Int']['output'];
|
|
1293
|
+
id: Scalars['Float']['output'];
|
|
1294
|
+
language: Scalars['String']['output'];
|
|
1295
|
+
name: Scalars['String']['output'];
|
|
1296
|
+
newsletter?: Maybe<Scalars['Boolean']['output']>;
|
|
1297
|
+
};
|
|
1298
|
+
|
|
1299
|
+
export type SignUpStatsAdminMembers = {
|
|
1300
|
+
__typename?: 'SignUpStatsAdminMembers';
|
|
1301
|
+
joined_date: Scalars['String']['output'];
|
|
1302
|
+
users_joined: Scalars['Int']['output'];
|
|
1303
|
+
};
|
|
1304
|
+
|
|
1305
|
+
export const SortDirectionEnum = {
|
|
1306
|
+
asc: 'asc',
|
|
1307
|
+
desc: 'desc'
|
|
1308
|
+
} as const;
|
|
1309
|
+
|
|
1310
|
+
export type SortDirectionEnum = typeof SortDirectionEnum[keyof typeof SortDirectionEnum];
|
|
1311
|
+
export type StaffGroupUser = {
|
|
1312
|
+
__typename?: 'StaffGroupUser';
|
|
1313
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
1314
|
+
group_name: Array<StringLanguage>;
|
|
1315
|
+
id: Scalars['Int']['output'];
|
|
1316
|
+
};
|
|
1317
|
+
|
|
1318
|
+
export type StringLanguage = {
|
|
1319
|
+
__typename?: 'StringLanguage';
|
|
1320
|
+
language_code: Scalars['String']['output'];
|
|
1321
|
+
value: Scalars['String']['output'];
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
export type StringLanguageInput = {
|
|
1325
|
+
language_code: Scalars['String']['input'];
|
|
1326
|
+
value: Scalars['String']['input'];
|
|
1327
|
+
};
|
|
1328
|
+
|
|
1329
|
+
export type ThemeVariable = {
|
|
1330
|
+
__typename?: 'ThemeVariable';
|
|
1331
|
+
dark: HslColor;
|
|
1332
|
+
light: HslColor;
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
export type ThemeVariableInput = {
|
|
1336
|
+
dark: HslColorInput;
|
|
1337
|
+
light: HslColorInput;
|
|
1338
|
+
};
|
|
1339
|
+
|
|
1340
|
+
export type UploadAvatarCoreMembersObj = {
|
|
1341
|
+
__typename?: 'UploadAvatarCoreMembersObj';
|
|
1342
|
+
dir_folder: Scalars['String']['output'];
|
|
1343
|
+
extension: Scalars['String']['output'];
|
|
1344
|
+
file_name: Scalars['String']['output'];
|
|
1345
|
+
file_name_original: Scalars['String']['output'];
|
|
1346
|
+
file_size: Scalars['Int']['output'];
|
|
1347
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
1348
|
+
id: Scalars['Int']['output'];
|
|
1349
|
+
mimetype: Scalars['String']['output'];
|
|
1350
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
export type UploadCoreFilesObj = {
|
|
1354
|
+
__typename?: 'UploadCoreFilesObj';
|
|
1355
|
+
dir_folder: Scalars['String']['output'];
|
|
1356
|
+
extension: Scalars['String']['output'];
|
|
1357
|
+
file_name: Scalars['String']['output'];
|
|
1358
|
+
file_name_original: Scalars['String']['output'];
|
|
1359
|
+
file_size: Scalars['Int']['output'];
|
|
1360
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
1361
|
+
mimetype: Scalars['String']['output'];
|
|
1362
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
1363
|
+
};
|
|
1364
|
+
|
|
1365
|
+
export type UploadWithKeepCoreFilesArgs = {
|
|
1366
|
+
file?: InputMaybe<Scalars['Upload']['input']>;
|
|
1367
|
+
keep?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1368
|
+
};
|
|
1369
|
+
|
|
1370
|
+
export type User = {
|
|
1371
|
+
__typename?: 'User';
|
|
1372
|
+
avatar?: Maybe<AvatarUser>;
|
|
1373
|
+
avatar_color: Scalars['String']['output'];
|
|
1374
|
+
group: GroupUser;
|
|
1375
|
+
id: Scalars['Int']['output'];
|
|
1376
|
+
language: Scalars['String']['output'];
|
|
1377
|
+
name: Scalars['String']['output'];
|
|
1378
|
+
name_seo: Scalars['String']['output'];
|
|
1379
|
+
};
|
|
1380
|
+
|
|
1381
|
+
export type UserOrGroupCoreStaffUnion = StaffGroupUser | User;
|