@vrplatform/api 1.3.1-stage.1768 → 1.3.1-stage.1771

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.
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js"
8
8
  },
9
- "version": "1.3.1-stage.1768",
9
+ "version": "1.3.1-stage.1771",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -2069,23 +2069,6 @@ export interface paths {
2069
2069
  patch?: never;
2070
2070
  trace?: never;
2071
2071
  };
2072
- "/teams/opening-balances/advanced-deposits/synced-payments-refunds/{reservationId}": {
2073
- parameters: {
2074
- query?: never;
2075
- header?: never;
2076
- path?: never;
2077
- cookie?: never;
2078
- };
2079
- /** @description Retrieve synced payments/refunds for a single reservation (review advanced deposits) */
2080
- get: operations["getTeamsOpening-balancesAdvanced-depositsSynced-payments-refunds:reservationId"];
2081
- put?: never;
2082
- post?: never;
2083
- delete?: never;
2084
- options?: never;
2085
- head?: never;
2086
- patch?: never;
2087
- trace?: never;
2088
- };
2089
2072
  "/teams/opening-balances/tax-payable": {
2090
2073
  parameters: {
2091
2074
  query?: never;
@@ -29464,6 +29447,7 @@ export interface operations {
29464
29447
  name: string;
29465
29448
  appId: string;
29466
29449
  urlExample?: string | null;
29450
+ allowConfirmationCode?: boolean | null;
29467
29451
  }[];
29468
29452
  };
29469
29453
  } | null;
@@ -29737,6 +29721,7 @@ export interface operations {
29737
29721
  name: string;
29738
29722
  appId: string;
29739
29723
  urlExample?: string | null;
29724
+ allowConfirmationCode?: boolean | null;
29740
29725
  }[];
29741
29726
  };
29742
29727
  } | null;
@@ -30082,7 +30067,10 @@ export interface operations {
30082
30067
  };
30083
30068
  "getTeamsOpening-balancesAdvanced-depositsSynced-payments-refunds": {
30084
30069
  parameters: {
30085
- query?: never;
30070
+ query?: {
30071
+ /** @description comma separated list of reservation ids */
30072
+ reservationsIds?: string;
30073
+ };
30086
30074
  header?: never;
30087
30075
  path?: never;
30088
30076
  cookie?: never;
@@ -30212,135 +30200,6 @@ export interface operations {
30212
30200
  };
30213
30201
  };
30214
30202
  };
30215
- "getTeamsOpening-balancesAdvanced-depositsSynced-payments-refunds:reservationId": {
30216
- parameters: {
30217
- query?: never;
30218
- header?: never;
30219
- path: {
30220
- reservationId: string;
30221
- };
30222
- cookie?: never;
30223
- };
30224
- requestBody?: never;
30225
- responses: {
30226
- /** @description Successful response */
30227
- 200: {
30228
- headers: {
30229
- [name: string]: unknown;
30230
- };
30231
- content: {
30232
- "application/json": {
30233
- /** Format: uuid */
30234
- reservationId: string;
30235
- listingId?: string | null;
30236
- confirmationCode?: string | null;
30237
- guestName?: string | null;
30238
- checkIn?: string | null;
30239
- checkOut?: string | null;
30240
- bookedAt?: string | null;
30241
- reservationAmount?: number | null;
30242
- /** @description Value in cents (100 = 1€) */
30243
- payment: number;
30244
- /** @description Value in cents (100 = 1€) */
30245
- refund: number;
30246
- transactions: {
30247
- /** Format: uuid */
30248
- transactionId: string;
30249
- /** Format: uuid */
30250
- transactionLineId: string;
30251
- date: string;
30252
- uniqueRef?: string | null;
30253
- description?: string | null;
30254
- /** @description Value in cents (100 = 1€) */
30255
- amount: number;
30256
- /** @enum {string} */
30257
- direction: "payment" | "refund";
30258
- }[];
30259
- };
30260
- };
30261
- };
30262
- /** @description Bad request */
30263
- 400: {
30264
- headers: {
30265
- [name: string]: unknown;
30266
- };
30267
- content: {
30268
- "application/json": {
30269
- code: string;
30270
- message: string;
30271
- issues?: {
30272
- message: string;
30273
- }[];
30274
- context?: unknown;
30275
- };
30276
- };
30277
- };
30278
- /** @description Unauthorized */
30279
- 401: {
30280
- headers: {
30281
- [name: string]: unknown;
30282
- };
30283
- content: {
30284
- "application/json": {
30285
- code: string;
30286
- message: string;
30287
- issues?: {
30288
- message: string;
30289
- }[];
30290
- context?: unknown;
30291
- };
30292
- };
30293
- };
30294
- /** @description Forbidden */
30295
- 403: {
30296
- headers: {
30297
- [name: string]: unknown;
30298
- };
30299
- content: {
30300
- "application/json": {
30301
- code: string;
30302
- message: string;
30303
- issues?: {
30304
- message: string;
30305
- }[];
30306
- context?: unknown;
30307
- };
30308
- };
30309
- };
30310
- /** @description Not found */
30311
- 404: {
30312
- headers: {
30313
- [name: string]: unknown;
30314
- };
30315
- content: {
30316
- "application/json": {
30317
- code: string;
30318
- message: string;
30319
- issues?: {
30320
- message: string;
30321
- }[];
30322
- context?: unknown;
30323
- };
30324
- };
30325
- };
30326
- /** @description Internal server error */
30327
- 500: {
30328
- headers: {
30329
- [name: string]: unknown;
30330
- };
30331
- content: {
30332
- "application/json": {
30333
- code: string;
30334
- message: string;
30335
- issues?: {
30336
- message: string;
30337
- }[];
30338
- context?: unknown;
30339
- };
30340
- };
30341
- };
30342
- };
30343
- };
30344
30203
  "getTeamsOpening-balancesTax-payable": {
30345
30204
  parameters: {
30346
30205
  query?: never;
@@ -30679,6 +30538,7 @@ export interface operations {
30679
30538
  name: string;
30680
30539
  appId: string;
30681
30540
  urlExample?: string | null;
30541
+ allowConfirmationCode?: boolean | null;
30682
30542
  }[];
30683
30543
  };
30684
30544
  } | null;
@@ -30949,6 +30809,7 @@ export interface operations {
30949
30809
  name: string;
30950
30810
  appId: string;
30951
30811
  urlExample?: string | null;
30812
+ allowConfirmationCode?: boolean | null;
30952
30813
  }[];
30953
30814
  };
30954
30815
  } | null;
@@ -31492,6 +31353,7 @@ export interface operations {
31492
31353
  name: string;
31493
31354
  appId: string;
31494
31355
  urlExample?: string | null;
31356
+ allowConfirmationCode?: boolean | null;
31495
31357
  }[];
31496
31358
  };
31497
31359
  } | null;