@vrplatform/api 1.3.1-stage.4376 → 1.3.1-stage.4382

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.
@@ -2222,6 +2222,40 @@ export interface paths {
2222
2222
  patch?: never;
2223
2223
  trace?: never;
2224
2224
  };
2225
+ "/partner/members/{userId}": {
2226
+ parameters: {
2227
+ query?: never;
2228
+ header?: never;
2229
+ path?: never;
2230
+ cookie?: never;
2231
+ };
2232
+ get?: never;
2233
+ put?: never;
2234
+ post?: never;
2235
+ /** @description Remove a member from the authenticated partner tenant without deleting the underlying user */
2236
+ delete: operations["deletePartnerMember"];
2237
+ options?: never;
2238
+ head?: never;
2239
+ patch?: never;
2240
+ trace?: never;
2241
+ };
2242
+ "/partner/members/{userId}/memberships": {
2243
+ parameters: {
2244
+ query?: never;
2245
+ header?: never;
2246
+ path?: never;
2247
+ cookie?: never;
2248
+ };
2249
+ get?: never;
2250
+ /** @description Replace a partner member's child-team permissions: listed teams are upserted with the given role (admin | user), unlisted child-team memberships are removed, and partner/owner memberships are never touched */
2251
+ put: operations["updatePartnerMemberMemberships"];
2252
+ post?: never;
2253
+ delete?: never;
2254
+ options?: never;
2255
+ head?: never;
2256
+ patch?: never;
2257
+ trace?: never;
2258
+ };
2225
2259
  "/partner/users": {
2226
2260
  parameters: {
2227
2261
  query?: never;
@@ -5582,7 +5616,9 @@ export interface operations {
5582
5616
  };
5583
5617
  postAccountsByIdBankingInit: {
5584
5618
  parameters: {
5585
- query?: never;
5619
+ query?: {
5620
+ dryRun?: boolean;
5621
+ };
5586
5622
  header?: never;
5587
5623
  path: {
5588
5624
  id: string;
@@ -5727,7 +5763,7 @@ export interface operations {
5727
5763
  } | null;
5728
5764
  } | null;
5729
5765
  }[];
5730
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
5766
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
5731
5767
  attachmentIds?: string[] | null;
5732
5768
  recurringTemplateId?: string | null;
5733
5769
  matchBankAccountLast4?: string | null;
@@ -8756,7 +8792,9 @@ export interface operations {
8756
8792
  };
8757
8793
  batchBankAccounts: {
8758
8794
  parameters: {
8759
- query?: never;
8795
+ query?: {
8796
+ dryRun?: boolean;
8797
+ };
8760
8798
  header?: never;
8761
8799
  path?: never;
8762
8800
  cookie?: never;
@@ -9083,7 +9121,9 @@ export interface operations {
9083
9121
  };
9084
9122
  updateBankAccount: {
9085
9123
  parameters: {
9086
- query?: never;
9124
+ query?: {
9125
+ dryRun?: boolean;
9126
+ };
9087
9127
  header?: never;
9088
9128
  path: {
9089
9129
  id: string;
@@ -9461,7 +9501,7 @@ export interface operations {
9461
9501
  matchReservationProcessorBookingRef?: string | null;
9462
9502
  matchLineTypeClassification?: string | null;
9463
9503
  }[];
9464
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
9504
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
9465
9505
  attachmentIds?: string[] | null;
9466
9506
  payment?: {
9467
9507
  bankRecordIds: string[];
@@ -10120,7 +10160,7 @@ export interface operations {
10120
10160
  matchReservationProcessorBookingRef?: string | null;
10121
10161
  matchLineTypeClassification?: string | null;
10122
10162
  }[];
10123
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
10163
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
10124
10164
  attachmentIds?: string[] | null;
10125
10165
  payment?: {
10126
10166
  bankRecordIds: string[];
@@ -11197,7 +11237,7 @@ export interface operations {
11197
11237
  matchReservationProcessorBookingRef?: string | null;
11198
11238
  matchLineTypeClassification?: string | null;
11199
11239
  }[];
11200
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
11240
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
11201
11241
  attachmentIds?: string[] | null;
11202
11242
  payment?: {
11203
11243
  bankRecordIds: string[];
@@ -12083,7 +12123,7 @@ export interface operations {
12083
12123
  matchReservationProcessorBookingRef?: string | null;
12084
12124
  matchLineTypeClassification?: string | null;
12085
12125
  }[];
12086
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
12126
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
12087
12127
  attachmentIds?: string[] | null;
12088
12128
  payment?: {
12089
12129
  bankRecordIds: string[];
@@ -15842,7 +15882,9 @@ export interface operations {
15842
15882
  };
15843
15883
  postContactsBatch: {
15844
15884
  parameters: {
15845
- query?: never;
15885
+ query?: {
15886
+ dryRun?: boolean;
15887
+ };
15846
15888
  header?: never;
15847
15889
  path?: never;
15848
15890
  cookie?: never;
@@ -20527,7 +20569,9 @@ export interface operations {
20527
20569
  };
20528
20570
  postGeneralLedgerHistorical: {
20529
20571
  parameters: {
20530
- query?: never;
20572
+ query?: {
20573
+ dryRun?: boolean;
20574
+ };
20531
20575
  header?: never;
20532
20576
  path?: never;
20533
20577
  cookie?: never;
@@ -20826,7 +20870,9 @@ export interface operations {
20826
20870
  };
20827
20871
  putGeneralLedgerOpeningBalancesAccountsPayable: {
20828
20872
  parameters: {
20829
- query?: never;
20873
+ query?: {
20874
+ dryRun?: boolean;
20875
+ };
20830
20876
  header?: never;
20831
20877
  path?: never;
20832
20878
  cookie?: never;
@@ -21114,7 +21160,9 @@ export interface operations {
21114
21160
  };
21115
21161
  putGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue: {
21116
21162
  parameters: {
21117
- query?: never;
21163
+ query?: {
21164
+ dryRun?: boolean;
21165
+ };
21118
21166
  header?: never;
21119
21167
  path?: never;
21120
21168
  cookie?: never;
@@ -21413,7 +21461,9 @@ export interface operations {
21413
21461
  };
21414
21462
  putGeneralLedgerOpeningBalancesAdvancedDeposits: {
21415
21463
  parameters: {
21416
- query?: never;
21464
+ query?: {
21465
+ dryRun?: boolean;
21466
+ };
21417
21467
  header?: never;
21418
21468
  path?: never;
21419
21469
  cookie?: never;
@@ -21877,7 +21927,9 @@ export interface operations {
21877
21927
  };
21878
21928
  putGeneralLedgerOpeningBalancesTaxPayable: {
21879
21929
  parameters: {
21880
- query?: never;
21930
+ query?: {
21931
+ dryRun?: boolean;
21932
+ };
21881
21933
  header?: never;
21882
21934
  path?: never;
21883
21935
  cookie?: never;
@@ -22198,7 +22250,9 @@ export interface operations {
22198
22250
  };
22199
22251
  putGeneralLedgerOpeningTrialBalance: {
22200
22252
  parameters: {
22201
- query?: never;
22253
+ query?: {
22254
+ dryRun?: boolean;
22255
+ };
22202
22256
  header?: never;
22203
22257
  path?: never;
22204
22258
  cookie?: never;
@@ -29047,7 +29101,9 @@ export interface operations {
29047
29101
  };
29048
29102
  postListingsOwnershipPeriods: {
29049
29103
  parameters: {
29050
- query?: never;
29104
+ query?: {
29105
+ dryRun?: boolean;
29106
+ };
29051
29107
  header?: never;
29052
29108
  path?: never;
29053
29109
  cookie?: never;
@@ -30574,7 +30630,9 @@ export interface operations {
30574
30630
  };
30575
30631
  putListingsByIdOpeningBalance: {
30576
30632
  parameters: {
30577
- query?: never;
30633
+ query?: {
30634
+ dryRun?: boolean;
30635
+ };
30578
30636
  header?: never;
30579
30637
  path: {
30580
30638
  id: string;
@@ -34910,11 +34968,302 @@ export interface operations {
34910
34968
  };
34911
34969
  };
34912
34970
  };
34971
+ deletePartnerMember: {
34972
+ parameters: {
34973
+ query?: never;
34974
+ header?: never;
34975
+ path: {
34976
+ userId: string;
34977
+ };
34978
+ cookie?: never;
34979
+ };
34980
+ requestBody?: never;
34981
+ responses: {
34982
+ /** @description Successful response */
34983
+ 200: {
34984
+ headers: {
34985
+ [name: string]: unknown;
34986
+ };
34987
+ content: {
34988
+ "application/json": {
34989
+ /** @enum {string} */
34990
+ status: "deleted";
34991
+ /** @description Deprecated: use status */
34992
+ deleted: boolean;
34993
+ };
34994
+ };
34995
+ };
34996
+ /** @description Bad request */
34997
+ 400: {
34998
+ headers: {
34999
+ [name: string]: unknown;
35000
+ };
35001
+ content: {
35002
+ "application/json": {
35003
+ code: string;
35004
+ message: string;
35005
+ links?: {
35006
+ docs: string;
35007
+ schema: string;
35008
+ };
35009
+ issues?: {
35010
+ message: string;
35011
+ path?: (string | number)[];
35012
+ schema?: string;
35013
+ }[];
35014
+ context?: unknown;
35015
+ };
35016
+ };
35017
+ };
35018
+ /** @description Unauthorized */
35019
+ 401: {
35020
+ headers: {
35021
+ [name: string]: unknown;
35022
+ };
35023
+ content: {
35024
+ "application/json": {
35025
+ code: string;
35026
+ message: string;
35027
+ links?: {
35028
+ docs: string;
35029
+ schema: string;
35030
+ };
35031
+ issues?: {
35032
+ message: string;
35033
+ path?: (string | number)[];
35034
+ schema?: string;
35035
+ }[];
35036
+ context?: unknown;
35037
+ };
35038
+ };
35039
+ };
35040
+ /** @description Forbidden */
35041
+ 403: {
35042
+ headers: {
35043
+ [name: string]: unknown;
35044
+ };
35045
+ content: {
35046
+ "application/json": {
35047
+ code: string;
35048
+ message: string;
35049
+ links?: {
35050
+ docs: string;
35051
+ schema: string;
35052
+ };
35053
+ issues?: {
35054
+ message: string;
35055
+ path?: (string | number)[];
35056
+ schema?: string;
35057
+ }[];
35058
+ context?: unknown;
35059
+ };
35060
+ };
35061
+ };
35062
+ /** @description Not found */
35063
+ 404: {
35064
+ headers: {
35065
+ [name: string]: unknown;
35066
+ };
35067
+ content: {
35068
+ "application/json": {
35069
+ code: string;
35070
+ message: string;
35071
+ links?: {
35072
+ docs: string;
35073
+ schema: string;
35074
+ };
35075
+ issues?: {
35076
+ message: string;
35077
+ path?: (string | number)[];
35078
+ schema?: string;
35079
+ }[];
35080
+ context?: unknown;
35081
+ };
35082
+ };
35083
+ };
35084
+ /** @description Internal server error */
35085
+ 500: {
35086
+ headers: {
35087
+ [name: string]: unknown;
35088
+ };
35089
+ content: {
35090
+ "application/json": {
35091
+ code: string;
35092
+ message: string;
35093
+ links?: {
35094
+ docs: string;
35095
+ schema: string;
35096
+ };
35097
+ issues?: {
35098
+ message: string;
35099
+ path?: (string | number)[];
35100
+ schema?: string;
35101
+ }[];
35102
+ context?: unknown;
35103
+ };
35104
+ };
35105
+ };
35106
+ };
35107
+ };
35108
+ updatePartnerMemberMemberships: {
35109
+ parameters: {
35110
+ query?: never;
35111
+ header?: never;
35112
+ path: {
35113
+ userId: string;
35114
+ };
35115
+ cookie?: never;
35116
+ };
35117
+ requestBody?: {
35118
+ content: {
35119
+ "application/json": {
35120
+ /** @description Replace semantics across the partner CHILD teams: listed teams are upserted with the given role, unlisted child-team memberships are removed. The partner-tenant membership itself and owner-role memberships are never touched. */
35121
+ memberships: {
35122
+ /** Format: uuid */
35123
+ teamId: string;
35124
+ /** @enum {string} */
35125
+ role: "admin" | "user";
35126
+ }[];
35127
+ };
35128
+ };
35129
+ };
35130
+ responses: {
35131
+ /** @description Successful response */
35132
+ 200: {
35133
+ headers: {
35134
+ [name: string]: unknown;
35135
+ };
35136
+ content: {
35137
+ "application/json": {
35138
+ data: {
35139
+ /** Format: uuid */
35140
+ teamId: string;
35141
+ teamName: string;
35142
+ role?: string | null;
35143
+ status?: string | null;
35144
+ }[];
35145
+ };
35146
+ };
35147
+ };
35148
+ /** @description Bad request */
35149
+ 400: {
35150
+ headers: {
35151
+ [name: string]: unknown;
35152
+ };
35153
+ content: {
35154
+ "application/json": {
35155
+ code: string;
35156
+ message: string;
35157
+ links?: {
35158
+ docs: string;
35159
+ schema: string;
35160
+ };
35161
+ issues?: {
35162
+ message: string;
35163
+ path?: (string | number)[];
35164
+ schema?: string;
35165
+ }[];
35166
+ context?: unknown;
35167
+ };
35168
+ };
35169
+ };
35170
+ /** @description Unauthorized */
35171
+ 401: {
35172
+ headers: {
35173
+ [name: string]: unknown;
35174
+ };
35175
+ content: {
35176
+ "application/json": {
35177
+ code: string;
35178
+ message: string;
35179
+ links?: {
35180
+ docs: string;
35181
+ schema: string;
35182
+ };
35183
+ issues?: {
35184
+ message: string;
35185
+ path?: (string | number)[];
35186
+ schema?: string;
35187
+ }[];
35188
+ context?: unknown;
35189
+ };
35190
+ };
35191
+ };
35192
+ /** @description Forbidden */
35193
+ 403: {
35194
+ headers: {
35195
+ [name: string]: unknown;
35196
+ };
35197
+ content: {
35198
+ "application/json": {
35199
+ code: string;
35200
+ message: string;
35201
+ links?: {
35202
+ docs: string;
35203
+ schema: string;
35204
+ };
35205
+ issues?: {
35206
+ message: string;
35207
+ path?: (string | number)[];
35208
+ schema?: string;
35209
+ }[];
35210
+ context?: unknown;
35211
+ };
35212
+ };
35213
+ };
35214
+ /** @description Not found */
35215
+ 404: {
35216
+ headers: {
35217
+ [name: string]: unknown;
35218
+ };
35219
+ content: {
35220
+ "application/json": {
35221
+ code: string;
35222
+ message: string;
35223
+ links?: {
35224
+ docs: string;
35225
+ schema: string;
35226
+ };
35227
+ issues?: {
35228
+ message: string;
35229
+ path?: (string | number)[];
35230
+ schema?: string;
35231
+ }[];
35232
+ context?: unknown;
35233
+ };
35234
+ };
35235
+ };
35236
+ /** @description Internal server error */
35237
+ 500: {
35238
+ headers: {
35239
+ [name: string]: unknown;
35240
+ };
35241
+ content: {
35242
+ "application/json": {
35243
+ code: string;
35244
+ message: string;
35245
+ links?: {
35246
+ docs: string;
35247
+ schema: string;
35248
+ };
35249
+ issues?: {
35250
+ message: string;
35251
+ path?: (string | number)[];
35252
+ schema?: string;
35253
+ }[];
35254
+ context?: unknown;
35255
+ };
35256
+ };
35257
+ };
35258
+ };
35259
+ };
34913
35260
  getPartnerUsers: {
34914
35261
  parameters: {
34915
35262
  query?: {
34916
35263
  /** @description Filter by user name or email */
34917
35264
  search?: string;
35265
+ /** @description Filter by the exact user type */
35266
+ type?: "owner" | "user";
34918
35267
  /** @description Comma separated team ids; only return users with a membership on one of these teams */
34919
35268
  teamIds?: string;
34920
35269
  /** @description users: non-owner users with a portfolio membership; owners: owner users linked via membership or owner access; missing: users without any portfolio membership (delete candidates). Omitted returns every linked user. */
@@ -52670,7 +53019,9 @@ export interface operations {
52670
53019
  };
52671
53020
  putReservationsByIdStatus: {
52672
53021
  parameters: {
52673
- query?: never;
53022
+ query?: {
53023
+ dryRun?: boolean;
53024
+ };
52674
53025
  header?: never;
52675
53026
  path: {
52676
53027
  id: string;
@@ -52814,7 +53165,9 @@ export interface operations {
52814
53165
  };
52815
53166
  postReservationsByReservationIdAdjustments: {
52816
53167
  parameters: {
52817
- query?: never;
53168
+ query?: {
53169
+ dryRun?: boolean;
53170
+ };
52818
53171
  header?: never;
52819
53172
  path: {
52820
53173
  reservationId: string;
@@ -53326,7 +53679,9 @@ export interface operations {
53326
53679
  };
53327
53680
  putReservationsByReservationIdAdjustmentsById: {
53328
53681
  parameters: {
53329
- query?: never;
53682
+ query?: {
53683
+ dryRun?: boolean;
53684
+ };
53330
53685
  header?: never;
53331
53686
  path: {
53332
53687
  reservationId: string;
@@ -53838,7 +54193,9 @@ export interface operations {
53838
54193
  };
53839
54194
  deleteReservationsByReservationIdAdjustmentsById: {
53840
54195
  parameters: {
53841
- query?: never;
54196
+ query?: {
54197
+ dryRun?: boolean;
54198
+ };
53842
54199
  header?: never;
53843
54200
  path: {
53844
54201
  reservationId: string;
@@ -58158,7 +58515,9 @@ export interface operations {
58158
58515
  };
58159
58516
  postStatementsHistorical: {
58160
58517
  parameters: {
58161
- query?: never;
58518
+ query?: {
58519
+ dryRun?: boolean;
58520
+ };
58162
58521
  header?: never;
58163
58522
  path?: never;
58164
58523
  cookie?: never;
@@ -59997,7 +60356,9 @@ export interface operations {
59997
60356
  };
59998
60357
  putStatementsLinesByLineIdDescription: {
59999
60358
  parameters: {
60000
- query?: never;
60359
+ query?: {
60360
+ dryRun?: boolean;
60361
+ };
60001
60362
  header?: never;
60002
60363
  path: {
60003
60364
  lineId: string;
@@ -60140,7 +60501,9 @@ export interface operations {
60140
60501
  };
60141
60502
  postStatementsManagerPay: {
60142
60503
  parameters: {
60143
- query?: never;
60504
+ query?: {
60505
+ dryRun?: boolean;
60506
+ };
60144
60507
  header?: never;
60145
60508
  path?: never;
60146
60509
  cookie?: never;
@@ -60284,7 +60647,7 @@ export interface operations {
60284
60647
  } | null;
60285
60648
  } | null;
60286
60649
  }[];
60287
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
60650
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
60288
60651
  attachmentIds?: string[] | null;
60289
60652
  recurringTemplateId?: string | null;
60290
60653
  matchBankAccountLast4?: string | null;
@@ -63831,7 +64194,9 @@ export interface operations {
63831
64194
  };
63832
64195
  postStatementsByIdPay: {
63833
64196
  parameters: {
63834
- query?: never;
64197
+ query?: {
64198
+ dryRun?: boolean;
64199
+ };
63835
64200
  header?: never;
63836
64201
  path: {
63837
64202
  id: string;
@@ -67776,7 +68141,9 @@ export interface operations {
67776
68141
  };
67777
68142
  postTeamInit: {
67778
68143
  parameters: {
67779
- query?: never;
68144
+ query?: {
68145
+ dryRun?: boolean;
68146
+ };
67780
68147
  header?: never;
67781
68148
  path?: never;
67782
68149
  cookie?: never;
@@ -70838,7 +71205,7 @@ export interface operations {
70838
71205
  } | null;
70839
71206
  } | null;
70840
71207
  }[];
70841
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
71208
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
70842
71209
  attachmentIds?: string[] | null;
70843
71210
  recurringTemplateId?: string | null;
70844
71211
  matchBankAccountLast4?: string | null;
@@ -71142,7 +71509,7 @@ export interface operations {
71142
71509
  matchReservationProcessorBookingRef?: string | null;
71143
71510
  matchLineTypeClassification?: string | null;
71144
71511
  }[];
71145
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
71512
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
71146
71513
  attachmentIds?: string[] | null;
71147
71514
  payment?: {
71148
71515
  bankRecordIds?: string[];
@@ -71304,7 +71671,7 @@ export interface operations {
71304
71671
  } | null;
71305
71672
  } | null;
71306
71673
  }[];
71307
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
71674
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
71308
71675
  attachmentIds?: string[] | null;
71309
71676
  recurringTemplateId?: string | null;
71310
71677
  matchBankAccountLast4?: string | null;
@@ -72175,7 +72542,7 @@ export interface operations {
72175
72542
  matchReservationProcessorBookingRef?: string | null;
72176
72543
  matchLineTypeClassification?: string | null;
72177
72544
  }[];
72178
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
72545
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
72179
72546
  attachmentIds?: string[] | null;
72180
72547
  payment?: {
72181
72548
  bankRecordIds?: string[];
@@ -73420,7 +73787,9 @@ export interface operations {
73420
73787
  };
73421
73788
  postTransactionsRecurringTemplates: {
73422
73789
  parameters: {
73423
- query?: never;
73790
+ query?: {
73791
+ dryRun?: boolean;
73792
+ };
73424
73793
  header?: never;
73425
73794
  path?: never;
73426
73795
  cookie?: never;
@@ -74209,7 +74578,9 @@ export interface operations {
74209
74578
  };
74210
74579
  putTransactionsRecurringTemplatesById: {
74211
74580
  parameters: {
74212
- query?: never;
74581
+ query?: {
74582
+ dryRun?: boolean;
74583
+ };
74213
74584
  header?: never;
74214
74585
  path: {
74215
74586
  id: string;
@@ -74551,6 +74922,7 @@ export interface operations {
74551
74922
  parameters: {
74552
74923
  query?: {
74553
74924
  onLocked?: "error" | "archive" | "detach";
74925
+ dryRun?: boolean;
74554
74926
  };
74555
74927
  header?: never;
74556
74928
  path: {
@@ -74690,7 +75062,9 @@ export interface operations {
74690
75062
  };
74691
75063
  postTransactionsRecurringTemplatesByIdRun: {
74692
75064
  parameters: {
74693
- query?: never;
75065
+ query?: {
75066
+ dryRun?: boolean;
75067
+ };
74694
75068
  header?: never;
74695
75069
  path: {
74696
75070
  id: string;
@@ -74831,7 +75205,7 @@ export interface operations {
74831
75205
  } | null;
74832
75206
  } | null;
74833
75207
  }[];
74834
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75208
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
74835
75209
  attachmentIds?: string[] | null;
74836
75210
  recurringTemplateId?: string | null;
74837
75211
  matchBankAccountLast4?: string | null;
@@ -75213,7 +75587,7 @@ export interface operations {
75213
75587
  } | null;
75214
75588
  } | null;
75215
75589
  }[];
75216
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75590
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75217
75591
  attachmentIds?: string[] | null;
75218
75592
  recurringTemplateId?: string | null;
75219
75593
  matchBankAccountLast4?: string | null;
@@ -75482,7 +75856,7 @@ export interface operations {
75482
75856
  type?: "deposit" | "expense" | "transfer" | "payout";
75483
75857
  date?: string;
75484
75858
  currency?: string | null;
75485
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75859
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75486
75860
  attachmentIds?: string[] | null;
75487
75861
  payment?: {
75488
75862
  bankRecordIds?: string[];
@@ -75733,7 +76107,7 @@ export interface operations {
75733
76107
  } | null;
75734
76108
  } | null;
75735
76109
  }[];
75736
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
76110
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
75737
76111
  attachmentIds?: string[] | null;
75738
76112
  recurringTemplateId?: string | null;
75739
76113
  matchBankAccountLast4?: string | null;
@@ -76122,7 +76496,9 @@ export interface operations {
76122
76496
  };
76123
76497
  putTransactionsByTransactionIdLinesById: {
76124
76498
  parameters: {
76125
- query?: never;
76499
+ query?: {
76500
+ dryRun?: boolean;
76501
+ };
76126
76502
  header?: never;
76127
76503
  path: {
76128
76504
  transactionId: string;
@@ -76287,7 +76663,7 @@ export interface operations {
76287
76663
  } | null;
76288
76664
  } | null;
76289
76665
  }[];
76290
- /** @description Expense attachment IDs returned by POST /transaction-attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
76666
+ /** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
76291
76667
  attachmentIds?: string[] | null;
76292
76668
  recurringTemplateId?: string | null;
76293
76669
  matchBankAccountLast4?: string | null;