@vrplatform/api 1.2.33-stage.858 → 1.2.33-stage.860

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.
@@ -8125,7 +8125,7 @@ export interface operations {
8125
8125
  /** Format: uuid */
8126
8126
  listingId: string;
8127
8127
  /** @description Value in cents (100 = 1€) */
8128
- centTotal: number;
8128
+ amount: number;
8129
8129
  currency: string;
8130
8130
  effectiveAt: string | null;
8131
8131
  note?: string | null;
@@ -8195,7 +8195,7 @@ export interface operations {
8195
8195
  content: {
8196
8196
  "application/json": {
8197
8197
  /** @description Value in cents (100 = 1€) */
8198
- centTotal: number;
8198
+ amount: number;
8199
8199
  currency?: string | null;
8200
8200
  effectiveAt?: string | null;
8201
8201
  note?: string | null;
@@ -8213,7 +8213,7 @@ export interface operations {
8213
8213
  /** Format: uuid */
8214
8214
  listingId: string;
8215
8215
  /** @description Value in cents (100 = 1€) */
8216
- centTotal: number;
8216
+ amount: number;
8217
8217
  currency: string;
8218
8218
  effectiveAt: string | null;
8219
8219
  note?: string | null;
@@ -8286,13 +8286,39 @@ export interface operations {
8286
8286
  };
8287
8287
  content: {
8288
8288
  "application/json": {
8289
- /** @description Value in cents (100 = 1€) */
8290
- taxPayableCentTotal: number;
8291
- /** @description Value in cents (100 = 1€) */
8292
- advancedDepositsCentTotal: number;
8293
- currency: string;
8294
- note?: string | null;
8295
- updatedAt?: string | null;
8289
+ taxPayable: {
8290
+ /** @description Value in cents (100 = 1€) */
8291
+ amount: number;
8292
+ currency: string;
8293
+ effectiveAt: string | null;
8294
+ note?: string | null;
8295
+ updatedAt?: string | null;
8296
+ };
8297
+ advancedDeposits: {
8298
+ /** @description Value in cents (100 = 1€) */
8299
+ amount: number;
8300
+ currency: string;
8301
+ effectiveAt: string | null;
8302
+ note?: string | null;
8303
+ updatedAt?: string | null;
8304
+ /** Format: uuid */
8305
+ transactionId?: string | null;
8306
+ account?: {
8307
+ /** Format: uuid */
8308
+ id: string;
8309
+ name: string;
8310
+ } | null;
8311
+ reservations: {
8312
+ /** Format: uuid */
8313
+ reservationId?: string | null;
8314
+ /** Format: uuid */
8315
+ listingId?: string | null;
8316
+ /** @description Value in cents (100 = 1€) */
8317
+ payment: number;
8318
+ /** @description Value in cents (100 = 1€) */
8319
+ refund: number;
8320
+ }[];
8321
+ };
8296
8322
  };
8297
8323
  };
8298
8324
  };
@@ -8356,7 +8382,7 @@ export interface operations {
8356
8382
  content: {
8357
8383
  "application/json": {
8358
8384
  /** @description Value in cents (100 = 1€) */
8359
- centTotal: number;
8385
+ amount: number;
8360
8386
  currency?: string | null;
8361
8387
  effectiveAt?: string | null;
8362
8388
  note?: string | null;
@@ -8371,13 +8397,39 @@ export interface operations {
8371
8397
  };
8372
8398
  content: {
8373
8399
  "application/json": {
8374
- /** @description Value in cents (100 = 1€) */
8375
- taxPayableCentTotal: number;
8376
- /** @description Value in cents (100 = 1€) */
8377
- advancedDepositsCentTotal: number;
8378
- currency: string;
8379
- note?: string | null;
8380
- updatedAt?: string | null;
8400
+ taxPayable: {
8401
+ /** @description Value in cents (100 = 1€) */
8402
+ amount: number;
8403
+ currency: string;
8404
+ effectiveAt: string | null;
8405
+ note?: string | null;
8406
+ updatedAt?: string | null;
8407
+ };
8408
+ advancedDeposits: {
8409
+ /** @description Value in cents (100 = 1€) */
8410
+ amount: number;
8411
+ currency: string;
8412
+ effectiveAt: string | null;
8413
+ note?: string | null;
8414
+ updatedAt?: string | null;
8415
+ /** Format: uuid */
8416
+ transactionId?: string | null;
8417
+ account?: {
8418
+ /** Format: uuid */
8419
+ id: string;
8420
+ name: string;
8421
+ } | null;
8422
+ reservations: {
8423
+ /** Format: uuid */
8424
+ reservationId?: string | null;
8425
+ /** Format: uuid */
8426
+ listingId?: string | null;
8427
+ /** @description Value in cents (100 = 1€) */
8428
+ payment: number;
8429
+ /** @description Value in cents (100 = 1€) */
8430
+ refund: number;
8431
+ }[];
8432
+ };
8381
8433
  };
8382
8434
  };
8383
8435
  };
@@ -8440,13 +8492,23 @@ export interface operations {
8440
8492
  requestBody: {
8441
8493
  content: {
8442
8494
  "application/json": {
8495
+ /** Format: uuid */
8496
+ accountId: string;
8443
8497
  /** @description Value in cents (100 = 1€) */
8444
- centTotal: number;
8498
+ amount: number;
8445
8499
  currency?: string | null;
8446
8500
  effectiveAt?: string | null;
8447
- /** Format: uuid */
8448
- accountId: string;
8449
8501
  note?: string | null;
8502
+ reservations: {
8503
+ /** Format: uuid */
8504
+ reservationId: string;
8505
+ /** Format: uuid */
8506
+ listingId?: string | null;
8507
+ /** @description Value in cents (100 = 1€) */
8508
+ payment?: number | null;
8509
+ /** @description Value in cents (100 = 1€) */
8510
+ refund?: number | null;
8511
+ }[];
8450
8512
  };
8451
8513
  };
8452
8514
  };
@@ -8458,13 +8520,39 @@ export interface operations {
8458
8520
  };
8459
8521
  content: {
8460
8522
  "application/json": {
8461
- /** @description Value in cents (100 = 1€) */
8462
- taxPayableCentTotal: number;
8463
- /** @description Value in cents (100 = 1€) */
8464
- advancedDepositsCentTotal: number;
8465
- currency: string;
8466
- note?: string | null;
8467
- updatedAt?: string | null;
8523
+ taxPayable: {
8524
+ /** @description Value in cents (100 = 1€) */
8525
+ amount: number;
8526
+ currency: string;
8527
+ effectiveAt: string | null;
8528
+ note?: string | null;
8529
+ updatedAt?: string | null;
8530
+ };
8531
+ advancedDeposits: {
8532
+ /** @description Value in cents (100 = 1€) */
8533
+ amount: number;
8534
+ currency: string;
8535
+ effectiveAt: string | null;
8536
+ note?: string | null;
8537
+ updatedAt?: string | null;
8538
+ /** Format: uuid */
8539
+ transactionId?: string | null;
8540
+ account?: {
8541
+ /** Format: uuid */
8542
+ id: string;
8543
+ name: string;
8544
+ } | null;
8545
+ reservations: {
8546
+ /** Format: uuid */
8547
+ reservationId?: string | null;
8548
+ /** Format: uuid */
8549
+ listingId?: string | null;
8550
+ /** @description Value in cents (100 = 1€) */
8551
+ payment: number;
8552
+ /** @description Value in cents (100 = 1€) */
8553
+ refund: number;
8554
+ }[];
8555
+ };
8468
8556
  };
8469
8557
  };
8470
8558
  };