@vrplatform/api 1.3.1-stage.1978 → 1.3.1-stage.1983

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.
@@ -2184,6 +2184,23 @@ export interface paths {
2184
2184
  patch?: never;
2185
2185
  trace?: never;
2186
2186
  };
2187
+ "/sync/resolve": {
2188
+ parameters: {
2189
+ query?: never;
2190
+ header?: never;
2191
+ path?: never;
2192
+ cookie?: never;
2193
+ };
2194
+ get?: never;
2195
+ put?: never;
2196
+ /** @description Resolve canonical entity ID by source identity */
2197
+ post: operations["resolveSyncEntity"];
2198
+ delete?: never;
2199
+ options?: never;
2200
+ head?: never;
2201
+ patch?: never;
2202
+ trace?: never;
2203
+ };
2187
2204
  "/syncs": {
2188
2205
  parameters: {
2189
2206
  query?: never;
@@ -31175,6 +31192,124 @@ export interface operations {
31175
31192
  };
31176
31193
  };
31177
31194
  };
31195
+ resolveSyncEntity: {
31196
+ parameters: {
31197
+ query?: never;
31198
+ header?: never;
31199
+ path?: never;
31200
+ cookie?: never;
31201
+ };
31202
+ requestBody?: {
31203
+ content: {
31204
+ "application/json": {
31205
+ /** @enum {string} */
31206
+ entityType: "reservation" | "listing" | "transaction" | "payment" | "bankAccount" | "bankRecord" | "contact";
31207
+ /** Format: uuid */
31208
+ connectionId?: string;
31209
+ /** Format: uuid */
31210
+ id?: string;
31211
+ /** Format: uuid */
31212
+ sourceId?: string;
31213
+ uniqueRef?: string;
31214
+ /** Format: uuid */
31215
+ accountId?: string;
31216
+ };
31217
+ };
31218
+ };
31219
+ responses: {
31220
+ /** @description Successful response */
31221
+ 200: {
31222
+ headers: {
31223
+ [name: string]: unknown;
31224
+ };
31225
+ content: {
31226
+ "application/json": {
31227
+ id: string | null;
31228
+ };
31229
+ };
31230
+ };
31231
+ /** @description Bad request */
31232
+ 400: {
31233
+ headers: {
31234
+ [name: string]: unknown;
31235
+ };
31236
+ content: {
31237
+ "application/json": {
31238
+ code: string;
31239
+ message: string;
31240
+ issues?: {
31241
+ message: string;
31242
+ }[];
31243
+ context?: unknown;
31244
+ };
31245
+ };
31246
+ };
31247
+ /** @description Unauthorized */
31248
+ 401: {
31249
+ headers: {
31250
+ [name: string]: unknown;
31251
+ };
31252
+ content: {
31253
+ "application/json": {
31254
+ code: string;
31255
+ message: string;
31256
+ issues?: {
31257
+ message: string;
31258
+ }[];
31259
+ context?: unknown;
31260
+ };
31261
+ };
31262
+ };
31263
+ /** @description Forbidden */
31264
+ 403: {
31265
+ headers: {
31266
+ [name: string]: unknown;
31267
+ };
31268
+ content: {
31269
+ "application/json": {
31270
+ code: string;
31271
+ message: string;
31272
+ issues?: {
31273
+ message: string;
31274
+ }[];
31275
+ context?: unknown;
31276
+ };
31277
+ };
31278
+ };
31279
+ /** @description Not found */
31280
+ 404: {
31281
+ headers: {
31282
+ [name: string]: unknown;
31283
+ };
31284
+ content: {
31285
+ "application/json": {
31286
+ code: string;
31287
+ message: string;
31288
+ issues?: {
31289
+ message: string;
31290
+ }[];
31291
+ context?: unknown;
31292
+ };
31293
+ };
31294
+ };
31295
+ /** @description Internal server error */
31296
+ 500: {
31297
+ headers: {
31298
+ [name: string]: unknown;
31299
+ };
31300
+ content: {
31301
+ "application/json": {
31302
+ code: string;
31303
+ message: string;
31304
+ issues?: {
31305
+ message: string;
31306
+ }[];
31307
+ context?: unknown;
31308
+ };
31309
+ };
31310
+ };
31311
+ };
31312
+ };
31178
31313
  getSyncs: {
31179
31314
  parameters: {
31180
31315
  query?: {