@vrplatform/api 1.3.1-stage.5074 → 1.3.1-stage.5086

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.5074",
6
+ "version": "1.3.1-stage.5086",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -20,7 +20,7 @@
20
20
  "generate-client": "bun generate:schema && bun generate:client",
21
21
  "generate:schema": "NODE_ENV=generator bun ./openapi.ts",
22
22
  "generate:client": "bunx --bun openapi-typescript ./openapi.json -o ./src/generated/v1.ts",
23
- "tsgo": "tsc --noEmit"
23
+ "tsgo": "tsc -b tsconfig.src.json tsconfig.test.json"
24
24
  },
25
25
  "author": "",
26
26
  "license": "ISC",
@@ -1940,6 +1940,23 @@ export interface paths {
1940
1940
  patch?: never;
1941
1941
  trace?: never;
1942
1942
  };
1943
+ "/internal/booking-channels/{id}": {
1944
+ parameters: {
1945
+ query?: never;
1946
+ header?: never;
1947
+ path?: never;
1948
+ cookie?: never;
1949
+ };
1950
+ get?: never;
1951
+ /** @description Update the nullable color for a booking channel */
1952
+ put: operations["putInternalBookingChannelsById"];
1953
+ post?: never;
1954
+ delete?: never;
1955
+ options?: never;
1956
+ head?: never;
1957
+ patch?: never;
1958
+ trace?: never;
1959
+ };
1943
1960
  "/internal/contacts/{contactId}/accesses/{userId}": {
1944
1961
  parameters: {
1945
1962
  query?: never;
@@ -41981,6 +41998,261 @@ export interface operations {
41981
41998
  };
41982
41999
  };
41983
42000
  };
