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