@vrplatform/api 1.2.33-stage.855 → 1.2.33-stage.857

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.
@@ -1368,6 +1368,23 @@ export interface paths {
1368
1368
  patch?: never;
1369
1369
  trace?: never;
1370
1370
  };
1371
+ "/syncs/{id}/cancel": {
1372
+ parameters: {
1373
+ query?: never;
1374
+ header?: never;
1375
+ path?: never;
1376
+ cookie?: never;
1377
+ };
1378
+ get?: never;
1379
+ put?: never;
1380
+ /** @description Cancel sync by ID */
1381
+ post: operations["cancelSync"];
1382
+ delete?: never;
1383
+ options?: never;
1384
+ head?: never;
1385
+ patch?: never;
1386
+ trace?: never;
1387
+ };
1371
1388
  "/sources/batch": {
1372
1389
  parameters: {
1373
1390
  query?: never;
@@ -22544,6 +22561,69 @@ export interface operations {
22544
22561
  };
22545
22562
  };
22546
22563
  };
22564
+ cancelSync: {
22565
+ parameters: {
22566
+ query?: never;
22567
+ header?: {
22568
+ "X-Team-Id"?: string;
22569
+ };
22570
+ path: {
22571
+ id: string;
22572
+ };
22573
+ cookie?: never;
22574
+ };
22575
+ requestBody?: never;
22576
+ responses: {
22577
+ /** @description Successful response */
22578
+ 200: {
22579
+ headers: {
22580
+ [name: string]: unknown;
22581
+ };
22582
+ content: {
22583
+ "application/json": {
22584
+ /** Format: uuid */
22585
+ id: string;
22586
+ };
22587
+ };
22588
+ };
22589
+ /** @description Invalid input data */
22590
+ 400: {
22591
+ headers: {
22592
+ [name: string]: unknown;
22593
+ };
22594
+ content: {
22595
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
22596
+ };
22597
+ };
22598
+ /** @description Authorization not provided */
22599
+ 401: {
22600
+ headers: {
22601
+ [name: string]: unknown;
22602
+ };
22603
+ content: {
22604
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
22605
+ };
22606
+ };
22607
+ /** @description Insufficient access */
22608
+ 403: {
22609
+ headers: {
22610
+ [name: string]: unknown;
22611
+ };
22612
+ content: {
22613
+ "application/json": components["schemas"]["error.FORBIDDEN"];
22614
+ };
22615
+ };
22616
+ /** @description Internal server error */
22617
+ 500: {
22618
+ headers: {
22619
+ [name: string]: unknown;
22620
+ };
22621
+ content: {
22622
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
22623
+ };
22624
+ };
22625
+ };
22626
+ };
22547
22627
  updateSources: {
22548
22628
  parameters: {
22549
22629
  query?: never;