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