@vrplatform/graphql 1.1.43 → 1.1.45
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 +1139 -8
- package/build/main/gqty/schema.generated.js +467 -0
- package/build/module/gqty/schema.generated.d.ts +1139 -8
- package/build/module/gqty/schema.generated.js +467 -0
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +1139 -8
- package/src/gqty/schema.generated.js +471 -0
|
@@ -24,6 +24,8 @@ export interface Scalars {
|
|
|
24
24
|
date: string;
|
|
25
25
|
effect_status: any;
|
|
26
26
|
flow_type: any;
|
|
27
|
+
journal_entry_inactive_reason: any;
|
|
28
|
+
journal_entry_ledger: any;
|
|
27
29
|
json: any;
|
|
28
30
|
jsonb: any;
|
|
29
31
|
numeric: number;
|
|
@@ -4411,6 +4413,138 @@ export interface billing_payment_method_type_updates {
|
|
|
4411
4413
|
where: billing_payment_method_type_bool_exp;
|
|
4412
4414
|
}
|
|
4413
4415
|
|
|
4416
|
+
/** Boolean expression to filter rows from the table "booking_channel_icon_candidate". All fields are combined with a logical 'AND'. */
|
|
4417
|
+
export interface bookingChannelIconCandidate_bool_exp {
|
|
4418
|
+
_and?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
|
|
4419
|
+
_not?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
|
|
4420
|
+
_or?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
|
|
4421
|
+
bookingChannel?: InputMaybe<booking_channel_bool_exp>;
|
|
4422
|
+
bookingChannelId?: InputMaybe<uuid_comparison_exp>;
|
|
4423
|
+
comment?: InputMaybe<String_comparison_exp>;
|
|
4424
|
+
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
4425
|
+
fileStorage?: InputMaybe<file_storage_bool_exp>;
|
|
4426
|
+
fileStorageId?: InputMaybe<uuid_comparison_exp>;
|
|
4427
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
4428
|
+
source?: InputMaybe<String_comparison_exp>;
|
|
4429
|
+
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
/** unique or primary key constraints on table "booking_channel_icon_candidate" */
|
|
4433
|
+
export type bookingChannelIconCandidate_constraint =
|
|
4434
|
+
/** unique or primary key constraint on columns "id", "booking_channel_id" */
|
|
4435
|
+
| "booking_channel_icon_candidate_booking_channel_id_id_key"
|
|
4436
|
+
/** unique or primary key constraint on columns "id" */
|
|
4437
|
+
| "booking_channel_icon_candidate_pkey";
|
|
4438
|
+
|
|
4439
|
+
/** input type for inserting data into table "booking_channel_icon_candidate" */
|
|
4440
|
+
export interface bookingChannelIconCandidate_insert_input {
|
|
4441
|
+
bookingChannel?: InputMaybe<booking_channel_obj_rel_insert_input>;
|
|
4442
|
+
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4443
|
+
comment?: InputMaybe<Scalars["String"]>;
|
|
4444
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4445
|
+
fileStorage?: InputMaybe<file_storage_obj_rel_insert_input>;
|
|
4446
|
+
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4447
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
4448
|
+
source?: InputMaybe<Scalars["String"]>;
|
|
4449
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4452
|
+
/** on_conflict condition type for table "booking_channel_icon_candidate" */
|
|
4453
|
+
export interface bookingChannelIconCandidate_on_conflict {
|
|
4454
|
+
constraint: bookingChannelIconCandidate_constraint;
|
|
4455
|
+
update_columns?: Array<bookingChannelIconCandidate_update_column>;
|
|
4456
|
+
where?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
/** Ordering options when selecting data from "booking_channel_icon_candidate". */
|
|
4460
|
+
export interface bookingChannelIconCandidate_order_by {
|
|
4461
|
+
bookingChannel?: InputMaybe<booking_channel_order_by>;
|
|
4462
|
+
bookingChannelId?: InputMaybe<order_by>;
|
|
4463
|
+
comment?: InputMaybe<order_by>;
|
|
4464
|
+
createdAt?: InputMaybe<order_by>;
|
|
4465
|
+
fileStorage?: InputMaybe<file_storage_order_by>;
|
|
4466
|
+
fileStorageId?: InputMaybe<order_by>;
|
|
4467
|
+
id?: InputMaybe<order_by>;
|
|
4468
|
+
source?: InputMaybe<order_by>;
|
|
4469
|
+
updatedAt?: InputMaybe<order_by>;
|
|
4470
|
+
}
|
|
4471
|
+
|
|
4472
|
+
/** primary key columns input for table: booking_channel_icon_candidate */
|
|
4473
|
+
export interface bookingChannelIconCandidate_pk_columns_input {
|
|
4474
|
+
id: Scalars["uuid"];
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
/** select columns of table "booking_channel_icon_candidate" */
|
|
4478
|
+
export type bookingChannelIconCandidate_select_column =
|
|
4479
|
+
/** column name */
|
|
4480
|
+
| "bookingChannelId"
|
|
4481
|
+
/** column name */
|
|
4482
|
+
| "comment"
|
|
4483
|
+
/** column name */
|
|
4484
|
+
| "createdAt"
|
|
4485
|
+
/** column name */
|
|
4486
|
+
| "fileStorageId"
|
|
4487
|
+
/** column name */
|
|
4488
|
+
| "id"
|
|
4489
|
+
/** column name */
|
|
4490
|
+
| "source"
|
|
4491
|
+
/** column name */
|
|
4492
|
+
| "updatedAt";
|
|
4493
|
+
|
|
4494
|
+
/** input type for updating data in table "booking_channel_icon_candidate" */
|
|
4495
|
+
export interface bookingChannelIconCandidate_set_input {
|
|
4496
|
+
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4497
|
+
comment?: InputMaybe<Scalars["String"]>;
|
|
4498
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4499
|
+
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4500
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
4501
|
+
source?: InputMaybe<Scalars["String"]>;
|
|
4502
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
/** Streaming cursor of the table "bookingChannelIconCandidate" */
|
|
4506
|
+
export interface bookingChannelIconCandidate_stream_cursor_input {
|
|
4507
|
+
/** Stream column input with initial value */
|
|
4508
|
+
initial_value: bookingChannelIconCandidate_stream_cursor_value_input;
|
|
4509
|
+
/** cursor ordering */
|
|
4510
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
/** Initial value of the column from where the streaming should start */
|
|
4514
|
+
export interface bookingChannelIconCandidate_stream_cursor_value_input {
|
|
4515
|
+
bookingChannelId?: InputMaybe<Scalars["uuid"]>;
|
|
4516
|
+
comment?: InputMaybe<Scalars["String"]>;
|
|
4517
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4518
|
+
fileStorageId?: InputMaybe<Scalars["uuid"]>;
|
|
4519
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
4520
|
+
source?: InputMaybe<Scalars["String"]>;
|
|
4521
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4522
|
+
}
|
|
4523
|
+
|
|
4524
|
+
/** update columns of table "booking_channel_icon_candidate" */
|
|
4525
|
+
export type bookingChannelIconCandidate_update_column =
|
|
4526
|
+
/** column name */
|
|
4527
|
+
| "bookingChannelId"
|
|
4528
|
+
/** column name */
|
|
4529
|
+
| "comment"
|
|
4530
|
+
/** column name */
|
|
4531
|
+
| "createdAt"
|
|
4532
|
+
/** column name */
|
|
4533
|
+
| "fileStorageId"
|
|
4534
|
+
/** column name */
|
|
4535
|
+
| "id"
|
|
4536
|
+
/** column name */
|
|
4537
|
+
| "source"
|
|
4538
|
+
/** column name */
|
|
4539
|
+
| "updatedAt";
|
|
4540
|
+
|
|
4541
|
+
export interface bookingChannelIconCandidate_updates {
|
|
4542
|
+
/** sets the columns of the filtered rows to the given values */
|
|
4543
|
+
_set?: InputMaybe<bookingChannelIconCandidate_set_input>;
|
|
4544
|
+
/** filter the rows which have to be updated */
|
|
4545
|
+
where: bookingChannelIconCandidate_bool_exp;
|
|
4546
|
+
}
|
|
4547
|
+
|
|
4414
4548
|
/** Boolean expression to filter rows from the table "booking_channel". All fields are combined with a logical 'AND'. */
|
|
4415
4549
|
export interface booking_channel_bool_exp {
|
|
4416
4550
|
_and?: InputMaybe<Array<booking_channel_bool_exp>>;
|
|
@@ -4422,6 +4556,7 @@ export interface booking_channel_bool_exp {
|
|
|
4422
4556
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
4423
4557
|
reservations?: InputMaybe<reservation_bool_exp>;
|
|
4424
4558
|
reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
|
|
4559
|
+
selectedBookingChannelIconCandidateId?: InputMaybe<uuid_comparison_exp>;
|
|
4425
4560
|
settings?: InputMaybe<setting_bool_exp>;
|
|
4426
4561
|
settingsLeft?: InputMaybe<setting_bool_exp>;
|
|
4427
4562
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
@@ -4446,6 +4581,7 @@ export interface booking_channel_insert_input {
|
|
|
4446
4581
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4447
4582
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4448
4583
|
reservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
4584
|
+
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4449
4585
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
4450
4586
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
4451
4587
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
@@ -4474,6 +4610,7 @@ export interface booking_channel_order_by {
|
|
|
4474
4610
|
icon?: InputMaybe<order_by>;
|
|
4475
4611
|
id?: InputMaybe<order_by>;
|
|
4476
4612
|
reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
|
|
4613
|
+
selectedBookingChannelIconCandidateId?: InputMaybe<order_by>;
|
|
4477
4614
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
4478
4615
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
4479
4616
|
settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
@@ -4497,6 +4634,8 @@ export type booking_channel_select_column =
|
|
|
4497
4634
|
/** column name */
|
|
4498
4635
|
| "id"
|
|
4499
4636
|
/** column name */
|
|
4637
|
+
| "selectedBookingChannelIconCandidateId"
|
|
4638
|
+
/** column name */
|
|
4500
4639
|
| "uniqueRef"
|
|
4501
4640
|
/** column name */
|
|
4502
4641
|
| "updatedAt";
|
|
@@ -4507,6 +4646,7 @@ export interface booking_channel_set_input {
|
|
|
4507
4646
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4508
4647
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4509
4648
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4649
|
+
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4510
4650
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
4511
4651
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4512
4652
|
}
|
|
@@ -4525,6 +4665,7 @@ export interface booking_channel_stream_cursor_value_input {
|
|
|
4525
4665
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4526
4666
|
icon?: InputMaybe<Scalars["String"]>;
|
|
4527
4667
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
4668
|
+
selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
|
|
4528
4669
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
4529
4670
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
4530
4671
|
}
|
|
@@ -4540,6 +4681,8 @@ export type booking_channel_update_column =
|
|
|
4540
4681
|
/** column name */
|
|
4541
4682
|
| "id"
|
|
4542
4683
|
/** column name */
|
|
4684
|
+
| "selectedBookingChannelIconCandidateId"
|
|
4685
|
+
/** column name */
|
|
4543
4686
|
| "uniqueRef"
|
|
4544
4687
|
/** column name */
|
|
4545
4688
|
| "updatedAt";
|
|
@@ -10085,6 +10228,8 @@ export interface journalEntry_bool_exp {
|
|
|
10085
10228
|
entitySortNum?: InputMaybe<Int_comparison_exp>;
|
|
10086
10229
|
entityType?: InputMaybe<journalEntryEntityType_enum_comparison_exp>;
|
|
10087
10230
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
10231
|
+
inactive_reason?: InputMaybe<journal_entry_inactive_reason_comparison_exp>;
|
|
10232
|
+
ledger?: InputMaybe<journal_entry_ledger_comparison_exp>;
|
|
10088
10233
|
line?: InputMaybe<payment_line_bool_exp>;
|
|
10089
10234
|
lineId?: InputMaybe<uuid_comparison_exp>;
|
|
10090
10235
|
lineUniqueRef?: InputMaybe<String_comparison_exp>;
|
|
@@ -10147,6 +10292,8 @@ export interface journalEntry_insert_input {
|
|
|
10147
10292
|
entitySortNum?: InputMaybe<Scalars["Int"]>;
|
|
10148
10293
|
entityType?: InputMaybe<journalEntryEntityType_enum>;
|
|
10149
10294
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
10295
|
+
inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10296
|
+
ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10150
10297
|
line?: InputMaybe<payment_line_obj_rel_insert_input>;
|
|
10151
10298
|
lineId?: InputMaybe<Scalars["uuid"]>;
|
|
10152
10299
|
lineUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -10189,6 +10336,8 @@ export interface journalEntry_max_order_by {
|
|
|
10189
10336
|
description?: InputMaybe<order_by>;
|
|
10190
10337
|
entitySortNum?: InputMaybe<order_by>;
|
|
10191
10338
|
id?: InputMaybe<order_by>;
|
|
10339
|
+
inactive_reason?: InputMaybe<order_by>;
|
|
10340
|
+
ledger?: InputMaybe<order_by>;
|
|
10192
10341
|
lineId?: InputMaybe<order_by>;
|
|
10193
10342
|
lineUniqueRef?: InputMaybe<order_by>;
|
|
10194
10343
|
listingId?: InputMaybe<order_by>;
|
|
@@ -10217,6 +10366,8 @@ export interface journalEntry_min_order_by {
|
|
|
10217
10366
|
description?: InputMaybe<order_by>;
|
|
10218
10367
|
entitySortNum?: InputMaybe<order_by>;
|
|
10219
10368
|
id?: InputMaybe<order_by>;
|
|
10369
|
+
inactive_reason?: InputMaybe<order_by>;
|
|
10370
|
+
ledger?: InputMaybe<order_by>;
|
|
10220
10371
|
lineId?: InputMaybe<order_by>;
|
|
10221
10372
|
lineUniqueRef?: InputMaybe<order_by>;
|
|
10222
10373
|
listingId?: InputMaybe<order_by>;
|
|
@@ -10257,6 +10408,8 @@ export interface journalEntry_order_by {
|
|
|
10257
10408
|
entitySortNum?: InputMaybe<order_by>;
|
|
10258
10409
|
entityType?: InputMaybe<order_by>;
|
|
10259
10410
|
id?: InputMaybe<order_by>;
|
|
10411
|
+
inactive_reason?: InputMaybe<order_by>;
|
|
10412
|
+
ledger?: InputMaybe<order_by>;
|
|
10260
10413
|
line?: InputMaybe<payment_line_order_by>;
|
|
10261
10414
|
lineId?: InputMaybe<order_by>;
|
|
10262
10415
|
lineUniqueRef?: InputMaybe<order_by>;
|
|
@@ -10318,6 +10471,10 @@ export type journalEntry_select_column =
|
|
|
10318
10471
|
/** column name */
|
|
10319
10472
|
| "id"
|
|
10320
10473
|
/** column name */
|
|
10474
|
+
| "inactive_reason"
|
|
10475
|
+
/** column name */
|
|
10476
|
+
| "ledger"
|
|
10477
|
+
/** column name */
|
|
10321
10478
|
| "lineId"
|
|
10322
10479
|
/** column name */
|
|
10323
10480
|
| "lineUniqueRef"
|
|
@@ -10370,6 +10527,8 @@ export interface journalEntry_set_input {
|
|
|
10370
10527
|
entitySortNum?: InputMaybe<Scalars["Int"]>;
|
|
10371
10528
|
entityType?: InputMaybe<journalEntryEntityType_enum>;
|
|
10372
10529
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
10530
|
+
inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10531
|
+
ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10373
10532
|
lineId?: InputMaybe<Scalars["uuid"]>;
|
|
10374
10533
|
lineUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
10375
10534
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -10432,6 +10591,8 @@ export interface journalEntry_stream_cursor_value_input {
|
|
|
10432
10591
|
entitySortNum?: InputMaybe<Scalars["Int"]>;
|
|
10433
10592
|
entityType?: InputMaybe<journalEntryEntityType_enum>;
|
|
10434
10593
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
10594
|
+
inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10595
|
+
ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10435
10596
|
lineId?: InputMaybe<Scalars["uuid"]>;
|
|
10436
10597
|
lineUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
10437
10598
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -10484,6 +10645,10 @@ export type journalEntry_update_column =
|
|
|
10484
10645
|
/** column name */
|
|
10485
10646
|
| "id"
|
|
10486
10647
|
/** column name */
|
|
10648
|
+
| "inactive_reason"
|
|
10649
|
+
/** column name */
|
|
10650
|
+
| "ledger"
|
|
10651
|
+
/** column name */
|
|
10487
10652
|
| "lineId"
|
|
10488
10653
|
/** column name */
|
|
10489
10654
|
| "lineUniqueRef"
|
|
@@ -10552,6 +10717,32 @@ export interface journalEntry_variance_order_by {
|
|
|
10552
10717
|
txnNum?: InputMaybe<order_by>;
|
|
10553
10718
|
}
|
|
10554
10719
|
|
|
10720
|
+
/** Boolean expression to compare columns of type "journal_entry_inactive_reason". All fields are combined with logical 'AND'. */
|
|
10721
|
+
export interface journal_entry_inactive_reason_comparison_exp {
|
|
10722
|
+
_eq?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10723
|
+
_gt?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10724
|
+
_gte?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10725
|
+
_in?: InputMaybe<Array<Scalars["journal_entry_inactive_reason"]>>;
|
|
10726
|
+
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
10727
|
+
_lt?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10728
|
+
_lte?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10729
|
+
_neq?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
|
|
10730
|
+
_nin?: InputMaybe<Array<Scalars["journal_entry_inactive_reason"]>>;
|
|
10731
|
+
}
|
|
10732
|
+
|
|
10733
|
+
/** Boolean expression to compare columns of type "journal_entry_ledger". All fields are combined with logical 'AND'. */
|
|
10734
|
+
export interface journal_entry_ledger_comparison_exp {
|
|
10735
|
+
_eq?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10736
|
+
_gt?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10737
|
+
_gte?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10738
|
+
_in?: InputMaybe<Array<Scalars["journal_entry_ledger"]>>;
|
|
10739
|
+
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
10740
|
+
_lt?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10741
|
+
_lte?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10742
|
+
_neq?: InputMaybe<Scalars["journal_entry_ledger"]>;
|
|
10743
|
+
_nin?: InputMaybe<Array<Scalars["journal_entry_ledger"]>>;
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10555
10746
|
/** Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. */
|
|
10556
10747
|
export interface json_comparison_exp {
|
|
10557
10748
|
_eq?: InputMaybe<Scalars["json"]>;
|
|
@@ -10945,9 +11136,17 @@ export interface listingOwnershipPeriod_aggregate_bool_exp_count {
|
|
|
10945
11136
|
|
|
10946
11137
|
/** order by aggregate values of table "listing_ownership_period" */
|
|
10947
11138
|
export interface listingOwnershipPeriod_aggregate_order_by {
|
|
11139
|
+
avg?: InputMaybe<listingOwnershipPeriod_avg_order_by>;
|
|
10948
11140
|
count?: InputMaybe<order_by>;
|
|
10949
11141
|
max?: InputMaybe<listingOwnershipPeriod_max_order_by>;
|
|
10950
11142
|
min?: InputMaybe<listingOwnershipPeriod_min_order_by>;
|
|
11143
|
+
stddev?: InputMaybe<listingOwnershipPeriod_stddev_order_by>;
|
|
11144
|
+
stddev_pop?: InputMaybe<listingOwnershipPeriod_stddev_pop_order_by>;
|
|
11145
|
+
stddev_samp?: InputMaybe<listingOwnershipPeriod_stddev_samp_order_by>;
|
|
11146
|
+
sum?: InputMaybe<listingOwnershipPeriod_sum_order_by>;
|
|
11147
|
+
var_pop?: InputMaybe<listingOwnershipPeriod_var_pop_order_by>;
|
|
11148
|
+
var_samp?: InputMaybe<listingOwnershipPeriod_var_samp_order_by>;
|
|
11149
|
+
variance?: InputMaybe<listingOwnershipPeriod_variance_order_by>;
|
|
10951
11150
|
}
|
|
10952
11151
|
|
|
10953
11152
|
/** input type for inserting array relation for remote table "listing_ownership_period" */
|
|
@@ -10957,6 +11156,11 @@ export interface listingOwnershipPeriod_arr_rel_insert_input {
|
|
|
10957
11156
|
on_conflict?: InputMaybe<listingOwnershipPeriod_on_conflict>;
|
|
10958
11157
|
}
|
|
10959
11158
|
|
|
11159
|
+
/** order by avg() on columns of table "listing_ownership_period" */
|
|
11160
|
+
export interface listingOwnershipPeriod_avg_order_by {
|
|
11161
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11162
|
+
}
|
|
11163
|
+
|
|
10960
11164
|
/** Boolean expression to filter rows from the table "listing_ownership_period". All fields are combined with a logical 'AND'. */
|
|
10961
11165
|
export interface listingOwnershipPeriod_bool_exp {
|
|
10962
11166
|
_and?: InputMaybe<Array<listingOwnershipPeriod_bool_exp>>;
|
|
@@ -10974,6 +11178,7 @@ export interface listingOwnershipPeriod_bool_exp {
|
|
|
10974
11178
|
members_aggregate?: InputMaybe<listingOwnershipPeriodMember_aggregate_bool_exp>;
|
|
10975
11179
|
ownerStatements?: InputMaybe<owner_statement_bool_exp>;
|
|
10976
11180
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_bool_exp>;
|
|
11181
|
+
reserve_cent_total?: InputMaybe<bigint_comparison_exp>;
|
|
10977
11182
|
setListingInactive?: InputMaybe<Boolean_comparison_exp>;
|
|
10978
11183
|
startAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
10979
11184
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
@@ -10986,6 +11191,11 @@ export type listingOwnershipPeriod_constraint =
|
|
|
10986
11191
|
/** unique or primary key constraint on columns "id" */
|
|
10987
11192
|
"listing_ownership_period_pkey";
|
|
10988
11193
|
|
|
11194
|
+
/** input type for incrementing numeric columns in table "listing_ownership_period" */
|
|
11195
|
+
export interface listingOwnershipPeriod_inc_input {
|
|
11196
|
+
reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
11197
|
+
}
|
|
11198
|
+
|
|
10989
11199
|
/** input type for inserting data into table "listing_ownership_period" */
|
|
10990
11200
|
export interface listingOwnershipPeriod_insert_input {
|
|
10991
11201
|
businessModel?: InputMaybe<listingOwnershipPeriodBusinessModel_enum>;
|
|
@@ -10997,6 +11207,7 @@ export interface listingOwnershipPeriod_insert_input {
|
|
|
10997
11207
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
10998
11208
|
members?: InputMaybe<listingOwnershipPeriodMember_arr_rel_insert_input>;
|
|
10999
11209
|
ownerStatements?: InputMaybe<owner_statement_arr_rel_insert_input>;
|
|
11210
|
+
reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
11000
11211
|
setListingInactive?: InputMaybe<Scalars["Boolean"]>;
|
|
11001
11212
|
startAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11002
11213
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
@@ -11010,6 +11221,7 @@ export interface listingOwnershipPeriod_max_order_by {
|
|
|
11010
11221
|
endAt?: InputMaybe<order_by>;
|
|
11011
11222
|
id?: InputMaybe<order_by>;
|
|
11012
11223
|
listingId?: InputMaybe<order_by>;
|
|
11224
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11013
11225
|
startAt?: InputMaybe<order_by>;
|
|
11014
11226
|
tenantId?: InputMaybe<order_by>;
|
|
11015
11227
|
updatedAt?: InputMaybe<order_by>;
|
|
@@ -11021,6 +11233,7 @@ export interface listingOwnershipPeriod_min_order_by {
|
|
|
11021
11233
|
endAt?: InputMaybe<order_by>;
|
|
11022
11234
|
id?: InputMaybe<order_by>;
|
|
11023
11235
|
listingId?: InputMaybe<order_by>;
|
|
11236
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11024
11237
|
startAt?: InputMaybe<order_by>;
|
|
11025
11238
|
tenantId?: InputMaybe<order_by>;
|
|
11026
11239
|
updatedAt?: InputMaybe<order_by>;
|
|
@@ -11051,6 +11264,7 @@ export interface listingOwnershipPeriod_order_by {
|
|
|
11051
11264
|
listingId?: InputMaybe<order_by>;
|
|
11052
11265
|
members_aggregate?: InputMaybe<listingOwnershipPeriodMember_aggregate_order_by>;
|
|
11053
11266
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_order_by>;
|
|
11267
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11054
11268
|
setListingInactive?: InputMaybe<order_by>;
|
|
11055
11269
|
startAt?: InputMaybe<order_by>;
|
|
11056
11270
|
tenant?: InputMaybe<tenant_order_by>;
|
|
@@ -11076,6 +11290,8 @@ export type listingOwnershipPeriod_select_column =
|
|
|
11076
11290
|
/** column name */
|
|
11077
11291
|
| "listingId"
|
|
11078
11292
|
/** column name */
|
|
11293
|
+
| "reserve_cent_total"
|
|
11294
|
+
/** column name */
|
|
11079
11295
|
| "setListingInactive"
|
|
11080
11296
|
/** column name */
|
|
11081
11297
|
| "startAt"
|
|
@@ -11101,12 +11317,28 @@ export interface listingOwnershipPeriod_set_input {
|
|
|
11101
11317
|
endAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11102
11318
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
11103
11319
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
11320
|
+
reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
11104
11321
|
setListingInactive?: InputMaybe<Scalars["Boolean"]>;
|
|
11105
11322
|
startAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11106
11323
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
11107
11324
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11108
11325
|
}
|
|
11109
11326
|
|
|
11327
|
+
/** order by stddev() on columns of table "listing_ownership_period" */
|
|
11328
|
+
export interface listingOwnershipPeriod_stddev_order_by {
|
|
11329
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11330
|
+
}
|
|
11331
|
+
|
|
11332
|
+
/** order by stddev_pop() on columns of table "listing_ownership_period" */
|
|
11333
|
+
export interface listingOwnershipPeriod_stddev_pop_order_by {
|
|
11334
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11335
|
+
}
|
|
11336
|
+
|
|
11337
|
+
/** order by stddev_samp() on columns of table "listing_ownership_period" */
|
|
11338
|
+
export interface listingOwnershipPeriod_stddev_samp_order_by {
|
|
11339
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11340
|
+
}
|
|
11341
|
+
|
|
11110
11342
|
/** Streaming cursor of the table "listingOwnershipPeriod" */
|
|
11111
11343
|
export interface listingOwnershipPeriod_stream_cursor_input {
|
|
11112
11344
|
/** Stream column input with initial value */
|
|
@@ -11122,12 +11354,18 @@ export interface listingOwnershipPeriod_stream_cursor_value_input {
|
|
|
11122
11354
|
endAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11123
11355
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
11124
11356
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
11357
|
+
reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
11125
11358
|
setListingInactive?: InputMaybe<Scalars["Boolean"]>;
|
|
11126
11359
|
startAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11127
11360
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
11128
11361
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
11129
11362
|
}
|
|
11130
11363
|
|
|
11364
|
+
/** order by sum() on columns of table "listing_ownership_period" */
|
|
11365
|
+
export interface listingOwnershipPeriod_sum_order_by {
|
|
11366
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11367
|
+
}
|
|
11368
|
+
|
|
11131
11369
|
/** update columns of table "listing_ownership_period" */
|
|
11132
11370
|
export type listingOwnershipPeriod_update_column =
|
|
11133
11371
|
/** column name */
|
|
@@ -11141,6 +11379,8 @@ export type listingOwnershipPeriod_update_column =
|
|
|
11141
11379
|
/** column name */
|
|
11142
11380
|
| "listingId"
|
|
11143
11381
|
/** column name */
|
|
11382
|
+
| "reserve_cent_total"
|
|
11383
|
+
/** column name */
|
|
11144
11384
|
| "setListingInactive"
|
|
11145
11385
|
/** column name */
|
|
11146
11386
|
| "startAt"
|
|
@@ -11150,12 +11390,29 @@ export type listingOwnershipPeriod_update_column =
|
|
|
11150
11390
|
| "updatedAt";
|
|
11151
11391
|
|
|
11152
11392
|
export interface listingOwnershipPeriod_updates {
|
|
11393
|
+
/** increments the numeric columns with given value of the filtered values */
|
|
11394
|
+
_inc?: InputMaybe<listingOwnershipPeriod_inc_input>;
|
|
11153
11395
|
/** sets the columns of the filtered rows to the given values */
|
|
11154
11396
|
_set?: InputMaybe<listingOwnershipPeriod_set_input>;
|
|
11155
11397
|
/** filter the rows which have to be updated */
|
|
11156
11398
|
where: listingOwnershipPeriod_bool_exp;
|
|
11157
11399
|
}
|
|
11158
11400
|
|
|
11401
|
+
/** order by var_pop() on columns of table "listing_ownership_period" */
|
|
11402
|
+
export interface listingOwnershipPeriod_var_pop_order_by {
|
|
11403
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11404
|
+
}
|
|
11405
|
+
|
|
11406
|
+
/** order by var_samp() on columns of table "listing_ownership_period" */
|
|
11407
|
+
export interface listingOwnershipPeriod_var_samp_order_by {
|
|
11408
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11409
|
+
}
|
|
11410
|
+
|
|
11411
|
+
/** order by variance() on columns of table "listing_ownership_period" */
|
|
11412
|
+
export interface listingOwnershipPeriod_variance_order_by {
|
|
11413
|
+
reserve_cent_total?: InputMaybe<order_by>;
|
|
11414
|
+
}
|
|
11415
|
+
|
|
11159
11416
|
export interface listing_aggregate_bool_exp {
|
|
11160
11417
|
count?: InputMaybe<listing_aggregate_bool_exp_count>;
|
|
11161
11418
|
}
|
|
@@ -16775,6 +17032,8 @@ export interface payment_line_bool_exp {
|
|
|
16775
17032
|
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
16776
17033
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
16777
17034
|
description?: InputMaybe<String_comparison_exp>;
|
|
17035
|
+
edited_type?: InputMaybe<String_comparison_exp>;
|
|
17036
|
+
effective_type?: InputMaybe<String_comparison_exp>;
|
|
16778
17037
|
generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
16779
17038
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
16780
17039
|
journalEntries?: InputMaybe<journalEntry_bool_exp>;
|
|
@@ -17061,6 +17320,7 @@ export interface payment_line_insert_input {
|
|
|
17061
17320
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
17062
17321
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17063
17322
|
description?: InputMaybe<Scalars["String"]>;
|
|
17323
|
+
edited_type?: InputMaybe<Scalars["String"]>;
|
|
17064
17324
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17065
17325
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
17066
17326
|
journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
|
|
@@ -17101,6 +17361,8 @@ export interface payment_line_max_order_by {
|
|
|
17101
17361
|
connectionId?: InputMaybe<order_by>;
|
|
17102
17362
|
createdAt?: InputMaybe<order_by>;
|
|
17103
17363
|
description?: InputMaybe<order_by>;
|
|
17364
|
+
edited_type?: InputMaybe<order_by>;
|
|
17365
|
+
effective_type?: InputMaybe<order_by>;
|
|
17104
17366
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
17105
17367
|
id?: InputMaybe<order_by>;
|
|
17106
17368
|
lineId?: InputMaybe<order_by>;
|
|
@@ -17129,6 +17391,8 @@ export interface payment_line_min_order_by {
|
|
|
17129
17391
|
connectionId?: InputMaybe<order_by>;
|
|
17130
17392
|
createdAt?: InputMaybe<order_by>;
|
|
17131
17393
|
description?: InputMaybe<order_by>;
|
|
17394
|
+
edited_type?: InputMaybe<order_by>;
|
|
17395
|
+
effective_type?: InputMaybe<order_by>;
|
|
17132
17396
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
17133
17397
|
id?: InputMaybe<order_by>;
|
|
17134
17398
|
lineId?: InputMaybe<order_by>;
|
|
@@ -17176,6 +17440,8 @@ export interface payment_line_order_by {
|
|
|
17176
17440
|
connectionId?: InputMaybe<order_by>;
|
|
17177
17441
|
createdAt?: InputMaybe<order_by>;
|
|
17178
17442
|
description?: InputMaybe<order_by>;
|
|
17443
|
+
edited_type?: InputMaybe<order_by>;
|
|
17444
|
+
effective_type?: InputMaybe<order_by>;
|
|
17179
17445
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
17180
17446
|
id?: InputMaybe<order_by>;
|
|
17181
17447
|
journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
|
|
@@ -17233,6 +17499,10 @@ export type payment_line_select_column =
|
|
|
17233
17499
|
/** column name */
|
|
17234
17500
|
| "description"
|
|
17235
17501
|
/** column name */
|
|
17502
|
+
| "edited_type"
|
|
17503
|
+
/** column name */
|
|
17504
|
+
| "effective_type"
|
|
17505
|
+
/** column name */
|
|
17236
17506
|
| "generalLedgerPostingAt"
|
|
17237
17507
|
/** column name */
|
|
17238
17508
|
| "id"
|
|
@@ -17294,6 +17564,7 @@ export interface payment_line_set_input {
|
|
|
17294
17564
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
17295
17565
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17296
17566
|
description?: InputMaybe<Scalars["String"]>;
|
|
17567
|
+
edited_type?: InputMaybe<Scalars["String"]>;
|
|
17297
17568
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17298
17569
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
17299
17570
|
lineId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -17353,6 +17624,8 @@ export interface payment_line_stream_cursor_value_input {
|
|
|
17353
17624
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
17354
17625
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17355
17626
|
description?: InputMaybe<Scalars["String"]>;
|
|
17627
|
+
edited_type?: InputMaybe<Scalars["String"]>;
|
|
17628
|
+
effective_type?: InputMaybe<Scalars["String"]>;
|
|
17356
17629
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
17357
17630
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
17358
17631
|
lineId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -17397,6 +17670,8 @@ export type payment_line_update_column =
|
|
|
17397
17670
|
/** column name */
|
|
17398
17671
|
| "description"
|
|
17399
17672
|
/** column name */
|
|
17673
|
+
| "edited_type"
|
|
17674
|
+
/** column name */
|
|
17400
17675
|
| "generalLedgerPostingAt"
|
|
17401
17676
|
/** column name */
|
|
17402
17677
|
| "id"
|
|
@@ -19810,6 +20085,7 @@ export interface reservation_avg_order_by {
|
|
|
19810
20085
|
centPaymentFee?: InputMaybe<order_by>;
|
|
19811
20086
|
centService?: InputMaybe<order_by>;
|
|
19812
20087
|
centTotal?: InputMaybe<order_by>;
|
|
20088
|
+
effective_nights?: InputMaybe<order_by>;
|
|
19813
20089
|
guests?: InputMaybe<order_by>;
|
|
19814
20090
|
manager_cent_total?: InputMaybe<order_by>;
|
|
19815
20091
|
nights?: InputMaybe<order_by>;
|
|
@@ -19850,6 +20126,11 @@ export interface reservation_bool_exp {
|
|
|
19850
20126
|
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
19851
20127
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
19852
20128
|
currency?: InputMaybe<currency_enum_comparison_exp>;
|
|
20129
|
+
edited_check_in?: InputMaybe<timestamptz_comparison_exp>;
|
|
20130
|
+
edited_check_out?: InputMaybe<timestamptz_comparison_exp>;
|
|
20131
|
+
effective_check_in?: InputMaybe<timestamptz_comparison_exp>;
|
|
20132
|
+
effective_check_out?: InputMaybe<timestamptz_comparison_exp>;
|
|
20133
|
+
effective_nights?: InputMaybe<Int_comparison_exp>;
|
|
19853
20134
|
files?: InputMaybe<file_storage_bool_exp>;
|
|
19854
20135
|
files_aggregate?: InputMaybe<file_storage_aggregate_bool_exp>;
|
|
19855
20136
|
generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
@@ -19985,6 +20266,8 @@ export interface reservation_insert_input {
|
|
|
19985
20266
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
19986
20267
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
19987
20268
|
currency?: InputMaybe<currency_enum>;
|
|
20269
|
+
edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
|
|
20270
|
+
edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
|
|
19988
20271
|
files?: InputMaybe<file_storage_arr_rel_insert_input>;
|
|
19989
20272
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
19990
20273
|
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
@@ -20053,6 +20336,11 @@ export interface reservation_max_order_by {
|
|
|
20053
20336
|
confirmationCode?: InputMaybe<order_by>;
|
|
20054
20337
|
connectionId?: InputMaybe<order_by>;
|
|
20055
20338
|
createdAt?: InputMaybe<order_by>;
|
|
20339
|
+
edited_check_in?: InputMaybe<order_by>;
|
|
20340
|
+
edited_check_out?: InputMaybe<order_by>;
|
|
20341
|
+
effective_check_in?: InputMaybe<order_by>;
|
|
20342
|
+
effective_check_out?: InputMaybe<order_by>;
|
|
20343
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20056
20344
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
20057
20345
|
guestName?: InputMaybe<order_by>;
|
|
20058
20346
|
guests?: InputMaybe<order_by>;
|
|
@@ -20099,6 +20387,11 @@ export interface reservation_min_order_by {
|
|
|
20099
20387
|
confirmationCode?: InputMaybe<order_by>;
|
|
20100
20388
|
connectionId?: InputMaybe<order_by>;
|
|
20101
20389
|
createdAt?: InputMaybe<order_by>;
|
|
20390
|
+
edited_check_in?: InputMaybe<order_by>;
|
|
20391
|
+
edited_check_out?: InputMaybe<order_by>;
|
|
20392
|
+
effective_check_in?: InputMaybe<order_by>;
|
|
20393
|
+
effective_check_out?: InputMaybe<order_by>;
|
|
20394
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20102
20395
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
20103
20396
|
guestName?: InputMaybe<order_by>;
|
|
20104
20397
|
guests?: InputMaybe<order_by>;
|
|
@@ -20164,6 +20457,11 @@ export interface reservation_order_by {
|
|
|
20164
20457
|
connectionId?: InputMaybe<order_by>;
|
|
20165
20458
|
createdAt?: InputMaybe<order_by>;
|
|
20166
20459
|
currency?: InputMaybe<order_by>;
|
|
20460
|
+
edited_check_in?: InputMaybe<order_by>;
|
|
20461
|
+
edited_check_out?: InputMaybe<order_by>;
|
|
20462
|
+
effective_check_in?: InputMaybe<order_by>;
|
|
20463
|
+
effective_check_out?: InputMaybe<order_by>;
|
|
20464
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20167
20465
|
files_aggregate?: InputMaybe<file_storage_aggregate_order_by>;
|
|
20168
20466
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
20169
20467
|
general_ledger_status?: InputMaybe<order_by>;
|
|
@@ -20267,6 +20565,16 @@ export type reservation_select_column =
|
|
|
20267
20565
|
/** column name */
|
|
20268
20566
|
| "currency"
|
|
20269
20567
|
/** column name */
|
|
20568
|
+
| "edited_check_in"
|
|
20569
|
+
/** column name */
|
|
20570
|
+
| "edited_check_out"
|
|
20571
|
+
/** column name */
|
|
20572
|
+
| "effective_check_in"
|
|
20573
|
+
/** column name */
|
|
20574
|
+
| "effective_check_out"
|
|
20575
|
+
/** column name */
|
|
20576
|
+
| "effective_nights"
|
|
20577
|
+
/** column name */
|
|
20270
20578
|
| "generalLedgerPostingAt"
|
|
20271
20579
|
/** column name */
|
|
20272
20580
|
| "general_ledger_status"
|
|
@@ -20342,6 +20650,8 @@ export interface reservation_set_input {
|
|
|
20342
20650
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
20343
20651
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20344
20652
|
currency?: InputMaybe<currency_enum>;
|
|
20653
|
+
edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
|
|
20654
|
+
edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
|
|
20345
20655
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20346
20656
|
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
20347
20657
|
guestName?: InputMaybe<Scalars["String"]>;
|
|
@@ -20468,6 +20778,7 @@ export interface reservation_stddev_order_by {
|
|
|
20468
20778
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20469
20779
|
centService?: InputMaybe<order_by>;
|
|
20470
20780
|
centTotal?: InputMaybe<order_by>;
|
|
20781
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20471
20782
|
guests?: InputMaybe<order_by>;
|
|
20472
20783
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20473
20784
|
nights?: InputMaybe<order_by>;
|
|
@@ -20487,6 +20798,7 @@ export interface reservation_stddev_pop_order_by {
|
|
|
20487
20798
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20488
20799
|
centService?: InputMaybe<order_by>;
|
|
20489
20800
|
centTotal?: InputMaybe<order_by>;
|
|
20801
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20490
20802
|
guests?: InputMaybe<order_by>;
|
|
20491
20803
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20492
20804
|
nights?: InputMaybe<order_by>;
|
|
@@ -20506,6 +20818,7 @@ export interface reservation_stddev_samp_order_by {
|
|
|
20506
20818
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20507
20819
|
centService?: InputMaybe<order_by>;
|
|
20508
20820
|
centTotal?: InputMaybe<order_by>;
|
|
20821
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20509
20822
|
guests?: InputMaybe<order_by>;
|
|
20510
20823
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20511
20824
|
nights?: InputMaybe<order_by>;
|
|
@@ -20545,6 +20858,11 @@ export interface reservation_stream_cursor_value_input {
|
|
|
20545
20858
|
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
20546
20859
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20547
20860
|
currency?: InputMaybe<currency_enum>;
|
|
20861
|
+
edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
|
|
20862
|
+
edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
|
|
20863
|
+
effective_check_in?: InputMaybe<Scalars["timestamptz"]>;
|
|
20864
|
+
effective_check_out?: InputMaybe<Scalars["timestamptz"]>;
|
|
20865
|
+
effective_nights?: InputMaybe<Scalars["Int"]>;
|
|
20548
20866
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20549
20867
|
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
20550
20868
|
guestName?: InputMaybe<Scalars["String"]>;
|
|
@@ -20586,6 +20904,7 @@ export interface reservation_sum_order_by {
|
|
|
20586
20904
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20587
20905
|
centService?: InputMaybe<order_by>;
|
|
20588
20906
|
centTotal?: InputMaybe<order_by>;
|
|
20907
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20589
20908
|
guests?: InputMaybe<order_by>;
|
|
20590
20909
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20591
20910
|
nights?: InputMaybe<order_by>;
|
|
@@ -20638,6 +20957,10 @@ export type reservation_update_column =
|
|
|
20638
20957
|
/** column name */
|
|
20639
20958
|
| "currency"
|
|
20640
20959
|
/** column name */
|
|
20960
|
+
| "edited_check_in"
|
|
20961
|
+
/** column name */
|
|
20962
|
+
| "edited_check_out"
|
|
20963
|
+
/** column name */
|
|
20641
20964
|
| "generalLedgerPostingAt"
|
|
20642
20965
|
/** column name */
|
|
20643
20966
|
| "general_ledger_status"
|
|
@@ -20721,6 +21044,7 @@ export interface reservation_var_pop_order_by {
|
|
|
20721
21044
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20722
21045
|
centService?: InputMaybe<order_by>;
|
|
20723
21046
|
centTotal?: InputMaybe<order_by>;
|
|
21047
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20724
21048
|
guests?: InputMaybe<order_by>;
|
|
20725
21049
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20726
21050
|
nights?: InputMaybe<order_by>;
|
|
@@ -20740,6 +21064,7 @@ export interface reservation_var_samp_order_by {
|
|
|
20740
21064
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20741
21065
|
centService?: InputMaybe<order_by>;
|
|
20742
21066
|
centTotal?: InputMaybe<order_by>;
|
|
21067
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20743
21068
|
guests?: InputMaybe<order_by>;
|
|
20744
21069
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20745
21070
|
nights?: InputMaybe<order_by>;
|
|
@@ -20759,6 +21084,7 @@ export interface reservation_variance_order_by {
|
|
|
20759
21084
|
centPaymentFee?: InputMaybe<order_by>;
|
|
20760
21085
|
centService?: InputMaybe<order_by>;
|
|
20761
21086
|
centTotal?: InputMaybe<order_by>;
|
|
21087
|
+
effective_nights?: InputMaybe<order_by>;
|
|
20762
21088
|
guests?: InputMaybe<order_by>;
|
|
20763
21089
|
manager_cent_total?: InputMaybe<order_by>;
|
|
20764
21090
|
nights?: InputMaybe<order_by>;
|
|
@@ -27012,9 +27338,25 @@ export interface transactionType_updates {
|
|
|
27012
27338
|
}
|
|
27013
27339
|
|
|
27014
27340
|
export interface transaction_aggregate_bool_exp {
|
|
27341
|
+
bool_and?: InputMaybe<transaction_aggregate_bool_exp_bool_and>;
|
|
27342
|
+
bool_or?: InputMaybe<transaction_aggregate_bool_exp_bool_or>;
|
|
27015
27343
|
count?: InputMaybe<transaction_aggregate_bool_exp_count>;
|
|
27016
27344
|
}
|
|
27017
27345
|
|
|
27346
|
+
export interface transaction_aggregate_bool_exp_bool_and {
|
|
27347
|
+
arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns;
|
|
27348
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
27349
|
+
filter?: InputMaybe<transaction_bool_exp>;
|
|
27350
|
+
predicate: Boolean_comparison_exp;
|
|
27351
|
+
}
|
|
27352
|
+
|
|
27353
|
+
export interface transaction_aggregate_bool_exp_bool_or {
|
|
27354
|
+
arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns;
|
|
27355
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
27356
|
+
filter?: InputMaybe<transaction_bool_exp>;
|
|
27357
|
+
predicate: Boolean_comparison_exp;
|
|
27358
|
+
}
|
|
27359
|
+
|
|
27018
27360
|
export interface transaction_aggregate_bool_exp_count {
|
|
27019
27361
|
arguments?: InputMaybe<Array<transaction_select_column>>;
|
|
27020
27362
|
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -27075,6 +27417,7 @@ export interface transaction_bool_exp {
|
|
|
27075
27417
|
description?: InputMaybe<String_comparison_exp>;
|
|
27076
27418
|
dueAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
27077
27419
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
27420
|
+
is_opening_balance?: InputMaybe<Boolean_comparison_exp>;
|
|
27078
27421
|
journalEntries?: InputMaybe<journalEntry_bool_exp>;
|
|
27079
27422
|
journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_bool_exp>;
|
|
27080
27423
|
lines?: InputMaybe<transactionLine_bool_exp>;
|
|
@@ -27151,6 +27494,7 @@ export interface transaction_insert_input {
|
|
|
27151
27494
|
description?: InputMaybe<Scalars["String"]>;
|
|
27152
27495
|
dueAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27153
27496
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
27497
|
+
is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
|
|
27154
27498
|
journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
|
|
27155
27499
|
lines?: InputMaybe<transactionLine_arr_rel_insert_input>;
|
|
27156
27500
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
@@ -27164,7 +27508,7 @@ export interface transaction_insert_input {
|
|
|
27164
27508
|
recurringTemplate?: InputMaybe<transaction_obj_rel_insert_input>;
|
|
27165
27509
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27166
27510
|
recurringTemplateInstances?: InputMaybe<transaction_arr_rel_insert_input>;
|
|
27167
|
-
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27511
|
+
/** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27168
27512
|
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27169
27513
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
27170
27514
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27195,7 +27539,7 @@ export interface transaction_max_order_by {
|
|
|
27195
27539
|
paidAt?: InputMaybe<order_by>;
|
|
27196
27540
|
recurringFeeId?: InputMaybe<order_by>;
|
|
27197
27541
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27198
|
-
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27542
|
+
/** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27199
27543
|
short_ref?: InputMaybe<order_by>;
|
|
27200
27544
|
sourceId?: InputMaybe<order_by>;
|
|
27201
27545
|
tenantId?: InputMaybe<order_by>;
|
|
@@ -27222,7 +27566,7 @@ export interface transaction_min_order_by {
|
|
|
27222
27566
|
paidAt?: InputMaybe<order_by>;
|
|
27223
27567
|
recurringFeeId?: InputMaybe<order_by>;
|
|
27224
27568
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27225
|
-
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27569
|
+
/** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27226
27570
|
short_ref?: InputMaybe<order_by>;
|
|
27227
27571
|
sourceId?: InputMaybe<order_by>;
|
|
27228
27572
|
tenantId?: InputMaybe<order_by>;
|
|
@@ -27261,6 +27605,7 @@ export interface transaction_order_by {
|
|
|
27261
27605
|
description?: InputMaybe<order_by>;
|
|
27262
27606
|
dueAt?: InputMaybe<order_by>;
|
|
27263
27607
|
id?: InputMaybe<order_by>;
|
|
27608
|
+
is_opening_balance?: InputMaybe<order_by>;
|
|
27264
27609
|
journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
|
|
27265
27610
|
lines_aggregate?: InputMaybe<transactionLine_aggregate_order_by>;
|
|
27266
27611
|
matchBankAccountLast4?: InputMaybe<order_by>;
|
|
@@ -27319,6 +27664,8 @@ export type transaction_select_column =
|
|
|
27319
27664
|
/** column name */
|
|
27320
27665
|
| "id"
|
|
27321
27666
|
/** column name */
|
|
27667
|
+
| "is_opening_balance"
|
|
27668
|
+
/** column name */
|
|
27322
27669
|
| "matchBankAccountLast4"
|
|
27323
27670
|
/** column name */
|
|
27324
27671
|
| "matchStatus"
|
|
@@ -27353,6 +27700,16 @@ export type transaction_select_column =
|
|
|
27353
27700
|
/** column name */
|
|
27354
27701
|
| "updatedAt";
|
|
27355
27702
|
|
|
27703
|
+
/** select "transaction_aggregate_bool_exp_bool_and_arguments_columns" columns of table "accounting.transaction" */
|
|
27704
|
+
export type transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns =
|
|
27705
|
+
/** column name */
|
|
27706
|
+
"is_opening_balance";
|
|
27707
|
+
|
|
27708
|
+
/** select "transaction_aggregate_bool_exp_bool_or_arguments_columns" columns of table "accounting.transaction" */
|
|
27709
|
+
export type transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns =
|
|
27710
|
+
/** column name */
|
|
27711
|
+
"is_opening_balance";
|
|
27712
|
+
|
|
27356
27713
|
/** input type for updating data in table "accounting.transaction" */
|
|
27357
27714
|
export interface transaction_set_input {
|
|
27358
27715
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27365,6 +27722,7 @@ export interface transaction_set_input {
|
|
|
27365
27722
|
description?: InputMaybe<Scalars["String"]>;
|
|
27366
27723
|
dueAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27367
27724
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
27725
|
+
is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
|
|
27368
27726
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
27369
27727
|
match_line_type_classification?: InputMaybe<Scalars["String"]>;
|
|
27370
27728
|
match_reservation_confirmation_code?: InputMaybe<Scalars["String"]>;
|
|
@@ -27374,7 +27732,7 @@ export interface transaction_set_input {
|
|
|
27374
27732
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27375
27733
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27376
27734
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27377
|
-
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27735
|
+
/** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27378
27736
|
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27379
27737
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27380
27738
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -27419,6 +27777,7 @@ export interface transaction_stream_cursor_value_input {
|
|
|
27419
27777
|
description?: InputMaybe<Scalars["String"]>;
|
|
27420
27778
|
dueAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27421
27779
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
27780
|
+
is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
|
|
27422
27781
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
27423
27782
|
matchStatus?: InputMaybe<Scalars["String"]>;
|
|
27424
27783
|
match_line_type_classification?: InputMaybe<Scalars["String"]>;
|
|
@@ -27429,7 +27788,7 @@ export interface transaction_stream_cursor_value_input {
|
|
|
27429
27788
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27430
27789
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27431
27790
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27432
|
-
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27791
|
+
/** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27433
27792
|
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27434
27793
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27435
27794
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -27467,6 +27826,8 @@ export type transaction_update_column =
|
|
|
27467
27826
|
/** column name */
|
|
27468
27827
|
| "id"
|
|
27469
27828
|
/** column name */
|
|
27829
|
+
| "is_opening_balance"
|
|
27830
|
+
/** column name */
|
|
27470
27831
|
| "matchBankAccountLast4"
|
|
27471
27832
|
/** column name */
|
|
27472
27833
|
| "match_line_type_classification"
|
|
@@ -33331,6 +33692,130 @@ export declare const generatedSchema: {
|
|
|
33331
33692
|
_set: { __type: "billing_payment_method_type_set_input" };
|
|
33332
33693
|
where: { __type: "billing_payment_method_type_bool_exp!" };
|
|
33333
33694
|
};
|
|
33695
|
+
bookingChannelIconCandidate: {
|
|
33696
|
+
__typename: { __type: "String!" };
|
|
33697
|
+
bookingChannel: { __type: "booking_channel!" };
|
|
33698
|
+
bookingChannelId: { __type: "uuid!" };
|
|
33699
|
+
comment: { __type: "String" };
|
|
33700
|
+
createdAt: { __type: "timestamptz!" };
|
|
33701
|
+
fileStorage: { __type: "file_storage!" };
|
|
33702
|
+
fileStorageId: { __type: "uuid!" };
|
|
33703
|
+
id: { __type: "uuid!" };
|
|
33704
|
+
source: { __type: "String" };
|
|
33705
|
+
updatedAt: { __type: "timestamptz!" };
|
|
33706
|
+
};
|
|
33707
|
+
bookingChannelIconCandidate_aggregate: {
|
|
33708
|
+
__typename: { __type: "String!" };
|
|
33709
|
+
aggregate: { __type: "bookingChannelIconCandidate_aggregate_fields" };
|
|
33710
|
+
nodes: { __type: "[bookingChannelIconCandidate!]!" };
|
|
33711
|
+
};
|
|
33712
|
+
bookingChannelIconCandidate_aggregate_fields: {
|
|
33713
|
+
__typename: { __type: "String!" };
|
|
33714
|
+
count: {
|
|
33715
|
+
__type: "Int!";
|
|
33716
|
+
__args: {
|
|
33717
|
+
columns: "[bookingChannelIconCandidate_select_column!]";
|
|
33718
|
+
distinct: "Boolean";
|
|
33719
|
+
};
|
|
33720
|
+
};
|
|
33721
|
+
max: { __type: "bookingChannelIconCandidate_max_fields" };
|
|
33722
|
+
min: { __type: "bookingChannelIconCandidate_min_fields" };
|
|
33723
|
+
};
|
|
33724
|
+
bookingChannelIconCandidate_bool_exp: {
|
|
33725
|
+
_and: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
|
|
33726
|
+
_not: { __type: "bookingChannelIconCandidate_bool_exp" };
|
|
33727
|
+
_or: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
|
|
33728
|
+
bookingChannel: { __type: "booking_channel_bool_exp" };
|
|
33729
|
+
bookingChannelId: { __type: "uuid_comparison_exp" };
|
|
33730
|
+
comment: { __type: "String_comparison_exp" };
|
|
33731
|
+
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
33732
|
+
fileStorage: { __type: "file_storage_bool_exp" };
|
|
33733
|
+
fileStorageId: { __type: "uuid_comparison_exp" };
|
|
33734
|
+
id: { __type: "uuid_comparison_exp" };
|
|
33735
|
+
source: { __type: "String_comparison_exp" };
|
|
33736
|
+
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
33737
|
+
};
|
|
33738
|
+
bookingChannelIconCandidate_insert_input: {
|
|
33739
|
+
bookingChannel: { __type: "booking_channel_obj_rel_insert_input" };
|
|
33740
|
+
bookingChannelId: { __type: "uuid" };
|
|
33741
|
+
comment: { __type: "String" };
|
|
33742
|
+
createdAt: { __type: "timestamptz" };
|
|
33743
|
+
fileStorage: { __type: "file_storage_obj_rel_insert_input" };
|
|
33744
|
+
fileStorageId: { __type: "uuid" };
|
|
33745
|
+
id: { __type: "uuid" };
|
|
33746
|
+
source: { __type: "String" };
|
|
33747
|
+
updatedAt: { __type: "timestamptz" };
|
|
33748
|
+
};
|
|
33749
|
+
bookingChannelIconCandidate_max_fields: {
|
|
33750
|
+
__typename: { __type: "String!" };
|
|
33751
|
+
bookingChannelId: { __type: "uuid" };
|
|
33752
|
+
comment: { __type: "String" };
|
|
33753
|
+
createdAt: { __type: "timestamptz" };
|
|
33754
|
+
fileStorageId: { __type: "uuid" };
|
|
33755
|
+
id: { __type: "uuid" };
|
|
33756
|
+
source: { __type: "String" };
|
|
33757
|
+
updatedAt: { __type: "timestamptz" };
|
|
33758
|
+
};
|
|
33759
|
+
bookingChannelIconCandidate_min_fields: {
|
|
33760
|
+
__typename: { __type: "String!" };
|
|
33761
|
+
bookingChannelId: { __type: "uuid" };
|
|
33762
|
+
comment: { __type: "String" };
|
|
33763
|
+
createdAt: { __type: "timestamptz" };
|
|
33764
|
+
fileStorageId: { __type: "uuid" };
|
|
33765
|
+
id: { __type: "uuid" };
|
|
33766
|
+
source: { __type: "String" };
|
|
33767
|
+
updatedAt: { __type: "timestamptz" };
|
|
33768
|
+
};
|
|
33769
|
+
bookingChannelIconCandidate_mutation_response: {
|
|
33770
|
+
__typename: { __type: "String!" };
|
|
33771
|
+
affected_rows: { __type: "Int!" };
|
|
33772
|
+
returning: { __type: "[bookingChannelIconCandidate!]!" };
|
|
33773
|
+
};
|
|
33774
|
+
bookingChannelIconCandidate_on_conflict: {
|
|
33775
|
+
constraint: { __type: "bookingChannelIconCandidate_constraint!" };
|
|
33776
|
+
update_columns: { __type: "[bookingChannelIconCandidate_update_column!]!" };
|
|
33777
|
+
where: { __type: "bookingChannelIconCandidate_bool_exp" };
|
|
33778
|
+
};
|
|
33779
|
+
bookingChannelIconCandidate_order_by: {
|
|
33780
|
+
bookingChannel: { __type: "booking_channel_order_by" };
|
|
33781
|
+
bookingChannelId: { __type: "order_by" };
|
|
33782
|
+
comment: { __type: "order_by" };
|
|
33783
|
+
createdAt: { __type: "order_by" };
|
|
33784
|
+
fileStorage: { __type: "file_storage_order_by" };
|
|
33785
|
+
fileStorageId: { __type: "order_by" };
|
|
33786
|
+
id: { __type: "order_by" };
|
|
33787
|
+
source: { __type: "order_by" };
|
|
33788
|
+
updatedAt: { __type: "order_by" };
|
|
33789
|
+
};
|
|
33790
|
+
bookingChannelIconCandidate_pk_columns_input: { id: { __type: "uuid!" } };
|
|
33791
|
+
bookingChannelIconCandidate_set_input: {
|
|
33792
|
+
bookingChannelId: { __type: "uuid" };
|
|
33793
|
+
comment: { __type: "String" };
|
|
33794
|
+
createdAt: { __type: "timestamptz" };
|
|
33795
|
+
fileStorageId: { __type: "uuid" };
|
|
33796
|
+
id: { __type: "uuid" };
|
|
33797
|
+
source: { __type: "String" };
|
|
33798
|
+
updatedAt: { __type: "timestamptz" };
|
|
33799
|
+
};
|
|
33800
|
+
bookingChannelIconCandidate_stream_cursor_input: {
|
|
33801
|
+
initial_value: {
|
|
33802
|
+
__type: "bookingChannelIconCandidate_stream_cursor_value_input!";
|
|
33803
|
+
};
|
|
33804
|
+
ordering: { __type: "cursor_ordering" };
|
|
33805
|
+
};
|
|
33806
|
+
bookingChannelIconCandidate_stream_cursor_value_input: {
|
|
33807
|
+
bookingChannelId: { __type: "uuid" };
|
|
33808
|
+
comment: { __type: "String" };
|
|
33809
|
+
createdAt: { __type: "timestamptz" };
|
|
33810
|
+
fileStorageId: { __type: "uuid" };
|
|
33811
|
+
id: { __type: "uuid" };
|
|
33812
|
+
source: { __type: "String" };
|
|
33813
|
+
updatedAt: { __type: "timestamptz" };
|
|
33814
|
+
};
|
|
33815
|
+
bookingChannelIconCandidate_updates: {
|
|
33816
|
+
_set: { __type: "bookingChannelIconCandidate_set_input" };
|
|
33817
|
+
where: { __type: "bookingChannelIconCandidate_bool_exp!" };
|
|
33818
|
+
};
|
|
33334
33819
|
booking_channel: {
|
|
33335
33820
|
__typename: { __type: "String!" };
|
|
33336
33821
|
channelRef: { __type: "String" };
|
|
@@ -33357,6 +33842,7 @@ export declare const generatedSchema: {
|
|
|
33357
33842
|
where: "reservation_bool_exp";
|
|
33358
33843
|
};
|
|
33359
33844
|
};
|
|
33845
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33360
33846
|
settings: {
|
|
33361
33847
|
__type: "[setting!]!";
|
|
33362
33848
|
__args: {
|
|
@@ -33447,6 +33933,7 @@ export declare const generatedSchema: {
|
|
|
33447
33933
|
id: { __type: "uuid_comparison_exp" };
|
|
33448
33934
|
reservations: { __type: "reservation_bool_exp" };
|
|
33449
33935
|
reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
|
|
33936
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid_comparison_exp" };
|
|
33450
33937
|
settings: { __type: "setting_bool_exp" };
|
|
33451
33938
|
settingsLeft: { __type: "setting_bool_exp" };
|
|
33452
33939
|
settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
@@ -33462,6 +33949,7 @@ export declare const generatedSchema: {
|
|
|
33462
33949
|
icon: { __type: "String" };
|
|
33463
33950
|
id: { __type: "uuid" };
|
|
33464
33951
|
reservations: { __type: "reservation_arr_rel_insert_input" };
|
|
33952
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33465
33953
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
33466
33954
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
33467
33955
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
@@ -33474,6 +33962,7 @@ export declare const generatedSchema: {
|
|
|
33474
33962
|
createdAt: { __type: "timestamptz" };
|
|
33475
33963
|
icon: { __type: "String" };
|
|
33476
33964
|
id: { __type: "uuid" };
|
|
33965
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33477
33966
|
uniqueRef: { __type: "String" };
|
|
33478
33967
|
updatedAt: { __type: "timestamptz" };
|
|
33479
33968
|
};
|
|
@@ -33483,6 +33972,7 @@ export declare const generatedSchema: {
|
|
|
33483
33972
|
createdAt: { __type: "timestamptz" };
|
|
33484
33973
|
icon: { __type: "String" };
|
|
33485
33974
|
id: { __type: "uuid" };
|
|
33975
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33486
33976
|
uniqueRef: { __type: "String" };
|
|
33487
33977
|
updatedAt: { __type: "timestamptz" };
|
|
33488
33978
|
};
|
|
@@ -33506,6 +33996,7 @@ export declare const generatedSchema: {
|
|
|
33506
33996
|
icon: { __type: "order_by" };
|
|
33507
33997
|
id: { __type: "order_by" };
|
|
33508
33998
|
reservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
33999
|
+
selectedBookingChannelIconCandidateId: { __type: "order_by" };
|
|
33509
34000
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
33510
34001
|
settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
|
|
33511
34002
|
settings_aggregate: { __type: "setting_aggregate_order_by" };
|
|
@@ -33518,6 +34009,7 @@ export declare const generatedSchema: {
|
|
|
33518
34009
|
createdAt: { __type: "timestamptz" };
|
|
33519
34010
|
icon: { __type: "String" };
|
|
33520
34011
|
id: { __type: "uuid" };
|
|
34012
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33521
34013
|
uniqueRef: { __type: "String" };
|
|
33522
34014
|
updatedAt: { __type: "timestamptz" };
|
|
33523
34015
|
};
|
|
@@ -33530,6 +34022,7 @@ export declare const generatedSchema: {
|
|
|
33530
34022
|
createdAt: { __type: "timestamptz" };
|
|
33531
34023
|
icon: { __type: "String" };
|
|
33532
34024
|
id: { __type: "uuid" };
|
|
34025
|
+
selectedBookingChannelIconCandidateId: { __type: "uuid" };
|
|
33533
34026
|
uniqueRef: { __type: "String" };
|
|
33534
34027
|
updatedAt: { __type: "timestamptz" };
|
|
33535
34028
|
};
|
|
@@ -38273,6 +38766,8 @@ export declare const generatedSchema: {
|
|
|
38273
38766
|
entitySortNum: { __type: "Int" };
|
|
38274
38767
|
entityType: { __type: "journalEntryEntityType_enum" };
|
|
38275
38768
|
id: { __type: "uuid!" };
|
|
38769
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
38770
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38276
38771
|
line: { __type: "payment_line" };
|
|
38277
38772
|
lineId: { __type: "uuid" };
|
|
38278
38773
|
lineUniqueRef: { __type: "String" };
|
|
@@ -38586,6 +39081,8 @@ export declare const generatedSchema: {
|
|
|
38586
39081
|
entitySortNum: { __type: "Int_comparison_exp" };
|
|
38587
39082
|
entityType: { __type: "journalEntryEntityType_enum_comparison_exp" };
|
|
38588
39083
|
id: { __type: "uuid_comparison_exp" };
|
|
39084
|
+
inactive_reason: { __type: "journal_entry_inactive_reason_comparison_exp" };
|
|
39085
|
+
ledger: { __type: "journal_entry_ledger_comparison_exp" };
|
|
38589
39086
|
line: { __type: "payment_line_bool_exp" };
|
|
38590
39087
|
lineId: { __type: "uuid_comparison_exp" };
|
|
38591
39088
|
lineUniqueRef: { __type: "String_comparison_exp" };
|
|
@@ -38641,6 +39138,8 @@ export declare const generatedSchema: {
|
|
|
38641
39138
|
entitySortNum: { __type: "Int" };
|
|
38642
39139
|
entityType: { __type: "journalEntryEntityType_enum" };
|
|
38643
39140
|
id: { __type: "uuid" };
|
|
39141
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
39142
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38644
39143
|
line: { __type: "payment_line_obj_rel_insert_input" };
|
|
38645
39144
|
lineId: { __type: "uuid" };
|
|
38646
39145
|
lineUniqueRef: { __type: "String" };
|
|
@@ -38686,6 +39185,8 @@ export declare const generatedSchema: {
|
|
|
38686
39185
|
description: { __type: "String" };
|
|
38687
39186
|
entitySortNum: { __type: "Int" };
|
|
38688
39187
|
id: { __type: "uuid" };
|
|
39188
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
39189
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38689
39190
|
lineId: { __type: "uuid" };
|
|
38690
39191
|
lineUniqueRef: { __type: "String" };
|
|
38691
39192
|
listingId: { __type: "uuid" };
|
|
@@ -38712,6 +39213,8 @@ export declare const generatedSchema: {
|
|
|
38712
39213
|
description: { __type: "order_by" };
|
|
38713
39214
|
entitySortNum: { __type: "order_by" };
|
|
38714
39215
|
id: { __type: "order_by" };
|
|
39216
|
+
inactive_reason: { __type: "order_by" };
|
|
39217
|
+
ledger: { __type: "order_by" };
|
|
38715
39218
|
lineId: { __type: "order_by" };
|
|
38716
39219
|
lineUniqueRef: { __type: "order_by" };
|
|
38717
39220
|
listingId: { __type: "order_by" };
|
|
@@ -38739,6 +39242,8 @@ export declare const generatedSchema: {
|
|
|
38739
39242
|
description: { __type: "String" };
|
|
38740
39243
|
entitySortNum: { __type: "Int" };
|
|
38741
39244
|
id: { __type: "uuid" };
|
|
39245
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
39246
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38742
39247
|
lineId: { __type: "uuid" };
|
|
38743
39248
|
lineUniqueRef: { __type: "String" };
|
|
38744
39249
|
listingId: { __type: "uuid" };
|
|
@@ -38765,6 +39270,8 @@ export declare const generatedSchema: {
|
|
|
38765
39270
|
description: { __type: "order_by" };
|
|
38766
39271
|
entitySortNum: { __type: "order_by" };
|
|
38767
39272
|
id: { __type: "order_by" };
|
|
39273
|
+
inactive_reason: { __type: "order_by" };
|
|
39274
|
+
ledger: { __type: "order_by" };
|
|
38768
39275
|
lineId: { __type: "order_by" };
|
|
38769
39276
|
lineUniqueRef: { __type: "order_by" };
|
|
38770
39277
|
listingId: { __type: "order_by" };
|
|
@@ -38806,6 +39313,8 @@ export declare const generatedSchema: {
|
|
|
38806
39313
|
entitySortNum: { __type: "order_by" };
|
|
38807
39314
|
entityType: { __type: "order_by" };
|
|
38808
39315
|
id: { __type: "order_by" };
|
|
39316
|
+
inactive_reason: { __type: "order_by" };
|
|
39317
|
+
ledger: { __type: "order_by" };
|
|
38809
39318
|
line: { __type: "payment_line_order_by" };
|
|
38810
39319
|
lineId: { __type: "order_by" };
|
|
38811
39320
|
lineUniqueRef: { __type: "order_by" };
|
|
@@ -38852,6 +39361,8 @@ export declare const generatedSchema: {
|
|
|
38852
39361
|
entitySortNum: { __type: "Int" };
|
|
38853
39362
|
entityType: { __type: "journalEntryEntityType_enum" };
|
|
38854
39363
|
id: { __type: "uuid" };
|
|
39364
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
39365
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38855
39366
|
lineId: { __type: "uuid" };
|
|
38856
39367
|
lineUniqueRef: { __type: "String" };
|
|
38857
39368
|
listingId: { __type: "uuid" };
|
|
@@ -38920,6 +39431,8 @@ export declare const generatedSchema: {
|
|
|
38920
39431
|
entitySortNum: { __type: "Int" };
|
|
38921
39432
|
entityType: { __type: "journalEntryEntityType_enum" };
|
|
38922
39433
|
id: { __type: "uuid" };
|
|
39434
|
+
inactive_reason: { __type: "journal_entry_inactive_reason" };
|
|
39435
|
+
ledger: { __type: "journal_entry_ledger" };
|
|
38923
39436
|
lineId: { __type: "uuid" };
|
|
38924
39437
|
lineUniqueRef: { __type: "String" };
|
|
38925
39438
|
listingId: { __type: "uuid" };
|
|
@@ -38990,6 +39503,28 @@ export declare const generatedSchema: {
|
|
|
38990
39503
|
entitySortNum: { __type: "order_by" };
|
|
38991
39504
|
txnNum: { __type: "order_by" };
|
|
38992
39505
|
};
|
|
39506
|
+
journal_entry_inactive_reason_comparison_exp: {
|
|
39507
|
+
_eq: { __type: "journal_entry_inactive_reason" };
|
|
39508
|
+
_gt: { __type: "journal_entry_inactive_reason" };
|
|
39509
|
+
_gte: { __type: "journal_entry_inactive_reason" };
|
|
39510
|
+
_in: { __type: "[journal_entry_inactive_reason!]" };
|
|
39511
|
+
_is_null: { __type: "Boolean" };
|
|
39512
|
+
_lt: { __type: "journal_entry_inactive_reason" };
|
|
39513
|
+
_lte: { __type: "journal_entry_inactive_reason" };
|
|
39514
|
+
_neq: { __type: "journal_entry_inactive_reason" };
|
|
39515
|
+
_nin: { __type: "[journal_entry_inactive_reason!]" };
|
|
39516
|
+
};
|
|
39517
|
+
journal_entry_ledger_comparison_exp: {
|
|
39518
|
+
_eq: { __type: "journal_entry_ledger" };
|
|
39519
|
+
_gt: { __type: "journal_entry_ledger" };
|
|
39520
|
+
_gte: { __type: "journal_entry_ledger" };
|
|
39521
|
+
_in: { __type: "[journal_entry_ledger!]" };
|
|
39522
|
+
_is_null: { __type: "Boolean" };
|
|
39523
|
+
_lt: { __type: "journal_entry_ledger" };
|
|
39524
|
+
_lte: { __type: "journal_entry_ledger" };
|
|
39525
|
+
_neq: { __type: "journal_entry_ledger" };
|
|
39526
|
+
_nin: { __type: "[journal_entry_ledger!]" };
|
|
39527
|
+
};
|
|
38993
39528
|
json_comparison_exp: {
|
|
38994
39529
|
_eq: { __type: "json" };
|
|
38995
39530
|
_gt: { __type: "json" };
|
|
@@ -39428,6 +39963,7 @@ export declare const generatedSchema: {
|
|
|
39428
39963
|
where: "owner_statement_bool_exp";
|
|
39429
39964
|
};
|
|
39430
39965
|
};
|
|
39966
|
+
reserve_cent_total: { __type: "bigint!" };
|
|
39431
39967
|
setListingInactive: { __type: "Boolean" };
|
|
39432
39968
|
startAt: { __type: "timestamptz" };
|
|
39433
39969
|
tenant: { __type: "tenant!" };
|
|
@@ -39785,6 +40321,7 @@ export declare const generatedSchema: {
|
|
|
39785
40321
|
};
|
|
39786
40322
|
listingOwnershipPeriod_aggregate_fields: {
|
|
39787
40323
|
__typename: { __type: "String!" };
|
|
40324
|
+
avg: { __type: "listingOwnershipPeriod_avg_fields" };
|
|
39788
40325
|
count: {
|
|
39789
40326
|
__type: "Int!";
|
|
39790
40327
|
__args: {
|
|
@@ -39794,16 +40331,38 @@ export declare const generatedSchema: {
|
|
|
39794
40331
|
};
|
|
39795
40332
|
max: { __type: "listingOwnershipPeriod_max_fields" };
|
|
39796
40333
|
min: { __type: "listingOwnershipPeriod_min_fields" };
|
|
40334
|
+
stddev: { __type: "listingOwnershipPeriod_stddev_fields" };
|
|
40335
|
+
stddev_pop: { __type: "listingOwnershipPeriod_stddev_pop_fields" };
|
|
40336
|
+
stddev_samp: { __type: "listingOwnershipPeriod_stddev_samp_fields" };
|
|
40337
|
+
sum: { __type: "listingOwnershipPeriod_sum_fields" };
|
|
40338
|
+
var_pop: { __type: "listingOwnershipPeriod_var_pop_fields" };
|
|
40339
|
+
var_samp: { __type: "listingOwnershipPeriod_var_samp_fields" };
|
|
40340
|
+
variance: { __type: "listingOwnershipPeriod_variance_fields" };
|
|
39797
40341
|
};
|
|
39798
40342
|
listingOwnershipPeriod_aggregate_order_by: {
|
|
40343
|
+
avg: { __type: "listingOwnershipPeriod_avg_order_by" };
|
|
39799
40344
|
count: { __type: "order_by" };
|
|
39800
40345
|
max: { __type: "listingOwnershipPeriod_max_order_by" };
|
|
39801
40346
|
min: { __type: "listingOwnershipPeriod_min_order_by" };
|
|
40347
|
+
stddev: { __type: "listingOwnershipPeriod_stddev_order_by" };
|
|
40348
|
+
stddev_pop: { __type: "listingOwnershipPeriod_stddev_pop_order_by" };
|
|
40349
|
+
stddev_samp: { __type: "listingOwnershipPeriod_stddev_samp_order_by" };
|
|
40350
|
+
sum: { __type: "listingOwnershipPeriod_sum_order_by" };
|
|
40351
|
+
var_pop: { __type: "listingOwnershipPeriod_var_pop_order_by" };
|
|
40352
|
+
var_samp: { __type: "listingOwnershipPeriod_var_samp_order_by" };
|
|
40353
|
+
variance: { __type: "listingOwnershipPeriod_variance_order_by" };
|
|
39802
40354
|
};
|
|
39803
40355
|
listingOwnershipPeriod_arr_rel_insert_input: {
|
|
39804
40356
|
data: { __type: "[listingOwnershipPeriod_insert_input!]!" };
|
|
39805
40357
|
on_conflict: { __type: "listingOwnershipPeriod_on_conflict" };
|
|
39806
40358
|
};
|
|
40359
|
+
listingOwnershipPeriod_avg_fields: {
|
|
40360
|
+
__typename: { __type: "String!" };
|
|
40361
|
+
reserve_cent_total: { __type: "Float" };
|
|
40362
|
+
};
|
|
40363
|
+
listingOwnershipPeriod_avg_order_by: {
|
|
40364
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40365
|
+
};
|
|
39807
40366
|
listingOwnershipPeriod_bool_exp: {
|
|
39808
40367
|
_and: { __type: "[listingOwnershipPeriod_bool_exp!]" };
|
|
39809
40368
|
_not: { __type: "listingOwnershipPeriod_bool_exp" };
|
|
@@ -39824,12 +40383,16 @@ export declare const generatedSchema: {
|
|
|
39824
40383
|
};
|
|
39825
40384
|
ownerStatements: { __type: "owner_statement_bool_exp" };
|
|
39826
40385
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_bool_exp" };
|
|
40386
|
+
reserve_cent_total: { __type: "bigint_comparison_exp" };
|
|
39827
40387
|
setListingInactive: { __type: "Boolean_comparison_exp" };
|
|
39828
40388
|
startAt: { __type: "timestamptz_comparison_exp" };
|
|
39829
40389
|
tenant: { __type: "tenant_bool_exp" };
|
|
39830
40390
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
39831
40391
|
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
39832
40392
|
};
|
|
40393
|
+
listingOwnershipPeriod_inc_input: {
|
|
40394
|
+
reserve_cent_total: { __type: "bigint" };
|
|
40395
|
+
};
|
|
39833
40396
|
listingOwnershipPeriod_insert_input: {
|
|
39834
40397
|
businessModel: { __type: "listingOwnershipPeriodBusinessModel_enum" };
|
|
39835
40398
|
createdAt: { __type: "timestamptz" };
|
|
@@ -39840,6 +40403,7 @@ export declare const generatedSchema: {
|
|
|
39840
40403
|
listingId: { __type: "uuid" };
|
|
39841
40404
|
members: { __type: "listingOwnershipPeriodMember_arr_rel_insert_input" };
|
|
39842
40405
|
ownerStatements: { __type: "owner_statement_arr_rel_insert_input" };
|
|
40406
|
+
reserve_cent_total: { __type: "bigint" };
|
|
39843
40407
|
setListingInactive: { __type: "Boolean" };
|
|
39844
40408
|
startAt: { __type: "timestamptz" };
|
|
39845
40409
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
@@ -39852,6 +40416,7 @@ export declare const generatedSchema: {
|
|
|
39852
40416
|
endAt: { __type: "timestamptz" };
|
|
39853
40417
|
id: { __type: "uuid" };
|
|
39854
40418
|
listingId: { __type: "uuid" };
|
|
40419
|
+
reserve_cent_total: { __type: "bigint" };
|
|
39855
40420
|
startAt: { __type: "timestamptz" };
|
|
39856
40421
|
tenantId: { __type: "uuid" };
|
|
39857
40422
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -39861,6 +40426,7 @@ export declare const generatedSchema: {
|
|
|
39861
40426
|
endAt: { __type: "order_by" };
|
|
39862
40427
|
id: { __type: "order_by" };
|
|
39863
40428
|
listingId: { __type: "order_by" };
|
|
40429
|
+
reserve_cent_total: { __type: "order_by" };
|
|
39864
40430
|
startAt: { __type: "order_by" };
|
|
39865
40431
|
tenantId: { __type: "order_by" };
|
|
39866
40432
|
updatedAt: { __type: "order_by" };
|
|
@@ -39871,6 +40437,7 @@ export declare const generatedSchema: {
|
|
|
39871
40437
|
endAt: { __type: "timestamptz" };
|
|
39872
40438
|
id: { __type: "uuid" };
|
|
39873
40439
|
listingId: { __type: "uuid" };
|
|
40440
|
+
reserve_cent_total: { __type: "bigint" };
|
|
39874
40441
|
startAt: { __type: "timestamptz" };
|
|
39875
40442
|
tenantId: { __type: "uuid" };
|
|
39876
40443
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -39880,6 +40447,7 @@ export declare const generatedSchema: {
|
|
|
39880
40447
|
endAt: { __type: "order_by" };
|
|
39881
40448
|
id: { __type: "order_by" };
|
|
39882
40449
|
listingId: { __type: "order_by" };
|
|
40450
|
+
reserve_cent_total: { __type: "order_by" };
|
|
39883
40451
|
startAt: { __type: "order_by" };
|
|
39884
40452
|
tenantId: { __type: "order_by" };
|
|
39885
40453
|
updatedAt: { __type: "order_by" };
|
|
@@ -39910,6 +40478,7 @@ export declare const generatedSchema: {
|
|
|
39910
40478
|
__type: "listingOwnershipPeriodMember_aggregate_order_by";
|
|
39911
40479
|
};
|
|
39912
40480
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_order_by" };
|
|
40481
|
+
reserve_cent_total: { __type: "order_by" };
|
|
39913
40482
|
setListingInactive: { __type: "order_by" };
|
|
39914
40483
|
startAt: { __type: "order_by" };
|
|
39915
40484
|
tenant: { __type: "tenant_order_by" };
|
|
@@ -39923,11 +40492,33 @@ export declare const generatedSchema: {
|
|
|
39923
40492
|
endAt: { __type: "timestamptz" };
|
|
39924
40493
|
id: { __type: "uuid" };
|
|
39925
40494
|
listingId: { __type: "uuid" };
|
|
40495
|
+
reserve_cent_total: { __type: "bigint" };
|
|
39926
40496
|
setListingInactive: { __type: "Boolean" };
|
|
39927
40497
|
startAt: { __type: "timestamptz" };
|
|
39928
40498
|
tenantId: { __type: "uuid" };
|
|
39929
40499
|
updatedAt: { __type: "timestamptz" };
|
|
39930
40500
|
};
|
|
40501
|
+
listingOwnershipPeriod_stddev_fields: {
|
|
40502
|
+
__typename: { __type: "String!" };
|
|
40503
|
+
reserve_cent_total: { __type: "Float" };
|
|
40504
|
+
};
|
|
40505
|
+
listingOwnershipPeriod_stddev_order_by: {
|
|
40506
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40507
|
+
};
|
|
40508
|
+
listingOwnershipPeriod_stddev_pop_fields: {
|
|
40509
|
+
__typename: { __type: "String!" };
|
|
40510
|
+
reserve_cent_total: { __type: "Float" };
|
|
40511
|
+
};
|
|
40512
|
+
listingOwnershipPeriod_stddev_pop_order_by: {
|
|
40513
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40514
|
+
};
|
|
40515
|
+
listingOwnershipPeriod_stddev_samp_fields: {
|
|
40516
|
+
__typename: { __type: "String!" };
|
|
40517
|
+
reserve_cent_total: { __type: "Float" };
|
|
40518
|
+
};
|
|
40519
|
+
listingOwnershipPeriod_stddev_samp_order_by: {
|
|
40520
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40521
|
+
};
|
|
39931
40522
|
listingOwnershipPeriod_stream_cursor_input: {
|
|
39932
40523
|
initial_value: {
|
|
39933
40524
|
__type: "listingOwnershipPeriod_stream_cursor_value_input!";
|
|
@@ -39940,15 +40531,45 @@ export declare const generatedSchema: {
|
|
|
39940
40531
|
endAt: { __type: "timestamptz" };
|
|
39941
40532
|
id: { __type: "uuid" };
|
|
39942
40533
|
listingId: { __type: "uuid" };
|
|
40534
|
+
reserve_cent_total: { __type: "bigint" };
|
|
39943
40535
|
setListingInactive: { __type: "Boolean" };
|
|
39944
40536
|
startAt: { __type: "timestamptz" };
|
|
39945
40537
|
tenantId: { __type: "uuid" };
|
|
39946
40538
|
updatedAt: { __type: "timestamptz" };
|
|
39947
40539
|
};
|
|
40540
|
+
listingOwnershipPeriod_sum_fields: {
|
|
40541
|
+
__typename: { __type: "String!" };
|
|
40542
|
+
reserve_cent_total: { __type: "bigint" };
|
|
40543
|
+
};
|
|
40544
|
+
listingOwnershipPeriod_sum_order_by: {
|
|
40545
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40546
|
+
};
|
|
39948
40547
|
listingOwnershipPeriod_updates: {
|
|
40548
|
+
_inc: { __type: "listingOwnershipPeriod_inc_input" };
|
|
39949
40549
|
_set: { __type: "listingOwnershipPeriod_set_input" };
|
|
39950
40550
|
where: { __type: "listingOwnershipPeriod_bool_exp!" };
|
|
39951
40551
|
};
|
|
40552
|
+
listingOwnershipPeriod_var_pop_fields: {
|
|
40553
|
+
__typename: { __type: "String!" };
|
|
40554
|
+
reserve_cent_total: { __type: "Float" };
|
|
40555
|
+
};
|
|
40556
|
+
listingOwnershipPeriod_var_pop_order_by: {
|
|
40557
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40558
|
+
};
|
|
40559
|
+
listingOwnershipPeriod_var_samp_fields: {
|
|
40560
|
+
__typename: { __type: "String!" };
|
|
40561
|
+
reserve_cent_total: { __type: "Float" };
|
|
40562
|
+
};
|
|
40563
|
+
listingOwnershipPeriod_var_samp_order_by: {
|
|
40564
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40565
|
+
};
|
|
40566
|
+
listingOwnershipPeriod_variance_fields: {
|
|
40567
|
+
__typename: { __type: "String!" };
|
|
40568
|
+
reserve_cent_total: { __type: "Float" };
|
|
40569
|
+
};
|
|
40570
|
+
listingOwnershipPeriod_variance_order_by: {
|
|
40571
|
+
reserve_cent_total: { __type: "order_by" };
|
|
40572
|
+
};
|
|
39952
40573
|
listing_aggregate: {
|
|
39953
40574
|
__typename: { __type: "String!" };
|
|
39954
40575
|
aggregate: { __type: "listing_aggregate_fields" };
|
|
@@ -42336,6 +42957,14 @@ export declare const generatedSchema: {
|
|
|
42336
42957
|
__type: "booking_channel";
|
|
42337
42958
|
__args: { id: "uuid!" };
|
|
42338
42959
|
};
|
|
42960
|
+
deleteBookingChannelIconCandidate: {
|
|
42961
|
+
__type: "bookingChannelIconCandidate";
|
|
42962
|
+
__args: { id: "uuid!" };
|
|
42963
|
+
};
|
|
42964
|
+
deleteBookingChannelIconCandidates: {
|
|
42965
|
+
__type: "bookingChannelIconCandidate_mutation_response";
|
|
42966
|
+
__args: { where: "bookingChannelIconCandidate_bool_exp!" };
|
|
42967
|
+
};
|
|
42339
42968
|
deleteBookingChannels: {
|
|
42340
42969
|
__type: "booking_channel_mutation_response";
|
|
42341
42970
|
__args: { where: "booking_channel_bool_exp!" };
|
|
@@ -43308,6 +43937,20 @@ export declare const generatedSchema: {
|
|
|
43308
43937
|
on_conflict: "booking_channel_on_conflict";
|
|
43309
43938
|
};
|
|
43310
43939
|
};
|
|
43940
|
+
insertBookingChannelIconCandidate: {
|
|
43941
|
+
__type: "bookingChannelIconCandidate";
|
|
43942
|
+
__args: {
|
|
43943
|
+
object: "bookingChannelIconCandidate_insert_input!";
|
|
43944
|
+
on_conflict: "bookingChannelIconCandidate_on_conflict";
|
|
43945
|
+
};
|
|
43946
|
+
};
|
|
43947
|
+
insertBookingChannelIconCandidates: {
|
|
43948
|
+
__type: "bookingChannelIconCandidate_mutation_response";
|
|
43949
|
+
__args: {
|
|
43950
|
+
objects: "[bookingChannelIconCandidate_insert_input!]!";
|
|
43951
|
+
on_conflict: "bookingChannelIconCandidate_on_conflict";
|
|
43952
|
+
};
|
|
43953
|
+
};
|
|
43311
43954
|
insertBookingChannels: {
|
|
43312
43955
|
__type: "booking_channel_mutation_response";
|
|
43313
43956
|
__args: {
|
|
@@ -45060,6 +45703,20 @@ export declare const generatedSchema: {
|
|
|
45060
45703
|
pk_columns: "booking_channel_pk_columns_input!";
|
|
45061
45704
|
};
|
|
45062
45705
|
};
|
|
45706
|
+
updateBookingChannelIconCandidate: {
|
|
45707
|
+
__type: "bookingChannelIconCandidate";
|
|
45708
|
+
__args: {
|
|
45709
|
+
_set: "bookingChannelIconCandidate_set_input";
|
|
45710
|
+
pk_columns: "bookingChannelIconCandidate_pk_columns_input!";
|
|
45711
|
+
};
|
|
45712
|
+
};
|
|
45713
|
+
updateBookingChannelIconCandidates: {
|
|
45714
|
+
__type: "bookingChannelIconCandidate_mutation_response";
|
|
45715
|
+
__args: {
|
|
45716
|
+
_set: "bookingChannelIconCandidate_set_input";
|
|
45717
|
+
where: "bookingChannelIconCandidate_bool_exp!";
|
|
45718
|
+
};
|
|
45719
|
+
};
|
|
45063
45720
|
updateBookingChannels: {
|
|
45064
45721
|
__type: "booking_channel_mutation_response";
|
|
45065
45722
|
__args: {
|
|
@@ -45576,6 +46233,7 @@ export declare const generatedSchema: {
|
|
|
45576
46233
|
updateListingOwnershipPeriod: {
|
|
45577
46234
|
__type: "listingOwnershipPeriod";
|
|
45578
46235
|
__args: {
|
|
46236
|
+
_inc: "listingOwnershipPeriod_inc_input";
|
|
45579
46237
|
_set: "listingOwnershipPeriod_set_input";
|
|
45580
46238
|
pk_columns: "listingOwnershipPeriod_pk_columns_input!";
|
|
45581
46239
|
};
|
|
@@ -45613,6 +46271,7 @@ export declare const generatedSchema: {
|
|
|
45613
46271
|
updateListingOwnershipPeriods: {
|
|
45614
46272
|
__type: "listingOwnershipPeriod_mutation_response";
|
|
45615
46273
|
__args: {
|
|
46274
|
+
_inc: "listingOwnershipPeriod_inc_input";
|
|
45616
46275
|
_set: "listingOwnershipPeriod_set_input";
|
|
45617
46276
|
where: "listingOwnershipPeriod_bool_exp!";
|
|
45618
46277
|
};
|
|
@@ -45690,6 +46349,10 @@ export declare const generatedSchema: {
|
|
|
45690
46349
|
__type: "[bankRecord_mutation_response]";
|
|
45691
46350
|
__args: { updates: "[bankRecord_updates!]!" };
|
|
45692
46351
|
};
|
|
46352
|
+
updateManyBookingChannelIconCandidates: {
|
|
46353
|
+
__type: "[bookingChannelIconCandidate_mutation_response]";
|
|
46354
|
+
__args: { updates: "[bookingChannelIconCandidate_updates!]!" };
|
|
46355
|
+
};
|
|
45693
46356
|
updateManyBookingChannels: {
|
|
45694
46357
|
__type: "[booking_channel_mutation_response]";
|
|
45695
46358
|
__args: { updates: "[booking_channel_updates!]!" };
|
|
@@ -50838,6 +51501,8 @@ export declare const generatedSchema: {
|
|
|
50838
51501
|
connectionId: { __type: "uuid" };
|
|
50839
51502
|
createdAt: { __type: "timestamptz!" };
|
|
50840
51503
|
description: { __type: "String" };
|
|
51504
|
+
edited_type: { __type: "String" };
|
|
51505
|
+
effective_type: { __type: "String" };
|
|
50841
51506
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
50842
51507
|
id: { __type: "uuid!" };
|
|
50843
51508
|
journalEntries: {
|
|
@@ -51040,6 +51705,8 @@ export declare const generatedSchema: {
|
|
|
51040
51705
|
connectionId: { __type: "uuid_comparison_exp" };
|
|
51041
51706
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
51042
51707
|
description: { __type: "String_comparison_exp" };
|
|
51708
|
+
edited_type: { __type: "String_comparison_exp" };
|
|
51709
|
+
effective_type: { __type: "String_comparison_exp" };
|
|
51043
51710
|
generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
|
|
51044
51711
|
id: { __type: "uuid_comparison_exp" };
|
|
51045
51712
|
journalEntries: { __type: "journalEntry_bool_exp" };
|
|
@@ -51442,6 +52109,7 @@ export declare const generatedSchema: {
|
|
|
51442
52109
|
connectionId: { __type: "uuid" };
|
|
51443
52110
|
createdAt: { __type: "timestamptz" };
|
|
51444
52111
|
description: { __type: "String" };
|
|
52112
|
+
edited_type: { __type: "String" };
|
|
51445
52113
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
51446
52114
|
id: { __type: "uuid" };
|
|
51447
52115
|
journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
|
|
@@ -51483,6 +52151,8 @@ export declare const generatedSchema: {
|
|
|
51483
52151
|
connectionId: { __type: "uuid" };
|
|
51484
52152
|
createdAt: { __type: "timestamptz" };
|
|
51485
52153
|
description: { __type: "String" };
|
|
52154
|
+
edited_type: { __type: "String" };
|
|
52155
|
+
effective_type: { __type: "String" };
|
|
51486
52156
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
51487
52157
|
id: { __type: "uuid" };
|
|
51488
52158
|
lineId: { __type: "uuid" };
|
|
@@ -51509,6 +52179,8 @@ export declare const generatedSchema: {
|
|
|
51509
52179
|
connectionId: { __type: "order_by" };
|
|
51510
52180
|
createdAt: { __type: "order_by" };
|
|
51511
52181
|
description: { __type: "order_by" };
|
|
52182
|
+
edited_type: { __type: "order_by" };
|
|
52183
|
+
effective_type: { __type: "order_by" };
|
|
51512
52184
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
51513
52185
|
id: { __type: "order_by" };
|
|
51514
52186
|
lineId: { __type: "order_by" };
|
|
@@ -51536,6 +52208,8 @@ export declare const generatedSchema: {
|
|
|
51536
52208
|
connectionId: { __type: "uuid" };
|
|
51537
52209
|
createdAt: { __type: "timestamptz" };
|
|
51538
52210
|
description: { __type: "String" };
|
|
52211
|
+
edited_type: { __type: "String" };
|
|
52212
|
+
effective_type: { __type: "String" };
|
|
51539
52213
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
51540
52214
|
id: { __type: "uuid" };
|
|
51541
52215
|
lineId: { __type: "uuid" };
|
|
@@ -51562,6 +52236,8 @@ export declare const generatedSchema: {
|
|
|
51562
52236
|
connectionId: { __type: "order_by" };
|
|
51563
52237
|
createdAt: { __type: "order_by" };
|
|
51564
52238
|
description: { __type: "order_by" };
|
|
52239
|
+
edited_type: { __type: "order_by" };
|
|
52240
|
+
effective_type: { __type: "order_by" };
|
|
51565
52241
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
51566
52242
|
id: { __type: "order_by" };
|
|
51567
52243
|
lineId: { __type: "order_by" };
|
|
@@ -51607,6 +52283,8 @@ export declare const generatedSchema: {
|
|
|
51607
52283
|
connectionId: { __type: "order_by" };
|
|
51608
52284
|
createdAt: { __type: "order_by" };
|
|
51609
52285
|
description: { __type: "order_by" };
|
|
52286
|
+
edited_type: { __type: "order_by" };
|
|
52287
|
+
effective_type: { __type: "order_by" };
|
|
51610
52288
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
51611
52289
|
id: { __type: "order_by" };
|
|
51612
52290
|
journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
|
|
@@ -51650,6 +52328,7 @@ export declare const generatedSchema: {
|
|
|
51650
52328
|
connectionId: { __type: "uuid" };
|
|
51651
52329
|
createdAt: { __type: "timestamptz" };
|
|
51652
52330
|
description: { __type: "String" };
|
|
52331
|
+
edited_type: { __type: "String" };
|
|
51653
52332
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
51654
52333
|
id: { __type: "uuid" };
|
|
51655
52334
|
lineId: { __type: "uuid" };
|
|
@@ -51715,6 +52394,8 @@ export declare const generatedSchema: {
|
|
|
51715
52394
|
connectionId: { __type: "uuid" };
|
|
51716
52395
|
createdAt: { __type: "timestamptz" };
|
|
51717
52396
|
description: { __type: "String" };
|
|
52397
|
+
edited_type: { __type: "String" };
|
|
52398
|
+
effective_type: { __type: "String" };
|
|
51718
52399
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
51719
52400
|
id: { __type: "uuid" };
|
|
51720
52401
|
lineId: { __type: "uuid" };
|
|
@@ -52665,6 +53346,30 @@ export declare const generatedSchema: {
|
|
|
52665
53346
|
where: "booking_channel_bool_exp";
|
|
52666
53347
|
};
|
|
52667
53348
|
};
|
|
53349
|
+
bookingChannelIconCandidate: {
|
|
53350
|
+
__type: "bookingChannelIconCandidate";
|
|
53351
|
+
__args: { id: "uuid!" };
|
|
53352
|
+
};
|
|
53353
|
+
bookingChannelIconCandidateAggregate: {
|
|
53354
|
+
__type: "bookingChannelIconCandidate_aggregate!";
|
|
53355
|
+
__args: {
|
|
53356
|
+
distinct_on: "[bookingChannelIconCandidate_select_column!]";
|
|
53357
|
+
limit: "Int";
|
|
53358
|
+
offset: "Int";
|
|
53359
|
+
order_by: "[bookingChannelIconCandidate_order_by!]";
|
|
53360
|
+
where: "bookingChannelIconCandidate_bool_exp";
|
|
53361
|
+
};
|
|
53362
|
+
};
|
|
53363
|
+
bookingChannelIconCandidates: {
|
|
53364
|
+
__type: "[bookingChannelIconCandidate!]!";
|
|
53365
|
+
__args: {
|
|
53366
|
+
distinct_on: "[bookingChannelIconCandidate_select_column!]";
|
|
53367
|
+
limit: "Int";
|
|
53368
|
+
offset: "Int";
|
|
53369
|
+
order_by: "[bookingChannelIconCandidate_order_by!]";
|
|
53370
|
+
where: "bookingChannelIconCandidate_bool_exp";
|
|
53371
|
+
};
|
|
53372
|
+
};
|
|
52668
53373
|
bookingChannels: {
|
|
52669
53374
|
__type: "[booking_channel!]!";
|
|
52670
53375
|
__args: {
|
|
@@ -56628,6 +57333,11 @@ export declare const generatedSchema: {
|
|
|
56628
57333
|
connectionId: { __type: "uuid" };
|
|
56629
57334
|
createdAt: { __type: "timestamptz" };
|
|
56630
57335
|
currency: { __type: "currency_enum" };
|
|
57336
|
+
edited_check_in: { __type: "timestamptz" };
|
|
57337
|
+
edited_check_out: { __type: "timestamptz" };
|
|
57338
|
+
effective_check_in: { __type: "timestamptz" };
|
|
57339
|
+
effective_check_out: { __type: "timestamptz" };
|
|
57340
|
+
effective_nights: { __type: "Int" };
|
|
56631
57341
|
files: {
|
|
56632
57342
|
__type: "[file_storage!]!";
|
|
56633
57343
|
__args: {
|
|
@@ -57500,6 +58210,7 @@ export declare const generatedSchema: {
|
|
|
57500
58210
|
centPaymentFee: { __type: "Float" };
|
|
57501
58211
|
centService: { __type: "Float" };
|
|
57502
58212
|
centTotal: { __type: "Float" };
|
|
58213
|
+
effective_nights: { __type: "Float" };
|
|
57503
58214
|
guests: { __type: "Float" };
|
|
57504
58215
|
manager_cent_total: { __type: "Float" };
|
|
57505
58216
|
nights: { __type: "Float" };
|
|
@@ -57517,6 +58228,7 @@ export declare const generatedSchema: {
|
|
|
57517
58228
|
centPaymentFee: { __type: "order_by" };
|
|
57518
58229
|
centService: { __type: "order_by" };
|
|
57519
58230
|
centTotal: { __type: "order_by" };
|
|
58231
|
+
effective_nights: { __type: "order_by" };
|
|
57520
58232
|
guests: { __type: "order_by" };
|
|
57521
58233
|
manager_cent_total: { __type: "order_by" };
|
|
57522
58234
|
nights: { __type: "order_by" };
|
|
@@ -57557,6 +58269,11 @@ export declare const generatedSchema: {
|
|
|
57557
58269
|
connectionId: { __type: "uuid_comparison_exp" };
|
|
57558
58270
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
57559
58271
|
currency: { __type: "currency_enum_comparison_exp" };
|
|
58272
|
+
edited_check_in: { __type: "timestamptz_comparison_exp" };
|
|
58273
|
+
edited_check_out: { __type: "timestamptz_comparison_exp" };
|
|
58274
|
+
effective_check_in: { __type: "timestamptz_comparison_exp" };
|
|
58275
|
+
effective_check_out: { __type: "timestamptz_comparison_exp" };
|
|
58276
|
+
effective_nights: { __type: "Int_comparison_exp" };
|
|
57560
58277
|
files: { __type: "file_storage_bool_exp" };
|
|
57561
58278
|
files_aggregate: { __type: "file_storage_aggregate_bool_exp" };
|
|
57562
58279
|
generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
|
|
@@ -57675,6 +58392,8 @@ export declare const generatedSchema: {
|
|
|
57675
58392
|
connectionId: { __type: "uuid" };
|
|
57676
58393
|
createdAt: { __type: "timestamptz" };
|
|
57677
58394
|
currency: { __type: "currency_enum" };
|
|
58395
|
+
edited_check_in: { __type: "timestamptz" };
|
|
58396
|
+
edited_check_out: { __type: "timestamptz" };
|
|
57678
58397
|
files: { __type: "file_storage_arr_rel_insert_input" };
|
|
57679
58398
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
57680
58399
|
general_ledger_status: { __type: "activeStatus_enum" };
|
|
@@ -57743,6 +58462,11 @@ export declare const generatedSchema: {
|
|
|
57743
58462
|
confirmationCode: { __type: "String" };
|
|
57744
58463
|
connectionId: { __type: "uuid" };
|
|
57745
58464
|
createdAt: { __type: "timestamptz" };
|
|
58465
|
+
edited_check_in: { __type: "timestamptz" };
|
|
58466
|
+
edited_check_out: { __type: "timestamptz" };
|
|
58467
|
+
effective_check_in: { __type: "timestamptz" };
|
|
58468
|
+
effective_check_out: { __type: "timestamptz" };
|
|
58469
|
+
effective_nights: { __type: "Int" };
|
|
57746
58470
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
57747
58471
|
guestName: { __type: "String" };
|
|
57748
58472
|
guests: { __type: "Int" };
|
|
@@ -57786,6 +58510,11 @@ export declare const generatedSchema: {
|
|
|
57786
58510
|
confirmationCode: { __type: "order_by" };
|
|
57787
58511
|
connectionId: { __type: "order_by" };
|
|
57788
58512
|
createdAt: { __type: "order_by" };
|
|
58513
|
+
edited_check_in: { __type: "order_by" };
|
|
58514
|
+
edited_check_out: { __type: "order_by" };
|
|
58515
|
+
effective_check_in: { __type: "order_by" };
|
|
58516
|
+
effective_check_out: { __type: "order_by" };
|
|
58517
|
+
effective_nights: { __type: "order_by" };
|
|
57789
58518
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
57790
58519
|
guestName: { __type: "order_by" };
|
|
57791
58520
|
guests: { __type: "order_by" };
|
|
@@ -57830,6 +58559,11 @@ export declare const generatedSchema: {
|
|
|
57830
58559
|
confirmationCode: { __type: "String" };
|
|
57831
58560
|
connectionId: { __type: "uuid" };
|
|
57832
58561
|
createdAt: { __type: "timestamptz" };
|
|
58562
|
+
edited_check_in: { __type: "timestamptz" };
|
|
58563
|
+
edited_check_out: { __type: "timestamptz" };
|
|
58564
|
+
effective_check_in: { __type: "timestamptz" };
|
|
58565
|
+
effective_check_out: { __type: "timestamptz" };
|
|
58566
|
+
effective_nights: { __type: "Int" };
|
|
57833
58567
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
57834
58568
|
guestName: { __type: "String" };
|
|
57835
58569
|
guests: { __type: "Int" };
|
|
@@ -57873,6 +58607,11 @@ export declare const generatedSchema: {
|
|
|
57873
58607
|
confirmationCode: { __type: "order_by" };
|
|
57874
58608
|
connectionId: { __type: "order_by" };
|
|
57875
58609
|
createdAt: { __type: "order_by" };
|
|
58610
|
+
edited_check_in: { __type: "order_by" };
|
|
58611
|
+
edited_check_out: { __type: "order_by" };
|
|
58612
|
+
effective_check_in: { __type: "order_by" };
|
|
58613
|
+
effective_check_out: { __type: "order_by" };
|
|
58614
|
+
effective_nights: { __type: "order_by" };
|
|
57876
58615
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
57877
58616
|
guestName: { __type: "order_by" };
|
|
57878
58617
|
guests: { __type: "order_by" };
|
|
@@ -57937,6 +58676,11 @@ export declare const generatedSchema: {
|
|
|
57937
58676
|
connectionId: { __type: "order_by" };
|
|
57938
58677
|
createdAt: { __type: "order_by" };
|
|
57939
58678
|
currency: { __type: "order_by" };
|
|
58679
|
+
edited_check_in: { __type: "order_by" };
|
|
58680
|
+
edited_check_out: { __type: "order_by" };
|
|
58681
|
+
effective_check_in: { __type: "order_by" };
|
|
58682
|
+
effective_check_out: { __type: "order_by" };
|
|
58683
|
+
effective_nights: { __type: "order_by" };
|
|
57940
58684
|
files_aggregate: { __type: "file_storage_aggregate_order_by" };
|
|
57941
58685
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
57942
58686
|
general_ledger_status: { __type: "order_by" };
|
|
@@ -58012,6 +58756,8 @@ export declare const generatedSchema: {
|
|
|
58012
58756
|
connectionId: { __type: "uuid" };
|
|
58013
58757
|
createdAt: { __type: "timestamptz" };
|
|
58014
58758
|
currency: { __type: "currency_enum" };
|
|
58759
|
+
edited_check_in: { __type: "timestamptz" };
|
|
58760
|
+
edited_check_out: { __type: "timestamptz" };
|
|
58015
58761
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58016
58762
|
general_ledger_status: { __type: "activeStatus_enum" };
|
|
58017
58763
|
guestName: { __type: "String" };
|
|
@@ -58116,6 +58862,7 @@ export declare const generatedSchema: {
|
|
|
58116
58862
|
centPaymentFee: { __type: "Float" };
|
|
58117
58863
|
centService: { __type: "Float" };
|
|
58118
58864
|
centTotal: { __type: "Float" };
|
|
58865
|
+
effective_nights: { __type: "Float" };
|
|
58119
58866
|
guests: { __type: "Float" };
|
|
58120
58867
|
manager_cent_total: { __type: "Float" };
|
|
58121
58868
|
nights: { __type: "Float" };
|
|
@@ -58133,6 +58880,7 @@ export declare const generatedSchema: {
|
|
|
58133
58880
|
centPaymentFee: { __type: "order_by" };
|
|
58134
58881
|
centService: { __type: "order_by" };
|
|
58135
58882
|
centTotal: { __type: "order_by" };
|
|
58883
|
+
effective_nights: { __type: "order_by" };
|
|
58136
58884
|
guests: { __type: "order_by" };
|
|
58137
58885
|
manager_cent_total: { __type: "order_by" };
|
|
58138
58886
|
nights: { __type: "order_by" };
|
|
@@ -58151,6 +58899,7 @@ export declare const generatedSchema: {
|
|
|
58151
58899
|
centPaymentFee: { __type: "Float" };
|
|
58152
58900
|
centService: { __type: "Float" };
|
|
58153
58901
|
centTotal: { __type: "Float" };
|
|
58902
|
+
effective_nights: { __type: "Float" };
|
|
58154
58903
|
guests: { __type: "Float" };
|
|
58155
58904
|
manager_cent_total: { __type: "Float" };
|
|
58156
58905
|
nights: { __type: "Float" };
|
|
@@ -58168,6 +58917,7 @@ export declare const generatedSchema: {
|
|
|
58168
58917
|
centPaymentFee: { __type: "order_by" };
|
|
58169
58918
|
centService: { __type: "order_by" };
|
|
58170
58919
|
centTotal: { __type: "order_by" };
|
|
58920
|
+
effective_nights: { __type: "order_by" };
|
|
58171
58921
|
guests: { __type: "order_by" };
|
|
58172
58922
|
manager_cent_total: { __type: "order_by" };
|
|
58173
58923
|
nights: { __type: "order_by" };
|
|
@@ -58186,6 +58936,7 @@ export declare const generatedSchema: {
|
|
|
58186
58936
|
centPaymentFee: { __type: "Float" };
|
|
58187
58937
|
centService: { __type: "Float" };
|
|
58188
58938
|
centTotal: { __type: "Float" };
|
|
58939
|
+
effective_nights: { __type: "Float" };
|
|
58189
58940
|
guests: { __type: "Float" };
|
|
58190
58941
|
manager_cent_total: { __type: "Float" };
|
|
58191
58942
|
nights: { __type: "Float" };
|
|
@@ -58203,6 +58954,7 @@ export declare const generatedSchema: {
|
|
|
58203
58954
|
centPaymentFee: { __type: "order_by" };
|
|
58204
58955
|
centService: { __type: "order_by" };
|
|
58205
58956
|
centTotal: { __type: "order_by" };
|
|
58957
|
+
effective_nights: { __type: "order_by" };
|
|
58206
58958
|
guests: { __type: "order_by" };
|
|
58207
58959
|
manager_cent_total: { __type: "order_by" };
|
|
58208
58960
|
nights: { __type: "order_by" };
|
|
@@ -58236,6 +58988,11 @@ export declare const generatedSchema: {
|
|
|
58236
58988
|
connectionId: { __type: "uuid" };
|
|
58237
58989
|
createdAt: { __type: "timestamptz" };
|
|
58238
58990
|
currency: { __type: "currency_enum" };
|
|
58991
|
+
edited_check_in: { __type: "timestamptz" };
|
|
58992
|
+
edited_check_out: { __type: "timestamptz" };
|
|
58993
|
+
effective_check_in: { __type: "timestamptz" };
|
|
58994
|
+
effective_check_out: { __type: "timestamptz" };
|
|
58995
|
+
effective_nights: { __type: "Int" };
|
|
58239
58996
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58240
58997
|
general_ledger_status: { __type: "activeStatus_enum" };
|
|
58241
58998
|
guestName: { __type: "String" };
|
|
@@ -58275,6 +59032,7 @@ export declare const generatedSchema: {
|
|
|
58275
59032
|
centPaymentFee: { __type: "Int" };
|
|
58276
59033
|
centService: { __type: "Int" };
|
|
58277
59034
|
centTotal: { __type: "bigint" };
|
|
59035
|
+
effective_nights: { __type: "Int" };
|
|
58278
59036
|
guests: { __type: "Int" };
|
|
58279
59037
|
manager_cent_total: { __type: "bigint" };
|
|
58280
59038
|
nights: { __type: "Int" };
|
|
@@ -58292,6 +59050,7 @@ export declare const generatedSchema: {
|
|
|
58292
59050
|
centPaymentFee: { __type: "order_by" };
|
|
58293
59051
|
centService: { __type: "order_by" };
|
|
58294
59052
|
centTotal: { __type: "order_by" };
|
|
59053
|
+
effective_nights: { __type: "order_by" };
|
|
58295
59054
|
guests: { __type: "order_by" };
|
|
58296
59055
|
manager_cent_total: { __type: "order_by" };
|
|
58297
59056
|
nights: { __type: "order_by" };
|
|
@@ -58320,6 +59079,7 @@ export declare const generatedSchema: {
|
|
|
58320
59079
|
centPaymentFee: { __type: "Float" };
|
|
58321
59080
|
centService: { __type: "Float" };
|
|
58322
59081
|
centTotal: { __type: "Float" };
|
|
59082
|
+
effective_nights: { __type: "Float" };
|
|
58323
59083
|
guests: { __type: "Float" };
|
|
58324
59084
|
manager_cent_total: { __type: "Float" };
|
|
58325
59085
|
nights: { __type: "Float" };
|
|
@@ -58337,6 +59097,7 @@ export declare const generatedSchema: {
|
|
|
58337
59097
|
centPaymentFee: { __type: "order_by" };
|
|
58338
59098
|
centService: { __type: "order_by" };
|
|
58339
59099
|
centTotal: { __type: "order_by" };
|
|
59100
|
+
effective_nights: { __type: "order_by" };
|
|
58340
59101
|
guests: { __type: "order_by" };
|
|
58341
59102
|
manager_cent_total: { __type: "order_by" };
|
|
58342
59103
|
nights: { __type: "order_by" };
|
|
@@ -58355,6 +59116,7 @@ export declare const generatedSchema: {
|
|
|
58355
59116
|
centPaymentFee: { __type: "Float" };
|
|
58356
59117
|
centService: { __type: "Float" };
|
|
58357
59118
|
centTotal: { __type: "Float" };
|
|
59119
|
+
effective_nights: { __type: "Float" };
|
|
58358
59120
|
guests: { __type: "Float" };
|
|
58359
59121
|
manager_cent_total: { __type: "Float" };
|
|
58360
59122
|
nights: { __type: "Float" };
|
|
@@ -58372,6 +59134,7 @@ export declare const generatedSchema: {
|
|
|
58372
59134
|
centPaymentFee: { __type: "order_by" };
|
|
58373
59135
|
centService: { __type: "order_by" };
|
|
58374
59136
|
centTotal: { __type: "order_by" };
|
|
59137
|
+
effective_nights: { __type: "order_by" };
|
|
58375
59138
|
guests: { __type: "order_by" };
|
|
58376
59139
|
manager_cent_total: { __type: "order_by" };
|
|
58377
59140
|
nights: { __type: "order_by" };
|
|
@@ -58390,6 +59153,7 @@ export declare const generatedSchema: {
|
|
|
58390
59153
|
centPaymentFee: { __type: "Float" };
|
|
58391
59154
|
centService: { __type: "Float" };
|
|
58392
59155
|
centTotal: { __type: "Float" };
|
|
59156
|
+
effective_nights: { __type: "Float" };
|
|
58393
59157
|
guests: { __type: "Float" };
|
|
58394
59158
|
manager_cent_total: { __type: "Float" };
|
|
58395
59159
|
nights: { __type: "Float" };
|
|
@@ -58407,6 +59171,7 @@ export declare const generatedSchema: {
|
|
|
58407
59171
|
centPaymentFee: { __type: "order_by" };
|
|
58408
59172
|
centService: { __type: "order_by" };
|
|
58409
59173
|
centTotal: { __type: "order_by" };
|
|
59174
|
+
effective_nights: { __type: "order_by" };
|
|
58410
59175
|
guests: { __type: "order_by" };
|
|
58411
59176
|
manager_cent_total: { __type: "order_by" };
|
|
58412
59177
|
nights: { __type: "order_by" };
|
|
@@ -61301,6 +62066,38 @@ export declare const generatedSchema: {
|
|
|
61301
62066
|
where: "booking_channel_bool_exp";
|
|
61302
62067
|
};
|
|
61303
62068
|
};
|
|
62069
|
+
bookingChannelIconCandidate: {
|
|
62070
|
+
__type: "bookingChannelIconCandidate";
|
|
62071
|
+
__args: { id: "uuid!" };
|
|
62072
|
+
};
|
|
62073
|
+
bookingChannelIconCandidateAggregate: {
|
|
62074
|
+
__type: "bookingChannelIconCandidate_aggregate!";
|
|
62075
|
+
__args: {
|
|
62076
|
+
distinct_on: "[bookingChannelIconCandidate_select_column!]";
|
|
62077
|
+
limit: "Int";
|
|
62078
|
+
offset: "Int";
|
|
62079
|
+
order_by: "[bookingChannelIconCandidate_order_by!]";
|
|
62080
|
+
where: "bookingChannelIconCandidate_bool_exp";
|
|
62081
|
+
};
|
|
62082
|
+
};
|
|
62083
|
+
bookingChannelIconCandidateStream: {
|
|
62084
|
+
__type: "[bookingChannelIconCandidate!]!";
|
|
62085
|
+
__args: {
|
|
62086
|
+
batch_size: "Int!";
|
|
62087
|
+
cursor: "[bookingChannelIconCandidate_stream_cursor_input]!";
|
|
62088
|
+
where: "bookingChannelIconCandidate_bool_exp";
|
|
62089
|
+
};
|
|
62090
|
+
};
|
|
62091
|
+
bookingChannelIconCandidates: {
|
|
62092
|
+
__type: "[bookingChannelIconCandidate!]!";
|
|
62093
|
+
__args: {
|
|
62094
|
+
distinct_on: "[bookingChannelIconCandidate_select_column!]";
|
|
62095
|
+
limit: "Int";
|
|
62096
|
+
offset: "Int";
|
|
62097
|
+
order_by: "[bookingChannelIconCandidate_order_by!]";
|
|
62098
|
+
where: "bookingChannelIconCandidate_bool_exp";
|
|
62099
|
+
};
|
|
62100
|
+
};
|
|
61304
62101
|
bookingChannelStream: {
|
|
61305
62102
|
__type: "[booking_channel!]!";
|
|
61306
62103
|
__args: {
|
|
@@ -68599,6 +69396,7 @@ export declare const generatedSchema: {
|
|
|
68599
69396
|
description: { __type: "String!" };
|
|
68600
69397
|
dueAt: { __type: "timestamptz" };
|
|
68601
69398
|
id: { __type: "uuid!" };
|
|
69399
|
+
is_opening_balance: { __type: "Boolean!" };
|
|
68602
69400
|
journalEntries: {
|
|
68603
69401
|
__type: "[journalEntry!]!";
|
|
68604
69402
|
__args: {
|
|
@@ -69218,8 +70016,26 @@ export declare const generatedSchema: {
|
|
|
69218
70016
|
nodes: { __type: "[transaction!]!" };
|
|
69219
70017
|
};
|
|
69220
70018
|
transaction_aggregate_bool_exp: {
|
|
70019
|
+
bool_and: { __type: "transaction_aggregate_bool_exp_bool_and" };
|
|
70020
|
+
bool_or: { __type: "transaction_aggregate_bool_exp_bool_or" };
|
|
69221
70021
|
count: { __type: "transaction_aggregate_bool_exp_count" };
|
|
69222
70022
|
};
|
|
70023
|
+
transaction_aggregate_bool_exp_bool_and: {
|
|
70024
|
+
arguments: {
|
|
70025
|
+
__type: "transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns!";
|
|
70026
|
+
};
|
|
70027
|
+
distinct: { __type: "Boolean" };
|
|
70028
|
+
filter: { __type: "transaction_bool_exp" };
|
|
70029
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
70030
|
+
};
|
|
70031
|
+
transaction_aggregate_bool_exp_bool_or: {
|
|
70032
|
+
arguments: {
|
|
70033
|
+
__type: "transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns!";
|
|
70034
|
+
};
|
|
70035
|
+
distinct: { __type: "Boolean" };
|
|
70036
|
+
filter: { __type: "transaction_bool_exp" };
|
|
70037
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
70038
|
+
};
|
|
69223
70039
|
transaction_aggregate_bool_exp_count: {
|
|
69224
70040
|
arguments: { __type: "[transaction_select_column!]" };
|
|
69225
70041
|
distinct: { __type: "Boolean" };
|
|
@@ -69288,6 +70104,7 @@ export declare const generatedSchema: {
|
|
|
69288
70104
|
description: { __type: "String_comparison_exp" };
|
|
69289
70105
|
dueAt: { __type: "timestamptz_comparison_exp" };
|
|
69290
70106
|
id: { __type: "uuid_comparison_exp" };
|
|
70107
|
+
is_opening_balance: { __type: "Boolean_comparison_exp" };
|
|
69291
70108
|
journalEntries: { __type: "journalEntry_bool_exp" };
|
|
69292
70109
|
journalEntries_aggregate: { __type: "journalEntry_aggregate_bool_exp" };
|
|
69293
70110
|
lines: { __type: "transactionLine_bool_exp" };
|
|
@@ -69341,6 +70158,7 @@ export declare const generatedSchema: {
|
|
|
69341
70158
|
description: { __type: "String" };
|
|
69342
70159
|
dueAt: { __type: "timestamptz" };
|
|
69343
70160
|
id: { __type: "uuid" };
|
|
70161
|
+
is_opening_balance: { __type: "Boolean" };
|
|
69344
70162
|
journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
|
|
69345
70163
|
lines: { __type: "transactionLine_arr_rel_insert_input" };
|
|
69346
70164
|
matchBankAccountLast4: { __type: "String" };
|
|
@@ -69494,6 +70312,7 @@ export declare const generatedSchema: {
|
|
|
69494
70312
|
description: { __type: "order_by" };
|
|
69495
70313
|
dueAt: { __type: "order_by" };
|
|
69496
70314
|
id: { __type: "order_by" };
|
|
70315
|
+
is_opening_balance: { __type: "order_by" };
|
|
69497
70316
|
journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
|
|
69498
70317
|
lines_aggregate: { __type: "transactionLine_aggregate_order_by" };
|
|
69499
70318
|
matchBankAccountLast4: { __type: "order_by" };
|
|
@@ -69533,6 +70352,7 @@ export declare const generatedSchema: {
|
|
|
69533
70352
|
description: { __type: "String" };
|
|
69534
70353
|
dueAt: { __type: "timestamptz" };
|
|
69535
70354
|
id: { __type: "uuid" };
|
|
70355
|
+
is_opening_balance: { __type: "Boolean" };
|
|
69536
70356
|
matchBankAccountLast4: { __type: "String" };
|
|
69537
70357
|
match_line_type_classification: { __type: "String" };
|
|
69538
70358
|
match_reservation_confirmation_code: { __type: "String" };
|
|
@@ -69580,6 +70400,7 @@ export declare const generatedSchema: {
|
|
|
69580
70400
|
description: { __type: "String" };
|
|
69581
70401
|
dueAt: { __type: "timestamptz" };
|
|
69582
70402
|
id: { __type: "uuid" };
|
|
70403
|
+
is_opening_balance: { __type: "Boolean" };
|
|
69583
70404
|
matchBankAccountLast4: { __type: "String" };
|
|
69584
70405
|
matchStatus: { __type: "String" };
|
|
69585
70406
|
match_line_type_classification: { __type: "String" };
|
|
@@ -75167,6 +75988,93 @@ export interface billing_payment_method_type_mutation_response {
|
|
|
75167
75988
|
returning: Array<billing_payment_method_type>;
|
|
75168
75989
|
}
|
|
75169
75990
|
|
|
75991
|
+
/**
|
|
75992
|
+
* columns and relationships of "booking_channel_icon_candidate"
|
|
75993
|
+
*/
|
|
75994
|
+
export interface bookingChannelIconCandidate {
|
|
75995
|
+
__typename?: "bookingChannelIconCandidate";
|
|
75996
|
+
/**
|
|
75997
|
+
* An object relationship
|
|
75998
|
+
*/
|
|
75999
|
+
bookingChannel: booking_channel;
|
|
76000
|
+
bookingChannelId: ScalarsEnums["uuid"];
|
|
76001
|
+
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76002
|
+
createdAt: ScalarsEnums["timestamptz"];
|
|
76003
|
+
/**
|
|
76004
|
+
* An object relationship
|
|
76005
|
+
*/
|
|
76006
|
+
fileStorage: file_storage;
|
|
76007
|
+
fileStorageId: ScalarsEnums["uuid"];
|
|
76008
|
+
id: ScalarsEnums["uuid"];
|
|
76009
|
+
source?: Maybe<ScalarsEnums["String"]>;
|
|
76010
|
+
updatedAt: ScalarsEnums["timestamptz"];
|
|
76011
|
+
}
|
|
76012
|
+
|
|
76013
|
+
/**
|
|
76014
|
+
* aggregated selection of "booking_channel_icon_candidate"
|
|
76015
|
+
*/
|
|
76016
|
+
export interface bookingChannelIconCandidate_aggregate {
|
|
76017
|
+
__typename?: "bookingChannelIconCandidate_aggregate";
|
|
76018
|
+
aggregate?: Maybe<bookingChannelIconCandidate_aggregate_fields>;
|
|
76019
|
+
nodes: Array<bookingChannelIconCandidate>;
|
|
76020
|
+
}
|
|
76021
|
+
|
|
76022
|
+
/**
|
|
76023
|
+
* aggregate fields of "booking_channel_icon_candidate"
|
|
76024
|
+
*/
|
|
76025
|
+
export interface bookingChannelIconCandidate_aggregate_fields {
|
|
76026
|
+
__typename?: "bookingChannelIconCandidate_aggregate_fields";
|
|
76027
|
+
count: (args?: {
|
|
76028
|
+
columns?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
|
|
76029
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
76030
|
+
}) => ScalarsEnums["Int"];
|
|
76031
|
+
max?: Maybe<bookingChannelIconCandidate_max_fields>;
|
|
76032
|
+
min?: Maybe<bookingChannelIconCandidate_min_fields>;
|
|
76033
|
+
}
|
|
76034
|
+
|
|
76035
|
+
/**
|
|
76036
|
+
* aggregate max on columns
|
|
76037
|
+
*/
|
|
76038
|
+
export interface bookingChannelIconCandidate_max_fields {
|
|
76039
|
+
__typename?: "bookingChannelIconCandidate_max_fields";
|
|
76040
|
+
bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76041
|
+
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76042
|
+
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76043
|
+
fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76044
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76045
|
+
source?: Maybe<ScalarsEnums["String"]>;
|
|
76046
|
+
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76047
|
+
}
|
|
76048
|
+
|
|
76049
|
+
/**
|
|
76050
|
+
* aggregate min on columns
|
|
76051
|
+
*/
|
|
76052
|
+
export interface bookingChannelIconCandidate_min_fields {
|
|
76053
|
+
__typename?: "bookingChannelIconCandidate_min_fields";
|
|
76054
|
+
bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76055
|
+
comment?: Maybe<ScalarsEnums["String"]>;
|
|
76056
|
+
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76057
|
+
fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76058
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76059
|
+
source?: Maybe<ScalarsEnums["String"]>;
|
|
76060
|
+
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76061
|
+
}
|
|
76062
|
+
|
|
76063
|
+
/**
|
|
76064
|
+
* response of any mutation on the table "booking_channel_icon_candidate"
|
|
76065
|
+
*/
|
|
76066
|
+
export interface bookingChannelIconCandidate_mutation_response {
|
|
76067
|
+
__typename?: "bookingChannelIconCandidate_mutation_response";
|
|
76068
|
+
/**
|
|
76069
|
+
* number of rows affected by the mutation
|
|
76070
|
+
*/
|
|
76071
|
+
affected_rows: ScalarsEnums["Int"];
|
|
76072
|
+
/**
|
|
76073
|
+
* data from the rows affected by the mutation
|
|
76074
|
+
*/
|
|
76075
|
+
returning: Array<bookingChannelIconCandidate>;
|
|
76076
|
+
}
|
|
76077
|
+
|
|
75170
76078
|
/**
|
|
75171
76079
|
* columns and relationships of "booking_channel"
|
|
75172
76080
|
*/
|
|
@@ -75226,6 +76134,7 @@ export interface booking_channel {
|
|
|
75226
76134
|
*/
|
|
75227
76135
|
where?: Maybe<reservation_bool_exp>;
|
|
75228
76136
|
}) => reservation_aggregate;
|
|
76137
|
+
selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
75229
76138
|
/**
|
|
75230
76139
|
* An array relationship
|
|
75231
76140
|
*/
|
|
@@ -75411,6 +76320,7 @@ export interface booking_channel_max_fields {
|
|
|
75411
76320
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
75412
76321
|
icon?: Maybe<ScalarsEnums["String"]>;
|
|
75413
76322
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76323
|
+
selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
75414
76324
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
75415
76325
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
75416
76326
|
}
|
|
@@ -75424,6 +76334,7 @@ export interface booking_channel_min_fields {
|
|
|
75424
76334
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
75425
76335
|
icon?: Maybe<ScalarsEnums["String"]>;
|
|
75426
76336
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76337
|
+
selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
75427
76338
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
75428
76339
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
75429
76340
|
}
|
|
@@ -79266,6 +80177,8 @@ export interface journalEntry {
|
|
|
79266
80177
|
entitySortNum?: Maybe<ScalarsEnums["Int"]>;
|
|
79267
80178
|
entityType?: Maybe<ScalarsEnums["journalEntryEntityType_enum"]>;
|
|
79268
80179
|
id: ScalarsEnums["uuid"];
|
|
80180
|
+
inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
|
|
80181
|
+
ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
|
|
79269
80182
|
/**
|
|
79270
80183
|
* An object relationship
|
|
79271
80184
|
*/
|
|
@@ -79568,6 +80481,8 @@ export interface journalEntry_max_fields {
|
|
|
79568
80481
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
79569
80482
|
entitySortNum?: Maybe<ScalarsEnums["Int"]>;
|
|
79570
80483
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
80484
|
+
inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
|
|
80485
|
+
ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
|
|
79571
80486
|
lineId?: Maybe<ScalarsEnums["uuid"]>;
|
|
79572
80487
|
lineUniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
79573
80488
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -79599,6 +80514,8 @@ export interface journalEntry_min_fields {
|
|
|
79599
80514
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
79600
80515
|
entitySortNum?: Maybe<ScalarsEnums["Int"]>;
|
|
79601
80516
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
80517
|
+
inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
|
|
80518
|
+
ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
|
|
79602
80519
|
lineId?: Maybe<ScalarsEnums["uuid"]>;
|
|
79603
80520
|
lineUniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
79604
80521
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -80702,6 +81619,7 @@ export interface listingOwnershipPeriod {
|
|
|
80702
81619
|
*/
|
|
80703
81620
|
where?: Maybe<owner_statement_bool_exp>;
|
|
80704
81621
|
}) => owner_statement_aggregate;
|
|
81622
|
+
reserve_cent_total: ScalarsEnums["bigint"];
|
|
80705
81623
|
setListingInactive?: Maybe<ScalarsEnums["Boolean"]>;
|
|
80706
81624
|
startAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
80707
81625
|
/**
|
|
@@ -80950,12 +81868,28 @@ export interface listingOwnershipPeriod_aggregate {
|
|
|
80950
81868
|
*/
|
|
80951
81869
|
export interface listingOwnershipPeriod_aggregate_fields {
|
|
80952
81870
|
__typename?: "listingOwnershipPeriod_aggregate_fields";
|
|
81871
|
+
avg?: Maybe<listingOwnershipPeriod_avg_fields>;
|
|
80953
81872
|
count: (args?: {
|
|
80954
81873
|
columns?: Maybe<Array<listingOwnershipPeriod_select_column>>;
|
|
80955
81874
|
distinct?: Maybe<Scalars["Boolean"]>;
|
|
80956
81875
|
}) => ScalarsEnums["Int"];
|
|
80957
81876
|
max?: Maybe<listingOwnershipPeriod_max_fields>;
|
|
80958
81877
|
min?: Maybe<listingOwnershipPeriod_min_fields>;
|
|
81878
|
+
stddev?: Maybe<listingOwnershipPeriod_stddev_fields>;
|
|
81879
|
+
stddev_pop?: Maybe<listingOwnershipPeriod_stddev_pop_fields>;
|
|
81880
|
+
stddev_samp?: Maybe<listingOwnershipPeriod_stddev_samp_fields>;
|
|
81881
|
+
sum?: Maybe<listingOwnershipPeriod_sum_fields>;
|
|
81882
|
+
var_pop?: Maybe<listingOwnershipPeriod_var_pop_fields>;
|
|
81883
|
+
var_samp?: Maybe<listingOwnershipPeriod_var_samp_fields>;
|
|
81884
|
+
variance?: Maybe<listingOwnershipPeriod_variance_fields>;
|
|
81885
|
+
}
|
|
81886
|
+
|
|
81887
|
+
/**
|
|
81888
|
+
* aggregate avg on columns
|
|
81889
|
+
*/
|
|
81890
|
+
export interface listingOwnershipPeriod_avg_fields {
|
|
81891
|
+
__typename?: "listingOwnershipPeriod_avg_fields";
|
|
81892
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
80959
81893
|
}
|
|
80960
81894
|
|
|
80961
81895
|
/**
|
|
@@ -80967,6 +81901,7 @@ export interface listingOwnershipPeriod_max_fields {
|
|
|
80967
81901
|
endAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
80968
81902
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
80969
81903
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81904
|
+
reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
80970
81905
|
startAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
80971
81906
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
80972
81907
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -80981,6 +81916,7 @@ export interface listingOwnershipPeriod_min_fields {
|
|
|
80981
81916
|
endAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
80982
81917
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
80983
81918
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81919
|
+
reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
80984
81920
|
startAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
80985
81921
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
80986
81922
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -81001,6 +81937,62 @@ export interface listingOwnershipPeriod_mutation_response {
|
|
|
81001
81937
|
returning: Array<listingOwnershipPeriod>;
|
|
81002
81938
|
}
|
|
81003
81939
|
|
|
81940
|
+
/**
|
|
81941
|
+
* aggregate stddev on columns
|
|
81942
|
+
*/
|
|
81943
|
+
export interface listingOwnershipPeriod_stddev_fields {
|
|
81944
|
+
__typename?: "listingOwnershipPeriod_stddev_fields";
|
|
81945
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81946
|
+
}
|
|
81947
|
+
|
|
81948
|
+
/**
|
|
81949
|
+
* aggregate stddev_pop on columns
|
|
81950
|
+
*/
|
|
81951
|
+
export interface listingOwnershipPeriod_stddev_pop_fields {
|
|
81952
|
+
__typename?: "listingOwnershipPeriod_stddev_pop_fields";
|
|
81953
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81954
|
+
}
|
|
81955
|
+
|
|
81956
|
+
/**
|
|
81957
|
+
* aggregate stddev_samp on columns
|
|
81958
|
+
*/
|
|
81959
|
+
export interface listingOwnershipPeriod_stddev_samp_fields {
|
|
81960
|
+
__typename?: "listingOwnershipPeriod_stddev_samp_fields";
|
|
81961
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81962
|
+
}
|
|
81963
|
+
|
|
81964
|
+
/**
|
|
81965
|
+
* aggregate sum on columns
|
|
81966
|
+
*/
|
|
81967
|
+
export interface listingOwnershipPeriod_sum_fields {
|
|
81968
|
+
__typename?: "listingOwnershipPeriod_sum_fields";
|
|
81969
|
+
reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
81970
|
+
}
|
|
81971
|
+
|
|
81972
|
+
/**
|
|
81973
|
+
* aggregate var_pop on columns
|
|
81974
|
+
*/
|
|
81975
|
+
export interface listingOwnershipPeriod_var_pop_fields {
|
|
81976
|
+
__typename?: "listingOwnershipPeriod_var_pop_fields";
|
|
81977
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81978
|
+
}
|
|
81979
|
+
|
|
81980
|
+
/**
|
|
81981
|
+
* aggregate var_samp on columns
|
|
81982
|
+
*/
|
|
81983
|
+
export interface listingOwnershipPeriod_var_samp_fields {
|
|
81984
|
+
__typename?: "listingOwnershipPeriod_var_samp_fields";
|
|
81985
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81986
|
+
}
|
|
81987
|
+
|
|
81988
|
+
/**
|
|
81989
|
+
* aggregate variance on columns
|
|
81990
|
+
*/
|
|
81991
|
+
export interface listingOwnershipPeriod_variance_fields {
|
|
81992
|
+
__typename?: "listingOwnershipPeriod_variance_fields";
|
|
81993
|
+
reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
81994
|
+
}
|
|
81995
|
+
|
|
81004
81996
|
/**
|
|
81005
81997
|
* aggregated selection of "listing"
|
|
81006
81998
|
*/
|
|
@@ -82626,6 +83618,12 @@ export interface Mutation {
|
|
|
82626
83618
|
deleteBookingChannel: (args: {
|
|
82627
83619
|
id: Scalars["uuid"];
|
|
82628
83620
|
}) => Maybe<booking_channel>;
|
|
83621
|
+
deleteBookingChannelIconCandidate: (args: {
|
|
83622
|
+
id: Scalars["uuid"];
|
|
83623
|
+
}) => Maybe<bookingChannelIconCandidate>;
|
|
83624
|
+
deleteBookingChannelIconCandidates: (args: {
|
|
83625
|
+
where: bookingChannelIconCandidate_bool_exp;
|
|
83626
|
+
}) => Maybe<bookingChannelIconCandidate_mutation_response>;
|
|
82629
83627
|
deleteBookingChannels: (args: {
|
|
82630
83628
|
where: booking_channel_bool_exp;
|
|
82631
83629
|
}) => Maybe<booking_channel_mutation_response>;
|
|
@@ -83314,6 +84312,14 @@ export interface Mutation {
|
|
|
83314
84312
|
object: booking_channel_insert_input;
|
|
83315
84313
|
on_conflict?: Maybe<booking_channel_on_conflict>;
|
|
83316
84314
|
}) => Maybe<booking_channel>;
|
|
84315
|
+
insertBookingChannelIconCandidate: (args: {
|
|
84316
|
+
object: bookingChannelIconCandidate_insert_input;
|
|
84317
|
+
on_conflict?: Maybe<bookingChannelIconCandidate_on_conflict>;
|
|
84318
|
+
}) => Maybe<bookingChannelIconCandidate>;
|
|
84319
|
+
insertBookingChannelIconCandidates: (args: {
|
|
84320
|
+
objects: Array<bookingChannelIconCandidate_insert_input>;
|
|
84321
|
+
on_conflict?: Maybe<bookingChannelIconCandidate_on_conflict>;
|
|
84322
|
+
}) => Maybe<bookingChannelIconCandidate_mutation_response>;
|
|
83317
84323
|
insertBookingChannels: (args: {
|
|
83318
84324
|
objects: Array<booking_channel_insert_input>;
|
|
83319
84325
|
on_conflict?: Maybe<booking_channel_on_conflict>;
|
|
@@ -84356,6 +85362,14 @@ export interface Mutation {
|
|
|
84356
85362
|
_set?: Maybe<booking_channel_set_input>;
|
|
84357
85363
|
pk_columns: booking_channel_pk_columns_input;
|
|
84358
85364
|
}) => Maybe<booking_channel>;
|
|
85365
|
+
updateBookingChannelIconCandidate: (args: {
|
|
85366
|
+
_set?: Maybe<bookingChannelIconCandidate_set_input>;
|
|
85367
|
+
pk_columns: bookingChannelIconCandidate_pk_columns_input;
|
|
85368
|
+
}) => Maybe<bookingChannelIconCandidate>;
|
|
85369
|
+
updateBookingChannelIconCandidates: (args: {
|
|
85370
|
+
_set?: Maybe<bookingChannelIconCandidate_set_input>;
|
|
85371
|
+
where: bookingChannelIconCandidate_bool_exp;
|
|
85372
|
+
}) => Maybe<bookingChannelIconCandidate_mutation_response>;
|
|
84359
85373
|
updateBookingChannels: (args: {
|
|
84360
85374
|
_set?: Maybe<booking_channel_set_input>;
|
|
84361
85375
|
where: booking_channel_bool_exp;
|
|
@@ -84693,6 +85707,7 @@ export interface Mutation {
|
|
|
84693
85707
|
where: listing_owner_bool_exp;
|
|
84694
85708
|
}) => Maybe<listing_owner_mutation_response>;
|
|
84695
85709
|
updateListingOwnershipPeriod: (args: {
|
|
85710
|
+
_inc?: Maybe<listingOwnershipPeriod_inc_input>;
|
|
84696
85711
|
_set?: Maybe<listingOwnershipPeriod_set_input>;
|
|
84697
85712
|
pk_columns: listingOwnershipPeriod_pk_columns_input;
|
|
84698
85713
|
}) => Maybe<listingOwnershipPeriod>;
|
|
@@ -84715,6 +85730,7 @@ export interface Mutation {
|
|
|
84715
85730
|
where: listingOwnershipPeriodMember_bool_exp;
|
|
84716
85731
|
}) => Maybe<listingOwnershipPeriodMember_mutation_response>;
|
|
84717
85732
|
updateListingOwnershipPeriods: (args: {
|
|
85733
|
+
_inc?: Maybe<listingOwnershipPeriod_inc_input>;
|
|
84718
85734
|
_set?: Maybe<listingOwnershipPeriod_set_input>;
|
|
84719
85735
|
where: listingOwnershipPeriod_bool_exp;
|
|
84720
85736
|
}) => Maybe<listingOwnershipPeriod_mutation_response>;
|
|
@@ -84773,6 +85789,9 @@ export interface Mutation {
|
|
|
84773
85789
|
updateManyBankRecords: (args: {
|
|
84774
85790
|
updates: Array<bankRecord_updates>;
|
|
84775
85791
|
}) => Maybe<Array<Maybe<bankRecord_mutation_response>>>;
|
|
85792
|
+
updateManyBookingChannelIconCandidates: (args: {
|
|
85793
|
+
updates: Array<bookingChannelIconCandidate_updates>;
|
|
85794
|
+
}) => Maybe<Array<Maybe<bookingChannelIconCandidate_mutation_response>>>;
|
|
84776
85795
|
updateManyBookingChannels: (args: {
|
|
84777
85796
|
updates: Array<booking_channel_updates>;
|
|
84778
85797
|
}) => Maybe<Array<Maybe<booking_channel_mutation_response>>>;
|
|
@@ -89070,6 +90089,8 @@ export interface payment_line {
|
|
|
89070
90089
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
89071
90090
|
createdAt: ScalarsEnums["timestamptz"];
|
|
89072
90091
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
90092
|
+
edited_type?: Maybe<ScalarsEnums["String"]>;
|
|
90093
|
+
effective_type?: Maybe<ScalarsEnums["String"]>;
|
|
89073
90094
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
89074
90095
|
id: ScalarsEnums["uuid"];
|
|
89075
90096
|
/**
|
|
@@ -89807,6 +90828,8 @@ export interface payment_line_max_fields {
|
|
|
89807
90828
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
89808
90829
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
89809
90830
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
90831
|
+
edited_type?: Maybe<ScalarsEnums["String"]>;
|
|
90832
|
+
effective_type?: Maybe<ScalarsEnums["String"]>;
|
|
89810
90833
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
89811
90834
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
89812
90835
|
lineId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -89838,6 +90861,8 @@ export interface payment_line_min_fields {
|
|
|
89838
90861
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
89839
90862
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
89840
90863
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
90864
|
+
edited_type?: Maybe<ScalarsEnums["String"]>;
|
|
90865
|
+
effective_type?: Maybe<ScalarsEnums["String"]>;
|
|
89841
90866
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
89842
90867
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
89843
90868
|
lineId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -90564,6 +91589,23 @@ export interface Query {
|
|
|
90564
91589
|
order_by?: Maybe<Array<booking_channel_order_by>>;
|
|
90565
91590
|
where?: Maybe<booking_channel_bool_exp>;
|
|
90566
91591
|
}) => booking_channel_aggregate;
|
|
91592
|
+
bookingChannelIconCandidate: (args: {
|
|
91593
|
+
id: Scalars["uuid"];
|
|
91594
|
+
}) => Maybe<bookingChannelIconCandidate>;
|
|
91595
|
+
bookingChannelIconCandidateAggregate: (args?: {
|
|
91596
|
+
distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
|
|
91597
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91598
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91599
|
+
order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
|
|
91600
|
+
where?: Maybe<bookingChannelIconCandidate_bool_exp>;
|
|
91601
|
+
}) => bookingChannelIconCandidate_aggregate;
|
|
91602
|
+
bookingChannelIconCandidates: (args?: {
|
|
91603
|
+
distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
|
|
91604
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91605
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91606
|
+
order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
|
|
91607
|
+
where?: Maybe<bookingChannelIconCandidate_bool_exp>;
|
|
91608
|
+
}) => Array<bookingChannelIconCandidate>;
|
|
90567
91609
|
bookingChannels: (args?: {
|
|
90568
91610
|
distinct_on?: Maybe<Array<booking_channel_select_column>>;
|
|
90569
91611
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -93671,6 +94713,11 @@ export interface reservation {
|
|
|
93671
94713
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
93672
94714
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
93673
94715
|
currency?: Maybe<ScalarsEnums["currency_enum"]>;
|
|
94716
|
+
edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94717
|
+
edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94718
|
+
effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94719
|
+
effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94720
|
+
effective_nights?: Maybe<ScalarsEnums["Int"]>;
|
|
93674
94721
|
/**
|
|
93675
94722
|
* An array relationship
|
|
93676
94723
|
*/
|
|
@@ -94682,6 +95729,7 @@ export interface reservation_avg_fields {
|
|
|
94682
95729
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94683
95730
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94684
95731
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
95732
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94685
95733
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94686
95734
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94687
95735
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -94715,6 +95763,11 @@ export interface reservation_max_fields {
|
|
|
94715
95763
|
confirmationCode?: Maybe<ScalarsEnums["String"]>;
|
|
94716
95764
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94717
95765
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95766
|
+
edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95767
|
+
edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95768
|
+
effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95769
|
+
effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95770
|
+
effective_nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94718
95771
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94719
95772
|
guestName?: Maybe<ScalarsEnums["String"]>;
|
|
94720
95773
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -94766,6 +95819,11 @@ export interface reservation_min_fields {
|
|
|
94766
95819
|
confirmationCode?: Maybe<ScalarsEnums["String"]>;
|
|
94767
95820
|
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94768
95821
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95822
|
+
edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95823
|
+
edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95824
|
+
effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95825
|
+
effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95826
|
+
effective_nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94769
95827
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
94770
95828
|
guestName?: Maybe<ScalarsEnums["String"]>;
|
|
94771
95829
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -94882,6 +95940,7 @@ export interface reservation_stddev_fields {
|
|
|
94882
95940
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94883
95941
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94884
95942
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
95943
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94885
95944
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94886
95945
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94887
95946
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -94904,6 +95963,7 @@ export interface reservation_stddev_pop_fields {
|
|
|
94904
95963
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94905
95964
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94906
95965
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
95966
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94907
95967
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94908
95968
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94909
95969
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -94926,6 +95986,7 @@ export interface reservation_stddev_samp_fields {
|
|
|
94926
95986
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94927
95987
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94928
95988
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
95989
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94929
95990
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94930
95991
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94931
95992
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -94948,6 +96009,7 @@ export interface reservation_sum_fields {
|
|
|
94948
96009
|
centPaymentFee?: Maybe<ScalarsEnums["Int"]>;
|
|
94949
96010
|
centService?: Maybe<ScalarsEnums["Int"]>;
|
|
94950
96011
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
96012
|
+
effective_nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94951
96013
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
94952
96014
|
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94953
96015
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -94970,6 +96032,7 @@ export interface reservation_var_pop_fields {
|
|
|
94970
96032
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94971
96033
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94972
96034
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
96035
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94973
96036
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94974
96037
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94975
96038
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -94992,6 +96055,7 @@ export interface reservation_var_samp_fields {
|
|
|
94992
96055
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
94993
96056
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94994
96057
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
96058
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94995
96059
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94996
96060
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94997
96061
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -95014,6 +96078,7 @@ export interface reservation_variance_fields {
|
|
|
95014
96078
|
centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
|
|
95015
96079
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
95016
96080
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
96081
|
+
effective_nights?: Maybe<ScalarsEnums["Float"]>;
|
|
95017
96082
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
95018
96083
|
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
95019
96084
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
@@ -97386,6 +98451,28 @@ export interface Subscription {
|
|
|
97386
98451
|
order_by?: Maybe<Array<booking_channel_order_by>>;
|
|
97387
98452
|
where?: Maybe<booking_channel_bool_exp>;
|
|
97388
98453
|
}) => booking_channel_aggregate;
|
|
98454
|
+
bookingChannelIconCandidate: (args: {
|
|
98455
|
+
id: Scalars["uuid"];
|
|
98456
|
+
}) => Maybe<bookingChannelIconCandidate>;
|
|
98457
|
+
bookingChannelIconCandidateAggregate: (args?: {
|
|
98458
|
+
distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
|
|
98459
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98460
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98461
|
+
order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
|
|
98462
|
+
where?: Maybe<bookingChannelIconCandidate_bool_exp>;
|
|
98463
|
+
}) => bookingChannelIconCandidate_aggregate;
|
|
98464
|
+
bookingChannelIconCandidateStream: (args: {
|
|
98465
|
+
batch_size: Scalars["Int"];
|
|
98466
|
+
cursor: Array<Maybe<bookingChannelIconCandidate_stream_cursor_input>>;
|
|
98467
|
+
where?: Maybe<bookingChannelIconCandidate_bool_exp>;
|
|
98468
|
+
}) => Array<bookingChannelIconCandidate>;
|
|
98469
|
+
bookingChannelIconCandidates: (args?: {
|
|
98470
|
+
distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
|
|
98471
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98472
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98473
|
+
order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
|
|
98474
|
+
where?: Maybe<bookingChannelIconCandidate_bool_exp>;
|
|
98475
|
+
}) => Array<bookingChannelIconCandidate>;
|
|
97389
98476
|
bookingChannelStream: (args: {
|
|
97390
98477
|
batch_size: Scalars["Int"];
|
|
97391
98478
|
cursor: Array<Maybe<booking_channel_stream_cursor_input>>;
|
|
@@ -103322,6 +104409,7 @@ export interface transaction {
|
|
|
103322
104409
|
description: ScalarsEnums["String"];
|
|
103323
104410
|
dueAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
103324
104411
|
id: ScalarsEnums["uuid"];
|
|
104412
|
+
is_opening_balance: ScalarsEnums["Boolean"];
|
|
103325
104413
|
/**
|
|
103326
104414
|
* An array relationship
|
|
103327
104415
|
*/
|
|
@@ -103492,7 +104580,7 @@ export interface transaction {
|
|
|
103492
104580
|
where?: Maybe<transaction_bool_exp>;
|
|
103493
104581
|
}) => transaction_aggregate;
|
|
103494
104582
|
/**
|
|
103495
|
-
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
104583
|
+
* Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103496
104584
|
*/
|
|
103497
104585
|
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103498
104586
|
/**
|
|
@@ -103921,7 +105009,7 @@ export interface transaction_max_fields {
|
|
|
103921
105009
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103922
105010
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103923
105011
|
/**
|
|
103924
|
-
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
105012
|
+
* Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103925
105013
|
*/
|
|
103926
105014
|
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103927
105015
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -103953,7 +105041,7 @@ export interface transaction_min_fields {
|
|
|
103953
105041
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103954
105042
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103955
105043
|
/**
|
|
103956
|
-
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
105044
|
+
* Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103957
105045
|
*/
|
|
103958
105046
|
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103959
105047
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -106131,6 +107219,12 @@ export interface SchemaObjectTypes {
|
|
|
106131
107219
|
billing_payment_method_type_max_fields: billing_payment_method_type_max_fields;
|
|
106132
107220
|
billing_payment_method_type_min_fields: billing_payment_method_type_min_fields;
|
|
106133
107221
|
billing_payment_method_type_mutation_response: billing_payment_method_type_mutation_response;
|
|
107222
|
+
bookingChannelIconCandidate: bookingChannelIconCandidate;
|
|
107223
|
+
bookingChannelIconCandidate_aggregate: bookingChannelIconCandidate_aggregate;
|
|
107224
|
+
bookingChannelIconCandidate_aggregate_fields: bookingChannelIconCandidate_aggregate_fields;
|
|
107225
|
+
bookingChannelIconCandidate_max_fields: bookingChannelIconCandidate_max_fields;
|
|
107226
|
+
bookingChannelIconCandidate_min_fields: bookingChannelIconCandidate_min_fields;
|
|
107227
|
+
bookingChannelIconCandidate_mutation_response: bookingChannelIconCandidate_mutation_response;
|
|
106134
107228
|
booking_channel: booking_channel;
|
|
106135
107229
|
booking_channel_aggregate: booking_channel_aggregate;
|
|
106136
107230
|
booking_channel_aggregate_fields: booking_channel_aggregate_fields;
|
|
@@ -106369,9 +107463,17 @@ export interface SchemaObjectTypes {
|
|
|
106369
107463
|
listingOwnershipPeriodMember_variance_fields: listingOwnershipPeriodMember_variance_fields;
|
|
106370
107464
|
listingOwnershipPeriod_aggregate: listingOwnershipPeriod_aggregate;
|
|
106371
107465
|
listingOwnershipPeriod_aggregate_fields: listingOwnershipPeriod_aggregate_fields;
|
|
107466
|
+
listingOwnershipPeriod_avg_fields: listingOwnershipPeriod_avg_fields;
|
|
106372
107467
|
listingOwnershipPeriod_max_fields: listingOwnershipPeriod_max_fields;
|
|
106373
107468
|
listingOwnershipPeriod_min_fields: listingOwnershipPeriod_min_fields;
|
|
106374
107469
|
listingOwnershipPeriod_mutation_response: listingOwnershipPeriod_mutation_response;
|
|
107470
|
+
listingOwnershipPeriod_stddev_fields: listingOwnershipPeriod_stddev_fields;
|
|
107471
|
+
listingOwnershipPeriod_stddev_pop_fields: listingOwnershipPeriod_stddev_pop_fields;
|
|
107472
|
+
listingOwnershipPeriod_stddev_samp_fields: listingOwnershipPeriod_stddev_samp_fields;
|
|
107473
|
+
listingOwnershipPeriod_sum_fields: listingOwnershipPeriod_sum_fields;
|
|
107474
|
+
listingOwnershipPeriod_var_pop_fields: listingOwnershipPeriod_var_pop_fields;
|
|
107475
|
+
listingOwnershipPeriod_var_samp_fields: listingOwnershipPeriod_var_samp_fields;
|
|
107476
|
+
listingOwnershipPeriod_variance_fields: listingOwnershipPeriod_variance_fields;
|
|
106375
107477
|
listing_aggregate: listing_aggregate;
|
|
106376
107478
|
listing_aggregate_fields: listing_aggregate_fields;
|
|
106377
107479
|
listing_avg_fields: listing_avg_fields;
|
|
@@ -107185,6 +108287,12 @@ export type SchemaObjectTypesNames =
|
|
|
107185
108287
|
| "billing_payment_method_type_max_fields"
|
|
107186
108288
|
| "billing_payment_method_type_min_fields"
|
|
107187
108289
|
| "billing_payment_method_type_mutation_response"
|
|
108290
|
+
| "bookingChannelIconCandidate"
|
|
108291
|
+
| "bookingChannelIconCandidate_aggregate"
|
|
108292
|
+
| "bookingChannelIconCandidate_aggregate_fields"
|
|
108293
|
+
| "bookingChannelIconCandidate_max_fields"
|
|
108294
|
+
| "bookingChannelIconCandidate_min_fields"
|
|
108295
|
+
| "bookingChannelIconCandidate_mutation_response"
|
|
107188
108296
|
| "booking_channel"
|
|
107189
108297
|
| "booking_channel_aggregate"
|
|
107190
108298
|
| "booking_channel_aggregate_fields"
|
|
@@ -107423,9 +108531,17 @@ export type SchemaObjectTypesNames =
|
|
|
107423
108531
|
| "listingOwnershipPeriodMember_variance_fields"
|
|
107424
108532
|
| "listingOwnershipPeriod_aggregate"
|
|
107425
108533
|
| "listingOwnershipPeriod_aggregate_fields"
|
|
108534
|
+
| "listingOwnershipPeriod_avg_fields"
|
|
107426
108535
|
| "listingOwnershipPeriod_max_fields"
|
|
107427
108536
|
| "listingOwnershipPeriod_min_fields"
|
|
107428
108537
|
| "listingOwnershipPeriod_mutation_response"
|
|
108538
|
+
| "listingOwnershipPeriod_stddev_fields"
|
|
108539
|
+
| "listingOwnershipPeriod_stddev_pop_fields"
|
|
108540
|
+
| "listingOwnershipPeriod_stddev_samp_fields"
|
|
108541
|
+
| "listingOwnershipPeriod_sum_fields"
|
|
108542
|
+
| "listingOwnershipPeriod_var_pop_fields"
|
|
108543
|
+
| "listingOwnershipPeriod_var_samp_fields"
|
|
108544
|
+
| "listingOwnershipPeriod_variance_fields"
|
|
107429
108545
|
| "listing_aggregate"
|
|
107430
108546
|
| "listing_aggregate_fields"
|
|
107431
108547
|
| "listing_avg_fields"
|
|
@@ -108230,6 +109346,15 @@ export interface ScalarsEnums extends Scalars {
|
|
|
108230
109346
|
billing_payment_method_type_update_column:
|
|
108231
109347
|
| billing_payment_method_type_update_column
|
|
108232
109348
|
| undefined;
|
|
109349
|
+
bookingChannelIconCandidate_constraint:
|
|
109350
|
+
| bookingChannelIconCandidate_constraint
|
|
109351
|
+
| undefined;
|
|
109352
|
+
bookingChannelIconCandidate_select_column:
|
|
109353
|
+
| bookingChannelIconCandidate_select_column
|
|
109354
|
+
| undefined;
|
|
109355
|
+
bookingChannelIconCandidate_update_column:
|
|
109356
|
+
| bookingChannelIconCandidate_update_column
|
|
109357
|
+
| undefined;
|
|
108233
109358
|
booking_channel_constraint: booking_channel_constraint | undefined;
|
|
108234
109359
|
booking_channel_select_column: booking_channel_select_column | undefined;
|
|
108235
109360
|
booking_channel_update_column: booking_channel_update_column | undefined;
|
|
@@ -108855,6 +109980,12 @@ export interface ScalarsEnums extends Scalars {
|
|
|
108855
109980
|
transactionType_update_column: transactionType_update_column | undefined;
|
|
108856
109981
|
transaction_constraint: transaction_constraint | undefined;
|
|
108857
109982
|
transaction_select_column: transaction_select_column | undefined;
|
|
109983
|
+
transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns:
|
|
109984
|
+
| transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns
|
|
109985
|
+
| undefined;
|
|
109986
|
+
transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns:
|
|
109987
|
+
| transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns
|
|
109988
|
+
| undefined;
|
|
108858
109989
|
transaction_update_column: transaction_update_column | undefined;
|
|
108859
109990
|
user_company_type_constraint: user_company_type_constraint | undefined;
|
|
108860
109991
|
user_company_type_enum: user_company_type_enum | undefined;
|