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