@vrplatform/graphql 1.1.13 → 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 +40 -785
- package/build/main/gqty/schema.generated.js +18 -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 +40 -785
- package/build/module/gqty/schema.generated.js +18 -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 +40 -785
- package/src/gqty/schema.generated.js +18 -340
|
@@ -2608,7 +2608,7 @@ export interface automation_bool_exp {
|
|
|
2608
2608
|
scheduleStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2609
2609
|
settings?: InputMaybe<setting_bool_exp>;
|
|
2610
2610
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
2611
|
-
status?: InputMaybe<
|
|
2611
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
2612
2612
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
2613
2613
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
2614
2614
|
template?: InputMaybe<String_comparison_exp>;
|
|
@@ -2662,7 +2662,7 @@ export interface automation_insert_input {
|
|
|
2662
2662
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2663
2663
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2664
2664
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
2665
|
-
status?: InputMaybe<
|
|
2665
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2666
2666
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
2667
2667
|
template?: InputMaybe<Scalars["String"]>;
|
|
2668
2668
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2802,7 +2802,7 @@ export interface automation_set_input {
|
|
|
2802
2802
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2803
2803
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2804
2804
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2805
|
-
status?: InputMaybe<
|
|
2805
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2806
2806
|
template?: InputMaybe<Scalars["String"]>;
|
|
2807
2807
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2808
2808
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -2812,87 +2812,6 @@ export interface automation_set_input {
|
|
|
2812
2812
|
viewSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2813
2813
|
}
|
|
2814
2814
|
|
|
2815
|
-
/** Boolean expression to filter rows from the table "automation_status". All fields are combined with a logical 'AND'. */
|
|
2816
|
-
export interface automation_status_bool_exp {
|
|
2817
|
-
_and?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2818
|
-
_not?: InputMaybe<automation_status_bool_exp>;
|
|
2819
|
-
_or?: InputMaybe<Array<automation_status_bool_exp>>;
|
|
2820
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
2821
|
-
}
|
|
2822
|
-
|
|
2823
|
-
/** unique or primary key constraints on table "automation_status" */
|
|
2824
|
-
export type automation_status_constraint =
|
|
2825
|
-
/** unique or primary key constraint on columns "name" */
|
|
2826
|
-
"automation_status_pkey";
|
|
2827
|
-
|
|
2828
|
-
export type automation_status_enum = "active" | "archived" | "inactive";
|
|
2829
|
-
|
|
2830
|
-
/** Boolean expression to compare columns of type "automation_status_enum". All fields are combined with logical 'AND'. */
|
|
2831
|
-
export interface automation_status_enum_comparison_exp {
|
|
2832
|
-
_eq?: InputMaybe<automation_status_enum>;
|
|
2833
|
-
_in?: InputMaybe<Array<automation_status_enum>>;
|
|
2834
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
2835
|
-
_neq?: InputMaybe<automation_status_enum>;
|
|
2836
|
-
_nin?: InputMaybe<Array<automation_status_enum>>;
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
/** input type for inserting data into table "automation_status" */
|
|
2840
|
-
export interface automation_status_insert_input {
|
|
2841
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2842
|
-
}
|
|
2843
|
-
|
|
2844
|
-
/** on_conflict condition type for table "automation_status" */
|
|
2845
|
-
export interface automation_status_on_conflict {
|
|
2846
|
-
constraint: automation_status_constraint;
|
|
2847
|
-
update_columns?: Array<automation_status_update_column>;
|
|
2848
|
-
where?: InputMaybe<automation_status_bool_exp>;
|
|
2849
|
-
}
|
|
2850
|
-
|
|
2851
|
-
/** Ordering options when selecting data from "automation_status". */
|
|
2852
|
-
export interface automation_status_order_by {
|
|
2853
|
-
name?: InputMaybe<order_by>;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
/** primary key columns input for table: automation_status */
|
|
2857
|
-
export interface automation_status_pk_columns_input {
|
|
2858
|
-
name: Scalars["String"];
|
|
2859
|
-
}
|
|
2860
|
-
|
|
2861
|
-
/** select columns of table "automation_status" */
|
|
2862
|
-
export type automation_status_select_column =
|
|
2863
|
-
/** column name */
|
|
2864
|
-
"name";
|
|
2865
|
-
|
|
2866
|
-
/** input type for updating data in table "automation_status" */
|
|
2867
|
-
export interface automation_status_set_input {
|
|
2868
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
|
-
/** Streaming cursor of the table "automation_status" */
|
|
2872
|
-
export interface automation_status_stream_cursor_input {
|
|
2873
|
-
/** Stream column input with initial value */
|
|
2874
|
-
initial_value: automation_status_stream_cursor_value_input;
|
|
2875
|
-
/** cursor ordering */
|
|
2876
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
2877
|
-
}
|
|
2878
|
-
|
|
2879
|
-
/** Initial value of the column from where the streaming should start */
|
|
2880
|
-
export interface automation_status_stream_cursor_value_input {
|
|
2881
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
2882
|
-
}
|
|
2883
|
-
|
|
2884
|
-
/** update columns of table "automation_status" */
|
|
2885
|
-
export type automation_status_update_column =
|
|
2886
|
-
/** column name */
|
|
2887
|
-
"name";
|
|
2888
|
-
|
|
2889
|
-
export interface automation_status_updates {
|
|
2890
|
-
/** sets the columns of the filtered rows to the given values */
|
|
2891
|
-
_set?: InputMaybe<automation_status_set_input>;
|
|
2892
|
-
/** filter the rows which have to be updated */
|
|
2893
|
-
where: automation_status_bool_exp;
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
2815
|
/** Streaming cursor of the table "automation" */
|
|
2897
2816
|
export interface automation_stream_cursor_input {
|
|
2898
2817
|
/** Stream column input with initial value */
|
|
@@ -2910,7 +2829,7 @@ export interface automation_stream_cursor_value_input {
|
|
|
2910
2829
|
rightConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2911
2830
|
runSettings?: InputMaybe<Scalars["jsonb"]>;
|
|
2912
2831
|
scheduleStatus?: InputMaybe<activeStatus_enum>;
|
|
2913
|
-
status?: InputMaybe<
|
|
2832
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
2914
2833
|
template?: InputMaybe<Scalars["String"]>;
|
|
2915
2834
|
templateId?: InputMaybe<Scalars["uuid"]>;
|
|
2916
2835
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -5764,7 +5683,7 @@ export interface connection_bool_exp {
|
|
|
5764
5683
|
settingsRight?: InputMaybe<setting_bool_exp>;
|
|
5765
5684
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5766
5685
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
5767
|
-
status?: InputMaybe<
|
|
5686
|
+
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
5768
5687
|
syncs?: InputMaybe<sync_bool_exp>;
|
|
5769
5688
|
syncs_aggregate?: InputMaybe<sync_aggregate_bool_exp>;
|
|
5770
5689
|
tasks?: InputMaybe<task_bool_exp>;
|
|
@@ -5841,7 +5760,7 @@ export interface connection_insert_input {
|
|
|
5841
5760
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5842
5761
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5843
5762
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
5844
|
-
status?: InputMaybe<
|
|
5763
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
5845
5764
|
syncs?: InputMaybe<sync_arr_rel_insert_input>;
|
|
5846
5765
|
tasks?: InputMaybe<task_arr_rel_insert_input>;
|
|
5847
5766
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
@@ -5862,7 +5781,6 @@ export interface connection_max_order_by {
|
|
|
5862
5781
|
id?: InputMaybe<order_by>;
|
|
5863
5782
|
lastFetch?: InputMaybe<order_by>;
|
|
5864
5783
|
name?: InputMaybe<order_by>;
|
|
5865
|
-
status?: InputMaybe<order_by>;
|
|
5866
5784
|
tenantId?: InputMaybe<order_by>;
|
|
5867
5785
|
type?: InputMaybe<order_by>;
|
|
5868
5786
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -5880,7 +5798,6 @@ export interface connection_min_order_by {
|
|
|
5880
5798
|
id?: InputMaybe<order_by>;
|
|
5881
5799
|
lastFetch?: InputMaybe<order_by>;
|
|
5882
5800
|
name?: InputMaybe<order_by>;
|
|
5883
|
-
status?: InputMaybe<order_by>;
|
|
5884
5801
|
tenantId?: InputMaybe<order_by>;
|
|
5885
5802
|
type?: InputMaybe<order_by>;
|
|
5886
5803
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -6019,7 +5936,7 @@ export interface connection_set_input {
|
|
|
6019
5936
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6020
5937
|
name?: InputMaybe<Scalars["String"]>;
|
|
6021
5938
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6022
|
-
status?: InputMaybe<
|
|
5939
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6023
5940
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6024
5941
|
type?: InputMaybe<Scalars["String"]>;
|
|
6025
5942
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6027,76 +5944,6 @@ export interface connection_set_input {
|
|
|
6027
5944
|
version?: InputMaybe<Scalars["Int"]>;
|
|
6028
5945
|
}
|
|
6029
5946
|
|
|
6030
|
-
/** Boolean expression to filter rows from the table "connection_status_temporary". All fields are combined with a logical 'AND'. */
|
|
6031
|
-
export interface connection_status_temporary_bool_exp {
|
|
6032
|
-
_and?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6033
|
-
_not?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6034
|
-
_or?: InputMaybe<Array<connection_status_temporary_bool_exp>>;
|
|
6035
|
-
name?: InputMaybe<String_comparison_exp>;
|
|
6036
|
-
}
|
|
6037
|
-
|
|
6038
|
-
/** unique or primary key constraints on table "connection_status_temporary" */
|
|
6039
|
-
export type connection_status_temporary_constraint =
|
|
6040
|
-
/** unique or primary key constraint on columns "name" */
|
|
6041
|
-
"connection_status_temporary_pkey";
|
|
6042
|
-
|
|
6043
|
-
/** input type for inserting data into table "connection_status_temporary" */
|
|
6044
|
-
export interface connection_status_temporary_insert_input {
|
|
6045
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6046
|
-
}
|
|
6047
|
-
|
|
6048
|
-
/** on_conflict condition type for table "connection_status_temporary" */
|
|
6049
|
-
export interface connection_status_temporary_on_conflict {
|
|
6050
|
-
constraint: connection_status_temporary_constraint;
|
|
6051
|
-
update_columns?: Array<connection_status_temporary_update_column>;
|
|
6052
|
-
where?: InputMaybe<connection_status_temporary_bool_exp>;
|
|
6053
|
-
}
|
|
6054
|
-
|
|
6055
|
-
/** Ordering options when selecting data from "connection_status_temporary". */
|
|
6056
|
-
export interface connection_status_temporary_order_by {
|
|
6057
|
-
name?: InputMaybe<order_by>;
|
|
6058
|
-
}
|
|
6059
|
-
|
|
6060
|
-
/** primary key columns input for table: connection_status_temporary */
|
|
6061
|
-
export interface connection_status_temporary_pk_columns_input {
|
|
6062
|
-
name: Scalars["String"];
|
|
6063
|
-
}
|
|
6064
|
-
|
|
6065
|
-
/** select columns of table "connection_status_temporary" */
|
|
6066
|
-
export type connection_status_temporary_select_column =
|
|
6067
|
-
/** column name */
|
|
6068
|
-
"name";
|
|
6069
|
-
|
|
6070
|
-
/** input type for updating data in table "connection_status_temporary" */
|
|
6071
|
-
export interface connection_status_temporary_set_input {
|
|
6072
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6073
|
-
}
|
|
6074
|
-
|
|
6075
|
-
/** Streaming cursor of the table "connection_status_temporary" */
|
|
6076
|
-
export interface connection_status_temporary_stream_cursor_input {
|
|
6077
|
-
/** Stream column input with initial value */
|
|
6078
|
-
initial_value: connection_status_temporary_stream_cursor_value_input;
|
|
6079
|
-
/** cursor ordering */
|
|
6080
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
6081
|
-
}
|
|
6082
|
-
|
|
6083
|
-
/** Initial value of the column from where the streaming should start */
|
|
6084
|
-
export interface connection_status_temporary_stream_cursor_value_input {
|
|
6085
|
-
name?: InputMaybe<Scalars["String"]>;
|
|
6086
|
-
}
|
|
6087
|
-
|
|
6088
|
-
/** update columns of table "connection_status_temporary" */
|
|
6089
|
-
export type connection_status_temporary_update_column =
|
|
6090
|
-
/** column name */
|
|
6091
|
-
"name";
|
|
6092
|
-
|
|
6093
|
-
export interface connection_status_temporary_updates {
|
|
6094
|
-
/** sets the columns of the filtered rows to the given values */
|
|
6095
|
-
_set?: InputMaybe<connection_status_temporary_set_input>;
|
|
6096
|
-
/** filter the rows which have to be updated */
|
|
6097
|
-
where: connection_status_temporary_bool_exp;
|
|
6098
|
-
}
|
|
6099
|
-
|
|
6100
5947
|
/** order by stddev() on columns of table "connection" */
|
|
6101
5948
|
export interface connection_stddev_order_by {
|
|
6102
5949
|
backendVersion?: InputMaybe<order_by>;
|
|
@@ -6138,7 +5985,7 @@ export interface connection_stream_cursor_value_input {
|
|
|
6138
5985
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
6139
5986
|
name?: InputMaybe<Scalars["String"]>;
|
|
6140
5987
|
persistentState?: InputMaybe<Scalars["jsonb"]>;
|
|
6141
|
-
status?: InputMaybe<
|
|
5988
|
+
status?: InputMaybe<activeStatus_enum>;
|
|
6142
5989
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6143
5990
|
type?: InputMaybe<Scalars["String"]>;
|
|
6144
5991
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
@@ -6894,6 +6741,7 @@ export interface core_flow_bool_exp {
|
|
|
6894
6741
|
_not?: InputMaybe<core_flow_bool_exp>;
|
|
6895
6742
|
_or?: InputMaybe<Array<core_flow_bool_exp>>;
|
|
6896
6743
|
app_id?: InputMaybe<String_comparison_exp>;
|
|
6744
|
+
description?: InputMaybe<String_comparison_exp>;
|
|
6897
6745
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
6898
6746
|
mapping_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6899
6747
|
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
@@ -6927,6 +6775,7 @@ export interface core_flow_delete_key_input {
|
|
|
6927
6775
|
/** input type for inserting data into table "core.flow" */
|
|
6928
6776
|
export interface core_flow_insert_input {
|
|
6929
6777
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
6778
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
6930
6779
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
6931
6780
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6932
6781
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7123,6 +6972,7 @@ export interface core_flow_on_conflict {
|
|
|
7123
6972
|
/** Ordering options when selecting data from "core.flow". */
|
|
7124
6973
|
export interface core_flow_order_by {
|
|
7125
6974
|
app_id?: InputMaybe<order_by>;
|
|
6975
|
+
description?: InputMaybe<order_by>;
|
|
7126
6976
|
id?: InputMaybe<order_by>;
|
|
7127
6977
|
mapping_schema?: InputMaybe<order_by>;
|
|
7128
6978
|
setting_schema?: InputMaybe<order_by>;
|
|
@@ -7146,6 +6996,8 @@ export type core_flow_select_column =
|
|
|
7146
6996
|
/** column name */
|
|
7147
6997
|
| "app_id"
|
|
7148
6998
|
/** column name */
|
|
6999
|
+
| "description"
|
|
7000
|
+
/** column name */
|
|
7149
7001
|
| "id"
|
|
7150
7002
|
/** column name */
|
|
7151
7003
|
| "mapping_schema"
|
|
@@ -7159,6 +7011,7 @@ export type core_flow_select_column =
|
|
|
7159
7011
|
/** input type for updating data in table "core.flow" */
|
|
7160
7012
|
export interface core_flow_set_input {
|
|
7161
7013
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7014
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7162
7015
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7163
7016
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7164
7017
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7356,6 +7209,7 @@ export interface core_flow_stream_cursor_input {
|
|
|
7356
7209
|
/** Initial value of the column from where the streaming should start */
|
|
7357
7210
|
export interface core_flow_stream_cursor_value_input {
|
|
7358
7211
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7212
|
+
description?: InputMaybe<Scalars["String"]>;
|
|
7359
7213
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7360
7214
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7361
7215
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -7368,6 +7222,8 @@ export type core_flow_update_column =
|
|
|
7368
7222
|
/** column name */
|
|
7369
7223
|
| "app_id"
|
|
7370
7224
|
/** column name */
|
|
7225
|
+
| "description"
|
|
7226
|
+
/** column name */
|
|
7371
7227
|
| "id"
|
|
7372
7228
|
/** column name */
|
|
7373
7229
|
| "mapping_schema"
|
|
@@ -31520,7 +31376,7 @@ export declare const generatedSchema: {
|
|
|
31520
31376
|
where: "setting_bool_exp";
|
|
31521
31377
|
};
|
|
31522
31378
|
};
|
|
31523
|
-
status: { __type: "
|
|
31379
|
+
status: { __type: "activeStatus_enum!" };
|
|
31524
31380
|
syncs: {
|
|
31525
31381
|
__type: "[sync!]!";
|
|
31526
31382
|
__args: {
|
|
@@ -31611,7 +31467,7 @@ export declare const generatedSchema: {
|
|
|
31611
31467
|
scheduleStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
31612
31468
|
settings: { __type: "setting_bool_exp" };
|
|
31613
31469
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
31614
|
-
status: { __type: "
|
|
31470
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
31615
31471
|
syncs: { __type: "sync_bool_exp" };
|
|
31616
31472
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
31617
31473
|
template: { __type: "String_comparison_exp" };
|
|
@@ -31652,7 +31508,7 @@ export declare const generatedSchema: {
|
|
|
31652
31508
|
runSettings: { __type: "jsonb" };
|
|
31653
31509
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31654
31510
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
31655
|
-
status: { __type: "
|
|
31511
|
+
status: { __type: "activeStatus_enum" };
|
|
31656
31512
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
31657
31513
|
template: { __type: "String" };
|
|
31658
31514
|
templateId: { __type: "uuid" };
|
|
@@ -31773,7 +31629,7 @@ export declare const generatedSchema: {
|
|
|
31773
31629
|
rightConnectionId: { __type: "uuid" };
|
|
31774
31630
|
runSettings: { __type: "jsonb" };
|
|
31775
31631
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31776
|
-
status: { __type: "
|
|
31632
|
+
status: { __type: "activeStatus_enum" };
|
|
31777
31633
|
template: { __type: "String" };
|
|
31778
31634
|
templateId: { __type: "uuid" };
|
|
31779
31635
|
tenantId: { __type: "uuid" };
|
|
@@ -31782,71 +31638,6 @@ export declare const generatedSchema: {
|
|
|
31782
31638
|
updatedAt: { __type: "timestamptz" };
|
|
31783
31639
|
viewSettings: { __type: "jsonb" };
|
|
31784
31640
|
};
|
|
31785
|
-
automation_status: {
|
|
31786
|
-
__typename: { __type: "String!" };
|
|
31787
|
-
name: { __type: "String!" };
|
|
31788
|
-
};
|
|
31789
|
-
automation_status_aggregate: {
|
|
31790
|
-
__typename: { __type: "String!" };
|
|
31791
|
-
aggregate: { __type: "automation_status_aggregate_fields" };
|
|
31792
|
-
nodes: { __type: "[automation_status!]!" };
|
|
31793
|
-
};
|
|
31794
|
-
automation_status_aggregate_fields: {
|
|
31795
|
-
__typename: { __type: "String!" };
|
|
31796
|
-
count: {
|
|
31797
|
-
__type: "Int!";
|
|
31798
|
-
__args: {
|
|
31799
|
-
columns: "[automation_status_select_column!]";
|
|
31800
|
-
distinct: "Boolean";
|
|
31801
|
-
};
|
|
31802
|
-
};
|
|
31803
|
-
max: { __type: "automation_status_max_fields" };
|
|
31804
|
-
min: { __type: "automation_status_min_fields" };
|
|
31805
|
-
};
|
|
31806
|
-
automation_status_bool_exp: {
|
|
31807
|
-
_and: { __type: "[automation_status_bool_exp!]" };
|
|
31808
|
-
_not: { __type: "automation_status_bool_exp" };
|
|
31809
|
-
_or: { __type: "[automation_status_bool_exp!]" };
|
|
31810
|
-
name: { __type: "String_comparison_exp" };
|
|
31811
|
-
};
|
|
31812
|
-
automation_status_enum_comparison_exp: {
|
|
31813
|
-
_eq: { __type: "automation_status_enum" };
|
|
31814
|
-
_in: { __type: "[automation_status_enum!]" };
|
|
31815
|
-
_is_null: { __type: "Boolean" };
|
|
31816
|
-
_neq: { __type: "automation_status_enum" };
|
|
31817
|
-
_nin: { __type: "[automation_status_enum!]" };
|
|
31818
|
-
};
|
|
31819
|
-
automation_status_insert_input: { name: { __type: "String" } };
|
|
31820
|
-
automation_status_max_fields: {
|
|
31821
|
-
__typename: { __type: "String!" };
|
|
31822
|
-
name: { __type: "String" };
|
|
31823
|
-
};
|
|
31824
|
-
automation_status_min_fields: {
|
|
31825
|
-
__typename: { __type: "String!" };
|
|
31826
|
-
name: { __type: "String" };
|
|
31827
|
-
};
|
|
31828
|
-
automation_status_mutation_response: {
|
|
31829
|
-
__typename: { __type: "String!" };
|
|
31830
|
-
affected_rows: { __type: "Int!" };
|
|
31831
|
-
returning: { __type: "[automation_status!]!" };
|
|
31832
|
-
};
|
|
31833
|
-
automation_status_on_conflict: {
|
|
31834
|
-
constraint: { __type: "automation_status_constraint!" };
|
|
31835
|
-
update_columns: { __type: "[automation_status_update_column!]!" };
|
|
31836
|
-
where: { __type: "automation_status_bool_exp" };
|
|
31837
|
-
};
|
|
31838
|
-
automation_status_order_by: { name: { __type: "order_by" } };
|
|
31839
|
-
automation_status_pk_columns_input: { name: { __type: "String!" } };
|
|
31840
|
-
automation_status_set_input: { name: { __type: "String" } };
|
|
31841
|
-
automation_status_stream_cursor_input: {
|
|
31842
|
-
initial_value: { __type: "automation_status_stream_cursor_value_input!" };
|
|
31843
|
-
ordering: { __type: "cursor_ordering" };
|
|
31844
|
-
};
|
|
31845
|
-
automation_status_stream_cursor_value_input: { name: { __type: "String" } };
|
|
31846
|
-
automation_status_updates: {
|
|
31847
|
-
_set: { __type: "automation_status_set_input" };
|
|
31848
|
-
where: { __type: "automation_status_bool_exp!" };
|
|
31849
|
-
};
|
|
31850
31641
|
automation_stream_cursor_input: {
|
|
31851
31642
|
initial_value: { __type: "automation_stream_cursor_value_input!" };
|
|
31852
31643
|
ordering: { __type: "cursor_ordering" };
|
|
@@ -31859,7 +31650,7 @@ export declare const generatedSchema: {
|
|
|
31859
31650
|
rightConnectionId: { __type: "uuid" };
|
|
31860
31651
|
runSettings: { __type: "jsonb" };
|
|
31861
31652
|
scheduleStatus: { __type: "activeStatus_enum" };
|
|
31862
|
-
status: { __type: "
|
|
31653
|
+
status: { __type: "activeStatus_enum" };
|
|
31863
31654
|
template: { __type: "String" };
|
|
31864
31655
|
templateId: { __type: "uuid" };
|
|
31865
31656
|
tenantId: { __type: "uuid" };
|
|
@@ -34706,7 +34497,7 @@ export declare const generatedSchema: {
|
|
|
34706
34497
|
where: "setting_bool_exp";
|
|
34707
34498
|
};
|
|
34708
34499
|
};
|
|
34709
|
-
status: { __type: "
|
|
34500
|
+
status: { __type: "activeStatus_enum" };
|
|
34710
34501
|
syncs: {
|
|
34711
34502
|
__type: "[sync!]!";
|
|
34712
34503
|
__args: {
|
|
@@ -34878,7 +34669,7 @@ export declare const generatedSchema: {
|
|
|
34878
34669
|
settingsRight: { __type: "setting_bool_exp" };
|
|
34879
34670
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34880
34671
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
34881
|
-
status: { __type: "
|
|
34672
|
+
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
34882
34673
|
syncs: { __type: "sync_bool_exp" };
|
|
34883
34674
|
syncs_aggregate: { __type: "sync_aggregate_bool_exp" };
|
|
34884
34675
|
tasks: { __type: "task_bool_exp" };
|
|
@@ -34936,7 +34727,7 @@ export declare const generatedSchema: {
|
|
|
34936
34727
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
34937
34728
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
34938
34729
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
34939
|
-
status: { __type: "
|
|
34730
|
+
status: { __type: "activeStatus_enum" };
|
|
34940
34731
|
syncs: { __type: "sync_arr_rel_insert_input" };
|
|
34941
34732
|
tasks: { __type: "task_arr_rel_insert_input" };
|
|
34942
34733
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
@@ -34956,7 +34747,6 @@ export declare const generatedSchema: {
|
|
|
34956
34747
|
id: { __type: "uuid" };
|
|
34957
34748
|
lastFetch: { __type: "timestamptz" };
|
|
34958
34749
|
name: { __type: "String" };
|
|
34959
|
-
status: { __type: "String" };
|
|
34960
34750
|
tenantId: { __type: "uuid" };
|
|
34961
34751
|
type: { __type: "String" };
|
|
34962
34752
|
uniqueRef: { __type: "String" };
|
|
@@ -34972,7 +34762,6 @@ export declare const generatedSchema: {
|
|
|
34972
34762
|
id: { __type: "order_by" };
|
|
34973
34763
|
lastFetch: { __type: "order_by" };
|
|
34974
34764
|
name: { __type: "order_by" };
|
|
34975
|
-
status: { __type: "order_by" };
|
|
34976
34765
|
tenantId: { __type: "order_by" };
|
|
34977
34766
|
type: { __type: "order_by" };
|
|
34978
34767
|
uniqueRef: { __type: "order_by" };
|
|
@@ -34989,7 +34778,6 @@ export declare const generatedSchema: {
|
|
|
34989
34778
|
id: { __type: "uuid" };
|
|
34990
34779
|
lastFetch: { __type: "timestamptz" };
|
|
34991
34780
|
name: { __type: "String" };
|
|
34992
|
-
status: { __type: "String" };
|
|
34993
34781
|
tenantId: { __type: "uuid" };
|
|
34994
34782
|
type: { __type: "String" };
|
|
34995
34783
|
uniqueRef: { __type: "String" };
|
|
@@ -35005,7 +34793,6 @@ export declare const generatedSchema: {
|
|
|
35005
34793
|
id: { __type: "order_by" };
|
|
35006
34794
|
lastFetch: { __type: "order_by" };
|
|
35007
34795
|
name: { __type: "order_by" };
|
|
35008
|
-
status: { __type: "order_by" };
|
|
35009
34796
|
tenantId: { __type: "order_by" };
|
|
35010
34797
|
type: { __type: "order_by" };
|
|
35011
34798
|
uniqueRef: { __type: "order_by" };
|
|
@@ -35085,75 +34872,13 @@ export declare const generatedSchema: {
|
|
|
35085
34872
|
metadata: { __type: "jsonb" };
|
|
35086
34873
|
name: { __type: "String" };
|
|
35087
34874
|
persistentState: { __type: "jsonb" };
|
|
35088
|
-
status: { __type: "
|
|
34875
|
+
status: { __type: "activeStatus_enum" };
|
|
35089
34876
|
tenantId: { __type: "uuid" };
|
|
35090
34877
|
type: { __type: "String" };
|
|
35091
34878
|
uniqueRef: { __type: "String" };
|
|
35092
34879
|
updatedAt: { __type: "timestamptz" };
|
|
35093
34880
|
version: { __type: "Int" };
|
|
35094
34881
|
};
|
|
35095
|
-
connection_status_temporary: {
|
|
35096
|
-
__typename: { __type: "String!" };
|
|
35097
|
-
name: { __type: "String!" };
|
|
35098
|
-
};
|
|
35099
|
-
connection_status_temporary_aggregate: {
|
|
35100
|
-
__typename: { __type: "String!" };
|
|
35101
|
-
aggregate: { __type: "connection_status_temporary_aggregate_fields" };
|
|
35102
|
-
nodes: { __type: "[connection_status_temporary!]!" };
|
|
35103
|
-
};
|
|
35104
|
-
connection_status_temporary_aggregate_fields: {
|
|
35105
|
-
__typename: { __type: "String!" };
|
|
35106
|
-
count: {
|
|
35107
|
-
__type: "Int!";
|
|
35108
|
-
__args: {
|
|
35109
|
-
columns: "[connection_status_temporary_select_column!]";
|
|
35110
|
-
distinct: "Boolean";
|
|
35111
|
-
};
|
|
35112
|
-
};
|
|
35113
|
-
max: { __type: "connection_status_temporary_max_fields" };
|
|
35114
|
-
min: { __type: "connection_status_temporary_min_fields" };
|
|
35115
|
-
};
|
|
35116
|
-
connection_status_temporary_bool_exp: {
|
|
35117
|
-
_and: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
35118
|
-
_not: { __type: "connection_status_temporary_bool_exp" };
|
|
35119
|
-
_or: { __type: "[connection_status_temporary_bool_exp!]" };
|
|
35120
|
-
name: { __type: "String_comparison_exp" };
|
|
35121
|
-
};
|
|
35122
|
-
connection_status_temporary_insert_input: { name: { __type: "String" } };
|
|
35123
|
-
connection_status_temporary_max_fields: {
|
|
35124
|
-
__typename: { __type: "String!" };
|
|
35125
|
-
name: { __type: "String" };
|
|
35126
|
-
};
|
|
35127
|
-
connection_status_temporary_min_fields: {
|
|
35128
|
-
__typename: { __type: "String!" };
|
|
35129
|
-
name: { __type: "String" };
|
|
35130
|
-
};
|
|
35131
|
-
connection_status_temporary_mutation_response: {
|
|
35132
|
-
__typename: { __type: "String!" };
|
|
35133
|
-
affected_rows: { __type: "Int!" };
|
|
35134
|
-
returning: { __type: "[connection_status_temporary!]!" };
|
|
35135
|
-
};
|
|
35136
|
-
connection_status_temporary_on_conflict: {
|
|
35137
|
-
constraint: { __type: "connection_status_temporary_constraint!" };
|
|
35138
|
-
update_columns: { __type: "[connection_status_temporary_update_column!]!" };
|
|
35139
|
-
where: { __type: "connection_status_temporary_bool_exp" };
|
|
35140
|
-
};
|
|
35141
|
-
connection_status_temporary_order_by: { name: { __type: "order_by" } };
|
|
35142
|
-
connection_status_temporary_pk_columns_input: { name: { __type: "String!" } };
|
|
35143
|
-
connection_status_temporary_set_input: { name: { __type: "String" } };
|
|
35144
|
-
connection_status_temporary_stream_cursor_input: {
|
|
35145
|
-
initial_value: {
|
|
35146
|
-
__type: "connection_status_temporary_stream_cursor_value_input!";
|
|
35147
|
-
};
|
|
35148
|
-
ordering: { __type: "cursor_ordering" };
|
|
35149
|
-
};
|
|
35150
|
-
connection_status_temporary_stream_cursor_value_input: {
|
|
35151
|
-
name: { __type: "String" };
|
|
35152
|
-
};
|
|
35153
|
-
connection_status_temporary_updates: {
|
|
35154
|
-
_set: { __type: "connection_status_temporary_set_input" };
|
|
35155
|
-
where: { __type: "connection_status_temporary_bool_exp!" };
|
|
35156
|
-
};
|
|
35157
34882
|
connection_stddev_fields: {
|
|
35158
34883
|
__typename: { __type: "String!" };
|
|
35159
34884
|
backendVersion: { __type: "Float" };
|
|
@@ -35199,7 +34924,7 @@ export declare const generatedSchema: {
|
|
|
35199
34924
|
metadata: { __type: "jsonb" };
|
|
35200
34925
|
name: { __type: "String" };
|
|
35201
34926
|
persistentState: { __type: "jsonb" };
|
|
35202
|
-
status: { __type: "
|
|
34927
|
+
status: { __type: "activeStatus_enum" };
|
|
35203
34928
|
tenantId: { __type: "uuid" };
|
|
35204
34929
|
type: { __type: "String" };
|
|
35205
34930
|
uniqueRef: { __type: "String" };
|
|
@@ -35893,6 +35618,7 @@ export declare const generatedSchema: {
|
|
|
35893
35618
|
core_flow: {
|
|
35894
35619
|
__typename: { __type: "String!" };
|
|
35895
35620
|
app_id: { __type: "String!" };
|
|
35621
|
+
description: { __type: "String" };
|
|
35896
35622
|
id: { __type: "uuid!" };
|
|
35897
35623
|
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35898
35624
|
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
@@ -35922,6 +35648,7 @@ export declare const generatedSchema: {
|
|
|
35922
35648
|
_not: { __type: "core_flow_bool_exp" };
|
|
35923
35649
|
_or: { __type: "[core_flow_bool_exp!]" };
|
|
35924
35650
|
app_id: { __type: "String_comparison_exp" };
|
|
35651
|
+
description: { __type: "String_comparison_exp" };
|
|
35925
35652
|
id: { __type: "uuid_comparison_exp" };
|
|
35926
35653
|
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35927
35654
|
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
@@ -35942,6 +35669,7 @@ export declare const generatedSchema: {
|
|
|
35942
35669
|
};
|
|
35943
35670
|
core_flow_insert_input: {
|
|
35944
35671
|
app_id: { __type: "String" };
|
|
35672
|
+
description: { __type: "String" };
|
|
35945
35673
|
id: { __type: "uuid" };
|
|
35946
35674
|
mapping_schema: { __type: "jsonb" };
|
|
35947
35675
|
setting_schema: { __type: "jsonb" };
|
|
@@ -36089,6 +35817,7 @@ export declare const generatedSchema: {
|
|
|
36089
35817
|
core_flow_max_fields: {
|
|
36090
35818
|
__typename: { __type: "String!" };
|
|
36091
35819
|
app_id: { __type: "String" };
|
|
35820
|
+
description: { __type: "String" };
|
|
36092
35821
|
id: { __type: "uuid" };
|
|
36093
35822
|
title: { __type: "String" };
|
|
36094
35823
|
type: { __type: "flow_type" };
|
|
@@ -36096,6 +35825,7 @@ export declare const generatedSchema: {
|
|
|
36096
35825
|
core_flow_min_fields: {
|
|
36097
35826
|
__typename: { __type: "String!" };
|
|
36098
35827
|
app_id: { __type: "String" };
|
|
35828
|
+
description: { __type: "String" };
|
|
36099
35829
|
id: { __type: "uuid" };
|
|
36100
35830
|
title: { __type: "String" };
|
|
36101
35831
|
type: { __type: "flow_type" };
|
|
@@ -36112,6 +35842,7 @@ export declare const generatedSchema: {
|
|
|
36112
35842
|
};
|
|
36113
35843
|
core_flow_order_by: {
|
|
36114
35844
|
app_id: { __type: "order_by" };
|
|
35845
|
+
description: { __type: "order_by" };
|
|
36115
35846
|
id: { __type: "order_by" };
|
|
36116
35847
|
mapping_schema: { __type: "order_by" };
|
|
36117
35848
|
setting_schema: { __type: "order_by" };
|
|
@@ -36125,6 +35856,7 @@ export declare const generatedSchema: {
|
|
|
36125
35856
|
};
|
|
36126
35857
|
core_flow_set_input: {
|
|
36127
35858
|
app_id: { __type: "String" };
|
|
35859
|
+
description: { __type: "String" };
|
|
36128
35860
|
id: { __type: "uuid" };
|
|
36129
35861
|
mapping_schema: { __type: "jsonb" };
|
|
36130
35862
|
setting_schema: { __type: "jsonb" };
|
|
@@ -36275,6 +36007,7 @@ export declare const generatedSchema: {
|
|
|
36275
36007
|
};
|
|
36276
36008
|
core_flow_stream_cursor_value_input: {
|
|
36277
36009
|
app_id: { __type: "String" };
|
|
36010
|
+
description: { __type: "String" };
|
|
36278
36011
|
id: { __type: "uuid" };
|
|
36279
36012
|
mapping_schema: { __type: "jsonb" };
|
|
36280
36013
|
setting_schema: { __type: "jsonb" };
|
|
@@ -42711,14 +42444,6 @@ export declare const generatedSchema: {
|
|
|
42711
42444
|
__args: { where: "address_bool_exp!" };
|
|
42712
42445
|
};
|
|
42713
42446
|
delete_address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
|
|
42714
|
-
delete_automation_status: {
|
|
42715
|
-
__type: "automation_status_mutation_response";
|
|
42716
|
-
__args: { where: "automation_status_bool_exp!" };
|
|
42717
|
-
};
|
|
42718
|
-
delete_automation_status_by_pk: {
|
|
42719
|
-
__type: "automation_status";
|
|
42720
|
-
__args: { name: "String!" };
|
|
42721
|
-
};
|
|
42722
42447
|
delete_billing_payment_method_type: {
|
|
42723
42448
|
__type: "billing_payment_method_type_mutation_response";
|
|
42724
42449
|
__args: { where: "billing_payment_method_type_bool_exp!" };
|
|
@@ -42727,14 +42452,6 @@ export declare const generatedSchema: {
|
|
|
42727
42452
|
__type: "billing_payment_method_type";
|
|
42728
42453
|
__args: { name: "String!" };
|
|
42729
42454
|
};
|
|
42730
|
-
delete_connection_status_temporary: {
|
|
42731
|
-
__type: "connection_status_temporary_mutation_response";
|
|
42732
|
-
__args: { where: "connection_status_temporary_bool_exp!" };
|
|
42733
|
-
};
|
|
42734
|
-
delete_connection_status_temporary_by_pk: {
|
|
42735
|
-
__type: "connection_status_temporary";
|
|
42736
|
-
__args: { name: "String!" };
|
|
42737
|
-
};
|
|
42738
42455
|
delete_core_change_source_link: {
|
|
42739
42456
|
__type: "core_change_source_link_mutation_response";
|
|
42740
42457
|
__args: { where: "core_change_source_link_bool_exp!" };
|
|
@@ -44300,20 +44017,6 @@ export declare const generatedSchema: {
|
|
|
44300
44017
|
on_conflict: "address_on_conflict";
|
|
44301
44018
|
};
|
|
44302
44019
|
};
|
|
44303
|
-
insert_automation_status: {
|
|
44304
|
-
__type: "automation_status_mutation_response";
|
|
44305
|
-
__args: {
|
|
44306
|
-
objects: "[automation_status_insert_input!]!";
|
|
44307
|
-
on_conflict: "automation_status_on_conflict";
|
|
44308
|
-
};
|
|
44309
|
-
};
|
|
44310
|
-
insert_automation_status_one: {
|
|
44311
|
-
__type: "automation_status";
|
|
44312
|
-
__args: {
|
|
44313
|
-
object: "automation_status_insert_input!";
|
|
44314
|
-
on_conflict: "automation_status_on_conflict";
|
|
44315
|
-
};
|
|
44316
|
-
};
|
|
44317
44020
|
insert_billing_payment_method_type: {
|
|
44318
44021
|
__type: "billing_payment_method_type_mutation_response";
|
|
44319
44022
|
__args: {
|
|
@@ -44328,20 +44031,6 @@ export declare const generatedSchema: {
|
|
|
44328
44031
|
on_conflict: "billing_payment_method_type_on_conflict";
|
|
44329
44032
|
};
|
|
44330
44033
|
};
|
|
44331
|
-
insert_connection_status_temporary: {
|
|
44332
|
-
__type: "connection_status_temporary_mutation_response";
|
|
44333
|
-
__args: {
|
|
44334
|
-
objects: "[connection_status_temporary_insert_input!]!";
|
|
44335
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
44336
|
-
};
|
|
44337
|
-
};
|
|
44338
|
-
insert_connection_status_temporary_one: {
|
|
44339
|
-
__type: "connection_status_temporary";
|
|
44340
|
-
__args: {
|
|
44341
|
-
object: "connection_status_temporary_insert_input!";
|
|
44342
|
-
on_conflict: "connection_status_temporary_on_conflict";
|
|
44343
|
-
};
|
|
44344
|
-
};
|
|
44345
44034
|
insert_core_change_source_link: {
|
|
44346
44035
|
__type: "core_change_source_link_mutation_response";
|
|
44347
44036
|
__args: {
|
|
@@ -46726,24 +46415,6 @@ export declare const generatedSchema: {
|
|
|
46726
46415
|
__type: "[automation_mutation_response]";
|
|
46727
46416
|
__args: { updates: "[automation_updates!]!" };
|
|
46728
46417
|
};
|
|
46729
|
-
update_automation_status: {
|
|
46730
|
-
__type: "automation_status_mutation_response";
|
|
46731
|
-
__args: {
|
|
46732
|
-
_set: "automation_status_set_input";
|
|
46733
|
-
where: "automation_status_bool_exp!";
|
|
46734
|
-
};
|
|
46735
|
-
};
|
|
46736
|
-
update_automation_status_by_pk: {
|
|
46737
|
-
__type: "automation_status";
|
|
46738
|
-
__args: {
|
|
46739
|
-
_set: "automation_status_set_input";
|
|
46740
|
-
pk_columns: "automation_status_pk_columns_input!";
|
|
46741
|
-
};
|
|
46742
|
-
};
|
|
46743
|
-
update_automation_status_many: {
|
|
46744
|
-
__type: "[automation_status_mutation_response]";
|
|
46745
|
-
__args: { updates: "[automation_status_updates!]!" };
|
|
46746
|
-
};
|
|
46747
46418
|
update_automation_template_many: {
|
|
46748
46419
|
__type: "[automation_template_mutation_response]";
|
|
46749
46420
|
__args: { updates: "[automation_template_updates!]!" };
|
|
@@ -46770,24 +46441,6 @@ export declare const generatedSchema: {
|
|
|
46770
46441
|
__type: "[connection_mutation_response]";
|
|
46771
46442
|
__args: { updates: "[connection_updates!]!" };
|
|
46772
46443
|
};
|
|
46773
|
-
update_connection_status_temporary: {
|
|
46774
|
-
__type: "connection_status_temporary_mutation_response";
|
|
46775
|
-
__args: {
|
|
46776
|
-
_set: "connection_status_temporary_set_input";
|
|
46777
|
-
where: "connection_status_temporary_bool_exp!";
|
|
46778
|
-
};
|
|
46779
|
-
};
|
|
46780
|
-
update_connection_status_temporary_by_pk: {
|
|
46781
|
-
__type: "connection_status_temporary";
|
|
46782
|
-
__args: {
|
|
46783
|
-
_set: "connection_status_temporary_set_input";
|
|
46784
|
-
pk_columns: "connection_status_temporary_pk_columns_input!";
|
|
46785
|
-
};
|
|
46786
|
-
};
|
|
46787
|
-
update_connection_status_temporary_many: {
|
|
46788
|
-
__type: "[connection_status_temporary_mutation_response]";
|
|
46789
|
-
__args: { updates: "[connection_status_temporary_updates!]!" };
|
|
46790
|
-
};
|
|
46791
46444
|
update_core_change_source_link: {
|
|
46792
46445
|
__type: "core_change_source_link_mutation_response";
|
|
46793
46446
|
__args: {
|
|
@@ -52726,30 +52379,6 @@ export declare const generatedSchema: {
|
|
|
52726
52379
|
where: "automation_template_bool_exp";
|
|
52727
52380
|
};
|
|
52728
52381
|
};
|
|
52729
|
-
automation_status: {
|
|
52730
|
-
__type: "[automation_status!]!";
|
|
52731
|
-
__args: {
|
|
52732
|
-
distinct_on: "[automation_status_select_column!]";
|
|
52733
|
-
limit: "Int";
|
|
52734
|
-
offset: "Int";
|
|
52735
|
-
order_by: "[automation_status_order_by!]";
|
|
52736
|
-
where: "automation_status_bool_exp";
|
|
52737
|
-
};
|
|
52738
|
-
};
|
|
52739
|
-
automation_status_aggregate: {
|
|
52740
|
-
__type: "automation_status_aggregate!";
|
|
52741
|
-
__args: {
|
|
52742
|
-
distinct_on: "[automation_status_select_column!]";
|
|
52743
|
-
limit: "Int";
|
|
52744
|
-
offset: "Int";
|
|
52745
|
-
order_by: "[automation_status_order_by!]";
|
|
52746
|
-
where: "automation_status_bool_exp";
|
|
52747
|
-
};
|
|
52748
|
-
};
|
|
52749
|
-
automation_status_by_pk: {
|
|
52750
|
-
__type: "automation_status";
|
|
52751
|
-
__args: { name: "String!" };
|
|
52752
|
-
};
|
|
52753
52382
|
automations: {
|
|
52754
52383
|
__type: "[automation!]!";
|
|
52755
52384
|
__args: {
|
|
@@ -53077,30 +52706,6 @@ export declare const generatedSchema: {
|
|
|
53077
52706
|
};
|
|
53078
52707
|
};
|
|
53079
52708
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
53080
|
-
connection_status_temporary: {
|
|
53081
|
-
__type: "[connection_status_temporary!]!";
|
|
53082
|
-
__args: {
|
|
53083
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
53084
|
-
limit: "Int";
|
|
53085
|
-
offset: "Int";
|
|
53086
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
53087
|
-
where: "connection_status_temporary_bool_exp";
|
|
53088
|
-
};
|
|
53089
|
-
};
|
|
53090
|
-
connection_status_temporary_aggregate: {
|
|
53091
|
-
__type: "connection_status_temporary_aggregate!";
|
|
53092
|
-
__args: {
|
|
53093
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
53094
|
-
limit: "Int";
|
|
53095
|
-
offset: "Int";
|
|
53096
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
53097
|
-
where: "connection_status_temporary_bool_exp";
|
|
53098
|
-
};
|
|
53099
|
-
};
|
|
53100
|
-
connection_status_temporary_by_pk: {
|
|
53101
|
-
__type: "connection_status_temporary";
|
|
53102
|
-
__args: { name: "String!" };
|
|
53103
|
-
};
|
|
53104
52709
|
contact: { __type: "contact"; __args: { id: "uuid!" } };
|
|
53105
52710
|
contactAggregate: {
|
|
53106
52711
|
__type: "contact_aggregate!";
|
|
@@ -61294,38 +60899,6 @@ export declare const generatedSchema: {
|
|
|
61294
60899
|
where: "automation_template_bool_exp";
|
|
61295
60900
|
};
|
|
61296
60901
|
};
|
|
61297
|
-
automation_status: {
|
|
61298
|
-
__type: "[automation_status!]!";
|
|
61299
|
-
__args: {
|
|
61300
|
-
distinct_on: "[automation_status_select_column!]";
|
|
61301
|
-
limit: "Int";
|
|
61302
|
-
offset: "Int";
|
|
61303
|
-
order_by: "[automation_status_order_by!]";
|
|
61304
|
-
where: "automation_status_bool_exp";
|
|
61305
|
-
};
|
|
61306
|
-
};
|
|
61307
|
-
automation_status_aggregate: {
|
|
61308
|
-
__type: "automation_status_aggregate!";
|
|
61309
|
-
__args: {
|
|
61310
|
-
distinct_on: "[automation_status_select_column!]";
|
|
61311
|
-
limit: "Int";
|
|
61312
|
-
offset: "Int";
|
|
61313
|
-
order_by: "[automation_status_order_by!]";
|
|
61314
|
-
where: "automation_status_bool_exp";
|
|
61315
|
-
};
|
|
61316
|
-
};
|
|
61317
|
-
automation_status_by_pk: {
|
|
61318
|
-
__type: "automation_status";
|
|
61319
|
-
__args: { name: "String!" };
|
|
61320
|
-
};
|
|
61321
|
-
automation_status_stream: {
|
|
61322
|
-
__type: "[automation_status!]!";
|
|
61323
|
-
__args: {
|
|
61324
|
-
batch_size: "Int!";
|
|
61325
|
-
cursor: "[automation_status_stream_cursor_input]!";
|
|
61326
|
-
where: "automation_status_bool_exp";
|
|
61327
|
-
};
|
|
61328
|
-
};
|
|
61329
60902
|
automation_stream: {
|
|
61330
60903
|
__type: "[automation!]!";
|
|
61331
60904
|
__args: {
|
|
@@ -61765,38 +61338,6 @@ export declare const generatedSchema: {
|
|
|
61765
61338
|
};
|
|
61766
61339
|
};
|
|
61767
61340
|
connectionById: { __type: "connection"; __args: { id: "uuid!" } };
|
|
61768
|
-
connection_status_temporary: {
|
|
61769
|
-
__type: "[connection_status_temporary!]!";
|
|
61770
|
-
__args: {
|
|
61771
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
61772
|
-
limit: "Int";
|
|
61773
|
-
offset: "Int";
|
|
61774
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
61775
|
-
where: "connection_status_temporary_bool_exp";
|
|
61776
|
-
};
|
|
61777
|
-
};
|
|
61778
|
-
connection_status_temporary_aggregate: {
|
|
61779
|
-
__type: "connection_status_temporary_aggregate!";
|
|
61780
|
-
__args: {
|
|
61781
|
-
distinct_on: "[connection_status_temporary_select_column!]";
|
|
61782
|
-
limit: "Int";
|
|
61783
|
-
offset: "Int";
|
|
61784
|
-
order_by: "[connection_status_temporary_order_by!]";
|
|
61785
|
-
where: "connection_status_temporary_bool_exp";
|
|
61786
|
-
};
|
|
61787
|
-
};
|
|
61788
|
-
connection_status_temporary_by_pk: {
|
|
61789
|
-
__type: "connection_status_temporary";
|
|
61790
|
-
__args: { name: "String!" };
|
|
61791
|
-
};
|
|
61792
|
-
connection_status_temporary_stream: {
|
|
61793
|
-
__type: "[connection_status_temporary!]!";
|
|
61794
|
-
__args: {
|
|
61795
|
-
batch_size: "Int!";
|
|
61796
|
-
cursor: "[connection_status_temporary_stream_cursor_input]!";
|
|
61797
|
-
where: "connection_status_temporary_bool_exp";
|
|
61798
|
-
};
|
|
61799
|
-
};
|
|
61800
61341
|
connection_stream: {
|
|
61801
61342
|
__type: "[connection!]!";
|
|
61802
61343
|
__args: {
|
|
@@ -74365,7 +73906,7 @@ export interface automation {
|
|
|
74365
73906
|
*/
|
|
74366
73907
|
where?: Maybe<setting_bool_exp>;
|
|
74367
73908
|
}) => setting_aggregate;
|
|
74368
|
-
status: ScalarsEnums["
|
|
73909
|
+
status: ScalarsEnums["activeStatus_enum"];
|
|
74369
73910
|
/**
|
|
74370
73911
|
* An array relationship
|
|
74371
73912
|
*/
|
|
@@ -74511,67 +74052,6 @@ export interface automation_mutation_response {
|
|
|
74511
74052
|
returning: Array<automation>;
|
|
74512
74053
|
}
|
|
74513
74054
|
|
|
74514
|
-
/**
|
|
74515
|
-
* columns and relationships of "automation_status"
|
|
74516
|
-
*/
|
|
74517
|
-
export interface automation_status {
|
|
74518
|
-
__typename?: "automation_status";
|
|
74519
|
-
name: ScalarsEnums["String"];
|
|
74520
|
-
}
|
|
74521
|
-
|
|
74522
|
-
/**
|
|
74523
|
-
* aggregated selection of "automation_status"
|
|
74524
|
-
*/
|
|
74525
|
-
export interface automation_status_aggregate {
|
|
74526
|
-
__typename?: "automation_status_aggregate";
|
|
74527
|
-
aggregate?: Maybe<automation_status_aggregate_fields>;
|
|
74528
|
-
nodes: Array<automation_status>;
|
|
74529
|
-
}
|
|
74530
|
-
|
|
74531
|
-
/**
|
|
74532
|
-
* aggregate fields of "automation_status"
|
|
74533
|
-
*/
|
|
74534
|
-
export interface automation_status_aggregate_fields {
|
|
74535
|
-
__typename?: "automation_status_aggregate_fields";
|
|
74536
|
-
count: (args?: {
|
|
74537
|
-
columns?: Maybe<Array<automation_status_select_column>>;
|
|
74538
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
74539
|
-
}) => ScalarsEnums["Int"];
|
|
74540
|
-
max?: Maybe<automation_status_max_fields>;
|
|
74541
|
-
min?: Maybe<automation_status_min_fields>;
|
|
74542
|
-
}
|
|
74543
|
-
|
|
74544
|
-
/**
|
|
74545
|
-
* aggregate max on columns
|
|
74546
|
-
*/
|
|
74547
|
-
export interface automation_status_max_fields {
|
|
74548
|
-
__typename?: "automation_status_max_fields";
|
|
74549
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
74550
|
-
}
|
|
74551
|
-
|
|
74552
|
-
/**
|
|
74553
|
-
* aggregate min on columns
|
|
74554
|
-
*/
|
|
74555
|
-
export interface automation_status_min_fields {
|
|
74556
|
-
__typename?: "automation_status_min_fields";
|
|
74557
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
74558
|
-
}
|
|
74559
|
-
|
|
74560
|
-
/**
|
|
74561
|
-
* response of any mutation on the table "automation_status"
|
|
74562
|
-
*/
|
|
74563
|
-
export interface automation_status_mutation_response {
|
|
74564
|
-
__typename?: "automation_status_mutation_response";
|
|
74565
|
-
/**
|
|
74566
|
-
* number of rows affected by the mutation
|
|
74567
|
-
*/
|
|
74568
|
-
affected_rows: ScalarsEnums["Int"];
|
|
74569
|
-
/**
|
|
74570
|
-
* data from the rows affected by the mutation
|
|
74571
|
-
*/
|
|
74572
|
-
returning: Array<automation_status>;
|
|
74573
|
-
}
|
|
74574
|
-
|
|
74575
74055
|
/**
|
|
74576
74056
|
* columns and relationships of "automation_template"
|
|
74577
74057
|
*/
|
|
@@ -77185,7 +76665,7 @@ export interface connection {
|
|
|
77185
76665
|
*/
|
|
77186
76666
|
where?: Maybe<setting_bool_exp>;
|
|
77187
76667
|
}) => setting_aggregate;
|
|
77188
|
-
status?: Maybe<ScalarsEnums["
|
|
76668
|
+
status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
77189
76669
|
/**
|
|
77190
76670
|
* An array relationship
|
|
77191
76671
|
*/
|
|
@@ -77349,7 +76829,6 @@ export interface connection_max_fields {
|
|
|
77349
76829
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77350
76830
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77351
76831
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77352
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
77353
76832
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77354
76833
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
77355
76834
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -77370,7 +76849,6 @@ export interface connection_min_fields {
|
|
|
77370
76849
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77371
76850
|
lastFetch?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77372
76851
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77373
|
-
status?: Maybe<ScalarsEnums["String"]>;
|
|
77374
76852
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77375
76853
|
type?: Maybe<ScalarsEnums["String"]>;
|
|
77376
76854
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -77393,67 +76871,6 @@ export interface connection_mutation_response {
|
|
|
77393
76871
|
returning: Array<connection>;
|
|
77394
76872
|
}
|
|
77395
76873
|
|
|
77396
|
-
/**
|
|
77397
|
-
* columns and relationships of "connection_status_temporary"
|
|
77398
|
-
*/
|
|
77399
|
-
export interface connection_status_temporary {
|
|
77400
|
-
__typename?: "connection_status_temporary";
|
|
77401
|
-
name: ScalarsEnums["String"];
|
|
77402
|
-
}
|
|
77403
|
-
|
|
77404
|
-
/**
|
|
77405
|
-
* aggregated selection of "connection_status_temporary"
|
|
77406
|
-
*/
|
|
77407
|
-
export interface connection_status_temporary_aggregate {
|
|
77408
|
-
__typename?: "connection_status_temporary_aggregate";
|
|
77409
|
-
aggregate?: Maybe<connection_status_temporary_aggregate_fields>;
|
|
77410
|
-
nodes: Array<connection_status_temporary>;
|
|
77411
|
-
}
|
|
77412
|
-
|
|
77413
|
-
/**
|
|
77414
|
-
* aggregate fields of "connection_status_temporary"
|
|
77415
|
-
*/
|
|
77416
|
-
export interface connection_status_temporary_aggregate_fields {
|
|
77417
|
-
__typename?: "connection_status_temporary_aggregate_fields";
|
|
77418
|
-
count: (args?: {
|
|
77419
|
-
columns?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
77420
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
77421
|
-
}) => ScalarsEnums["Int"];
|
|
77422
|
-
max?: Maybe<connection_status_temporary_max_fields>;
|
|
77423
|
-
min?: Maybe<connection_status_temporary_min_fields>;
|
|
77424
|
-
}
|
|
77425
|
-
|
|
77426
|
-
/**
|
|
77427
|
-
* aggregate max on columns
|
|
77428
|
-
*/
|
|
77429
|
-
export interface connection_status_temporary_max_fields {
|
|
77430
|
-
__typename?: "connection_status_temporary_max_fields";
|
|
77431
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
77432
|
-
}
|
|
77433
|
-
|
|
77434
|
-
/**
|
|
77435
|
-
* aggregate min on columns
|
|
77436
|
-
*/
|
|
77437
|
-
export interface connection_status_temporary_min_fields {
|
|
77438
|
-
__typename?: "connection_status_temporary_min_fields";
|
|
77439
|
-
name?: Maybe<ScalarsEnums["String"]>;
|
|
77440
|
-
}
|
|
77441
|
-
|
|
77442
|
-
/**
|
|
77443
|
-
* response of any mutation on the table "connection_status_temporary"
|
|
77444
|
-
*/
|
|
77445
|
-
export interface connection_status_temporary_mutation_response {
|
|
77446
|
-
__typename?: "connection_status_temporary_mutation_response";
|
|
77447
|
-
/**
|
|
77448
|
-
* number of rows affected by the mutation
|
|
77449
|
-
*/
|
|
77450
|
-
affected_rows: ScalarsEnums["Int"];
|
|
77451
|
-
/**
|
|
77452
|
-
* data from the rows affected by the mutation
|
|
77453
|
-
*/
|
|
77454
|
-
returning: Array<connection_status_temporary>;
|
|
77455
|
-
}
|
|
77456
|
-
|
|
77457
76874
|
/**
|
|
77458
76875
|
* aggregate stddev on columns
|
|
77459
76876
|
*/
|
|
@@ -78113,6 +77530,7 @@ export interface core_change_source_link_mutation_response {
|
|
|
78113
77530
|
export interface core_flow {
|
|
78114
77531
|
__typename?: "core_flow";
|
|
78115
77532
|
app_id: ScalarsEnums["String"];
|
|
77533
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78116
77534
|
id: ScalarsEnums["uuid"];
|
|
78117
77535
|
mapping_schema: (args?: {
|
|
78118
77536
|
/**
|
|
@@ -78246,6 +77664,7 @@ export interface core_flow_mapping_mutation_response {
|
|
|
78246
77664
|
export interface core_flow_max_fields {
|
|
78247
77665
|
__typename?: "core_flow_max_fields";
|
|
78248
77666
|
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77667
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78249
77668
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78250
77669
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
78251
77670
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
@@ -78257,6 +77676,7 @@ export interface core_flow_max_fields {
|
|
|
78257
77676
|
export interface core_flow_min_fields {
|
|
78258
77677
|
__typename?: "core_flow_min_fields";
|
|
78259
77678
|
app_id?: Maybe<ScalarsEnums["String"]>;
|
|
77679
|
+
description?: Maybe<ScalarsEnums["String"]>;
|
|
78260
77680
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78261
77681
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
78262
77682
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
@@ -83396,24 +82816,12 @@ export interface Mutation {
|
|
|
83396
82816
|
where: address_bool_exp;
|
|
83397
82817
|
}) => Maybe<address_mutation_response>;
|
|
83398
82818
|
delete_address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
|
|
83399
|
-
delete_automation_status: (args: {
|
|
83400
|
-
where: automation_status_bool_exp;
|
|
83401
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
83402
|
-
delete_automation_status_by_pk: (args: {
|
|
83403
|
-
name: Scalars["String"];
|
|
83404
|
-
}) => Maybe<automation_status>;
|
|
83405
82819
|
delete_billing_payment_method_type: (args: {
|
|
83406
82820
|
where: billing_payment_method_type_bool_exp;
|
|
83407
82821
|
}) => Maybe<billing_payment_method_type_mutation_response>;
|
|
83408
82822
|
delete_billing_payment_method_type_by_pk: (args: {
|
|
83409
82823
|
name: Scalars["String"];
|
|
83410
82824
|
}) => Maybe<billing_payment_method_type>;
|
|
83411
|
-
delete_connection_status_temporary: (args: {
|
|
83412
|
-
where: connection_status_temporary_bool_exp;
|
|
83413
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
83414
|
-
delete_connection_status_temporary_by_pk: (args: {
|
|
83415
|
-
name: Scalars["String"];
|
|
83416
|
-
}) => Maybe<connection_status_temporary>;
|
|
83417
82825
|
delete_core_change_source_link: (args: {
|
|
83418
82826
|
where: core_change_source_link_bool_exp;
|
|
83419
82827
|
}) => Maybe<core_change_source_link_mutation_response>;
|
|
@@ -84354,14 +83762,6 @@ export interface Mutation {
|
|
|
84354
83762
|
object: address_insert_input;
|
|
84355
83763
|
on_conflict?: Maybe<address_on_conflict>;
|
|
84356
83764
|
}) => Maybe<address>;
|
|
84357
|
-
insert_automation_status: (args: {
|
|
84358
|
-
objects: Array<automation_status_insert_input>;
|
|
84359
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
84360
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
84361
|
-
insert_automation_status_one: (args: {
|
|
84362
|
-
object: automation_status_insert_input;
|
|
84363
|
-
on_conflict?: Maybe<automation_status_on_conflict>;
|
|
84364
|
-
}) => Maybe<automation_status>;
|
|
84365
83765
|
insert_billing_payment_method_type: (args: {
|
|
84366
83766
|
objects: Array<billing_payment_method_type_insert_input>;
|
|
84367
83767
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
@@ -84370,14 +83770,6 @@ export interface Mutation {
|
|
|
84370
83770
|
object: billing_payment_method_type_insert_input;
|
|
84371
83771
|
on_conflict?: Maybe<billing_payment_method_type_on_conflict>;
|
|
84372
83772
|
}) => Maybe<billing_payment_method_type>;
|
|
84373
|
-
insert_connection_status_temporary: (args: {
|
|
84374
|
-
objects: Array<connection_status_temporary_insert_input>;
|
|
84375
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
84376
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
84377
|
-
insert_connection_status_temporary_one: (args: {
|
|
84378
|
-
object: connection_status_temporary_insert_input;
|
|
84379
|
-
on_conflict?: Maybe<connection_status_temporary_on_conflict>;
|
|
84380
|
-
}) => Maybe<connection_status_temporary>;
|
|
84381
83773
|
insert_core_change_source_link: (args: {
|
|
84382
83774
|
objects: Array<core_change_source_link_insert_input>;
|
|
84383
83775
|
on_conflict?: Maybe<core_change_source_link_on_conflict>;
|
|
@@ -85989,17 +85381,6 @@ export interface Mutation {
|
|
|
85989
85381
|
update_automation_many: (args: {
|
|
85990
85382
|
updates: Array<automation_updates>;
|
|
85991
85383
|
}) => Maybe<Array<Maybe<automation_mutation_response>>>;
|
|
85992
|
-
update_automation_status: (args: {
|
|
85993
|
-
_set?: Maybe<automation_status_set_input>;
|
|
85994
|
-
where: automation_status_bool_exp;
|
|
85995
|
-
}) => Maybe<automation_status_mutation_response>;
|
|
85996
|
-
update_automation_status_by_pk: (args: {
|
|
85997
|
-
_set?: Maybe<automation_status_set_input>;
|
|
85998
|
-
pk_columns: automation_status_pk_columns_input;
|
|
85999
|
-
}) => Maybe<automation_status>;
|
|
86000
|
-
update_automation_status_many: (args: {
|
|
86001
|
-
updates: Array<automation_status_updates>;
|
|
86002
|
-
}) => Maybe<Array<Maybe<automation_status_mutation_response>>>;
|
|
86003
85384
|
update_automation_template_many: (args: {
|
|
86004
85385
|
updates: Array<automation_template_updates>;
|
|
86005
85386
|
}) => Maybe<Array<Maybe<automation_template_mutation_response>>>;
|
|
@@ -86017,17 +85398,6 @@ export interface Mutation {
|
|
|
86017
85398
|
update_connection_many: (args: {
|
|
86018
85399
|
updates: Array<connection_updates>;
|
|
86019
85400
|
}) => Maybe<Array<Maybe<connection_mutation_response>>>;
|
|
86020
|
-
update_connection_status_temporary: (args: {
|
|
86021
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
86022
|
-
where: connection_status_temporary_bool_exp;
|
|
86023
|
-
}) => Maybe<connection_status_temporary_mutation_response>;
|
|
86024
|
-
update_connection_status_temporary_by_pk: (args: {
|
|
86025
|
-
_set?: Maybe<connection_status_temporary_set_input>;
|
|
86026
|
-
pk_columns: connection_status_temporary_pk_columns_input;
|
|
86027
|
-
}) => Maybe<connection_status_temporary>;
|
|
86028
|
-
update_connection_status_temporary_many: (args: {
|
|
86029
|
-
updates: Array<connection_status_temporary_updates>;
|
|
86030
|
-
}) => Maybe<Array<Maybe<connection_status_temporary_mutation_response>>>;
|
|
86031
85401
|
update_core_change_source_link: (args: {
|
|
86032
85402
|
_set?: Maybe<core_change_source_link_set_input>;
|
|
86033
85403
|
where: core_change_source_link_bool_exp;
|
|
@@ -91106,23 +90476,6 @@ export interface Query {
|
|
|
91106
90476
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
91107
90477
|
where?: Maybe<automation_template_bool_exp>;
|
|
91108
90478
|
}) => Array<automation_template>;
|
|
91109
|
-
automation_status: (args?: {
|
|
91110
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
91111
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91112
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91113
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
91114
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
91115
|
-
}) => Array<automation_status>;
|
|
91116
|
-
automation_status_aggregate: (args?: {
|
|
91117
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
91118
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91119
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91120
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
91121
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
91122
|
-
}) => automation_status_aggregate;
|
|
91123
|
-
automation_status_by_pk: (args: {
|
|
91124
|
-
name: Scalars["String"];
|
|
91125
|
-
}) => Maybe<automation_status>;
|
|
91126
90479
|
automations: (args?: {
|
|
91127
90480
|
distinct_on?: Maybe<Array<automation_select_column>>;
|
|
91128
90481
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -91358,23 +90711,6 @@ export interface Query {
|
|
|
91358
90711
|
where?: Maybe<connection_bool_exp>;
|
|
91359
90712
|
}) => connection_aggregate;
|
|
91360
90713
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
91361
|
-
connection_status_temporary: (args?: {
|
|
91362
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
91363
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91364
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91365
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
91366
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
91367
|
-
}) => Array<connection_status_temporary>;
|
|
91368
|
-
connection_status_temporary_aggregate: (args?: {
|
|
91369
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
91370
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91371
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91372
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
91373
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
91374
|
-
}) => connection_status_temporary_aggregate;
|
|
91375
|
-
connection_status_temporary_by_pk: (args: {
|
|
91376
|
-
name: Scalars["String"];
|
|
91377
|
-
}) => Maybe<connection_status_temporary>;
|
|
91378
90714
|
contact: (args: { id: Scalars["uuid"] }) => Maybe<contact>;
|
|
91379
90715
|
contactAggregate: (args?: {
|
|
91380
90716
|
distinct_on?: Maybe<Array<contact_select_column>>;
|
|
@@ -97931,28 +97267,6 @@ export interface Subscription {
|
|
|
97931
97267
|
order_by?: Maybe<Array<automation_template_order_by>>;
|
|
97932
97268
|
where?: Maybe<automation_template_bool_exp>;
|
|
97933
97269
|
}) => Array<automation_template>;
|
|
97934
|
-
automation_status: (args?: {
|
|
97935
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
97936
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
97937
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
97938
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
97939
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97940
|
-
}) => Array<automation_status>;
|
|
97941
|
-
automation_status_aggregate: (args?: {
|
|
97942
|
-
distinct_on?: Maybe<Array<automation_status_select_column>>;
|
|
97943
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
97944
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
97945
|
-
order_by?: Maybe<Array<automation_status_order_by>>;
|
|
97946
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97947
|
-
}) => automation_status_aggregate;
|
|
97948
|
-
automation_status_by_pk: (args: {
|
|
97949
|
-
name: Scalars["String"];
|
|
97950
|
-
}) => Maybe<automation_status>;
|
|
97951
|
-
automation_status_stream: (args: {
|
|
97952
|
-
batch_size: Scalars["Int"];
|
|
97953
|
-
cursor: Array<Maybe<automation_status_stream_cursor_input>>;
|
|
97954
|
-
where?: Maybe<automation_status_bool_exp>;
|
|
97955
|
-
}) => Array<automation_status>;
|
|
97956
97270
|
automation_stream: (args: {
|
|
97957
97271
|
batch_size: Scalars["Int"];
|
|
97958
97272
|
cursor: Array<Maybe<automation_stream_cursor_input>>;
|
|
@@ -98258,28 +97572,6 @@ export interface Subscription {
|
|
|
98258
97572
|
where?: Maybe<connection_bool_exp>;
|
|
98259
97573
|
}) => connection_aggregate;
|
|
98260
97574
|
connectionById: (args: { id: Scalars["uuid"] }) => Maybe<connection>;
|
|
98261
|
-
connection_status_temporary: (args?: {
|
|
98262
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
98263
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98264
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98265
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
98266
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98267
|
-
}) => Array<connection_status_temporary>;
|
|
98268
|
-
connection_status_temporary_aggregate: (args?: {
|
|
98269
|
-
distinct_on?: Maybe<Array<connection_status_temporary_select_column>>;
|
|
98270
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98271
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98272
|
-
order_by?: Maybe<Array<connection_status_temporary_order_by>>;
|
|
98273
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98274
|
-
}) => connection_status_temporary_aggregate;
|
|
98275
|
-
connection_status_temporary_by_pk: (args: {
|
|
98276
|
-
name: Scalars["String"];
|
|
98277
|
-
}) => Maybe<connection_status_temporary>;
|
|
98278
|
-
connection_status_temporary_stream: (args: {
|
|
98279
|
-
batch_size: Scalars["Int"];
|
|
98280
|
-
cursor: Array<Maybe<connection_status_temporary_stream_cursor_input>>;
|
|
98281
|
-
where?: Maybe<connection_status_temporary_bool_exp>;
|
|
98282
|
-
}) => Array<connection_status_temporary>;
|
|
98283
97575
|
connection_stream: (args: {
|
|
98284
97576
|
batch_size: Scalars["Int"];
|
|
98285
97577
|
cursor: Array<Maybe<connection_stream_cursor_input>>;
|
|
@@ -106830,12 +106122,6 @@ export interface SchemaObjectTypes {
|
|
|
106830
106122
|
automation_max_fields: automation_max_fields;
|
|
106831
106123
|
automation_min_fields: automation_min_fields;
|
|
106832
106124
|
automation_mutation_response: automation_mutation_response;
|
|
106833
|
-
automation_status: automation_status;
|
|
106834
|
-
automation_status_aggregate: automation_status_aggregate;
|
|
106835
|
-
automation_status_aggregate_fields: automation_status_aggregate_fields;
|
|
106836
|
-
automation_status_max_fields: automation_status_max_fields;
|
|
106837
|
-
automation_status_min_fields: automation_status_min_fields;
|
|
106838
|
-
automation_status_mutation_response: automation_status_mutation_response;
|
|
106839
106125
|
automation_template: automation_template;
|
|
106840
106126
|
automation_template_aggregate: automation_template_aggregate;
|
|
106841
106127
|
automation_template_aggregate_fields: automation_template_aggregate_fields;
|
|
@@ -106944,12 +106230,6 @@ export interface SchemaObjectTypes {
|
|
|
106944
106230
|
connection_max_fields: connection_max_fields;
|
|
106945
106231
|
connection_min_fields: connection_min_fields;
|
|
106946
106232
|
connection_mutation_response: connection_mutation_response;
|
|
106947
|
-
connection_status_temporary: connection_status_temporary;
|
|
106948
|
-
connection_status_temporary_aggregate: connection_status_temporary_aggregate;
|
|
106949
|
-
connection_status_temporary_aggregate_fields: connection_status_temporary_aggregate_fields;
|
|
106950
|
-
connection_status_temporary_max_fields: connection_status_temporary_max_fields;
|
|
106951
|
-
connection_status_temporary_min_fields: connection_status_temporary_min_fields;
|
|
106952
|
-
connection_status_temporary_mutation_response: connection_status_temporary_mutation_response;
|
|
106953
106233
|
connection_stddev_fields: connection_stddev_fields;
|
|
106954
106234
|
connection_stddev_pop_fields: connection_stddev_pop_fields;
|
|
106955
106235
|
connection_stddev_samp_fields: connection_stddev_samp_fields;
|
|
@@ -107920,12 +107200,6 @@ export type SchemaObjectTypesNames =
|
|
|
107920
107200
|
| "automation_max_fields"
|
|
107921
107201
|
| "automation_min_fields"
|
|
107922
107202
|
| "automation_mutation_response"
|
|
107923
|
-
| "automation_status"
|
|
107924
|
-
| "automation_status_aggregate"
|
|
107925
|
-
| "automation_status_aggregate_fields"
|
|
107926
|
-
| "automation_status_max_fields"
|
|
107927
|
-
| "automation_status_min_fields"
|
|
107928
|
-
| "automation_status_mutation_response"
|
|
107929
107203
|
| "automation_template"
|
|
107930
107204
|
| "automation_template_aggregate"
|
|
107931
107205
|
| "automation_template_aggregate_fields"
|
|
@@ -108034,12 +107308,6 @@ export type SchemaObjectTypesNames =
|
|
|
108034
107308
|
| "connection_max_fields"
|
|
108035
107309
|
| "connection_min_fields"
|
|
108036
107310
|
| "connection_mutation_response"
|
|
108037
|
-
| "connection_status_temporary"
|
|
108038
|
-
| "connection_status_temporary_aggregate"
|
|
108039
|
-
| "connection_status_temporary_aggregate_fields"
|
|
108040
|
-
| "connection_status_temporary_max_fields"
|
|
108041
|
-
| "connection_status_temporary_min_fields"
|
|
108042
|
-
| "connection_status_temporary_mutation_response"
|
|
108043
107311
|
| "connection_stddev_fields"
|
|
108044
107312
|
| "connection_stddev_pop_fields"
|
|
108045
107313
|
| "connection_stddev_samp_fields"
|
|
@@ -108998,10 +108266,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
108998
108266
|
audit_log_update_column: audit_log_update_column | undefined;
|
|
108999
108267
|
automation_constraint: automation_constraint | undefined;
|
|
109000
108268
|
automation_select_column: automation_select_column | undefined;
|
|
109001
|
-
automation_status_constraint: automation_status_constraint | undefined;
|
|
109002
|
-
automation_status_enum: automation_status_enum | undefined;
|
|
109003
|
-
automation_status_select_column: automation_status_select_column | undefined;
|
|
109004
|
-
automation_status_update_column: automation_status_update_column | undefined;
|
|
109005
108269
|
automation_template_constraint: automation_template_constraint | undefined;
|
|
109006
108270
|
automation_template_select_column:
|
|
109007
108271
|
| automation_template_select_column
|
|
@@ -109097,15 +108361,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109097
108361
|
connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns:
|
|
109098
108362
|
| connection_select_column_connection_aggregate_bool_exp_bool_or_arguments_columns
|
|
109099
108363
|
| undefined;
|
|
109100
|
-
connection_status_temporary_constraint:
|
|
109101
|
-
| connection_status_temporary_constraint
|
|
109102
|
-
| undefined;
|
|
109103
|
-
connection_status_temporary_select_column:
|
|
109104
|
-
| connection_status_temporary_select_column
|
|
109105
|
-
| undefined;
|
|
109106
|
-
connection_status_temporary_update_column:
|
|
109107
|
-
| connection_status_temporary_update_column
|
|
109108
|
-
| undefined;
|
|
109109
108364
|
connection_update_column: connection_update_column | undefined;
|
|
109110
108365
|
contactCompanyType_constraint: contactCompanyType_constraint | undefined;
|
|
109111
108366
|
contactCompanyType_enum: contactCompanyType_enum | undefined;
|