@vrplatform/api 1.3.1-stage.2166 → 1.3.1-stage.2168

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;
@@ -8113,6 +8130,7 @@ export interface operations {
8113
8130
  amountMinCent?: number | null;
8114
8131
  amountMaxCent?: number | null;
8115
8132
  descriptionOverride?: string | null;
8133
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8116
8134
  usePriorMonthEnd: boolean;
8117
8135
  version: number;
8118
8136
  vendorContact?: {
@@ -8303,6 +8321,7 @@ export interface operations {
8303
8321
  amountMinCent?: number | null;
8304
8322
  amountMaxCent?: number | null;
8305
8323
  descriptionOverride?: string | null;
8324
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8306
8325
  usePriorMonthEnd?: boolean | null;
8307
8326
  vendorContactId?: string | null;
8308
8327
  accountIds?: string[] | null;
@@ -8352,6 +8371,7 @@ export interface operations {
8352
8371
  amountMinCent?: number | null;
8353
8372
  amountMaxCent?: number | null;
8354
8373
  descriptionOverride?: string | null;
8374
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8355
8375
  usePriorMonthEnd: boolean;
8356
8376
  version: number;
8357
8377
  vendorContact?: {
@@ -8532,6 +8552,7 @@ export interface operations {
8532
8552
  amountMinCent?: number | null;
8533
8553
  amountMaxCent?: number | null;
8534
8554
  descriptionOverride?: string | null;
8555
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8535
8556
  usePriorMonthEnd?: boolean | null;
8536
8557
  vendorContactId?: string | null;
8537
8558
  accountIds?: string[] | null;
@@ -8746,6 +8767,7 @@ export interface operations {
8746
8767
  amountMinCent?: number | null;
8747
8768
  amountMaxCent?: number | null;
8748
8769
  descriptionOverride?: string | null;
8770
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8749
8771
  usePriorMonthEnd: boolean;
8750
8772
  version: number;
8751
8773
  vendorContact?: {
@@ -8929,6 +8951,7 @@ export interface operations {
8929
8951
  amountMinCent?: number | null;
8930
8952
  amountMaxCent?: number | null;
8931
8953
  descriptionOverride?: string | null;
8954
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8932
8955
  usePriorMonthEnd?: boolean;
8933
8956
  vendorContactId?: string | null;
8934
8957
  accountIds?: string[] | null;
@@ -8978,6 +9001,7 @@ export interface operations {
8978
9001
  amountMinCent?: number | null;
8979
9002
  amountMaxCent?: number | null;
8980
9003
  descriptionOverride?: string | null;
9004
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8981
9005
  usePriorMonthEnd: boolean;
8982
9006
  version: number;
8983
9007
  vendorContact?: {
@@ -9426,6 +9450,112 @@ export interface operations {
9426
9450
  };
9427
9451
  };
9428
9452
  };
9453
+ getBookingChannels: {
9454
+ parameters: {
9455
+ query?: never;
9456
+ header?: never;
9457
+ path?: never;
9458
+ cookie?: never;
9459
+ };
9460
+ requestBody?: never;
9461
+ responses: {
9462
+ /** @description Successful response */
9463
+ 200: {
9464
+ headers: {
9465
+ [name: string]: unknown;
9466
+ };
9467
+ content: {
9468
+ "application/json": {
9469
+ data: {
9470
+ name: string;
9471
+ icon: string | null;
9472
+ color: string | null;
9473
+ }[];
9474
+ };
9475
+ };
9476
+ };
9477
+ /** @description Bad request */
9478
+ 400: {
9479
+ headers: {
9480
+ [name: string]: unknown;
9481
+ };
9482
+ content: {
9483
+ "application/json": {
9484
+ code: string;
9485
+ message: string;
9486
+ issues?: {
9487
+ message: string;
9488
+ }[];
9489
+ context?: unknown;
9490
+ };
9491
+ };
9492
+ };
9493
+ /** @description Unauthorized */
9494
+ 401: {
9495
+ headers: {
9496
+ [name: string]: unknown;
9497
+ };
9498
+ content: {
9499
+ "application/json": {
9500
+ code: string;
9501
+ message: string;
9502
+ issues?: {
9503
+ message: string;
9504
+ }[];
9505
+ context?: unknown;
9506
+ };
9507
+ };
9508
+ };
9509
+ /** @description Forbidden */
9510
+ 403: {
9511
+ headers: {
9512
+ [name: string]: unknown;
9513
+ };
9514
+ content: {
9515
+ "application/json": {
9516
+ code: string;
9517
+ message: string;
9518
+ issues?: {
9519
+ message: string;
9520
+ }[];
9521
+ context?: unknown;
9522
+ };
9523
+ };
9524
+ };
9525
+ /** @description Not found */
9526
+ 404: {
9527
+ headers: {
9528
+ [name: string]: unknown;
9529
+ };
9530
+ content: {
9531
+ "application/json": {
9532
+ code: string;
9533
+ message: string;
9534
+ issues?: {
9535
+ message: string;
9536
+ }[];
9537
+ context?: unknown;
9538
+ };
9539
+ };
9540
+ };
9541
+ /** @description Internal server error */
9542
+ 500: {
9543
+ headers: {
9544
+ [name: string]: unknown;
9545
+ };
9546
+ content: {
9547
+ "application/json": {
9548
+ code: string;
9549
+ message: string;
9550
+ issues?: {
9551
+ message: string;
9552
+ }[];
9553
+ context?: unknown;
9554
+ };
9555
+ };
9556
+ };
9557
+ };
9558
+ };
9429
9559
  getCalendar: {
9430
9560
  parameters: {
9431
9561
  query: {