@vrplatform/graphql 1.1.32 → 1.1.35

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.
@@ -6771,7 +6771,9 @@ export interface core_flow_bool_exp {
6771
6771
  _or?: InputMaybe<Array<core_flow_bool_exp>>;
6772
6772
  app_id?: InputMaybe<String_comparison_exp>;
6773
6773
  description?: InputMaybe<String_comparison_exp>;
6774
+ external_type?: InputMaybe<String_comparison_exp>;
6774
6775
  id?: InputMaybe<uuid_comparison_exp>;
6776
+ internal_type?: InputMaybe<String_comparison_exp>;
6775
6777
  mapping_schema?: InputMaybe<jsonb_comparison_exp>;
6776
6778
  setting_schema?: InputMaybe<jsonb_comparison_exp>;
6777
6779
  title?: InputMaybe<String_comparison_exp>;
@@ -6808,7 +6810,9 @@ export interface core_flow_delete_key_input {
6808
6810
  export interface core_flow_insert_input {
6809
6811
  app_id?: InputMaybe<Scalars["String"]>;
6810
6812
  description?: InputMaybe<Scalars["String"]>;
6813
+ external_type?: InputMaybe<Scalars["String"]>;
6811
6814
  id?: InputMaybe<Scalars["uuid"]>;
6815
+ internal_type?: InputMaybe<Scalars["String"]>;
6812
6816
  mapping_schema?: InputMaybe<Scalars["jsonb"]>;
6813
6817
  setting_schema?: InputMaybe<Scalars["jsonb"]>;
6814
6818
  title?: InputMaybe<Scalars["String"]>;
@@ -7059,7 +7063,9 @@ export interface core_flow_mapping_updates {
7059
7063
  export interface core_flow_max_order_by {
7060
7064
  app_id?: InputMaybe<order_by>;
7061
7065
  description?: InputMaybe<order_by>;
7066
+ external_type?: InputMaybe<order_by>;
7062
7067
  id?: InputMaybe<order_by>;
7068
+ internal_type?: InputMaybe<order_by>;
7063
7069
  title?: InputMaybe<order_by>;
7064
7070
  type?: InputMaybe<order_by>;
7065
7071
  uniqueRef?: InputMaybe<order_by>;
@@ -7069,7 +7075,9 @@ export interface core_flow_max_order_by {
7069
7075
  export interface core_flow_min_order_by {
7070
7076
  app_id?: InputMaybe<order_by>;
7071
7077
  description?: InputMaybe<order_by>;
7078
+ external_type?: InputMaybe<order_by>;
7072
7079
  id?: InputMaybe<order_by>;
7080
+ internal_type?: InputMaybe<order_by>;
7073
7081
  title?: InputMaybe<order_by>;
7074
7082
  type?: InputMaybe<order_by>;
7075
7083
  uniqueRef?: InputMaybe<order_by>;
@@ -7093,7 +7101,9 @@ export interface core_flow_on_conflict {
7093
7101
  export interface core_flow_order_by {
7094
7102
  app_id?: InputMaybe<order_by>;
7095
7103
  description?: InputMaybe<order_by>;
7104
+ external_type?: InputMaybe<order_by>;
7096
7105
  id?: InputMaybe<order_by>;
7106
+ internal_type?: InputMaybe<order_by>;
7097
7107
  mapping_schema?: InputMaybe<order_by>;
7098
7108
  setting_schema?: InputMaybe<order_by>;
7099
7109
  title?: InputMaybe<order_by>;
@@ -7119,8 +7129,12 @@ export type core_flow_select_column =
7119
7129
  /** column name */
7120
7130
  | "description"
7121
7131
  /** column name */
7132
+ | "external_type"
7133
+ /** column name */
7122
7134
  | "id"
7123
7135
  /** column name */
7136
+ | "internal_type"
7137
+ /** column name */
7124
7138
  | "mapping_schema"
7125
7139
  /** column name */
7126
7140
  | "setting_schema"
@@ -7135,7 +7149,9 @@ export type core_flow_select_column =
7135
7149
  export interface core_flow_set_input {
7136
7150
  app_id?: InputMaybe<Scalars["String"]>;
7137
7151
  description?: InputMaybe<Scalars["String"]>;
7152
+ external_type?: InputMaybe<Scalars["String"]>;
7138
7153
  id?: InputMaybe<Scalars["uuid"]>;
7154
+ internal_type?: InputMaybe<Scalars["String"]>;
7139
7155
  mapping_schema?: InputMaybe<Scalars["jsonb"]>;
7140
7156
  setting_schema?: InputMaybe<Scalars["jsonb"]>;
7141
7157
  title?: InputMaybe<Scalars["String"]>;
@@ -7394,7 +7410,9 @@ export interface core_flow_stream_cursor_input {
7394
7410
  export interface core_flow_stream_cursor_value_input {
7395
7411
  app_id?: InputMaybe<Scalars["String"]>;
7396
7412
  description?: InputMaybe<Scalars["String"]>;
7413
+ external_type?: InputMaybe<Scalars["String"]>;
7397
7414
  id?: InputMaybe<Scalars["uuid"]>;
7415
+ internal_type?: InputMaybe<Scalars["String"]>;
7398
7416
  mapping_schema?: InputMaybe<Scalars["jsonb"]>;
7399
7417
  setting_schema?: InputMaybe<Scalars["jsonb"]>;
7400
7418
  title?: InputMaybe<Scalars["String"]>;
@@ -7409,8 +7427,12 @@ export type core_flow_update_column =
7409
7427
  /** column name */
7410
7428
  | "description"
7411
7429
  /** column name */
7430
+ | "external_type"
7431
+ /** column name */
7412
7432
  | "id"
7413
7433
  /** column name */
7434
+ | "internal_type"
7435
+ /** column name */
7414
7436
  | "mapping_schema"
7415
7437
  /** column name */
7416
7438
  | "setting_schema"
@@ -16640,6 +16662,7 @@ export interface payment_line_bool_exp {
16640
16662
  connectionId?: InputMaybe<uuid_comparison_exp>;
16641
16663
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
16642
16664
  description?: InputMaybe<String_comparison_exp>;
16665
+ generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
16643
16666
  id?: InputMaybe<uuid_comparison_exp>;
16644
16667
  journalEntries?: InputMaybe<journalEntry_bool_exp>;
16645
16668
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_bool_exp>;
@@ -16925,6 +16948,7 @@ export interface payment_line_insert_input {
16925
16948
  connectionId?: InputMaybe<Scalars["uuid"]>;
16926
16949
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
16927
16950
  description?: InputMaybe<Scalars["String"]>;
16951
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
16928
16952
  id?: InputMaybe<Scalars["uuid"]>;
16929
16953
  journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
16930
16954
  lineId?: InputMaybe<Scalars["uuid"]>;
@@ -16964,6 +16988,7 @@ export interface payment_line_max_order_by {
16964
16988
  connectionId?: InputMaybe<order_by>;
16965
16989
  createdAt?: InputMaybe<order_by>;
16966
16990
  description?: InputMaybe<order_by>;
16991
+ generalLedgerPostingAt?: InputMaybe<order_by>;
16967
16992
  id?: InputMaybe<order_by>;
16968
16993
  lineId?: InputMaybe<order_by>;
16969
16994
  listingId?: InputMaybe<order_by>;
@@ -16991,6 +17016,7 @@ export interface payment_line_min_order_by {
16991
17016
  connectionId?: InputMaybe<order_by>;
16992
17017
  createdAt?: InputMaybe<order_by>;
16993
17018
  description?: InputMaybe<order_by>;
17019
+ generalLedgerPostingAt?: InputMaybe<order_by>;
16994
17020
  id?: InputMaybe<order_by>;
16995
17021
  lineId?: InputMaybe<order_by>;
16996
17022
  listingId?: InputMaybe<order_by>;
@@ -17037,6 +17063,7 @@ export interface payment_line_order_by {
17037
17063
  connectionId?: InputMaybe<order_by>;
17038
17064
  createdAt?: InputMaybe<order_by>;
17039
17065
  description?: InputMaybe<order_by>;
17066
+ generalLedgerPostingAt?: InputMaybe<order_by>;
17040
17067
  id?: InputMaybe<order_by>;
17041
17068
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
17042
17069
  lineId?: InputMaybe<order_by>;
@@ -17093,6 +17120,8 @@ export type payment_line_select_column =
17093
17120
  /** column name */
17094
17121
  | "description"
17095
17122
  /** column name */
17123
+ | "generalLedgerPostingAt"
17124
+ /** column name */
17096
17125
  | "id"
17097
17126
  /** column name */
17098
17127
  | "lineId"
@@ -17152,6 +17181,7 @@ export interface payment_line_set_input {
17152
17181
  connectionId?: InputMaybe<Scalars["uuid"]>;
17153
17182
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17154
17183
  description?: InputMaybe<Scalars["String"]>;
17184
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17155
17185
  id?: InputMaybe<Scalars["uuid"]>;
17156
17186
  lineId?: InputMaybe<Scalars["uuid"]>;
17157
17187
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -17210,6 +17240,7 @@ export interface payment_line_stream_cursor_value_input {
17210
17240
  connectionId?: InputMaybe<Scalars["uuid"]>;
17211
17241
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17212
17242
  description?: InputMaybe<Scalars["String"]>;
17243
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17213
17244
  id?: InputMaybe<Scalars["uuid"]>;
17214
17245
  lineId?: InputMaybe<Scalars["uuid"]>;
17215
17246
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -17253,6 +17284,8 @@ export type payment_line_update_column =
17253
17284
  /** column name */
17254
17285
  | "description"
17255
17286
  /** column name */
17287
+ | "generalLedgerPostingAt"
17288
+ /** column name */
17256
17289
  | "id"
17257
17290
  /** column name */
17258
17291
  | "lineId"
@@ -21079,6 +21112,7 @@ export interface source_bool_exp {
21079
21112
  indexedJson?: InputMaybe<jsonb_comparison_exp>;
21080
21113
  isArchived?: InputMaybe<Boolean_comparison_exp>;
21081
21114
  json?: InputMaybe<jsonb_comparison_exp>;
21115
+ lastWebhookAt?: InputMaybe<timestamptz_comparison_exp>;
21082
21116
  leftSettings?: InputMaybe<setting_bool_exp>;
21083
21117
  listing?: InputMaybe<listing_bool_exp>;
21084
21118
  listingConnection?: InputMaybe<listing_connection_bool_exp>;
@@ -21170,6 +21204,7 @@ export interface source_insert_input {
21170
21204
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21171
21205
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21172
21206
  json?: InputMaybe<Scalars["jsonb"]>;
21207
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21173
21208
  leftSettings?: InputMaybe<setting_obj_rel_insert_input>;
21174
21209
  listing?: InputMaybe<listing_obj_rel_insert_input>;
21175
21210
  listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
@@ -21214,6 +21249,7 @@ export interface source_max_order_by {
21214
21249
  date?: InputMaybe<order_by>;
21215
21250
  description?: InputMaybe<order_by>;
21216
21251
  id?: InputMaybe<order_by>;
21252
+ lastWebhookAt?: InputMaybe<order_by>;
21217
21253
  /** deprecated */
21218
21254
  listingConnectionId?: InputMaybe<order_by>;
21219
21255
  /** deprecated */
@@ -21241,6 +21277,7 @@ export interface source_min_order_by {
21241
21277
  date?: InputMaybe<order_by>;
21242
21278
  description?: InputMaybe<order_by>;
21243
21279
  id?: InputMaybe<order_by>;
21280
+ lastWebhookAt?: InputMaybe<order_by>;
21244
21281
  /** deprecated */
21245
21282
  listingConnectionId?: InputMaybe<order_by>;
21246
21283
  /** deprecated */
@@ -21290,6 +21327,7 @@ export interface source_order_by {
21290
21327
  indexedJson?: InputMaybe<order_by>;
21291
21328
  isArchived?: InputMaybe<order_by>;
21292
21329
  json?: InputMaybe<order_by>;
21330
+ lastWebhookAt?: InputMaybe<order_by>;
21293
21331
  leftSettings?: InputMaybe<setting_order_by>;
21294
21332
  listing?: InputMaybe<listing_order_by>;
21295
21333
  listingConnection?: InputMaybe<listing_connection_order_by>;
@@ -21358,6 +21396,8 @@ export type source_select_column =
21358
21396
  /** column name */
21359
21397
  | "json"
21360
21398
  /** column name */
21399
+ | "lastWebhookAt"
21400
+ /** column name */
21361
21401
  | "listingConnectionId"
21362
21402
  /** column name */
21363
21403
  | "listingId"
@@ -21408,6 +21448,7 @@ export interface source_set_input {
21408
21448
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21409
21449
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21410
21450
  json?: InputMaybe<Scalars["jsonb"]>;
21451
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21411
21452
  /** deprecated */
21412
21453
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
21413
21454
  /** deprecated */
@@ -21462,6 +21503,7 @@ export interface source_stream_cursor_value_input {
21462
21503
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21463
21504
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21464
21505
  json?: InputMaybe<Scalars["jsonb"]>;
21506
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21465
21507
  /** deprecated */
21466
21508
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
21467
21509
  /** deprecated */
@@ -21509,6 +21551,8 @@ export type source_update_column =
21509
21551
  /** column name */
21510
21552
  | "json"
21511
21553
  /** column name */
21554
+ | "lastWebhookAt"
21555
+ /** column name */
21512
21556
  | "listingConnectionId"
21513
21557
  /** column name */
21514
21558
  | "listingId"
@@ -35589,7 +35633,9 @@ export declare const generatedSchema: {
35589
35633
  __typename: { __type: "String!" };
35590
35634
  app_id: { __type: "String!" };
35591
35635
  description: { __type: "String" };
35636
+ external_type: { __type: "String" };
35592
35637
  id: { __type: "uuid!" };
35638
+ internal_type: { __type: "String" };
35593
35639
  mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
35594
35640
  setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
35595
35641
  title: { __type: "String!" };
@@ -35638,7 +35684,9 @@ export declare const generatedSchema: {
35638
35684
  _or: { __type: "[core_flow_bool_exp!]" };
35639
35685
  app_id: { __type: "String_comparison_exp" };
35640
35686
  description: { __type: "String_comparison_exp" };
35687
+ external_type: { __type: "String_comparison_exp" };
35641
35688
  id: { __type: "uuid_comparison_exp" };
35689
+ internal_type: { __type: "String_comparison_exp" };
35642
35690
  mapping_schema: { __type: "jsonb_comparison_exp" };
35643
35691
  setting_schema: { __type: "jsonb_comparison_exp" };
35644
35692
  title: { __type: "String_comparison_exp" };
@@ -35660,7 +35708,9 @@ export declare const generatedSchema: {
35660
35708
  core_flow_insert_input: {
35661
35709
  app_id: { __type: "String" };
35662
35710
  description: { __type: "String" };
35711
+ external_type: { __type: "String" };
35663
35712
  id: { __type: "uuid" };
35713
+ internal_type: { __type: "String" };
35664
35714
  mapping_schema: { __type: "jsonb" };
35665
35715
  setting_schema: { __type: "jsonb" };
35666
35716
  title: { __type: "String" };
@@ -35873,7 +35923,9 @@ export declare const generatedSchema: {
35873
35923
  __typename: { __type: "String!" };
35874
35924
  app_id: { __type: "String" };
35875
35925
  description: { __type: "String" };
35926
+ external_type: { __type: "String" };
35876
35927
  id: { __type: "uuid" };
35928
+ internal_type: { __type: "String" };
35877
35929
  title: { __type: "String" };
35878
35930
  type: { __type: "flow_type" };
35879
35931
  uniqueRef: { __type: "String" };
@@ -35881,7 +35933,9 @@ export declare const generatedSchema: {
35881
35933
  core_flow_max_order_by: {
35882
35934
  app_id: { __type: "order_by" };
35883
35935
  description: { __type: "order_by" };
35936
+ external_type: { __type: "order_by" };
35884
35937
  id: { __type: "order_by" };
35938
+ internal_type: { __type: "order_by" };
35885
35939
  title: { __type: "order_by" };
35886
35940
  type: { __type: "order_by" };
35887
35941
  uniqueRef: { __type: "order_by" };
@@ -35890,7 +35944,9 @@ export declare const generatedSchema: {
35890
35944
  __typename: { __type: "String!" };
35891
35945
  app_id: { __type: "String" };
35892
35946
  description: { __type: "String" };
35947
+ external_type: { __type: "String" };
35893
35948
  id: { __type: "uuid" };
35949
+ internal_type: { __type: "String" };
35894
35950
  title: { __type: "String" };
35895
35951
  type: { __type: "flow_type" };
35896
35952
  uniqueRef: { __type: "String" };
@@ -35898,7 +35954,9 @@ export declare const generatedSchema: {
35898
35954
  core_flow_min_order_by: {
35899
35955
  app_id: { __type: "order_by" };
35900
35956
  description: { __type: "order_by" };
35957
+ external_type: { __type: "order_by" };
35901
35958
  id: { __type: "order_by" };
35959
+ internal_type: { __type: "order_by" };
35902
35960
  title: { __type: "order_by" };
35903
35961
  type: { __type: "order_by" };
35904
35962
  uniqueRef: { __type: "order_by" };
@@ -35920,7 +35978,9 @@ export declare const generatedSchema: {
35920
35978
  core_flow_order_by: {
35921
35979
  app_id: { __type: "order_by" };
35922
35980
  description: { __type: "order_by" };
35981
+ external_type: { __type: "order_by" };
35923
35982
  id: { __type: "order_by" };
35983
+ internal_type: { __type: "order_by" };
35924
35984
  mapping_schema: { __type: "order_by" };
35925
35985
  setting_schema: { __type: "order_by" };
35926
35986
  title: { __type: "order_by" };
@@ -35935,7 +35995,9 @@ export declare const generatedSchema: {
35935
35995
  core_flow_set_input: {
35936
35996
  app_id: { __type: "String" };
35937
35997
  description: { __type: "String" };
35998
+ external_type: { __type: "String" };
35938
35999
  id: { __type: "uuid" };
36000
+ internal_type: { __type: "String" };
35939
36001
  mapping_schema: { __type: "jsonb" };
35940
36002
  setting_schema: { __type: "jsonb" };
35941
36003
  title: { __type: "String" };
@@ -36151,7 +36213,9 @@ export declare const generatedSchema: {
36151
36213
  core_flow_stream_cursor_value_input: {
36152
36214
  app_id: { __type: "String" };
36153
36215
  description: { __type: "String" };
36216
+ external_type: { __type: "String" };
36154
36217
  id: { __type: "uuid" };
36218
+ internal_type: { __type: "String" };
36155
36219
  mapping_schema: { __type: "jsonb" };
36156
36220
  setting_schema: { __type: "jsonb" };
36157
36221
  title: { __type: "String" };
@@ -50469,6 +50533,7 @@ export declare const generatedSchema: {
50469
50533
  connectionId: { __type: "uuid" };
50470
50534
  createdAt: { __type: "timestamptz!" };
50471
50535
  description: { __type: "String" };
50536
+ generalLedgerPostingAt: { __type: "timestamptz" };
50472
50537
  id: { __type: "uuid!" };
50473
50538
  journalEntries: {
50474
50539
  __type: "[journalEntry!]!";
@@ -50670,6 +50735,7 @@ export declare const generatedSchema: {
50670
50735
  connectionId: { __type: "uuid_comparison_exp" };
50671
50736
  createdAt: { __type: "timestamptz_comparison_exp" };
50672
50737
  description: { __type: "String_comparison_exp" };
50738
+ generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
50673
50739
  id: { __type: "uuid_comparison_exp" };
50674
50740
  journalEntries: { __type: "journalEntry_bool_exp" };
50675
50741
  journalEntries_aggregate: { __type: "journalEntry_aggregate_bool_exp" };
@@ -51071,6 +51137,7 @@ export declare const generatedSchema: {
51071
51137
  connectionId: { __type: "uuid" };
51072
51138
  createdAt: { __type: "timestamptz" };
51073
51139
  description: { __type: "String" };
51140
+ generalLedgerPostingAt: { __type: "timestamptz" };
51074
51141
  id: { __type: "uuid" };
51075
51142
  journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
51076
51143
  lineId: { __type: "uuid" };
@@ -51111,6 +51178,7 @@ export declare const generatedSchema: {
51111
51178
  connectionId: { __type: "uuid" };
51112
51179
  createdAt: { __type: "timestamptz" };
51113
51180
  description: { __type: "String" };
51181
+ generalLedgerPostingAt: { __type: "timestamptz" };
51114
51182
  id: { __type: "uuid" };
51115
51183
  lineId: { __type: "uuid" };
51116
51184
  listingId: { __type: "uuid" };
@@ -51136,6 +51204,7 @@ export declare const generatedSchema: {
51136
51204
  connectionId: { __type: "order_by" };
51137
51205
  createdAt: { __type: "order_by" };
51138
51206
  description: { __type: "order_by" };
51207
+ generalLedgerPostingAt: { __type: "order_by" };
51139
51208
  id: { __type: "order_by" };
51140
51209
  lineId: { __type: "order_by" };
51141
51210
  listingId: { __type: "order_by" };
@@ -51162,6 +51231,7 @@ export declare const generatedSchema: {
51162
51231
  connectionId: { __type: "uuid" };
51163
51232
  createdAt: { __type: "timestamptz" };
51164
51233
  description: { __type: "String" };
51234
+ generalLedgerPostingAt: { __type: "timestamptz" };
51165
51235
  id: { __type: "uuid" };
51166
51236
  lineId: { __type: "uuid" };
51167
51237
  listingId: { __type: "uuid" };
@@ -51187,6 +51257,7 @@ export declare const generatedSchema: {
51187
51257
  connectionId: { __type: "order_by" };
51188
51258
  createdAt: { __type: "order_by" };
51189
51259
  description: { __type: "order_by" };
51260
+ generalLedgerPostingAt: { __type: "order_by" };
51190
51261
  id: { __type: "order_by" };
51191
51262
  lineId: { __type: "order_by" };
51192
51263
  listingId: { __type: "order_by" };
@@ -51231,6 +51302,7 @@ export declare const generatedSchema: {
51231
51302
  connectionId: { __type: "order_by" };
51232
51303
  createdAt: { __type: "order_by" };
51233
51304
  description: { __type: "order_by" };
51305
+ generalLedgerPostingAt: { __type: "order_by" };
51234
51306
  id: { __type: "order_by" };
51235
51307
  journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
51236
51308
  lineId: { __type: "order_by" };
@@ -51273,6 +51345,7 @@ export declare const generatedSchema: {
51273
51345
  connectionId: { __type: "uuid" };
51274
51346
  createdAt: { __type: "timestamptz" };
51275
51347
  description: { __type: "String" };
51348
+ generalLedgerPostingAt: { __type: "timestamptz" };
51276
51349
  id: { __type: "uuid" };
51277
51350
  lineId: { __type: "uuid" };
51278
51351
  listingId: { __type: "uuid" };
@@ -51337,6 +51410,7 @@ export declare const generatedSchema: {
51337
51410
  connectionId: { __type: "uuid" };
51338
51411
  createdAt: { __type: "timestamptz" };
51339
51412
  description: { __type: "String" };
51413
+ generalLedgerPostingAt: { __type: "timestamptz" };
51340
51414
  id: { __type: "uuid" };
51341
51415
  lineId: { __type: "uuid" };
51342
51416
  listingId: { __type: "uuid" };
@@ -58583,6 +58657,7 @@ export declare const generatedSchema: {
58583
58657
  indexedJson: { __type: "jsonb"; __args: { path: "String" } };
58584
58658
  isArchived: { __type: "Boolean" };
58585
58659
  json: { __type: "jsonb"; __args: { path: "String" } };
58660
+ lastWebhookAt: { __type: "timestamptz" };
58586
58661
  leftSettings: { __type: "setting" };
58587
58662
  listing: { __type: "listing" };
58588
58663
  listingConnection: { __type: "listing_connection" };
@@ -58847,6 +58922,7 @@ export declare const generatedSchema: {
58847
58922
  indexedJson: { __type: "jsonb_comparison_exp" };
58848
58923
  isArchived: { __type: "Boolean_comparison_exp" };
58849
58924
  json: { __type: "jsonb_comparison_exp" };
58925
+ lastWebhookAt: { __type: "timestamptz_comparison_exp" };
58850
58926
  leftSettings: { __type: "setting_bool_exp" };
58851
58927
  listing: { __type: "listing_bool_exp" };
58852
58928
  listingConnection: { __type: "listing_connection_bool_exp" };
@@ -58920,6 +58996,7 @@ export declare const generatedSchema: {
58920
58996
  indexedJson: { __type: "jsonb" };
58921
58997
  isArchived: { __type: "Boolean" };
58922
58998
  json: { __type: "jsonb" };
58999
+ lastWebhookAt: { __type: "timestamptz" };
58923
59000
  leftSettings: { __type: "setting_obj_rel_insert_input" };
58924
59001
  listing: { __type: "listing_obj_rel_insert_input" };
58925
59002
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
@@ -58962,6 +59039,7 @@ export declare const generatedSchema: {
58962
59039
  date: { __type: "timestamptz" };
58963
59040
  description: { __type: "String" };
58964
59041
  id: { __type: "uuid" };
59042
+ lastWebhookAt: { __type: "timestamptz" };
58965
59043
  listingConnectionId: { __type: "uuid" };
58966
59044
  listingId: { __type: "uuid" };
58967
59045
  modifiedAt: { __type: "timestamptz" };
@@ -58984,6 +59062,7 @@ export declare const generatedSchema: {
58984
59062
  date: { __type: "order_by" };
58985
59063
  description: { __type: "order_by" };
58986
59064
  id: { __type: "order_by" };
59065
+ lastWebhookAt: { __type: "order_by" };
58987
59066
  listingConnectionId: { __type: "order_by" };
58988
59067
  listingId: { __type: "order_by" };
58989
59068
  modifiedAt: { __type: "order_by" };
@@ -59007,6 +59086,7 @@ export declare const generatedSchema: {
59007
59086
  date: { __type: "timestamptz" };
59008
59087
  description: { __type: "String" };
59009
59088
  id: { __type: "uuid" };
59089
+ lastWebhookAt: { __type: "timestamptz" };
59010
59090
  listingConnectionId: { __type: "uuid" };
59011
59091
  listingId: { __type: "uuid" };
59012
59092
  modifiedAt: { __type: "timestamptz" };
@@ -59029,6 +59109,7 @@ export declare const generatedSchema: {
59029
59109
  date: { __type: "order_by" };
59030
59110
  description: { __type: "order_by" };
59031
59111
  id: { __type: "order_by" };
59112
+ lastWebhookAt: { __type: "order_by" };
59032
59113
  listingConnectionId: { __type: "order_by" };
59033
59114
  listingId: { __type: "order_by" };
59034
59115
  modifiedAt: { __type: "order_by" };
@@ -59076,6 +59157,7 @@ export declare const generatedSchema: {
59076
59157
  indexedJson: { __type: "order_by" };
59077
59158
  isArchived: { __type: "order_by" };
59078
59159
  json: { __type: "order_by" };
59160
+ lastWebhookAt: { __type: "order_by" };
59079
59161
  leftSettings: { __type: "setting_order_by" };
59080
59162
  listing: { __type: "listing_order_by" };
59081
59163
  listingConnection: { __type: "listing_connection_order_by" };
@@ -59126,6 +59208,7 @@ export declare const generatedSchema: {
59126
59208
  indexedJson: { __type: "jsonb" };
59127
59209
  isArchived: { __type: "Boolean" };
59128
59210
  json: { __type: "jsonb" };
59211
+ lastWebhookAt: { __type: "timestamptz" };
59129
59212
  listingConnectionId: { __type: "uuid" };
59130
59213
  listingId: { __type: "uuid" };
59131
59214
  modifiedAt: { __type: "timestamptz" };
@@ -59171,6 +59254,7 @@ export declare const generatedSchema: {
59171
59254
  indexedJson: { __type: "jsonb" };
59172
59255
  isArchived: { __type: "Boolean" };
59173
59256
  json: { __type: "jsonb" };
59257
+ lastWebhookAt: { __type: "timestamptz" };
59174
59258
  listingConnectionId: { __type: "uuid" };
59175
59259
  listingId: { __type: "uuid" };
59176
59260
  modifiedAt: { __type: "timestamptz" };
@@ -77194,7 +77278,9 @@ export interface core_flow {
77194
77278
  __typename?: "core_flow";
77195
77279
  app_id: ScalarsEnums["String"];
77196
77280
  description?: Maybe<ScalarsEnums["String"]>;
77281
+ external_type?: Maybe<ScalarsEnums["String"]>;
77197
77282
  id: ScalarsEnums["uuid"];
77283
+ internal_type?: Maybe<ScalarsEnums["String"]>;
77198
77284
  mapping_schema: (args?: {
77199
77285
  /**
77200
77286
  * JSON select path
@@ -77373,7 +77459,9 @@ export interface core_flow_max_fields {
77373
77459
  __typename?: "core_flow_max_fields";
77374
77460
  app_id?: Maybe<ScalarsEnums["String"]>;
77375
77461
  description?: Maybe<ScalarsEnums["String"]>;
77462
+ external_type?: Maybe<ScalarsEnums["String"]>;
77376
77463
  id?: Maybe<ScalarsEnums["uuid"]>;
77464
+ internal_type?: Maybe<ScalarsEnums["String"]>;
77377
77465
  title?: Maybe<ScalarsEnums["String"]>;
77378
77466
  type?: Maybe<ScalarsEnums["flow_type"]>;
77379
77467
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
@@ -77386,7 +77474,9 @@ export interface core_flow_min_fields {
77386
77474
  __typename?: "core_flow_min_fields";
77387
77475
  app_id?: Maybe<ScalarsEnums["String"]>;
77388
77476
  description?: Maybe<ScalarsEnums["String"]>;
77477
+ external_type?: Maybe<ScalarsEnums["String"]>;
77389
77478
  id?: Maybe<ScalarsEnums["uuid"]>;
77479
+ internal_type?: Maybe<ScalarsEnums["String"]>;
77390
77480
  title?: Maybe<ScalarsEnums["String"]>;
77391
77481
  type?: Maybe<ScalarsEnums["flow_type"]>;
77392
77482
  uniqueRef?: Maybe<ScalarsEnums["String"]>;
@@ -88515,6 +88605,7 @@ export interface payment_line {
88515
88605
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
88516
88606
  createdAt: ScalarsEnums["timestamptz"];
88517
88607
  description?: Maybe<ScalarsEnums["String"]>;
88608
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
88518
88609
  id: ScalarsEnums["uuid"];
88519
88610
  /**
88520
88611
  * An array relationship
@@ -89251,6 +89342,7 @@ export interface payment_line_max_fields {
89251
89342
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89252
89343
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89253
89344
  description?: Maybe<ScalarsEnums["String"]>;
89345
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89254
89346
  id?: Maybe<ScalarsEnums["uuid"]>;
89255
89347
  lineId?: Maybe<ScalarsEnums["uuid"]>;
89256
89348
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -89281,6 +89373,7 @@ export interface payment_line_min_fields {
89281
89373
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89282
89374
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89283
89375
  description?: Maybe<ScalarsEnums["String"]>;
89376
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89284
89377
  id?: Maybe<ScalarsEnums["uuid"]>;
89285
89378
  lineId?: Maybe<ScalarsEnums["uuid"]>;
89286
89379
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -95060,6 +95153,7 @@ export interface source {
95060
95153
  */
95061
95154
  path?: Maybe<Scalars["String"]>;
95062
95155
  }) => Maybe<ScalarsEnums["jsonb"]>;
95156
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95063
95157
  /**
95064
95158
  * An object relationship
95065
95159
  */
@@ -95526,6 +95620,7 @@ export interface source_max_fields {
95526
95620
  date?: Maybe<ScalarsEnums["timestamptz"]>;
95527
95621
  description?: Maybe<ScalarsEnums["String"]>;
95528
95622
  id?: Maybe<ScalarsEnums["uuid"]>;
95623
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95529
95624
  /**
95530
95625
  * deprecated
95531
95626
  */
@@ -95562,6 +95657,7 @@ export interface source_min_fields {
95562
95657
  date?: Maybe<ScalarsEnums["timestamptz"]>;
95563
95658
  description?: Maybe<ScalarsEnums["String"]>;
95564
95659
  id?: Maybe<ScalarsEnums["uuid"]>;
95660
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95565
95661
  /**
95566
95662
  * deprecated
95567
95663
  */