@vrplatform/api 1.3.0-stage.1284 → 1.3.0-stage.1292

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.
@@ -759,6 +759,23 @@ export interface paths {
759
759
  patch?: never;
760
760
  trace?: never;
761
761
  };
762
+ "/statements/{id}/refresh-layout": {
763
+ parameters: {
764
+ query?: never;
765
+ header?: never;
766
+ path?: never;
767
+ cookie?: never;
768
+ };
769
+ get?: never;
770
+ put?: never;
771
+ /** @description Refresh the templateJson of a statement to match the current layout configuration. Use this when a layout has been updated after a statement was published. */
772
+ post: operations["refreshOwnerStatementLayout"];
773
+ delete?: never;
774
+ options?: never;
775
+ head?: never;
776
+ patch?: never;
777
+ trace?: never;
778
+ };
762
779
  "/transactions/line-mappings": {
763
780
  parameters: {
764
781
  query?: never;
@@ -6030,7 +6047,7 @@ export interface operations {
6030
6047
  data: {
6031
6048
  /** Format: uuid */
6032
6049
  listingId: string;
6033
- /** @default 2025-12-10 */
6050
+ /** @default 2025-12-11 */
6034
6051
  startAt: string;
6035
6052
  endAt?: string | null;
6036
6053
  setListingInactive?: boolean | null;
@@ -6121,7 +6138,7 @@ export interface operations {
6121
6138
  "application/json": {
6122
6139
  /** Format: uuid */
6123
6140
  listingId: string;
6124
- /** @default 2025-12-10 */
6141
+ /** @default 2025-12-11 */
6125
6142
  startAt?: string;
6126
6143
  endAt?: string | null;
6127
6144
  members: {
@@ -6155,7 +6172,7 @@ export interface operations {
6155
6172
  "application/json": {
6156
6173
  /** Format: uuid */
6157
6174
  listingId: string;
6158
- /** @default 2025-12-10 */
6175
+ /** @default 2025-12-11 */
6159
6176
  startAt: string;
6160
6177
  endAt?: string | null;
6161
6178
  setListingInactive?: boolean | null;
@@ -6235,7 +6252,7 @@ export interface operations {
6235
6252
  "application/json": {
6236
6253
  /** Format: uuid */
6237
6254
  listingId: string;
6238
- /** @default 2025-12-10 */
6255
+ /** @default 2025-12-11 */
6239
6256
  startAt: string;
6240
6257
  endAt?: string | null;
6241
6258
  setListingInactive?: boolean | null;
@@ -6318,7 +6335,7 @@ export interface operations {
6318
6335
  "application/json": {
6319
6336
  /** Format: uuid */
6320
6337
  listingId?: string;
6321
- /** @default 2025-12-10 */
6338
+ /** @default 2025-12-11 */
6322
6339
  startAt?: string;
6323
6340
  endAt?: string | null;
6324
6341
  members?: {
@@ -6352,7 +6369,7 @@ export interface operations {
6352
6369
  "application/json": {
6353
6370
  /** Format: uuid */
6354
6371
  listingId: string;
6355
- /** @default 2025-12-10 */
6372
+ /** @default 2025-12-11 */
6356
6373
  startAt: string;
6357
6374
  endAt?: string | null;
6358
6375
  setListingInactive?: boolean | null;
@@ -6550,7 +6567,7 @@ export interface operations {
6550
6567
  /** Format: uuid */
6551
6568
  sourceId?: string | null;
6552
6569
  initialOwnership?: {
6553
- /** @default 2025-12-10 */
6570
+ /** @default 2025-12-11 */
6554
6571
  startAt?: string;
6555
6572
  endAt?: string | null;
6556
6573
  members: {
@@ -6847,7 +6864,7 @@ export interface operations {
6847
6864
  /** Format: uuid */
6848
6865
  sourceId?: string | null;
6849
6866
  initialOwnership?: {
6850
- /** @default 2025-12-10 */
6867
+ /** @default 2025-12-11 */
6851
6868
  startAt?: string;
6852
6869
  endAt?: string | null;
6853
6870
  members: {
@@ -7309,7 +7326,7 @@ export interface operations {
7309
7326
  /** Format: uuid */
7310
7327
  sourceId?: string | null;
7311
7328
  initialOwnership?: {
7312
- /** @default 2025-12-10 */
7329
+ /** @default 2025-12-11 */
7313
7330
  startAt?: string;
7314
7331
  endAt?: string | null;
7315
7332
  members: {
@@ -7363,7 +7380,7 @@ export interface operations {
7363
7380
  status: "active" | "inactive";
7364
7381
  defaultCurrency?: string | null;
7365
7382
  activeOwnership?: {
7366
- /** @default 2025-12-10 */
7383
+ /** @default 2025-12-11 */
7367
7384
  startAt: string;
7368
7385
  endAt?: string | null;
7369
7386
  setListingInactive?: boolean | null;
@@ -11328,6 +11345,8 @@ export interface operations {
11328
11345
  lines: {
11329
11346
  uniqueRef?: string | null;
11330
11347
  description: string;
11348
+ /** @enum {string|null} */
11349
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
11331
11350
  /** @description Value in cents (100 = 1€) */
11332
11351
  amount: number;
11333
11352
  /** Format: uuid */
@@ -13975,6 +13994,72 @@ export interface operations {
13975
13994
  };
13976
13995
  };
13977
13996
  };
13997
+ refreshOwnerStatementLayout: {
13998
+ parameters: {
13999
+ query?: never;
14000
+ header?: {
14001
+ "X-Team-Id"?: string;
14002
+ };
14003
+ path: {
14004
+ id: string;
14005
+ };
14006
+ cookie?: never;
14007
+ };
14008
+ requestBody?: never;
14009
+ responses: {
14010
+ /** @description Successful response */
14011
+ 200: {
14012
+ headers: {
14013
+ [name: string]: unknown;
14014
+ };
14015
+ content: {
14016
+ "application/json": {
14017
+ /** Format: uuid */
14018
+ id: string;
14019
+ /** Format: uuid */
14020
+ layoutId: string | null;
14021
+ templateJsonUpdated: boolean;
14022
+ };
14023
+ };
14024
+ };
14025
+ /** @description Invalid input data */
14026
+ 400: {
14027
+ headers: {
14028
+ [name: string]: unknown;
14029
+ };
14030
+ content: {
14031
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
14032
+ };
14033
+ };
14034
+ /** @description Authorization not provided */
14035
+ 401: {
14036
+ headers: {
14037
+ [name: string]: unknown;
14038
+ };
14039
+ content: {
14040
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
14041
+ };
14042
+ };
14043
+ /** @description Insufficient access */
14044
+ 403: {
14045
+ headers: {
14046
+ [name: string]: unknown;
14047
+ };
14048
+ content: {
14049
+ "application/json": components["schemas"]["error.FORBIDDEN"];
14050
+ };
14051
+ };
14052
+ /** @description Internal server error */
14053
+ 500: {
14054
+ headers: {
14055
+ [name: string]: unknown;
14056
+ };
14057
+ content: {
14058
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
14059
+ };
14060
+ };
14061
+ };
14062
+ };
13978
14063
  getTransactionLineMappings: {
13979
14064
  parameters: {
13980
14065
  query?: {
@@ -14255,6 +14340,8 @@ export interface operations {
14255
14340
  lines: {
14256
14341
  uniqueRef?: string | null;
14257
14342
  description: string;
14343
+ /** @enum {string|null} */
14344
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
14258
14345
  /** @description Value in cents (100 = 1€) */
14259
14346
  amount: number;
14260
14347
  /** Format: uuid */
@@ -14501,6 +14588,8 @@ export interface operations {
14501
14588
  lines: {
14502
14589
  uniqueRef?: string | null;
14503
14590
  description: string;
14591
+ /** @enum {string|null} */
14592
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
14504
14593
  /** @description Value in cents (100 = 1€) */
14505
14594
  amount: number;
14506
14595
  /** Format: uuid */
@@ -14731,6 +14820,8 @@ export interface operations {
14731
14820
  lines: {
14732
14821
  uniqueRef?: string | null;
14733
14822
  description: string;
14823
+ /** @enum {string|null} */
14824
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
14734
14825
  /** @description Value in cents (100 = 1€) */
14735
14826
  amount: number;
14736
14827
  /** Format: uuid */
@@ -15005,6 +15096,8 @@ export interface operations {
15005
15096
  lines: {
15006
15097
  uniqueRef?: string | null;
15007
15098
  description: string;
15099
+ /** @enum {string|null} */
15100
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
15008
15101
  /** @description Value in cents (100 = 1€) */
15009
15102
  amount: number;
15010
15103
  /** Format: uuid */
@@ -15241,6 +15334,8 @@ export interface operations {
15241
15334
  lines: {
15242
15335
  uniqueRef?: string | null;
15243
15336
  description: string;
15337
+ /** @enum {string|null} */
15338
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
15244
15339
  /** @description Value in cents (100 = 1€) */
15245
15340
  amount: number;
15246
15341
  /** Format: uuid */
@@ -15436,6 +15531,8 @@ export interface operations {
15436
15531
  lines: {
15437
15532
  uniqueRef?: string | null;
15438
15533
  description: string;
15534
+ /** @enum {string|null} */
15535
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
15439
15536
  /** @description Value in cents (100 = 1€) */
15440
15537
  amount: number;
15441
15538
  /** Format: uuid */
@@ -15850,6 +15947,7 @@ export interface operations {
15850
15947
  parameters: {
15851
15948
  query?: {
15852
15949
  type?: "deposit" | "expense" | "transfer";
15950
+ status?: "active" | "inactive";
15853
15951
  includeLines?: boolean;
15854
15952
  accountId?: string;
15855
15953
  hasActiveJournalEntries?: boolean;
@@ -15857,6 +15955,7 @@ export interface operations {
15857
15955
  dateRange?: string;
15858
15956
  isDateRangeEndInclusive?: boolean;
15859
15957
  uniqueRefs?: string;
15958
+ ids?: string;
15860
15959
  search?: string;
15861
15960
  recurringTemplateId?: string;
15862
15961
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
@@ -15892,6 +15991,8 @@ export interface operations {
15892
15991
  lines?: {
15893
15992
  uniqueRef?: string | null;
15894
15993
  description: string;
15994
+ /** @enum {string|null} */
15995
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
15895
15996
  /** @description Value in cents (100 = 1€) */
15896
15997
  amount: number;
15897
15998
  /** Format: uuid */
@@ -16198,6 +16299,8 @@ export interface operations {
16198
16299
  lines: {
16199
16300
  uniqueRef?: string | null;
16200
16301
  description: string;
16302
+ /** @enum {string|null} */
16303
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
16201
16304
  /** @description Value in cents (100 = 1€) */
16202
16305
  amount: number;
16203
16306
  /** Format: uuid */
@@ -16414,6 +16517,8 @@ export interface operations {
16414
16517
  lines: {
16415
16518
  uniqueRef?: string | null;
16416
16519
  description: string;
16520
+ /** @enum {string|null} */
16521
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
16417
16522
  /** @description Value in cents (100 = 1€) */
16418
16523
  amount: number;
16419
16524
  /** Format: uuid */
@@ -16713,6 +16818,8 @@ export interface operations {
16713
16818
  lines: {
16714
16819
  uniqueRef?: string | null;
16715
16820
  description: string;
16821
+ /** @enum {string|null} */
16822
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
16716
16823
  /** @description Value in cents (100 = 1€) */
16717
16824
  amount: number;
16718
16825
  /** Format: uuid */
@@ -17672,6 +17779,8 @@ export interface operations {
17672
17779
  lines: {
17673
17780
  uniqueRef?: string | null;
17674
17781
  description: string;
17782
+ /** @enum {string|null} */
17783
+ assignment?: "accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer" | null;
17675
17784
  /** @description Value in cents (100 = 1€) */
17676
17785
  amount: number;
17677
17786
  /** Format: uuid */