@vrplatform/graphql 1.1.32 → 1.1.34

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.
@@ -16640,6 +16640,7 @@ export interface payment_line_bool_exp {
16640
16640
  connectionId?: InputMaybe<uuid_comparison_exp>;
16641
16641
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
16642
16642
  description?: InputMaybe<String_comparison_exp>;
16643
+ generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
16643
16644
  id?: InputMaybe<uuid_comparison_exp>;
16644
16645
  journalEntries?: InputMaybe<journalEntry_bool_exp>;
16645
16646
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_bool_exp>;
@@ -16925,6 +16926,7 @@ export interface payment_line_insert_input {
16925
16926
  connectionId?: InputMaybe<Scalars["uuid"]>;
16926
16927
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
16927
16928
  description?: InputMaybe<Scalars["String"]>;
16929
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
16928
16930
  id?: InputMaybe<Scalars["uuid"]>;
16929
16931
  journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
16930
16932
  lineId?: InputMaybe<Scalars["uuid"]>;
@@ -16964,6 +16966,7 @@ export interface payment_line_max_order_by {
16964
16966
  connectionId?: InputMaybe<order_by>;
16965
16967
  createdAt?: InputMaybe<order_by>;
16966
16968
  description?: InputMaybe<order_by>;
16969
+ generalLedgerPostingAt?: InputMaybe<order_by>;
16967
16970
  id?: InputMaybe<order_by>;
16968
16971
  lineId?: InputMaybe<order_by>;
16969
16972
  listingId?: InputMaybe<order_by>;
@@ -16991,6 +16994,7 @@ export interface payment_line_min_order_by {
16991
16994
  connectionId?: InputMaybe<order_by>;
16992
16995
  createdAt?: InputMaybe<order_by>;
16993
16996
  description?: InputMaybe<order_by>;
16997
+ generalLedgerPostingAt?: InputMaybe<order_by>;
16994
16998
  id?: InputMaybe<order_by>;
16995
16999
  lineId?: InputMaybe<order_by>;
16996
17000
  listingId?: InputMaybe<order_by>;
@@ -17037,6 +17041,7 @@ export interface payment_line_order_by {
17037
17041
  connectionId?: InputMaybe<order_by>;
17038
17042
  createdAt?: InputMaybe<order_by>;
17039
17043
  description?: InputMaybe<order_by>;
17044
+ generalLedgerPostingAt?: InputMaybe<order_by>;
17040
17045
  id?: InputMaybe<order_by>;
17041
17046
  journalEntries_aggregate?: InputMaybe<journalEntry_aggregate_order_by>;
17042
17047
  lineId?: InputMaybe<order_by>;
@@ -17093,6 +17098,8 @@ export type payment_line_select_column =
17093
17098
  /** column name */
17094
17099
  | "description"
17095
17100
  /** column name */
17101
+ | "generalLedgerPostingAt"
17102
+ /** column name */
17096
17103
  | "id"
17097
17104
  /** column name */
17098
17105
  | "lineId"
@@ -17152,6 +17159,7 @@ export interface payment_line_set_input {
17152
17159
  connectionId?: InputMaybe<Scalars["uuid"]>;
17153
17160
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17154
17161
  description?: InputMaybe<Scalars["String"]>;
17162
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17155
17163
  id?: InputMaybe<Scalars["uuid"]>;
17156
17164
  lineId?: InputMaybe<Scalars["uuid"]>;
17157
17165
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -17210,6 +17218,7 @@ export interface payment_line_stream_cursor_value_input {
17210
17218
  connectionId?: InputMaybe<Scalars["uuid"]>;
17211
17219
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
17212
17220
  description?: InputMaybe<Scalars["String"]>;
17221
+ generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
17213
17222
  id?: InputMaybe<Scalars["uuid"]>;
17214
17223
  lineId?: InputMaybe<Scalars["uuid"]>;
17215
17224
  listingId?: InputMaybe<Scalars["uuid"]>;
@@ -17253,6 +17262,8 @@ export type payment_line_update_column =
17253
17262
  /** column name */
17254
17263
  | "description"
17255
17264
  /** column name */
17265
+ | "generalLedgerPostingAt"
17266
+ /** column name */
17256
17267
  | "id"
17257
17268
  /** column name */
17258
17269
  | "lineId"
@@ -21079,6 +21090,7 @@ export interface source_bool_exp {
21079
21090
  indexedJson?: InputMaybe<jsonb_comparison_exp>;
21080
21091
  isArchived?: InputMaybe<Boolean_comparison_exp>;
21081
21092
  json?: InputMaybe<jsonb_comparison_exp>;
21093
+ lastWebhookAt?: InputMaybe<timestamptz_comparison_exp>;
21082
21094
  leftSettings?: InputMaybe<setting_bool_exp>;
21083
21095
  listing?: InputMaybe<listing_bool_exp>;
21084
21096
  listingConnection?: InputMaybe<listing_connection_bool_exp>;
@@ -21170,6 +21182,7 @@ export interface source_insert_input {
21170
21182
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21171
21183
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21172
21184
  json?: InputMaybe<Scalars["jsonb"]>;
21185
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21173
21186
  leftSettings?: InputMaybe<setting_obj_rel_insert_input>;
21174
21187
  listing?: InputMaybe<listing_obj_rel_insert_input>;
21175
21188
  listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
@@ -21214,6 +21227,7 @@ export interface source_max_order_by {
21214
21227
  date?: InputMaybe<order_by>;
21215
21228
  description?: InputMaybe<order_by>;
21216
21229
  id?: InputMaybe<order_by>;
21230
+ lastWebhookAt?: InputMaybe<order_by>;
21217
21231
  /** deprecated */
21218
21232
  listingConnectionId?: InputMaybe<order_by>;
21219
21233
  /** deprecated */
@@ -21241,6 +21255,7 @@ export interface source_min_order_by {
21241
21255
  date?: InputMaybe<order_by>;
21242
21256
  description?: InputMaybe<order_by>;
21243
21257
  id?: InputMaybe<order_by>;
21258
+ lastWebhookAt?: InputMaybe<order_by>;
21244
21259
  /** deprecated */
21245
21260
  listingConnectionId?: InputMaybe<order_by>;
21246
21261
  /** deprecated */
@@ -21290,6 +21305,7 @@ export interface source_order_by {
21290
21305
  indexedJson?: InputMaybe<order_by>;
21291
21306
  isArchived?: InputMaybe<order_by>;
21292
21307
  json?: InputMaybe<order_by>;
21308
+ lastWebhookAt?: InputMaybe<order_by>;
21293
21309
  leftSettings?: InputMaybe<setting_order_by>;
21294
21310
  listing?: InputMaybe<listing_order_by>;
21295
21311
  listingConnection?: InputMaybe<listing_connection_order_by>;
@@ -21358,6 +21374,8 @@ export type source_select_column =
21358
21374
  /** column name */
21359
21375
  | "json"
21360
21376
  /** column name */
21377
+ | "lastWebhookAt"
21378
+ /** column name */
21361
21379
  | "listingConnectionId"
21362
21380
  /** column name */
21363
21381
  | "listingId"
@@ -21408,6 +21426,7 @@ export interface source_set_input {
21408
21426
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21409
21427
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21410
21428
  json?: InputMaybe<Scalars["jsonb"]>;
21429
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21411
21430
  /** deprecated */
21412
21431
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
21413
21432
  /** deprecated */
@@ -21462,6 +21481,7 @@ export interface source_stream_cursor_value_input {
21462
21481
  indexedJson?: InputMaybe<Scalars["jsonb"]>;
21463
21482
  isArchived?: InputMaybe<Scalars["Boolean"]>;
21464
21483
  json?: InputMaybe<Scalars["jsonb"]>;
21484
+ lastWebhookAt?: InputMaybe<Scalars["timestamptz"]>;
21465
21485
  /** deprecated */
21466
21486
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
21467
21487
  /** deprecated */
@@ -21509,6 +21529,8 @@ export type source_update_column =
21509
21529
  /** column name */
21510
21530
  | "json"
21511
21531
  /** column name */
21532
+ | "lastWebhookAt"
21533
+ /** column name */
21512
21534
  | "listingConnectionId"
21513
21535
  /** column name */
21514
21536
  | "listingId"
@@ -50469,6 +50491,7 @@ export declare const generatedSchema: {
50469
50491
  connectionId: { __type: "uuid" };
50470
50492
  createdAt: { __type: "timestamptz!" };
50471
50493
  description: { __type: "String" };
50494
+ generalLedgerPostingAt: { __type: "timestamptz" };
50472
50495
  id: { __type: "uuid!" };
50473
50496
  journalEntries: {
50474
50497
  __type: "[journalEntry!]!";
@@ -50670,6 +50693,7 @@ export declare const generatedSchema: {
50670
50693
  connectionId: { __type: "uuid_comparison_exp" };
50671
50694
  createdAt: { __type: "timestamptz_comparison_exp" };
50672
50695
  description: { __type: "String_comparison_exp" };
50696
+ generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
50673
50697
  id: { __type: "uuid_comparison_exp" };
50674
50698
  journalEntries: { __type: "journalEntry_bool_exp" };
50675
50699
  journalEntries_aggregate: { __type: "journalEntry_aggregate_bool_exp" };
@@ -51071,6 +51095,7 @@ export declare const generatedSchema: {
51071
51095
  connectionId: { __type: "uuid" };
51072
51096
  createdAt: { __type: "timestamptz" };
51073
51097
  description: { __type: "String" };
51098
+ generalLedgerPostingAt: { __type: "timestamptz" };
51074
51099
  id: { __type: "uuid" };
51075
51100
  journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
51076
51101
  lineId: { __type: "uuid" };
@@ -51111,6 +51136,7 @@ export declare const generatedSchema: {
51111
51136
  connectionId: { __type: "uuid" };
51112
51137
  createdAt: { __type: "timestamptz" };
51113
51138
  description: { __type: "String" };
51139
+ generalLedgerPostingAt: { __type: "timestamptz" };
51114
51140
  id: { __type: "uuid" };
51115
51141
  lineId: { __type: "uuid" };
51116
51142
  listingId: { __type: "uuid" };
@@ -51136,6 +51162,7 @@ export declare const generatedSchema: {
51136
51162
  connectionId: { __type: "order_by" };
51137
51163
  createdAt: { __type: "order_by" };
51138
51164
  description: { __type: "order_by" };
51165
+ generalLedgerPostingAt: { __type: "order_by" };
51139
51166
  id: { __type: "order_by" };
51140
51167
  lineId: { __type: "order_by" };
51141
51168
  listingId: { __type: "order_by" };
@@ -51162,6 +51189,7 @@ export declare const generatedSchema: {
51162
51189
  connectionId: { __type: "uuid" };
51163
51190
  createdAt: { __type: "timestamptz" };
51164
51191
  description: { __type: "String" };
51192
+ generalLedgerPostingAt: { __type: "timestamptz" };
51165
51193
  id: { __type: "uuid" };
51166
51194
  lineId: { __type: "uuid" };
51167
51195
  listingId: { __type: "uuid" };
@@ -51187,6 +51215,7 @@ export declare const generatedSchema: {
51187
51215
  connectionId: { __type: "order_by" };
51188
51216
  createdAt: { __type: "order_by" };
51189
51217
  description: { __type: "order_by" };
51218
+ generalLedgerPostingAt: { __type: "order_by" };
51190
51219
  id: { __type: "order_by" };
51191
51220
  lineId: { __type: "order_by" };
51192
51221
  listingId: { __type: "order_by" };
@@ -51231,6 +51260,7 @@ export declare const generatedSchema: {
51231
51260
  connectionId: { __type: "order_by" };
51232
51261
  createdAt: { __type: "order_by" };
51233
51262
  description: { __type: "order_by" };
51263
+ generalLedgerPostingAt: { __type: "order_by" };
51234
51264
  id: { __type: "order_by" };
51235
51265
  journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" };
51236
51266
  lineId: { __type: "order_by" };
@@ -51273,6 +51303,7 @@ export declare const generatedSchema: {
51273
51303
  connectionId: { __type: "uuid" };
51274
51304
  createdAt: { __type: "timestamptz" };
51275
51305
  description: { __type: "String" };
51306
+ generalLedgerPostingAt: { __type: "timestamptz" };
51276
51307
  id: { __type: "uuid" };
51277
51308
  lineId: { __type: "uuid" };
51278
51309
  listingId: { __type: "uuid" };
@@ -51337,6 +51368,7 @@ export declare const generatedSchema: {
51337
51368
  connectionId: { __type: "uuid" };
51338
51369
  createdAt: { __type: "timestamptz" };
51339
51370
  description: { __type: "String" };
51371
+ generalLedgerPostingAt: { __type: "timestamptz" };
51340
51372
  id: { __type: "uuid" };
51341
51373
  lineId: { __type: "uuid" };
51342
51374
  listingId: { __type: "uuid" };
@@ -58583,6 +58615,7 @@ export declare const generatedSchema: {
58583
58615
  indexedJson: { __type: "jsonb"; __args: { path: "String" } };
58584
58616
  isArchived: { __type: "Boolean" };
58585
58617
  json: { __type: "jsonb"; __args: { path: "String" } };
58618
+ lastWebhookAt: { __type: "timestamptz" };
58586
58619
  leftSettings: { __type: "setting" };
58587
58620
  listing: { __type: "listing" };
58588
58621
  listingConnection: { __type: "listing_connection" };
@@ -58847,6 +58880,7 @@ export declare const generatedSchema: {
58847
58880
  indexedJson: { __type: "jsonb_comparison_exp" };
58848
58881
  isArchived: { __type: "Boolean_comparison_exp" };
58849
58882
  json: { __type: "jsonb_comparison_exp" };
58883
+ lastWebhookAt: { __type: "timestamptz_comparison_exp" };
58850
58884
  leftSettings: { __type: "setting_bool_exp" };
58851
58885
  listing: { __type: "listing_bool_exp" };
58852
58886
  listingConnection: { __type: "listing_connection_bool_exp" };
@@ -58920,6 +58954,7 @@ export declare const generatedSchema: {
58920
58954
  indexedJson: { __type: "jsonb" };
58921
58955
  isArchived: { __type: "Boolean" };
58922
58956
  json: { __type: "jsonb" };
58957
+ lastWebhookAt: { __type: "timestamptz" };
58923
58958
  leftSettings: { __type: "setting_obj_rel_insert_input" };
58924
58959
  listing: { __type: "listing_obj_rel_insert_input" };
58925
58960
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
@@ -58962,6 +58997,7 @@ export declare const generatedSchema: {
58962
58997
  date: { __type: "timestamptz" };
58963
58998
  description: { __type: "String" };
58964
58999
  id: { __type: "uuid" };
59000
+ lastWebhookAt: { __type: "timestamptz" };
58965
59001
  listingConnectionId: { __type: "uuid" };
58966
59002
  listingId: { __type: "uuid" };
58967
59003
  modifiedAt: { __type: "timestamptz" };
@@ -58984,6 +59020,7 @@ export declare const generatedSchema: {
58984
59020
  date: { __type: "order_by" };
58985
59021
  description: { __type: "order_by" };
58986
59022
  id: { __type: "order_by" };
59023
+ lastWebhookAt: { __type: "order_by" };
58987
59024
  listingConnectionId: { __type: "order_by" };
58988
59025
  listingId: { __type: "order_by" };
58989
59026
  modifiedAt: { __type: "order_by" };
@@ -59007,6 +59044,7 @@ export declare const generatedSchema: {
59007
59044
  date: { __type: "timestamptz" };
59008
59045
  description: { __type: "String" };
59009
59046
  id: { __type: "uuid" };
59047
+ lastWebhookAt: { __type: "timestamptz" };
59010
59048
  listingConnectionId: { __type: "uuid" };
59011
59049
  listingId: { __type: "uuid" };
59012
59050
  modifiedAt: { __type: "timestamptz" };
@@ -59029,6 +59067,7 @@ export declare const generatedSchema: {
59029
59067
  date: { __type: "order_by" };
59030
59068
  description: { __type: "order_by" };
59031
59069
  id: { __type: "order_by" };
59070
+ lastWebhookAt: { __type: "order_by" };
59032
59071
  listingConnectionId: { __type: "order_by" };
59033
59072
  listingId: { __type: "order_by" };
59034
59073
  modifiedAt: { __type: "order_by" };
@@ -59076,6 +59115,7 @@ export declare const generatedSchema: {
59076
59115
  indexedJson: { __type: "order_by" };
59077
59116
  isArchived: { __type: "order_by" };
59078
59117
  json: { __type: "order_by" };
59118
+ lastWebhookAt: { __type: "order_by" };
59079
59119
  leftSettings: { __type: "setting_order_by" };
59080
59120
  listing: { __type: "listing_order_by" };
59081
59121
  listingConnection: { __type: "listing_connection_order_by" };
@@ -59126,6 +59166,7 @@ export declare const generatedSchema: {
59126
59166
  indexedJson: { __type: "jsonb" };
59127
59167
  isArchived: { __type: "Boolean" };
59128
59168
  json: { __type: "jsonb" };
59169
+ lastWebhookAt: { __type: "timestamptz" };
59129
59170
  listingConnectionId: { __type: "uuid" };
59130
59171
  listingId: { __type: "uuid" };
59131
59172
  modifiedAt: { __type: "timestamptz" };
@@ -59171,6 +59212,7 @@ export declare const generatedSchema: {
59171
59212
  indexedJson: { __type: "jsonb" };
59172
59213
  isArchived: { __type: "Boolean" };
59173
59214
  json: { __type: "jsonb" };
59215
+ lastWebhookAt: { __type: "timestamptz" };
59174
59216
  listingConnectionId: { __type: "uuid" };
59175
59217
  listingId: { __type: "uuid" };
59176
59218
  modifiedAt: { __type: "timestamptz" };
@@ -88515,6 +88557,7 @@ export interface payment_line {
88515
88557
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
88516
88558
  createdAt: ScalarsEnums["timestamptz"];
88517
88559
  description?: Maybe<ScalarsEnums["String"]>;
88560
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
88518
88561
  id: ScalarsEnums["uuid"];
88519
88562
  /**
88520
88563
  * An array relationship
@@ -89251,6 +89294,7 @@ export interface payment_line_max_fields {
89251
89294
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89252
89295
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89253
89296
  description?: Maybe<ScalarsEnums["String"]>;
89297
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89254
89298
  id?: Maybe<ScalarsEnums["uuid"]>;
89255
89299
  lineId?: Maybe<ScalarsEnums["uuid"]>;
89256
89300
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -89281,6 +89325,7 @@ export interface payment_line_min_fields {
89281
89325
  connectionId?: Maybe<ScalarsEnums["uuid"]>;
89282
89326
  createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
89283
89327
  description?: Maybe<ScalarsEnums["String"]>;
89328
+ generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
89284
89329
  id?: Maybe<ScalarsEnums["uuid"]>;
89285
89330
  lineId?: Maybe<ScalarsEnums["uuid"]>;
89286
89331
  listingId?: Maybe<ScalarsEnums["uuid"]>;
@@ -95060,6 +95105,7 @@ export interface source {
95060
95105
  */
95061
95106
  path?: Maybe<Scalars["String"]>;
95062
95107
  }) => Maybe<ScalarsEnums["jsonb"]>;
95108
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95063
95109
  /**
95064
95110
  * An object relationship
95065
95111
  */
@@ -95526,6 +95572,7 @@ export interface source_max_fields {
95526
95572
  date?: Maybe<ScalarsEnums["timestamptz"]>;
95527
95573
  description?: Maybe<ScalarsEnums["String"]>;
95528
95574
  id?: Maybe<ScalarsEnums["uuid"]>;
95575
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95529
95576
  /**
95530
95577
  * deprecated
95531
95578
  */
@@ -95562,6 +95609,7 @@ export interface source_min_fields {
95562
95609
  date?: Maybe<ScalarsEnums["timestamptz"]>;
95563
95610
  description?: Maybe<ScalarsEnums["String"]>;
95564
95611
  id?: Maybe<ScalarsEnums["uuid"]>;
95612
+ lastWebhookAt?: Maybe<ScalarsEnums["timestamptz"]>;
95565
95613
  /**
95566
95614
  * deprecated
95567
95615
  */
@@ -22319,6 +22319,7 @@ exports.generatedSchema = {
22319
22319
  connectionId: { __type: "uuid" },
22320
22320
  createdAt: { __type: "timestamptz!" },
22321
22321
  description: { __type: "String" },
22322
+ generalLedgerPostingAt: { __type: "timestamptz" },
22322
22323
  id: { __type: "uuid!" },
22323
22324
  journalEntries: {
22324
22325
  __type: "[journalEntry!]!",
@@ -22520,6 +22521,7 @@ exports.generatedSchema = {
22520
22521
  connectionId: { __type: "uuid_comparison_exp" },
22521
22522
  createdAt: { __type: "timestamptz_comparison_exp" },
22522
22523
  description: { __type: "String_comparison_exp" },
22524
+ generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" },
22523
22525
  id: { __type: "uuid_comparison_exp" },
22524
22526
  journalEntries: { __type: "journalEntry_bool_exp" },
22525
22527
  journalEntries_aggregate: { __type: "journalEntry_aggregate_bool_exp" },
@@ -22921,6 +22923,7 @@ exports.generatedSchema = {
22921
22923
  connectionId: { __type: "uuid" },
22922
22924
  createdAt: { __type: "timestamptz" },
22923
22925
  description: { __type: "String" },
22926
+ generalLedgerPostingAt: { __type: "timestamptz" },
22924
22927
  id: { __type: "uuid" },
22925
22928
  journalEntries: { __type: "journalEntry_arr_rel_insert_input" },
22926
22929
  lineId: { __type: "uuid" },
@@ -22961,6 +22964,7 @@ exports.generatedSchema = {
22961
22964
  connectionId: { __type: "uuid" },
22962
22965
  createdAt: { __type: "timestamptz" },
22963
22966
  description: { __type: "String" },
22967
+ generalLedgerPostingAt: { __type: "timestamptz" },
22964
22968
  id: { __type: "uuid" },
22965
22969
  lineId: { __type: "uuid" },
22966
22970
  listingId: { __type: "uuid" },
@@ -22986,6 +22990,7 @@ exports.generatedSchema = {
22986
22990
  connectionId: { __type: "order_by" },
22987
22991
  createdAt: { __type: "order_by" },
22988
22992
  description: { __type: "order_by" },
22993
+ generalLedgerPostingAt: { __type: "order_by" },
22989
22994
  id: { __type: "order_by" },
22990
22995
  lineId: { __type: "order_by" },
22991
22996
  listingId: { __type: "order_by" },
@@ -23012,6 +23017,7 @@ exports.generatedSchema = {
23012
23017
  connectionId: { __type: "uuid" },
23013
23018
  createdAt: { __type: "timestamptz" },
23014
23019
  description: { __type: "String" },
23020
+ generalLedgerPostingAt: { __type: "timestamptz" },
23015
23021
  id: { __type: "uuid" },
23016
23022
  lineId: { __type: "uuid" },
23017
23023
  listingId: { __type: "uuid" },
@@ -23037,6 +23043,7 @@ exports.generatedSchema = {
23037
23043
  connectionId: { __type: "order_by" },
23038
23044
  createdAt: { __type: "order_by" },
23039
23045
  description: { __type: "order_by" },
23046
+ generalLedgerPostingAt: { __type: "order_by" },
23040
23047
  id: { __type: "order_by" },
23041
23048
  lineId: { __type: "order_by" },
23042
23049
  listingId: { __type: "order_by" },
@@ -23081,6 +23088,7 @@ exports.generatedSchema = {
23081
23088
  connectionId: { __type: "order_by" },
23082
23089
  createdAt: { __type: "order_by" },
23083
23090
  description: { __type: "order_by" },
23091
+ generalLedgerPostingAt: { __type: "order_by" },
23084
23092
  id: { __type: "order_by" },
23085
23093
  journalEntries_aggregate: { __type: "journalEntry_aggregate_order_by" },
23086
23094
  lineId: { __type: "order_by" },
@@ -23123,6 +23131,7 @@ exports.generatedSchema = {
23123
23131
  connectionId: { __type: "uuid" },
23124
23132
  createdAt: { __type: "timestamptz" },
23125
23133
  description: { __type: "String" },
23134
+ generalLedgerPostingAt: { __type: "timestamptz" },
23126
23135
  id: { __type: "uuid" },
23127
23136
  lineId: { __type: "uuid" },
23128
23137
  listingId: { __type: "uuid" },
@@ -23187,6 +23196,7 @@ exports.generatedSchema = {
23187
23196
  connectionId: { __type: "uuid" },
23188
23197
  createdAt: { __type: "timestamptz" },
23189
23198
  description: { __type: "String" },
23199
+ generalLedgerPostingAt: { __type: "timestamptz" },
23190
23200
  id: { __type: "uuid" },
23191
23201
  lineId: { __type: "uuid" },
23192
23202
  listingId: { __type: "uuid" },
@@ -30433,6 +30443,7 @@ exports.generatedSchema = {
30433
30443
  indexedJson: { __type: "jsonb", __args: { path: "String" } },
30434
30444
  isArchived: { __type: "Boolean" },
30435
30445
  json: { __type: "jsonb", __args: { path: "String" } },
30446
+ lastWebhookAt: { __type: "timestamptz" },
30436
30447
  leftSettings: { __type: "setting" },
30437
30448
  listing: { __type: "listing" },
30438
30449
  listingConnection: { __type: "listing_connection" },
@@ -30697,6 +30708,7 @@ exports.generatedSchema = {
30697
30708
  indexedJson: { __type: "jsonb_comparison_exp" },
30698
30709
  isArchived: { __type: "Boolean_comparison_exp" },
30699
30710
  json: { __type: "jsonb_comparison_exp" },
30711
+ lastWebhookAt: { __type: "timestamptz_comparison_exp" },
30700
30712
  leftSettings: { __type: "setting_bool_exp" },
30701
30713
  listing: { __type: "listing_bool_exp" },
30702
30714
  listingConnection: { __type: "listing_connection_bool_exp" },
@@ -30770,6 +30782,7 @@ exports.generatedSchema = {
30770
30782
  indexedJson: { __type: "jsonb" },
30771
30783
  isArchived: { __type: "Boolean" },
30772
30784
  json: { __type: "jsonb" },
30785
+ lastWebhookAt: { __type: "timestamptz" },
30773
30786
  leftSettings: { __type: "setting_obj_rel_insert_input" },
30774
30787
  listing: { __type: "listing_obj_rel_insert_input" },
30775
30788
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" },
@@ -30812,6 +30825,7 @@ exports.generatedSchema = {
30812
30825
  date: { __type: "timestamptz" },
30813
30826
  description: { __type: "String" },
30814
30827
  id: { __type: "uuid" },
30828
+ lastWebhookAt: { __type: "timestamptz" },
30815
30829
  listingConnectionId: { __type: "uuid" },
30816
30830
  listingId: { __type: "uuid" },
30817
30831
  modifiedAt: { __type: "timestamptz" },
@@ -30834,6 +30848,7 @@ exports.generatedSchema = {
30834
30848
  date: { __type: "order_by" },
30835
30849
  description: { __type: "order_by" },
30836
30850
  id: { __type: "order_by" },
30851
+ lastWebhookAt: { __type: "order_by" },
30837
30852
  listingConnectionId: { __type: "order_by" },
30838
30853
  listingId: { __type: "order_by" },
30839
30854
  modifiedAt: { __type: "order_by" },
@@ -30857,6 +30872,7 @@ exports.generatedSchema = {
30857
30872
  date: { __type: "timestamptz" },
30858
30873
  description: { __type: "String" },
30859
30874
  id: { __type: "uuid" },
30875
+ lastWebhookAt: { __type: "timestamptz" },
30860
30876
  listingConnectionId: { __type: "uuid" },
30861
30877
  listingId: { __type: "uuid" },
30862
30878
  modifiedAt: { __type: "timestamptz" },
@@ -30879,6 +30895,7 @@ exports.generatedSchema = {
30879
30895
  date: { __type: "order_by" },
30880
30896
  description: { __type: "order_by" },
30881
30897
  id: { __type: "order_by" },
30898
+ lastWebhookAt: { __type: "order_by" },
30882
30899
  listingConnectionId: { __type: "order_by" },
30883
30900
  listingId: { __type: "order_by" },
30884
30901
  modifiedAt: { __type: "order_by" },
@@ -30926,6 +30943,7 @@ exports.generatedSchema = {
30926
30943
  indexedJson: { __type: "order_by" },
30927
30944
  isArchived: { __type: "order_by" },
30928
30945
  json: { __type: "order_by" },
30946
+ lastWebhookAt: { __type: "order_by" },
30929
30947
  leftSettings: { __type: "setting_order_by" },
30930
30948
  listing: { __type: "listing_order_by" },
30931
30949
  listingConnection: { __type: "listing_connection_order_by" },
@@ -30976,6 +30994,7 @@ exports.generatedSchema = {
30976
30994
  indexedJson: { __type: "jsonb" },
30977
30995
  isArchived: { __type: "Boolean" },
30978
30996
  json: { __type: "jsonb" },
30997
+ lastWebhookAt: { __type: "timestamptz" },
30979
30998
  listingConnectionId: { __type: "uuid" },
30980
30999
  listingId: { __type: "uuid" },
30981
31000
  modifiedAt: { __type: "timestamptz" },
@@ -31021,6 +31040,7 @@ exports.generatedSchema = {
31021
31040
  indexedJson: { __type: "jsonb" },
31022
31041
  isArchived: { __type: "Boolean" },
31023
31042
  json: { __type: "jsonb" },
31043
+ lastWebhookAt: { __type: "timestamptz" },
31024
31044
  listingConnectionId: { __type: "uuid" },
31025
31045
  listingId: { __type: "uuid" },
31026
31046
  modifiedAt: { __type: "timestamptz" },