@vrplatform/graphql 1.1.10 → 1.1.15
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 +1806 -785
- package/build/main/gqty/schema.generated.js +748 -340
- 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 +1806 -785
- package/build/module/gqty/schema.generated.js +748 -340
- 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 +1806 -785
- package/src/gqty/schema.generated.js +748 -340
|
@@ -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;
|
|
@@ -2607,7 +2608,7 @@ export interface automation_bool_exp {
|
|
|
2607
2608
|
scheduleStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2608
2609
|
settings?: InputMaybe<setting_bool_exp>;
|
|
2609
2610
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
2610
|
-
status?: InputMaybe<
|
|
2611
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2611
2612
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
2612
2613
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
2613
2614
|
template?: InputMaybe<String_comparison_exp>;
|
|
@@ -2661,7 +2662,7 @@ export interface automation_insert_input {
|
|
|
2661
2662
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2662
2663
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2663
2664
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
2664
|
-
status?: InputMaybe<
|
|
2665
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2665
2666
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
2666
2667
|
template?: InputMaybe<Scalars["String"]>;
|
|
2667
2668
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2801,7 +2802,7 @@ export interface automation_set_input {
|
|
|
2801
2802
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2802
2803
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2803
2804
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2804
|
-
status?: InputMaybe<
|
|
2805
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2805
2806
|
template?: InputMaybe<Scalars["String"]>;
|
|
2806
2807
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2807
2808
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2811,87 +2812,6 @@ export interface automation_set_input {
|
|
|
2811
2812
|
viewSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2812
2813
|
}
|
|
2813
2814
|
|
|
2814
|
-
/** Boolean expression to filter rows from the table "automation_status". All fields are combined with a logical 'AND'. */
|
|
2815
|
-
export interface automation_status_bool_exp {
|
|
2816
|
-
_and?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2817
|
-
_not?: InputMaybe<automation_status_bool_exp>;
|
|
2818
|
-
_or?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2819
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
2820
|
-
}
|
|
2821
|
-
|
|
2822
|
-
/** unique or primary key constraints on table "automation_status" */
|
|
2823
|
-
export type automation_status_constraint =
|
|
2824
|
-
/** unique or primary key constraint on columns "name" */
|
|
2825
|
-
"automation_status_pkey";
|
|
2826
|
-
|
|
2827
|
-
export type automation_status_enum = "active" | "archived" | "inactive";
|
|
2828
|
-
|
|
2829
|
-
/** Boolean expression to compare columns of type "automation_status_enum". All fields are combined with logical 'AND'. */
|
|
2830
|
-
export interface automation_status_enum_comparison_exp {
|
|
2831
|
-
_eq?: InputMaybe<automation_status_enum>;
|
|
2832
|
-
_in?: InputMaybe<Array<automation_status_enum>>;
|
|
2833
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
2834
|
-
_neq?: InputMaybe<automation_status_enum>;
|
|
2835
|
-
_nin?: InputMaybe<Array<automation_status_enum>>;
|
|
2836
|
-
}
|
|
2837
|
-
|
|
2838
|
-
/** input type for inserting data into table "automation_status" */
|
|
2839
|
-
export interface automation_status_insert_input {
|
|
2840
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2841
|
-
}
|
|
2842
|
-
|
|
2843
|
-
/** on_conflict condition type for table "automation_status" */
|
|
2844
|
-
export interface automation_status_on_conflict {
|
|
2845
|
-
constraint: automation_status_constraint;
|
|
2846
|
-
update_columns?: Array<automation_status_update_column>;
|
|
2847
|
-
where?: InputMaybe<automation_status_bool_exp>;
|
|
2848
|
-
}
|
|
2849
|
-
|
|
2850
|
-
/** Ordering options when selecting data from "automation_status". */
|
|
2851
|
-
export interface automation_status_order_by {
|
|
2852
|
-
name?: InputMaybe<order_by>;
|
|
2853
|
-
}
|
|
2854
|
-
|
|
2855
|
-
/** primary key columns input for table: automation_status */
|
|
2856
|
-
export interface automation_status_pk_columns_input {
|
|
2857
|
-
name: Scalars["String"];
|
|
2858
|
-
}
|
|
2859
|
-
|
|
2860
|
-
/** select columns of table "automation_status" */
|
|
2861
|
-
export type automation_status_select_column =
|
|
2862
|
-
/** column name */
|
|
2863
|
-
"name";
|
|
2864
|
-
|
|
2865
|
-
/** input type for updating data in table "automation_status" */
|
|
2866
|
-
export interface automation_status_set_input {
|
|
2867
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2868
|
-
}
|
|
2869
|
-
|
|
2870
|
-
/** Streaming cursor of the table "automation_status" */
|
|
2871
|
-
export interface automation_status_stream_cursor_input {
|
|
2872
|
-
/** Stream column input with initial value */
|
|
2873
|
-
initial_value: automation_status_stream_cursor_value_input;
|
|
2874
|
-
/** cursor ordering */
|
|
2875
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
2876
|
-
}
|
|
2877
|
-
|
|
2878
|
-
/** Initial value of the column from where the streaming should start */
|
|
2879
|
-
export interface automation_status_stream_cursor_value_input {
|
|
2880
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2881
|
-
}
|
|
2882
|
-
|
|
2883
|
-
/** update columns of table "automation_status" */
|
|
2884
|
-
export type automation_status_update_column =
|
|
2885
|
-
/** column name */
|
|
2886
|
-
"name";
|
|
2887
|
-
|
|
2888
|
-
export interface automation_status_updates {
|
|
2889
|
-
/** sets the columns of the filtered rows to the given values */
|
|
2890
|
-
_set?: InputMaybe<automation_status_set_input>;
|
|
2891
|
-
/** filter the rows which have to be updated */
|
|
2892
|
-
where: automation_status_bool_exp;
|
|
2893
|
-
}
|
|
2894
|
-
|
|
2895
2815
|
/** Streaming cursor of the table "automation" */
|
|
2896
2816
|
export interface automation_stream_cursor_input {
|
|
2897
2817
|
/** Stream column input with initial value */
|
|
@@ -2909,7 +2829,7 @@ export interface automation_stream_cursor_value_input {
|
|
|
2909
2829
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2910
2830
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2911
2831
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2912
|
-
status?: InputMaybe<
|
|
2832
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2913
2833
|
template?: InputMaybe<Scalars["String"]>;
|
|
2914
2834
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2915
2835
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -5763,7 +5683,7 @@ export interface connection_bool_exp {
|
|
|
5763
5683
|
settingsRight?: InputMaybe<setting_bool_exp>;
|
|
5764
5684
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5765
5685
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5766
|
-
status?: InputMaybe<
|
|
5686
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
5767
5687
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
5768
5688
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
5769
5689
|
tasks?: InputMaybe<task_bool_exp>;
|
|
@@ -5840,7 +5760,7 @@ export interface connection_insert_input {
|
|
|
5840
5760
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5841
5761
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5842
5762
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5843
|
-
status?: InputMaybe<
|
|
5763
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
5844
5764
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
5845
5765
|
tasks?: InputMaybe<task_arr_rel_insert_input>;
|
|
5846
5766
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
@@ -5861,7 +5781,6 @@ export interface connection_max_order_by {
|
|
|
5861
5781
|
id?: InputMaybe<order_by>;
|
|
5862
5782
|
lastFetch?: InputMaybe<order_by>;
|
|
5863
5783
|
name?: InputMaybe<order_by>;
|
|
5864
|
-
status?: InputMaybe<order_by>;
|
|
5865
5784
|
tenantId?: InputMaybe<order_by>;
|
|
5866
5785
|
type?: InputMaybe<order_by>;
|
|
5867
5786
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -5879,7 +5798,6 @@ export interface connection_min_order_by {
|
|
|
5879
5798
|
id?: InputMaybe<order_by>;
|
|
5880
5799
|
lastFetch?: InputMaybe<order_by>;
|
|
5881
5800
|
name?: InputMaybe<order_by>;
|
|
5882
|
-
status?: InputMaybe<order_by>;
|
|
5883
5801
|
tenantId?: InputMaybe<order_by>;
|
|
5884
5802
|
type?: InputMaybe<order_by>;
|
|
5885
5803
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -6018,7 +5936,7 @@ export interface connection_set_input {
|
|
|
6018
5936
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6019
5937
|
name?: InputMaybe<Scalars["String"]>;
|
|
6020
5938
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6021
|
-
status?: InputMaybe<
|
|
5939
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6022
5940
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6023
5941
|
type?: InputMaybe<Scalars["String"]>;
|
|
6024
5942
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6026,76 +5944,6 @@ export interface connection_set_input {
|
|
|
6026
5944
|
version?: InputMaybe<Scalars["Int"]>;
|
|
6027
5945
|
}
|
|
6028
5946
|
|
|
6029
|
-
/** Boolean expression to filter rows from the table "connection_status_temporary". All fields are combined with a logical 'AND'. */
|
|
6030
|
-
export interface connection_status_temporary_bool_exp {
|
|
6031
|
-
_and?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6032
|
-
_not?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6033
|
-
_or?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6034
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
6035
|
-
}
|
|
6036
|
-
|
|
6037
|
-
/** unique or primary key constraints on table "connection_status_temporary" */
|
|
6038
|
-
export type connection_status_temporary_constraint =
|
|
6039
|
-
/** unique or primary key constraint on columns "name" */
|
|
6040
|
-
"connection_status_temporary_pkey";
|
|
6041
|
-
|
|
6042
|
-
/** input type for inserting data into table "connection_status_temporary" */
|
|
6043
|
-
export interface connection_status_temporary_insert_input {
|
|
6044
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6045
|
-
}
|
|
6046
|
-
|
|
6047
|
-
/** on_conflict condition type for table "connection_status_temporary" */
|
|
6048
|
-
export interface connection_status_temporary_on_conflict {
|
|
6049
|
-
constraint: connection_status_temporary_constraint;
|
|
6050
|
-
update_columns?: Array<connection_status_temporary_update_column>;
|
|
6051
|
-
where?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6052
|
-
}
|
|
6053
|
-
|
|
6054
|
-
/** Ordering options when selecting data from "connection_status_temporary". */
|
|
6055
|
-
export interface connection_status_temporary_order_by {
|
|
6056
|
-
name?: InputMaybe<order_by>;
|
|
6057
|
-
}
|
|
6058
|
-
|
|
6059
|
-
/** primary key columns input for table: connection_status_temporary */
|
|
6060
|
-
export interface connection_status_temporary_pk_columns_input {
|
|
6061
|
-
name: Scalars["String"];
|
|
6062
|
-
}
|
|
6063
|
-
|
|
6064
|
-
/** select columns of table "connection_status_temporary" */
|
|
6065
|
-
export type connection_status_temporary_select_column =
|
|
6066
|
-
/** column name */
|
|
6067
|
-
"name";
|
|
6068
|
-
|
|
6069
|
-
/** input type for updating data in table "connection_status_temporary" */
|
|
6070
|
-
export interface connection_status_temporary_set_input {
|
|
6071
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6072
|
-
}
|
|
6073
|
-
|
|
6074
|
-
/** Streaming cursor of the table "connection_status_temporary" */
|
|
6075
|
-
export interface connection_status_temporary_stream_cursor_input {
|
|
6076
|
-
/** Stream column input with initial value */
|
|
6077
|
-
initial_value: connection_status_temporary_stream_cursor_value_input;
|
|
6078
|
-
/** cursor ordering */
|
|
6079
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
6080
|
-
}
|
|
6081
|
-
|
|
6082
|
-
/** Initial value of the column from where the streaming should start */
|
|
6083
|
-
export interface connection_status_temporary_stream_cursor_value_input {
|
|
6084
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6085
|
-
}
|
|
6086
|
-
|
|
6087
|
-
/** update columns of table "connection_status_temporary" */
|
|
6088
|
-
export type connection_status_temporary_update_column =
|
|
6089
|
-
/** column name */
|
|
6090
|
-
"name";
|
|
6091
|
-
|
|
6092
|
-
export interface connection_status_temporary_updates {
|
|
6093
|
-
/** sets the columns of the filtered rows to the given values */
|
|
6094
|
-
_set?: InputMaybe<connection_status_temporary_set_input>;
|
|
6095
|
-
/** filter the rows which have to be updated */
|
|
6096
|
-
where: connection_status_temporary_bool_exp;
|
|
6097
|
-
}
|
|
6098
|
-
|
|
6099
5947
|
/** order by stddev() on columns of table "connection" */
|
|
6100
5948
|
export interface connection_stddev_order_by {
|
|
6101
5949
|
backendVersion?: InputMaybe<order_by>;
|
|
@@ -6137,7 +5985,7 @@ export interface connection_stream_cursor_value_input {
|
|
|
6137
5985
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6138
5986
|
name?: InputMaybe<Scalars["String"]>;
|
|
6139
5987
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6140
|
-
status?: InputMaybe<
|
|
5988
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6141
5989
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6142
5990
|
type?: InputMaybe<Scalars["String"]>;
|
|
6143
5991
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6881,6 +6729,528 @@ export interface core_change_source_link_updates {
|
|
|
6881
6729
|
where: core_change_source_link_bool_exp;
|
|
6882
6730
|
}
|
|
6883
6731
|
|
|
6732
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6733
|
+
export interface core_flow_append_input {
|
|
6734
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6735
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6736
|
+
}
|
|
6737
|
+
|
|
6738
|
+
/** Boolean expression to filter rows from the table "core.flow". All fields are combined with a logical 'AND'. */
|
|
6739
|
+
export interface core_flow_bool_exp {
|
|
6740
|
+
_and?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6741
|
+
_not?: InputMaybe<core_flow_bool_exp>;
|
|
6742
|
+
_or?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6743
|
+
app_id?: InputMaybe<String_comparison_exp>;
|
|
6744
|
+
description?: InputMaybe<String_comparison_exp>;
|
|
6745
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
6746
|
+
mapping_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6747
|
+
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6748
|
+
title?: InputMaybe<String_comparison_exp>;
|
|
6749
|
+
type?: InputMaybe<flow_type_comparison_exp>;
|
|
6750
|
+
}
|
|
6751
|
+
|
|
6752
|
+
/** unique or primary key constraints on table "core.flow" */
|
|
6753
|
+
export type core_flow_constraint =
|
|
6754
|
+
/** unique or primary key constraint on columns "id" */
|
|
6755
|
+
"flow_pkey";
|
|
6756
|
+
|
|
6757
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6758
|
+
export interface core_flow_delete_at_path_input {
|
|
6759
|
+
mapping_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6760
|
+
setting_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6761
|
+
}
|
|
6762
|
+
|
|
6763
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6764
|
+
export interface core_flow_delete_elem_input {
|
|
6765
|
+
mapping_schema?: InputMaybe<Scalars["Int"]>;
|
|
6766
|
+
setting_schema?: InputMaybe<Scalars["Int"]>;
|
|
6767
|
+
}
|
|
6768
|
+
|
|
6769
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6770
|
+
export interface core_flow_delete_key_input {
|
|
6771
|
+
mapping_schema?: InputMaybe<Scalars["String"]>;
|
|
6772
|
+
setting_schema?: InputMaybe<Scalars["String"]>;
|
|
6773
|
+
}
|
|
6774
|
+
|
|
6775
|
+
/** input type for inserting data into table "core.flow" */
|
|
6776
|
+
export interface core_flow_insert_input {
|
|
6777
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
6778
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
6779
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6780
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6781
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6782
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
6783
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
6784
|
+
}
|
|
6785
|
+
|
|
6786
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6787
|
+
export interface core_flow_mapping_append_input {
|
|
6788
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6789
|
+
}
|
|
6790
|
+
|
|
6791
|
+
/** Boolean expression to filter rows from the table "core.flow_mapping". All fields are combined with a logical 'AND'. */
|
|
6792
|
+
export interface core_flow_mapping_bool_exp {
|
|
6793
|
+
_and?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
|
|
6794
|
+
_not?: InputMaybe<core_flow_mapping_bool_exp>;
|
|
6795
|
+
_or?: InputMaybe<Array<core_flow_mapping_bool_exp>>;
|
|
6796
|
+
account_id?: InputMaybe<uuid_comparison_exp>;
|
|
6797
|
+
booking_channel_id?: InputMaybe<uuid_comparison_exp>;
|
|
6798
|
+
contact_id?: InputMaybe<uuid_comparison_exp>;
|
|
6799
|
+
flow_id?: InputMaybe<uuid_comparison_exp>;
|
|
6800
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
6801
|
+
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
6802
|
+
mapping_key?: InputMaybe<String_comparison_exp>;
|
|
6803
|
+
source_id?: InputMaybe<uuid_comparison_exp>;
|
|
6804
|
+
value?: InputMaybe<jsonb_comparison_exp>;
|
|
6805
|
+
}
|
|
6806
|
+
|
|
6807
|
+
/** unique or primary key constraints on table "core.flow_mapping" */
|
|
6808
|
+
export type core_flow_mapping_constraint =
|
|
6809
|
+
/** unique or primary key constraint on columns "flow_id", "mapping_key", "source_id" */
|
|
6810
|
+
| "flow_mapping_flow_id_mapping_key_source_id_key"
|
|
6811
|
+
/** unique or primary key constraint on columns "id" */
|
|
6812
|
+
| "flow_mapping_pkey";
|
|
6813
|
+
|
|
6814
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6815
|
+
export interface core_flow_mapping_delete_at_path_input {
|
|
6816
|
+
value?: InputMaybe<Array<Scalars["String"]>>;
|
|
6817
|
+
}
|
|
6818
|
+
|
|
6819
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6820
|
+
export interface core_flow_mapping_delete_elem_input {
|
|
6821
|
+
value?: InputMaybe<Scalars["Int"]>;
|
|
6822
|
+
}
|
|
6823
|
+
|
|
6824
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6825
|
+
export interface core_flow_mapping_delete_key_input {
|
|
6826
|
+
value?: InputMaybe<Scalars["String"]>;
|
|
6827
|
+
}
|
|
6828
|
+
|
|
6829
|
+
/** input type for inserting data into table "core.flow_mapping" */
|
|
6830
|
+
export interface core_flow_mapping_insert_input {
|
|
6831
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6832
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
6833
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6834
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
6835
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6836
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
6837
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
6838
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
6839
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6840
|
+
}
|
|
6841
|
+
|
|
6842
|
+
/** on_conflict condition type for table "core.flow_mapping" */
|
|
6843
|
+
export interface core_flow_mapping_on_conflict {
|
|
6844
|
+
constraint: core_flow_mapping_constraint;
|
|
6845
|
+
update_columns?: Array<core_flow_mapping_update_column>;
|
|
6846
|
+
where?: InputMaybe<core_flow_mapping_bool_exp>;
|
|
6847
|
+
}
|
|
6848
|
+
|
|
6849
|
+
/** Ordering options when selecting data from "core.flow_mapping". */
|
|
6850
|
+
export interface core_flow_mapping_order_by {
|
|
6851
|
+
account_id?: InputMaybe<order_by>;
|
|
6852
|
+
booking_channel_id?: InputMaybe<order_by>;
|
|
6853
|
+
contact_id?: InputMaybe<order_by>;
|
|
6854
|
+
flow_id?: InputMaybe<order_by>;
|
|
6855
|
+
id?: InputMaybe<order_by>;
|
|
6856
|
+
listing_id?: InputMaybe<order_by>;
|
|
6857
|
+
mapping_key?: InputMaybe<order_by>;
|
|
6858
|
+
source_id?: InputMaybe<order_by>;
|
|
6859
|
+
value?: InputMaybe<order_by>;
|
|
6860
|
+
}
|
|
6861
|
+
|
|
6862
|
+
/** primary key columns input for table: core.flow_mapping */
|
|
6863
|
+
export interface core_flow_mapping_pk_columns_input {
|
|
6864
|
+
id: Scalars["uuid"];
|
|
6865
|
+
}
|
|
6866
|
+
|
|
6867
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
6868
|
+
export interface core_flow_mapping_prepend_input {
|
|
6869
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6870
|
+
}
|
|
6871
|
+
|
|
6872
|
+
/** select columns of table "core.flow_mapping" */
|
|
6873
|
+
export type core_flow_mapping_select_column =
|
|
6874
|
+
/** column name */
|
|
6875
|
+
| "account_id"
|
|
6876
|
+
/** column name */
|
|
6877
|
+
| "booking_channel_id"
|
|
6878
|
+
/** column name */
|
|
6879
|
+
| "contact_id"
|
|
6880
|
+
/** column name */
|
|
6881
|
+
| "flow_id"
|
|
6882
|
+
/** column name */
|
|
6883
|
+
| "id"
|
|
6884
|
+
/** column name */
|
|
6885
|
+
| "listing_id"
|
|
6886
|
+
/** column name */
|
|
6887
|
+
| "mapping_key"
|
|
6888
|
+
/** column name */
|
|
6889
|
+
| "source_id"
|
|
6890
|
+
/** column name */
|
|
6891
|
+
| "value";
|
|
6892
|
+
|
|
6893
|
+
/** input type for updating data in table "core.flow_mapping" */
|
|
6894
|
+
export interface core_flow_mapping_set_input {
|
|
6895
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6896
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
6897
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6898
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
6899
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6900
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
6901
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
6902
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
6903
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6904
|
+
}
|
|
6905
|
+
|
|
6906
|
+
/** Streaming cursor of the table "core_flow_mapping" */
|
|
6907
|
+
export interface core_flow_mapping_stream_cursor_input {
|
|
6908
|
+
/** Stream column input with initial value */
|
|
6909
|
+
initial_value: core_flow_mapping_stream_cursor_value_input;
|
|
6910
|
+
/** cursor ordering */
|
|
6911
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
6912
|
+
}
|
|
6913
|
+
|
|
6914
|
+
/** Initial value of the column from where the streaming should start */
|
|
6915
|
+
export interface core_flow_mapping_stream_cursor_value_input {
|
|
6916
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6917
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
6918
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6919
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
6920
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
6921
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
6922
|
+
mapping_key?: InputMaybe<Scalars["String"]>;
|
|
6923
|
+
source_id?: InputMaybe<Scalars["uuid"]>;
|
|
6924
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
/** update columns of table "core.flow_mapping" */
|
|
6928
|
+
export type core_flow_mapping_update_column =
|
|
6929
|
+
/** column name */
|
|
6930
|
+
| "account_id"
|
|
6931
|
+
/** column name */
|
|
6932
|
+
| "booking_channel_id"
|
|
6933
|
+
/** column name */
|
|
6934
|
+
| "contact_id"
|
|
6935
|
+
/** column name */
|
|
6936
|
+
| "flow_id"
|
|
6937
|
+
/** column name */
|
|
6938
|
+
| "id"
|
|
6939
|
+
/** column name */
|
|
6940
|
+
| "listing_id"
|
|
6941
|
+
/** column name */
|
|
6942
|
+
| "mapping_key"
|
|
6943
|
+
/** column name */
|
|
6944
|
+
| "source_id"
|
|
6945
|
+
/** column name */
|
|
6946
|
+
| "value";
|
|
6947
|
+
|
|
6948
|
+
export interface core_flow_mapping_updates {
|
|
6949
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6950
|
+
_append?: InputMaybe<core_flow_mapping_append_input>;
|
|
6951
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6952
|
+
_delete_at_path?: InputMaybe<core_flow_mapping_delete_at_path_input>;
|
|
6953
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6954
|
+
_delete_elem?: InputMaybe<core_flow_mapping_delete_elem_input>;
|
|
6955
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6956
|
+
_delete_key?: InputMaybe<core_flow_mapping_delete_key_input>;
|
|
6957
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
6958
|
+
_prepend?: InputMaybe<core_flow_mapping_prepend_input>;
|
|
6959
|
+
/** sets the columns of the filtered rows to the given values */
|
|
6960
|
+
_set?: InputMaybe<core_flow_mapping_set_input>;
|
|
6961
|
+
/** filter the rows which have to be updated */
|
|
6962
|
+
where: core_flow_mapping_bool_exp;
|
|
6963
|
+
}
|
|
6964
|
+
|
|
6965
|
+
/** on_conflict condition type for table "core.flow" */
|
|
6966
|
+
export interface core_flow_on_conflict {
|
|
6967
|
+
constraint: core_flow_constraint;
|
|
6968
|
+
update_columns?: Array<core_flow_update_column>;
|
|
6969
|
+
where?: InputMaybe<core_flow_bool_exp>;
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6972
|
+
/** Ordering options when selecting data from "core.flow". */
|
|
6973
|
+
export interface core_flow_order_by {
|
|
6974
|
+
app_id?: InputMaybe<order_by>;
|
|
6975
|
+
description?: InputMaybe<order_by>;
|
|
6976
|
+
id?: InputMaybe<order_by>;
|
|
6977
|
+
mapping_schema?: InputMaybe<order_by>;
|
|
6978
|
+
setting_schema?: InputMaybe<order_by>;
|
|
6979
|
+
title?: InputMaybe<order_by>;
|
|
6980
|
+
type?: InputMaybe<order_by>;
|
|
6981
|
+
}
|
|
6982
|
+
|
|
6983
|
+
/** primary key columns input for table: core.flow */
|
|
6984
|
+
export interface core_flow_pk_columns_input {
|
|
6985
|
+
id: Scalars["uuid"];
|
|
6986
|
+
}
|
|
6987
|
+
|
|
6988
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
6989
|
+
export interface core_flow_prepend_input {
|
|
6990
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6991
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6992
|
+
}
|
|
6993
|
+
|
|
6994
|
+
/** select columns of table "core.flow" */
|
|
6995
|
+
export type core_flow_select_column =
|
|
6996
|
+
/** column name */
|
|
6997
|
+
| "app_id"
|
|
6998
|
+
/** column name */
|
|
6999
|
+
| "description"
|
|
7000
|
+
/** column name */
|
|
7001
|
+
| "id"
|
|
7002
|
+
/** column name */
|
|
7003
|
+
| "mapping_schema"
|
|
7004
|
+
/** column name */
|
|
7005
|
+
| "setting_schema"
|
|
7006
|
+
/** column name */
|
|
7007
|
+
| "title"
|
|
7008
|
+
/** column name */
|
|
7009
|
+
| "type";
|
|
7010
|
+
|
|
7011
|
+
/** input type for updating data in table "core.flow" */
|
|
7012
|
+
export interface core_flow_set_input {
|
|
7013
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
7014
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7015
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7016
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7017
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7018
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
7019
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7020
|
+
}
|
|
7021
|
+
|
|
7022
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7023
|
+
export interface core_flow_setting_append_input {
|
|
7024
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7025
|
+
}
|
|
7026
|
+
|
|
7027
|
+
/** Boolean expression to filter rows from the table "core.flow_setting". All fields are combined with a logical 'AND'. */
|
|
7028
|
+
export interface core_flow_setting_bool_exp {
|
|
7029
|
+
_and?: InputMaybe<Array<core_flow_setting_bool_exp>>;
|
|
7030
|
+
_not?: InputMaybe<core_flow_setting_bool_exp>;
|
|
7031
|
+
_or?: InputMaybe<Array<core_flow_setting_bool_exp>>;
|
|
7032
|
+
account_id?: InputMaybe<uuid_comparison_exp>;
|
|
7033
|
+
booking_channel_id?: InputMaybe<uuid_comparison_exp>;
|
|
7034
|
+
connection_id?: InputMaybe<uuid_comparison_exp>;
|
|
7035
|
+
contact_id?: InputMaybe<uuid_comparison_exp>;
|
|
7036
|
+
flow_id?: InputMaybe<uuid_comparison_exp>;
|
|
7037
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
7038
|
+
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
7039
|
+
setting_key?: InputMaybe<String_comparison_exp>;
|
|
7040
|
+
value?: InputMaybe<jsonb_comparison_exp>;
|
|
7041
|
+
}
|
|
7042
|
+
|
|
7043
|
+
/** unique or primary key constraints on table "core.flow_setting" */
|
|
7044
|
+
export type core_flow_setting_constraint =
|
|
7045
|
+
/** unique or primary key constraint on columns "flow_id", "connection_id", "setting_key" */
|
|
7046
|
+
| "flow_setting_flow_id_setting_key_connection_id_key"
|
|
7047
|
+
/** unique or primary key constraint on columns "id" */
|
|
7048
|
+
| "flow_setting_pkey";
|
|
7049
|
+
|
|
7050
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7051
|
+
export interface core_flow_setting_delete_at_path_input {
|
|
7052
|
+
value?: InputMaybe<Array<Scalars["String"]>>;
|
|
7053
|
+
}
|
|
7054
|
+
|
|
7055
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7056
|
+
export interface core_flow_setting_delete_elem_input {
|
|
7057
|
+
value?: InputMaybe<Scalars["Int"]>;
|
|
7058
|
+
}
|
|
7059
|
+
|
|
7060
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7061
|
+
export interface core_flow_setting_delete_key_input {
|
|
7062
|
+
value?: InputMaybe<Scalars["String"]>;
|
|
7063
|
+
}
|
|
7064
|
+
|
|
7065
|
+
/** input type for inserting data into table "core.flow_setting" */
|
|
7066
|
+
export interface core_flow_setting_insert_input {
|
|
7067
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7068
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7069
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7070
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7071
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7072
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7073
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7074
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7075
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7076
|
+
}
|
|
7077
|
+
|
|
7078
|
+
/** on_conflict condition type for table "core.flow_setting" */
|
|
7079
|
+
export interface core_flow_setting_on_conflict {
|
|
7080
|
+
constraint: core_flow_setting_constraint;
|
|
7081
|
+
update_columns?: Array<core_flow_setting_update_column>;
|
|
7082
|
+
where?: InputMaybe<core_flow_setting_bool_exp>;
|
|
7083
|
+
}
|
|
7084
|
+
|
|
7085
|
+
/** Ordering options when selecting data from "core.flow_setting". */
|
|
7086
|
+
export interface core_flow_setting_order_by {
|
|
7087
|
+
account_id?: InputMaybe<order_by>;
|
|
7088
|
+
booking_channel_id?: InputMaybe<order_by>;
|
|
7089
|
+
connection_id?: InputMaybe<order_by>;
|
|
7090
|
+
contact_id?: InputMaybe<order_by>;
|
|
7091
|
+
flow_id?: InputMaybe<order_by>;
|
|
7092
|
+
id?: InputMaybe<order_by>;
|
|
7093
|
+
listing_id?: InputMaybe<order_by>;
|
|
7094
|
+
setting_key?: InputMaybe<order_by>;
|
|
7095
|
+
value?: InputMaybe<order_by>;
|
|
7096
|
+
}
|
|
7097
|
+
|
|
7098
|
+
/** primary key columns input for table: core.flow_setting */
|
|
7099
|
+
export interface core_flow_setting_pk_columns_input {
|
|
7100
|
+
id: Scalars["uuid"];
|
|
7101
|
+
}
|
|
7102
|
+
|
|
7103
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7104
|
+
export interface core_flow_setting_prepend_input {
|
|
7105
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7106
|
+
}
|
|
7107
|
+
|
|
7108
|
+
/** select columns of table "core.flow_setting" */
|
|
7109
|
+
export type core_flow_setting_select_column =
|
|
7110
|
+
/** column name */
|
|
7111
|
+
| "account_id"
|
|
7112
|
+
/** column name */
|
|
7113
|
+
| "booking_channel_id"
|
|
7114
|
+
/** column name */
|
|
7115
|
+
| "connection_id"
|
|
7116
|
+
/** column name */
|
|
7117
|
+
| "contact_id"
|
|
7118
|
+
/** column name */
|
|
7119
|
+
| "flow_id"
|
|
7120
|
+
/** column name */
|
|
7121
|
+
| "id"
|
|
7122
|
+
/** column name */
|
|
7123
|
+
| "listing_id"
|
|
7124
|
+
/** column name */
|
|
7125
|
+
| "setting_key"
|
|
7126
|
+
/** column name */
|
|
7127
|
+
| "value";
|
|
7128
|
+
|
|
7129
|
+
/** input type for updating data in table "core.flow_setting" */
|
|
7130
|
+
export interface core_flow_setting_set_input {
|
|
7131
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7132
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7133
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7134
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7135
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7136
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7137
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7138
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7139
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7140
|
+
}
|
|
7141
|
+
|
|
7142
|
+
/** Streaming cursor of the table "core_flow_setting" */
|
|
7143
|
+
export interface core_flow_setting_stream_cursor_input {
|
|
7144
|
+
/** Stream column input with initial value */
|
|
7145
|
+
initial_value: core_flow_setting_stream_cursor_value_input;
|
|
7146
|
+
/** cursor ordering */
|
|
7147
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
7148
|
+
}
|
|
7149
|
+
|
|
7150
|
+
/** Initial value of the column from where the streaming should start */
|
|
7151
|
+
export interface core_flow_setting_stream_cursor_value_input {
|
|
7152
|
+
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7153
|
+
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7154
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7155
|
+
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7156
|
+
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7157
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7158
|
+
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7159
|
+
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7160
|
+
value?: InputMaybe<Scalars["jsonb"]>;
|
|
7161
|
+
}
|
|
7162
|
+
|
|
7163
|
+
/** update columns of table "core.flow_setting" */
|
|
7164
|
+
export type core_flow_setting_update_column =
|
|
7165
|
+
/** column name */
|
|
7166
|
+
| "account_id"
|
|
7167
|
+
/** column name */
|
|
7168
|
+
| "booking_channel_id"
|
|
7169
|
+
/** column name */
|
|
7170
|
+
| "connection_id"
|
|
7171
|
+
/** column name */
|
|
7172
|
+
| "contact_id"
|
|
7173
|
+
/** column name */
|
|
7174
|
+
| "flow_id"
|
|
7175
|
+
/** column name */
|
|
7176
|
+
| "id"
|
|
7177
|
+
/** column name */
|
|
7178
|
+
| "listing_id"
|
|
7179
|
+
/** column name */
|
|
7180
|
+
| "setting_key"
|
|
7181
|
+
/** column name */
|
|
7182
|
+
| "value";
|
|
7183
|
+
|
|
7184
|
+
export interface core_flow_setting_updates {
|
|
7185
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7186
|
+
_append?: InputMaybe<core_flow_setting_append_input>;
|
|
7187
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7188
|
+
_delete_at_path?: InputMaybe<core_flow_setting_delete_at_path_input>;
|
|
7189
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7190
|
+
_delete_elem?: InputMaybe<core_flow_setting_delete_elem_input>;
|
|
7191
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7192
|
+
_delete_key?: InputMaybe<core_flow_setting_delete_key_input>;
|
|
7193
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7194
|
+
_prepend?: InputMaybe<core_flow_setting_prepend_input>;
|
|
7195
|
+
/** sets the columns of the filtered rows to the given values */
|
|
7196
|
+
_set?: InputMaybe<core_flow_setting_set_input>;
|
|
7197
|
+
/** filter the rows which have to be updated */
|
|
7198
|
+
where: core_flow_setting_bool_exp;
|
|
7199
|
+
}
|
|
7200
|
+
|
|
7201
|
+
/** Streaming cursor of the table "core_flow" */
|
|
7202
|
+
export interface core_flow_stream_cursor_input {
|
|
7203
|
+
/** Stream column input with initial value */
|
|
7204
|
+
initial_value: core_flow_stream_cursor_value_input;
|
|
7205
|
+
/** cursor ordering */
|
|
7206
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
7207
|
+
}
|
|
7208
|
+
|
|
7209
|
+
/** Initial value of the column from where the streaming should start */
|
|
7210
|
+
export interface core_flow_stream_cursor_value_input {
|
|
7211
|
+
app_id?: InputMaybe<Scalars["String"]>;
|
|
7212
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7213
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
7214
|
+
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7215
|
+
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7216
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
7217
|
+
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7218
|
+
}
|
|
7219
|
+
|
|
7220
|
+
/** update columns of table "core.flow" */
|
|
7221
|
+
export type core_flow_update_column =
|
|
7222
|
+
/** column name */
|
|
7223
|
+
| "app_id"
|
|
7224
|
+
/** column name */
|
|
7225
|
+
| "description"
|
|
7226
|
+
/** column name */
|
|
7227
|
+
| "id"
|
|
7228
|
+
/** column name */
|
|
7229
|
+
| "mapping_schema"
|
|
7230
|
+
/** column name */
|
|
7231
|
+
| "setting_schema"
|
|
7232
|
+
/** column name */
|
|
7233
|
+
| "title"
|
|
7234
|
+
/** column name */
|
|
7235
|
+
| "type";
|
|
7236
|
+
|
|
7237
|
+
export interface core_flow_updates {
|
|
7238
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7239
|
+
_append?: InputMaybe<core_flow_append_input>;
|
|
7240
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7241
|
+
_delete_at_path?: InputMaybe<core_flow_delete_at_path_input>;
|
|
7242
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7243
|
+
_delete_elem?: InputMaybe<core_flow_delete_elem_input>;
|
|
7244
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7245
|
+
_delete_key?: InputMaybe<core_flow_delete_key_input>;
|
|
7246
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7247
|
+
_prepend?: InputMaybe<core_flow_prepend_input>;
|
|
7248
|
+
/** sets the columns of the filtered rows to the given values */
|
|
7249
|
+
_set?: InputMaybe<core_flow_set_input>;
|
|
7250
|
+
/** filter the rows which have to be updated */
|
|
7251
|
+
where: core_flow_bool_exp;
|
|
7252
|
+
}
|
|
7253
|
+
|
|
6884
7254
|
/** Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'. */
|
|
6885
7255
|
export interface currency_bool_exp {
|
|
6886
7256
|
_and?: InputMaybe<Array<currency_bool_exp>>;
|
|
@@ -8806,6 +9176,19 @@ export interface file_storage_updates {
|
|
|
8806
9176
|
where: file_storage_bool_exp;
|
|
8807
9177
|
}
|
|
8808
9178
|
|
|
9179
|
+
/** Boolean expression to compare columns of type "flow_type". All fields are combined with logical 'AND'. */
|
|
9180
|
+
export interface flow_type_comparison_exp {
|
|
9181
|
+
_eq?: InputMaybe<Scalars["flow_type"]>;
|
|
9182
|
+
_gt?: InputMaybe<Scalars["flow_type"]>;
|
|
9183
|
+
_gte?: InputMaybe<Scalars["flow_type"]>;
|
|
9184
|
+
_in?: InputMaybe<Array<Scalars["flow_type"]>>;
|
|
9185
|
+
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
9186
|
+
_lt?: InputMaybe<Scalars["flow_type"]>;
|
|
9187
|
+
_lte?: InputMaybe<Scalars["flow_type"]>;
|
|
9188
|
+
_neq?: InputMaybe<Scalars["flow_type"]>;
|
|
9189
|
+
_nin?: InputMaybe<Array<Scalars["flow_type"]>>;
|
|
9190
|
+
}
|
|
9191
|
+
|
|
8809
9192
|
/** Boolean expression to filter rows from the logical model for "issueConnectionsNeedVersionUpgradeReturnType". All fields are combined with a logical 'AND'. */
|
|
8810
9193
|
export interface issueConnectionsNeedVersionUpgradeReturnType_bool_exp_bool_exp {
|
|
8811
9194
|
_and?: InputMaybe<
|
|
@@ -30993,7 +31376,7 @@ export declare const generatedSchema: {
|
|
|
30993
31376
|
where: "setting_bool_exp";
|
|
30994
31377
|
};
|
|
30995
31378
|
};
|
|
30996
|
-
status: { __type: "
|
|
31379
|
+
status: { __type: "activeStatus_enum!" };
|
|
30997
31380
|
syncs: {
|
|
30998
31381
|
__type: "[sync!]!";
|
|
30999
31382
|
__args: {
|
|
@@ -31084,7 +31467,7 @@ export declare const generatedSchema: {
|
|
|
31084
31467
|
scheduleStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
31085
31468
|
settings: { __type: "setting_bool_exp" };
|
|
31086
31469
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
31087
|
-
status: { __type: "
|
|
31470
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
31088
31471
|
syncs: { __type: "sync_bool_exp" };
|
|
31089
31472
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
31090
31473
|
template: { __type: "String_comparison_exp" };
|
|
@@ -31125,7 +31508,7 @@ export declare const generatedSchema: {
|
|
|
31125
31508
|
runSettings: { __type: "jsonb" };
|
|
31126
31509
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31127
31510
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
31128
|
-
status: { __type: "
|
|
31511
|
+
status: { __type: "activeStatus_enum" };
|
|
31129
31512
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
31130
31513
|
template: { __type: "String" };
|
|
31131
31514
|
templateId: { __type: "uuid" };
|
|
@@ -31246,7 +31629,7 @@ export declare const generatedSchema: {
|
|
|
31246
31629
|
rightConnectionId: { __type: "uuid" };
|
|
31247
31630
|
runSettings: { __type: "jsonb" };
|
|
31248
31631
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31249
|
-
status: { __type: "
|
|
31632
|
+
status: { __type: "activeStatus_enum" };
|
|
31250
31633
|
template: { __type: "String" };
|
|
31251
31634
|
templateId: { __type: "uuid" };
|
|
31252
31635
|
tenantId: { __type: "uuid" };
|
|
@@ -31255,71 +31638,6 @@ export declare const generatedSchema: {
|
|
|
31255
31638
|
updatedAt: { __type: "timestamptz" };
|
|
31256
31639
|
viewSettings: { __type: "jsonb" };
|
|
31257
31640
|
};
|
|
31258
|
-
automation_status: {
|
|
31259
|
-
__typename: { __type: "String!" };
|
|
31260
|
-
name: { __type: "String!" };
|
|
31261
|
-
};
|
|
31262
|
-
automation_status_aggregate: {
|
|
31263
|
-
__typename: { __type: "String!" };
|
|
31264
|
-
aggregate: { __type: "automation_status_aggregate_fields" };
|
|
31265
|
-
nodes: { __type: "[automation_status!]!" };
|
|
31266
|
-
};
|
|
31267
|
-
automation_status_aggregate_fields: {
|
|
31268
|
-
__typename: { __type: "String!" };
|
|
31269
|
-
count: {
|
|
31270
|
-
__type: "Int!";
|
|
31271
|
-
__args: {
|
|
31272
|
-
columns: "[automation_status_select_column!]";
|
|
31273
|
-
distinct: "Boolean";
|
|
31274
|
-
};
|
|
31275
|
-
};
|
|
31276
|
-
max: { __type: "automation_status_max_fields" };
|
|
31277
|
-
min: { __type: "automation_status_min_fields" };
|
|
31278
|
-
};
|
|
31279
|
-
automation_status_bool_exp: {
|
|
31280
|
-
_and: { __type: "[automation_status_bool_exp!]" };
|
|
31281
|
-
_not: { __type: "automation_status_bool_exp" };
|
|
31282
|
-
_or: { __type: "[automation_status_bool_exp!]" };
|
|
31283
|
-
name: { __type: "String_comparison_exp" };
|
|
31284
|
-
};
|
|
31285
|
-
automation_status_enum_comparison_exp: {
|
|
31286
|
-
_eq: { __type: "automation_status_enum" };
|
|
31287
|
-
_in: { __type: "[automation_status_enum!]" };
|
|
31288
|
-
_is_null: { __type: "Boolean" };
|
|
31289
|
-
_neq: { __type: "automation_status_enum" };
|
|
31290
|
-
_nin: { __type: "[automation_status_enum!]" };
|
|
31291
|
-
};
|
|
31292
|
-
automation_status_insert_input: { name: { __type: "String" } };
|
|
31293
|
-
automation_status_max_fields: {
|
|
31294
|
-
__typename: { __type: "String!" };
|
|
31295
|
-
name: { __type: "String" };
|
|
31296
|
-
};
|
|
31297
|
-
automation_status_min_fields: {
|
|
31298
|
-
__typename: { __type: "String!" };
|
|
31299
|
-
name: { __type: "String" };
|
|
31300
|
-
};
|
|
31301
|
-
automation_status_mutation_response: {
|
|
31302
|
-
__typename: { __type: "String!" };
|
|
31303
|
-
affected_rows: { __type: "Int!" };
|
|
31304
|
-
returning: { __type: "[automation_status!]!" };
|
|
31305
|
-
};
|
|
31306
|
-
automation_status_on_conflict: {
|
|
31307
|
-
constraint: { __type: "automation_status_constraint!" };
|
|
31308
|
-
update_columns: { __type: "[automation_status_update_column!]!" };
|
|
31309
|
-
where: { __type: "automation_status_bool_exp" };
|
|
31310
|
-
};
|
|
31311
|
-
automation_status_order_by: { name: { __type: "order_by" } };
|
|
31312
|
-
automation_status_pk_columns_input: { name: { __type: "String!" } };
|
|
31313
|
-
automation_status_set_input: { name: { __type: "String" } };
|
|
31314
|
-
automation_status_stream_cursor_input: {
|
|
31315
|
-
initial_value: { __type: "automation_status_stream_cursor_value_input!" };
|
|
31316
|
-
ordering: { __type: "cursor_ordering" };
|
|
31317
|
-
};
|
|
31318
|
-
automation_status_stream_cursor_value_input: { name: { __type: "String" } };
|
|
31319
|
-
automation_status_updates: {
|
|
31320
|
-
_set: { __type: "automation_status_set_input" };
|
|
31321
|
-
where: { __type: "automation_status_bool_exp!" };
|
|
31322
|
-
};
|
|
31323
31641
|
automation_stream_cursor_input: {
|
|
31324
31642
|
initial_value: { __type: "automation_stream_cursor_value_input!" };
|
|
31325
31643
|
ordering: { __type: "cursor_ordering" };
|
|
@@ -31332,7 +31650,7 @@ export declare const generatedSchema: {
|
|
|
31332
31650
|
rightConnectionId: { __type: "uuid" };
|
|
31333
31651
|
runSettings: { __type: "jsonb" };
|
|
31334
31652
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31335
|
-
status: { __type: "
|
|
31653
|
+
status: { __type: "activeStatus_enum" };
|
|
31336
31654
|
template: { __type: "String" };
|
|
31337
31655
|
templateId: { __type: "uuid" };
|
|
31338
31656
|
tenantId: { __type: "uuid" };
|
|
@@ -34179,7 +34497,7 @@ export declare const generatedSchema: {
|
|
|
34179
34497
|
where: "setting_bool_exp";
|
|
34180
34498
|
};
|
|
34181
34499
|
};
|
|
34182
|
-
status: { __type: "
|
|
34500
|
+
status: { __type: "activeStatus_enum" };
|
|
34183
34501
|
syncs: {
|
|
34184
34502
|
__type: "[sync!]!";
|
|
34185
34503
|
__args: {
|
|
@@ -34351,7 +34669,7 @@ export declare const generatedSchema: {
|
|
|
34351
34669
|
settingsRight: { __type: "setting_bool_exp" };
|
|
34352
34670
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34353
34671
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34354
|
-
status: { __type: "
|
|
34672
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
34355
34673
|
syncs: { __type: "sync_bool_exp" };
|
|
34356
34674
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
34357
34675
|
tasks: { __type: "task_bool_exp" };
|
|
@@ -34409,7 +34727,7 @@ export declare const generatedSchema: {
|
|
|
34409
34727
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
34410
34728
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
34411
34729
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
34412
|
-
status: { __type: "
|
|
34730
|
+
status: { __type: "activeStatus_enum" };
|
|
34413
34731
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
34414
34732
|
tasks: { __type: "task_arr_rel_insert_input" };
|
|
34415
34733
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
@@ -34429,7 +34747,6 @@ export declare const generatedSchema: {
|
|
|
34429
34747
|
id: { __type: "uuid" };
|
|
34430
34748
|
lastFetch: { __type: "timestamptz" };
|
|
34431
34749
|
name: { __type: "String" };
|
|
34432
|
-
status: { __type: "String" };
|
|
34433
34750
|
tenantId: { __type: "uuid" };
|
|
34434
34751
|
type: { __type: "String" };
|
|
34435
34752
|
uniqueRef: { __type: "String" };
|
|
@@ -34445,7 +34762,6 @@ export declare const generatedSchema: {
|
|
|
34445
34762
|
id: { __type: "order_by" };
|
|
34446
34763
|
lastFetch: { __type: "order_by" };
|
|
34447
34764
|
name: { __type: "order_by" };
|
|
34448
|
-
status: { __type: "order_by" };
|
|
34449
34765
|
tenantId: { __type: "order_by" };
|
|
34450
34766
|
type: { __type: "order_by" };
|
|
34451
34767
|
uniqueRef: { __type: "order_by" };
|
|
@@ -34462,7 +34778,6 @@ export declare const generatedSchema: {
|
|
|
34462
34778
|
id: { __type: "uuid" };
|
|
34463
34779
|
lastFetch: { __type: "timestamptz" };
|
|
34464
34780
|
name: { __type: "String" };
|
|
34465
|
-
status: { __type: "String" };
|
|
34466
34781
|
tenantId: { __type: "uuid" };
|
|
34467
34782
|
type: { __type: "String" };
|
|
34468
34783
|
uniqueRef: { __type: "String" };
|
|
@@ -34478,7 +34793,6 @@ export declare const generatedSchema: {
|
|
|
34478
34793
|
id: { __type: "order_by" };
|
|
34479
34794
|
lastFetch: { __type: "order_by" };
|
|
34480
34795
|
name: { __type: "order_by" };
|
|
34481
|
-
status: { __type: "order_by" };
|
|
34482
34796
|
tenantId: { __type: "order_by" };
|
|
34483
34797
|
type: { __type: "order_by" };
|
|
34484
34798
|
uniqueRef: { __type: "order_by" };
|
|
@@ -34558,75 +34872,13 @@ export declare const generatedSchema: {
|
|
|
34558
34872
|
metadata: { __type: "jsonb" };
|
|
34559
34873
|
name: { __type: "String" };
|
|
34560
34874
|
persistentState: { __type: "jsonb" };
|
|
34561
|
-
status: { __type: "
|
|
34875
|
+
status: { __type: "activeStatus_enum" };
|
|
34562
34876
|
tenantId: { __type: "uuid" };
|
|
34563
34877
|
type: { __type: "String" };
|
|
34564
34878
|
uniqueRef: { __type: "String" };
|
|
34565
34879
|
updatedAt: { __type: "timestamptz" };
|
|
34566
34880
|
version: { __type: "Int" };
|
|
34567
34881
|
};
|
|
34568
|
-
connection_status_temporary: {
|
|
34569
|
-
__typename: { __type: "String!" };
|
|
34570
|
-
name: { __type: "String!" };
|
|
34571
|
-
};
|
|
34572
|
-
connection_status_temporary_aggregate: {
|
|
34573
|
-
__typename: { __type: "String!" };
|
|
34574
|
-
aggregate: { __type: "connection_status_temporary_aggregate_fields" };
|
|
34575
|
-
nodes: { __type: "[connection_status_temporary!]!" };
|
|
34576
|
-
};
|
|
34577
|
-
connection_status_temporary_aggregate_fields: {
|
|
34578
|
-
__typename: { __type: "String!" };
|
|
34579
|
-
count: {
|
|
34580
|
-
__type: "Int!";
|
|
34581
|
-
__args: {
|
|
34582
|
-
columns: "[connection_status_temporary_select_column!]";
|
|
34583
|
-
distinct: "Boolean";
|
|
34584
|
-
};
|
|
34585
|
-
};
|
|
34586
|
-
max: { __type: "connection_status_temporary_max_fields" };
|
|
34587
|
-
min: { __type: "connection_status_temporary_min_fields" };
|
|
34588
|
-
};
|
|
34589
|
-
connection_status_temporary_bool_exp: {
|
|
34590
|
-
_and: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
34591
|
-
_not: { __type: "connection_status_temporary_bool_exp" };
|
|
34592
|
-
_or: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
34593
|
-
name: { __type: "String_comparison_exp" };
|
|
34594
|
-
};
|
|
34595
|
-
connection_status_temporary_insert_input: { name: { __type: "String" } };
|
|
34596
|
-
connection_status_temporary_max_fields: {
|
|
34597
|
-
__typename: { __type: "String!" };
|
|
34598
|
-
name: { __type: "String" };
|
|
34599
|
-
};
|
|
34600
|
-
connection_status_temporary_min_fields: {
|
|
34601
|
-
__typename: { __type: "String!" };
|
|
34602
|
-
name: { __type: "String" };
|
|
34603
|
-
};
|
|
34604
|
-
connection_status_temporary_mutation_response: {
|
|
34605
|
-
__typename: { __type: "String!" };
|
|
34606
|
-
affected_rows: { __type: "Int!" };
|
|
34607
|
-
returning: { __type: "[connection_status_temporary!]!" };
|
|
34608
|
-
};
|
|
34609
|
-
connection_status_temporary_on_conflict: {
|
|
34610
|
-
constraint: { __type: "connection_status_temporary_constraint!" };
|
|
34611
|
-
update_columns: { __type: "[connection_status_temporary_update_column!]!" };
|
|
34612
|
-
where: { __type: "connection_status_temporary_bool_exp" };
|
|
34613
|
-
};
|
|
34614
|
-
connection_status_temporary_order_by: { name: { __type: "order_by" } };
|
|
34615
|
-
connection_status_temporary_pk_columns_input: { name: { __type: "String!" } };
|
|
34616
|
-
connection_status_temporary_set_input: { name: { __type: "String" } };
|
|
34617
|
-
connection_status_temporary_stream_cursor_input: {
|
|
34618
|
-
initial_value: {
|
|
34619
|
-
__type: "connection_status_temporary_stream_cursor_value_input!";
|
|
34620
|
-
};
|
|
34621
|
-
ordering: { __type: "cursor_ordering" };
|
|
34622
|
-
};
|
|
34623
|
-
connection_status_temporary_stream_cursor_value_input: {
|
|
34624
|
-
name: { __type: "String" };
|
|
34625
|
-
};
|
|
34626
|
-
connection_status_temporary_updates: {
|
|
34627
|
-
_set: { __type: "connection_status_temporary_set_input" };
|
|
34628
|
-
where: { __type: "connection_status_temporary_bool_exp!" };
|
|
34629
|
-
};
|
|
34630
34882
|
connection_stddev_fields: {
|
|
34631
34883
|
__typename: { __type: "String!" };
|
|
34632
34884
|
backendVersion: { __type: "Float" };
|
|
@@ -34672,7 +34924,7 @@ export declare const generatedSchema: {
|
|
|
34672
34924
|
metadata: { __type: "jsonb" };
|
|
34673
34925
|
name: { __type: "String" };
|
|
34674
34926
|
persistentState: { __type: "jsonb" };
|
|
34675
|
-
status: { __type: "
|
|
34927
|
+
status: { __type: "activeStatus_enum" };
|
|
34676
34928
|
tenantId: { __type: "uuid" };
|
|
34677
34929
|
type: { __type: "String" };
|
|
34678
34930
|
uniqueRef: { __type: "String" };
|
|
@@ -35363,6 +35615,414 @@ export declare const generatedSchema: {
|
|
|
35363
35615
|
_set: { __type: "core_change_source_link_set_input" };
|
|
35364
35616
|
where: { __type: "core_change_source_link_bool_exp!" };
|
|
35365
35617
|
};
|
|
35618
|
+
core_flow: {
|
|
35619
|
+
__typename: { __type: "String!" };
|
|
35620
|
+
app_id: { __type: "String!" };
|
|
35621
|
+
description: { __type: "String" };
|
|
35622
|
+
id: { __type: "uuid!" };
|
|
35623
|
+
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35624
|
+
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35625
|
+
title: { __type: "String!" };
|
|
35626
|
+
type: { __type: "flow_type" };
|
|
35627
|
+
};
|
|
35628
|
+
core_flow_aggregate: {
|
|
35629
|
+
__typename: { __type: "String!" };
|
|
35630
|
+
aggregate: { __type: "core_flow_aggregate_fields" };
|
|
35631
|
+
nodes: { __type: "[core_flow!]!" };
|
|
35632
|
+
};
|
|
35633
|
+
core_flow_aggregate_fields: {
|
|
35634
|
+
__typename: { __type: "String!" };
|
|
35635
|
+
count: {
|
|
35636
|
+
__type: "Int!";
|
|
35637
|
+
__args: { columns: "[core_flow_select_column!]"; distinct: "Boolean" };
|
|
35638
|
+
};
|
|
35639
|
+
max: { __type: "core_flow_max_fields" };
|
|
35640
|
+
min: { __type: "core_flow_min_fields" };
|
|
35641
|
+
};
|
|
35642
|
+
core_flow_append_input: {
|
|
35643
|
+
mapping_schema: { __type: "jsonb" };
|
|
35644
|
+
setting_schema: { __type: "jsonb" };
|
|
35645
|
+
};
|
|
35646
|
+
core_flow_bool_exp: {
|
|
35647
|
+
_and: { __type: "[core_flow_bool_exp!]" };
|
|
35648
|
+
_not: { __type: "core_flow_bool_exp" };
|
|
35649
|
+
_or: { __type: "[core_flow_bool_exp!]" };
|
|
35650
|
+
app_id: { __type: "String_comparison_exp" };
|
|
35651
|
+
description: { __type: "String_comparison_exp" };
|
|
35652
|
+
id: { __type: "uuid_comparison_exp" };
|
|
35653
|
+
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35654
|
+
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
35655
|
+
title: { __type: "String_comparison_exp" };
|
|
35656
|
+
type: { __type: "flow_type_comparison_exp" };
|
|
35657
|
+
};
|
|
35658
|
+
core_flow_delete_at_path_input: {
|
|
35659
|
+
mapping_schema: { __type: "[String!]" };
|
|
35660
|
+
setting_schema: { __type: "[String!]" };
|
|
35661
|
+
};
|
|
35662
|
+
core_flow_delete_elem_input: {
|
|
35663
|
+
mapping_schema: { __type: "Int" };
|
|
35664
|
+
setting_schema: { __type: "Int" };
|
|
35665
|
+
};
|
|
35666
|
+
core_flow_delete_key_input: {
|
|
35667
|
+
mapping_schema: { __type: "String" };
|
|
35668
|
+
setting_schema: { __type: "String" };
|
|
35669
|
+
};
|
|
35670
|
+
core_flow_insert_input: {
|
|
35671
|
+
app_id: { __type: "String" };
|
|
35672
|
+
description: { __type: "String" };
|
|
35673
|
+
id: { __type: "uuid" };
|
|
35674
|
+
mapping_schema: { __type: "jsonb" };
|
|
35675
|
+
setting_schema: { __type: "jsonb" };
|
|
35676
|
+
title: { __type: "String" };
|
|
35677
|
+
type: { __type: "flow_type" };
|
|
35678
|
+
};
|
|
35679
|
+
core_flow_mapping: {
|
|
35680
|
+
__typename: { __type: "String!" };
|
|
35681
|
+
account_id: { __type: "uuid" };
|
|
35682
|
+
booking_channel_id: { __type: "uuid" };
|
|
35683
|
+
contact_id: { __type: "uuid" };
|
|
35684
|
+
flow_id: { __type: "uuid!" };
|
|
35685
|
+
id: { __type: "uuid!" };
|
|
35686
|
+
listing_id: { __type: "uuid" };
|
|
35687
|
+
mapping_key: { __type: "String!" };
|
|
35688
|
+
source_id: { __type: "uuid!" };
|
|
35689
|
+
value: { __type: "jsonb"; __args: { path: "String" } };
|
|
35690
|
+
};
|
|
35691
|
+
core_flow_mapping_aggregate: {
|
|
35692
|
+
__typename: { __type: "String!" };
|
|
35693
|
+
aggregate: { __type: "core_flow_mapping_aggregate_fields" };
|
|
35694
|
+
nodes: { __type: "[core_flow_mapping!]!" };
|
|
35695
|
+
};
|
|
35696
|
+
core_flow_mapping_aggregate_fields: {
|
|
35697
|
+
__typename: { __type: "String!" };
|
|
35698
|
+
count: {
|
|
35699
|
+
__type: "Int!";
|
|
35700
|
+
__args: {
|
|
35701
|
+
columns: "[core_flow_mapping_select_column!]";
|
|
35702
|
+
distinct: "Boolean";
|
|
35703
|
+
};
|
|
35704
|
+
};
|
|
35705
|
+
max: { __type: "core_flow_mapping_max_fields" };
|
|
35706
|
+
min: { __type: "core_flow_mapping_min_fields" };
|
|
35707
|
+
};
|
|
35708
|
+
core_flow_mapping_append_input: { value: { __type: "jsonb" } };
|
|
35709
|
+
core_flow_mapping_bool_exp: {
|
|
35710
|
+
_and: { __type: "[core_flow_mapping_bool_exp!]" };
|
|
35711
|
+
_not: { __type: "core_flow_mapping_bool_exp" };
|
|
35712
|
+
_or: { __type: "[core_flow_mapping_bool_exp!]" };
|
|
35713
|
+
account_id: { __type: "uuid_comparison_exp" };
|
|
35714
|
+
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
35715
|
+
contact_id: { __type: "uuid_comparison_exp" };
|
|
35716
|
+
flow_id: { __type: "uuid_comparison_exp" };
|
|
35717
|
+
id: { __type: "uuid_comparison_exp" };
|
|
35718
|
+
listing_id: { __type: "uuid_comparison_exp" };
|
|
35719
|
+
mapping_key: { __type: "String_comparison_exp" };
|
|
35720
|
+
source_id: { __type: "uuid_comparison_exp" };
|
|
35721
|
+
value: { __type: "jsonb_comparison_exp" };
|
|
35722
|
+
};
|
|
35723
|
+
core_flow_mapping_delete_at_path_input: { value: { __type: "[String!]" } };
|
|
35724
|
+
core_flow_mapping_delete_elem_input: { value: { __type: "Int" } };
|
|
35725
|
+
core_flow_mapping_delete_key_input: { value: { __type: "String" } };
|
|
35726
|
+
core_flow_mapping_insert_input: {
|
|
35727
|
+
account_id: { __type: "uuid" };
|
|
35728
|
+
booking_channel_id: { __type: "uuid" };
|
|
35729
|
+
contact_id: { __type: "uuid" };
|
|
35730
|
+
flow_id: { __type: "uuid" };
|
|
35731
|
+
id: { __type: "uuid" };
|
|
35732
|
+
listing_id: { __type: "uuid" };
|
|
35733
|
+
mapping_key: { __type: "String" };
|
|
35734
|
+
source_id: { __type: "uuid" };
|
|
35735
|
+
value: { __type: "jsonb" };
|
|
35736
|
+
};
|
|
35737
|
+
core_flow_mapping_max_fields: {
|
|
35738
|
+
__typename: { __type: "String!" };
|
|
35739
|
+
account_id: { __type: "uuid" };
|
|
35740
|
+
booking_channel_id: { __type: "uuid" };
|
|
35741
|
+
contact_id: { __type: "uuid" };
|
|
35742
|
+
flow_id: { __type: "uuid" };
|
|
35743
|
+
id: { __type: "uuid" };
|
|
35744
|
+
listing_id: { __type: "uuid" };
|
|
35745
|
+
mapping_key: { __type: "String" };
|
|
35746
|
+
source_id: { __type: "uuid" };
|
|
35747
|
+
};
|
|
35748
|
+
core_flow_mapping_min_fields: {
|
|
35749
|
+
__typename: { __type: "String!" };
|
|
35750
|
+
account_id: { __type: "uuid" };
|
|
35751
|
+
booking_channel_id: { __type: "uuid" };
|
|
35752
|
+
contact_id: { __type: "uuid" };
|
|
35753
|
+
flow_id: { __type: "uuid" };
|
|
35754
|
+
id: { __type: "uuid" };
|
|
35755
|
+
listing_id: { __type: "uuid" };
|
|
35756
|
+
mapping_key: { __type: "String" };
|
|
35757
|
+
source_id: { __type: "uuid" };
|
|
35758
|
+
};
|
|
35759
|
+
core_flow_mapping_mutation_response: {
|
|
35760
|
+
__typename: { __type: "String!" };
|
|
35761
|
+
affected_rows: { __type: "Int!" };
|
|
35762
|
+
returning: { __type: "[core_flow_mapping!]!" };
|
|
35763
|
+
};
|
|
35764
|
+
core_flow_mapping_on_conflict: {
|
|
35765
|
+
constraint: { __type: "core_flow_mapping_constraint!" };
|
|
35766
|
+
update_columns: { __type: "[core_flow_mapping_update_column!]!" };
|
|
35767
|
+
where: { __type: "core_flow_mapping_bool_exp" };
|
|
35768
|
+
};
|
|
35769
|
+
core_flow_mapping_order_by: {
|
|
35770
|
+
account_id: { __type: "order_by" };
|
|
35771
|
+
booking_channel_id: { __type: "order_by" };
|
|
35772
|
+
contact_id: { __type: "order_by" };
|
|
35773
|
+
flow_id: { __type: "order_by" };
|
|
35774
|
+
id: { __type: "order_by" };
|
|
35775
|
+
listing_id: { __type: "order_by" };
|
|
35776
|
+
mapping_key: { __type: "order_by" };
|
|
35777
|
+
source_id: { __type: "order_by" };
|
|
35778
|
+
value: { __type: "order_by" };
|
|
35779
|
+
};
|
|
35780
|
+
core_flow_mapping_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35781
|
+
core_flow_mapping_prepend_input: { value: { __type: "jsonb" } };
|
|
35782
|
+
core_flow_mapping_set_input: {
|
|
35783
|
+
account_id: { __type: "uuid" };
|
|
35784
|
+
booking_channel_id: { __type: "uuid" };
|
|
35785
|
+
contact_id: { __type: "uuid" };
|
|
35786
|
+
flow_id: { __type: "uuid" };
|
|
35787
|
+
id: { __type: "uuid" };
|
|
35788
|
+
listing_id: { __type: "uuid" };
|
|
35789
|
+
mapping_key: { __type: "String" };
|
|
35790
|
+
source_id: { __type: "uuid" };
|
|
35791
|
+
value: { __type: "jsonb" };
|
|
35792
|
+
};
|
|
35793
|
+
core_flow_mapping_stream_cursor_input: {
|
|
35794
|
+
initial_value: { __type: "core_flow_mapping_stream_cursor_value_input!" };
|
|
35795
|
+
ordering: { __type: "cursor_ordering" };
|
|
35796
|
+
};
|
|
35797
|
+
core_flow_mapping_stream_cursor_value_input: {
|
|
35798
|
+
account_id: { __type: "uuid" };
|
|
35799
|
+
booking_channel_id: { __type: "uuid" };
|
|
35800
|
+
contact_id: { __type: "uuid" };
|
|
35801
|
+
flow_id: { __type: "uuid" };
|
|
35802
|
+
id: { __type: "uuid" };
|
|
35803
|
+
listing_id: { __type: "uuid" };
|
|
35804
|
+
mapping_key: { __type: "String" };
|
|
35805
|
+
source_id: { __type: "uuid" };
|
|
35806
|
+
value: { __type: "jsonb" };
|
|
35807
|
+
};
|
|
35808
|
+
core_flow_mapping_updates: {
|
|
35809
|
+
_append: { __type: "core_flow_mapping_append_input" };
|
|
35810
|
+
_delete_at_path: { __type: "core_flow_mapping_delete_at_path_input" };
|
|
35811
|
+
_delete_elem: { __type: "core_flow_mapping_delete_elem_input" };
|
|
35812
|
+
_delete_key: { __type: "core_flow_mapping_delete_key_input" };
|
|
35813
|
+
_prepend: { __type: "core_flow_mapping_prepend_input" };
|
|
35814
|
+
_set: { __type: "core_flow_mapping_set_input" };
|
|
35815
|
+
where: { __type: "core_flow_mapping_bool_exp!" };
|
|
35816
|
+
};
|
|
35817
|
+
core_flow_max_fields: {
|
|
35818
|
+
__typename: { __type: "String!" };
|
|
35819
|
+
app_id: { __type: "String" };
|
|
35820
|
+
description: { __type: "String" };
|
|
35821
|
+
id: { __type: "uuid" };
|
|
35822
|
+
title: { __type: "String" };
|
|
35823
|
+
type: { __type: "flow_type" };
|
|
35824
|
+
};
|
|
35825
|
+
core_flow_min_fields: {
|
|
35826
|
+
__typename: { __type: "String!" };
|
|
35827
|
+
app_id: { __type: "String" };
|
|
35828
|
+
description: { __type: "String" };
|
|
35829
|
+
id: { __type: "uuid" };
|
|
35830
|
+
title: { __type: "String" };
|
|
35831
|
+
type: { __type: "flow_type" };
|
|
35832
|
+
};
|
|
35833
|
+
core_flow_mutation_response: {
|
|
35834
|
+
__typename: { __type: "String!" };
|
|
35835
|
+
affected_rows: { __type: "Int!" };
|
|
35836
|
+
returning: { __type: "[core_flow!]!" };
|
|
35837
|
+
};
|
|
35838
|
+
core_flow_on_conflict: {
|
|
35839
|
+
constraint: { __type: "core_flow_constraint!" };
|
|
35840
|
+
update_columns: { __type: "[core_flow_update_column!]!" };
|
|
35841
|
+
where: { __type: "core_flow_bool_exp" };
|
|
35842
|
+
};
|
|
35843
|
+
core_flow_order_by: {
|
|
35844
|
+
app_id: { __type: "order_by" };
|
|
35845
|
+
description: { __type: "order_by" };
|
|
35846
|
+
id: { __type: "order_by" };
|
|
35847
|
+
mapping_schema: { __type: "order_by" };
|
|
35848
|
+
setting_schema: { __type: "order_by" };
|
|
35849
|
+
title: { __type: "order_by" };
|
|
35850
|
+
type: { __type: "order_by" };
|
|
35851
|
+
};
|
|
35852
|
+
core_flow_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35853
|
+
core_flow_prepend_input: {
|
|
35854
|
+
mapping_schema: { __type: "jsonb" };
|
|
35855
|
+
setting_schema: { __type: "jsonb" };
|
|
35856
|
+
};
|
|
35857
|
+
core_flow_set_input: {
|
|
35858
|
+
app_id: { __type: "String" };
|
|
35859
|
+
description: { __type: "String" };
|
|
35860
|
+
id: { __type: "uuid" };
|
|
35861
|
+
mapping_schema: { __type: "jsonb" };
|
|
35862
|
+
setting_schema: { __type: "jsonb" };
|
|
35863
|
+
title: { __type: "String" };
|
|
35864
|
+
type: { __type: "flow_type" };
|
|
35865
|
+
};
|
|
35866
|
+
core_flow_setting: {
|
|
35867
|
+
__typename: { __type: "String!" };
|
|
35868
|
+
account_id: { __type: "uuid" };
|
|
35869
|
+
booking_channel_id: { __type: "uuid" };
|
|
35870
|
+
connection_id: { __type: "uuid!" };
|
|
35871
|
+
contact_id: { __type: "uuid" };
|
|
35872
|
+
flow_id: { __type: "uuid!" };
|
|
35873
|
+
id: { __type: "uuid!" };
|
|
35874
|
+
listing_id: { __type: "uuid" };
|
|
35875
|
+
setting_key: { __type: "String!" };
|
|
35876
|
+
value: { __type: "jsonb"; __args: { path: "String" } };
|
|
35877
|
+
};
|
|
35878
|
+
core_flow_setting_aggregate: {
|
|
35879
|
+
__typename: { __type: "String!" };
|
|
35880
|
+
aggregate: { __type: "core_flow_setting_aggregate_fields" };
|
|
35881
|
+
nodes: { __type: "[core_flow_setting!]!" };
|
|
35882
|
+
};
|
|
35883
|
+
core_flow_setting_aggregate_fields: {
|
|
35884
|
+
__typename: { __type: "String!" };
|
|
35885
|
+
count: {
|
|
35886
|
+
__type: "Int!";
|
|
35887
|
+
__args: {
|
|
35888
|
+
columns: "[core_flow_setting_select_column!]";
|
|
35889
|
+
distinct: "Boolean";
|
|
35890
|
+
};
|
|
35891
|
+
};
|
|
35892
|
+
max: { __type: "core_flow_setting_max_fields" };
|
|
35893
|
+
min: { __type: "core_flow_setting_min_fields" };
|
|
35894
|
+
};
|
|
35895
|
+
core_flow_setting_append_input: { value: { __type: "jsonb" } };
|
|
35896
|
+
core_flow_setting_bool_exp: {
|
|
35897
|
+
_and: { __type: "[core_flow_setting_bool_exp!]" };
|
|
35898
|
+
_not: { __type: "core_flow_setting_bool_exp" };
|
|
35899
|
+
_or: { __type: "[core_flow_setting_bool_exp!]" };
|
|
35900
|
+
account_id: { __type: "uuid_comparison_exp" };
|
|
35901
|
+
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
35902
|
+
connection_id: { __type: "uuid_comparison_exp" };
|
|
35903
|
+
contact_id: { __type: "uuid_comparison_exp" };
|
|
35904
|
+
flow_id: { __type: "uuid_comparison_exp" };
|
|
35905
|
+
id: { __type: "uuid_comparison_exp" };
|
|
35906
|
+
listing_id: { __type: "uuid_comparison_exp" };
|
|
35907
|
+
setting_key: { __type: "String_comparison_exp" };
|
|
35908
|
+
value: { __type: "jsonb_comparison_exp" };
|
|
35909
|
+
};
|
|
35910
|
+
core_flow_setting_delete_at_path_input: { value: { __type: "[String!]" } };
|
|
35911
|
+
core_flow_setting_delete_elem_input: { value: { __type: "Int" } };
|
|
35912
|
+
core_flow_setting_delete_key_input: { value: { __type: "String" } };
|
|
35913
|
+
core_flow_setting_insert_input: {
|
|
35914
|
+
account_id: { __type: "uuid" };
|
|
35915
|
+
booking_channel_id: { __type: "uuid" };
|
|
35916
|
+
connection_id: { __type: "uuid" };
|
|
35917
|
+
contact_id: { __type: "uuid" };
|
|
35918
|
+
flow_id: { __type: "uuid" };
|
|
35919
|
+
id: { __type: "uuid" };
|
|
35920
|
+
listing_id: { __type: "uuid" };
|
|
35921
|
+
setting_key: { __type: "String" };
|
|
35922
|
+
value: { __type: "jsonb" };
|
|
35923
|
+
};
|
|
35924
|
+
core_flow_setting_max_fields: {
|
|
35925
|
+
__typename: { __type: "String!" };
|
|
35926
|
+
account_id: { __type: "uuid" };
|
|
35927
|
+
booking_channel_id: { __type: "uuid" };
|
|
35928
|
+
connection_id: { __type: "uuid" };
|
|
35929
|
+
contact_id: { __type: "uuid" };
|
|
35930
|
+
flow_id: { __type: "uuid" };
|
|
35931
|
+
id: { __type: "uuid" };
|
|
35932
|
+
listing_id: { __type: "uuid" };
|
|
35933
|
+
setting_key: { __type: "String" };
|
|
35934
|
+
};
|
|
35935
|
+
core_flow_setting_min_fields: {
|
|
35936
|
+
__typename: { __type: "String!" };
|
|
35937
|
+
account_id: { __type: "uuid" };
|
|
35938
|
+
booking_channel_id: { __type: "uuid" };
|
|
35939
|
+
connection_id: { __type: "uuid" };
|
|
35940
|
+
contact_id: { __type: "uuid" };
|
|
35941
|
+
flow_id: { __type: "uuid" };
|
|
35942
|
+
id: { __type: "uuid" };
|
|
35943
|
+
listing_id: { __type: "uuid" };
|
|
35944
|
+
setting_key: { __type: "String" };
|
|
35945
|
+
};
|
|
35946
|
+
core_flow_setting_mutation_response: {
|
|
35947
|
+
__typename: { __type: "String!" };
|
|
35948
|
+
affected_rows: { __type: "Int!" };
|
|
35949
|
+
returning: { __type: "[core_flow_setting!]!" };
|
|
35950
|
+
};
|
|
35951
|
+
core_flow_setting_on_conflict: {
|
|
35952
|
+
constraint: { __type: "core_flow_setting_constraint!" };
|
|
35953
|
+
update_columns: { __type: "[core_flow_setting_update_column!]!" };
|
|
35954
|
+
where: { __type: "core_flow_setting_bool_exp" };
|
|
35955
|
+
};
|
|
35956
|
+
core_flow_setting_order_by: {
|
|
35957
|
+
account_id: { __type: "order_by" };
|
|
35958
|
+
booking_channel_id: { __type: "order_by" };
|
|
35959
|
+
connection_id: { __type: "order_by" };
|
|
35960
|
+
contact_id: { __type: "order_by" };
|
|
35961
|
+
flow_id: { __type: "order_by" };
|
|
35962
|
+
id: { __type: "order_by" };
|
|
35963
|
+
listing_id: { __type: "order_by" };
|
|
35964
|
+
setting_key: { __type: "order_by" };
|
|
35965
|
+
value: { __type: "order_by" };
|
|
35966
|
+
};
|
|
35967
|
+
core_flow_setting_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35968
|
+
core_flow_setting_prepend_input: { value: { __type: "jsonb" } };
|
|
35969
|
+
core_flow_setting_set_input: {
|
|
35970
|
+
account_id: { __type: "uuid" };
|
|
35971
|
+
booking_channel_id: { __type: "uuid" };
|
|
35972
|
+
connection_id: { __type: "uuid" };
|
|
35973
|
+
contact_id: { __type: "uuid" };
|
|
35974
|
+
flow_id: { __type: "uuid" };
|
|
35975
|
+
id: { __type: "uuid" };
|
|
35976
|
+
listing_id: { __type: "uuid" };
|
|
35977
|
+
setting_key: { __type: "String" };
|
|
35978
|
+
value: { __type: "jsonb" };
|
|
35979
|
+
};
|
|
35980
|
+
core_flow_setting_stream_cursor_input: {
|
|
35981
|
+
initial_value: { __type: "core_flow_setting_stream_cursor_value_input!" };
|
|
35982
|
+
ordering: { __type: "cursor_ordering" };
|
|
35983
|
+
};
|
|
35984
|
+
core_flow_setting_stream_cursor_value_input: {
|
|
35985
|
+
account_id: { __type: "uuid" };
|
|
35986
|
+
booking_channel_id: { __type: "uuid" };
|
|
35987
|
+
connection_id: { __type: "uuid" };
|
|
35988
|
+
contact_id: { __type: "uuid" };
|
|
35989
|
+
flow_id: { __type: "uuid" };
|
|
35990
|
+
id: { __type: "uuid" };
|
|
35991
|
+
listing_id: { __type: "uuid" };
|
|
35992
|
+
setting_key: { __type: "String" };
|
|
35993
|
+
value: { __type: "jsonb" };
|
|
35994
|
+
};
|
|
35995
|
+
core_flow_setting_updates: {
|
|
35996
|
+
_append: { __type: "core_flow_setting_append_input" };
|
|
35997
|
+
_delete_at_path: { __type: "core_flow_setting_delete_at_path_input" };
|
|
35998
|
+
_delete_elem: { __type: "core_flow_setting_delete_elem_input" };
|
|
35999
|
+
_delete_key: { __type: "core_flow_setting_delete_key_input" };
|
|
36000
|
+
_prepend: { __type: "core_flow_setting_prepend_input" };
|
|
36001
|
+
_set: { __type: "core_flow_setting_set_input" };
|
|
36002
|
+
where: { __type: "core_flow_setting_bool_exp!" };
|
|
36003
|
+
};
|
|
36004
|
+
core_flow_stream_cursor_input: {
|
|
36005
|
+
initial_value: { __type: "core_flow_stream_cursor_value_input!" };
|
|
36006
|
+
ordering: { __type: "cursor_ordering" };
|
|
36007
|
+
};
|
|
36008
|
+
core_flow_stream_cursor_value_input: {
|
|
36009
|
+
app_id: { __type: "String" };
|
|
36010
|
+
description: { __type: "String" };
|
|
36011
|
+
id: { __type: "uuid" };
|
|
36012
|
+
mapping_schema: { __type: "jsonb" };
|
|
36013
|
+
setting_schema: { __type: "jsonb" };
|
|
36014
|
+
title: { __type: "String" };
|
|
36015
|
+
type: { __type: "flow_type" };
|
|
36016
|
+
};
|
|
36017
|
+
core_flow_updates: {
|
|
36018
|
+
_append: { __type: "core_flow_append_input" };
|
|
36019
|
+
_delete_at_path: { __type: "core_flow_delete_at_path_input" };
|
|
36020
|
+
_delete_elem: { __type: "core_flow_delete_elem_input" };
|
|
36021
|
+
_delete_key: { __type: "core_flow_delete_key_input" };
|
|
36022
|
+
_prepend: { __type: "core_flow_prepend_input" };
|
|
36023
|
+
_set: { __type: "core_flow_set_input" };
|
|
36024
|
+
where: { __type: "core_flow_bool_exp!" };
|
|
36025
|
+
};
|
|
35366
36026
|
currency: { __typename: { __type: "String!" }; name: { __type: "String!" } };
|
|
35367
36027
|
currency_aggregate: {
|
|
35368
36028
|
__typename: { __type: "String!" };
|
|
@@ -36855,6 +37515,17 @@ export declare const generatedSchema: {
|
|
|
36855
37515
|
_set: { __type: "file_storage_set_input" };
|
|
36856
37516
|
where: { __type: "file_storage_bool_exp!" };
|
|
36857
37517
|
};
|
|
37518
|
+
flow_type_comparison_exp: {
|
|
37519
|
+
_eq: { __type: "flow_type" };
|
|
37520
|
+
_gt: { __type: "flow_type" };
|
|
37521
|
+
_gte: { __type: "flow_type" };
|
|
37522
|
+
_in: { __type: "[flow_type!]" };
|
|
37523
|
+
_is_null: { __type: "Boolean" };
|
|
37524
|
+
_lt: { __type: "flow_type" };
|
|
37525
|
+
_lte: { __type: "flow_type" };
|
|
37526
|
+
_neq: { __type: "flow_type" };
|
|
37527
|
+
_nin: { __type: "[flow_type!]" };
|
|
37528
|
+
};
|
|
36858
37529
|
issueConnectionsNeedVersionUpgradeReturnType: {
|
|
36859
37530
|
__typename: { __type: "String!" };
|
|
36860
37531
|
appIcon: { __type: "String!" };
|
|
@@ -41773,14 +42444,6 @@ export declare const generatedSchema: {
|
|
|
41773
42444
|
__args: { where: "address_bool_exp!" };
|
|
41774
42445
|
};
|
|
41775
42446
|
delete_address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
|
|
41776
|
-
delete_automation_status: {
|
|
41777
|
-
__type: "automation_status_mutation_response";
|
|
41778
|
-
__args: { where: "automation_status_bool_exp!" };
|
|
41779
|
-
};
|
|
41780
|
-
delete_automation_status_by_pk: {
|
|
41781
|
-
__type: "automation_status";
|
|
41782
|
-
__args: { name: "String!" };
|
|
41783
|
-
};
|
|
41784
42447
|
delete_billing_payment_method_type: {
|
|
41785
42448
|
__type: "billing_payment_method_type_mutation_response";
|
|
41786
42449
|
__args: { where: "billing_payment_method_type_bool_exp!" };
|
|
@@ -41789,14 +42452,6 @@ export declare const generatedSchema: {
|
|
|
41789
42452
|
__type: "billing_payment_method_type";
|
|
41790
42453
|
__args: { name: "String!" };
|
|
41791
42454
|
};
|
|
41792
|
-
delete_connection_status_temporary: {
|
|
41793
|
-
__type: "connection_status_temporary_mutation_response";
|
|
41794
|
-
__args: { where: "connection_status_temporary_bool_exp!" };
|
|
41795
|
-
};
|
|
41796
|
-
delete_connection_status_temporary_by_pk: {
|
|
41797
|
-
__type: "connection_status_temporary";
|
|
41798
|
-
__args: { name: "String!" };
|
|
41799
|
-
};
|
|
41800
42455
|
delete_core_change_source_link: {
|
|
41801
42456
|
__type: "core_change_source_link_mutation_response";
|
|
41802
42457
|
__args: { where: "core_change_source_link_bool_exp!" };
|
|
@@ -41805,6 +42460,27 @@ export declare const generatedSchema: {
|
|
|
41805
42460
|
__type: "core_change_source_link";
|
|
41806
42461
|
__args: { id: "uuid!" };
|
|
41807
42462
|
};
|
|
42463
|
+
delete_core_flow: {
|
|
42464
|
+
__type: "core_flow_mutation_response";
|
|
42465
|
+
__args: { where: "core_flow_bool_exp!" };
|
|
42466
|
+
};
|
|
42467
|
+
delete_core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
42468
|
+
delete_core_flow_mapping: {
|
|
42469
|
+
__type: "core_flow_mapping_mutation_response";
|
|
42470
|
+
__args: { where: "core_flow_mapping_bool_exp!" };
|
|
42471
|
+
};
|
|
42472
|
+
delete_core_flow_mapping_by_pk: {
|
|
42473
|
+
__type: "core_flow_mapping";
|
|
42474
|
+
__args: { id: "uuid!" };
|
|
42475
|
+
};
|
|
42476
|
+
delete_core_flow_setting: {
|
|
42477
|
+
__type: "core_flow_setting_mutation_response";
|
|
42478
|
+
__args: { where: "core_flow_setting_bool_exp!" };
|
|
42479
|
+
};
|
|
42480
|
+
delete_core_flow_setting_by_pk: {
|
|
42481
|
+
__type: "core_flow_setting";
|
|
42482
|
+
__args: { id: "uuid!" };
|
|
42483
|
+
};
|
|
41808
42484
|
delete_currency: {
|
|
41809
42485
|
__type: "currency_mutation_response";
|
|
41810
42486
|
__args: { where: "currency_bool_exp!" };
|
|
@@ -43341,20 +44017,6 @@ export declare const generatedSchema: {
|
|
|
43341
44017
|
on_conflict: "address_on_conflict";
|
|
43342
44018
|
};
|
|
43343
44019
|
};
|
|
43344
|
-
insert_automation_status: {
|
|
43345
|
-
__type: "automation_status_mutation_response";
|
|
43346
|
-
__args: {
|
|
43347
|
-
objects: "[automation_status_insert_input!]!";
|
|
43348
|
-
on_conflict: "automation_status_on_conflict";
|
|
43349
|
-
};
|
|
43350
|
-
};
|
|
43351
|
-
insert_automation_status_one: {
|
|
43352
|
-
__type: "automation_status";
|
|
43353
|
-
__args: {
|
|
43354
|
-
object: "automation_status_insert_input!";
|
|
43355
|
-
on_conflict: "automation_status_on_conflict";
|
|
43356
|
-
};
|
|
43357
|
-
};
|
|
43358
44020
|
insert_billing_payment_method_type: {
|
|
43359
44021
|
__type: "billing_payment_method_type_mutation_response";
|
|
43360
44022
|
__args: {
|
|
@@ -43369,20 +44031,6 @@ export declare const generatedSchema: {
|
|
|
43369
44031
|
on_conflict: "billing_payment_method_type_on_conflict";
|
|
43370
44032
|
};
|
|
43371
44033
|
};
|
|
43372
|
-
insert_connection_status_temporary: {
|
|
43373
|
-
__type: "connection_status_temporary_mutation_response";
|
|
43374
|
-
__args: {
|
|
43375
|
-
objects: "[connection_status_temporary_insert_input!]!";
|
|
43376
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
43377
|
-
};
|
|
43378
|
-
};
|
|
43379
|
-
insert_connection_status_temporary_one: {
|
|
43380
|
-
__type: "connection_status_temporary";
|
|
43381
|
-
__args: {
|
|
43382
|
-
object: "connection_status_temporary_insert_input!";
|
|
43383
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
43384
|
-
};
|
|
43385
|
-
};
|
|
43386
44034
|
insert_core_change_source_link: {
|
|
43387
44035
|
__type: "core_change_source_link_mutation_response";
|
|
43388
44036
|
__args: {
|
|
@@ -43397,6 +44045,48 @@ export declare const generatedSchema: {
|
|
|
43397
44045
|
on_conflict: "core_change_source_link_on_conflict";
|
|
43398
44046
|
};
|
|
43399
44047
|
};
|
|
44048
|
+
insert_core_flow: {
|
|
44049
|
+
__type: "core_flow_mutation_response";
|
|
44050
|
+
__args: {
|
|
44051
|
+
objects: "[core_flow_insert_input!]!";
|
|
44052
|
+
on_conflict: "core_flow_on_conflict";
|
|
44053
|
+
};
|
|
44054
|
+
};
|
|
44055
|
+
insert_core_flow_mapping: {
|
|
44056
|
+
__type: "core_flow_mapping_mutation_response";
|
|
44057
|
+
__args: {
|
|
44058
|
+
objects: "[core_flow_mapping_insert_input!]!";
|
|
44059
|
+
on_conflict: "core_flow_mapping_on_conflict";
|
|
44060
|
+
};
|
|
44061
|
+
};
|
|
44062
|
+
insert_core_flow_mapping_one: {
|
|
44063
|
+
__type: "core_flow_mapping";
|
|
44064
|
+
__args: {
|
|
44065
|
+
object: "core_flow_mapping_insert_input!";
|
|
44066
|
+
on_conflict: "core_flow_mapping_on_conflict";
|
|
44067
|
+
};
|
|
44068
|
+
};
|
|
44069
|
+
insert_core_flow_one: {
|
|
44070
|
+
__type: "core_flow";
|
|
44071
|
+
__args: {
|
|
44072
|
+
object: "core_flow_insert_input!";
|
|
44073
|
+
on_conflict: "core_flow_on_conflict";
|
|
44074
|
+
};
|
|
44075
|
+
};
|
|
44076
|
+
insert_core_flow_setting: {
|
|
44077
|
+
__type: "core_flow_setting_mutation_response";
|
|
44078
|
+
__args: {
|
|
44079
|
+
objects: "[core_flow_setting_insert_input!]!";
|
|
44080
|
+
on_conflict: "core_flow_setting_on_conflict";
|
|
44081
|
+
};
|
|
44082
|
+
};
|
|
44083
|
+
insert_core_flow_setting_one: {
|
|
44084
|
+
__type: "core_flow_setting";
|
|
44085
|
+
__args: {
|
|
44086
|
+
object: "core_flow_setting_insert_input!";
|
|
44087
|
+
on_conflict: "core_flow_setting_on_conflict";
|
|
44088
|
+
};
|
|
44089
|
+
};
|
|
43400
44090
|
insert_currency: {
|
|
43401
44091
|
__type: "currency_mutation_response";
|
|
43402
44092
|
__args: {
|
|
@@ -45725,24 +46415,6 @@ export declare const generatedSchema: {
|
|
|
45725
46415
|
__type: "[automation_mutation_response]";
|
|
45726
46416
|
__args: { updates: "[automation_updates!]!" };
|
|
45727
46417
|
};
|
|
45728
|
-
update_automation_status: {
|
|
45729
|
-
__type: "automation_status_mutation_response";
|
|
45730
|
-
__args: {
|
|
45731
|
-
_set: "automation_status_set_input";
|
|
45732
|
-
where: "automation_status_bool_exp!";
|
|
45733
|
-
};
|
|
45734
|
-
};
|
|
45735
|
-
update_automation_status_by_pk: {
|
|
45736
|
-
__type: "automation_status";
|
|
45737
|
-
__args: {
|
|
45738
|
-
_set: "automation_status_set_input";
|
|
45739
|
-
pk_columns: "automation_status_pk_columns_input!";
|
|
45740
|
-
};
|
|
45741
|
-
};
|
|
45742
|
-
update_automation_status_many: {
|
|
45743
|
-
__type: "[automation_status_mutation_response]";
|
|
45744
|
-
__args: { updates: "[automation_status_updates!]!" };
|
|
45745
|
-
};
|
|
45746
46418
|
update_automation_template_many: {
|
|
45747
46419
|
__type: "[automation_template_mutation_response]";
|
|
45748
46420
|
__args: { updates: "[automation_template_updates!]!" };
|
|
@@ -45769,24 +46441,6 @@ export declare const generatedSchema: {
|
|
|
45769
46441
|
__type: "[connection_mutation_response]";
|
|
45770
46442
|
__args: { updates: "[connection_updates!]!" };
|
|
45771
46443
|
};
|
|
45772
|
-
update_connection_status_temporary: {
|
|
45773
|
-
__type: "connection_status_temporary_mutation_response";
|
|
45774
|
-
__args: {
|
|
45775
|
-
_set: "connection_status_temporary_set_input";
|
|
45776
|
-
where: "connection_status_temporary_bool_exp!";
|
|
45777
|
-
};
|
|
45778
|
-
};
|
|
45779
|
-
update_connection_status_temporary_by_pk: {
|
|
45780
|
-
__type: "connection_status_temporary";
|
|
45781
|
-
__args: {
|
|
45782
|
-
_set: "connection_status_temporary_set_input";
|
|
45783
|
-
pk_columns: "connection_status_temporary_pk_columns_input!";
|
|
45784
|
-
};
|
|
45785
|
-
};
|
|
45786
|
-
update_connection_status_temporary_many: {
|
|
45787
|
-
__type: "[connection_status_temporary_mutation_response]";
|
|
45788
|
-
__args: { updates: "[connection_status_temporary_updates!]!" };
|
|
45789
|
-
};
|
|
45790
46444
|
update_core_change_source_link: {
|
|
45791
46445
|
__type: "core_change_source_link_mutation_response";
|
|
45792
46446
|
__args: {
|
|
@@ -45805,6 +46459,90 @@ export declare const generatedSchema: {
|
|
|
45805
46459
|
__type: "[core_change_source_link_mutation_response]";
|
|
45806
46460
|
__args: { updates: "[core_change_source_link_updates!]!" };
|
|
45807
46461
|
};
|
|
46462
|
+
update_core_flow: {
|
|
46463
|
+
__type: "core_flow_mutation_response";
|
|
46464
|
+
__args: {
|
|
46465
|
+
_append: "core_flow_append_input";
|
|
46466
|
+
_delete_at_path: "core_flow_delete_at_path_input";
|
|
46467
|
+
_delete_elem: "core_flow_delete_elem_input";
|
|
46468
|
+
_delete_key: "core_flow_delete_key_input";
|
|
46469
|
+
_prepend: "core_flow_prepend_input";
|
|
46470
|
+
_set: "core_flow_set_input";
|
|
46471
|
+
where: "core_flow_bool_exp!";
|
|
46472
|
+
};
|
|
46473
|
+
};
|
|
46474
|
+
update_core_flow_by_pk: {
|
|
46475
|
+
__type: "core_flow";
|
|
46476
|
+
__args: {
|
|
46477
|
+
_append: "core_flow_append_input";
|
|
46478
|
+
_delete_at_path: "core_flow_delete_at_path_input";
|
|
46479
|
+
_delete_elem: "core_flow_delete_elem_input";
|
|
46480
|
+
_delete_key: "core_flow_delete_key_input";
|
|
46481
|
+
_prepend: "core_flow_prepend_input";
|
|
46482
|
+
_set: "core_flow_set_input";
|
|
46483
|
+
pk_columns: "core_flow_pk_columns_input!";
|
|
46484
|
+
};
|
|
46485
|
+
};
|
|
46486
|
+
update_core_flow_many: {
|
|
46487
|
+
__type: "[core_flow_mutation_response]";
|
|
46488
|
+
__args: { updates: "[core_flow_updates!]!" };
|
|
46489
|
+
};
|
|
46490
|
+
update_core_flow_mapping: {
|
|
46491
|
+
__type: "core_flow_mapping_mutation_response";
|
|
46492
|
+
__args: {
|
|
46493
|
+
_append: "core_flow_mapping_append_input";
|
|
46494
|
+
_delete_at_path: "core_flow_mapping_delete_at_path_input";
|
|
46495
|
+
_delete_elem: "core_flow_mapping_delete_elem_input";
|
|
46496
|
+
_delete_key: "core_flow_mapping_delete_key_input";
|
|
46497
|
+
_prepend: "core_flow_mapping_prepend_input";
|
|
46498
|
+
_set: "core_flow_mapping_set_input";
|
|
46499
|
+
where: "core_flow_mapping_bool_exp!";
|
|
46500
|
+
};
|
|
46501
|
+
};
|
|
46502
|
+
update_core_flow_mapping_by_pk: {
|
|
46503
|
+
__type: "core_flow_mapping";
|
|
46504
|
+
__args: {
|
|
46505
|
+
_append: "core_flow_mapping_append_input";
|
|
46506
|
+
_delete_at_path: "core_flow_mapping_delete_at_path_input";
|
|
46507
|
+
_delete_elem: "core_flow_mapping_delete_elem_input";
|
|
46508
|
+
_delete_key: "core_flow_mapping_delete_key_input";
|
|
46509
|
+
_prepend: "core_flow_mapping_prepend_input";
|
|
46510
|
+
_set: "core_flow_mapping_set_input";
|
|
46511
|
+
pk_columns: "core_flow_mapping_pk_columns_input!";
|
|
46512
|
+
};
|
|
46513
|
+
};
|
|
46514
|
+
update_core_flow_mapping_many: {
|
|
46515
|
+
__type: "[core_flow_mapping_mutation_response]";
|
|
46516
|
+
__args: { updates: "[core_flow_mapping_updates!]!" };
|
|
46517
|
+
};
|
|
46518
|
+
update_core_flow_setting: {
|
|
46519
|
+
__type: "core_flow_setting_mutation_response";
|
|
46520
|
+
__args: {
|
|
46521
|
+
_append: "core_flow_setting_append_input";
|
|
46522
|
+
_delete_at_path: "core_flow_setting_delete_at_path_input";
|
|
46523
|
+
_delete_elem: "core_flow_setting_delete_elem_input";
|
|
46524
|
+
_delete_key: "core_flow_setting_delete_key_input";
|
|
46525
|
+
_prepend: "core_flow_setting_prepend_input";
|
|
46526
|
+
_set: "core_flow_setting_set_input";
|
|
46527
|
+
where: "core_flow_setting_bool_exp!";
|
|
46528
|
+
};
|
|
46529
|
+
};
|
|
46530
|
+
update_core_flow_setting_by_pk: {
|
|
46531
|
+
__type: "core_flow_setting";
|
|
46532
|
+
__args: {
|
|
46533
|
+
_append: "core_flow_setting_append_input";
|
|
46534
|
+
_delete_at_path: "core_flow_setting_delete_at_path_input";
|
|
46535
|
+
_delete_elem: "core_flow_setting_delete_elem_input";
|
|
46536
|
+
_delete_key: "core_flow_setting_delete_key_input";
|
|
46537
|
+
_prepend: "core_flow_setting_prepend_input";
|
|
46538
|
+
_set: "core_flow_setting_set_input";
|
|
46539
|
+
pk_columns: "core_flow_setting_pk_columns_input!";
|
|
46540
|
+
};
|
|
46541
|
+
};
|
|
46542
|
+
update_core_flow_setting_many: {
|
|
46543
|
+
__type: "[core_flow_setting_mutation_response]";
|
|
46544
|
+
__args: { updates: "[core_flow_setting_updates!]!" };
|
|
46545
|
+
};
|
|
45808
46546
|
update_currency: {
|
|
45809
46547
|
__type: "currency_mutation_response";
|
|
45810
46548
|
__args: { _set: "currency_set_input"; where: "currency_bool_exp!" };
|
|
@@ -51641,30 +52379,6 @@ export declare const generatedSchema: {
|
|
|
51641
52379
|
where: "automation_template_bool_exp";
|
|
51642
52380
|
};
|
|
51643
52381
|
};
|
|
51644
|
-
automation_status: {
|
|
51645
|
-
__type: "[automation_status!]!";
|
|
51646
|
-
__args: {
|
|
51647
|
-
distinct_on: "[automation_status_select_column!]";
|
|
51648
|
-
limit: "Int";
|
|
51649
|
-
offset: "Int";
|
|
51650
|
-
order_by: "[automation_status_order_by!]";
|
|
51651
|
-
where: "automation_status_bool_exp";
|
|
51652
|
-
};
|
|
51653
|
-
};
|
|
51654
|
-
automation_status_aggregate: {
|
|
51655
|
-
__type: "automation_status_aggregate!";
|
|
51656
|
-
__args: {
|
|
51657
|
-
distinct_on: "[automation_status_select_column!]";
|
|
51658
|
-
limit: "Int";
|
|
51659
|
-
offset: "Int";
|
|
51660
|
-
order_by: "[automation_status_order_by!]";
|
|
51661
|
-
where: "automation_status_bool_exp";
|
|
51662
|
-
};
|
|
51663
|
-
};
|
|
51664
|
-
automation_status_by_pk: {
|
|
51665
|
-
__type: "automation_status";
|
|
51666
|
-
__args: { name: "String!" };
|
|
51667
|
-
};
|
|
51668
52382
|
automations: {
|
|
51669
52383
|
__type: "[automation!]!";
|
|
51670
52384
|
__args: {
|
|
@@ -51992,30 +52706,6 @@ export declare const generatedSchema: {
|
|
|
51992
52706
|
};
|
|
51993
52707
|
};
|
|
51994
52708
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
51995
|
-
connection_status_temporary: {
|
|
51996
|
-
__type: "[connection_status_temporary!]!";
|
|
51997
|
-
__args: {
|
|
51998
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
51999
|
-
limit: "Int";
|
|
52000
|
-
offset: "Int";
|
|
52001
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
52002
|
-
where: "connection_status_temporary_bool_exp";
|
|
52003
|
-
};
|
|
52004
|
-
};
|
|
52005
|
-
connection_status_temporary_aggregate: {
|
|
52006
|
-
__type: "connection_status_temporary_aggregate!";
|
|
52007
|
-
__args: {
|
|
52008
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
52009
|
-
limit: "Int";
|
|
52010
|
-
offset: "Int";
|
|
52011
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
52012
|
-
where: "connection_status_temporary_bool_exp";
|
|
52013
|
-
};
|
|
52014
|
-
};
|
|
52015
|
-
connection_status_temporary_by_pk: {
|
|
52016
|
-
__type: "connection_status_temporary";
|
|
52017
|
-
__args: { name: "String!" };
|
|
52018
|
-
};
|
|
52019
52709
|
contact: { __type: "contact"; __args: { id: "uuid!" } };
|
|
52020
52710
|
contactAggregate: {
|
|
52021
52711
|
__type: "contact_aggregate!";
|
|
@@ -52106,6 +52796,75 @@ export declare const generatedSchema: {
|
|
|
52106
52796
|
__type: "core_change_source_link";
|
|
52107
52797
|
__args: { id: "uuid!" };
|
|
52108
52798
|
};
|
|
52799
|
+
core_flow: {
|
|
52800
|
+
__type: "[core_flow!]!";
|
|
52801
|
+
__args: {
|
|
52802
|
+
distinct_on: "[core_flow_select_column!]";
|
|
52803
|
+
limit: "Int";
|
|
52804
|
+
offset: "Int";
|
|
52805
|
+
order_by: "[core_flow_order_by!]";
|
|
52806
|
+
where: "core_flow_bool_exp";
|
|
52807
|
+
};
|
|
52808
|
+
};
|
|
52809
|
+
core_flow_aggregate: {
|
|
52810
|
+
__type: "core_flow_aggregate!";
|
|
52811
|
+
__args: {
|
|
52812
|
+
distinct_on: "[core_flow_select_column!]";
|
|
52813
|
+
limit: "Int";
|
|
52814
|
+
offset: "Int";
|
|
52815
|
+
order_by: "[core_flow_order_by!]";
|
|
52816
|
+
where: "core_flow_bool_exp";
|
|
52817
|
+
};
|
|
52818
|
+
};
|
|
52819
|
+
core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
52820
|
+
core_flow_mapping: {
|
|
52821
|
+
__type: "[core_flow_mapping!]!";
|
|
52822
|
+
__args: {
|
|
52823
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
52824
|
+
limit: "Int";
|
|
52825
|
+
offset: "Int";
|
|
52826
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
52827
|
+
where: "core_flow_mapping_bool_exp";
|
|
52828
|
+
};
|
|
52829
|
+
};
|
|
52830
|
+
core_flow_mapping_aggregate: {
|
|
52831
|
+
__type: "core_flow_mapping_aggregate!";
|
|
52832
|
+
__args: {
|
|
52833
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
52834
|
+
limit: "Int";
|
|
52835
|
+
offset: "Int";
|
|
52836
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
52837
|
+
where: "core_flow_mapping_bool_exp";
|
|
52838
|
+
};
|
|
52839
|
+
};
|
|
52840
|
+
core_flow_mapping_by_pk: {
|
|
52841
|
+
__type: "core_flow_mapping";
|
|
52842
|
+
__args: { id: "uuid!" };
|
|
52843
|
+
};
|
|
52844
|
+
core_flow_setting: {
|
|
52845
|
+
__type: "[core_flow_setting!]!";
|
|
52846
|
+
__args: {
|
|
52847
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
52848
|
+
limit: "Int";
|
|
52849
|
+
offset: "Int";
|
|
52850
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
52851
|
+
where: "core_flow_setting_bool_exp";
|
|
52852
|
+
};
|
|
52853
|
+
};
|
|
52854
|
+
core_flow_setting_aggregate: {
|
|
52855
|
+
__type: "core_flow_setting_aggregate!";
|
|
52856
|
+
__args: {
|
|
52857
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
52858
|
+
limit: "Int";
|
|
52859
|
+
offset: "Int";
|
|
52860
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
52861
|
+
where: "core_flow_setting_bool_exp";
|
|
52862
|
+
};
|
|
52863
|
+
};
|
|
52864
|
+
core_flow_setting_by_pk: {
|
|
52865
|
+
__type: "core_flow_setting";
|
|
52866
|
+
__args: { id: "uuid!" };
|
|
52867
|
+
};
|
|
52109
52868
|
currency: {
|
|
52110
52869
|
__type: "[currency!]!";
|
|
52111
52870
|
__args: {
|
|
@@ -60140,38 +60899,6 @@ export declare const generatedSchema: {
|
|
|
60140
60899
|
where: "automation_template_bool_exp";
|
|
60141
60900
|
};
|
|
60142
60901
|
};
|
|
60143
|
-
automation_status: {
|
|
60144
|
-
__type: "[automation_status!]!";
|
|
60145
|
-
__args: {
|
|
60146
|
-
distinct_on: "[automation_status_select_column!]";
|
|
60147
|
-
limit: "Int";
|
|
60148
|
-
offset: "Int";
|
|
60149
|
-
order_by: "[automation_status_order_by!]";
|
|
60150
|
-
where: "automation_status_bool_exp";
|
|
60151
|
-
};
|
|
60152
|
-
};
|
|
60153
|
-
automation_status_aggregate: {
|
|
60154
|
-
__type: "automation_status_aggregate!";
|
|
60155
|
-
__args: {
|
|
60156
|
-
distinct_on: "[automation_status_select_column!]";
|
|
60157
|
-
limit: "Int";
|
|
60158
|
-
offset: "Int";
|
|
60159
|
-
order_by: "[automation_status_order_by!]";
|
|
60160
|
-
where: "automation_status_bool_exp";
|
|
60161
|
-
};
|
|
60162
|
-
};
|
|
60163
|
-
automation_status_by_pk: {
|
|
60164
|
-
__type: "automation_status";
|
|
60165
|
-
__args: { name: "String!" };
|
|
60166
|
-
};
|
|
60167
|
-
automation_status_stream: {
|
|
60168
|
-
__type: "[automation_status!]!";
|
|
60169
|
-
__args: {
|
|
60170
|
-
batch_size: "Int!";
|
|
60171
|
-
cursor: "[automation_status_stream_cursor_input]!";
|
|
60172
|
-
where: "automation_status_bool_exp";
|
|
60173
|
-
};
|
|
60174
|
-
};
|
|
60175
60902
|
automation_stream: {
|
|
60176
60903
|
__type: "[automation!]!";
|
|
60177
60904
|
__args: {
|
|
@@ -60611,38 +61338,6 @@ export declare const generatedSchema: {
|
|
|
60611
61338
|
};
|
|
60612
61339
|
};
|
|
60613
61340
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
60614
|
-
connection_status_temporary: {
|
|
60615
|
-
__type: "[connection_status_temporary!]!";
|
|
60616
|
-
__args: {
|
|
60617
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
60618
|
-
limit: "Int";
|
|
60619
|
-
offset: "Int";
|
|
60620
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
60621
|
-
where: "connection_status_temporary_bool_exp";
|
|
60622
|
-
};
|
|
60623
|
-
};
|
|
60624
|
-
connection_status_temporary_aggregate: {
|
|
60625
|
-
__type: "connection_status_temporary_aggregate!";
|
|
60626
|
-
__args: {
|
|
60627
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
60628
|
-
limit: "Int";
|
|
60629
|
-
offset: "Int";
|
|
60630
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
60631
|
-
where: "connection_status_temporary_bool_exp";
|
|
60632
|
-
};
|
|
60633
|
-
};
|
|
60634
|
-
connection_status_temporary_by_pk: {
|
|
60635
|
-
__type: "connection_status_temporary";
|
|
60636
|
-
__args: { name: "String!" };
|
|
60637
|
-
};
|
|
60638
|
-
connection_status_temporary_stream: {
|
|
60639
|
-
__type: "[connection_status_temporary!]!";
|
|
60640
|
-
__args: {
|
|
60641
|
-
batch_size: "Int!";
|
|
60642
|
-
cursor: "[connection_status_temporary_stream_cursor_input]!";
|
|
60643
|
-
where: "connection_status_temporary_bool_exp";
|
|
60644
|
-
};
|
|
60645
|
-
};
|
|
60646
61341
|
connection_stream: {
|
|
60647
61342
|
__type: "[connection!]!";
|
|
60648
61343
|
__args: {
|
|
@@ -60773,6 +61468,99 @@ export declare const generatedSchema: {
|
|
|
60773
61468
|
where: "core_change_source_link_bool_exp";
|
|
60774
61469
|
};
|
|
60775
61470
|
};
|
|
61471
|
+
core_flow: {
|
|
61472
|
+
__type: "[core_flow!]!";
|
|
61473
|
+
__args: {
|
|
61474
|
+
distinct_on: "[core_flow_select_column!]";
|
|
61475
|
+
limit: "Int";
|
|
61476
|
+
offset: "Int";
|
|
61477
|
+
order_by: "[core_flow_order_by!]";
|
|
61478
|
+
where: "core_flow_bool_exp";
|
|
61479
|
+
};
|
|
61480
|
+
};
|
|
61481
|
+
core_flow_aggregate: {
|
|
61482
|
+
__type: "core_flow_aggregate!";
|
|
61483
|
+
__args: {
|
|
61484
|
+
distinct_on: "[core_flow_select_column!]";
|
|
61485
|
+
limit: "Int";
|
|
61486
|
+
offset: "Int";
|
|
61487
|
+
order_by: "[core_flow_order_by!]";
|
|
61488
|
+
where: "core_flow_bool_exp";
|
|
61489
|
+
};
|
|
61490
|
+
};
|
|
61491
|
+
core_flow_by_pk: { __type: "core_flow"; __args: { id: "uuid!" } };
|
|
61492
|
+
core_flow_mapping: {
|
|
61493
|
+
__type: "[core_flow_mapping!]!";
|
|
61494
|
+
__args: {
|
|
61495
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
61496
|
+
limit: "Int";
|
|
61497
|
+
offset: "Int";
|
|
61498
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
61499
|
+
where: "core_flow_mapping_bool_exp";
|
|
61500
|
+
};
|
|
61501
|
+
};
|
|
61502
|
+
core_flow_mapping_aggregate: {
|
|
61503
|
+
__type: "core_flow_mapping_aggregate!";
|
|
61504
|
+
__args: {
|
|
61505
|
+
distinct_on: "[core_flow_mapping_select_column!]";
|
|
61506
|
+
limit: "Int";
|
|
61507
|
+
offset: "Int";
|
|
61508
|
+
order_by: "[core_flow_mapping_order_by!]";
|
|
61509
|
+
where: "core_flow_mapping_bool_exp";
|
|
61510
|
+
};
|
|
61511
|
+
};
|
|
61512
|
+
core_flow_mapping_by_pk: {
|
|
61513
|
+
__type: "core_flow_mapping";
|
|
61514
|
+
__args: { id: "uuid!" };
|
|
61515
|
+
};
|
|
61516
|
+
core_flow_mapping_stream: {
|
|
61517
|
+
__type: "[core_flow_mapping!]!";
|
|
61518
|
+
__args: {
|
|
61519
|
+
batch_size: "Int!";
|
|
61520
|
+
cursor: "[core_flow_mapping_stream_cursor_input]!";
|
|
61521
|
+
where: "core_flow_mapping_bool_exp";
|
|
61522
|
+
};
|
|
61523
|
+
};
|
|
61524
|
+
core_flow_setting: {
|
|
61525
|
+
__type: "[core_flow_setting!]!";
|
|
61526
|
+
__args: {
|
|
61527
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
61528
|
+
limit: "Int";
|
|
61529
|
+
offset: "Int";
|
|
61530
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
61531
|
+
where: "core_flow_setting_bool_exp";
|
|
61532
|
+
};
|
|
61533
|
+
};
|
|
61534
|
+
core_flow_setting_aggregate: {
|
|
61535
|
+
__type: "core_flow_setting_aggregate!";
|
|
61536
|
+
__args: {
|
|
61537
|
+
distinct_on: "[core_flow_setting_select_column!]";
|
|
61538
|
+
limit: "Int";
|
|
61539
|
+
offset: "Int";
|
|
61540
|
+
order_by: "[core_flow_setting_order_by!]";
|
|
61541
|
+
where: "core_flow_setting_bool_exp";
|
|
61542
|
+
};
|
|
61543
|
+
};
|
|
61544
|
+
core_flow_setting_by_pk: {
|
|
61545
|
+
__type: "core_flow_setting";
|
|
61546
|
+
__args: { id: "uuid!" };
|
|
61547
|
+
};
|
|
61548
|
+
core_flow_setting_stream: {
|
|
61549
|
+
__type: "[core_flow_setting!]!";
|
|
61550
|
+
__args: {
|
|
61551
|
+
batch_size: "Int!";
|
|
61552
|
+
cursor: "[core_flow_setting_stream_cursor_input]!";
|
|
61553
|
+
where: "core_flow_setting_bool_exp";
|
|
61554
|
+
};
|
|
61555
|
+
};
|
|
61556
|
+
core_flow_stream: {
|
|
61557
|
+
__type: "[core_flow!]!";
|
|
61558
|
+
__args: {
|
|
61559
|
+
batch_size: "Int!";
|
|
61560
|
+
cursor: "[core_flow_stream_cursor_input]!";
|
|
61561
|
+
where: "core_flow_bool_exp";
|
|
61562
|
+
};
|
|
61563
|
+
};
|
|
60776
61564
|
currency: {
|
|
60777
61565
|
__type: "[currency!]!";
|
|
60778
61566
|
__args: {
|
|
@@ -73118,7 +73906,7 @@ export interface automation {
|
|
|
73118
73906
|
*/
|
|
73119
73907
|
where?: Maybe<setting_bool_exp>;
|
|
73120
73908
|
}) => setting_aggregate;
|
|
73121
|
-
status: ScalarsEnums["
|
|
73909
|
+
status: ScalarsEnums["activeStatus_enum"];
|
|
73122
73910
|
/**
|
|
73123
73911
|
* An array relationship
|
|
73124
73912
|
*/
|
|
@@ -73264,67 +74052,6 @@ export interface automation_mutation_response {
|
|
|
73264
74052
|
returning: Array<automation>;
|
|
73265
74053
|
}
|
|
73266
74054
|
|
|
73267
|
-
/**
|
|
73268
|
-
* columns and relationships of "automation_status"
|
|
73269
|
-
*/
|
|
73270
|
-
export interface automation_status {
|
|
73271
|
-
__typename?: "automation_status";
|
|
73272
|
-
name: ScalarsEnums["String"];
|
|
73273
|
-
}
|
|
73274
|
-
|
|
73275
|
-
/**
|
|
73276
|
-
* aggregated selection of "automation_status"
|
|
73277
|
-
*/
|
|
73278
|
-
export interface automation_status_aggregate {
|
|
73279
|
-
__typename?: "automation_status_aggregate";
|
|
73280
|
-
aggregate?: Maybe<automation_status_aggregate_fields>;
|
|
73281
|
-
nodes: Array<automation_status>;
|
|
73282
|
-
}
|
|
73283
|
-
|
|
73284
|
-
/**
|
|
73285
|
-
* aggregate fields of "automation_status"
|
|
73286
|
-
*/
|
|
73287
|
-
export interface automation_status_aggregate_fields {
|
|
73288
|
-
__typename?: "automation_status_aggregate_fields";
|
|
73289
|
-
count: (args?: {
|
|
73290
|
-
columns?: Maybe<Array<automation_status_select_column>>;
|
|
73291
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
73292
|
-
}) => ScalarsEnums["Int"];
|
|
73293
|
-
max?: Maybe<automation_status_max_fields>;
|
|
73294
|
-
min?: Maybe<automation_status_min_fields>;
|
|
73295
|
-
}
|
|
73296
|
-
|
|
73297
|
-
/**
|
|
73298
|
-
* aggregate max on columns
|
|
73299
|
-
*/
|
|
73300
|
-
export interface automation_status_max_fields {
|
|
73301
|
-
__typename?: "automation_status_max_fields";
|
|
73302
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
73303
|
-
}
|
|
73304
|
-
|
|
73305
|
-
/**
|
|
73306
|
-
* aggregate min on columns
|
|
73307
|
-
*/
|
|
73308
|
-
export interface automation_status_min_fields {
|
|
73309
|
-
__typename?: "automation_status_min_fields";
|
|
73310
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
73311
|
-
}
|
|
73312
|
-
|
|
73313
|
-
/**
|
|
73314
|
-
* response of any mutation on the table "automation_status"
|
|
73315
|
-
*/
|
|
73316
|
-
export interface automation_status_mutation_response {
|
|
73317
|
-
__typename?: "automation_status_mutation_response";
|
|
73318
|
-
/**
|
|
73319
|
-
* number of rows affected by the mutation
|
|
73320
|
-
*/
|
|
73321
|
-
affected_rows: ScalarsEnums["Int"];
|
|
73322
|
-
/**
|
|
73323
|
-
* data from the rows affected by the mutation
|
|
73324
|
-
*/
|
|
73325
|
-
returning: Array<automation_status>;
|
|
73326
|
-
}
|
|
73327
|
-
|
|
73328
74055
|
/**
|
|
73329
74056
|
* columns and relationships of "automation_template"
|
|
73330
74057
|
*/
|
|
@@ -75938,7 +76665,7 @@ export interface connection {
|
|
|
75938
76665
|
*/
|
|
75939
76666
|
where?: Maybe<setting_bool_exp>;
|
|
75940
76667
|
}) => setting_aggregate;
|
|
75941
|
-
status?: Maybe<ScalarsEnums["
|
|
76668
|
+
status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
75942
76669
|
/**
|
|
75943
76670
|
* An array relationship
|
|
75944
76671
|
*/
|
|
@@ -76102,7 +76829,6 @@ export interface connection_max_fields {
|
|
|
76102
76829
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76103
76830
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76104
76831
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
76105
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
76106
76832
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76107
76833
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
76108
76834
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -76123,7 +76849,6 @@ export interface connection_min_fields {
|
|
|
76123
76849
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
76124
76850
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76125
76851
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
76126
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
76127
76852
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
76128
76853
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
76129
76854
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -76146,67 +76871,6 @@ export interface connection_mutation_response {
|
|
|
76146
76871
|
returning: Array<connection>;
|
|
76147
76872
|
}
|
|
76148
76873
|
|
|
76149
|
-
/**
|
|
76150
|
-
* columns and relationships of "connection_status_temporary"
|
|
76151
|
-
*/
|
|
76152
|
-
export interface connection_status_temporary {
|
|
76153
|
-
__typename?: "connection_status_temporary";
|
|
76154
|
-
name: ScalarsEnums["String"];
|
|
76155
|
-
}
|
|
76156
|
-
|
|
76157
|
-
/**
|
|
76158
|
-
* aggregated selection of "connection_status_temporary"
|
|
76159
|
-
*/
|
|
76160
|
-
export interface connection_status_temporary_aggregate {
|
|
76161
|
-
__typename?: "connection_status_temporary_aggregate";
|
|
76162
|
-
aggregate?: Maybe<connection_status_temporary_aggregate_fields>;
|
|
76163
|
-
nodes: Array<connection_status_temporary>;
|
|
76164
|
-
}
|
|
76165
|
-
|
|
76166
|
-
/**
|
|
76167
|
-
* aggregate fields of "connection_status_temporary"
|
|
76168
|
-
*/
|
|
76169
|
-
export interface connection_status_temporary_aggregate_fields {
|
|
76170
|
-
__typename?: "connection_status_temporary_aggregate_fields";
|
|
76171
|
-
count: (args?: {
|
|
76172
|
-
columns?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
76173
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
76174
|
-
}) => ScalarsEnums["Int"];
|
|
76175
|
-
max?: Maybe<connection_status_temporary_max_fields>;
|
|
76176
|
-
min?: Maybe<connection_status_temporary_min_fields>;
|
|
76177
|
-
}
|
|
76178
|
-
|
|
76179
|
-
/**
|
|
76180
|
-
* aggregate max on columns
|
|
76181
|
-
*/
|
|
76182
|
-
export interface connection_status_temporary_max_fields {
|
|
76183
|
-
__typename?: "connection_status_temporary_max_fields";
|
|
76184
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
76185
|
-
}
|
|
76186
|
-
|
|
76187
|
-
/**
|
|
76188
|
-
* aggregate min on columns
|
|
76189
|
-
*/
|
|
76190
|
-
export interface connection_status_temporary_min_fields {
|
|
76191
|
-
__typename?: "connection_status_temporary_min_fields";
|
|
76192
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
76193
|
-
}
|
|
76194
|
-
|
|
76195
|
-
/**
|
|
76196
|
-
* response of any mutation on the table "connection_status_temporary"
|
|
76197
|
-
*/
|
|
76198
|
-
export interface connection_status_temporary_mutation_response {
|
|
76199
|
-
__typename?: "connection_status_temporary_mutation_response";
|
|
76200
|
-
/**
|
|
76201
|
-
* number of rows affected by the mutation
|
|
76202
|
-
*/
|
|
76203
|
-
affected_rows: ScalarsEnums["Int"];
|
|
76204
|
-
/**
|
|
76205
|
-
* data from the rows affected by the mutation
|
|
76206
|
-
*/
|
|
76207
|
-
returning: Array<connection_status_temporary>;
|
|
76208
|
-
}
|
|
76209
|
-
|
|
76210
76874
|
/**
|
|
76211
76875
|
* aggregate stddev on columns
|
|
76212
76876
|
*/
|
|
@@ -76860,6 +77524,267 @@ export interface core_change_source_link_mutation_response {
|
|
|
76860
77524
|
returning: Array<core_change_source_link>;
|
|
76861
77525
|
}
|
|
76862
77526
|
|
|
77527
|
+
/**
|
|
77528
|
+
* columns and relationships of "core.flow"
|
|
77529
|
+
*/
|
|
77530
|
+
export interface core_flow {
|
|
77531
|
+
__typename?: "core_flow";
|
|
77532
|
+
app_id: ScalarsEnums["String"];
|
|
77533
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
77534
|
+
id: ScalarsEnums["uuid"];
|
|
77535
|
+
mapping_schema: (args?: {
|
|
77536
|
+
/**
|
|
77537
|
+
* JSON select path
|
|
77538
|
+
*/
|
|
77539
|
+
path?: Maybe<Scalars["String"]>;
|
|
77540
|
+
}) => ScalarsEnums["jsonb"];
|
|
77541
|
+
setting_schema: (args?: {
|
|
77542
|
+
/**
|
|
77543
|
+
* JSON select path
|
|
77544
|
+
*/
|
|
77545
|
+
path?: Maybe<Scalars["String"]>;
|
|
77546
|
+
}) => ScalarsEnums["jsonb"];
|
|
77547
|
+
title: ScalarsEnums["String"];
|
|
77548
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77549
|
+
}
|
|
77550
|
+
|
|
77551
|
+
/**
|
|
77552
|
+
* aggregated selection of "core.flow"
|
|
77553
|
+
*/
|
|
77554
|
+
export interface core_flow_aggregate {
|
|
77555
|
+
__typename?: "core_flow_aggregate";
|
|
77556
|
+
aggregate?: Maybe<core_flow_aggregate_fields>;
|
|
77557
|
+
nodes: Array<core_flow>;
|
|
77558
|
+
}
|
|
77559
|
+
|
|
77560
|
+
/**
|
|
77561
|
+
* aggregate fields of "core.flow"
|
|
77562
|
+
*/
|
|
77563
|
+
export interface core_flow_aggregate_fields {
|
|
77564
|
+
__typename?: "core_flow_aggregate_fields";
|
|
77565
|
+
count: (args?: {
|
|
77566
|
+
columns?: Maybe<Array<core_flow_select_column>>;
|
|
77567
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
77568
|
+
}) => ScalarsEnums["Int"];
|
|
77569
|
+
max?: Maybe<core_flow_max_fields>;
|
|
77570
|
+
min?: Maybe<core_flow_min_fields>;
|
|
77571
|
+
}
|
|
77572
|
+
|
|
77573
|
+
/**
|
|
77574
|
+
* columns and relationships of "core.flow_mapping"
|
|
77575
|
+
*/
|
|
77576
|
+
export interface core_flow_mapping {
|
|
77577
|
+
__typename?: "core_flow_mapping";
|
|
77578
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77579
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77580
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77581
|
+
flow_id: ScalarsEnums["uuid"];
|
|
77582
|
+
id: ScalarsEnums["uuid"];
|
|
77583
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77584
|
+
mapping_key: ScalarsEnums["String"];
|
|
77585
|
+
source_id: ScalarsEnums["uuid"];
|
|
77586
|
+
value: (args?: {
|
|
77587
|
+
/**
|
|
77588
|
+
* JSON select path
|
|
77589
|
+
*/
|
|
77590
|
+
path?: Maybe<Scalars["String"]>;
|
|
77591
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
77592
|
+
}
|
|
77593
|
+
|
|
77594
|
+
/**
|
|
77595
|
+
* aggregated selection of "core.flow_mapping"
|
|
77596
|
+
*/
|
|
77597
|
+
export interface core_flow_mapping_aggregate {
|
|
77598
|
+
__typename?: "core_flow_mapping_aggregate";
|
|
77599
|
+
aggregate?: Maybe<core_flow_mapping_aggregate_fields>;
|
|
77600
|
+
nodes: Array<core_flow_mapping>;
|
|
77601
|
+
}
|
|
77602
|
+
|
|
77603
|
+
/**
|
|
77604
|
+
* aggregate fields of "core.flow_mapping"
|
|
77605
|
+
*/
|
|
77606
|
+
export interface core_flow_mapping_aggregate_fields {
|
|
77607
|
+
__typename?: "core_flow_mapping_aggregate_fields";
|
|
77608
|
+
count: (args?: {
|
|
77609
|
+
columns?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
77610
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
77611
|
+
}) => ScalarsEnums["Int"];
|
|
77612
|
+
max?: Maybe<core_flow_mapping_max_fields>;
|
|
77613
|
+
min?: Maybe<core_flow_mapping_min_fields>;
|
|
77614
|
+
}
|
|
77615
|
+
|
|
77616
|
+
/**
|
|
77617
|
+
* aggregate max on columns
|
|
77618
|
+
*/
|
|
77619
|
+
export interface core_flow_mapping_max_fields {
|
|
77620
|
+
__typename?: "core_flow_mapping_max_fields";
|
|
77621
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77622
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77623
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77624
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77625
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77626
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77627
|
+
mapping_key?: Maybe<ScalarsEnums["String"]>;
|
|
77628
|
+
source_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77629
|
+
}
|
|
77630
|
+
|
|
77631
|
+
/**
|
|
77632
|
+
* aggregate min on columns
|
|
77633
|
+
*/
|
|
77634
|
+
export interface core_flow_mapping_min_fields {
|
|
77635
|
+
__typename?: "core_flow_mapping_min_fields";
|
|
77636
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77637
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77638
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77639
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77640
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77641
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77642
|
+
mapping_key?: Maybe<ScalarsEnums["String"]>;
|
|
77643
|
+
source_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77644
|
+
}
|
|
77645
|
+
|
|
77646
|
+
/**
|
|
77647
|
+
* response of any mutation on the table "core.flow_mapping"
|
|
77648
|
+
*/
|
|
77649
|
+
export interface core_flow_mapping_mutation_response {
|
|
77650
|
+
__typename?: "core_flow_mapping_mutation_response";
|
|
77651
|
+
/**
|
|
77652
|
+
* number of rows affected by the mutation
|
|
77653
|
+
*/
|
|
77654
|
+
affected_rows: ScalarsEnums["Int"];
|
|
77655
|
+
/**
|
|
77656
|
+
* data from the rows affected by the mutation
|
|
77657
|
+
*/
|
|
77658
|
+
returning: Array<core_flow_mapping>;
|
|
77659
|
+
}
|
|
77660
|
+
|
|
77661
|
+
/**
|
|
77662
|
+
* aggregate max on columns
|
|
77663
|
+
*/
|
|
77664
|
+
export interface core_flow_max_fields {
|
|
77665
|
+
__typename?: "core_flow_max_fields";
|
|
77666
|
+
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77667
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
77668
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77669
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
77670
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77671
|
+
}
|
|
77672
|
+
|
|
77673
|
+
/**
|
|
77674
|
+
* aggregate min on columns
|
|
77675
|
+
*/
|
|
77676
|
+
export interface core_flow_min_fields {
|
|
77677
|
+
__typename?: "core_flow_min_fields";
|
|
77678
|
+
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77679
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
77680
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77681
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
77682
|
+
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77683
|
+
}
|
|
77684
|
+
|
|
77685
|
+
/**
|
|
77686
|
+
* response of any mutation on the table "core.flow"
|
|
77687
|
+
*/
|
|
77688
|
+
export interface core_flow_mutation_response {
|
|
77689
|
+
__typename?: "core_flow_mutation_response";
|
|
77690
|
+
/**
|
|
77691
|
+
* number of rows affected by the mutation
|
|
77692
|
+
*/
|
|
77693
|
+
affected_rows: ScalarsEnums["Int"];
|
|
77694
|
+
/**
|
|
77695
|
+
* data from the rows affected by the mutation
|
|
77696
|
+
*/
|
|
77697
|
+
returning: Array<core_flow>;
|
|
77698
|
+
}
|
|
77699
|
+
|
|
77700
|
+
/**
|
|
77701
|
+
* columns and relationships of "core.flow_setting"
|
|
77702
|
+
*/
|
|
77703
|
+
export interface core_flow_setting {
|
|
77704
|
+
__typename?: "core_flow_setting";
|
|
77705
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77706
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77707
|
+
connection_id: ScalarsEnums["uuid"];
|
|
77708
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77709
|
+
flow_id: ScalarsEnums["uuid"];
|
|
77710
|
+
id: ScalarsEnums["uuid"];
|
|
77711
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77712
|
+
setting_key: ScalarsEnums["String"];
|
|
77713
|
+
value: (args?: {
|
|
77714
|
+
/**
|
|
77715
|
+
* JSON select path
|
|
77716
|
+
*/
|
|
77717
|
+
path?: Maybe<Scalars["String"]>;
|
|
77718
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
77719
|
+
}
|
|
77720
|
+
|
|
77721
|
+
/**
|
|
77722
|
+
* aggregated selection of "core.flow_setting"
|
|
77723
|
+
*/
|
|
77724
|
+
export interface core_flow_setting_aggregate {
|
|
77725
|
+
__typename?: "core_flow_setting_aggregate";
|
|
77726
|
+
aggregate?: Maybe<core_flow_setting_aggregate_fields>;
|
|
77727
|
+
nodes: Array<core_flow_setting>;
|
|
77728
|
+
}
|
|
77729
|
+
|
|
77730
|
+
/**
|
|
77731
|
+
* aggregate fields of "core.flow_setting"
|
|
77732
|
+
*/
|
|
77733
|
+
export interface core_flow_setting_aggregate_fields {
|
|
77734
|
+
__typename?: "core_flow_setting_aggregate_fields";
|
|
77735
|
+
count: (args?: {
|
|
77736
|
+
columns?: Maybe<Array<core_flow_setting_select_column>>;
|
|
77737
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
77738
|
+
}) => ScalarsEnums["Int"];
|
|
77739
|
+
max?: Maybe<core_flow_setting_max_fields>;
|
|
77740
|
+
min?: Maybe<core_flow_setting_min_fields>;
|
|
77741
|
+
}
|
|
77742
|
+
|
|
77743
|
+
/**
|
|
77744
|
+
* aggregate max on columns
|
|
77745
|
+
*/
|
|
77746
|
+
export interface core_flow_setting_max_fields {
|
|
77747
|
+
__typename?: "core_flow_setting_max_fields";
|
|
77748
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77749
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77750
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77751
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77752
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77753
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77754
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77755
|
+
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77756
|
+
}
|
|
77757
|
+
|
|
77758
|
+
/**
|
|
77759
|
+
* aggregate min on columns
|
|
77760
|
+
*/
|
|
77761
|
+
export interface core_flow_setting_min_fields {
|
|
77762
|
+
__typename?: "core_flow_setting_min_fields";
|
|
77763
|
+
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77764
|
+
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77765
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77766
|
+
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77767
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77768
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77769
|
+
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77770
|
+
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77771
|
+
}
|
|
77772
|
+
|
|
77773
|
+
/**
|
|
77774
|
+
* response of any mutation on the table "core.flow_setting"
|
|
77775
|
+
*/
|
|
77776
|
+
export interface core_flow_setting_mutation_response {
|
|
77777
|
+
__typename?: "core_flow_setting_mutation_response";
|
|
77778
|
+
/**
|
|
77779
|
+
* number of rows affected by the mutation
|
|
77780
|
+
*/
|
|
77781
|
+
affected_rows: ScalarsEnums["Int"];
|
|
77782
|
+
/**
|
|
77783
|
+
* data from the rows affected by the mutation
|
|
77784
|
+
*/
|
|
77785
|
+
returning: Array<core_flow_setting>;
|
|
77786
|
+
}
|
|
77787
|
+
|
|
76863
77788
|
/**
|
|
76864
77789
|
* columns and relationships of "currency"
|
|
76865
77790
|
*/
|
|
@@ -81891,30 +82816,34 @@ export interface Mutation {
|
|
|
81891
82816
|
where: address_bool_exp;
|
|
81892
82817
|
}) => Maybe<address_mutation_response>;
|
|
81893
82818
|
delete_address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
|
|
81894
|
-
delete_automation_status: (args: {
|
|
81895
|
-
where: automation_status_bool_exp;
|
|
81896
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
81897
|
-
delete_automation_status_by_pk: (args: {
|
|
81898
|
-
name: Scalars["String"];
|
|
81899
|
-
}) => Maybe<automation_status>;
|
|
81900
82819
|
delete_billing_payment_method_type: (args: {
|
|
81901
82820
|
where: billing_payment_method_type_bool_exp;
|
|
81902
82821
|
}) => Maybe<billing_payment_method_type_mutation_response>;
|
|
81903
82822
|
delete_billing_payment_method_type_by_pk: (args: {
|
|
81904
82823
|
name: Scalars["String"];
|
|
81905
82824
|
}) => Maybe<billing_payment_method_type>;
|
|
81906
|
-
delete_connection_status_temporary: (args: {
|
|
81907
|
-
where: connection_status_temporary_bool_exp;
|
|
81908
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
81909
|
-
delete_connection_status_temporary_by_pk: (args: {
|
|
81910
|
-
name: Scalars["String"];
|
|
81911
|
-
}) => Maybe<connection_status_temporary>;
|
|
81912
82825
|
delete_core_change_source_link: (args: {
|
|
81913
82826
|
where: core_change_source_link_bool_exp;
|
|
81914
82827
|
}) => Maybe<core_change_source_link_mutation_response>;
|
|
81915
82828
|
delete_core_change_source_link_by_pk: (args: {
|
|
81916
82829
|
id: Scalars["uuid"];
|
|
81917
82830
|
}) => Maybe<core_change_source_link>;
|
|
82831
|
+
delete_core_flow: (args: {
|
|
82832
|
+
where: core_flow_bool_exp;
|
|
82833
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
82834
|
+
delete_core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
82835
|
+
delete_core_flow_mapping: (args: {
|
|
82836
|
+
where: core_flow_mapping_bool_exp;
|
|
82837
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
82838
|
+
delete_core_flow_mapping_by_pk: (args: {
|
|
82839
|
+
id: Scalars["uuid"];
|
|
82840
|
+
}) => Maybe<core_flow_mapping>;
|
|
82841
|
+
delete_core_flow_setting: (args: {
|
|
82842
|
+
where: core_flow_setting_bool_exp;
|
|
82843
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
82844
|
+
delete_core_flow_setting_by_pk: (args: {
|
|
82845
|
+
id: Scalars["uuid"];
|
|
82846
|
+
}) => Maybe<core_flow_setting>;
|
|
81918
82847
|
delete_currency: (args: {
|
|
81919
82848
|
where: currency_bool_exp;
|
|
81920
82849
|
}) => Maybe<currency_mutation_response>;
|
|
@@ -82833,14 +83762,6 @@ export interface Mutation {
|
|
|
82833
83762
|
object: address_insert_input;
|
|
82834
83763
|
on_conflict?: Maybe<address_on_conflict>;
|
|
82835
83764
|
}) => Maybe<address>;
|
|
82836
|
-
insert_automation_status: (args: {
|
|
82837
|
-
objects: Array<automation_status_insert_input>;
|
|
82838
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
82839
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
82840
|
-
insert_automation_status_one: (args: {
|
|
82841
|
-
object: automation_status_insert_input;
|
|
82842
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
82843
|
-
}) => Maybe<automation_status>;
|
|
82844
83765
|
insert_billing_payment_method_type: (args: {
|
|
82845
83766
|
objects: Array<billing_payment_method_type_insert_input>;
|
|
82846
83767
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
@@ -82849,14 +83770,6 @@ export interface Mutation {
|
|
|
82849
83770
|
object: billing_payment_method_type_insert_input;
|
|
82850
83771
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
82851
83772
|
}) => Maybe<billing_payment_method_type>;
|
|
82852
|
-
insert_connection_status_temporary: (args: {
|
|
82853
|
-
objects: Array<connection_status_temporary_insert_input>;
|
|
82854
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
82855
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
82856
|
-
insert_connection_status_temporary_one: (args: {
|
|
82857
|
-
object: connection_status_temporary_insert_input;
|
|
82858
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
82859
|
-
}) => Maybe<connection_status_temporary>;
|
|
82860
83773
|
insert_core_change_source_link: (args: {
|
|
82861
83774
|
objects: Array<core_change_source_link_insert_input>;
|
|
82862
83775
|
on_conflict?: Maybe<core_change_source_link_on_conflict>;
|
|
@@ -82865,6 +83778,30 @@ export interface Mutation {
|
|
|
82865
83778
|
object: core_change_source_link_insert_input;
|
|
82866
83779
|
on_conflict?: Maybe<core_change_source_link_on_conflict>;
|
|
82867
83780
|
}) => Maybe<core_change_source_link>;
|
|
83781
|
+
insert_core_flow: (args: {
|
|
83782
|
+
objects: Array<core_flow_insert_input>;
|
|
83783
|
+
on_conflict?: Maybe<core_flow_on_conflict>;
|
|
83784
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
83785
|
+
insert_core_flow_mapping: (args: {
|
|
83786
|
+
objects: Array<core_flow_mapping_insert_input>;
|
|
83787
|
+
on_conflict?: Maybe<core_flow_mapping_on_conflict>;
|
|
83788
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
83789
|
+
insert_core_flow_mapping_one: (args: {
|
|
83790
|
+
object: core_flow_mapping_insert_input;
|
|
83791
|
+
on_conflict?: Maybe<core_flow_mapping_on_conflict>;
|
|
83792
|
+
}) => Maybe<core_flow_mapping>;
|
|
83793
|
+
insert_core_flow_one: (args: {
|
|
83794
|
+
object: core_flow_insert_input;
|
|
83795
|
+
on_conflict?: Maybe<core_flow_on_conflict>;
|
|
83796
|
+
}) => Maybe<core_flow>;
|
|
83797
|
+
insert_core_flow_setting: (args: {
|
|
83798
|
+
objects: Array<core_flow_setting_insert_input>;
|
|
83799
|
+
on_conflict?: Maybe<core_flow_setting_on_conflict>;
|
|
83800
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
83801
|
+
insert_core_flow_setting_one: (args: {
|
|
83802
|
+
object: core_flow_setting_insert_input;
|
|
83803
|
+
on_conflict?: Maybe<core_flow_setting_on_conflict>;
|
|
83804
|
+
}) => Maybe<core_flow_setting>;
|
|
82868
83805
|
insert_currency: (args: {
|
|
82869
83806
|
objects: Array<currency_insert_input>;
|
|
82870
83807
|
on_conflict?: Maybe<currency_on_conflict>;
|
|
@@ -84444,17 +85381,6 @@ export interface Mutation {
|
|
|
84444
85381
|
update_automation_many: (args: {
|
|
84445
85382
|
updates: Array<automation_updates>;
|
|
84446
85383
|
}) => Maybe<Array<Maybe<automation_mutation_response>>>;
|
|
84447
|
-
update_automation_status: (args: {
|
|
84448
|
-
_set?: Maybe<automation_status_set_input>;
|
|
84449
|
-
where: automation_status_bool_exp;
|
|
84450
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
84451
|
-
update_automation_status_by_pk: (args: {
|
|
84452
|
-
_set?: Maybe<automation_status_set_input>;
|
|
84453
|
-
pk_columns: automation_status_pk_columns_input;
|
|
84454
|
-
}) => Maybe<automation_status>;
|
|
84455
|
-
update_automation_status_many: (args: {
|
|
84456
|
-
updates: Array<automation_status_updates>;
|
|
84457
|
-
}) => Maybe<Array<Maybe<automation_status_mutation_response>>>;
|
|
84458
85384
|
update_automation_template_many: (args: {
|
|
84459
85385
|
updates: Array<automation_template_updates>;
|
|
84460
85386
|
}) => Maybe<Array<Maybe<automation_template_mutation_response>>>;
|
|
@@ -84472,17 +85398,6 @@ export interface Mutation {
|
|
|
84472
85398
|
update_connection_many: (args: {
|
|
84473
85399
|
updates: Array<connection_updates>;
|
|
84474
85400
|
}) => Maybe<Array<Maybe<connection_mutation_response>>>;
|
|
84475
|
-
update_connection_status_temporary: (args: {
|
|
84476
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
84477
|
-
where: connection_status_temporary_bool_exp;
|
|
84478
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
84479
|
-
update_connection_status_temporary_by_pk: (args: {
|
|
84480
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
84481
|
-
pk_columns: connection_status_temporary_pk_columns_input;
|
|
84482
|
-
}) => Maybe<connection_status_temporary>;
|
|
84483
|
-
update_connection_status_temporary_many: (args: {
|
|
84484
|
-
updates: Array<connection_status_temporary_updates>;
|
|
84485
|
-
}) => Maybe<Array<Maybe<connection_status_temporary_mutation_response>>>;
|
|
84486
85401
|
update_core_change_source_link: (args: {
|
|
84487
85402
|
_set?: Maybe<core_change_source_link_set_input>;
|
|
84488
85403
|
where: core_change_source_link_bool_exp;
|
|
@@ -84494,6 +85409,69 @@ export interface Mutation {
|
|
|
84494
85409
|
update_core_change_source_link_many: (args: {
|
|
84495
85410
|
updates: Array<core_change_source_link_updates>;
|
|
84496
85411
|
}) => Maybe<Array<Maybe<core_change_source_link_mutation_response>>>;
|
|
85412
|
+
update_core_flow: (args: {
|
|
85413
|
+
_append?: Maybe<core_flow_append_input>;
|
|
85414
|
+
_delete_at_path?: Maybe<core_flow_delete_at_path_input>;
|
|
85415
|
+
_delete_elem?: Maybe<core_flow_delete_elem_input>;
|
|
85416
|
+
_delete_key?: Maybe<core_flow_delete_key_input>;
|
|
85417
|
+
_prepend?: Maybe<core_flow_prepend_input>;
|
|
85418
|
+
_set?: Maybe<core_flow_set_input>;
|
|
85419
|
+
where: core_flow_bool_exp;
|
|
85420
|
+
}) => Maybe<core_flow_mutation_response>;
|
|
85421
|
+
update_core_flow_by_pk: (args: {
|
|
85422
|
+
_append?: Maybe<core_flow_append_input>;
|
|
85423
|
+
_delete_at_path?: Maybe<core_flow_delete_at_path_input>;
|
|
85424
|
+
_delete_elem?: Maybe<core_flow_delete_elem_input>;
|
|
85425
|
+
_delete_key?: Maybe<core_flow_delete_key_input>;
|
|
85426
|
+
_prepend?: Maybe<core_flow_prepend_input>;
|
|
85427
|
+
_set?: Maybe<core_flow_set_input>;
|
|
85428
|
+
pk_columns: core_flow_pk_columns_input;
|
|
85429
|
+
}) => Maybe<core_flow>;
|
|
85430
|
+
update_core_flow_many: (args: {
|
|
85431
|
+
updates: Array<core_flow_updates>;
|
|
85432
|
+
}) => Maybe<Array<Maybe<core_flow_mutation_response>>>;
|
|
85433
|
+
update_core_flow_mapping: (args: {
|
|
85434
|
+
_append?: Maybe<core_flow_mapping_append_input>;
|
|
85435
|
+
_delete_at_path?: Maybe<core_flow_mapping_delete_at_path_input>;
|
|
85436
|
+
_delete_elem?: Maybe<core_flow_mapping_delete_elem_input>;
|
|
85437
|
+
_delete_key?: Maybe<core_flow_mapping_delete_key_input>;
|
|
85438
|
+
_prepend?: Maybe<core_flow_mapping_prepend_input>;
|
|
85439
|
+
_set?: Maybe<core_flow_mapping_set_input>;
|
|
85440
|
+
where: core_flow_mapping_bool_exp;
|
|
85441
|
+
}) => Maybe<core_flow_mapping_mutation_response>;
|
|
85442
|
+
update_core_flow_mapping_by_pk: (args: {
|
|
85443
|
+
_append?: Maybe<core_flow_mapping_append_input>;
|
|
85444
|
+
_delete_at_path?: Maybe<core_flow_mapping_delete_at_path_input>;
|
|
85445
|
+
_delete_elem?: Maybe<core_flow_mapping_delete_elem_input>;
|
|
85446
|
+
_delete_key?: Maybe<core_flow_mapping_delete_key_input>;
|
|
85447
|
+
_prepend?: Maybe<core_flow_mapping_prepend_input>;
|
|
85448
|
+
_set?: Maybe<core_flow_mapping_set_input>;
|
|
85449
|
+
pk_columns: core_flow_mapping_pk_columns_input;
|
|
85450
|
+
}) => Maybe<core_flow_mapping>;
|
|
85451
|
+
update_core_flow_mapping_many: (args: {
|
|
85452
|
+
updates: Array<core_flow_mapping_updates>;
|
|
85453
|
+
}) => Maybe<Array<Maybe<core_flow_mapping_mutation_response>>>;
|
|
85454
|
+
update_core_flow_setting: (args: {
|
|
85455
|
+
_append?: Maybe<core_flow_setting_append_input>;
|
|
85456
|
+
_delete_at_path?: Maybe<core_flow_setting_delete_at_path_input>;
|
|
85457
|
+
_delete_elem?: Maybe<core_flow_setting_delete_elem_input>;
|
|
85458
|
+
_delete_key?: Maybe<core_flow_setting_delete_key_input>;
|
|
85459
|
+
_prepend?: Maybe<core_flow_setting_prepend_input>;
|
|
85460
|
+
_set?: Maybe<core_flow_setting_set_input>;
|
|
85461
|
+
where: core_flow_setting_bool_exp;
|
|
85462
|
+
}) => Maybe<core_flow_setting_mutation_response>;
|
|
85463
|
+
update_core_flow_setting_by_pk: (args: {
|
|
85464
|
+
_append?: Maybe<core_flow_setting_append_input>;
|
|
85465
|
+
_delete_at_path?: Maybe<core_flow_setting_delete_at_path_input>;
|
|
85466
|
+
_delete_elem?: Maybe<core_flow_setting_delete_elem_input>;
|
|
85467
|
+
_delete_key?: Maybe<core_flow_setting_delete_key_input>;
|
|
85468
|
+
_prepend?: Maybe<core_flow_setting_prepend_input>;
|
|
85469
|
+
_set?: Maybe<core_flow_setting_set_input>;
|
|
85470
|
+
pk_columns: core_flow_setting_pk_columns_input;
|
|
85471
|
+
}) => Maybe<core_flow_setting>;
|
|
85472
|
+
update_core_flow_setting_many: (args: {
|
|
85473
|
+
updates: Array<core_flow_setting_updates>;
|
|
85474
|
+
}) => Maybe<Array<Maybe<core_flow_setting_mutation_response>>>;
|
|
84497
85475
|
update_currency: (args: {
|
|
84498
85476
|
_set?: Maybe<currency_set_input>;
|
|
84499
85477
|
where: currency_bool_exp;
|
|
@@ -89498,23 +90476,6 @@ export interface Query {
|
|
|
89498
90476
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
89499
90477
|
where?: Maybe<automation_template_bool_exp>;
|
|
89500
90478
|
}) => Array<automation_template>;
|
|
89501
|
-
automation_status: (args?: {
|
|
89502
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
89503
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
89504
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
89505
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
89506
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
89507
|
-
}) => Array<automation_status>;
|
|
89508
|
-
automation_status_aggregate: (args?: {
|
|
89509
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
89510
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
89511
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
89512
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
89513
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
89514
|
-
}) => automation_status_aggregate;
|
|
89515
|
-
automation_status_by_pk: (args: {
|
|
89516
|
-
name: Scalars["String"];
|
|
89517
|
-
}) => Maybe<automation_status>;
|
|
89518
90479
|
automations: (args?: {
|
|
89519
90480
|
distinct_on?: Maybe<Array<automation_select_column>>;
|
|
89520
90481
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -89750,23 +90711,6 @@ export interface Query {
|
|
|
89750
90711
|
where?: Maybe<connection_bool_exp>;
|
|
89751
90712
|
}) => connection_aggregate;
|
|
89752
90713
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
89753
|
-
connection_status_temporary: (args?: {
|
|
89754
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
89755
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
89756
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
89757
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
89758
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
89759
|
-
}) => Array<connection_status_temporary>;
|
|
89760
|
-
connection_status_temporary_aggregate: (args?: {
|
|
89761
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
89762
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
89763
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
89764
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
89765
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
89766
|
-
}) => connection_status_temporary_aggregate;
|
|
89767
|
-
connection_status_temporary_by_pk: (args: {
|
|
89768
|
-
name: Scalars["String"];
|
|
89769
|
-
}) => Maybe<connection_status_temporary>;
|
|
89770
90714
|
contact: (args: { id: Scalars["uuid"] }) => Maybe<contact>;
|
|
89771
90715
|
contactAggregate: (args?: {
|
|
89772
90716
|
distinct_on?: Maybe<Array<contact_select_column>>;
|
|
@@ -89831,6 +90775,55 @@ export interface Query {
|
|
|
89831
90775
|
core_change_source_link_by_pk: (args: {
|
|
89832
90776
|
id: Scalars["uuid"];
|
|
89833
90777
|
}) => Maybe<core_change_source_link>;
|
|
90778
|
+
core_flow: (args?: {
|
|
90779
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
90780
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90781
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90782
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
90783
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
90784
|
+
}) => Array<core_flow>;
|
|
90785
|
+
core_flow_aggregate: (args?: {
|
|
90786
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
90787
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90788
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90789
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
90790
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
90791
|
+
}) => core_flow_aggregate;
|
|
90792
|
+
core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
90793
|
+
core_flow_mapping: (args?: {
|
|
90794
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
90795
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90796
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90797
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
90798
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
90799
|
+
}) => Array<core_flow_mapping>;
|
|
90800
|
+
core_flow_mapping_aggregate: (args?: {
|
|
90801
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
90802
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90803
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90804
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
90805
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
90806
|
+
}) => core_flow_mapping_aggregate;
|
|
90807
|
+
core_flow_mapping_by_pk: (args: {
|
|
90808
|
+
id: Scalars["uuid"];
|
|
90809
|
+
}) => Maybe<core_flow_mapping>;
|
|
90810
|
+
core_flow_setting: (args?: {
|
|
90811
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
90812
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90813
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90814
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
90815
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
90816
|
+
}) => Array<core_flow_setting>;
|
|
90817
|
+
core_flow_setting_aggregate: (args?: {
|
|
90818
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
90819
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90820
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90821
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
90822
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
90823
|
+
}) => core_flow_setting_aggregate;
|
|
90824
|
+
core_flow_setting_by_pk: (args: {
|
|
90825
|
+
id: Scalars["uuid"];
|
|
90826
|
+
}) => Maybe<core_flow_setting>;
|
|
89834
90827
|
currency: (args?: {
|
|
89835
90828
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
89836
90829
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -96274,28 +97267,6 @@ export interface Subscription {
|
|
|
96274
97267
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
96275
97268
|
where?: Maybe<automation_template_bool_exp>;
|
|
96276
97269
|
}) => Array<automation_template>;
|
|
96277
|
-
automation_status: (args?: {
|
|
96278
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
96279
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
96280
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
96281
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
96282
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
96283
|
-
}) => Array<automation_status>;
|
|
96284
|
-
automation_status_aggregate: (args?: {
|
|
96285
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
96286
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
96287
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
96288
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
96289
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
96290
|
-
}) => automation_status_aggregate;
|
|
96291
|
-
automation_status_by_pk: (args: {
|
|
96292
|
-
name: Scalars["String"];
|
|
96293
|
-
}) => Maybe<automation_status>;
|
|
96294
|
-
automation_status_stream: (args: {
|
|
96295
|
-
batch_size: Scalars["Int"];
|
|
96296
|
-
cursor: Array<Maybe<automation_status_stream_cursor_input>>;
|
|
96297
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
96298
|
-
}) => Array<automation_status>;
|
|
96299
97270
|
automation_stream: (args: {
|
|
96300
97271
|
batch_size: Scalars["Int"];
|
|
96301
97272
|
cursor: Array<Maybe<automation_stream_cursor_input>>;
|
|
@@ -96601,28 +97572,6 @@ export interface Subscription {
|
|
|
96601
97572
|
where?: Maybe<connection_bool_exp>;
|
|
96602
97573
|
}) => connection_aggregate;
|
|
96603
97574
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
96604
|
-
connection_status_temporary: (args?: {
|
|
96605
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
96606
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
96607
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
96608
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
96609
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
96610
|
-
}) => Array<connection_status_temporary>;
|
|
96611
|
-
connection_status_temporary_aggregate: (args?: {
|
|
96612
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
96613
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
96614
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
96615
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
96616
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
96617
|
-
}) => connection_status_temporary_aggregate;
|
|
96618
|
-
connection_status_temporary_by_pk: (args: {
|
|
96619
|
-
name: Scalars["String"];
|
|
96620
|
-
}) => Maybe<connection_status_temporary>;
|
|
96621
|
-
connection_status_temporary_stream: (args: {
|
|
96622
|
-
batch_size: Scalars["Int"];
|
|
96623
|
-
cursor: Array<Maybe<connection_status_temporary_stream_cursor_input>>;
|
|
96624
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
96625
|
-
}) => Array<connection_status_temporary>;
|
|
96626
97575
|
connection_stream: (args: {
|
|
96627
97576
|
batch_size: Scalars["Int"];
|
|
96628
97577
|
cursor: Array<Maybe<connection_stream_cursor_input>>;
|
|
@@ -96712,6 +97661,70 @@ export interface Subscription {
|
|
|
96712
97661
|
cursor: Array<Maybe<core_change_source_link_stream_cursor_input>>;
|
|
96713
97662
|
where?: Maybe<core_change_source_link_bool_exp>;
|
|
96714
97663
|
}) => Array<core_change_source_link>;
|
|
97664
|
+
core_flow: (args?: {
|
|
97665
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
97666
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97667
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97668
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
97669
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
97670
|
+
}) => Array<core_flow>;
|
|
97671
|
+
core_flow_aggregate: (args?: {
|
|
97672
|
+
distinct_on?: Maybe<Array<core_flow_select_column>>;
|
|
97673
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97674
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97675
|
+
order_by?: Maybe<Array<core_flow_order_by>>;
|
|
97676
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
97677
|
+
}) => core_flow_aggregate;
|
|
97678
|
+
core_flow_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<core_flow>;
|
|
97679
|
+
core_flow_mapping: (args?: {
|
|
97680
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
97681
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97682
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97683
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
97684
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
97685
|
+
}) => Array<core_flow_mapping>;
|
|
97686
|
+
core_flow_mapping_aggregate: (args?: {
|
|
97687
|
+
distinct_on?: Maybe<Array<core_flow_mapping_select_column>>;
|
|
97688
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97689
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97690
|
+
order_by?: Maybe<Array<core_flow_mapping_order_by>>;
|
|
97691
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
97692
|
+
}) => core_flow_mapping_aggregate;
|
|
97693
|
+
core_flow_mapping_by_pk: (args: {
|
|
97694
|
+
id: Scalars["uuid"];
|
|
97695
|
+
}) => Maybe<core_flow_mapping>;
|
|
97696
|
+
core_flow_mapping_stream: (args: {
|
|
97697
|
+
batch_size: Scalars["Int"];
|
|
97698
|
+
cursor: Array<Maybe<core_flow_mapping_stream_cursor_input>>;
|
|
97699
|
+
where?: Maybe<core_flow_mapping_bool_exp>;
|
|
97700
|
+
}) => Array<core_flow_mapping>;
|
|
97701
|
+
core_flow_setting: (args?: {
|
|
97702
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
97703
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97704
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97705
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
97706
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
97707
|
+
}) => Array<core_flow_setting>;
|
|
97708
|
+
core_flow_setting_aggregate: (args?: {
|
|
97709
|
+
distinct_on?: Maybe<Array<core_flow_setting_select_column>>;
|
|
97710
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97711
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97712
|
+
order_by?: Maybe<Array<core_flow_setting_order_by>>;
|
|
97713
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
97714
|
+
}) => core_flow_setting_aggregate;
|
|
97715
|
+
core_flow_setting_by_pk: (args: {
|
|
97716
|
+
id: Scalars["uuid"];
|
|
97717
|
+
}) => Maybe<core_flow_setting>;
|
|
97718
|
+
core_flow_setting_stream: (args: {
|
|
97719
|
+
batch_size: Scalars["Int"];
|
|
97720
|
+
cursor: Array<Maybe<core_flow_setting_stream_cursor_input>>;
|
|
97721
|
+
where?: Maybe<core_flow_setting_bool_exp>;
|
|
97722
|
+
}) => Array<core_flow_setting>;
|
|
97723
|
+
core_flow_stream: (args: {
|
|
97724
|
+
batch_size: Scalars["Int"];
|
|
97725
|
+
cursor: Array<Maybe<core_flow_stream_cursor_input>>;
|
|
97726
|
+
where?: Maybe<core_flow_bool_exp>;
|
|
97727
|
+
}) => Array<core_flow>;
|
|
96715
97728
|
currency: (args?: {
|
|
96716
97729
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
96717
97730
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -105109,12 +106122,6 @@ export interface SchemaObjectTypes {
|
|
|
105109
106122
|
automation_max_fields: automation_max_fields;
|
|
105110
106123
|
automation_min_fields: automation_min_fields;
|
|
105111
106124
|
automation_mutation_response: automation_mutation_response;
|
|
105112
|
-
automation_status: automation_status;
|
|
105113
|
-
automation_status_aggregate: automation_status_aggregate;
|
|
105114
|
-
automation_status_aggregate_fields: automation_status_aggregate_fields;
|
|
105115
|
-
automation_status_max_fields: automation_status_max_fields;
|
|
105116
|
-
automation_status_min_fields: automation_status_min_fields;
|
|
105117
|
-
automation_status_mutation_response: automation_status_mutation_response;
|
|
105118
106125
|
automation_template: automation_template;
|
|
105119
106126
|
automation_template_aggregate: automation_template_aggregate;
|
|
105120
106127
|
automation_template_aggregate_fields: automation_template_aggregate_fields;
|
|
@@ -105223,12 +106230,6 @@ export interface SchemaObjectTypes {
|
|
|
105223
106230
|
connection_max_fields: connection_max_fields;
|
|
105224
106231
|
connection_min_fields: connection_min_fields;
|
|
105225
106232
|
connection_mutation_response: connection_mutation_response;
|
|
105226
|
-
connection_status_temporary: connection_status_temporary;
|
|
105227
|
-
connection_status_temporary_aggregate: connection_status_temporary_aggregate;
|
|
105228
|
-
connection_status_temporary_aggregate_fields: connection_status_temporary_aggregate_fields;
|
|
105229
|
-
connection_status_temporary_max_fields: connection_status_temporary_max_fields;
|
|
105230
|
-
connection_status_temporary_min_fields: connection_status_temporary_min_fields;
|
|
105231
|
-
connection_status_temporary_mutation_response: connection_status_temporary_mutation_response;
|
|
105232
106233
|
connection_stddev_fields: connection_stddev_fields;
|
|
105233
106234
|
connection_stddev_pop_fields: connection_stddev_pop_fields;
|
|
105234
106235
|
connection_stddev_samp_fields: connection_stddev_samp_fields;
|
|
@@ -105260,6 +106261,24 @@ export interface SchemaObjectTypes {
|
|
|
105260
106261
|
core_change_source_link_max_fields: core_change_source_link_max_fields;
|
|
105261
106262
|
core_change_source_link_min_fields: core_change_source_link_min_fields;
|
|
105262
106263
|
core_change_source_link_mutation_response: core_change_source_link_mutation_response;
|
|
106264
|
+
core_flow: core_flow;
|
|
106265
|
+
core_flow_aggregate: core_flow_aggregate;
|
|
106266
|
+
core_flow_aggregate_fields: core_flow_aggregate_fields;
|
|
106267
|
+
core_flow_mapping: core_flow_mapping;
|
|
106268
|
+
core_flow_mapping_aggregate: core_flow_mapping_aggregate;
|
|
106269
|
+
core_flow_mapping_aggregate_fields: core_flow_mapping_aggregate_fields;
|
|
106270
|
+
core_flow_mapping_max_fields: core_flow_mapping_max_fields;
|
|
106271
|
+
core_flow_mapping_min_fields: core_flow_mapping_min_fields;
|
|
106272
|
+
core_flow_mapping_mutation_response: core_flow_mapping_mutation_response;
|
|
106273
|
+
core_flow_max_fields: core_flow_max_fields;
|
|
106274
|
+
core_flow_min_fields: core_flow_min_fields;
|
|
106275
|
+
core_flow_mutation_response: core_flow_mutation_response;
|
|
106276
|
+
core_flow_setting: core_flow_setting;
|
|
106277
|
+
core_flow_setting_aggregate: core_flow_setting_aggregate;
|
|
106278
|
+
core_flow_setting_aggregate_fields: core_flow_setting_aggregate_fields;
|
|
106279
|
+
core_flow_setting_max_fields: core_flow_setting_max_fields;
|
|
106280
|
+
core_flow_setting_min_fields: core_flow_setting_min_fields;
|
|
106281
|
+
core_flow_setting_mutation_response: core_flow_setting_mutation_response;
|
|
105263
106282
|
currency: currency;
|
|
105264
106283
|
currency_aggregate: currency_aggregate;
|
|
105265
106284
|
currency_aggregate_fields: currency_aggregate_fields;
|
|
@@ -106181,12 +107200,6 @@ export type SchemaObjectTypesNames =
|
|
|
106181
107200
|
| "automation_max_fields"
|
|
106182
107201
|
| "automation_min_fields"
|
|
106183
107202
|
| "automation_mutation_response"
|
|
106184
|
-
| "automation_status"
|
|
106185
|
-
| "automation_status_aggregate"
|
|
106186
|
-
| "automation_status_aggregate_fields"
|
|
106187
|
-
| "automation_status_max_fields"
|
|
106188
|
-
| "automation_status_min_fields"
|
|
106189
|
-
| "automation_status_mutation_response"
|
|
106190
107203
|
| "automation_template"
|
|
106191
107204
|
| "automation_template_aggregate"
|
|
106192
107205
|
| "automation_template_aggregate_fields"
|
|
@@ -106295,12 +107308,6 @@ export type SchemaObjectTypesNames =
|
|
|
106295
107308
|
| "connection_max_fields"
|
|
106296
107309
|
| "connection_min_fields"
|
|
106297
107310
|
| "connection_mutation_response"
|
|
106298
|
-
| "connection_status_temporary"
|
|
106299
|
-
| "connection_status_temporary_aggregate"
|
|
106300
|
-
| "connection_status_temporary_aggregate_fields"
|
|
106301
|
-
| "connection_status_temporary_max_fields"
|
|
106302
|
-
| "connection_status_temporary_min_fields"
|
|
106303
|
-
| "connection_status_temporary_mutation_response"
|
|
106304
107311
|
| "connection_stddev_fields"
|
|
106305
107312
|
| "connection_stddev_pop_fields"
|
|
106306
107313
|
| "connection_stddev_samp_fields"
|
|
@@ -106332,6 +107339,24 @@ export type SchemaObjectTypesNames =
|
|
|
106332
107339
|
| "core_change_source_link_max_fields"
|
|
106333
107340
|
| "core_change_source_link_min_fields"
|
|
106334
107341
|
| "core_change_source_link_mutation_response"
|
|
107342
|
+
| "core_flow"
|
|
107343
|
+
| "core_flow_aggregate"
|
|
107344
|
+
| "core_flow_aggregate_fields"
|
|
107345
|
+
| "core_flow_mapping"
|
|
107346
|
+
| "core_flow_mapping_aggregate"
|
|
107347
|
+
| "core_flow_mapping_aggregate_fields"
|
|
107348
|
+
| "core_flow_mapping_max_fields"
|
|
107349
|
+
| "core_flow_mapping_min_fields"
|
|
107350
|
+
| "core_flow_mapping_mutation_response"
|
|
107351
|
+
| "core_flow_max_fields"
|
|
107352
|
+
| "core_flow_min_fields"
|
|
107353
|
+
| "core_flow_mutation_response"
|
|
107354
|
+
| "core_flow_setting"
|
|
107355
|
+
| "core_flow_setting_aggregate"
|
|
107356
|
+
| "core_flow_setting_aggregate_fields"
|
|
107357
|
+
| "core_flow_setting_max_fields"
|
|
107358
|
+
| "core_flow_setting_min_fields"
|
|
107359
|
+
| "core_flow_setting_mutation_response"
|
|
106335
107360
|
| "currency"
|
|
106336
107361
|
| "currency_aggregate"
|
|
106337
107362
|
| "currency_aggregate_fields"
|
|
@@ -107241,10 +108266,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107241
108266
|
audit_log_update_column: audit_log_update_column | undefined;
|
|
107242
108267
|
automation_constraint: automation_constraint | undefined;
|
|
107243
108268
|
automation_select_column: automation_select_column | undefined;
|
|
107244
|
-
automation_status_constraint: automation_status_constraint | undefined;
|
|
107245
|
-
automation_status_enum: automation_status_enum | undefined;
|
|
107246
|
-
automation_status_select_column: automation_status_select_column | undefined;
|
|
107247
|
-
automation_status_update_column: automation_status_update_column | undefined;
|
|
107248
108269
|
automation_template_constraint: automation_template_constraint | undefined;
|
|
107249
108270
|
automation_template_select_column:
|
|
107250
108271
|
| automation_template_select_column
|
|
@@ -107340,15 +108361,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107340
108361
|
connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns:
|
|
107341
108362
|
| connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns
|
|
107342
108363
|
| undefined;
|
|
107343
|
-
connection_status_temporary_constraint:
|
|
107344
|
-
| connection_status_temporary_constraint
|
|
107345
|
-
| undefined;
|
|
107346
|
-
connection_status_temporary_select_column:
|
|
107347
|
-
| connection_status_temporary_select_column
|
|
107348
|
-
| undefined;
|
|
107349
|
-
connection_status_temporary_update_column:
|
|
107350
|
-
| connection_status_temporary_update_column
|
|
107351
|
-
| undefined;
|
|
107352
108364
|
connection_update_column: connection_update_column | undefined;
|
|
107353
108365
|
contactCompanyType_constraint: contactCompanyType_constraint | undefined;
|
|
107354
108366
|
contactCompanyType_enum: contactCompanyType_enum | undefined;
|
|
@@ -107374,6 +108386,15 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107374
108386
|
core_change_source_link_update_column:
|
|
107375
108387
|
| core_change_source_link_update_column
|
|
107376
108388
|
| undefined;
|
|
108389
|
+
core_flow_constraint: core_flow_constraint | undefined;
|
|
108390
|
+
core_flow_mapping_constraint: core_flow_mapping_constraint | undefined;
|
|
108391
|
+
core_flow_mapping_select_column: core_flow_mapping_select_column | undefined;
|
|
108392
|
+
core_flow_mapping_update_column: core_flow_mapping_update_column | undefined;
|
|
108393
|
+
core_flow_select_column: core_flow_select_column | undefined;
|
|
108394
|
+
core_flow_setting_constraint: core_flow_setting_constraint | undefined;
|
|
108395
|
+
core_flow_setting_select_column: core_flow_setting_select_column | undefined;
|
|
108396
|
+
core_flow_setting_update_column: core_flow_setting_update_column | undefined;
|
|
108397
|
+
core_flow_update_column: core_flow_update_column | undefined;
|
|
107377
108398
|
currency_constraint: currency_constraint | undefined;
|
|
107378
108399
|
currency_enum: currency_enum | undefined;
|
|
107379
108400
|
currency_select_column: currency_select_column | undefined;
|