@vrplatform/graphql 1.1.47 → 1.1.50

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.
@@ -292,6 +292,8 @@ export type accountAssignmentType_enum =
292
292
  | "expense_reimbursement"
293
293
  | "expense_salesTax"
294
294
  | "openingBalance"
295
+ | "payout_bankAccount"
296
+ | "payout_distribution"
295
297
  | "transfer"
296
298
  | "transfer_ownerPayout";
297
299
 
@@ -4414,6 +4416,31 @@ export interface billing_payment_method_type_updates {
4414
4416
  where: billing_payment_method_type_bool_exp;
4415
4417
  }
4416
4418
 
4419
+ export interface bookingChannelIconCandidate_aggregate_bool_exp {
4420
+ count?: InputMaybe<bookingChannelIconCandidate_aggregate_bool_exp_count>;
4421
+ }
4422
+
4423
+ export interface bookingChannelIconCandidate_aggregate_bool_exp_count {
4424
+ arguments?: InputMaybe<Array<bookingChannelIconCandidate_select_column>>;
4425
+ distinct?: InputMaybe<Scalars["Boolean"]>;
4426
+ filter?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
4427
+ predicate: Int_comparison_exp;
4428
+ }
4429
+
4430
+ /** order by aggregate values of table "booking_channel_icon_candidate" */
4431
+ export interface bookingChannelIconCandidate_aggregate_order_by {
4432
+ count?: InputMaybe<order_by>;
4433
+ max?: InputMaybe<bookingChannelIconCandidate_max_order_by>;
4434
+ min?: InputMaybe<bookingChannelIconCandidate_min_order_by>;
4435
+ }
4436
+
4437
+ /** input type for inserting array relation for remote table "booking_channel_icon_candidate" */
4438
+ export interface bookingChannelIconCandidate_arr_rel_insert_input {
4439
+ data: Array<bookingChannelIconCandidate_insert_input>;
4440
+ /** upsert condition */
4441
+ on_conflict?: InputMaybe<bookingChannelIconCandidate_on_conflict>;
4442
+ }
4443
+
4417
4444
  /** Boolean expression to filter rows from the table "booking_channel_icon_candidate". All fields are combined with a logical 'AND'. */
