@vrplatform/graphql 1.1.9 → 1.1.13
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/gqty/schema.generated.d.ts +1767 -0
- package/build/main/gqty/schema.generated.js +730 -0
- package/build/module/gqty/schema.generated.d.ts +1767 -0
- package/build/module/gqty/schema.generated.js +730 -0
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +1767 -0
- package/src/gqty/schema.generated.js +730 -0
|
@@ -23,6 +23,7 @@ export interface Scalars {
|
|
|
23
23
|
bigint: number;
|
|
24
24
|
date: string;
|
|
25
25
|
effect_status: any;
|
|
26
|
+
flow_type: any;
|
|
26
27
|
json: any;
|
|
27
28
|
jsonb: any;
|
|
28
29
|
numeric: number;
|
|
@@ -6881,6 +6882,519 @@ export interface core_change_source_link_updates {
|
|
|
6881
6882
|
where: core_change_source_link_bool_exp;
|
|
6882
6883
|
}
|
|
6883
6884
|
|
|
6885
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6886
|
+
export interface core_flow_append_input {
|
|
6887
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6888
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6889
|
+
}
|
|
6890
|
+
|
|
6891
|
+
/** Boolean expression to filter rows from the table "core.flow". All fields are combined with a logical 'AND'. */
|
|
6892
|
+
export interface core_flow_bool_exp {
|
|
6893
|
+
_and?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6894
|
+
_not?: InputMaybe<core_flow_bool_exp>;
|
|
6895
|
+
_or?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6896
|
+
app_id?: InputMaybe<String_comparison_exp>;
|
|
6897
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
6898
|
+
mapping_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6899
|
+
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6900
|
+
title?: InputMaybe<String_comparison_exp>;
|
|
6901
|
+
type?: InputMaybe<flow_type_comparison_exp>;
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
/** unique or primary key constraints on table "core.flow" */
|
|
6905
|
+
export type core_flow_constraint =
|
|
6906
|
+
/** unique or primary key constraint on columns "id" */
|
|
6907
|
+
"flow_pkey";
|
|
6908
|
+
|
|
6909
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6910
|
+
export interface core_flow_delete_at_path_input {
|
|
6911
|
+
mapping_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6912
|
+
setting_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6913
|
+
}
|
|
6914
|
+
|
|
6915
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6916
|
+
export interface core_flow_delete_elem_input {
|
|
6917
|
+
mapping_schema?: InputMaybe<Scalars["Int"]>;
|
|
6918
|
+
setting_schema?: InputMaybe<Scalars["Int"]>;
|
|
6919
|
+
}
|
|
6920
|
+
|
|
6921
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6922
|
+
export interface core_flow_delete_key_input {
|
|
6923
|
+
mapping_schema?: InputMaybe<Scalars["String"]>;
|
|
6924
|
+
setting_schema?: InputMaybe<Scalars["String"]>;
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
/** input type for inserting data into table "core.flow" */
|
|
6928
|
+
export interface core_flow_insert_input {
|
|
6929
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
6930
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6931
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6932
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6933
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
6934
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
6935
|
+
}
|
|
6936
|
+
|
|
6937
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6938
|
+
export interface core_flow_mapping_append_input {
|
|
6939
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6942
|
+
/** Boolean expression to filter rows from the table "core.flow_mapping". All fields are combined with a logical 'AND'. */
|
|
6943
|
+
export interface core_flow_mapping_bool_exp {
|
|
6944
|
+
_and?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
|
|
6945
|
+
_not?: InputMaybe<core_flow_mapping_bool_exp>;
|
|
6946
|
+
_or?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
|
|
6947
|
+
account_id?: InputMaybe<uuid_comparison_exp>;
|
|
6948
|
+
booking_channel_id?: InputMaybe<uuid_comparison_exp>;
|
|
6949
|
+
contact_id?: InputMaybe<uuid_comparison_exp>;
|
|
6950
|
+
flow_id?: InputMaybe<uuid_comparison_exp>;
|
|
6951
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
6952
|
+
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
6953
|
+
mapping_key?: InputMaybe<String_comparison_exp>;
|
|
6954
|
+
source_id?: InputMaybe<uuid_comparison_exp>;
|
|
6955
|
+
value?: InputMaybe<jsonb_comparison_exp>;
|
|
6956
|
+
}
|
|
6957
|
+
|
|
6958
|
+
/** unique or primary key constraints on table "core.flow_mapping" */
|
|
6959
|
+
export type core_flow_mapping_constraint =
|
|
6960
|
+
/** unique or primary key constraint on columns "flow_id", "mapping_key", "source_id" */
|
|
6961
|
+
| "flow_mapping_flow_id_mapping_key_source_id_key"
|
|
6962
|
+
/** unique or primary key constraint on columns "id" */
|
|
6963
|
+
| "flow_mapping_pkey";
|
|
6964
|
+
|
|
6965
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6966
|
+
export interface core_flow_mapping_delete_at_path_input {
|
|
6967
|
+
value?: InputMaybe<Array<Scalars["String"]>>;
|
|
6968
|
+
}
|
|
6969
|
+
|
|
6970
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6971
|
+
export interface core_flow_mapping_delete_elem_input {
|
|
6972
|
+
value?: InputMaybe<Scalars["Int"]>;
|
|
6973
|
+
}
|
|
6974
|
+
|
|
6975
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6976
|
+
export interface core_flow_mapping_delete_key_input {
|
|
6977
|
+
value?: InputMaybe<Scalars["String"]>;
|
|
6978
|
+
}
|
|
6979
|
+
|
|
6980
|
+
/** input type for inserting data into table "core.flow_mapping" */
|
|
6981
|
+
export interface core_flow_mapping_insert_input {
|
|
6982
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6983
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
6984
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6985
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
6986
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6987
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
6988
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
6989
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
6990
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6991
|
+
}
|
|
6992
|
+
|
|
6993
|
+
/** on_conflict condition type for table "core.flow_mapping" */
|
|
6994
|
+
export interface core_flow_mapping_on_conflict {
|
|
6995
|
+
constraint: core_flow_mapping_constraint;
|
|
6996
|
+
update_columns?: Array<core_flow_mapping_update_column>;
|
|
6997
|
+
where?: InputMaybe<core_flow_mapping_bool_exp>;
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
/** Ordering options when selecting data from "core.flow_mapping". */
|
|
7001
|
+
export interface core_flow_mapping_order_by {
|
|
7002
|
+
account_id?: InputMaybe<order_by>;
|
|
7003
|
+
booking_channel_id?: InputMaybe<order_by>;
|
|
7004
|
+
contact_id?: InputMaybe<order_by>;
|
|
7005
|
+
flow_id?: InputMaybe<order_by>;
|
|
7006
|
+
id?: InputMaybe<order_by>;
|
|
7007
|
+
listing_id?: InputMaybe<order_by>;
|
|
7008
|
+
mapping_key?: InputMaybe<order_by>;
|
|
7009
|
+
source_id?: InputMaybe<order_by>;
|
|
7010
|
+
value?: InputMaybe<order_by>;
|
|
7011
|
+
}
|
|
7012
|
+
|
|
7013
|
+
/** primary key columns input for table: core.flow_mapping */
|
|
7014
|
+
export interface core_flow_mapping_pk_columns_input {
|
|
7015
|
+
id: Scalars["uuid"];
|
|
7016
|
+
}
|
|
7017
|
+
|
|
7018
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7019
|
+
export interface core_flow_mapping_prepend_input {
|
|
7020
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7021
|
+
}
|
|
7022
|
+
|
|
7023
|
+
/** select columns of table "core.flow_mapping" */
|
|
7024
|
+
export type core_flow_mapping_select_column =
|
|
7025
|
+
/** column name */
|
|
7026
|
+
| "account_id"
|
|
7027
|
+
/** column name */
|
|
7028
|
+
| "booking_channel_id"
|
|
7029
|
+
/** column name */
|
|
7030
|
+
| "contact_id"
|
|
7031
|
+
/** column name */
|
|
7032
|
+
| "flow_id"
|
|
7033
|
+
/** column name */
|
|
7034
|
+
| "id"
|
|
7035
|
+
/** column name */
|
|
7036
|
+
| "listing_id"
|
|
7037
|
+
/** column name */
|
|
7038
|
+
| "mapping_key"
|
|
7039
|
+
/** column name */
|
|
7040
|
+
| "source_id"
|
|
7041
|
+
/** column name */
|
|
7042
|
+
| "value";
|
|
7043
|
+
|
|
7044
|
+
/** input type for updating data in table "core.flow_mapping" */
|
|
7045
|
+
export interface core_flow_mapping_set_input {
|
|
7046
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7047
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7048
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7049
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7050
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7051
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7052
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
7053
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
7054
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7055
|
+
}
|
|
7056
|
+
|
|
7057
|
+
/** Streaming cursor of the table "core_flow_mapping" */
|
|
7058
|
+
export interface core_flow_mapping_stream_cursor_input {
|
|
7059
|
+
/** Stream column input with initial value */
|
|
7060
|
+
initial_value: core_flow_mapping_stream_cursor_value_input;
|
|
7061
|
+
/** cursor ordering */
|
|
7062
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
7063
|
+
}
|
|
7064
|
+
|
|
7065
|
+
/** Initial value of the column from where the streaming should start */
|
|
7066
|
+
export interface core_flow_mapping_stream_cursor_value_input {
|
|
7067
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7068
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7069
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7070
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7071
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7072
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7073
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
7074
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
7075
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7076
|
+
}
|
|
7077
|
+
|
|
7078
|
+
/** update columns of table "core.flow_mapping" */
|
|
7079
|
+
export type core_flow_mapping_update_column =
|
|
7080
|
+
/** column name */
|
|
7081
|
+
| "account_id"
|
|
7082
|
+
/** column name */
|
|
7083
|
+
| "booking_channel_id"
|
|
7084
|
+
/** column name */
|
|
7085
|
+
| "contact_id"
|
|
7086
|
+
/** column name */
|
|
7087
|
+
| "flow_id"
|
|
7088
|
+
/** column name */
|
|
7089
|
+
| "id"
|
|
7090
|
+
/** column name */
|
|
7091
|
+
| "listing_id"
|
|
7092
|
+
/** column name */
|
|
7093
|
+
| "mapping_key"
|
|
7094
|
+
/** column name */
|
|
7095
|
+
| "source_id"
|
|
7096
|
+
/** column name */
|
|
7097
|
+
| "value";
|
|
7098
|
+
|
|
7099
|
+
export interface core_flow_mapping_updates {
|
|
7100
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7101
|
+
_append?: InputMaybe<core_flow_mapping_append_input>;
|
|
7102
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7103
|
+
_delete_at_path?: InputMaybe<core_flow_mapping_delete_at_path_input>;
|
|
7104
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7105
|
+
_delete_elem?: InputMaybe<core_flow_mapping_delete_elem_input>;
|
|
7106
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7107
|
+
_delete_key?: InputMaybe<core_flow_mapping_delete_key_input>;
|
|
7108
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7109
|
+
_prepend?: InputMaybe<core_flow_mapping_prepend_input>;
|
|
7110
|
+
/** sets the columns of the filtered rows to the given values */
|
|
7111
|
+
_set?: InputMaybe<core_flow_mapping_set_input>;
|
|
7112
|
+
/** filter the rows which have to be updated */
|
|
7113
|
+
where: core_flow_mapping_bool_exp;
|
|
7114
|
+
}
|
|
7115
|
+
|
|
7116
|
+
/** on_conflict condition type for table "core.flow" */
|
|
7117
|
+
export interface core_flow_on_conflict {
|
|
7118
|
+
constraint: core_flow_constraint;
|
|
7119
|
+
update_columns?: Array<core_flow_update_column>;
|
|
7120
|
+
where?: InputMaybe<core_flow_bool_exp>;
|
|
7121
|
+
}
|
|
7122
|
+
|
|
7123
|
+
/** Ordering options when selecting data from "core.flow". */
|
|
7124
|
+
export interface core_flow_order_by {
|
|
7125
|
+
app_id?: InputMaybe<order_by>;
|
|
7126
|
+
id?: InputMaybe<order_by>;
|
|
7127
|
+
mapping_schema?: InputMaybe<order_by>;
|
|
7128
|
+
setting_schema?: InputMaybe<order_by>;
|
|
7129
|
+
title?: InputMaybe<order_by>;
|
|
7130
|
+
type?: InputMaybe<order_by>;
|
|
7131
|
+
}
|
|
7132
|
+
|
|
7133
|
+
/** primary key columns input for table: core.flow */
|
|
7134
|
+
export interface core_flow_pk_columns_input {
|
|
7135
|
+
id: Scalars["uuid"];
|
|
7136
|
+
}
|
|
7137
|
+
|
|
7138
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7139
|
+
export interface core_flow_prepend_input {
|
|
7140
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7141
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7142
|
+
}
|
|
7143
|
+
|
|
7144
|
+
/** select columns of table "core.flow" */
|
|
7145
|
+
export type core_flow_select_column =
|
|
7146
|
+
/** column name */
|
|
7147
|
+
| "app_id"
|
|
7148
|
+
/** column name */
|
|
7149
|
+
| "id"
|
|
7150
|
+
/** column name */
|
|
7151
|
+
| "mapping_schema"
|
|
7152
|
+
/** column name */
|
|
7153
|
+
| "setting_schema"
|
|
7154
|
+
/** column name */
|
|
7155
|
+
| "title"
|
|
7156
|
+
/** column name */
|
|
7157
|
+
| "type";
|
|
7158
|
+
|
|
7159
|
+
/** input type for updating data in table "core.flow" */
|
|
7160
|
+
export interface core_flow_set_input {
|
|
7161
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
7162
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7163
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7164
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7165
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
7166
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7167
|
+
}
|
|
7168
|
+
|
|
7169
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7170
|
+
export interface core_flow_setting_append_input {
|
|
7171
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7172
|
+
}
|
|
7173
|
+
|
|
7174
|
+
/** Boolean expression to filter rows from the table "core.flow_setting". All fields are combined with a logical 'AND'. */
|
|
7175
|
+
export interface core_flow_setting_bool_exp {
|
|
7176
|
+
_and?: InputMaybe<Array<core_flow_setting_bool_exp>>;
|
|
7177
|
+
_not?: InputMaybe<core_flow_setting_bool_exp>;
|
|
7178
|
+
_or?: InputMaybe<Array<core_flow_setting_bool_exp>>;
|
|
7179
|
+
account_id?: InputMaybe<uuid_comparison_exp>;
|
|
7180
|
+
booking_channel_id?: InputMaybe<uuid_comparison_exp>;
|
|
7181
|
+
connection_id?: InputMaybe<uuid_comparison_exp>;
|
|
7182
|
+
contact_id?: InputMaybe<uuid_comparison_exp>;
|
|
7183
|
+
flow_id?: InputMaybe<uuid_comparison_exp>;
|
|
7184
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
7185
|
+
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
7186
|
+
setting_key?: InputMaybe<String_comparison_exp>;
|
|
7187
|
+
value?: InputMaybe<jsonb_comparison_exp>;
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7190
|
+
/** unique or primary key constraints on table "core.flow_setting" */
|
|
7191
|
+
export type core_flow_setting_constraint =
|
|
7192
|
+
/** unique or primary key constraint on columns "flow_id", "connection_id", "setting_key" */
|
|
7193
|
+
| "flow_setting_flow_id_setting_key_connection_id_key"
|
|
7194
|
+
/** unique or primary key constraint on columns "id" */
|
|
7195
|
+
| "flow_setting_pkey";
|
|
7196
|
+
|
|
7197
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7198
|
+
export interface core_flow_setting_delete_at_path_input {
|
|
7199
|
+
value?: InputMaybe<Array<Scalars["String"]>>;
|
|
7200
|
+
}
|
|
7201
|
+
|
|
7202
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7203
|
+
export interface core_flow_setting_delete_elem_input {
|
|
7204
|
+
value?: InputMaybe<Scalars["Int"]>;
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7208
|
+
export interface core_flow_setting_delete_key_input {
|
|
7209
|
+
value?: InputMaybe<Scalars["String"]>;
|
|
7210
|
+
}
|
|
7211
|
+
|
|
7212
|
+
/** input type for inserting data into table "core.flow_setting" */
|
|
7213
|
+
export interface core_flow_setting_insert_input {
|
|
7214
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7215
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7216
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7217
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7218
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7219
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7220
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7221
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7222
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7223
|
+
}
|
|
7224
|
+
|
|
7225
|
+
/** on_conflict condition type for table "core.flow_setting" */
|
|
7226
|
+
export interface core_flow_setting_on_conflict {
|
|
7227
|
+
constraint: core_flow_setting_constraint;
|
|
7228
|
+
update_columns?: Array<core_flow_setting_update_column>;
|
|
7229
|
+
where?: InputMaybe<core_flow_setting_bool_exp>;
|
|
7230
|
+
}
|
|
7231
|
+
|
|
7232
|
+
/** Ordering options when selecting data from "core.flow_setting". */
|
|
7233
|
+
export interface core_flow_setting_order_by {
|
|
7234
|
+
account_id?: InputMaybe<order_by>;
|
|
7235
|
+
booking_channel_id?: InputMaybe<order_by>;
|
|
7236
|
+
connection_id?: InputMaybe<order_by>;
|
|
7237
|
+
contact_id?: InputMaybe<order_by>;
|
|
7238
|
+
flow_id?: InputMaybe<order_by>;
|
|
7239
|
+
id?: InputMaybe<order_by>;
|
|
7240
|
+
listing_id?: InputMaybe<order_by>;
|
|
7241
|
+
setting_key?: InputMaybe<order_by>;
|
|
7242
|
+
value?: InputMaybe<order_by>;
|
|
7243
|
+
}
|
|
7244
|
+
|
|
7245
|
+
/** primary key columns input for table: core.flow_setting */
|
|
7246
|
+
export interface core_flow_setting_pk_columns_input {
|
|
7247
|
+
id: Scalars["uuid"];
|
|
7248
|
+
}
|
|
7249
|
+
|
|
7250
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7251
|
+
export interface core_flow_setting_prepend_input {
|
|
7252
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7253
|
+
}
|
|
7254
|
+
|
|
7255
|
+
/** select columns of table "core.flow_setting" */
|
|
7256
|
+
export type core_flow_setting_select_column =
|
|
7257
|
+
/** column name */
|
|
7258
|
+
| "account_id"
|
|
7259
|
+
/** column name */
|
|
7260
|
+
| "booking_channel_id"
|
|
7261
|
+
/** column name */
|
|
7262
|
+
| "connection_id"
|
|
7263
|
+
/** column name */
|
|
7264
|
+
| "contact_id"
|
|
7265
|
+
/** column name */
|
|
7266
|
+
| "flow_id"
|
|
7267
|
+
/** column name */
|
|
7268
|
+
| "id"
|
|
7269
|
+
/** column name */
|
|
7270
|
+
| "listing_id"
|
|
7271
|
+
/** column name */
|
|
7272
|
+
| "setting_key"
|
|
7273
|
+
/** column name */
|
|
7274
|
+
| "value";
|
|
7275
|
+
|
|
7276
|
+
/** input type for updating data in table "core.flow_setting" */
|
|
7277
|
+
export interface core_flow_setting_set_input {
|
|
7278
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7279
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7280
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7281
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7282
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7283
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7284
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7285
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7286
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7287
|
+
}
|
|
7288
|
+
|
|
7289
|
+
/** Streaming cursor of the table "core_flow_setting" */
|
|
7290
|
+
export interface core_flow_setting_stream_cursor_input {
|
|
7291
|
+
/** Stream column input with initial value */
|
|
7292
|
+
initial_value: core_flow_setting_stream_cursor_value_input;
|
|
7293
|
+
/** cursor ordering */
|
|
7294
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
7295
|
+
}
|
|
7296
|
+
|
|
7297
|
+
/** Initial value of the column from where the streaming should start */
|
|
7298
|
+
export interface core_flow_setting_stream_cursor_value_input {
|
|
7299
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7300
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7301
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7302
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7303
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7304
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7305
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7306
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7307
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7308
|
+
}
|
|
7309
|
+
|
|
7310
|
+
/** update columns of table "core.flow_setting" */
|
|
7311
|
+
export type core_flow_setting_update_column =
|
|
7312
|
+
/** column name */
|
|
7313
|
+
| "account_id"
|
|
7314
|
+
/** column name */
|
|
7315
|
+
| "booking_channel_id"
|
|
7316
|
+
/** column name */
|
|
7317
|
+
| "connection_id"
|
|
7318
|
+
/** column name */
|
|
7319
|
+
| "contact_id"
|
|
7320
|
+
/** column name */
|
|
7321
|
+
| "flow_id"
|
|
7322
|
+
/** column name */
|
|
7323
|
+
| "id"
|
|
7324
|
+
/** column name */
|
|
7325
|
+
| "listing_id"
|
|
7326
|
+
/** column name */
|
|
7327
|
+
| "setting_key"
|
|
7328
|
+
/** column name */
|
|
7329
|
+
| "value";
|
|
7330
|
+
|
|
7331
|
+
export interface core_flow_setting_updates {
|
|
7332
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7333
|
+
_append?: InputMaybe<core_flow_setting_append_input>;
|
|
7334
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7335
|
+
_delete_at_path?: InputMaybe<core_flow_setting_delete_at_path_input>;
|
|
7336
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7337
|
+
_delete_elem?: InputMaybe<core_flow_setting_delete_elem_input>;
|
|
7338
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7339
|
+
_delete_key?: InputMaybe<core_flow_setting_delete_key_input>;
|
|
7340
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7341
|
+
_prepend?: InputMaybe<core_flow_setting_prepend_input>;
|
|
7342
|
+
/** sets the columns of the filtered rows to the given values */
|
|
7343
|
+
_set?: InputMaybe<core_flow_setting_set_input>;
|
|
7344
|
+
/** filter the rows which have to be updated */
|
|
7345
|
+
where: core_flow_setting_bool_exp;
|
|
7346
|
+
}
|
|
7347
|
+
|
|
7348
|
+
/** Streaming cursor of the table "core_flow" */
|
|
7349
|
+
export interface core_flow_stream_cursor_input {
|
|
7350
|
+
/** Stream column input with initial value */
|
|
7351
|
+
initial_value: core_flow_stream_cursor_value_input;
|
|
7352
|
+
/** cursor ordering */
|
|
7353
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
7354
|
+
}
|
|
7355
|
+
|
|
7356
|
+
/** Initial value of the column from where the streaming should start */
|
|
7357
|
+
export interface core_flow_stream_cursor_value_input {
|
|
7358
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
7359
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7360
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7361
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7362
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
7363
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7364
|
+
}
|
|
7365
|
+
|
|
7366
|
+
/** update columns of table "core.flow" */
|
|
7367
|
+
export type core_flow_update_column =
|
|
7368
|
+
/** column name */
|
|
7369
|
+
| "app_id"
|
|
7370
|
+
/** column name */
|
|
7371
|
+
| "id"
|
|
7372
|
+
/** column name */
|
|
7373
|
+
| "mapping_schema"
|
|
7374
|
+
/** column name */
|
|
7375
|
+
| "setting_schema"
|
|
7376
|
+
/** column name */
|
|
7377
|
+
| "title"
|
|
7378
|
+
/** column name */
|
|
7379
|
+
| "type";
|
|
7380
|
+
|
|
7381
|
+
export interface core_flow_updates {
|
|
7382
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7383
|
+
_append?: InputMaybe<core_flow_append_input>;
|
|
7384
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7385
|
+
_delete_at_path?: InputMaybe<core_flow_delete_at_path_input>;
|
|
7386
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7387
|
+
_delete_elem?: InputMaybe<core_flow_delete_elem_input>;
|
|
7388
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7389
|
+
_delete_key?: InputMaybe<core_flow_delete_key_input>;
|
|
7390
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7391
|
+
_prepend?: InputMaybe<core_flow_prepend_input>;
|
|
7392
|
+
/** sets the columns of the filtered rows to the given values */
|
|
7393
|
+
_set?: InputMaybe<core_flow_set_input>;
|
|
7394
|
+
/** filter the rows which have to be updated */
|
|
7395
|
+
where: core_flow_bool_exp;
|
|
7396
|
+
}
|
|
7397
|
+
|
|
6884
7398
|
/** Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'. */
|
|
6885
7399
|
export interface currency_bool_exp {
|
|
6886
7400
|
_and?: InputMaybe<Array<currency_bool_exp>>;
|
|
@@ -8806,6 +9320,19 @@ export interface file_storage_updates {
|
|
|
8806
9320
|
where: file_storage_bool_exp;
|
|
8807
9321
|
}
|
|
8808
9322
|
|
|
9323
|
+
/** Boolean expression to compare columns of type "flow_type". All fields are combined with logical 'AND'. */
|
|
9324
|
+
export interface flow_type_comparison_exp {
|
|
9325
|
+
_eq?: InputMaybe<Scalars["flow_type"]>;
|
|
9326
|
+
_gt?: InputMaybe<Scalars["flow_type"]>;
|
|
9327
|
+
_gte?: InputMaybe<Scalars["flow_type"]>;
|
|
9328
|
+
_in?: InputMaybe<Array<Scalars["flow_type"]>>;
|
|
9329
|
+
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
9330
|
+
_lt?: InputMaybe<Scalars["flow_type"]>;
|
|
9331
|
+
_lte?: InputMaybe<Scalars["flow_type"]>;
|
|
9332
|
+
_neq?: InputMaybe<Scalars["flow_type"]>;
|
|
9333
|
+
_nin?: InputMaybe<Array<Scalars["flow_type"]>>;
|
|
9334
|
+
}
|
|
9335
|
+
|
|
8809
9336
|
/** Boolean expression to filter rows from the logical model for "issueConnectionsNeedVersionUpgradeReturnType". All fields are combined with a logical 'AND'. */
|
|
8810
9337
|
export interface issueConnectionsNeedVersionUpgradeReturnType_bool_exp_bool_exp {
|
|
8811
9338
|
_and?: InputMaybe<
|
|
@@ -9258,6 +9785,7 @@ export type journalEntryType_enum =
|
|
|
9258
9785
|
| "reservation_line"
|
|
9259
9786
|
| "transaction_deposit"
|
|
9260
9787
|
| "transaction_deposit_channelFee"
|
|
9788
|
+
| "transaction_deposit_coHost"
|
|
9261
9789
|
| "transaction_deposit_line"
|
|
9262
9790
|
| "transaction_deposit_merchantFee"
|
|
9263
9791
|
| "transaction_deposit_openingAdvance"
|
|
@@ -35362,6 +35890,406 @@ export declare const generatedSchema: {
|
|
|
35362
35890
|
_set: { __type: "core_change_source_link_set_input" };
|
|
35363
35891
|
where: { __type: "core_change_source_link_bool_exp!" };
|
|
35364
35892
|
};
|
|
35893
|
+
core_flow: {
|
|
35894
|
+
__typename: { __type: "String!" };
|
|
35895
|
+
app_id: { __type: "String!" };
|
|
35896
|
+
id: { __type: "uuid!" };
|
|
35897
|
+
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35898
|
+
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35899
|
+
title: { __type: "String!" };
|
|
35900
|
+
type: { __type: "flow_type" };
|
|
35901
|
+
};
|
|
35902
|
+
core_flow_aggregate: {
|
|
35903
|
+
__typename: { __type: "String!" };
|
|
35904
|
+
aggregate: { __type: "core_flow_aggregate_fields" };
|
|
35905
|
+
nodes: { __type: "[core_flow!]!" };
|
|
35906
|
+
};
|
|
35907
|
+
core_flow_aggregate_fields: {
|
|
35908
|
+
__typename: { __type: "String!" };
|
|
35909
|
+
count: {
|
|
35910
|
+
__type: "Int!";
|
|
35911
|
+
__args: { columns: "[core_flow_select_column!]"; distinct: "Boolean" };
|
|
35912
|
+
};
|
|
35913
|
+
max: { __type: "core_flow_max_fields" };
|
|
35914
|
+
min: { __type: "core_flow_min_fields" };
|
|
35915
|
+
};
|
|
35916
|
+
core_flow_append_input: {
|
|
35917
|
+
mapping_schema: { __type: "jsonb" };
|
|
35918
|
+
setting_schema: { __type: "jsonb" };
|
|
35919
|
+
};
|
|
35920
|
+
core_flow_bool_exp: {
|
|
35921
|
+
_and: { __type: "[core_flow_bool_exp!]" };
|
|
35922
|
+
_not: { __type: "core_flow_bool_exp" };
|
|
35923
|
+
_or: { __type: "[core_flow_bool_exp!]" };
|
|
35924
|
+
app_id: { __type: "String_comparison_exp" };
|
|
35925
|
+
id: { __type: "uuid_comparison_exp" };
|
|
35926
|
+
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35927
|
+
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
35928
|
+
title: { __type: "String_comparison_exp" };
|
|
35929
|
+
type: { __type: "flow_type_comparison_exp" };
|
|
35930
|
+
};
|
|
35931
|
+
core_flow_delete_at_path_input: {
|
|
35932
|
+
mapping_schema: { __type: "[String!]" };
|
|
35933
|
+
setting_schema: { __type: "[String!]" };
|
|
35934
|
+
};
|
|
35935
|
+
core_flow_delete_elem_input: {
|
|
35936
|
+
mapping_schema: { __type: "Int" };
|
|
35937
|
+
setting_schema: { __type: "Int" };
|
|
35938
|
+
};
|
|
35939
|
+
core_flow_delete_key_input: {
|
|
35940
|
+
mapping_schema: { __type: "String" };
|
|
35941
|
+
setting_schema: { __type: "String" };
|
|
35942
|
+
};
|
|
35943
|
+
core_flow_insert_input: {
|
|
35944
|
+
app_id: { __type: "String" };
|
|
35945
|
+
id: { __type: "uuid" };
|
|
35946
|
+
mapping_schema: { __type: "jsonb" };
|
|
35947
|
+
setting_schema: { __type: "jsonb" };
|
|
35948
|
+
title: { __type: "String" };
|
|
35949
|
+
type: { __type: "flow_type" };
|
|
35950
|
+
};
|
|
35951
|
+
core_flow_mapping: {
|
|
35952
|
+
__typename: { __type: "String!" };
|
|
35953
|
+
account_id: { __type: "uuid" };
|
|
35954
|
+
booking_channel_id: { __type: "uuid" };
|
|
35955
|
+
contact_id: { __type: "uuid" };
|
|
35956
|
+
flow_id: { __type: "uuid!" };
|
|
35957
|
+
id: { __type: "uuid!" };
|
|
35958
|
+
listing_id: { __type: "uuid" };
|
|
35959
|
+
mapping_key: { __type: "String!" };
|
|
35960
|
+
source_id: { __type: "uuid!" };
|
|
35961
|
+
value: { __type: "jsonb"; __args: { path: "String" } };
|
|
35962
|
+
};
|
|
35963
|
+
core_flow_mapping_aggregate: {
|
|
35964
|
+
__typename: { __type: "String!" };
|
|
35965
|
+
aggregate: { __type: "core_flow_mapping_aggregate_fields" };
|
|
35966
|
+
nodes: { __type: "[core_flow_mapping!]!" };
|
|
35967
|
+
};
|
|
35968
|
+
core_flow_mapping_aggregate_fields: {
|
|
35969
|
+
__typename: { __type: "String!" };
|
|
35970
|
+
count: {
|
|
35971
|
+
__type: "Int!";
|
|
35972
|
+
__args: {
|
|
35973
|
+
columns: "[core_flow_mapping_select_column!]";
|
|
35974
|
+
distinct: "Boolean";
|
|
35975
|
+
};
|
|
35976
|
+
};
|
|
35977
|
+
max: { __type: "core_flow_mapping_max_fields" };
|
|
35978
|
+
min: { __type: "core_flow_mapping_min_fields" };
|
|
35979
|
+
};
|
|
35980
|
+
core_flow_mapping_append_input: { value: { __type: "jsonb" } };
|
|
35981
|
+
core_flow_mapping_bool_exp: {
|
|
35982
|
+
_and: { __type: "[core_flow_mapping_bool_exp!]" };
|
|
35983
|
+
_not: { __type: "core_flow_mapping_bool_exp" };
|
|
35984
|
+
_or: { __type: "[core_flow_mapping_bool_exp!]" };
|
|
35985
|
+
account_id: { __type: "uuid_comparison_exp" };
|
|
35986
|
+
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
35987
|
+
contact_id: { __type: "uuid_comparison_exp" };
|
|
35988
|
+
flow_id: { __type: "uuid_comparison_exp" };
|
|
35989
|
+
id: { __type: "uuid_comparison_exp" };
|
|
35990
|
+
listing_id: { __type: "uuid_comparison_exp" };
|
|
35991
|
+
mapping_key: { __type: "String_comparison_exp" };
|
|
35992
|
+
source_id: { __type: "uuid_comparison_exp" };
|
|
35993
|
+
value: { __type: "jsonb_comparison_exp" };
|
|
35994
|
+
};
|
|
35995
|
+
core_flow_mapping_delete_at_path_input: { value: { __type: "[String!]" } };
|
|
35996
|
+
core_flow_mapping_delete_elem_input: { value: { __type: "Int" } };
|
|
35997
|
+
core_flow_mapping_delete_key_input: { value: { __type: "String" } };
|
|
35998
|
+
core_flow_mapping_insert_input: {
|
|
35999
|
+
account_id: { __type: "uuid" };
|
|
36000
|
+
booking_channel_id: { __type: "uuid" };
|
|
36001
|
+
contact_id: { __type: "uuid" };
|
|
36002
|
+
flow_id: { __type: "uuid" };
|
|
36003
|
+
id: { __type: "uuid" };
|
|
36004
|
+
listing_id: { __type: "uuid" };
|
|
36005
|
+
mapping_key: { __type: "String" };
|
|
36006
|
+
source_id: { __type: "uuid" };
|
|
36007
|
+
value: { __type: "jsonb" };
|
|
36008
|
+
};
|
|
36009
|
+
core_flow_mapping_max_fields: {
|
|
36010
|
+
__typename: { __type: "String!" };
|
|
36011
|
+
account_id: { __type: "uuid" };
|
|
36012
|
+
booking_channel_id: { __type: "uuid" };
|
|
36013
|
+
contact_id: { __type: "uuid" };
|
|
36014
|
+
flow_id: { __type: "uuid" };
|
|
36015
|
+
id: { __type: "uuid" };
|
|
36016
|
+
listing_id: { __type: "uuid" };
|
|
36017
|
+
mapping_key: { __type: "String" };
|
|
36018
|
+
source_id: { __type: "uuid" };
|
|
36019
|
+
};
|
|
36020
|
+
core_flow_mapping_min_fields: {
|
|
36021
|
+
__typename: { __type: "String!" };
|
|
36022
|
+
account_id: { __type: "uuid" };
|
|
36023
|
+
booking_channel_id: { __type: "uuid" };
|
|
36024
|
+
contact_id: { __type: "uuid" };
|
|
36025
|
+
flow_id: { __type: "uuid" };
|
|
36026
|
+
id: { __type: "uuid" };
|
|
36027
|
+
listing_id: { __type: "uuid" };
|
|
36028
|
+
mapping_key: { __type: "String" };
|
|
36029
|
+
source_id: { __type: "uuid" };
|
|
36030
|
+
};
|
|
36031
|
+
core_flow_mapping_mutation_response: {
|
|
36032
|
+
__typename: { __type: "String!" };
|
|
36033
|
+
affected_rows: { __type: "Int!" };
|
|
36034
|
+
returning: { __type: "[core_flow_mapping!]!" };
|
|
36035
|
+
};
|
|
36036
|
+
core_flow_mapping_on_conflict: {
|
|
36037
|
+
constraint: { __type: "core_flow_mapping_constraint!" };
|
|
36038
|
+
update_columns: { __type: "[core_flow_mapping_update_column!]!" };
|
|
36039
|
+
where: { __type: "core_flow_mapping_bool_exp" };
|
|
36040
|
+
};
|
|
36041
|
+
core_flow_mapping_order_by: {
|
|
36042
|
+
account_id: { __type: "order_by" };
|
|
36043
|
+
booking_channel_id: { __type: "order_by" };
|
|
36044
|
+
contact_id: { __type: "order_by" };
|
|
36045
|
+
flow_id: { __type: "order_by" };
|
|
36046
|
+
id: { __type: "order_by" };
|
|
36047
|
+
listing_id: { __type: "order_by" };
|
|
36048
|
+
mapping_key: { __type: "order_by" };
|
|
36049
|
+
source_id: { __type: "order_by" };
|
|
36050
|
+
value: { __type: "order_by" };
|
|
36051
|
+
};
|
|
36052
|
+
core_flow_mapping_pk_columns_input: { id: { __type: "uuid!" } };
|
|
36053
|
+
core_flow_mapping_prepend_input: { value: { __type: "jsonb" } };
|
|
36054
|
+
core_flow_mapping_set_input: {
|
|
36055
|
+
account_id: { __type: "uuid" };
|
|
36056
|
+
booking_channel_id: { __type: "uuid" };
|
|
36057
|
+
contact_id: { __type: "uuid" };
|
|
36058
|
+
flow_id: { __type: "uuid" };
|
|
36059
|
+
id: { __type: "uuid" };
|
|
36060
|
+
listing_id: { __type: "uuid" };
|
|
36061
|
+
mapping_key: { __type: "String" };
|
|
36062
|
+
source_id: { __type: "uuid" };
|
|
36063
|
+
value: { __type: "jsonb" };
|
|
36064
|
+
};
|
|
36065
|
+
core_flow_mapping_stream_cursor_input: {
|
|
36066
|
+
initial_value: { __type: "core_flow_mapping_stream_cursor_value_input!" };
|
|
36067
|
+
ordering: { __type: "cursor_ordering" };
|
|
36068
|
+
};
|
|
36069
|
+
core_flow_mapping_stream_cursor_value_input: {
|
|
36070
|
+
account_id: { __type: "uuid" };
|
|
36071
|
+
booking_channel_id: { __type: "uuid" };
|
|
36072
|
+
contact_id: { __type: "uuid" };
|
|
36073
|
+
flow_id: { __type: "uuid" };
|
|
36074
|
+
id: { __type: "uuid" };
|
|
36075
|
+
listing_id: { __type: "uuid" };
|
|
36076
|
+
mapping_key: { __type: "String" };
|
|
36077
|
+
source_id: { __type: "uuid" };
|
|
36078
|
+
value: { __type: "jsonb" };
|
|
36079
|
+
};
|
|
36080
|
+
core_flow_mapping_updates: {
|
|
36081
|
+
_append: { __type: "core_flow_mapping_append_input" };
|
|
36082
|
+
_delete_at_path: { __type: "core_flow_mapping_delete_at_path_input" };
|
|
36083
|
+
_delete_elem: { __type: "core_flow_mapping_delete_elem_input" };
|
|
36084
|
+
_delete_key: { __type: "core_flow_mapping_delete_key_input" };
|
|
36085
|
+
_prepend: { __type: "core_flow_mapping_prepend_input" };
|
|
36086
|
+
_set: { __type: "core_flow_mapping_set_input" };
|
|
36087
|
+
where: { __type: "core_flow_mapping_bool_exp!" };
|
|
36088
|
+
};
|
|
36089
|
+
core_flow_max_fields: {
|
|
36090
|
+
__typename: { __type: "String!" };
|
|
36091
|
+
app_id: { __type: "String" };
|
|
36092
|
+
id: { __type: "uuid" };
|
|
36093
|
+
title: { __type: "String" };
|
|
36094
|
+
type: { __type: "flow_type" };
|
|
36095
|
+
};
|
|
36096
|
+
core_flow_min_fields: {
|
|
36097
|
+
__typename: { __type: "String!" };
|
|
36098
|
+
app_id: { __type: "String" };
|
|
36099
|
+
id: { __type: "uuid" };
|
|
36100
|
+
title: { __type: "String" };
|
|
36101
|
+
type: { __type: "flow_type" };
|
|
36102
|
+
};
|
|
36103
|
+
core_flow_mutation_response: {
|
|
36104
|
+
__typename: { __type: "String!" };
|
|
36105
|
+
affected_rows: { __type: "Int!" };
|
|
36106
|
+
returning: { __type: "[core_flow!]!" };
|
|
36107
|
+
};
|
|
36108
|
+
core_flow_on_conflict: {
|
|
36109
|
+
constraint: { __type: "core_flow_constraint!" };
|
|
36110
|
+
update_columns: { __type: "[core_flow_update_column!]!" };
|
|
36111
|
+
where: { __type: "core_flow_bool_exp" };
|
|
36112
|
+
};
|
|
36113
|
+
core_flow_order_by: {
|
|
36114
|
+
app_id: { __type: "order_by" };
|
|
36115
|
+
id: { __type: "order_by" };
|
|
36116
|
+
mapping_schema: { __type: "order_by" };
|
|
36117
|
+
setting_schema: { __type: "order_by" };
|
|
36118
|
+
title: { __type: "order_by" };
|
|
36119
|
+
type: { __type: "order_by" };
|
|
36120
|
+
};
|
|
36121
|
+
core_flow_pk_columns_input: { id: { __type: "uuid!" } };
|
|
36122
|
+
core_flow_prepend_input: {
|
|
36123
|
+
mapping_schema: { __type: "jsonb" };
|
|
36124
|
+
setting_schema: { __type: "jsonb" };
|
|
36125
|
+
};
|
|
36126
|
+
core_flow_set_input: {
|
|
36127
|
+
app_id: { __type: "String" };
|
|
36128
|
+
id: { __type: "uuid" };
|
|
36129
|
+
mapping_schema: { __type: "jsonb" };
|
|
36130
|
+
setting_schema: { __type: "jsonb" };
|
|
36131
|
+
title: { __type: "String" };
|
|
36132
|
+
type: { __type: "flow_type" };
|
|
36133
|
+
};
|
|
36134
|
+
core_flow_setting: {
|
|
36135
|
+
__typename: { __type: "String!" };
|
|
36136
|
+
account_id: { __type: "uuid" };
|
|
36137
|
+
booking_channel_id: { __type: "uuid" };
|
|
36138
|
+
connection_id: { __type: "uuid!" };
|
|
36139
|
+
contact_id: { __type: "uuid" };
|
|
36140
|
+
flow_id: { __type: "uuid!" };
|
|
36141
|
+
id: { __type: "uuid!" };
|
|
36142
|
+
listing_id: { __type: "uuid" };
|
|
36143
|
+
setting_key: { __type: "String!" };
|
|
36144
|
+
value: { __type: "jsonb"; __args: { path: "String" } };
|
|
36145
|
+
};
|
|
36146
|
+
core_flow_setting_aggregate: {
|
|
36147
|
+
__typename: { __type: "String!" };
|
|
36148
|
+
aggregate: { __type: "core_flow_setting_aggregate_fields" };
|
|
36149
|
+
nodes: { __type: "[core_flow_setting!]!" };
|
|
36150
|
+
};
|
|
36151
|
+
core_flow_setting_aggregate_fields: {
|
|
36152
|
+
__typename: { __type: "String!" };
|
|
36153
|
+
count: {
|
|
36154
|
+
__type: "Int!";
|
|
36155
|
+
__args: {
|
|
36156
|
+
columns: "[core_flow_setting_select_column!]";
|
|
36157
|
+
distinct: "Boolean";
|
|
36158
|
+
};
|
|
36159
|
+
};
|
|
36160
|
+
max: { __type: "core_flow_setting_max_fields" };
|
|
36161
|
+
min: { __type: "core_flow_setting_min_fields" };
|
|
36162
|
+
};
|
|
36163
|
+
core_flow_setting_append_input: { value: { __type: "jsonb" } };
|
|
36164
|
+
core_flow_setting_bool_exp: {
|
|
36165
|
+
_and: { __type: "[core_flow_setting_bool_exp!]" };
|
|
36166
|
+
_not: { __type: "core_flow_setting_bool_exp" };
|
|
36167
|
+
_or: { __type: "[core_flow_setting_bool_exp!]" };
|
|
36168
|
+
account_id: { __type: "uuid_comparison_exp" };
|
|
36169
|
+
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
36170
|
+
connection_id: { __type: "uuid_comparison_exp" };
|
|
36171
|
+
contact_id: { __type: "uuid_comparison_exp" };
|
|
36172
|
+
flow_id: { __type: "uuid_comparison_exp" };
|
|
36173
|
+
id: { __type: "uuid_comparison_exp" };
|
|
36174
|
+
listing_id: { __type: "uuid_comparison_exp" };
|
|
36175
|
+
setting_key: { __type: "String_comparison_exp" };
|
|
36176
|
+
value: { __type: "jsonb_comparison_exp" };
|
|
36177
|
+
};
|
|
36178
|
+
core_flow_setting_delete_at_path_input: { value: { __type: "[String!]" } };
|
|
36179
|
+
core_flow_setting_delete_elem_input: { value: { __type: "Int" } };
|
|
36180
|
+
core_flow_setting_delete_key_input: { value: { __type: "String" } };
|
|
36181
|
+
core_flow_setting_insert_input: {
|
|
36182
|
+
account_id: { __type: "uuid" };
|
|
36183
|
+
booking_channel_id: { __type: "uuid" };
|
|
36184
|
+
connection_id: { __type: "uuid" };
|
|
36185
|
+
contact_id: { __type: "uuid" };
|
|
36186
|
+
flow_id: { __type: "uuid" };
|
|
36187
|
+
id: { __type: "uuid" };
|
|
36188
|
+
listing_id: { __type: "uuid" };
|
|
36189
|
+
setting_key: { __type: "String" };
|
|
36190
|
+
value: { __type: "jsonb" };
|
|
36191
|
+
};
|
|
36192
|
+
core_flow_setting_max_fields: {
|
|
36193
|
+
__typename: { __type: "String!" };
|
|
36194
|
+
account_id: { __type: "uuid" };
|
|
36195
|
+
booking_channel_id: { __type: "uuid" };
|
|
36196
|
+
connection_id: { __type: "uuid" };
|
|
36197
|
+
contact_id: { __type: "uuid" };
|
|
36198
|
+
flow_id: { __type: "uuid" };
|
|
36199
|
+
id: { __type: "uuid" };
|
|
36200
|
+
listing_id: { __type: "uuid" };
|
|
36201
|
+
setting_key: { __type: "String" };
|
|
36202
|
+
};
|
|
36203
|
+
core_flow_setting_min_fields: {
|
|
36204
|
+
__typename: { __type: "String!" };
|
|
36205
|
+
account_id: { __type: "uuid" };
|
|
36206
|
+
booking_channel_id: { __type: "uuid" };
|
|
36207
|
+
connection_id: { __type: "uuid" };
|
|
36208
|
+
contact_id: { __type: "uuid" };
|
|
36209
|
+
flow_id: { __type: "uuid" };
|
|
36210
|
+
id: { __type: "uuid" };
|
|
36211
|
+
listing_id: { __type: "uuid" };
|
|
36212
|
+
setting_key: { __type: "String" };
|
|
36213
|
+
};
|
|
36214
|
+
core_flow_setting_mutation_response: {
|
|
36215
|
+
__typename: { __type: "String!" };
|
|
36216
|
+
affected_rows: { __type: "Int!" };
|
|
36217
|
+
returning: { __type: "[core_flow_setting!]!" };
|
|
36218
|
+
};
|
|
36219
|
+
core_flow_setting_on_conflict: {
|
|
36220
|
+
constraint: { __type: "core_flow_setting_constraint!" };
|
|
36221
|
+
update_columns: { __type: "[core_flow_setting_update_column!]!" };
|
|
36222
|
+
where: { __type: "core_flow_setting_bool_exp" };
|
|
36223
|
+
};
|
|
36224
|
+
core_flow_setting_order_by: {
|
|
36225
|
+
account_id: { __type: "order_by" };
|
|
36226
|
+
booking_channel_id: { __type: "order_by" };
|
|
36227
|
+
connection_id: { __type: "order_by" };
|
|
36228
|
+
contact_id: { __type: "order_by" };
|
|
36229
|
+
flow_id: { __type: "order_by" };
|
|
36230
|
+
id: { __type: "order_by" };
|
|
36231
|
+
listing_id: { __type: "order_by" };
|
|
36232
|
+
setting_key: { __type: "order_by" };
|
|
36233
|
+
value: { __type: "order_by" };
|
|
36234
|
+
};
|
|
36235
|
+
core_flow_setting_pk_columns_input: { id: { __type: "uuid!" } };
|
|
36236
|
+
core_flow_setting_prepend_input: { value: { __type: "jsonb" } };
|
|
36237
|
+
core_flow_setting_set_input: {
|
|
36238
|
+
account_id: { __type: "uuid" };
|
|
36239
|
+
booking_channel_id: { __type: "uuid" };
|
|
36240
|
+
connection_id: { __type: "uuid" };
|
|
36241
|
+
contact_id: { __type: "uuid" };
|
|
36242
|
+
flow_id: { __type: "uuid" };
|
|
36243
|
+
id: { __type: "uuid" };
|
|
36244
|
+
listing_id: { __type: "uuid" };
|
|
36245
|
+
setting_key: { __type: "String" };
|
|
36246
|
+
value: { __type: "jsonb" };
|
|
36247
|
+
};
|
|
36248
|
+
core_flow_setting_stream_cursor_input: {
|
|
36249
|
+
initial_value: { __type: "core_flow_setting_stream_cursor_value_input!" };
|
|
36250
|
+
ordering: { __type: "cursor_ordering" };
|
|
36251
|
+
};
|
|
36252
|
+
core_flow_setting_stream_cursor_value_input: {
|
|
36253
|
+
account_id: { __type: "uuid" };
|
|
36254
|
+
booking_channel_id: { __type: "uuid" };
|
|
36255
|
+
connection_id: { __type: "uuid" };
|
|
36256
|
+
contact_id: { __type: "uuid" };
|
|
36257
|
+
flow_id: { __type: "uuid" };
|
|
36258
|
+
id: { __type: "uuid" };
|
|
36259
|
+
listing_id: { __type: "uuid" };
|
|
36260
|
+
setting_key: { __type: "String" };
|
|
36261
|
+
value: { __type: "jsonb" };
|
|
36262
|
+
};
|
|
36263
|
+
core_flow_setting_updates: {
|
|
36264
|
+
_append: { __type: "core_flow_setting_append_input" };
|
|
36265
|
+
_delete_at_path: { __type: "core_flow_setting_delete_at_path_input" };
|
|
36266
|
+
_delete_elem: { __type: "core_flow_setting_delete_elem_input" };
|
|
36267
|
+
_delete_key: { __type: "core_flow_setting_delete_key_input" };
|
|
36268
|
+
_prepend: { __type: "core_flow_setting_prepend_input" };
|
|
36269
|
+
_set: { __type: "core_flow_setting_set_input" };
|
|
36270
|
+
where: { __type: "core_flow_setting_bool_exp!" };
|
|
36271
|
+
};
|
|
36272
|
+
core_flow_stream_cursor_input: {
|
|
36273
|
+
initial_value: { __type: "core_flow_stream_cursor_value_input!" };
|
|
36274
|
+
ordering: { __type: "cursor_ordering" };
|
|
36275
|
+
};
|
|
36276
|
+
core_flow_stream_cursor_value_input: {
|
|
36277
|
+
app_id: { __type: "String" };
|
|
36278
|
+
id: { __type: "uuid" };
|
|
36279
|
+
mapping_schema: { __type: "jsonb" };
|
|
36280
|
+
setting_schema: { __type: "jsonb" };
|
|
36281
|
+
title: { __type: "String" };
|
|
36282
|
+
type: { __type: "flow_type" };
|
|
36283
|
+
};
|
|
36284
|
+
core_flow_updates: {
|
|
36285
|
+
_append: { __type: "core_flow_append_input" };
|
|
36286
|
+
_delete_at_path: { __type: "core_flow_delete_at_path_input" };
|
|
36287
|
+
_delete_elem: { __type: "core_flow_delete_elem_input" };
|
|
36288
|
+
_delete_key: { __type: "core_flow_delete_key_input" };
|
|
36289
|
+
_prepend: { __type: "core_flow_prepend_input" };
|
|
36290
|
+
_set: { __type: "core_flow_set_input" };
|
|
36291
|
+
where: { __type: "core_flow_bool_exp!" };
|
|
36292
|
+
};
|
|
35365
36293
|
currency: { __typename: { __type: "String!" }; name: { __type: "String!" } };
|
|
35366
36294
|
currency_aggregate: {
|
|
35367
36295
|
__typename: { __type: "String!" };
|
|
@@ -36854,6 +37782,17 @@ export declare const generatedSchema: {
|
|
|
36854
37782
|
_set: { __type: "file_storage_set_input" };
|
|
36855
37783
|
where: { __type: "file_storage_bool_exp!" };
|
|
36856
37784
|
};
|
|
37785
|
+
flow_type_comparison_exp: {
|
|
37786
|
+
_eq: { __type: "flow_type" };
|
|
37787
|
+
_gt: { __type: "flow_type" };
|
|
37788
|
+
_gte: { __type: "flow_type" };
|
|
37789
|
+
_in: { __type: "[flow_type!]" };
|
|
37790
|
+
_is_null: { __type: "Boolean" };
|
|
37791
|
+
_lt: { __type: "flow_type" };
|
|
37792
|
+
_lte: { __type: "flow_type" };
|
|
37793
|
+
_neq: { __type: "flow_type" };
|
|
37794
|
+
_nin: { __type: "[flow_type!]" };
|
|
37795
|
+
};
|
|
36857
37796
|
issueConnectionsNeedVersionUpgradeReturnType: {
|
|
36858
37797
|
__typename: { __type: "String!" };
|
|
36859
37798
|
appIcon: { __type: "String!" };
|
|
@@ -41804,6 +42743,27 @@ export declare const generatedSchema: {
|
|
|
41804
42743
|
__type: "core_change_source_link";
|
|
41805
42744
|
__args: { id: "uuid!" };
|
|
41806
42745
|
};
|
|
42746
|
+
delete_core_flow: {
|
|
42747
|
+
__type: "core_flow_mutation_response";
|
|
42748
|
+
__args: { where: "core_flow_bool_exp!" };
|
|
42749
|
+
};
|
|
42750
|
+
delete_core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
42751
|
+
delete_core_flow_mapping: {
|
|
42752
|
+
__type: "core_flow_mapping_mutation_response";
|
|
42753
|
+
__args: { where: "core_flow_mapping_bool_exp!" };
|
|
42754
|
+
};
|
|
42755
|
+
delete_core_flow_mapping_by_pk: {
|
|
42756
|
+
__type: "core_flow_mapping";
|
|
42757
|
+
__args: { id: "uuid!" };
|
|
42758
|
+
};
|
|
42759
|
+
delete_core_flow_setting: {
|
|
42760
|
+
__type: "core_flow_setting_mutation_response";
|
|
42761
|
+
__args: { where: "core_flow_setting_bool_exp!" };
|
|
42762
|
+
};
|
|
42763
|
+
delete_core_flow_setting_by_pk: {
|
|
42764
|
+
__type: "core_flow_setting";
|
|
42765
|
+
__args: { id: "uuid!" };
|
|
42766
|
+
};
|
|
41807
42767
|
delete_currency: {
|
|
41808
42768
|
__type: "currency_mutation_response";
|
|
41809
42769
|
__args: { where: "currency_bool_exp!" };
|
|
@@ -43396,6 +44356,48 @@ export declare const generatedSchema: {
|
|
|
43396
44356
|
on_conflict: "core_change_source_link_on_conflict";
|
|
43397
44357
|
};
|
|
43398
44358
|
};
|
|
44359
|
+
insert_core_flow: {
|
|
44360
|
+
__type: "core_flow_mutation_response";
|
|
44361
|
+
__args: {
|
|
44362
|
+
objects: "[core_flow_insert_input!]!";
|
|
44363
|
+
on_conflict: "core_flow_on_conflict";
|
|
44364
|
+
};
|
|
44365
|
+
};
|
|
44366
|
+
insert_core_flow_mapping: {
|
|
44367
|
+
__type: "core_flow_mapping_mutation_response";
|
|
44368
|
+
__args: {
|
|
44369
|
+
objects: "[core_flow_mapping_insert_input!]!";
|
|
44370
|
+
on_conflict: "core_flow_mapping_on_conflict";
|
|
44371
|
+
};
|
|
44372
|
+
};
|
|
44373
|
+
insert_core_flow_mapping_one: {
|
|
44374
|
+
__type: "core_flow_mapping";
|
|
44375
|
+
__args: {
|
|
44376
|
+
object: "core_flow_mapping_insert_input!";
|
|
44377
|
+
on_conflict: "core_flow_mapping_on_conflict";
|
|
44378
|
+
};
|
|
44379
|
+
};
|
|
44380
|
+
insert_core_flow_one: {
|
|
44381
|
+
__type: "core_flow";
|
|
44382
|
+
__args: {
|
|
44383
|
+
object: "core_flow_insert_input!";
|
|
44384
|
+
on_conflict: "core_flow_on_conflict";
|
|
44385
|
+
};
|
|
44386
|
+
};
|
|
44387
|
+
insert_core_flow_setting: {
|
|
44388
|
+
__type: "core_flow_setting_mutation_response";
|
|
44389
|
+
__args: {
|
|
44390
|
+
objects: "[core_flow_setting_insert_input!]!";
|
|
44391
|
+
on_conflict: "core_flow_setting_on_conflict";
|
|
44392
|
+
};
|
|
44393
|
+
};
|
|
44394
|
+
insert_core_flow_setting_one: {
|
|
44395
|
+
__type: "core_flow_setting";
|
|
44396
|
+
__args: {
|
|
44397
|
+
object: "core_flow_setting_insert_input!";
|
|
44398
|
+
on_conflict: "core_flow_setting_on_conflict";
|
|
44399
|
+
};
|
|
44400
|
+
};
|
|
43399
44401
|
insert_currency: {
|
|
43400
44402
|
__type: "currency_mutation_response";
|
|
43401
44403
|
__args: {
|
|
@@ -45804,6 +46806,90 @@ export declare const generatedSchema: {
|
|
|
45804
46806
|
__type: "[core_change_source_link_mutation_response]";
|
|
45805
46807
|
__args: { updates: "[core_change_source_link_updates!]!" };
|
|
45806
46808
|
};
|
|
46809
|
+
update_core_flow: {
|
|
46810
|
+
__type: "core_flow_mutation_response";
|
|
46811
|
+
__args: {
|
|
46812
|
+
_append: "core_flow_append_input";
|
|
46813
|
+
_delete_at_path: "core_flow_delete_at_path_input";
|
|
46814
|
+
_delete_elem: "core_flow_delete_elem_input";
|
|
46815
|
+
_delete_key: "core_flow_delete_key_input";
|
|
46816
|
+
_prepend: "core_flow_prepend_input";
|
|
46817
|
+
_set: "core_flow_set_input";
|
|
46818
|
+
where: "core_flow_bool_exp!";
|
|
46819
|
+
};
|
|
46820
|
+
};
|
|
46821
|
+
update_core_flow_by_pk: {
|
|
46822
|
+
__type: "core_flow";
|
|
46823
|
+
__args: {
|
|
46824
|
+
_append: "core_flow_append_input";
|
|
46825
|
+
_delete_at_path: "core_flow_delete_at_path_input";
|
|
46826
|
+
_delete_elem: "core_flow_delete_elem_input";
|
|
46827
|
+
_delete_key: "core_flow_delete_key_input";
|
|
46828
|
+
_prepend: "core_flow_prepend_input";
|
|
46829
|
+
_set: "core_flow_set_input";
|
|
46830
|
+
pk_columns: "core_flow_pk_columns_input!";
|
|
46831
|
+
};
|
|
46832
|
+
};
|
|
46833
|
+
update_core_flow_many: {
|
|
46834
|
+
__type: "[core_flow_mutation_response]";
|
|
46835
|
+
__args: { updates: "[core_flow_updates!]!" };
|
|
46836
|
+
};
|
|
46837
|
+
update_core_flow_mapping: {
|
|
46838
|
+
__type: "core_flow_mapping_mutation_response";
|
|
46839
|
+
__args: {
|
|
46840
|
+
_append: "core_flow_mapping_append_input";
|
|
46841
|
+
_delete_at_path: "core_flow_mapping_delete_at_path_input";
|
|
46842
|
+
_delete_elem: "core_flow_mapping_delete_elem_input";
|
|
46843
|
+
_delete_key: "core_flow_mapping_delete_key_input";
|
|
46844
|
+
_prepend: "core_flow_mapping_prepend_input";
|
|
46845
|
+
_set: "core_flow_mapping_set_input";
|
|
46846
|
+
where: "core_flow_mapping_bool_exp!";
|
|
46847
|
+
};
|
|
46848
|
+
};
|
|
46849
|
+
update_core_flow_mapping_by_pk: {
|
|
46850
|
+
__type: "core_flow_mapping";
|
|
46851
|
+
__args: {
|
|
46852
|
+
_append: "core_flow_mapping_append_input";
|
|
46853
|
+
_delete_at_path: "core_flow_mapping_delete_at_path_input";
|
|
46854
|
+
_delete_elem: "core_flow_mapping_delete_elem_input";
|
|
46855
|
+
_delete_key: "core_flow_mapping_delete_key_input";
|
|
46856
|
+
_prepend: "core_flow_mapping_prepend_input";
|
|
46857
|
+
_set: "core_flow_mapping_set_input";
|
|
46858
|
+
pk_columns: "core_flow_mapping_pk_columns_input!";
|
|
46859
|
+
};
|
|
46860
|
+
};
|
|
46861
|
+
update_core_flow_mapping_many: {
|
|
46862
|
+
__type: "[core_flow_mapping_mutation_response]";
|
|
46863
|
+
__args: { updates: "[core_flow_mapping_updates!]!" };
|
|
46864
|
+
};
|
|
46865
|
+
update_core_flow_setting: {
|
|
46866
|
+
__type: "core_flow_setting_mutation_response";
|
|
46867
|
+
__args: {
|
|
46868
|
+
_append: "core_flow_setting_append_input";
|
|
46869
|
+
_delete_at_path: "core_flow_setting_delete_at_path_input";
|
|
46870
|
+
_delete_elem: "core_flow_setting_delete_elem_input";
|
|
46871
|
+
_delete_key: "core_flow_setting_delete_key_input";
|
|
46872
|
+
_prepend: "core_flow_setting_prepend_input";
|
|
46873
|
+
_set: "core_flow_setting_set_input";
|
|
46874
|
+
where: "core_flow_setting_bool_exp!";
|
|
46875
|
+
};
|
|
46876
|
+
};
|
|
46877
|
+
update_core_flow_setting_by_pk: {
|
|
46878
|
+
__type: "core_flow_setting";
|
|
46879
|
+
__args: {
|
|
46880
|
+
_append: "core_flow_setting_append_input";
|
|
46881
|
+
_delete_at_path: "core_flow_setting_delete_at_path_input";
|
|
46882
|
+
_delete_elem: "core_flow_setting_delete_elem_input";
|
|
46883
|
+
_delete_key: "core_flow_setting_delete_key_input";
|
|
46884
|
+
_prepend: "core_flow_setting_prepend_input";
|
|
46885
|
+
_set: "core_flow_setting_set_input";
|
|
46886
|
+
pk_columns: "core_flow_setting_pk_columns_input!";
|
|
46887
|
+
};
|
|
46888
|
+
};
|
|
46889
|
+
update_core_flow_setting_many: {
|
|
46890
|
+
__type: "[core_flow_setting_mutation_response]";
|
|
46891
|
+
__args: { updates: "[core_flow_setting_updates!]!" };
|
|
46892
|
+
};
|
|
45807
46893
|
update_currency: {
|
|
45808
46894
|
__type: "currency_mutation_response";
|
|
45809
46895
|
__args: { _set: "currency_set_input"; where: "currency_bool_exp!" };
|
|
@@ -52105,6 +53191,75 @@ export declare const generatedSchema: {
|
|
|
52105
53191
|
__type: "core_change_source_link";
|
|
52106
53192
|
__args: { id: "uuid!" };
|
|
52107
53193
|
};
|
|
53194
|
+
core_flow: {
|
|
53195
|
+
__type: "[core_flow!]!";
|
|
53196
|
+
__args: {
|
|
53197
|
+
distinct_on: "[core_flow_select_column!]";
|
|
53198
|
+
limit: "Int";
|
|
53199
|
+
offset: "Int";
|
|
53200
|
+
order_by: "[core_flow_order_by!]";
|
|
53201
|
+
where: "core_flow_bool_exp";
|
|
53202
|
+
};
|
|
53203
|
+
};
|
|
53204
|
+
core_flow_aggregate: {
|
|
53205
|
+
__type: "core_flow_aggregate!";
|
|
53206
|
+
__args: {
|
|
53207
|
+
distinct_on: "[core_flow_select_column!]";
|
|
53208
|
+
limit: "Int";
|
|
53209
|
+
offset: "Int";
|
|
53210
|
+
order_by: "[core_flow_order_by!]";
|
|
53211
|
+
where: "core_flow_bool_exp";
|
|
53212
|
+
};
|
|
53213
|
+
};
|
|
53214
|
+
core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
53215
|
+
core_flow_mapping: {
|
|
53216
|
+
__type: "[core_flow_mapping!]!";
|
|
53217
|
+
__args: {
|
|
53218
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
53219
|
+
limit: "Int";
|
|
53220
|
+
offset: "Int";
|
|
53221
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
53222
|
+
where: "core_flow_mapping_bool_exp";
|
|
53223
|
+
};
|
|
53224
|
+
};
|
|
53225
|
+
core_flow_mapping_aggregate: {
|
|
53226
|
+
__type: "core_flow_mapping_aggregate!";
|
|
53227
|
+
__args: {
|
|
53228
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
53229
|
+
limit: "Int";
|
|
53230
|
+
offset: "Int";
|
|
53231
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
53232
|
+
where: "core_flow_mapping_bool_exp";
|
|
53233
|
+
};
|
|
53234
|
+
};
|
|
53235
|
+
core_flow_mapping_by_pk: {
|
|
53236
|
+
__type: "core_flow_mapping";
|
|
53237
|
+
__args: { id: "uuid!" };
|
|
53238
|
+
};
|
|
53239
|
+
core_flow_setting: {
|
|
53240
|
+
__type: "[core_flow_setting!]!";
|
|
53241
|
+
__args: {
|
|
53242
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
53243
|
+
limit: "Int";
|
|
53244
|
+
offset: "Int";
|
|
53245
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
53246
|
+
where: "core_flow_setting_bool_exp";
|
|
53247
|
+
};
|
|
53248
|
+
};
|
|
53249
|
+
core_flow_setting_aggregate: {
|
|
53250
|
+
__type: "core_flow_setting_aggregate!";
|
|
53251
|
+
__args: {
|
|
53252
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
53253
|
+
limit: "Int";
|
|
53254
|
+
offset: "Int";
|
|
53255
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
53256
|
+
where: "core_flow_setting_bool_exp";
|
|
53257
|
+
};
|
|
53258
|
+
};
|
|
53259
|
+
core_flow_setting_by_pk: {
|
|
53260
|
+
__type: "core_flow_setting";
|
|
53261
|
+
__args: { id: "uuid!" };
|
|
53262
|
+
};
|
|
52108
53263
|
currency: {
|
|
52109
53264
|
__type: "[currency!]!";
|
|
52110
53265
|
__args: {
|
|
@@ -60772,6 +61927,99 @@ export declare const generatedSchema: {
|
|
|
60772
61927
|
where: "core_change_source_link_bool_exp";
|
|
60773
61928
|
};
|
|
60774
61929
|
};
|
|
61930
|
+
core_flow: {
|
|
61931
|
+
__type: "[core_flow!]!";
|
|
61932
|
+
__args: {
|
|
61933
|
+
distinct_on: "[core_flow_select_column!]";
|
|
61934
|
+
limit: "Int";
|
|
61935
|
+
offset: "Int";
|
|
61936
|
+
order_by: "[core_flow_order_by!]";
|
|
61937
|
+
where: "core_flow_bool_exp";
|
|
61938
|
+
};
|
|
61939
|
+
};
|
|
61940
|
+
core_flow_aggregate: {
|
|
61941
|
+
__type: "core_flow_aggregate!";
|
|
61942
|
+
__args: {
|
|
61943
|
+
distinct_on: "[core_flow_select_column!]";
|
|
61944
|
+
limit: "Int";
|
|
61945
|
+
offset: "Int";
|
|
61946
|
+
order_by: "[core_flow_order_by!]";
|
|
61947
|
+
where: "core_flow_bool_exp";
|
|
61948
|
+
};
|
|
61949
|
+
};
|
|
61950
|
+
core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
61951
|
+
core_flow_mapping: {
|
|
61952
|
+
__type: "[core_flow_mapping!]!";
|
|
61953
|
+
__args: {
|
|
61954
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
61955
|
+
limit: "Int";
|
|
61956
|
+
offset: "Int";
|
|
61957
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
61958
|
+
where: "core_flow_mapping_bool_exp";
|
|
61959
|
+
};
|
|
61960
|
+
};
|
|
61961
|
+
core_flow_mapping_aggregate: {
|
|
61962
|
+
__type: "core_flow_mapping_aggregate!";
|
|
61963
|
+
__args: {
|
|
61964
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
61965
|
+
limit: "Int";
|
|
61966
|
+
offset: "Int";
|
|
61967
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
61968
|
+
where: "core_flow_mapping_bool_exp";
|
|
61969
|
+
};
|
|
61970
|
+
};
|
|
61971
|
+
core_flow_mapping_by_pk: {
|
|
61972
|
+
__type: "core_flow_mapping";
|
|
61973
|
+
__args: { id: "uuid!" };
|
|
61974
|
+
};
|
|
61975
|
+
core_flow_mapping_stream: {
|
|
61976
|
+
__type: "[core_flow_mapping!]!";
|
|
61977
|
+
__args: {
|
|
61978
|
+
batch_size: "Int!";
|
|
61979
|
+
cursor: "[core_flow_mapping_stream_cursor_input]!";
|
|
61980
|
+
where: "core_flow_mapping_bool_exp";
|
|
61981
|
+
};
|
|
61982
|
+
};
|
|
61983
|
+
core_flow_setting: {
|
|
61984
|
+
__type: "[core_flow_setting!]!";
|
|
61985
|
+
__args: {
|
|
61986
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
61987
|
+
limit: "Int";
|
|
61988
|
+
offset: "Int";
|
|
61989
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
61990
|
+
where: "core_flow_setting_bool_exp";
|
|
61991
|
+
};
|
|
61992
|
+
};
|
|
61993
|
+
core_flow_setting_aggregate: {
|
|
61994
|
+
__type: "core_flow_setting_aggregate!";
|
|
61995
|
+
__args: {
|
|
61996
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
61997
|
+
limit: "Int";
|
|
61998
|
+
offset: "Int";
|
|
61999
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
62000
|
+
where: "core_flow_setting_bool_exp";
|
|
62001
|
+
};
|
|
62002
|
+
};
|
|
62003
|
+
core_flow_setting_by_pk: {
|
|
62004
|
+
__type: "core_flow_setting";
|
|
62005
|
+
__args: { id: "uuid!" };
|
|
62006
|
+
};
|
|
62007
|
+
core_flow_setting_stream: {
|
|
62008
|
+
__type: "[core_flow_setting!]!";
|
|
62009
|
+
__args: {
|
|
62010
|
+
batch_size: "Int!";
|
|
62011
|
+
cursor: "[core_flow_setting_stream_cursor_input]!";
|
|
62012
|
+
where: "core_flow_setting_bool_exp";
|
|
62013
|
+
};
|
|
62014
|
+
};
|
|
62015
|
+
core_flow_stream: {
|
|
62016
|
+
__type: "[core_flow!]!";
|
|
62017
|
+
__args: {
|
|
62018
|
+
batch_size: "Int!";
|
|
62019
|
+
cursor: "[core_flow_stream_cursor_input]!";
|
|
62020
|
+
where: "core_flow_bool_exp";
|
|
62021
|
+
};
|
|
62022
|
+
};
|
|
60775
62023
|
currency: {
|
|
60776
62024
|
__type: "[currency!]!";
|
|
60777
62025
|
__args: {
|
|
@@ -76859,6 +78107,264 @@ export interface core_change_source_link_mutation_response {
|
|
|
76859
78107
|
returning: Array<core_change_source_link>;
|
|
76860
78108
|
}
|
|
76861
78109
|
|
|
78110
|
+
/**
|
|
78111
|
+
* columns and relationships of "core.flow"
|
|
78112
|
+
*/
|
|
78113
|
+
export interface core_flow {
|
|
78114
|
+
__typename?: "core_flow";
|
|
78115
|
+
app_id: ScalarsEnums["String"];
|
|
78116
|
+
id: ScalarsEnums["uuid"];
|
|
78117
|
+
mapping_schema: (args?: {
|
|
78118
|
+
/**
|
|
78119
|
+
* JSON select path
|
|
78120
|
+
*/
|
|
78121
|
+
path?: Maybe<Scalars["String"]>;
|
|
78122
|
+
}) => ScalarsEnums["jsonb"];
|
|
78123
|
+
setting_schema: (args?: {
|
|
78124
|
+
/**
|
|
78125
|
+
* JSON select path
|
|
78126
|
+
*/
|
|
78127
|
+
path?: Maybe<Scalars["String"]>;
|
|
78128
|
+
}) => ScalarsEnums["jsonb"];
|
|
78129
|
+
title: ScalarsEnums["String"];
|
|
78130
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
78131
|
+
}
|
|
78132
|
+
|
|
78133
|
+
/**
|
|
78134
|
+
* aggregated selection of "core.flow"
|
|
78135
|
+
*/
|
|
78136
|
+
export interface core_flow_aggregate {
|
|
78137
|
+
__typename?: "core_flow_aggregate";
|
|
78138
|
+
aggregate?: Maybe<core_flow_aggregate_fields>;
|
|
78139
|
+
nodes: Array<core_flow>;
|
|
78140
|
+
}
|
|
78141
|
+
|
|
78142
|
+
/**
|
|
78143
|
+
* aggregate fields of "core.flow"
|
|
78144
|
+
*/
|
|
78145
|
+
export interface core_flow_aggregate_fields {
|
|
78146
|
+
__typename?: "core_flow_aggregate_fields";
|
|
78147
|
+
count: (args?: {
|
|
78148
|
+
columns?: Maybe<Array<core_flow_select_column>>;
|
|
78149
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
78150
|
+
}) => ScalarsEnums["Int"];
|
|
78151
|
+
max?: Maybe<core_flow_max_fields>;
|
|
78152
|
+
min?: Maybe<core_flow_min_fields>;
|
|
78153
|
+
}
|
|
78154
|
+
|
|
78155
|
+
/**
|
|
78156
|
+
* columns and relationships of "core.flow_mapping"
|
|
78157
|
+
*/
|
|
78158
|
+
export interface core_flow_mapping {
|
|
78159
|
+
__typename?: "core_flow_mapping";
|
|
78160
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78161
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78162
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78163
|
+
flow_id: ScalarsEnums["uuid"];
|
|
78164
|
+
id: ScalarsEnums["uuid"];
|
|
78165
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78166
|
+
mapping_key: ScalarsEnums["String"];
|
|
78167
|
+
source_id: ScalarsEnums["uuid"];
|
|
78168
|
+
value: (args?: {
|
|
78169
|
+
/**
|
|
78170
|
+
* JSON select path
|
|
78171
|
+
*/
|
|
78172
|
+
path?: Maybe<Scalars["String"]>;
|
|
78173
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
78174
|
+
}
|
|
78175
|
+
|
|
78176
|
+
/**
|
|
78177
|
+
* aggregated selection of "core.flow_mapping"
|
|
78178
|
+
*/
|
|
78179
|
+
export interface core_flow_mapping_aggregate {
|
|
78180
|
+
__typename?: "core_flow_mapping_aggregate";
|
|
78181
|
+
aggregate?: Maybe<core_flow_mapping_aggregate_fields>;
|
|
78182
|
+
nodes: Array<core_flow_mapping>;
|
|
78183
|
+
}
|
|
78184
|
+
|
|
78185
|
+
/**
|
|
78186
|
+
* aggregate fields of "core.flow_mapping"
|
|
78187
|
+
*/
|
|
78188
|
+
export interface core_flow_mapping_aggregate_fields {
|
|
78189
|
+
__typename?: "core_flow_mapping_aggregate_fields";
|
|
78190
|
+
count: (args?: {
|
|
78191
|
+
columns?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
78192
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
78193
|
+
}) => ScalarsEnums["Int"];
|
|
78194
|
+
max?: Maybe<core_flow_mapping_max_fields>;
|
|
78195
|
+
min?: Maybe<core_flow_mapping_min_fields>;
|
|
78196
|
+
}
|
|
78197
|
+
|
|
78198
|
+
/**
|
|
78199
|
+
* aggregate max on columns
|
|
78200
|
+
*/
|
|
78201
|
+
export interface core_flow_mapping_max_fields {
|
|
78202
|
+
__typename?: "core_flow_mapping_max_fields";
|
|
78203
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78204
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78205
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78206
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78207
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78208
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78209
|
+
mapping_key?: Maybe<ScalarsEnums["String"]>;
|
|
78210
|
+
source_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78211
|
+
}
|
|
78212
|
+
|
|
78213
|
+
/**
|
|
78214
|
+
* aggregate min on columns
|
|
78215
|
+
*/
|
|
78216
|
+
export interface core_flow_mapping_min_fields {
|
|
78217
|
+
__typename?: "core_flow_mapping_min_fields";
|
|
78218
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78219
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78220
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78221
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78222
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78223
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78224
|
+
mapping_key?: Maybe<ScalarsEnums["String"]>;
|
|
78225
|
+
source_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78226
|
+
}
|
|
78227
|
+
|
|
78228
|
+
/**
|
|
78229
|
+
* response of any mutation on the table "core.flow_mapping"
|
|
78230
|
+
*/
|
|
78231
|
+
export interface core_flow_mapping_mutation_response {
|
|
78232
|
+
__typename?: "core_flow_mapping_mutation_response";
|
|
78233
|
+
/**
|
|
78234
|
+
* number of rows affected by the mutation
|
|
78235
|
+
*/
|
|
78236
|
+
affected_rows: ScalarsEnums["Int"];
|
|
78237
|
+
/**
|
|
78238
|
+
* data from the rows affected by the mutation
|
|
78239
|
+
*/
|
|
78240
|
+
returning: Array<core_flow_mapping>;
|
|
78241
|
+
}
|
|
78242
|
+
|
|
78243
|
+
/**
|
|
78244
|
+
* aggregate max on columns
|
|
78245
|
+
*/
|
|
78246
|
+
export interface core_flow_max_fields {
|
|
78247
|
+
__typename?: "core_flow_max_fields";
|
|
78248
|
+
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
78249
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78250
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
78251
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
78252
|
+
}
|
|
78253
|
+
|
|
78254
|
+
/**
|
|
78255
|
+
* aggregate min on columns
|
|
78256
|
+
*/
|
|
78257
|
+
export interface core_flow_min_fields {
|
|
78258
|
+
__typename?: "core_flow_min_fields";
|
|
78259
|
+
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
78260
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78261
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
78262
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
78263
|
+
}
|
|
78264
|
+
|
|
78265
|
+
/**
|
|
78266
|
+
* response of any mutation on the table "core.flow"
|
|
78267
|
+
*/
|
|
78268
|
+
export interface core_flow_mutation_response {
|
|
78269
|
+
__typename?: "core_flow_mutation_response";
|
|
78270
|
+
/**
|
|
78271
|
+
* number of rows affected by the mutation
|
|
78272
|
+
*/
|
|
78273
|
+
affected_rows: ScalarsEnums["Int"];
|
|
78274
|
+
/**
|
|
78275
|
+
* data from the rows affected by the mutation
|
|
78276
|
+
*/
|
|
78277
|
+
returning: Array<core_flow>;
|
|
78278
|
+
}
|
|
78279
|
+
|
|
78280
|
+
/**
|
|
78281
|
+
* columns and relationships of "core.flow_setting"
|
|
78282
|
+
*/
|
|
78283
|
+
export interface core_flow_setting {
|
|
78284
|
+
__typename?: "core_flow_setting";
|
|
78285
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78286
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78287
|
+
connection_id: ScalarsEnums["uuid"];
|
|
78288
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78289
|
+
flow_id: ScalarsEnums["uuid"];
|
|
78290
|
+
id: ScalarsEnums["uuid"];
|
|
78291
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78292
|
+
setting_key: ScalarsEnums["String"];
|
|
78293
|
+
value: (args?: {
|
|
78294
|
+
/**
|
|
78295
|
+
* JSON select path
|
|
78296
|
+
*/
|
|
78297
|
+
path?: Maybe<Scalars["String"]>;
|
|
78298
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
78299
|
+
}
|
|
78300
|
+
|
|
78301
|
+
/**
|
|
78302
|
+
* aggregated selection of "core.flow_setting"
|
|
78303
|
+
*/
|
|
78304
|
+
export interface core_flow_setting_aggregate {
|
|
78305
|
+
__typename?: "core_flow_setting_aggregate";
|
|
78306
|
+
aggregate?: Maybe<core_flow_setting_aggregate_fields>;
|
|
78307
|
+
nodes: Array<core_flow_setting>;
|
|
78308
|
+
}
|
|
78309
|
+
|
|
78310
|
+
/**
|
|
78311
|
+
* aggregate fields of "core.flow_setting"
|
|
78312
|
+
*/
|
|
78313
|
+
export interface core_flow_setting_aggregate_fields {
|
|
78314
|
+
__typename?: "core_flow_setting_aggregate_fields";
|
|
78315
|
+
count: (args?: {
|
|
78316
|
+
columns?: Maybe<Array<core_flow_setting_select_column>>;
|
|
78317
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
78318
|
+
}) => ScalarsEnums["Int"];
|
|
78319
|
+
max?: Maybe<core_flow_setting_max_fields>;
|
|
78320
|
+
min?: Maybe<core_flow_setting_min_fields>;
|
|
78321
|
+
}
|
|
78322
|
+
|
|
78323
|
+
/**
|
|
78324
|
+
* aggregate max on columns
|
|
78325
|
+
*/
|
|
78326
|
+
export interface core_flow_setting_max_fields {
|
|
78327
|
+
__typename?: "core_flow_setting_max_fields";
|
|
78328
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78329
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78330
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78331
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78332
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78333
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78334
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78335
|
+
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
78336
|
+
}
|
|
78337
|
+
|
|
78338
|
+
/**
|
|
78339
|
+
* aggregate min on columns
|
|
78340
|
+
*/
|
|
78341
|
+
export interface core_flow_setting_min_fields {
|
|
78342
|
+
__typename?: "core_flow_setting_min_fields";
|
|
78343
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78344
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78345
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78346
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78347
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78348
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78349
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78350
|
+
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
78351
|
+
}
|
|
78352
|
+
|
|
78353
|
+
/**
|
|
78354
|
+
* response of any mutation on the table "core.flow_setting"
|
|
78355
|
+
*/
|
|
78356
|
+
export interface core_flow_setting_mutation_response {
|
|
78357
|
+
__typename?: "core_flow_setting_mutation_response";
|
|
78358
|
+
/**
|
|
78359
|
+
* number of rows affected by the mutation
|
|
78360
|
+
*/
|
|
78361
|
+
affected_rows: ScalarsEnums["Int"];
|
|
78362
|
+
/**
|
|
78363
|
+
* data from the rows affected by the mutation
|
|
78364
|
+
*/
|
|
78365
|
+
returning: Array<core_flow_setting>;
|
|
78366
|
+
}
|
|
78367
|
+
|
|
76862
78368
|
/**
|
|
76863
78369
|
* columns and relationships of "currency"
|
|
76864
78370
|
*/
|
|
@@ -81914,6 +83420,22 @@ export interface Mutation {
|
|
|
81914
83420
|
delete_core_change_source_link_by_pk: (args: {
|
|
81915
83421
|
id: Scalars["uuid"];
|
|
81916
83422
|
}) => Maybe<core_change_source_link>;
|
|
83423
|
+
delete_core_flow: (args: {
|
|
83424
|
+
where: core_flow_bool_exp;
|
|
83425
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
83426
|
+
delete_core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
83427
|
+
delete_core_flow_mapping: (args: {
|
|
83428
|
+
where: core_flow_mapping_bool_exp;
|
|
83429
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
83430
|
+
delete_core_flow_mapping_by_pk: (args: {
|
|
83431
|
+
id: Scalars["uuid"];
|
|
83432
|
+
}) => Maybe<core_flow_mapping>;
|
|
83433
|
+
delete_core_flow_setting: (args: {
|
|
83434
|
+
where: core_flow_setting_bool_exp;
|
|
83435
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
83436
|
+
delete_core_flow_setting_by_pk: (args: {
|
|
83437
|
+
id: Scalars["uuid"];
|
|
83438
|
+
}) => Maybe<core_flow_setting>;
|
|
81917
83439
|
delete_currency: (args: {
|
|
81918
83440
|
where: currency_bool_exp;
|
|
81919
83441
|
}) => Maybe<currency_mutation_response>;
|
|
@@ -82864,6 +84386,30 @@ export interface Mutation {
|
|
|
82864
84386
|
object: core_change_source_link_insert_input;
|
|
82865
84387
|
on_conflict?: Maybe<core_change_source_link_on_conflict>;
|
|
82866
84388
|
}) => Maybe<core_change_source_link>;
|
|
84389
|
+
insert_core_flow: (args: {
|
|
84390
|
+
objects: Array<core_flow_insert_input>;
|
|
84391
|
+
on_conflict?: Maybe<core_flow_on_conflict>;
|
|
84392
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
84393
|
+
insert_core_flow_mapping: (args: {
|
|
84394
|
+
objects: Array<core_flow_mapping_insert_input>;
|
|
84395
|
+
on_conflict?: Maybe<core_flow_mapping_on_conflict>;
|
|
84396
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
84397
|
+
insert_core_flow_mapping_one: (args: {
|
|
84398
|
+
object: core_flow_mapping_insert_input;
|
|
84399
|
+
on_conflict?: Maybe<core_flow_mapping_on_conflict>;
|
|
84400
|
+
}) => Maybe<core_flow_mapping>;
|
|
84401
|
+
insert_core_flow_one: (args: {
|
|
84402
|
+
object: core_flow_insert_input;
|
|
84403
|
+
on_conflict?: Maybe<core_flow_on_conflict>;
|
|
84404
|
+
}) => Maybe<core_flow>;
|
|
84405
|
+
insert_core_flow_setting: (args: {
|
|
84406
|
+
objects: Array<core_flow_setting_insert_input>;
|
|
84407
|
+
on_conflict?: Maybe<core_flow_setting_on_conflict>;
|
|
84408
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
84409
|
+
insert_core_flow_setting_one: (args: {
|
|
84410
|
+
object: core_flow_setting_insert_input;
|
|
84411
|
+
on_conflict?: Maybe<core_flow_setting_on_conflict>;
|
|
84412
|
+
}) => Maybe<core_flow_setting>;
|
|
82867
84413
|
insert_currency: (args: {
|
|
82868
84414
|
objects: Array<currency_insert_input>;
|
|
82869
84415
|
on_conflict?: Maybe<currency_on_conflict>;
|
|
@@ -84493,6 +86039,69 @@ export interface Mutation {
|
|
|
84493
86039
|
update_core_change_source_link_many: (args: {
|
|
84494
86040
|
updates: Array<core_change_source_link_updates>;
|
|
84495
86041
|
}) => Maybe<Array<Maybe<core_change_source_link_mutation_response>>>;
|
|
86042
|
+
update_core_flow: (args: {
|
|
86043
|
+
_append?: Maybe<core_flow_append_input>;
|
|
86044
|
+
_delete_at_path?: Maybe<core_flow_delete_at_path_input>;
|
|
86045
|
+
_delete_elem?: Maybe<core_flow_delete_elem_input>;
|
|
86046
|
+
_delete_key?: Maybe<core_flow_delete_key_input>;
|
|
86047
|
+
_prepend?: Maybe<core_flow_prepend_input>;
|
|
86048
|
+
_set?: Maybe<core_flow_set_input>;
|
|
86049
|
+
where: core_flow_bool_exp;
|
|
86050
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
86051
|
+
update_core_flow_by_pk: (args: {
|
|
86052
|
+
_append?: Maybe<core_flow_append_input>;
|
|
86053
|
+
_delete_at_path?: Maybe<core_flow_delete_at_path_input>;
|
|
86054
|
+
_delete_elem?: Maybe<core_flow_delete_elem_input>;
|
|
86055
|
+
_delete_key?: Maybe<core_flow_delete_key_input>;
|
|
86056
|
+
_prepend?: Maybe<core_flow_prepend_input>;
|
|
86057
|
+
_set?: Maybe<core_flow_set_input>;
|
|
86058
|
+
pk_columns: core_flow_pk_columns_input;
|
|
86059
|
+
}) => Maybe<core_flow>;
|
|
86060
|
+
update_core_flow_many: (args: {
|
|
86061
|
+
updates: Array<core_flow_updates>;
|
|
86062
|
+
}) => Maybe<Array<Maybe<core_flow_mutation_response>>>;
|
|
86063
|
+
update_core_flow_mapping: (args: {
|
|
86064
|
+
_append?: Maybe<core_flow_mapping_append_input>;
|
|
86065
|
+
_delete_at_path?: Maybe<core_flow_mapping_delete_at_path_input>;
|
|
86066
|
+
_delete_elem?: Maybe<core_flow_mapping_delete_elem_input>;
|
|
86067
|
+
_delete_key?: Maybe<core_flow_mapping_delete_key_input>;
|
|
86068
|
+
_prepend?: Maybe<core_flow_mapping_prepend_input>;
|
|
86069
|
+
_set?: Maybe<core_flow_mapping_set_input>;
|
|
86070
|
+
where: core_flow_mapping_bool_exp;
|
|
86071
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
86072
|
+
update_core_flow_mapping_by_pk: (args: {
|
|
86073
|
+
_append?: Maybe<core_flow_mapping_append_input>;
|
|
86074
|
+
_delete_at_path?: Maybe<core_flow_mapping_delete_at_path_input>;
|
|
86075
|
+
_delete_elem?: Maybe<core_flow_mapping_delete_elem_input>;
|
|
86076
|
+
_delete_key?: Maybe<core_flow_mapping_delete_key_input>;
|
|
86077
|
+
_prepend?: Maybe<core_flow_mapping_prepend_input>;
|
|
86078
|
+
_set?: Maybe<core_flow_mapping_set_input>;
|
|
86079
|
+
pk_columns: core_flow_mapping_pk_columns_input;
|
|
86080
|
+
}) => Maybe<core_flow_mapping>;
|
|
86081
|
+
update_core_flow_mapping_many: (args: {
|
|
86082
|
+
updates: Array<core_flow_mapping_updates>;
|
|
86083
|
+
}) => Maybe<Array<Maybe<core_flow_mapping_mutation_response>>>;
|
|
86084
|
+
update_core_flow_setting: (args: {
|
|
86085
|
+
_append?: Maybe<core_flow_setting_append_input>;
|
|
86086
|
+
_delete_at_path?: Maybe<core_flow_setting_delete_at_path_input>;
|
|
86087
|
+
_delete_elem?: Maybe<core_flow_setting_delete_elem_input>;
|
|
86088
|
+
_delete_key?: Maybe<core_flow_setting_delete_key_input>;
|
|
86089
|
+
_prepend?: Maybe<core_flow_setting_prepend_input>;
|
|
86090
|
+
_set?: Maybe<core_flow_setting_set_input>;
|
|
86091
|
+
where: core_flow_setting_bool_exp;
|
|
86092
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
86093
|
+
update_core_flow_setting_by_pk: (args: {
|
|
86094
|
+
_append?: Maybe<core_flow_setting_append_input>;
|
|
86095
|
+
_delete_at_path?: Maybe<core_flow_setting_delete_at_path_input>;
|
|
86096
|
+
_delete_elem?: Maybe<core_flow_setting_delete_elem_input>;
|
|
86097
|
+
_delete_key?: Maybe<core_flow_setting_delete_key_input>;
|
|
86098
|
+
_prepend?: Maybe<core_flow_setting_prepend_input>;
|
|
86099
|
+
_set?: Maybe<core_flow_setting_set_input>;
|
|
86100
|
+
pk_columns: core_flow_setting_pk_columns_input;
|
|
86101
|
+
}) => Maybe<core_flow_setting>;
|
|
86102
|
+
update_core_flow_setting_many: (args: {
|
|
86103
|
+
updates: Array<core_flow_setting_updates>;
|
|
86104
|
+
}) => Maybe<Array<Maybe<core_flow_setting_mutation_response>>>;
|
|
84496
86105
|
update_currency: (args: {
|
|
84497
86106
|
_set?: Maybe<currency_set_input>;
|
|
84498
86107
|
where: currency_bool_exp;
|
|
@@ -89830,6 +91439,55 @@ export interface Query {
|
|
|
89830
91439
|
core_change_source_link_by_pk: (args: {
|
|
89831
91440
|
id: Scalars["uuid"];
|
|
89832
91441
|
}) => Maybe<core_change_source_link>;
|
|
91442
|
+
core_flow: (args?: {
|
|
91443
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
91444
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91445
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91446
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
91447
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
91448
|
+
}) => Array<core_flow>;
|
|
91449
|
+
core_flow_aggregate: (args?: {
|
|
91450
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
91451
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91452
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91453
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
91454
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
91455
|
+
}) => core_flow_aggregate;
|
|
91456
|
+
core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
91457
|
+
core_flow_mapping: (args?: {
|
|
91458
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
91459
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91460
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91461
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
91462
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
91463
|
+
}) => Array<core_flow_mapping>;
|
|
91464
|
+
core_flow_mapping_aggregate: (args?: {
|
|
91465
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
91466
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91467
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91468
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
91469
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
91470
|
+
}) => core_flow_mapping_aggregate;
|
|
91471
|
+
core_flow_mapping_by_pk: (args: {
|
|
91472
|
+
id: Scalars["uuid"];
|
|
91473
|
+
}) => Maybe<core_flow_mapping>;
|
|
91474
|
+
core_flow_setting: (args?: {
|
|
91475
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
91476
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91477
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91478
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
91479
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
91480
|
+
}) => Array<core_flow_setting>;
|
|
91481
|
+
core_flow_setting_aggregate: (args?: {
|
|
91482
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
91483
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
91484
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
91485
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
91486
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
91487
|
+
}) => core_flow_setting_aggregate;
|
|
91488
|
+
core_flow_setting_by_pk: (args: {
|
|
91489
|
+
id: Scalars["uuid"];
|
|
91490
|
+
}) => Maybe<core_flow_setting>;
|
|
89833
91491
|
currency: (args?: {
|
|
89834
91492
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
89835
91493
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -96711,6 +98369,70 @@ export interface Subscription {
|
|
|
96711
98369
|
cursor: Array<Maybe<core_change_source_link_stream_cursor_input>>;
|
|
96712
98370
|
where?: Maybe<core_change_source_link_bool_exp>;
|
|
96713
98371
|
}) => Array<core_change_source_link>;
|
|
98372
|
+
core_flow: (args?: {
|
|
98373
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
98374
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98375
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98376
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
98377
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
98378
|
+
}) => Array<core_flow>;
|
|
98379
|
+
core_flow_aggregate: (args?: {
|
|
98380
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
98381
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98382
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98383
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
98384
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
98385
|
+
}) => core_flow_aggregate;
|
|
98386
|
+
core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
98387
|
+
core_flow_mapping: (args?: {
|
|
98388
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
98389
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98390
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98391
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
98392
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
98393
|
+
}) => Array<core_flow_mapping>;
|
|
98394
|
+
core_flow_mapping_aggregate: (args?: {
|
|
98395
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
98396
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98397
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98398
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
98399
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
98400
|
+
}) => core_flow_mapping_aggregate;
|
|
98401
|
+
core_flow_mapping_by_pk: (args: {
|
|
98402
|
+
id: Scalars["uuid"];
|
|
98403
|
+
}) => Maybe<core_flow_mapping>;
|
|
98404
|
+
core_flow_mapping_stream: (args: {
|
|
98405
|
+
batch_size: Scalars["Int"];
|
|
98406
|
+
cursor: Array<Maybe<core_flow_mapping_stream_cursor_input>>;
|
|
98407
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
98408
|
+
}) => Array<core_flow_mapping>;
|
|
98409
|
+
core_flow_setting: (args?: {
|
|
98410
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
98411
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98412
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98413
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
98414
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
98415
|
+
}) => Array<core_flow_setting>;
|
|
98416
|
+
core_flow_setting_aggregate: (args?: {
|
|
98417
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
98418
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
98419
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
98420
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
98421
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
98422
|
+
}) => core_flow_setting_aggregate;
|
|
98423
|
+
core_flow_setting_by_pk: (args: {
|
|
98424
|
+
id: Scalars["uuid"];
|
|
98425
|
+
}) => Maybe<core_flow_setting>;
|
|
98426
|
+
core_flow_setting_stream: (args: {
|
|
98427
|
+
batch_size: Scalars["Int"];
|
|
98428
|
+
cursor: Array<Maybe<core_flow_setting_stream_cursor_input>>;
|
|
98429
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
98430
|
+
}) => Array<core_flow_setting>;
|
|
98431
|
+
core_flow_stream: (args: {
|
|
98432
|
+
batch_size: Scalars["Int"];
|
|
98433
|
+
cursor: Array<Maybe<core_flow_stream_cursor_input>>;
|
|
98434
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
98435
|
+
}) => Array<core_flow>;
|
|
96714
98436
|
currency: (args?: {
|
|
96715
98437
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
96716
98438
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -105259,6 +106981,24 @@ export interface SchemaObjectTypes {
|
|
|
105259
106981
|
core_change_source_link_max_fields: core_change_source_link_max_fields;
|
|
105260
106982
|
core_change_source_link_min_fields: core_change_source_link_min_fields;
|
|
105261
106983
|
core_change_source_link_mutation_response: core_change_source_link_mutation_response;
|
|
106984
|
+
core_flow: core_flow;
|
|
106985
|
+
core_flow_aggregate: core_flow_aggregate;
|
|
106986
|
+
core_flow_aggregate_fields: core_flow_aggregate_fields;
|
|
106987
|
+
core_flow_mapping: core_flow_mapping;
|
|
106988
|
+
core_flow_mapping_aggregate: core_flow_mapping_aggregate;
|
|
106989
|
+
core_flow_mapping_aggregate_fields: core_flow_mapping_aggregate_fields;
|
|
106990
|
+
core_flow_mapping_max_fields: core_flow_mapping_max_fields;
|
|
106991
|
+
core_flow_mapping_min_fields: core_flow_mapping_min_fields;
|
|
106992
|
+
core_flow_mapping_mutation_response: core_flow_mapping_mutation_response;
|
|
106993
|
+
core_flow_max_fields: core_flow_max_fields;
|
|
106994
|
+
core_flow_min_fields: core_flow_min_fields;
|
|
106995
|
+
core_flow_mutation_response: core_flow_mutation_response;
|
|
106996
|
+
core_flow_setting: core_flow_setting;
|
|
106997
|
+
core_flow_setting_aggregate: core_flow_setting_aggregate;
|
|
106998
|
+
core_flow_setting_aggregate_fields: core_flow_setting_aggregate_fields;
|
|
106999
|
+
core_flow_setting_max_fields: core_flow_setting_max_fields;
|
|
107000
|
+
core_flow_setting_min_fields: core_flow_setting_min_fields;
|
|
107001
|
+
core_flow_setting_mutation_response: core_flow_setting_mutation_response;
|
|
105262
107002
|
currency: currency;
|
|
105263
107003
|
currency_aggregate: currency_aggregate;
|
|
105264
107004
|
currency_aggregate_fields: currency_aggregate_fields;
|
|
@@ -106331,6 +108071,24 @@ export type SchemaObjectTypesNames =
|
|
|
106331
108071
|
| "core_change_source_link_max_fields"
|
|
106332
108072
|
| "core_change_source_link_min_fields"
|
|
106333
108073
|
| "core_change_source_link_mutation_response"
|
|
108074
|
+
| "core_flow"
|
|
108075
|
+
| "core_flow_aggregate"
|
|
108076
|
+
| "core_flow_aggregate_fields"
|
|
108077
|
+
| "core_flow_mapping"
|
|
108078
|
+
| "core_flow_mapping_aggregate"
|
|
108079
|
+
| "core_flow_mapping_aggregate_fields"
|
|
108080
|
+
| "core_flow_mapping_max_fields"
|
|
108081
|
+
| "core_flow_mapping_min_fields"
|
|
108082
|
+
| "core_flow_mapping_mutation_response"
|
|
108083
|
+
| "core_flow_max_fields"
|
|
108084
|
+
| "core_flow_min_fields"
|
|
108085
|
+
| "core_flow_mutation_response"
|
|
108086
|
+
| "core_flow_setting"
|
|
108087
|
+
| "core_flow_setting_aggregate"
|
|
108088
|
+
| "core_flow_setting_aggregate_fields"
|
|
108089
|
+
| "core_flow_setting_max_fields"
|
|
108090
|
+
| "core_flow_setting_min_fields"
|
|
108091
|
+
| "core_flow_setting_mutation_response"
|
|
106334
108092
|
| "currency"
|
|
106335
108093
|
| "currency_aggregate"
|
|
106336
108094
|
| "currency_aggregate_fields"
|
|
@@ -107373,6 +109131,15 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107373
109131
|
core_change_source_link_update_column:
|
|
107374
109132
|
| core_change_source_link_update_column
|
|
107375
109133
|
| undefined;
|
|
109134
|
+
core_flow_constraint: core_flow_constraint | undefined;
|
|
109135
|
+
core_flow_mapping_constraint: core_flow_mapping_constraint | undefined;
|
|
109136
|
+
core_flow_mapping_select_column: core_flow_mapping_select_column | undefined;
|
|
109137
|
+
core_flow_mapping_update_column: core_flow_mapping_update_column | undefined;
|
|
109138
|
+
core_flow_select_column: core_flow_select_column | undefined;
|
|
109139
|
+
core_flow_setting_constraint: core_flow_setting_constraint | undefined;
|
|
109140
|
+
core_flow_setting_select_column: core_flow_setting_select_column | undefined;
|
|
109141
|
+
core_flow_setting_update_column: core_flow_setting_update_column | undefined;
|
|
109142
|
+
core_flow_update_column: core_flow_update_column | undefined;
|
|
107376
109143
|
currency_constraint: currency_constraint | undefined;
|
|
107377
109144
|
currency_enum: currency_enum | undefined;
|
|
107378
109145
|
currency_select_column: currency_select_column | undefined;
|