@vrplatform/graphql 1.1.18 → 1.1.19

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.
@@ -6793,13 +6793,21 @@ export interface core_flow_mapping_bool_exp {
6793
6793
  _and?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
6794
6794
  _not?: InputMaybe<core_flow_mapping_bool_exp>;
6795
6795
  _or?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
6796
+ account?: InputMaybe<account_bool_exp>;
6796
6797
  account_id?: InputMaybe<uuid_comparison_exp>;
6798
+ booking_channel?: InputMaybe<booking_channel_bool_exp>;
6797
6799
  booking_channel_id?: InputMaybe<uuid_comparison_exp>;
6800
+ contact?: InputMaybe<contact_bool_exp>;
6798
6801
  contact_id?: InputMaybe<uuid_comparison_exp>;
6802
+ flow?: InputMaybe<core_flow_bool_exp>;
6799
6803
  flow_id?: InputMaybe<uuid_comparison_exp>;
6800
6804
  id?: InputMaybe<uuid_comparison_exp>;
6805
+ listing?: InputMaybe<listing_bool_exp>;
6801
6806
  listing_id?: InputMaybe<uuid_comparison_exp>;
6802
6807
  mapping_key?: InputMaybe<String_comparison_exp>;
6808
+ rate?: InputMaybe<rate_bool_exp>;
6809
+ rate_id?: InputMaybe<uuid_comparison_exp>;
6810
+ source?: InputMaybe<source_bool_exp>;
6803
6811
  source_id?: InputMaybe<uuid_comparison_exp>;
6804
6812
  value?: InputMaybe<jsonb_comparison_exp>;
6805
6813
  }
