@vrplatform/graphql 1.1.44 → 1.1.46

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.
@@ -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;
@@ -285,6 +287,7 @@ export type accountAssignmentType_enum =
285
287
  | "deposit_merchantFee"
286
288
  | "deposit_reserve"
287
289
  | "deposit_vat"
290
+ | "dueToFromTrust"
288
291
  | "expense_markup"
289
292
  | "expense_reimbursement"
290
293
  | "expense_salesTax"
@@ -4411,6 +4414,138 @@ export interface billing_payment_method_type_updates {
4411
4414
  where: billing_payment_method_type_bool_exp;
4412
4415
  }
4413
4416
 
4417
+ /** Boolean expression to filter rows from the table "booking_channel_icon_candidate". All fields are combined with a logical 'AND'. */
4418
+ export interface bookingChannelIconCandidate_bool_exp {
4419
+ _and?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
4420
+ _not?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
4421
+ _or?: InputMaybe<Array<bookingChannelIconCandidate_bool_exp>>;
4422
+ bookingChannel?: InputMaybe<booking_channel_bool_exp>;
4423
+ bookingChannelId?: InputMaybe<uuid_comparison_exp>;
4424
+ comment?: InputMaybe<String_comparison_exp>;
4425
+ createdAt?: InputMaybe<timestamptz_comparison_exp>;
4426
+ fileStorage?: InputMaybe<file_storage_bool_exp>;
4427
+ fileStorageId?: InputMaybe<uuid_comparison_exp>;
4428
+ id?: InputMaybe<uuid_comparison_exp>;
4429
+ source?: InputMaybe<String_comparison_exp>;
4430
+ updatedAt?: InputMaybe<timestamptz_comparison_exp>;
4431
+ }
4432
+
4433
+ /** unique or primary key constraints on table "booking_channel_icon_candidate" */
4434
+ export type bookingChannelIconCandidate_constraint =
4435
+ /** unique or primary key constraint on columns "id", "booking_channel_id" */
4436
+ | "booking_channel_icon_candidate_booking_channel_id_id_key"
4437
+ /** unique or primary key constraint on columns "id" */
4438
+ | "booking_channel_icon_candidate_pkey";
4439
+
4440
+ /** input type for inserting data into table "booking_channel_icon_candidate" */
4441
+ export interface bookingChannelIconCandidate_insert_input {
4442
+ bookingChannel?: InputMaybe<booking_channel_obj_rel_insert_input>;
4443
+ bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4444
+ comment?: InputMaybe<Scalars["String"]>;
4445
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
4446
+ fileStorage?: InputMaybe<file_storage_obj_rel_insert_input>;
4447
+ fileStorageId?: InputMaybe<Scalars["uuid"]>;
4448
+ id?: InputMaybe<Scalars["uuid"]>;
4449
+ source?: InputMaybe<Scalars["String"]>;
4450
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4451
+ }
4452
+
4453
+ /** on_conflict condition type for table "booking_channel_icon_candidate" */
4454
+ export interface bookingChannelIconCandidate_on_conflict {
4455
+ constraint: bookingChannelIconCandidate_constraint;
4456
+ update_columns?: Array<bookingChannelIconCandidate_update_column>;
4457
+ where?: InputMaybe<bookingChannelIconCandidate_bool_exp>;
4458
+ }
4459
+
4460
+ /** Ordering options when selecting data from "booking_channel_icon_candidate". */
4461
+ export interface bookingChannelIconCandidate_order_by {
4462
+ bookingChannel?: InputMaybe<booking_channel_order_by>;
4463
+ bookingChannelId?: InputMaybe<order_by>;
4464
+ comment?: InputMaybe<order_by>;
4465
+ createdAt?: InputMaybe<order_by>;
4466
+ fileStorage?: InputMaybe<file_storage_order_by>;
4467
+ fileStorageId?: InputMaybe<order_by>;
4468
+ id?: InputMaybe<order_by>;
4469
+ source?: InputMaybe<order_by>;
4470
+ updatedAt?: InputMaybe<order_by>;
4471
+ }
4472
+
4473
+ /** primary key columns input for table: booking_channel_icon_candidate */
4474
+ export interface bookingChannelIconCandidate_pk_columns_input {
4475
+ id: Scalars["uuid"];
4476
+ }
4477
+
4478
+ /** select columns of table "booking_channel_icon_candidate" */
4479
+ export type bookingChannelIconCandidate_select_column =
4480
+ /** column name */
4481
+ | "bookingChannelId"
4482
+ /** column name */
4483
+ | "comment"
4484
+ /** column name */
4485
+ | "createdAt"
4486
+ /** column name */
4487
+ | "fileStorageId"
4488
+ /** column name */
4489
+ | "id"
4490
+ /** column name */
4491
+ | "source"
4492
+ /** column name */
4493
+ | "updatedAt";
4494
+
4495
+ /** input type for updating data in table "booking_channel_icon_candidate" */
4496
+ export interface bookingChannelIconCandidate_set_input {
4497
+ bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4498
+ comment?: InputMaybe<Scalars["String"]>;
4499
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
4500
+ fileStorageId?: InputMaybe<Scalars["uuid"]>;
4501
+ id?: InputMaybe<Scalars["uuid"]>;
4502
+ source?: InputMaybe<Scalars["String"]>;
4503
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4504
+ }
4505
+
4506
+ /** Streaming cursor of the table "bookingChannelIconCandidate" */
4507
+ export interface bookingChannelIconCandidate_stream_cursor_input {
4508
+ /** Stream column input with initial value */
4509
+ initial_value: bookingChannelIconCandidate_stream_cursor_value_input;
4510
+ /** cursor ordering */
4511
+ ordering?: InputMaybe<cursor_ordering>;
4512
+ }
4513
+
4514
+ /** Initial value of the column from where the streaming should start */
4515
+ export interface bookingChannelIconCandidate_stream_cursor_value_input {
4516
+ bookingChannelId?: InputMaybe<Scalars["uuid"]>;
4517
+ comment?: InputMaybe<Scalars["String"]>;
4518
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
4519
+ fileStorageId?: InputMaybe<Scalars["uuid"]>;
4520
+ id?: InputMaybe<Scalars["uuid"]>;
4521
+ source?: InputMaybe<Scalars["String"]>;
4522
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4523
+ }
4524
+
4525
+ /** update columns of table "booking_channel_icon_candidate" */
4526
+ export type bookingChannelIconCandidate_update_column =
4527
+ /** column name */
4528
+ | "bookingChannelId"
4529
+ /** column name */
4530
+ | "comment"
4531
+ /** column name */
4532
+ | "createdAt"
4533
+ /** column name */
4534
+ | "fileStorageId"
4535
+ /** column name */
4536
+ | "id"
4537
+ /** column name */
4538
+ | "source"
4539
+ /** column name */
4540
+ | "updatedAt";
4541
+
4542
+ export interface bookingChannelIconCandidate_updates {
4543
+ /** sets the columns of the filtered rows to the given values */
4544
+ _set?: InputMaybe<bookingChannelIconCandidate_set_input>;
4545
+ /** filter the rows which have to be updated */
4546
+ where: bookingChannelIconCandidate_bool_exp;
4547
+ }
4548
+
4414
4549
  /** Boolean expression to filter rows from the table "booking_channel". All fields are combined with a logical 'AND'. */
