@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"]>;
@@ -7471,13 +7471,21 @@ export const generatedSchema = {
7471
7471
  },
7472
7472
  core_flow_mapping: {
7473
7473
  __typename: { __type: "String!" },
7474
+ account: { __type: "account" },
7474
7475
  account_id: { __type: "uuid" },
7476
+ booking_channel: { __type: "booking_channel" },
7475
7477
  booking_channel_id: { __type: "uuid" },
7478
+ contact: { __type: "contact" },
7476
7479
  contact_id: { __type: "uuid" },
7480
+ flow: { __type: "core_flow!" },
7477
7481
  flow_id: { __type: "uuid!" },
7478
7482
  id: { __type: "uuid!" },
7483
+ listing: { __type: "listing" },
7479
7484
  listing_id: { __type: "uuid" },
7480
7485
  mapping_key: { __type: "String!" },
7486
+ rate: { __type: "rate" },
7487
+ rate_id: { __type: "uuid" },
7488
+ source: { __type: "source!" },
7481
7489
  source_id: { __type: "uuid!" },
7482
7490
  value: { __type: "jsonb", __args: { path: "String" } },
7483
7491
  },
@@ -7503,13 +7511,21 @@ export const generatedSchema = {
7503
7511
  _and: { __type: "[core_flow_mapping_bool_exp!]" },
7504
7512
  _not: { __type: "core_flow_mapping_bool_exp" },
7505
7513
  _or: { __type: "[core_flow_mapping_bool_exp!]" },
7514
+ account: { __type: "account_bool_exp" },
7506
7515
  account_id: { __type: "uuid_comparison_exp" },
7516
+ booking_channel: { __type: "booking_channel_bool_exp" },
7507
7517
  booking_channel_id: { __type: "uuid_comparison_exp" },
7518
+ contact: { __type: "contact_bool_exp" },
7508
7519
  contact_id: { __type: "uuid_comparison_exp" },
7520
+ flow: { __type: "core_flow_bool_exp" },
7509
7521
  flow_id: { __type: "uuid_comparison_exp" },
7510
7522
  id: { __type: "uuid_comparison_exp" },
7523
+ listing: { __type: "listing_bool_exp" },
7511
7524
  listing_id: { __type: "uuid_comparison_exp" },
7512
7525
  mapping_key: { __type: "String_comparison_exp" },
7526
+ rate: { __type: "rate_bool_exp" },
7527
+ rate_id: { __type: "uuid_comparison_exp" },
7528
+ source: { __type: "source_bool_exp" },
7513
7529
  source_id: { __type: "uuid_comparison_exp" },
7514
7530
  value: { __type: "jsonb_comparison_exp" },
7515
7531
  },
