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

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