@vrplatform/graphql 1.1.13 → 1.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main/common/flow.d.ts +23 -0
- package/build/main/common/flow.js +2 -0
- package/build/main/common/index.d.ts +1 -0
- package/build/main/common/index.js +1 -0
- package/build/main/gqty/schema.generated.d.ts +66 -1599
- package/build/main/gqty/schema.generated.js +31 -687
- package/build/main/tsconfig.main.tsbuildinfo +1 -1
- package/build/module/common/flow.d.ts +23 -0
- package/build/module/common/flow.js +1 -0
- package/build/module/common/index.d.ts +1 -0
- package/build/module/common/index.js +1 -0
- package/build/module/gqty/schema.generated.d.ts +66 -1599
- package/build/module/gqty/schema.generated.js +31 -687
- package/build/module/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/common/flow.ts +34 -0
- package/src/common/index.ts +1 -0
- package/src/gqty/schema.generated.d.ts +66 -1599
- package/src/gqty/schema.generated.js +31 -687
|
@@ -2608,7 +2608,7 @@ export interface automation_bool_exp {
|
|
|
2608
2608
|
scheduleStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2609
2609
|
settings?: InputMaybe<setting_bool_exp>;
|
|
2610
2610
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
2611
|
-
status?: InputMaybe<
|
|
2611
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2612
2612
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
2613
2613
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
2614
2614
|
template?: InputMaybe<String_comparison_exp>;
|
|
@@ -2662,7 +2662,7 @@ export interface automation_insert_input {
|
|
|
2662
2662
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2663
2663
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2664
2664
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
2665
|
-
status?: InputMaybe<
|
|
2665
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2666
2666
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
2667
2667
|
template?: InputMaybe<Scalars["String"]>;
|
|
2668
2668
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2802,7 +2802,7 @@ export interface automation_set_input {
|
|
|
2802
2802
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2803
2803
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2804
2804
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2805
|
-
status?: InputMaybe<
|
|
2805
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2806
2806
|
template?: InputMaybe<Scalars["String"]>;
|
|
2807
2807
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2808
2808
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2812,87 +2812,6 @@ export interface automation_set_input {
|
|
|
2812
2812
|
viewSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2813
2813
|
}
|
|
2814
2814
|
|
|
2815
|
-
/** Boolean expression to filter rows from the table "automation_status". All fields are combined with a logical 'AND'. */
|
|
2816
|
-
export interface automation_status_bool_exp {
|
|
2817
|
-
_and?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2818
|
-
_not?: InputMaybe<automation_status_bool_exp>;
|
|
2819
|
-
_or?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2820
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
2821
|
-
}
|
|
2822
|
-
|
|
2823
|
-
/** unique or primary key constraints on table "automation_status" */
|
|
2824
|
-
export type automation_status_constraint =
|
|
2825
|
-
/** unique or primary key constraint on columns "name" */
|
|
2826
|
-
"automation_status_pkey";
|
|
2827
|
-
|
|
2828
|
-
export type automation_status_enum = "active" | "archived" | "inactive";
|
|
2829
|
-
|
|
2830
|
-
/** Boolean expression to compare columns of type "automation_status_enum". All fields are combined with logical 'AND'. */
|
|
2831
|
-
export interface automation_status_enum_comparison_exp {
|
|
2832
|
-
_eq?: InputMaybe<automation_status_enum>;
|
|
2833
|
-
_in?: InputMaybe<Array<automation_status_enum>>;
|
|
2834
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
2835
|
-
_neq?: InputMaybe<automation_status_enum>;
|
|
2836
|
-
_nin?: InputMaybe<Array<automation_status_enum>>;
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
/** input type for inserting data into table "automation_status" */
|
|
2840
|
-
export interface automation_status_insert_input {
|
|
2841
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2842
|
-
}
|
|
2843
|
-
|
|
2844
|
-
/** on_conflict condition type for table "automation_status" */
|
|
2845
|
-
export interface automation_status_on_conflict {
|
|
2846
|
-
constraint: automation_status_constraint;
|
|
2847
|
-
update_columns?: Array<automation_status_update_column>;
|
|
2848
|
-
where?: InputMaybe<automation_status_bool_exp>;
|
|
2849
|
-
}
|
|
2850
|
-
|
|
2851
|
-
/** Ordering options when selecting data from "automation_status". */
|
|
2852
|
-
export interface automation_status_order_by {
|
|
2853
|
-
name?: InputMaybe<order_by>;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
/** primary key columns input for table: automation_status */
|
|
2857
|
-
export interface automation_status_pk_columns_input {
|
|
2858
|
-
name: Scalars["String"];
|
|
2859
|
-
}
|
|
2860
|
-
|
|
2861
|
-
/** select columns of table "automation_status" */
|
|
2862
|
-
export type automation_status_select_column =
|
|
2863
|
-
/** column name */
|
|
2864
|
-
"name";
|
|
2865
|
-
|
|
2866
|
-
/** input type for updating data in table "automation_status" */
|
|
2867
|
-
export interface automation_status_set_input {
|
|
2868
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
|
-
/** Streaming cursor of the table "automation_status" */
|
|
2872
|
-
export interface automation_status_stream_cursor_input {
|
|
2873
|
-
/** Stream column input with initial value */
|
|
2874
|
-
initial_value: automation_status_stream_cursor_value_input;
|
|
2875
|
-
/** cursor ordering */
|
|
2876
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
2877
|
-
}
|
|
2878
|
-
|
|
2879
|
-
/** Initial value of the column from where the streaming should start */
|
|
2880
|
-
export interface automation_status_stream_cursor_value_input {
|
|
2881
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2882
|
-
}
|
|
2883
|
-
|
|
2884
|
-
/** update columns of table "automation_status" */
|
|
2885
|
-
export type automation_status_update_column =
|
|
2886
|
-
/** column name */
|
|
2887
|
-
"name";
|
|
2888
|
-
|
|
2889
|
-
export interface automation_status_updates {
|
|
2890
|
-
/** sets the columns of the filtered rows to the given values */
|
|
2891
|
-
_set?: InputMaybe<automation_status_set_input>;
|
|
2892
|
-
/** filter the rows which have to be updated */
|
|
2893
|
-
where: automation_status_bool_exp;
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
2815
|
/** Streaming cursor of the table "automation" */
|
|
2897
2816
|
export interface automation_stream_cursor_input {
|
|
2898
2817
|
/** Stream column input with initial value */
|
|
@@ -2910,7 +2829,7 @@ export interface automation_stream_cursor_value_input {
|
|
|
2910
2829
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2911
2830
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2912
2831
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2913
|
-
status?: InputMaybe<
|
|
2832
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2914
2833
|
template?: InputMaybe<Scalars["String"]>;
|
|
2915
2834
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2916
2835
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -5764,7 +5683,7 @@ export interface connection_bool_exp {
|
|
|
5764
5683
|
settingsRight?: InputMaybe<setting_bool_exp>;
|
|
5765
5684
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5766
5685
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5767
|
-
status?: InputMaybe<
|
|
5686
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
5768
5687
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
5769
5688
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
5770
5689
|
tasks?: InputMaybe<task_bool_exp>;
|
|
@@ -5841,7 +5760,7 @@ export interface connection_insert_input {
|
|
|
5841
5760
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5842
5761
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5843
5762
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5844
|
-
status?: InputMaybe<
|
|
5763
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
5845
5764
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
5846
5765
|
tasks?: InputMaybe<task_arr_rel_insert_input>;
|
|
5847
5766
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
@@ -5862,7 +5781,6 @@ export interface connection_max_order_by {
|
|
|
5862
5781
|
id?: InputMaybe<order_by>;
|
|
5863
5782
|
lastFetch?: InputMaybe<order_by>;
|
|
5864
5783
|
name?: InputMaybe<order_by>;
|
|
5865
|
-
status?: InputMaybe<order_by>;
|
|
5866
5784
|
tenantId?: InputMaybe<order_by>;
|
|
5867
5785
|
type?: InputMaybe<order_by>;
|
|
5868
5786
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -5880,7 +5798,6 @@ export interface connection_min_order_by {
|
|
|
5880
5798
|
id?: InputMaybe<order_by>;
|
|
5881
5799
|
lastFetch?: InputMaybe<order_by>;
|
|
5882
5800
|
name?: InputMaybe<order_by>;
|
|
5883
|
-
status?: InputMaybe<order_by>;
|
|
5884
5801
|
tenantId?: InputMaybe<order_by>;
|
|
5885
5802
|
type?: InputMaybe<order_by>;
|
|
5886
5803
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -6019,7 +5936,7 @@ export interface connection_set_input {
|
|
|
6019
5936
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6020
5937
|
name?: InputMaybe<Scalars["String"]>;
|
|
6021
5938
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6022
|
-
status?: InputMaybe<
|
|
5939
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6023
5940
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6024
5941
|
type?: InputMaybe<Scalars["String"]>;
|
|
6025
5942
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6027,76 +5944,6 @@ export interface connection_set_input {
|
|
|
6027
5944
|
version?: InputMaybe<Scalars["Int"]>;
|
|
6028
5945
|
}
|
|
6029
5946
|
|
|
6030
|
-
/** Boolean expression to filter rows from the table "connection_status_temporary". All fields are combined with a logical 'AND'. */
|
|
6031
|
-
export interface connection_status_temporary_bool_exp {
|
|
6032
|
-
_and?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6033
|
-
_not?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6034
|
-
_or?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6035
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
6036
|
-
}
|
|
6037
|
-
|
|
6038
|
-
/** unique or primary key constraints on table "connection_status_temporary" */
|
|
6039
|
-
export type connection_status_temporary_constraint =
|
|
6040
|
-
/** unique or primary key constraint on columns "name" */
|
|
6041
|
-
"connection_status_temporary_pkey";
|
|
6042
|
-
|
|
6043
|
-
/** input type for inserting data into table "connection_status_temporary" */
|
|
6044
|
-
export interface connection_status_temporary_insert_input {
|
|
6045
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6046
|
-
}
|
|
6047
|
-
|
|
6048
|
-
/** on_conflict condition type for table "connection_status_temporary" */
|
|
6049
|
-
export interface connection_status_temporary_on_conflict {
|
|
6050
|
-
constraint: connection_status_temporary_constraint;
|
|
6051
|
-
update_columns?: Array<connection_status_temporary_update_column>;
|
|
6052
|
-
where?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6053
|
-
}
|
|
6054
|
-
|
|
6055
|
-
/** Ordering options when selecting data from "connection_status_temporary". */
|
|
6056
|
-
export interface connection_status_temporary_order_by {
|
|
6057
|
-
name?: InputMaybe<order_by>;
|
|
6058
|
-
}
|
|
6059
|
-
|
|
6060
|
-
/** primary key columns input for table: connection_status_temporary */
|
|
6061
|
-
export interface connection_status_temporary_pk_columns_input {
|
|
6062
|
-
name: Scalars["String"];
|
|
6063
|
-
}
|
|
6064
|
-
|
|
6065
|
-
/** select columns of table "connection_status_temporary" */
|
|
6066
|
-
export type connection_status_temporary_select_column =
|
|
6067
|
-
/** column name */
|
|
6068
|
-
"name";
|
|
6069
|
-
|
|
6070
|
-
/** input type for updating data in table "connection_status_temporary" */
|
|
6071
|
-
export interface connection_status_temporary_set_input {
|
|
6072
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6073
|
-
}
|
|
6074
|
-
|
|
6075
|
-
/** Streaming cursor of the table "connection_status_temporary" */
|
|
6076
|
-
export interface connection_status_temporary_stream_cursor_input {
|
|
6077
|
-
/** Stream column input with initial value */
|
|
6078
|
-
initial_value: connection_status_temporary_stream_cursor_value_input;
|
|
6079
|
-
/** cursor ordering */
|
|
6080
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
6081
|
-
}
|
|
6082
|
-
|
|
6083
|
-
/** Initial value of the column from where the streaming should start */
|
|
6084
|
-
export interface connection_status_temporary_stream_cursor_value_input {
|
|
6085
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6086
|
-
}
|
|
6087
|
-
|
|
6088
|
-
/** update columns of table "connection_status_temporary" */
|
|
6089
|
-
export type connection_status_temporary_update_column =
|
|
6090
|
-
/** column name */
|
|
6091
|
-
"name";
|
|
6092
|
-
|
|
6093
|
-
export interface connection_status_temporary_updates {
|
|
6094
|
-
/** sets the columns of the filtered rows to the given values */
|
|
6095
|
-
_set?: InputMaybe<connection_status_temporary_set_input>;
|
|
6096
|
-
/** filter the rows which have to be updated */
|
|
6097
|
-
where: connection_status_temporary_bool_exp;
|
|
6098
|
-
}
|
|
6099
|
-
|
|
6100
5947
|
/** order by stddev() on columns of table "connection" */
|
|
6101
5948
|
export interface connection_stddev_order_by {
|
|
6102
5949
|
backendVersion?: InputMaybe<order_by>;
|
|
@@ -6138,7 +5985,7 @@ export interface connection_stream_cursor_value_input {
|
|
|
6138
5985
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6139
5986
|
name?: InputMaybe<Scalars["String"]>;
|
|
6140
5987
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6141
|
-
status?: InputMaybe<
|
|
5988
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6142
5989
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6143
5990
|
type?: InputMaybe<Scalars["String"]>;
|
|
6144
5991
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6894,6 +6741,7 @@ export interface core_flow_bool_exp {
|
|
|
6894
6741
|
_not?: InputMaybe<core_flow_bool_exp>;
|
|
6895
6742
|
_or?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6896
6743
|
app_id?: InputMaybe<String_comparison_exp>;
|
|
6744
|
+
description?: InputMaybe<String_comparison_exp>;
|
|
6897
6745
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
6898
6746
|
mapping_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6899
6747
|
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
@@ -6927,6 +6775,7 @@ export interface core_flow_delete_key_input {
|
|
|
6927
6775
|
/** input type for inserting data into table "core.flow" */
|
|
6928
6776
|
export interface core_flow_insert_input {
|
|
6929
6777
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
6778
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
6930
6779
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
6931
6780
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6932
6781
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7123,6 +6972,7 @@ export interface core_flow_on_conflict {
|
|
|
7123
6972
|
/** Ordering options when selecting data from "core.flow". */
|
|
7124
6973
|
export interface core_flow_order_by {
|
|
7125
6974
|
app_id?: InputMaybe<order_by>;
|
|
6975
|
+
description?: InputMaybe<order_by>;
|
|
7126
6976
|
id?: InputMaybe<order_by>;
|
|
7127
6977
|
mapping_schema?: InputMaybe<order_by>;
|
|
7128
6978
|
setting_schema?: InputMaybe<order_by>;
|
|
@@ -7146,6 +6996,8 @@ export type core_flow_select_column =
|
|
|
7146
6996
|
/** column name */
|
|
7147
6997
|
| "app_id"
|
|
7148
6998
|
/** column name */
|
|
6999
|
+
| "description"
|
|
7000
|
+
/** column name */
|
|
7149
7001
|
| "id"
|
|
7150
7002
|
/** column name */
|
|
7151
7003
|
| "mapping_schema"
|
|
@@ -7159,6 +7011,7 @@ export type core_flow_select_column =
|
|
|
7159
7011
|
/** input type for updating data in table "core.flow" */
|
|
7160
7012
|
export interface core_flow_set_input {
|
|
7161
7013
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7014
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7162
7015
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7163
7016
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7164
7017
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7356,6 +7209,7 @@ export interface core_flow_stream_cursor_input {
|
|
|
7356
7209
|
/** Initial value of the column from where the streaming should start */
|
|
7357
7210
|
export interface core_flow_stream_cursor_value_input {
|
|
7358
7211
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7212
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7359
7213
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7360
7214
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7361
7215
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7368,6 +7222,8 @@ export type core_flow_update_column =
|
|
|
7368
7222
|
/** column name */
|
|
7369
7223
|
| "app_id"
|
|
7370
7224
|
/** column name */
|
|
7225
|
+
| "description"
|
|
7226
|
+
/** column name */
|
|
7371
7227
|
| "id"
|
|
7372
7228
|
/** column name */
|
|
7373
7229
|
| "mapping_schema"
|
|
@@ -11052,7 +10908,7 @@ export interface listing_bool_exp {
|
|
|
11052
10908
|
address_id?: InputMaybe<uuid_comparison_exp>;
|
|
11053
10909
|
bedrooms?: InputMaybe<Int_comparison_exp>;
|
|
11054
10910
|
beds?: InputMaybe<Int_comparison_exp>;
|
|
11055
|
-
calculatedStatus?: InputMaybe<
|
|
10911
|
+
calculatedStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
11056
10912
|
calculatedTitle?: InputMaybe<String_comparison_exp>;
|
|
11057
10913
|
calculated_title?: InputMaybe<String_comparison_exp>;
|
|
11058
10914
|
centExpenseReserve?: InputMaybe<Int_comparison_exp>;
|
|
@@ -11089,7 +10945,7 @@ export interface listing_bool_exp {
|
|
|
11089
10945
|
paymentLines?: InputMaybe<payment_line_bool_exp>;
|
|
11090
10946
|
paymentLines_aggregate?: InputMaybe<payment_line_aggregate_bool_exp>;
|
|
11091
10947
|
pmsAddressData?: InputMaybe<jsonb_comparison_exp>;
|
|
11092
|
-
pmsStatus?: InputMaybe<
|
|
10948
|
+
pmsStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
11093
10949
|
recurringFeeSubscriptions?: InputMaybe<recurringFeeListingSubscription_bool_exp>;
|
|
11094
10950
|
recurringFeeSubscriptions_aggregate?: InputMaybe<recurringFeeListingSubscription_aggregate_bool_exp>;
|
|
11095
10951
|
reservations?: InputMaybe<reservation_bool_exp>;
|
|
@@ -11102,7 +10958,7 @@ export interface listing_bool_exp {
|
|
|
11102
10958
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
11103
10959
|
source?: InputMaybe<source_bool_exp>;
|
|
11104
10960
|
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
11105
|
-
status?: InputMaybe<
|
|
10961
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
11106
10962
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
11107
10963
|
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
11108
10964
|
title?: InputMaybe<String_comparison_exp>;
|
|
@@ -11722,7 +11578,7 @@ export interface listing_insert_input {
|
|
|
11722
11578
|
ownerships?: InputMaybe<listing_owner_arr_rel_insert_input>;
|
|
11723
11579
|
paymentLines?: InputMaybe<payment_line_arr_rel_insert_input>;
|
|
11724
11580
|
pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
11725
|
-
pmsStatus?: InputMaybe<
|
|
11581
|
+
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
11726
11582
|
recurringFeeSubscriptions?: InputMaybe<recurringFeeListingSubscription_arr_rel_insert_input>;
|
|
11727
11583
|
reservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
11728
11584
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
@@ -11730,7 +11586,7 @@ export interface listing_insert_input {
|
|
|
11730
11586
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
11731
11587
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
11732
11588
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
11733
|
-
status?: InputMaybe<
|
|
11589
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
11734
11590
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
11735
11591
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
11736
11592
|
title?: InputMaybe<Scalars["String"]>;
|
|
@@ -11748,7 +11604,6 @@ export interface listing_max_order_by {
|
|
|
11748
11604
|
address_id?: InputMaybe<order_by>;
|
|
11749
11605
|
bedrooms?: InputMaybe<order_by>;
|
|
11750
11606
|
beds?: InputMaybe<order_by>;
|
|
11751
|
-
calculatedStatus?: InputMaybe<order_by>;
|
|
11752
11607
|
calculatedTitle?: InputMaybe<order_by>;
|
|
11753
11608
|
calculated_title?: InputMaybe<order_by>;
|
|
11754
11609
|
centExpenseReserve?: InputMaybe<order_by>;
|
|
@@ -11778,7 +11633,6 @@ export interface listing_min_order_by {
|
|
|
11778
11633
|
address_id?: InputMaybe<order_by>;
|
|
11779
11634
|
bedrooms?: InputMaybe<order_by>;
|
|
11780
11635
|
beds?: InputMaybe<order_by>;
|
|
11781
|
-
calculatedStatus?: InputMaybe<order_by>;
|
|
11782
11636
|
calculatedTitle?: InputMaybe<order_by>;
|
|
11783
11637
|
calculated_title?: InputMaybe<order_by>;
|
|
11784
11638
|
centExpenseReserve?: InputMaybe<order_by>;
|
|
@@ -12226,93 +12080,6 @@ export interface listing_pk_columns_input {
|
|
|
12226
12080
|
id: Scalars["uuid"];
|
|
12227
12081
|
}
|
|
12228
12082
|
|
|
12229
|
-
/** Boolean expression to filter rows from the table "listing_pms_status". All fields are combined with a logical 'AND'. */
|
|
12230
|
-
export interface listing_pms_status_bool_exp {
|
|
12231
|
-
_and?: InputMaybe<Array<listing_pms_status_bool_exp>>;
|
|
12232
|
-
_not?: InputMaybe<listing_pms_status_bool_exp>;
|
|
12233
|
-
_or?: InputMaybe<Array<listing_pms_status_bool_exp>>;
|
|
12234
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
12235
|
-
}
|
|
12236
|
-
|
|
12237
|
-
/** unique or primary key constraints on table "listing_pms_status" */
|
|
12238
|
-
export type listing_pms_status_constraint =
|
|
12239
|
-
/** unique or primary key constraint on columns "name" */
|
|
12240
|
-
"listing_pms_status_pkey";
|
|
12241
|
-
|
|
12242
|
-
export type listing_pms_status_enum =
|
|
12243
|
-
| "active"
|
|
12244
|
-
| "connected"
|
|
12245
|
-
| "disabled"
|
|
12246
|
-
| "disconnected"
|
|
12247
|
-
| "enabled"
|
|
12248
|
-
| "inactive";
|
|
12249
|
-
|
|
12250
|
-
/** Boolean expression to compare columns of type "listing_pms_status_enum". All fields are combined with logical 'AND'. */
|
|
12251
|
-
export interface listing_pms_status_enum_comparison_exp {
|
|
12252
|
-
_eq?: InputMaybe<listing_pms_status_enum>;
|
|
12253
|
-
_in?: InputMaybe<Array<listing_pms_status_enum>>;
|
|
12254
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
12255
|
-
_neq?: InputMaybe<listing_pms_status_enum>;
|
|
12256
|
-
_nin?: InputMaybe<Array<listing_pms_status_enum>>;
|
|
12257
|
-
}
|
|
12258
|
-
|
|
12259
|
-
/** input type for inserting data into table "listing_pms_status" */
|
|
12260
|
-
export interface listing_pms_status_insert_input {
|
|
12261
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12262
|
-
}
|
|
12263
|
-
|
|
12264
|
-
/** on_conflict condition type for table "listing_pms_status" */
|
|
12265
|
-
export interface listing_pms_status_on_conflict {
|
|
12266
|
-
constraint: listing_pms_status_constraint;
|
|
12267
|
-
update_columns?: Array<listing_pms_status_update_column>;
|
|
12268
|
-
where?: InputMaybe<listing_pms_status_bool_exp>;
|
|
12269
|
-
}
|
|
12270
|
-
|
|
12271
|
-
/** Ordering options when selecting data from "listing_pms_status". */
|
|
12272
|
-
export interface listing_pms_status_order_by {
|
|
12273
|
-
name?: InputMaybe<order_by>;
|
|
12274
|
-
}
|
|
12275
|
-
|
|
12276
|
-
/** primary key columns input for table: listing_pms_status */
|
|
12277
|
-
export interface listing_pms_status_pk_columns_input {
|
|
12278
|
-
name: Scalars["String"];
|
|
12279
|
-
}
|
|
12280
|
-
|
|
12281
|
-
/** select columns of table "listing_pms_status" */
|
|
12282
|
-
export type listing_pms_status_select_column =
|
|
12283
|
-
/** column name */
|
|
12284
|
-
"name";
|
|
12285
|
-
|
|
12286
|
-
/** input type for updating data in table "listing_pms_status" */
|
|
12287
|
-
export interface listing_pms_status_set_input {
|
|
12288
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12289
|
-
}
|
|
12290
|
-
|
|
12291
|
-
/** Streaming cursor of the table "listing_pms_status" */
|
|
12292
|
-
export interface listing_pms_status_stream_cursor_input {
|
|
12293
|
-
/** Stream column input with initial value */
|
|
12294
|
-
initial_value: listing_pms_status_stream_cursor_value_input;
|
|
12295
|
-
/** cursor ordering */
|
|
12296
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
12297
|
-
}
|
|
12298
|
-
|
|
12299
|
-
/** Initial value of the column from where the streaming should start */
|
|
12300
|
-
export interface listing_pms_status_stream_cursor_value_input {
|
|
12301
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12302
|
-
}
|
|
12303
|
-
|
|
12304
|
-
/** update columns of table "listing_pms_status" */
|
|
12305
|
-
export type listing_pms_status_update_column =
|
|
12306
|
-
/** column name */
|
|
12307
|
-
"name";
|
|
12308
|
-
|
|
12309
|
-
export interface listing_pms_status_updates {
|
|
12310
|
-
/** sets the columns of the filtered rows to the given values */
|
|
12311
|
-
_set?: InputMaybe<listing_pms_status_set_input>;
|
|
12312
|
-
/** filter the rows which have to be updated */
|
|
12313
|
-
where: listing_pms_status_bool_exp;
|
|
12314
|
-
}
|
|
12315
|
-
|
|
12316
12083
|
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
12317
12084
|
export interface listing_prepend_input {
|
|
12318
12085
|
addressData?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -12409,100 +12176,15 @@ export interface listing_set_input {
|
|
|
12409
12176
|
name?: InputMaybe<Scalars["String"]>;
|
|
12410
12177
|
ownerContactId?: InputMaybe<Scalars["uuid"]>;
|
|
12411
12178
|
pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
12412
|
-
pmsStatus?: InputMaybe<
|
|
12179
|
+
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
12413
12180
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
12414
|
-
status?: InputMaybe<
|
|
12181
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
12415
12182
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12416
12183
|
title?: InputMaybe<Scalars["String"]>;
|
|
12417
12184
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12418
12185
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12419
12186
|
}
|
|
12420
12187
|
|
|
12421
|
-
/** Boolean expression to filter rows from the table "listing_status". All fields are combined with a logical 'AND'. */
|
|
12422
|
-
export interface listing_status_bool_exp {
|
|
12423
|
-
_and?: InputMaybe<Array<listing_status_bool_exp>>;
|
|
12424
|
-
_not?: InputMaybe<listing_status_bool_exp>;
|
|
12425
|
-
_or?: InputMaybe<Array<listing_status_bool_exp>>;
|
|
12426
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
12427
|
-
}
|
|
12428
|
-
|
|
12429
|
-
/** unique or primary key constraints on table "listing_status" */
|
|
12430
|
-
export type listing_status_constraint =
|
|
12431
|
-
/** unique or primary key constraint on columns "name" */
|
|
12432
|
-
"listing_status_pkey";
|
|
12433
|
-
|
|
12434
|
-
export type listing_status_enum =
|
|
12435
|
-
| "active"
|
|
12436
|
-
| "disabled"
|
|
12437
|
-
| "enabled"
|
|
12438
|
-
| "inactive";
|
|
12439
|
-
|
|
12440
|
-
/** Boolean expression to compare columns of type "listing_status_enum". All fields are combined with logical 'AND'. */
|
|
12441
|
-
export interface listing_status_enum_comparison_exp {
|
|
12442
|
-
_eq?: InputMaybe<listing_status_enum>;
|
|
12443
|
-
_in?: InputMaybe<Array<listing_status_enum>>;
|
|
12444
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
12445
|
-
_neq?: InputMaybe<listing_status_enum>;
|
|
12446
|
-
_nin?: InputMaybe<Array<listing_status_enum>>;
|
|
12447
|
-
}
|
|
12448
|
-
|
|
12449
|
-
/** input type for inserting data into table "listing_status" */
|
|
12450
|
-
export interface listing_status_insert_input {
|
|
12451
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12452
|
-
}
|
|
12453
|
-
|
|
12454
|
-
/** on_conflict condition type for table "listing_status" */
|
|
12455
|
-
export interface listing_status_on_conflict {
|
|
12456
|
-
constraint: listing_status_constraint;
|
|
12457
|
-
update_columns?: Array<listing_status_update_column>;
|
|
12458
|
-
where?: InputMaybe<listing_status_bool_exp>;
|
|
12459
|
-
}
|
|
12460
|
-
|
|
12461
|
-
/** Ordering options when selecting data from "listing_status". */
|
|
12462
|
-
export interface listing_status_order_by {
|
|
12463
|
-
name?: InputMaybe<order_by>;
|
|
12464
|
-
}
|
|
12465
|
-
|
|
12466
|
-
/** primary key columns input for table: listing_status */
|
|
12467
|
-
export interface listing_status_pk_columns_input {
|
|
12468
|
-
name: Scalars["String"];
|
|
12469
|
-
}
|
|
12470
|
-
|
|
12471
|
-
/** select columns of table "listing_status" */
|
|
12472
|
-
export type listing_status_select_column =
|
|
12473
|
-
/** column name */
|
|
12474
|
-
"name";
|
|
12475
|
-
|
|
12476
|
-
/** input type for updating data in table "listing_status" */
|
|
12477
|
-
export interface listing_status_set_input {
|
|
12478
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12479
|
-
}
|
|
12480
|
-
|
|
12481
|
-
/** Streaming cursor of the table "listing_status" */
|
|
12482
|
-
export interface listing_status_stream_cursor_input {
|
|
12483
|
-
/** Stream column input with initial value */
|
|
12484
|
-
initial_value: listing_status_stream_cursor_value_input;
|
|
12485
|
-
/** cursor ordering */
|
|
12486
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
12487
|
-
}
|
|
12488
|
-
|
|
12489
|
-
/** Initial value of the column from where the streaming should start */
|
|
12490
|
-
export interface listing_status_stream_cursor_value_input {
|
|
12491
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
12492
|
-
}
|
|
12493
|
-
|
|
12494
|
-
/** update columns of table "listing_status" */
|
|
12495
|
-
export type listing_status_update_column =
|
|
12496
|
-
/** column name */
|
|
12497
|
-
"name";
|
|
12498
|
-
|
|
12499
|
-
export interface listing_status_updates {
|
|
12500
|
-
/** sets the columns of the filtered rows to the given values */
|
|
12501
|
-
_set?: InputMaybe<listing_status_set_input>;
|
|
12502
|
-
/** filter the rows which have to be updated */
|
|
12503
|
-
where: listing_status_bool_exp;
|
|
12504
|
-
}
|
|
12505
|
-
|
|
12506
12188
|
/** order by stddev() on columns of table "listing" */
|
|
12507
12189
|
export interface listing_stddev_order_by {
|
|
12508
12190
|
bedrooms?: InputMaybe<order_by>;
|
|
@@ -12548,7 +12230,7 @@ export interface listing_stream_cursor_value_input {
|
|
|
12548
12230
|
address_id?: InputMaybe<Scalars["uuid"]>;
|
|
12549
12231
|
bedrooms?: InputMaybe<Scalars["Int"]>;
|
|
12550
12232
|
beds?: InputMaybe<Scalars["Int"]>;
|
|
12551
|
-
calculatedStatus?: InputMaybe<
|
|
12233
|
+
calculatedStatus?: InputMaybe<activeStatus_enum>;
|
|
12552
12234
|
calculatedTitle?: InputMaybe<Scalars["String"]>;
|
|
12553
12235
|
calculated_title?: InputMaybe<Scalars["String"]>;
|
|
12554
12236
|
centExpenseReserve?: InputMaybe<Scalars["Int"]>;
|
|
@@ -12565,9 +12247,9 @@ export interface listing_stream_cursor_value_input {
|
|
|
12565
12247
|
name?: InputMaybe<Scalars["String"]>;
|
|
12566
12248
|
ownerContactId?: InputMaybe<Scalars["uuid"]>;
|
|
12567
12249
|
pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
12568
|
-
pmsStatus?: InputMaybe<
|
|
12250
|
+
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
12569
12251
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
12570
|
-
status?: InputMaybe<
|
|
12252
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
12571
12253
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12572
12254
|
title?: InputMaybe<Scalars["String"]>;
|
|
12573
12255
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -31520,7 +31202,7 @@ export declare const generatedSchema: {
|
|
|
31520
31202
|
where: "setting_bool_exp";
|
|
31521
31203
|
};
|
|
31522
31204
|
};
|
|
31523
|
-
status: { __type: "
|
|
31205
|
+
status: { __type: "activeStatus_enum!" };
|
|
31524
31206
|
syncs: {
|
|
31525
31207
|
__type: "[sync!]!";
|
|
31526
31208
|
__args: {
|
|
@@ -31611,7 +31293,7 @@ export declare const generatedSchema: {
|
|
|
31611
31293
|
scheduleStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
31612
31294
|
settings: { __type: "setting_bool_exp" };
|
|
31613
31295
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
31614
|
-
status: { __type: "
|
|
31296
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
31615
31297
|
syncs: { __type: "sync_bool_exp" };
|
|
31616
31298
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
31617
31299
|
template: { __type: "String_comparison_exp" };
|
|
@@ -31652,7 +31334,7 @@ export declare const generatedSchema: {
|
|
|
31652
31334
|
runSettings: { __type: "jsonb" };
|
|
31653
31335
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31654
31336
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
31655
|
-
status: { __type: "
|
|
31337
|
+
status: { __type: "activeStatus_enum" };
|
|
31656
31338
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
31657
31339
|
template: { __type: "String" };
|
|
31658
31340
|
templateId: { __type: "uuid" };
|
|
@@ -31773,7 +31455,7 @@ export declare const generatedSchema: {
|
|
|
31773
31455
|
rightConnectionId: { __type: "uuid" };
|
|
31774
31456
|
runSettings: { __type: "jsonb" };
|
|
31775
31457
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31776
|
-
status: { __type: "
|
|
31458
|
+
status: { __type: "activeStatus_enum" };
|
|
31777
31459
|
template: { __type: "String" };
|
|
31778
31460
|
templateId: { __type: "uuid" };
|
|
31779
31461
|
tenantId: { __type: "uuid" };
|
|
@@ -31782,71 +31464,6 @@ export declare const generatedSchema: {
|
|
|
31782
31464
|
updatedAt: { __type: "timestamptz" };
|
|
31783
31465
|
viewSettings: { __type: "jsonb" };
|
|
31784
31466
|
};
|
|
31785
|
-
automation_status: {
|
|
31786
|
-
__typename: { __type: "String!" };
|
|
31787
|
-
name: { __type: "String!" };
|
|
31788
|
-
};
|
|
31789
|
-
automation_status_aggregate: {
|
|
31790
|
-
__typename: { __type: "String!" };
|
|
31791
|
-
aggregate: { __type: "automation_status_aggregate_fields" };
|
|
31792
|
-
nodes: { __type: "[automation_status!]!" };
|
|
31793
|
-
};
|
|
31794
|
-
automation_status_aggregate_fields: {
|
|
31795
|
-
__typename: { __type: "String!" };
|
|
31796
|
-
count: {
|
|
31797
|
-
__type: "Int!";
|
|
31798
|
-
__args: {
|
|
31799
|
-
columns: "[automation_status_select_column!]";
|
|
31800
|
-
distinct: "Boolean";
|
|
31801
|
-
};
|
|
31802
|
-
};
|
|
31803
|
-
max: { __type: "automation_status_max_fields" };
|
|
31804
|
-
min: { __type: "automation_status_min_fields" };
|
|
31805
|
-
};
|
|
31806
|
-
automation_status_bool_exp: {
|
|
31807
|
-
_and: { __type: "[automation_status_bool_exp!]" };
|
|
31808
|
-
_not: { __type: "automation_status_bool_exp" };
|
|
31809
|
-
_or: { __type: "[automation_status_bool_exp!]" };
|
|
31810
|
-
name: { __type: "String_comparison_exp" };
|
|
31811
|
-
};
|
|
31812
|
-
automation_status_enum_comparison_exp: {
|
|
31813
|
-
_eq: { __type: "automation_status_enum" };
|
|
31814
|
-
_in: { __type: "[automation_status_enum!]" };
|
|
31815
|
-
_is_null: { __type: "Boolean" };
|
|
31816
|
-
_neq: { __type: "automation_status_enum" };
|
|
31817
|
-
_nin: { __type: "[automation_status_enum!]" };
|
|
31818
|
-
};
|
|
31819
|
-
automation_status_insert_input: { name: { __type: "String" } };
|
|
31820
|
-
automation_status_max_fields: {
|
|
31821
|
-
__typename: { __type: "String!" };
|
|
31822
|
-
name: { __type: "String" };
|
|
31823
|
-
};
|
|
31824
|
-
automation_status_min_fields: {
|
|
31825
|
-
__typename: { __type: "String!" };
|
|
31826
|
-
name: { __type: "String" };
|
|
31827
|
-
};
|
|
31828
|
-
automation_status_mutation_response: {
|
|
31829
|
-
__typename: { __type: "String!" };
|
|
31830
|
-
affected_rows: { __type: "Int!" };
|
|
31831
|
-
returning: { __type: "[automation_status!]!" };
|
|
31832
|
-
};
|
|
31833
|
-
automation_status_on_conflict: {
|
|
31834
|
-
constraint: { __type: "automation_status_constraint!" };
|
|
31835
|
-
update_columns: { __type: "[automation_status_update_column!]!" };
|
|
31836
|
-
where: { __type: "automation_status_bool_exp" };
|
|
31837
|
-
};
|
|
31838
|
-
automation_status_order_by: { name: { __type: "order_by" } };
|
|
31839
|
-
automation_status_pk_columns_input: { name: { __type: "String!" } };
|
|
31840
|
-
automation_status_set_input: { name: { __type: "String" } };
|
|
31841
|
-
automation_status_stream_cursor_input: {
|
|
31842
|
-
initial_value: { __type: "automation_status_stream_cursor_value_input!" };
|
|
31843
|
-
ordering: { __type: "cursor_ordering" };
|
|
31844
|
-
};
|
|
31845
|
-
automation_status_stream_cursor_value_input: { name: { __type: "String" } };
|
|
31846
|
-
automation_status_updates: {
|
|
31847
|
-
_set: { __type: "automation_status_set_input" };
|
|
31848
|
-
where: { __type: "automation_status_bool_exp!" };
|
|
31849
|
-
};
|
|
31850
31467
|
automation_stream_cursor_input: {
|
|
31851
31468
|
initial_value: { __type: "automation_stream_cursor_value_input!" };
|
|
31852
31469
|
ordering: { __type: "cursor_ordering" };
|
|
@@ -31859,7 +31476,7 @@ export declare const generatedSchema: {
|
|
|
31859
31476
|
rightConnectionId: { __type: "uuid" };
|
|
31860
31477
|
runSettings: { __type: "jsonb" };
|
|
31861
31478
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31862
|
-
status: { __type: "
|
|
31479
|
+
status: { __type: "activeStatus_enum" };
|
|
31863
31480
|
template: { __type: "String" };
|
|
31864
31481
|
templateId: { __type: "uuid" };
|
|
31865
31482
|
tenantId: { __type: "uuid" };
|
|
@@ -34706,7 +34323,7 @@ export declare const generatedSchema: {
|
|
|
34706
34323
|
where: "setting_bool_exp";
|
|
34707
34324
|
};
|
|
34708
34325
|
};
|
|
34709
|
-
status: { __type: "
|
|
34326
|
+
status: { __type: "activeStatus_enum" };
|
|
34710
34327
|
syncs: {
|
|
34711
34328
|
__type: "[sync!]!";
|
|
34712
34329
|
__args: {
|
|
@@ -34878,7 +34495,7 @@ export declare const generatedSchema: {
|
|
|
34878
34495
|
settingsRight: { __type: "setting_bool_exp" };
|
|
34879
34496
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34880
34497
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34881
|
-
status: { __type: "
|
|
34498
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
34882
34499
|
syncs: { __type: "sync_bool_exp" };
|
|
34883
34500
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
34884
34501
|
tasks: { __type: "task_bool_exp" };
|
|
@@ -34936,7 +34553,7 @@ export declare const generatedSchema: {
|
|
|
34936
34553
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
34937
34554
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
34938
34555
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
34939
|
-
status: { __type: "
|
|
34556
|
+
status: { __type: "activeStatus_enum" };
|
|
34940
34557
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
34941
34558
|
tasks: { __type: "task_arr_rel_insert_input" };
|
|
34942
34559
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
@@ -34956,7 +34573,6 @@ export declare const generatedSchema: {
|
|
|
34956
34573
|
id: { __type: "uuid" };
|
|
34957
34574
|
lastFetch: { __type: "timestamptz" };
|
|
34958
34575
|
name: { __type: "String" };
|
|
34959
|
-
status: { __type: "String" };
|
|
34960
34576
|
tenantId: { __type: "uuid" };
|
|
34961
34577
|
type: { __type: "String" };
|
|
34962
34578
|
uniqueRef: { __type: "String" };
|
|
@@ -34972,7 +34588,6 @@ export declare const generatedSchema: {
|
|
|
34972
34588
|
id: { __type: "order_by" };
|
|
34973
34589
|
lastFetch: { __type: "order_by" };
|
|
34974
34590
|
name: { __type: "order_by" };
|
|
34975
|
-
status: { __type: "order_by" };
|
|
34976
34591
|
tenantId: { __type: "order_by" };
|
|
34977
34592
|
type: { __type: "order_by" };
|
|
34978
34593
|
uniqueRef: { __type: "order_by" };
|
|
@@ -34989,7 +34604,6 @@ export declare const generatedSchema: {
|
|
|
34989
34604
|
id: { __type: "uuid" };
|
|
34990
34605
|
lastFetch: { __type: "timestamptz" };
|
|
34991
34606
|
name: { __type: "String" };
|
|
34992
|
-
status: { __type: "String" };
|
|
34993
34607
|
tenantId: { __type: "uuid" };
|
|
34994
34608
|
type: { __type: "String" };
|
|
34995
34609
|
uniqueRef: { __type: "String" };
|
|
@@ -35005,7 +34619,6 @@ export declare const generatedSchema: {
|
|
|
35005
34619
|
id: { __type: "order_by" };
|
|
35006
34620
|
lastFetch: { __type: "order_by" };
|
|
35007
34621
|
name: { __type: "order_by" };
|
|
35008
|
-
status: { __type: "order_by" };
|
|
35009
34622
|
tenantId: { __type: "order_by" };
|
|
35010
34623
|
type: { __type: "order_by" };
|
|
35011
34624
|
uniqueRef: { __type: "order_by" };
|
|
@@ -35085,75 +34698,13 @@ export declare const generatedSchema: {
|
|
|
35085
34698
|
metadata: { __type: "jsonb" };
|
|
35086
34699
|
name: { __type: "String" };
|
|
35087
34700
|
persistentState: { __type: "jsonb" };
|
|
35088
|
-
status: { __type: "
|
|
34701
|
+
status: { __type: "activeStatus_enum" };
|
|
35089
34702
|
tenantId: { __type: "uuid" };
|
|
35090
34703
|
type: { __type: "String" };
|
|
35091
34704
|
uniqueRef: { __type: "String" };
|
|
35092
34705
|
updatedAt: { __type: "timestamptz" };
|
|
35093
34706
|
version: { __type: "Int" };
|
|
35094
34707
|
};
|
|
35095
|
-
connection_status_temporary: {
|
|
35096
|
-
__typename: { __type: "String!" };
|
|
35097
|
-
name: { __type: "String!" };
|
|
35098
|
-
};
|
|
35099
|
-
connection_status_temporary_aggregate: {
|
|
35100
|
-
__typename: { __type: "String!" };
|
|
35101
|
-
aggregate: { __type: "connection_status_temporary_aggregate_fields" };
|
|
35102
|
-
nodes: { __type: "[connection_status_temporary!]!" };
|
|
35103
|
-
};
|
|
35104
|
-
connection_status_temporary_aggregate_fields: {
|
|
35105
|
-
__typename: { __type: "String!" };
|
|
35106
|
-
count: {
|
|
35107
|
-
__type: "Int!";
|
|
35108
|
-
__args: {
|
|
35109
|
-
columns: "[connection_status_temporary_select_column!]";
|
|
35110
|
-
distinct: "Boolean";
|
|
35111
|
-
};
|
|
35112
|
-
};
|
|
35113
|
-
max: { __type: "connection_status_temporary_max_fields" };
|
|
35114
|
-
min: { __type: "connection_status_temporary_min_fields" };
|
|
35115
|
-
};
|
|
35116
|
-
connection_status_temporary_bool_exp: {
|
|
35117
|
-
_and: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
35118
|
-
_not: { __type: "connection_status_temporary_bool_exp" };
|
|
35119
|
-
_or: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
35120
|
-
name: { __type: "String_comparison_exp" };
|
|
35121
|
-
};
|
|
35122
|
-
connection_status_temporary_insert_input: { name: { __type: "String" } };
|
|
35123
|
-
connection_status_temporary_max_fields: {
|
|
35124
|
-
__typename: { __type: "String!" };
|
|
35125
|
-
name: { __type: "String" };
|
|
35126
|
-
};
|
|
35127
|
-
connection_status_temporary_min_fields: {
|
|
35128
|
-
__typename: { __type: "String!" };
|
|
35129
|
-
name: { __type: "String" };
|
|
35130
|
-
};
|
|
35131
|
-
connection_status_temporary_mutation_response: {
|
|
35132
|
-
__typename: { __type: "String!" };
|
|
35133
|
-
affected_rows: { __type: "Int!" };
|
|
35134
|
-
returning: { __type: "[connection_status_temporary!]!" };
|
|
35135
|
-
};
|
|
35136
|
-
connection_status_temporary_on_conflict: {
|
|
35137
|
-
constraint: { __type: "connection_status_temporary_constraint!" };
|
|
35138
|
-
update_columns: { __type: "[connection_status_temporary_update_column!]!" };
|
|
35139
|
-
where: { __type: "connection_status_temporary_bool_exp" };
|
|
35140
|
-
};
|
|
35141
|
-
connection_status_temporary_order_by: { name: { __type: "order_by" } };
|
|
35142
|
-
connection_status_temporary_pk_columns_input: { name: { __type: "String!" } };
|
|
35143
|
-
connection_status_temporary_set_input: { name: { __type: "String" } };
|
|
35144
|
-
connection_status_temporary_stream_cursor_input: {
|
|
35145
|
-
initial_value: {
|
|
35146
|
-
__type: "connection_status_temporary_stream_cursor_value_input!";
|
|
35147
|
-
};
|
|
35148
|
-
ordering: { __type: "cursor_ordering" };
|
|
35149
|
-
};
|
|
35150
|
-
connection_status_temporary_stream_cursor_value_input: {
|
|
35151
|
-
name: { __type: "String" };
|
|
35152
|
-
};
|
|
35153
|
-
connection_status_temporary_updates: {
|
|
35154
|
-
_set: { __type: "connection_status_temporary_set_input" };
|
|
35155
|
-
where: { __type: "connection_status_temporary_bool_exp!" };
|
|
35156
|
-
};
|
|
35157
34708
|
connection_stddev_fields: {
|
|
35158
34709
|
__typename: { __type: "String!" };
|
|
35159
34710
|
backendVersion: { __type: "Float" };
|
|
@@ -35199,7 +34750,7 @@ export declare const generatedSchema: {
|
|
|
35199
34750
|
metadata: { __type: "jsonb" };
|
|
35200
34751
|
name: { __type: "String" };
|
|
35201
34752
|
persistentState: { __type: "jsonb" };
|
|
35202
|
-
status: { __type: "
|
|
34753
|
+
status: { __type: "activeStatus_enum" };
|
|
35203
34754
|
tenantId: { __type: "uuid" };
|
|
35204
34755
|
type: { __type: "String" };
|
|
35205
34756
|
uniqueRef: { __type: "String" };
|
|
@@ -35893,6 +35444,7 @@ export declare const generatedSchema: {
|
|
|
35893
35444
|
core_flow: {
|
|
35894
35445
|
__typename: { __type: "String!" };
|
|
35895
35446
|
app_id: { __type: "String!" };
|
|
35447
|
+
description: { __type: "String" };
|
|
35896
35448
|
id: { __type: "uuid!" };
|
|
35897
35449
|
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35898
35450
|
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
@@ -35922,6 +35474,7 @@ export declare const generatedSchema: {
|
|
|
35922
35474
|
_not: { __type: "core_flow_bool_exp" };
|
|
35923
35475
|
_or: { __type: "[core_flow_bool_exp!]" };
|
|
35924
35476
|
app_id: { __type: "String_comparison_exp" };
|
|
35477
|
+
description: { __type: "String_comparison_exp" };
|
|
35925
35478
|
id: { __type: "uuid_comparison_exp" };
|
|
35926
35479
|
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35927
35480
|
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
@@ -35942,6 +35495,7 @@ export declare const generatedSchema: {
|
|
|
35942
35495
|
};
|
|
35943
35496
|
core_flow_insert_input: {
|
|
35944
35497
|
app_id: { __type: "String" };
|
|
35498
|
+
description: { __type: "String" };
|
|
35945
35499
|
id: { __type: "uuid" };
|
|
35946
35500
|
mapping_schema: { __type: "jsonb" };
|
|
35947
35501
|
setting_schema: { __type: "jsonb" };
|
|
@@ -36089,6 +35643,7 @@ export declare const generatedSchema: {
|
|
|
36089
35643
|
core_flow_max_fields: {
|
|
36090
35644
|
__typename: { __type: "String!" };
|
|
36091
35645
|
app_id: { __type: "String" };
|
|
35646
|
+
description: { __type: "String" };
|
|
36092
35647
|
id: { __type: "uuid" };
|
|
36093
35648
|
title: { __type: "String" };
|
|
36094
35649
|
type: { __type: "flow_type" };
|
|
@@ -36096,6 +35651,7 @@ export declare const generatedSchema: {
|
|
|
36096
35651
|
core_flow_min_fields: {
|
|
36097
35652
|
__typename: { __type: "String!" };
|
|
36098
35653
|
app_id: { __type: "String" };
|
|
35654
|
+
description: { __type: "String" };
|
|
36099
35655
|
id: { __type: "uuid" };
|
|
36100
35656
|
title: { __type: "String" };
|
|
36101
35657
|
type: { __type: "flow_type" };
|
|
@@ -36112,6 +35668,7 @@ export declare const generatedSchema: {
|
|
|
36112
35668
|
};
|
|
36113
35669
|
core_flow_order_by: {
|
|
36114
35670
|
app_id: { __type: "order_by" };
|
|
35671
|
+
description: { __type: "order_by" };
|
|
36115
35672
|
id: { __type: "order_by" };
|
|
36116
35673
|
mapping_schema: { __type: "order_by" };
|
|
36117
35674
|
setting_schema: { __type: "order_by" };
|
|
@@ -36125,6 +35682,7 @@ export declare const generatedSchema: {
|
|
|
36125
35682
|
};
|
|
36126
35683
|
core_flow_set_input: {
|
|
36127
35684
|
app_id: { __type: "String" };
|
|
35685
|
+
description: { __type: "String" };
|
|
36128
35686
|
id: { __type: "uuid" };
|
|
36129
35687
|
mapping_schema: { __type: "jsonb" };
|
|
36130
35688
|
setting_schema: { __type: "jsonb" };
|
|
@@ -36275,6 +35833,7 @@ export declare const generatedSchema: {
|
|
|
36275
35833
|
};
|
|
36276
35834
|
core_flow_stream_cursor_value_input: {
|
|
36277
35835
|
app_id: { __type: "String" };
|
|
35836
|
+
description: { __type: "String" };
|
|
36278
35837
|
id: { __type: "uuid" };
|
|
36279
35838
|
mapping_schema: { __type: "jsonb" };
|
|
36280
35839
|
setting_schema: { __type: "jsonb" };
|
|
@@ -38776,7 +38335,7 @@ export declare const generatedSchema: {
|
|
|
38776
38335
|
address_id: { __type: "uuid" };
|
|
38777
38336
|
bedrooms: { __type: "Int" };
|
|
38778
38337
|
beds: { __type: "Int" };
|
|
38779
|
-
calculatedStatus: { __type: "
|
|
38338
|
+
calculatedStatus: { __type: "activeStatus_enum" };
|
|
38780
38339
|
calculatedTitle: { __type: "String" };
|
|
38781
38340
|
calculated_title: { __type: "String" };
|
|
38782
38341
|
centExpenseReserve: { __type: "Int" };
|
|
@@ -38975,7 +38534,7 @@ export declare const generatedSchema: {
|
|
|
38975
38534
|
};
|
|
38976
38535
|
};
|
|
38977
38536
|
pmsAddressData: { __type: "jsonb"; __args: { path: "String" } };
|
|
38978
|
-
pmsStatus: { __type: "
|
|
38537
|
+
pmsStatus: { __type: "activeStatus_enum" };
|
|
38979
38538
|
recurringFeeSubscriptions: {
|
|
38980
38539
|
__type: "[recurringFeeListingSubscription!]!";
|
|
38981
38540
|
__args: {
|
|
@@ -39078,7 +38637,7 @@ export declare const generatedSchema: {
|
|
|
39078
38637
|
};
|
|
39079
38638
|
source: { __type: "source" };
|
|
39080
38639
|
sourceId: { __type: "uuid" };
|
|
39081
|
-
status: { __type: "
|
|
38640
|
+
status: { __type: "activeStatus_enum" };
|
|
39082
38641
|
tenant: { __type: "tenant!" };
|
|
39083
38642
|
tenantId: { __type: "uuid!" };
|
|
39084
38643
|
title: { __type: "String" };
|
|
@@ -39773,7 +39332,7 @@ export declare const generatedSchema: {
|
|
|
39773
39332
|
address_id: { __type: "uuid_comparison_exp" };
|
|
39774
39333
|
bedrooms: { __type: "Int_comparison_exp" };
|
|
39775
39334
|
beds: { __type: "Int_comparison_exp" };
|
|
39776
|
-
calculatedStatus: { __type: "
|
|
39335
|
+
calculatedStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
39777
39336
|
calculatedTitle: { __type: "String_comparison_exp" };
|
|
39778
39337
|
calculated_title: { __type: "String_comparison_exp" };
|
|
39779
39338
|
centExpenseReserve: { __type: "Int_comparison_exp" };
|
|
@@ -39816,7 +39375,7 @@ export declare const generatedSchema: {
|
|
|
39816
39375
|
paymentLines: { __type: "payment_line_bool_exp" };
|
|
39817
39376
|
paymentLines_aggregate: { __type: "payment_line_aggregate_bool_exp" };
|
|
39818
39377
|
pmsAddressData: { __type: "jsonb_comparison_exp" };
|
|
39819
|
-
pmsStatus: { __type: "
|
|
39378
|
+
pmsStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
39820
39379
|
recurringFeeSubscriptions: {
|
|
39821
39380
|
__type: "recurringFeeListingSubscription_bool_exp";
|
|
39822
39381
|
};
|
|
@@ -39833,7 +39392,7 @@ export declare const generatedSchema: {
|
|
|
39833
39392
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
39834
39393
|
source: { __type: "source_bool_exp" };
|
|
39835
39394
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
39836
|
-
status: { __type: "
|
|
39395
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
39837
39396
|
tenant: { __type: "tenant_bool_exp" };
|
|
39838
39397
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
39839
39398
|
title: { __type: "String_comparison_exp" };
|
|
@@ -40537,7 +40096,7 @@ export declare const generatedSchema: {
|
|
|
40537
40096
|
ownerships: { __type: "listing_owner_arr_rel_insert_input" };
|
|
40538
40097
|
paymentLines: { __type: "payment_line_arr_rel_insert_input" };
|
|
40539
40098
|
pmsAddressData: { __type: "jsonb" };
|
|
40540
|
-
pmsStatus: { __type: "
|
|
40099
|
+
pmsStatus: { __type: "activeStatus_enum" };
|
|
40541
40100
|
recurringFeeSubscriptions: {
|
|
40542
40101
|
__type: "recurringFeeListingSubscription_arr_rel_insert_input";
|
|
40543
40102
|
};
|
|
@@ -40547,7 +40106,7 @@ export declare const generatedSchema: {
|
|
|
40547
40106
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
40548
40107
|
source: { __type: "source_obj_rel_insert_input" };
|
|
40549
40108
|
sourceId: { __type: "uuid" };
|
|
40550
|
-
status: { __type: "
|
|
40109
|
+
status: { __type: "activeStatus_enum" };
|
|
40551
40110
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
40552
40111
|
tenantId: { __type: "uuid" };
|
|
40553
40112
|
title: { __type: "String" };
|
|
@@ -40564,7 +40123,6 @@ export declare const generatedSchema: {
|
|
|
40564
40123
|
address_id: { __type: "uuid" };
|
|
40565
40124
|
bedrooms: { __type: "Int" };
|
|
40566
40125
|
beds: { __type: "Int" };
|
|
40567
|
-
calculatedStatus: { __type: "String" };
|
|
40568
40126
|
calculatedTitle: { __type: "String" };
|
|
40569
40127
|
calculated_title: { __type: "String" };
|
|
40570
40128
|
centExpenseReserve: { __type: "Int" };
|
|
@@ -40591,7 +40149,6 @@ export declare const generatedSchema: {
|
|
|
40591
40149
|
address_id: { __type: "order_by" };
|
|
40592
40150
|
bedrooms: { __type: "order_by" };
|
|
40593
40151
|
beds: { __type: "order_by" };
|
|
40594
|
-
calculatedStatus: { __type: "order_by" };
|
|
40595
40152
|
calculatedTitle: { __type: "order_by" };
|
|
40596
40153
|
calculated_title: { __type: "order_by" };
|
|
40597
40154
|
centExpenseReserve: { __type: "order_by" };
|
|
@@ -40619,7 +40176,6 @@ export declare const generatedSchema: {
|
|
|
40619
40176
|
address_id: { __type: "uuid" };
|
|
40620
40177
|
bedrooms: { __type: "Int" };
|
|
40621
40178
|
beds: { __type: "Int" };
|
|
40622
|
-
calculatedStatus: { __type: "String" };
|
|
40623
40179
|
calculatedTitle: { __type: "String" };
|
|
40624
40180
|
calculated_title: { __type: "String" };
|
|
40625
40181
|
centExpenseReserve: { __type: "Int" };
|
|
@@ -40646,7 +40202,6 @@ export declare const generatedSchema: {
|
|
|
40646
40202
|
address_id: { __type: "order_by" };
|
|
40647
40203
|
bedrooms: { __type: "order_by" };
|
|
40648
40204
|
beds: { __type: "order_by" };
|
|
40649
|
-
calculatedStatus: { __type: "order_by" };
|
|
40650
40205
|
calculatedTitle: { __type: "order_by" };
|
|
40651
40206
|
calculated_title: { __type: "order_by" };
|
|
40652
40207
|
centExpenseReserve: { __type: "order_by" };
|
|
@@ -41109,71 +40664,6 @@ export declare const generatedSchema: {
|
|
|
41109
40664
|
};
|
|
41110
40665
|
listing_owner_variance_order_by: { split: { __type: "order_by" } };
|
|
41111
40666
|
listing_pk_columns_input: { id: { __type: "uuid!" } };
|
|
41112
|
-
listing_pms_status: {
|
|
41113
|
-
__typename: { __type: "String!" };
|
|
41114
|
-
name: { __type: "String!" };
|
|
41115
|
-
};
|
|
41116
|
-
listing_pms_status_aggregate: {
|
|
41117
|
-
__typename: { __type: "String!" };
|
|
41118
|
-
aggregate: { __type: "listing_pms_status_aggregate_fields" };
|
|
41119
|
-
nodes: { __type: "[listing_pms_status!]!" };
|
|
41120
|
-
};
|
|
41121
|
-
listing_pms_status_aggregate_fields: {
|
|
41122
|
-
__typename: { __type: "String!" };
|
|
41123
|
-
count: {
|
|
41124
|
-
__type: "Int!";
|
|
41125
|
-
__args: {
|
|
41126
|
-
columns: "[listing_pms_status_select_column!]";
|
|
41127
|
-
distinct: "Boolean";
|
|
41128
|
-
};
|
|
41129
|
-
};
|
|
41130
|
-
max: { __type: "listing_pms_status_max_fields" };
|
|
41131
|
-
min: { __type: "listing_pms_status_min_fields" };
|
|
41132
|
-
};
|
|
41133
|
-
listing_pms_status_bool_exp: {
|
|
41134
|
-
_and: { __type: "[listing_pms_status_bool_exp!]" };
|
|
41135
|
-
_not: { __type: "listing_pms_status_bool_exp" };
|
|
41136
|
-
_or: { __type: "[listing_pms_status_bool_exp!]" };
|
|
41137
|
-
name: { __type: "String_comparison_exp" };
|
|
41138
|
-
};
|
|
41139
|
-
listing_pms_status_enum_comparison_exp: {
|
|
41140
|
-
_eq: { __type: "listing_pms_status_enum" };
|
|
41141
|
-
_in: { __type: "[listing_pms_status_enum!]" };
|
|
41142
|
-
_is_null: { __type: "Boolean" };
|
|
41143
|
-
_neq: { __type: "listing_pms_status_enum" };
|
|
41144
|
-
_nin: { __type: "[listing_pms_status_enum!]" };
|
|
41145
|
-
};
|
|
41146
|
-
listing_pms_status_insert_input: { name: { __type: "String" } };
|
|
41147
|
-
listing_pms_status_max_fields: {
|
|
41148
|
-
__typename: { __type: "String!" };
|
|
41149
|
-
name: { __type: "String" };
|
|
41150
|
-
};
|
|
41151
|
-
listing_pms_status_min_fields: {
|
|
41152
|
-
__typename: { __type: "String!" };
|
|
41153
|
-
name: { __type: "String" };
|
|
41154
|
-
};
|
|
41155
|
-
listing_pms_status_mutation_response: {
|
|
41156
|
-
__typename: { __type: "String!" };
|
|
41157
|
-
affected_rows: { __type: "Int!" };
|
|
41158
|
-
returning: { __type: "[listing_pms_status!]!" };
|
|
41159
|
-
};
|
|
41160
|
-
listing_pms_status_on_conflict: {
|
|
41161
|
-
constraint: { __type: "listing_pms_status_constraint!" };
|
|
41162
|
-
update_columns: { __type: "[listing_pms_status_update_column!]!" };
|
|
41163
|
-
where: { __type: "listing_pms_status_bool_exp" };
|
|
41164
|
-
};
|
|
41165
|
-
listing_pms_status_order_by: { name: { __type: "order_by" } };
|
|
41166
|
-
listing_pms_status_pk_columns_input: { name: { __type: "String!" } };
|
|
41167
|
-
listing_pms_status_set_input: { name: { __type: "String" } };
|
|
41168
|
-
listing_pms_status_stream_cursor_input: {
|
|
41169
|
-
initial_value: { __type: "listing_pms_status_stream_cursor_value_input!" };
|
|
41170
|
-
ordering: { __type: "cursor_ordering" };
|
|
41171
|
-
};
|
|
41172
|
-
listing_pms_status_stream_cursor_value_input: { name: { __type: "String" } };
|
|
41173
|
-
listing_pms_status_updates: {
|
|
41174
|
-
_set: { __type: "listing_pms_status_set_input" };
|
|
41175
|
-
where: { __type: "listing_pms_status_bool_exp!" };
|
|
41176
|
-
};
|
|
41177
40667
|
listing_prepend_input: {
|
|
41178
40668
|
addressData: { __type: "jsonb" };
|
|
41179
40669
|
metadata: { __type: "jsonb" };
|
|
@@ -41201,79 +40691,14 @@ export declare const generatedSchema: {
|
|
|
41201
40691
|
name: { __type: "String" };
|
|
41202
40692
|
ownerContactId: { __type: "uuid" };
|
|
41203
40693
|
pmsAddressData: { __type: "jsonb" };
|
|
41204
|
-
pmsStatus: { __type: "
|
|
40694
|
+
pmsStatus: { __type: "activeStatus_enum" };
|
|
41205
40695
|
sourceId: { __type: "uuid" };
|
|
41206
|
-
status: { __type: "
|
|
40696
|
+
status: { __type: "activeStatus_enum" };
|
|
41207
40697
|
tenantId: { __type: "uuid" };
|
|
41208
40698
|
title: { __type: "String" };
|
|
41209
40699
|
uniqueRef: { __type: "String" };
|
|
41210
40700
|
updatedAt: { __type: "timestamptz" };
|
|
41211
40701
|
};
|
|
41212
|
-
listing_status: {
|
|
41213
|
-
__typename: { __type: "String!" };
|
|
41214
|
-
name: { __type: "String!" };
|
|
41215
|
-
};
|
|
41216
|
-
listing_status_aggregate: {
|
|
41217
|
-
__typename: { __type: "String!" };
|
|
41218
|
-
aggregate: { __type: "listing_status_aggregate_fields" };
|
|
41219
|
-
nodes: { __type: "[listing_status!]!" };
|
|
41220
|
-
};
|
|
41221
|
-
listing_status_aggregate_fields: {
|
|
41222
|
-
__typename: { __type: "String!" };
|
|
41223
|
-
count: {
|
|
41224
|
-
__type: "Int!";
|
|
41225
|
-
__args: {
|
|
41226
|
-
columns: "[listing_status_select_column!]";
|
|
41227
|
-
distinct: "Boolean";
|
|
41228
|
-
};
|
|
41229
|
-
};
|
|
41230
|
-
max: { __type: "listing_status_max_fields" };
|
|
41231
|
-
min: { __type: "listing_status_min_fields" };
|
|
41232
|
-
};
|
|
41233
|
-
listing_status_bool_exp: {
|
|
41234
|
-
_and: { __type: "[listing_status_bool_exp!]" };
|
|
41235
|
-
_not: { __type: "listing_status_bool_exp" };
|
|
41236
|
-
_or: { __type: "[listing_status_bool_exp!]" };
|
|
41237
|
-
name: { __type: "String_comparison_exp" };
|
|
41238
|
-
};
|
|
41239
|
-
listing_status_enum_comparison_exp: {
|
|
41240
|
-
_eq: { __type: "listing_status_enum" };
|
|
41241
|
-
_in: { __type: "[listing_status_enum!]" };
|
|
41242
|
-
_is_null: { __type: "Boolean" };
|
|
41243
|
-
_neq: { __type: "listing_status_enum" };
|
|
41244
|
-
_nin: { __type: "[listing_status_enum!]" };
|
|
41245
|
-
};
|
|
41246
|
-
listing_status_insert_input: { name: { __type: "String" } };
|
|
41247
|
-
listing_status_max_fields: {
|
|
41248
|
-
__typename: { __type: "String!" };
|
|
41249
|
-
name: { __type: "String" };
|
|
41250
|
-
};
|
|
41251
|
-
listing_status_min_fields: {
|
|
41252
|
-
__typename: { __type: "String!" };
|
|
41253
|
-
name: { __type: "String" };
|
|
41254
|
-
};
|
|
41255
|
-
listing_status_mutation_response: {
|
|
41256
|
-
__typename: { __type: "String!" };
|
|
41257
|
-
affected_rows: { __type: "Int!" };
|
|
41258
|
-
returning: { __type: "[listing_status!]!" };
|
|
41259
|
-
};
|
|
41260
|
-
listing_status_on_conflict: {
|
|
41261
|
-
constraint: { __type: "listing_status_constraint!" };
|
|
41262
|
-
update_columns: { __type: "[listing_status_update_column!]!" };
|
|
41263
|
-
where: { __type: "listing_status_bool_exp" };
|
|
41264
|
-
};
|
|
41265
|
-
listing_status_order_by: { name: { __type: "order_by" } };
|
|
41266
|
-
listing_status_pk_columns_input: { name: { __type: "String!" } };
|
|
41267
|
-
listing_status_set_input: { name: { __type: "String" } };
|
|
41268
|
-
listing_status_stream_cursor_input: {
|
|
41269
|
-
initial_value: { __type: "listing_status_stream_cursor_value_input!" };
|
|
41270
|
-
ordering: { __type: "cursor_ordering" };
|
|
41271
|
-
};
|
|
41272
|
-
listing_status_stream_cursor_value_input: { name: { __type: "String" } };
|
|
41273
|
-
listing_status_updates: {
|
|
41274
|
-
_set: { __type: "listing_status_set_input" };
|
|
41275
|
-
where: { __type: "listing_status_bool_exp!" };
|
|
41276
|
-
};
|
|
41277
40702
|
listing_stddev_fields: {
|
|
41278
40703
|
__typename: { __type: "String!" };
|
|
41279
40704
|
bedrooms: { __type: "Float" };
|
|
@@ -41326,7 +40751,7 @@ export declare const generatedSchema: {
|
|
|
41326
40751
|
address_id: { __type: "uuid" };
|
|
41327
40752
|
bedrooms: { __type: "Int" };
|
|
41328
40753
|
beds: { __type: "Int" };
|
|
41329
|
-
calculatedStatus: { __type: "
|
|
40754
|
+
calculatedStatus: { __type: "activeStatus_enum" };
|
|
41330
40755
|
calculatedTitle: { __type: "String" };
|
|
41331
40756
|
calculated_title: { __type: "String" };
|
|
41332
40757
|
centExpenseReserve: { __type: "Int" };
|
|
@@ -41342,9 +40767,9 @@ export declare const generatedSchema: {
|
|
|
41342
40767
|
name: { __type: "String" };
|
|
41343
40768
|
ownerContactId: { __type: "uuid" };
|
|
41344
40769
|
pmsAddressData: { __type: "jsonb" };
|
|
41345
|
-
pmsStatus: { __type: "
|
|
40770
|
+
pmsStatus: { __type: "activeStatus_enum" };
|
|
41346
40771
|
sourceId: { __type: "uuid" };
|
|
41347
|
-
status: { __type: "
|
|
40772
|
+
status: { __type: "activeStatus_enum" };
|
|
41348
40773
|
tenantId: { __type: "uuid" };
|
|
41349
40774
|
title: { __type: "String" };
|
|
41350
40775
|
uniqueRef: { __type: "String" };
|
|
@@ -42711,14 +42136,6 @@ export declare const generatedSchema: {
|
|
|
42711
42136
|
__args: { where: "address_bool_exp!" };
|
|
42712
42137
|
};
|
|
42713
42138
|
delete_address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
|
|
42714
|
-
delete_automation_status: {
|
|
42715
|
-
__type: "automation_status_mutation_response";
|
|
42716
|
-
__args: { where: "automation_status_bool_exp!" };
|
|
42717
|
-
};
|
|
42718
|
-
delete_automation_status_by_pk: {
|
|
42719
|
-
__type: "automation_status";
|
|
42720
|
-
__args: { name: "String!" };
|
|
42721
|
-
};
|
|
42722
42139
|
delete_billing_payment_method_type: {
|
|
42723
42140
|
__type: "billing_payment_method_type_mutation_response";
|
|
42724
42141
|
__args: { where: "billing_payment_method_type_bool_exp!" };
|
|
@@ -42727,14 +42144,6 @@ export declare const generatedSchema: {
|
|
|
42727
42144
|
__type: "billing_payment_method_type";
|
|
42728
42145
|
__args: { name: "String!" };
|
|
42729
42146
|
};
|
|
42730
|
-
delete_connection_status_temporary: {
|
|
42731
|
-
__type: "connection_status_temporary_mutation_response";
|
|
42732
|
-
__args: { where: "connection_status_temporary_bool_exp!" };
|
|
42733
|
-
};
|
|
42734
|
-
delete_connection_status_temporary_by_pk: {
|
|
42735
|
-
__type: "connection_status_temporary";
|
|
42736
|
-
__args: { name: "String!" };
|
|
42737
|
-
};
|
|
42738
42147
|
delete_core_change_source_link: {
|
|
42739
42148
|
__type: "core_change_source_link_mutation_response";
|
|
42740
42149
|
__args: { where: "core_change_source_link_bool_exp!" };
|
|
@@ -42793,22 +42202,6 @@ export declare const generatedSchema: {
|
|
|
42793
42202
|
__type: "listing_owner_role";
|
|
42794
42203
|
__args: { name: "String!" };
|
|
42795
42204
|
};
|
|
42796
|
-
delete_listing_pms_status: {
|
|
42797
|
-
__type: "listing_pms_status_mutation_response";
|
|
42798
|
-
__args: { where: "listing_pms_status_bool_exp!" };
|
|
42799
|
-
};
|
|
42800
|
-
delete_listing_pms_status_by_pk: {
|
|
42801
|
-
__type: "listing_pms_status";
|
|
42802
|
-
__args: { name: "String!" };
|
|
42803
|
-
};
|
|
42804
|
-
delete_listing_status: {
|
|
42805
|
-
__type: "listing_status_mutation_response";
|
|
42806
|
-
__args: { where: "listing_status_bool_exp!" };
|
|
42807
|
-
};
|
|
42808
|
-
delete_listing_status_by_pk: {
|
|
42809
|
-
__type: "listing_status";
|
|
42810
|
-
__args: { name: "String!" };
|
|
42811
|
-
};
|
|
42812
42205
|
delete_owner_pms_status: {
|
|
42813
42206
|
__type: "owner_pms_status_mutation_response";
|
|
42814
42207
|
__args: { where: "owner_pms_status_bool_exp!" };
|
|
@@ -44300,20 +43693,6 @@ export declare const generatedSchema: {
|
|
|
44300
43693
|
on_conflict: "address_on_conflict";
|
|
44301
43694
|
};
|
|
44302
43695
|
};
|
|
44303
|
-
insert_automation_status: {
|
|
44304
|
-
__type: "automation_status_mutation_response";
|
|
44305
|
-
__args: {
|
|
44306
|
-
objects: "[automation_status_insert_input!]!";
|
|
44307
|
-
on_conflict: "automation_status_on_conflict";
|
|
44308
|
-
};
|
|
44309
|
-
};
|
|
44310
|
-
insert_automation_status_one: {
|
|
44311
|
-
__type: "automation_status";
|
|
44312
|
-
__args: {
|
|
44313
|
-
object: "automation_status_insert_input!";
|
|
44314
|
-
on_conflict: "automation_status_on_conflict";
|
|
44315
|
-
};
|
|
44316
|
-
};
|
|
44317
43696
|
insert_billing_payment_method_type: {
|
|
44318
43697
|
__type: "billing_payment_method_type_mutation_response";
|
|
44319
43698
|
__args: {
|
|
@@ -44328,20 +43707,6 @@ export declare const generatedSchema: {
|
|
|
44328
43707
|
on_conflict: "billing_payment_method_type_on_conflict";
|
|
44329
43708
|
};
|
|
44330
43709
|
};
|
|
44331
|
-
insert_connection_status_temporary: {
|
|
44332
|
-
__type: "connection_status_temporary_mutation_response";
|
|
44333
|
-
__args: {
|
|
44334
|
-
objects: "[connection_status_temporary_insert_input!]!";
|
|
44335
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
44336
|
-
};
|
|
44337
|
-
};
|
|
44338
|
-
insert_connection_status_temporary_one: {
|
|
44339
|
-
__type: "connection_status_temporary";
|
|
44340
|
-
__args: {
|
|
44341
|
-
object: "connection_status_temporary_insert_input!";
|
|
44342
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
44343
|
-
};
|
|
44344
|
-
};
|
|
44345
43710
|
insert_core_change_source_link: {
|
|
44346
43711
|
__type: "core_change_source_link_mutation_response";
|
|
44347
43712
|
__args: {
|
|
@@ -44454,34 +43819,6 @@ export declare const generatedSchema: {
|
|
|
44454
43819
|
on_conflict: "listing_owner_role_on_conflict";
|
|
44455
43820
|
};
|
|
44456
43821
|
};
|
|
44457
|
-
insert_listing_pms_status: {
|
|
44458
|
-
__type: "listing_pms_status_mutation_response";
|
|
44459
|
-
__args: {
|
|
44460
|
-
objects: "[listing_pms_status_insert_input!]!";
|
|
44461
|
-
on_conflict: "listing_pms_status_on_conflict";
|
|
44462
|
-
};
|
|
44463
|
-
};
|
|
44464
|
-
insert_listing_pms_status_one: {
|
|
44465
|
-
__type: "listing_pms_status";
|
|
44466
|
-
__args: {
|
|
44467
|
-
object: "listing_pms_status_insert_input!";
|
|
44468
|
-
on_conflict: "listing_pms_status_on_conflict";
|
|
44469
|
-
};
|
|
44470
|
-
};
|
|
44471
|
-
insert_listing_status: {
|
|
44472
|
-
__type: "listing_status_mutation_response";
|
|
44473
|
-
__args: {
|
|
44474
|
-
objects: "[listing_status_insert_input!]!";
|
|
44475
|
-
on_conflict: "listing_status_on_conflict";
|
|
44476
|
-
};
|
|
44477
|
-
};
|
|
44478
|
-
insert_listing_status_one: {
|
|
44479
|
-
__type: "listing_status";
|
|
44480
|
-
__args: {
|
|
44481
|
-
object: "listing_status_insert_input!";
|
|
44482
|
-
on_conflict: "listing_status_on_conflict";
|
|
44483
|
-
};
|
|
44484
|
-
};
|
|
44485
43822
|
insert_owner_pms_status: {
|
|
44486
43823
|
__type: "owner_pms_status_mutation_response";
|
|
44487
43824
|
__args: {
|
|
@@ -46726,24 +46063,6 @@ export declare const generatedSchema: {
|
|
|
46726
46063
|
__type: "[automation_mutation_response]";
|
|
46727
46064
|
__args: { updates: "[automation_updates!]!" };
|
|
46728
46065
|
};
|
|
46729
|
-
update_automation_status: {
|
|
46730
|
-
__type: "automation_status_mutation_response";
|
|
46731
|
-
__args: {
|
|
46732
|
-
_set: "automation_status_set_input";
|
|
46733
|
-
where: "automation_status_bool_exp!";
|
|
46734
|
-
};
|
|
46735
|
-
};
|
|
46736
|
-
update_automation_status_by_pk: {
|
|
46737
|
-
__type: "automation_status";
|
|
46738
|
-
__args: {
|
|
46739
|
-
_set: "automation_status_set_input";
|
|
46740
|
-
pk_columns: "automation_status_pk_columns_input!";
|
|
46741
|
-
};
|
|
46742
|
-
};
|
|
46743
|
-
update_automation_status_many: {
|
|
46744
|
-
__type: "[automation_status_mutation_response]";
|
|
46745
|
-
__args: { updates: "[automation_status_updates!]!" };
|
|
46746
|
-
};
|
|
46747
46066
|
update_automation_template_many: {
|
|
46748
46067
|
__type: "[automation_template_mutation_response]";
|
|
46749
46068
|
__args: { updates: "[automation_template_updates!]!" };
|
|
@@ -46770,24 +46089,6 @@ export declare const generatedSchema: {
|
|
|
46770
46089
|
__type: "[connection_mutation_response]";
|
|
46771
46090
|
__args: { updates: "[connection_updates!]!" };
|
|
46772
46091
|
};
|
|
46773
|
-
update_connection_status_temporary: {
|
|
46774
|
-
__type: "connection_status_temporary_mutation_response";
|
|
46775
|
-
__args: {
|
|
46776
|
-
_set: "connection_status_temporary_set_input";
|
|
46777
|
-
where: "connection_status_temporary_bool_exp!";
|
|
46778
|
-
};
|
|
46779
|
-
};
|
|
46780
|
-
update_connection_status_temporary_by_pk: {
|
|
46781
|
-
__type: "connection_status_temporary";
|
|
46782
|
-
__args: {
|
|
46783
|
-
_set: "connection_status_temporary_set_input";
|
|
46784
|
-
pk_columns: "connection_status_temporary_pk_columns_input!";
|
|
46785
|
-
};
|
|
46786
|
-
};
|
|
46787
|
-
update_connection_status_temporary_many: {
|
|
46788
|
-
__type: "[connection_status_temporary_mutation_response]";
|
|
46789
|
-
__args: { updates: "[connection_status_temporary_updates!]!" };
|
|
46790
|
-
};
|
|
46791
46092
|
update_core_change_source_link: {
|
|
46792
46093
|
__type: "core_change_source_link_mutation_response";
|
|
46793
46094
|
__args: {
|
|
@@ -46975,42 +46276,6 @@ export declare const generatedSchema: {
|
|
|
46975
46276
|
__type: "[listing_owner_role_mutation_response]";
|
|
46976
46277
|
__args: { updates: "[listing_owner_role_updates!]!" };
|
|
46977
46278
|
};
|
|
46978
|
-
update_listing_pms_status: {
|
|
46979
|
-
__type: "listing_pms_status_mutation_response";
|
|
46980
|
-
__args: {
|
|
46981
|
-
_set: "listing_pms_status_set_input";
|
|
46982
|
-
where: "listing_pms_status_bool_exp!";
|
|
46983
|
-
};
|
|
46984
|
-
};
|
|
46985
|
-
update_listing_pms_status_by_pk: {
|
|
46986
|
-
__type: "listing_pms_status";
|
|
46987
|
-
__args: {
|
|
46988
|
-
_set: "listing_pms_status_set_input";
|
|
46989
|
-
pk_columns: "listing_pms_status_pk_columns_input!";
|
|
46990
|
-
};
|
|
46991
|
-
};
|
|
46992
|
-
update_listing_pms_status_many: {
|
|
46993
|
-
__type: "[listing_pms_status_mutation_response]";
|
|
46994
|
-
__args: { updates: "[listing_pms_status_updates!]!" };
|
|
46995
|
-
};
|
|
46996
|
-
update_listing_status: {
|
|
46997
|
-
__type: "listing_status_mutation_response";
|
|
46998
|
-
__args: {
|
|
46999
|
-
_set: "listing_status_set_input";
|
|
47000
|
-
where: "listing_status_bool_exp!";
|
|
47001
|
-
};
|
|
47002
|
-
};
|
|
47003
|
-
update_listing_status_by_pk: {
|
|
47004
|
-
__type: "listing_status";
|
|
47005
|
-
__args: {
|
|
47006
|
-
_set: "listing_status_set_input";
|
|
47007
|
-
pk_columns: "listing_status_pk_columns_input!";
|
|
47008
|
-
};
|
|
47009
|
-
};
|
|
47010
|
-
update_listing_status_many: {
|
|
47011
|
-
__type: "[listing_status_mutation_response]";
|
|
47012
|
-
__args: { updates: "[listing_status_updates!]!" };
|
|
47013
|
-
};
|
|
47014
46279
|
update_owner_pms_status: {
|
|
47015
46280
|
__type: "owner_pms_status_mutation_response";
|
|
47016
46281
|
__args: {
|
|
@@ -52726,30 +51991,6 @@ export declare const generatedSchema: {
|
|
|
52726
51991
|
where: "automation_template_bool_exp";
|
|
52727
51992
|
};
|
|
52728
51993
|
};
|
|
52729
|
-
automation_status: {
|
|
52730
|
-
__type: "[automation_status!]!";
|
|
52731
|
-
__args: {
|
|
52732
|
-
distinct_on: "[automation_status_select_column!]";
|
|
52733
|
-
limit: "Int";
|
|
52734
|
-
offset: "Int";
|
|
52735
|
-
order_by: "[automation_status_order_by!]";
|
|
52736
|
-
where: "automation_status_bool_exp";
|
|
52737
|
-
};
|
|
52738
|
-
};
|
|
52739
|
-
automation_status_aggregate: {
|
|
52740
|
-
__type: "automation_status_aggregate!";
|
|
52741
|
-
__args: {
|
|
52742
|
-
distinct_on: "[automation_status_select_column!]";
|
|
52743
|
-
limit: "Int";
|
|
52744
|
-
offset: "Int";
|
|
52745
|
-
order_by: "[automation_status_order_by!]";
|
|
52746
|
-
where: "automation_status_bool_exp";
|
|
52747
|
-
};
|
|
52748
|
-
};
|
|
52749
|
-
automation_status_by_pk: {
|
|
52750
|
-
__type: "automation_status";
|
|
52751
|
-
__args: { name: "String!" };
|
|
52752
|
-
};
|
|
52753
51994
|
automations: {
|
|
52754
51995
|
__type: "[automation!]!";
|
|
52755
51996
|
__args: {
|
|
@@ -53077,30 +52318,6 @@ export declare const generatedSchema: {
|
|
|
53077
52318
|
};
|
|
53078
52319
|
};
|
|
53079
52320
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
53080
|
-
connection_status_temporary: {
|
|
53081
|
-
__type: "[connection_status_temporary!]!";
|
|
53082
|
-
__args: {
|
|
53083
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
53084
|
-
limit: "Int";
|
|
53085
|
-
offset: "Int";
|
|
53086
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
53087
|
-
where: "connection_status_temporary_bool_exp";
|
|
53088
|
-
};
|
|
53089
|
-
};
|
|
53090
|
-
connection_status_temporary_aggregate: {
|
|
53091
|
-
__type: "connection_status_temporary_aggregate!";
|
|
53092
|
-
__args: {
|
|
53093
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
53094
|
-
limit: "Int";
|
|
53095
|
-
offset: "Int";
|
|
53096
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
53097
|
-
where: "connection_status_temporary_bool_exp";
|
|
53098
|
-
};
|
|
53099
|
-
};
|
|
53100
|
-
connection_status_temporary_by_pk: {
|
|
53101
|
-
__type: "connection_status_temporary";
|
|
53102
|
-
__args: { name: "String!" };
|
|
53103
|
-
};
|
|
53104
52321
|
contact: { __type: "contact"; __args: { id: "uuid!" } };
|
|
53105
52322
|
contactAggregate: {
|
|
53106
52323
|
__type: "contact_aggregate!";
|
|
@@ -53928,54 +53145,6 @@ export declare const generatedSchema: {
|
|
|
53928
53145
|
__type: "listing_owner_role";
|
|
53929
53146
|
__args: { name: "String!" };
|
|
53930
53147
|
};
|
|
53931
|
-
listing_pms_status: {
|
|
53932
|
-
__type: "[listing_pms_status!]!";
|
|
53933
|
-
__args: {
|
|
53934
|
-
distinct_on: "[listing_pms_status_select_column!]";
|
|
53935
|
-
limit: "Int";
|
|
53936
|
-
offset: "Int";
|
|
53937
|
-
order_by: "[listing_pms_status_order_by!]";
|
|
53938
|
-
where: "listing_pms_status_bool_exp";
|
|
53939
|
-
};
|
|
53940
|
-
};
|
|
53941
|
-
listing_pms_status_aggregate: {
|
|
53942
|
-
__type: "listing_pms_status_aggregate!";
|
|
53943
|
-
__args: {
|
|
53944
|
-
distinct_on: "[listing_pms_status_select_column!]";
|
|
53945
|
-
limit: "Int";
|
|
53946
|
-
offset: "Int";
|
|
53947
|
-
order_by: "[listing_pms_status_order_by!]";
|
|
53948
|
-
where: "listing_pms_status_bool_exp";
|
|
53949
|
-
};
|
|
53950
|
-
};
|
|
53951
|
-
listing_pms_status_by_pk: {
|
|
53952
|
-
__type: "listing_pms_status";
|
|
53953
|
-
__args: { name: "String!" };
|
|
53954
|
-
};
|
|
53955
|
-
listing_status: {
|
|
53956
|
-
__type: "[listing_status!]!";
|
|
53957
|
-
__args: {
|
|
53958
|
-
distinct_on: "[listing_status_select_column!]";
|
|
53959
|
-
limit: "Int";
|
|
53960
|
-
offset: "Int";
|
|
53961
|
-
order_by: "[listing_status_order_by!]";
|
|
53962
|
-
where: "listing_status_bool_exp";
|
|
53963
|
-
};
|
|
53964
|
-
};
|
|
53965
|
-
listing_status_aggregate: {
|
|
53966
|
-
__type: "listing_status_aggregate!";
|
|
53967
|
-
__args: {
|
|
53968
|
-
distinct_on: "[listing_status_select_column!]";
|
|
53969
|
-
limit: "Int";
|
|
53970
|
-
offset: "Int";
|
|
53971
|
-
order_by: "[listing_status_order_by!]";
|
|
53972
|
-
where: "listing_status_bool_exp";
|
|
53973
|
-
};
|
|
53974
|
-
};
|
|
53975
|
-
listing_status_by_pk: {
|
|
53976
|
-
__type: "listing_status";
|
|
53977
|
-
__args: { name: "String!" };
|
|
53978
|
-
};
|
|
53979
53148
|
listings: {
|
|
53980
53149
|
__type: "[listing!]!";
|
|
53981
53150
|
__args: {
|
|
@@ -61294,38 +60463,6 @@ export declare const generatedSchema: {
|
|
|
61294
60463
|
where: "automation_template_bool_exp";
|
|
61295
60464
|
};
|
|
61296
60465
|
};
|
|
61297
|
-
automation_status: {
|
|
61298
|
-
__type: "[automation_status!]!";
|
|
61299
|
-
__args: {
|
|
61300
|
-
distinct_on: "[automation_status_select_column!]";
|
|
61301
|
-
limit: "Int";
|
|
61302
|
-
offset: "Int";
|
|
61303
|
-
order_by: "[automation_status_order_by!]";
|
|
61304
|
-
where: "automation_status_bool_exp";
|
|
61305
|
-
};
|
|
61306
|
-
};
|
|
61307
|
-
automation_status_aggregate: {
|
|
61308
|
-
__type: "automation_status_aggregate!";
|
|
61309
|
-
__args: {
|
|
61310
|
-
distinct_on: "[automation_status_select_column!]";
|
|
61311
|
-
limit: "Int";
|
|
61312
|
-
offset: "Int";
|
|
61313
|
-
order_by: "[automation_status_order_by!]";
|
|
61314
|
-
where: "automation_status_bool_exp";
|
|
61315
|
-
};
|
|
61316
|
-
};
|
|
61317
|
-
automation_status_by_pk: {
|
|
61318
|
-
__type: "automation_status";
|
|
61319
|
-
__args: { name: "String!" };
|
|
61320
|
-
};
|
|
61321
|
-
automation_status_stream: {
|
|
61322
|
-
__type: "[automation_status!]!";
|
|
61323
|
-
__args: {
|
|
61324
|
-
batch_size: "Int!";
|
|
61325
|
-
cursor: "[automation_status_stream_cursor_input]!";
|
|
61326
|
-
where: "automation_status_bool_exp";
|
|
61327
|
-
};
|
|
61328
|
-
};
|
|
61329
60466
|
automation_stream: {
|
|
61330
60467
|
__type: "[automation!]!";
|
|
61331
60468
|
__args: {
|
|
@@ -61765,38 +60902,6 @@ export declare const generatedSchema: {
|
|
|
61765
60902
|
};
|
|
61766
60903
|
};
|
|
61767
60904
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
61768
|
-
connection_status_temporary: {
|
|
61769
|
-
__type: "[connection_status_temporary!]!";
|
|
61770
|
-
__args: {
|
|
61771
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
61772
|
-
limit: "Int";
|
|
61773
|
-
offset: "Int";
|
|
61774
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
61775
|
-
where: "connection_status_temporary_bool_exp";
|
|
61776
|
-
};
|
|
61777
|
-
};
|
|
61778
|
-
connection_status_temporary_aggregate: {
|
|
61779
|
-
__type: "connection_status_temporary_aggregate!";
|
|
61780
|
-
__args: {
|
|
61781
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
61782
|
-
limit: "Int";
|
|
61783
|
-
offset: "Int";
|
|
61784
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
61785
|
-
where: "connection_status_temporary_bool_exp";
|
|
61786
|
-
};
|
|
61787
|
-
};
|
|
61788
|
-
connection_status_temporary_by_pk: {
|
|
61789
|
-
__type: "connection_status_temporary";
|
|
61790
|
-
__args: { name: "String!" };
|
|
61791
|
-
};
|
|
61792
|
-
connection_status_temporary_stream: {
|
|
61793
|
-
__type: "[connection_status_temporary!]!";
|
|
61794
|
-
__args: {
|
|
61795
|
-
batch_size: "Int!";
|
|
61796
|
-
cursor: "[connection_status_temporary_stream_cursor_input]!";
|
|
61797
|
-
where: "connection_status_temporary_bool_exp";
|
|
61798
|
-
};
|
|
61799
|
-
};
|
|
61800
60905
|
connection_stream: {
|
|
61801
60906
|
__type: "[connection!]!";
|
|
61802
60907
|
__args: {
|
|
@@ -62904,70 +62009,6 @@ export declare const generatedSchema: {
|
|
|
62904
62009
|
where: "listing_owner_bool_exp";
|
|
62905
62010
|
};
|
|
62906
62011
|
};
|
|
62907
|
-
listing_pms_status: {
|
|
62908
|
-
__type: "[listing_pms_status!]!";
|
|
62909
|
-
__args: {
|
|
62910
|
-
distinct_on: "[listing_pms_status_select_column!]";
|
|
62911
|
-
limit: "Int";
|
|
62912
|
-
offset: "Int";
|
|
62913
|
-
order_by: "[listing_pms_status_order_by!]";
|
|
62914
|
-
where: "listing_pms_status_bool_exp";
|
|
62915
|
-
};
|
|
62916
|
-
};
|
|
62917
|
-
listing_pms_status_aggregate: {
|
|
62918
|
-
__type: "listing_pms_status_aggregate!";
|
|
62919
|
-
__args: {
|
|
62920
|
-
distinct_on: "[listing_pms_status_select_column!]";
|
|
62921
|
-
limit: "Int";
|
|
62922
|
-
offset: "Int";
|
|
62923
|
-
order_by: "[listing_pms_status_order_by!]";
|
|
62924
|
-
where: "listing_pms_status_bool_exp";
|
|
62925
|
-
};
|
|
62926
|
-
};
|
|
62927
|
-
listing_pms_status_by_pk: {
|
|
62928
|
-
__type: "listing_pms_status";
|
|
62929
|
-
__args: { name: "String!" };
|
|
62930
|
-
};
|
|
62931
|
-
listing_pms_status_stream: {
|
|
62932
|
-
__type: "[listing_pms_status!]!";
|
|
62933
|
-
__args: {
|
|
62934
|
-
batch_size: "Int!";
|
|
62935
|
-
cursor: "[listing_pms_status_stream_cursor_input]!";
|
|
62936
|
-
where: "listing_pms_status_bool_exp";
|
|
62937
|
-
};
|
|
62938
|
-
};
|
|
62939
|
-
listing_status: {
|
|
62940
|
-
__type: "[listing_status!]!";
|
|
62941
|
-
__args: {
|
|
62942
|
-
distinct_on: "[listing_status_select_column!]";
|
|
62943
|
-
limit: "Int";
|
|
62944
|
-
offset: "Int";
|
|
62945
|
-
order_by: "[listing_status_order_by!]";
|
|
62946
|
-
where: "listing_status_bool_exp";
|
|
62947
|
-
};
|
|
62948
|
-
};
|
|
62949
|
-
listing_status_aggregate: {
|
|
62950
|
-
__type: "listing_status_aggregate!";
|
|
62951
|
-
__args: {
|
|
62952
|
-
distinct_on: "[listing_status_select_column!]";
|
|
62953
|
-
limit: "Int";
|
|
62954
|
-
offset: "Int";
|
|
62955
|
-
order_by: "[listing_status_order_by!]";
|
|
62956
|
-
where: "listing_status_bool_exp";
|
|
62957
|
-
};
|
|
62958
|
-
};
|
|
62959
|
-
listing_status_by_pk: {
|
|
62960
|
-
__type: "listing_status";
|
|
62961
|
-
__args: { name: "String!" };
|
|
62962
|
-
};
|
|
62963
|
-
listing_status_stream: {
|
|
62964
|
-
__type: "[listing_status!]!";
|
|
62965
|
-
__args: {
|
|
62966
|
-
batch_size: "Int!";
|
|
62967
|
-
cursor: "[listing_status_stream_cursor_input]!";
|
|
62968
|
-
where: "listing_status_bool_exp";
|
|
62969
|
-
};
|
|
62970
|
-
};
|
|
62971
62012
|
listing_stream: {
|
|
62972
62013
|
__type: "[listing!]!";
|
|
62973
62014
|
__args: {
|
|
@@ -74365,7 +73406,7 @@ export interface automation {
|
|
|
74365
73406
|
*/
|
|
74366
73407
|
where?: Maybe<setting_bool_exp>;
|
|
74367
73408
|
}) => setting_aggregate;
|
|
74368
|
-
status: ScalarsEnums["
|
|
73409
|
+
status: ScalarsEnums["activeStatus_enum"];
|
|
74369
73410
|
/**
|
|
74370
73411
|
* An array relationship
|
|
74371
73412
|
*/
|
|
@@ -74511,67 +73552,6 @@ export interface automation_mutation_response {
|
|
|
74511
73552
|
returning: Array<automation>;
|
|
74512
73553
|
}
|
|
74513
73554
|
|
|
74514
|
-
/**
|
|
74515
|
-
* columns and relationships of "automation_status"
|
|
74516
|
-
*/
|
|
74517
|
-
export interface automation_status {
|
|
74518
|
-
__typename?: "automation_status";
|
|
74519
|
-
name: ScalarsEnums["String"];
|
|
74520
|
-
}
|
|
74521
|
-
|
|
74522
|
-
/**
|
|
74523
|
-
* aggregated selection of "automation_status"
|
|
74524
|
-
*/
|
|
74525
|
-
export interface automation_status_aggregate {
|
|
74526
|
-
__typename?: "automation_status_aggregate";
|
|
74527
|
-
aggregate?: Maybe<automation_status_aggregate_fields>;
|
|
74528
|
-
nodes: Array<automation_status>;
|
|
74529
|
-
}
|
|
74530
|
-
|
|
74531
|
-
/**
|
|
74532
|
-
* aggregate fields of "automation_status"
|
|
74533
|
-
*/
|
|
74534
|
-
export interface automation_status_aggregate_fields {
|
|
74535
|
-
__typename?: "automation_status_aggregate_fields";
|
|
74536
|
-
count: (args?: {
|
|
74537
|
-
columns?: Maybe<Array<automation_status_select_column>>;
|
|
74538
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
74539
|
-
}) => ScalarsEnums["Int"];
|
|
74540
|
-
max?: Maybe<automation_status_max_fields>;
|
|
74541
|
-
min?: Maybe<automation_status_min_fields>;
|
|
74542
|
-
}
|
|
74543
|
-
|
|
74544
|
-
/**
|
|
74545
|
-
* aggregate max on columns
|
|
74546
|
-
*/
|
|
74547
|
-
export interface automation_status_max_fields {
|
|
74548
|
-
__typename?: "automation_status_max_fields";
|
|
74549
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
74550
|
-
}
|
|
74551
|
-
|
|
74552
|
-
/**
|
|
74553
|
-
* aggregate min on columns
|
|
74554
|
-
*/
|
|
74555
|
-
export interface automation_status_min_fields {
|
|
74556
|
-
__typename?: "automation_status_min_fields";
|
|
74557
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
74558
|
-
}
|
|
74559
|
-
|
|
74560
|
-
/**
|
|
74561
|
-
* response of any mutation on the table "automation_status"
|
|
74562
|
-
*/
|
|
74563
|
-
export interface automation_status_mutation_response {
|
|
74564
|
-
__typename?: "automation_status_mutation_response";
|
|
74565
|
-
/**
|
|
74566
|
-
* number of rows affected by the mutation
|
|
74567
|
-
*/
|
|
74568
|
-
affected_rows: ScalarsEnums["Int"];
|
|
74569
|
-
/**
|
|
74570
|
-
* data from the rows affected by the mutation
|
|
74571
|
-
*/
|
|
74572
|
-
returning: Array<automation_status>;
|
|
74573
|
-
}
|
|
74574
|
-
|
|
74575
73555
|
/**
|
|
74576
73556
|
* columns and relationships of "automation_template"
|
|
74577
73557
|
*/
|
|
@@ -77185,7 +76165,7 @@ export interface connection {
|
|
|
77185
76165
|
*/
|
|
77186
76166
|
where?: Maybe<setting_bool_exp>;
|
|
77187
76167
|
}) => setting_aggregate;
|
|
77188
|
-
status?: Maybe<ScalarsEnums["
|
|
76168
|
+
status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
77189
76169
|
/**
|
|
77190
76170
|
* An array relationship
|
|
77191
76171
|
*/
|
|
@@ -77349,7 +76329,6 @@ export interface connection_max_fields {
|
|
|
77349
76329
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77350
76330
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77351
76331
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77352
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
77353
76332
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77354
76333
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
77355
76334
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -77370,7 +76349,6 @@ export interface connection_min_fields {
|
|
|
77370
76349
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77371
76350
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77372
76351
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77373
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
77374
76352
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77375
76353
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
77376
76354
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -77393,67 +76371,6 @@ export interface connection_mutation_response {
|
|
|
77393
76371
|
returning: Array<connection>;
|
|
77394
76372
|
}
|
|
77395
76373
|
|
|
77396
|
-
/**
|
|
77397
|
-
* columns and relationships of "connection_status_temporary"
|
|
77398
|
-
*/
|
|
77399
|
-
export interface connection_status_temporary {
|
|
77400
|
-
__typename?: "connection_status_temporary";
|
|
77401
|
-
name: ScalarsEnums["String"];
|
|
77402
|
-
}
|
|
77403
|
-
|
|
77404
|
-
/**
|
|
77405
|
-
* aggregated selection of "connection_status_temporary"
|
|
77406
|
-
*/
|
|
77407
|
-
export interface connection_status_temporary_aggregate {
|
|
77408
|
-
__typename?: "connection_status_temporary_aggregate";
|
|
77409
|
-
aggregate?: Maybe<connection_status_temporary_aggregate_fields>;
|
|
77410
|
-
nodes: Array<connection_status_temporary>;
|
|
77411
|
-
}
|
|
77412
|
-
|
|
77413
|
-
/**
|
|
77414
|
-
* aggregate fields of "connection_status_temporary"
|
|
77415
|
-
*/
|
|
77416
|
-
export interface connection_status_temporary_aggregate_fields {
|
|
77417
|
-
__typename?: "connection_status_temporary_aggregate_fields";
|
|
77418
|
-
count: (args?: {
|
|
77419
|
-
columns?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
77420
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
77421
|
-
}) => ScalarsEnums["Int"];
|
|
77422
|
-
max?: Maybe<connection_status_temporary_max_fields>;
|
|
77423
|
-
min?: Maybe<connection_status_temporary_min_fields>;
|
|
77424
|
-
}
|
|
77425
|
-
|
|
77426
|
-
/**
|
|
77427
|
-
* aggregate max on columns
|
|
77428
|
-
*/
|
|
77429
|
-
export interface connection_status_temporary_max_fields {
|
|
77430
|
-
__typename?: "connection_status_temporary_max_fields";
|
|
77431
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
77432
|
-
}
|
|
77433
|
-
|
|
77434
|
-
/**
|
|
77435
|
-
* aggregate min on columns
|
|
77436
|
-
*/
|
|
77437
|
-
export interface connection_status_temporary_min_fields {
|
|
77438
|
-
__typename?: "connection_status_temporary_min_fields";
|
|
77439
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
77440
|
-
}
|
|
77441
|
-
|
|
77442
|
-
/**
|
|
77443
|
-
* response of any mutation on the table "connection_status_temporary"
|
|
77444
|
-
*/
|
|
77445
|
-
export interface connection_status_temporary_mutation_response {
|
|
77446
|
-
__typename?: "connection_status_temporary_mutation_response";
|
|
77447
|
-
/**
|
|
77448
|
-
* number of rows affected by the mutation
|
|
77449
|
-
*/
|
|
77450
|
-
affected_rows: ScalarsEnums["Int"];
|
|
77451
|
-
/**
|
|
77452
|
-
* data from the rows affected by the mutation
|
|
77453
|
-
*/
|
|
77454
|
-
returning: Array<connection_status_temporary>;
|
|
77455
|
-
}
|
|
77456
|
-
|
|
77457
76374
|
/**
|
|
77458
76375
|
* aggregate stddev on columns
|
|
77459
76376
|
*/
|
|
@@ -78113,6 +77030,7 @@ export interface core_change_source_link_mutation_response {
|
|
|
78113
77030
|
export interface core_flow {
|
|
78114
77031
|
__typename?: "core_flow";
|
|
78115
77032
|
app_id: ScalarsEnums["String"];
|
|
77033
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78116
77034
|
id: ScalarsEnums["uuid"];
|
|
78117
77035
|
mapping_schema: (args?: {
|
|
78118
77036
|
/**
|
|
@@ -78246,6 +77164,7 @@ export interface core_flow_mapping_mutation_response {
|
|
|
78246
77164
|
export interface core_flow_max_fields {
|
|
78247
77165
|
__typename?: "core_flow_max_fields";
|
|
78248
77166
|
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77167
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78249
77168
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78250
77169
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
78251
77170
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
@@ -78257,6 +77176,7 @@ export interface core_flow_max_fields {
|
|
|
78257
77176
|
export interface core_flow_min_fields {
|
|
78258
77177
|
__typename?: "core_flow_min_fields";
|
|
78259
77178
|
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77179
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78260
77180
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78261
77181
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
78262
77182
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
@@ -79994,7 +78914,7 @@ export interface listing {
|
|
|
79994
78914
|
address_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
79995
78915
|
bedrooms?: Maybe<ScalarsEnums["Int"]>;
|
|
79996
78916
|
beds?: Maybe<ScalarsEnums["Int"]>;
|
|
79997
|
-
calculatedStatus?: Maybe<ScalarsEnums["
|
|
78917
|
+
calculatedStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
79998
78918
|
calculatedTitle?: Maybe<ScalarsEnums["String"]>;
|
|
79999
78919
|
calculated_title?: Maybe<ScalarsEnums["String"]>;
|
|
80000
78920
|
centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -80485,7 +79405,7 @@ export interface listing {
|
|
|
80485
79405
|
*/
|
|
80486
79406
|
path?: Maybe<Scalars["String"]>;
|
|
80487
79407
|
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
80488
|
-
pmsStatus?: Maybe<ScalarsEnums["
|
|
79408
|
+
pmsStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
80489
79409
|
/**
|
|
80490
79410
|
* An array relationship
|
|
80491
79411
|
*/
|
|
@@ -80741,7 +79661,7 @@ export interface listing {
|
|
|
80741
79661
|
*/
|
|
80742
79662
|
source?: Maybe<source>;
|
|
80743
79663
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
80744
|
-
status?: Maybe<ScalarsEnums["
|
|
79664
|
+
status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
80745
79665
|
/**
|
|
80746
79666
|
* An object relationship
|
|
80747
79667
|
*/
|
|
@@ -81955,7 +80875,6 @@ export interface listing_max_fields {
|
|
|
81955
80875
|
address_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
81956
80876
|
bedrooms?: Maybe<ScalarsEnums["Int"]>;
|
|
81957
80877
|
beds?: Maybe<ScalarsEnums["Int"]>;
|
|
81958
|
-
calculatedStatus?: Maybe<ScalarsEnums["String"]>;
|
|
81959
80878
|
calculatedTitle?: Maybe<ScalarsEnums["String"]>;
|
|
81960
80879
|
calculated_title?: Maybe<ScalarsEnums["String"]>;
|
|
81961
80880
|
centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -81990,7 +80909,6 @@ export interface listing_min_fields {
|
|
|
81990
80909
|
address_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
81991
80910
|
bedrooms?: Maybe<ScalarsEnums["Int"]>;
|
|
81992
80911
|
beds?: Maybe<ScalarsEnums["Int"]>;
|
|
81993
|
-
calculatedStatus?: Maybe<ScalarsEnums["String"]>;
|
|
81994
80912
|
calculatedTitle?: Maybe<ScalarsEnums["String"]>;
|
|
81995
80913
|
calculated_title?: Maybe<ScalarsEnums["String"]>;
|
|
81996
80914
|
centExpenseReserve?: Maybe<ScalarsEnums["Int"]>;
|
|
@@ -82403,128 +81321,6 @@ export interface listing_owner_variance_fields {
|
|
|
82403
81321
|
split?: Maybe<ScalarsEnums["Float"]>;
|
|
82404
81322
|
}
|
|
82405
81323
|
|
|
82406
|
-
/**
|
|
82407
|
-
* columns and relationships of "listing_pms_status"
|
|
82408
|
-
*/
|
|
82409
|
-
export interface listing_pms_status {
|
|
82410
|
-
__typename?: "listing_pms_status";
|
|
82411
|
-
name: ScalarsEnums["String"];
|
|
82412
|
-
}
|
|
82413
|
-
|
|
82414
|
-
/**
|
|
82415
|
-
* aggregated selection of "listing_pms_status"
|
|
82416
|
-
*/
|
|
82417
|
-
export interface listing_pms_status_aggregate {
|
|
82418
|
-
__typename?: "listing_pms_status_aggregate";
|
|
82419
|
-
aggregate?: Maybe<listing_pms_status_aggregate_fields>;
|
|
82420
|
-
nodes: Array<listing_pms_status>;
|
|
82421
|
-
}
|
|
82422
|
-
|
|
82423
|
-
/**
|
|
82424
|
-
* aggregate fields of "listing_pms_status"
|
|
82425
|
-
*/
|
|
82426
|
-
export interface listing_pms_status_aggregate_fields {
|
|
82427
|
-
__typename?: "listing_pms_status_aggregate_fields";
|
|
82428
|
-
count: (args?: {
|
|
82429
|
-
columns?: Maybe<Array<listing_pms_status_select_column>>;
|
|
82430
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
82431
|
-
}) => ScalarsEnums["Int"];
|
|
82432
|
-
max?: Maybe<listing_pms_status_max_fields>;
|
|
82433
|
-
min?: Maybe<listing_pms_status_min_fields>;
|
|
82434
|
-
}
|
|
82435
|
-
|
|
82436
|
-
/**
|
|
82437
|
-
* aggregate max on columns
|
|
82438
|
-
*/
|
|
82439
|
-
export interface listing_pms_status_max_fields {
|
|
82440
|
-
__typename?: "listing_pms_status_max_fields";
|
|
82441
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
82442
|
-
}
|
|
82443
|
-
|
|
82444
|
-
/**
|
|
82445
|
-
* aggregate min on columns
|
|
82446
|
-
*/
|
|
82447
|
-
export interface listing_pms_status_min_fields {
|
|
82448
|
-
__typename?: "listing_pms_status_min_fields";
|
|
82449
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
82450
|
-
}
|
|
82451
|
-
|
|
82452
|
-
/**
|
|
82453
|
-
* response of any mutation on the table "listing_pms_status"
|
|
82454
|
-
*/
|
|
82455
|
-
export interface listing_pms_status_mutation_response {
|
|
82456
|
-
__typename?: "listing_pms_status_mutation_response";
|
|
82457
|
-
/**
|
|
82458
|
-
* number of rows affected by the mutation
|
|
82459
|
-
*/
|
|
82460
|
-
affected_rows: ScalarsEnums["Int"];
|
|
82461
|
-
/**
|
|
82462
|
-
* data from the rows affected by the mutation
|
|
82463
|
-
*/
|
|
82464
|
-
returning: Array<listing_pms_status>;
|
|
82465
|
-
}
|
|
82466
|
-
|
|
82467
|
-
/**
|
|
82468
|
-
* columns and relationships of "listing_status"
|
|
82469
|
-
*/
|
|
82470
|
-
export interface listing_status {
|
|
82471
|
-
__typename?: "listing_status";
|
|
82472
|
-
name: ScalarsEnums["String"];
|
|
82473
|
-
}
|
|
82474
|
-
|
|
82475
|
-
/**
|
|
82476
|
-
* aggregated selection of "listing_status"
|
|
82477
|
-
*/
|
|
82478
|
-
export interface listing_status_aggregate {
|
|
82479
|
-
__typename?: "listing_status_aggregate";
|
|
82480
|
-
aggregate?: Maybe<listing_status_aggregate_fields>;
|
|
82481
|
-
nodes: Array<listing_status>;
|
|
82482
|
-
}
|
|
82483
|
-
|
|
82484
|
-
/**
|
|
82485
|
-
* aggregate fields of "listing_status"
|
|
82486
|
-
*/
|
|
82487
|
-
export interface listing_status_aggregate_fields {
|
|
82488
|
-
__typename?: "listing_status_aggregate_fields";
|
|
82489
|
-
count: (args?: {
|
|
82490
|
-
columns?: Maybe<Array<listing_status_select_column>>;
|
|
82491
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
82492
|
-
}) => ScalarsEnums["Int"];
|
|
82493
|
-
max?: Maybe<listing_status_max_fields>;
|
|
82494
|
-
min?: Maybe<listing_status_min_fields>;
|
|
82495
|
-
}
|
|
82496
|
-
|
|
82497
|
-
/**
|
|
82498
|
-
* aggregate max on columns
|
|
82499
|
-
*/
|
|
82500
|
-
export interface listing_status_max_fields {
|
|
82501
|
-
__typename?: "listing_status_max_fields";
|
|
82502
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
82503
|
-
}
|
|
82504
|
-
|
|
82505
|
-
/**
|
|
82506
|
-
* aggregate min on columns
|
|
82507
|
-
*/
|
|
82508
|
-
export interface listing_status_min_fields {
|
|
82509
|
-
__typename?: "listing_status_min_fields";
|
|
82510
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
82511
|
-
}
|
|
82512
|
-
|
|
82513
|
-
/**
|
|
82514
|
-
* response of any mutation on the table "listing_status"
|
|
82515
|
-
*/
|
|
82516
|
-
export interface listing_status_mutation_response {
|
|
82517
|
-
__typename?: "listing_status_mutation_response";
|
|
82518
|
-
/**
|
|
82519
|
-
* number of rows affected by the mutation
|
|
82520
|
-
*/
|
|
82521
|
-
affected_rows: ScalarsEnums["Int"];
|
|
82522
|
-
/**
|
|
82523
|
-
* data from the rows affected by the mutation
|
|
82524
|
-
*/
|
|
82525
|
-
returning: Array<listing_status>;
|
|
82526
|
-
}
|
|
82527
|
-
|
|
82528
81324
|
/**
|
|
82529
81325
|
* aggregate stddev on columns
|
|
82530
81326
|
*/
|
|
@@ -83396,24 +82192,12 @@ export interface Mutation {
|
|
|
83396
82192
|
where: address_bool_exp;
|
|
83397
82193
|
}) => Maybe<address_mutation_response>;
|
|
83398
82194
|
delete_address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
|
|
83399
|
-
delete_automation_status: (args: {
|
|
83400
|
-
where: automation_status_bool_exp;
|
|
83401
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
83402
|
-
delete_automation_status_by_pk: (args: {
|
|
83403
|
-
name: Scalars["String"];
|
|
83404
|
-
}) => Maybe<automation_status>;
|
|
83405
82195
|
delete_billing_payment_method_type: (args: {
|
|
83406
82196
|
where: billing_payment_method_type_bool_exp;
|
|
83407
82197
|
}) => Maybe<billing_payment_method_type_mutation_response>;
|
|
83408
82198
|
delete_billing_payment_method_type_by_pk: (args: {
|
|
83409
82199
|
name: Scalars["String"];
|
|
83410
82200
|
}) => Maybe<billing_payment_method_type>;
|
|
83411
|
-
delete_connection_status_temporary: (args: {
|
|
83412
|
-
where: connection_status_temporary_bool_exp;
|
|
83413
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
83414
|
-
delete_connection_status_temporary_by_pk: (args: {
|
|
83415
|
-
name: Scalars["String"];
|
|
83416
|
-
}) => Maybe<connection_status_temporary>;
|
|
83417
82201
|
delete_core_change_source_link: (args: {
|
|
83418
82202
|
where: core_change_source_link_bool_exp;
|
|
83419
82203
|
}) => Maybe<core_change_source_link_mutation_response>;
|
|
@@ -83458,18 +82242,6 @@ export interface Mutation {
|
|
|
83458
82242
|
delete_listing_owner_role_by_pk: (args: {
|
|
83459
82243
|
name: Scalars["String"];
|
|
83460
82244
|
}) => Maybe<listing_owner_role>;
|
|
83461
|
-
delete_listing_pms_status: (args: {
|
|
83462
|
-
where: listing_pms_status_bool_exp;
|
|
83463
|
-
}) => Maybe<listing_pms_status_mutation_response>;
|
|
83464
|
-
delete_listing_pms_status_by_pk: (args: {
|
|
83465
|
-
name: Scalars["String"];
|
|
83466
|
-
}) => Maybe<listing_pms_status>;
|
|
83467
|
-
delete_listing_status: (args: {
|
|
83468
|
-
where: listing_status_bool_exp;
|
|
83469
|
-
}) => Maybe<listing_status_mutation_response>;
|
|
83470
|
-
delete_listing_status_by_pk: (args: {
|
|
83471
|
-
name: Scalars["String"];
|
|
83472
|
-
}) => Maybe<listing_status>;
|
|
83473
82245
|
delete_owner_pms_status: (args: {
|
|
83474
82246
|
where: owner_pms_status_bool_exp;
|
|
83475
82247
|
}) => Maybe<owner_pms_status_mutation_response>;
|
|
@@ -84354,14 +83126,6 @@ export interface Mutation {
|
|
|
84354
83126
|
object: address_insert_input;
|
|
84355
83127
|
on_conflict?: Maybe<address_on_conflict>;
|
|
84356
83128
|
}) => Maybe<address>;
|
|
84357
|
-
insert_automation_status: (args: {
|
|
84358
|
-
objects: Array<automation_status_insert_input>;
|
|
84359
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
84360
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
84361
|
-
insert_automation_status_one: (args: {
|
|
84362
|
-
object: automation_status_insert_input;
|
|
84363
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
84364
|
-
}) => Maybe<automation_status>;
|
|
84365
83129
|
insert_billing_payment_method_type: (args: {
|
|
84366
83130
|
objects: Array<billing_payment_method_type_insert_input>;
|
|
84367
83131
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
@@ -84370,14 +83134,6 @@ export interface Mutation {
|
|
|
84370
83134
|
object: billing_payment_method_type_insert_input;
|
|
84371
83135
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
84372
83136
|
}) => Maybe<billing_payment_method_type>;
|
|
84373
|
-
insert_connection_status_temporary: (args: {
|
|
84374
|
-
objects: Array<connection_status_temporary_insert_input>;
|
|
84375
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
84376
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
84377
|
-
insert_connection_status_temporary_one: (args: {
|
|
84378
|
-
object: connection_status_temporary_insert_input;
|
|
84379
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
84380
|
-
}) => Maybe<connection_status_temporary>;
|
|
84381
83137
|
insert_core_change_source_link: (args: {
|
|
84382
83138
|
objects: Array<core_change_source_link_insert_input>;
|
|
84383
83139
|
on_conflict?: Maybe<core_change_source_link_on_conflict>;
|
|
@@ -84442,22 +83198,6 @@ export interface Mutation {
|
|
|
84442
83198
|
object: listing_owner_role_insert_input;
|
|
84443
83199
|
on_conflict?: Maybe<listing_owner_role_on_conflict>;
|
|
84444
83200
|
}) => Maybe<listing_owner_role>;
|
|
84445
|
-
insert_listing_pms_status: (args: {
|
|
84446
|
-
objects: Array<listing_pms_status_insert_input>;
|
|
84447
|
-
on_conflict?: Maybe<listing_pms_status_on_conflict>;
|
|
84448
|
-
}) => Maybe<listing_pms_status_mutation_response>;
|
|
84449
|
-
insert_listing_pms_status_one: (args: {
|
|
84450
|
-
object: listing_pms_status_insert_input;
|
|
84451
|
-
on_conflict?: Maybe<listing_pms_status_on_conflict>;
|
|
84452
|
-
}) => Maybe<listing_pms_status>;
|
|
84453
|
-
insert_listing_status: (args: {
|
|
84454
|
-
objects: Array<listing_status_insert_input>;
|
|
84455
|
-
on_conflict?: Maybe<listing_status_on_conflict>;
|
|
84456
|
-
}) => Maybe<listing_status_mutation_response>;
|
|
84457
|
-
insert_listing_status_one: (args: {
|
|
84458
|
-
object: listing_status_insert_input;
|
|
84459
|
-
on_conflict?: Maybe<listing_status_on_conflict>;
|
|
84460
|
-
}) => Maybe<listing_status>;
|
|
84461
83201
|
insert_owner_pms_status: (args: {
|
|
84462
83202
|
objects: Array<owner_pms_status_insert_input>;
|
|
84463
83203
|
on_conflict?: Maybe<owner_pms_status_on_conflict>;
|
|
@@ -85989,17 +84729,6 @@ export interface Mutation {
|
|
|
85989
84729
|
update_automation_many: (args: {
|
|
85990
84730
|
updates: Array<automation_updates>;
|
|
85991
84731
|
}) => Maybe<Array<Maybe<automation_mutation_response>>>;
|
|
85992
|
-
update_automation_status: (args: {
|
|
85993
|
-
_set?: Maybe<automation_status_set_input>;
|
|
85994
|
-
where: automation_status_bool_exp;
|
|
85995
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
85996
|
-
update_automation_status_by_pk: (args: {
|
|
85997
|
-
_set?: Maybe<automation_status_set_input>;
|
|
85998
|
-
pk_columns: automation_status_pk_columns_input;
|
|
85999
|
-
}) => Maybe<automation_status>;
|
|
86000
|
-
update_automation_status_many: (args: {
|
|
86001
|
-
updates: Array<automation_status_updates>;
|
|
86002
|
-
}) => Maybe<Array<Maybe<automation_status_mutation_response>>>;
|
|
86003
84732
|
update_automation_template_many: (args: {
|
|
86004
84733
|
updates: Array<automation_template_updates>;
|
|
86005
84734
|
}) => Maybe<Array<Maybe<automation_template_mutation_response>>>;
|
|
@@ -86017,17 +84746,6 @@ export interface Mutation {
|
|
|
86017
84746
|
update_connection_many: (args: {
|
|
86018
84747
|
updates: Array<connection_updates>;
|
|
86019
84748
|
}) => Maybe<Array<Maybe<connection_mutation_response>>>;
|
|
86020
|
-
update_connection_status_temporary: (args: {
|
|
86021
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
86022
|
-
where: connection_status_temporary_bool_exp;
|
|
86023
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
86024
|
-
update_connection_status_temporary_by_pk: (args: {
|
|
86025
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
86026
|
-
pk_columns: connection_status_temporary_pk_columns_input;
|
|
86027
|
-
}) => Maybe<connection_status_temporary>;
|
|
86028
|
-
update_connection_status_temporary_many: (args: {
|
|
86029
|
-
updates: Array<connection_status_temporary_updates>;
|
|
86030
|
-
}) => Maybe<Array<Maybe<connection_status_temporary_mutation_response>>>;
|
|
86031
84749
|
update_core_change_source_link: (args: {
|
|
86032
84750
|
_set?: Maybe<core_change_source_link_set_input>;
|
|
86033
84751
|
where: core_change_source_link_bool_exp;
|
|
@@ -86158,28 +84876,6 @@ export interface Mutation {
|
|
|
86158
84876
|
update_listing_owner_role_many: (args: {
|
|
86159
84877
|
updates: Array<listing_owner_role_updates>;
|
|
86160
84878
|
}) => Maybe<Array<Maybe<listing_owner_role_mutation_response>>>;
|
|
86161
|
-
update_listing_pms_status: (args: {
|
|
86162
|
-
_set?: Maybe<listing_pms_status_set_input>;
|
|
86163
|
-
where: listing_pms_status_bool_exp;
|
|
86164
|
-
}) => Maybe<listing_pms_status_mutation_response>;
|
|
86165
|
-
update_listing_pms_status_by_pk: (args: {
|
|
86166
|
-
_set?: Maybe<listing_pms_status_set_input>;
|
|
86167
|
-
pk_columns: listing_pms_status_pk_columns_input;
|
|
86168
|
-
}) => Maybe<listing_pms_status>;
|
|
86169
|
-
update_listing_pms_status_many: (args: {
|
|
86170
|
-
updates: Array<listing_pms_status_updates>;
|
|
86171
|
-
}) => Maybe<Array<Maybe<listing_pms_status_mutation_response>>>;
|
|
86172
|
-
update_listing_status: (args: {
|
|
86173
|
-
_set?: Maybe<listing_status_set_input>;
|
|
86174
|
-
where: listing_status_bool_exp;
|
|
86175
|
-
}) => Maybe<listing_status_mutation_response>;
|
|
86176
|
-
update_listing_status_by_pk: (args: {
|
|
86177
|
-
_set?: Maybe<listing_status_set_input>;
|
|
86178
|
-
pk_columns: listing_status_pk_columns_input;
|
|
86179
|
-
}) => Maybe<listing_status>;
|
|
86180
|
-
update_listing_status_many: (args: {
|
|
86181
|
-
updates: Array<listing_status_updates>;
|
|
86182
|
-
}) => Maybe<Array<Maybe<listing_status_mutation_response>>>;
|
|
86183
84879
|
update_owner_pms_status: (args: {
|
|
86184
84880
|
_set?: Maybe<owner_pms_status_set_input>;
|
|
86185
84881
|
where: owner_pms_status_bool_exp;
|
|
@@ -91106,23 +89802,6 @@ export interface Query {
|
|
|
91106
89802
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
91107
89803
|
where?: Maybe<automation_template_bool_exp>;
|
|
91108
89804
|
}) => Array<automation_template>;
|
|
91109
|
-
automation_status: (args?: {
|
|
91110
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
91111
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91112
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91113
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
91114
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
91115
|
-
}) => Array<automation_status>;
|
|
91116
|
-
automation_status_aggregate: (args?: {
|
|
91117
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
91118
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91119
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91120
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
91121
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
91122
|
-
}) => automation_status_aggregate;
|
|
91123
|
-
automation_status_by_pk: (args: {
|
|
91124
|
-
name: Scalars["String"];
|
|
91125
|
-
}) => Maybe<automation_status>;
|
|
91126
89805
|
automations: (args?: {
|
|
91127
89806
|
distinct_on?: Maybe<Array<automation_select_column>>;
|
|
91128
89807
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -91358,23 +90037,6 @@ export interface Query {
|
|
|
91358
90037
|
where?: Maybe<connection_bool_exp>;
|
|
91359
90038
|
}) => connection_aggregate;
|
|
91360
90039
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
91361
|
-
connection_status_temporary: (args?: {
|
|
91362
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
91363
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91364
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91365
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
91366
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
91367
|
-
}) => Array<connection_status_temporary>;
|
|
91368
|
-
connection_status_temporary_aggregate: (args?: {
|
|
91369
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
91370
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91371
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91372
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
91373
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
91374
|
-
}) => connection_status_temporary_aggregate;
|
|
91375
|
-
connection_status_temporary_by_pk: (args: {
|
|
91376
|
-
name: Scalars["String"];
|
|
91377
|
-
}) => Maybe<connection_status_temporary>;
|
|
91378
90040
|
contact: (args: { id: Scalars["uuid"] }) => Maybe<contact>;
|
|
91379
90041
|
contactAggregate: (args?: {
|
|
91380
90042
|
distinct_on?: Maybe<Array<contact_select_column>>;
|
|
@@ -91983,40 +90645,6 @@ export interface Query {
|
|
|
91983
90645
|
listing_owner_role_by_pk: (args: {
|
|
91984
90646
|
name: Scalars["String"];
|
|
91985
90647
|
}) => Maybe<listing_owner_role>;
|
|
91986
|
-
listing_pms_status: (args?: {
|
|
91987
|
-
distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
|
|
91988
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91989
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91990
|
-
order_by?: Maybe<Array<listing_pms_status_order_by>>;
|
|
91991
|
-
where?: Maybe<listing_pms_status_bool_exp>;
|
|
91992
|
-
}) => Array<listing_pms_status>;
|
|
91993
|
-
listing_pms_status_aggregate: (args?: {
|
|
91994
|
-
distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
|
|
91995
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91996
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91997
|
-
order_by?: Maybe<Array<listing_pms_status_order_by>>;
|
|
91998
|
-
where?: Maybe<listing_pms_status_bool_exp>;
|
|
91999
|
-
}) => listing_pms_status_aggregate;
|
|
92000
|
-
listing_pms_status_by_pk: (args: {
|
|
92001
|
-
name: Scalars["String"];
|
|
92002
|
-
}) => Maybe<listing_pms_status>;
|
|
92003
|
-
listing_status: (args?: {
|
|
92004
|
-
distinct_on?: Maybe<Array<listing_status_select_column>>;
|
|
92005
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92006
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92007
|
-
order_by?: Maybe<Array<listing_status_order_by>>;
|
|
92008
|
-
where?: Maybe<listing_status_bool_exp>;
|
|
92009
|
-
}) => Array<listing_status>;
|
|
92010
|
-
listing_status_aggregate: (args?: {
|
|
92011
|
-
distinct_on?: Maybe<Array<listing_status_select_column>>;
|
|
92012
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92013
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92014
|
-
order_by?: Maybe<Array<listing_status_order_by>>;
|
|
92015
|
-
where?: Maybe<listing_status_bool_exp>;
|
|
92016
|
-
}) => listing_status_aggregate;
|
|
92017
|
-
listing_status_by_pk: (args: {
|
|
92018
|
-
name: Scalars["String"];
|
|
92019
|
-
}) => Maybe<listing_status>;
|
|
92020
90648
|
listings: (args?: {
|
|
92021
90649
|
distinct_on?: Maybe<Array<listing_select_column>>;
|
|
92022
90650
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -97931,28 +96559,6 @@ export interface Subscription {
|
|
|
97931
96559
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
97932
96560
|
where?: Maybe<automation_template_bool_exp>;
|
|
97933
96561
|
}) => Array<automation_template>;
|
|
97934
|
-
automation_status: (args?: {
|
|
97935
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
97936
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
97937
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
97938
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
97939
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97940
|
-
}) => Array<automation_status>;
|
|
97941
|
-
automation_status_aggregate: (args?: {
|
|
97942
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
97943
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
97944
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
97945
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
97946
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97947
|
-
}) => automation_status_aggregate;
|
|
97948
|
-
automation_status_by_pk: (args: {
|
|
97949
|
-
name: Scalars["String"];
|
|
97950
|
-
}) => Maybe<automation_status>;
|
|
97951
|
-
automation_status_stream: (args: {
|
|
97952
|
-
batch_size: Scalars["Int"];
|
|
97953
|
-
cursor: Array<Maybe<automation_status_stream_cursor_input>>;
|
|
97954
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97955
|
-
}) => Array<automation_status>;
|
|
97956
96562
|
automation_stream: (args: {
|
|
97957
96563
|
batch_size: Scalars["Int"];
|
|
97958
96564
|
cursor: Array<Maybe<automation_stream_cursor_input>>;
|
|
@@ -98258,28 +96864,6 @@ export interface Subscription {
|
|
|
98258
96864
|
where?: Maybe<connection_bool_exp>;
|
|
98259
96865
|
}) => connection_aggregate;
|
|
98260
96866
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
98261
|
-
connection_status_temporary: (args?: {
|
|
98262
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
98263
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98264
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98265
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
98266
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98267
|
-
}) => Array<connection_status_temporary>;
|
|
98268
|
-
connection_status_temporary_aggregate: (args?: {
|
|
98269
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
98270
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98271
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98272
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
98273
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98274
|
-
}) => connection_status_temporary_aggregate;
|
|
98275
|
-
connection_status_temporary_by_pk: (args: {
|
|
98276
|
-
name: Scalars["String"];
|
|
98277
|
-
}) => Maybe<connection_status_temporary>;
|
|
98278
|
-
connection_status_temporary_stream: (args: {
|
|
98279
|
-
batch_size: Scalars["Int"];
|
|
98280
|
-
cursor: Array<Maybe<connection_status_temporary_stream_cursor_input>>;
|
|
98281
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98282
|
-
}) => Array<connection_status_temporary>;
|
|
98283
96867
|
connection_stream: (args: {
|
|
98284
96868
|
batch_size: Scalars["Int"];
|
|
98285
96869
|
cursor: Array<Maybe<connection_stream_cursor_input>>;
|
|
@@ -99069,50 +97653,6 @@ export interface Subscription {
|
|
|
99069
97653
|
cursor: Array<Maybe<listing_owner_stream_cursor_input>>;
|
|
99070
97654
|
where?: Maybe<listing_owner_bool_exp>;
|
|
99071
97655
|
}) => Array<listing_owner>;
|
|
99072
|
-
listing_pms_status: (args?: {
|
|
99073
|
-
distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
|
|
99074
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99075
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99076
|
-
order_by?: Maybe<Array<listing_pms_status_order_by>>;
|
|
99077
|
-
where?: Maybe<listing_pms_status_bool_exp>;
|
|
99078
|
-
}) => Array<listing_pms_status>;
|
|
99079
|
-
listing_pms_status_aggregate: (args?: {
|
|
99080
|
-
distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
|
|
99081
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99082
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99083
|
-
order_by?: Maybe<Array<listing_pms_status_order_by>>;
|
|
99084
|
-
where?: Maybe<listing_pms_status_bool_exp>;
|
|
99085
|
-
}) => listing_pms_status_aggregate;
|
|
99086
|
-
listing_pms_status_by_pk: (args: {
|
|
99087
|
-
name: Scalars["String"];
|
|
99088
|
-
}) => Maybe<listing_pms_status>;
|
|
99089
|
-
listing_pms_status_stream: (args: {
|
|
99090
|
-
batch_size: Scalars["Int"];
|
|
99091
|
-
cursor: Array<Maybe<listing_pms_status_stream_cursor_input>>;
|
|
99092
|
-
where?: Maybe<listing_pms_status_bool_exp>;
|
|
99093
|
-
}) => Array<listing_pms_status>;
|
|
99094
|
-
listing_status: (args?: {
|
|
99095
|
-
distinct_on?: Maybe<Array<listing_status_select_column>>;
|
|
99096
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99097
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99098
|
-
order_by?: Maybe<Array<listing_status_order_by>>;
|
|
99099
|
-
where?: Maybe<listing_status_bool_exp>;
|
|
99100
|
-
}) => Array<listing_status>;
|
|
99101
|
-
listing_status_aggregate: (args?: {
|
|
99102
|
-
distinct_on?: Maybe<Array<listing_status_select_column>>;
|
|
99103
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99104
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99105
|
-
order_by?: Maybe<Array<listing_status_order_by>>;
|
|
99106
|
-
where?: Maybe<listing_status_bool_exp>;
|
|
99107
|
-
}) => listing_status_aggregate;
|
|
99108
|
-
listing_status_by_pk: (args: {
|
|
99109
|
-
name: Scalars["String"];
|
|
99110
|
-
}) => Maybe<listing_status>;
|
|
99111
|
-
listing_status_stream: (args: {
|
|
99112
|
-
batch_size: Scalars["Int"];
|
|
99113
|
-
cursor: Array<Maybe<listing_status_stream_cursor_input>>;
|
|
99114
|
-
where?: Maybe<listing_status_bool_exp>;
|
|
99115
|
-
}) => Array<listing_status>;
|
|
99116
97656
|
listing_stream: (args: {
|
|
99117
97657
|
batch_size: Scalars["Int"];
|
|
99118
97658
|
cursor: Array<Maybe<listing_stream_cursor_input>>;
|
|
@@ -106830,12 +105370,6 @@ export interface SchemaObjectTypes {
|
|
|
106830
105370
|
automation_max_fields: automation_max_fields;
|
|
106831
105371
|
automation_min_fields: automation_min_fields;
|
|
106832
105372
|
automation_mutation_response: automation_mutation_response;
|
|
106833
|
-
automation_status: automation_status;
|
|
106834
|
-
automation_status_aggregate: automation_status_aggregate;
|
|
106835
|
-
automation_status_aggregate_fields: automation_status_aggregate_fields;
|
|
106836
|
-
automation_status_max_fields: automation_status_max_fields;
|
|
106837
|
-
automation_status_min_fields: automation_status_min_fields;
|
|
106838
|
-
automation_status_mutation_response: automation_status_mutation_response;
|
|
106839
105373
|
automation_template: automation_template;
|
|
106840
105374
|
automation_template_aggregate: automation_template_aggregate;
|
|
106841
105375
|
automation_template_aggregate_fields: automation_template_aggregate_fields;
|
|
@@ -106944,12 +105478,6 @@ export interface SchemaObjectTypes {
|
|
|
106944
105478
|
connection_max_fields: connection_max_fields;
|
|
106945
105479
|
connection_min_fields: connection_min_fields;
|
|
106946
105480
|
connection_mutation_response: connection_mutation_response;
|
|
106947
|
-
connection_status_temporary: connection_status_temporary;
|
|
106948
|
-
connection_status_temporary_aggregate: connection_status_temporary_aggregate;
|
|
106949
|
-
connection_status_temporary_aggregate_fields: connection_status_temporary_aggregate_fields;
|
|
106950
|
-
connection_status_temporary_max_fields: connection_status_temporary_max_fields;
|
|
106951
|
-
connection_status_temporary_min_fields: connection_status_temporary_min_fields;
|
|
106952
|
-
connection_status_temporary_mutation_response: connection_status_temporary_mutation_response;
|
|
106953
105481
|
connection_stddev_fields: connection_stddev_fields;
|
|
106954
105482
|
connection_stddev_pop_fields: connection_stddev_pop_fields;
|
|
106955
105483
|
connection_stddev_samp_fields: connection_stddev_samp_fields;
|
|
@@ -107179,18 +105707,6 @@ export interface SchemaObjectTypes {
|
|
|
107179
105707
|
listing_owner_var_pop_fields: listing_owner_var_pop_fields;
|
|
107180
105708
|
listing_owner_var_samp_fields: listing_owner_var_samp_fields;
|
|
107181
105709
|
listing_owner_variance_fields: listing_owner_variance_fields;
|
|
107182
|
-
listing_pms_status: listing_pms_status;
|
|
107183
|
-
listing_pms_status_aggregate: listing_pms_status_aggregate;
|
|
107184
|
-
listing_pms_status_aggregate_fields: listing_pms_status_aggregate_fields;
|
|
107185
|
-
listing_pms_status_max_fields: listing_pms_status_max_fields;
|
|
107186
|
-
listing_pms_status_min_fields: listing_pms_status_min_fields;
|
|
107187
|
-
listing_pms_status_mutation_response: listing_pms_status_mutation_response;
|
|
107188
|
-
listing_status: listing_status;
|
|
107189
|
-
listing_status_aggregate: listing_status_aggregate;
|
|
107190
|
-
listing_status_aggregate_fields: listing_status_aggregate_fields;
|
|
107191
|
-
listing_status_max_fields: listing_status_max_fields;
|
|
107192
|
-
listing_status_min_fields: listing_status_min_fields;
|
|
107193
|
-
listing_status_mutation_response: listing_status_mutation_response;
|
|
107194
105710
|
listing_stddev_fields: listing_stddev_fields;
|
|
107195
105711
|
listing_stddev_pop_fields: listing_stddev_pop_fields;
|
|
107196
105712
|
listing_stddev_samp_fields: listing_stddev_samp_fields;
|
|
@@ -107920,12 +106436,6 @@ export type SchemaObjectTypesNames =
|
|
|
107920
106436
|
| "automation_max_fields"
|
|
107921
106437
|
| "automation_min_fields"
|
|
107922
106438
|
| "automation_mutation_response"
|
|
107923
|
-
| "automation_status"
|
|
107924
|
-
| "automation_status_aggregate"
|
|
107925
|
-
| "automation_status_aggregate_fields"
|
|
107926
|
-
| "automation_status_max_fields"
|
|
107927
|
-
| "automation_status_min_fields"
|
|
107928
|
-
| "automation_status_mutation_response"
|
|
107929
106439
|
| "automation_template"
|
|
107930
106440
|
| "automation_template_aggregate"
|
|
107931
106441
|
| "automation_template_aggregate_fields"
|
|
@@ -108034,12 +106544,6 @@ export type SchemaObjectTypesNames =
|
|
|
108034
106544
|
| "connection_max_fields"
|
|
108035
106545
|
| "connection_min_fields"
|
|
108036
106546
|
| "connection_mutation_response"
|
|
108037
|
-
| "connection_status_temporary"
|
|
108038
|
-
| "connection_status_temporary_aggregate"
|
|
108039
|
-
| "connection_status_temporary_aggregate_fields"
|
|
108040
|
-
| "connection_status_temporary_max_fields"
|
|
108041
|
-
| "connection_status_temporary_min_fields"
|
|
108042
|
-
| "connection_status_temporary_mutation_response"
|
|
108043
106547
|
| "connection_stddev_fields"
|
|
108044
106548
|
| "connection_stddev_pop_fields"
|
|
108045
106549
|
| "connection_stddev_samp_fields"
|
|
@@ -108269,18 +106773,6 @@ export type SchemaObjectTypesNames =
|
|
|
108269
106773
|
| "listing_owner_var_pop_fields"
|
|
108270
106774
|
| "listing_owner_var_samp_fields"
|
|
108271
106775
|
| "listing_owner_variance_fields"
|
|
108272
|
-
| "listing_pms_status"
|
|
108273
|
-
| "listing_pms_status_aggregate"
|
|
108274
|
-
| "listing_pms_status_aggregate_fields"
|
|
108275
|
-
| "listing_pms_status_max_fields"
|
|
108276
|
-
| "listing_pms_status_min_fields"
|
|
108277
|
-
| "listing_pms_status_mutation_response"
|
|
108278
|
-
| "listing_status"
|
|
108279
|
-
| "listing_status_aggregate"
|
|
108280
|
-
| "listing_status_aggregate_fields"
|
|
108281
|
-
| "listing_status_max_fields"
|
|
108282
|
-
| "listing_status_min_fields"
|
|
108283
|
-
| "listing_status_mutation_response"
|
|
108284
106776
|
| "listing_stddev_fields"
|
|
108285
106777
|
| "listing_stddev_pop_fields"
|
|
108286
106778
|
| "listing_stddev_samp_fields"
|
|
@@ -108998,10 +107490,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
108998
107490
|
audit_log_update_column: audit_log_update_column | undefined;
|
|
108999
107491
|
automation_constraint: automation_constraint | undefined;
|
|
109000
107492
|
automation_select_column: automation_select_column | undefined;
|
|
109001
|
-
automation_status_constraint: automation_status_constraint | undefined;
|
|
109002
|
-
automation_status_enum: automation_status_enum | undefined;
|
|
109003
|
-
automation_status_select_column: automation_status_select_column | undefined;
|
|
109004
|
-
automation_status_update_column: automation_status_update_column | undefined;
|
|
109005
107493
|
automation_template_constraint: automation_template_constraint | undefined;
|
|
109006
107494
|
automation_template_select_column:
|
|
109007
107495
|
| automation_template_select_column
|
|
@@ -109097,15 +107585,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109097
107585
|
connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns:
|
|
109098
107586
|
| connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns
|
|
109099
107587
|
| undefined;
|
|
109100
|
-
connection_status_temporary_constraint:
|
|
109101
|
-
| connection_status_temporary_constraint
|
|
109102
|
-
| undefined;
|
|
109103
|
-
connection_status_temporary_select_column:
|
|
109104
|
-
| connection_status_temporary_select_column
|
|
109105
|
-
| undefined;
|
|
109106
|
-
connection_status_temporary_update_column:
|
|
109107
|
-
| connection_status_temporary_update_column
|
|
109108
|
-
| undefined;
|
|
109109
107588
|
connection_update_column: connection_update_column | undefined;
|
|
109110
107589
|
contactCompanyType_constraint: contactCompanyType_constraint | undefined;
|
|
109111
107590
|
contactCompanyType_enum: contactCompanyType_enum | undefined;
|
|
@@ -109301,19 +107780,7 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109301
107780
|
| undefined;
|
|
109302
107781
|
listing_owner_select_column: listing_owner_select_column | undefined;
|
|
109303
107782
|
listing_owner_update_column: listing_owner_update_column | undefined;
|
|
109304
|
-
listing_pms_status_constraint: listing_pms_status_constraint | undefined;
|
|
109305
|
-
listing_pms_status_enum: listing_pms_status_enum | undefined;
|
|
109306
|
-
listing_pms_status_select_column:
|
|
109307
|
-
| listing_pms_status_select_column
|
|
109308
|
-
| undefined;
|
|
109309
|
-
listing_pms_status_update_column:
|
|
109310
|
-
| listing_pms_status_update_column
|
|
109311
|
-
| undefined;
|
|
109312
107783
|
listing_select_column: listing_select_column | undefined;
|
|
109313
|
-
listing_status_constraint: listing_status_constraint | undefined;
|
|
109314
|
-
listing_status_enum: listing_status_enum | undefined;
|
|
109315
|
-
listing_status_select_column: listing_status_select_column | undefined;
|
|
109316
|
-
listing_status_update_column: listing_status_update_column | undefined;
|
|
109317
107784
|
listing_update_column: listing_update_column | undefined;
|
|
109318
107785
|
metricsActiveListingCreatedReturnType_enum_name:
|
|
109319
107786
|
| metricsActiveListingCreatedReturnType_enum_name
|