4415
4550
  export interface booking_channel_bool_exp {
4416
4551
  _and?: InputMaybe<Array<booking_channel_bool_exp>>;
@@ -4422,6 +4557,7 @@ export interface booking_channel_bool_exp {
4422
4557
  id?: InputMaybe<uuid_comparison_exp>;
4423
4558
  reservations?: InputMaybe<reservation_bool_exp>;
4424
4559
  reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
4560
+ selectedBookingChannelIconCandidateId?: InputMaybe<uuid_comparison_exp>;
4425
4561
  settings?: InputMaybe<setting_bool_exp>;
4426
4562
  settingsLeft?: InputMaybe<setting_bool_exp>;
4427
4563
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
@@ -4446,6 +4582,7 @@ export interface booking_channel_insert_input {
4446
4582
  icon?: InputMaybe<Scalars["String"]>;
4447
4583
  id?: InputMaybe<Scalars["uuid"]>;
4448
4584
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
4585
+ selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4449
4586
  settings?: InputMaybe<setting_arr_rel_insert_input>;
4450
4587
  settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
4451
4588
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
@@ -4474,6 +4611,7 @@ export interface booking_channel_order_by {
4474
4611
  icon?: InputMaybe<order_by>;
4475
4612
  id?: InputMaybe<order_by>;
4476
4613
  reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
4614
+ selectedBookingChannelIconCandidateId?: InputMaybe<order_by>;
4477
4615
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
4478
4616
  settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
4479
4617
  settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
@@ -4497,6 +4635,8 @@ export type booking_channel_select_column =
4497
4635
  /** column name */
4498
4636
  | "id"
4499
4637
  /** column name */
4638
+ | "selectedBookingChannelIconCandidateId"
4639
+ /** column name */
4500
4640
  | "uniqueRef"
4501
4641
  /** column name */
4502
4642
  | "updatedAt";
@@ -4507,6 +4647,7 @@ export interface booking_channel_set_input {
4507
4647
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4508
4648
  icon?: InputMaybe<Scalars["String"]>;
4509
4649
  id?: InputMaybe<Scalars["uuid"]>;
4650
+ selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4510
4651
  uniqueRef?: InputMaybe<Scalars["String"]>;
4511
4652
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4512
4653
  }
@@ -4525,6 +4666,7 @@ export interface booking_channel_stream_cursor_value_input {
4525
4666
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
4526
4667
  icon?: InputMaybe<Scalars["String"]>;
4527
4668
  id?: InputMaybe<Scalars["uuid"]>;
4669
+ selectedBookingChannelIconCandidateId?: InputMaybe<Scalars["uuid"]>;
4528
4670
  uniqueRef?: InputMaybe<Scalars["String"]>;
4529
4671
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
4530
4672
  }
@@ -4540,6 +4682,8 @@ export type booking_channel_update_column =
4540
4682
  /** column name */
4541
4683
  | "id"
4542
4684
  /** column name */
4685
+ | "selectedBookingChannelIconCandidateId"
4686
+ /** column name */
4543
4687
  | "uniqueRef"
4544
4688
  /** column name */
4545
4689
  | "updatedAt";
@@ -9852,6 +9996,7 @@ export type journalEntryTriggerType_constraint =
9852
9996
 
9853
9997
  export type journalEntryTriggerType_enum =
9854
9998
  | "deferredRevenue"
9999
+ | "intercompany"
9855
10000
  | "rebalance"
9856
10001
  | "recurringFee"
9857
10002
  | "revenueRecognition";
@@ -9958,6 +10103,8 @@ export type journalEntryType_enum =
9958
10103
  | "transaction_expense_markup"
9959
10104
  | "transaction_expense_markup_tax"
9960
10105
  | "transaction_expense_payment"
10106
+ | "transaction_payout"
10107
+ | "transaction_payout_line"
9961
10108
  | "transaction_transfer"
9962
10109
  | "transaction_transfer_line";
9963
10110
 
@@ -10085,6 +10232,8 @@ export interface journalEntry_bool_exp {
10085
10232
  entitySortNum?: InputMaybe<Int_comparison_exp>;
10086
10233
  entityType?: InputMaybe<journalEntryEntityType_enum_comparison_exp>;
10087
10234
  id?: InputMaybe<uuid_comparison_exp>;
10235
+ inactive_reason?: InputMaybe<journal_entry_inactive_reason_comparison_exp>;
10236
+ ledger?: InputMaybe<journal_entry_ledger_comparison_exp>;
10088
10237
  line?: InputMaybe<payment_line_bool_exp>;
10089
10238
  lineId?: InputMaybe<uuid_comparison_exp>;
10090
10239
  lineUniqueRef?: InputMaybe<String_comparison_exp>;
@@ -10147,6 +10296,8 @@ export interface journalEntry_insert_input {
10147
10296
  entitySortNum?: InputMaybe<Scalars["Int"]>;
10148
10297
  entityType?: InputMaybe<journalEntryEntityType_enum>;
10149
10298
  id?: InputMaybe<Scalars["uuid"]>;
10299
+ inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10300
+ ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
10150
10301
  line?: InputMaybe<payment_line_obj_rel_insert_input>;
10151
10302
  lineId?: InputMaybe<Scalars["uuid"]>;
10152
10303
  lineUniqueRef?: InputMaybe<Scalars["String"]>;
@@ -10189,6 +10340,8 @@ export interface journalEntry_max_order_by {
10189
10340
  description?: InputMaybe<order_by>;
10190
10341
  entitySortNum?: InputMaybe<order_by>;
10191
10342
  id?: InputMaybe<order_by>;
10343
+ inactive_reason?: InputMaybe<order_by>;
10344
+ ledger?: InputMaybe<order_by>;
10192
10345
  lineId?: InputMaybe<order_by>;
10193
10346
  lineUniqueRef?: InputMaybe<order_by>;
10194
10347
  listingId?: InputMaybe<order_by>;
@@ -10217,6 +10370,8 @@ export interface journalEntry_min_order_by {
10217
10370
  description?: InputMaybe<order_by>;
10218
10371
  entitySortNum?: InputMaybe<order_by>;
10219
10372
  id?: InputMaybe<order_by>;
10373
+ inactive_reason?: InputMaybe<order_by>;
10374
+ ledger?: InputMaybe<order_by>;
10220
10375
  lineId?: InputMaybe<order_by>;
10221
10376
  lineUniqueRef?: InputMaybe<order_by>;
10222
10377
  listingId?: InputMaybe<order_by>;
@@ -10257,6 +10412,8 @@ export interface journalEntry_order_by {
10257
10412
  entitySortNum?: InputMaybe<order_by>;
10258
10413
  entityType?: InputMaybe<order_by>;
10259
10414
  id?: InputMaybe<order_by>;
10415
+ inactive_reason?: InputMaybe<order_by>;
10416
+ ledger?: InputMaybe<order_by>;
10260
10417
  line?: InputMaybe<payment_line_order_by>;
10261
10418
  lineId?: InputMaybe<order_by>;
10262
10419
  lineUniqueRef?: InputMaybe<order_by>;
@@ -10318,6 +10475,10 @@ export type journalEntry_select_column =
10318
10475
  /** column name */
10319
10476
  | "id"
10320
10477
  /** column name */
10478
+ | "inactive_reason"
10479
+ /** column name */
10480
+ | "ledger"
10481
+ /** column name */
10321
10482
  | "lineId"
10322
10483
  /** column name */
10323
10484
  | "lineUniqueRef"
@@ -10370,6 +10531,8 @@ export interface journalEntry_set_input {
10370
10531
  entitySortNum?: InputMaybe<Scalars["Int"]>;
10371
10532
  entityType?: InputMaybe<journalEntryEntityType_enum>;
10372
10533
  id?: InputMaybe<Scalars["uuid"]>;
10534
+ inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10535
+ ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
10373
10536
  lineId?: InputMaybe<Scalars["uuid"]>;
10374
10537
  lineUniqueRef?: InputMaybe<Scalars["String"]>;
10375
10538
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -10432,6 +10595,8 @@ export interface journalEntry_stream_cursor_value_input {
10432
10595
  entitySortNum?: InputMaybe<Scalars["Int"]>;
10433
10596
  entityType?: InputMaybe<journalEntryEntityType_enum>;
10434
10597
  id?: InputMaybe<Scalars["uuid"]>;
10598
+ inactive_reason?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10599
+ ledger?: InputMaybe<Scalars["journal_entry_ledger"]>;
10435
10600
  lineId?: InputMaybe<Scalars["uuid"]>;
10436
10601
  lineUniqueRef?: InputMaybe<Scalars["String"]>;
10437
10602
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -10484,6 +10649,10 @@ export type journalEntry_update_column =
10484
10649
  /** column name */
10485
10650
  | "id"
10486
10651
  /** column name */
10652
+ | "inactive_reason"
10653
+ /** column name */
10654
+ | "ledger"
10655
+ /** column name */
10487
10656
  | "lineId"
10488
10657
  /** column name */
10489
10658
  | "lineUniqueRef"
@@ -10552,6 +10721,32 @@ export interface journalEntry_variance_order_by {
10552
10721
  txnNum?: InputMaybe<order_by>;
10553
10722
  }
10554
10723
 
10724
+ /** Boolean expression to compare columns of type "journal_entry_inactive_reason". All fields are combined with logical 'AND'. */
10725
+ export interface journal_entry_inactive_reason_comparison_exp {
10726
+ _eq?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10727
+ _gt?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10728
+ _gte?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10729
+ _in?: InputMaybe<Array<Scalars["journal_entry_inactive_reason"]>>;
10730
+ _is_null?: InputMaybe<Scalars["Boolean"]>;
10731
+ _lt?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10732
+ _lte?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10733
+ _neq?: InputMaybe<Scalars["journal_entry_inactive_reason"]>;
10734
+ _nin?: InputMaybe<Array<Scalars["journal_entry_inactive_reason"]>>;
10735
+ }
10736
+
10737
+ /** Boolean expression to compare columns of type "journal_entry_ledger". All fields are combined with logical 'AND'. */
10738
+ export interface journal_entry_ledger_comparison_exp {
10739
+ _eq?: InputMaybe<Scalars["journal_entry_ledger"]>;
10740
+ _gt?: InputMaybe<Scalars["journal_entry_ledger"]>;
10741
+ _gte?: InputMaybe<Scalars["journal_entry_ledger"]>;
10742
+ _in?: InputMaybe<Array<Scalars["journal_entry_ledger"]>>;
10743
+ _is_null?: InputMaybe<Scalars["Boolean"]>;
10744
+ _lt?: InputMaybe<Scalars["journal_entry_ledger"]>;
10745
+ _lte?: InputMaybe<Scalars["journal_entry_ledger"]>;
10746
+ _neq?: InputMaybe<Scalars["journal_entry_ledger"]>;
10747
+ _nin?: InputMaybe<Array<Scalars["journal_entry_ledger"]>>;
10748
+ }
10749
+
10555
10750
  /** Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'. */
10556
10751
  export interface json_comparison_exp {
10557
10752
  _eq?: InputMaybe<Scalars["json"]>;
@@ -10945,9 +11140,17 @@ export interface listingOwnershipPeriod_aggregate_bool_exp_count {
10945
11140
 
10946
11141
  /** order by aggregate values of table "listing_ownership_period" */
10947
11142
  export interface listingOwnershipPeriod_aggregate_order_by {
11143
+ avg?: InputMaybe<listingOwnershipPeriod_avg_order_by>;
10948
11144
  count?: InputMaybe<order_by>;
10949
11145
  max?: InputMaybe<listingOwnershipPeriod_max_order_by>;
10950
11146
  min?: InputMaybe<listingOwnershipPeriod_min_order_by>;
11147
+ stddev?: InputMaybe<listingOwnershipPeriod_stddev_order_by>;
11148
+ stddev_pop?: InputMaybe<listingOwnershipPeriod_stddev_pop_order_by>;
11149
+ stddev_samp?: InputMaybe<listingOwnershipPeriod_stddev_samp_order_by>;
11150
+ sum?: InputMaybe<listingOwnershipPeriod_sum_order_by>;
11151
+ var_pop?: InputMaybe<listingOwnershipPeriod_var_pop_order_by>;
11152
+ var_samp?: InputMaybe<listingOwnershipPeriod_var_samp_order_by>;
11153
+ variance?: InputMaybe<listingOwnershipPeriod_variance_order_by>;
10951
11154
  }
10952
11155
 
10953
11156
  /** input type for inserting array relation for remote table "listing_ownership_period" */
@@ -10957,6 +11160,11 @@ export interface listingOwnershipPeriod_arr_rel_insert_input {
10957
11160
  on_conflict?: InputMaybe<listingOwnershipPeriod_on_conflict>;
10958
11161
  }
10959
11162
 
11163
+ /** order by avg() on columns of table "listing_ownership_period" */
11164
+ export interface listingOwnershipPeriod_avg_order_by {
11165
+ reserve_cent_total?: InputMaybe<order_by>;
11166
+ }
11167
+
10960
11168
  /** Boolean expression to filter rows from the table "listing_ownership_period". All fields are combined with a logical 'AND'. */
10961
11169
  export interface listingOwnershipPeriod_bool_exp {
10962
11170
  _and?: InputMaybe<Array<listingOwnershipPeriod_bool_exp>>;
@@ -10974,6 +11182,7 @@ export interface listingOwnershipPeriod_bool_exp {
10974
11182
  members_aggregate?: InputMaybe<listingOwnershipPeriodMember_aggregate_bool_exp>;
10975
11183
  ownerStatements?: InputMaybe<owner_statement_bool_exp>;
10976
11184
  ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_bool_exp>;
11185
+ reserve_cent_total?: InputMaybe<bigint_comparison_exp>;
10977
11186
  setListingInactive?: InputMaybe<Boolean_comparison_exp>;
10978
11187
  startAt?: InputMaybe<timestamptz_comparison_exp>;
10979
11188
  tenant?: InputMaybe<tenant_bool_exp>;
@@ -10986,6 +11195,11 @@ export type listingOwnershipPeriod_constraint =
10986
11195
  /** unique or primary key constraint on columns "id" */
10987
11196
  "listing_ownership_period_pkey";
10988
11197
 
11198
+ /** input type for incrementing numeric columns in table "listing_ownership_period" */
11199
+ export interface listingOwnershipPeriod_inc_input {
11200
+ reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
11201
+ }
11202
+
10989
11203
  /** input type for inserting data into table "listing_ownership_period" */
10990
11204
  export interface listingOwnershipPeriod_insert_input {
10991
11205
  businessModel?: InputMaybe<listingOwnershipPeriodBusinessModel_enum>;
@@ -10997,6 +11211,7 @@ export interface listingOwnershipPeriod_insert_input {
10997
11211
  listingId?: InputMaybe<Scalars["uuid"]>;
10998
11212
  members?: InputMaybe<listingOwnershipPeriodMember_arr_rel_insert_input>;
10999
11213
  ownerStatements?: InputMaybe<owner_statement_arr_rel_insert_input>;
11214
+ reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
11000
11215
  setListingInactive?: InputMaybe<Scalars["Boolean"]>;
11001
11216
  startAt?: InputMaybe<Scalars["timestamptz"]>;
11002
11217
  tenant?: InputMaybe<tenant_obj_rel_insert_input>;
@@ -11010,6 +11225,7 @@ export interface listingOwnershipPeriod_max_order_by {
11010
11225
  endAt?: InputMaybe<order_by>;
11011
11226
  id?: InputMaybe<order_by>;
11012
11227
  listingId?: InputMaybe<order_by>;
11228
+ reserve_cent_total?: InputMaybe<order_by>;
11013
11229
  startAt?: InputMaybe<order_by>;
11014
11230
  tenantId?: InputMaybe<order_by>;
11015
11231
  updatedAt?: InputMaybe<order_by>;
@@ -11021,6 +11237,7 @@ export interface listingOwnershipPeriod_min_order_by {
11021
11237
  endAt?: InputMaybe<order_by>;
11022
11238
  id?: InputMaybe<order_by>;
11023
11239
  listingId?: InputMaybe<order_by>;
11240
+ reserve_cent_total?: InputMaybe<order_by>;
11024
11241
  startAt?: InputMaybe<order_by>;
11025
11242
  tenantId?: InputMaybe<order_by>;
11026
11243
  updatedAt?: InputMaybe<order_by>;
@@ -11051,6 +11268,7 @@ export interface listingOwnershipPeriod_order_by {
11051
11268
  listingId?: InputMaybe<order_by>;
11052
11269
  members_aggregate?: InputMaybe<listingOwnershipPeriodMember_aggregate_order_by>;
11053
11270
  ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_order_by>;
11271
+ reserve_cent_total?: InputMaybe<order_by>;
11054
11272
  setListingInactive?: InputMaybe<order_by>;
11055
11273
  startAt?: InputMaybe<order_by>;
11056
11274
  tenant?: InputMaybe<tenant_order_by>;
@@ -11076,6 +11294,8 @@ export type listingOwnershipPeriod_select_column =
11076
11294
  /** column name */
11077
11295
  | "listingId"
11078
11296
  /** column name */
11297
+ | "reserve_cent_total"
11298
+ /** column name */
11079
11299
  | "setListingInactive"
11080
11300
  /** column name */
11081
11301
  | "startAt"
@@ -11101,12 +11321,28 @@ export interface listingOwnershipPeriod_set_input {
11101
11321
  endAt?: InputMaybe<Scalars["timestamptz"]>;
11102
11322
  id?: InputMaybe<Scalars["uuid"]>;
11103
11323
  listingId?: InputMaybe<Scalars["uuid"]>;
11324
+ reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
11104
11325
  setListingInactive?: InputMaybe<Scalars["Boolean"]>;
11105
11326
  startAt?: InputMaybe<Scalars["timestamptz"]>;
11106
11327
  tenantId?: InputMaybe<Scalars["uuid"]>;
11107
11328
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
11108
11329
  }
11109
11330
 
11331
+ /** order by stddev() on columns of table "listing_ownership_period" */
11332
+ export interface listingOwnershipPeriod_stddev_order_by {
11333
+ reserve_cent_total?: InputMaybe<order_by>;
11334
+ }
11335
+
11336
+ /** order by stddev_pop() on columns of table "listing_ownership_period" */
11337
+ export interface listingOwnershipPeriod_stddev_pop_order_by {
11338
+ reserve_cent_total?: InputMaybe<order_by>;
11339
+ }
11340
+
11341
+ /** order by stddev_samp() on columns of table "listing_ownership_period" */
11342
+ export interface listingOwnershipPeriod_stddev_samp_order_by {
11343
+ reserve_cent_total?: InputMaybe<order_by>;
11344
+ }
11345
+
11110
11346
  /** Streaming cursor of the table "listingOwnershipPeriod" */
11111
11347
  export interface listingOwnershipPeriod_stream_cursor_input {
11112
11348
  /** Stream column input with initial value */
@@ -11122,12 +11358,18 @@ export interface listingOwnershipPeriod_stream_cursor_value_input {
11122
11358
  endAt?: InputMaybe<Scalars["timestamptz"]>;
11123
11359
  id?: InputMaybe<Scalars["uuid"]>;
11124
11360
  listingId?: InputMaybe<Scalars["uuid"]>;
11361
+ reserve_cent_total?: InputMaybe<Scalars["bigint"]>;
11125
11362
  setListingInactive?: InputMaybe<Scalars["Boolean"]>;
11126
11363
  startAt?: InputMaybe<Scalars["timestamptz"]>;
11127
11364
  tenantId?: InputMaybe<Scalars["uuid"]>;
11128
11365
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
11129
11366
  }
11130
11367
 
11368
+ /** order by sum() on columns of table "listing_ownership_period" */
11369
+ export interface listingOwnershipPeriod_sum_order_by {
11370
+ reserve_cent_total?: InputMaybe<order_by>;
11371
+ }
11372
+
11131
11373
  /** update columns of table "listing_ownership_period" */
11132
11374
  export type listingOwnershipPeriod_update_column =
11133
11375
  /** column name */
@@ -11141,6 +11383,8 @@ export type listingOwnershipPeriod_update_column =
11141
11383
  /** column name */
11142
11384
  | "listingId"
11143
11385
  /** column name */
11386
+ | "reserve_cent_total"
11387
+ /** column name */
11144
11388
  | "setListingInactive"
11145
11389
  /** column name */
11146
11390
  | "startAt"
@@ -11150,12 +11394,29 @@ export type listingOwnershipPeriod_update_column =
11150
11394
  | "updatedAt";
11151
11395
 
11152
11396
  export interface listingOwnershipPeriod_updates {
11397
+ /** increments the numeric columns with given value of the filtered values */
11398
+ _inc?: InputMaybe<listingOwnershipPeriod_inc_input>;
11153
11399
  /** sets the columns of the filtered rows to the given values */
11154
11400
  _set?: InputMaybe<listingOwnershipPeriod_set_input>;
11155
11401
  /** filter the rows which have to be updated */
11156
11402
  where: listingOwnershipPeriod_bool_exp;
11157
11403
  }
11158
11404
 
11405
+ /** order by var_pop() on columns of table "listing_ownership_period" */
11406
+ export interface listingOwnershipPeriod_var_pop_order_by {
11407
+ reserve_cent_total?: InputMaybe<order_by>;
11408
+ }
11409
+
11410
+ /** order by var_samp() on columns of table "listing_ownership_period" */
11411
+ export interface listingOwnershipPeriod_var_samp_order_by {
11412
+ reserve_cent_total?: InputMaybe<order_by>;
11413
+ }
11414
+
11415
+ /** order by variance() on columns of table "listing_ownership_period" */
11416
+ export interface listingOwnershipPeriod_variance_order_by {
11417
+ reserve_cent_total?: InputMaybe<order_by>;
11418
+ }
11419
+
11159
11420
  export interface listing_aggregate_bool_exp {
11160
11421
  count?: InputMaybe<listing_aggregate_bool_exp_count>;
11161
11422
  }
@@ -16775,6 +17036,8 @@ export interface payment_line_bool_exp {
16775
17036
  connectionId?: InputMaybe<uuid_comparison_exp>;
16776
17037
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
16777
17038
  description?: InputMaybe<String_comparison_exp>;
17039
+ edited_type?: InputMaybe<String_comparison_exp>;
17040
+ effective_type?: InputMaybe<String_comparison_exp>;
16778
17041
  generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
16779
17042
  id?: InputMaybe<uuid_comparison_exp>;
16780
17043
  journalEntries?: InputMaybe<journalEntry_bool_exp>;
@@ -17061,6 +17324,7 @@ export interface payment_line_insert_input {
17061
17324
  connectionId?: InputMaybe<Scalars["uuid"]>;
17062
17325
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17063
17326
  description?: InputMaybe<Scalars["String"]>;
17327
+ edited_type?: InputMaybe<Scalars["String"]>;
17064
17328
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17065
17329
  id?: InputMaybe<Scalars["uuid"]>;
17066
17330
  journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
@@ -17101,6 +17365,8 @@ export interface payment_line_max_order_by {
17101
17365
  connectionId?: InputMaybe<order_by>;
17102
17366
  createdAt?: InputMaybe<order_by>;
17103
17367
  description?: InputMaybe<order_by>;
17368
+ edited_type?: InputMaybe<order_by>;
17369
+ effective_type?: InputMaybe<order_by>;
17104
17370
  generalLedgerPostingAt?: InputMaybe<order_by>;
17105
17371
  id?: InputMaybe<order_by>;
17106
17372
  lineId?: InputMaybe<order_by>;
@@ -17129,6 +17395,8 @@ export interface payment_line_min_order_by {
17129
17395
  connectionId?: InputMaybe<order_by>;
17130
17396
  createdAt?: InputMaybe<order_by>;
17131
17397
  description?: InputMaybe<order_by>;
17398
+ edited_type?: InputMaybe<order_by>;
17399
+ effective_type?: InputMaybe<order_by>;
17132
17400
  generalLedgerPostingAt?: InputMaybe<order_by>;
17133
17401
  id?: InputMaybe<order_by>;
17134
17402
  lineId?: InputMaybe<order_by>;
@@ -17176,6 +17444,8 @@ export interface payment_line_order_by {
17176
17444
  connectionId?: InputMaybe<order_by>;
17177
17445
  createdAt?: InputMaybe<order_by>;
17178
17446
  description?: InputMaybe<order_by>;
17447
+ edited_type?: InputMaybe<order_by>;
17448
+ effective_type?: InputMaybe<order_by>;
17179
17449
  generalLedgerPostingAt?: InputMaybe<order_by>;
17180
17450
  id?: InputMaybe<order_by>;
17181
17451
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
@@ -17233,6 +17503,10 @@ export type payment_line_select_column =
17233
17503
  /** column name */
17234
17504
  | "description"
17235
17505
  /** column name */
17506
+ | "edited_type"
17507
+ /** column name */
17508
+ | "effective_type"
17509
+ /** column name */
17236
17510
  | "generalLedgerPostingAt"
17237
17511
  /** column name */
17238
17512
  | "id"
@@ -17294,6 +17568,7 @@ export interface payment_line_set_input {
17294
17568
  connectionId?: InputMaybe<Scalars["uuid"]>;
17295
17569
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17296
17570
  description?: InputMaybe<Scalars["String"]>;
17571
+ edited_type?: InputMaybe<Scalars["String"]>;
17297
17572
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17298
17573
  id?: InputMaybe<Scalars["uuid"]>;
17299
17574
  lineId?: InputMaybe<Scalars["uuid"]>;
@@ -17353,6 +17628,8 @@ export interface payment_line_stream_cursor_value_input {
17353
17628
  connectionId?: InputMaybe<Scalars["uuid"]>;
17354
17629
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17355
17630
  description?: InputMaybe<Scalars["String"]>;
17631
+ edited_type?: InputMaybe<Scalars["String"]>;
17632
+ effective_type?: InputMaybe<Scalars["String"]>;
17356
17633
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17357
17634
  id?: InputMaybe<Scalars["uuid"]>;
17358
17635
  lineId?: InputMaybe<Scalars["uuid"]>;
@@ -17397,6 +17674,8 @@ export type payment_line_update_column =
17397
17674
  /** column name */
17398
17675
  | "description"
17399
17676
  /** column name */
17677
+ | "edited_type"
17678
+ /** column name */
17400
17679
  | "generalLedgerPostingAt"
17401
17680
  /** column name */
17402
17681
  | "id"
@@ -19810,6 +20089,7 @@ export interface reservation_avg_order_by {
19810
20089
  centPaymentFee?: InputMaybe<order_by>;
19811
20090
  centService?: InputMaybe<order_by>;
19812
20091
  centTotal?: InputMaybe<order_by>;
20092
+ effective_nights?: InputMaybe<order_by>;
19813
20093
  guests?: InputMaybe<order_by>;
19814
20094
  manager_cent_total?: InputMaybe<order_by>;
19815
20095
  nights?: InputMaybe<order_by>;
@@ -19850,6 +20130,11 @@ export interface reservation_bool_exp {
19850
20130
  connectionId?: InputMaybe<uuid_comparison_exp>;
19851
20131
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
19852
20132
  currency?: InputMaybe<currency_enum_comparison_exp>;
20133
+ edited_check_in?: InputMaybe<timestamptz_comparison_exp>;
20134
+ edited_check_out?: InputMaybe<timestamptz_comparison_exp>;
20135
+ effective_check_in?: InputMaybe<timestamptz_comparison_exp>;
20136
+ effective_check_out?: InputMaybe<timestamptz_comparison_exp>;
20137
+ effective_nights?: InputMaybe<Int_comparison_exp>;
19853
20138
  files?: InputMaybe<file_storage_bool_exp>;
19854
20139
  files_aggregate?: InputMaybe<file_storage_aggregate_bool_exp>;
19855
20140
  generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
@@ -19985,6 +20270,8 @@ export interface reservation_insert_input {
19985
20270
  connectionId?: InputMaybe<Scalars["uuid"]>;
19986
20271
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
19987
20272
  currency?: InputMaybe<currency_enum>;
20273
+ edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
20274
+ edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
19988
20275
  files?: InputMaybe<file_storage_arr_rel_insert_input>;
19989
20276
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
19990
20277
  general_ledger_status?: InputMaybe<activeStatus_enum>;
@@ -20053,6 +20340,11 @@ export interface reservation_max_order_by {
20053
20340
  confirmationCode?: InputMaybe<order_by>;
20054
20341
  connectionId?: InputMaybe<order_by>;
20055
20342
  createdAt?: InputMaybe<order_by>;
20343
+ edited_check_in?: InputMaybe<order_by>;
20344
+ edited_check_out?: InputMaybe<order_by>;
20345
+ effective_check_in?: InputMaybe<order_by>;
20346
+ effective_check_out?: InputMaybe<order_by>;
20347
+ effective_nights?: InputMaybe<order_by>;
20056
20348
  generalLedgerPostingAt?: InputMaybe<order_by>;
20057
20349
  guestName?: InputMaybe<order_by>;
20058
20350
  guests?: InputMaybe<order_by>;
@@ -20099,6 +20391,11 @@ export interface reservation_min_order_by {
20099
20391
  confirmationCode?: InputMaybe<order_by>;
20100
20392
  connectionId?: InputMaybe<order_by>;
20101
20393
  createdAt?: InputMaybe<order_by>;
20394
+ edited_check_in?: InputMaybe<order_by>;
20395
+ edited_check_out?: InputMaybe<order_by>;
20396
+ effective_check_in?: InputMaybe<order_by>;
20397
+ effective_check_out?: InputMaybe<order_by>;
20398
+ effective_nights?: InputMaybe<order_by>;
20102
20399
  generalLedgerPostingAt?: InputMaybe<order_by>;
20103
20400
  guestName?: InputMaybe<order_by>;
20104
20401
  guests?: InputMaybe<order_by>;
@@ -20164,6 +20461,11 @@ export interface reservation_order_by {
20164
20461
  connectionId?: InputMaybe<order_by>;
20165
20462
  createdAt?: InputMaybe<order_by>;
20166
20463
  currency?: InputMaybe<order_by>;
20464
+ edited_check_in?: InputMaybe<order_by>;
20465
+ edited_check_out?: InputMaybe<order_by>;
20466
+ effective_check_in?: InputMaybe<order_by>;
20467
+ effective_check_out?: InputMaybe<order_by>;
20468
+ effective_nights?: InputMaybe<order_by>;
20167
20469
  files_aggregate?: InputMaybe<file_storage_aggregate_order_by>;
20168
20470
  generalLedgerPostingAt?: InputMaybe<order_by>;
20169
20471
  general_ledger_status?: InputMaybe<order_by>;
@@ -20267,6 +20569,16 @@ export type reservation_select_column =
20267
20569
  /** column name */
20268
20570
  | "currency"
20269
20571
  /** column name */
20572
+ | "edited_check_in"
20573
+ /** column name */
20574
+ | "edited_check_out"
20575
+ /** column name */
20576
+ | "effective_check_in"
20577
+ /** column name */
20578
+ | "effective_check_out"
20579
+ /** column name */
20580
+ | "effective_nights"
20581
+ /** column name */
20270
20582
  | "generalLedgerPostingAt"
20271
20583
  /** column name */
20272
20584
  | "general_ledger_status"
@@ -20342,6 +20654,8 @@ export interface reservation_set_input {
20342
20654
  connectionId?: InputMaybe<Scalars["uuid"]>;
20343
20655
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
20344
20656
  currency?: InputMaybe<currency_enum>;
20657
+ edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
20658
+ edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
20345
20659
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
20346
20660
  general_ledger_status?: InputMaybe<activeStatus_enum>;
20347
20661
  guestName?: InputMaybe<Scalars["String"]>;
@@ -20468,6 +20782,7 @@ export interface reservation_stddev_order_by {
20468
20782
  centPaymentFee?: InputMaybe<order_by>;
20469
20783
  centService?: InputMaybe<order_by>;
20470
20784
  centTotal?: InputMaybe<order_by>;
20785
+ effective_nights?: InputMaybe<order_by>;
20471
20786
  guests?: InputMaybe<order_by>;
20472
20787
  manager_cent_total?: InputMaybe<order_by>;
20473
20788
  nights?: InputMaybe<order_by>;
@@ -20487,6 +20802,7 @@ export interface reservation_stddev_pop_order_by {
20487
20802
  centPaymentFee?: InputMaybe<order_by>;
20488
20803
  centService?: InputMaybe<order_by>;
20489
20804
  centTotal?: InputMaybe<order_by>;
20805
+ effective_nights?: InputMaybe<order_by>;
20490
20806
  guests?: InputMaybe<order_by>;
20491
20807
  manager_cent_total?: InputMaybe<order_by>;
20492
20808
  nights?: InputMaybe<order_by>;
@@ -20506,6 +20822,7 @@ export interface reservation_stddev_samp_order_by {
20506
20822
  centPaymentFee?: InputMaybe<order_by>;
20507
20823
  centService?: InputMaybe<order_by>;
20508
20824
  centTotal?: InputMaybe<order_by>;
20825
+ effective_nights?: InputMaybe<order_by>;
20509
20826
  guests?: InputMaybe<order_by>;
20510
20827
  manager_cent_total?: InputMaybe<order_by>;
20511
20828
  nights?: InputMaybe<order_by>;
@@ -20545,6 +20862,11 @@ export interface reservation_stream_cursor_value_input {
20545
20862
  connectionId?: InputMaybe<Scalars["uuid"]>;
20546
20863
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
20547
20864
  currency?: InputMaybe<currency_enum>;
20865
+ edited_check_in?: InputMaybe<Scalars["timestamptz"]>;
20866
+ edited_check_out?: InputMaybe<Scalars["timestamptz"]>;
20867
+ effective_check_in?: InputMaybe<Scalars["timestamptz"]>;
20868
+ effective_check_out?: InputMaybe<Scalars["timestamptz"]>;
20869
+ effective_nights?: InputMaybe<Scalars["Int"]>;
20548
20870
  generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
20549
20871
  general_ledger_status?: InputMaybe<activeStatus_enum>;
20550
20872
  guestName?: InputMaybe<Scalars["String"]>;
@@ -20586,6 +20908,7 @@ export interface reservation_sum_order_by {
20586
20908
  centPaymentFee?: InputMaybe<order_by>;
20587
20909
  centService?: InputMaybe<order_by>;
20588
20910
  centTotal?: InputMaybe<order_by>;
20911
+ effective_nights?: InputMaybe<order_by>;
20589
20912
  guests?: InputMaybe<order_by>;
20590
20913
  manager_cent_total?: InputMaybe<order_by>;
20591
20914
  nights?: InputMaybe<order_by>;
@@ -20638,6 +20961,10 @@ export type reservation_update_column =
20638
20961
  /** column name */
20639
20962
  | "currency"
20640
20963
  /** column name */
20964
+ | "edited_check_in"
20965
+ /** column name */
20966
+ | "edited_check_out"
20967
+ /** column name */
20641
20968
  | "generalLedgerPostingAt"
20642
20969
  /** column name */
20643
20970
  | "general_ledger_status"
@@ -20721,6 +21048,7 @@ export interface reservation_var_pop_order_by {
20721
21048
  centPaymentFee?: InputMaybe<order_by>;
20722
21049
  centService?: InputMaybe<order_by>;
20723
21050
  centTotal?: InputMaybe<order_by>;
21051
+ effective_nights?: InputMaybe<order_by>;
20724
21052
  guests?: InputMaybe<order_by>;
20725
21053
  manager_cent_total?: InputMaybe<order_by>;
20726
21054
  nights?: InputMaybe<order_by>;
@@ -20740,6 +21068,7 @@ export interface reservation_var_samp_order_by {
20740
21068
  centPaymentFee?: InputMaybe<order_by>;
20741
21069
  centService?: InputMaybe<order_by>;
20742
21070
  centTotal?: InputMaybe<order_by>;
21071
+ effective_nights?: InputMaybe<order_by>;
20743
21072
  guests?: InputMaybe<order_by>;
20744
21073
  manager_cent_total?: InputMaybe<order_by>;
20745
21074
  nights?: InputMaybe<order_by>;
@@ -20759,6 +21088,7 @@ export interface reservation_variance_order_by {
20759
21088
  centPaymentFee?: InputMaybe<order_by>;
20760
21089
  centService?: InputMaybe<order_by>;
20761
21090
  centTotal?: InputMaybe<order_by>;
21091
+ effective_nights?: InputMaybe<order_by>;
20762
21092
  guests?: InputMaybe<order_by>;
20763
21093
  manager_cent_total?: InputMaybe<order_by>;
20764
21094
  nights?: InputMaybe<order_by>;
@@ -26943,6 +27273,7 @@ export type transactionType_enum =
26943
27273
  | "deposit"
26944
27274
  | "expense"
26945
27275
  | "expense_recurringTemplate"
27276
+ | "payout"
26946
27277
  | "transfer";
26947
27278
 
26948
27279
  /** Boolean expression to compare columns of type "transactionType_enum". All fields are combined with logical 'AND'. */
@@ -27012,9 +27343,25 @@ export interface transactionType_updates {
27012
27343
  }
27013
27344
 
27014
27345
  export interface transaction_aggregate_bool_exp {
27346
+ bool_and?: InputMaybe<transaction_aggregate_bool_exp_bool_and>;
27347
+ bool_or?: InputMaybe<transaction_aggregate_bool_exp_bool_or>;
27015
27348
  count?: InputMaybe<transaction_aggregate_bool_exp_count>;
27016
27349
  }
27017
27350
 
27351
+ export interface transaction_aggregate_bool_exp_bool_and {
27352
+ arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns;
27353
+ distinct?: InputMaybe<Scalars["Boolean"]>;
27354
+ filter?: InputMaybe<transaction_bool_exp>;
27355
+ predicate: Boolean_comparison_exp;
27356
+ }
27357
+
27358
+ export interface transaction_aggregate_bool_exp_bool_or {
27359
+ arguments: transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns;
27360
+ distinct?: InputMaybe<Scalars["Boolean"]>;
27361
+ filter?: InputMaybe<transaction_bool_exp>;
27362
+ predicate: Boolean_comparison_exp;
27363
+ }
27364
+
27018
27365
  export interface transaction_aggregate_bool_exp_count {
27019
27366
  arguments?: InputMaybe<Array<transaction_select_column>>;
27020
27367
  distinct?: InputMaybe<Scalars["Boolean"]>;
@@ -27075,6 +27422,7 @@ export interface transaction_bool_exp {
27075
27422
  description?: InputMaybe<String_comparison_exp>;
27076
27423
  dueAt?: InputMaybe<timestamptz_comparison_exp>;
27077
27424
  id?: InputMaybe<uuid_comparison_exp>;
27425
+ is_opening_balance?: InputMaybe<Boolean_comparison_exp>;
27078
27426
  journalEntries?: InputMaybe<journalEntry_bool_exp>;
27079
27427
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_bool_exp>;
27080
27428
  lines?: InputMaybe<transactionLine_bool_exp>;
@@ -27151,6 +27499,7 @@ export interface transaction_insert_input {
27151
27499
  description?: InputMaybe<Scalars["String"]>;
27152
27500
  dueAt?: InputMaybe<Scalars["timestamptz"]>;
27153
27501
  id?: InputMaybe<Scalars["uuid"]>;
27502
+ is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
27154
27503
  journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
27155
27504
  lines?: InputMaybe<transactionLine_arr_rel_insert_input>;
27156
27505
  matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
@@ -27164,7 +27513,7 @@ export interface transaction_insert_input {
27164
27513
  recurringTemplate?: InputMaybe<transaction_obj_rel_insert_input>;
27165
27514
  recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
27166
27515
  recurringTemplateInstances?: InputMaybe<transaction_arr_rel_insert_input>;
27167
- /** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
27516
+ /** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
27168
27517
  short_ref?: InputMaybe<Scalars["String"]>;
27169
27518
  source?: InputMaybe<source_obj_rel_insert_input>;
27170
27519
  sourceId?: InputMaybe<Scalars["uuid"]>;
@@ -27195,7 +27544,7 @@ export interface transaction_max_order_by {
27195
27544
  paidAt?: InputMaybe<order_by>;
27196
27545
  recurringFeeId?: InputMaybe<order_by>;
27197
27546
  recurringTemplateId?: InputMaybe<order_by>;
27198
- /** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
27547
+ /** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
27199
27548
  short_ref?: InputMaybe<order_by>;
27200
27549
  sourceId?: InputMaybe<order_by>;
27201
27550
  tenantId?: InputMaybe<order_by>;
@@ -27222,7 +27571,7 @@ export interface transaction_min_order_by {
27222
27571
  paidAt?: InputMaybe<order_by>;
27223
27572
  recurringFeeId?: InputMaybe<order_by>;
27224
27573
  recurringTemplateId?: InputMaybe<order_by>;
27225
- /** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
27574
+ /** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
27226
27575
  short_ref?: InputMaybe<order_by>;
27227
27576
  sourceId?: InputMaybe<order_by>;
27228
27577
  tenantId?: InputMaybe<order_by>;
@@ -27261,6 +27610,7 @@ export interface transaction_order_by {
27261
27610
  description?: InputMaybe<order_by>;
27262
27611
  dueAt?: InputMaybe<order_by>;
27263
27612
  id?: InputMaybe<order_by>;
27613
+ is_opening_balance?: InputMaybe<order_by>;
27264
27614
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
27265
27615
  lines_aggregate?: InputMaybe<transactionLine_aggregate_order_by>;
27266
27616
  matchBankAccountLast4?: InputMaybe<order_by>;
@@ -27319,6 +27669,8 @@ export type transaction_select_column =
27319
27669
  /** column name */
27320
27670
  | "id"
27321
27671
  /** column name */
27672
+ | "is_opening_balance"
27673
+ /** column name */
27322
27674
  | "matchBankAccountLast4"
27323
27675
  /** column name */
27324
27676
  | "matchStatus"
@@ -27353,6 +27705,16 @@ export type transaction_select_column =
27353
27705
  /** column name */
27354
27706
  | "updatedAt";
27355
27707
 
27708
+ /** select "transaction_aggregate_bool_exp_bool_and_arguments_columns" columns of table "accounting.transaction" */
27709
+ export type transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns =
27710
+ /** column name */
27711
+ "is_opening_balance";
27712
+
27713
+ /** select "transaction_aggregate_bool_exp_bool_or_arguments_columns" columns of table "accounting.transaction" */
27714
+ export type transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns =
27715
+ /** column name */
27716
+ "is_opening_balance";
27717
+
27356
27718
  /** input type for updating data in table "accounting.transaction" */
27357
27719
  export interface transaction_set_input {
27358
27720
  accountId?: InputMaybe<Scalars["uuid"]>;
@@ -27365,6 +27727,7 @@ export interface transaction_set_input {
27365
27727
  description?: InputMaybe<Scalars["String"]>;
27366
27728
  dueAt?: InputMaybe<Scalars["timestamptz"]>;
27367
27729
  id?: InputMaybe<Scalars["uuid"]>;
27730
+ is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
27368
27731
  matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
27369
27732
  match_line_type_classification?: InputMaybe<Scalars["String"]>;
27370
27733
  match_reservation_confirmation_code?: InputMaybe<Scalars["String"]>;
@@ -27374,7 +27737,7 @@ export interface transaction_set_input {
27374
27737
  recurringFeeId?: InputMaybe<Scalars["uuid"]>;
27375
27738
  recurringPattern?: InputMaybe<Scalars["jsonb"]>;
27376
27739
  recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
27377
- /** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
27740
+ /** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
27378
27741
  short_ref?: InputMaybe<Scalars["String"]>;
27379
27742
  sourceId?: InputMaybe<Scalars["uuid"]>;
27380
27743
  status?: InputMaybe<activeStatus_enum>;
@@ -27419,6 +27782,7 @@ export interface transaction_stream_cursor_value_input {
27419
27782
  description?: InputMaybe<Scalars["String"]>;
27420
27783
  dueAt?: InputMaybe<Scalars["timestamptz"]>;
27421
27784
  id?: InputMaybe<Scalars["uuid"]>;
27785
+ is_opening_balance?: InputMaybe<Scalars["Boolean"]>;
27422
27786
  matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
27423
27787
  matchStatus?: InputMaybe<Scalars["String"]>;
27424
27788
  match_line_type_classification?: InputMaybe<Scalars["String"]>;
@@ -27429,7 +27793,7 @@ export interface transaction_stream_cursor_value_input {
27429
27793
  recurringFeeId?: InputMaybe<Scalars["uuid"]>;
27430
27794
  recurringPattern?: InputMaybe<Scalars["jsonb"]>;
27431
27795
  recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
27432
- /** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
27796
+ /** Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type). */
27433
27797
  short_ref?: InputMaybe<Scalars["String"]>;
27434
27798
  sourceId?: InputMaybe<Scalars["uuid"]>;
27435
27799
  status?: InputMaybe<activeStatus_enum>;
@@ -27467,6 +27831,8 @@ export type transaction_update_column =
27467
27831
  /** column name */
27468
27832
  | "id"
27469
27833
  /** column name */
27834
+ | "is_opening_balance"
27835
+ /** column name */
27470
27836
  | "matchBankAccountLast4"
27471
27837
  /** column name */
27472
27838
  | "match_line_type_classification"
@@ -33331,6 +33697,130 @@ export declare const generatedSchema: {
33331
33697
  _set: { __type: "billing_payment_method_type_set_input" };
33332
33698
  where: { __type: "billing_payment_method_type_bool_exp!" };
33333
33699
  };
33700
+ bookingChannelIconCandidate: {
33701
+ __typename: { __type: "String!" };
33702
+ bookingChannel: { __type: "booking_channel!" };
33703
+ bookingChannelId: { __type: "uuid!" };
33704
+ comment: { __type: "String" };
33705
+ createdAt: { __type: "timestamptz!" };
33706
+ fileStorage: { __type: "file_storage!" };
33707
+ fileStorageId: { __type: "uuid!" };
33708
+ id: { __type: "uuid!" };
33709
+ source: { __type: "String" };
33710
+ updatedAt: { __type: "timestamptz!" };
33711
+ };
33712
+ bookingChannelIconCandidate_aggregate: {
33713
+ __typename: { __type: "String!" };
33714
+ aggregate: { __type: "bookingChannelIconCandidate_aggregate_fields" };
33715
+ nodes: { __type: "[bookingChannelIconCandidate!]!" };
33716
+ };
33717
+ bookingChannelIconCandidate_aggregate_fields: {
33718
+ __typename: { __type: "String!" };
33719
+ count: {
33720
+ __type: "Int!";
33721
+ __args: {
33722
+ columns: "[bookingChannelIconCandidate_select_column!]";
33723
+ distinct: "Boolean";
33724
+ };
33725
+ };
33726
+ max: { __type: "bookingChannelIconCandidate_max_fields" };
33727
+ min: { __type: "bookingChannelIconCandidate_min_fields" };
33728
+ };
33729
+ bookingChannelIconCandidate_bool_exp: {
33730
+ _and: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
33731
+ _not: { __type: "bookingChannelIconCandidate_bool_exp" };
33732
+ _or: { __type: "[bookingChannelIconCandidate_bool_exp!]" };
33733
+ bookingChannel: { __type: "booking_channel_bool_exp" };
33734
+ bookingChannelId: { __type: "uuid_comparison_exp" };
33735
+ comment: { __type: "String_comparison_exp" };
33736
+ createdAt: { __type: "timestamptz_comparison_exp" };
33737
+ fileStorage: { __type: "file_storage_bool_exp" };
33738
+ fileStorageId: { __type: "uuid_comparison_exp" };
33739
+ id: { __type: "uuid_comparison_exp" };
33740
+ source: { __type: "String_comparison_exp" };
33741
+ updatedAt: { __type: "timestamptz_comparison_exp" };
33742
+ };
33743
+ bookingChannelIconCandidate_insert_input: {
33744
+ bookingChannel: { __type: "booking_channel_obj_rel_insert_input" };
33745
+ bookingChannelId: { __type: "uuid" };
33746
+ comment: { __type: "String" };
33747
+ createdAt: { __type: "timestamptz" };
33748
+ fileStorage: { __type: "file_storage_obj_rel_insert_input" };
33749
+ fileStorageId: { __type: "uuid" };
33750
+ id: { __type: "uuid" };
33751
+ source: { __type: "String" };
33752
+ updatedAt: { __type: "timestamptz" };
33753
+ };
33754
+ bookingChannelIconCandidate_max_fields: {
33755
+ __typename: { __type: "String!" };
33756
+ bookingChannelId: { __type: "uuid" };
33757
+ comment: { __type: "String" };
33758
+ createdAt: { __type: "timestamptz" };
33759
+ fileStorageId: { __type: "uuid" };
33760
+ id: { __type: "uuid" };
33761
+ source: { __type: "String" };
33762
+ updatedAt: { __type: "timestamptz" };
33763
+ };
33764
+ bookingChannelIconCandidate_min_fields: {
33765
+ __typename: { __type: "String!" };
33766
+ bookingChannelId: { __type: "uuid" };
33767
+ comment: { __type: "String" };
33768
+ createdAt: { __type: "timestamptz" };
33769
+ fileStorageId: { __type: "uuid" };
33770
+ id: { __type: "uuid" };
33771
+ source: { __type: "String" };
33772
+ updatedAt: { __type: "timestamptz" };
33773
+ };
33774
+ bookingChannelIconCandidate_mutation_response: {
33775
+ __typename: { __type: "String!" };
33776
+ affected_rows: { __type: "Int!" };
33777
+ returning: { __type: "[bookingChannelIconCandidate!]!" };
33778
+ };
33779
+ bookingChannelIconCandidate_on_conflict: {
33780
+ constraint: { __type: "bookingChannelIconCandidate_constraint!" };
33781
+ update_columns: { __type: "[bookingChannelIconCandidate_update_column!]!" };
33782
+ where: { __type: "bookingChannelIconCandidate_bool_exp" };
33783
+ };
33784
+ bookingChannelIconCandidate_order_by: {
33785
+ bookingChannel: { __type: "booking_channel_order_by" };
33786
+ bookingChannelId: { __type: "order_by" };
33787
+ comment: { __type: "order_by" };
33788
+ createdAt: { __type: "order_by" };
33789
+ fileStorage: { __type: "file_storage_order_by" };
33790
+ fileStorageId: { __type: "order_by" };
33791
+ id: { __type: "order_by" };
33792
+ source: { __type: "order_by" };
33793
+ updatedAt: { __type: "order_by" };
33794
+ };
33795
+ bookingChannelIconCandidate_pk_columns_input: { id: { __type: "uuid!" } };
33796
+ bookingChannelIconCandidate_set_input: {
33797
+ bookingChannelId: { __type: "uuid" };
33798
+ comment: { __type: "String" };
33799
+ createdAt: { __type: "timestamptz" };
33800
+ fileStorageId: { __type: "uuid" };
33801
+ id: { __type: "uuid" };
33802
+ source: { __type: "String" };
33803
+ updatedAt: { __type: "timestamptz" };
33804
+ };
33805
+ bookingChannelIconCandidate_stream_cursor_input: {
33806
+ initial_value: {
33807
+ __type: "bookingChannelIconCandidate_stream_cursor_value_input!";
33808
+ };
33809
+ ordering: { __type: "cursor_ordering" };
33810
+ };
33811
+ bookingChannelIconCandidate_stream_cursor_value_input: {
33812
+ bookingChannelId: { __type: "uuid" };
33813
+ comment: { __type: "String" };
33814
+ createdAt: { __type: "timestamptz" };
33815
+ fileStorageId: { __type: "uuid" };
33816
+ id: { __type: "uuid" };
33817
+ source: { __type: "String" };
33818
+ updatedAt: { __type: "timestamptz" };
33819
+ };
33820
+ bookingChannelIconCandidate_updates: {
33821
+ _set: { __type: "bookingChannelIconCandidate_set_input" };
33822
+ where: { __type: "bookingChannelIconCandidate_bool_exp!" };
33823
+ };
33334
33824
  booking_channel: {
33335
33825
  __typename: { __type: "String!" };
33336
33826
  channelRef: { __type: "String" };
@@ -33357,6 +33847,7 @@ export declare const generatedSchema: {
33357
33847
  where: "reservation_bool_exp";
33358
33848
  };
33359
33849
  };
33850
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33360
33851
  settings: {
33361
33852
  __type: "[setting!]!";
33362
33853
  __args: {
@@ -33447,6 +33938,7 @@ export declare const generatedSchema: {
33447
33938
  id: { __type: "uuid_comparison_exp" };
33448
33939
  reservations: { __type: "reservation_bool_exp" };
33449
33940
  reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
33941
+ selectedBookingChannelIconCandidateId: { __type: "uuid_comparison_exp" };
33450
33942
  settings: { __type: "setting_bool_exp" };
33451
33943
  settingsLeft: { __type: "setting_bool_exp" };
33452
33944
  settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
@@ -33462,6 +33954,7 @@ export declare const generatedSchema: {
33462
33954
  icon: { __type: "String" };
33463
33955
  id: { __type: "uuid" };
33464
33956
  reservations: { __type: "reservation_arr_rel_insert_input" };
33957
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33465
33958
  settings: { __type: "setting_arr_rel_insert_input" };
33466
33959
  settingsLeft: { __type: "setting_arr_rel_insert_input" };
33467
33960
  settingsRight: { __type: "setting_arr_rel_insert_input" };
@@ -33474,6 +33967,7 @@ export declare const generatedSchema: {
33474
33967
  createdAt: { __type: "timestamptz" };
33475
33968
  icon: { __type: "String" };
33476
33969
  id: { __type: "uuid" };
33970
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33477
33971
  uniqueRef: { __type: "String" };
33478
33972
  updatedAt: { __type: "timestamptz" };
33479
33973
  };
@@ -33483,6 +33977,7 @@ export declare const generatedSchema: {
33483
33977
  createdAt: { __type: "timestamptz" };
33484
33978
  icon: { __type: "String" };
33485
33979
  id: { __type: "uuid" };
33980
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33486
33981
  uniqueRef: { __type: "String" };
33487
33982
  updatedAt: { __type: "timestamptz" };
33488
33983
  };
@@ -33506,6 +34001,7 @@ export declare const generatedSchema: {
33506
34001
  icon: { __type: "order_by" };
33507
34002
  id: { __type: "order_by" };
33508
34003
  reservations_aggregate: { __type: "reservation_aggregate_order_by" };
34004
+ selectedBookingChannelIconCandidateId: { __type: "order_by" };
33509
34005
  settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
33510
34006
  settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
33511
34007
  settings_aggregate: { __type: "setting_aggregate_order_by" };
@@ -33518,6 +34014,7 @@ export declare const generatedSchema: {
33518
34014
  createdAt: { __type: "timestamptz" };
33519
34015
  icon: { __type: "String" };
33520
34016
  id: { __type: "uuid" };
34017
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33521
34018
  uniqueRef: { __type: "String" };
33522
34019
  updatedAt: { __type: "timestamptz" };
33523
34020
  };
@@ -33530,6 +34027,7 @@ export declare const generatedSchema: {
33530
34027
  createdAt: { __type: "timestamptz" };
33531
34028
  icon: { __type: "String" };
33532
34029
  id: { __type: "uuid" };
34030
+ selectedBookingChannelIconCandidateId: { __type: "uuid" };
33533
34031
  uniqueRef: { __type: "String" };
33534
34032
  updatedAt: { __type: "timestamptz" };
33535
34033
  };
@@ -38273,6 +38771,8 @@ export declare const generatedSchema: {
38273
38771
  entitySortNum: { __type: "Int" };
38274
38772
  entityType: { __type: "journalEntryEntityType_enum" };
38275
38773
  id: { __type: "uuid!" };
38774
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
38775
+ ledger: { __type: "journal_entry_ledger" };
38276
38776
  line: { __type: "payment_line" };
38277
38777
  lineId: { __type: "uuid" };
38278
38778
  lineUniqueRef: { __type: "String" };
@@ -38586,6 +39086,8 @@ export declare const generatedSchema: {
38586
39086
  entitySortNum: { __type: "Int_comparison_exp" };
38587
39087
  entityType: { __type: "journalEntryEntityType_enum_comparison_exp" };
38588
39088
  id: { __type: "uuid_comparison_exp" };
39089
+ inactive_reason: { __type: "journal_entry_inactive_reason_comparison_exp" };
39090
+ ledger: { __type: "journal_entry_ledger_comparison_exp" };
38589
39091
  line: { __type: "payment_line_bool_exp" };
38590
39092
  lineId: { __type: "uuid_comparison_exp" };
38591
39093
  lineUniqueRef: { __type: "String_comparison_exp" };
@@ -38641,6 +39143,8 @@ export declare const generatedSchema: {
38641
39143
  entitySortNum: { __type: "Int" };
38642
39144
  entityType: { __type: "journalEntryEntityType_enum" };
38643
39145
  id: { __type: "uuid" };
39146
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
39147
+ ledger: { __type: "journal_entry_ledger" };
38644
39148
  line: { __type: "payment_line_obj_rel_insert_input" };
38645
39149
  lineId: { __type: "uuid" };
38646
39150
  lineUniqueRef: { __type: "String" };
@@ -38686,6 +39190,8 @@ export declare const generatedSchema: {
38686
39190
  description: { __type: "String" };
38687
39191
  entitySortNum: { __type: "Int" };
38688
39192
  id: { __type: "uuid" };
39193
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
39194
+ ledger: { __type: "journal_entry_ledger" };
38689
39195
  lineId: { __type: "uuid" };
38690
39196
  lineUniqueRef: { __type: "String" };
38691
39197
  listingId: { __type: "uuid" };
@@ -38712,6 +39218,8 @@ export declare const generatedSchema: {
38712
39218
  description: { __type: "order_by" };
38713
39219
  entitySortNum: { __type: "order_by" };
38714
39220
  id: { __type: "order_by" };
39221
+ inactive_reason: { __type: "order_by" };
39222
+ ledger: { __type: "order_by" };
38715
39223
  lineId: { __type: "order_by" };
38716
39224
  lineUniqueRef: { __type: "order_by" };
38717
39225
  listingId: { __type: "order_by" };
@@ -38739,6 +39247,8 @@ export declare const generatedSchema: {
38739
39247
  description: { __type: "String" };
38740
39248
  entitySortNum: { __type: "Int" };
38741
39249
  id: { __type: "uuid" };
39250
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
39251
+ ledger: { __type: "journal_entry_ledger" };
38742
39252
  lineId: { __type: "uuid" };
38743
39253
  lineUniqueRef: { __type: "String" };
38744
39254
  listingId: { __type: "uuid" };
@@ -38765,6 +39275,8 @@ export declare const generatedSchema: {
38765
39275
  description: { __type: "order_by" };
38766
39276
  entitySortNum: { __type: "order_by" };
38767
39277
  id: { __type: "order_by" };
39278
+ inactive_reason: { __type: "order_by" };
39279
+ ledger: { __type: "order_by" };
38768
39280
  lineId: { __type: "order_by" };
38769
39281
  lineUniqueRef: { __type: "order_by" };
38770
39282
  listingId: { __type: "order_by" };
@@ -38806,6 +39318,8 @@ export declare const generatedSchema: {
38806
39318
  entitySortNum: { __type: "order_by" };
38807
39319
  entityType: { __type: "order_by" };
38808
39320
  id: { __type: "order_by" };
39321
+ inactive_reason: { __type: "order_by" };
39322
+ ledger: { __type: "order_by" };
38809
39323
  line: { __type: "payment_line_order_by" };
38810
39324
  lineId: { __type: "order_by" };
38811
39325
  lineUniqueRef: { __type: "order_by" };
@@ -38852,6 +39366,8 @@ export declare const generatedSchema: {
38852
39366
  entitySortNum: { __type: "Int" };
38853
39367
  entityType: { __type: "journalEntryEntityType_enum" };
38854
39368
  id: { __type: "uuid" };
39369
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
39370
+ ledger: { __type: "journal_entry_ledger" };
38855
39371
  lineId: { __type: "uuid" };
38856
39372
  lineUniqueRef: { __type: "String" };
38857
39373
  listingId: { __type: "uuid" };
@@ -38920,6 +39436,8 @@ export declare const generatedSchema: {
38920
39436
  entitySortNum: { __type: "Int" };
38921
39437
  entityType: { __type: "journalEntryEntityType_enum" };
38922
39438
  id: { __type: "uuid" };
39439
+ inactive_reason: { __type: "journal_entry_inactive_reason" };
39440
+ ledger: { __type: "journal_entry_ledger" };
38923
39441
  lineId: { __type: "uuid" };
38924
39442
  lineUniqueRef: { __type: "String" };
38925
39443
  listingId: { __type: "uuid" };
@@ -38990,6 +39508,28 @@ export declare const generatedSchema: {
38990
39508
  entitySortNum: { __type: "order_by" };
38991
39509
  txnNum: { __type: "order_by" };
38992
39510
  };
39511
+ journal_entry_inactive_reason_comparison_exp: {
39512
+ _eq: { __type: "journal_entry_inactive_reason" };
39513
+ _gt: { __type: "journal_entry_inactive_reason" };
39514
+ _gte: { __type: "journal_entry_inactive_reason" };
39515
+ _in: { __type: "[journal_entry_inactive_reason!]" };
39516
+ _is_null: { __type: "Boolean" };
39517
+ _lt: { __type: "journal_entry_inactive_reason" };
39518
+ _lte: { __type: "journal_entry_inactive_reason" };
39519
+ _neq: { __type: "journal_entry_inactive_reason" };
39520
+ _nin: { __type: "[journal_entry_inactive_reason!]" };
39521
+ };
39522
+ journal_entry_ledger_comparison_exp: {
39523
+ _eq: { __type: "journal_entry_ledger" };
39524
+ _gt: { __type: "journal_entry_ledger" };
39525
+ _gte: { __type: "journal_entry_ledger" };
39526
+ _in: { __type: "[journal_entry_ledger!]" };
39527
+ _is_null: { __type: "Boolean" };
39528
+ _lt: { __type: "journal_entry_ledger" };
39529
+ _lte: { __type: "journal_entry_ledger" };
39530
+ _neq: { __type: "journal_entry_ledger" };
39531
+ _nin: { __type: "[journal_entry_ledger!]" };
39532
+ };
38993
39533
  json_comparison_exp: {
38994
39534
  _eq: { __type: "json" };
38995
39535
  _gt: { __type: "json" };
@@ -39428,6 +39968,7 @@ export declare const generatedSchema: {
39428
39968
  where: "owner_statement_bool_exp";
39429
39969
  };
39430
39970
  };
39971
+ reserve_cent_total: { __type: "bigint!" };
39431
39972
  setListingInactive: { __type: "Boolean" };
39432
39973
  startAt: { __type: "timestamptz" };
39433
39974
  tenant: { __type: "tenant!" };
@@ -39785,6 +40326,7 @@ export declare const generatedSchema: {
39785
40326
  };
39786
40327
  listingOwnershipPeriod_aggregate_fields: {
39787
40328
  __typename: { __type: "String!" };
40329
+ avg: { __type: "listingOwnershipPeriod_avg_fields" };
39788
40330
  count: {
39789
40331
  __type: "Int!";
39790
40332
  __args: {
@@ -39794,16 +40336,38 @@ export declare const generatedSchema: {
39794
40336
  };
39795
40337
  max: { __type: "listingOwnershipPeriod_max_fields" };
39796
40338
  min: { __type: "listingOwnershipPeriod_min_fields" };
40339
+ stddev: { __type: "listingOwnershipPeriod_stddev_fields" };
40340
+ stddev_pop: { __type: "listingOwnershipPeriod_stddev_pop_fields" };
40341
+ stddev_samp: { __type: "listingOwnershipPeriod_stddev_samp_fields" };
40342
+ sum: { __type: "listingOwnershipPeriod_sum_fields" };
40343
+ var_pop: { __type: "listingOwnershipPeriod_var_pop_fields" };
40344
+ var_samp: { __type: "listingOwnershipPeriod_var_samp_fields" };
40345
+ variance: { __type: "listingOwnershipPeriod_variance_fields" };
39797
40346
  };
39798
40347
  listingOwnershipPeriod_aggregate_order_by: {
40348
+ avg: { __type: "listingOwnershipPeriod_avg_order_by" };
39799
40349
  count: { __type: "order_by" };
39800
40350
  max: { __type: "listingOwnershipPeriod_max_order_by" };
39801
40351
  min: { __type: "listingOwnershipPeriod_min_order_by" };
40352
+ stddev: { __type: "listingOwnershipPeriod_stddev_order_by" };
40353
+ stddev_pop: { __type: "listingOwnershipPeriod_stddev_pop_order_by" };
40354
+ stddev_samp: { __type: "listingOwnershipPeriod_stddev_samp_order_by" };
40355
+ sum: { __type: "listingOwnershipPeriod_sum_order_by" };
40356
+ var_pop: { __type: "listingOwnershipPeriod_var_pop_order_by" };
40357
+ var_samp: { __type: "listingOwnershipPeriod_var_samp_order_by" };
40358
+ variance: { __type: "listingOwnershipPeriod_variance_order_by" };
39802
40359
  };
39803
40360
  listingOwnershipPeriod_arr_rel_insert_input: {
39804
40361
  data: { __type: "[listingOwnershipPeriod_insert_input!]!" };
39805
40362
  on_conflict: { __type: "listingOwnershipPeriod_on_conflict" };
39806
40363
  };
40364
+ listingOwnershipPeriod_avg_fields: {
40365
+ __typename: { __type: "String!" };
40366
+ reserve_cent_total: { __type: "Float" };
40367
+ };
40368
+ listingOwnershipPeriod_avg_order_by: {
40369
+ reserve_cent_total: { __type: "order_by" };
40370
+ };
39807
40371
  listingOwnershipPeriod_bool_exp: {
39808
40372
  _and: { __type: "[listingOwnershipPeriod_bool_exp!]" };
39809
40373
  _not: { __type: "listingOwnershipPeriod_bool_exp" };
@@ -39824,12 +40388,16 @@ export declare const generatedSchema: {
39824
40388
  };
39825
40389
  ownerStatements: { __type: "owner_statement_bool_exp" };
39826
40390
  ownerStatements_aggregate: { __type: "owner_statement_aggregate_bool_exp" };
40391
+ reserve_cent_total: { __type: "bigint_comparison_exp" };
39827
40392
  setListingInactive: { __type: "Boolean_comparison_exp" };
39828
40393
  startAt: { __type: "timestamptz_comparison_exp" };
39829
40394
  tenant: { __type: "tenant_bool_exp" };
39830
40395
  tenantId: { __type: "uuid_comparison_exp" };
39831
40396
  updatedAt: { __type: "timestamptz_comparison_exp" };
39832
40397
  };
40398
+ listingOwnershipPeriod_inc_input: {
40399
+ reserve_cent_total: { __type: "bigint" };
40400
+ };
39833
40401
  listingOwnershipPeriod_insert_input: {
39834
40402
  businessModel: { __type: "listingOwnershipPeriodBusinessModel_enum" };
39835
40403
  createdAt: { __type: "timestamptz" };
@@ -39840,6 +40408,7 @@ export declare const generatedSchema: {
39840
40408
  listingId: { __type: "uuid" };
39841
40409
  members: { __type: "listingOwnershipPeriodMember_arr_rel_insert_input" };
39842
40410
  ownerStatements: { __type: "owner_statement_arr_rel_insert_input" };
40411
+ reserve_cent_total: { __type: "bigint" };
39843
40412
  setListingInactive: { __type: "Boolean" };
39844
40413
  startAt: { __type: "timestamptz" };
39845
40414
  tenant: { __type: "tenant_obj_rel_insert_input" };
@@ -39852,6 +40421,7 @@ export declare const generatedSchema: {
39852
40421
  endAt: { __type: "timestamptz" };
39853
40422
  id: { __type: "uuid" };
39854
40423
  listingId: { __type: "uuid" };
40424
+ reserve_cent_total: { __type: "bigint" };
39855
40425
  startAt: { __type: "timestamptz" };
39856
40426
  tenantId: { __type: "uuid" };
39857
40427
  updatedAt: { __type: "timestamptz" };
@@ -39861,6 +40431,7 @@ export declare const generatedSchema: {
39861
40431
  endAt: { __type: "order_by" };
39862
40432
  id: { __type: "order_by" };
39863
40433
  listingId: { __type: "order_by" };
40434
+ reserve_cent_total: { __type: "order_by" };
39864
40435
  startAt: { __type: "order_by" };
39865
40436
  tenantId: { __type: "order_by" };
39866
40437
  updatedAt: { __type: "order_by" };
@@ -39871,6 +40442,7 @@ export declare const generatedSchema: {
39871
40442
  endAt: { __type: "timestamptz" };
39872
40443
  id: { __type: "uuid" };
39873
40444
  listingId: { __type: "uuid" };
40445
+ reserve_cent_total: { __type: "bigint" };
39874
40446
  startAt: { __type: "timestamptz" };
39875
40447
  tenantId: { __type: "uuid" };
39876
40448
  updatedAt: { __type: "timestamptz" };
@@ -39880,6 +40452,7 @@ export declare const generatedSchema: {
39880
40452
  endAt: { __type: "order_by" };
39881
40453
  id: { __type: "order_by" };
39882
40454
  listingId: { __type: "order_by" };
40455
+ reserve_cent_total: { __type: "order_by" };
39883
40456
  startAt: { __type: "order_by" };
39884
40457
  tenantId: { __type: "order_by" };
39885
40458
  updatedAt: { __type: "order_by" };
@@ -39910,6 +40483,7 @@ export declare const generatedSchema: {
39910
40483
  __type: "listingOwnershipPeriodMember_aggregate_order_by";
39911
40484
  };
39912
40485
  ownerStatements_aggregate: { __type: "owner_statement_aggregate_order_by" };
40486
+ reserve_cent_total: { __type: "order_by" };
39913
40487
  setListingInactive: { __type: "order_by" };
39914
40488
  startAt: { __type: "order_by" };
39915
40489
  tenant: { __type: "tenant_order_by" };
@@ -39923,11 +40497,33 @@ export declare const generatedSchema: {
39923
40497
  endAt: { __type: "timestamptz" };
39924
40498
  id: { __type: "uuid" };
39925
40499
  listingId: { __type: "uuid" };
40500
+ reserve_cent_total: { __type: "bigint" };
39926
40501
  setListingInactive: { __type: "Boolean" };
39927
40502
  startAt: { __type: "timestamptz" };
39928
40503
  tenantId: { __type: "uuid" };
39929
40504
  updatedAt: { __type: "timestamptz" };
39930
40505
  };
40506
+ listingOwnershipPeriod_stddev_fields: {
40507
+ __typename: { __type: "String!" };
40508
+ reserve_cent_total: { __type: "Float" };
40509
+ };
40510
+ listingOwnershipPeriod_stddev_order_by: {
40511
+ reserve_cent_total: { __type: "order_by" };
40512
+ };
40513
+ listingOwnershipPeriod_stddev_pop_fields: {
40514
+ __typename: { __type: "String!" };
40515
+ reserve_cent_total: { __type: "Float" };
40516
+ };
40517
+ listingOwnershipPeriod_stddev_pop_order_by: {
40518
+ reserve_cent_total: { __type: "order_by" };
40519
+ };
40520
+ listingOwnershipPeriod_stddev_samp_fields: {
40521
+ __typename: { __type: "String!" };
40522
+ reserve_cent_total: { __type: "Float" };
40523
+ };
40524
+ listingOwnershipPeriod_stddev_samp_order_by: {
40525
+ reserve_cent_total: { __type: "order_by" };
40526
+ };
39931
40527
  listingOwnershipPeriod_stream_cursor_input: {
39932
40528
  initial_value: {
39933
40529
  __type: "listingOwnershipPeriod_stream_cursor_value_input!";
@@ -39940,15 +40536,45 @@ export declare const generatedSchema: {
39940
40536
  endAt: { __type: "timestamptz" };
39941
40537
  id: { __type: "uuid" };
39942
40538
  listingId: { __type: "uuid" };
40539
+ reserve_cent_total: { __type: "bigint" };
39943
40540
  setListingInactive: { __type: "Boolean" };
39944
40541
  startAt: { __type: "timestamptz" };
39945
40542
  tenantId: { __type: "uuid" };
39946
40543
  updatedAt: { __type: "timestamptz" };
39947
40544
  };
40545
+ listingOwnershipPeriod_sum_fields: {
40546
+ __typename: { __type: "String!" };
40547
+ reserve_cent_total: { __type: "bigint" };
40548
+ };
40549
+ listingOwnershipPeriod_sum_order_by: {
40550
+ reserve_cent_total: { __type: "order_by" };
40551
+ };
39948
40552
  listingOwnershipPeriod_updates: {
40553
+ _inc: { __type: "listingOwnershipPeriod_inc_input" };
39949
40554
  _set: { __type: "listingOwnershipPeriod_set_input" };
39950
40555
  where: { __type: "listingOwnershipPeriod_bool_exp!" };
39951
40556
  };
40557
+ listingOwnershipPeriod_var_pop_fields: {
40558
+ __typename: { __type: "String!" };
40559
+ reserve_cent_total: { __type: "Float" };
40560
+ };
40561
+ listingOwnershipPeriod_var_pop_order_by: {
40562
+ reserve_cent_total: { __type: "order_by" };
40563
+ };
40564
+ listingOwnershipPeriod_var_samp_fields: {
40565
+ __typename: { __type: "String!" };
40566
+ reserve_cent_total: { __type: "Float" };
40567
+ };
40568
+ listingOwnershipPeriod_var_samp_order_by: {
40569
+ reserve_cent_total: { __type: "order_by" };
40570
+ };
40571
+ listingOwnershipPeriod_variance_fields: {
40572
+ __typename: { __type: "String!" };
40573
+ reserve_cent_total: { __type: "Float" };
40574
+ };
40575
+ listingOwnershipPeriod_variance_order_by: {
40576
+ reserve_cent_total: { __type: "order_by" };
40577
+ };
39952
40578
  listing_aggregate: {
39953
40579
  __typename: { __type: "String!" };
39954
40580
  aggregate: { __type: "listing_aggregate_fields" };
@@ -42336,6 +42962,14 @@ export declare const generatedSchema: {
42336
42962
  __type: "booking_channel";
42337
42963
  __args: { id: "uuid!" };
42338
42964
  };
42965
+ deleteBookingChannelIconCandidate: {
42966
+ __type: "bookingChannelIconCandidate";
42967
+ __args: { id: "uuid!" };
42968
+ };
42969
+ deleteBookingChannelIconCandidates: {
42970
+ __type: "bookingChannelIconCandidate_mutation_response";
42971
+ __args: { where: "bookingChannelIconCandidate_bool_exp!" };
42972
+ };
42339
42973
  deleteBookingChannels: {
42340
42974
  __type: "booking_channel_mutation_response";
42341
42975
  __args: { where: "booking_channel_bool_exp!" };
@@ -43308,6 +43942,20 @@ export declare const generatedSchema: {
43308
43942
  on_conflict: "booking_channel_on_conflict";
43309
43943
  };
43310
43944
  };
43945
+ insertBookingChannelIconCandidate: {
43946
+ __type: "bookingChannelIconCandidate";
43947
+ __args: {
43948
+ object: "bookingChannelIconCandidate_insert_input!";
43949
+ on_conflict: "bookingChannelIconCandidate_on_conflict";
43950
+ };
43951
+ };
43952
+ insertBookingChannelIconCandidates: {
43953
+ __type: "bookingChannelIconCandidate_mutation_response";
43954
+ __args: {
43955
+ objects: "[bookingChannelIconCandidate_insert_input!]!";
43956
+ on_conflict: "bookingChannelIconCandidate_on_conflict";
43957
+ };
43958
+ };
43311
43959
  insertBookingChannels: {
43312
43960
  __type: "booking_channel_mutation_response";
43313
43961
  __args: {
@@ -45060,6 +45708,20 @@ export declare const generatedSchema: {
45060
45708
  pk_columns: "booking_channel_pk_columns_input!";
45061
45709
  };
45062
45710
  };
45711
+ updateBookingChannelIconCandidate: {
45712
+ __type: "bookingChannelIconCandidate";
45713
+ __args: {
45714
+ _set: "bookingChannelIconCandidate_set_input";
45715
+ pk_columns: "bookingChannelIconCandidate_pk_columns_input!";
45716
+ };
45717
+ };
45718
+ updateBookingChannelIconCandidates: {
45719
+ __type: "bookingChannelIconCandidate_mutation_response";
45720
+ __args: {
45721
+ _set: "bookingChannelIconCandidate_set_input";
45722
+ where: "bookingChannelIconCandidate_bool_exp!";
45723
+ };
45724
+ };
45063
45725
  updateBookingChannels: {
45064
45726
  __type: "booking_channel_mutation_response";
45065
45727
  __args: {
@@ -45576,6 +46238,7 @@ export declare const generatedSchema: {
45576
46238
  updateListingOwnershipPeriod: {
45577
46239
  __type: "listingOwnershipPeriod";
45578
46240
  __args: {
46241
+ _inc: "listingOwnershipPeriod_inc_input";
45579
46242
  _set: "listingOwnershipPeriod_set_input";
45580
46243
  pk_columns: "listingOwnershipPeriod_pk_columns_input!";
45581
46244
  };
@@ -45613,6 +46276,7 @@ export declare const generatedSchema: {
45613
46276
  updateListingOwnershipPeriods: {
45614
46277
  __type: "listingOwnershipPeriod_mutation_response";
45615
46278
  __args: {
46279
+ _inc: "listingOwnershipPeriod_inc_input";
45616
46280
  _set: "listingOwnershipPeriod_set_input";
45617
46281
  where: "listingOwnershipPeriod_bool_exp!";
45618
46282
  };
@@ -45690,6 +46354,10 @@ export declare const generatedSchema: {
45690
46354
  __type: "[bankRecord_mutation_response]";
45691
46355
  __args: { updates: "[bankRecord_updates!]!" };
45692
46356
  };
46357
+ updateManyBookingChannelIconCandidates: {
46358
+ __type: "[bookingChannelIconCandidate_mutation_response]";
46359
+ __args: { updates: "[bookingChannelIconCandidate_updates!]!" };
46360
+ };
45693
46361
  updateManyBookingChannels: {
45694
46362
  __type: "[booking_channel_mutation_response]";
45695
46363
  __args: { updates: "[booking_channel_updates!]!" };
@@ -50838,6 +51506,8 @@ export declare const generatedSchema: {
50838
51506
  connectionId: { __type: "uuid" };
50839
51507
  createdAt: { __type: "timestamptz!" };
50840
51508
  description: { __type: "String" };
51509
+ edited_type: { __type: "String" };
51510
+ effective_type: { __type: "String" };
50841
51511
  generalLedgerPostingAt: { __type: "timestamptz" };
50842
51512
  id: { __type: "uuid!" };
50843
51513
  journalEntries: {
@@ -51040,6 +51710,8 @@ export declare const generatedSchema: {
51040
51710
  connectionId: { __type: "uuid_comparison_exp" };
51041
51711
  createdAt: { __type: "timestamptz_comparison_exp" };
51042
51712
  description: { __type: "String_comparison_exp" };
51713
+ edited_type: { __type: "String_comparison_exp" };
51714
+ effective_type: { __type: "String_comparison_exp" };
51043
51715
  generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
51044
51716
  id: { __type: "uuid_comparison_exp" };
51045
51717
  journalEntries: { __type: "journalEntry_bool_exp" };
@@ -51442,6 +52114,7 @@ export declare const generatedSchema: {
51442
52114
  connectionId: { __type: "uuid" };
51443
52115
  createdAt: { __type: "timestamptz" };
51444
52116
  description: { __type: "String" };
52117
+ edited_type: { __type: "String" };
51445
52118
  generalLedgerPostingAt: { __type: "timestamptz" };
51446
52119
  id: { __type: "uuid" };
51447
52120
  journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
@@ -51483,6 +52156,8 @@ export declare const generatedSchema: {
51483
52156
  connectionId: { __type: "uuid" };
51484
52157
  createdAt: { __type: "timestamptz" };
51485
52158
  description: { __type: "String" };
52159
+ edited_type: { __type: "String" };
52160
+ effective_type: { __type: "String" };
51486
52161
  generalLedgerPostingAt: { __type: "timestamptz" };
51487
52162
  id: { __type: "uuid" };
51488
52163
  lineId: { __type: "uuid" };
@@ -51509,6 +52184,8 @@ export declare const generatedSchema: {
51509
52184
  connectionId: { __type: "order_by" };
51510
52185
  createdAt: { __type: "order_by" };
51511
52186
  description: { __type: "order_by" };
52187
+ edited_type: { __type: "order_by" };
52188
+ effective_type: { __type: "order_by" };
51512
52189
  generalLedgerPostingAt: { __type: "order_by" };
51513
52190
  id: { __type: "order_by" };
51514
52191
  lineId: { __type: "order_by" };
@@ -51536,6 +52213,8 @@ export declare const generatedSchema: {
51536
52213
  connectionId: { __type: "uuid" };
51537
52214
  createdAt: { __type: "timestamptz" };
51538
52215
  description: { __type: "String" };
52216
+ edited_type: { __type: "String" };
52217
+ effective_type: { __type: "String" };
51539
52218
  generalLedgerPostingAt: { __type: "timestamptz" };
51540
52219
  id: { __type: "uuid" };
51541
52220
  lineId: { __type: "uuid" };
@@ -51562,6 +52241,8 @@ export declare const generatedSchema: {
51562
52241
  connectionId: { __type: "order_by" };
51563
52242
  createdAt: { __type: "order_by" };
51564
52243
  description: { __type: "order_by" };
52244
+ edited_type: { __type: "order_by" };
52245
+ effective_type: { __type: "order_by" };
51565
52246
  generalLedgerPostingAt: { __type: "order_by" };
51566
52247
  id: { __type: "order_by" };
51567
52248
  lineId: { __type: "order_by" };
@@ -51607,6 +52288,8 @@ export declare const generatedSchema: {
51607
52288
  connectionId: { __type: "order_by" };
51608
52289
  createdAt: { __type: "order_by" };
51609
52290
  description: { __type: "order_by" };
52291
+ edited_type: { __type: "order_by" };
52292
+ effective_type: { __type: "order_by" };
51610
52293
  generalLedgerPostingAt: { __type: "order_by" };
51611
52294
  id: { __type: "order_by" };
51612
52295
  journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
@@ -51650,6 +52333,7 @@ export declare const generatedSchema: {
51650
52333
  connectionId: { __type: "uuid" };
51651
52334
  createdAt: { __type: "timestamptz" };
51652
52335
  description: { __type: "String" };
52336
+ edited_type: { __type: "String" };
51653
52337
  generalLedgerPostingAt: { __type: "timestamptz" };
51654
52338
  id: { __type: "uuid" };
51655
52339
  lineId: { __type: "uuid" };
@@ -51715,6 +52399,8 @@ export declare const generatedSchema: {
51715
52399
  connectionId: { __type: "uuid" };
51716
52400
  createdAt: { __type: "timestamptz" };
51717
52401
  description: { __type: "String" };
52402
+ edited_type: { __type: "String" };
52403
+ effective_type: { __type: "String" };
51718
52404
  generalLedgerPostingAt: { __type: "timestamptz" };
51719
52405
  id: { __type: "uuid" };
51720
52406
  lineId: { __type: "uuid" };
@@ -52665,6 +53351,30 @@ export declare const generatedSchema: {
52665
53351
  where: "booking_channel_bool_exp";
52666
53352
  };
52667
53353
  };
53354
+ bookingChannelIconCandidate: {
53355
+ __type: "bookingChannelIconCandidate";
53356
+ __args: { id: "uuid!" };
53357
+ };
53358
+ bookingChannelIconCandidateAggregate: {
53359
+ __type: "bookingChannelIconCandidate_aggregate!";
53360
+ __args: {
53361
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
53362
+ limit: "Int";
53363
+ offset: "Int";
53364
+ order_by: "[bookingChannelIconCandidate_order_by!]";
53365
+ where: "bookingChannelIconCandidate_bool_exp";
53366
+ };
53367
+ };
53368
+ bookingChannelIconCandidates: {
53369
+ __type: "[bookingChannelIconCandidate!]!";
53370
+ __args: {
53371
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
53372
+ limit: "Int";
53373
+ offset: "Int";
53374
+ order_by: "[bookingChannelIconCandidate_order_by!]";
53375
+ where: "bookingChannelIconCandidate_bool_exp";
53376
+ };
53377
+ };
52668
53378
  bookingChannels: {
52669
53379
  __type: "[booking_channel!]!";
52670
53380
  __args: {
@@ -56628,6 +57338,11 @@ export declare const generatedSchema: {
56628
57338
  connectionId: { __type: "uuid" };
56629
57339
  createdAt: { __type: "timestamptz" };
56630
57340
  currency: { __type: "currency_enum" };
57341
+ edited_check_in: { __type: "timestamptz" };
57342
+ edited_check_out: { __type: "timestamptz" };
57343
+ effective_check_in: { __type: "timestamptz" };
57344
+ effective_check_out: { __type: "timestamptz" };
57345
+ effective_nights: { __type: "Int" };
56631
57346
  files: {
56632
57347
  __type: "[file_storage!]!";
56633
57348
  __args: {
@@ -57500,6 +58215,7 @@ export declare const generatedSchema: {
57500
58215
  centPaymentFee: { __type: "Float" };
57501
58216
  centService: { __type: "Float" };
57502
58217
  centTotal: { __type: "Float" };
58218
+ effective_nights: { __type: "Float" };
57503
58219
  guests: { __type: "Float" };
57504
58220
  manager_cent_total: { __type: "Float" };
57505
58221
  nights: { __type: "Float" };
@@ -57517,6 +58233,7 @@ export declare const generatedSchema: {
57517
58233
  centPaymentFee: { __type: "order_by" };
57518
58234
  centService: { __type: "order_by" };
57519
58235
  centTotal: { __type: "order_by" };
58236
+ effective_nights: { __type: "order_by" };
57520
58237
  guests: { __type: "order_by" };
57521
58238
  manager_cent_total: { __type: "order_by" };
57522
58239
  nights: { __type: "order_by" };
@@ -57557,6 +58274,11 @@ export declare const generatedSchema: {
57557
58274
  connectionId: { __type: "uuid_comparison_exp" };
57558
58275
  createdAt: { __type: "timestamptz_comparison_exp" };
57559
58276
  currency: { __type: "currency_enum_comparison_exp" };
58277
+ edited_check_in: { __type: "timestamptz_comparison_exp" };
58278
+ edited_check_out: { __type: "timestamptz_comparison_exp" };
58279
+ effective_check_in: { __type: "timestamptz_comparison_exp" };
58280
+ effective_check_out: { __type: "timestamptz_comparison_exp" };
58281
+ effective_nights: { __type: "Int_comparison_exp" };
57560
58282
  files: { __type: "file_storage_bool_exp" };
57561
58283
  files_aggregate: { __type: "file_storage_aggregate_bool_exp" };
57562
58284
  generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
@@ -57675,6 +58397,8 @@ export declare const generatedSchema: {
57675
58397
  connectionId: { __type: "uuid" };
57676
58398
  createdAt: { __type: "timestamptz" };
57677
58399
  currency: { __type: "currency_enum" };
58400
+ edited_check_in: { __type: "timestamptz" };
58401
+ edited_check_out: { __type: "timestamptz" };
57678
58402
  files: { __type: "file_storage_arr_rel_insert_input" };
57679
58403
  generalLedgerPostingAt: { __type: "timestamptz" };
57680
58404
  general_ledger_status: { __type: "activeStatus_enum" };
@@ -57743,6 +58467,11 @@ export declare const generatedSchema: {
57743
58467
  confirmationCode: { __type: "String" };
57744
58468
  connectionId: { __type: "uuid" };
57745
58469
  createdAt: { __type: "timestamptz" };
58470
+ edited_check_in: { __type: "timestamptz" };
58471
+ edited_check_out: { __type: "timestamptz" };
58472
+ effective_check_in: { __type: "timestamptz" };
58473
+ effective_check_out: { __type: "timestamptz" };
58474
+ effective_nights: { __type: "Int" };
57746
58475
  generalLedgerPostingAt: { __type: "timestamptz" };
57747
58476
  guestName: { __type: "String" };
57748
58477
  guests: { __type: "Int" };
@@ -57786,6 +58515,11 @@ export declare const generatedSchema: {
57786
58515
  confirmationCode: { __type: "order_by" };
57787
58516
  connectionId: { __type: "order_by" };
57788
58517
  createdAt: { __type: "order_by" };
58518
+ edited_check_in: { __type: "order_by" };
58519
+ edited_check_out: { __type: "order_by" };
58520
+ effective_check_in: { __type: "order_by" };
58521
+ effective_check_out: { __type: "order_by" };
58522
+ effective_nights: { __type: "order_by" };
57789
58523
  generalLedgerPostingAt: { __type: "order_by" };
57790
58524
  guestName: { __type: "order_by" };
57791
58525
  guests: { __type: "order_by" };
@@ -57830,6 +58564,11 @@ export declare const generatedSchema: {
57830
58564
  confirmationCode: { __type: "String" };
57831
58565
  connectionId: { __type: "uuid" };
57832
58566
  createdAt: { __type: "timestamptz" };
58567
+ edited_check_in: { __type: "timestamptz" };
58568
+ edited_check_out: { __type: "timestamptz" };
58569
+ effective_check_in: { __type: "timestamptz" };
58570
+ effective_check_out: { __type: "timestamptz" };
58571
+ effective_nights: { __type: "Int" };
57833
58572
  generalLedgerPostingAt: { __type: "timestamptz" };
57834
58573
  guestName: { __type: "String" };
57835
58574
  guests: { __type: "Int" };
@@ -57873,6 +58612,11 @@ export declare const generatedSchema: {
57873
58612
  confirmationCode: { __type: "order_by" };
57874
58613
  connectionId: { __type: "order_by" };
57875
58614
  createdAt: { __type: "order_by" };
58615
+ edited_check_in: { __type: "order_by" };
58616
+ edited_check_out: { __type: "order_by" };
58617
+ effective_check_in: { __type: "order_by" };
58618
+ effective_check_out: { __type: "order_by" };
58619
+ effective_nights: { __type: "order_by" };
57876
58620
  generalLedgerPostingAt: { __type: "order_by" };
57877
58621
  guestName: { __type: "order_by" };
57878
58622
  guests: { __type: "order_by" };
@@ -57937,6 +58681,11 @@ export declare const generatedSchema: {
57937
58681
  connectionId: { __type: "order_by" };
57938
58682
  createdAt: { __type: "order_by" };
57939
58683
  currency: { __type: "order_by" };
58684
+ edited_check_in: { __type: "order_by" };
58685
+ edited_check_out: { __type: "order_by" };
58686
+ effective_check_in: { __type: "order_by" };
58687
+ effective_check_out: { __type: "order_by" };
58688
+ effective_nights: { __type: "order_by" };
57940
58689
  files_aggregate: { __type: "file_storage_aggregate_order_by" };
57941
58690
  generalLedgerPostingAt: { __type: "order_by" };
57942
58691
  general_ledger_status: { __type: "order_by" };
@@ -58012,6 +58761,8 @@ export declare const generatedSchema: {
58012
58761
  connectionId: { __type: "uuid" };
58013
58762
  createdAt: { __type: "timestamptz" };
58014
58763
  currency: { __type: "currency_enum" };
58764
+ edited_check_in: { __type: "timestamptz" };
58765
+ edited_check_out: { __type: "timestamptz" };
58015
58766
  generalLedgerPostingAt: { __type: "timestamptz" };
58016
58767
  general_ledger_status: { __type: "activeStatus_enum" };
58017
58768
  guestName: { __type: "String" };
@@ -58116,6 +58867,7 @@ export declare const generatedSchema: {
58116
58867
  centPaymentFee: { __type: "Float" };
58117
58868
  centService: { __type: "Float" };
58118
58869
  centTotal: { __type: "Float" };
58870
+ effective_nights: { __type: "Float" };
58119
58871
  guests: { __type: "Float" };
58120
58872
  manager_cent_total: { __type: "Float" };
58121
58873
  nights: { __type: "Float" };
@@ -58133,6 +58885,7 @@ export declare const generatedSchema: {
58133
58885
  centPaymentFee: { __type: "order_by" };
58134
58886
  centService: { __type: "order_by" };
58135
58887
  centTotal: { __type: "order_by" };
58888
+ effective_nights: { __type: "order_by" };
58136
58889
  guests: { __type: "order_by" };
58137
58890
  manager_cent_total: { __type: "order_by" };
58138
58891
  nights: { __type: "order_by" };
@@ -58151,6 +58904,7 @@ export declare const generatedSchema: {
58151
58904
  centPaymentFee: { __type: "Float" };
58152
58905
  centService: { __type: "Float" };
58153
58906
  centTotal: { __type: "Float" };
58907
+ effective_nights: { __type: "Float" };
58154
58908
  guests: { __type: "Float" };
58155
58909
  manager_cent_total: { __type: "Float" };
58156
58910
  nights: { __type: "Float" };
@@ -58168,6 +58922,7 @@ export declare const generatedSchema: {
58168
58922
  centPaymentFee: { __type: "order_by" };
58169
58923
  centService: { __type: "order_by" };
58170
58924
  centTotal: { __type: "order_by" };
58925
+ effective_nights: { __type: "order_by" };
58171
58926
  guests: { __type: "order_by" };
58172
58927
  manager_cent_total: { __type: "order_by" };
58173
58928
  nights: { __type: "order_by" };
@@ -58186,6 +58941,7 @@ export declare const generatedSchema: {
58186
58941
  centPaymentFee: { __type: "Float" };
58187
58942
  centService: { __type: "Float" };
58188
58943
  centTotal: { __type: "Float" };
58944
+ effective_nights: { __type: "Float" };
58189
58945
  guests: { __type: "Float" };
58190
58946
  manager_cent_total: { __type: "Float" };
58191
58947
  nights: { __type: "Float" };
@@ -58203,6 +58959,7 @@ export declare const generatedSchema: {
58203
58959
  centPaymentFee: { __type: "order_by" };
58204
58960
  centService: { __type: "order_by" };
58205
58961
  centTotal: { __type: "order_by" };
58962
+ effective_nights: { __type: "order_by" };
58206
58963
  guests: { __type: "order_by" };
58207
58964
  manager_cent_total: { __type: "order_by" };
58208
58965
  nights: { __type: "order_by" };
@@ -58236,6 +58993,11 @@ export declare const generatedSchema: {
58236
58993
  connectionId: { __type: "uuid" };
58237
58994
  createdAt: { __type: "timestamptz" };
58238
58995
  currency: { __type: "currency_enum" };
58996
+ edited_check_in: { __type: "timestamptz" };
58997
+ edited_check_out: { __type: "timestamptz" };
58998
+ effective_check_in: { __type: "timestamptz" };
58999
+ effective_check_out: { __type: "timestamptz" };
59000
+ effective_nights: { __type: "Int" };
58239
59001
  generalLedgerPostingAt: { __type: "timestamptz" };
58240
59002
  general_ledger_status: { __type: "activeStatus_enum" };
58241
59003
  guestName: { __type: "String" };
@@ -58275,6 +59037,7 @@ export declare const generatedSchema: {
58275
59037
  centPaymentFee: { __type: "Int" };
58276
59038
  centService: { __type: "Int" };
58277
59039
  centTotal: { __type: "bigint" };
59040
+ effective_nights: { __type: "Int" };
58278
59041
  guests: { __type: "Int" };
58279
59042
  manager_cent_total: { __type: "bigint" };
58280
59043
  nights: { __type: "Int" };
@@ -58292,6 +59055,7 @@ export declare const generatedSchema: {
58292
59055
  centPaymentFee: { __type: "order_by" };
58293
59056
  centService: { __type: "order_by" };
58294
59057
  centTotal: { __type: "order_by" };
59058
+ effective_nights: { __type: "order_by" };
58295
59059
  guests: { __type: "order_by" };
58296
59060
  manager_cent_total: { __type: "order_by" };
58297
59061
  nights: { __type: "order_by" };
@@ -58320,6 +59084,7 @@ export declare const generatedSchema: {
58320
59084
  centPaymentFee: { __type: "Float" };
58321
59085
  centService: { __type: "Float" };
58322
59086
  centTotal: { __type: "Float" };
59087
+ effective_nights: { __type: "Float" };
58323
59088
  guests: { __type: "Float" };
58324
59089
  manager_cent_total: { __type: "Float" };
58325
59090
  nights: { __type: "Float" };
@@ -58337,6 +59102,7 @@ export declare const generatedSchema: {
58337
59102
  centPaymentFee: { __type: "order_by" };
58338
59103
  centService: { __type: "order_by" };
58339
59104
  centTotal: { __type: "order_by" };
59105
+ effective_nights: { __type: "order_by" };
58340
59106
  guests: { __type: "order_by" };
58341
59107
  manager_cent_total: { __type: "order_by" };
58342
59108
  nights: { __type: "order_by" };
@@ -58355,6 +59121,7 @@ export declare const generatedSchema: {
58355
59121
  centPaymentFee: { __type: "Float" };
58356
59122
  centService: { __type: "Float" };
58357
59123
  centTotal: { __type: "Float" };
59124
+ effective_nights: { __type: "Float" };
58358
59125
  guests: { __type: "Float" };
58359
59126
  manager_cent_total: { __type: "Float" };
58360
59127
  nights: { __type: "Float" };
@@ -58372,6 +59139,7 @@ export declare const generatedSchema: {
58372
59139
  centPaymentFee: { __type: "order_by" };
58373
59140
  centService: { __type: "order_by" };
58374
59141
  centTotal: { __type: "order_by" };
59142
+ effective_nights: { __type: "order_by" };
58375
59143
  guests: { __type: "order_by" };
58376
59144
  manager_cent_total: { __type: "order_by" };
58377
59145
  nights: { __type: "order_by" };
@@ -58390,6 +59158,7 @@ export declare const generatedSchema: {
58390
59158
  centPaymentFee: { __type: "Float" };
58391
59159
  centService: { __type: "Float" };
58392
59160
  centTotal: { __type: "Float" };
59161
+ effective_nights: { __type: "Float" };
58393
59162
  guests: { __type: "Float" };
58394
59163
  manager_cent_total: { __type: "Float" };
58395
59164
  nights: { __type: "Float" };
@@ -58407,6 +59176,7 @@ export declare const generatedSchema: {
58407
59176
  centPaymentFee: { __type: "order_by" };
58408
59177
  centService: { __type: "order_by" };
58409
59178
  centTotal: { __type: "order_by" };
59179
+ effective_nights: { __type: "order_by" };
58410
59180
  guests: { __type: "order_by" };
58411
59181
  manager_cent_total: { __type: "order_by" };
58412
59182
  nights: { __type: "order_by" };
@@ -61301,6 +62071,38 @@ export declare const generatedSchema: {
61301
62071
  where: "booking_channel_bool_exp";
61302
62072
  };
61303
62073
  };
62074
+ bookingChannelIconCandidate: {
62075
+ __type: "bookingChannelIconCandidate";
62076
+ __args: { id: "uuid!" };
62077
+ };
62078
+ bookingChannelIconCandidateAggregate: {
62079
+ __type: "bookingChannelIconCandidate_aggregate!";
62080
+ __args: {
62081
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
62082
+ limit: "Int";
62083
+ offset: "Int";
62084
+ order_by: "[bookingChannelIconCandidate_order_by!]";
62085
+ where: "bookingChannelIconCandidate_bool_exp";
62086
+ };
62087
+ };
62088
+ bookingChannelIconCandidateStream: {
62089
+ __type: "[bookingChannelIconCandidate!]!";
62090
+ __args: {
62091
+ batch_size: "Int!";
62092
+ cursor: "[bookingChannelIconCandidate_stream_cursor_input]!";
62093
+ where: "bookingChannelIconCandidate_bool_exp";
62094
+ };
62095
+ };
62096
+ bookingChannelIconCandidates: {
62097
+ __type: "[bookingChannelIconCandidate!]!";
62098
+ __args: {
62099
+ distinct_on: "[bookingChannelIconCandidate_select_column!]";
62100
+ limit: "Int";
62101
+ offset: "Int";
62102
+ order_by: "[bookingChannelIconCandidate_order_by!]";
62103
+ where: "bookingChannelIconCandidate_bool_exp";
62104
+ };
62105
+ };
61304
62106
  bookingChannelStream: {
61305
62107
  __type: "[booking_channel!]!";
61306
62108
  __args: {
@@ -68599,6 +69401,7 @@ export declare const generatedSchema: {
68599
69401
  description: { __type: "String!" };
68600
69402
  dueAt: { __type: "timestamptz" };
68601
69403
  id: { __type: "uuid!" };
69404
+ is_opening_balance: { __type: "Boolean!" };
68602
69405
  journalEntries: {
68603
69406
  __type: "[journalEntry!]!";
68604
69407
  __args: {
@@ -69218,8 +70021,26 @@ export declare const generatedSchema: {
69218
70021
  nodes: { __type: "[transaction!]!" };
69219
70022
  };
69220
70023
  transaction_aggregate_bool_exp: {
70024
+ bool_and: { __type: "transaction_aggregate_bool_exp_bool_and" };
70025
+ bool_or: { __type: "transaction_aggregate_bool_exp_bool_or" };
69221
70026
  count: { __type: "transaction_aggregate_bool_exp_count" };
69222
70027
  };
70028
+ transaction_aggregate_bool_exp_bool_and: {
70029
+ arguments: {
70030
+ __type: "transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns!";
70031
+ };
70032
+ distinct: { __type: "Boolean" };
70033
+ filter: { __type: "transaction_bool_exp" };
70034
+ predicate: { __type: "Boolean_comparison_exp!" };
70035
+ };
70036
+ transaction_aggregate_bool_exp_bool_or: {
70037
+ arguments: {
70038
+ __type: "transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns!";
70039
+ };
70040
+ distinct: { __type: "Boolean" };
70041
+ filter: { __type: "transaction_bool_exp" };
70042
+ predicate: { __type: "Boolean_comparison_exp!" };
70043
+ };
69223
70044
  transaction_aggregate_bool_exp_count: {
69224
70045
  arguments: { __type: "[transaction_select_column!]" };
69225
70046
  distinct: { __type: "Boolean" };
@@ -69288,6 +70109,7 @@ export declare const generatedSchema: {
69288
70109
  description: { __type: "String_comparison_exp" };
69289
70110
  dueAt: { __type: "timestamptz_comparison_exp" };
69290
70111
  id: { __type: "uuid_comparison_exp" };
70112
+ is_opening_balance: { __type: "Boolean_comparison_exp" };
69291
70113
  journalEntries: { __type: "journalEntry_bool_exp" };
69292
70114
  journalEntries_aggregate: { __type: "journalEntry_aggregate_bool_exp" };
69293
70115
  lines: { __type: "transactionLine_bool_exp" };
@@ -69341,6 +70163,7 @@ export declare const generatedSchema: {
69341
70163
  description: { __type: "String" };
69342
70164
  dueAt: { __type: "timestamptz" };
69343
70165
  id: { __type: "uuid" };
70166
+ is_opening_balance: { __type: "Boolean" };
69344
70167
  journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
69345
70168
  lines: { __type: "transactionLine_arr_rel_insert_input" };
69346
70169
  matchBankAccountLast4: { __type: "String" };
@@ -69494,6 +70317,7 @@ export declare const generatedSchema: {
69494
70317
  description: { __type: "order_by" };
69495
70318
  dueAt: { __type: "order_by" };
69496
70319
  id: { __type: "order_by" };
70320
+ is_opening_balance: { __type: "order_by" };
69497
70321
  journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
69498
70322
  lines_aggregate: { __type: "transactionLine_aggregate_order_by" };
69499
70323
  matchBankAccountLast4: { __type: "order_by" };
@@ -69533,6 +70357,7 @@ export declare const generatedSchema: {
69533
70357
  description: { __type: "String" };
69534
70358
  dueAt: { __type: "timestamptz" };
69535
70359
  id: { __type: "uuid" };
70360
+ is_opening_balance: { __type: "Boolean" };
69536
70361
  matchBankAccountLast4: { __type: "String" };
69537
70362
  match_line_type_classification: { __type: "String" };
69538
70363
  match_reservation_confirmation_code: { __type: "String" };
@@ -69580,6 +70405,7 @@ export declare const generatedSchema: {
69580
70405
  description: { __type: "String" };
69581
70406
  dueAt: { __type: "timestamptz" };
69582
70407
  id: { __type: "uuid" };
70408
+ is_opening_balance: { __type: "Boolean" };
69583
70409
  matchBankAccountLast4: { __type: "String" };
69584
70410
  matchStatus: { __type: "String" };
69585
70411
  match_line_type_classification: { __type: "String" };
@@ -75167,6 +75993,93 @@ export interface billing_payment_method_type_mutation_response {
75167
75993
  returning: Array<billing_payment_method_type>;
75168
75994
  }
75169
75995
 
75996
+ /**
75997
+ * columns and relationships of "booking_channel_icon_candidate"
75998
+ */
75999
+ export interface bookingChannelIconCandidate {
76000
+ __typename?: "bookingChannelIconCandidate";
76001
+ /**
76002
+ * An object relationship
76003
+ */
76004
+ bookingChannel: booking_channel;
76005
+ bookingChannelId: ScalarsEnums["uuid"];
76006
+ comment?: Maybe<ScalarsEnums["String"]>;
76007
+ createdAt: ScalarsEnums["timestamptz"];
76008
+ /**
76009
+ * An object relationship
76010
+ */
76011
+ fileStorage: file_storage;
76012
+ fileStorageId: ScalarsEnums["uuid"];
76013
+ id: ScalarsEnums["uuid"];
76014
+ source?: Maybe<ScalarsEnums["String"]>;
76015
+ updatedAt: ScalarsEnums["timestamptz"];
76016
+ }
76017
+
76018
+ /**
76019
+ * aggregated selection of "booking_channel_icon_candidate"
76020
+ */
76021
+ export interface bookingChannelIconCandidate_aggregate {
76022
+ __typename?: "bookingChannelIconCandidate_aggregate";
76023
+ aggregate?: Maybe<bookingChannelIconCandidate_aggregate_fields>;
76024
+ nodes: Array<bookingChannelIconCandidate>;
76025
+ }
76026
+
76027
+ /**
76028
+ * aggregate fields of "booking_channel_icon_candidate"
76029
+ */
76030
+ export interface bookingChannelIconCandidate_aggregate_fields {
76031
+ __typename?: "bookingChannelIconCandidate_aggregate_fields";
76032
+ count: (args?: {
76033
+ columns?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
76034
+ distinct?: Maybe<Scalars["Boolean"]>;
76035
+ }) => ScalarsEnums["Int"];
76036
+ max?: Maybe<bookingChannelIconCandidate_max_fields>;
76037
+ min?: Maybe<bookingChannelIconCandidate_min_fields>;
76038
+ }
76039
+
76040
+ /**
76041
+ * aggregate max on columns
76042
+ */
76043
+ export interface bookingChannelIconCandidate_max_fields {
76044
+ __typename?: "bookingChannelIconCandidate_max_fields";
76045
+ bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
76046
+ comment?: Maybe<ScalarsEnums["String"]>;
76047
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76048
+ fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
76049
+ id?: Maybe<ScalarsEnums["uuid"]>;
76050
+ source?: Maybe<ScalarsEnums["String"]>;
76051
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
76052
+ }
76053
+
76054
+ /**
76055
+ * aggregate min on columns
76056
+ */
76057
+ export interface bookingChannelIconCandidate_min_fields {
76058
+ __typename?: "bookingChannelIconCandidate_min_fields";
76059
+ bookingChannelId?: Maybe<ScalarsEnums["uuid"]>;
76060
+ comment?: Maybe<ScalarsEnums["String"]>;
76061
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76062
+ fileStorageId?: Maybe<ScalarsEnums["uuid"]>;
76063
+ id?: Maybe<ScalarsEnums["uuid"]>;
76064
+ source?: Maybe<ScalarsEnums["String"]>;
76065
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
76066
+ }
76067
+
76068
+ /**
76069
+ * response of any mutation on the table "booking_channel_icon_candidate"
76070
+ */
76071
+ export interface bookingChannelIconCandidate_mutation_response {
76072
+ __typename?: "bookingChannelIconCandidate_mutation_response";
76073
+ /**
76074
+ * number of rows affected by the mutation
76075
+ */
76076
+ affected_rows: ScalarsEnums["Int"];
76077
+ /**
76078
+ * data from the rows affected by the mutation
76079
+ */
76080
+ returning: Array<bookingChannelIconCandidate>;
76081
+ }
76082
+
75170
76083
  /**
75171
76084
  * columns and relationships of "booking_channel"
75172
76085
  */
@@ -75226,6 +76139,7 @@ export interface booking_channel {
75226
76139
  */
75227
76140
  where?: Maybe<reservation_bool_exp>;
75228
76141
  }) => reservation_aggregate;
76142
+ selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
75229
76143
  /**
75230
76144
  * An array relationship
75231
76145
  */
@@ -75411,6 +76325,7 @@ export interface booking_channel_max_fields {
75411
76325
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
75412
76326
  icon?: Maybe<ScalarsEnums["String"]>;
75413
76327
  id?: Maybe<ScalarsEnums["uuid"]>;
76328
+ selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
75414
76329
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
75415
76330
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
75416
76331
  }
@@ -75424,6 +76339,7 @@ export interface booking_channel_min_fields {
75424
76339
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
75425
76340
  icon?: Maybe<ScalarsEnums["String"]>;
75426
76341
  id?: Maybe<ScalarsEnums["uuid"]>;
76342
+ selectedBookingChannelIconCandidateId?: Maybe<ScalarsEnums["uuid"]>;
75427
76343
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
75428
76344
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
75429
76345
  }
@@ -79266,6 +80182,8 @@ export interface journalEntry {
79266
80182
  entitySortNum?: Maybe<ScalarsEnums["Int"]>;
79267
80183
  entityType?: Maybe<ScalarsEnums["journalEntryEntityType_enum"]>;
79268
80184
  id: ScalarsEnums["uuid"];
80185
+ inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
80186
+ ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
79269
80187
  /**
79270
80188
  * An object relationship
79271
80189
  */
@@ -79568,6 +80486,8 @@ export interface journalEntry_max_fields {
79568
80486
  description?: Maybe<ScalarsEnums["String"]>;
79569
80487
  entitySortNum?: Maybe<ScalarsEnums["Int"]>;
79570
80488
  id?: Maybe<ScalarsEnums["uuid"]>;
80489
+ inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
80490
+ ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
79571
80491
  lineId?: Maybe<ScalarsEnums["uuid"]>;
79572
80492
  lineUniqueRef?: Maybe<ScalarsEnums["String"]>;
79573
80493
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -79599,6 +80519,8 @@ export interface journalEntry_min_fields {
79599
80519
  description?: Maybe<ScalarsEnums["String"]>;
79600
80520
  entitySortNum?: Maybe<ScalarsEnums["Int"]>;
79601
80521
  id?: Maybe<ScalarsEnums["uuid"]>;
80522
+ inactive_reason?: Maybe<ScalarsEnums["journal_entry_inactive_reason"]>;
80523
+ ledger?: Maybe<ScalarsEnums["journal_entry_ledger"]>;
79602
80524
  lineId?: Maybe<ScalarsEnums["uuid"]>;
79603
80525
  lineUniqueRef?: Maybe<ScalarsEnums["String"]>;
79604
80526
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -80702,6 +81624,7 @@ export interface listingOwnershipPeriod {
80702
81624
  */
80703
81625
  where?: Maybe<owner_statement_bool_exp>;
80704
81626
  }) => owner_statement_aggregate;
81627
+ reserve_cent_total: ScalarsEnums["bigint"];
80705
81628
  setListingInactive?: Maybe<ScalarsEnums["Boolean"]>;
80706
81629
  startAt?: Maybe<ScalarsEnums["timestamptz"]>;
80707
81630
  /**
@@ -80950,12 +81873,28 @@ export interface listingOwnershipPeriod_aggregate {
80950
81873
  */
80951
81874
  export interface listingOwnershipPeriod_aggregate_fields {
80952
81875
  __typename?: "listingOwnershipPeriod_aggregate_fields";
81876
+ avg?: Maybe<listingOwnershipPeriod_avg_fields>;
80953
81877
  count: (args?: {
80954
81878
  columns?: Maybe<Array<listingOwnershipPeriod_select_column>>;
80955
81879
  distinct?: Maybe<Scalars["Boolean"]>;
80956
81880
  }) => ScalarsEnums["Int"];
80957
81881
  max?: Maybe<listingOwnershipPeriod_max_fields>;
80958
81882
  min?: Maybe<listingOwnershipPeriod_min_fields>;
81883
+ stddev?: Maybe<listingOwnershipPeriod_stddev_fields>;
81884
+ stddev_pop?: Maybe<listingOwnershipPeriod_stddev_pop_fields>;
81885
+ stddev_samp?: Maybe<listingOwnershipPeriod_stddev_samp_fields>;
81886
+ sum?: Maybe<listingOwnershipPeriod_sum_fields>;
81887
+ var_pop?: Maybe<listingOwnershipPeriod_var_pop_fields>;
81888
+ var_samp?: Maybe<listingOwnershipPeriod_var_samp_fields>;
81889
+ variance?: Maybe<listingOwnershipPeriod_variance_fields>;
81890
+ }
81891
+
81892
+ /**
81893
+ * aggregate avg on columns
81894
+ */
81895
+ export interface listingOwnershipPeriod_avg_fields {
81896
+ __typename?: "listingOwnershipPeriod_avg_fields";
81897
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
80959
81898
  }
80960
81899
 
80961
81900
  /**
@@ -80967,6 +81906,7 @@ export interface listingOwnershipPeriod_max_fields {
80967
81906
  endAt?: Maybe<ScalarsEnums["timestamptz"]>;
80968
81907
  id?: Maybe<ScalarsEnums["uuid"]>;
80969
81908
  listingId?: Maybe<ScalarsEnums["uuid"]>;
81909
+ reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
80970
81910
  startAt?: Maybe<ScalarsEnums["timestamptz"]>;
80971
81911
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
80972
81912
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
@@ -80981,6 +81921,7 @@ export interface listingOwnershipPeriod_min_fields {
80981
81921
  endAt?: Maybe<ScalarsEnums["timestamptz"]>;
80982
81922
  id?: Maybe<ScalarsEnums["uuid"]>;
80983
81923
  listingId?: Maybe<ScalarsEnums["uuid"]>;
81924
+ reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
80984
81925
  startAt?: Maybe<ScalarsEnums["timestamptz"]>;
80985
81926
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
80986
81927
  updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
@@ -81001,6 +81942,62 @@ export interface listingOwnershipPeriod_mutation_response {
81001
81942
  returning: Array<listingOwnershipPeriod>;
81002
81943
  }
81003
81944
 
81945
+ /**
81946
+ * aggregate stddev on columns
81947
+ */
81948
+ export interface listingOwnershipPeriod_stddev_fields {
81949
+ __typename?: "listingOwnershipPeriod_stddev_fields";
81950
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81951
+ }
81952
+
81953
+ /**
81954
+ * aggregate stddev_pop on columns
81955
+ */
81956
+ export interface listingOwnershipPeriod_stddev_pop_fields {
81957
+ __typename?: "listingOwnershipPeriod_stddev_pop_fields";
81958
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81959
+ }
81960
+
81961
+ /**
81962
+ * aggregate stddev_samp on columns
81963
+ */
81964
+ export interface listingOwnershipPeriod_stddev_samp_fields {
81965
+ __typename?: "listingOwnershipPeriod_stddev_samp_fields";
81966
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81967
+ }
81968
+
81969
+ /**
81970
+ * aggregate sum on columns
81971
+ */
81972
+ export interface listingOwnershipPeriod_sum_fields {
81973
+ __typename?: "listingOwnershipPeriod_sum_fields";
81974
+ reserve_cent_total?: Maybe<ScalarsEnums["bigint"]>;
81975
+ }
81976
+
81977
+ /**
81978
+ * aggregate var_pop on columns
81979
+ */
81980
+ export interface listingOwnershipPeriod_var_pop_fields {
81981
+ __typename?: "listingOwnershipPeriod_var_pop_fields";
81982
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81983
+ }
81984
+
81985
+ /**
81986
+ * aggregate var_samp on columns
81987
+ */
81988
+ export interface listingOwnershipPeriod_var_samp_fields {
81989
+ __typename?: "listingOwnershipPeriod_var_samp_fields";
81990
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81991
+ }
81992
+
81993
+ /**
81994
+ * aggregate variance on columns
81995
+ */
81996
+ export interface listingOwnershipPeriod_variance_fields {
81997
+ __typename?: "listingOwnershipPeriod_variance_fields";
81998
+ reserve_cent_total?: Maybe<ScalarsEnums["Float"]>;
81999
+ }
82000
+
81004
82001
  /**
81005
82002
  * aggregated selection of "listing"
81006
82003
  */
@@ -82626,6 +83623,12 @@ export interface Mutation {
82626
83623
  deleteBookingChannel: (args: {
82627
83624
  id: Scalars["uuid"];
82628
83625
  }) => Maybe<booking_channel>;
83626
+ deleteBookingChannelIconCandidate: (args: {
83627
+ id: Scalars["uuid"];
83628
+ }) => Maybe<bookingChannelIconCandidate>;
83629
+ deleteBookingChannelIconCandidates: (args: {
83630
+ where: bookingChannelIconCandidate_bool_exp;
83631
+ }) => Maybe<bookingChannelIconCandidate_mutation_response>;
82629
83632
  deleteBookingChannels: (args: {
82630
83633
  where: booking_channel_bool_exp;
82631
83634
  }) => Maybe<booking_channel_mutation_response>;
@@ -83314,6 +84317,14 @@ export interface Mutation {
83314
84317
  object: booking_channel_insert_input;
83315
84318
  on_conflict?: Maybe<booking_channel_on_conflict>;
83316
84319
  }) => Maybe<booking_channel>;
84320
+ insertBookingChannelIconCandidate: (args: {
84321
+ object: bookingChannelIconCandidate_insert_input;
84322
+ on_conflict?: Maybe<bookingChannelIconCandidate_on_conflict>;
84323
+ }) => Maybe<bookingChannelIconCandidate>;
84324
+ insertBookingChannelIconCandidates: (args: {
84325
+ objects: Array<bookingChannelIconCandidate_insert_input>;
84326
+ on_conflict?: Maybe<bookingChannelIconCandidate_on_conflict>;
84327
+ }) => Maybe<bookingChannelIconCandidate_mutation_response>;
83317
84328
  insertBookingChannels: (args: {
83318
84329
  objects: Array<booking_channel_insert_input>;
83319
84330
  on_conflict?: Maybe<booking_channel_on_conflict>;
@@ -84356,6 +85367,14 @@ export interface Mutation {
84356
85367
  _set?: Maybe<booking_channel_set_input>;
84357
85368
  pk_columns: booking_channel_pk_columns_input;
84358
85369
  }) => Maybe<booking_channel>;
85370
+ updateBookingChannelIconCandidate: (args: {
85371
+ _set?: Maybe<bookingChannelIconCandidate_set_input>;
85372
+ pk_columns: bookingChannelIconCandidate_pk_columns_input;
85373
+ }) => Maybe<bookingChannelIconCandidate>;
85374
+ updateBookingChannelIconCandidates: (args: {
85375
+ _set?: Maybe<bookingChannelIconCandidate_set_input>;
85376
+ where: bookingChannelIconCandidate_bool_exp;
85377
+ }) => Maybe<bookingChannelIconCandidate_mutation_response>;
84359
85378
  updateBookingChannels: (args: {
84360
85379
  _set?: Maybe<booking_channel_set_input>;
84361
85380
  where: booking_channel_bool_exp;
@@ -84693,6 +85712,7 @@ export interface Mutation {
84693
85712
  where: listing_owner_bool_exp;
84694
85713
  }) => Maybe<listing_owner_mutation_response>;
84695
85714
  updateListingOwnershipPeriod: (args: {
85715
+ _inc?: Maybe<listingOwnershipPeriod_inc_input>;
84696
85716
  _set?: Maybe<listingOwnershipPeriod_set_input>;
84697
85717
  pk_columns: listingOwnershipPeriod_pk_columns_input;
84698
85718
  }) => Maybe<listingOwnershipPeriod>;
@@ -84715,6 +85735,7 @@ export interface Mutation {
84715
85735
  where: listingOwnershipPeriodMember_bool_exp;
84716
85736
  }) => Maybe<listingOwnershipPeriodMember_mutation_response>;
84717
85737
  updateListingOwnershipPeriods: (args: {
85738
+ _inc?: Maybe<listingOwnershipPeriod_inc_input>;
84718
85739
  _set?: Maybe<listingOwnershipPeriod_set_input>;
84719
85740
  where: listingOwnershipPeriod_bool_exp;
84720
85741
  }) => Maybe<listingOwnershipPeriod_mutation_response>;
@@ -84773,6 +85794,9 @@ export interface Mutation {
84773
85794
  updateManyBankRecords: (args: {
84774
85795
  updates: Array<bankRecord_updates>;
84775
85796
  }) => Maybe<Array<Maybe<bankRecord_mutation_response>>>;
85797
+ updateManyBookingChannelIconCandidates: (args: {
85798
+ updates: Array<bookingChannelIconCandidate_updates>;
85799
+ }) => Maybe<Array<Maybe<bookingChannelIconCandidate_mutation_response>>>;
84776
85800
  updateManyBookingChannels: (args: {
84777
85801
  updates: Array<booking_channel_updates>;
84778
85802
  }) => Maybe<Array<Maybe<booking_channel_mutation_response>>>;
@@ -89070,6 +90094,8 @@ export interface payment_line {
89070
90094
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89071
90095
  createdAt: ScalarsEnums["timestamptz"];
89072
90096
  description?: Maybe<ScalarsEnums["String"]>;
90097
+ edited_type?: Maybe<ScalarsEnums["String"]>;
90098
+ effective_type?: Maybe<ScalarsEnums["String"]>;
89073
90099
  generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89074
90100
  id: ScalarsEnums["uuid"];
89075
90101
  /**
@@ -89807,6 +90833,8 @@ export interface payment_line_max_fields {
89807
90833
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89808
90834
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89809
90835
  description?: Maybe<ScalarsEnums["String"]>;
90836
+ edited_type?: Maybe<ScalarsEnums["String"]>;
90837
+ effective_type?: Maybe<ScalarsEnums["String"]>;
89810
90838
  generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89811
90839
  id?: Maybe<ScalarsEnums["uuid"]>;
89812
90840
  lineId?: Maybe<ScalarsEnums["uuid"]>;
@@ -89838,6 +90866,8 @@ export interface payment_line_min_fields {
89838
90866
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89839
90867
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89840
90868
  description?: Maybe<ScalarsEnums["String"]>;
90869
+ edited_type?: Maybe<ScalarsEnums["String"]>;
90870
+ effective_type?: Maybe<ScalarsEnums["String"]>;
89841
90871
  generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89842
90872
  id?: Maybe<ScalarsEnums["uuid"]>;
89843
90873
  lineId?: Maybe<ScalarsEnums["uuid"]>;
@@ -90564,6 +91594,23 @@ export interface Query {
90564
91594
  order_by?: Maybe<Array<booking_channel_order_by>>;
90565
91595
  where?: Maybe<booking_channel_bool_exp>;
90566
91596
  }) => booking_channel_aggregate;
91597
+ bookingChannelIconCandidate: (args: {
91598
+ id: Scalars["uuid"];
91599
+ }) => Maybe<bookingChannelIconCandidate>;
91600
+ bookingChannelIconCandidateAggregate: (args?: {
91601
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
91602
+ limit?: Maybe<Scalars["Int"]>;
91603
+ offset?: Maybe<Scalars["Int"]>;
91604
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
91605
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
91606
+ }) => bookingChannelIconCandidate_aggregate;
91607
+ bookingChannelIconCandidates: (args?: {
91608
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
91609
+ limit?: Maybe<Scalars["Int"]>;
91610
+ offset?: Maybe<Scalars["Int"]>;
91611
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
91612
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
91613
+ }) => Array<bookingChannelIconCandidate>;
90567
91614
  bookingChannels: (args?: {
90568
91615
  distinct_on?: Maybe<Array<booking_channel_select_column>>;
90569
91616
  limit?: Maybe<Scalars["Int"]>;
@@ -93671,6 +94718,11 @@ export interface reservation {
93671
94718
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
93672
94719
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
93673
94720
  currency?: Maybe<ScalarsEnums["currency_enum"]>;
94721
+ edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
94722
+ edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
94723
+ effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
94724
+ effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
94725
+ effective_nights?: Maybe<ScalarsEnums["Int"]>;
93674
94726
  /**
93675
94727
  * An array relationship
93676
94728
  */
@@ -94682,6 +95734,7 @@ export interface reservation_avg_fields {
94682
95734
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94683
95735
  centService?: Maybe<ScalarsEnums["Float"]>;
94684
95736
  centTotal?: Maybe<ScalarsEnums["Float"]>;
95737
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94685
95738
  guests?: Maybe<ScalarsEnums["Float"]>;
94686
95739
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94687
95740
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -94715,6 +95768,11 @@ export interface reservation_max_fields {
94715
95768
  confirmationCode?: Maybe<ScalarsEnums["String"]>;
94716
95769
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
94717
95770
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
95771
+ edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
95772
+ edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
95773
+ effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
95774
+ effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
95775
+ effective_nights?: Maybe<ScalarsEnums["Int"]>;
94718
95776
  generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
94719
95777
  guestName?: Maybe<ScalarsEnums["String"]>;
94720
95778
  guests?: Maybe<ScalarsEnums["Int"]>;
@@ -94766,6 +95824,11 @@ export interface reservation_min_fields {
94766
95824
  confirmationCode?: Maybe<ScalarsEnums["String"]>;
94767
95825
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
94768
95826
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
95827
+ edited_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
95828
+ edited_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
95829
+ effective_check_in?: Maybe<ScalarsEnums["timestamptz"]>;
95830
+ effective_check_out?: Maybe<ScalarsEnums["timestamptz"]>;
95831
+ effective_nights?: Maybe<ScalarsEnums["Int"]>;
94769
95832
  generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
94770
95833
  guestName?: Maybe<ScalarsEnums["String"]>;
94771
95834
  guests?: Maybe<ScalarsEnums["Int"]>;
@@ -94882,6 +95945,7 @@ export interface reservation_stddev_fields {
94882
95945
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94883
95946
  centService?: Maybe<ScalarsEnums["Float"]>;
94884
95947
  centTotal?: Maybe<ScalarsEnums["Float"]>;
95948
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94885
95949
  guests?: Maybe<ScalarsEnums["Float"]>;
94886
95950
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94887
95951
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -94904,6 +95968,7 @@ export interface reservation_stddev_pop_fields {
94904
95968
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94905
95969
  centService?: Maybe<ScalarsEnums["Float"]>;
94906
95970
  centTotal?: Maybe<ScalarsEnums["Float"]>;
95971
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94907
95972
  guests?: Maybe<ScalarsEnums["Float"]>;
94908
95973
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94909
95974
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -94926,6 +95991,7 @@ export interface reservation_stddev_samp_fields {
94926
95991
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94927
95992
  centService?: Maybe<ScalarsEnums["Float"]>;
94928
95993
  centTotal?: Maybe<ScalarsEnums["Float"]>;
95994
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94929
95995
  guests?: Maybe<ScalarsEnums["Float"]>;
94930
95996
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94931
95997
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -94948,6 +96014,7 @@ export interface reservation_sum_fields {
94948
96014
  centPaymentFee?: Maybe<ScalarsEnums["Int"]>;
94949
96015
  centService?: Maybe<ScalarsEnums["Int"]>;
94950
96016
  centTotal?: Maybe<ScalarsEnums["bigint"]>;
96017
+ effective_nights?: Maybe<ScalarsEnums["Int"]>;
94951
96018
  guests?: Maybe<ScalarsEnums["Int"]>;
94952
96019
  manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
94953
96020
  nights?: Maybe<ScalarsEnums["Int"]>;
@@ -94970,6 +96037,7 @@ export interface reservation_var_pop_fields {
94970
96037
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94971
96038
  centService?: Maybe<ScalarsEnums["Float"]>;
94972
96039
  centTotal?: Maybe<ScalarsEnums["Float"]>;
96040
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94973
96041
  guests?: Maybe<ScalarsEnums["Float"]>;
94974
96042
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94975
96043
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -94992,6 +96060,7 @@ export interface reservation_var_samp_fields {
94992
96060
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
94993
96061
  centService?: Maybe<ScalarsEnums["Float"]>;
94994
96062
  centTotal?: Maybe<ScalarsEnums["Float"]>;
96063
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
94995
96064
  guests?: Maybe<ScalarsEnums["Float"]>;
94996
96065
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
94997
96066
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -95014,6 +96083,7 @@ export interface reservation_variance_fields {
95014
96083
  centPaymentFee?: Maybe<ScalarsEnums["Float"]>;
95015
96084
  centService?: Maybe<ScalarsEnums["Float"]>;
95016
96085
  centTotal?: Maybe<ScalarsEnums["Float"]>;
96086
+ effective_nights?: Maybe<ScalarsEnums["Float"]>;
95017
96087
  guests?: Maybe<ScalarsEnums["Float"]>;
95018
96088
  manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
95019
96089
  nights?: Maybe<ScalarsEnums["Float"]>;
@@ -97386,6 +98456,28 @@ export interface Subscription {
97386
98456
  order_by?: Maybe<Array<booking_channel_order_by>>;
97387
98457
  where?: Maybe<booking_channel_bool_exp>;
97388
98458
  }) => booking_channel_aggregate;
98459
+ bookingChannelIconCandidate: (args: {
98460
+ id: Scalars["uuid"];
98461
+ }) => Maybe<bookingChannelIconCandidate>;
98462
+ bookingChannelIconCandidateAggregate: (args?: {
98463
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
98464
+ limit?: Maybe<Scalars["Int"]>;
98465
+ offset?: Maybe<Scalars["Int"]>;
98466
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
98467
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
98468
+ }) => bookingChannelIconCandidate_aggregate;
98469
+ bookingChannelIconCandidateStream: (args: {
98470
+ batch_size: Scalars["Int"];
98471
+ cursor: Array<Maybe<bookingChannelIconCandidate_stream_cursor_input>>;
98472
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
98473
+ }) => Array<bookingChannelIconCandidate>;
98474
+ bookingChannelIconCandidates: (args?: {
98475
+ distinct_on?: Maybe<Array<bookingChannelIconCandidate_select_column>>;
98476
+ limit?: Maybe<Scalars["Int"]>;
98477
+ offset?: Maybe<Scalars["Int"]>;
98478
+ order_by?: Maybe<Array<bookingChannelIconCandidate_order_by>>;
98479
+ where?: Maybe<bookingChannelIconCandidate_bool_exp>;
98480
+ }) => Array<bookingChannelIconCandidate>;
97389
98481
  bookingChannelStream: (args: {
97390
98482
  batch_size: Scalars["Int"];
97391
98483
  cursor: Array<Maybe<booking_channel_stream_cursor_input>>;
@@ -103322,6 +104414,7 @@ export interface transaction {
103322
104414
  description: ScalarsEnums["String"];
103323
104415
  dueAt?: Maybe<ScalarsEnums["timestamptz"]>;
103324
104416
  id: ScalarsEnums["uuid"];
104417
+ is_opening_balance: ScalarsEnums["Boolean"];
103325
104418
  /**
103326
104419
  * An array relationship
103327
104420
  */
@@ -103492,7 +104585,7 @@ export interface transaction {
103492
104585
  where?: Maybe<transaction_bool_exp>;
103493
104586
  }) => transaction_aggregate;
103494
104587
  /**
103495
- * Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
104588
+ * Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
103496
104589
  */
103497
104590
  short_ref?: Maybe<ScalarsEnums["String"]>;
103498
104591
  /**
@@ -103921,7 +105014,7 @@ export interface transaction_max_fields {
103921
105014
  recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
103922
105015
  recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
103923
105016
  /**
103924
- * Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
105017
+ * Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
103925
105018
  */
103926
105019
  short_ref?: Maybe<ScalarsEnums["String"]>;
103927
105020
  sourceId?: Maybe<ScalarsEnums["uuid"]>;
@@ -103953,7 +105046,7 @@ export interface transaction_min_fields {
103953
105046
  recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
103954
105047
  recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
103955
105048
  /**
103956
- * Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
105049
+ * Human-readable system ID (EXP/DEP/PAY/TRF-XXX-XXXX-XXX depending on transaction.type).
103957
105050
  */
103958
105051
  short_ref?: Maybe<ScalarsEnums["String"]>;
103959
105052
  sourceId?: Maybe<ScalarsEnums["uuid"]>;
@@ -106131,6 +107224,12 @@ export interface SchemaObjectTypes {
106131
107224
  billing_payment_method_type_max_fields: billing_payment_method_type_max_fields;
106132
107225
  billing_payment_method_type_min_fields: billing_payment_method_type_min_fields;
106133
107226
  billing_payment_method_type_mutation_response: billing_payment_method_type_mutation_response;
107227
+ bookingChannelIconCandidate: bookingChannelIconCandidate;
107228
+ bookingChannelIconCandidate_aggregate: bookingChannelIconCandidate_aggregate;
107229
+ bookingChannelIconCandidate_aggregate_fields: bookingChannelIconCandidate_aggregate_fields;
107230
+ bookingChannelIconCandidate_max_fields: bookingChannelIconCandidate_max_fields;
107231
+ bookingChannelIconCandidate_min_fields: bookingChannelIconCandidate_min_fields;
107232
+ bookingChannelIconCandidate_mutation_response: bookingChannelIconCandidate_mutation_response;
106134
107233
  booking_channel: booking_channel;
106135
107234
  booking_channel_aggregate: booking_channel_aggregate;
106136
107235
  booking_channel_aggregate_fields: booking_channel_aggregate_fields;
@@ -106369,9 +107468,17 @@ export interface SchemaObjectTypes {
106369
107468
  listingOwnershipPeriodMember_variance_fields: listingOwnershipPeriodMember_variance_fields;
106370
107469
  listingOwnershipPeriod_aggregate: listingOwnershipPeriod_aggregate;
106371
107470
  listingOwnershipPeriod_aggregate_fields: listingOwnershipPeriod_aggregate_fields;
107471
+ listingOwnershipPeriod_avg_fields: listingOwnershipPeriod_avg_fields;
106372
107472
  listingOwnershipPeriod_max_fields: listingOwnershipPeriod_max_fields;
106373
107473
  listingOwnershipPeriod_min_fields: listingOwnershipPeriod_min_fields;
106374
107474
  listingOwnershipPeriod_mutation_response: listingOwnershipPeriod_mutation_response;
107475
+ listingOwnershipPeriod_stddev_fields: listingOwnershipPeriod_stddev_fields;
107476
+ listingOwnershipPeriod_stddev_pop_fields: listingOwnershipPeriod_stddev_pop_fields;
107477
+ listingOwnershipPeriod_stddev_samp_fields: listingOwnershipPeriod_stddev_samp_fields;
107478
+ listingOwnershipPeriod_sum_fields: listingOwnershipPeriod_sum_fields;
107479
+ listingOwnershipPeriod_var_pop_fields: listingOwnershipPeriod_var_pop_fields;
107480
+ listingOwnershipPeriod_var_samp_fields: listingOwnershipPeriod_var_samp_fields;
107481
+ listingOwnershipPeriod_variance_fields: listingOwnershipPeriod_variance_fields;
106375
107482
  listing_aggregate: listing_aggregate;
106376
107483
  listing_aggregate_fields: listing_aggregate_fields;
106377
107484
  listing_avg_fields: listing_avg_fields;
@@ -107185,6 +108292,12 @@ export type SchemaObjectTypesNames =
107185
108292
  | "billing_payment_method_type_max_fields"
107186
108293
  | "billing_payment_method_type_min_fields"
107187
108294
  | "billing_payment_method_type_mutation_response"
108295
+ | "bookingChannelIconCandidate"
108296
+ | "bookingChannelIconCandidate_aggregate"
108297
+ | "bookingChannelIconCandidate_aggregate_fields"
108298
+ | "bookingChannelIconCandidate_max_fields"
108299
+ | "bookingChannelIconCandidate_min_fields"
108300
+ | "bookingChannelIconCandidate_mutation_response"
107188
108301
  | "booking_channel"
107189
108302
  | "booking_channel_aggregate"
107190
108303
  | "booking_channel_aggregate_fields"
@@ -107423,9 +108536,17 @@ export type SchemaObjectTypesNames =
107423
108536
  | "listingOwnershipPeriodMember_variance_fields"
107424
108537
  | "listingOwnershipPeriod_aggregate"
107425
108538
  | "listingOwnershipPeriod_aggregate_fields"
108539
+ | "listingOwnershipPeriod_avg_fields"
107426
108540
  | "listingOwnershipPeriod_max_fields"
107427
108541
  | "listingOwnershipPeriod_min_fields"
107428
108542
  | "listingOwnershipPeriod_mutation_response"
108543
+ | "listingOwnershipPeriod_stddev_fields"
108544
+ | "listingOwnershipPeriod_stddev_pop_fields"
108545
+ | "listingOwnershipPeriod_stddev_samp_fields"
108546
+ | "listingOwnershipPeriod_sum_fields"
108547
+ | "listingOwnershipPeriod_var_pop_fields"
108548
+ | "listingOwnershipPeriod_var_samp_fields"
108549
+ | "listingOwnershipPeriod_variance_fields"
107429
108550
  | "listing_aggregate"
107430
108551
  | "listing_aggregate_fields"
107431
108552
  | "listing_avg_fields"
@@ -108230,6 +109351,15 @@ export interface ScalarsEnums extends Scalars {
108230
109351
  billing_payment_method_type_update_column:
108231
109352
  | billing_payment_method_type_update_column
108232
109353
  | undefined;
109354
+ bookingChannelIconCandidate_constraint:
109355
+ | bookingChannelIconCandidate_constraint
109356
+ | undefined;
109357
+ bookingChannelIconCandidate_select_column:
109358
+ | bookingChannelIconCandidate_select_column
109359
+ | undefined;
109360
+ bookingChannelIconCandidate_update_column:
109361
+ | bookingChannelIconCandidate_update_column
109362
+ | undefined;
108233
109363
  booking_channel_constraint: booking_channel_constraint | undefined;
108234
109364
  booking_channel_select_column: booking_channel_select_column | undefined;
108235
109365
  booking_channel_update_column: booking_channel_update_column | undefined;
@@ -108855,6 +109985,12 @@ export interface ScalarsEnums extends Scalars {
108855
109985
  transactionType_update_column: transactionType_update_column | undefined;
108856
109986
  transaction_constraint: transaction_constraint | undefined;
108857
109987
  transaction_select_column: transaction_select_column | undefined;
109988
+ transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns:
109989
+ | transaction_select_column_transaction_aggregate_bool_exp_bool_and_arguments_columns
109990
+ | undefined;
109991
+ transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns:
109992
+ | transaction_select_column_transaction_aggregate_bool_exp_bool_or_arguments_columns
109993
+ | undefined;
108858
109994
  transaction_update_column: transaction_update_column | undefined;
108859
109995
  user_company_type_constraint: user_company_type_constraint | undefined;
108860
109996
  user_company_type_enum: user_company_type_enum | undefined;