@vrplatform/graphql 1.1.46 → 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 +255 -33
- package/build/main/gqty/schema.generated.js +103 -13
- package/build/module/gqty/schema.generated.d.ts +255 -33
- package/build/module/gqty/schema.generated.js +103 -13
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +255 -33
- package/src/gqty/schema.generated.js +103 -13
|
@@ -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>>;
|
|
@@ -4421,10 +4446,10 @@ export interface bookingChannelIconCandidate_bool_exp {
|
|
|
4421
4446
|
_or?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
|
|
4422
4447
|
bookingChannel?: InputMaybe<booking_channel_bool_exp>;
|
|
4423
4448
|
bookingChannelId?: InputMaybe<uuid_comparison_exp>;
|
|
4449
|
+
cloudflareImageId?: InputMaybe<String_comparison_exp>;
|
|
4450
|
+
color?: InputMaybe<String_comparison_exp>;
|
|
4424
4451
|
comment?: InputMaybe<String_comparison_exp>;
|
|
4425
4452
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
4426
|
-
fileStorage?: InputMaybe<file_storage_bool_exp>;
|
|
4427
|
-
fileStorageId?: InputMaybe<uuid_comparison_exp>;
|
|
4428
4453
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
4429
4454
|
source?: InputMaybe<String_comparison_exp>;
|
|
4430
4455
|
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
@@ -4441,15 +4466,39 @@ export type bookingChannelIconCandidate_constraint =
|
|
|
4441
4466
|
export interface bookingChannelIconCandidate_insert_input {
|
|
4442
4467
|
bookingChannel?: InputMaybe<booking_channel_obj_rel_insert_input>;
|
|
4443
4468
|
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4469
|
+
cloudflareImageId?: InputMaybe<Scalars["String"]>;
|
|
4470
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4444
4471
|
comment?: InputMaybe<Scalars["String"]>;
|
|
4445
4472
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4446
|
-
fileStorage?: InputMaybe<file_storage_obj_rel_insert_input>;
|
|
4447
|
-
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4448
4473
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4449
4474
|
source?: InputMaybe<Scalars["String"]>;
|
|
4450
4475
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4451
4476
|
}
|
|
4452
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
|
+
|
|
4453
4502
|
/** on_conflict condition type for table "booking_channel_icon_candidate" */
|
|
4454
4503
|
export interface bookingChannelIconCandidate_on_conflict {
|
|
4455
4504
|
constraint: bookingChannelIconCandidate_constraint;
|
|
@@ -4461,10 +4510,10 @@ export interface bookingChannelIconCandidate_on_conflict {
|
|
|
4461
4510
|
export interface bookingChannelIconCandidate_order_by {
|
|
4462
4511
|
bookingChannel?: InputMaybe<booking_channel_order_by>;
|
|
4463
4512
|
bookingChannelId?: InputMaybe<order_by>;
|
|
4513
|
+
cloudflareImageId?: InputMaybe<order_by>;
|
|
4514
|
+
color?: InputMaybe<order_by>;
|
|
4464
4515
|
comment?: InputMaybe<order_by>;
|
|
4465
4516
|
createdAt?: InputMaybe<order_by>;
|
|
4466
|
-
fileStorage?: InputMaybe<file_storage_order_by>;
|
|
4467
|
-
fileStorageId?: InputMaybe<order_by>;
|
|
4468
4517
|
id?: InputMaybe<order_by>;
|
|
4469
4518
|
source?: InputMaybe<order_by>;
|
|
4470
4519
|
updatedAt?: InputMaybe<order_by>;
|
|
@@ -4480,12 +4529,14 @@ export type bookingChannelIconCandidate_select_column =
|
|
|
4480
4529
|
/** column name */
|
|
4481
4530
|
| "bookingChannelId"
|
|
4482
4531
|
/** column name */
|
|
4532
|
+
| "cloudflareImageId"
|
|
4533
|
+
/** column name */
|
|
4534
|
+
| "color"
|
|
4535
|
+
/** column name */
|
|
4483
4536
|
| "comment"
|
|
4484
4537
|
/** column name */
|
|
4485
4538
|
| "createdAt"
|
|
4486
4539
|
/** column name */
|
|
4487
|
-
| "fileStorageId"
|
|
4488
|
-
/** column name */
|
|
4489
4540
|
| "id"
|
|
4490
4541
|
/** column name */
|
|
4491
4542
|
| "source"
|
|
@@ -4495,9 +4546,10 @@ export type bookingChannelIconCandidate_select_column =
|
|
|
4495
4546
|
/** input type for updating data in table "booking_channel_icon_candidate" */
|
|
4496
4547
|
export interface bookingChannelIconCandidate_set_input {
|
|
4497
4548
|
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4549
|
+
cloudflareImageId?: InputMaybe<Scalars["String"]>;
|
|
4550
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4498
4551
|
comment?: InputMaybe<Scalars["String"]>;
|
|
4499
4552
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4500
|
-
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4501
4553
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4502
4554
|
source?: InputMaybe<Scalars["String"]>;
|
|
4503
4555
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -4514,9 +4566,10 @@ export interface bookingChannelIconCandidate_stream_cursor_input {
|
|
|
4514
4566
|
/** Initial value of the column from where the streaming should start */
|
|
4515
4567
|
export interface bookingChannelIconCandidate_stream_cursor_value_input {
|
|
4516
4568
|
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4569
|
+
cloudflareImageId?: InputMaybe<Scalars["String"]>;
|
|
4570
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4517
4571
|
comment?: InputMaybe<Scalars["String"]>;
|
|
4518
4572
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4519
|
-
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4520
4573
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4521
4574
|
source?: InputMaybe<Scalars["String"]>;
|
|
4522
4575
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -4527,12 +4580,14 @@ export type bookingChannelIconCandidate_update_column =
|
|
|
4527
4580
|
/** column name */
|
|
4528
4581
|
| "bookingChannelId"
|
|
4529
4582
|
/** column name */
|
|
4583
|
+
| "cloudflareImageId"
|
|
4584
|
+
/** column name */
|
|
4585
|
+
| "color"
|
|
4586
|
+
/** column name */
|
|
4530
4587
|
| "comment"
|
|
4531
4588
|
/** column name */
|
|
4532
4589
|
| "createdAt"
|
|
4533
4590
|
/** column name */
|
|
4534
|
-
| "fileStorageId"
|
|
4535
|
-
/** column name */
|
|
4536
4591
|
| "id"
|
|
4537
4592
|
/** column name */
|
|
4538
4593
|
| "source"
|
|
@@ -4551,10 +4606,14 @@ export interface booking_channel_bool_exp {
|
|
|
4551
4606
|
_and?: InputMaybe<Array<booking_channel_bool_exp>>;
|
|
4552
4607
|
_not?: InputMaybe<booking_channel_bool_exp>;
|
|
4553
4608
|
_or?: InputMaybe<Array<booking_channel_bool_exp>>;
|
|
4609
|
+
bookingChannelIconCandidates?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
|
|
4610
|
+
bookingChannelIconCandidates_aggregate?: InputMaybe<bookingChannelIconCandidate_aggregate_bool_exp>;
|
|
4554
4611
|
channelRef?: InputMaybe<String_comparison_exp>;
|
|
4612
|
+
color?: InputMaybe<String_comparison_exp>;
|
|
4555
4613
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
4556
4614
|
icon?: InputMaybe<String_comparison_exp>;
|
|
4557
4615
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
4616
|
+
lastGenerateRun?: InputMaybe<timestamptz_comparison_exp>;
|
|
4558
4617
|
reservations?: InputMaybe<reservation_bool_exp>;
|
|
4559
4618
|
reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
|
|
4560
4619
|
selectedBookingChannelIconCandidateId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -4577,10 +4636,13 @@ export type booking_channel_constraint =
|
|
|
4577
4636
|
|
|
4578
4637
|
/** input type for inserting data into table "booking_channel" */
|
|
4579
4638
|
export interface booking_channel_insert_input {
|
|
4639
|
+
bookingChannelIconCandidates?: InputMaybe<bookingChannelIconCandidate_arr_rel_insert_input>;
|
|
4580
4640
|
channelRef?: InputMaybe<Scalars["String"]>;
|
|
4641
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4581
4642
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4582
4643
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4583
4644
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4645
|
+
lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
|
|
4584
4646
|
reservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
4585
4647
|
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4586
4648
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
@@ -4606,10 +4668,13 @@ export interface booking_channel_on_conflict {
|
|
|
4606
4668
|
|
|
4607
4669
|
/** Ordering options when selecting data from "booking_channel". */
|
|
4608
4670
|
export interface booking_channel_order_by {
|
|
4671
|
+
bookingChannelIconCandidates_aggregate?: InputMaybe<bookingChannelIconCandidate_aggregate_order_by>;
|
|
4609
4672
|
channelRef?: InputMaybe<order_by>;
|
|
4673
|
+
color?: InputMaybe<order_by>;
|
|
4610
4674
|
createdAt?: InputMaybe<order_by>;
|
|
4611
4675
|
icon?: InputMaybe<order_by>;
|
|
4612
4676
|
id?: InputMaybe<order_by>;
|
|
4677
|
+
lastGenerateRun?: InputMaybe<order_by>;
|
|
4613
4678
|
reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
|
|
4614
4679
|
selectedBookingChannelIconCandidateId?: InputMaybe<order_by>;
|
|
4615
4680
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
@@ -4629,12 +4694,16 @@ export type booking_channel_select_column =
|
|
|
4629
4694
|
/** column name */
|
|
4630
4695
|
| "channelRef"
|
|
4631
4696
|
/** column name */
|
|
4697
|
+
| "color"
|
|
4698
|
+
/** column name */
|
|
4632
4699
|
| "createdAt"
|
|
4633
4700
|
/** column name */
|
|
4634
4701
|
| "icon"
|
|
4635
4702
|
/** column name */
|
|
4636
4703
|
| "id"
|
|
4637
4704
|
/** column name */
|
|
4705
|
+
| "lastGenerateRun"
|
|
4706
|
+
/** column name */
|
|
4638
4707
|
| "selectedBookingChannelIconCandidateId"
|
|
4639
4708
|
/** column name */
|
|
4640
4709
|
| "uniqueRef"
|
|
@@ -4644,9 +4713,11 @@ export type booking_channel_select_column =
|
|
|
4644
4713
|
/** input type for updating data in table "booking_channel" */
|
|
4645
4714
|
export interface booking_channel_set_input {
|
|
4646
4715
|
channelRef?: InputMaybe<Scalars["String"]>;
|
|
4716
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4647
4717
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4648
4718
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4649
4719
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4720
|
+
lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
|
|
4650
4721
|
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4651
4722
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
4652
4723
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -4663,9 +4734,11 @@ export interface booking_channel_stream_cursor_input {
|
|
|
4663
4734
|
/** Initial value of the column from where the streaming should start */
|
|
4664
4735
|
export interface booking_channel_stream_cursor_value_input {
|
|
4665
4736
|
channelRef?: InputMaybe<Scalars["String"]>;
|
|
4737
|
+
color?: InputMaybe<Scalars["String"]>;
|
|
4666
4738
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4667
4739
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4668
4740
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4741
|
+
lastGenerateRun?: InputMaybe<Scalars["timestamptz"]>;
|
|
4669
4742
|
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4670
4743
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
4671
4744
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -4676,12 +4749,16 @@ export type booking_channel_update_column =
|
|
|
4676
4749
|
/** column name */
|
|
4677
4750
|
| "channelRef"
|
|
4678
4751
|
/** column name */
|
|
4752
|
+
| "color"
|
|
4753
|
+
/** column name */
|
|
4679
4754
|
| "createdAt"
|
|
4680
4755
|
/** column name */
|
|
4681
4756
|
| "icon"
|
|
4682
4757
|
/** column name */
|
|
4683
4758
|
| "id"
|
|
4684
4759
|
/** column name */
|
|
4760
|
+
| "lastGenerateRun"
|
|
4761
|
+
/** column name */
|
|
4685
4762
|
| "selectedBookingChannelIconCandidateId"
|
|
4686
4763
|
/** column name */
|
|
4687
4764
|
| "uniqueRef"
|
|
@@ -33701,10 +33778,10 @@ export declare const generatedSchema: {
|
|
|
33701
33778
|
__typename: { __type: "String!" };
|
|
33702
33779
|
bookingChannel: { __type: "booking_channel!" };
|
|
33703
33780
|
bookingChannelId: { __type: "uuid!" };
|
|
33781
|
+
cloudflareImageId: { __type: "String" };
|
|
33782
|
+
color: { __type: "String" };
|
|
33704
33783
|
comment: { __type: "String" };
|
|
33705
33784
|
createdAt: { __type: "timestamptz!" };
|
|
33706
|
-
fileStorage: { __type: "file_storage!" };
|
|
33707
|
-
fileStorageId: { __type: "uuid!" };
|
|
33708
33785
|
id: { __type: "uuid!" };
|
|
33709
33786
|
source: { __type: "String" };
|
|
33710
33787
|
updatedAt: { __type: "timestamptz!" };
|
|
@@ -33714,6 +33791,15 @@ export declare const generatedSchema: {
|
|
|
33714
33791
|
aggregate: { __type: "bookingChannelIconCandidate_aggregate_fields" };
|
|
33715
33792
|
nodes: { __type: "[bookingChannelIconCandidate!]!" };
|
|
33716
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
|
+
};
|
|
33717
33803
|
bookingChannelIconCandidate_aggregate_fields: {
|
|
33718
33804
|
__typename: { __type: "String!" };
|
|
33719
33805
|
count: {
|
|
@@ -33726,16 +33812,25 @@ export declare const generatedSchema: {
|
|
|
33726
33812
|
max: { __type: "bookingChannelIconCandidate_max_fields" };
|
|
33727
33813
|
min: { __type: "bookingChannelIconCandidate_min_fields" };
|
|
33728
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
|
+
};
|
|
33729
33824
|
bookingChannelIconCandidate_bool_exp: {
|
|
33730
33825
|
_and: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
|
|
33731
33826
|
_not: { __type: "bookingChannelIconCandidate_bool_exp" };
|
|
33732
33827
|
_or: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
|
|
33733
33828
|
bookingChannel: { __type: "booking_channel_bool_exp" };
|
|
33734
33829
|
bookingChannelId: { __type: "uuid_comparison_exp" };
|
|
33830
|
+
cloudflareImageId: { __type: "String_comparison_exp" };
|
|
33831
|
+
color: { __type: "String_comparison_exp" };
|
|
33735
33832
|
comment: { __type: "String_comparison_exp" };
|
|
33736
33833
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
33737
|
-
fileStorage: { __type: "file_storage_bool_exp" };
|
|
33738
|
-
fileStorageId: { __type: "uuid_comparison_exp" };
|
|
33739
33834
|
id: { __type: "uuid_comparison_exp" };
|
|
33740
33835
|
source: { __type: "String_comparison_exp" };
|
|
33741
33836
|
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
@@ -33743,10 +33838,10 @@ export declare const generatedSchema: {
|
|
|
33743
33838
|
bookingChannelIconCandidate_insert_input: {
|
|
33744
33839
|
bookingChannel: { __type: "booking_channel_obj_rel_insert_input" };
|
|
33745
33840
|
bookingChannelId: { __type: "uuid" };
|
|
33841
|
+
cloudflareImageId: { __type: "String" };
|
|
33842
|
+
color: { __type: "String" };
|
|
33746
33843
|
comment: { __type: "String" };
|
|
33747
33844
|
createdAt: { __type: "timestamptz" };
|
|
33748
|
-
fileStorage: { __type: "file_storage_obj_rel_insert_input" };
|
|
33749
|
-
fileStorageId: { __type: "uuid" };
|
|
33750
33845
|
id: { __type: "uuid" };
|
|
33751
33846
|
source: { __type: "String" };
|
|
33752
33847
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -33754,23 +33849,45 @@ export declare const generatedSchema: {
|
|
|
33754
33849
|
bookingChannelIconCandidate_max_fields: {
|
|
33755
33850
|
__typename: { __type: "String!" };
|
|
33756
33851
|
bookingChannelId: { __type: "uuid" };
|
|
33852
|
+
cloudflareImageId: { __type: "String" };
|
|
33853
|
+
color: { __type: "String" };
|
|
33757
33854
|
comment: { __type: "String" };
|
|
33758
33855
|
createdAt: { __type: "timestamptz" };
|
|
33759
|
-
fileStorageId: { __type: "uuid" };
|
|
33760
33856
|
id: { __type: "uuid" };
|
|
33761
33857
|
source: { __type: "String" };
|
|
33762
33858
|
updatedAt: { __type: "timestamptz" };
|
|
33763
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
|
+
};
|
|
33764
33870
|
bookingChannelIconCandidate_min_fields: {
|
|
33765
33871
|
__typename: { __type: "String!" };
|
|
33766
33872
|
bookingChannelId: { __type: "uuid" };
|
|
33873
|
+
cloudflareImageId: { __type: "String" };
|
|
33874
|
+
color: { __type: "String" };
|
|
33767
33875
|
comment: { __type: "String" };
|
|
33768
33876
|
createdAt: { __type: "timestamptz" };
|
|
33769
|
-
fileStorageId: { __type: "uuid" };
|
|
33770
33877
|
id: { __type: "uuid" };
|
|
33771
33878
|
source: { __type: "String" };
|
|
33772
33879
|
updatedAt: { __type: "timestamptz" };
|
|
33773
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
|
+
};
|
|
33774
33891
|
bookingChannelIconCandidate_mutation_response: {
|
|
33775
33892
|
__typename: { __type: "String!" };
|
|
33776
33893
|
affected_rows: { __type: "Int!" };
|
|
@@ -33784,10 +33901,10 @@ export declare const generatedSchema: {
|
|
|
33784
33901
|
bookingChannelIconCandidate_order_by: {
|
|
33785
33902
|
bookingChannel: { __type: "booking_channel_order_by" };
|
|
33786
33903
|
bookingChannelId: { __type: "order_by" };
|
|
33904
|
+
cloudflareImageId: { __type: "order_by" };
|
|
33905
|
+
color: { __type: "order_by" };
|
|
33787
33906
|
comment: { __type: "order_by" };
|
|
33788
33907
|
createdAt: { __type: "order_by" };
|
|
33789
|
-
fileStorage: { __type: "file_storage_order_by" };
|
|
33790
|
-
fileStorageId: { __type: "order_by" };
|
|
33791
33908
|
id: { __type: "order_by" };
|
|
33792
33909
|
source: { __type: "order_by" };
|
|
33793
33910
|
updatedAt: { __type: "order_by" };
|
|
@@ -33795,9 +33912,10 @@ export declare const generatedSchema: {
|
|
|
33795
33912
|
bookingChannelIconCandidate_pk_columns_input: { id: { __type: "uuid!" } };
|
|
33796
33913
|
bookingChannelIconCandidate_set_input: {
|
|
33797
33914
|
bookingChannelId: { __type: "uuid" };
|
|
33915
|
+
cloudflareImageId: { __type: "String" };
|
|
33916
|
+
color: { __type: "String" };
|
|
33798
33917
|
comment: { __type: "String" };
|
|
33799
33918
|
createdAt: { __type: "timestamptz" };
|
|
33800
|
-
fileStorageId: { __type: "uuid" };
|
|
33801
33919
|
id: { __type: "uuid" };
|
|
33802
33920
|
source: { __type: "String" };
|
|
33803
33921
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -33810,9 +33928,10 @@ export declare const generatedSchema: {
|
|
|
33810
33928
|
};
|
|
33811
33929
|
bookingChannelIconCandidate_stream_cursor_value_input: {
|
|
33812
33930
|
bookingChannelId: { __type: "uuid" };
|
|
33931
|
+
cloudflareImageId: { __type: "String" };
|
|
33932
|
+
color: { __type: "String" };
|
|
33813
33933
|
comment: { __type: "String" };
|
|
33814
33934
|
createdAt: { __type: "timestamptz" };
|
|
33815
|
-
fileStorageId: { __type: "uuid" };
|
|
33816
33935
|
id: { __type: "uuid" };
|
|
33817
33936
|
source: { __type: "String" };
|
|
33818
33937
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -33823,10 +33942,32 @@ export declare const generatedSchema: {
|
|
|
33823
33942
|
};
|
|
33824
33943
|
booking_channel: {
|
|
33825
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
|
+
};
|
|
33826
33965
|
channelRef: { __type: "String" };
|
|
33966
|
+
color: { __type: "String" };
|
|
33827
33967
|
createdAt: { __type: "timestamptz!" };
|
|
33828
33968
|
icon: { __type: "String" };
|
|
33829
33969
|
id: { __type: "uuid!" };
|
|
33970
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
33830
33971
|
reservations: {
|
|
33831
33972
|
__type: "[reservation!]!";
|
|
33832
33973
|
__args: {
|
|
@@ -33932,10 +34073,18 @@ export declare const generatedSchema: {
|
|
|
33932
34073
|
_and: { __type: "[booking_channel_bool_exp!]" };
|
|
33933
34074
|
_not: { __type: "booking_channel_bool_exp" };
|
|
33934
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
|
+
};
|
|
33935
34082
|
channelRef: { __type: "String_comparison_exp" };
|
|
34083
|
+
color: { __type: "String_comparison_exp" };
|
|
33936
34084
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
33937
34085
|
icon: { __type: "String_comparison_exp" };
|
|
33938
34086
|
id: { __type: "uuid_comparison_exp" };
|
|
34087
|
+
lastGenerateRun: { __type: "timestamptz_comparison_exp" };
|
|
33939
34088
|
reservations: { __type: "reservation_bool_exp" };
|
|
33940
34089
|
reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
|
|
33941
34090
|
selectedBookingChannelIconCandidateId: { __type: "uuid_comparison_exp" };
|
|
@@ -33949,10 +34098,15 @@ export declare const generatedSchema: {
|
|
|
33949
34098
|
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
33950
34099
|
};
|
|
33951
34100
|
booking_channel_insert_input: {
|
|
34101
|
+
bookingChannelIconCandidates: {
|
|
34102
|
+
__type: "bookingChannelIconCandidate_arr_rel_insert_input";
|
|
34103
|
+
};
|
|
33952
34104
|
channelRef: { __type: "String" };
|
|
34105
|
+
color: { __type: "String" };
|
|
33953
34106
|
createdAt: { __type: "timestamptz" };
|
|
33954
34107
|
icon: { __type: "String" };
|
|
33955
34108
|
id: { __type: "uuid" };
|
|
34109
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
33956
34110
|
reservations: { __type: "reservation_arr_rel_insert_input" };
|
|
33957
34111
|
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33958
34112
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
@@ -33964,9 +34118,11 @@ export declare const generatedSchema: {
|
|
|
33964
34118
|
booking_channel_max_fields: {
|
|
33965
34119
|
__typename: { __type: "String!" };
|
|
33966
34120
|
channelRef: { __type: "String" };
|
|
34121
|
+
color: { __type: "String" };
|
|
33967
34122
|
createdAt: { __type: "timestamptz" };
|
|
33968
34123
|
icon: { __type: "String" };
|
|
33969
34124
|
id: { __type: "uuid" };
|
|
34125
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
33970
34126
|
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33971
34127
|
uniqueRef: { __type: "String" };
|
|
33972
34128
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -33974,9 +34130,11 @@ export declare const generatedSchema: {
|
|
|
33974
34130
|
booking_channel_min_fields: {
|
|
33975
34131
|
__typename: { __type: "String!" };
|
|
33976
34132
|
channelRef: { __type: "String" };
|
|
34133
|
+
color: { __type: "String" };
|
|
33977
34134
|
createdAt: { __type: "timestamptz" };
|
|
33978
34135
|
icon: { __type: "String" };
|
|
33979
34136
|
id: { __type: "uuid" };
|
|
34137
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
33980
34138
|
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33981
34139
|
uniqueRef: { __type: "String" };
|
|
33982
34140
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -33996,10 +34154,15 @@ export declare const generatedSchema: {
|
|
|
33996
34154
|
where: { __type: "booking_channel_bool_exp" };
|
|
33997
34155
|
};
|
|
33998
34156
|
booking_channel_order_by: {
|
|
34157
|
+
bookingChannelIconCandidates_aggregate: {
|
|
34158
|
+
__type: "bookingChannelIconCandidate_aggregate_order_by";
|
|
34159
|
+
};
|
|
33999
34160
|
channelRef: { __type: "order_by" };
|
|
34161
|
+
color: { __type: "order_by" };
|
|
34000
34162
|
createdAt: { __type: "order_by" };
|
|
34001
34163
|
icon: { __type: "order_by" };
|
|
34002
34164
|
id: { __type: "order_by" };
|
|
34165
|
+
lastGenerateRun: { __type: "order_by" };
|
|
34003
34166
|
reservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
34004
34167
|
selectedBookingChannelIconCandidateId: { __type: "order_by" };
|
|
34005
34168
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
@@ -34011,9 +34174,11 @@ export declare const generatedSchema: {
|
|
|
34011
34174
|
booking_channel_pk_columns_input: { id: { __type: "uuid!" } };
|
|
34012
34175
|
booking_channel_set_input: {
|
|
34013
34176
|
channelRef: { __type: "String" };
|
|
34177
|
+
color: { __type: "String" };
|
|
34014
34178
|
createdAt: { __type: "timestamptz" };
|
|
34015
34179
|
icon: { __type: "String" };
|
|
34016
34180
|
id: { __type: "uuid" };
|
|
34181
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
34017
34182
|
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
34018
34183
|
uniqueRef: { __type: "String" };
|
|
34019
34184
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -34024,9 +34189,11 @@ export declare const generatedSchema: {
|
|
|
34024
34189
|
};
|
|
34025
34190
|
booking_channel_stream_cursor_value_input: {
|
|
34026
34191
|
channelRef: { __type: "String" };
|
|
34192
|
+
color: { __type: "String" };
|
|
34027
34193
|
createdAt: { __type: "timestamptz" };
|
|
34028
34194
|
icon: { __type: "String" };
|
|
34029
34195
|
id: { __type: "uuid" };
|
|
34196
|
+
lastGenerateRun: { __type: "timestamptz" };
|
|
34030
34197
|
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
34031
34198
|
uniqueRef: { __type: "String" };
|
|
34032
34199
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -38772,7 +38939,7 @@ export declare const generatedSchema: {
|
|
|
38772
38939
|
entityType: { __type: "journalEntryEntityType_enum" };
|
|
38773
38940
|
id: { __type: "uuid!" };
|
|
38774
38941
|
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
38775
|
-
ledger: { __type: "journal_entry_ledger" };
|
|
38942
|
+
ledger: { __type: "journal_entry_ledger!" };
|
|
38776
38943
|
line: { __type: "payment_line" };
|
|
38777
38944
|
lineId: { __type: "uuid" };
|
|
38778
38945
|
lineUniqueRef: { __type: "String" };
|
|
@@ -76003,13 +76170,10 @@ export interface bookingChannelIconCandidate {
|
|
|
76003
76170
|
*/
|
|
76004
76171
|
bookingChannel: booking_channel;
|
|
76005
76172
|
bookingChannelId: ScalarsEnums["uuid"];
|
|
76173
|
+
cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
|
|
76174
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76006
76175
|
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76007
76176
|
createdAt: ScalarsEnums["timestamptz"];
|
|
76008
|
-
/**
|
|
76009
|
-
* An object relationship
|
|
76010
|
-
*/
|
|
76011
|
-
fileStorage: file_storage;
|
|
76012
|
-
fileStorageId: ScalarsEnums["uuid"];
|
|
76013
76177
|
id: ScalarsEnums["uuid"];
|
|
76014
76178
|
source?: Maybe<ScalarsEnums["String"]>;
|
|
76015
76179
|
updatedAt: ScalarsEnums["timestamptz"];
|
|
@@ -76043,9 +76207,10 @@ export interface bookingChannelIconCandidate_aggregate_fields {
|
|
|
76043
76207
|
export interface bookingChannelIconCandidate_max_fields {
|
|
76044
76208
|
__typename?: "bookingChannelIconCandidate_max_fields";
|
|
76045
76209
|
bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76210
|
+
cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
|
|
76211
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76046
76212
|
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76047
76213
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76048
|
-
fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76049
76214
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76050
76215
|
source?: Maybe<ScalarsEnums["String"]>;
|
|
76051
76216
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -76057,9 +76222,10 @@ export interface bookingChannelIconCandidate_max_fields {
|
|
|
76057
76222
|
export interface bookingChannelIconCandidate_min_fields {
|
|
76058
76223
|
__typename?: "bookingChannelIconCandidate_min_fields";
|
|
76059
76224
|
bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76225
|
+
cloudflareImageId?: Maybe<ScalarsEnums["String"]>;
|
|
76226
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76060
76227
|
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76061
76228
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76062
|
-
fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76063
76229
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76064
76230
|
source?: Maybe<ScalarsEnums["String"]>;
|
|
76065
76231
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -76085,10 +76251,62 @@ export interface bookingChannelIconCandidate_mutation_response {
|
|
|
76085
76251
|
*/
|
|
76086
76252
|
export interface booking_channel {
|
|
76087
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;
|
|
76088
76304
|
channelRef?: Maybe<ScalarsEnums["String"]>;
|
|
76305
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76089
76306
|
createdAt: ScalarsEnums["timestamptz"];
|
|
76090
76307
|
icon?: Maybe<ScalarsEnums["String"]>;
|
|
76091
76308
|
id: ScalarsEnums["uuid"];
|
|
76309
|
+
lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76092
76310
|
/**
|
|
76093
76311
|
* An array relationship
|
|
76094
76312
|
*/
|
|
@@ -76322,9 +76540,11 @@ export interface booking_channel_aggregate_fields {
|
|
|
76322
76540
|
export interface booking_channel_max_fields {
|
|
76323
76541
|
__typename?: "booking_channel_max_fields";
|
|
76324
76542
|
channelRef?: Maybe<ScalarsEnums["String"]>;
|
|
76543
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76325
76544
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76326
76545
|
icon?: Maybe<ScalarsEnums["String"]>;
|
|
76327
76546
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76547
|
+
lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76328
76548
|
selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76329
76549
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
76330
76550
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -76336,9 +76556,11 @@ export interface booking_channel_max_fields {
|
|
|
76336
76556
|
export interface booking_channel_min_fields {
|
|
76337
76557
|
__typename?: "booking_channel_min_fields";
|
|
76338
76558
|
channelRef?: Maybe<ScalarsEnums["String"]>;
|
|
76559
|
+
color?: Maybe<ScalarsEnums["String"]>;
|
|
76339
76560
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76340
76561
|
icon?: Maybe<ScalarsEnums["String"]>;
|
|
76341
76562
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76563
|
+
lastGenerateRun?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76342
76564
|
selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76343
76565
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
76344
76566
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -80183,7 +80405,7 @@ export interface journalEntry {
|
|
|
80183
80405
|
entityType?: Maybe<ScalarsEnums["journalEntryEntityType_enum"]>;
|
|
80184
80406
|
id: ScalarsEnums["uuid"];
|
|
80185
80407
|
inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
|
|
80186
|
-
ledger
|
|
80408
|
+
ledger: ScalarsEnums["journal_entry_ledger"];
|
|
80187
80409
|
/**
|
|
80188
80410
|
* An object relationship
|
|
80189
80411
|
*/
|