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