@vrplatform/graphql 1.1.25 → 1.1.26

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.
@@ -5661,6 +5661,8 @@ export interface connection_bool_exp {
5661
5661
  fetchStatus?: InputMaybe<syncStatus_enum_comparison_exp>;
5662
5662
  files?: InputMaybe<file_storage_bool_exp>;
5663
5663
  files_aggregate?: InputMaybe<file_storage_aggregate_bool_exp>;
5664
+ flows?: InputMaybe<core_flow_bool_exp>;
5665
+ flows_aggregate?: InputMaybe<core_flow_aggregate_bool_exp>;
5664
5666
  icon?: InputMaybe<String_comparison_exp>;
5665
5667
  id?: InputMaybe<uuid_comparison_exp>;
5666
5668
  lastFetch?: InputMaybe<timestamptz_comparison_exp>;
@@ -5746,6 +5748,7 @@ export interface connection_insert_input {
5746
5748
  fetchNext?: InputMaybe<Scalars["timestamptz"]>;
5747
5749
  fetchStatus?: InputMaybe<syncStatus_enum>;
5748
5750
  files?: InputMaybe<file_storage_arr_rel_insert_input>;
5751
+ flows?: InputMaybe<core_flow_arr_rel_insert_input>;
5749
5752
  icon?: InputMaybe<Scalars["String"]>;
5750
5753
  id?: InputMaybe<Scalars["uuid"]>;
5751
5754
  lastFetch?: InputMaybe<Scalars["timestamptz"]>;
@@ -5833,6 +5836,7 @@ export interface connection_order_by {
5833
5836
  fetchNext?: InputMaybe<order_by>;
5834
5837
  fetchStatus?: InputMaybe<order_by>;
5835
5838
  files_aggregate?: InputMaybe<file_storage_aggregate_order_by>;
5839
+ flows_aggregate?: InputMaybe<core_flow_aggregate_order_by>;
5836
5840
  icon?: InputMaybe<order_by>;
5837
5841
  id?: InputMaybe<order_by>;
5838
5842
  lastFetch?: InputMaybe<order_by>;
@@ -6729,12 +6733,37 @@ export interface core_change_source_link_updates {
6729
6733
  where: core_change_source_link_bool_exp;
6730
6734
  }
6731
6735
 
6736
+ export interface core_flow_aggregate_bool_exp {
6737
+ count?: InputMaybe<core_flow_aggregate_bool_exp_count>;
6738
+ }
6739
+
6740
+ export interface core_flow_aggregate_bool_exp_count {
6741
+ arguments?: InputMaybe<Array<core_flow_select_column>>;
6742
+ distinct?: InputMaybe<Scalars["Boolean"]>;
6743
+ filter?: InputMaybe<core_flow_bool_exp>;
6744
+ predicate: Int_comparison_exp;
6745
+ }
6746
+
6747
+ /** order by aggregate values of table "core.flow" */
6748
+ export interface core_flow_aggregate_order_by {
6749
+ count?: InputMaybe<order_by>;
6750
+ max?: InputMaybe<core_flow_max_order_by>;
6751
+ min?: InputMaybe<core_flow_min_order_by>;
6752
+ }
6753
+
6732
6754
  /** append existing jsonb value of filtered columns with new jsonb value */
6733
6755
  export interface core_flow_append_input {
6734
6756
  mapping_schema?: InputMaybe<Scalars["jsonb"]>;
6735
6757
  setting_schema?: InputMaybe<Scalars["jsonb"]>;
6736
6758
  }
6737
6759
 
6760
+ /** input type for inserting array relation for remote table "core.flow" */
6761
+ export interface core_flow_arr_rel_insert_input {
6762
+ data: Array<core_flow_insert_input>;
6763
+ /** upsert condition */
6764
+ on_conflict?: InputMaybe<core_flow_on_conflict>;
6765
+ }
6766
+
6738
6767
  /** Boolean expression to filter rows from the table "core.flow". All fields are combined with a logical 'AND'. */
6739
6768
  export interface core_flow_bool_exp {
6740
6769
  _and?: InputMaybe<Array<core_flow_bool_exp>>;
@@ -6799,6 +6828,7 @@ export interface core_flow_mapping_bool_exp {
6799
6828
  booking_channel_id?: InputMaybe<uuid_comparison_exp>;
6800
6829
  contact?: InputMaybe<contact_bool_exp>;
6801
6830
  contact_id?: InputMaybe<uuid_comparison_exp>;
6831
+ createdAt?: InputMaybe<timestamptz_comparison_exp>;
6802
6832
  flow?: InputMaybe<core_flow_bool_exp>;
6803
6833
  flow_id?: InputMaybe<uuid_comparison_exp>;
6804
6834
  id?: InputMaybe<uuid_comparison_exp>;
@@ -6810,7 +6840,8 @@ export interface core_flow_mapping_bool_exp {
6810
6840
  source?: InputMaybe<source_bool_exp>;
6811
6841
  source_id?: InputMaybe<uuid_comparison_exp>;
6812
6842
  tenant?: InputMaybe<tenant_bool_exp>;
6813
- tenant_id?: InputMaybe<uuid_comparison_exp>;
6843
+ tenantId?: InputMaybe<uuid_comparison_exp>;
6844
+ updatedAt?: InputMaybe<timestamptz_comparison_exp>;
6814
6845
  value?: InputMaybe<jsonb_comparison_exp>;
6815
6846
  }
6816
6847
 
@@ -6844,6 +6875,7 @@ export interface core_flow_mapping_insert_input {
6844
6875
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
6845
6876
  contact?: InputMaybe<contact_obj_rel_insert_input>;
6846
6877
  contact_id?: InputMaybe<Scalars["uuid"]>;
6878
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
6847
6879
  flow?: InputMaybe<core_flow_obj_rel_insert_input>;
6848
6880
  flow_id?: InputMaybe<Scalars["uuid"]>;
6849
6881
  id?: InputMaybe<Scalars["uuid"]>;
@@ -6855,7 +6887,8 @@ export interface core_flow_mapping_insert_input {
6855
6887
  source?: InputMaybe<source_obj_rel_insert_input>;
6856
6888
  source_id?: InputMaybe<Scalars["uuid"]>;
6857
6889
  tenant?: InputMaybe<tenant_obj_rel_insert_input>;
6858
- tenant_id?: InputMaybe<Scalars["uuid"]>;
6890
+ tenantId?: InputMaybe<Scalars["uuid"]>;
6891
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
6859
6892
  value?: InputMaybe<Scalars["jsonb"]>;
6860
6893
  }
6861
6894
 
@@ -6874,6 +6907,7 @@ export interface core_flow_mapping_order_by {
6874
6907
  booking_channel_id?: InputMaybe<order_by>;
6875
6908
  contact?: InputMaybe<contact_order_by>;
6876
6909
  contact_id?: InputMaybe<order_by>;
6910
+ createdAt?: InputMaybe<order_by>;
6877
6911
  flow?: InputMaybe<core_flow_order_by>;
6878
6912
  flow_id?: InputMaybe<order_by>;
6879
6913
  id?: InputMaybe<order_by>;
@@ -6885,7 +6919,8 @@ export interface core_flow_mapping_order_by {
6885
6919
  source?: InputMaybe<source_order_by>;
6886
6920
  source_id?: InputMaybe<order_by>;
6887
6921
  tenant?: InputMaybe<tenant_order_by>;
6888
- tenant_id?: InputMaybe<order_by>;
6922
+ tenantId?: InputMaybe<order_by>;
6923
+ updatedAt?: InputMaybe<order_by>;
6889
6924
  value?: InputMaybe<order_by>;
6890
6925
  }
6891
6926
 
@@ -6908,6 +6943,8 @@ export type core_flow_mapping_select_column =
6908
6943
  /** column name */
6909
6944
  | "contact_id"
6910
6945
  /** column name */
6946
+ | "createdAt"
6947
+ /** column name */
6911
6948
  | "flow_id"
6912
6949
  /** column name */
6913
6950
  | "id"
@@ -6920,7 +6957,9 @@ export type core_flow_mapping_select_column =
6920
6957
  /** column name */
6921
6958
  | "source_id"
6922
6959
  /** column name */
6923
- | "tenant_id"
6960
+ | "tenantId"
6961
+ /** column name */
6962
+ | "updatedAt"
6924
6963
  /** column name */
6925
6964
  | "value";
6926
6965
 
@@ -6929,13 +6968,15 @@ export interface core_flow_mapping_set_input {
6929
6968
  account_id?: InputMaybe<Scalars["uuid"]>;
6930
6969
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
6931
6970
  contact_id?: InputMaybe<Scalars["uuid"]>;
6971
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
6932
6972
  flow_id?: InputMaybe<Scalars["uuid"]>;
6933
6973
  id?: InputMaybe<Scalars["uuid"]>;
6934
6974
  listing_id?: InputMaybe<Scalars["uuid"]>;
6935
6975
  mapping_key?: InputMaybe<Scalars["String"]>;
6936
6976
  rate_id?: InputMaybe<Scalars["uuid"]>;
6937
6977
  source_id?: InputMaybe<Scalars["uuid"]>;
6938
- tenant_id?: InputMaybe<Scalars["uuid"]>;
6978
+ tenantId?: InputMaybe<Scalars["uuid"]>;
6979
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
6939
6980
  value?: InputMaybe<Scalars["jsonb"]>;
6940
6981
  }
6941
6982
 
@@ -6952,13 +6993,15 @@ export interface core_flow_mapping_stream_cursor_value_input {
6952
6993
  account_id?: InputMaybe<Scalars["uuid"]>;
6953
6994
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
6954
6995
  contact_id?: InputMaybe<Scalars["uuid"]>;
6996
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
6955
6997
  flow_id?: InputMaybe<Scalars["uuid"]>;
6956
6998
  id?: InputMaybe<Scalars["uuid"]>;
6957
6999
  listing_id?: InputMaybe<Scalars["uuid"]>;
6958
7000
  mapping_key?: InputMaybe<Scalars["String"]>;
6959
7001
  rate_id?: InputMaybe<Scalars["uuid"]>;
6960
7002
  source_id?: InputMaybe<Scalars["uuid"]>;
6961
- tenant_id?: InputMaybe<Scalars["uuid"]>;
7003
+ tenantId?: InputMaybe<Scalars["uuid"]>;
7004
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
6962
7005
  value?: InputMaybe<Scalars["jsonb"]>;
6963
7006
  }
6964
7007
 
@@ -6971,6 +7014,8 @@ export type core_flow_mapping_update_column =
6971
7014
  /** column name */
6972
7015
  | "contact_id"
6973
7016
  /** column name */
7017
+ | "createdAt"
7018
+ /** column name */
6974
7019
  | "flow_id"
6975
7020
  /** column name */
6976
7021
  | "id"
@@ -6983,7 +7028,9 @@ export type core_flow_mapping_update_column =
6983
7028
  /** column name */
6984
7029
  | "source_id"
6985
7030
  /** column name */
6986
- | "tenant_id"
7031
+ | "tenantId"
7032
+ /** column name */
7033
+ | "updatedAt"
6987
7034
  /** column name */
6988
7035
  | "value";
6989
7036
 
@@ -7004,6 +7051,24 @@ export interface core_flow_mapping_updates {
7004
7051
  where: core_flow_mapping_bool_exp;
7005
7052
  }
7006
7053
 
7054
+ /** order by max() on columns of table "core.flow" */
7055
+ export interface core_flow_max_order_by {
7056
+ app_id?: InputMaybe<order_by>;
7057
+ description?: InputMaybe<order_by>;
7058
+ id?: InputMaybe<order_by>;
7059
+ title?: InputMaybe<order_by>;
7060
+ type?: InputMaybe<order_by>;
7061
+ }
7062
+
7063
+ /** order by min() on columns of table "core.flow" */
7064
+ export interface core_flow_min_order_by {
7065
+ app_id?: InputMaybe<order_by>;
7066
+ description?: InputMaybe<order_by>;
7067
+ id?: InputMaybe<order_by>;
7068
+ title?: InputMaybe<order_by>;
7069
+ type?: InputMaybe<order_by>;
7070
+ }
7071
+
7007
7072
  /** input type for inserting object relation for remote table "core.flow" */
7008
7073
  export interface core_flow_obj_rel_insert_input {
7009
7074
  data: core_flow_insert_input;
@@ -7086,6 +7151,7 @@ export interface core_flow_setting_bool_exp {
7086
7151
  connection_id?: InputMaybe<uuid_comparison_exp>;
7087
7152
  contact?: InputMaybe<contact_bool_exp>;
7088
7153
  contact_id?: InputMaybe<uuid_comparison_exp>;
7154
+ createdAt?: InputMaybe<timestamptz_comparison_exp>;
7089
7155
  flow?: InputMaybe<core_flow_bool_exp>;
7090
7156
  flow_id?: InputMaybe<uuid_comparison_exp>;
7091
7157
  id?: InputMaybe<uuid_comparison_exp>;
@@ -7093,7 +7159,8 @@ export interface core_flow_setting_bool_exp {
7093
7159
  listing_id?: InputMaybe<uuid_comparison_exp>;
7094
7160
  setting_key?: InputMaybe<String_comparison_exp>;
7095
7161
  tenant?: InputMaybe<tenant_bool_exp>;
7096
- tenant_id?: InputMaybe<uuid_comparison_exp>;
7162
+ tenantId?: InputMaybe<uuid_comparison_exp>;
7163
+ updatedAt?: InputMaybe<timestamptz_comparison_exp>;
7097
7164
  value?: InputMaybe<jsonb_comparison_exp>;
7098
7165
  }
7099
7166
 
@@ -7129,6 +7196,7 @@ export interface core_flow_setting_insert_input {
7129
7196
  connection_id?: InputMaybe<Scalars["uuid"]>;
7130
7197
  contact?: InputMaybe<contact_obj_rel_insert_input>;
7131
7198
  contact_id?: InputMaybe<Scalars["uuid"]>;
7199
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
7132
7200
  flow?: InputMaybe<core_flow_obj_rel_insert_input>;
7133
7201
  flow_id?: InputMaybe<Scalars["uuid"]>;
7134
7202
  id?: InputMaybe<Scalars["uuid"]>;
@@ -7136,7 +7204,8 @@ export interface core_flow_setting_insert_input {
7136
7204
  listing_id?: InputMaybe<Scalars["uuid"]>;
7137
7205
  setting_key?: InputMaybe<Scalars["String"]>;
7138
7206
  tenant?: InputMaybe<tenant_obj_rel_insert_input>;
7139
- tenant_id?: InputMaybe<Scalars["uuid"]>;
7207
+ tenantId?: InputMaybe<Scalars["uuid"]>;
7208
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7140
7209
  value?: InputMaybe<Scalars["jsonb"]>;
7141
7210
  }
7142
7211
 
@@ -7157,6 +7226,7 @@ export interface core_flow_setting_order_by {
7157
7226
  connection_id?: InputMaybe<order_by>;
7158
7227
  contact?: InputMaybe<contact_order_by>;
7159
7228
  contact_id?: InputMaybe<order_by>;
7229
+ createdAt?: InputMaybe<order_by>;
7160
7230
  flow?: InputMaybe<core_flow_order_by>;
7161
7231
  flow_id?: InputMaybe<order_by>;
7162
7232
  id?: InputMaybe<order_by>;
@@ -7164,7 +7234,8 @@ export interface core_flow_setting_order_by {
7164
7234
  listing_id?: InputMaybe<order_by>;
7165
7235
  setting_key?: InputMaybe<order_by>;
7166
7236
  tenant?: InputMaybe<tenant_order_by>;
7167
- tenant_id?: InputMaybe<order_by>;
7237
+ tenantId?: InputMaybe<order_by>;
7238
+ updatedAt?: InputMaybe<order_by>;
7168
7239
  value?: InputMaybe<order_by>;
7169
7240
  }
7170
7241
 
@@ -7189,6 +7260,8 @@ export type core_flow_setting_select_column =
7189
7260
  /** column name */
7190
7261
  | "contact_id"
7191
7262
  /** column name */
7263
+ | "createdAt"
7264
+ /** column name */
7192
7265
  | "flow_id"
7193
7266
  /** column name */
7194
7267
  | "id"
@@ -7197,7 +7270,9 @@ export type core_flow_setting_select_column =
7197
7270
  /** column name */
7198
7271
  | "setting_key"
7199
7272
  /** column name */
7200
- | "tenant_id"
7273
+ | "tenantId"
7274
+ /** column name */
7275
+ | "updatedAt"
7201
7276
  /** column name */
7202
7277
  | "value";
7203
7278
 
@@ -7207,11 +7282,13 @@ export interface core_flow_setting_set_input {
7207
7282
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
7208
7283
  connection_id?: InputMaybe<Scalars["uuid"]>;
7209
7284
  contact_id?: InputMaybe<Scalars["uuid"]>;
7285
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
7210
7286
  flow_id?: InputMaybe<Scalars["uuid"]>;
7211
7287
  id?: InputMaybe<Scalars["uuid"]>;
7212
7288
  listing_id?: InputMaybe<Scalars["uuid"]>;
7213
7289
  setting_key?: InputMaybe<Scalars["String"]>;
7214
- tenant_id?: InputMaybe<Scalars["uuid"]>;
7290
+ tenantId?: InputMaybe<Scalars["uuid"]>;
7291
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7215
7292
  value?: InputMaybe<Scalars["jsonb"]>;
7216
7293
  }
7217
7294
 
@@ -7229,11 +7306,13 @@ export interface core_flow_setting_stream_cursor_value_input {
7229
7306
  booking_channel_id?: InputMaybe<Scalars["uuid"]>;
7230
7307
  connection_id?: InputMaybe<Scalars["uuid"]>;
7231
7308
  contact_id?: InputMaybe<Scalars["uuid"]>;
7309
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
7232
7310
  flow_id?: InputMaybe<Scalars["uuid"]>;
7233
7311
  id?: InputMaybe<Scalars["uuid"]>;
7234
7312
  listing_id?: InputMaybe<Scalars["uuid"]>;
7235
7313
  setting_key?: InputMaybe<Scalars["String"]>;
7236
- tenant_id?: InputMaybe<Scalars["uuid"]>;
7314
+ tenantId?: InputMaybe<Scalars["uuid"]>;
7315
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7237
7316
  value?: InputMaybe<Scalars["jsonb"]>;
7238
7317
  }
7239
7318
 
@@ -7248,6 +7327,8 @@ export type core_flow_setting_update_column =
7248
7327
  /** column name */
7249
7328
  | "contact_id"
7250
7329
  /** column name */
7330
+ | "createdAt"
7331
+ /** column name */
7251
7332
  | "flow_id"
7252
7333
  /** column name */
7253
7334
  | "id"
@@ -7256,7 +7337,9 @@ export type core_flow_setting_update_column =
7256
7337
  /** column name */
7257
7338
  | "setting_key"
7258
7339
  /** column name */
7259
- | "tenant_id"
7340
+ | "tenantId"
7341
+ /** column name */
7342
+ | "updatedAt"
7260
7343
  /** column name */
7261
7344
  | "value";
7262
7345
 
@@ -34114,6 +34197,26 @@ export declare const generatedSchema: {
34114
34197
  where: "file_storage_bool_exp";
34115
34198
  };
34116
34199
  };
34200
+ flows: {
34201
+ __type: "[core_flow!]!";
34202
+ __args: {
34203
+ distinct_on: "[core_flow_select_column!]";
34204
+ limit: "Int";
34205
+ offset: "Int";
34206
+ order_by: "[core_flow_order_by!]";
34207
+ where: "core_flow_bool_exp";
34208
+ };
34209
+ };
34210
+ flows_aggregate: {
34211
+ __type: "core_flow_aggregate!";
34212
+ __args: {
34213
+ distinct_on: "[core_flow_select_column!]";
34214
+ limit: "Int";
34215
+ offset: "Int";
34216
+ order_by: "[core_flow_order_by!]";
34217
+ where: "core_flow_bool_exp";
34218
+ };
34219
+ };
34117
34220
  icon: { __type: "String" };
34118
34221
  id: { __type: "uuid!" };
34119
34222
  lastFetch: { __type: "timestamptz" };
@@ -34428,6 +34531,8 @@ export declare const generatedSchema: {
34428
34531
  fetchStatus: { __type: "syncStatus_enum_comparison_exp" };
34429
34532
  files: { __type: "file_storage_bool_exp" };
34430
34533
  files_aggregate: { __type: "file_storage_aggregate_bool_exp" };
34534
+ flows: { __type: "core_flow_bool_exp" };
34535
+ flows_aggregate: { __type: "core_flow_aggregate_bool_exp" };
34431
34536
  icon: { __type: "String_comparison_exp" };
34432
34537
  id: { __type: "uuid_comparison_exp" };
34433
34538
  lastFetch: { __type: "timestamptz_comparison_exp" };
@@ -34496,6 +34601,7 @@ export declare const generatedSchema: {
34496
34601
  fetchNext: { __type: "timestamptz" };
34497
34602
  fetchStatus: { __type: "syncStatus_enum" };
34498
34603
  files: { __type: "file_storage_arr_rel_insert_input" };
34604
+ flows: { __type: "core_flow_arr_rel_insert_input" };
34499
34605
  icon: { __type: "String" };
34500
34606
  id: { __type: "uuid" };
34501
34607
  lastFetch: { __type: "timestamptz" };
@@ -34609,6 +34715,7 @@ export declare const generatedSchema: {
34609
34715
  fetchNext: { __type: "order_by" };
34610
34716
  fetchStatus: { __type: "order_by" };
34611
34717
  files_aggregate: { __type: "file_storage_aggregate_order_by" };
34718
+ flows_aggregate: { __type: "core_flow_aggregate_order_by" };
34612
34719
  icon: { __type: "order_by" };
34613
34720
  id: { __type: "order_by" };
34614
34721
  lastFetch: { __type: "order_by" };
@@ -35413,6 +35520,15 @@ export declare const generatedSchema: {
35413
35520
  aggregate: { __type: "core_flow_aggregate_fields" };
35414
35521
  nodes: { __type: "[core_flow!]!" };
35415
35522
  };
35523
+ core_flow_aggregate_bool_exp: {
35524
+ count: { __type: "core_flow_aggregate_bool_exp_count" };
35525
+ };
35526
+ core_flow_aggregate_bool_exp_count: {
35527
+ arguments: { __type: "[core_flow_select_column!]" };
35528
+ distinct: { __type: "Boolean" };
35529
+ filter: { __type: "core_flow_bool_exp" };
35530
+ predicate: { __type: "Int_comparison_exp!" };
35531
+ };
35416
35532
  core_flow_aggregate_fields: {
35417
35533
  __typename: { __type: "String!" };
35418
35534
  count: {
@@ -35422,10 +35538,19 @@ export declare const generatedSchema: {
35422
35538
  max: { __type: "core_flow_max_fields" };
35423
35539
  min: { __type: "core_flow_min_fields" };
35424
35540
  };
35541
+ core_flow_aggregate_order_by: {
35542
+ count: { __type: "order_by" };
35543
+ max: { __type: "core_flow_max_order_by" };
35544
+ min: { __type: "core_flow_min_order_by" };
35545
+ };
35425
35546
  core_flow_append_input: {
35426
35547
  mapping_schema: { __type: "jsonb" };
35427
35548
  setting_schema: { __type: "jsonb" };
35428
35549
  };
35550
+ core_flow_arr_rel_insert_input: {
35551
+ data: { __type: "[core_flow_insert_input!]!" };
35552
+ on_conflict: { __type: "core_flow_on_conflict" };
35553
+ };
35429
35554
  core_flow_bool_exp: {
35430
35555
  _and: { __type: "[core_flow_bool_exp!]" };
35431
35556
  _not: { __type: "core_flow_bool_exp" };
@@ -35467,6 +35592,7 @@ export declare const generatedSchema: {
35467
35592
  booking_channel_id: { __type: "uuid" };
35468
35593
  contact: { __type: "contact" };
35469
35594
  contact_id: { __type: "uuid" };
35595
+ createdAt: { __type: "timestamptz!" };
35470
35596
  flow: { __type: "core_flow!" };
35471
35597
  flow_id: { __type: "uuid!" };
35472
35598
  id: { __type: "uuid!" };
@@ -35478,7 +35604,8 @@ export declare const generatedSchema: {
35478
35604
  source: { __type: "source!" };
35479
35605
  source_id: { __type: "uuid!" };
35480
35606
  tenant: { __type: "tenant!" };
35481
- tenant_id: { __type: "uuid!" };
35607
+ tenantId: { __type: "uuid!" };
35608
+ updatedAt: { __type: "timestamptz!" };
35482
35609
  value: { __type: "jsonb"; __args: { path: "String" } };
35483
35610
  };
35484
35611
  core_flow_mapping_aggregate: {
@@ -35509,6 +35636,7 @@ export declare const generatedSchema: {
35509
35636
  booking_channel_id: { __type: "uuid_comparison_exp" };
35510
35637
  contact: { __type: "contact_bool_exp" };
35511
35638
  contact_id: { __type: "uuid_comparison_exp" };
35639
+ createdAt: { __type: "timestamptz_comparison_exp" };
35512
35640
  flow: { __type: "core_flow_bool_exp" };
35513
35641
  flow_id: { __type: "uuid_comparison_exp" };
35514
35642
  id: { __type: "uuid_comparison_exp" };
@@ -35520,7 +35648,8 @@ export declare const generatedSchema: {
35520
35648
  source: { __type: "source_bool_exp" };
35521
35649
  source_id: { __type: "uuid_comparison_exp" };
35522
35650
  tenant: { __type: "tenant_bool_exp" };
35523
- tenant_id: { __type: "uuid_comparison_exp" };
35651
+ tenantId: { __type: "uuid_comparison_exp" };
35652
+ updatedAt: { __type: "timestamptz_comparison_exp" };
35524
35653
  value: { __type: "jsonb_comparison_exp" };
35525
35654
  };
35526
35655
  core_flow_mapping_delete_at_path_input: { value: { __type: "[String!]" } };
@@ -35533,6 +35662,7 @@ export declare const generatedSchema: {
35533
35662
  booking_channel_id: { __type: "uuid" };
35534
35663
  contact: { __type: "contact_obj_rel_insert_input" };
35535
35664
  contact_id: { __type: "uuid" };
35665
+ createdAt: { __type: "timestamptz" };
35536
35666
  flow: { __type: "core_flow_obj_rel_insert_input" };
35537
35667
  flow_id: { __type: "uuid" };
35538
35668
  id: { __type: "uuid" };
@@ -35544,7 +35674,8 @@ export declare const generatedSchema: {
35544
35674
  source: { __type: "source_obj_rel_insert_input" };
35545
35675
  source_id: { __type: "uuid" };
35546
35676
  tenant: { __type: "tenant_obj_rel_insert_input" };
35547
- tenant_id: { __type: "uuid" };
35677
+ tenantId: { __type: "uuid" };
35678
+ updatedAt: { __type: "timestamptz" };
35548
35679
  value: { __type: "jsonb" };
35549
35680
  };
35550
35681
  core_flow_mapping_max_fields: {
@@ -35552,26 +35683,30 @@ export declare const generatedSchema: {
35552
35683
  account_id: { __type: "uuid" };
35553
35684
  booking_channel_id: { __type: "uuid" };
35554
35685
  contact_id: { __type: "uuid" };
35686
+ createdAt: { __type: "timestamptz" };
35555
35687
  flow_id: { __type: "uuid" };
35556
35688
  id: { __type: "uuid" };
35557
35689
  listing_id: { __type: "uuid" };
35558
35690
  mapping_key: { __type: "String" };
35559
35691
  rate_id: { __type: "uuid" };
35560
35692
  source_id: { __type: "uuid" };
35561
- tenant_id: { __type: "uuid" };
35693
+ tenantId: { __type: "uuid" };
35694
+ updatedAt: { __type: "timestamptz" };
35562
35695
  };
35563
35696
  core_flow_mapping_min_fields: {
35564
35697
  __typename: { __type: "String!" };
35565
35698
  account_id: { __type: "uuid" };
35566
35699
  booking_channel_id: { __type: "uuid" };
35567
35700
  contact_id: { __type: "uuid" };
35701
+ createdAt: { __type: "timestamptz" };
35568
35702
  flow_id: { __type: "uuid" };
35569
35703
  id: { __type: "uuid" };
35570
35704
  listing_id: { __type: "uuid" };
35571
35705
  mapping_key: { __type: "String" };
35572
35706
  rate_id: { __type: "uuid" };
35573
35707
  source_id: { __type: "uuid" };
35574
- tenant_id: { __type: "uuid" };
35708
+ tenantId: { __type: "uuid" };
35709
+ updatedAt: { __type: "timestamptz" };
35575
35710
  };
35576
35711
  core_flow_mapping_mutation_response: {
35577
35712
  __typename: { __type: "String!" };
@@ -35590,6 +35725,7 @@ export declare const generatedSchema: {
35590
35725
  booking_channel_id: { __type: "order_by" };
35591
35726
  contact: { __type: "contact_order_by" };
35592
35727
  contact_id: { __type: "order_by" };
35728
+ createdAt: { __type: "order_by" };
35593
35729
  flow: { __type: "core_flow_order_by" };
35594
35730
  flow_id: { __type: "order_by" };
35595
35731
  id: { __type: "order_by" };
@@ -35601,7 +35737,8 @@ export declare const generatedSchema: {
35601
35737
  source: { __type: "source_order_by" };
35602
35738
  source_id: { __type: "order_by" };
35603
35739
  tenant: { __type: "tenant_order_by" };
35604
- tenant_id: { __type: "order_by" };
35740
+ tenantId: { __type: "order_by" };
35741
+ updatedAt: { __type: "order_by" };
35605
35742
  value: { __type: "order_by" };
35606
35743
  };
35607
35744
  core_flow_mapping_pk_columns_input: { id: { __type: "uuid!" } };
@@ -35610,13 +35747,15 @@ export declare const generatedSchema: {
35610
35747
  account_id: { __type: "uuid" };
35611
35748
  booking_channel_id: { __type: "uuid" };
35612
35749
  contact_id: { __type: "uuid" };
35750
+ createdAt: { __type: "timestamptz" };
35613
35751
  flow_id: { __type: "uuid" };
35614
35752
  id: { __type: "uuid" };
35615
35753
  listing_id: { __type: "uuid" };
35616
35754
  mapping_key: { __type: "String" };
35617
35755
  rate_id: { __type: "uuid" };
35618
35756
  source_id: { __type: "uuid" };
35619
- tenant_id: { __type: "uuid" };
35757
+ tenantId: { __type: "uuid" };
35758
+ updatedAt: { __type: "timestamptz" };
35620
35759
  value: { __type: "jsonb" };
35621
35760
  };
35622
35761
  core_flow_mapping_stream_cursor_input: {
@@ -35627,13 +35766,15 @@ export declare const generatedSchema: {
35627
35766
  account_id: { __type: "uuid" };
35628
35767
  booking_channel_id: { __type: "uuid" };
35629
35768
  contact_id: { __type: "uuid" };
35769
+ createdAt: { __type: "timestamptz" };
35630
35770
  flow_id: { __type: "uuid" };
35631
35771
  id: { __type: "uuid" };
35632
35772
  listing_id: { __type: "uuid" };
35633
35773
  mapping_key: { __type: "String" };
35634
35774
  rate_id: { __type: "uuid" };
35635
35775
  source_id: { __type: "uuid" };
35636
- tenant_id: { __type: "uuid" };
35776
+ tenantId: { __type: "uuid" };
35777
+ updatedAt: { __type: "timestamptz" };
35637
35778
  value: { __type: "jsonb" };
35638
35779
  };
35639
35780
  core_flow_mapping_updates: {
@@ -35653,6 +35794,13 @@ export declare const generatedSchema: {
35653
35794
  title: { __type: "String" };
35654
35795
  type: { __type: "flow_type" };
35655
35796
  };
35797
+ core_flow_max_order_by: {
35798
+ app_id: { __type: "order_by" };
35799
+ description: { __type: "order_by" };
35800
+ id: { __type: "order_by" };
35801
+ title: { __type: "order_by" };
35802
+ type: { __type: "order_by" };
35803
+ };
35656
35804
  core_flow_min_fields: {
35657
35805
  __typename: { __type: "String!" };
35658
35806
  app_id: { __type: "String" };
@@ -35661,6 +35809,13 @@ export declare const generatedSchema: {
35661
35809
  title: { __type: "String" };
35662
35810
  type: { __type: "flow_type" };
35663
35811
  };
35812
+ core_flow_min_order_by: {
35813
+ app_id: { __type: "order_by" };
35814
+ description: { __type: "order_by" };
35815
+ id: { __type: "order_by" };
35816
+ title: { __type: "order_by" };
35817
+ type: { __type: "order_by" };
35818
+ };
35664
35819
  core_flow_mutation_response: {
35665
35820
  __typename: { __type: "String!" };
35666
35821
  affected_rows: { __type: "Int!" };
@@ -35708,6 +35863,7 @@ export declare const generatedSchema: {
35708
35863
  connection_id: { __type: "uuid!" };
35709
35864
  contact: { __type: "contact" };
35710
35865
  contact_id: { __type: "uuid" };
35866
+ createdAt: { __type: "timestamptz!" };
35711
35867
  flow: { __type: "core_flow!" };
35712
35868
  flow_id: { __type: "uuid!" };
35713
35869
  id: { __type: "uuid!" };
@@ -35715,7 +35871,8 @@ export declare const generatedSchema: {
35715
35871
  listing_id: { __type: "uuid" };
35716
35872
  setting_key: { __type: "String!" };
35717
35873
  tenant: { __type: "tenant!" };
35718
- tenant_id: { __type: "uuid!" };
35874
+ tenantId: { __type: "uuid!" };
35875
+ updatedAt: { __type: "timestamptz!" };
35719
35876
  value: { __type: "jsonb"; __args: { path: "String" } };
35720
35877
  };
35721
35878
  core_flow_setting_aggregate: {
@@ -35748,6 +35905,7 @@ export declare const generatedSchema: {
35748
35905
  connection_id: { __type: "uuid_comparison_exp" };
35749
35906
  contact: { __type: "contact_bool_exp" };
35750
35907
  contact_id: { __type: "uuid_comparison_exp" };
35908
+ createdAt: { __type: "timestamptz_comparison_exp" };
35751
35909
  flow: { __type: "core_flow_bool_exp" };
35752
35910
  flow_id: { __type: "uuid_comparison_exp" };
35753
35911
  id: { __type: "uuid_comparison_exp" };
@@ -35755,7 +35913,8 @@ export declare const generatedSchema: {
35755
35913
  listing_id: { __type: "uuid_comparison_exp" };
35756
35914
  setting_key: { __type: "String_comparison_exp" };
35757
35915
  tenant: { __type: "tenant_bool_exp" };
35758
- tenant_id: { __type: "uuid_comparison_exp" };
35916
+ tenantId: { __type: "uuid_comparison_exp" };
35917
+ updatedAt: { __type: "timestamptz_comparison_exp" };
35759
35918
  value: { __type: "jsonb_comparison_exp" };
35760
35919
  };
35761
35920
  core_flow_setting_delete_at_path_input: { value: { __type: "[String!]" } };
@@ -35770,6 +35929,7 @@ export declare const generatedSchema: {
35770
35929
  connection_id: { __type: "uuid" };
35771
35930
  contact: { __type: "contact_obj_rel_insert_input" };
35772
35931
  contact_id: { __type: "uuid" };
35932
+ createdAt: { __type: "timestamptz" };
35773
35933
  flow: { __type: "core_flow_obj_rel_insert_input" };
35774
35934
  flow_id: { __type: "uuid" };
35775
35935
  id: { __type: "uuid" };
@@ -35777,7 +35937,8 @@ export declare const generatedSchema: {
35777
35937
  listing_id: { __type: "uuid" };
35778
35938
  setting_key: { __type: "String" };
35779
35939
  tenant: { __type: "tenant_obj_rel_insert_input" };
35780
- tenant_id: { __type: "uuid" };
35940
+ tenantId: { __type: "uuid" };
35941
+ updatedAt: { __type: "timestamptz" };
35781
35942
  value: { __type: "jsonb" };
35782
35943
  };
35783
35944
  core_flow_setting_max_fields: {
@@ -35786,11 +35947,13 @@ export declare const generatedSchema: {
35786
35947
  booking_channel_id: { __type: "uuid" };
35787
35948
  connection_id: { __type: "uuid" };
35788
35949
  contact_id: { __type: "uuid" };
35950
+ createdAt: { __type: "timestamptz" };
35789
35951
  flow_id: { __type: "uuid" };
35790
35952
  id: { __type: "uuid" };
35791
35953
  listing_id: { __type: "uuid" };
35792
35954
  setting_key: { __type: "String" };
35793
- tenant_id: { __type: "uuid" };
35955
+ tenantId: { __type: "uuid" };
35956
+ updatedAt: { __type: "timestamptz" };
35794
35957
  };
35795
35958
  core_flow_setting_min_fields: {
35796
35959
  __typename: { __type: "String!" };
@@ -35798,11 +35961,13 @@ export declare const generatedSchema: {
35798
35961
  booking_channel_id: { __type: "uuid" };
35799
35962
  connection_id: { __type: "uuid" };
35800
35963
  contact_id: { __type: "uuid" };
35964
+ createdAt: { __type: "timestamptz" };
35801
35965
  flow_id: { __type: "uuid" };
35802
35966
  id: { __type: "uuid" };
35803
35967
  listing_id: { __type: "uuid" };
35804
35968
  setting_key: { __type: "String" };
35805
- tenant_id: { __type: "uuid" };
35969
+ tenantId: { __type: "uuid" };
35970
+ updatedAt: { __type: "timestamptz" };
35806
35971
  };
35807
35972
  core_flow_setting_mutation_response: {
35808
35973
  __typename: { __type: "String!" };
@@ -35823,6 +35988,7 @@ export declare const generatedSchema: {
35823
35988
  connection_id: { __type: "order_by" };
35824
35989
  contact: { __type: "contact_order_by" };
35825
35990
  contact_id: { __type: "order_by" };
35991
+ createdAt: { __type: "order_by" };
35826
35992
  flow: { __type: "core_flow_order_by" };
35827
35993
  flow_id: { __type: "order_by" };
35828
35994
  id: { __type: "order_by" };
@@ -35830,7 +35996,8 @@ export declare const generatedSchema: {
35830
35996
  listing_id: { __type: "order_by" };
35831
35997
  setting_key: { __type: "order_by" };
35832
35998
  tenant: { __type: "tenant_order_by" };
35833
- tenant_id: { __type: "order_by" };
35999
+ tenantId: { __type: "order_by" };
36000
+ updatedAt: { __type: "order_by" };
35834
36001
  value: { __type: "order_by" };
35835
36002
  };
35836
36003
  core_flow_setting_pk_columns_input: { id: { __type: "uuid!" } };
@@ -35840,11 +36007,13 @@ export declare const generatedSchema: {
35840
36007
  booking_channel_id: { __type: "uuid" };
35841
36008
  connection_id: { __type: "uuid" };
35842
36009
  contact_id: { __type: "uuid" };
36010
+ createdAt: { __type: "timestamptz" };
35843
36011
  flow_id: { __type: "uuid" };
35844
36012
  id: { __type: "uuid" };
35845
36013
  listing_id: { __type: "uuid" };
35846
36014
  setting_key: { __type: "String" };
35847
- tenant_id: { __type: "uuid" };
36015
+ tenantId: { __type: "uuid" };
36016
+ updatedAt: { __type: "timestamptz" };
35848
36017
  value: { __type: "jsonb" };
35849
36018
  };
35850
36019
  core_flow_setting_stream_cursor_input: {
@@ -35856,11 +36025,13 @@ export declare const generatedSchema: {
35856
36025
  booking_channel_id: { __type: "uuid" };
35857
36026
  connection_id: { __type: "uuid" };
35858
36027
  contact_id: { __type: "uuid" };
36028
+ createdAt: { __type: "timestamptz" };
35859
36029
  flow_id: { __type: "uuid" };
35860
36030
  id: { __type: "uuid" };
35861
36031
  listing_id: { __type: "uuid" };
35862
36032
  setting_key: { __type: "String" };
35863
- tenant_id: { __type: "uuid" };
36033
+ tenantId: { __type: "uuid" };
36034
+ updatedAt: { __type: "timestamptz" };
35864
36035
  value: { __type: "jsonb" };
35865
36036
  };
35866
36037
  core_flow_setting_updates: {
@@ -75519,6 +75690,56 @@ export interface connection {
75519
75690
  */
75520
75691
  where?: Maybe<file_storage_bool_exp>;
75521
75692
  }) => file_storage_aggregate;
75693
+ /**
75694
+ * An array relationship
75695
+ */
75696
+ flows: (args?: {
75697
+ /**
75698
+ * distinct select on columns
75699
+ */
75700
+ distinct_on?: Maybe<Array<core_flow_select_column>>;
75701
+ /**
75702
+ * limit the number of rows returned
75703
+ */
75704
+ limit?: Maybe<Scalars["Int"]>;
75705
+ /**
75706
+ * skip the first n rows. Use only with order_by
75707
+ */
75708
+ offset?: Maybe<Scalars["Int"]>;
75709
+ /**
75710
+ * sort the rows by one or more columns
75711
+ */
75712
+ order_by?: Maybe<Array<core_flow_order_by>>;
75713
+ /**
75714
+ * filter the rows returned
75715
+ */
75716
+ where?: Maybe<core_flow_bool_exp>;
75717
+ }) => Array<core_flow>;
75718
+ /**
75719
+ * An aggregate relationship
75720
+ */
75721
+ flows_aggregate: (args?: {
75722
+ /**
75723
+ * distinct select on columns
75724
+ */
75725
+ distinct_on?: Maybe<Array<core_flow_select_column>>;
75726
+ /**
75727
+ * limit the number of rows returned
75728
+ */
75729
+ limit?: Maybe<Scalars["Int"]>;
75730
+ /**
75731
+ * skip the first n rows. Use only with order_by
75732
+ */
75733
+ offset?: Maybe<Scalars["Int"]>;
75734
+ /**
75735
+ * sort the rows by one or more columns
75736
+ */
75737
+ order_by?: Maybe<Array<core_flow_order_by>>;
75738
+ /**
75739
+ * filter the rows returned
75740
+ */
75741
+ where?: Maybe<core_flow_bool_exp>;
75742
+ }) => core_flow_aggregate;
75522
75743
  icon?: Maybe<ScalarsEnums["String"]>;
75523
75744
  id: ScalarsEnums["uuid"];
75524
75745
  lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
@@ -76860,6 +77081,7 @@ export interface core_flow_mapping {
76860
77081
  */
76861
77082
  contact?: Maybe<contact>;
76862
77083
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77084
+ createdAt: ScalarsEnums["timestamptz"];
76863
77085
  /**
76864
77086
  * An object relationship
76865
77087
  */
@@ -76886,7 +77108,8 @@ export interface core_flow_mapping {
76886
77108
  * An object relationship
76887
77109
  */
76888
77110
  tenant: tenant;
76889
- tenant_id: ScalarsEnums["uuid"];
77111
+ tenantId: ScalarsEnums["uuid"];
77112
+ updatedAt: ScalarsEnums["timestamptz"];
76890
77113
  value: (args?: {
76891
77114
  /**
76892
77115
  * JSON select path
@@ -76925,13 +77148,15 @@ export interface core_flow_mapping_max_fields {
76925
77148
  account_id?: Maybe<ScalarsEnums["uuid"]>;
76926
77149
  booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
76927
77150
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77151
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76928
77152
  flow_id?: Maybe<ScalarsEnums["uuid"]>;
76929
77153
  id?: Maybe<ScalarsEnums["uuid"]>;
76930
77154
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
76931
77155
  mapping_key?: Maybe<ScalarsEnums["String"]>;
76932
77156
  rate_id?: Maybe<ScalarsEnums["uuid"]>;
76933
77157
  source_id?: Maybe<ScalarsEnums["uuid"]>;
76934
- tenant_id?: Maybe<ScalarsEnums["uuid"]>;
77158
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
77159
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
76935
77160
  }
76936
77161
 
76937
77162
  /**
@@ -76942,13 +77167,15 @@ export interface core_flow_mapping_min_fields {
76942
77167
  account_id?: Maybe<ScalarsEnums["uuid"]>;
76943
77168
  booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
76944
77169
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77170
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
76945
77171
  flow_id?: Maybe<ScalarsEnums["uuid"]>;
76946
77172
  id?: Maybe<ScalarsEnums["uuid"]>;
76947
77173
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
76948
77174
  mapping_key?: Maybe<ScalarsEnums["String"]>;
76949
77175
  rate_id?: Maybe<ScalarsEnums["uuid"]>;
76950
77176
  source_id?: Maybe<ScalarsEnums["uuid"]>;
76951
- tenant_id?: Maybe<ScalarsEnums["uuid"]>;
77177
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
77178
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
76952
77179
  }
76953
77180
 
76954
77181
  /**
@@ -77030,6 +77257,7 @@ export interface core_flow_setting {
77030
77257
  */
77031
77258
  contact?: Maybe<contact>;
77032
77259
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77260
+ createdAt: ScalarsEnums["timestamptz"];
77033
77261
  /**
77034
77262
  * An object relationship
77035
77263
  */
@@ -77046,7 +77274,8 @@ export interface core_flow_setting {
77046
77274
  * An object relationship
77047
77275
  */
77048
77276
  tenant: tenant;
77049
- tenant_id: ScalarsEnums["uuid"];
77277
+ tenantId: ScalarsEnums["uuid"];
77278
+ updatedAt: ScalarsEnums["timestamptz"];
77050
77279
  value: (args?: {
77051
77280
  /**
77052
77281
  * JSON select path
@@ -77086,11 +77315,13 @@ export interface core_flow_setting_max_fields {
77086
77315
  booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
77087
77316
  connection_id?: Maybe<ScalarsEnums["uuid"]>;
77088
77317
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77318
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
77089
77319
  flow_id?: Maybe<ScalarsEnums["uuid"]>;
77090
77320
  id?: Maybe<ScalarsEnums["uuid"]>;
77091
77321
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
77092
77322
  setting_key?: Maybe<ScalarsEnums["String"]>;
77093
- tenant_id?: Maybe<ScalarsEnums["uuid"]>;
77323
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
77324
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
77094
77325
  }
77095
77326
 
77096
77327
  /**
@@ -77102,11 +77333,13 @@ export interface core_flow_setting_min_fields {
77102
77333
  booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
77103
77334
  connection_id?: Maybe<ScalarsEnums["uuid"]>;
77104
77335
  contact_id?: Maybe<ScalarsEnums["uuid"]>;
77336
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
77105
77337
  flow_id?: Maybe<ScalarsEnums["uuid"]>;
77106
77338
  id?: Maybe<ScalarsEnums["uuid"]>;
77107
77339
  listing_id?: Maybe<ScalarsEnums["uuid"]>;
77108
77340
  setting_key?: Maybe<ScalarsEnums["String"]>;
77109
- tenant_id?: Maybe<ScalarsEnums["uuid"]>;
77341
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
77342
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
77110
77343
  }
77111
77344
 
77112
77345
  /**