@vrplatform/api 1.3.1-6355 → 1.3.1-6364

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.
@@ -4495,7 +4495,7 @@ export interface paths {
4495
4495
  cookie?: never;
4496
4496
  };
4497
4497
  /**
4498
- * @description Owner statement summary detail PDF
4498
+ * @description Owner statement summary detail PDF. Returns 404 when the selected layout no longer exists.
4499
4499
  *
4500
4500
  * Required scope: statements:read, statements:export
4501
4501
  */
@@ -4516,7 +4516,7 @@ export interface paths {
4516
4516
  cookie?: never;
4517
4517
  };
4518
4518
  /**
4519
- * @description Owner statement summary PDF ZIP export
4519
+ * @description Owner statement summary PDF ZIP export. Returns 404 when the selected layout no longer exists.
4520
4520
  *
4521
4521
  * Required scope: statements:read, statements:export
4522
4522
  */
@@ -6540,6 +6540,27 @@ export interface paths {
6540
6540
  patch?: never;
6541
6541
  trace?: never;
6542
6542
  };
6543
+ "/transactions/{id}/provider-payments/{providerPaymentId}/cancel": {
6544
+ parameters: {
6545
+ query?: never;
6546
+ header?: never;
6547
+ path?: never;
6548
+ cookie?: never;
6549
+ };
6550
+ get?: never;
6551
+ put?: never;
6552
+ /**
6553
+ * @description Request cancellation of an uninitiated Ramp payment. Ramp archives the bill and remains authoritative about whether cancellation is still possible. This does not unlink the payment or change payout accounting.
6554
+ *
6555
+ * Required scope: transactions:mark-paid, ach-payments:execute
6556
+ */
6557
+ post: operations["postTransactionsByIdProviderPaymentsByProviderPaymentIdCancel"];
6558
+ delete?: never;
6559
+ options?: never;
6560
+ head?: never;
6561
+ patch?: never;
6562
+ trace?: never;
6563
+ };
6543
6564
  "/transactions/{transactionId}/lines/{id}": {
6544
6565
  parameters: {
6545
6566
  query?: never;
@@ -26083,13 +26104,13 @@ export interface operations {
26083
26104
  excludedRows: number[];
26084
26105
  fields: {
26085
26106
  listing: {
26086
- source?: string;
26107
+ source?: string | null;
26087
26108
  overrides: {
26088
26109
  [key: string]: string;
26089
26110
  };
26090
26111
  };
26091
26112
  ownerKind: {
26092
- source?: string;
26113
+ source?: string | null;
26093
26114
  /** @enum {string} */
26094
26115
  constant?: "individual" | "company";
26095
26116
  values: {
@@ -26097,55 +26118,55 @@ export interface operations {
26097
26118
  };
26098
26119
  };
26099
26120
  firstName: {
26100
- source?: string;
26121
+ source?: string | null;
26101
26122
  };
26102
26123
  lastName: {
26103
- source?: string;
26124
+ source?: string | null;
26104
26125
  };
26105
26126
  companyName: {
26106
- source?: string;
26127
+ source?: string | null;
26107
26128
  };
26108
26129
  companyType: {
26109
- source?: string;
26130
+ source?: string | null;
26110
26131
  values: {
26111
26132
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
26112
26133
  };
26113
26134
  };
26114
26135
  ownerReference: {
26115
- source?: string;
26136
+ source?: string | null;
26116
26137
  overrides: {
26117
26138
  [key: string]: string;
26118
26139
  };
26119
26140
  };
26120
26141
  email: {
26121
- source?: string;
26142
+ source?: string | null;
26122
26143
  };
26123
26144
  phone: {
26124
- source?: string;
26145
+ source?: string | null;
26125
26146
  };
26126
26147
  taxIdentifier: {
26127
- source?: string;
26148
+ source?: string | null;
26128
26149
  };
26129
26150
  address: {
26130
- source?: string;
26151
+ source?: string | null;
26131
26152
  };
26132
26153
  unit: {
26133
- source?: string;
26154
+ source?: string | null;
26134
26155
  };
26135
26156
  city: {
26136
- source?: string;
26157
+ source?: string | null;
26137
26158
  };
26138
26159
  state: {
26139
- source?: string;
26160
+ source?: string | null;
26140
26161
  };
26141
26162
  postalCode: {
26142
- source?: string;
26163
+ source?: string | null;
26143
26164
  };
26144
26165
  country: {
26145
- source?: string;
26166
+ source?: string | null;
26146
26167
  };
26147
26168
  payoutAccount: {
26148
- source?: string;
26169
+ source?: string | null;
26149
26170
  overrides: {
26150
26171
  [key: string]: string;
26151
26172
  };
@@ -26162,21 +26183,21 @@ export interface operations {
26162
26183
  excludedRows: number[];
26163
26184
  fields: {
26164
26185
  billReference: {
26165
- source?: string;
26186
+ source?: string | null;
26166
26187
  };
26167
26188
  issueDate: {
26168
- source?: string;
26189
+ source?: string | null;
26169
26190
  /** @enum {string} */
26170
26191
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26171
26192
  };
26172
26193
  vendor: {
26173
- source?: string;
26194
+ source?: string | null;
26174
26195
  overrides: {
26175
26196
  [key: string]: string;
26176
26197
  };
26177
26198
  };
26178
26199
  status: {
26179
- source?: string;
26200
+ source?: string | null;
26180
26201
  /** @enum {string} */
26181
26202
  constant?: "paid" | "unpaid";
26182
26203
  values: {
@@ -26184,58 +26205,58 @@ export interface operations {
26184
26205
  };
26185
26206
  };
26186
26207
  paymentDate: {
26187
- source?: string;
26208
+ source?: string | null;
26188
26209
  /** @enum {string} */
26189
26210
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26190
26211
  };
26191
26212
  bankAccount: {
26192
- source?: string;
26213
+ source?: string | null;
26193
26214
  overrides: {
26194
26215
  [key: string]: string;
26195
26216
  };
26196
26217
  };
26197
26218
  currency: {
26198
- source?: string;
26219
+ source?: string | null;
26199
26220
  };
26200
26221
  description: {
26201
- source?: string;
26222
+ source?: string | null;
26202
26223
  };
26203
26224
  lineDescription: {
26204
- source?: string;
26225
+ source?: string | null;
26205
26226
  };
26206
26227
  expenseAccount: {
26207
- source?: string;
26228
+ source?: string | null;
26208
26229
  overrides: {
26209
26230
  [key: string]: string;
26210
26231
  };
26211
26232
  };
26212
26233
  appliedAmount: {
26213
- source?: string;
26234
+ source?: string | null;
26214
26235
  };
26215
26236
  reservation: {
26216
- source?: string;
26237
+ source?: string | null;
26217
26238
  overrides: {
26218
26239
  [key: string]: string;
26219
26240
  };
26220
26241
  };
26221
26242
  listing: {
26222
- source?: string;
26243
+ source?: string | null;
26223
26244
  overrides: {
26224
26245
  [key: string]: string;
26225
26246
  };
26226
26247
  };
26227
26248
  billToOwner: {
26228
- source?: string;
26249
+ source?: string | null;
26229
26250
  constant?: boolean;
26230
26251
  values: {
26231
26252
  [key: string]: boolean;
26232
26253
  };
26233
26254
  };
26234
26255
  markup: {
26235
- source?: string;
26256
+ source?: string | null;
26236
26257
  };
26237
26258
  markupTax: {
26238
- source?: string;
26259
+ source?: string | null;
26239
26260
  overrides: {
26240
26261
  [key: string]: string;
26241
26262
  };
@@ -26252,7 +26273,7 @@ export interface operations {
26252
26273
  excludedRows: number[];
26253
26274
  fields: {
26254
26275
  vendorKind: {
26255
- source?: string;
26276
+ source?: string | null;
26256
26277
  /** @enum {string} */
26257
26278
  constant?: "individual" | "company";
26258
26279
  values: {
@@ -26260,52 +26281,52 @@ export interface operations {
26260
26281
  };
26261
26282
  };
26262
26283
  firstName: {
26263
- source?: string;
26284
+ source?: string | null;
26264
26285
  };
26265
26286
  lastName: {
26266
- source?: string;
26287
+ source?: string | null;
26267
26288
  };
26268
26289
  companyName: {
26269
- source?: string;
26290
+ source?: string | null;
26270
26291
  };
26271
26292
  companyType: {
26272
- source?: string;
26293
+ source?: string | null;
26273
26294
  values: {
26274
26295
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
26275
26296
  };
26276
26297
  };
26277
26298
  vendorReference: {
26278
- source?: string;
26299
+ source?: string | null;
26279
26300
  overrides: {
26280
26301
  [key: string]: string;
26281
26302
  };
26282
26303
  };
26283
26304
  email: {
26284
- source?: string;
26305
+ source?: string | null;
26285
26306
  };
26286
26307
  phone: {
26287
- source?: string;
26308
+ source?: string | null;
26288
26309
  };
26289
26310
  taxIdentifier: {
26290
- source?: string;
26311
+ source?: string | null;
26291
26312
  };
26292
26313
  address: {
26293
- source?: string;
26314
+ source?: string | null;
26294
26315
  };
26295
26316
  unit: {
26296
- source?: string;
26317
+ source?: string | null;
26297
26318
  };
26298
26319
  city: {
26299
- source?: string;
26320
+ source?: string | null;
26300
26321
  };
26301
26322
  state: {
26302
- source?: string;
26323
+ source?: string | null;
26303
26324
  };
26304
26325
  postalCode: {
26305
- source?: string;
26326
+ source?: string | null;
26306
26327
  };
26307
26328
  country: {
26308
- source?: string;
26329
+ source?: string | null;
26309
26330
  };
26310
26331
  };
26311
26332
  } | {
@@ -26319,69 +26340,69 @@ export interface operations {
26319
26340
  excludedRows: number[];
26320
26341
  fields: {
26321
26342
  reference: {
26322
- source?: string;
26343
+ source?: string | null;
26323
26344
  };
26324
26345
  date: {
26325
- source?: string;
26346
+ source?: string | null;
26326
26347
  /** @enum {string} */
26327
26348
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26328
26349
  };
26329
26350
  bankAccount: {
26330
- source?: string;
26351
+ source?: string | null;
26331
26352
  overrides: {
26332
26353
  [key: string]: string;
26333
26354
  };
26334
26355
  };
26335
26356
  description: {
26336
- source?: string;
26357
+ source?: string | null;
26337
26358
  };
26338
26359
  currency: {
26339
- source?: string;
26360
+ source?: string | null;
26340
26361
  };
26341
26362
  reservation: {
26342
- source?: string;
26363
+ source?: string | null;
26343
26364
  overrides: {
26344
26365
  [key: string]: string;
26345
26366
  };
26346
26367
  };
26347
26368
  contact: {
26348
- source?: string;
26369
+ source?: string | null;
26349
26370
  overrides: {
26350
26371
  [key: string]: string;
26351
26372
  };
26352
26373
  };
26353
26374
  listing: {
26354
- source?: string;
26375
+ source?: string | null;
26355
26376
  overrides: {
26356
26377
  [key: string]: string;
26357
26378
  };
26358
26379
  };
26359
26380
  account: {
26360
- source?: string;
26381
+ source?: string | null;
26361
26382
  overrides: {
26362
26383
  [key: string]: string;
26363
26384
  };
26364
26385
  };
26365
26386
  lineDescription: {
26366
- source?: string;
26387
+ source?: string | null;
26367
26388
  };
26368
26389
  appliedAmount: {
26369
- source?: string;
26390
+ source?: string | null;
26370
26391
  };
26371
26392
  merchantFee: {
26372
- source?: string;
26393
+ source?: string | null;
26373
26394
  };
26374
26395
  channelFee: {
26375
- source?: string;
26396
+ source?: string | null;
26376
26397
  };
26377
26398
  reserve: {
26378
- source?: string;
26399
+ source?: string | null;
26379
26400
  };
26380
26401
  coHostPayout: {
26381
- source?: string;
26402
+ source?: string | null;
26382
26403
  };
26383
26404
  vat: {
26384
- source?: string;
26405
+ source?: string | null;
26385
26406
  };
26386
26407
  };
26387
26408
  };
@@ -26702,13 +26723,13 @@ export interface operations {
26702
26723
  excludedRows: number[];
26703
26724
  fields: {
26704
26725
  listing: {
26705
- source?: string;
26726
+ source?: string | null;
26706
26727
  overrides: {
26707
26728
  [key: string]: string;
26708
26729
  };
26709
26730
  };
26710
26731
  ownerKind: {
26711
- source?: string;
26732
+ source?: string | null;
26712
26733
  /** @enum {string} */
26713
26734
  constant?: "individual" | "company";
26714
26735
  values: {
@@ -26716,55 +26737,55 @@ export interface operations {
26716
26737
  };
26717
26738
  };
26718
26739
  firstName: {
26719
- source?: string;
26740
+ source?: string | null;
26720
26741
  };
26721
26742
  lastName: {
26722
- source?: string;
26743
+ source?: string | null;
26723
26744
  };
26724
26745
  companyName: {
26725
- source?: string;
26746
+ source?: string | null;
26726
26747
  };
26727
26748
  companyType: {
26728
- source?: string;
26749
+ source?: string | null;
26729
26750
  values: {
26730
26751
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
26731
26752
  };
26732
26753
  };
26733
26754
  ownerReference: {
26734
- source?: string;
26755
+ source?: string | null;
26735
26756
  overrides: {
26736
26757
  [key: string]: string;
26737
26758
  };
26738
26759
  };
26739
26760
  email: {
26740
- source?: string;
26761
+ source?: string | null;
26741
26762
  };
26742
26763
  phone: {
26743
- source?: string;
26764
+ source?: string | null;
26744
26765
  };
26745
26766
  taxIdentifier: {
26746
- source?: string;
26767
+ source?: string | null;
26747
26768
  };
26748
26769
  address: {
26749
- source?: string;
26770
+ source?: string | null;
26750
26771
  };
26751
26772
  unit: {
26752
- source?: string;
26773
+ source?: string | null;
26753
26774
  };
26754
26775
  city: {
26755
- source?: string;
26776
+ source?: string | null;
26756
26777
  };
26757
26778
  state: {
26758
- source?: string;
26779
+ source?: string | null;
26759
26780
  };
26760
26781
  postalCode: {
26761
- source?: string;
26782
+ source?: string | null;
26762
26783
  };
26763
26784
  country: {
26764
- source?: string;
26785
+ source?: string | null;
26765
26786
  };
26766
26787
  payoutAccount: {
26767
- source?: string;
26788
+ source?: string | null;
26768
26789
  overrides: {
26769
26790
  [key: string]: string;
26770
26791
  };
@@ -26781,21 +26802,21 @@ export interface operations {
26781
26802
  excludedRows: number[];
26782
26803
  fields: {
26783
26804
  billReference: {
26784
- source?: string;
26805
+ source?: string | null;
26785
26806
  };
26786
26807
  issueDate: {
26787
- source?: string;
26808
+ source?: string | null;
26788
26809
  /** @enum {string} */
26789
26810
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26790
26811
  };
26791
26812
  vendor: {
26792
- source?: string;
26813
+ source?: string | null;
26793
26814
  overrides: {
26794
26815
  [key: string]: string;
26795
26816
  };
26796
26817
  };
26797
26818
  status: {
26798
- source?: string;
26819
+ source?: string | null;
26799
26820
  /** @enum {string} */
26800
26821
  constant?: "paid" | "unpaid";
26801
26822
  values: {
@@ -26803,58 +26824,58 @@ export interface operations {
26803
26824
  };
26804
26825
  };
26805
26826
  paymentDate: {
26806
- source?: string;
26827
+ source?: string | null;
26807
26828
  /** @enum {string} */
26808
26829
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26809
26830
  };
26810
26831
  bankAccount: {
26811
- source?: string;
26832
+ source?: string | null;
26812
26833
  overrides: {
26813
26834
  [key: string]: string;
26814
26835
  };
26815
26836
  };
26816
26837
  currency: {
26817
- source?: string;
26838
+ source?: string | null;
26818
26839
  };
26819
26840
  description: {
26820
- source?: string;
26841
+ source?: string | null;
26821
26842
  };
26822
26843
  lineDescription: {
26823
- source?: string;
26844
+ source?: string | null;
26824
26845
  };
26825
26846
  expenseAccount: {
26826
- source?: string;
26847
+ source?: string | null;
26827
26848
  overrides: {
26828
26849
  [key: string]: string;
26829
26850
  };
26830
26851
  };
26831
26852
  appliedAmount: {
26832
- source?: string;
26853
+ source?: string | null;
26833
26854
  };
26834
26855
  reservation: {
26835
- source?: string;
26856
+ source?: string | null;
26836
26857
  overrides: {
26837
26858
  [key: string]: string;
26838
26859
  };
26839
26860
  };
26840
26861
  listing: {
26841
- source?: string;
26862
+ source?: string | null;
26842
26863
  overrides: {
26843
26864
  [key: string]: string;
26844
26865
  };
26845
26866
  };
26846
26867
  billToOwner: {
26847
- source?: string;
26868
+ source?: string | null;
26848
26869
  constant?: boolean;
26849
26870
  values: {
26850
26871
  [key: string]: boolean;
26851
26872
  };
26852
26873
  };
26853
26874
  markup: {
26854
- source?: string;
26875
+ source?: string | null;
26855
26876
  };
26856
26877
  markupTax: {
26857
- source?: string;
26878
+ source?: string | null;
26858
26879
  overrides: {
26859
26880
  [key: string]: string;
26860
26881
  };
@@ -26871,7 +26892,7 @@ export interface operations {
26871
26892
  excludedRows: number[];
26872
26893
  fields: {
26873
26894
  vendorKind: {
26874
- source?: string;
26895
+ source?: string | null;
26875
26896
  /** @enum {string} */
26876
26897
  constant?: "individual" | "company";
26877
26898
  values: {
@@ -26879,52 +26900,52 @@ export interface operations {
26879
26900
  };
26880
26901
  };
26881
26902
  firstName: {
26882
- source?: string;
26903
+ source?: string | null;
26883
26904
  };
26884
26905
  lastName: {
26885
- source?: string;
26906
+ source?: string | null;
26886
26907
  };
26887
26908
  companyName: {
26888
- source?: string;
26909
+ source?: string | null;
26889
26910
  };
26890
26911
  companyType: {
26891
- source?: string;
26912
+ source?: string | null;
26892
26913
  values: {
26893
26914
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
26894
26915
  };
26895
26916
  };
26896
26917
  vendorReference: {
26897
- source?: string;
26918
+ source?: string | null;
26898
26919
  overrides: {
26899
26920
  [key: string]: string;
26900
26921
  };
26901
26922
  };
26902
26923
  email: {
26903
- source?: string;
26924
+ source?: string | null;
26904
26925
  };
26905
26926
  phone: {
26906
- source?: string;
26927
+ source?: string | null;
26907
26928
  };
26908
26929
  taxIdentifier: {
26909
- source?: string;
26930
+ source?: string | null;
26910
26931
  };
26911
26932
  address: {
26912
- source?: string;
26933
+ source?: string | null;
26913
26934
  };
26914
26935
  unit: {
26915
- source?: string;
26936
+ source?: string | null;
26916
26937
  };
26917
26938
  city: {
26918
- source?: string;
26939
+ source?: string | null;
26919
26940
  };
26920
26941
  state: {
26921
- source?: string;
26942
+ source?: string | null;
26922
26943
  };
26923
26944
  postalCode: {
26924
- source?: string;
26945
+ source?: string | null;
26925
26946
  };
26926
26947
  country: {
26927
- source?: string;
26948
+ source?: string | null;
26928
26949
  };
26929
26950
  };
26930
26951
  } | {
@@ -26938,69 +26959,69 @@ export interface operations {
26938
26959
  excludedRows: number[];
26939
26960
  fields: {
26940
26961
  reference: {
26941
- source?: string;
26962
+ source?: string | null;
26942
26963
  };
26943
26964
  date: {
26944
- source?: string;
26965
+ source?: string | null;
26945
26966
  /** @enum {string} */
26946
26967
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
26947
26968
  };
26948
26969
  bankAccount: {
26949
- source?: string;
26970
+ source?: string | null;
26950
26971
  overrides: {
26951
26972
  [key: string]: string;
26952
26973
  };
26953
26974
  };
26954
26975
  description: {
26955
- source?: string;
26976
+ source?: string | null;
26956
26977
  };
26957
26978
  currency: {
26958
- source?: string;
26979
+ source?: string | null;
26959
26980
  };
26960
26981
  reservation: {
26961
- source?: string;
26982
+ source?: string | null;
26962
26983
  overrides: {
26963
26984
  [key: string]: string;
26964
26985
  };
26965
26986
  };
26966
26987
  contact: {
26967
- source?: string;
26988
+ source?: string | null;
26968
26989
  overrides: {
26969
26990
  [key: string]: string;
26970
26991
  };
26971
26992
  };
26972
26993
  listing: {
26973
- source?: string;
26994
+ source?: string | null;
26974
26995
  overrides: {
26975
26996
  [key: string]: string;
26976
26997
  };
26977
26998
  };
26978
26999
  account: {
26979
- source?: string;
27000
+ source?: string | null;
26980
27001
  overrides: {
26981
27002
  [key: string]: string;
26982
27003
  };
26983
27004
  };
26984
27005
  lineDescription: {
26985
- source?: string;
27006
+ source?: string | null;
26986
27007
  };
26987
27008
  appliedAmount: {
26988
- source?: string;
27009
+ source?: string | null;
26989
27010
  };
26990
27011
  merchantFee: {
26991
- source?: string;
27012
+ source?: string | null;
26992
27013
  };
26993
27014
  channelFee: {
26994
- source?: string;
27015
+ source?: string | null;
26995
27016
  };
26996
27017
  reserve: {
26997
- source?: string;
27018
+ source?: string | null;
26998
27019
  };
26999
27020
  coHostPayout: {
27000
- source?: string;
27021
+ source?: string | null;
27001
27022
  };
27002
27023
  vat: {
27003
- source?: string;
27024
+ source?: string | null;
27004
27025
  };
27005
27026
  };
27006
27027
  };
@@ -27087,23 +27108,6 @@ export interface operations {
27087
27108
  };
27088
27109
  excludedRows: number[];
27089
27110
  };
27090
- sampleRows: {
27091
- rowNumber: number;
27092
- source: {
27093
- [key: string]: string | null;
27094
- };
27095
- transformed?: {
27096
- Date: string;
27097
- Description: string;
27098
- Amount: number;
27099
- } | null;
27100
- systemExclusion?: {
27101
- /** @constant */
27102
- code: "beforeBankRecordStartDate";
27103
- bankRecordStartDate: string;
27104
- };
27105
- }[];
27106
- sampleRowsTruncated: boolean;
27107
27111
  totals: {
27108
27112
  rows: number;
27109
27113
  valid: number;
@@ -27145,13 +27149,13 @@ export interface operations {
27145
27149
  excludedRows: number[];
27146
27150
  fields: {
27147
27151
  listing: {
27148
- source?: string;
27152
+ source?: string | null;
27149
27153
  overrides: {
27150
27154
  [key: string]: string;
27151
27155
  };
27152
27156
  };
27153
27157
  ownerKind: {
27154
- source?: string;
27158
+ source?: string | null;
27155
27159
  /** @enum {string} */
27156
27160
  constant?: "individual" | "company";
27157
27161
  values: {
@@ -27159,55 +27163,55 @@ export interface operations {
27159
27163
  };
27160
27164
  };
27161
27165
  firstName: {
27162
- source?: string;
27166
+ source?: string | null;
27163
27167
  };
27164
27168
  lastName: {
27165
- source?: string;
27169
+ source?: string | null;
27166
27170
  };
27167
27171
  companyName: {
27168
- source?: string;
27172
+ source?: string | null;
27169
27173
  };
27170
27174
  companyType: {
27171
- source?: string;
27175
+ source?: string | null;
27172
27176
  values: {
27173
27177
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
27174
27178
  };
27175
27179
  };
27176
27180
  ownerReference: {
27177
- source?: string;
27181
+ source?: string | null;
27178
27182
  overrides: {
27179
27183
  [key: string]: string;
27180
27184
  };
27181
27185
  };
27182
27186
  email: {
27183
- source?: string;
27187
+ source?: string | null;
27184
27188
  };
27185
27189
  phone: {
27186
- source?: string;
27190
+ source?: string | null;
27187
27191
  };
27188
27192
  taxIdentifier: {
27189
- source?: string;
27193
+ source?: string | null;
27190
27194
  };
27191
27195
  address: {
27192
- source?: string;
27196
+ source?: string | null;
27193
27197
  };
27194
27198
  unit: {
27195
- source?: string;
27199
+ source?: string | null;
27196
27200
  };
27197
27201
  city: {
27198
- source?: string;
27202
+ source?: string | null;
27199
27203
  };
27200
27204
  state: {
27201
- source?: string;
27205
+ source?: string | null;
27202
27206
  };
27203
27207
  postalCode: {
27204
- source?: string;
27208
+ source?: string | null;
27205
27209
  };
27206
27210
  country: {
27207
- source?: string;
27211
+ source?: string | null;
27208
27212
  };
27209
27213
  payoutAccount: {
27210
- source?: string;
27214
+ source?: string | null;
27211
27215
  overrides: {
27212
27216
  [key: string]: string;
27213
27217
  };
@@ -27257,21 +27261,21 @@ export interface operations {
27257
27261
  excludedRows: number[];
27258
27262
  fields: {
27259
27263
  billReference: {
27260
- source?: string;
27264
+ source?: string | null;
27261
27265
  };
27262
27266
  issueDate: {
27263
- source?: string;
27267
+ source?: string | null;
27264
27268
  /** @enum {string} */
27265
27269
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
27266
27270
  };
27267
27271
  vendor: {
27268
- source?: string;
27272
+ source?: string | null;
27269
27273
  overrides: {
27270
27274
  [key: string]: string;
27271
27275
  };
27272
27276
  };
27273
27277
  status: {
27274
- source?: string;
27278
+ source?: string | null;
27275
27279
  /** @enum {string} */
27276
27280
  constant?: "paid" | "unpaid";
27277
27281
  values: {
@@ -27279,58 +27283,58 @@ export interface operations {
27279
27283
  };
27280
27284
  };
27281
27285
  paymentDate: {
27282
- source?: string;
27286
+ source?: string | null;
27283
27287
  /** @enum {string} */
27284
27288
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
27285
27289
  };
27286
27290
  bankAccount: {
27287
- source?: string;
27291
+ source?: string | null;
27288
27292
  overrides: {
27289
27293
  [key: string]: string;
27290
27294
  };
27291
27295
  };
27292
27296
  currency: {
27293
- source?: string;
27297
+ source?: string | null;
27294
27298
  };
27295
27299
  description: {
27296
- source?: string;
27300
+ source?: string | null;
27297
27301
  };
27298
27302
  lineDescription: {
27299
- source?: string;
27303
+ source?: string | null;
27300
27304
  };
27301
27305
  expenseAccount: {
27302
- source?: string;
27306
+ source?: string | null;
27303
27307
  overrides: {
27304
27308
  [key: string]: string;
27305
27309
  };
27306
27310
  };
27307
27311
  appliedAmount: {
27308
- source?: string;
27312
+ source?: string | null;
27309
27313
  };
27310
27314
  reservation: {
27311
- source?: string;
27315
+ source?: string | null;
27312
27316
  overrides: {
27313
27317
  [key: string]: string;
27314
27318
  };
27315
27319
  };
27316
27320
  listing: {
27317
- source?: string;
27321
+ source?: string | null;
27318
27322
  overrides: {
27319
27323
  [key: string]: string;
27320
27324
  };
27321
27325
  };
27322
27326
  billToOwner: {
27323
- source?: string;
27327
+ source?: string | null;
27324
27328
  constant?: boolean;
27325
27329
  values: {
27326
27330
  [key: string]: boolean;
27327
27331
  };
27328
27332
  };
27329
27333
  markup: {
27330
- source?: string;
27334
+ source?: string | null;
27331
27335
  };
27332
27336
  markupTax: {
27333
- source?: string;
27337
+ source?: string | null;
27334
27338
  overrides: {
27335
27339
  [key: string]: string;
27336
27340
  };
@@ -27384,7 +27388,7 @@ export interface operations {
27384
27388
  excludedRows: number[];
27385
27389
  fields: {
27386
27390
  vendorKind: {
27387
- source?: string;
27391
+ source?: string | null;
27388
27392
  /** @enum {string} */
27389
27393
  constant?: "individual" | "company";
27390
27394
  values: {
@@ -27392,52 +27396,52 @@ export interface operations {
27392
27396
  };
27393
27397
  };
27394
27398
  firstName: {
27395
- source?: string;
27399
+ source?: string | null;
27396
27400
  };
27397
27401
  lastName: {
27398
- source?: string;
27402
+ source?: string | null;
27399
27403
  };
27400
27404
  companyName: {
27401
- source?: string;
27405
+ source?: string | null;
27402
27406
  };
27403
27407
  companyType: {
27404
- source?: string;
27408
+ source?: string | null;
27405
27409
  values: {
27406
27410
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
27407
27411
  };
27408
27412
  };
27409
27413
  vendorReference: {
27410
- source?: string;
27414
+ source?: string | null;
27411
27415
  overrides: {
27412
27416
  [key: string]: string;
27413
27417
  };
27414
27418
  };
27415
27419
  email: {
27416
- source?: string;
27420
+ source?: string | null;
27417
27421
  };
27418
27422
  phone: {
27419
- source?: string;
27423
+ source?: string | null;
27420
27424
  };
27421
27425
  taxIdentifier: {
27422
- source?: string;
27426
+ source?: string | null;
27423
27427
  };
27424
27428
  address: {
27425
- source?: string;
27429
+ source?: string | null;
27426
27430
  };
27427
27431
  unit: {
27428
- source?: string;
27432
+ source?: string | null;
27429
27433
  };
27430
27434
  city: {
27431
- source?: string;
27435
+ source?: string | null;
27432
27436
  };
27433
27437
  state: {
27434
- source?: string;
27438
+ source?: string | null;
27435
27439
  };
27436
27440
  postalCode: {
27437
- source?: string;
27441
+ source?: string | null;
27438
27442
  };
27439
27443
  country: {
27440
- source?: string;
27444
+ source?: string | null;
27441
27445
  };
27442
27446
  };
27443
27447
  };
@@ -27483,69 +27487,69 @@ export interface operations {
27483
27487
  excludedRows: number[];
27484
27488
  fields: {
27485
27489
  reference: {
27486
- source?: string;
27490
+ source?: string | null;
27487
27491
  };
27488
27492
  date: {
27489
- source?: string;
27493
+ source?: string | null;
27490
27494
  /** @enum {string} */
27491
27495
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
27492
27496
  };
27493
27497
  bankAccount: {
27494
- source?: string;
27498
+ source?: string | null;
27495
27499
  overrides: {
27496
27500
  [key: string]: string;
27497
27501
  };
27498
27502
  };
27499
27503
  description: {
27500
- source?: string;
27504
+ source?: string | null;
27501
27505
  };
27502
27506
  currency: {
27503
- source?: string;
27507
+ source?: string | null;
27504
27508
  };
27505
27509
  reservation: {
27506
- source?: string;
27510
+ source?: string | null;
27507
27511
  overrides: {
27508
27512
  [key: string]: string;
27509
27513
  };
27510
27514
  };
27511
27515
  contact: {
27512
- source?: string;
27516
+ source?: string | null;
27513
27517
  overrides: {
27514
27518
  [key: string]: string;
27515
27519
  };
27516
27520
  };
27517
27521
  listing: {
27518
- source?: string;
27522
+ source?: string | null;
27519
27523
  overrides: {
27520
27524
  [key: string]: string;
27521
27525
  };
27522
27526
  };
27523
27527
  account: {
27524
- source?: string;
27528
+ source?: string | null;
27525
27529
  overrides: {
27526
27530
  [key: string]: string;
27527
27531
  };
27528
27532
  };
27529
27533
  lineDescription: {
27530
- source?: string;
27534
+ source?: string | null;
27531
27535
  };
27532
27536
  appliedAmount: {
27533
- source?: string;
27537
+ source?: string | null;
27534
27538
  };
27535
27539
  merchantFee: {
27536
- source?: string;
27540
+ source?: string | null;
27537
27541
  };
27538
27542
  channelFee: {
27539
- source?: string;
27543
+ source?: string | null;
27540
27544
  };
27541
27545
  reserve: {
27542
- source?: string;
27546
+ source?: string | null;
27543
27547
  };
27544
27548
  coHostPayout: {
27545
- source?: string;
27549
+ source?: string | null;
27546
27550
  };
27547
27551
  vat: {
27548
- source?: string;
27552
+ source?: string | null;
27549
27553
  };
27550
27554
  };
27551
27555
  };
@@ -27905,23 +27909,6 @@ export interface operations {
27905
27909
  };
27906
27910
  excludedRows: number[];
27907
27911
  };
27908
- sampleRows: {
27909
- rowNumber: number;
27910
- source: {
27911
- [key: string]: string | null;
27912
- };
27913
- transformed?: {
27914
- Date: string;
27915
- Description: string;
27916
- Amount: number;
27917
- } | null;
27918
- systemExclusion?: {
27919
- /** @constant */
27920
- code: "beforeBankRecordStartDate";
27921
- bankRecordStartDate: string;
27922
- };
27923
- }[];
27924
- sampleRowsTruncated: boolean;
27925
27912
  totals: {
27926
27913
  rows: number;
27927
27914
  valid: number;
@@ -27963,13 +27950,13 @@ export interface operations {
27963
27950
  excludedRows: number[];
27964
27951
  fields: {
27965
27952
  listing: {
27966
- source?: string;
27953
+ source?: string | null;
27967
27954
  overrides: {
27968
27955
  [key: string]: string;
27969
27956
  };
27970
27957
  };
27971
27958
  ownerKind: {
27972
- source?: string;
27959
+ source?: string | null;
27973
27960
  /** @enum {string} */
27974
27961
  constant?: "individual" | "company";
27975
27962
  values: {
@@ -27977,55 +27964,55 @@ export interface operations {
27977
27964
  };
27978
27965
  };
27979
27966
  firstName: {
27980
- source?: string;
27967
+ source?: string | null;
27981
27968
  };
27982
27969
  lastName: {
27983
- source?: string;
27970
+ source?: string | null;
27984
27971
  };
27985
27972
  companyName: {
27986
- source?: string;
27973
+ source?: string | null;
27987
27974
  };
27988
27975
  companyType: {
27989
- source?: string;
27976
+ source?: string | null;
27990
27977
  values: {
27991
27978
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
27992
27979
  };
27993
27980
  };
27994
27981
  ownerReference: {
27995
- source?: string;
27982
+ source?: string | null;
27996
27983
  overrides: {
27997
27984
  [key: string]: string;
27998
27985
  };
27999
27986
  };
28000
27987
  email: {
28001
- source?: string;
27988
+ source?: string | null;
28002
27989
  };
28003
27990
  phone: {
28004
- source?: string;
27991
+ source?: string | null;
28005
27992
  };
28006
27993
  taxIdentifier: {
28007
- source?: string;
27994
+ source?: string | null;
28008
27995
  };
28009
27996
  address: {
28010
- source?: string;
27997
+ source?: string | null;
28011
27998
  };
28012
27999
  unit: {
28013
- source?: string;
28000
+ source?: string | null;
28014
28001
  };
28015
28002
  city: {
28016
- source?: string;
28003
+ source?: string | null;
28017
28004
  };
28018
28005
  state: {
28019
- source?: string;
28006
+ source?: string | null;
28020
28007
  };
28021
28008
  postalCode: {
28022
- source?: string;
28009
+ source?: string | null;
28023
28010
  };
28024
28011
  country: {
28025
- source?: string;
28012
+ source?: string | null;
28026
28013
  };
28027
28014
  payoutAccount: {
28028
- source?: string;
28015
+ source?: string | null;
28029
28016
  overrides: {
28030
28017
  [key: string]: string;
28031
28018
  };
@@ -28075,21 +28062,21 @@ export interface operations {
28075
28062
  excludedRows: number[];
28076
28063
  fields: {
28077
28064
  billReference: {
28078
- source?: string;
28065
+ source?: string | null;
28079
28066
  };
28080
28067
  issueDate: {
28081
- source?: string;
28068
+ source?: string | null;
28082
28069
  /** @enum {string} */
28083
28070
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
28084
28071
  };
28085
28072
  vendor: {
28086
- source?: string;
28073
+ source?: string | null;
28087
28074
  overrides: {
28088
28075
  [key: string]: string;
28089
28076
  };
28090
28077
  };
28091
28078
  status: {
28092
- source?: string;
28079
+ source?: string | null;
28093
28080
  /** @enum {string} */
28094
28081
  constant?: "paid" | "unpaid";
28095
28082
  values: {
@@ -28097,58 +28084,58 @@ export interface operations {
28097
28084
  };
28098
28085
  };
28099
28086
  paymentDate: {
28100
- source?: string;
28087
+ source?: string | null;
28101
28088
  /** @enum {string} */
28102
28089
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
28103
28090
  };
28104
28091
  bankAccount: {
28105
- source?: string;
28092
+ source?: string | null;
28106
28093
  overrides: {
28107
28094
  [key: string]: string;
28108
28095
  };
28109
28096
  };
28110
28097
  currency: {
28111
- source?: string;
28098
+ source?: string | null;
28112
28099
  };
28113
28100
  description: {
28114
- source?: string;
28101
+ source?: string | null;
28115
28102
  };
28116
28103
  lineDescription: {
28117
- source?: string;
28104
+ source?: string | null;
28118
28105
  };
28119
28106
  expenseAccount: {
28120
- source?: string;
28107
+ source?: string | null;
28121
28108
  overrides: {
28122
28109
  [key: string]: string;
28123
28110
  };
28124
28111
  };
28125
28112
  appliedAmount: {
28126
- source?: string;
28113
+ source?: string | null;
28127
28114
  };
28128
28115
  reservation: {
28129
- source?: string;
28116
+ source?: string | null;
28130
28117
  overrides: {
28131
28118
  [key: string]: string;
28132
28119
  };
28133
28120
  };
28134
28121
  listing: {
28135
- source?: string;
28122
+ source?: string | null;
28136
28123
  overrides: {
28137
28124
  [key: string]: string;
28138
28125
  };
28139
28126
  };
28140
28127
  billToOwner: {
28141
- source?: string;
28128
+ source?: string | null;
28142
28129
  constant?: boolean;
28143
28130
  values: {
28144
28131
  [key: string]: boolean;
28145
28132
  };
28146
28133
  };
28147
28134
  markup: {
28148
- source?: string;
28135
+ source?: string | null;
28149
28136
  };
28150
28137
  markupTax: {
28151
- source?: string;
28138
+ source?: string | null;
28152
28139
  overrides: {
28153
28140
  [key: string]: string;
28154
28141
  };
@@ -28202,7 +28189,7 @@ export interface operations {
28202
28189
  excludedRows: number[];
28203
28190
  fields: {
28204
28191
  vendorKind: {
28205
- source?: string;
28192
+ source?: string | null;
28206
28193
  /** @enum {string} */
28207
28194
  constant?: "individual" | "company";
28208
28195
  values: {
@@ -28210,52 +28197,52 @@ export interface operations {
28210
28197
  };
28211
28198
  };
28212
28199
  firstName: {
28213
- source?: string;
28200
+ source?: string | null;
28214
28201
  };
28215
28202
  lastName: {
28216
- source?: string;
28203
+ source?: string | null;
28217
28204
  };
28218
28205
  companyName: {
28219
- source?: string;
28206
+ source?: string | null;
28220
28207
  };
28221
28208
  companyType: {
28222
- source?: string;
28209
+ source?: string | null;
28223
28210
  values: {
28224
28211
  [key: string]: "c_corporation" | "limited_liability_company" | "partnership" | "s_corporation" | "trust_estate";
28225
28212
  };
28226
28213
  };
28227
28214
  vendorReference: {
28228
- source?: string;
28215
+ source?: string | null;
28229
28216
  overrides: {
28230
28217
  [key: string]: string;
28231
28218
  };
28232
28219
  };
28233
28220
  email: {
28234
- source?: string;
28221
+ source?: string | null;
28235
28222
  };
28236
28223
  phone: {
28237
- source?: string;
28224
+ source?: string | null;
28238
28225
  };
28239
28226
  taxIdentifier: {
28240
- source?: string;
28227
+ source?: string | null;
28241
28228
  };
28242
28229
  address: {
28243
- source?: string;
28230
+ source?: string | null;
28244
28231
  };
28245
28232
  unit: {
28246
- source?: string;
28233
+ source?: string | null;
28247
28234
  };
28248
28235
  city: {
28249
- source?: string;
28236
+ source?: string | null;
28250
28237
  };
28251
28238
  state: {
28252
- source?: string;
28239
+ source?: string | null;
28253
28240
  };
28254
28241
  postalCode: {
28255
- source?: string;
28242
+ source?: string | null;
28256
28243
  };
28257
28244
  country: {
28258
- source?: string;
28245
+ source?: string | null;
28259
28246
  };
28260
28247
  };
28261
28248
  };
@@ -28301,69 +28288,69 @@ export interface operations {
28301
28288
  excludedRows: number[];
28302
28289
  fields: {
28303
28290
  reference: {
28304
- source?: string;
28291
+ source?: string | null;
28305
28292
  };
28306
28293
  date: {
28307
- source?: string;
28294
+ source?: string | null;
28308
28295
  /** @enum {string} */
28309
28296
  format?: "yyyy-mm-dd" | "mm/dd/yyyy" | "dd/mm/yyyy" | "dd.mm.yyyy";
28310
28297
  };
28311
28298
  bankAccount: {
28312
- source?: string;
28299
+ source?: string | null;
28313
28300
  overrides: {
28314
28301
  [key: string]: string;
28315
28302
  };
28316
28303
  };
28317
28304
  description: {
28318
- source?: string;
28305
+ source?: string | null;
28319
28306
  };
28320
28307
  currency: {
28321
- source?: string;
28308
+ source?: string | null;
28322
28309
  };
28323
28310
  reservation: {
28324
- source?: string;
28311
+ source?: string | null;
28325
28312
  overrides: {
28326
28313
  [key: string]: string;
28327
28314
  };
28328
28315
  };
28329
28316
  contact: {
28330
- source?: string;
28317
+ source?: string | null;
28331
28318
  overrides: {
28332
28319
  [key: string]: string;
28333
28320
  };
28334
28321
  };
28335
28322
  listing: {
28336
- source?: string;
28323
+ source?: string | null;
28337
28324
  overrides: {
28338
28325
  [key: string]: string;
28339
28326
  };
28340
28327
  };
28341
28328
  account: {
28342
- source?: string;
28329
+ source?: string | null;
28343
28330
  overrides: {
28344
28331
  [key: string]: string;
28345
28332
  };
28346
28333
  };
28347
28334
  lineDescription: {
28348
- source?: string;
28335
+ source?: string | null;
28349
28336
  };
28350
28337
  appliedAmount: {
28351
- source?: string;
28338
+ source?: string | null;
28352
28339
  };
28353
28340
  merchantFee: {
28354
- source?: string;
28341
+ source?: string | null;
28355
28342
  };
28356
28343
  channelFee: {
28357
- source?: string;
28344
+ source?: string | null;
28358
28345
  };
28359
28346
  reserve: {
28360
- source?: string;
28347
+ source?: string | null;
28361
28348
  };
28362
28349
  coHostPayout: {
28363
- source?: string;
28350
+ source?: string | null;
28364
28351
  };
28365
28352
  vat: {
28366
- source?: string;
28353
+ source?: string | null;
28367
28354
  };
28368
28355
  };
28369
28356
  };
@@ -30101,6 +30088,8 @@ export interface operations {
30101
30088
  last4: string | null;
30102
30089
  /** @enum {string} */
30103
30090
  status: "notConfigured" | "pending" | "ready" | "failed";
30091
+ /** @description Safe failure detail from the latest Ramp ACH setup attempt. */
30092
+ failureReason?: string | null;
30104
30093
  /** @description True when a Ramp payment is requested or processing. Bank changes remain allowed and affect future payments only. */
30105
30094
  hasInFlightPayment: boolean;
30106
30095
  };
@@ -31669,6 +31658,8 @@ export interface operations {
31669
31658
  last4: string | null;
31670
31659
  /** @enum {string} */
31671
31660
  status: "notConfigured" | "pending" | "ready" | "failed";
31661
+ /** @description Safe failure detail from the latest Ramp ACH setup attempt. */
31662
+ failureReason?: string | null;
31672
31663
  /** @description True when a Ramp payment is requested or processing. Bank changes remain allowed and affect future payments only. */
31673
31664
  hasInFlightPayment: boolean;
31674
31665
  };
@@ -62326,7 +62317,7 @@ export interface operations {
62326
62317
  startAt?: string | null;
62327
62318
  endAt?: string | null;
62328
62319
  reserve?: number | null;
62329
- /** @description One or more unique owners for an active period; use an empty array only with setListingInactive=true */
62320
+ /** @description One or more unique owners for an active period; canonical explicit splits total 100000 basis points, while legacy 100-point totals remain accepted; use an empty array only with setListingInactive=true */
62330
62321
  members: {
62331
62322
  contactId?: string | null;
62332
62323
  split?: number | null;
@@ -62895,7 +62886,7 @@ export interface operations {
62895
62886
  startAt?: string | null;
62896
62887
  endAt?: string | null;
62897
62888
  reserve?: number | null;
62898
- /** @description One or more unique owners for an active period; use an empty array only with setListingInactive=true */
62889
+ /** @description One or more unique owners for an active period; canonical explicit splits total 100000 basis points, while legacy 100-point totals remain accepted; use an empty array only with setListingInactive=true */
62899
62890
  members?: {
62900
62891
  contactId?: string | null;
62901
62892
  split?: number | null;
@@ -115339,6 +115330,8 @@ export interface operations {
115339
115330
  last4: string | null;
115340
115331
  /** @enum {string} */
115341
115332
  status: "notConfigured" | "pending" | "ready" | "failed";
115333
+ /** @description Safe failure detail from the latest Ramp ACH setup attempt. */
115334
+ failureReason?: string | null;
115342
115335
  } | null;
115343
115336
  ready: boolean;
115344
115337
  }[];
@@ -142149,6 +142142,265 @@ export interface operations {
142149
142142
  };
142150
142143
  };
142151
142144
  };
142145
+ postTransactionsByIdProviderPaymentsByProviderPaymentIdCancel: {
142146
+ parameters: {
142147
+ query?: never;
142148
+ header?: never;
142149
+ path: {
142150
+ id: string;
142151
+ providerPaymentId: string;
142152
+ };
142153
+ cookie?: never;
142154
+ };
142155
+ requestBody?: {
142156
+ content: {
142157
+ "application/json": Record<string, never>;
142158
+ };
142159
+ };
142160
+ responses: {
142161
+ /** @description Successful response */
142162
+ 200: {
142163
+ headers: {
142164
+ [name: string]: unknown;
142165
+ };
142166
+ content: {
142167
+ "application/json": {
142168
+ /** Format: uuid */
142169
+ providerPaymentId: string;
142170
+ /** Format: uuid */
142171
+ syncId: string;
142172
+ /** @constant */
142173
+ status: "requested";
142174
+ };
142175
+ };
142176
+ };
142177
+ /** @description Bad request */
142178
+ 400: {
142179
+ headers: {
142180
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142181
+ "Retry-After"?: number;
142182
+ [name: string]: unknown;
142183
+ };
142184
+ content: {
142185
+ "application/json": {
142186
+ code: string;
142187
+ message: string;
142188
+ links?: {
142189
+ docs: string;
142190
+ schema: string;
142191
+ };
142192
+ issues?: {
142193
+ message: string;
142194
+ path?: (string | number)[];
142195
+ schema?: string;
142196
+ }[];
142197
+ retryable?: boolean;
142198
+ context?: unknown;
142199
+ };
142200
+ };
142201
+ };
142202
+ /** @description Unauthorized */
142203
+ 401: {
142204
+ headers: {
142205
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142206
+ "Retry-After"?: number;
142207
+ [name: string]: unknown;
142208
+ };
142209
+ content: {
142210
+ "application/json": {
142211
+ code: string;
142212
+ message: string;
142213
+ links?: {
142214
+ docs: string;
142215
+ schema: string;
142216
+ };
142217
+ issues?: {
142218
+ message: string;
142219
+ path?: (string | number)[];
142220
+ schema?: string;
142221
+ }[];
142222
+ retryable?: boolean;
142223
+ context?: unknown;
142224
+ };
142225
+ };
142226
+ };
142227
+ /** @description Forbidden */
142228
+ 403: {
142229
+ headers: {
142230
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142231
+ "Retry-After"?: number;
142232
+ [name: string]: unknown;
142233
+ };
142234
+ content: {
142235
+ "application/json": {
142236
+ code: string;
142237
+ message: string;
142238
+ links?: {
142239
+ docs: string;
142240
+ schema: string;
142241
+ };
142242
+ issues?: {
142243
+ message: string;
142244
+ path?: (string | number)[];
142245
+ schema?: string;
142246
+ }[];
142247
+ retryable?: boolean;
142248
+ context?: unknown;
142249
+ };
142250
+ };
142251
+ };
142252
+ /** @description Not found */
142253
+ 404: {
142254
+ headers: {
142255
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142256
+ "Retry-After"?: number;
142257
+ [name: string]: unknown;
142258
+ };
142259
+ content: {
142260
+ "application/json": {
142261
+ code: string;
142262
+ message: string;
142263
+ links?: {
142264
+ docs: string;
142265
+ schema: string;
142266
+ };
142267
+ issues?: {
142268
+ message: string;
142269
+ path?: (string | number)[];
142270
+ schema?: string;
142271
+ }[];
142272
+ retryable?: boolean;
142273
+ context?: unknown;
142274
+ };
142275
+ };
142276
+ };
142277
+ /** @description Conflict */
142278
+ 409: {
142279
+ headers: {
142280
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142281
+ "Retry-After"?: number;
142282
+ [name: string]: unknown;
142283
+ };
142284
+ content: {
142285
+ "application/json": {
142286
+ code: string;
142287
+ message: string;
142288
+ links?: {
142289
+ docs: string;
142290
+ schema: string;
142291
+ };
142292
+ issues?: {
142293
+ message: string;
142294
+ path?: (string | number)[];
142295
+ schema?: string;
142296
+ }[];
142297
+ retryable?: boolean;
142298
+ context?: unknown;
142299
+ };
142300
+ };
142301
+ };
142302
+ /** @description Gone */
142303
+ 410: {
142304
+ headers: {
142305
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142306
+ "Retry-After"?: number;
142307
+ [name: string]: unknown;
142308
+ };
142309
+ content: {
142310
+ "application/json": {
142311
+ code: string;
142312
+ message: string;
142313
+ links?: {
142314
+ docs: string;
142315
+ schema: string;
142316
+ };
142317
+ issues?: {
142318
+ message: string;
142319
+ path?: (string | number)[];
142320
+ schema?: string;
142321
+ }[];
142322
+ retryable?: boolean;
142323
+ context?: unknown;
142324
+ };
142325
+ };
142326
+ };
142327
+ /** @description Unprocessable content */
142328
+ 422: {
142329
+ headers: {
142330
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142331
+ "Retry-After"?: number;
142332
+ [name: string]: unknown;
142333
+ };
142334
+ content: {
142335
+ "application/json": {
142336
+ code: string;
142337
+ message: string;
142338
+ links?: {
142339
+ docs: string;
142340
+ schema: string;
142341
+ };
142342
+ issues?: {
142343
+ message: string;
142344
+ path?: (string | number)[];
142345
+ schema?: string;
142346
+ }[];
142347
+ retryable?: boolean;
142348
+ context?: unknown;
142349
+ };
142350
+ };
142351
+ };
142352
+ /** @description Internal server error */
142353
+ 500: {
142354
+ headers: {
142355
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142356
+ "Retry-After"?: number;
142357
+ [name: string]: unknown;
142358
+ };
142359
+ content: {
142360
+ "application/json": {
142361
+ code: string;
142362
+ message: string;
142363
+ links?: {
142364
+ docs: string;
142365
+ schema: string;
142366
+ };
142367
+ issues?: {
142368
+ message: string;
142369
+ path?: (string | number)[];
142370
+ schema?: string;
142371
+ }[];
142372
+ retryable?: boolean;
142373
+ context?: unknown;
142374
+ };
142375
+ };
142376
+ };
142377
+ /** @description Service unavailable */
142378
+ 503: {
142379
+ headers: {
142380
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
142381
+ "Retry-After"?: number;
142382
+ [name: string]: unknown;
142383
+ };
142384
+ content: {
142385
+ "application/json": {
142386
+ code: string;
142387
+ message: string;
142388
+ links?: {
142389
+ docs: string;
142390
+ schema: string;
142391
+ };
142392
+ issues?: {
142393
+ message: string;
142394
+ path?: (string | number)[];
142395
+ schema?: string;
142396
+ }[];
142397
+ retryable?: boolean;
142398
+ context?: unknown;
142399
+ };
142400
+ };
142401
+ };
142402
+ };
142403
+ };
142152
142404
  putTransactionsByTransactionIdLinesById: {
142153
142405
  parameters: {
142154
142406
  query?: {