@globalscoutme/api-client 1.0.14 → 1.0.15
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/dist/index.d.ts +1 -1
- package/dist/sdk.gen.d.ts +45 -45
- package/dist/sdk.gen.js +44 -44
- package/dist/types.gen.d.ts +216 -216
- package/index.ts +172 -172
- package/package.json +1 -1
- package/sdk.gen.ts +302 -302
- package/types.gen.ts +259 -256
package/types.gen.ts
CHANGED
|
@@ -1298,139 +1298,140 @@ export type PlayUrlResponseDto = {
|
|
|
1298
1298
|
expiresIn: number;
|
|
1299
1299
|
};
|
|
1300
1300
|
|
|
1301
|
-
export type
|
|
1301
|
+
export type GetApiAuthMeData = {
|
|
1302
1302
|
body?: never;
|
|
1303
1303
|
path?: never;
|
|
1304
1304
|
query?: never;
|
|
1305
|
-
url: '/auth/me';
|
|
1305
|
+
url: '/api/auth/me';
|
|
1306
1306
|
};
|
|
1307
1307
|
|
|
1308
|
-
export type
|
|
1308
|
+
export type GetApiAuthMeErrors = {
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Unauthorized
|
|
1311
1311
|
*/
|
|
1312
1312
|
401: unknown;
|
|
1313
1313
|
};
|
|
1314
1314
|
|
|
1315
|
-
export type
|
|
1315
|
+
export type GetApiAuthMeResponses = {
|
|
1316
1316
|
200: AuthMeResponseDto;
|
|
1317
1317
|
};
|
|
1318
1318
|
|
|
1319
|
-
export type
|
|
1319
|
+
export type GetApiAuthMeResponse =
|
|
1320
|
+
GetApiAuthMeResponses[keyof GetApiAuthMeResponses];
|
|
1320
1321
|
|
|
1321
|
-
export type
|
|
1322
|
+
export type DeleteApiPlayersMeData = {
|
|
1322
1323
|
body?: never;
|
|
1323
1324
|
path?: never;
|
|
1324
1325
|
query?: never;
|
|
1325
|
-
url: '/players/me';
|
|
1326
|
+
url: '/api/players/me';
|
|
1326
1327
|
};
|
|
1327
1328
|
|
|
1328
|
-
export type
|
|
1329
|
+
export type DeleteApiPlayersMeErrors = {
|
|
1329
1330
|
/**
|
|
1330
1331
|
* Deletion not configured
|
|
1331
1332
|
*/
|
|
1332
1333
|
503: unknown;
|
|
1333
1334
|
};
|
|
1334
1335
|
|
|
1335
|
-
export type
|
|
1336
|
+
export type DeleteApiPlayersMeResponses = {
|
|
1336
1337
|
204: void;
|
|
1337
1338
|
};
|
|
1338
1339
|
|
|
1339
|
-
export type
|
|
1340
|
-
|
|
1340
|
+
export type DeleteApiPlayersMeResponse =
|
|
1341
|
+
DeleteApiPlayersMeResponses[keyof DeleteApiPlayersMeResponses];
|
|
1341
1342
|
|
|
1342
|
-
export type
|
|
1343
|
+
export type GetApiPlayersMeData = {
|
|
1343
1344
|
body?: never;
|
|
1344
1345
|
path?: never;
|
|
1345
1346
|
query?: never;
|
|
1346
|
-
url: '/players/me';
|
|
1347
|
+
url: '/api/players/me';
|
|
1347
1348
|
};
|
|
1348
1349
|
|
|
1349
|
-
export type
|
|
1350
|
+
export type GetApiPlayersMeErrors = {
|
|
1350
1351
|
/**
|
|
1351
1352
|
* Unauthorized
|
|
1352
1353
|
*/
|
|
1353
1354
|
401: unknown;
|
|
1354
1355
|
};
|
|
1355
1356
|
|
|
1356
|
-
export type
|
|
1357
|
+
export type GetApiPlayersMeResponses = {
|
|
1357
1358
|
200: PlayerResponseDto;
|
|
1358
1359
|
};
|
|
1359
1360
|
|
|
1360
|
-
export type
|
|
1361
|
-
|
|
1361
|
+
export type GetApiPlayersMeResponse =
|
|
1362
|
+
GetApiPlayersMeResponses[keyof GetApiPlayersMeResponses];
|
|
1362
1363
|
|
|
1363
|
-
export type
|
|
1364
|
+
export type PatchApiPlayersMeData = {
|
|
1364
1365
|
body: UpdatePlayerDto;
|
|
1365
1366
|
path?: never;
|
|
1366
1367
|
query?: never;
|
|
1367
|
-
url: '/players/me';
|
|
1368
|
+
url: '/api/players/me';
|
|
1368
1369
|
};
|
|
1369
1370
|
|
|
1370
|
-
export type
|
|
1371
|
+
export type PatchApiPlayersMeErrors = {
|
|
1371
1372
|
/**
|
|
1372
1373
|
* Unauthorized
|
|
1373
1374
|
*/
|
|
1374
1375
|
401: unknown;
|
|
1375
1376
|
};
|
|
1376
1377
|
|
|
1377
|
-
export type
|
|
1378
|
+
export type PatchApiPlayersMeResponses = {
|
|
1378
1379
|
200: PlayerResponseDto;
|
|
1379
1380
|
};
|
|
1380
1381
|
|
|
1381
|
-
export type
|
|
1382
|
-
|
|
1382
|
+
export type PatchApiPlayersMeResponse =
|
|
1383
|
+
PatchApiPlayersMeResponses[keyof PatchApiPlayersMeResponses];
|
|
1383
1384
|
|
|
1384
|
-
export type
|
|
1385
|
+
export type GetApiPlayersMeDashboardData = {
|
|
1385
1386
|
body?: never;
|
|
1386
1387
|
path?: never;
|
|
1387
1388
|
query?: never;
|
|
1388
|
-
url: '/players/me/dashboard';
|
|
1389
|
+
url: '/api/players/me/dashboard';
|
|
1389
1390
|
};
|
|
1390
1391
|
|
|
1391
|
-
export type
|
|
1392
|
+
export type GetApiPlayersMeDashboardErrors = {
|
|
1392
1393
|
/**
|
|
1393
1394
|
* Unauthorized
|
|
1394
1395
|
*/
|
|
1395
1396
|
401: unknown;
|
|
1396
1397
|
};
|
|
1397
1398
|
|
|
1398
|
-
export type
|
|
1399
|
+
export type GetApiPlayersMeDashboardResponses = {
|
|
1399
1400
|
200: DashboardResponseDto;
|
|
1400
1401
|
};
|
|
1401
1402
|
|
|
1402
|
-
export type
|
|
1403
|
-
|
|
1403
|
+
export type GetApiPlayersMeDashboardResponse =
|
|
1404
|
+
GetApiPlayersMeDashboardResponses[keyof GetApiPlayersMeDashboardResponses];
|
|
1404
1405
|
|
|
1405
|
-
export type
|
|
1406
|
+
export type PostApiPlayersMeHeartbeatData = {
|
|
1406
1407
|
body: HeartbeatDto;
|
|
1407
1408
|
path?: never;
|
|
1408
1409
|
query?: never;
|
|
1409
|
-
url: '/players/me/heartbeat';
|
|
1410
|
+
url: '/api/players/me/heartbeat';
|
|
1410
1411
|
};
|
|
1411
1412
|
|
|
1412
|
-
export type
|
|
1413
|
+
export type PostApiPlayersMeHeartbeatErrors = {
|
|
1413
1414
|
/**
|
|
1414
1415
|
* Unauthorized
|
|
1415
1416
|
*/
|
|
1416
1417
|
401: unknown;
|
|
1417
1418
|
};
|
|
1418
1419
|
|
|
1419
|
-
export type
|
|
1420
|
+
export type PostApiPlayersMeHeartbeatResponses = {
|
|
1420
1421
|
200: HeartbeatResponseDto;
|
|
1421
1422
|
};
|
|
1422
1423
|
|
|
1423
|
-
export type
|
|
1424
|
-
|
|
1424
|
+
export type PostApiPlayersMeHeartbeatResponse =
|
|
1425
|
+
PostApiPlayersMeHeartbeatResponses[keyof PostApiPlayersMeHeartbeatResponses];
|
|
1425
1426
|
|
|
1426
|
-
export type
|
|
1427
|
+
export type PostApiPlayersSearchData = {
|
|
1427
1428
|
body: PlayerSearchRequestDto;
|
|
1428
1429
|
path?: never;
|
|
1429
1430
|
query?: never;
|
|
1430
|
-
url: '/players/search';
|
|
1431
|
+
url: '/api/players/search';
|
|
1431
1432
|
};
|
|
1432
1433
|
|
|
1433
|
-
export type
|
|
1434
|
+
export type PostApiPlayersSearchErrors = {
|
|
1434
1435
|
/**
|
|
1435
1436
|
* Invalid filter combination
|
|
1436
1437
|
*/
|
|
@@ -1441,23 +1442,23 @@ export type PostPlayersSearchErrors = {
|
|
|
1441
1442
|
401: unknown;
|
|
1442
1443
|
};
|
|
1443
1444
|
|
|
1444
|
-
export type
|
|
1445
|
+
export type PostApiPlayersSearchResponses = {
|
|
1445
1446
|
200: PlayerSearchResultDto;
|
|
1446
1447
|
};
|
|
1447
1448
|
|
|
1448
|
-
export type
|
|
1449
|
-
|
|
1449
|
+
export type PostApiPlayersSearchResponse =
|
|
1450
|
+
PostApiPlayersSearchResponses[keyof PostApiPlayersSearchResponses];
|
|
1450
1451
|
|
|
1451
|
-
export type
|
|
1452
|
+
export type GetApiPlayersByIdData = {
|
|
1452
1453
|
body?: never;
|
|
1453
1454
|
path: {
|
|
1454
1455
|
id: string;
|
|
1455
1456
|
};
|
|
1456
1457
|
query?: never;
|
|
1457
|
-
url: '/players/{id}';
|
|
1458
|
+
url: '/api/players/{id}';
|
|
1458
1459
|
};
|
|
1459
1460
|
|
|
1460
|
-
export type
|
|
1461
|
+
export type GetApiPlayersByIdErrors = {
|
|
1461
1462
|
/**
|
|
1462
1463
|
* Unauthorized
|
|
1463
1464
|
*/
|
|
@@ -1468,21 +1469,21 @@ export type GetPlayersByIdErrors = {
|
|
|
1468
1469
|
404: unknown;
|
|
1469
1470
|
};
|
|
1470
1471
|
|
|
1471
|
-
export type
|
|
1472
|
+
export type GetApiPlayersByIdResponses = {
|
|
1472
1473
|
200: PlayerByIdDto;
|
|
1473
1474
|
};
|
|
1474
1475
|
|
|
1475
|
-
export type
|
|
1476
|
-
|
|
1476
|
+
export type GetApiPlayersByIdResponse =
|
|
1477
|
+
GetApiPlayersByIdResponses[keyof GetApiPlayersByIdResponses];
|
|
1477
1478
|
|
|
1478
|
-
export type
|
|
1479
|
+
export type GetApiProfileMeData = {
|
|
1479
1480
|
body?: never;
|
|
1480
1481
|
path?: never;
|
|
1481
1482
|
query?: never;
|
|
1482
|
-
url: '/profile/me';
|
|
1483
|
+
url: '/api/profile/me';
|
|
1483
1484
|
};
|
|
1484
1485
|
|
|
1485
|
-
export type
|
|
1486
|
+
export type GetApiProfileMeErrors = {
|
|
1486
1487
|
/**
|
|
1487
1488
|
* Unauthorized
|
|
1488
1489
|
*/
|
|
@@ -1493,83 +1494,83 @@ export type GetProfileMeErrors = {
|
|
|
1493
1494
|
404: unknown;
|
|
1494
1495
|
};
|
|
1495
1496
|
|
|
1496
|
-
export type
|
|
1497
|
+
export type GetApiProfileMeResponses = {
|
|
1497
1498
|
/**
|
|
1498
1499
|
* Current player profile
|
|
1499
1500
|
*/
|
|
1500
1501
|
200: ProfileResponseDto;
|
|
1501
1502
|
};
|
|
1502
1503
|
|
|
1503
|
-
export type
|
|
1504
|
-
|
|
1504
|
+
export type GetApiProfileMeResponse =
|
|
1505
|
+
GetApiProfileMeResponses[keyof GetApiProfileMeResponses];
|
|
1505
1506
|
|
|
1506
|
-
export type
|
|
1507
|
+
export type PutApiProfileMeData = {
|
|
1507
1508
|
body: UpdateProfileDto;
|
|
1508
1509
|
path?: never;
|
|
1509
1510
|
query?: never;
|
|
1510
|
-
url: '/profile/me';
|
|
1511
|
+
url: '/api/profile/me';
|
|
1511
1512
|
};
|
|
1512
1513
|
|
|
1513
|
-
export type
|
|
1514
|
+
export type PutApiProfileMeErrors = {
|
|
1514
1515
|
/**
|
|
1515
1516
|
* Unauthorized
|
|
1516
1517
|
*/
|
|
1517
1518
|
401: unknown;
|
|
1518
1519
|
};
|
|
1519
1520
|
|
|
1520
|
-
export type
|
|
1521
|
+
export type PutApiProfileMeResponses = {
|
|
1521
1522
|
/**
|
|
1522
1523
|
* Updated profile
|
|
1523
1524
|
*/
|
|
1524
1525
|
200: ProfileResponseDto;
|
|
1525
1526
|
};
|
|
1526
1527
|
|
|
1527
|
-
export type
|
|
1528
|
-
|
|
1528
|
+
export type PutApiProfileMeResponse =
|
|
1529
|
+
PutApiProfileMeResponses[keyof PutApiProfileMeResponses];
|
|
1529
1530
|
|
|
1530
|
-
export type
|
|
1531
|
+
export type GetApiAchievementsData = {
|
|
1531
1532
|
body?: never;
|
|
1532
1533
|
path?: never;
|
|
1533
1534
|
query?: never;
|
|
1534
|
-
url: '/achievements';
|
|
1535
|
+
url: '/api/achievements';
|
|
1535
1536
|
};
|
|
1536
1537
|
|
|
1537
|
-
export type
|
|
1538
|
+
export type GetApiAchievementsResponses = {
|
|
1538
1539
|
200: Array<AchievementCatalogDto>;
|
|
1539
1540
|
};
|
|
1540
1541
|
|
|
1541
|
-
export type
|
|
1542
|
-
|
|
1542
|
+
export type GetApiAchievementsResponse =
|
|
1543
|
+
GetApiAchievementsResponses[keyof GetApiAchievementsResponses];
|
|
1543
1544
|
|
|
1544
|
-
export type
|
|
1545
|
+
export type GetApiAchievementsMeData = {
|
|
1545
1546
|
body?: never;
|
|
1546
1547
|
path?: never;
|
|
1547
1548
|
query?: never;
|
|
1548
|
-
url: '/achievements/me';
|
|
1549
|
+
url: '/api/achievements/me';
|
|
1549
1550
|
};
|
|
1550
1551
|
|
|
1551
|
-
export type
|
|
1552
|
+
export type GetApiAchievementsMeErrors = {
|
|
1552
1553
|
/**
|
|
1553
1554
|
* Unauthorized
|
|
1554
1555
|
*/
|
|
1555
1556
|
401: unknown;
|
|
1556
1557
|
};
|
|
1557
1558
|
|
|
1558
|
-
export type
|
|
1559
|
+
export type GetApiAchievementsMeResponses = {
|
|
1559
1560
|
200: Array<UserAchievementResponseDto>;
|
|
1560
1561
|
};
|
|
1561
1562
|
|
|
1562
|
-
export type
|
|
1563
|
-
|
|
1563
|
+
export type GetApiAchievementsMeResponse =
|
|
1564
|
+
GetApiAchievementsMeResponses[keyof GetApiAchievementsMeResponses];
|
|
1564
1565
|
|
|
1565
|
-
export type
|
|
1566
|
+
export type GetApiBodyMeasurementsMeData = {
|
|
1566
1567
|
body?: never;
|
|
1567
1568
|
path?: never;
|
|
1568
1569
|
query?: never;
|
|
1569
|
-
url: '/body/measurements/me';
|
|
1570
|
+
url: '/api/body/measurements/me';
|
|
1570
1571
|
};
|
|
1571
1572
|
|
|
1572
|
-
export type
|
|
1573
|
+
export type GetApiBodyMeasurementsMeErrors = {
|
|
1573
1574
|
/**
|
|
1574
1575
|
* Unauthorized
|
|
1575
1576
|
*/
|
|
@@ -1580,69 +1581,69 @@ export type GetBodyMeasurementsMeErrors = {
|
|
|
1580
1581
|
404: unknown;
|
|
1581
1582
|
};
|
|
1582
1583
|
|
|
1583
|
-
export type
|
|
1584
|
+
export type GetApiBodyMeasurementsMeResponses = {
|
|
1584
1585
|
/**
|
|
1585
1586
|
* Latest body measurement
|
|
1586
1587
|
*/
|
|
1587
1588
|
200: BodyMeasurementResponseDto;
|
|
1588
1589
|
};
|
|
1589
1590
|
|
|
1590
|
-
export type
|
|
1591
|
-
|
|
1591
|
+
export type GetApiBodyMeasurementsMeResponse =
|
|
1592
|
+
GetApiBodyMeasurementsMeResponses[keyof GetApiBodyMeasurementsMeResponses];
|
|
1592
1593
|
|
|
1593
|
-
export type
|
|
1594
|
+
export type PostApiBodyMeasurementsData = {
|
|
1594
1595
|
body: CreateBodyMeasurementDto;
|
|
1595
1596
|
path?: never;
|
|
1596
1597
|
query?: never;
|
|
1597
|
-
url: '/body/measurements';
|
|
1598
|
+
url: '/api/body/measurements';
|
|
1598
1599
|
};
|
|
1599
1600
|
|
|
1600
|
-
export type
|
|
1601
|
+
export type PostApiBodyMeasurementsErrors = {
|
|
1601
1602
|
/**
|
|
1602
1603
|
* Unauthorized
|
|
1603
1604
|
*/
|
|
1604
1605
|
401: unknown;
|
|
1605
1606
|
};
|
|
1606
1607
|
|
|
1607
|
-
export type
|
|
1608
|
+
export type PostApiBodyMeasurementsResponses = {
|
|
1608
1609
|
/**
|
|
1609
1610
|
* Body measurement created
|
|
1610
1611
|
*/
|
|
1611
1612
|
201: BodyMeasurementResponseDto;
|
|
1612
1613
|
};
|
|
1613
1614
|
|
|
1614
|
-
export type
|
|
1615
|
-
|
|
1615
|
+
export type PostApiBodyMeasurementsResponse =
|
|
1616
|
+
PostApiBodyMeasurementsResponses[keyof PostApiBodyMeasurementsResponses];
|
|
1616
1617
|
|
|
1617
|
-
export type
|
|
1618
|
+
export type GetApiChallengesData = {
|
|
1618
1619
|
body?: never;
|
|
1619
1620
|
path?: never;
|
|
1620
1621
|
query?: never;
|
|
1621
|
-
url: '/challenges';
|
|
1622
|
+
url: '/api/challenges';
|
|
1622
1623
|
};
|
|
1623
1624
|
|
|
1624
|
-
export type
|
|
1625
|
+
export type GetApiChallengesErrors = {
|
|
1625
1626
|
/**
|
|
1626
1627
|
* Unauthorized
|
|
1627
1628
|
*/
|
|
1628
1629
|
401: unknown;
|
|
1629
1630
|
};
|
|
1630
1631
|
|
|
1631
|
-
export type
|
|
1632
|
+
export type GetApiChallengesResponses = {
|
|
1632
1633
|
200: Array<ChallengeCatalogDto>;
|
|
1633
1634
|
};
|
|
1634
1635
|
|
|
1635
|
-
export type
|
|
1636
|
-
|
|
1636
|
+
export type GetApiChallengesResponse =
|
|
1637
|
+
GetApiChallengesResponses[keyof GetApiChallengesResponses];
|
|
1637
1638
|
|
|
1638
|
-
export type
|
|
1639
|
+
export type GetApiChallengesMeData = {
|
|
1639
1640
|
body?: never;
|
|
1640
1641
|
path?: never;
|
|
1641
1642
|
query?: never;
|
|
1642
|
-
url: '/challenges/me';
|
|
1643
|
+
url: '/api/challenges/me';
|
|
1643
1644
|
};
|
|
1644
1645
|
|
|
1645
|
-
export type
|
|
1646
|
+
export type GetApiChallengesMeErrors = {
|
|
1646
1647
|
/**
|
|
1647
1648
|
* Unauthorized
|
|
1648
1649
|
*/
|
|
@@ -1653,64 +1654,65 @@ export type GetChallengesMeErrors = {
|
|
|
1653
1654
|
403: unknown;
|
|
1654
1655
|
};
|
|
1655
1656
|
|
|
1656
|
-
export type
|
|
1657
|
+
export type GetApiChallengesMeResponses = {
|
|
1657
1658
|
200: Array<MyChallengeDto>;
|
|
1658
1659
|
};
|
|
1659
1660
|
|
|
1660
|
-
export type
|
|
1661
|
-
|
|
1661
|
+
export type GetApiChallengesMeResponse =
|
|
1662
|
+
GetApiChallengesMeResponses[keyof GetApiChallengesMeResponses];
|
|
1662
1663
|
|
|
1663
|
-
export type
|
|
1664
|
+
export type GetApiClubsMeData = {
|
|
1664
1665
|
body?: never;
|
|
1665
1666
|
path?: never;
|
|
1666
1667
|
query?: never;
|
|
1667
|
-
url: '/clubs/me';
|
|
1668
|
+
url: '/api/clubs/me';
|
|
1668
1669
|
};
|
|
1669
1670
|
|
|
1670
|
-
export type
|
|
1671
|
+
export type GetApiClubsMeErrors = {
|
|
1671
1672
|
/**
|
|
1672
1673
|
* Unauthorized
|
|
1673
1674
|
*/
|
|
1674
1675
|
401: unknown;
|
|
1675
1676
|
};
|
|
1676
1677
|
|
|
1677
|
-
export type
|
|
1678
|
+
export type GetApiClubsMeResponses = {
|
|
1678
1679
|
200: Array<ClubResponseDto>;
|
|
1679
1680
|
};
|
|
1680
1681
|
|
|
1681
|
-
export type
|
|
1682
|
+
export type GetApiClubsMeResponse =
|
|
1683
|
+
GetApiClubsMeResponses[keyof GetApiClubsMeResponses];
|
|
1682
1684
|
|
|
1683
|
-
export type
|
|
1685
|
+
export type PostApiClubsMeData = {
|
|
1684
1686
|
body: CreateClubDto;
|
|
1685
1687
|
path?: never;
|
|
1686
1688
|
query?: never;
|
|
1687
|
-
url: '/clubs/me';
|
|
1689
|
+
url: '/api/clubs/me';
|
|
1688
1690
|
};
|
|
1689
1691
|
|
|
1690
|
-
export type
|
|
1692
|
+
export type PostApiClubsMeErrors = {
|
|
1691
1693
|
/**
|
|
1692
1694
|
* Unauthorized
|
|
1693
1695
|
*/
|
|
1694
1696
|
401: unknown;
|
|
1695
1697
|
};
|
|
1696
1698
|
|
|
1697
|
-
export type
|
|
1699
|
+
export type PostApiClubsMeResponses = {
|
|
1698
1700
|
201: ClubResponseDto;
|
|
1699
1701
|
};
|
|
1700
1702
|
|
|
1701
|
-
export type
|
|
1702
|
-
|
|
1703
|
+
export type PostApiClubsMeResponse =
|
|
1704
|
+
PostApiClubsMeResponses[keyof PostApiClubsMeResponses];
|
|
1703
1705
|
|
|
1704
|
-
export type
|
|
1706
|
+
export type DeleteApiClubsMeByIdData = {
|
|
1705
1707
|
body?: never;
|
|
1706
1708
|
path: {
|
|
1707
1709
|
id: string;
|
|
1708
1710
|
};
|
|
1709
1711
|
query?: never;
|
|
1710
|
-
url: '/clubs/me/{id}';
|
|
1712
|
+
url: '/api/clubs/me/{id}';
|
|
1711
1713
|
};
|
|
1712
1714
|
|
|
1713
|
-
export type
|
|
1715
|
+
export type DeleteApiClubsMeByIdErrors = {
|
|
1714
1716
|
/**
|
|
1715
1717
|
* Unauthorized
|
|
1716
1718
|
*/
|
|
@@ -1721,26 +1723,26 @@ export type DeleteClubsMeByIdErrors = {
|
|
|
1721
1723
|
404: unknown;
|
|
1722
1724
|
};
|
|
1723
1725
|
|
|
1724
|
-
export type
|
|
1726
|
+
export type DeleteApiClubsMeByIdResponses = {
|
|
1725
1727
|
/**
|
|
1726
1728
|
* Club deleted
|
|
1727
1729
|
*/
|
|
1728
1730
|
204: void;
|
|
1729
1731
|
};
|
|
1730
1732
|
|
|
1731
|
-
export type
|
|
1732
|
-
|
|
1733
|
+
export type DeleteApiClubsMeByIdResponse =
|
|
1734
|
+
DeleteApiClubsMeByIdResponses[keyof DeleteApiClubsMeByIdResponses];
|
|
1733
1735
|
|
|
1734
|
-
export type
|
|
1736
|
+
export type PatchApiClubsMeByIdData = {
|
|
1735
1737
|
body: UpdateClubDto;
|
|
1736
1738
|
path: {
|
|
1737
1739
|
id: string;
|
|
1738
1740
|
};
|
|
1739
1741
|
query?: never;
|
|
1740
|
-
url: '/clubs/me/{id}';
|
|
1742
|
+
url: '/api/clubs/me/{id}';
|
|
1741
1743
|
};
|
|
1742
1744
|
|
|
1743
|
-
export type
|
|
1745
|
+
export type PatchApiClubsMeByIdErrors = {
|
|
1744
1746
|
/**
|
|
1745
1747
|
* Unauthorized
|
|
1746
1748
|
*/
|
|
@@ -1751,71 +1753,71 @@ export type PatchClubsMeByIdErrors = {
|
|
|
1751
1753
|
404: unknown;
|
|
1752
1754
|
};
|
|
1753
1755
|
|
|
1754
|
-
export type
|
|
1756
|
+
export type PatchApiClubsMeByIdResponses = {
|
|
1755
1757
|
200: ClubResponseDto;
|
|
1756
1758
|
};
|
|
1757
1759
|
|
|
1758
|
-
export type
|
|
1759
|
-
|
|
1760
|
+
export type PatchApiClubsMeByIdResponse =
|
|
1761
|
+
PatchApiClubsMeByIdResponses[keyof PatchApiClubsMeByIdResponses];
|
|
1760
1762
|
|
|
1761
|
-
export type
|
|
1763
|
+
export type GetApiDocumentsMeData = {
|
|
1762
1764
|
body?: never;
|
|
1763
1765
|
path?: never;
|
|
1764
1766
|
query?: never;
|
|
1765
|
-
url: '/documents/me';
|
|
1767
|
+
url: '/api/documents/me';
|
|
1766
1768
|
};
|
|
1767
1769
|
|
|
1768
|
-
export type
|
|
1770
|
+
export type GetApiDocumentsMeErrors = {
|
|
1769
1771
|
/**
|
|
1770
1772
|
* Unauthorized
|
|
1771
1773
|
*/
|
|
1772
1774
|
401: unknown;
|
|
1773
1775
|
};
|
|
1774
1776
|
|
|
1775
|
-
export type
|
|
1777
|
+
export type GetApiDocumentsMeResponses = {
|
|
1776
1778
|
/**
|
|
1777
1779
|
* List of documents
|
|
1778
1780
|
*/
|
|
1779
1781
|
200: Array<DocumentResponseDto>;
|
|
1780
1782
|
};
|
|
1781
1783
|
|
|
1782
|
-
export type
|
|
1783
|
-
|
|
1784
|
+
export type GetApiDocumentsMeResponse =
|
|
1785
|
+
GetApiDocumentsMeResponses[keyof GetApiDocumentsMeResponses];
|
|
1784
1786
|
|
|
1785
|
-
export type
|
|
1787
|
+
export type PostApiDocumentsData = {
|
|
1786
1788
|
body: CreateDocumentDto;
|
|
1787
1789
|
path?: never;
|
|
1788
1790
|
query?: never;
|
|
1789
|
-
url: '/documents';
|
|
1791
|
+
url: '/api/documents';
|
|
1790
1792
|
};
|
|
1791
1793
|
|
|
1792
|
-
export type
|
|
1794
|
+
export type PostApiDocumentsErrors = {
|
|
1793
1795
|
/**
|
|
1794
1796
|
* Unauthorized
|
|
1795
1797
|
*/
|
|
1796
1798
|
401: unknown;
|
|
1797
1799
|
};
|
|
1798
1800
|
|
|
1799
|
-
export type
|
|
1801
|
+
export type PostApiDocumentsResponses = {
|
|
1800
1802
|
/**
|
|
1801
1803
|
* Document created
|
|
1802
1804
|
*/
|
|
1803
1805
|
201: DocumentResponseDto;
|
|
1804
1806
|
};
|
|
1805
1807
|
|
|
1806
|
-
export type
|
|
1807
|
-
|
|
1808
|
+
export type PostApiDocumentsResponse =
|
|
1809
|
+
PostApiDocumentsResponses[keyof PostApiDocumentsResponses];
|
|
1808
1810
|
|
|
1809
|
-
export type
|
|
1811
|
+
export type GetApiIndexByTableNameData = {
|
|
1810
1812
|
body?: never;
|
|
1811
1813
|
path: {
|
|
1812
1814
|
tableName: string;
|
|
1813
1815
|
};
|
|
1814
1816
|
query?: never;
|
|
1815
|
-
url: '/index/{tableName}';
|
|
1817
|
+
url: '/api/index/{tableName}';
|
|
1816
1818
|
};
|
|
1817
1819
|
|
|
1818
|
-
export type
|
|
1820
|
+
export type GetApiIndexByTableNameErrors = {
|
|
1819
1821
|
/**
|
|
1820
1822
|
* Invalid index table
|
|
1821
1823
|
*/
|
|
@@ -1826,17 +1828,17 @@ export type GetIndexByTableNameErrors = {
|
|
|
1826
1828
|
401: unknown;
|
|
1827
1829
|
};
|
|
1828
1830
|
|
|
1829
|
-
export type
|
|
1831
|
+
export type GetApiIndexByTableNameResponses = {
|
|
1830
1832
|
/**
|
|
1831
1833
|
* Index table items
|
|
1832
1834
|
*/
|
|
1833
1835
|
200: Array<IndexItemDto>;
|
|
1834
1836
|
};
|
|
1835
1837
|
|
|
1836
|
-
export type
|
|
1837
|
-
|
|
1838
|
+
export type GetApiIndexByTableNameResponse =
|
|
1839
|
+
GetApiIndexByTableNameResponses[keyof GetApiIndexByTableNameResponses];
|
|
1838
1840
|
|
|
1839
|
-
export type
|
|
1841
|
+
export type GetApiOffersConversationsData = {
|
|
1840
1842
|
body?: never;
|
|
1841
1843
|
path?: never;
|
|
1842
1844
|
query?: {
|
|
@@ -1844,45 +1846,45 @@ export type GetOffersConversationsData = {
|
|
|
1844
1846
|
page?: number;
|
|
1845
1847
|
pageSize?: number;
|
|
1846
1848
|
};
|
|
1847
|
-
url: '/offers/conversations';
|
|
1849
|
+
url: '/api/offers/conversations';
|
|
1848
1850
|
};
|
|
1849
1851
|
|
|
1850
|
-
export type
|
|
1852
|
+
export type GetApiOffersConversationsErrors = {
|
|
1851
1853
|
/**
|
|
1852
1854
|
* Unauthorized
|
|
1853
1855
|
*/
|
|
1854
1856
|
401: unknown;
|
|
1855
1857
|
};
|
|
1856
1858
|
|
|
1857
|
-
export type
|
|
1859
|
+
export type GetApiOffersConversationsResponses = {
|
|
1858
1860
|
200: ConversationListResultDto;
|
|
1859
1861
|
};
|
|
1860
1862
|
|
|
1861
|
-
export type
|
|
1862
|
-
|
|
1863
|
+
export type GetApiOffersConversationsResponse =
|
|
1864
|
+
GetApiOffersConversationsResponses[keyof GetApiOffersConversationsResponses];
|
|
1863
1865
|
|
|
1864
|
-
export type
|
|
1866
|
+
export type PostApiOffersConversationsData = {
|
|
1865
1867
|
body: CreateConversationDto;
|
|
1866
1868
|
path?: never;
|
|
1867
1869
|
query?: never;
|
|
1868
|
-
url: '/offers/conversations';
|
|
1870
|
+
url: '/api/offers/conversations';
|
|
1869
1871
|
};
|
|
1870
1872
|
|
|
1871
|
-
export type
|
|
1873
|
+
export type PostApiOffersConversationsErrors = {
|
|
1872
1874
|
/**
|
|
1873
1875
|
* Unauthorized
|
|
1874
1876
|
*/
|
|
1875
1877
|
401: unknown;
|
|
1876
1878
|
};
|
|
1877
1879
|
|
|
1878
|
-
export type
|
|
1880
|
+
export type PostApiOffersConversationsResponses = {
|
|
1879
1881
|
201: ConversationDetailDto;
|
|
1880
1882
|
};
|
|
1881
1883
|
|
|
1882
|
-
export type
|
|
1883
|
-
|
|
1884
|
+
export type PostApiOffersConversationsResponse =
|
|
1885
|
+
PostApiOffersConversationsResponses[keyof PostApiOffersConversationsResponses];
|
|
1884
1886
|
|
|
1885
|
-
export type
|
|
1887
|
+
export type GetApiOffersConversationsByIdMessagesData = {
|
|
1886
1888
|
body?: never;
|
|
1887
1889
|
path: {
|
|
1888
1890
|
id: string;
|
|
@@ -1891,10 +1893,10 @@ export type GetOffersConversationsByIdMessagesData = {
|
|
|
1891
1893
|
page?: number;
|
|
1892
1894
|
pageSize?: number;
|
|
1893
1895
|
};
|
|
1894
|
-
url: '/offers/conversations/{id}/messages';
|
|
1896
|
+
url: '/api/offers/conversations/{id}/messages';
|
|
1895
1897
|
};
|
|
1896
1898
|
|
|
1897
|
-
export type
|
|
1899
|
+
export type GetApiOffersConversationsByIdMessagesErrors = {
|
|
1898
1900
|
/**
|
|
1899
1901
|
* Unauthorized
|
|
1900
1902
|
*/
|
|
@@ -1909,23 +1911,23 @@ export type GetOffersConversationsByIdMessagesErrors = {
|
|
|
1909
1911
|
404: unknown;
|
|
1910
1912
|
};
|
|
1911
1913
|
|
|
1912
|
-
export type
|
|
1914
|
+
export type GetApiOffersConversationsByIdMessagesResponses = {
|
|
1913
1915
|
200: MessageListResultDto;
|
|
1914
1916
|
};
|
|
1915
1917
|
|
|
1916
|
-
export type
|
|
1917
|
-
|
|
1918
|
+
export type GetApiOffersConversationsByIdMessagesResponse =
|
|
1919
|
+
GetApiOffersConversationsByIdMessagesResponses[keyof GetApiOffersConversationsByIdMessagesResponses];
|
|
1918
1920
|
|
|
1919
|
-
export type
|
|
1921
|
+
export type PostApiOffersConversationsByIdMessagesData = {
|
|
1920
1922
|
body: SendMessageDto;
|
|
1921
1923
|
path: {
|
|
1922
1924
|
id: string;
|
|
1923
1925
|
};
|
|
1924
1926
|
query?: never;
|
|
1925
|
-
url: '/offers/conversations/{id}/messages';
|
|
1927
|
+
url: '/api/offers/conversations/{id}/messages';
|
|
1926
1928
|
};
|
|
1927
1929
|
|
|
1928
|
-
export type
|
|
1930
|
+
export type PostApiOffersConversationsByIdMessagesErrors = {
|
|
1929
1931
|
/**
|
|
1930
1932
|
* Unauthorized
|
|
1931
1933
|
*/
|
|
@@ -1940,23 +1942,23 @@ export type PostOffersConversationsByIdMessagesErrors = {
|
|
|
1940
1942
|
404: unknown;
|
|
1941
1943
|
};
|
|
1942
1944
|
|
|
1943
|
-
export type
|
|
1945
|
+
export type PostApiOffersConversationsByIdMessagesResponses = {
|
|
1944
1946
|
201: MessageItemDto;
|
|
1945
1947
|
};
|
|
1946
1948
|
|
|
1947
|
-
export type
|
|
1948
|
-
|
|
1949
|
+
export type PostApiOffersConversationsByIdMessagesResponse =
|
|
1950
|
+
PostApiOffersConversationsByIdMessagesResponses[keyof PostApiOffersConversationsByIdMessagesResponses];
|
|
1949
1951
|
|
|
1950
|
-
export type
|
|
1952
|
+
export type PatchApiOffersConversationsByIdReadData = {
|
|
1951
1953
|
body?: never;
|
|
1952
1954
|
path: {
|
|
1953
1955
|
id: string;
|
|
1954
1956
|
};
|
|
1955
1957
|
query?: never;
|
|
1956
|
-
url: '/offers/conversations/{id}/read';
|
|
1958
|
+
url: '/api/offers/conversations/{id}/read';
|
|
1957
1959
|
};
|
|
1958
1960
|
|
|
1959
|
-
export type
|
|
1961
|
+
export type PatchApiOffersConversationsByIdReadErrors = {
|
|
1960
1962
|
/**
|
|
1961
1963
|
* Unauthorized
|
|
1962
1964
|
*/
|
|
@@ -1971,18 +1973,18 @@ export type PatchOffersConversationsByIdReadErrors = {
|
|
|
1971
1973
|
404: unknown;
|
|
1972
1974
|
};
|
|
1973
1975
|
|
|
1974
|
-
export type
|
|
1976
|
+
export type PatchApiOffersConversationsByIdReadResponses = {
|
|
1975
1977
|
200: unknown;
|
|
1976
1978
|
};
|
|
1977
1979
|
|
|
1978
|
-
export type
|
|
1980
|
+
export type PostApiOrganizationsRegisterClubData = {
|
|
1979
1981
|
body: RegisterClubDto;
|
|
1980
1982
|
path?: never;
|
|
1981
1983
|
query?: never;
|
|
1982
|
-
url: '/organizations/register-club';
|
|
1984
|
+
url: '/api/organizations/register-club';
|
|
1983
1985
|
};
|
|
1984
1986
|
|
|
1985
|
-
export type
|
|
1987
|
+
export type PostApiOrganizationsRegisterClubErrors = {
|
|
1986
1988
|
/**
|
|
1987
1989
|
* Bad request
|
|
1988
1990
|
*/
|
|
@@ -1993,21 +1995,21 @@ export type PostOrganizationsRegisterClubErrors = {
|
|
|
1993
1995
|
409: unknown;
|
|
1994
1996
|
};
|
|
1995
1997
|
|
|
1996
|
-
export type
|
|
1998
|
+
export type PostApiOrganizationsRegisterClubResponses = {
|
|
1997
1999
|
201: RegisterClubResponseDto;
|
|
1998
2000
|
};
|
|
1999
2001
|
|
|
2000
|
-
export type
|
|
2001
|
-
|
|
2002
|
+
export type PostApiOrganizationsRegisterClubResponse =
|
|
2003
|
+
PostApiOrganizationsRegisterClubResponses[keyof PostApiOrganizationsRegisterClubResponses];
|
|
2002
2004
|
|
|
2003
|
-
export type
|
|
2005
|
+
export type GetApiOrganizationsMeData = {
|
|
2004
2006
|
body?: never;
|
|
2005
2007
|
path?: never;
|
|
2006
2008
|
query?: never;
|
|
2007
|
-
url: '/organizations/me';
|
|
2009
|
+
url: '/api/organizations/me';
|
|
2008
2010
|
};
|
|
2009
2011
|
|
|
2010
|
-
export type
|
|
2012
|
+
export type GetApiOrganizationsMeErrors = {
|
|
2011
2013
|
/**
|
|
2012
2014
|
* Unauthorized
|
|
2013
2015
|
*/
|
|
@@ -2018,21 +2020,21 @@ export type GetOrganizationsMeErrors = {
|
|
|
2018
2020
|
404: unknown;
|
|
2019
2021
|
};
|
|
2020
2022
|
|
|
2021
|
-
export type
|
|
2023
|
+
export type GetApiOrganizationsMeResponses = {
|
|
2022
2024
|
200: OrganizationResponseDto;
|
|
2023
2025
|
};
|
|
2024
2026
|
|
|
2025
|
-
export type
|
|
2026
|
-
|
|
2027
|
+
export type GetApiOrganizationsMeResponse =
|
|
2028
|
+
GetApiOrganizationsMeResponses[keyof GetApiOrganizationsMeResponses];
|
|
2027
2029
|
|
|
2028
|
-
export type
|
|
2030
|
+
export type PutApiOrganizationsMeData = {
|
|
2029
2031
|
body: UpdateOrganizationDto;
|
|
2030
2032
|
path?: never;
|
|
2031
2033
|
query?: never;
|
|
2032
|
-
url: '/organizations/me';
|
|
2034
|
+
url: '/api/organizations/me';
|
|
2033
2035
|
};
|
|
2034
2036
|
|
|
2035
|
-
export type
|
|
2037
|
+
export type PutApiOrganizationsMeErrors = {
|
|
2036
2038
|
/**
|
|
2037
2039
|
* Unauthorized
|
|
2038
2040
|
*/
|
|
@@ -2043,21 +2045,21 @@ export type PutOrganizationsMeErrors = {
|
|
|
2043
2045
|
404: unknown;
|
|
2044
2046
|
};
|
|
2045
2047
|
|
|
2046
|
-
export type
|
|
2048
|
+
export type PutApiOrganizationsMeResponses = {
|
|
2047
2049
|
200: OrganizationResponseDto;
|
|
2048
2050
|
};
|
|
2049
2051
|
|
|
2050
|
-
export type
|
|
2051
|
-
|
|
2052
|
+
export type PutApiOrganizationsMeResponse =
|
|
2053
|
+
PutApiOrganizationsMeResponses[keyof PutApiOrganizationsMeResponses];
|
|
2052
2054
|
|
|
2053
|
-
export type
|
|
2055
|
+
export type PostApiStorageUploadUrlData = {
|
|
2054
2056
|
body: CreateUploadUrlDto;
|
|
2055
2057
|
path?: never;
|
|
2056
2058
|
query?: never;
|
|
2057
|
-
url: '/storage/upload-url';
|
|
2059
|
+
url: '/api/storage/upload-url';
|
|
2058
2060
|
};
|
|
2059
2061
|
|
|
2060
|
-
export type
|
|
2062
|
+
export type PostApiStorageUploadUrlErrors = {
|
|
2061
2063
|
/**
|
|
2062
2064
|
* Unknown bucket or disallowed MIME
|
|
2063
2065
|
*/
|
|
@@ -2072,61 +2074,61 @@ export type PostStorageUploadUrlErrors = {
|
|
|
2072
2074
|
413: unknown;
|
|
2073
2075
|
};
|
|
2074
2076
|
|
|
2075
|
-
export type
|
|
2077
|
+
export type PostApiStorageUploadUrlResponses = {
|
|
2076
2078
|
/**
|
|
2077
2079
|
* Signed upload URL issued
|
|
2078
2080
|
*/
|
|
2079
2081
|
201: UploadUrlResponseDto;
|
|
2080
2082
|
};
|
|
2081
2083
|
|
|
2082
|
-
export type
|
|
2083
|
-
|
|
2084
|
+
export type PostApiStorageUploadUrlResponse =
|
|
2085
|
+
PostApiStorageUploadUrlResponses[keyof PostApiStorageUploadUrlResponses];
|
|
2084
2086
|
|
|
2085
|
-
export type
|
|
2087
|
+
export type GetApiInvitationsData = {
|
|
2086
2088
|
body?: never;
|
|
2087
2089
|
path?: never;
|
|
2088
2090
|
query?: never;
|
|
2089
|
-
url: '/invitations';
|
|
2091
|
+
url: '/api/invitations';
|
|
2090
2092
|
};
|
|
2091
2093
|
|
|
2092
|
-
export type
|
|
2094
|
+
export type GetApiInvitationsResponses = {
|
|
2093
2095
|
200: Array<InvitationResponseDto>;
|
|
2094
2096
|
};
|
|
2095
2097
|
|
|
2096
|
-
export type
|
|
2097
|
-
|
|
2098
|
+
export type GetApiInvitationsResponse =
|
|
2099
|
+
GetApiInvitationsResponses[keyof GetApiInvitationsResponses];
|
|
2098
2100
|
|
|
2099
|
-
export type
|
|
2101
|
+
export type PostApiInvitationsData = {
|
|
2100
2102
|
body: SendInvitationRequestDto;
|
|
2101
2103
|
path?: never;
|
|
2102
2104
|
query?: never;
|
|
2103
|
-
url: '/invitations';
|
|
2105
|
+
url: '/api/invitations';
|
|
2104
2106
|
};
|
|
2105
2107
|
|
|
2106
|
-
export type
|
|
2108
|
+
export type PostApiInvitationsErrors = {
|
|
2107
2109
|
/**
|
|
2108
2110
|
* Limit reached or duplicate email
|
|
2109
2111
|
*/
|
|
2110
2112
|
400: unknown;
|
|
2111
2113
|
};
|
|
2112
2114
|
|
|
2113
|
-
export type
|
|
2115
|
+
export type PostApiInvitationsResponses = {
|
|
2114
2116
|
201: InvitationResponseDto;
|
|
2115
2117
|
};
|
|
2116
2118
|
|
|
2117
|
-
export type
|
|
2118
|
-
|
|
2119
|
+
export type PostApiInvitationsResponse =
|
|
2120
|
+
PostApiInvitationsResponses[keyof PostApiInvitationsResponses];
|
|
2119
2121
|
|
|
2120
|
-
export type
|
|
2122
|
+
export type PostApiInvitationsByIdResendData = {
|
|
2121
2123
|
body?: never;
|
|
2122
2124
|
path: {
|
|
2123
2125
|
id: string;
|
|
2124
2126
|
};
|
|
2125
2127
|
query?: never;
|
|
2126
|
-
url: '/invitations/{id}/resend';
|
|
2128
|
+
url: '/api/invitations/{id}/resend';
|
|
2127
2129
|
};
|
|
2128
2130
|
|
|
2129
|
-
export type
|
|
2131
|
+
export type PostApiInvitationsByIdResendErrors = {
|
|
2130
2132
|
/**
|
|
2131
2133
|
* Cannot resend a confirmed invitation
|
|
2132
2134
|
*/
|
|
@@ -2137,23 +2139,23 @@ export type PostInvitationsByIdResendErrors = {
|
|
|
2137
2139
|
404: unknown;
|
|
2138
2140
|
};
|
|
2139
2141
|
|
|
2140
|
-
export type
|
|
2142
|
+
export type PostApiInvitationsByIdResendResponses = {
|
|
2141
2143
|
200: InvitationResponseDto;
|
|
2142
2144
|
};
|
|
2143
2145
|
|
|
2144
|
-
export type
|
|
2145
|
-
|
|
2146
|
+
export type PostApiInvitationsByIdResendResponse =
|
|
2147
|
+
PostApiInvitationsByIdResendResponses[keyof PostApiInvitationsByIdResendResponses];
|
|
2146
2148
|
|
|
2147
|
-
export type
|
|
2149
|
+
export type DeleteApiInvitationsByIdData = {
|
|
2148
2150
|
body?: never;
|
|
2149
2151
|
path: {
|
|
2150
2152
|
id: string;
|
|
2151
2153
|
};
|
|
2152
2154
|
query?: never;
|
|
2153
|
-
url: '/invitations/{id}';
|
|
2155
|
+
url: '/api/invitations/{id}';
|
|
2154
2156
|
};
|
|
2155
2157
|
|
|
2156
|
-
export type
|
|
2158
|
+
export type DeleteApiInvitationsByIdErrors = {
|
|
2157
2159
|
/**
|
|
2158
2160
|
* Cannot delete a confirmed invitation
|
|
2159
2161
|
*/
|
|
@@ -2164,55 +2166,55 @@ export type DeleteInvitationsByIdErrors = {
|
|
|
2164
2166
|
404: unknown;
|
|
2165
2167
|
};
|
|
2166
2168
|
|
|
2167
|
-
export type
|
|
2169
|
+
export type DeleteApiInvitationsByIdResponses = {
|
|
2168
2170
|
/**
|
|
2169
2171
|
* Deleted
|
|
2170
2172
|
*/
|
|
2171
2173
|
204: void;
|
|
2172
2174
|
};
|
|
2173
2175
|
|
|
2174
|
-
export type
|
|
2175
|
-
|
|
2176
|
+
export type DeleteApiInvitationsByIdResponse =
|
|
2177
|
+
DeleteApiInvitationsByIdResponses[keyof DeleteApiInvitationsByIdResponses];
|
|
2176
2178
|
|
|
2177
|
-
export type
|
|
2179
|
+
export type PostApiInvitationsAcceptData = {
|
|
2178
2180
|
body?: never;
|
|
2179
2181
|
path?: never;
|
|
2180
2182
|
query?: never;
|
|
2181
|
-
url: '/invitations/accept';
|
|
2183
|
+
url: '/api/invitations/accept';
|
|
2182
2184
|
};
|
|
2183
2185
|
|
|
2184
|
-
export type
|
|
2186
|
+
export type PostApiInvitationsAcceptResponses = {
|
|
2185
2187
|
/**
|
|
2186
2188
|
* Accepted (or no pending invitation — idempotent)
|
|
2187
2189
|
*/
|
|
2188
2190
|
204: void;
|
|
2189
2191
|
};
|
|
2190
2192
|
|
|
2191
|
-
export type
|
|
2192
|
-
|
|
2193
|
+
export type PostApiInvitationsAcceptResponse =
|
|
2194
|
+
PostApiInvitationsAcceptResponses[keyof PostApiInvitationsAcceptResponses];
|
|
2193
2195
|
|
|
2194
|
-
export type
|
|
2196
|
+
export type GetApiTrainingGroupedData = {
|
|
2195
2197
|
body?: never;
|
|
2196
2198
|
path?: never;
|
|
2197
2199
|
query?: never;
|
|
2198
|
-
url: '/training/grouped';
|
|
2200
|
+
url: '/api/training/grouped';
|
|
2199
2201
|
};
|
|
2200
2202
|
|
|
2201
|
-
export type
|
|
2203
|
+
export type GetApiTrainingGroupedErrors = {
|
|
2202
2204
|
/**
|
|
2203
2205
|
* Unauthorized
|
|
2204
2206
|
*/
|
|
2205
2207
|
401: unknown;
|
|
2206
2208
|
};
|
|
2207
2209
|
|
|
2208
|
-
export type
|
|
2210
|
+
export type GetApiTrainingGroupedResponses = {
|
|
2209
2211
|
200: Array<TrainingCategoryGroupDto>;
|
|
2210
2212
|
};
|
|
2211
2213
|
|
|
2212
|
-
export type
|
|
2213
|
-
|
|
2214
|
+
export type GetApiTrainingGroupedResponse =
|
|
2215
|
+
GetApiTrainingGroupedResponses[keyof GetApiTrainingGroupedResponses];
|
|
2214
2216
|
|
|
2215
|
-
export type
|
|
2217
|
+
export type GetApiTrainingData = {
|
|
2216
2218
|
body?: never;
|
|
2217
2219
|
path?: never;
|
|
2218
2220
|
query?: {
|
|
@@ -2220,33 +2222,33 @@ export type GetTrainingData = {
|
|
|
2220
2222
|
page?: number;
|
|
2221
2223
|
pageSize?: number;
|
|
2222
2224
|
};
|
|
2223
|
-
url: '/training';
|
|
2225
|
+
url: '/api/training';
|
|
2224
2226
|
};
|
|
2225
2227
|
|
|
2226
|
-
export type
|
|
2228
|
+
export type GetApiTrainingErrors = {
|
|
2227
2229
|
/**
|
|
2228
2230
|
* Unauthorized
|
|
2229
2231
|
*/
|
|
2230
2232
|
401: unknown;
|
|
2231
2233
|
};
|
|
2232
2234
|
|
|
2233
|
-
export type
|
|
2235
|
+
export type GetApiTrainingResponses = {
|
|
2234
2236
|
200: PaginatedTrainingContentDto;
|
|
2235
2237
|
};
|
|
2236
2238
|
|
|
2237
|
-
export type
|
|
2238
|
-
|
|
2239
|
+
export type GetApiTrainingResponse =
|
|
2240
|
+
GetApiTrainingResponses[keyof GetApiTrainingResponses];
|
|
2239
2241
|
|
|
2240
|
-
export type
|
|
2242
|
+
export type GetApiTrainingByIdData = {
|
|
2241
2243
|
body?: never;
|
|
2242
2244
|
path: {
|
|
2243
2245
|
id: string;
|
|
2244
2246
|
};
|
|
2245
2247
|
query?: never;
|
|
2246
|
-
url: '/training/{id}';
|
|
2248
|
+
url: '/api/training/{id}';
|
|
2247
2249
|
};
|
|
2248
2250
|
|
|
2249
|
-
export type
|
|
2251
|
+
export type GetApiTrainingByIdErrors = {
|
|
2250
2252
|
/**
|
|
2251
2253
|
* Unauthorized
|
|
2252
2254
|
*/
|
|
@@ -2257,47 +2259,47 @@ export type GetTrainingByIdErrors = {
|
|
|
2257
2259
|
404: unknown;
|
|
2258
2260
|
};
|
|
2259
2261
|
|
|
2260
|
-
export type
|
|
2262
|
+
export type GetApiTrainingByIdResponses = {
|
|
2261
2263
|
200: TrainingContentDetailDto;
|
|
2262
2264
|
};
|
|
2263
2265
|
|
|
2264
|
-
export type
|
|
2265
|
-
|
|
2266
|
+
export type GetApiTrainingByIdResponse =
|
|
2267
|
+
GetApiTrainingByIdResponses[keyof GetApiTrainingByIdResponses];
|
|
2266
2268
|
|
|
2267
|
-
export type
|
|
2269
|
+
export type GetApiVideosMeData = {
|
|
2268
2270
|
body?: never;
|
|
2269
2271
|
path?: never;
|
|
2270
2272
|
query: {
|
|
2271
2273
|
type: string;
|
|
2272
2274
|
};
|
|
2273
|
-
url: '/videos/me';
|
|
2275
|
+
url: '/api/videos/me';
|
|
2274
2276
|
};
|
|
2275
2277
|
|
|
2276
|
-
export type
|
|
2278
|
+
export type GetApiVideosMeErrors = {
|
|
2277
2279
|
/**
|
|
2278
2280
|
* Unauthorized
|
|
2279
2281
|
*/
|
|
2280
2282
|
401: unknown;
|
|
2281
2283
|
};
|
|
2282
2284
|
|
|
2283
|
-
export type
|
|
2285
|
+
export type GetApiVideosMeResponses = {
|
|
2284
2286
|
/**
|
|
2285
2287
|
* List of videos
|
|
2286
2288
|
*/
|
|
2287
2289
|
200: Array<VideoResponseDto>;
|
|
2288
2290
|
};
|
|
2289
2291
|
|
|
2290
|
-
export type
|
|
2291
|
-
|
|
2292
|
+
export type GetApiVideosMeResponse =
|
|
2293
|
+
GetApiVideosMeResponses[keyof GetApiVideosMeResponses];
|
|
2292
2294
|
|
|
2293
|
-
export type
|
|
2295
|
+
export type PostApiVideosData = {
|
|
2294
2296
|
body: CreateVideoDto;
|
|
2295
2297
|
path?: never;
|
|
2296
2298
|
query?: never;
|
|
2297
|
-
url: '/videos';
|
|
2299
|
+
url: '/api/videos';
|
|
2298
2300
|
};
|
|
2299
2301
|
|
|
2300
|
-
export type
|
|
2302
|
+
export type PostApiVideosErrors = {
|
|
2301
2303
|
/**
|
|
2302
2304
|
* Invalid input or best_moment limit exceeded
|
|
2303
2305
|
*/
|
|
@@ -2308,25 +2310,26 @@ export type PostVideosErrors = {
|
|
|
2308
2310
|
401: unknown;
|
|
2309
2311
|
};
|
|
2310
2312
|
|
|
2311
|
-
export type
|
|
2313
|
+
export type PostApiVideosResponses = {
|
|
2312
2314
|
/**
|
|
2313
2315
|
* Video created
|
|
2314
2316
|
*/
|
|
2315
2317
|
201: VideoResponseDto;
|
|
2316
2318
|
};
|
|
2317
2319
|
|
|
2318
|
-
export type
|
|
2320
|
+
export type PostApiVideosResponse =
|
|
2321
|
+
PostApiVideosResponses[keyof PostApiVideosResponses];
|
|
2319
2322
|
|
|
2320
|
-
export type
|
|
2323
|
+
export type GetApiVideosByIdPlayUrlData = {
|
|
2321
2324
|
body?: never;
|
|
2322
2325
|
path: {
|
|
2323
2326
|
id: string;
|
|
2324
2327
|
};
|
|
2325
2328
|
query?: never;
|
|
2326
|
-
url: '/videos/{id}/play-url';
|
|
2329
|
+
url: '/api/videos/{id}/play-url';
|
|
2327
2330
|
};
|
|
2328
2331
|
|
|
2329
|
-
export type
|
|
2332
|
+
export type GetApiVideosByIdPlayUrlErrors = {
|
|
2330
2333
|
/**
|
|
2331
2334
|
* Unauthorized
|
|
2332
2335
|
*/
|
|
@@ -2337,26 +2340,26 @@ export type GetVideosByIdPlayUrlErrors = {
|
|
|
2337
2340
|
404: unknown;
|
|
2338
2341
|
};
|
|
2339
2342
|
|
|
2340
|
-
export type
|
|
2343
|
+
export type GetApiVideosByIdPlayUrlResponses = {
|
|
2341
2344
|
/**
|
|
2342
2345
|
* Short-lived signed URL for video playback
|
|
2343
2346
|
*/
|
|
2344
2347
|
200: PlayUrlResponseDto;
|
|
2345
2348
|
};
|
|
2346
2349
|
|
|
2347
|
-
export type
|
|
2348
|
-
|
|
2350
|
+
export type GetApiVideosByIdPlayUrlResponse =
|
|
2351
|
+
GetApiVideosByIdPlayUrlResponses[keyof GetApiVideosByIdPlayUrlResponses];
|
|
2349
2352
|
|
|
2350
|
-
export type
|
|
2353
|
+
export type DeleteApiVideosByIdData = {
|
|
2351
2354
|
body?: never;
|
|
2352
2355
|
path: {
|
|
2353
2356
|
id: string;
|
|
2354
2357
|
};
|
|
2355
2358
|
query?: never;
|
|
2356
|
-
url: '/videos/{id}';
|
|
2359
|
+
url: '/api/videos/{id}';
|
|
2357
2360
|
};
|
|
2358
2361
|
|
|
2359
|
-
export type
|
|
2362
|
+
export type DeleteApiVideosByIdErrors = {
|
|
2360
2363
|
/**
|
|
2361
2364
|
* Unauthorized
|
|
2362
2365
|
*/
|
|
@@ -2367,12 +2370,12 @@ export type DeleteVideosByIdErrors = {
|
|
|
2367
2370
|
404: unknown;
|
|
2368
2371
|
};
|
|
2369
2372
|
|
|
2370
|
-
export type
|
|
2373
|
+
export type DeleteApiVideosByIdResponses = {
|
|
2371
2374
|
/**
|
|
2372
2375
|
* Video deleted
|
|
2373
2376
|
*/
|
|
2374
2377
|
204: void;
|
|
2375
2378
|
};
|
|
2376
2379
|
|
|
2377
|
-
export type
|
|
2378
|
-
|
|
2380
|
+
export type DeleteApiVideosByIdResponse =
|
|
2381
|
+
DeleteApiVideosByIdResponses[keyof DeleteApiVideosByIdResponses];
|