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