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