@vrplatform/graphql 1.1.26 → 1.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main/gqty/schema.generated.d.ts +117 -3
- package/build/main/gqty/schema.generated.js +46 -0
- package/build/module/gqty/schema.generated.d.ts +117 -3
- package/build/module/gqty/schema.generated.js +46 -0
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +117 -3
- package/src/gqty/schema.generated.js +46 -0
|
@@ -6776,12 +6776,15 @@ export interface core_flow_bool_exp {
|
|
|
6776
6776
|
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6777
6777
|
title?: InputMaybe<String_comparison_exp>;
|
|
6778
6778
|
type?: InputMaybe<flow_type_comparison_exp>;
|
|
6779
|
+
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
6779
6780
|
}
|
|
6780
6781
|
|
|
6781
6782
|
/** unique or primary key constraints on table "core.flow" */
|
|
6782
6783
|
export type core_flow_constraint =
|
|
6783
6784
|
/** unique or primary key constraint on columns "id" */
|
|
6784
|
-
"flow_pkey"
|
|
6785
|
+
| "flow_pkey"
|
|
6786
|
+
/** unique or primary key constraint on columns "unique_ref", "app_id" */
|
|
6787
|
+
| "flow_unique_ref_app_id_key";
|
|
6785
6788
|
|
|
6786
6789
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6787
6790
|
export interface core_flow_delete_at_path_input {
|
|
@@ -6810,6 +6813,7 @@ export interface core_flow_insert_input {
|
|
|
6810
6813
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6811
6814
|
title?: InputMaybe<Scalars["String"]>;
|
|
6812
6815
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
6816
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
6813
6817
|
}
|
|
6814
6818
|
|
|
6815
6819
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -7058,6 +7062,7 @@ export interface core_flow_max_order_by {
|
|
|
7058
7062
|
id?: InputMaybe<order_by>;
|
|
7059
7063
|
title?: InputMaybe<order_by>;
|
|
7060
7064
|
type?: InputMaybe<order_by>;
|
|
7065
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
7061
7066
|
}
|
|
7062
7067
|
|
|
7063
7068
|
/** order by min() on columns of table "core.flow" */
|
|
@@ -7067,6 +7072,7 @@ export interface core_flow_min_order_by {
|
|
|
7067
7072
|
id?: InputMaybe<order_by>;
|
|
7068
7073
|
title?: InputMaybe<order_by>;
|
|
7069
7074
|
type?: InputMaybe<order_by>;
|
|
7075
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
7070
7076
|
}
|
|
7071
7077
|
|
|
7072
7078
|
/** input type for inserting object relation for remote table "core.flow" */
|
|
@@ -7092,6 +7098,7 @@ export interface core_flow_order_by {
|
|
|
7092
7098
|
setting_schema?: InputMaybe<order_by>;
|
|
7093
7099
|
title?: InputMaybe<order_by>;
|
|
7094
7100
|
type?: InputMaybe<order_by>;
|
|
7101
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
7095
7102
|
}
|
|
7096
7103
|
|
|
7097
7104
|
/** primary key columns input for table: core.flow */
|
|
@@ -7120,7 +7127,9 @@ export type core_flow_select_column =
|
|
|
7120
7127
|
/** column name */
|
|
7121
7128
|
| "title"
|
|
7122
7129
|
/** column name */
|
|
7123
|
-
| "type"
|
|
7130
|
+
| "type"
|
|
7131
|
+
/** column name */
|
|
7132
|
+
| "uniqueRef";
|
|
7124
7133
|
|
|
7125
7134
|
/** input type for updating data in table "core.flow" */
|
|
7126
7135
|
export interface core_flow_set_input {
|
|
@@ -7131,6 +7140,7 @@ export interface core_flow_set_input {
|
|
|
7131
7140
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7132
7141
|
title?: InputMaybe<Scalars["String"]>;
|
|
7133
7142
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7143
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7134
7144
|
}
|
|
7135
7145
|
|
|
7136
7146
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -7377,6 +7387,7 @@ export interface core_flow_stream_cursor_value_input {
|
|
|
7377
7387
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7378
7388
|
title?: InputMaybe<Scalars["String"]>;
|
|
7379
7389
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7390
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7380
7391
|
}
|
|
7381
7392
|
|
|
7382
7393
|
/** update columns of table "core.flow" */
|
|
@@ -7394,7 +7405,9 @@ export type core_flow_update_column =
|
|
|
7394
7405
|
/** column name */
|
|
7395
7406
|
| "title"
|
|
7396
7407
|
/** column name */
|
|
7397
|
-
| "type"
|
|
7408
|
+
| "type"
|
|
7409
|
+
/** column name */
|
|
7410
|
+
| "uniqueRef";
|
|
7398
7411
|
|
|
7399
7412
|
export interface core_flow_updates {
|
|
7400
7413
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -21559,6 +21572,8 @@ export interface store_dispatched_action_bool_exp {
|
|
|
21559
21572
|
created_at?: InputMaybe<timestamptz_comparison_exp>;
|
|
21560
21573
|
effect_queues?: InputMaybe<store_effect_queue_bool_exp>;
|
|
21561
21574
|
effect_queues_aggregate?: InputMaybe<store_effect_queue_aggregate_bool_exp>;
|
|
21575
|
+
entity_id?: InputMaybe<uuid_comparison_exp>;
|
|
21576
|
+
entity_type?: InputMaybe<String_comparison_exp>;
|
|
21562
21577
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
21563
21578
|
message?: InputMaybe<String_comparison_exp>;
|
|
21564
21579
|
mutation_logs?: InputMaybe<store_mutation_log_bool_exp>;
|
|
@@ -21601,6 +21616,8 @@ export interface store_dispatched_action_insert_input {
|
|
|
21601
21616
|
api_endpoint?: InputMaybe<Scalars["String"]>;
|
|
21602
21617
|
created_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
21603
21618
|
effect_queues?: InputMaybe<store_effect_queue_arr_rel_insert_input>;
|
|
21619
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
21620
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
21604
21621
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
21605
21622
|
message?: InputMaybe<Scalars["String"]>;
|
|
21606
21623
|
mutation_logs?: InputMaybe<store_mutation_log_arr_rel_insert_input>;
|
|
@@ -21631,6 +21648,8 @@ export interface store_dispatched_action_order_by {
|
|
|
21631
21648
|
api_endpoint?: InputMaybe<order_by>;
|
|
21632
21649
|
created_at?: InputMaybe<order_by>;
|
|
21633
21650
|
effect_queues_aggregate?: InputMaybe<store_effect_queue_aggregate_order_by>;
|
|
21651
|
+
entity_id?: InputMaybe<order_by>;
|
|
21652
|
+
entity_type?: InputMaybe<order_by>;
|
|
21634
21653
|
id?: InputMaybe<order_by>;
|
|
21635
21654
|
message?: InputMaybe<order_by>;
|
|
21636
21655
|
mutation_logs_aggregate?: InputMaybe<store_mutation_log_aggregate_order_by>;
|
|
@@ -21660,6 +21679,10 @@ export type store_dispatched_action_select_column =
|
|
|
21660
21679
|
/** column name */
|
|
21661
21680
|
| "created_at"
|
|
21662
21681
|
/** column name */
|
|
21682
|
+
| "entity_id"
|
|
21683
|
+
/** column name */
|
|
21684
|
+
| "entity_type"
|
|
21685
|
+
/** column name */
|
|
21663
21686
|
| "id"
|
|
21664
21687
|
/** column name */
|
|
21665
21688
|
| "message"
|
|
@@ -21679,6 +21702,8 @@ export interface store_dispatched_action_set_input {
|
|
|
21679
21702
|
action_type?: InputMaybe<Scalars["String"]>;
|
|
21680
21703
|
api_endpoint?: InputMaybe<Scalars["String"]>;
|
|
21681
21704
|
created_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
21705
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
21706
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
21682
21707
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
21683
21708
|
message?: InputMaybe<Scalars["String"]>;
|
|
21684
21709
|
payload?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -21701,6 +21726,8 @@ export interface store_dispatched_action_stream_cursor_value_input {
|
|
|
21701
21726
|
action_type?: InputMaybe<Scalars["String"]>;
|
|
21702
21727
|
api_endpoint?: InputMaybe<Scalars["String"]>;
|
|
21703
21728
|
created_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
21729
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
21730
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
21704
21731
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
21705
21732
|
message?: InputMaybe<Scalars["String"]>;
|
|
21706
21733
|
payload?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -21719,6 +21746,10 @@ export type store_dispatched_action_update_column =
|
|
|
21719
21746
|
/** column name */
|
|
21720
21747
|
| "created_at"
|
|
21721
21748
|
/** column name */
|
|
21749
|
+
| "entity_id"
|
|
21750
|
+
/** column name */
|
|
21751
|
+
| "entity_type"
|
|
21752
|
+
/** column name */
|
|
21722
21753
|
| "id"
|
|
21723
21754
|
/** column name */
|
|
21724
21755
|
| "message"
|
|
@@ -21810,6 +21841,8 @@ export interface store_effect_queue_bool_exp {
|
|
|
21810
21841
|
dispatched_action?: InputMaybe<store_dispatched_action_bool_exp>;
|
|
21811
21842
|
dispatched_action_id?: InputMaybe<uuid_comparison_exp>;
|
|
21812
21843
|
effect_type?: InputMaybe<String_comparison_exp>;
|
|
21844
|
+
entity_id?: InputMaybe<uuid_comparison_exp>;
|
|
21845
|
+
entity_type?: InputMaybe<String_comparison_exp>;
|
|
21813
21846
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
21814
21847
|
last_attempt_at?: InputMaybe<timestamptz_comparison_exp>;
|
|
21815
21848
|
last_error?: InputMaybe<String_comparison_exp>;
|
|
@@ -21861,6 +21894,8 @@ export interface store_effect_queue_insert_input {
|
|
|
21861
21894
|
dispatched_action?: InputMaybe<store_dispatched_action_obj_rel_insert_input>;
|
|
21862
21895
|
dispatched_action_id?: InputMaybe<Scalars["uuid"]>;
|
|
21863
21896
|
effect_type?: InputMaybe<Scalars["String"]>;
|
|
21897
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
21898
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
21864
21899
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
21865
21900
|
last_attempt_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
21866
21901
|
last_error?: InputMaybe<Scalars["String"]>;
|
|
@@ -21882,6 +21917,8 @@ export interface store_effect_queue_max_order_by {
|
|
|
21882
21917
|
created_at?: InputMaybe<order_by>;
|
|
21883
21918
|
dispatched_action_id?: InputMaybe<order_by>;
|
|
21884
21919
|
effect_type?: InputMaybe<order_by>;
|
|
21920
|
+
entity_id?: InputMaybe<order_by>;
|
|
21921
|
+
entity_type?: InputMaybe<order_by>;
|
|
21885
21922
|
id?: InputMaybe<order_by>;
|
|
21886
21923
|
last_attempt_at?: InputMaybe<order_by>;
|
|
21887
21924
|
last_error?: InputMaybe<order_by>;
|
|
@@ -21901,6 +21938,8 @@ export interface store_effect_queue_min_order_by {
|
|
|
21901
21938
|
created_at?: InputMaybe<order_by>;
|
|
21902
21939
|
dispatched_action_id?: InputMaybe<order_by>;
|
|
21903
21940
|
effect_type?: InputMaybe<order_by>;
|
|
21941
|
+
entity_id?: InputMaybe<order_by>;
|
|
21942
|
+
entity_type?: InputMaybe<order_by>;
|
|
21904
21943
|
id?: InputMaybe<order_by>;
|
|
21905
21944
|
last_attempt_at?: InputMaybe<order_by>;
|
|
21906
21945
|
last_error?: InputMaybe<order_by>;
|
|
@@ -21935,6 +21974,8 @@ export interface store_effect_queue_order_by {
|
|
|
21935
21974
|
dispatched_action?: InputMaybe<store_dispatched_action_order_by>;
|
|
21936
21975
|
dispatched_action_id?: InputMaybe<order_by>;
|
|
21937
21976
|
effect_type?: InputMaybe<order_by>;
|
|
21977
|
+
entity_id?: InputMaybe<order_by>;
|
|
21978
|
+
entity_type?: InputMaybe<order_by>;
|
|
21938
21979
|
id?: InputMaybe<order_by>;
|
|
21939
21980
|
last_attempt_at?: InputMaybe<order_by>;
|
|
21940
21981
|
last_error?: InputMaybe<order_by>;
|
|
@@ -21973,6 +22014,10 @@ export type store_effect_queue_select_column =
|
|
|
21973
22014
|
/** column name */
|
|
21974
22015
|
| "effect_type"
|
|
21975
22016
|
/** column name */
|
|
22017
|
+
| "entity_id"
|
|
22018
|
+
/** column name */
|
|
22019
|
+
| "entity_type"
|
|
22020
|
+
/** column name */
|
|
21976
22021
|
| "id"
|
|
21977
22022
|
/** column name */
|
|
21978
22023
|
| "last_attempt_at"
|
|
@@ -22001,6 +22046,8 @@ export interface store_effect_queue_set_input {
|
|
|
22001
22046
|
created_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
22002
22047
|
dispatched_action_id?: InputMaybe<Scalars["uuid"]>;
|
|
22003
22048
|
effect_type?: InputMaybe<Scalars["String"]>;
|
|
22049
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
22050
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
22004
22051
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
22005
22052
|
last_attempt_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
22006
22053
|
last_error?: InputMaybe<Scalars["String"]>;
|
|
@@ -22053,6 +22100,8 @@ export interface store_effect_queue_stream_cursor_value_input {
|
|
|
22053
22100
|
created_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
22054
22101
|
dispatched_action_id?: InputMaybe<Scalars["uuid"]>;
|
|
22055
22102
|
effect_type?: InputMaybe<Scalars["String"]>;
|
|
22103
|
+
entity_id?: InputMaybe<Scalars["uuid"]>;
|
|
22104
|
+
entity_type?: InputMaybe<Scalars["String"]>;
|
|
22056
22105
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
22057
22106
|
last_attempt_at?: InputMaybe<Scalars["timestamptz"]>;
|
|
22058
22107
|
last_error?: InputMaybe<Scalars["String"]>;
|
|
@@ -22088,6 +22137,10 @@ export type store_effect_queue_update_column =
|
|
|
22088
22137
|
/** column name */
|
|
22089
22138
|
| "effect_type"
|
|
22090
22139
|
/** column name */
|
|
22140
|
+
| "entity_id"
|
|
22141
|
+
/** column name */
|
|
22142
|
+
| "entity_type"
|
|
22143
|
+
/** column name */
|
|
22091
22144
|
| "id"
|
|
22092
22145
|
/** column name */
|
|
22093
22146
|
| "last_attempt_at"
|
|
@@ -35514,6 +35567,7 @@ export declare const generatedSchema: {
|
|
|
35514
35567
|
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35515
35568
|
title: { __type: "String!" };
|
|
35516
35569
|
type: { __type: "flow_type" };
|
|
35570
|
+
uniqueRef: { __type: "String!" };
|
|
35517
35571
|
};
|
|
35518
35572
|
core_flow_aggregate: {
|
|
35519
35573
|
__typename: { __type: "String!" };
|
|
@@ -35562,6 +35616,7 @@ export declare const generatedSchema: {
|
|
|
35562
35616
|
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
35563
35617
|
title: { __type: "String_comparison_exp" };
|
|
35564
35618
|
type: { __type: "flow_type_comparison_exp" };
|
|
35619
|
+
uniqueRef: { __type: "String_comparison_exp" };
|
|
35565
35620
|
};
|
|
35566
35621
|
core_flow_delete_at_path_input: {
|
|
35567
35622
|
mapping_schema: { __type: "[String!]" };
|
|
@@ -35583,6 +35638,7 @@ export declare const generatedSchema: {
|
|
|
35583
35638
|
setting_schema: { __type: "jsonb" };
|
|
35584
35639
|
title: { __type: "String" };
|
|
35585
35640
|
type: { __type: "flow_type" };
|
|
35641
|
+
uniqueRef: { __type: "String" };
|
|
35586
35642
|
};
|
|
35587
35643
|
core_flow_mapping: {
|
|
35588
35644
|
__typename: { __type: "String!" };
|
|
@@ -35793,6 +35849,7 @@ export declare const generatedSchema: {
|
|
|
35793
35849
|
id: { __type: "uuid" };
|
|
35794
35850
|
title: { __type: "String" };
|
|
35795
35851
|
type: { __type: "flow_type" };
|
|
35852
|
+
uniqueRef: { __type: "String" };
|
|
35796
35853
|
};
|
|
35797
35854
|
core_flow_max_order_by: {
|
|
35798
35855
|
app_id: { __type: "order_by" };
|
|
@@ -35800,6 +35857,7 @@ export declare const generatedSchema: {
|
|
|
35800
35857
|
id: { __type: "order_by" };
|
|
35801
35858
|
title: { __type: "order_by" };
|
|
35802
35859
|
type: { __type: "order_by" };
|
|
35860
|
+
uniqueRef: { __type: "order_by" };
|
|
35803
35861
|
};
|
|
35804
35862
|
core_flow_min_fields: {
|
|
35805
35863
|
__typename: { __type: "String!" };
|
|
@@ -35808,6 +35866,7 @@ export declare const generatedSchema: {
|
|
|
35808
35866
|
id: { __type: "uuid" };
|
|
35809
35867
|
title: { __type: "String" };
|
|
35810
35868
|
type: { __type: "flow_type" };
|
|
35869
|
+
uniqueRef: { __type: "String" };
|
|
35811
35870
|
};
|
|
35812
35871
|
core_flow_min_order_by: {
|
|
35813
35872
|
app_id: { __type: "order_by" };
|
|
@@ -35815,6 +35874,7 @@ export declare const generatedSchema: {
|
|
|
35815
35874
|
id: { __type: "order_by" };
|
|
35816
35875
|
title: { __type: "order_by" };
|
|
35817
35876
|
type: { __type: "order_by" };
|
|
35877
|
+
uniqueRef: { __type: "order_by" };
|
|
35818
35878
|
};
|
|
35819
35879
|
core_flow_mutation_response: {
|
|
35820
35880
|
__typename: { __type: "String!" };
|
|
@@ -35838,6 +35898,7 @@ export declare const generatedSchema: {
|
|
|
35838
35898
|
setting_schema: { __type: "order_by" };
|
|
35839
35899
|
title: { __type: "order_by" };
|
|
35840
35900
|
type: { __type: "order_by" };
|
|
35901
|
+
uniqueRef: { __type: "order_by" };
|
|
35841
35902
|
};
|
|
35842
35903
|
core_flow_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35843
35904
|
core_flow_prepend_input: {
|
|
@@ -35852,6 +35913,7 @@ export declare const generatedSchema: {
|
|
|
35852
35913
|
setting_schema: { __type: "jsonb" };
|
|
35853
35914
|
title: { __type: "String" };
|
|
35854
35915
|
type: { __type: "flow_type" };
|
|
35916
|
+
uniqueRef: { __type: "String" };
|
|
35855
35917
|
};
|
|
35856
35918
|
core_flow_setting: {
|
|
35857
35919
|
__typename: { __type: "String!" };
|
|
@@ -36055,6 +36117,7 @@ export declare const generatedSchema: {
|
|
|
36055
36117
|
setting_schema: { __type: "jsonb" };
|
|
36056
36118
|
title: { __type: "String" };
|
|
36057
36119
|
type: { __type: "flow_type" };
|
|
36120
|
+
uniqueRef: { __type: "String" };
|
|
36058
36121
|
};
|
|
36059
36122
|
core_flow_updates: {
|
|
36060
36123
|
_append: { __type: "core_flow_append_input" };
|
|
@@ -59138,6 +59201,8 @@ export declare const generatedSchema: {
|
|
|
59138
59201
|
where: "store_effect_queue_bool_exp";
|
|
59139
59202
|
};
|
|
59140
59203
|
};
|
|
59204
|
+
entity_id: { __type: "uuid" };
|
|
59205
|
+
entity_type: { __type: "String" };
|
|
59141
59206
|
id: { __type: "uuid!" };
|
|
59142
59207
|
message: { __type: "String" };
|
|
59143
59208
|
mutation_logs: {
|
|
@@ -59207,6 +59272,8 @@ export declare const generatedSchema: {
|
|
|
59207
59272
|
effect_queues_aggregate: {
|
|
59208
59273
|
__type: "store_effect_queue_aggregate_bool_exp";
|
|
59209
59274
|
};
|
|
59275
|
+
entity_id: { __type: "uuid_comparison_exp" };
|
|
59276
|
+
entity_type: { __type: "String_comparison_exp" };
|
|
59210
59277
|
id: { __type: "uuid_comparison_exp" };
|
|
59211
59278
|
message: { __type: "String_comparison_exp" };
|
|
59212
59279
|
mutation_logs: { __type: "store_mutation_log_bool_exp" };
|
|
@@ -59230,6 +59297,8 @@ export declare const generatedSchema: {
|
|
|
59230
59297
|
api_endpoint: { __type: "String" };
|
|
59231
59298
|
created_at: { __type: "timestamptz" };
|
|
59232
59299
|
effect_queues: { __type: "store_effect_queue_arr_rel_insert_input" };
|
|
59300
|
+
entity_id: { __type: "uuid" };
|
|
59301
|
+
entity_type: { __type: "String" };
|
|
59233
59302
|
id: { __type: "uuid" };
|
|
59234
59303
|
message: { __type: "String" };
|
|
59235
59304
|
mutation_logs: { __type: "store_mutation_log_arr_rel_insert_input" };
|
|
@@ -59244,6 +59313,8 @@ export declare const generatedSchema: {
|
|
|
59244
59313
|
action_type: { __type: "String" };
|
|
59245
59314
|
api_endpoint: { __type: "String" };
|
|
59246
59315
|
created_at: { __type: "timestamptz" };
|
|
59316
|
+
entity_id: { __type: "uuid" };
|
|
59317
|
+
entity_type: { __type: "String" };
|
|
59247
59318
|
id: { __type: "uuid" };
|
|
59248
59319
|
message: { __type: "String" };
|
|
59249
59320
|
request_r2_link: { __type: "String" };
|
|
@@ -59256,6 +59327,8 @@ export declare const generatedSchema: {
|
|
|
59256
59327
|
action_type: { __type: "String" };
|
|
59257
59328
|
api_endpoint: { __type: "String" };
|
|
59258
59329
|
created_at: { __type: "timestamptz" };
|
|
59330
|
+
entity_id: { __type: "uuid" };
|
|
59331
|
+
entity_type: { __type: "String" };
|
|
59259
59332
|
id: { __type: "uuid" };
|
|
59260
59333
|
message: { __type: "String" };
|
|
59261
59334
|
request_r2_link: { __type: "String" };
|
|
@@ -59284,6 +59357,8 @@ export declare const generatedSchema: {
|
|
|
59284
59357
|
effect_queues_aggregate: {
|
|
59285
59358
|
__type: "store_effect_queue_aggregate_order_by";
|
|
59286
59359
|
};
|
|
59360
|
+
entity_id: { __type: "order_by" };
|
|
59361
|
+
entity_type: { __type: "order_by" };
|
|
59287
59362
|
id: { __type: "order_by" };
|
|
59288
59363
|
message: { __type: "order_by" };
|
|
59289
59364
|
mutation_logs_aggregate: {
|
|
@@ -59301,6 +59376,8 @@ export declare const generatedSchema: {
|
|
|
59301
59376
|
action_type: { __type: "String" };
|
|
59302
59377
|
api_endpoint: { __type: "String" };
|
|
59303
59378
|
created_at: { __type: "timestamptz" };
|
|
59379
|
+
entity_id: { __type: "uuid" };
|
|
59380
|
+
entity_type: { __type: "String" };
|
|
59304
59381
|
id: { __type: "uuid" };
|
|
59305
59382
|
message: { __type: "String" };
|
|
59306
59383
|
payload: { __type: "jsonb" };
|
|
@@ -59331,6 +59408,8 @@ export declare const generatedSchema: {
|
|
|
59331
59408
|
action_type: { __type: "String" };
|
|
59332
59409
|
api_endpoint: { __type: "String" };
|
|
59333
59410
|
created_at: { __type: "timestamptz" };
|
|
59411
|
+
entity_id: { __type: "uuid" };
|
|
59412
|
+
entity_type: { __type: "String" };
|
|
59334
59413
|
id: { __type: "uuid" };
|
|
59335
59414
|
message: { __type: "String" };
|
|
59336
59415
|
payload: { __type: "jsonb" };
|
|
@@ -59374,6 +59453,8 @@ export declare const generatedSchema: {
|
|
|
59374
59453
|
dispatched_action: { __type: "store_dispatched_action!" };
|
|
59375
59454
|
dispatched_action_id: { __type: "uuid!" };
|
|
59376
59455
|
effect_type: { __type: "String!" };
|
|
59456
|
+
entity_id: { __type: "uuid" };
|
|
59457
|
+
entity_type: { __type: "String" };
|
|
59377
59458
|
id: { __type: "uuid!" };
|
|
59378
59459
|
last_attempt_at: { __type: "timestamptz" };
|
|
59379
59460
|
last_error: { __type: "String" };
|
|
@@ -59481,6 +59562,8 @@ export declare const generatedSchema: {
|
|
|
59481
59562
|
dispatched_action: { __type: "store_dispatched_action_bool_exp" };
|
|
59482
59563
|
dispatched_action_id: { __type: "uuid_comparison_exp" };
|
|
59483
59564
|
effect_type: { __type: "String_comparison_exp" };
|
|
59565
|
+
entity_id: { __type: "uuid_comparison_exp" };
|
|
59566
|
+
entity_type: { __type: "String_comparison_exp" };
|
|
59484
59567
|
id: { __type: "uuid_comparison_exp" };
|
|
59485
59568
|
last_attempt_at: { __type: "timestamptz_comparison_exp" };
|
|
59486
59569
|
last_error: { __type: "String_comparison_exp" };
|
|
@@ -59515,6 +59598,8 @@ export declare const generatedSchema: {
|
|
|
59515
59598
|
};
|
|
59516
59599
|
dispatched_action_id: { __type: "uuid" };
|
|
59517
59600
|
effect_type: { __type: "String" };
|
|
59601
|
+
entity_id: { __type: "uuid" };
|
|
59602
|
+
entity_type: { __type: "String" };
|
|
59518
59603
|
id: { __type: "uuid" };
|
|
59519
59604
|
last_attempt_at: { __type: "timestamptz" };
|
|
59520
59605
|
last_error: { __type: "String" };
|
|
@@ -59535,6 +59620,8 @@ export declare const generatedSchema: {
|
|
|
59535
59620
|
created_at: { __type: "timestamptz" };
|
|
59536
59621
|
dispatched_action_id: { __type: "uuid" };
|
|
59537
59622
|
effect_type: { __type: "String" };
|
|
59623
|
+
entity_id: { __type: "uuid" };
|
|
59624
|
+
entity_type: { __type: "String" };
|
|
59538
59625
|
id: { __type: "uuid" };
|
|
59539
59626
|
last_attempt_at: { __type: "timestamptz" };
|
|
59540
59627
|
last_error: { __type: "String" };
|
|
@@ -59552,6 +59639,8 @@ export declare const generatedSchema: {
|
|
|
59552
59639
|
created_at: { __type: "order_by" };
|
|
59553
59640
|
dispatched_action_id: { __type: "order_by" };
|
|
59554
59641
|
effect_type: { __type: "order_by" };
|
|
59642
|
+
entity_id: { __type: "order_by" };
|
|
59643
|
+
entity_type: { __type: "order_by" };
|
|
59555
59644
|
id: { __type: "order_by" };
|
|
59556
59645
|
last_attempt_at: { __type: "order_by" };
|
|
59557
59646
|
last_error: { __type: "order_by" };
|
|
@@ -59570,6 +59659,8 @@ export declare const generatedSchema: {
|
|
|
59570
59659
|
created_at: { __type: "timestamptz" };
|
|
59571
59660
|
dispatched_action_id: { __type: "uuid" };
|
|
59572
59661
|
effect_type: { __type: "String" };
|
|
59662
|
+
entity_id: { __type: "uuid" };
|
|
59663
|
+
entity_type: { __type: "String" };
|
|
59573
59664
|
id: { __type: "uuid" };
|
|
59574
59665
|
last_attempt_at: { __type: "timestamptz" };
|
|
59575
59666
|
last_error: { __type: "String" };
|
|
@@ -59587,6 +59678,8 @@ export declare const generatedSchema: {
|
|
|
59587
59678
|
created_at: { __type: "order_by" };
|
|
59588
59679
|
dispatched_action_id: { __type: "order_by" };
|
|
59589
59680
|
effect_type: { __type: "order_by" };
|
|
59681
|
+
entity_id: { __type: "order_by" };
|
|
59682
|
+
entity_type: { __type: "order_by" };
|
|
59590
59683
|
id: { __type: "order_by" };
|
|
59591
59684
|
last_attempt_at: { __type: "order_by" };
|
|
59592
59685
|
last_error: { __type: "order_by" };
|
|
@@ -59619,6 +59712,8 @@ export declare const generatedSchema: {
|
|
|
59619
59712
|
dispatched_action: { __type: "store_dispatched_action_order_by" };
|
|
59620
59713
|
dispatched_action_id: { __type: "order_by" };
|
|
59621
59714
|
effect_type: { __type: "order_by" };
|
|
59715
|
+
entity_id: { __type: "order_by" };
|
|
59716
|
+
entity_type: { __type: "order_by" };
|
|
59622
59717
|
id: { __type: "order_by" };
|
|
59623
59718
|
last_attempt_at: { __type: "order_by" };
|
|
59624
59719
|
last_error: { __type: "order_by" };
|
|
@@ -59642,6 +59737,8 @@ export declare const generatedSchema: {
|
|
|
59642
59737
|
created_at: { __type: "timestamptz" };
|
|
59643
59738
|
dispatched_action_id: { __type: "uuid" };
|
|
59644
59739
|
effect_type: { __type: "String" };
|
|
59740
|
+
entity_id: { __type: "uuid" };
|
|
59741
|
+
entity_type: { __type: "String" };
|
|
59645
59742
|
id: { __type: "uuid" };
|
|
59646
59743
|
last_attempt_at: { __type: "timestamptz" };
|
|
59647
59744
|
last_error: { __type: "String" };
|
|
@@ -59703,6 +59800,8 @@ export declare const generatedSchema: {
|
|
|
59703
59800
|
created_at: { __type: "timestamptz" };
|
|
59704
59801
|
dispatched_action_id: { __type: "uuid" };
|
|
59705
59802
|
effect_type: { __type: "String" };
|
|
59803
|
+
entity_id: { __type: "uuid" };
|
|
59804
|
+
entity_type: { __type: "String" };
|
|
59706
59805
|
id: { __type: "uuid" };
|
|
59707
59806
|
last_attempt_at: { __type: "timestamptz" };
|
|
59708
59807
|
last_error: { __type: "String" };
|
|
@@ -77037,6 +77136,7 @@ export interface core_flow {
|
|
|
77037
77136
|
}) => ScalarsEnums["jsonb"];
|
|
77038
77137
|
title: ScalarsEnums["String"];
|
|
77039
77138
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77139
|
+
uniqueRef: ScalarsEnums["String"];
|
|
77040
77140
|
}
|
|
77041
77141
|
|
|
77042
77142
|
/**
|
|
@@ -77203,6 +77303,7 @@ export interface core_flow_max_fields {
|
|
|
77203
77303
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77204
77304
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
77205
77305
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77306
|
+
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
77206
77307
|
}
|
|
77207
77308
|
|
|
77208
77309
|
/**
|
|
@@ -77215,6 +77316,7 @@ export interface core_flow_min_fields {
|
|
|
77215
77316
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77216
77317
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
77217
77318
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77319
|
+
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
77218
77320
|
}
|
|
77219
77321
|
|
|
77220
77322
|
/**
|
|
@@ -95529,6 +95631,8 @@ export interface store_dispatched_action {
|
|
|
95529
95631
|
*/
|
|
95530
95632
|
where?: Maybe<store_effect_queue_bool_exp>;
|
|
95531
95633
|
}) => store_effect_queue_aggregate;
|
|
95634
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95635
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95532
95636
|
id: ScalarsEnums["uuid"];
|
|
95533
95637
|
message?: Maybe<ScalarsEnums["String"]>;
|
|
95534
95638
|
/**
|
|
@@ -95639,6 +95743,8 @@ export interface store_dispatched_action_max_fields {
|
|
|
95639
95743
|
action_type?: Maybe<ScalarsEnums["String"]>;
|
|
95640
95744
|
api_endpoint?: Maybe<ScalarsEnums["String"]>;
|
|
95641
95745
|
created_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95746
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95747
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95642
95748
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95643
95749
|
message?: Maybe<ScalarsEnums["String"]>;
|
|
95644
95750
|
request_r2_link?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -95655,6 +95761,8 @@ export interface store_dispatched_action_min_fields {
|
|
|
95655
95761
|
action_type?: Maybe<ScalarsEnums["String"]>;
|
|
95656
95762
|
api_endpoint?: Maybe<ScalarsEnums["String"]>;
|
|
95657
95763
|
created_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95764
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95765
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95658
95766
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95659
95767
|
message?: Maybe<ScalarsEnums["String"]>;
|
|
95660
95768
|
request_r2_link?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -95749,6 +95857,8 @@ export interface store_effect_queue {
|
|
|
95749
95857
|
dispatched_action: store_dispatched_action;
|
|
95750
95858
|
dispatched_action_id: ScalarsEnums["uuid"];
|
|
95751
95859
|
effect_type: ScalarsEnums["String"];
|
|
95860
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95861
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95752
95862
|
id: ScalarsEnums["uuid"];
|
|
95753
95863
|
last_attempt_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95754
95864
|
last_error?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -95868,6 +95978,8 @@ export interface store_effect_queue_max_fields {
|
|
|
95868
95978
|
created_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95869
95979
|
dispatched_action_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95870
95980
|
effect_type?: Maybe<ScalarsEnums["String"]>;
|
|
95981
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95982
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95871
95983
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95872
95984
|
last_attempt_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95873
95985
|
last_error?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -95890,6 +96002,8 @@ export interface store_effect_queue_min_fields {
|
|
|
95890
96002
|
created_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95891
96003
|
dispatched_action_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95892
96004
|
effect_type?: Maybe<ScalarsEnums["String"]>;
|
|
96005
|
+
entity_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
96006
|
+
entity_type?: Maybe<ScalarsEnums["String"]>;
|
|
95893
96007
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
95894
96008
|
last_attempt_at?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
95895
96009
|
last_error?: Maybe<ScalarsEnums["String"]>;
|