@vrplatform/api 1.3.1-stage.2165 → 1.3.1-stage.2167
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.
|
@@ -452,6 +452,23 @@ export interface paths {
|
|
|
452
452
|
patch?: never;
|
|
453
453
|
trace?: never;
|
|
454
454
|
};
|
|
455
|
+
"/booking-channels": {
|
|
456
|
+
parameters: {
|
|
457
|
+
query?: never;
|
|
458
|
+
header?: never;
|
|
459
|
+
path?: never;
|
|
460
|
+
cookie?: never;
|
|
461
|
+
};
|
|
462
|
+
/** @description List booking channels available on the team */
|
|
463
|
+
get: operations["getBookingChannels"];
|
|
464
|
+
put?: never;
|
|
465
|
+
post?: never;
|
|
466
|
+
delete?: never;
|
|
467
|
+
options?: never;
|
|
468
|
+
head?: never;
|
|
469
|
+
patch?: never;
|
|
470
|
+
trace?: never;
|
|
471
|
+
};
|
|
455
472
|
"/calendar-blocks": {
|
|
456
473
|
parameters: {
|
|
457
474
|
query?: never;
|
|
@@ -9426,6 +9443,112 @@ export interface operations {
|
|
|
9426
9443
|
};
|
|
9427
9444
|
};
|
|
9428
9445
|
};
|
|
9446
|
+
getBookingChannels: {
|
|
9447
|
+
parameters: {
|
|
9448
|
+
query?: never;
|
|
9449
|
+
header?: never;
|
|
9450
|
+
path?: never;
|
|
9451
|
+
cookie?: never;
|
|
9452
|
+
};
|
|
9453
|
+
requestBody?: never;
|
|
9454
|
+
responses: {
|
|
9455
|
+
/** @description Successful response */
|
|
9456
|
+
200: {
|
|
9457
|
+
headers: {
|
|
9458
|
+
[name: string]: unknown;
|
|
9459
|
+
};
|
|
9460
|
+
content: {
|
|
9461
|
+
"application/json": {
|
|
9462
|
+
data: {
|
|
9463
|
+
name: string;
|
|
9464
|
+
icon: string | null;
|
|
9465
|
+
color: string | null;
|
|
9466
|
+
}[];
|
|
9467
|
+
};
|
|
9468
|
+
};
|
|
9469
|
+
};
|
|
9470
|
+
/** @description Bad request */
|
|
9471
|
+
400: {
|
|
9472
|
+
headers: {
|
|
9473
|
+
[name: string]: unknown;
|
|
9474
|
+
};
|
|
9475
|
+
content: {
|
|
9476
|
+
"application/json": {
|
|
9477
|
+
code: string;
|
|
9478
|
+
message: string;
|
|
9479
|
+
issues?: {
|
|
9480
|
+
message: string;
|
|
9481
|
+
}[];
|
|
9482
|
+
context?: unknown;
|
|
9483
|
+
};
|
|
9484
|
+
};
|
|
9485
|
+
};
|
|
9486
|
+
/** @description Unauthorized */
|
|
9487
|
+
401: {
|
|
9488
|
+
headers: {
|
|
9489
|
+
[name: string]: unknown;
|
|
9490
|
+
};
|
|
9491
|
+
content: {
|
|
9492
|
+
"application/json": {
|
|
9493
|
+
code: string;
|
|
9494
|
+
message: string;
|
|
9495
|
+
issues?: {
|
|
9496
|
+
message: string;
|
|
9497
|
+
}[];
|
|
9498
|
+
context?: unknown;
|
|
9499
|
+
};
|
|
9500
|
+
};
|
|
9501
|
+
};
|
|
9502
|
+
/** @description Forbidden */
|
|
9503
|
+
403: {
|
|
9504
|
+
headers: {
|
|
9505
|
+
[name: string]: unknown;
|
|
9506
|
+
};
|
|
9507
|
+
content: {
|
|
9508
|
+
"application/json": {
|
|
9509
|
+
code: string;
|
|
9510
|
+
message: string;
|
|
9511
|
+
issues?: {
|
|
9512
|
+
message: string;
|
|
9513
|
+
}[];
|
|
9514
|
+
context?: unknown;
|
|
9515
|
+
};
|
|
9516
|
+
};
|
|
9517
|
+
};
|
|
9518
|
+
/** @description Not found */
|
|
9519
|
+
404: {
|
|
9520
|
+
headers: {
|
|
9521
|
+
[name: string]: unknown;
|
|
9522
|
+
};
|
|
9523
|
+
content: {
|
|
9524
|
+
"application/json": {
|
|
9525
|
+
code: string;
|
|
9526
|
+
message: string;
|
|
9527
|
+
issues?: {
|
|
9528
|
+
message: string;
|
|
9529
|
+
}[];
|
|
9530
|
+
context?: unknown;
|
|
9531
|
+
};
|
|
9532
|
+
};
|
|
9533
|
+
};
|
|
9534
|
+
/** @description Internal server error */
|
|
9535
|
+
500: {
|
|
9536
|
+
headers: {
|
|
9537
|
+
[name: string]: unknown;
|
|
9538
|
+
};
|
|
9539
|
+
content: {
|
|
9540
|
+
"application/json": {
|
|
9541
|
+
code: string;
|
|
9542
|
+
message: string;
|
|
9543
|
+
issues?: {
|
|
9544
|
+
message: string;
|
|
9545
|
+
}[];
|
|
9546
|
+
context?: unknown;
|
|
9547
|
+
};
|
|
9548
|
+
};
|
|
9549
|
+
};
|
|
9550
|
+
};
|
|
9551
|
+
};
|
|
9429
9552
|
getCalendar: {
|
|
9430
9553
|
parameters: {
|
|
9431
9554
|
query: {
|