@@ -7517,13 +7533,21 @@ export const generatedSchema = {
7517
7533
  core_flow_mapping_delete_elem_input: { value: { __type: "Int" } },
7518
7534
  core_flow_mapping_delete_key_input: { value: { __type: "String" } },
7519
7535
  core_flow_mapping_insert_input: {
7536
+ account: { __type: "account_obj_rel_insert_input" },
7520
7537
  account_id: { __type: "uuid" },
7538
+ booking_channel: { __type: "booking_channel_obj_rel_insert_input" },
7521
7539
  booking_channel_id: { __type: "uuid" },
7540
+ contact: { __type: "contact_obj_rel_insert_input" },
7522
7541
  contact_id: { __type: "uuid" },
7542
+ flow: { __type: "core_flow_obj_rel_insert_input" },
7523
7543
  flow_id: { __type: "uuid" },
7524
7544
  id: { __type: "uuid" },
7545
+ listing: { __type: "listing_obj_rel_insert_input" },
7525
7546
  listing_id: { __type: "uuid" },
7526
7547
  mapping_key: { __type: "String" },
7548
+ rate: { __type: "rate_obj_rel_insert_input" },
7549
+ rate_id: { __type: "uuid" },
7550
+ source: { __type: "source_obj_rel_insert_input" },
7527
7551
  source_id: { __type: "uuid" },
7528
7552
  value: { __type: "jsonb" },
7529
7553
  },
@@ -7536,6 +7560,7 @@ export const generatedSchema = {
7536
7560
  id: { __type: "uuid" },
7537
7561
  listing_id: { __type: "uuid" },
7538
7562
  mapping_key: { __type: "String" },
7563
+ rate_id: { __type: "uuid" },
7539
7564
  source_id: { __type: "uuid" },
7540
7565
  },
7541
7566
  core_flow_mapping_min_fields: {
@@ -7547,6 +7572,7 @@ export const generatedSchema = {
7547
7572
  id: { __type: "uuid" },
7548
7573
  listing_id: { __type: "uuid" },
7549
7574
  mapping_key: { __type: "String" },
7575
+ rate_id: { __type: "uuid" },
7550
7576
  source_id: { __type: "uuid" },
7551
7577
  },
7552
7578
  core_flow_mapping_mutation_response: {
@@ -7560,13 +7586,21 @@ export const generatedSchema = {
7560
7586
  where: { __type: "core_flow_mapping_bool_exp" },
7561
7587
  },
7562
7588
  core_flow_mapping_order_by: {
7589
+ account: { __type: "account_order_by" },
7563
7590
  account_id: { __type: "order_by" },
7591
+ booking_channel: { __type: "booking_channel_order_by" },
7564
7592
  booking_channel_id: { __type: "order_by" },
7593
+ contact: { __type: "contact_order_by" },
7565
7594
  contact_id: { __type: "order_by" },
7595
+ flow: { __type: "core_flow_order_by" },
7566
7596
  flow_id: { __type: "order_by" },
7567
7597
  id: { __type: "order_by" },
7598
+ listing: { __type: "listing_order_by" },
7568
7599
  listing_id: { __type: "order_by" },
7569
7600
  mapping_key: { __type: "order_by" },
7601
+ rate: { __type: "rate_order_by" },
7602
+ rate_id: { __type: "order_by" },
7603
+ source: { __type: "source_order_by" },
7570
7604
  source_id: { __type: "order_by" },
7571
7605
  value: { __type: "order_by" },
7572
7606
  },
@@ -7580,6 +7614,7 @@ export const generatedSchema = {
7580
7614
  id: { __type: "uuid" },
7581
7615
  listing_id: { __type: "uuid" },
7582
7616
  mapping_key: { __type: "String" },
7617
+ rate_id: { __type: "uuid" },
7583
7618
  source_id: { __type: "uuid" },
7584
7619
  value: { __type: "jsonb" },
7585
7620
  },
@@ -7595,6 +7630,7 @@ export const generatedSchema = {
7595
7630
  id: { __type: "uuid" },
7596
7631
  listing_id: { __type: "uuid" },
7597
7632
  mapping_key: { __type: "String" },
7633
+ rate_id: { __type: "uuid" },
7598
7634
  source_id: { __type: "uuid" },
7599
7635
  value: { __type: "jsonb" },
7600
7636
  },
@@ -7628,6 +7664,10 @@ export const generatedSchema = {
7628
7664
  affected_rows: { __type: "Int!" },
7629
7665
  returning: { __type: "[core_flow!]!" },
7630
7666
  },
7667
+ core_flow_obj_rel_insert_input: {
7668
+ data: { __type: "core_flow_insert_input!" },
7669
+ on_conflict: { __type: "core_flow_on_conflict" },
7670
+ },
7631
7671
  core_flow_on_conflict: {
7632
7672
  constraint: { __type: "core_flow_constraint!" },
7633
7673
  update_columns: { __type: "[core_flow_update_column!]!" },
@@ -10302,7 +10342,7 @@ export const generatedSchema = {
10302
10342
  address_id: { __type: "uuid" },
10303
10343
  bedrooms: { __type: "Int" },
10304
10344
  beds: { __type: "Int" },
10305
- calculatedStatus: { __type: "String" },
10345
+ calculatedStatus: { __type: "activeStatus_enum" },
10306
10346
  calculatedTitle: { __type: "String" },
10307
10347
  calculated_title: { __type: "String" },
10308
10348
  centExpenseReserve: { __type: "Int" },
@@ -11299,7 +11339,7 @@ export const generatedSchema = {
11299
11339
  address_id: { __type: "uuid_comparison_exp" },
11300
11340
  bedrooms: { __type: "Int_comparison_exp" },
11301
11341
  beds: { __type: "Int_comparison_exp" },
11302
- calculatedStatus: { __type: "String_comparison_exp" },
11342
+ calculatedStatus: { __type: "activeStatus_enum_comparison_exp" },
11303
11343
  calculatedTitle: { __type: "String_comparison_exp" },
11304
11344
  calculated_title: { __type: "String_comparison_exp" },
11305
11345
  centExpenseReserve: { __type: "Int_comparison_exp" },
@@ -12090,7 +12130,6 @@ export const generatedSchema = {
12090
12130
  address_id: { __type: "uuid" },
12091
12131
  bedrooms: { __type: "Int" },
12092
12132
  beds: { __type: "Int" },
12093
- calculatedStatus: { __type: "String" },
12094
12133
  calculatedTitle: { __type: "String" },
12095
12134
  calculated_title: { __type: "String" },
12096
12135
  centExpenseReserve: { __type: "Int" },
@@ -12117,7 +12156,6 @@ export const generatedSchema = {
12117
12156
  address_id: { __type: "order_by" },
12118
12157
  bedrooms: { __type: "order_by" },
12119
12158
  beds: { __type: "order_by" },
12120
- calculatedStatus: { __type: "order_by" },
12121
12159
  calculatedTitle: { __type: "order_by" },
12122
12160
  calculated_title: { __type: "order_by" },
12123
12161
  centExpenseReserve: { __type: "order_by" },
@@ -12145,7 +12183,6 @@ export const generatedSchema = {
12145
12183
  address_id: { __type: "uuid" },
12146
12184
  bedrooms: { __type: "Int" },
12147
12185
  beds: { __type: "Int" },
12148
- calculatedStatus: { __type: "String" },
12149
12186
  calculatedTitle: { __type: "String" },
12150
12187
  calculated_title: { __type: "String" },
12151
12188
  centExpenseReserve: { __type: "Int" },
@@ -12172,7 +12209,6 @@ export const generatedSchema = {
12172
12209
  address_id: { __type: "order_by" },
12173
12210
  bedrooms: { __type: "order_by" },
12174
12211
  beds: { __type: "order_by" },
12175
- calculatedStatus: { __type: "order_by" },
12176
12212
  calculatedTitle: { __type: "order_by" },
12177
12213
  calculated_title: { __type: "order_by" },
12178
12214
  centExpenseReserve: { __type: "order_by" },
@@ -12722,7 +12758,7 @@ export const generatedSchema = {
12722
12758
  address_id: { __type: "uuid" },
12723
12759
  bedrooms: { __type: "Int" },
12724
12760
  beds: { __type: "Int" },
12725
- calculatedStatus: { __type: "String" },
12761
+ calculatedStatus: { __type: "activeStatus_enum" },
12726
12762
  calculatedTitle: { __type: "String" },
12727
12763
  calculated_title: { __type: "String" },
12728
12764
  centExpenseReserve: { __type: "Int" },
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "!**/*.spec.*",
11
11
  "LICENSE"
12
12
  ],
13
- "version": "1.1.18",
13
+ "version": "1.1.19",
14
14
  "description": "Finalytic graphql",
15
15
  "main": "build/main/index.js",
16
16
  "module": "build/module/index.js",