@vrplatform/api 1.3.1-stage.1818 → 1.3.1-stage.1822

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.
@@ -2190,6 +2190,57 @@ export interface paths {
2190
2190
  patch: operations["patchTeams:idInit"];
2191
2191
  trace?: never;
2192
2192
  };
2193
+ "/transaction-attachments": {
2194
+ parameters: {
2195
+ query?: never;
2196
+ header?: never;
2197
+ path?: never;
2198
+ cookie?: never;
2199
+ };
2200
+ get?: never;
2201
+ put?: never;
2202
+ /** @description Upload an expense attachment (staged) */
2203
+ post: operations["postTransaction-attachments"];
2204
+ delete?: never;
2205
+ options?: never;
2206
+ head?: never;
2207
+ patch?: never;
2208
+ trace?: never;
2209
+ };
2210
+ "/transaction-attachments/{attachmentId}": {
2211
+ parameters: {
2212
+ query?: never;
2213
+ header?: never;
2214
+ path?: never;
2215
+ cookie?: never;
2216
+ };
2217
+ get?: never;
2218
+ put?: never;
2219
+ post?: never;
2220
+ /** @description Delete an expense attachment */
2221
+ delete: operations["deleteTransaction-attachments:attachmentId"];
2222
+ options?: never;
2223
+ head?: never;
2224
+ /** @description Update an expense attachment */
2225
+ patch: operations["patchTransaction-attachments:attachmentId"];
2226
+ trace?: never;
2227
+ };
2228
+ "/transaction-attachments/{attachmentId}/download": {
2229
+ parameters: {
2230
+ query?: never;
2231
+ header?: never;
2232
+ path?: never;
2233
+ cookie?: never;
2234
+ };
2235
+ get: operations["getTransaction-attachments:attachmentIdDownload"];
2236
+ put?: never;
2237
+ post?: never;
2238
+ delete?: never;
2239
+ options?: never;
2240
+ head?: never;
2241
+ patch?: never;
2242
+ trace?: never;
2243
+ };
2193
2244
  "/transactions": {
2194
2245
  parameters: {
2195
2246
  query?: never;
@@ -3649,6 +3700,7 @@ export interface operations {
3649
3700
  } | null;
3650
3701
  } | null;
3651
3702
  }[];
3703
+ attachmentIds?: string[] | null;
3652
3704
  recurringTemplateId?: string | null;
