@vrplatform/api 1.3.1-2457 → 1.3.1-2486

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.
@@ -807,8 +807,7 @@ export interface paths {
807
807
  };
808
808
  /** @description Get flow configuration for a connection */
809
809
  get: operations["getFlowConnection"];
810
- /** @description Update flow status for a connection */
811
- put: operations["setFlowStatus"];
810
+ put?: never;
812
811
  post?: never;
813
812
  delete?: never;
814
813
  options?: never;
@@ -3014,6 +3013,23 @@ export interface paths {
3014
3013
  patch?: never;
3015
3014
  trace?: never;
3016
3015
  };
3016
+ "/teams/{id}/frontend-context": {
3017
+ parameters: {
3018
+ query?: never;
3019
+ header?: never;
3020
+ path?: never;
3021
+ cookie?: never;
3022
+ };
3023
+ /** @description Get frontend setup context for a team */
3024
+ get: operations["getTeamsByIdFrontendContext"];
3025
+ put?: never;
3026
+ post?: never;
3027
+ delete?: never;
3028
+ options?: never;
3029
+ head?: never;
3030
+ patch?: never;
3031
+ trace?: never;
3032
+ };
3017
3033
  "/teams/{id}/generate-demo-data": {
3018
3034
  parameters: {
3019
3035
  query?: never;
@@ -3065,6 +3081,24 @@ export interface paths {
3065
3081
  patch?: never;
3066
3082
  trace?: never;
3067
3083
  };
3084
+ "/teams/{id}/settings": {
3085
+ parameters: {
3086
+ query?: never;
3087
+ header?: never;
3088
+ path?: never;
3089
+ cookie?: never;
3090
+ };
3091
+ /** @description Get team settings by team ID */
3092
+ get: operations["getTeamsByIdSettings"];
3093
+ /** @description Update team settings by team ID */
3094
+ put: operations["putTeamsByIdSettings"];
3095
+ post?: never;
3096
+ delete?: never;
3097
+ options?: never;
3098
+ head?: never;
3099
+ patch?: never;
3100
+ trace?: never;
3101
+ };
3068
3102
  "/transaction-attachments": {
3069
3103
  parameters: {
3070
3104
  query?: never;
@@ -3074,7 +3108,7 @@ export interface paths {
3074
3108
  };
3075
3109
  get?: never;
3076
3110
  put?: never;
3077
- /** @description Upload an expense attachment (staged) */
3111
+ /** @description Upload an expense attachment as multipart/form-data. The returned staged attachment id can be passed in attachmentIds when creating or updating an expense transaction. */
3078
3112
  post: operations["postTransactionAttachments"];
3079
3113
  delete?: never;
3080
3114
  options?: never;
@@ -3092,11 +3126,11 @@ export interface paths {
3092
3126
  get?: never;
3093
3127
  put?: never;
3094
3128
  post?: never;
3095
- /** @description Delete an expense attachment */
3129
+ /** @description Delete an expense attachment. This removes staged attachments and attachments already linked to expense transactions. */
3096
3130
  delete: operations["deleteTransactionAttachmentsByAttachmentId"];
3097
3131
  options?: never;
3098
3132
  head?: never;
3099
- /** @description Update an expense attachment */
3133
+ /** @description Update attachment visibility. isOwnerAccessible controls whether owners can see the file on owner statement details. */
3100
3134
  patch: operations["patchTransactionAttachmentsByAttachmentId"];
3101
3135
  trace?: never;
3102
3136
  };
@@ -3127,7 +3161,7 @@ export interface paths {
3127
3161
  /** @description Transactions List */
3128
3162
  get: operations["getTransactions"];
3129
3163
  put?: never;
3130
- /** @description Create an transaction */
3164
+ /** @description Create a transaction. For expense attachments, first upload each file with POST /transaction-attachments, then pass the returned ids in attachmentIds. Attachments are only supported for expense transactions. */
3131
3165
  post: operations["postTransactions"];
3132
3166
  delete?: never;
3133
3167
  options?: never;
@@ -3385,7 +3419,7 @@ export interface paths {
3385
3419
  };
3386
3420
  /** @description Transactions List */
3387
3421
  get: operations["getTransactionsById"];
3388
- /** @description Update an transaction by ID */
3422
+ /** @description Update a transaction by ID. For expense attachments, pass attachmentIds to replace the attached set. Omit attachmentIds to keep current attachments. Attachments are only supported for expense transactions. */
3389
3423
  put: operations["putTransactionsById"];
3390
3424
  post?: never;
3391
3425
  /** @description Delete an transaction by ID */
@@ -4667,6 +4701,9 @@ export interface operations {
4667
4701
  firstName?: string | null;
4668
4702
  uniqueRef?: string | null;
4669
4703
  shortRef?: string | null;
4704
+ email?: string | null;
4705
+ /** @enum {string} */
4706
+ type: "owner" | "vendor";
4670
4707
  } | null;
4671
4708
  matchStatus?: string | null;
4672
4709
  appliedAmount?: {
@@ -4716,6 +4753,7 @@ export interface operations {
4716
4753
  } | null;
4717
4754
  } | null;
4718
4755
  }[];
4756
+ /** @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. */
4719
4757
  attachmentIds?: string[] | null;
4720
4758
  recurringTemplateId?: string | null;
4721
4759
  matchBankAccountLast4?: string | null;
@@ -4826,6 +4864,9 @@ export interface operations {
4826
4864
  firstName?: string | null;
4827
4865
  uniqueRef?: string | null;
4828
4866
  shortRef?: string | null;
4867
+ email?: string | null;
4868
+ /** @enum {string} */
4869
+ type: "owner" | "vendor";
4829
4870
  } | null;
4830
4871
  source?: {
4831
4872
  /** Format: uuid */
@@ -6280,6 +6321,9 @@ export interface operations {
6280
6321
  firstName?: string | null;
6281
6322
  uniqueRef?: string | null;
6282
6323
  shortRef?: string | null;
6324
+ email?: string | null;
6325
+ /** @enum {string} */
6326
+ type: "owner" | "vendor";
6283
6327
  } | null;
6284
6328
  connection?: {
6285
6329
  /** Format: uuid */
@@ -6326,6 +6370,9 @@ export interface operations {
6326
6370
  firstName?: string | null;
6327
6371
  uniqueRef?: string | null;
6328
6372
  shortRef?: string | null;
6373
+ email?: string | null;
6374
+ /** @enum {string} */
6375
+ type: "owner" | "vendor";
6329
6376
  } | null;
6330
6377
  connection?: {
6331
6378
  /** Format: uuid */
@@ -7584,6 +7631,9 @@ export interface operations {
7584
7631
  firstName?: string | null;
7585
7632
  uniqueRef?: string | null;
7586
7633
  shortRef?: string | null;
7634
+ email?: string | null;
7635
+ /** @enum {string} */
7636
+ type: "owner" | "vendor";
7587
7637
  } | null;
7588
7638
  connection?: {
7589
7639
  /** Format: uuid */
@@ -7663,6 +7713,7 @@ export interface operations {
7663
7713
  matchReservationStripeGuestRef?: string | null;
7664
7714
  matchLineTypeClassification?: string | null;
7665
7715
  }[];
7716
+ /** @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. */
7666
7717
  attachmentIds?: string[] | null;
7667
7718
  payment?: {
7668
7719
  bankRecordIds: string[];
@@ -8130,6 +8181,9 @@ export interface operations {
8130
8181
  firstName?: string | null;
8131
8182
  uniqueRef?: string | null;
8132
8183
  shortRef?: string | null;
8184
+ email?: string | null;
8185
+ /** @enum {string} */
8186
+ type: "owner" | "vendor";
8133
8187
  } | null;
8134
8188
  connection?: {
8135
8189
  /** Format: uuid */
@@ -8209,6 +8263,7 @@ export interface operations {
8209
8263
  matchReservationStripeGuestRef?: string | null;
8210
8264
  matchLineTypeClassification?: string | null;
8211
8265
  }[];
8266
+ /** @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. */
8212
8267
  attachmentIds?: string[] | null;
8213
8268
  payment?: {
8214
8269
  bankRecordIds: string[];
@@ -8487,6 +8542,9 @@ export interface operations {
8487
8542
  firstName?: string | null;
8488
8543
  uniqueRef?: string | null;
8489
8544
  shortRef?: string | null;
8545
+ email?: string | null;
8546
+ /** @enum {string} */
8547
+ type: "owner" | "vendor";
8490
8548
  } | null;
8491
8549
  accounts: {
8492
8550
  id: string;
@@ -8540,6 +8598,9 @@ export interface operations {
8540
8598
  firstName?: string | null;
8541
8599
  uniqueRef?: string | null;
8542
8600
  shortRef?: string | null;
8601
+ email?: string | null;
8602
+ /** @enum {string} */
8603
+ type: "owner" | "vendor";
8543
8604
  } | null;
8544
8605
  taxRate?: {
8545
8606
  id: string;
@@ -8747,6 +8808,9 @@ export interface operations {
8747
8808
  firstName?: string | null;
8748
8809
  uniqueRef?: string | null;
8749
8810
  shortRef?: string | null;
8811
+ email?: string | null;
8812
+ /** @enum {string} */
8813
+ type: "owner" | "vendor";
8750
8814
  } | null;
8751
8815
  accounts: {
8752
8816
  id: string;
@@ -8800,6 +8864,9 @@ export interface operations {
8800
8864
  firstName?: string | null;
8801
8865
  uniqueRef?: string | null;
8802
8866
  shortRef?: string | null;
8867
+ email?: string | null;
8868
+ /** @enum {string} */
8869
+ type: "owner" | "vendor";
8803
8870
  } | null;
8804
8871
  taxRate?: {
8805
8872
  id: string;
@@ -9010,6 +9077,7 @@ export interface operations {
9010
9077
  matchReservationStripeGuestRef?: string | null;
9011
9078
  matchLineTypeClassification?: string | null;
9012
9079
  }[];
9080
+ /** @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. */
9013
9081
  attachmentIds?: string[] | null;
9014
9082
  payment?: {
9015
9083
  bankRecordIds: string[];
@@ -9163,6 +9231,9 @@ export interface operations {
9163
9231
  firstName?: string | null;
9164
9232
  uniqueRef?: string | null;
9165
9233
  shortRef?: string | null;
9234
+ email?: string | null;
9235
+ /** @enum {string} */
9236
+ type: "owner" | "vendor";
9166
9237
  } | null;
9167
9238
  accounts: {
9168
9239
  id: string;
@@ -9216,6 +9287,9 @@ export interface operations {
9216
9287
  firstName?: string | null;
9217
9288
  uniqueRef?: string | null;
9218
9289
  shortRef?: string | null;
9290
+ email?: string | null;
9291
+ /** @enum {string} */
9292
+ type: "owner" | "vendor";
9219
9293
  } | null;
9220
9294
  taxRate?: {
9221
9295
  id: string;
@@ -9417,6 +9491,9 @@ export interface operations {
9417
9491
  firstName?: string | null;
9418
9492
  uniqueRef?: string | null;
9419
9493
  shortRef?: string | null;
9494
+ email?: string | null;
9495
+ /** @enum {string} */
9496
+ type: "owner" | "vendor";
9420
9497
  } | null;
9421
9498
  accounts: {
9422
9499
  id: string;
@@ -9470,6 +9547,9 @@ export interface operations {
9470
9547
  firstName?: string | null;
9471
9548
  uniqueRef?: string | null;
9472
9549
  shortRef?: string | null;
9550
+ email?: string | null;
9551
+ /** @enum {string} */
9552
+ type: "owner" | "vendor";
9473
9553
  } | null;
9474
9554
  taxRate?: {
9475
9555
  id: string;
@@ -9756,6 +9836,7 @@ export interface operations {
9756
9836
  matchReservationStripeGuestRef?: string | null;
9757
9837
  matchLineTypeClassification?: string | null;
9758
9838
  }[];
9839
+ /** @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. */
9759
9840
  attachmentIds?: string[] | null;
9760
9841
  payment?: {
9761
9842
  bankRecordIds: string[];
@@ -10334,7 +10415,10 @@ export interface operations {
10334
10415
  parameters: {
10335
10416
  query?: {
10336
10417
  tenantId?: string;
10418
+ /** @description Comma-separated connection IDs. */
10419
+ ids?: string;
10337
10420
  appId?: string;
10421
+ appCategory?: "paymentGateway" | "accountingPlatform" | "propertyManagementSystem" | "bookingChannel" | "service";
10338
10422
  status?: "active" | "inactive";
10339
10423
  isErrorState?: boolean;
10340
10424
  currentSyncStatus?: "queued" | "started" | "completed" | "failed" | "canceled";
@@ -11278,6 +11362,8 @@ export interface operations {
11278
11362
  isIndividual?: boolean;
11279
11363
  /** @description comma separated contact short refs */
11280
11364
  shortRefs?: string;
11365
+ /** @description Comma-separated contact IDs. */
11366
+ ids?: string;
11281
11367
  limit?: number;
11282
11368
  page?: number;
11283
11369
  };
@@ -11776,6 +11862,8 @@ export interface operations {
11776
11862
  isIndividual?: boolean;
11777
11863
  /** @description comma separated contact short refs */
11778
11864
  shortRefs?: string;
11865
+ /** @description Comma-separated contact IDs. */
11866
+ ids?: string;
11779
11867
  };
11780
11868
  header?: never;
11781
11869
  path?: never;
@@ -13031,150 +13119,6 @@ export interface operations {
13031
13119
  connectionId: string;
13032
13120
  title: string;
13033
13121
  description: string | null;
13034
- /** @enum {string} */
13035
- status: "active" | "inactive";
13036
- settings: {
13037
- /** Format: uuid */
13038
- id: string;
13039
- /** Format: uuid */
13040
- flowId: string;
13041
- /** Format: uuid */
13042
- connectionId: string;
13043
- settingKey: string;
13044
- title: string | null;
13045
- description: string | null;
13046
- type?: ("listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date") | null;
13047
- filter: string | null;
13048
- /** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
13049
- value: {
13050
- id: string | number;
13051
- name: string;
13052
- /**
13053
- * @description Semantic type for mapping/setting entries (entities and primitive kinds).
13054
- * @enum {string}
13055
- */
13056
- type: "listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date";
13057
- };
13058
- }[];
13059
- };
13060
- };
13061
- };
13062
- /** @description Bad request */
13063
- 400: {
13064
- headers: {
13065
- [name: string]: unknown;
13066
- };
13067
- content: {
13068
- "application/json": {
13069
- code: string;
13070
- message: string;
13071
- issues?: {
13072
- message: string;
13073
- }[];
13074
- context?: unknown;
13075
- };
13076
- };
13077
- };
13078
- /** @description Unauthorized */
13079
- 401: {
13080
- headers: {
13081
- [name: string]: unknown;
13082
- };
13083
- content: {
13084
- "application/json": {
13085
- code: string;
13086
- message: string;
13087
- issues?: {
13088
- message: string;
13089
- }[];
13090
- context?: unknown;
13091
- };
13092
- };
13093
- };
13094
- /** @description Forbidden */
13095
- 403: {
13096
- headers: {
13097
- [name: string]: unknown;
13098
- };
13099
- content: {
13100
- "application/json": {
13101
- code: string;
13102
- message: string;
13103
- issues?: {
13104
- message: string;
13105
- }[];
13106
- context?: unknown;
13107
- };
13108
- };
13109
- };
13110
- /** @description Not found */
13111
- 404: {
13112
- headers: {
13113
- [name: string]: unknown;
13114
- };
13115
- content: {
13116
- "application/json": {
13117
- code: string;
13118
- message: string;
13119
- issues?: {
13120
- message: string;
13121
- }[];
13122
- context?: unknown;
13123
- };
13124
- };
13125
- };
13126
- /** @description Internal server error */
13127
- 500: {
13128
- headers: {
13129
- [name: string]: unknown;
13130
- };
13131
- content: {
13132
- "application/json": {
13133
- code: string;
13134
- message: string;
13135
- issues?: {
13136
- message: string;
13137
- }[];
13138
- context?: unknown;
13139
- };
13140
- };
13141
- };
13142
- };
13143
- };
13144
- setFlowStatus: {
13145
- parameters: {
13146
- query?: never;
13147
- header?: never;
13148
- path: {
13149
- id: string;
13150
- connectionId: string;
13151
- };
13152
- cookie?: never;
13153
- };
13154
- requestBody?: {
13155
- content: {
13156
- "application/json": {
13157
- /** @enum {string} */
13158
- status: "active" | "inactive";
13159
- };
13160
- };
13161
- };
13162
- responses: {
13163
- /** @description Successful response */
13164
- 200: {
13165
- headers: {
13166
- [name: string]: unknown;
13167
- };
13168
- content: {
13169
- "application/json": {
13170
- /** Format: uuid */
13171
- id: string;
13172
- /** Format: uuid */
13173
- connectionId: string;
13174
- title: string;
13175
- description: string | null;
13176
- /** @enum {string} */
13177
- status: "active" | "inactive";
13178
13122
  settings: {
13179
13123
  /** Format: uuid */
13180
13124
  id: string;
@@ -15788,6 +15732,8 @@ export interface operations {
15788
15732
  ids?: string;
15789
15733
  search?: string;
15790
15734
  contactId?: string;
15735
+ /** @description Filter listings by ownership period ID. */
15736
+ ownershipPeriodId?: string;
15791
15737
  /** @description Comma-separated listing short refs. */
15792
15738
  shortRefs?: string;
15793
15739
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -15843,8 +15789,18 @@ export interface operations {
15843
15789
  /** @description Value in cents (100 = 1€) */
15844
15790
  reserve: number;
15845
15791
  members: {
15846
- contactId?: string | null;
15847
15792
  split?: number | null;
15793
+ contact?: {
15794
+ /** Format: uuid */
15795
+ id: string;
15796
+ name?: string | null;
15797
+ firstName?: string | null;
15798
+ uniqueRef?: string | null;
15799
+ shortRef?: string | null;
15800
+ email?: string | null;
15801
+ /** @enum {string} */
15802
+ type: "owner" | "vendor";
15803
+ } | null;
15848
15804
  }[];
15849
15805
  setListingInactive?: boolean | null;
15850
15806
  /** @enum {string} */
@@ -16111,8 +16067,18 @@ export interface operations {
16111
16067
  /** @description Value in cents (100 = 1€) */
16112
16068
  reserve: number;
16113
16069
  members: {
16114
- contactId?: string | null;
16115
16070
  split?: number | null;
16071
+ contact?: {
16072
+ /** Format: uuid */
16073
+ id: string;
16074
+ name?: string | null;
16075
+ firstName?: string | null;
16076
+ uniqueRef?: string | null;
16077
+ shortRef?: string | null;
16078
+ email?: string | null;
16079
+ /** @enum {string} */
16080
+ type: "owner" | "vendor";
16081
+ } | null;
16116
16082
  }[];
16117
16083
  setListingInactive?: boolean | null;
16118
16084
  /** @enum {string} */
@@ -16424,6 +16390,8 @@ export interface operations {
16424
16390
  ids?: string;
16425
16391
  search?: string;
16426
16392
  contactId?: string;
16393
+ /** @description Filter listings by ownership period ID. */
16394
+ ownershipPeriodId?: string;
16427
16395
  /** @description Comma-separated listing short refs. */
16428
16396
  shortRefs?: string;
16429
16397
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -16543,6 +16511,8 @@ export interface operations {
16543
16511
  ids?: string;
16544
16512
  search?: string;
16545
16513
  contactId?: string;
16514
+ /** @description Filter listings by ownership period ID. */
16515
+ ownershipPeriodId?: string;
16546
16516
  /** @description Comma-separated listing short refs. */
16547
16517
  shortRefs?: string;
16548
16518
  /** @description Filter listings by whether they currently have an active ownership period. */
@@ -16717,8 +16687,18 @@ export interface operations {
16717
16687
  /** @description Value in cents (100 = 1€) */
16718
16688
  reserve: number;
16719
16689
  members: {
16720
- contactId?: string | null;
16721
16690
  split?: number | null;
16691
+ contact?: {
16692
+ /** Format: uuid */
16693
+ id: string;
16694
+ name?: string | null;
16695
+ firstName?: string | null;
16696
+ uniqueRef?: string | null;
16697
+ shortRef?: string | null;
16698
+ email?: string | null;
16699
+ /** @enum {string} */
16700
+ type: "owner" | "vendor";
16701
+ } | null;
16722
16702
  }[];
16723
16703
  /** Format: uuid */
16724
16704
  id: string;
@@ -16859,8 +16839,18 @@ export interface operations {
16859
16839
  /** @description Value in cents (100 = 1€) */
16860
16840
  reserve: number;
16861
16841
  members: {
16862
- contactId?: string | null;
16863
16842
  split?: number | null;
16843
+ contact?: {
16844
+ /** Format: uuid */
16845
+ id: string;
16846
+ name?: string | null;
16847
+ firstName?: string | null;
16848
+ uniqueRef?: string | null;
16849
+ shortRef?: string | null;
16850
+ email?: string | null;
16851
+ /** @enum {string} */
16852
+ type: "owner" | "vendor";
16853
+ } | null;
16864
16854
  }[];
16865
16855
  /** Format: uuid */
16866
16856
  id: string;
@@ -16976,8 +16966,18 @@ export interface operations {
16976
16966
  /** @description Value in cents (100 = 1€) */
16977
16967
  reserve: number;
16978
16968
  members: {
16979
- contactId?: string | null;
16980
16969
  split?: number | null;
16970
+ contact?: {
16971
+ /** Format: uuid */
16972
+ id: string;
16973
+ name?: string | null;
16974
+ firstName?: string | null;
16975
+ uniqueRef?: string | null;
16976
+ shortRef?: string | null;
16977
+ email?: string | null;
16978
+ /** @enum {string} */
16979
+ type: "owner" | "vendor";
16980
+ } | null;
16981
16981
  }[];
16982
16982
  /** Format: uuid */
16983
16983
  id: string;
@@ -17110,8 +17110,18 @@ export interface operations {
17110
17110
  /** @description Value in cents (100 = 1€) */
17111
17111
  reserve: number;
17112
17112
  members: {
17113
- contactId?: string | null;
17114
17113
  split?: number | null;
17114
+ contact?: {
17115
+ /** Format: uuid */
17116
+ id: string;
17117
+ name?: string | null;
17118
+ firstName?: string | null;
17119
+ uniqueRef?: string | null;
17120
+ shortRef?: string | null;
17121
+ email?: string | null;
17122
+ /** @enum {string} */
17123
+ type: "owner" | "vendor";
17124
+ } | null;
17115
17125
  }[];
17116
17126
  /** Format: uuid */
17117
17127
  id: string;
@@ -17358,8 +17368,18 @@ export interface operations {
17358
17368
  /** @description Value in cents (100 = 1€) */
17359
17369
  reserve: number;
17360
17370
  members: {
17361
- contactId?: string | null;
17362
17371
  split?: number | null;
17372
+ contact?: {
17373
+ /** Format: uuid */
17374
+ id: string;
17375
+ name?: string | null;
17376
+ firstName?: string | null;
17377
+ uniqueRef?: string | null;
17378
+ shortRef?: string | null;
17379
+ email?: string | null;
17380
+ /** @enum {string} */
17381
+ type: "owner" | "vendor";
17382
+ } | null;
17363
17383
  }[];
17364
17384
  setListingInactive?: boolean | null;
17365
17385
  /** @enum {string} */
@@ -17618,8 +17638,18 @@ export interface operations {
17618
17638
  /** @description Value in cents (100 = 1€) */
17619
17639
  reserve: number;
17620
17640
  members: {
17621
- contactId?: string | null;
17622
17641
  split?: number | null;
17642
+ contact?: {
17643
+ /** Format: uuid */
17644
+ id: string;
17645
+ name?: string | null;
17646
+ firstName?: string | null;
17647
+ uniqueRef?: string | null;
17648
+ shortRef?: string | null;
17649
+ email?: string | null;
17650
+ /** @enum {string} */
17651
+ type: "owner" | "vendor";
17652
+ } | null;
17623
17653
  }[];
17624
17654
  setListingInactive?: boolean | null;
17625
17655
  /** @enum {string} */
@@ -22556,6 +22586,9 @@ export interface operations {
22556
22586
  firstName?: string | null;
22557
22587
  uniqueRef?: string | null;
22558
22588
  shortRef?: string | null;
22589
+ email?: string | null;
22590
+ /** @enum {string} */
22591
+ type: "owner" | "vendor";
22559
22592
  } | null;
22560
22593
  connection?: {
22561
22594
  /** Format: uuid */
@@ -23571,6 +23604,7 @@ export interface operations {
23571
23604
  date: string;
23572
23605
  occupancyStatus: "departed" | "inHouse" | "upcoming" | "cancelled" | "unassigned" | "all";
23573
23606
  channels?: string;
23607
+ search?: string;
23574
23608
  };
23575
23609
  header?: never;
23576
23610
  path?: never;
@@ -23819,6 +23853,7 @@ export interface operations {
23819
23853
  date: string;
23820
23854
  occupancyStatus: "departed" | "inHouse" | "upcoming" | "cancelled" | "unassigned" | "all";
23821
23855
  channels?: string;
23856
+ search?: string;
23822
23857
  };
23823
23858
  header?: never;
23824
23859
  path?: never;
@@ -27885,6 +27920,9 @@ export interface operations {
27885
27920
  firstName?: string | null;
27886
27921
  uniqueRef?: string | null;
27887
27922
  shortRef?: string | null;
27923
+ email?: string | null;
27924
+ /** @enum {string} */
27925
+ type: "owner" | "vendor";
27888
27926
  } | null;
27889
27927
  connection?: {
27890
27928
  /** Format: uuid */
@@ -29281,6 +29319,9 @@ export interface operations {
29281
29319
  firstName?: string | null;
29282
29320
  uniqueRef?: string | null;
29283
29321
  shortRef?: string | null;
29322
+ email?: string | null;
29323
+ /** @enum {string} */
29324
+ type: "owner" | "vendor";
29284
29325
  } | null;
29285
29326
  connection?: {
29286
29327
  /** Format: uuid */
@@ -29855,6 +29896,9 @@ export interface operations {
29855
29896
  firstName?: string | null;
29856
29897
  uniqueRef?: string | null;
29857
29898
  shortRef?: string | null;
29899
+ email?: string | null;
29900
+ /** @enum {string} */
29901
+ type: "owner" | "vendor";
29858
29902
  } | null;
29859
29903
  connection?: {
29860
29904
  /** Format: uuid */
@@ -30545,6 +30589,9 @@ export interface operations {
30545
30589
  firstName?: string | null;
30546
30590
  uniqueRef?: string | null;
30547
30591
  shortRef?: string | null;
30592
+ email?: string | null;
30593
+ /** @enum {string} */
30594
+ type: "owner" | "vendor";
30548
30595
  } | null;
30549
30596
  connection?: {
30550
30597
  /** Format: uuid */
@@ -31009,6 +31056,9 @@ export interface operations {
31009
31056
  firstName?: string | null;
31010
31057
  uniqueRef?: string | null;
31011
31058
  shortRef?: string | null;
31059
+ email?: string | null;
31060
+ /** @enum {string} */
31061
+ type: "owner" | "vendor";
31012
31062
  } | null;
31013
31063
  connection?: {
31014
31064
  /** Format: uuid */
@@ -31459,6 +31509,9 @@ export interface operations {
31459
31509
  firstName?: string | null;
31460
31510
  uniqueRef?: string | null;
31461
31511
  shortRef?: string | null;
31512
+ email?: string | null;
31513
+ /** @enum {string} */
31514
+ type: "owner" | "vendor";
31462
31515
  } | null;
31463
31516
  connection?: {
31464
31517
  /** Format: uuid */
@@ -34953,6 +35006,9 @@ export interface operations {
34953
35006
  firstName?: string | null;
34954
35007
  uniqueRef?: string | null;
34955
35008
  shortRef?: string | null;
35009
+ email?: string | null;
35010
+ /** @enum {string} */
35011
+ type: "owner" | "vendor";
34956
35012
  } | null;
34957
35013
  matchStatus?: string | null;
34958
35014
  appliedAmount?: {
@@ -35002,6 +35058,7 @@ export interface operations {
35002
35058
  } | null;
35003
35059
  } | null;
35004
35060
  }[];
35061
+ /** @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. */
35005
35062
  attachmentIds?: string[] | null;
35006
35063
  recurringTemplateId?: string | null;
35007
35064
  matchBankAccountLast4?: string | null;
@@ -35112,6 +35169,9 @@ export interface operations {
35112
35169
  firstName?: string | null;
35113
35170
  uniqueRef?: string | null;
35114
35171
  shortRef?: string | null;
35172
+ email?: string | null;
35173
+ /** @enum {string} */
35174
+ type: "owner" | "vendor";
35115
35175
  } | null;
35116
35176
  source?: {
35117
35177
  /** Format: uuid */
@@ -39133,6 +39193,7 @@ export interface operations {
39133
39193
  targetPartnerId?: string | null;
39134
39194
  targetName?: string | null;
39135
39195
  glStartAt: string;
39196
+ moveConnectionCredentials?: boolean;
39136
39197
  };
39137
39198
  };
39138
39199
  };
@@ -41877,6 +41938,120 @@ export interface operations {
41877
41938
  };
41878
41939
  };
41879
41940
  };
41941
+ getTeamsByIdFrontendContext: {
41942
+ parameters: {
41943
+ query?: never;
41944
+ header?: never;
41945
+ path: {
41946
+ id: string;
41947
+ };
41948
+ cookie?: never;
41949
+ };
41950
+ requestBody?: never;
41951
+ responses: {
41952
+ /** @description Successful response */
41953
+ 200: {
41954
+ headers: {
41955
+ [name: string]: unknown;
41956
+ };
41957
+ content: {
41958
+ "application/json": {
41959
+ hasReservations: boolean;
41960
+ reservationId: string | null;
41961
+ hasPms: boolean;
41962
+ activePmsConnectionId: string | null;
41963
+ hasDeposit: boolean;
41964
+ depositTransactionId: string | null;
41965
+ hasListingNeedsReview: boolean;
41966
+ listingNeedsReviewId: string | null;
41967
+ hasOwners: boolean;
41968
+ hasOwnerNeedsReview: boolean;
41969
+ ownerNeedsReviewId: string | null;
41970
+ };
41971
+ };
41972
+ };
41973
+ /** @description Bad request */
41974
+ 400: {
41975
+ headers: {
41976
+ [name: string]: unknown;
41977
+ };
41978
+ content: {
41979
+ "application/json": {
41980
+ code: string;
41981
+ message: string;
41982
+ issues?: {
41983
+ message: string;
41984
+ }[];
41985
+ context?: unknown;
41986
+ };
41987
+ };
41988
+ };
41989
+ /** @description Unauthorized */
41990
+ 401: {
41991
+ headers: {
41992
+ [name: string]: unknown;
41993
+ };
41994
+ content: {
41995
+ "application/json": {
41996
+ code: string;
41997
+ message: string;
41998
+ issues?: {
41999
+ message: string;
42000
+ }[];
42001
+ context?: unknown;
42002
+ };
42003
+ };
42004
+ };
42005
+ /** @description Forbidden */
42006
+ 403: {
42007
+ headers: {
42008
+ [name: string]: unknown;
42009
+ };
42010
+ content: {
42011
+ "application/json": {
42012
+ code: string;
42013
+ message: string;
42014
+ issues?: {
42015
+ message: string;
42016
+ }[];
42017
+ context?: unknown;
42018
+ };
42019
+ };
42020
+ };
42021
+ /** @description Not found */
42022
+ 404: {
42023
+ headers: {
42024
+ [name: string]: unknown;
42025
+ };
42026
+ content: {
42027
+ "application/json": {
42028
+ code: string;
42029
+ message: string;
42030
+ issues?: {
42031
+ message: string;
42032
+ }[];
42033
+ context?: unknown;
42034
+ };
42035
+ };
42036
+ };
42037
+ /** @description Internal server error */
42038
+ 500: {
42039
+ headers: {
42040
+ [name: string]: unknown;
42041
+ };
42042
+ content: {
42043
+ "application/json": {
42044
+ code: string;
42045
+ message: string;
42046
+ issues?: {
42047
+ message: string;
42048
+ }[];
42049
+ context?: unknown;
42050
+ };
42051
+ };
42052
+ };
42053
+ };
42054
+ };
41880
42055
  postTeamsByIdGenerateDemoData: {
41881
42056
  parameters: {
41882
42057
  query?: never;
@@ -42582,6 +42757,235 @@ export interface operations {
42582
42757
  };
42583
42758
  };
42584
42759
  };
42760
+ getTeamsByIdSettings: {
42761
+ parameters: {
42762
+ query?: never;
42763
+ header?: never;
42764
+ path: {
42765
+ id: string;
42766
+ };
42767
+ cookie?: never;
42768
+ };
42769
+ requestBody?: never;
42770
+ responses: {
42771
+ /** @description Successful response */
42772
+ 200: {
42773
+ headers: {
42774
+ [name: string]: unknown;
42775
+ };
42776
+ content: {
42777
+ "application/json": {
42778
+ showReservations: boolean;
42779
+ showCancelledReservations: boolean;
42780
+ showReservationTotal: boolean;
42781
+ showOwnerCalendarBlocking: boolean;
42782
+ showTaxStatements: boolean;
42783
+ showTwoFactorAuth: boolean;
42784
+ };
42785
+ };
42786
+ };
42787
+ /** @description Bad request */
42788
+ 400: {
42789
+ headers: {
42790
+ [name: string]: unknown;
42791
+ };
42792
+ content: {
42793
+ "application/json": {
42794
+ code: string;
42795
+ message: string;
42796
+ issues?: {
42797
+ message: string;
42798
+ }[];
42799
+ context?: unknown;
42800
+ };
42801
+ };
42802
+ };
42803
+ /** @description Unauthorized */
42804
+ 401: {
42805
+ headers: {
42806
+ [name: string]: unknown;
42807
+ };
42808
+ content: {
42809
+ "application/json": {
42810
+ code: string;
42811
+ message: string;
42812
+ issues?: {
42813
+ message: string;
42814
+ }[];
42815
+ context?: unknown;
42816
+ };
42817
+ };
42818
+ };
42819
+ /** @description Forbidden */
42820
+ 403: {
42821
+ headers: {
42822
+ [name: string]: unknown;
42823
+ };
42824
+ content: {
42825
+ "application/json": {
42826
+ code: string;
42827
+ message: string;
42828
+ issues?: {
42829
+ message: string;
42830
+ }[];
42831
+ context?: unknown;
42832
+ };
42833
+ };
42834
+ };
42835
+ /** @description Not found */
42836
+ 404: {
42837
+ headers: {
42838
+ [name: string]: unknown;
42839
+ };
42840
+ content: {
42841
+ "application/json": {
42842
+ code: string;
42843
+ message: string;
42844
+ issues?: {
42845
+ message: string;
42846
+ }[];
42847
+ context?: unknown;
42848
+ };
42849
+ };
42850
+ };
42851
+ /** @description Internal server error */
42852
+ 500: {
42853
+ headers: {
42854
+ [name: string]: unknown;
42855
+ };
42856
+ content: {
42857
+ "application/json": {
42858
+ code: string;
42859
+ message: string;
42860
+ issues?: {
42861
+ message: string;
42862
+ }[];
42863
+ context?: unknown;
42864
+ };
42865
+ };
42866
+ };
42867
+ };
42868
+ };
42869
+ putTeamsByIdSettings: {
42870
+ parameters: {
42871
+ query?: never;
42872
+ header?: never;
42873
+ path: {
42874
+ id: string;
42875
+ };
42876
+ cookie?: never;
42877
+ };
42878
+ requestBody?: {
42879
+ content: {
42880
+ "application/json": {
42881
+ showReservations?: boolean;
42882
+ showCancelledReservations?: boolean;
42883
+ showReservationTotal?: boolean;
42884
+ showOwnerCalendarBlocking?: boolean;
42885
+ showTaxStatements?: boolean;
42886
+ showTwoFactorAuth?: boolean;
42887
+ };
42888
+ };
42889
+ };
42890
+ responses: {
42891
+ /** @description Successful response */
42892
+ 200: {
42893
+ headers: {
42894
+ [name: string]: unknown;
42895
+ };
42896
+ content: {
42897
+ "application/json": {
42898
+ showReservations: boolean;
42899
+ showCancelledReservations: boolean;
42900
+ showReservationTotal: boolean;
42901
+ showOwnerCalendarBlocking: boolean;
42902
+ showTaxStatements: boolean;
42903
+ showTwoFactorAuth: boolean;
42904
+ };
42905
+ };
42906
+ };
42907
+ /** @description Bad request */
42908
+ 400: {
42909
+ headers: {
42910
+ [name: string]: unknown;
42911
+ };
42912
+ content: {
42913
+ "application/json": {
42914
+ code: string;
42915
+ message: string;
42916
+ issues?: {
42917
+ message: string;
42918
+ }[];
42919
+ context?: unknown;
42920
+ };
42921
+ };
42922
+ };
42923
+ /** @description Unauthorized */
42924
+ 401: {
42925
+ headers: {
42926
+ [name: string]: unknown;
42927
+ };
42928
+ content: {
42929
+ "application/json": {
42930
+ code: string;
42931
+ message: string;
42932
+ issues?: {
42933
+ message: string;
42934
+ }[];
42935
+ context?: unknown;
42936
+ };
42937
+ };
42938
+ };
42939
+ /** @description Forbidden */
42940
+ 403: {
42941
+ headers: {
42942
+ [name: string]: unknown;
42943
+ };
42944
+ content: {
42945
+ "application/json": {
42946
+ code: string;
42947
+ message: string;
42948
+ issues?: {
42949
+ message: string;
42950
+ }[];
42951
+ context?: unknown;
42952
+ };
42953
+ };
42954
+ };
42955
+ /** @description Not found */
42956
+ 404: {
42957
+ headers: {
42958
+ [name: string]: unknown;
42959
+ };
42960
+ content: {
42961
+ "application/json": {
42962
+ code: string;
42963
+ message: string;
42964
+ issues?: {
42965
+ message: string;
42966
+ }[];
42967
+ context?: unknown;
42968
+ };
42969
+ };
42970
+ };
42971
+ /** @description Internal server error */
42972
+ 500: {
42973
+ headers: {
42974
+ [name: string]: unknown;
42975
+ };
42976
+ content: {
42977
+ "application/json": {
42978
+ code: string;
42979
+ message: string;
42980
+ issues?: {
42981
+ message: string;
42982
+ }[];
42983
+ context?: unknown;
42984
+ };
42985
+ };
42986
+ };
42987
+ };
42988
+ };
42585
42989
  postTransactionAttachments: {
42586
42990
  parameters: {
42587
42991
  query?: never;
@@ -43035,7 +43439,7 @@ export interface operations {
43035
43439
  last4?: string;
43036
43440
  isLocked?: boolean;
43037
43441
  hasActiveJournalEntries?: boolean;
43038
- /** @description connection id or 'null' */
43442
+ /** @description connection id or 'null' for manual transactions */
43039
43443
  connectionId?: string;
43040
43444
  /** @description Amount in cents, also accepts ranges like 100...200 */
43041
43445
  amount?: string;
@@ -43141,6 +43545,9 @@ export interface operations {
43141
43545
  firstName?: string | null;
43142
43546
  uniqueRef?: string | null;
43143
43547
  shortRef?: string | null;
43548
+ email?: string | null;
43549
+ /** @enum {string} */
43550
+ type: "owner" | "vendor";
43144
43551
  } | null;
43145
43552
  matchStatus?: string | null;
43146
43553
  appliedAmount?: {
@@ -43190,6 +43597,7 @@ export interface operations {
43190
43597
  } | null;
43191
43598
  } | null;
43192
43599
  }[];
43600
+ /** @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. */
43193
43601
  attachmentIds?: string[] | null;
43194
43602
  recurringTemplateId?: string | null;
43195
43603
  matchBankAccountLast4?: string | null;
@@ -43300,6 +43708,9 @@ export interface operations {
43300
43708
  firstName?: string | null;
43301
43709
  uniqueRef?: string | null;
43302
43710
  shortRef?: string | null;
43711
+ email?: string | null;
43712
+ /** @enum {string} */
43713
+ type: "owner" | "vendor";
43303
43714
  } | null;
43304
43715
  source?: {
43305
43716
  /** Format: uuid */
@@ -43454,6 +43865,7 @@ export interface operations {
43454
43865
  matchReservationStripeGuestRef?: string | null;
43455
43866
  matchLineTypeClassification?: string | null;
43456
43867
  }[];
43868
+ /** @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. */
43457
43869
  attachmentIds?: string[] | null;
43458
43870
  payment?: {
43459
43871
  bankRecordIds?: string[];
@@ -43562,6 +43974,9 @@ export interface operations {
43562
43974
  firstName?: string | null;
43563
43975
  uniqueRef?: string | null;
43564
43976
  shortRef?: string | null;
43977
+ email?: string | null;
43978
+ /** @enum {string} */
43979
+ type: "owner" | "vendor";
43565
43980
  } | null;
43566
43981
  matchStatus?: string | null;
43567
43982
  appliedAmount?: {
@@ -43611,6 +44026,7 @@ export interface operations {
43611
44026
  } | null;
43612
44027
  } | null;
43613
44028
  }[];
44029
+ /** @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. */
43614
44030
  attachmentIds?: string[] | null;
43615
44031
  recurringTemplateId?: string | null;
43616
44032
  matchBankAccountLast4?: string | null;
@@ -43721,6 +44137,9 @@ export interface operations {
43721
44137
  firstName?: string | null;
43722
44138
  uniqueRef?: string | null;
43723
44139
  shortRef?: string | null;
44140
+ email?: string | null;
44141
+ /** @enum {string} */
44142
+ type: "owner" | "vendor";
43724
44143
  } | null;
43725
44144
  source?: {
43726
44145
  /** Format: uuid */
@@ -43866,6 +44285,7 @@ export interface operations {
43866
44285
  matchReservationStripeGuestRef?: string | null;
43867
44286
  matchLineTypeClassification?: string | null;
43868
44287
  }[];
44288
+ /** @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. */
43869
44289
  attachmentIds?: string[] | null;
43870
44290
  payment?: {
43871
44291
  bankRecordIds?: string[];
@@ -44139,7 +44559,7 @@ export interface operations {
44139
44559
  last4?: string;
44140
44560
  isLocked?: boolean;
44141
44561
  hasActiveJournalEntries?: boolean;
44142
- /** @description connection id or 'null' */
44562
+ /** @description connection id or 'null' for manual transactions */
44143
44563
  connectionId?: string;
44144
44564
  /** @description Amount in cents, also accepts ranges like 100...200 */
44145
44565
  amount?: string;
@@ -44274,7 +44694,7 @@ export interface operations {
44274
44694
  last4?: string;
44275
44695
  isLocked?: boolean;
44276
44696
  hasActiveJournalEntries?: boolean;
44277
- /** @description connection id or 'null' */
44697
+ /** @description connection id or 'null' for manual transactions */
44278
44698
  connectionId?: string;
44279
44699
  /** @description Amount in cents, also accepts ranges like 100...200 */
44280
44700
  amount?: string;
@@ -44409,7 +44829,7 @@ export interface operations {
44409
44829
  last4?: string;
44410
44830
  isLocked?: boolean;
44411
44831
  hasActiveJournalEntries?: boolean;
44412
- /** @description connection id or 'null' */
44832
+ /** @description connection id or 'null' for manual transactions */
44413
44833
  connectionId?: string;
44414
44834
  /** @description Amount in cents, also accepts ranges like 100...200 */
44415
44835
  amount?: string;
@@ -44886,7 +45306,7 @@ export interface operations {
44886
45306
  last4?: string;
44887
45307
  isLocked?: boolean;
44888
45308
  hasActiveJournalEntries?: boolean;
44889
- /** @description connection id or 'null' */
45309
+ /** @description connection id or 'null' for manual transactions */
44890
45310
  connectionId?: string;
44891
45311
  /** @description Amount in cents, also accepts ranges like 100...200 */
44892
45312
  amount?: string;
@@ -45070,6 +45490,9 @@ export interface operations {
45070
45490
  firstName?: string | null;
45071
45491
  uniqueRef?: string | null;
45072
45492
  shortRef?: string | null;
45493
+ email?: string | null;
45494
+ /** @enum {string} */
45495
+ type: "owner" | "vendor";
45073
45496
  } | null;
45074
45497
  lines: {
45075
45498
  uniqueRef?: string | null;
@@ -45128,6 +45551,9 @@ export interface operations {
45128
45551
  firstName?: string | null;
45129
45552
  uniqueRef?: string | null;
45130
45553
  shortRef?: string | null;
45554
+ email?: string | null;
45555
+ /** @enum {string} */
45556
+ type: "owner" | "vendor";
45131
45557
  } | null;
45132
45558
  matchStatus?: string | null;
45133
45559
  appliedAmount?: {
@@ -45380,6 +45806,9 @@ export interface operations {
45380
45806
  firstName?: string | null;
45381
45807
  uniqueRef?: string | null;
45382
45808
  shortRef?: string | null;
45809
+ email?: string | null;
45810
+ /** @enum {string} */
45811
+ type: "owner" | "vendor";
45383
45812
  } | null;
45384
45813
  lines: {
45385
45814
  uniqueRef?: string | null;
@@ -45438,6 +45867,9 @@ export interface operations {
45438
45867
  firstName?: string | null;
45439
45868
  uniqueRef?: string | null;
45440
45869
  shortRef?: string | null;
45870
+ email?: string | null;
45871
+ /** @enum {string} */
45872
+ type: "owner" | "vendor";
45441
45873
  } | null;
45442
45874
  matchStatus?: string | null;
45443
45875
  appliedAmount?: {
@@ -45765,6 +46197,9 @@ export interface operations {
45765
46197
  firstName?: string | null;
45766
46198
  uniqueRef?: string | null;
45767
46199
  shortRef?: string | null;
46200
+ email?: string | null;
46201
+ /** @enum {string} */
46202
+ type: "owner" | "vendor";
45768
46203
  } | null;
45769
46204
  lines: {
45770
46205
  uniqueRef?: string | null;
@@ -45823,6 +46258,9 @@ export interface operations {
45823
46258
  firstName?: string | null;
45824
46259
  uniqueRef?: string | null;
45825
46260
  shortRef?: string | null;
46261
+ email?: string | null;
46262
+ /** @enum {string} */
46263
+ type: "owner" | "vendor";
45826
46264
  } | null;
45827
46265
  matchStatus?: string | null;
45828
46266
  appliedAmount?: {
@@ -46068,6 +46506,9 @@ export interface operations {
46068
46506
  firstName?: string | null;
46069
46507
  uniqueRef?: string | null;
46070
46508
  shortRef?: string | null;
46509
+ email?: string | null;
46510
+ /** @enum {string} */
46511
+ type: "owner" | "vendor";
46071
46512
  } | null;
46072
46513
  lines: {
46073
46514
  uniqueRef?: string | null;
@@ -46126,6 +46567,9 @@ export interface operations {
46126
46567
  firstName?: string | null;
46127
46568
  uniqueRef?: string | null;
46128
46569
  shortRef?: string | null;
46570
+ email?: string | null;
46571
+ /** @enum {string} */
46572
+ type: "owner" | "vendor";
46129
46573
  } | null;
46130
46574
  matchStatus?: string | null;
46131
46575
  appliedAmount?: {
@@ -46478,6 +46922,9 @@ export interface operations {
46478
46922
  firstName?: string | null;
46479
46923
  uniqueRef?: string | null;
46480
46924
  shortRef?: string | null;
46925
+ email?: string | null;
46926
+ /** @enum {string} */
46927
+ type: "owner" | "vendor";
46481
46928
  } | null;
46482
46929
  matchStatus?: string | null;
46483
46930
  appliedAmount?: {
@@ -46527,6 +46974,7 @@ export interface operations {
46527
46974
  } | null;
46528
46975
  } | null;
46529
46976
  }[];
46977
+ /** @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. */
46530
46978
  attachmentIds?: string[] | null;
46531
46979
  recurringTemplateId?: string | null;
46532
46980
  matchBankAccountLast4?: string | null;
@@ -46637,6 +47085,9 @@ export interface operations {
46637
47085
  firstName?: string | null;
46638
47086
  uniqueRef?: string | null;
46639
47087
  shortRef?: string | null;
47088
+ email?: string | null;
47089
+ /** @enum {string} */
47090
+ type: "owner" | "vendor";
46640
47091
  } | null;
46641
47092
  source?: {
46642
47093
  /** Format: uuid */
@@ -46745,7 +47196,7 @@ export interface operations {
46745
47196
  last4?: string;
46746
47197
  isLocked?: boolean;
46747
47198
  hasActiveJournalEntries?: boolean;
46748
- /** @description connection id or 'null' */
47199
+ /** @description connection id or 'null' for manual transactions */
46749
47200
  connectionId?: string;
46750
47201
  /** @description Amount in cents, also accepts ranges like 100...200 */
46751
47202
  amount?: string;
@@ -46952,6 +47403,9 @@ export interface operations {
46952
47403
  firstName?: string | null;
46953
47404
  uniqueRef?: string | null;
46954
47405
  shortRef?: string | null;
47406
+ email?: string | null;
47407
+ /** @enum {string} */
47408
+ type: "owner" | "vendor";
46955
47409
  } | null;
46956
47410
  matchStatus?: string | null;
46957
47411
  appliedAmount?: {
@@ -47001,6 +47455,7 @@ export interface operations {
47001
47455
  } | null;
47002
47456
  } | null;
47003
47457
  }[];
47458
+ /** @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. */
47004
47459
  attachmentIds?: string[] | null;
47005
47460
  recurringTemplateId?: string | null;
47006
47461
  matchBankAccountLast4?: string | null;
@@ -47111,6 +47566,9 @@ export interface operations {
47111
47566
  firstName?: string | null;
47112
47567
  uniqueRef?: string | null;
47113
47568
  shortRef?: string | null;
47569
+ email?: string | null;
47570
+ /** @enum {string} */
47571
+ type: "owner" | "vendor";
47114
47572
  } | null;
47115
47573
  source?: {
47116
47574
  /** Format: uuid */
@@ -47231,6 +47689,7 @@ export interface operations {
47231
47689
  type?: "deposit" | "expense" | "transfer" | "payout";
47232
47690
  date?: string;
47233
47691
  currency?: string | null;
47692
+ /** @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. */
47234
47693
  attachmentIds?: string[] | null;
47235
47694
  payment?: {
47236
47695
  bankRecordIds?: string[];
@@ -47425,6 +47884,9 @@ export interface operations {
47425
47884
  firstName?: string | null;
47426
47885
  uniqueRef?: string | null;
47427
47886
  shortRef?: string | null;
47887
+ email?: string | null;
47888
+ /** @enum {string} */
47889
+ type: "owner" | "vendor";
47428
47890
  } | null;
47429
47891
  matchStatus?: string | null;
47430
47892
  appliedAmount?: {
@@ -47474,6 +47936,7 @@ export interface operations {
47474
47936
  } | null;
47475
47937
  } | null;
47476
47938
  }[];
47939
+ /** @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. */
47477
47940
  attachmentIds?: string[] | null;
47478
47941
  recurringTemplateId?: string | null;
47479
47942
  matchBankAccountLast4?: string | null;
@@ -47584,6 +48047,9 @@ export interface operations {
47584
48047
  firstName?: string | null;
47585
48048
  uniqueRef?: string | null;
47586
48049
  shortRef?: string | null;
48050
+ email?: string | null;
48051
+ /** @enum {string} */
48052
+ type: "owner" | "vendor";
47587
48053
  } | null;
47588
48054
  source?: {
47589
48055
  /** Format: uuid */
@@ -47905,6 +48371,9 @@ export interface operations {
47905
48371
  firstName?: string | null;
47906
48372
  uniqueRef?: string | null;
47907
48373
  shortRef?: string | null;
48374
+ email?: string | null;
48375
+ /** @enum {string} */
48376
+ type: "owner" | "vendor";
47908
48377
  } | null;
47909
48378
  matchStatus?: string | null;
47910
48379
  appliedAmount?: {
@@ -47954,6 +48423,7 @@ export interface operations {
47954
48423
  } | null;
47955
48424
  } | null;
47956
48425
  }[];
48426
+ /** @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. */
47957
48427
  attachmentIds?: string[] | null;
47958
48428
  recurringTemplateId?: string | null;
47959
48429
  matchBankAccountLast4?: string | null;
@@ -48064,6 +48534,9 @@ export interface operations {
48064
48534
  firstName?: string | null;
48065
48535
  uniqueRef?: string | null;
48066
48536
  shortRef?: string | null;
48537
+ email?: string | null;
48538
+ /** @enum {string} */
48539
+ type: "owner" | "vendor";
48067
48540
  } | null;
48068
48541
  source?: {
48069
48542
  /** Format: uuid */