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