3653
3705
  matchers?: {
3654
3706
  bankAccountRef?: string | null;
@@ -3699,6 +3751,17 @@ export interface operations {
3699
3751
  recurringTemplate?: {
3700
3752
  id: string;
3701
3753
  } | null;
3754
+ attachments: {
3755
+ /** Format: uuid */
3756
+ id: string;
3757
+ transactionId: string | null;
3758
+ createdAt: string;
3759
+ filename: string;
3760
+ extension?: string | null;
3761
+ contentType: string;
3762
+ byteSize: number;
3763
+ isOwnerAccessible: boolean;
3764
+ }[];
3702
3765
  account?: {
3703
3766
  id: string;
3704
3767
  name: string;
@@ -8171,7 +8234,7 @@ export interface operations {
8171
8234
  endDate?: string;
8172
8235
  actionType?: string;
8173
8236
  entityId?: string;
8174
- entityType?: "account" | "journalEntry" | "listingOwnershipPeriod" | "ownerStatement" | "recurringTransactionTemplate" | "reservation" | "tenant" | "transaction";
8237
+ entityType?: "account" | "journalEntry" | "listingOwnershipPeriod" | "ownerStatement" | "recurringTransactionTemplate" | "reservation" | "tenant" | "transaction" | "transactionAttachment";
8175
8238
  includeIfNoEffects?: boolean;
8176
8239
  page?: number;
8177
8240
  };
@@ -8310,9 +8373,9 @@ export interface operations {
8310
8373
  offset?: number;
8311
8374
  dispatchId?: string;
8312
8375
  entityId?: string;
8313
- entityType?: "account" | "journalEntry" | "listingOwnershipPeriod" | "ownerStatement" | "recurringTransactionTemplate" | "reservation" | "tenant" | "transaction";
8376
+ entityType?: "account" | "journalEntry" | "listingOwnershipPeriod" | "ownerStatement" | "recurringTransactionTemplate" | "reservation" | "tenant" | "transaction" | "transactionAttachment";
8314
8377
  status?: "pending" | "claimed" | "running" | "completed" | "failed" | "dead_letter";
8315
- effectType?: "CREATE_RECURRING_TRANSACTION_INSTANCE" | "JOURNAL_ENTRY_SET_ACTIVE" | "JOURNAL_ENTRY_SET_INACTIVE" | "LINK_JOURNAL_TO_OWNERSHIP_PERIOD" | "RECALCULATE_BANK_RECORD_BALANCES" | "REFRESH_RESERVATION_JOURNAL" | "MAP_DEPOSIT_TRANSACTIONS_BY_LAST4" | "REFRESH_TRANSACTION_JOURNAL" | "SEND_STATEMENT_NOTIFICATIONS" | "UPDATE_RESERVATION_LINKABLES" | "UPDATE_RESERVATION_PAYMENTS" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_HYPERLINE_SYNC" | "TENANT_INIT" | "TENANT_LINEAR_WEBHOOK" | "TENANT_STATUS_TRACK" | "TENANT_SUSPENSION_EMAIL";
8378
+ effectType?: "CREATE_RECURRING_TRANSACTION_INSTANCE" | "JOURNAL_ENTRY_SET_ACTIVE" | "JOURNAL_ENTRY_SET_INACTIVE" | "LINK_JOURNAL_TO_OWNERSHIP_PERIOD" | "RECALCULATE_BANK_RECORD_BALANCES" | "REFRESH_RESERVATION_JOURNAL" | "DELETE_TRANSACTION_ATTACHMENT_BLOB" | "MAP_DEPOSIT_TRANSACTIONS_BY_LAST4" | "REFRESH_TRANSACTION_JOURNAL" | "SEND_STATEMENT_NOTIFICATIONS" | "UPDATE_RESERVATION_LINKABLES" | "UPDATE_RESERVATION_PAYMENTS" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_HYPERLINE_SYNC" | "TENANT_INIT" | "TENANT_LINEAR_WEBHOOK" | "TENANT_STATUS_TRACK" | "TENANT_SUSPENSION_EMAIL";
8316
8379
  page?: number;
8317
8380
  };
8318
8381
  header?: never;
@@ -8338,7 +8401,7 @@ export interface operations {
8338
8401
  apiEndpoint: string | null;
8339
8402
  };
8340
8403
  /** @enum {string} */
8341
- effectType: "CREATE_RECURRING_TRANSACTION_INSTANCE" | "JOURNAL_ENTRY_SET_ACTIVE" | "JOURNAL_ENTRY_SET_INACTIVE" | "LINK_JOURNAL_TO_OWNERSHIP_PERIOD" | "RECALCULATE_BANK_RECORD_BALANCES" | "REFRESH_RESERVATION_JOURNAL" | "MAP_DEPOSIT_TRANSACTIONS_BY_LAST4" | "REFRESH_TRANSACTION_JOURNAL" | "SEND_STATEMENT_NOTIFICATIONS" | "UPDATE_RESERVATION_LINKABLES" | "UPDATE_RESERVATION_PAYMENTS" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_HYPERLINE_SYNC" | "TENANT_INIT" | "TENANT_LINEAR_WEBHOOK" | "TENANT_STATUS_TRACK" | "TENANT_SUSPENSION_EMAIL";
8404
+ effectType: "CREATE_RECURRING_TRANSACTION_INSTANCE" | "JOURNAL_ENTRY_SET_ACTIVE" | "JOURNAL_ENTRY_SET_INACTIVE" | "LINK_JOURNAL_TO_OWNERSHIP_PERIOD" | "RECALCULATE_BANK_RECORD_BALANCES" | "REFRESH_RESERVATION_JOURNAL" | "DELETE_TRANSACTION_ATTACHMENT_BLOB" | "MAP_DEPOSIT_TRANSACTIONS_BY_LAST4" | "REFRESH_TRANSACTION_JOURNAL" | "SEND_STATEMENT_NOTIFICATIONS" | "UPDATE_RESERVATION_LINKABLES" | "UPDATE_RESERVATION_PAYMENTS" | "TENANT_CLERK_ALLOWED_IDS_SYNC" | "TENANT_HYPERLINE_SYNC" | "TENANT_INIT" | "TENANT_LINEAR_WEBHOOK" | "TENANT_STATUS_TRACK" | "TENANT_SUSPENSION_EMAIL";
8342
8405
  payload: unknown;
8343
8406
  entity: ({
8344
8407
  /** @constant */
@@ -24673,6 +24736,17 @@ export interface operations {
24673
24736
  id: string | null;
24674
24737
  };
24675
24738
  })[];
24739
+ attachments: {
24740
+ /** Format: uuid */
24741
+ id: string;
24742
+ transactionId: string | null;
24743
+ createdAt: string;
24744
+ filename: string;
24745
+ extension?: string | null;
24746
+ contentType: string;
24747
+ byteSize: number;
24748
+ isOwnerAccessible: boolean;
24749
+ }[];
24676
24750
  }[];
24677
24751
  };
24678
24752
  };