@@ -6828,13 +6836,21 @@ export interface core_flow_mapping_delete_key_input {
6828
6836
 
6829
6837
  /** input type for inserting data into table "core.flow_mapping" */
6830
6838
  export interface core_flow_mapping_insert_input {
6839
+ account?: InputMaybe<account_obj_rel_insert_input>;
6831
6840
  account_id?: InputMaybe<Scalars["uuid"]>;
6841
+ booking_channel?: InputMaybe<booking_channel_obj_rel_insert_input>;
6832
6842
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
6843
+ contact?: InputMaybe<contact_obj_rel_insert_input>;
6833
6844
  contact_id?: InputMaybe<Scalars["uuid"]>;
6845
+ flow?: InputMaybe<core_flow_obj_rel_insert_input>;
6834
6846
  flow_id?: InputMaybe<Scalars["uuid"]>;
6835
6847
  id?: InputMaybe<Scalars["uuid"]>;
6848
+ listing?: InputMaybe<listing_obj_rel_insert_input>;
6836
6849
  listing_id?: InputMaybe<Scalars["uuid"]>;
6837
6850
  mapping_key?: InputMaybe<Scalars["String"]>;
6851
+ rate?: InputMaybe<rate_obj_rel_insert_input>;
6852
+ rate_id?: InputMaybe<Scalars["uuid"]>;
6853
+ source?: InputMaybe<source_obj_rel_insert_input>;
6838
6854
  source_id?: InputMaybe<Scalars["uuid"]>;
6839
6855
  value?: InputMaybe<Scalars["jsonb"]>;
6840
6856
  }
@@ -6848,13 +6864,21 @@ export interface core_flow_mapping_on_conflict {
6848
6864
 
6849
6865
  /** Ordering options when selecting data from "core.flow_mapping". */
6850
6866
  export interface core_flow_mapping_order_by {
6867
+ account?: InputMaybe<account_order_by>;
6851
6868
  account_id?: InputMaybe<order_by>;
6869
+ booking_channel?: InputMaybe<booking_channel_order_by>;
6852
6870
  booking_channel_id?: InputMaybe<order_by>;
6871
+ contact?: InputMaybe<contact_order_by>;
6853
6872
  contact_id?: InputMaybe<order_by>;
6873
+ flow?: InputMaybe<core_flow_order_by>;
6854
6874
  flow_id?: InputMaybe<order_by>;
6855
6875
  id?: InputMaybe<order_by>;
6876
+ listing?: InputMaybe<listing_order_by>;
6856
6877
  listing_id?: InputMaybe<order_by>;
6857
6878
  mapping_key?: InputMaybe<order_by>;
6879
+ rate?: InputMaybe<rate_order_by>;
6880
+ rate_id?: InputMaybe<order_by>;
6881
+ source?: InputMaybe<source_order_by>;
6858
6882
  source_id?: InputMaybe<order_by>;
6859
6883
  value?: InputMaybe<order_by>;
6860
6884
  }
@@ -6886,6 +6910,8 @@ export type core_flow_mapping_select_column =
6886
6910
  /** column name */
6887
6911
  | "mapping_key"
6888
6912
  /** column name */
6913
+ | "rate_id"
6914
+ /** column name */
6889
6915
  | "source_id"
6890
6916
  /** column name */
6891
6917
  | "value";
@@ -6899,6 +6925,7 @@ export interface core_flow_mapping_set_input {
6899
6925
  id?: InputMaybe<Scalars["uuid"]>;
6900
6926
  listing_id?: InputMaybe<Scalars["uuid"]>;
6901
6927
  mapping_key?: InputMaybe<Scalars["String"]>;
6928
+ rate_id?: InputMaybe<Scalars["uuid"]>;
6902
6929
  source_id?: InputMaybe<Scalars["uuid"]>;
6903
6930
  value?: InputMaybe<Scalars["jsonb"]>;
6904
6931
  }
@@ -6920,6 +6947,7 @@ export interface core_flow_mapping_stream_cursor_value_input {
6920
6947
  id?: InputMaybe<Scalars["uuid"]>;
6921
6948
  listing_id?: InputMaybe<Scalars["uuid"]>;
6922
6949
  mapping_key?: InputMaybe<Scalars["String"]>;
6950
+ rate_id?: InputMaybe<Scalars["uuid"]>;
6923
6951
  source_id?: InputMaybe<Scalars["uuid"]>;
6924
6952
  value?: InputMaybe<Scalars["jsonb"]>;
6925
6953
  }
@@ -6941,6 +6969,8 @@ export type core_flow_mapping_update_column =
6941
6969
  /** column name */
6942
6970
  | "mapping_key"
6943
6971
  /** column name */
6972
+ | "rate_id"
6973
+ /** column name */
6944
6974
  | "source_id"
6945
6975
  /** column name */
6946
6976
  | "value";
@@ -6962,6 +6992,13 @@ export interface core_flow_mapping_updates {
6962
6992
  where: core_flow_mapping_bool_exp;
6963
6993
  }
6964
6994
 
6995
+ /** input type for inserting object relation for remote table "core.flow" */
6996
+ export interface core_flow_obj_rel_insert_input {
6997
+ data: core_flow_insert_input;
6998
+ /** upsert condition */
6999
+ on_conflict?: InputMaybe<core_flow_on_conflict>;
7000
+ }
7001
+
6965
7002
  /** on_conflict condition type for table "core.flow" */
6966
7003
  export interface core_flow_on_conflict {
6967
7004
  constraint: core_flow_constraint;
@@ -10908,7 +10945,7 @@ export interface listing_bool_exp {
10908
10945
  address_id?: InputMaybe<uuid_comparison_exp>;
10909
10946
  bedrooms?: InputMaybe<Int_comparison_exp>;
10910
10947
  beds?: InputMaybe<Int_comparison_exp>;
10911
- calculatedStatus?: InputMaybe<String_comparison_exp>;
10948
+ calculatedStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
10912
10949
  calculatedTitle?: InputMaybe<String_comparison_exp>;
10913
10950
  calculated_title?: InputMaybe<String_comparison_exp>;
10914
10951
  centExpenseReserve?: InputMaybe<Int_comparison_exp>;
@@ -11604,7 +11641,6 @@ export interface listing_max_order_by {
11604
11641
  address_id?: InputMaybe<order_by>;
11605
11642
  bedrooms?: InputMaybe<order_by>;
11606
11643
  beds?: InputMaybe<order_by>;
11607
- calculatedStatus?: InputMaybe<order_by>;
11608
11644
  calculatedTitle?: InputMaybe<order_by>;
11609
11645
  calculated_title?: InputMaybe<order_by>;
11610
11646
  centExpenseReserve?: InputMaybe<order_by>;
@@ -11634,7 +11670,6 @@ export interface listing_min_order_by {
11634
11670
  address_id?: InputMaybe<order_by>;
11635
11671
  bedrooms?: InputMaybe<order_by>;
11636
11672
  beds?: InputMaybe<order_by>;
11637
- calculatedStatus?: InputMaybe<order_by>;
11638
11673
  calculatedTitle?: InputMaybe<order_by>;
11639
11674
  calculated_title?: InputMaybe<order_by>;
11640
11675
  centExpenseReserve?: InputMaybe<order_by>;
@@ -12232,7 +12267,7 @@ export interface listing_stream_cursor_value_input {
12232
12267
  address_id?: InputMaybe<Scalars["uuid"]>;
12233
12268
  bedrooms?: InputMaybe<Scalars["Int"]>;
12234
12269
  beds?: InputMaybe<Scalars["Int"]>;
12235
- calculatedStatus?: InputMaybe<Scalars["String"]>;
12270
+ calculatedStatus?: InputMaybe<activeStatus_enum>;
12236
12271
  calculatedTitle?: InputMaybe<Scalars["String"]>;
12237
12272
  calculated_title?: InputMaybe<Scalars["String"]>;
12238
12273
  centExpenseReserve?: InputMaybe<Scalars["Int"]>;
@@ -35344,13 +35379,21 @@ export declare const generatedSchema: {
35344
35379
  };
35345
35380
  core_flow_mapping: {
35346
35381
  __typename: { __type: "String!" };
35382
+ account: { __type: "account" };
35347
35383
  account_id: { __type: "uuid" };
35384
+ booking_channel: { __type: "booking_channel" };
35348
35385
  booking_channel_id: { __type: "uuid" };
35386
+ contact: { __type: "contact" };
35349
35387
  contact_id: { __type: "uuid" };
35388
+ flow: { __type: "core_flow!" };
35350
35389
  flow_id: { __type: "uuid!" };
35351
35390
  id: { __type: "uuid!" };
35391
+ listing: { __type: "listing" };
35352
35392
  listing_id: { __type: "uuid" };
35353
35393
  mapping_key: { __type: "String!" };
35394
+ rate: { __type: "rate" };
35395
+ rate_id: { __type: "uuid" };
35396
+ source: { __type: "source!" };
35354
35397
  source_id: { __type: "uuid!" };
35355
35398
  value: { __type: "jsonb"; __args: { path: "String" } };
35356
35399
  };
@@ -35376,13 +35419,21 @@ export declare const generatedSchema: {
35376
35419
  _and: { __type: "[core_flow_mapping_bool_exp!]" };
35377
35420
  _not: { __type: "core_flow_mapping_bool_exp" };
35378
35421
  _or: { __type: "[core_flow_mapping_bool_exp!]" };
35422
+ account: { __type: "account_bool_exp" };
35379
35423
  account_id: { __type: "uuid_comparison_exp" };
35424
+ booking_channel: { __type: "booking_channel_bool_exp" };
35380
35425
  booking_channel_id: { __type: "uuid_comparison_exp" };
35426
+ contact: { __type: "contact_bool_exp" };
35381
35427
  contact_id: { __type: "uuid_comparison_exp" };
35428
+ flow: { __type: "core_flow_bool_exp" };
35382
35429
  flow_id: { __type: "uuid_comparison_exp" };
35383
35430
  id: { __type: "uuid_comparison_exp" };
35431
+ listing: { __type: "listing_bool_exp" };
35384
35432
  listing_id: { __type: "uuid_comparison_exp" };
35385
35433
  mapping_key: { __type: "String_comparison_exp" };
35434
+ rate: { __type: "rate_bool_exp" };
35435
+ rate_id: { __type: "uuid_comparison_exp" };
35436
+ source: { __type: "source_bool_exp" };
35386
35437
  source_id: { __type: "uuid_comparison_exp" };
35387
35438
  value: { __type: "jsonb_comparison_exp" };
35388
35439
  };
@@ -35390,13 +35441,21 @@ export declare const generatedSchema: {
35390
35441
  core_flow_mapping_delete_elem_input: { value: { __type: "Int" } };
35391
35442
  core_flow_mapping_delete_key_input: { value: { __type: "String" } };
35392
35443
  core_flow_mapping_insert_input: {
35444
+ account: { __type: "account_obj_rel_insert_input" };
35393
35445
  account_id: { __type: "uuid" };
35446
+ booking_channel: { __type: "booking_channel_obj_rel_insert_input" };
35394
35447
  booking_channel_id: { __type: "uuid" };
35448
+ contact: { __type: "contact_obj_rel_insert_input" };
35395
35449
  contact_id: { __type: "uuid" };
35450
+ flow: { __type: "core_flow_obj_rel_insert_input" };
35396
35451
  flow_id: { __type: "uuid" };
35397
35452
  id: { __type: "uuid" };
35453
+ listing: { __type: "listing_obj_rel_insert_input" };
35398
35454
  listing_id: { __type: "uuid" };
35399
35455
  mapping_key: { __type: "String" };
35456
+ rate: { __type: "rate_obj_rel_insert_input" };
35457
+ rate_id: { __type: "uuid" };
35458
+ source: { __type: "source_obj_rel_insert_input" };
35400
35459
  source_id: { __type: "uuid" };
35401
35460
  value: { __type: "jsonb" };
35402
35461
  };
@@ -35409,6 +35468,7 @@ export declare const generatedSchema: {
35409
35468
  id: { __type: "uuid" };
35410
35469
  listing_id: { __type: "uuid" };
35411
35470
  mapping_key: { __type: "String" };
35471
+ rate_id: { __type: "uuid" };
35412
35472
  source_id: { __type: "uuid" };
35413
35473
  };
35414
35474
  core_flow_mapping_min_fields: {
@@ -35420,6 +35480,7 @@ export declare const generatedSchema: {
35420
35480
  id: { __type: "uuid" };
35421
35481
  listing_id: { __type: "uuid" };
35422
35482
  mapping_key: { __type: "String" };
35483
+ rate_id: { __type: "uuid" };
35423
35484
  source_id: { __type: "uuid" };
35424
35485
  };
35425
35486
  core_flow_mapping_mutation_response: {
@@ -35433,13 +35494,21 @@ export declare const generatedSchema: {
35433
35494
  where: { __type: "core_flow_mapping_bool_exp" };
35434
35495
  };
35435
35496
  core_flow_mapping_order_by: {
35497
+ account: { __type: "account_order_by" };
35436
35498
  account_id: { __type: "order_by" };
35499
+ booking_channel: { __type: "booking_channel_order_by" };
35437
35500
  booking_channel_id: { __type: "order_by" };
35501
+ contact: { __type: "contact_order_by" };
35438
35502
  contact_id: { __type: "order_by" };
35503
+ flow: { __type: "core_flow_order_by" };
35439
35504
  flow_id: { __type: "order_by" };
35440
35505
  id: { __type: "order_by" };
35506
+ listing: { __type: "listing_order_by" };
35441
35507
  listing_id: { __type: "order_by" };
35442
35508
  mapping_key: { __type: "order_by" };
35509
+ rate: { __type: "rate_order_by" };
35510
+ rate_id: { __type: "order_by" };
35511
+ source: { __type: "source_order_by" };
35443
35512
  source_id: { __type: "order_by" };
35444
35513
  value: { __type: "order_by" };
35445
35514
  };
@@ -35453,6 +35522,7 @@ export declare const generatedSchema: {
35453
35522
  id: { __type: "uuid" };
35454
35523
  listing_id: { __type: "uuid" };
35455
35524
  mapping_key: { __type: "String" };
35525
+ rate_id: { __type: "uuid" };
35456
35526
  source_id: { __type: "uuid" };
35457
35527
  value: { __type: "jsonb" };
35458
35528
  };
@@ -35468,6 +35538,7 @@ export declare const generatedSchema: {
35468
35538
  id: { __type: "uuid" };
35469
35539
  listing_id: { __type: "uuid" };
35470
35540
  mapping_key: { __type: "String" };
35541
+ rate_id: { __type: "uuid" };
35471
35542
  source_id: { __type: "uuid" };
35472
35543
  value: { __type: "jsonb" };
35473
35544
  };
@@ -35501,6 +35572,10 @@ export declare const generatedSchema: {
35501
35572
  affected_rows: { __type: "Int!" };
35502
35573
  returning: { __type: "[core_flow!]!" };
35503
35574
  };
35575
+ core_flow_obj_rel_insert_input: {
35576
+ data: { __type: "core_flow_insert_input!" };
35577
+ on_conflict: { __type: "core_flow_on_conflict" };
35578
+ };
35504
35579
  core_flow_on_conflict: {
35505
35580
  constraint: { __type: "core_flow_constraint!" };
35506
35581
  update_columns: { __type: "[core_flow_update_column!]!" };
@@ -38175,7 +38250,7 @@ export declare const generatedSchema: {
38175
38250
  address_id: { __type: "uuid" };
38176
38251
  bedrooms: { __type: "Int" };
38177
38252
  beds: { __type: "Int" };
38178
- calculatedStatus: { __type: "String" };
38253
+ calculatedStatus: { __type: "activeStatus_enum" };
38179
38254
  calculatedTitle: { __type: "String" };
38180
38255
  calculated_title: { __type: "String" };
38181
38256
  centExpenseReserve: { __type: "Int" };
@@ -39172,7 +39247,7 @@ export declare const generatedSchema: {
39172
39247
  address_id: { __type: "uuid_comparison_exp" };
39173
39248
  bedrooms: { __type: "Int_comparison_exp" };
39174
39249
  beds: { __type: "Int_comparison_exp" };
39175
- calculatedStatus: { __type: "String_comparison_exp" };
39250
+ calculatedStatus: { __type: "activeStatus_enum_comparison_exp" };
39176
39251
  calculatedTitle: { __type: "String_comparison_exp" };
39177
39252
  calculated_title: { __type: "String_comparison_exp" };
39178
39253
  centExpenseReserve: { __type: "Int_comparison_exp" };
@@ -39963,7 +40038,6 @@ export declare const generatedSchema: {
39963
40038
  address_id: { __type: "uuid" };
39964
40039
  bedrooms: { __type: "Int" };
39965
40040
  beds: { __type: "Int" };
39966
- calculatedStatus: { __type: "String" };
39967
40041
  calculatedTitle: { __type: "String" };
39968
40042
  calculated_title: { __type: "String" };
39969
40043
  centExpenseReserve: { __type: "Int" };
@@ -39990,7 +40064,6 @@ export declare const generatedSchema: {
39990
40064
  address_id: { __type: "order_by" };
39991
40065
  bedrooms: { __type: "order_by" };
39992
40066
  beds: { __type: "order_by" };
39993
- calculatedStatus: { __type: "order_by" };
39994
40067
  calculatedTitle: { __type: "order_by" };
39995
40068
  calculated_title: { __type: "order_by" };
39996
40069
  centExpenseReserve: { __type: "order_by" };
@@ -40018,7 +40091,6 @@ export declare const generatedSchema: {
40018
40091
  address_id: { __type: "uuid" };
40019
40092
  bedrooms: { __type: "Int" };
40020
40093
  beds: { __type: "Int" };
40021
- calculatedStatus: { __type: "String" };
40022
40094
  calculatedTitle: { __type: "String" };
40023
40095
  calculated_title: { __type: "String" };
40024
40096
  centExpenseReserve: { __type: "Int" };
@@ -40045,7 +40117,6 @@ export declare const generatedSchema: {
40045
40117
  address_id: { __type: "order_by" };
40046
40118
  bedrooms: { __type: "order_by" };
40047
40119
  beds: { __type: "order_by" };
40048
- calculatedStatus: { __type: "order_by" };
40049
40120
  calculatedTitle: { __type: "order_by" };
40050
40121
  calculated_title: { __type: "order_by" };
40051
40122
  centExpenseReserve: { __type: "order_by" };
@@ -40595,7 +40666,7 @@ export declare const generatedSchema: {
40595
40666
  address_id: { __type: "uuid" };
40596
40667
  bedrooms: { __type: "Int" };
40597
40668
  beds: { __type: "Int" };
40598
- calculatedStatus: { __type: "String" };
40669
+ calculatedStatus: { __type: "activeStatus_enum" };
40599
40670
  calculatedTitle: { __type: "String" };
40600
40671
  calculated_title: { __type: "String" };
40601
40672
  centExpenseReserve: { __type: "Int" };
@@ -76606,13 +76677,42 @@ export interface core_flow_aggregate_fields {
76606
76677
  */
76607
76678
  export interface core_flow_mapping {
76608
76679
  __typename?: "core_flow_mapping";
76680
+ /**
76681
+ * An object relationship
76682
+ */
76683
+ account?: Maybe<account>;
76609
76684
  account_id?: Maybe<ScalarsEnums["uuid"]>;
76685
+ /**
76686
+ * An object relationship
76687
+ */
76688
+ booking_channel?: Maybe<booking_channel>;
76610
76689
  booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
76690
+ /**
76691
+ * An object relationship
76692
+ */
76693
+ contact?: Maybe<contact>;
76611
76694
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
76695
+ /**
76696
+ * An object relationship
76697
+ */
76698
+ flow: core_flow;
76612
76699
  flow_id: ScalarsEnums["uuid"];
76613
76700
  id: ScalarsEnums["uuid"];
76701
+ /**
76702
+ * An object relationship
76703
+ */
76704
+ listing?: Maybe<listing>;
76614
76705
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
76615
76706
  mapping_key: ScalarsEnums["String"];
76707
+ /**
76708
+ * An object relationship
76709
+ */
76710
+ rate?: Maybe<rate>;
76711
+ rate_id?: Maybe<ScalarsEnums["uuid"]>;
76712
+ /**
76713
+ * An object relationship
76714
+ */
76715
+ source: source;
76616
76716
  source_id: ScalarsEnums["uuid"];
76617
76717
  value: (args?: {
76618
76718
  /**
@@ -76656,6 +76756,7 @@ export interface core_flow_mapping_max_fields {
76656
76756
  id?: Maybe<ScalarsEnums["uuid"]>;
76657
76757
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
76658
76758
  mapping_key?: Maybe<ScalarsEnums["String"]>;
76759
+ rate_id?: Maybe<ScalarsEnums["uuid"]>;
76659
76760
  source_id?: Maybe<ScalarsEnums["uuid"]>;
76660
76761
  }
76661
76762
 
@@ -76671,6 +76772,7 @@ export interface core_flow_mapping_min_fields {
76671
76772
  id?: Maybe<ScalarsEnums["uuid"]>;
76672
76773
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
76673
76774
  mapping_key?: Maybe<ScalarsEnums["String"]>;
76775
+ rate_id?: Maybe<ScalarsEnums["uuid"]>;
76674
76776
  source_id?: Maybe<ScalarsEnums["uuid"]>;
76675
76777
  }
76676
76778
 
@@ -78445,7 +78547,7 @@ export interface listing {
78445
78547
  address_id?: Maybe<ScalarsEnums["uuid"]>;
78446
78548
  bedrooms?: Maybe<ScalarsEnums["Int"]>;
78447
78549
  beds?: Maybe<ScalarsEnums["Int"]>;
78448
- calculatedStatus?: Maybe<ScalarsEnums["String"]>;
78550
+ calculatedStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
78449
78551
  calculatedTitle?: Maybe<ScalarsEnums["String"]>;
78450
78552
  calculated_title?: Maybe<ScalarsEnums["String"]>;
78451
78553
  centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
@@ -80406,7 +80508,6 @@ export interface listing_max_fields {
80406
80508
  address_id?: Maybe<ScalarsEnums["uuid"]>;
80407
80509
  bedrooms?: Maybe<ScalarsEnums["Int"]>;
80408
80510
  beds?: Maybe<ScalarsEnums["Int"]>;
80409
- calculatedStatus?: Maybe<ScalarsEnums["String"]>;
80410
80511
  calculatedTitle?: Maybe<ScalarsEnums["String"]>;
80411
80512
  calculated_title?: Maybe<ScalarsEnums["String"]>;
80412
80513
  centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
@@ -80441,7 +80542,6 @@ export interface listing_min_fields {
80441
80542
  address_id?: Maybe<ScalarsEnums["uuid"]>;
80442
80543
  bedrooms?: Maybe<ScalarsEnums["Int"]>;
80443
80544
  beds?: Maybe<ScalarsEnums["Int"]>;
80444
- calculatedStatus?: Maybe<ScalarsEnums["String"]>;
80445
80545
  calculatedTitle?: Maybe<ScalarsEnums["String"]>;
80446
80546
  calculated_title?: Maybe<ScalarsEnums["String"]>;
80447
80547
  centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
@@ -7497,13 +7497,21 @@ export const generatedSchema = {
7497
7497
  },
7498
7498
  core_flow_mapping: {
7499
7499
  __typename: { __type: "String!" },
7500
+ account: { __type: "account" },
7500
7501
  account_id: { __type: "uuid" },
7502
+ booking_channel: { __type: "booking_channel" },
7501
7503
  booking_channel_id: { __type: "uuid" },
7504
+ contact: { __type: "contact" },
7502
7505
  contact_id: { __type: "uuid" },
7506
+ flow: { __type: "core_flow!" },
7503
7507
  flow_id: { __type: "uuid!" },
7504
7508
  id: { __type: "uuid!" },
7509
+ listing: { __type: "listing" },
7505
7510
  listing_id: { __type: "uuid" },
7506
7511
  mapping_key: { __type: "String!" },
7512
+ rate: { __type: "rate" },
7513
+ rate_id: { __type: "uuid" },
7514
+ source: { __type: "source!" },
7507
7515
  source_id: { __type: "uuid!" },
7508
7516
  value: { __type: "jsonb", __args: { path: "String" } },
7509
7517
  },
@@ -7529,13 +7537,21 @@ export const generatedSchema = {
7529
7537
  _and: { __type: "[core_flow_mapping_bool_exp!]" },
7530
7538
  _not: { __type: "core_flow_mapping_bool_exp" },
7531
7539
  _or: { __type: "[core_flow_mapping_bool_exp!]" },
7540
+ account: { __type: "account_bool_exp" },
7532
7541
  account_id: { __type: "uuid_comparison_exp" },
7542
+ booking_channel: { __type: "booking_channel_bool_exp" },
7533
7543
  booking_channel_id: { __type: "uuid_comparison_exp" },
7544
+ contact: { __type: "contact_bool_exp" },
7534
7545
  contact_id: { __type: "uuid_comparison_exp" },
7546
+ flow: { __type: "core_flow_bool_exp" },
7535
7547
  flow_id: { __type: "uuid_comparison_exp" },
7536
7548
  id: { __type: "uuid_comparison_exp" },
7549
+ listing: { __type: "listing_bool_exp" },
7537
7550
  listing_id: { __type: "uuid_comparison_exp" },
7538
7551
  mapping_key: { __type: "String_comparison_exp" },
7552
+ rate: { __type: "rate_bool_exp" },
7553
+ rate_id: { __type: "uuid_comparison_exp" },
7554
+ source: { __type: "source_bool_exp" },
7539
7555
  source_id: { __type: "uuid_comparison_exp" },
7540
7556
  value: { __type: "jsonb_comparison_exp" },
7541
7557
  },
@@ -7543,13 +7559,21 @@ export const generatedSchema = {
7543
7559
  core_flow_mapping_delete_elem_input: { value: { __type: "Int" } },
7544
7560
  core_flow_mapping_delete_key_input: { value: { __type: "String" } },
7545
7561
  core_flow_mapping_insert_input: {
7562
+ account: { __type: "account_obj_rel_insert_input" },
7546
7563
  account_id: { __type: "uuid" },
7564
+ booking_channel: { __type: "booking_channel_obj_rel_insert_input" },
7547
7565
  booking_channel_id: { __type: "uuid" },
7566
+ contact: { __type: "contact_obj_rel_insert_input" },
7548
7567
  contact_id: { __type: "uuid" },
7568
+ flow: { __type: "core_flow_obj_rel_insert_input" },
7549
7569
  flow_id: { __type: "uuid" },
7550
7570
  id: { __type: "uuid" },
7571
+ listing: { __type: "listing_obj_rel_insert_input" },
7551
7572
  listing_id: { __type: "uuid" },
7552
7573
  mapping_key: { __type: "String" },
7574
+ rate: { __type: "rate_obj_rel_insert_input" },
7575
+ rate_id: { __type: "uuid" },
7576
+ source: { __type: "source_obj_rel_insert_input" },
7553
7577
  source_id: { __type: "uuid" },
7554
7578
  value: { __type: "jsonb" },
7555
7579
  },
@@ -7562,6 +7586,7 @@ export const generatedSchema = {
7562
7586
  id: { __type: "uuid" },
7563
7587
  listing_id: { __type: "uuid" },
7564
7588
  mapping_key: { __type: "String" },
7589
+ rate_id: { __type: "uuid" },
7565
7590
  source_id: { __type: "uuid" },
7566
7591
  },
7567
7592
  core_flow_mapping_min_fields: {
@@ -7573,6 +7598,7 @@ export const generatedSchema = {
7573
7598
  id: { __type: "uuid" },
7574
7599
  listing_id: { __type: "uuid" },
7575
7600
  mapping_key: { __type: "String" },
7601
+ rate_id: { __type: "uuid" },
7576
7602
  source_id: { __type: "uuid" },
7577
7603
  },
7578
7604
  core_flow_mapping_mutation_response: {
@@ -7586,13 +7612,21 @@ export const generatedSchema = {
7586
7612
  where: { __type: "core_flow_mapping_bool_exp" },
7587
7613
  },
7588
7614
  core_flow_mapping_order_by: {
7615
+ account: { __type: "account_order_by" },
7589
7616
  account_id: { __type: "order_by" },
7617
+ booking_channel: { __type: "booking_channel_order_by" },
7590
7618
  booking_channel_id: { __type: "order_by" },
7619
+ contact: { __type: "contact_order_by" },
7591
7620
  contact_id: { __type: "order_by" },
7621
+ flow: { __type: "core_flow_order_by" },
7592
7622
  flow_id: { __type: "order_by" },
7593
7623
  id: { __type: "order_by" },
7624
+ listing: { __type: "listing_order_by" },
7594
7625
  listing_id: { __type: "order_by" },
7595
7626
  mapping_key: { __type: "order_by" },
7627
+ rate: { __type: "rate_order_by" },
7628
+ rate_id: { __type: "order_by" },
7629
+ source: { __type: "source_order_by" },
7596
7630
  source_id: { __type: "order_by" },
7597
7631
  value: { __type: "order_by" },
7598
7632
  },
@@ -7606,6 +7640,7 @@ export const generatedSchema = {
7606
7640
  id: { __type: "uuid" },
7607
7641
  listing_id: { __type: "uuid" },
7608
7642
  mapping_key: { __type: "String" },
7643
+ rate_id: { __type: "uuid" },
7609
7644
  source_id: { __type: "uuid" },
7610
7645
  value: { __type: "jsonb" },
7611
7646
  },
@@ -7621,6 +7656,7 @@ export const generatedSchema = {
7621
7656
  id: { __type: "uuid" },
7622
7657
  listing_id: { __type: "uuid" },
7623
7658
  mapping_key: { __type: "String" },
7659
+ rate_id: { __type: "uuid" },
7624
7660
  source_id: { __type: "uuid" },
7625
7661
  value: { __type: "jsonb" },
7626
7662
  },
@@ -7654,6 +7690,10 @@ export const generatedSchema = {
7654
7690
  affected_rows: { __type: "Int!" },
7655
7691
  returning: { __type: "[core_flow!]!" },
7656
7692
  },
7693
+ core_flow_obj_rel_insert_input: {
7694
+ data: { __type: "core_flow_insert_input!" },
7695
+ on_conflict: { __type: "core_flow_on_conflict" },
7696
+ },
7657
7697
  core_flow_on_conflict: {
7658
7698
  constraint: { __type: "core_flow_constraint!" },
7659
7699
  update_columns: { __type: "[core_flow_update_column!]!" },
@@ -10334,7 +10374,7 @@ export const generatedSchema = {
10334
10374
  address_id: { __type: "uuid" },
10335
10375
  bedrooms: { __type: "Int" },
10336
10376
  beds: { __type: "Int" },
10337
- calculatedStatus: { __type: "String" },
10377
+ calculatedStatus: { __type: "activeStatus_enum" },
10338
10378
  calculatedTitle: { __type: "String" },
10339
10379
  calculated_title: { __type: "String" },
10340
10380
  centExpenseReserve: { __type: "Int" },
@@ -11333,7 +11373,7 @@ export const generatedSchema = {
11333
11373
  address_id: { __type: "uuid_comparison_exp" },
11334
11374
  bedrooms: { __type: "Int_comparison_exp" },
11335
11375
  beds: { __type: "Int_comparison_exp" },
11336
- calculatedStatus: { __type: "String_comparison_exp" },
11376
+ calculatedStatus: { __type: "activeStatus_enum_comparison_exp" },
11337
11377
  calculatedTitle: { __type: "String_comparison_exp" },
11338
11378
  calculated_title: { __type: "String_comparison_exp" },
11339
11379
  centExpenseReserve: { __type: "Int_comparison_exp" },
@@ -12124,7 +12164,6 @@ export const generatedSchema = {
12124
12164
  address_id: { __type: "uuid" },
12125
12165
  bedrooms: { __type: "Int" },
12126
12166
  beds: { __type: "Int" },
12127
- calculatedStatus: { __type: "String" },
12128
12167
  calculatedTitle: { __type: "String" },
12129
12168
  calculated_title: { __type: "String" },
12130
12169
  centExpenseReserve: { __type: "Int" },
@@ -12151,7 +12190,6 @@ export const generatedSchema = {
12151
12190
  address_id: { __type: "order_by" },
12152
12191
  bedrooms: { __type: "order_by" },
12153
12192
  beds: { __type: "order_by" },
12154
- calculatedStatus: { __type: "order_by" },
12155
12193
  calculatedTitle: { __type: "order_by" },
12156
12194
  calculated_title: { __type: "order_by" },
12157
12195
  centExpenseReserve: { __type: "order_by" },
@@ -12179,7 +12217,6 @@ export const generatedSchema = {
12179
12217
  address_id: { __type: "uuid" },
12180
12218
  bedrooms: { __type: "Int" },
12181
12219
  beds: { __type: "Int" },
12182
- calculatedStatus: { __type: "String" },
12183
12220
  calculatedTitle: { __type: "String" },
12184
12221
  calculated_title: { __type: "String" },
12185
12222
  centExpenseReserve: { __type: "Int" },
@@ -12206,7 +12243,6 @@ export const generatedSchema = {
12206
12243
  address_id: { __type: "order_by" },
12207
12244
  bedrooms: { __type: "order_by" },
12208
12245
  beds: { __type: "order_by" },
12209
- calculatedStatus: { __type: "order_by" },
12210
12246
  calculatedTitle: { __type: "order_by" },
12211
12247
  calculated_title: { __type: "order_by" },
12212
12248
  centExpenseReserve: { __type: "order_by" },
@@ -12756,7 +12792,7 @@ export const generatedSchema = {
12756
12792
  address_id: { __type: "uuid" },
12757
12793
  bedrooms: { __type: "Int" },
12758
12794
  beds: { __type: "Int" },
12759
- calculatedStatus: { __type: "String" },
12795
+ calculatedStatus: { __type: "activeStatus_enum" },
12760
12796
  calculatedTitle: { __type: "String" },
12761
12797
  calculated_title: { __type: "String" },
12762
12798
  centExpenseReserve: { __type: "Int" },