42001
+ putInternalBookingChannelsById: {
42002
+ parameters: {
42003
+ query?: never;
42004
+ header?: never;
42005
+ path: {
42006
+ id: string;
42007
+ };
42008
+ cookie?: never;
42009
+ };
42010
+ requestBody?: {
42011
+ content: {
42012
+ "application/json": {
42013
+ color: string | null;
42014
+ };
42015
+ };
42016
+ };
42017
+ responses: {
42018
+ /** @description Successful response */
42019
+ 200: {
42020
+ headers: {
42021
+ [name: string]: unknown;
42022
+ };
42023
+ content: {
42024
+ "application/json": {
42025
+ color: string | null;
42026
+ };
42027
+ };
42028
+ };
42029
+ /** @description Bad request */
42030
+ 400: {
42031
+ headers: {
42032
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42033
+ "Retry-After"?: number;
42034
+ [name: string]: unknown;
42035
+ };
42036
+ content: {
42037
+ "application/json": {
42038
+ code: string;
42039
+ message: string;
42040
+ links?: {
42041
+ docs: string;
42042
+ schema: string;
42043
+ };
42044
+ issues?: {
42045
+ message: string;
42046
+ path?: (string | number)[];
42047
+ schema?: string;
42048
+ }[];
42049
+ retryable?: boolean;
42050
+ context?: unknown;
42051
+ };
42052
+ };
42053
+ };
42054
+ /** @description Unauthorized */
42055
+ 401: {
42056
+ headers: {
42057
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42058
+ "Retry-After"?: number;
42059
+ [name: string]: unknown;
42060
+ };
42061
+ content: {
42062
+ "application/json": {
42063
+ code: string;
42064
+ message: string;
42065
+ links?: {
42066
+ docs: string;
42067
+ schema: string;
42068
+ };
42069
+ issues?: {
42070
+ message: string;
42071
+ path?: (string | number)[];
42072
+ schema?: string;
42073
+ }[];
42074
+ retryable?: boolean;
42075
+ context?: unknown;
42076
+ };
42077
+ };
42078
+ };
42079
+ /** @description Forbidden */
42080
+ 403: {
42081
+ headers: {
42082
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42083
+ "Retry-After"?: number;
42084
+ [name: string]: unknown;
42085
+ };
42086
+ content: {
42087
+ "application/json": {
42088
+ code: string;
42089
+ message: string;
42090
+ links?: {
42091
+ docs: string;
42092
+ schema: string;
42093
+ };
42094
+ issues?: {
42095
+ message: string;
42096
+ path?: (string | number)[];
42097
+ schema?: string;
42098
+ }[];
42099
+ retryable?: boolean;
42100
+ context?: unknown;
42101
+ };
42102
+ };
42103
+ };
42104
+ /** @description Not found */
42105
+ 404: {
42106
+ headers: {
42107
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42108
+ "Retry-After"?: number;
42109
+ [name: string]: unknown;
42110
+ };
42111
+ content: {
42112
+ "application/json": {
42113
+ code: string;
42114
+ message: string;
42115
+ links?: {
42116
+ docs: string;
42117
+ schema: string;
42118
+ };
42119
+ issues?: {
42120
+ message: string;
42121
+ path?: (string | number)[];
42122
+ schema?: string;
42123
+ }[];
42124
+ retryable?: boolean;
42125
+ context?: unknown;
42126
+ };
42127
+ };
42128
+ };
42129
+ /** @description Conflict */
42130
+ 409: {
42131
+ headers: {
42132
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42133
+ "Retry-After"?: number;
42134
+ [name: string]: unknown;
42135
+ };
42136
+ content: {
42137
+ "application/json": {
42138
+ code: string;
42139
+ message: string;
42140
+ links?: {
42141
+ docs: string;
42142
+ schema: string;
42143
+ };
42144
+ issues?: {
42145
+ message: string;
42146
+ path?: (string | number)[];
42147
+ schema?: string;
42148
+ }[];
42149
+ retryable?: boolean;
42150
+ context?: unknown;
42151
+ };
42152
+ };
42153
+ };
42154
+ /** @description Gone */
42155
+ 410: {
42156
+ headers: {
42157
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42158
+ "Retry-After"?: number;
42159
+ [name: string]: unknown;
42160
+ };
42161
+ content: {
42162
+ "application/json": {
42163
+ code: string;
42164
+ message: string;
42165
+ links?: {
42166
+ docs: string;
42167
+ schema: string;
42168
+ };
42169
+ issues?: {
42170
+ message: string;
42171
+ path?: (string | number)[];
42172
+ schema?: string;
42173
+ }[];
42174
+ retryable?: boolean;
42175
+ context?: unknown;
42176
+ };
42177
+ };
42178
+ };
42179
+ /** @description Unprocessable content */
42180
+ 422: {
42181
+ headers: {
42182
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42183
+ "Retry-After"?: number;
42184
+ [name: string]: unknown;
42185
+ };
42186
+ content: {
42187
+ "application/json": {
42188
+ code: string;
42189
+ message: string;
42190
+ links?: {
42191
+ docs: string;
42192
+ schema: string;
42193
+ };
42194
+ issues?: {
42195
+ message: string;
42196
+ path?: (string | number)[];
42197
+ schema?: string;
42198
+ }[];
42199
+ retryable?: boolean;
42200
+ context?: unknown;
42201
+ };
42202
+ };
42203
+ };
42204
+ /** @description Internal server error */
42205
+ 500: {
42206
+ headers: {
42207
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42208
+ "Retry-After"?: number;
42209
+ [name: string]: unknown;
42210
+ };
42211
+ content: {
42212
+ "application/json": {
42213
+ code: string;
42214
+ message: string;
42215
+ links?: {
42216
+ docs: string;
42217
+ schema: string;
42218
+ };
42219
+ issues?: {
42220
+ message: string;
42221
+ path?: (string | number)[];
42222
+ schema?: string;
42223
+ }[];
42224
+ retryable?: boolean;
42225
+ context?: unknown;
42226
+ };
42227
+ };
42228
+ };
42229
+ /** @description Service unavailable */
42230
+ 503: {
42231
+ headers: {
42232
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
42233
+ "Retry-After"?: number;
42234
+ [name: string]: unknown;
42235
+ };
42236
+ content: {
42237
+ "application/json": {
42238
+ code: string;
42239
+ message: string;
42240
+ links?: {
42241
+ docs: string;
42242
+ schema: string;
42243
+ };
42244
+ issues?: {
42245
+ message: string;
42246
+ path?: (string | number)[];
42247
+ schema?: string;
42248
+ }[];
42249
+ retryable?: boolean;
42250
+ context?: unknown;
42251
+ };
42252
+ };
42253
+ };
42254
+ };
42255
+ };
41984
42256
  putInternalContactsByContactIdAccessesByUserId: {
41985
42257
  parameters: {
41986
42258
  query?: never;