@@ -25221,6 +25295,17 @@ export interface operations {
25221
25295
  id: string | null;
25222
25296
  };
25223
25297
  })[];
25298
+ attachments: {
25299
+ /** Format: uuid */
25300
+ id: string;
25301
+ transactionId: string | null;
25302
+ createdAt: string;
25303
+ filename: string;
25304
+ extension?: string | null;
25305
+ contentType: string;
25306
+ byteSize: number;
25307
+ isOwnerAccessible: boolean;
25308
+ }[];
25224
25309
  }[];
25225
25310
  };
25226
25311
  };
@@ -26681,6 +26766,7 @@ export interface operations {
26681
26766
  } | null;
26682
26767
  } | null;
26683
26768
  }[];
26769
+ attachmentIds?: string[] | null;
26684
26770
  recurringTemplateId?: string | null;
26685
26771
  matchers?: {
26686
26772
  bankAccountRef?: string | null;
@@ -26731,6 +26817,17 @@ export interface operations {
26731
26817
  recurringTemplate?: {
26732
26818
  id: string;
26733
26819
  } | null;
26820
+ attachments: {
26821
+ /** Format: uuid */
26822
+ id: string;
26823
+ transactionId: string | null;
26824
+ createdAt: string;
26825
+ filename: string;
26826
+ extension?: string | null;
26827
+ contentType: string;
26828
+ byteSize: number;
26829
+ isOwnerAccessible: boolean;
26830
+ }[];
26734
26831
  account?: {
26735
26832
  id: string;
26736
26833
  name: string;
@@ -27688,6 +27785,17 @@ export interface operations {
27688
27785
  id: string | null;
27689
27786
  };
27690
27787
  })[];
27788
+ attachments: {
27789
+ /** Format: uuid */
27790
+ id: string;
27791
+ transactionId: string | null;
27792
+ createdAt: string;
27793
+ filename: string;
27794
+ extension?: string | null;
27795
+ contentType: string;
27796
+ byteSize: number;
27797
+ isOwnerAccessible: boolean;
27798
+ }[];
27691
27799
  };
27692
27800
  };
27693
27801
  };
@@ -28241,6 +28349,17 @@ export interface operations {
28241
28349
  id: string | null;
28242
28350
  };
28243
28351
  })[];
28352
+ attachments: {
28353
+ /** Format: uuid */
28354
+ id: string;
28355
+ transactionId: string | null;
28356
+ createdAt: string;
28357
+ filename: string;
28358
+ extension?: string | null;
28359
+ contentType: string;
28360
+ byteSize: number;
28361
+ isOwnerAccessible: boolean;
28362
+ }[];
28244
28363
  syncId?: string | null;
28245
28364
  };
28246
28365
  };
@@ -31751,6 +31870,362 @@ export interface operations {
31751
31870
  };
31752
31871
  };
31753
31872
  };
