-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgraphqlTypes.generated.ts
More file actions
7335 lines (6348 loc) · 275 KB
/
graphqlTypes.generated.ts
File metadata and controls
7335 lines (6348 loc) · 275 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable */
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: { input: string; output: string; }
String: { input: string; output: string; }
Boolean: { input: boolean; output: boolean; }
Int: { input: number; output: number; }
Float: { input: number; output: number; }
BigDecimal: { input: string; output: string; }
/** Date in ISO8601 format */
Date: { input: string; output: string; }
/** Represents untyped JSON */
JSON: { input: unknown; output: unknown; }
/** An arbitrary object, serialized as JSON */
Json: { input: string; output: string; }
Upload: { input: File; output: File; }
};
export type Ability = {
__typename: 'Ability';
can_become_user_con_profile: Scalars['Boolean']['output'];
can_create_cms_content_groups: Scalars['Boolean']['output'];
can_create_cms_files: Scalars['Boolean']['output'];
can_create_cms_graphql_queries: Scalars['Boolean']['output'];
can_create_cms_layouts: Scalars['Boolean']['output'];
can_create_cms_navigation_items: Scalars['Boolean']['output'];
can_create_cms_partials: Scalars['Boolean']['output'];
can_create_cms_variables: Scalars['Boolean']['output'];
can_create_orders: Scalars['Boolean']['output'];
can_create_pages: Scalars['Boolean']['output'];
can_create_tickets: Scalars['Boolean']['output'];
can_create_user_con_profiles: Scalars['Boolean']['output'];
/** @deprecated Deleting events is never allowed; this always returns false */
can_delete_event: Scalars['Boolean']['output'];
can_delete_event_proposal: Scalars['Boolean']['output'];
can_delete_ticket: Scalars['Boolean']['output'];
can_delete_user_con_profile: Scalars['Boolean']['output'];
can_force_confirm_signup: Scalars['Boolean']['output'];
can_list_events: Scalars['Boolean']['output'];
can_manage_any_cms_content: Scalars['Boolean']['output'];
can_manage_conventions: Scalars['Boolean']['output'];
can_manage_email_routes: Scalars['Boolean']['output'];
can_manage_forms: Scalars['Boolean']['output'];
can_manage_oauth_applications: Scalars['Boolean']['output'];
can_manage_rooms: Scalars['Boolean']['output'];
can_manage_runs: Scalars['Boolean']['output'];
can_manage_signups: Scalars['Boolean']['output'];
can_manage_staff_positions: Scalars['Boolean']['output'];
can_manage_ticket_types: Scalars['Boolean']['output'];
can_override_maximum_event_provided_tickets: Scalars['Boolean']['output'];
can_read_admin_notes_on_event_proposal: Scalars['Boolean']['output'];
can_read_any_mailing_list: Scalars['Boolean']['output'];
can_read_event_proposals: Scalars['Boolean']['output'];
can_read_event_signups: Scalars['Boolean']['output'];
can_read_orders: Scalars['Boolean']['output'];
can_read_organizations: Scalars['Boolean']['output'];
can_read_reports: Scalars['Boolean']['output'];
can_read_schedule: Scalars['Boolean']['output'];
can_read_schedule_with_counts: Scalars['Boolean']['output'];
can_read_signups: Scalars['Boolean']['output'];
can_read_tickets: Scalars['Boolean']['output'];
can_read_user_activity_alerts: Scalars['Boolean']['output'];
can_read_user_con_profiles: Scalars['Boolean']['output'];
can_read_users: Scalars['Boolean']['output'];
can_update_admin_notes_on_event_proposal: Scalars['Boolean']['output'];
can_update_bucket_signup: Scalars['Boolean']['output'];
can_update_convention: Scalars['Boolean']['output'];
can_update_counted_signup: Scalars['Boolean']['output'];
can_update_departments: Scalars['Boolean']['output'];
can_update_event: Scalars['Boolean']['output'];
can_update_event_categories: Scalars['Boolean']['output'];
can_update_event_proposal: Scalars['Boolean']['output'];
can_update_notification_templates: Scalars['Boolean']['output'];
can_update_orders: Scalars['Boolean']['output'];
can_update_products: Scalars['Boolean']['output'];
can_update_signup: Scalars['Boolean']['output'];
can_update_signups: Scalars['Boolean']['output'];
can_update_ticket: Scalars['Boolean']['output'];
can_update_user_con_profile: Scalars['Boolean']['output'];
can_withdraw_all_user_con_profile_signups: Scalars['Boolean']['output'];
};
export type AbilityCan_Become_User_Con_ProfileArgs = {
userConProfileId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Delete_EventArgs = {
eventId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Delete_Event_ProposalArgs = {
eventProposalId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Delete_TicketArgs = {
ticketId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Delete_User_Con_ProfileArgs = {
userConProfileId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Force_Confirm_SignupArgs = {
signupId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Read_Admin_Notes_On_Event_ProposalArgs = {
eventProposalId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Read_Event_SignupsArgs = {
eventId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_Admin_Notes_On_Event_ProposalArgs = {
eventProposalId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_Bucket_SignupArgs = {
signupId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_Counted_SignupArgs = {
signupId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_EventArgs = {
eventId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_Event_ProposalArgs = {
eventProposalId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_SignupArgs = {
signupId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_TicketArgs = {
ticketId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Update_User_Con_ProfileArgs = {
userConProfileId?: InputMaybe<Scalars['ID']['input']>;
};
export type AbilityCan_Withdraw_All_User_Con_Profile_SignupsArgs = {
userConProfileId?: InputMaybe<Scalars['ID']['input']>;
};
/** Autogenerated input type of AcceptClickwrapAgreement */
export type AcceptClickwrapAgreementInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
};
/** Autogenerated return type of AcceptClickwrapAgreement. */
export type AcceptClickwrapAgreementPayload = {
__typename: 'AcceptClickwrapAgreementPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
my_profile: UserConProfile;
};
/** Autogenerated input type of AcceptSignupRequest */
export type AcceptSignupRequestInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
id?: InputMaybe<Scalars['ID']['input']>;
};
/** Autogenerated return type of AcceptSignupRequest. */
export type AcceptSignupRequestPayload = {
__typename: 'AcceptSignupRequestPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
signup: Signup;
signup_request: SignupRequest;
};
export type ActiveStorageAttachment = {
__typename: 'ActiveStorageAttachment';
byte_size: Scalars['Int']['output'];
content_type: Scalars['String']['output'];
filename: Scalars['String']['output'];
id: Scalars['ID']['output'];
resized_url?: Maybe<Scalars['String']['output']>;
url: Scalars['String']['output'];
};
export type ActiveStorageAttachmentResized_UrlArgs = {
maxHeight: Scalars['Int']['input'];
maxWidth: Scalars['Int']['input'];
};
/** Autogenerated input type of AddOrderEntryToCurrentPendingOrder */
export type AddOrderEntryToCurrentPendingOrderInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
order_entry: OrderEntryInput;
pay_what_you_want_amount?: InputMaybe<MoneyInput>;
};
/** Autogenerated return type of AddOrderEntryToCurrentPendingOrder. */
export type AddOrderEntryToCurrentPendingOrderPayload = {
__typename: 'AddOrderEntryToCurrentPendingOrderPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
order_entry: OrderEntry;
};
/** Autogenerated input type of AttachImageToEvent */
export type AttachImageToEventInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
id?: InputMaybe<Scalars['ID']['input']>;
signedBlobId: Scalars['ID']['input'];
};
/** Autogenerated return type of AttachImageToEvent. */
export type AttachImageToEventPayload = {
__typename: 'AttachImageToEventPayload';
attachment: ActiveStorageAttachment;
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
event: Event;
};
/** Autogenerated input type of AttachImageToEventProposal */
export type AttachImageToEventProposalInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
id?: InputMaybe<Scalars['ID']['input']>;
signedBlobId: Scalars['ID']['input'];
};
/** Autogenerated return type of AttachImageToEventProposal. */
export type AttachImageToEventProposalPayload = {
__typename: 'AttachImageToEventProposalPayload';
attachment: ActiveStorageAttachment;
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
event_proposal: EventProposal;
};
export type AuthorizedApplication = {
__typename: 'AuthorizedApplication';
name: Scalars['String']['output'];
scopes: Array<Scalars['String']['output']>;
uid: Scalars['ID']['output'];
};
/** A mapping from an old bucket key to a new bucket key when changing a registration policy */
export type BucketKeyMappingInput = {
/** The old bucket key being removed or changed */
from_key: Scalars['String']['input'];
/** The new bucket key to map to (nil means no preference) */
to_key?: InputMaybe<Scalars['String']['input']>;
};
/** Autogenerated input type of CancelOrder */
export type CancelOrderInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
id?: InputMaybe<Scalars['ID']['input']>;
skip_refund?: InputMaybe<Scalars['Boolean']['input']>;
};
/** Autogenerated return type of CancelOrder. */
export type CancelOrderPayload = {
__typename: 'CancelOrderPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
order: Order;
};
export type ChoiceCount = {
__typename: 'ChoiceCount';
choice: Scalars['Int']['output'];
count: Scalars['Int']['output'];
state: SignupState;
};
/** Client-side configuration values needed for frontend initialization */
export type ClientConfiguration = {
__typename: 'ClientConfiguration';
/** The default Active Storage service name configured in Rails */
rails_default_active_storage_service_name: Scalars['String']['output'];
/** The URL endpoint for Rails Direct Uploads */
rails_direct_uploads_url: Scalars['String']['output'];
/** The reCAPTCHA site key for client-side verification */
recaptcha_site_key: Scalars['String']['output'];
};
export type CmsContent = CmsLayout | CmsPartial | Page;
export type CmsContentGroup = {
__typename: 'CmsContentGroup';
contents: Array<CmsContent>;
current_ability_can_delete: Scalars['Boolean']['output'];
current_ability_can_update: Scalars['Boolean']['output'];
id: Scalars['ID']['output'];
name: Scalars['String']['output'];
permissions: Array<Permission>;
};
export type CmsContentGroupInput = {
contents?: InputMaybe<Array<CmsContentInput>>;
name?: InputMaybe<Scalars['String']['input']>;
};
export type CmsContentInput = {
content_type: CmsContentTypeIndicator;
id?: InputMaybe<Scalars['ID']['input']>;
};
export enum CmsContentTypeIndicator {
CmsLayout = 'CmsLayout',
CmsPartial = 'CmsPartial',
Page = 'Page'
}
export type CmsFile = {
__typename: 'CmsFile';
current_ability_can_delete: Scalars['Boolean']['output'];
file: ActiveStorageAttachment;
id: Scalars['ID']['output'];
};
export type CmsGraphqlQuery = {
__typename: 'CmsGraphqlQuery';
admin_notes?: Maybe<Scalars['String']['output']>;
current_ability_can_delete: Scalars['Boolean']['output'];
current_ability_can_update: Scalars['Boolean']['output'];
id: Scalars['ID']['output'];
identifier: Scalars['String']['output'];
query: Scalars['String']['output'];
};
export type CmsGraphqlQueryInput = {
admin_notes?: InputMaybe<Scalars['String']['input']>;
identifier?: InputMaybe<Scalars['String']['input']>;
query?: InputMaybe<Scalars['String']['input']>;
};
export type CmsLayout = {
__typename: 'CmsLayout';
admin_notes?: Maybe<Scalars['String']['output']>;
content?: Maybe<Scalars['String']['output']>;
content_html?: Maybe<Scalars['String']['output']>;
content_html_with_placeholders?: Maybe<Scalars['String']['output']>;
current_ability_can_delete: Scalars['Boolean']['output'];
current_ability_can_update: Scalars['Boolean']['output'];
id: Scalars['ID']['output'];
name?: Maybe<Scalars['String']['output']>;
navbar_classes?: Maybe<Scalars['String']['output']>;
};
export type CmsLayoutContent_HtmlArgs = {
path?: InputMaybe<Scalars['String']['input']>;
};
export type CmsLayoutContent_Html_With_PlaceholdersArgs = {
path?: InputMaybe<Scalars['String']['input']>;
};
export type CmsLayoutInput = {
admin_notes?: InputMaybe<Scalars['String']['input']>;
content?: InputMaybe<Scalars['String']['input']>;
name?: InputMaybe<Scalars['String']['input']>;
navbar_classes?: InputMaybe<Scalars['String']['input']>;
};
export type CmsNavigationItem = {
__typename: 'CmsNavigationItem';
id: Scalars['ID']['output'];
navigation_section?: Maybe<CmsNavigationItem>;
page?: Maybe<Page>;
position?: Maybe<Scalars['Int']['output']>;
title?: Maybe<Scalars['String']['output']>;
};
export type CmsNavigationItemInput = {
navigationSectionId?: InputMaybe<Scalars['ID']['input']>;
pageId?: InputMaybe<Scalars['ID']['input']>;
position?: InputMaybe<Scalars['Int']['input']>;
title?: InputMaybe<Scalars['String']['input']>;
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParent = {
/** Returns the content block partial for the given content block name */
blockPartial?: Maybe<CmsPartial>;
/**
* Finds a CMS content group by ID within the domain name of this HTTP request. If there is no
* CMS content group with that ID, or the CMS content group is associated with a different
* domain name, errors out.
*/
cmsContentGroup: CmsContentGroup;
/** Returns all CMS content groups within the current domain. */
cmsContentGroups: Array<CmsContentGroup>;
/** Returns all CMS files within the current domain. */
cmsFiles: Array<CmsFile>;
/** Returns all CMS GraphQL queries within the current domain. */
cmsGraphqlQueries: Array<CmsGraphqlQuery>;
/** Returns all CMS layouts within the current domain. */
cmsLayouts: Array<CmsLayout>;
/** Returns all CMS navigation items within the current domain. */
cmsNavigationItems: Array<CmsNavigationItem>;
/**
* Finds a CMS page within the domain name of this HTTP request. Exactly one of the three
* optional arguments (`id`, `slug`, and `rootPage`) must be specified. These each represent a
* different way of finding a page. If the desired page can't be found within the current
* domain name, errors out.
*/
cmsPage: Page;
/** Returns all CMS pages within the current domain. */
cmsPages: Array<Page>;
/** Returns all CMS partials within the current domain. */
cmsPartials: Array<CmsPartial>;
/** Returns all CMS variables within the current domain. */
cmsVariables: Array<CmsVariable>;
/** Returns the default CMS layout used in this domain. */
defaultLayout: CmsLayout;
/**
* Returns the CMS layout to be used for a particular URL path within the current domain. (This
* will be the page-specific layout if the URL corresponds to a page with a layout override, or
* the default layout for the domain otherwise.)
*/
effectiveCmsLayout: CmsLayout;
/** Does a full-text search within this domain. */
fullTextSearch: SearchResult;
/** The ID of this object. */
id: Scalars['ID']['output'];
/**
* Returns all the Liquid assigns for regular CMS page rendering in the current domain name.
* This is a combination of globally-accessible Liquid assigns and domain-specific user-defined
* CMS variables.
*/
liquidAssigns: Array<LiquidAssign>;
/** Given a Liquid text string, renders it to HTML and returns the result. */
previewLiquid: Scalars['String']['output'];
/** Given a Markdown text string, renders it to HTML and returns the result. */
previewMarkdown: Scalars['String']['output'];
/** The CMS page used for the root path (/) of this domain. */
rootPage: Page;
/**
* Finds CMS content by partial name, case-insensitive, within the current domain's CMS content.
* For example, in a convention that has a partial called `attendee_profile` and a page called
* `info_for_attendees`, a search for `attendee` would return both of these.
*
* This query is always limited to a maximum of 10 results.
*/
typeaheadSearchCmsContent: Array<CmsContent>;
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentBlockPartialArgs = {
name: CmsPartialBlockName;
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentCmsContentGroupArgs = {
id: Scalars['ID']['input'];
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentCmsPageArgs = {
id?: InputMaybe<Scalars['ID']['input']>;
rootPage?: InputMaybe<Scalars['Boolean']['input']>;
slug?: InputMaybe<Scalars['String']['input']>;
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentEffectiveCmsLayoutArgs = {
path: Scalars['String']['input'];
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentFullTextSearchArgs = {
query: Scalars['String']['input'];
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentPreviewLiquidArgs = {
content: Scalars['String']['input'];
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentPreviewMarkdownArgs = {
eventId?: InputMaybe<Scalars['ID']['input']>;
eventProposalId?: InputMaybe<Scalars['ID']['input']>;
markdown: Scalars['String']['input'];
};
/**
* A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
* as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
*
* Most CMS parents are conventions, so their content will be convention-specific and scoped to
* that convention's domain name. The exception to this is the root site, which is what Intercode
* renders when there is no convention associated with the current domain name. (See the RootSite
* object for more details about this.)
*/
export type CmsParentTypeaheadSearchCmsContentArgs = {
name?: InputMaybe<Scalars['String']['input']>;
};
export type CmsPartial = {
__typename: 'CmsPartial';
admin_notes?: Maybe<Scalars['String']['output']>;
content?: Maybe<Scalars['String']['output']>;
/** The rendered content of this partial, in HTML format */
content_html: Scalars['String']['output'];
current_ability_can_delete: Scalars['Boolean']['output'];
current_ability_can_update: Scalars['Boolean']['output'];
id: Scalars['ID']['output'];
name?: Maybe<Scalars['String']['output']>;
};
/** Reserved names for partials that will automatically be shown on certain pages if present */
export enum CmsPartialBlockName {
/**
* Content shown on top of the "update your account" and "create your account" forms. This is used by the "update your
* account" pages as a way to clarify that your account is shared between multiple conventions.
*/
AccountFormText = 'ACCOUNT_FORM_TEXT',
/** Content shown on top of the "my signup queue" page. */
MySignupQueueText = 'MY_SIGNUP_QUEUE_TEXT',
/** Content shown on top of the convention schedule. */
PreScheduleText = 'PRE_SCHEDULE_TEXT'
}
export type CmsPartialInput = {
admin_notes?: InputMaybe<Scalars['String']['input']>;
content?: InputMaybe<Scalars['String']['input']>;
name?: InputMaybe<Scalars['String']['input']>;
};
export type CmsVariable = {
__typename: 'CmsVariable';
current_ability_can_delete: Scalars['Boolean']['output'];
current_ability_can_update: Scalars['Boolean']['output'];
id: Scalars['ID']['output'];
key: Scalars['String']['output'];
value_json: Scalars['String']['output'];
};
export type CmsVariableInput = {
key: Scalars['String']['input'];
value_json: Scalars['String']['input'];
};
export type ContactEmail = {
__typename: 'ContactEmail';
email: Scalars['String']['output'];
formatted_address: Scalars['String']['output'];
metadata_json: Scalars['Json']['output'];
name?: Maybe<Scalars['String']['output']>;
};
/**
* A Convention in Intercode is essentially a web site hosted by Intercode. A Convention can represent an actual,
* real-world convention (and this is probably the most common use case), but it can also represent a single event
* (if the site_mode is set to single_event) or a series of events over time (if the site_mode is set to event_series).
*
* They're called Convention for historical reasons, because naming is hard. Sorry. It's probably best to think of
* them as "web site."
*/
export type Convention = CmsParent & {
__typename: 'Convention';
/** Is this convention currently accepting event proposals? */
accepting_proposals?: Maybe<Scalars['Boolean']['output']>;
/** User profiles in this convention that can have a bio (because they're staff or event team members). */
bio_eligible_user_con_profiles: Array<UserConProfile>;
/** Returns the content block partial for the given content block name */
blockPartial?: Maybe<CmsPartial>;
/** Is this convention canceled? */
canceled: Scalars['Boolean']['output'];
/**
* If this convention's email_mode is set to staff_emails_to_catch_all, all email sent to staff position email
* addresses at this convention will be forwarded to this staff position.
*/
catch_all_staff_position?: Maybe<StaffPosition>;
/**
* A clickwrap agreement, in Liquid format. If present, users will have to agree to this before they're allowed to
* use the web site.
*/
clickwrap_agreement?: Maybe<Scalars['String']['output']>;
/** The value of clickwrap_agreement, rendered as HTML. */
clickwrap_agreement_html?: Maybe<Scalars['String']['output']>;
/**
* Finds a CMS content group by ID within the domain name of this HTTP request. If there is no
* CMS content group with that ID, or the CMS content group is associated with a different
* domain name, errors out.
*/
cmsContentGroup: CmsContentGroup;
/** Returns all CMS content groups within the current domain. */
cmsContentGroups: Array<CmsContentGroup>;
/** Returns all CMS files within the current domain. */
cmsFiles: Array<CmsFile>;
/** Returns all CMS GraphQL queries within the current domain. */
cmsGraphqlQueries: Array<CmsGraphqlQuery>;
/** Returns all CMS layouts within the current domain. */
cmsLayouts: Array<CmsLayout>;
/** Returns all CMS navigation items within the current domain. */
cmsNavigationItems: Array<CmsNavigationItem>;
/**
* Finds a CMS page within the domain name of this HTTP request. Exactly one of the three
* optional arguments (`id`, `slug`, and `rootPage`) must be specified. These each represent a
* different way of finding a page. If the desired page can't be found within the current
* domain name, errors out.
*/
cmsPage: Page;
/** Returns all CMS pages within the current domain. */
cmsPages: Array<Page>;
/** Returns all CMS partials within the current domain. */
cmsPartials: Array<CmsPartial>;
/** Returns all CMS variables within the current domain. */
cmsVariables: Array<CmsVariable>;
/** Find a coupon by ID. */
coupon: Coupon;
coupons_paginated: CouponsPagination;
/** When this convention was created. */
created_at?: Maybe<Scalars['Date']['output']>;
/** Returns the default CMS layout used in this domain. */
defaultLayout: CmsLayout;
/** The ISO 4217 currency code used by default for products in this convention. If null, defaults to USD. */
default_currency_code?: Maybe<Scalars['String']['output']>;
/** All the departments in this convention. */
departments: Array<Department>;
/** The domain name used for serving this convention web site. */
domain?: Maybe<Scalars['String']['output']>;
/**
* Returns the CMS layout to be used for a particular URL path within the current domain. (This
* will be the page-specific layout if the URL corresponds to a page with a layout override, or
* the default layout for the domain otherwise.)
*/
effectiveCmsLayout: CmsLayout;
/** The default address that site emails will be sent from. */
email_from: Scalars['String']['output'];
/** How this convention site will handle incoming emails to its domain. */
email_mode: EmailMode;
/** When this convention ends. */
ends_at?: Maybe<Scalars['Date']['output']>;
/**
* Finds an active event by ID in this convention. If there is no event with that ID in this
* convention, or the event is no longer active, errors out.
*/
event: Event;
/** All the EventCategories in this convention. */
event_categories: Array<EventCategory>;
/**
* If present, the site will automatically offer to set up forwarding email addresses for event teams under this
* domain.
*/
event_mailing_list_domain?: Maybe<Scalars['String']['output']>;
/**
* Finds an event proposal by ID in this convention. If there is no event proposal with that ID
* in this convention, errors out.
*/
event_proposal: EventProposal;
event_proposals_paginated: EventProposalsPagination;
/**
* Returns all active events in convention associated with the domain name of this HTTP request.
* Filterable by a range of start/finish times.
*
* **CAUTION:** this query can return a lot of data and take a long time. Please be careful
* when using it.
*/
events: Array<Event>;
events_paginated: EventsPagination;
/** The favicon that will be served to browsers on this site. */
favicon?: Maybe<ActiveStorageAttachment>;
/** @deprecated Please use the favicon field instead. */
favicon_url?: Maybe<Scalars['String']['output']>;
/**
* Finds a form by ID in this convention. If there is no form with that ID in this convention,
* errors out.
*/
form: Form;
/** All the forms in this convention. */
forms: Array<Form>;
/** Does a full-text search within this domain. */
fullTextSearch: SearchResult;
/** If true, this convention will not be listed in CMS content on the root site. */
hidden: Scalars['Boolean']['output'];
/** The ID of this convention. */
id: Scalars['ID']['output'];
/** The language to use for localized content in this site. */
language: Scalars['String']['output'];
/**
* Returns all the Liquid assigns for regular CMS page rendering in the current domain name.
* This is a combination of globally-accessible Liquid assigns and domain-specific user-defined
* CMS variables.
*/
liquidAssigns: Array<LiquidAssign>;
/** The physical location of the convention, in GeoJSON format. */
location?: Maybe<Scalars['Json']['output']>;
/** A sub-object for accessing this convention's autogenerated mailing lists. */
mailing_lists: MailingLists;
/**
* The schedule of how many signups are allowed in this convention and when.
* @deprecated Please use SignupRound instead
*/
maximum_event_signups?: Maybe<ScheduledValue>;
/** The maximum number of tickets this convention can sell. */
maximum_tickets?: Maybe<Scalars['Int']['output']>;
/**
* Returns the convention-specific profile for the current user within this convention. If no
* user is signed in, returns null.
*/
my_profile?: Maybe<UserConProfile>;
/**
* Returns all signup ranked choices for the current user within this convention. If no user is signed in,
* returns an empty array.
*/
my_signup_ranked_choices: Array<SignupRankedChoice>;
/**
* Returns all signup requests for the current user within this convention. If no user is signed in,
* returns an empty array.
*/
my_signup_requests: Array<SignupRequest>;
/**
* Returns all signups for the current user within this convention. If no user is signed in,
* returns an empty array.
*/
my_signups: Array<Signup>;
/** The name of this convention. */
name: Scalars['String']['output'];
/** All the NotificationTemplates in this convention. */
notification_templates: Array<NotificationTemplate>;
/**
* Returns all the Liquid assigns for rendering a particular notification event in this
* convention. This is a combination of globally-accessible Liquid assigns, values specific
* to that notification event, and convention-specific user-defined CMS variables.
*/
notifier_liquid_assigns: Array<LiquidAssign>;
/**
* The image that will be served from this site using the `<meta property="og:image">` tag. For more information
* about OpenGraph, see https://ogp.me/.
*/
open_graph_image?: Maybe<ActiveStorageAttachment>;
/** @deprecated Please use the open_graph_image field instead. */
open_graph_image_url?: Maybe<Scalars['String']['output']>;
/** Find an order by ID. */
order: Order;
orders_paginated: OrdersPagination;
/** The organization in charge of this convention. */
organization?: Maybe<Organization>;
/**
* If present, a block of HTML content to show above the schedule on various schedule pages.
* @deprecated Please use the blockPartial field instead.
*/
pre_schedule_content_html?: Maybe<Scalars['String']['output']>;
/** Given a Liquid text string, renders it to HTML and returns the result. */
previewLiquid: Scalars['String']['output'];
/** Given a Markdown text string, renders it to HTML and returns the result. */
previewMarkdown: Scalars['String']['output'];
/**
* Given a Liquid text string and a notification event, renders the Liquid to HTML using the
* current domain's CMS context as if it were the content for that notification type.
*/
preview_notifier_liquid: Scalars['String']['output'];
/**
* Finds a product by ID in this convention. If there is no product with that ID in this
* convention, errors out.
*/
product: Product;
/** Returns the products in this convention. */
products: Array<Product>;
/**
* How many seconds before the first automated signup round to send a reminder to attendees who have ranked choices
* queued but no ticket. If null, no reminders will be sent.
*/
queue_no_ticket_reminder_advance_seconds?: Maybe<Scalars['Int']['output']>;
/** A sub-object containing various reports that can be generated for this convention. */
reports: ConventionReports;
/** All the rooms in this convention. */
rooms: Array<Room>;
/** The CMS page used for the root path (/) of this domain. */
rootPage: Page;
/**
* Finds an active run by ID in this convention. If there is no run with that ID in this
* convention, or the run's event is no longer active, errors out.
*/
run: Run;
runs_paginated: RunsPagination;
/** Who can currently see the event catalog? */
show_event_list?: Maybe<ShowSchedule>;
/** Who can currently see the event schedule? */
show_schedule?: Maybe<ShowSchedule>;
/**
* Finds a signup by ID in this convention. If there is no signup with that ID in this
* convention, errors out.
*/
signup: Signup;
/** The type of signup automation used for this convention. */
signup_automation_mode: SignupAutomationMode;
signup_changes_paginated: SignupChangesPagination;
signup_counts_by_state: Array<SignupCountByState>;
/** The signup mode used for this convention. */
signup_mode: SignupMode;
/** In a moderated-signup convention, are signup requests currently allowed? */
signup_requests_open: Scalars['Boolean']['output'];
signup_requests_paginated: SignupRequestsPagination;
/**
* Finds a signup round by ID in this convention. If there is no signup round with that ID in this convention,
* errors out.
*/
signup_round: SignupRound;
/** The signup rounds in this convention. */
signup_rounds: Array<SignupRound>;
/** The mode this convention site is operating in. */
site_mode: SiteMode;
/**
* Finds a staff position by ID in this convention. If there is no staff position with that ID
* in this convention, errors out.
*/
staff_position: StaffPosition;
/** All the staff positions in this convention. */
staff_positions: Array<StaffPosition>;
/** When this convention starts. */
starts_at?: Maybe<Scalars['Date']['output']>;
/** The Stripe account this convention uses for payments. */
stripe_account?: Maybe<StripeAccount>;
/** The ID of the Stripe account this convention uses for payments. */
stripe_account_id?: Maybe<Scalars['String']['output']>;
/** Is this convention's Stripe account in a state where the convention can accept payments? */
stripe_account_ready_to_charge: Scalars['Boolean']['output'];
/** The publishable key of this convention's Stripe account. */
stripe_publishable_key?: Maybe<Scalars['String']['output']>;
/** The word this convention uses for 'tickets'. */
ticketNamePlural: Scalars['String']['output'];
/** The mode used for ticket behaviors in this convention. */
ticket_mode: TicketMode;
/** The word this convention uses for 'ticket'. */
ticket_name: Scalars['String']['output'];
/** All the ticket types in this convention. */
ticket_types: Array<TicketType>;
/** Can users currently buy tickets to this convention? */
tickets_available_for_purchase: Scalars['Boolean']['output'];
/** The mode used for time zone display and time conversion behavior in this site. */
timezone_mode: TimezoneMode;
/** The home time zone of this convention. */
timezone_name?: Maybe<Scalars['String']['output']>;
/**
* Finds CMS content by partial name, case-insensitive, within the current domain's CMS content.
* For example, in a convention that has a partial called `attendee_profile` and a page called
* `info_for_attendees`, a search for `attendee` would return both of these.
*
* This query is always limited to a maximum of 10 results.
*/
typeaheadSearchCmsContent: Array<CmsContent>;
/** When this convention was last modified. */
updated_at?: Maybe<Scalars['Date']['output']>;
/** Find a UserActivityAlert by ID. */
user_activity_alert: UserActivityAlert;
/** All the UserActivityAlerts in this convention. */
user_activity_alerts: Array<UserActivityAlert>;
/**
* Finds a UserConProfile by ID in the convention associated with this convention. If there is
* no UserConProfile with that ID in this convention, errors out.
*/
user_con_profile: UserConProfile;
/**
* Finds a UserConProfile by user ID in the convention associated with this convention. If
* there is no UserConProfile with that user ID in this convention, errors out.
*/
user_con_profile_by_user_id: UserConProfile;
/** The form used for user profiles in this convention. */
user_con_profile_form: Form;
user_con_profiles_paginated: UserConProfilesPagination;
};
/**
* A Convention in Intercode is essentially a web site hosted by Intercode. A Convention can represent an actual,
* real-world convention (and this is probably the most common use case), but it can also represent a single event
* (if the site_mode is set to single_event) or a series of events over time (if the site_mode is set to event_series).
*
* They're called Convention for historical reasons, because naming is hard. Sorry. It's probably best to think of
* them as "web site."
*/
export type ConventionBlockPartialArgs = {
name: CmsPartialBlockName;
};
/**
* A Convention in Intercode is essentially a web site hosted by Intercode. A Convention can represent an actual,
* real-world convention (and this is probably the most common use case), but it can also represent a single event
* (if the site_mode is set to single_event) or a series of events over time (if the site_mode is set to event_series).
*
* They're called Convention for historical reasons, because naming is hard. Sorry. It's probably best to think of
* them as "web site."
*/
export type ConventionCmsContentGroupArgs = {
id: Scalars['ID']['input'];
};