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