31873
+ "postTransaction-attachments": {
31874
+ parameters: {
31875
+ query?: never;
31876
+ header?: never;
31877
+ path?: never;
31878
+ cookie?: never;
31879
+ };
31880
+ requestBody?: never;
31881
+ responses: {
31882
+ /** @description Successful response */
31883
+ 200: {
31884
+ headers: {
31885
+ [name: string]: unknown;
31886
+ };
31887
+ content: {
31888
+ "application/json": {
31889
+ /** Format: uuid */
31890
+ id: string;
31891
+ transactionId: string | null;
31892
+ createdAt: string;
31893
+ filename: string;
31894
+ extension?: string | null;
31895
+ contentType: string;
31896
+ byteSize: number;
31897
+ isOwnerAccessible: boolean;
31898
+ };
31899
+ };
31900
+ };
31901
+ /** @description Bad request */
31902
+ 400: {
31903
+ headers: {
31904
+ [name: string]: unknown;
31905
+ };
31906
+ content: {
31907
+ "application/json": {
31908
+ code: string;
31909
+ message: string;
31910
+ issues?: {
31911
+ message: string;
31912
+ }[];
31913
+ context?: unknown;
31914
+ };
31915
+ };
31916
+ };
31917
+ /** @description Unauthorized */
31918
+ 401: {
31919
+ headers: {
31920
+ [name: string]: unknown;
31921
+ };
31922
+ content: {
31923
+ "application/json": {
31924
+ code: string;
31925
+ message: string;
31926
+ issues?: {
31927
+ message: string;
31928
+ }[];
31929
+ context?: unknown;
31930
+ };
31931
+ };
31932
+ };
31933
+ /** @description Forbidden */
31934
+ 403: {
31935
+ headers: {
31936
+ [name: string]: unknown;
31937
+ };
31938
+ content: {
31939
+ "application/json": {
31940
+ code: string;
31941
+ message: string;
31942
+ issues?: {
31943
+ message: string;
31944
+ }[];
31945
+ context?: unknown;
31946
+ };
31947
+ };
31948
+ };
31949
+ /** @description Not found */
31950
+ 404: {
31951
+ headers: {
31952
+ [name: string]: unknown;
31953
+ };
31954
+ content: {
31955
+ "application/json": {
31956
+ code: string;
31957
+ message: string;
31958
+ issues?: {
31959
+ message: string;
31960
+ }[];
31961
+ context?: unknown;
31962
+ };
31963
+ };
31964
+ };
31965
+ /** @description Internal server error */
31966
+ 500: {
31967
+ headers: {
31968
+ [name: string]: unknown;
31969
+ };
31970
+ content: {
31971
+ "application/json": {
31972
+ code: string;
31973
+ message: string;
31974
+ issues?: {
31975
+ message: string;
31976
+ }[];
31977
+ context?: unknown;
31978
+ };
31979
+ };
31980
+ };
31981
+ };
31982
+ };
31983
+ "deleteTransaction-attachments:attachmentId": {
31984
+ parameters: {
31985
+ query?: never;
31986
+ header?: never;
31987
+ path: {
31988
+ attachmentId: string;
31989
+ };
31990
+ cookie?: never;
31991
+ };
31992
+ requestBody?: {
31993
+ content: {
31994
+ "application/json": Record<string, never>;
31995
+ };
31996
+ };
31997
+ responses: {
31998
+ /** @description Successful response */
31999
+ 200: {
32000
+ headers: {
32001
+ [name: string]: unknown;
32002
+ };
32003
+ content: {
32004
+ "application/json": {
32005
+ /** Format: uuid */
32006
+ id: string;
32007
+ };
32008
+ };
32009
+ };
32010
+ /** @description Bad request */
32011
+ 400: {
32012
+ headers: {
32013
+ [name: string]: unknown;
32014
+ };
32015
+ content: {
32016
+ "application/json": {
32017
+ code: string;
32018
+ message: string;
32019
+ issues?: {
32020
+ message: string;
32021
+ }[];
32022
+ context?: unknown;
32023
+ };
32024
+ };
32025
+ };
32026
+ /** @description Unauthorized */
32027
+ 401: {
32028
+ headers: {
32029
+ [name: string]: unknown;
32030
+ };
32031
+ content: {
32032
+ "application/json": {
32033
+ code: string;
32034
+ message: string;
32035
+ issues?: {
32036
+ message: string;
32037
+ }[];
32038
+ context?: unknown;
32039
+ };
32040
+ };
32041
+ };
32042
+ /** @description Forbidden */
32043
+ 403: {
32044
+ headers: {
32045
+ [name: string]: unknown;
32046
+ };
32047
+ content: {
32048
+ "application/json": {
32049
+ code: string;
32050
+ message: string;
32051
+ issues?: {
32052
+ message: string;
32053
+ }[];
32054
+ context?: unknown;
32055
+ };
32056
+ };
32057
+ };
32058
+ /** @description Not found */
32059
+ 404: {
32060
+ headers: {
32061
+ [name: string]: unknown;
32062
+ };
32063
+ content: {
32064
+ "application/json": {
32065
+ code: string;
32066
+ message: string;
32067
+ issues?: {
32068
+ message: string;
32069
+ }[];
32070
+ context?: unknown;
32071
+ };
32072
+ };
32073
+ };
32074
+ /** @description Internal server error */
32075
+ 500: {
32076
+ headers: {
32077
+ [name: string]: unknown;
32078
+ };
32079
+ content: {
32080
+ "application/json": {
32081
+ code: string;
32082
+ message: string;
32083
+ issues?: {
32084
+ message: string;
32085
+ }[];
32086
+ context?: unknown;
32087
+ };
32088
+ };
32089
+ };
32090
+ };
32091
+ };
32092
+ "patchTransaction-attachments:attachmentId": {
32093
+ parameters: {
32094
+ query?: never;
32095
+ header?: never;
32096
+ path: {
32097
+ attachmentId: string;
32098
+ };
32099
+ cookie?: never;
32100
+ };
32101
+ requestBody?: {
32102
+ content: {
32103
+ "application/json": {
32104
+ isOwnerAccessible: boolean;
32105
+ };
32106
+ };
32107
+ };
32108
+ responses: {
32109
+ /** @description Successful response */
32110
+ 200: {
32111
+ headers: {
32112
+ [name: string]: unknown;
32113
+ };
32114
+ content: {
32115
+ "application/json": {
32116
+ /** Format: uuid */
32117
+ id: string;
32118
+ transactionId: string | null;
32119
+ createdAt: string;
32120
+ filename: string;
32121
+ extension?: string | null;
32122
+ contentType: string;
32123
+ byteSize: number;
32124
+ isOwnerAccessible: boolean;
32125
+ };
32126
+ };
32127
+ };
32128
+ /** @description Bad request */
32129
+ 400: {
32130
+ headers: {
32131
+ [name: string]: unknown;
32132
+ };
32133
+ content: {
32134
+ "application/json": {
32135
+ code: string;
32136
+ message: string;
32137
+ issues?: {
32138
+ message: string;
32139
+ }[];
32140
+ context?: unknown;
32141
+ };
32142
+ };
32143
+ };
32144
+ /** @description Unauthorized */
32145
+ 401: {
32146
+ headers: {
32147
+ [name: string]: unknown;
32148
+ };
32149
+ content: {
32150
+ "application/json": {
32151
+ code: string;
32152
+ message: string;
32153
+ issues?: {
32154
+ message: string;
32155
+ }[];
32156
+ context?: unknown;
32157
+ };
32158
+ };
32159
+ };
32160
+ /** @description Forbidden */
32161
+ 403: {
32162
+ headers: {
32163
+ [name: string]: unknown;
32164
+ };
32165
+ content: {
32166
+ "application/json": {
32167
+ code: string;
32168
+ message: string;
32169
+ issues?: {
32170
+ message: string;
32171
+ }[];
32172
+ context?: unknown;
32173
+ };
32174
+ };
32175
+ };
32176
+ /** @description Not found */
32177
+ 404: {
32178
+ headers: {
32179
+ [name: string]: unknown;
32180
+ };
32181
+ content: {
32182
+ "application/json": {
32183
+ code: string;
32184
+ message: string;
32185
+ issues?: {
32186
+ message: string;
32187
+ }[];
32188
+ context?: unknown;
32189
+ };
32190
+ };
32191
+ };
32192
+ /** @description Internal server error */
32193
+ 500: {
32194
+ headers: {
32195
+ [name: string]: unknown;
32196
+ };
32197
+ content: {
32198
+ "application/json": {
32199
+ code: string;
32200
+ message: string;
32201
+ issues?: {
32202
+ message: string;
32203
+ }[];
32204
+ context?: unknown;
32205
+ };
32206
+ };
32207
+ };
32208
+ };
32209
+ };
32210
+ "getTransaction-attachments:attachmentIdDownload": {
32211
+ parameters: {
32212
+ query?: never;
32213
+ header?: never;
32214
+ path: {
32215
+ attachmentId: string;
32216
+ };
32217
+ cookie?: never;
32218
+ };
32219
+ requestBody?: never;
32220
+ responses: {
32221
+ 200: {
32222
+ headers: {
32223
+ [name: string]: unknown;
32224
+ };
32225
+ content?: never;
32226
+ };
32227
+ };
32228
+ };
31754
32229
  getTransactions: {
31755
32230
  parameters: {
31756
32231
  query?: {
@@ -31911,6 +32386,7 @@ export interface operations {
31911
32386
  } | null;
31912
32387
  } | null;
31913
32388
  }[];
32389
+ attachmentIds?: string[] | null;
31914
32390
  recurringTemplateId?: string | null;
31915
32391
  matchers?: {
31916
32392
  bankAccountRef?: string | null;
@@ -31961,6 +32437,17 @@ export interface operations {
31961
32437
  recurringTemplate?: {
31962
32438
  id: string;
31963
32439
  } | null;
32440
+ attachments: {
32441
+ /** Format: uuid */
32442
+ id: string;
32443
+ transactionId: string | null;
32444
+ createdAt: string;
32445
+ filename: string;
32446
+ extension?: string | null;
32447
+ contentType: string;
32448
+ byteSize: number;
32449
+ isOwnerAccessible: boolean;
32450
+ }[];
31964
32451
  account?: {
31965
32452
  id: string;
31966
32453
  name: string;
@@ -32161,6 +32648,7 @@ export interface operations {
32161
32648
  lineType?: string | null;
32162
32649
  } | null;
32163
32650
  }[];
32651
+ attachmentIds?: string[] | null;
32164
32652
  payment?: {
32165
32653
  bankRecordIds?: string[];
32166
32654
  /** @enum {string} */
@@ -32320,6 +32808,7 @@ export interface operations {
32320
32808
  } | null;
32321
32809
  } | null;
32322
32810
  }[];
32811
+ attachmentIds?: string[] | null;
32323
32812
  recurringTemplateId?: string | null;
32324
32813
  matchers?: {
32325
32814
  bankAccountRef?: string | null;
@@ -32370,6 +32859,17 @@ export interface operations {
32370
32859
  recurringTemplate?: {
32371
32860
  id: string;
32372
32861
  } | null;
32862
+ attachments: {
32863
+ /** Format: uuid */
32864
+ id: string;
32865
+ transactionId: string | null;
32866
+ createdAt: string;
32867
+ filename: string;
32868
+ extension?: string | null;
32869
+ contentType: string;
32870
+ byteSize: number;
32871
+ isOwnerAccessible: boolean;
32872
+ }[];
32373
32873
  account?: {
32374
32874
  id: string;
32375
32875
  name: string;
@@ -32563,6 +33063,7 @@ export interface operations {
32563
33063
  lineType?: string | null;
32564
33064
  } | null;
32565
33065
  }[];
33066
+ attachmentIds?: string[] | null;
32566
33067
  payment?: {
32567
33068
  bankRecordIds?: string[];
32568
33069
  /** @enum {string} */
@@ -35078,6 +35579,7 @@ export interface operations {
35078
35579
  } | null;
35079
35580
  } | null;
35080
35581
  }[];
35582
+ attachmentIds?: string[] | null;
35081
35583
  recurringTemplateId?: string | null;
35082
35584
  matchers?: {
35083
35585
  bankAccountRef?: string | null;
@@ -35128,6 +35630,17 @@ export interface operations {
35128
35630
  recurringTemplate?: {
35129
35631
  id: string;
35130
35632
  } | null;
35633
+ attachments: {
35634
+ /** Format: uuid */
35635
+ id: string;
35636
+ transactionId: string | null;
35637
+ createdAt: string;
35638
+ filename: string;
35639
+ extension?: string | null;
35640
+ contentType: string;
35641
+ byteSize: number;
35642
+ isOwnerAccessible: boolean;
35643
+ }[];
35131
35644
  account?: {
35132
35645
  id: string;
35133
35646
  name: string;
@@ -35533,6 +36046,7 @@ export interface operations {
35533
36046
  } | null;
35534
36047
  } | null;
35535
36048
  }[];
36049
+ attachmentIds?: string[] | null;
35536
36050
  recurringTemplateId?: string | null;
35537
36051
  matchers?: {
35538
36052
  bankAccountRef?: string | null;
@@ -35583,6 +36097,17 @@ export interface operations {
35583
36097
  recurringTemplate?: {
35584
36098
  id: string;
35585
36099
  } | null;
36100
+ attachments: {
36101
+ /** Format: uuid */
36102
+ id: string;
36103
+ transactionId: string | null;
36104
+ createdAt: string;
36105
+ filename: string;
36106
+ extension?: string | null;
36107
+ contentType: string;
36108
+ byteSize: number;
36109
+ isOwnerAccessible: boolean;
36110
+ }[];
35586
36111
  account?: {
35587
36112
  id: string;
35588
36113
  name: string;
@@ -35747,6 +36272,7 @@ export interface operations {
35747
36272
  type?: "deposit" | "expense" | "transfer";
35748
36273
  date?: string;
35749
36274
  currency?: string | null;
36275
+ attachmentIds?: string[] | null;
35750
36276
  payment?: {
35751
36277
  bankRecordIds?: string[];
35752
36278
  /** @enum {string} */
@@ -35998,6 +36524,7 @@ export interface operations {
35998
36524
  } | null;
35999
36525
  } | null;
36000
36526
  }[];
36527
+ attachmentIds?: string[] | null;
36001
36528
  recurringTemplateId?: string | null;
36002
36529
  matchers?: {
36003
36530
  bankAccountRef?: string | null;
@@ -36048,6 +36575,17 @@ export interface operations {
36048
36575
  recurringTemplate?: {
36049
36576
  id: string;
36050
36577
  } | null;
36578
+ attachments: {
36579
+ /** Format: uuid */
36580
+ id: string;
36581
+ transactionId: string | null;
36582
+ createdAt: string;
36583
+ filename: string;
36584
+ extension?: string | null;
36585
+ contentType: string;
36586
+ byteSize: number;
36587
+ isOwnerAccessible: boolean;
36588
+ }[];
36051
36589
  account?: {
36052
36590
  id: string;
36053
36591
  name: string;
@@ -36467,6 +37005,7 @@ export interface operations {
36467
37005
  } | null;
36468
37006
  } | null;
36469
37007
  }[];
37008
+ attachmentIds?: string[] | null;
36470
37009
  recurringTemplateId?: string | null;
36471
37010
  matchers?: {
36472
37011
  bankAccountRef?: string | null;
@@ -36517,6 +37056,17 @@ export interface operations {
36517
37056
  recurringTemplate?: {
36518
37057
  id: string;
36519
37058
  } | null;
37059
+ attachments: {
37060
+ /** Format: uuid */
37061
+ id: string;
37062
+ transactionId: string | null;
37063
+ createdAt: string;
37064
+ filename: string;
37065
+ extension?: string | null;
37066
+ contentType: string;
37067
+ byteSize: number;
37068
+ isOwnerAccessible: boolean;
37069
+ }[];
36520
37070
  account?: {
36521
37071
  id: string;
36522
37072
  name: string;