4418
4445
  export interface bookingChannelIconCandidate_bool_exp {
4419
4446
  _and?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
@@ -4422,6 +4449,7 @@ export interface bookingChannelIconCandidate_bool_exp {
4422
4449
  bookingChannel?: InputMaybe<booking_channel_bool_exp>;
4423
4450
  bookingChannelId?: InputMaybe<uuid_comparison_exp>;
4424
4451
  cloudflareImageId?: InputMaybe<String_comparison_exp>;
4452
+ color?: InputMaybe<String_comparison_exp>;
4425
4453
  comment?: InputMaybe<String_comparison_exp>;
4426
4454
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
4427
4455
  id?: InputMaybe<uuid_comparison_exp>;
@@ -4441,6 +4469,7 @@ export interface bookingChannelIconCandidate_insert_input {
4441
4469
  bookingChannel?: InputMaybe<booking_channel_obj_rel_insert_input>;
4442
4470
  bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4443
4471
  cloudflareImageId?: InputMaybe<Scalars["String"]>;
4472
+ color?: InputMaybe<Scalars["String"]>;
4444
4473
  comment?: InputMaybe<Scalars["String"]>;
4445
4474
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4446
4475
  id?: InputMaybe<Scalars["uuid"]>;
@@ -4448,6 +4477,30 @@ export interface bookingChannelIconCandidate_insert_input {
4448
4477
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4449
4478
  }
4450
4479
 
4480
+ /** order by max() on columns of table "booking_channel_icon_candidate" */
4481
+ export interface bookingChannelIconCandidate_max_order_by {
4482
+ bookingChannelId?: InputMaybe<order_by>;
4483
+ cloudflareImageId?: InputMaybe<order_by>;
4484
+ color?: InputMaybe<order_by>;
4485
+ comment?: InputMaybe<order_by>;
4486
+ createdAt?: InputMaybe<order_by>;
4487
+ id?: InputMaybe<order_by>;
4488
+ source?: InputMaybe<order_by>;
4489
+ updatedAt?: InputMaybe<order_by>;
4490
+ }
4491
+
4492
+ /** order by min() on columns of table "booking_channel_icon_candidate" */
4493
+ export interface bookingChannelIconCandidate_min_order_by {
4494
+ bookingChannelId?: InputMaybe<order_by>;
4495
+ cloudflareImageId?: InputMaybe<order_by>;
4496
+ color?: InputMaybe<order_by>;
4497
+ comment?: InputMaybe<order_by>;
4498
+ createdAt?: InputMaybe<order_by>;
4499
+ id?: InputMaybe<order_by>;
4500
+ source?: InputMaybe<order_by>;
4501
+ updatedAt?: InputMaybe<order_by>;
4502
+ }
4503
+
4451
4504
  /** on_conflict condition type for table "booking_channel_icon_candidate" */
4452
4505
  export interface bookingChannelIconCandidate_on_conflict {
4453
4506
  constraint: bookingChannelIconCandidate_constraint;
@@ -4460,6 +4513,7 @@ export interface bookingChannelIconCandidate_order_by {
4460
4513
  bookingChannel?: InputMaybe<booking_channel_order_by>;
4461
4514
  bookingChannelId?: InputMaybe<order_by>;
4462
4515
  cloudflareImageId?: InputMaybe<order_by>;
4516
+ color?: InputMaybe<order_by>;
4463
4517
  comment?: InputMaybe<order_by>;
4464
4518
  createdAt?: InputMaybe<order_by>;
4465
4519
  id?: InputMaybe<order_by>;
@@ -4479,6 +4533,8 @@ export type bookingChannelIconCandidate_select_column =
4479
4533
  /** column name */
4480
4534
  | "cloudflareImageId"
4481
4535
  /** column name */
4536
+ | "color"
4537
+ /** column name */
4482
4538
  | "comment"
4483
4539
  /** column name */
4484
4540
  | "createdAt"
@@ -4493,6 +4549,7 @@ export type bookingChannelIconCandidate_select_column =
4493
4549
  export interface bookingChannelIconCandidate_set_input {
4494
4550
  bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4495
4551
  cloudflareImageId?: InputMaybe<Scalars["String"]>;
4552
+ color?: InputMaybe<Scalars["String"]>;
4496
4553
  comment?: InputMaybe<Scalars["String"]>;
4497
4554
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4498
4555
  id?: InputMaybe<Scalars["uuid"]>;
@@ -4512,6 +4569,7 @@ export interface bookingChannelIconCandidate_stream_cursor_input {
4512
4569
  export interface bookingChannelIconCandidate_stream_cursor_value_input {
4513
4570
  bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4514
4571
  cloudflareImageId?: InputMaybe<Scalars["String"]>;
4572
+ color?: InputMaybe<Scalars["String"]>;
4515
4573
  comment?: InputMaybe<Scalars["String"]>;
4516
4574
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4517
4575
  id?: InputMaybe<Scalars["uuid"]>;
@@ -4526,6 +4584,8 @@ export type bookingChannelIconCandidate_update_column =
4526
4584
  /** column name */
4527
4585
  | "cloudflareImageId"
4528
4586
  /** column name */
4587
+ | "color"
4588
+ /** column name */
4529
4589
  | "comment"
4530
4590
  /** column name */
4531
4591
  | "createdAt"
@@ -4548,10 +4608,14 @@ export interface booking_channel_bool_exp {
4548
4608
  _and?: InputMaybe<Array<booking_channel_bool_exp>>;
4549
4609
  _not?: InputMaybe<booking_channel_bool_exp>;
4550
4610
  _or?: InputMaybe<Array<booking_channel_bool_exp>>;
4611
+ bookingChannelIconCandidates?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
4612
+ bookingChannelIconCandidates_aggregate?: InputMaybe<bookingChannelIconCandidate_aggregate_bool_exp>;
4551
4613
  channelRef?: InputMaybe<String_comparison_exp>;
4614
+ color?: InputMaybe<String_comparison_exp>;
4552
4615
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
4553
4616
  icon?: InputMaybe<String_comparison_exp>;
4554
4617
  id?: InputMaybe<uuid_comparison_exp>;
4618
+ lastGenerateRun?: InputMaybe<timestamptz_comparison_exp>;
4555
4619
  reservations?: InputMaybe<reservation_bool_exp>;
4556
4620
  reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
4557
4621
  selectedBookingChannelIconCandidateId?: InputMaybe<uuid_comparison_exp>;
@@ -4574,10 +4638,13 @@ export type booking_channel_constraint =
4574
4638
 
4575
4639
  /** input type for inserting data into table "booking_channel" */
4576
4640
  export interface booking_channel_insert_input {
4641
+ bookingChannelIconCandidates?: InputMaybe<bookingChannelIconCandidate_arr_rel_insert_input>;
4577
4642
  channelRef?: InputMaybe<Scalars["String"]>;
4643
+ color?: InputMaybe<Scalars["String"]>;
4578
4644
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4579
4645
  icon?: InputMaybe<Scalars["String"]>;
4580
4646
  id?: InputMaybe<Scalars["uuid"]>;
4647
+ lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
4581
4648
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
4582
4649
  selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4583
4650
  settings?: InputMaybe<setting_arr_rel_insert_input>;
@@ -4603,10 +4670,13 @@ export interface booking_channel_on_conflict {
4603
4670
 
4604
4671
  /** Ordering options when selecting data from "booking_channel". */
4605
4672
  export interface booking_channel_order_by {
4673
+ bookingChannelIconCandidates_aggregate?: InputMaybe<bookingChannelIconCandidate_aggregate_order_by>;
4606
4674
  channelRef?: InputMaybe<order_by>;
4675
+ color?: InputMaybe<order_by>;
4607
4676
  createdAt?: InputMaybe<order_by>;
4608
4677
  icon?: InputMaybe<order_by>;
4609
4678
  id?: InputMaybe<order_by>;
4679
+ lastGenerateRun?: InputMaybe<order_by>;
4610
4680
  reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
4611
4681
  selectedBookingChannelIconCandidateId?: InputMaybe<order_by>;
4612
4682
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
@@ -4626,12 +4696,16 @@ export type booking_channel_select_column =
4626
4696
  /** column name */
4627
4697
  | "channelRef"
4628
4698
  /** column name */
4699
+ | "color"
4700
+ /** column name */
4629
4701
  | "createdAt"
4630
4702
  /** column name */
4631
4703
  | "icon"
4632
4704
  /** column name */
4633
4705
  | "id"
4634
4706
  /** column name */
4707
+ | "lastGenerateRun"
4708
+ /** column name */
4635
4709
  | "selectedBookingChannelIconCandidateId"
4636
4710
  /** column name */
4637
4711
  | "uniqueRef"
@@ -4641,9 +4715,11 @@ export type booking_channel_select_column =
4641
4715
  /** input type for updating data in table "booking_channel" */
4642
4716
  export interface booking_channel_set_input {
4643
4717
  channelRef?: InputMaybe<Scalars["String"]>;
4718
+ color?: InputMaybe<Scalars["String"]>;
4644
4719
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4645
4720
  icon?: InputMaybe<Scalars["String"]>;
4646
4721
  id?: InputMaybe<Scalars["uuid"]>;
4722
+ lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
4647
4723
  selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4648
4724
  uniqueRef?: InputMaybe<Scalars["String"]>;
4649
4725
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
@@ -4660,9 +4736,11 @@ export interface booking_channel_stream_cursor_input {
4660
4736
  /** Initial value of the column from where the streaming should start */
4661
4737
  export interface booking_channel_stream_cursor_value_input {
4662
4738
  channelRef?: InputMaybe<Scalars["String"]>;
4739
+ color?: InputMaybe<Scalars["String"]>;
4663
4740
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4664
4741
  icon?: InputMaybe<Scalars["String"]>;
4665
4742
  id?: InputMaybe<Scalars["uuid"]>;
4743
+ lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
4666
4744
  selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4667
4745
  uniqueRef?: InputMaybe<Scalars["String"]>;
4668
4746
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
@@ -4673,12 +4751,16 @@ export type booking_channel_update_column =
4673
4751
  /** column name */
4674
4752
  | "channelRef"
4675
4753
  /** column name */
4754
+ | "color"
4755
+ /** column name */
4676
4756
  | "createdAt"
4677
4757
  /** column name */
4678
4758
  | "icon"
4679
4759
  /** column name */
4680
4760
  | "id"
4681
4761
  /** column name */
4762
+ | "lastGenerateRun"
4763
+ /** column name */
4682
4764
  | "selectedBookingChannelIconCandidateId"
4683
4765
  /** column name */
4684
4766
  | "uniqueRef"
@@ -33699,6 +33781,7 @@ export declare const generatedSchema: {
33699
33781
  bookingChannel: { __type: "booking_channel!" };
33700
33782
  bookingChannelId: { __type: "uuid!" };
33701
33783
  cloudflareImageId: { __type: "String" };
33784
+ color: { __type: "String" };
33702
33785
  comment: { __type: "String" };
33703
33786
  createdAt: { __type: "timestamptz!" };
33704
33787
  id: { __type: "uuid!" };
@@ -33710,6 +33793,15 @@ export declare const generatedSchema: {
33710
33793
  aggregate: { __type: "bookingChannelIconCandidate_aggregate_fields" };
33711
33794
  nodes: { __type: "[bookingChannelIconCandidate!]!" };
33712
33795
  };
33796
+ bookingChannelIconCandidate_aggregate_bool_exp: {
33797
+ count: { __type: "bookingChannelIconCandidate_aggregate_bool_exp_count" };
33798
+ };
33799
+ bookingChannelIconCandidate_aggregate_bool_exp_count: {
33800
+ arguments: { __type: "[bookingChannelIconCandidate_select_column!]" };
33801
+ distinct: { __type: "Boolean" };
33802
+ filter: { __type: "bookingChannelIconCandidate_bool_exp" };
33803
+ predicate: { __type: "Int_comparison_exp!" };
33804
+ };
33713
33805
  bookingChannelIconCandidate_aggregate_fields: {
33714
33806
  __typename: { __type: "String!" };
33715
33807
  count: {
@@ -33722,6 +33814,15 @@ export declare const generatedSchema: {
33722
33814
  max: { __type: "bookingChannelIconCandidate_max_fields" };
33723
33815
  min: { __type: "bookingChannelIconCandidate_min_fields" };
33724
33816
  };
33817
+ bookingChannelIconCandidate_aggregate_order_by: {
33818
+ count: { __type: "order_by" };
33819
+ max: { __type: "bookingChannelIconCandidate_max_order_by" };
33820
+ min: { __type: "bookingChannelIconCandidate_min_order_by" };
33821
+ };
33822
+ bookingChannelIconCandidate_arr_rel_insert_input: {
33823
+ data: { __type: "[bookingChannelIconCandidate_insert_input!]!" };
33824
+ on_conflict: { __type: "bookingChannelIconCandidate_on_conflict" };
33825
+ };
33725
33826
  bookingChannelIconCandidate_bool_exp: {
33726
33827
  _and: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
33727
33828
  _not: { __type: "bookingChannelIconCandidate_bool_exp" };
@@ -33729,6 +33830,7 @@ export declare const generatedSchema: {
33729
33830
  bookingChannel: { __type: "booking_channel_bool_exp" };
33730
33831
  bookingChannelId: { __type: "uuid_comparison_exp" };
33731
33832
  cloudflareImageId: { __type: "String_comparison_exp" };
33833
+ color: { __type: "String_comparison_exp" };
33732
33834
  comment: { __type: "String_comparison_exp" };
33733
33835
  createdAt: { __type: "timestamptz_comparison_exp" };
33734
33836
  id: { __type: "uuid_comparison_exp" };
@@ -33739,6 +33841,7 @@ export declare const generatedSchema: {
33739
33841
  bookingChannel: { __type: "booking_channel_obj_rel_insert_input" };
33740
33842
  bookingChannelId: { __type: "uuid" };
33741
33843
  cloudflareImageId: { __type: "String" };
33844
+ color: { __type: "String" };
33742
33845
  comment: { __type: "String" };
33743
33846
  createdAt: { __type: "timestamptz" };
33744
33847
  id: { __type: "uuid" };
@@ -33749,22 +33852,44 @@ export declare const generatedSchema: {
33749
33852
  __typename: { __type: "String!" };
33750
33853
  bookingChannelId: { __type: "uuid" };
33751
33854
  cloudflareImageId: { __type: "String" };
33855
+ color: { __type: "String" };
33752
33856
  comment: { __type: "String" };
33753
33857
  createdAt: { __type: "timestamptz" };
33754
33858
  id: { __type: "uuid" };
33755
33859
  source: { __type: "String" };
33756
33860
  updatedAt: { __type: "timestamptz" };
33757
33861
  };
33862
+ bookingChannelIconCandidate_max_order_by: {
33863
+ bookingChannelId: { __type: "order_by" };
33864
+ cloudflareImageId: { __type: "order_by" };
33865
+ color: { __type: "order_by" };
33866
+ comment: { __type: "order_by" };
33867
+ createdAt: { __type: "order_by" };
33868
+ id: { __type: "order_by" };
33869
+ source: { __type: "order_by" };
33870
+ updatedAt: { __type: "order_by" };
33871
+ };
33758
33872
  bookingChannelIconCandidate_min_fields: {
33759
33873
  __typename: { __type: "String!" };
33760
33874
  bookingChannelId: { __type: "uuid" };
33761
33875
  cloudflareImageId: { __type: "String" };
33876
+ color: { __type: "String" };
33762
33877
  comment: { __type: "String" };
33763
33878
  createdAt: { __type: "timestamptz" };
33764
33879
  id: { __type: "uuid" };
33765
33880
  source: { __type: "String" };
33766
33881
  updatedAt: { __type: "timestamptz" };
33767
33882
  };
33883
+ bookingChannelIconCandidate_min_order_by: {
33884
+ bookingChannelId: { __type: "order_by" };
33885
+ cloudflareImageId: { __type: "order_by" };
33886
+ color: { __type: "order_by" };
33887
+ comment: { __type: "order_by" };
33888
+ createdAt: { __type: "order_by" };
33889
+ id: { __type: "order_by" };
33890
+ source: { __type: "order_by" };
33891
+ updatedAt: { __type: "order_by" };
33892
+ };
33768
33893
  bookingChannelIconCandidate_mutation_response: {
33769
33894
  __typename: { __type: "String!" };
33770
33895
  affected_rows: { __type: "Int!" };
@@ -33779,6 +33904,7 @@ export declare const generatedSchema: {
33779
33904
  bookingChannel: { __type: "booking_channel_order_by" };
33780
33905
  bookingChannelId: { __type: "order_by" };
33781
33906
  cloudflareImageId: { __type: "order_by" };
33907
+ color: { __type: "order_by" };
33782
33908
  comment: { __type: "order_by" };
33783
33909
  createdAt: { __type: "order_by" };
33784
33910
  id: { __type: "order_by" };
@@ -33789,6 +33915,7 @@ export declare const generatedSchema: {
33789
33915
  bookingChannelIconCandidate_set_input: {
33790
33916
  bookingChannelId: { __type: "uuid" };
33791
33917
  cloudflareImageId: { __type: "String" };
33918
+ color: { __type: "String" };
33792
33919
  comment: { __type: "String" };
33793
33920
  createdAt: { __type: "timestamptz" };
33794
33921
  id: { __type: "uuid" };
@@ -33804,6 +33931,7 @@ export declare const generatedSchema: {
33804
33931
  bookingChannelIconCandidate_stream_cursor_value_input: {
33805
33932
  bookingChannelId: { __type: "uuid" };
33806
33933
  cloudflareImageId: { __type: "String" };
33934
+ color: { __type: "String" };
33807
33935
  comment: { __type: "String" };
33808
33936
  createdAt: { __type: "timestamptz" };
33809
33937
  id: { __type: "uuid" };
@@ -33816,10 +33944,32 @@ export declare const generatedSchema: {
33816
33944
  };
33817
33945
  booking_channel: {
33818
33946
  __typename: { __type: "String!" };
33947
+ bookingChannelIconCandidates: {
33948
+ __type: "[bookingChannelIconCandidate!]!";
33949
+ __args: {
33950
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
33951
+ limit: "Int";
33952
+ offset: "Int";
33953
+ order_by: "[bookingChannelIconCandidate_order_by!]";
33954
+ where: "bookingChannelIconCandidate_bool_exp";
33955
+ };
33956
+ };
33957
+ bookingChannelIconCandidates_aggregate: {
33958
+ __type: "bookingChannelIconCandidate_aggregate!";
33959
+ __args: {
33960
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
33961
+ limit: "Int";
33962
+ offset: "Int";
33963
+ order_by: "[bookingChannelIconCandidate_order_by!]";
33964
+ where: "bookingChannelIconCandidate_bool_exp";
33965
+ };
33966
+ };
33819
33967
  channelRef: { __type: "String" };
33968
+ color: { __type: "String" };
33820
33969
  createdAt: { __type: "timestamptz!" };
33821
33970
  icon: { __type: "String" };
33822
33971
  id: { __type: "uuid!" };
33972
+ lastGenerateRun: { __type: "timestamptz" };
33823
33973
  reservations: {
33824
33974
  __type: "[reservation!]!";
33825
33975
  __args: {
@@ -33925,10 +34075,18 @@ export declare const generatedSchema: {
33925
34075
  _and: { __type: "[booking_channel_bool_exp!]" };
33926
34076
  _not: { __type: "booking_channel_bool_exp" };
33927
34077
  _or: { __type: "[booking_channel_bool_exp!]" };
34078
+ bookingChannelIconCandidates: {
34079
+ __type: "bookingChannelIconCandidate_bool_exp";
34080
+ };
34081
+ bookingChannelIconCandidates_aggregate: {
34082
+ __type: "bookingChannelIconCandidate_aggregate_bool_exp";
34083
+ };
33928
34084
  channelRef: { __type: "String_comparison_exp" };
34085
+ color: { __type: "String_comparison_exp" };
33929
34086
  createdAt: { __type: "timestamptz_comparison_exp" };
33930
34087
  icon: { __type: "String_comparison_exp" };
33931
34088
  id: { __type: "uuid_comparison_exp" };
34089
+ lastGenerateRun: { __type: "timestamptz_comparison_exp" };
33932
34090
  reservations: { __type: "reservation_bool_exp" };
33933
34091
  reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
33934
34092
  selectedBookingChannelIconCandidateId: { __type: "uuid_comparison_exp" };
@@ -33942,10 +34100,15 @@ export declare const generatedSchema: {
33942
34100
  updatedAt: { __type: "timestamptz_comparison_exp" };
33943
34101
  };
33944
34102
  booking_channel_insert_input: {
34103
+ bookingChannelIconCandidates: {
34104
+ __type: "bookingChannelIconCandidate_arr_rel_insert_input";
34105
+ };
33945
34106
  channelRef: { __type: "String" };
34107
+ color: { __type: "String" };
33946
34108
  createdAt: { __type: "timestamptz" };
33947
34109
  icon: { __type: "String" };
33948
34110
  id: { __type: "uuid" };
34111
+ lastGenerateRun: { __type: "timestamptz" };
33949
34112
  reservations: { __type: "reservation_arr_rel_insert_input" };
33950
34113
  selectedBookingChannelIconCandidateId: { __type: "uuid" };
33951
34114
  settings: { __type: "setting_arr_rel_insert_input" };
@@ -33957,9 +34120,11 @@ export declare const generatedSchema: {
33957
34120
  booking_channel_max_fields: {
33958
34121
  __typename: { __type: "String!" };
33959
34122
  channelRef: { __type: "String" };
34123
+ color: { __type: "String" };
33960
34124
  createdAt: { __type: "timestamptz" };
33961
34125
  icon: { __type: "String" };
33962
34126
  id: { __type: "uuid" };
34127
+ lastGenerateRun: { __type: "timestamptz" };
33963
34128
  selectedBookingChannelIconCandidateId: { __type: "uuid" };
33964
34129
  uniqueRef: { __type: "String" };
33965
34130
  updatedAt: { __type: "timestamptz" };
@@ -33967,9 +34132,11 @@ export declare const generatedSchema: {
33967
34132
  booking_channel_min_fields: {
33968
34133
  __typename: { __type: "String!" };
33969
34134
  channelRef: { __type: "String" };
34135
+ color: { __type: "String" };
33970
34136
  createdAt: { __type: "timestamptz" };
33971
34137
  icon: { __type: "String" };
33972
34138
  id: { __type: "uuid" };
34139
+ lastGenerateRun: { __type: "timestamptz" };
33973
34140
  selectedBookingChannelIconCandidateId: { __type: "uuid" };
33974
34141
  uniqueRef: { __type: "String" };
33975
34142
  updatedAt: { __type: "timestamptz" };
@@ -33989,10 +34156,15 @@ export declare const generatedSchema: {
33989
34156
  where: { __type: "booking_channel_bool_exp" };
33990
34157
  };
33991
34158
  booking_channel_order_by: {
34159
+ bookingChannelIconCandidates_aggregate: {
34160
+ __type: "bookingChannelIconCandidate_aggregate_order_by";
34161
+ };
33992
34162
  channelRef: { __type: "order_by" };
34163
+ color: { __type: "order_by" };
33993
34164
  createdAt: { __type: "order_by" };
33994
34165
  icon: { __type: "order_by" };
33995
34166
  id: { __type: "order_by" };
34167
+ lastGenerateRun: { __type: "order_by" };
33996
34168
  reservations_aggregate: { __type: "reservation_aggregate_order_by" };
33997
34169
  selectedBookingChannelIconCandidateId: { __type: "order_by" };
33998
34170
  settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
@@ -34004,9 +34176,11 @@ export declare const generatedSchema: {
34004
34176
  booking_channel_pk_columns_input: { id: { __type: "uuid!" } };
34005
34177
  booking_channel_set_input: {
34006
34178
  channelRef: { __type: "String" };
34179
+ color: { __type: "String" };
34007
34180
  createdAt: { __type: "timestamptz" };
34008
34181
  icon: { __type: "String" };
34009
34182
  id: { __type: "uuid" };
34183
+ lastGenerateRun: { __type: "timestamptz" };
34010
34184
  selectedBookingChannelIconCandidateId: { __type: "uuid" };
34011
34185
  uniqueRef: { __type: "String" };
34012
34186
  updatedAt: { __type: "timestamptz" };
@@ -34017,9 +34191,11 @@ export declare const generatedSchema: {
34017
34191
  };
34018
34192
  booking_channel_stream_cursor_value_input: {
34019
34193
  channelRef: { __type: "String" };
34194
+ color: { __type: "String" };
34020
34195
  createdAt: { __type: "timestamptz" };
34021
34196
  icon: { __type: "String" };
34022
34197
  id: { __type: "uuid" };
34198
+ lastGenerateRun: { __type: "timestamptz" };
34023
34199
  selectedBookingChannelIconCandidateId: { __type: "uuid" };
34024
34200
  uniqueRef: { __type: "String" };
34025
34201
  updatedAt: { __type: "timestamptz" };
@@ -75997,6 +76173,7 @@ export interface bookingChannelIconCandidate {
75997
76173
  bookingChannel: booking_channel;
75998
76174
  bookingChannelId: ScalarsEnums["uuid"];
75999
76175
  cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
76176
+ color?: Maybe<ScalarsEnums["String"]>;
76000
76177
  comment?: Maybe<ScalarsEnums["String"]>;
76001
76178
  createdAt: ScalarsEnums["timestamptz"];
76002
76179
  id: ScalarsEnums["uuid"];
@@ -76033,6 +76210,7 @@ export interface bookingChannelIconCandidate_max_fields {
76033
76210
  __typename?: "bookingChannelIconCandidate_max_fields";
76034
76211
  bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
76035
76212
  cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
76213
+ color?: Maybe<ScalarsEnums["String"]>;
76036
76214
  comment?: Maybe<ScalarsEnums["String"]>;
76037
76215
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76038
76216
  id?: Maybe<ScalarsEnums["uuid"]>;
@@ -76047,6 +76225,7 @@ export interface bookingChannelIconCandidate_min_fields {
76047
76225
  __typename?: "bookingChannelIconCandidate_min_fields";
76048
76226
  bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
76049
76227
  cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
76228
+ color?: Maybe<ScalarsEnums["String"]>;
76050
76229
  comment?: Maybe<ScalarsEnums["String"]>;
76051
76230
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76052
76231
  id?: Maybe<ScalarsEnums["uuid"]>;
@@ -76074,10 +76253,62 @@ export interface bookingChannelIconCandidate_mutation_response {
76074
76253
  */
76075
76254
  export interface booking_channel {
76076
76255
  __typename?: "booking_channel";
76256
+ /**
76257
+ * An array relationship
76258
+ */
76259
+ bookingChannelIconCandidates: (args?: {
76260
+ /**
76261
+ * distinct select on columns
76262
+ */
76263
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
76264
+ /**
76265
+ * limit the number of rows returned
76266
+ */
76267
+ limit?: Maybe<Scalars["Int"]>;
76268
+ /**
76269
+ * skip the first n rows. Use only with order_by
76270
+ */
76271
+ offset?: Maybe<Scalars["Int"]>;
76272
+ /**
76273
+ * sort the rows by one or more columns
76274
+ */
76275
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
76276
+ /**
76277
+ * filter the rows returned
76278
+ */
76279
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
76280
+ }) => Array<bookingChannelIconCandidate>;
76281
+ /**
76282
+ * An aggregate relationship
76283
+ */
76284
+ bookingChannelIconCandidates_aggregate: (args?: {
76285
+ /**
76286
+ * distinct select on columns
76287
+ */
76288
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
76289
+ /**
76290
+ * limit the number of rows returned
76291
+ */
76292
+ limit?: Maybe<Scalars["Int"]>;
76293
+ /**
76294
+ * skip the first n rows. Use only with order_by
76295
+ */
76296
+ offset?: Maybe<Scalars["Int"]>;
76297
+ /**
76298
+ * sort the rows by one or more columns
76299
+ */
76300
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
76301
+ /**
76302
+ * filter the rows returned
76303
+ */
76304
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
76305
+ }) => bookingChannelIconCandidate_aggregate;
76077
76306
  channelRef?: Maybe<ScalarsEnums["String"]>;
76307
+ color?: Maybe<ScalarsEnums["String"]>;
76078
76308
  createdAt: ScalarsEnums["timestamptz"];
76079
76309
  icon?: Maybe<ScalarsEnums["String"]>;
76080
76310
  id: ScalarsEnums["uuid"];
76311
+ lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
76081
76312
  /**
76082
76313
  * An array relationship
76083
76314
  */
@@ -76311,9 +76542,11 @@ export interface booking_channel_aggregate_fields {
76311
76542
  export interface booking_channel_max_fields {
76312
76543
  __typename?: "booking_channel_max_fields";
76313
76544
  channelRef?: Maybe<ScalarsEnums["String"]>;
76545
+ color?: Maybe<ScalarsEnums["String"]>;
76314
76546
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76315
76547
  icon?: Maybe<ScalarsEnums["String"]>;
76316
76548
  id?: Maybe<ScalarsEnums["uuid"]>;
76549
+ lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
76317
76550
  selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
76318
76551
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
76319
76552
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
@@ -76325,9 +76558,11 @@ export interface booking_channel_max_fields {
76325
76558
  export interface booking_channel_min_fields {
76326
76559
  __typename?: "booking_channel_min_fields";
76327
76560
  channelRef?: Maybe<ScalarsEnums["String"]>;
76561
+ color?: Maybe<ScalarsEnums["String"]>;
76328
76562
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76329
76563
  icon?: Maybe<ScalarsEnums["String"]>;
76330
76564
  id?: Maybe<ScalarsEnums["uuid"]>;
76565
+ lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
76331
76566
  selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
76332
76567
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
76333
76568
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;