@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/dist/types.gen.d.ts
CHANGED
|
@@ -1226,109 +1226,109 @@ export type PlayUrlResponseDto = {
|
|
|
1226
1226
|
*/
|
|
1227
1227
|
expiresIn: number;
|
|
1228
1228
|
};
|
|
1229
|
-
export type
|
|
1229
|
+
export type GetApiAuthMeData = {
|
|
1230
1230
|
body?: never;
|
|
1231
1231
|
path?: never;
|
|
1232
1232
|
query?: never;
|
|
1233
|
-
url: '/auth/me';
|
|
1233
|
+
url: '/api/auth/me';
|
|
1234
1234
|
};
|
|
1235
|
-
export type
|
|
1235
|
+
export type GetApiAuthMeErrors = {
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Unauthorized
|
|
1238
1238
|
*/
|
|
1239
1239
|
401: unknown;
|
|
1240
1240
|
};
|
|
1241
|
-
export type
|
|
1241
|
+
export type GetApiAuthMeResponses = {
|
|
1242
1242
|
200: AuthMeResponseDto;
|
|
1243
1243
|
};
|
|
1244
|
-
export type
|
|
1245
|
-
export type
|
|
1244
|
+
export type GetApiAuthMeResponse = GetApiAuthMeResponses[keyof GetApiAuthMeResponses];
|
|
1245
|
+
export type DeleteApiPlayersMeData = {
|
|
1246
1246
|
body?: never;
|
|
1247
1247
|
path?: never;
|
|
1248
1248
|
query?: never;
|
|
1249
|
-
url: '/players/me';
|
|
1249
|
+
url: '/api/players/me';
|
|
1250
1250
|
};
|
|
1251
|
-
export type
|
|
1251
|
+
export type DeleteApiPlayersMeErrors = {
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Deletion not configured
|
|
1254
1254
|
*/
|
|
1255
1255
|
503: unknown;
|
|
1256
1256
|
};
|
|
1257
|
-
export type
|
|
1257
|
+
export type DeleteApiPlayersMeResponses = {
|
|
1258
1258
|
204: void;
|
|
1259
1259
|
};
|
|
1260
|
-
export type
|
|
1261
|
-
export type
|
|
1260
|
+
export type DeleteApiPlayersMeResponse = DeleteApiPlayersMeResponses[keyof DeleteApiPlayersMeResponses];
|
|
1261
|
+
export type GetApiPlayersMeData = {
|
|
1262
1262
|
body?: never;
|
|
1263
1263
|
path?: never;
|
|
1264
1264
|
query?: never;
|
|
1265
|
-
url: '/players/me';
|
|
1265
|
+
url: '/api/players/me';
|
|
1266
1266
|
};
|
|
1267
|
-
export type
|
|
1267
|
+
export type GetApiPlayersMeErrors = {
|
|
1268
1268
|
/**
|
|
1269
1269
|
* Unauthorized
|
|
1270
1270
|
*/
|
|
1271
1271
|
401: unknown;
|
|
1272
1272
|
};
|
|
1273
|
-
export type
|
|
1273
|
+
export type GetApiPlayersMeResponses = {
|
|
1274
1274
|
200: PlayerResponseDto;
|
|
1275
1275
|
};
|
|
1276
|
-
export type
|
|
1277
|
-
export type
|
|
1276
|
+
export type GetApiPlayersMeResponse = GetApiPlayersMeResponses[keyof GetApiPlayersMeResponses];
|
|
1277
|
+
export type PatchApiPlayersMeData = {
|
|
1278
1278
|
body: UpdatePlayerDto;
|
|
1279
1279
|
path?: never;
|
|
1280
1280
|
query?: never;
|
|
1281
|
-
url: '/players/me';
|
|
1281
|
+
url: '/api/players/me';
|
|
1282
1282
|
};
|
|
1283
|
-
export type
|
|
1283
|
+
export type PatchApiPlayersMeErrors = {
|
|
1284
1284
|
/**
|
|
1285
1285
|
* Unauthorized
|
|
1286
1286
|
*/
|
|
1287
1287
|
401: unknown;
|
|
1288
1288
|
};
|
|
1289
|
-
export type
|
|
1289
|
+
export type PatchApiPlayersMeResponses = {
|
|
1290
1290
|
200: PlayerResponseDto;
|
|
1291
1291
|
};
|
|
1292
|
-
export type
|
|
1293
|
-
export type
|
|
1292
|
+
export type PatchApiPlayersMeResponse = PatchApiPlayersMeResponses[keyof PatchApiPlayersMeResponses];
|
|
1293
|
+
export type GetApiPlayersMeDashboardData = {
|
|
1294
1294
|
body?: never;
|
|
1295
1295
|
path?: never;
|
|
1296
1296
|
query?: never;
|
|
1297
|
-
url: '/players/me/dashboard';
|
|
1297
|
+
url: '/api/players/me/dashboard';
|
|
1298
1298
|
};
|
|
1299
|
-
export type
|
|
1299
|
+
export type GetApiPlayersMeDashboardErrors = {
|
|
1300
1300
|
/**
|
|
1301
1301
|
* Unauthorized
|
|
1302
1302
|
*/
|
|
1303
1303
|
401: unknown;
|
|
1304
1304
|
};
|
|
1305
|
-
export type
|
|
1305
|
+
export type GetApiPlayersMeDashboardResponses = {
|
|
1306
1306
|
200: DashboardResponseDto;
|
|
1307
1307
|
};
|
|
1308
|
-
export type
|
|
1309
|
-
export type
|
|
1308
|
+
export type GetApiPlayersMeDashboardResponse = GetApiPlayersMeDashboardResponses[keyof GetApiPlayersMeDashboardResponses];
|
|
1309
|
+
export type PostApiPlayersMeHeartbeatData = {
|
|
1310
1310
|
body: HeartbeatDto;
|
|
1311
1311
|
path?: never;
|
|
1312
1312
|
query?: never;
|
|
1313
|
-
url: '/players/me/heartbeat';
|
|
1313
|
+
url: '/api/players/me/heartbeat';
|
|
1314
1314
|
};
|
|
1315
|
-
export type
|
|
1315
|
+
export type PostApiPlayersMeHeartbeatErrors = {
|
|
1316
1316
|
/**
|
|
1317
1317
|
* Unauthorized
|
|
1318
1318
|
*/
|
|
1319
1319
|
401: unknown;
|
|
1320
1320
|
};
|
|
1321
|
-
export type
|
|
1321
|
+
export type PostApiPlayersMeHeartbeatResponses = {
|
|
1322
1322
|
200: HeartbeatResponseDto;
|
|
1323
1323
|
};
|
|
1324
|
-
export type
|
|
1325
|
-
export type
|
|
1324
|
+
export type PostApiPlayersMeHeartbeatResponse = PostApiPlayersMeHeartbeatResponses[keyof PostApiPlayersMeHeartbeatResponses];
|
|
1325
|
+
export type PostApiPlayersSearchData = {
|
|
1326
1326
|
body: PlayerSearchRequestDto;
|
|
1327
1327
|
path?: never;
|
|
1328
1328
|
query?: never;
|
|
1329
|
-
url: '/players/search';
|
|
1329
|
+
url: '/api/players/search';
|
|
1330
1330
|
};
|
|
1331
|
-
export type
|
|
1331
|
+
export type PostApiPlayersSearchErrors = {
|
|
1332
1332
|
/**
|
|
1333
1333
|
* Invalid filter combination
|
|
1334
1334
|
*/
|
|
@@ -1338,19 +1338,19 @@ export type PostPlayersSearchErrors = {
|
|
|
1338
1338
|
*/
|
|
1339
1339
|
401: unknown;
|
|
1340
1340
|
};
|
|
1341
|
-
export type
|
|
1341
|
+
export type PostApiPlayersSearchResponses = {
|
|
1342
1342
|
200: PlayerSearchResultDto;
|
|
1343
1343
|
};
|
|
1344
|
-
export type
|
|
1345
|
-
export type
|
|
1344
|
+
export type PostApiPlayersSearchResponse = PostApiPlayersSearchResponses[keyof PostApiPlayersSearchResponses];
|
|
1345
|
+
export type GetApiPlayersByIdData = {
|
|
1346
1346
|
body?: never;
|
|
1347
1347
|
path: {
|
|
1348
1348
|
id: string;
|
|
1349
1349
|
};
|
|
1350
1350
|
query?: never;
|
|
1351
|
-
url: '/players/{id}';
|
|
1351
|
+
url: '/api/players/{id}';
|
|
1352
1352
|
};
|
|
1353
|
-
export type
|
|
1353
|
+
export type GetApiPlayersByIdErrors = {
|
|
1354
1354
|
/**
|
|
1355
1355
|
* Unauthorized
|
|
1356
1356
|
*/
|
|
@@ -1360,17 +1360,17 @@ export type GetPlayersByIdErrors = {
|
|
|
1360
1360
|
*/
|
|
1361
1361
|
404: unknown;
|
|
1362
1362
|
};
|
|
1363
|
-
export type
|
|
1363
|
+
export type GetApiPlayersByIdResponses = {
|
|
1364
1364
|
200: PlayerByIdDto;
|
|
1365
1365
|
};
|
|
1366
|
-
export type
|
|
1367
|
-
export type
|
|
1366
|
+
export type GetApiPlayersByIdResponse = GetApiPlayersByIdResponses[keyof GetApiPlayersByIdResponses];
|
|
1367
|
+
export type GetApiProfileMeData = {
|
|
1368
1368
|
body?: never;
|
|
1369
1369
|
path?: never;
|
|
1370
1370
|
query?: never;
|
|
1371
|
-
url: '/profile/me';
|
|
1371
|
+
url: '/api/profile/me';
|
|
1372
1372
|
};
|
|
1373
|
-
export type
|
|
1373
|
+
export type GetApiProfileMeErrors = {
|
|
1374
1374
|
/**
|
|
1375
1375
|
* Unauthorized
|
|
1376
1376
|
*/
|
|
@@ -1380,65 +1380,65 @@ export type GetProfileMeErrors = {
|
|
|
1380
1380
|
*/
|
|
1381
1381
|
404: unknown;
|
|
1382
1382
|
};
|
|
1383
|
-
export type
|
|
1383
|
+
export type GetApiProfileMeResponses = {
|
|
1384
1384
|
/**
|
|
1385
1385
|
* Current player profile
|
|
1386
1386
|
*/
|
|
1387
1387
|
200: ProfileResponseDto;
|
|
1388
1388
|
};
|
|
1389
|
-
export type
|
|
1390
|
-
export type
|
|
1389
|
+
export type GetApiProfileMeResponse = GetApiProfileMeResponses[keyof GetApiProfileMeResponses];
|
|
1390
|
+
export type PutApiProfileMeData = {
|
|
1391
1391
|
body: UpdateProfileDto;
|
|
1392
1392
|
path?: never;
|
|
1393
1393
|
query?: never;
|
|
1394
|
-
url: '/profile/me';
|
|
1394
|
+
url: '/api/profile/me';
|
|
1395
1395
|
};
|
|
1396
|
-
export type
|
|
1396
|
+
export type PutApiProfileMeErrors = {
|
|
1397
1397
|
/**
|
|
1398
1398
|
* Unauthorized
|
|
1399
1399
|
*/
|
|
1400
1400
|
401: unknown;
|
|
1401
1401
|
};
|
|
1402
|
-
export type
|
|
1402
|
+
export type PutApiProfileMeResponses = {
|
|
1403
1403
|
/**
|
|
1404
1404
|
* Updated profile
|
|
1405
1405
|
*/
|
|
1406
1406
|
200: ProfileResponseDto;
|
|
1407
1407
|
};
|
|
1408
|
-
export type
|
|
1409
|
-
export type
|
|
1408
|
+
export type PutApiProfileMeResponse = PutApiProfileMeResponses[keyof PutApiProfileMeResponses];
|
|
1409
|
+
export type GetApiAchievementsData = {
|
|
1410
1410
|
body?: never;
|
|
1411
1411
|
path?: never;
|
|
1412
1412
|
query?: never;
|
|
1413
|
-
url: '/achievements';
|
|
1413
|
+
url: '/api/achievements';
|
|
1414
1414
|
};
|
|
1415
|
-
export type
|
|
1415
|
+
export type GetApiAchievementsResponses = {
|
|
1416
1416
|
200: Array<AchievementCatalogDto>;
|
|
1417
1417
|
};
|
|
1418
|
-
export type
|
|
1419
|
-
export type
|
|
1418
|
+
export type GetApiAchievementsResponse = GetApiAchievementsResponses[keyof GetApiAchievementsResponses];
|
|
1419
|
+
export type GetApiAchievementsMeData = {
|
|
1420
1420
|
body?: never;
|
|
1421
1421
|
path?: never;
|
|
1422
1422
|
query?: never;
|
|
1423
|
-
url: '/achievements/me';
|
|
1423
|
+
url: '/api/achievements/me';
|
|
1424
1424
|
};
|
|
1425
|
-
export type
|
|
1425
|
+
export type GetApiAchievementsMeErrors = {
|
|
1426
1426
|
/**
|
|
1427
1427
|
* Unauthorized
|
|
1428
1428
|
*/
|
|
1429
1429
|
401: unknown;
|
|
1430
1430
|
};
|
|
1431
|
-
export type
|
|
1431
|
+
export type GetApiAchievementsMeResponses = {
|
|
1432
1432
|
200: Array<UserAchievementResponseDto>;
|
|
1433
1433
|
};
|
|
1434
|
-
export type
|
|
1435
|
-
export type
|
|
1434
|
+
export type GetApiAchievementsMeResponse = GetApiAchievementsMeResponses[keyof GetApiAchievementsMeResponses];
|
|
1435
|
+
export type GetApiBodyMeasurementsMeData = {
|
|
1436
1436
|
body?: never;
|
|
1437
1437
|
path?: never;
|
|
1438
1438
|
query?: never;
|
|
1439
|
-
url: '/body/measurements/me';
|
|
1439
|
+
url: '/api/body/measurements/me';
|
|
1440
1440
|
};
|
|
1441
|
-
export type
|
|
1441
|
+
export type GetApiBodyMeasurementsMeErrors = {
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Unauthorized
|
|
1444
1444
|
*/
|
|
@@ -1448,55 +1448,55 @@ export type GetBodyMeasurementsMeErrors = {
|
|
|
1448
1448
|
*/
|
|
1449
1449
|
404: unknown;
|
|
1450
1450
|
};
|
|
1451
|
-
export type
|
|
1451
|
+
export type GetApiBodyMeasurementsMeResponses = {
|
|
1452
1452
|
/**
|
|
1453
1453
|
* Latest body measurement
|
|
1454
1454
|
*/
|
|
1455
1455
|
200: BodyMeasurementResponseDto;
|
|
1456
1456
|
};
|
|
1457
|
-
export type
|
|
1458
|
-
export type
|
|
1457
|
+
export type GetApiBodyMeasurementsMeResponse = GetApiBodyMeasurementsMeResponses[keyof GetApiBodyMeasurementsMeResponses];
|
|
1458
|
+
export type PostApiBodyMeasurementsData = {
|
|
1459
1459
|
body: CreateBodyMeasurementDto;
|
|
1460
1460
|
path?: never;
|
|
1461
1461
|
query?: never;
|
|
1462
|
-
url: '/body/measurements';
|
|
1462
|
+
url: '/api/body/measurements';
|
|
1463
1463
|
};
|
|
1464
|
-
export type
|
|
1464
|
+
export type PostApiBodyMeasurementsErrors = {
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Unauthorized
|
|
1467
1467
|
*/
|
|
1468
1468
|
401: unknown;
|
|
1469
1469
|
};
|
|
1470
|
-
export type
|
|
1470
|
+
export type PostApiBodyMeasurementsResponses = {
|
|
1471
1471
|
/**
|
|
1472
1472
|
* Body measurement created
|
|
1473
1473
|
*/
|
|
1474
1474
|
201: BodyMeasurementResponseDto;
|
|
1475
1475
|
};
|
|
1476
|
-
export type
|
|
1477
|
-
export type
|
|
1476
|
+
export type PostApiBodyMeasurementsResponse = PostApiBodyMeasurementsResponses[keyof PostApiBodyMeasurementsResponses];
|
|
1477
|
+
export type GetApiChallengesData = {
|
|
1478
1478
|
body?: never;
|
|
1479
1479
|
path?: never;
|
|
1480
1480
|
query?: never;
|
|
1481
|
-
url: '/challenges';
|
|
1481
|
+
url: '/api/challenges';
|
|
1482
1482
|
};
|
|
1483
|
-
export type
|
|
1483
|
+
export type GetApiChallengesErrors = {
|
|
1484
1484
|
/**
|
|
1485
1485
|
* Unauthorized
|
|
1486
1486
|
*/
|
|
1487
1487
|
401: unknown;
|
|
1488
1488
|
};
|
|
1489
|
-
export type
|
|
1489
|
+
export type GetApiChallengesResponses = {
|
|
1490
1490
|
200: Array<ChallengeCatalogDto>;
|
|
1491
1491
|
};
|
|
1492
|
-
export type
|
|
1493
|
-
export type
|
|
1492
|
+
export type GetApiChallengesResponse = GetApiChallengesResponses[keyof GetApiChallengesResponses];
|
|
1493
|
+
export type GetApiChallengesMeData = {
|
|
1494
1494
|
body?: never;
|
|
1495
1495
|
path?: never;
|
|
1496
1496
|
query?: never;
|
|
1497
|
-
url: '/challenges/me';
|
|
1497
|
+
url: '/api/challenges/me';
|
|
1498
1498
|
};
|
|
1499
|
-
export type
|
|
1499
|
+
export type GetApiChallengesMeErrors = {
|
|
1500
1500
|
/**
|
|
1501
1501
|
* Unauthorized
|
|
1502
1502
|
*/
|
|
@@ -1506,51 +1506,51 @@ export type GetChallengesMeErrors = {
|
|
|
1506
1506
|
*/
|
|
1507
1507
|
403: unknown;
|
|
1508
1508
|
};
|
|
1509
|
-
export type
|
|
1509
|
+
export type GetApiChallengesMeResponses = {
|
|
1510
1510
|
200: Array<MyChallengeDto>;
|
|
1511
1511
|
};
|
|
1512
|
-
export type
|
|
1513
|
-
export type
|
|
1512
|
+
export type GetApiChallengesMeResponse = GetApiChallengesMeResponses[keyof GetApiChallengesMeResponses];
|
|
1513
|
+
export type GetApiClubsMeData = {
|
|
1514
1514
|
body?: never;
|
|
1515
1515
|
path?: never;
|
|
1516
1516
|
query?: never;
|
|
1517
|
-
url: '/clubs/me';
|
|
1517
|
+
url: '/api/clubs/me';
|
|
1518
1518
|
};
|
|
1519
|
-
export type
|
|
1519
|
+
export type GetApiClubsMeErrors = {
|
|
1520
1520
|
/**
|
|
1521
1521
|
* Unauthorized
|
|
1522
1522
|
*/
|
|
1523
1523
|
401: unknown;
|
|
1524
1524
|
};
|
|
1525
|
-
export type
|
|
1525
|
+
export type GetApiClubsMeResponses = {
|
|
1526
1526
|
200: Array<ClubResponseDto>;
|
|
1527
1527
|
};
|
|
1528
|
-
export type
|
|
1529
|
-
export type
|
|
1528
|
+
export type GetApiClubsMeResponse = GetApiClubsMeResponses[keyof GetApiClubsMeResponses];
|
|
1529
|
+
export type PostApiClubsMeData = {
|
|
1530
1530
|
body: CreateClubDto;
|
|
1531
1531
|
path?: never;
|
|
1532
1532
|
query?: never;
|
|
1533
|
-
url: '/clubs/me';
|
|
1533
|
+
url: '/api/clubs/me';
|
|
1534
1534
|
};
|
|
1535
|
-
export type
|
|
1535
|
+
export type PostApiClubsMeErrors = {
|
|
1536
1536
|
/**
|
|
1537
1537
|
* Unauthorized
|
|
1538
1538
|
*/
|
|
1539
1539
|
401: unknown;
|
|
1540
1540
|
};
|
|
1541
|
-
export type
|
|
1541
|
+
export type PostApiClubsMeResponses = {
|
|
1542
1542
|
201: ClubResponseDto;
|
|
1543
1543
|
};
|
|
1544
|
-
export type
|
|
1545
|
-
export type
|
|
1544
|
+
export type PostApiClubsMeResponse = PostApiClubsMeResponses[keyof PostApiClubsMeResponses];
|
|
1545
|
+
export type DeleteApiClubsMeByIdData = {
|
|
1546
1546
|
body?: never;
|
|
1547
1547
|
path: {
|
|
1548
1548
|
id: string;
|
|
1549
1549
|
};
|
|
1550
1550
|
query?: never;
|
|
1551
|
-
url: '/clubs/me/{id}';
|
|
1551
|
+
url: '/api/clubs/me/{id}';
|
|
1552
1552
|
};
|
|
1553
|
-
export type
|
|
1553
|
+
export type DeleteApiClubsMeByIdErrors = {
|
|
1554
1554
|
/**
|
|
1555
1555
|
* Unauthorized
|
|
1556
1556
|
*/
|
|
@@ -1560,22 +1560,22 @@ export type DeleteClubsMeByIdErrors = {
|
|
|
1560
1560
|
*/
|
|
1561
1561
|
404: unknown;
|
|
1562
1562
|
};
|
|
1563
|
-
export type
|
|
1563
|
+
export type DeleteApiClubsMeByIdResponses = {
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Club deleted
|
|
1566
1566
|
*/
|
|
1567
1567
|
204: void;
|
|
1568
1568
|
};
|
|
1569
|
-
export type
|
|
1570
|
-
export type
|
|
1569
|
+
export type DeleteApiClubsMeByIdResponse = DeleteApiClubsMeByIdResponses[keyof DeleteApiClubsMeByIdResponses];
|
|
1570
|
+
export type PatchApiClubsMeByIdData = {
|
|
1571
1571
|
body: UpdateClubDto;
|
|
1572
1572
|
path: {
|
|
1573
1573
|
id: string;
|
|
1574
1574
|
};
|
|
1575
1575
|
query?: never;
|
|
1576
|
-
url: '/clubs/me/{id}';
|
|
1576
|
+
url: '/api/clubs/me/{id}';
|
|
1577
1577
|
};
|
|
1578
|
-
export type
|
|
1578
|
+
export type PatchApiClubsMeByIdErrors = {
|
|
1579
1579
|
/**
|
|
1580
1580
|
* Unauthorized
|
|
1581
1581
|
*/
|
|
@@ -1585,57 +1585,57 @@ export type PatchClubsMeByIdErrors = {
|
|
|
1585
1585
|
*/
|
|
1586
1586
|
404: unknown;
|
|
1587
1587
|
};
|
|
1588
|
-
export type
|
|
1588
|
+
export type PatchApiClubsMeByIdResponses = {
|
|
1589
1589
|
200: ClubResponseDto;
|
|
1590
1590
|
};
|
|
1591
|
-
export type
|
|
1592
|
-
export type
|
|
1591
|
+
export type PatchApiClubsMeByIdResponse = PatchApiClubsMeByIdResponses[keyof PatchApiClubsMeByIdResponses];
|
|
1592
|
+
export type GetApiDocumentsMeData = {
|
|
1593
1593
|
body?: never;
|
|
1594
1594
|
path?: never;
|
|
1595
1595
|
query?: never;
|
|
1596
|
-
url: '/documents/me';
|
|
1596
|
+
url: '/api/documents/me';
|
|
1597
1597
|
};
|
|
1598
|
-
export type
|
|
1598
|
+
export type GetApiDocumentsMeErrors = {
|
|
1599
1599
|
/**
|
|
1600
1600
|
* Unauthorized
|
|
1601
1601
|
*/
|
|
1602
1602
|
401: unknown;
|
|
1603
1603
|
};
|
|
1604
|
-
export type
|
|
1604
|
+
export type GetApiDocumentsMeResponses = {
|
|
1605
1605
|
/**
|
|
1606
1606
|
* List of documents
|
|
1607
1607
|
*/
|
|
1608
1608
|
200: Array<DocumentResponseDto>;
|
|
1609
1609
|
};
|
|
1610
|
-
export type
|
|
1611
|
-
export type
|
|
1610
|
+
export type GetApiDocumentsMeResponse = GetApiDocumentsMeResponses[keyof GetApiDocumentsMeResponses];
|
|
1611
|
+
export type PostApiDocumentsData = {
|
|
1612
1612
|
body: CreateDocumentDto;
|
|
1613
1613
|
path?: never;
|
|
1614
1614
|
query?: never;
|
|
1615
|
-
url: '/documents';
|
|
1615
|
+
url: '/api/documents';
|
|
1616
1616
|
};
|
|
1617
|
-
export type
|
|
1617
|
+
export type PostApiDocumentsErrors = {
|
|
1618
1618
|
/**
|
|
1619
1619
|
* Unauthorized
|
|
1620
1620
|
*/
|
|
1621
1621
|
401: unknown;
|
|
1622
1622
|
};
|
|
1623
|
-
export type
|
|
1623
|
+
export type PostApiDocumentsResponses = {
|
|
1624
1624
|
/**
|
|
1625
1625
|
* Document created
|
|
1626
1626
|
*/
|
|
1627
1627
|
201: DocumentResponseDto;
|
|
1628
1628
|
};
|
|
1629
|
-
export type
|
|
1630
|
-
export type
|
|
1629
|
+
export type PostApiDocumentsResponse = PostApiDocumentsResponses[keyof PostApiDocumentsResponses];
|
|
1630
|
+
export type GetApiIndexByTableNameData = {
|
|
1631
1631
|
body?: never;
|
|
1632
1632
|
path: {
|
|
1633
1633
|
tableName: string;
|
|
1634
1634
|
};
|
|
1635
1635
|
query?: never;
|
|
1636
|
-
url: '/index/{tableName}';
|
|
1636
|
+
url: '/api/index/{tableName}';
|
|
1637
1637
|
};
|
|
1638
|
-
export type
|
|
1638
|
+
export type GetApiIndexByTableNameErrors = {
|
|
1639
1639
|
/**
|
|
1640
1640
|
* Invalid index table
|
|
1641
1641
|
*/
|
|
@@ -1645,14 +1645,14 @@ export type GetIndexByTableNameErrors = {
|
|
|
1645
1645
|
*/
|
|
1646
1646
|
401: unknown;
|
|
1647
1647
|
};
|
|
1648
|
-
export type
|
|
1648
|
+
export type GetApiIndexByTableNameResponses = {
|
|
1649
1649
|
/**
|
|
1650
1650
|
* Index table items
|
|
1651
1651
|
*/
|
|
1652
1652
|
200: Array<IndexItemDto>;
|
|
1653
1653
|
};
|
|
1654
|
-
export type
|
|
1655
|
-
export type
|
|
1654
|
+
export type GetApiIndexByTableNameResponse = GetApiIndexByTableNameResponses[keyof GetApiIndexByTableNameResponses];
|
|
1655
|
+
export type GetApiOffersConversationsData = {
|
|
1656
1656
|
body?: never;
|
|
1657
1657
|
path?: never;
|
|
1658
1658
|
query?: {
|
|
@@ -1660,35 +1660,35 @@ export type GetOffersConversationsData = {
|
|
|
1660
1660
|
page?: number;
|
|
1661
1661
|
pageSize?: number;
|
|
1662
1662
|
};
|
|
1663
|
-
url: '/offers/conversations';
|
|
1663
|
+
url: '/api/offers/conversations';
|
|
1664
1664
|
};
|
|
1665
|
-
export type
|
|
1665
|
+
export type GetApiOffersConversationsErrors = {
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Unauthorized
|
|
1668
1668
|
*/
|
|
1669
1669
|
401: unknown;
|
|
1670
1670
|
};
|
|
1671
|
-
export type
|
|
1671
|
+
export type GetApiOffersConversationsResponses = {
|
|
1672
1672
|
200: ConversationListResultDto;
|
|
1673
1673
|
};
|
|
1674
|
-
export type
|
|
1675
|
-
export type
|
|
1674
|
+
export type GetApiOffersConversationsResponse = GetApiOffersConversationsResponses[keyof GetApiOffersConversationsResponses];
|
|
1675
|
+
export type PostApiOffersConversationsData = {
|
|
1676
1676
|
body: CreateConversationDto;
|
|
1677
1677
|
path?: never;
|
|
1678
1678
|
query?: never;
|
|
1679
|
-
url: '/offers/conversations';
|
|
1679
|
+
url: '/api/offers/conversations';
|
|
1680
1680
|
};
|
|
1681
|
-
export type
|
|
1681
|
+
export type PostApiOffersConversationsErrors = {
|
|
1682
1682
|
/**
|
|
1683
1683
|
* Unauthorized
|
|
1684
1684
|
*/
|
|
1685
1685
|
401: unknown;
|
|
1686
1686
|
};
|
|
1687
|
-
export type
|
|
1687
|
+
export type PostApiOffersConversationsResponses = {
|
|
1688
1688
|
201: ConversationDetailDto;
|
|
1689
1689
|
};
|
|
1690
|
-
export type
|
|
1691
|
-
export type
|
|
1690
|
+
export type PostApiOffersConversationsResponse = PostApiOffersConversationsResponses[keyof PostApiOffersConversationsResponses];
|
|
1691
|
+
export type GetApiOffersConversationsByIdMessagesData = {
|
|
1692
1692
|
body?: never;
|
|
1693
1693
|
path: {
|
|
1694
1694
|
id: string;
|
|
@@ -1697,9 +1697,9 @@ export type GetOffersConversationsByIdMessagesData = {
|
|
|
1697
1697
|
page?: number;
|
|
1698
1698
|
pageSize?: number;
|
|
1699
1699
|
};
|
|
1700
|
-
url: '/offers/conversations/{id}/messages';
|
|
1700
|
+
url: '/api/offers/conversations/{id}/messages';
|
|
1701
1701
|
};
|
|
1702
|
-
export type
|
|
1702
|
+
export type GetApiOffersConversationsByIdMessagesErrors = {
|
|
1703
1703
|
/**
|
|
1704
1704
|
* Unauthorized
|
|
1705
1705
|
*/
|
|
@@ -1713,19 +1713,19 @@ export type GetOffersConversationsByIdMessagesErrors = {
|
|
|
1713
1713
|
*/
|
|
1714
1714
|
404: unknown;
|
|
1715
1715
|
};
|
|
1716
|
-
export type
|
|
1716
|
+
export type GetApiOffersConversationsByIdMessagesResponses = {
|
|
1717
1717
|
200: MessageListResultDto;
|
|
1718
1718
|
};
|
|
1719
|
-
export type
|
|
1720
|
-
export type
|
|
1719
|
+
export type GetApiOffersConversationsByIdMessagesResponse = GetApiOffersConversationsByIdMessagesResponses[keyof GetApiOffersConversationsByIdMessagesResponses];
|
|
1720
|
+
export type PostApiOffersConversationsByIdMessagesData = {
|
|
1721
1721
|
body: SendMessageDto;
|
|
1722
1722
|
path: {
|
|
1723
1723
|
id: string;
|
|
1724
1724
|
};
|
|
1725
1725
|
query?: never;
|
|
1726
|
-
url: '/offers/conversations/{id}/messages';
|
|
1726
|
+
url: '/api/offers/conversations/{id}/messages';
|
|
1727
1727
|
};
|
|
1728
|
-
export type
|
|
1728
|
+
export type PostApiOffersConversationsByIdMessagesErrors = {
|
|
1729
1729
|
/**
|
|
1730
1730
|
* Unauthorized
|
|
1731
1731
|
*/
|
|
@@ -1739,19 +1739,19 @@ export type PostOffersConversationsByIdMessagesErrors = {
|
|
|
1739
1739
|
*/
|
|
1740
1740
|
404: unknown;
|
|
1741
1741
|
};
|
|
1742
|
-
export type
|
|
1742
|
+
export type PostApiOffersConversationsByIdMessagesResponses = {
|
|
1743
1743
|
201: MessageItemDto;
|
|
1744
1744
|
};
|
|
1745
|
-
export type
|
|
1746
|
-
export type
|
|
1745
|
+
export type PostApiOffersConversationsByIdMessagesResponse = PostApiOffersConversationsByIdMessagesResponses[keyof PostApiOffersConversationsByIdMessagesResponses];
|
|
1746
|
+
export type PatchApiOffersConversationsByIdReadData = {
|
|
1747
1747
|
body?: never;
|
|
1748
1748
|
path: {
|
|
1749
1749
|
id: string;
|
|
1750
1750
|
};
|
|
1751
1751
|
query?: never;
|
|
1752
|
-
url: '/offers/conversations/{id}/read';
|
|
1752
|
+
url: '/api/offers/conversations/{id}/read';
|
|
1753
1753
|
};
|
|
1754
|
-
export type
|
|
1754
|
+
export type PatchApiOffersConversationsByIdReadErrors = {
|
|
1755
1755
|
/**
|
|
1756
1756
|
* Unauthorized
|
|
1757
1757
|
*/
|
|
@@ -1765,16 +1765,16 @@ export type PatchOffersConversationsByIdReadErrors = {
|
|
|
1765
1765
|
*/
|
|
1766
1766
|
404: unknown;
|
|
1767
1767
|
};
|
|
1768
|
-
export type
|
|
1768
|
+
export type PatchApiOffersConversationsByIdReadResponses = {
|
|
1769
1769
|
200: unknown;
|
|
1770
1770
|
};
|
|
1771
|
-
export type
|
|
1771
|
+
export type PostApiOrganizationsRegisterClubData = {
|
|
1772
1772
|
body: RegisterClubDto;
|
|
1773
1773
|
path?: never;
|
|
1774
1774
|
query?: never;
|
|
1775
|
-
url: '/organizations/register-club';
|
|
1775
|
+
url: '/api/organizations/register-club';
|
|
1776
1776
|
};
|
|
1777
|
-
export type
|
|
1777
|
+
export type PostApiOrganizationsRegisterClubErrors = {
|
|
1778
1778
|
/**
|
|
1779
1779
|
* Bad request
|
|
1780
1780
|
*/
|
|
@@ -1784,17 +1784,17 @@ export type PostOrganizationsRegisterClubErrors = {
|
|
|
1784
1784
|
*/
|
|
1785
1785
|
409: unknown;
|
|
1786
1786
|
};
|
|
1787
|
-
export type
|
|
1787
|
+
export type PostApiOrganizationsRegisterClubResponses = {
|
|
1788
1788
|
201: RegisterClubResponseDto;
|
|
1789
1789
|
};
|
|
1790
|
-
export type
|
|
1791
|
-
export type
|
|
1790
|
+
export type PostApiOrganizationsRegisterClubResponse = PostApiOrganizationsRegisterClubResponses[keyof PostApiOrganizationsRegisterClubResponses];
|
|
1791
|
+
export type GetApiOrganizationsMeData = {
|
|
1792
1792
|
body?: never;
|
|
1793
1793
|
path?: never;
|
|
1794
1794
|
query?: never;
|
|
1795
|
-
url: '/organizations/me';
|
|
1795
|
+
url: '/api/organizations/me';
|
|
1796
1796
|
};
|
|
1797
|
-
export type
|
|
1797
|
+
export type GetApiOrganizationsMeErrors = {
|
|
1798
1798
|
/**
|
|
1799
1799
|
* Unauthorized
|
|
1800
1800
|
*/
|
|
@@ -1804,17 +1804,17 @@ export type GetOrganizationsMeErrors = {
|
|
|
1804
1804
|
*/
|
|
1805
1805
|
404: unknown;
|
|
1806
1806
|
};
|
|
1807
|
-
export type
|
|
1807
|
+
export type GetApiOrganizationsMeResponses = {
|
|
1808
1808
|
200: OrganizationResponseDto;
|
|
1809
1809
|
};
|
|
1810
|
-
export type
|
|
1811
|
-
export type
|
|
1810
|
+
export type GetApiOrganizationsMeResponse = GetApiOrganizationsMeResponses[keyof GetApiOrganizationsMeResponses];
|
|
1811
|
+
export type PutApiOrganizationsMeData = {
|
|
1812
1812
|
body: UpdateOrganizationDto;
|
|
1813
1813
|
path?: never;
|
|
1814
1814
|
query?: never;
|
|
1815
|
-
url: '/organizations/me';
|
|
1815
|
+
url: '/api/organizations/me';
|
|
1816
1816
|
};
|
|
1817
|
-
export type
|
|
1817
|
+
export type PutApiOrganizationsMeErrors = {
|
|
1818
1818
|
/**
|
|
1819
1819
|
* Unauthorized
|
|
1820
1820
|
*/
|
|
@@ -1824,17 +1824,17 @@ export type PutOrganizationsMeErrors = {
|
|
|
1824
1824
|
*/
|
|
1825
1825
|
404: unknown;
|
|
1826
1826
|
};
|
|
1827
|
-
export type
|
|
1827
|
+
export type PutApiOrganizationsMeResponses = {
|
|
1828
1828
|
200: OrganizationResponseDto;
|
|
1829
1829
|
};
|
|
1830
|
-
export type
|
|
1831
|
-
export type
|
|
1830
|
+
export type PutApiOrganizationsMeResponse = PutApiOrganizationsMeResponses[keyof PutApiOrganizationsMeResponses];
|
|
1831
|
+
export type PostApiStorageUploadUrlData = {
|
|
1832
1832
|
body: CreateUploadUrlDto;
|
|
1833
1833
|
path?: never;
|
|
1834
1834
|
query?: never;
|
|
1835
|
-
url: '/storage/upload-url';
|
|
1835
|
+
url: '/api/storage/upload-url';
|
|
1836
1836
|
};
|
|
1837
|
-
export type
|
|
1837
|
+
export type PostApiStorageUploadUrlErrors = {
|
|
1838
1838
|
/**
|
|
1839
1839
|
* Unknown bucket or disallowed MIME
|
|
1840
1840
|
*/
|
|
@@ -1848,48 +1848,48 @@ export type PostStorageUploadUrlErrors = {
|
|
|
1848
1848
|
*/
|
|
1849
1849
|
413: unknown;
|
|
1850
1850
|
};
|
|
1851
|
-
export type
|
|
1851
|
+
export type PostApiStorageUploadUrlResponses = {
|
|
1852
1852
|
/**
|
|
1853
1853
|
* Signed upload URL issued
|
|
1854
1854
|
*/
|
|
1855
1855
|
201: UploadUrlResponseDto;
|
|
1856
1856
|
};
|
|
1857
|
-
export type
|
|
1858
|
-
export type
|
|
1857
|
+
export type PostApiStorageUploadUrlResponse = PostApiStorageUploadUrlResponses[keyof PostApiStorageUploadUrlResponses];
|
|
1858
|
+
export type GetApiInvitationsData = {
|
|
1859
1859
|
body?: never;
|
|
1860
1860
|
path?: never;
|
|
1861
1861
|
query?: never;
|
|
1862
|
-
url: '/invitations';
|
|
1862
|
+
url: '/api/invitations';
|
|
1863
1863
|
};
|
|
1864
|
-
export type
|
|
1864
|
+
export type GetApiInvitationsResponses = {
|
|
1865
1865
|
200: Array<InvitationResponseDto>;
|
|
1866
1866
|
};
|
|
1867
|
-
export type
|
|
1868
|
-
export type
|
|
1867
|
+
export type GetApiInvitationsResponse = GetApiInvitationsResponses[keyof GetApiInvitationsResponses];
|
|
1868
|
+
export type PostApiInvitationsData = {
|
|
1869
1869
|
body: SendInvitationRequestDto;
|
|
1870
1870
|
path?: never;
|
|
1871
1871
|
query?: never;
|
|
1872
|
-
url: '/invitations';
|
|
1872
|
+
url: '/api/invitations';
|
|
1873
1873
|
};
|
|
1874
|
-
export type
|
|
1874
|
+
export type PostApiInvitationsErrors = {
|
|
1875
1875
|
/**
|
|
1876
1876
|
* Limit reached or duplicate email
|
|
1877
1877
|
*/
|
|
1878
1878
|
400: unknown;
|
|
1879
1879
|
};
|
|
1880
|
-
export type
|
|
1880
|
+
export type PostApiInvitationsResponses = {
|
|
1881
1881
|
201: InvitationResponseDto;
|
|
1882
1882
|
};
|
|
1883
|
-
export type
|
|
1884
|
-
export type
|
|
1883
|
+
export type PostApiInvitationsResponse = PostApiInvitationsResponses[keyof PostApiInvitationsResponses];
|
|
1884
|
+
export type PostApiInvitationsByIdResendData = {
|
|
1885
1885
|
body?: never;
|
|
1886
1886
|
path: {
|
|
1887
1887
|
id: string;
|
|
1888
1888
|
};
|
|
1889
1889
|
query?: never;
|
|
1890
|
-
url: '/invitations/{id}/resend';
|
|
1890
|
+
url: '/api/invitations/{id}/resend';
|
|
1891
1891
|
};
|
|
1892
|
-
export type
|
|
1892
|
+
export type PostApiInvitationsByIdResendErrors = {
|
|
1893
1893
|
/**
|
|
1894
1894
|
* Cannot resend a confirmed invitation
|
|
1895
1895
|
*/
|
|
@@ -1899,19 +1899,19 @@ export type PostInvitationsByIdResendErrors = {
|
|
|
1899
1899
|
*/
|
|
1900
1900
|
404: unknown;
|
|
1901
1901
|
};
|
|
1902
|
-
export type
|
|
1902
|
+
export type PostApiInvitationsByIdResendResponses = {
|
|
1903
1903
|
200: InvitationResponseDto;
|
|
1904
1904
|
};
|
|
1905
|
-
export type
|
|
1906
|
-
export type
|
|
1905
|
+
export type PostApiInvitationsByIdResendResponse = PostApiInvitationsByIdResendResponses[keyof PostApiInvitationsByIdResendResponses];
|
|
1906
|
+
export type DeleteApiInvitationsByIdData = {
|
|
1907
1907
|
body?: never;
|
|
1908
1908
|
path: {
|
|
1909
1909
|
id: string;
|
|
1910
1910
|
};
|
|
1911
1911
|
query?: never;
|
|
1912
|
-
url: '/invitations/{id}';
|
|
1912
|
+
url: '/api/invitations/{id}';
|
|
1913
1913
|
};
|
|
1914
|
-
export type
|
|
1914
|
+
export type DeleteApiInvitationsByIdErrors = {
|
|
1915
1915
|
/**
|
|
1916
1916
|
* Cannot delete a confirmed invitation
|
|
1917
1917
|
*/
|
|
@@ -1921,43 +1921,43 @@ export type DeleteInvitationsByIdErrors = {
|
|
|
1921
1921
|
*/
|
|
1922
1922
|
404: unknown;
|
|
1923
1923
|
};
|
|
1924
|
-
export type
|
|
1924
|
+
export type DeleteApiInvitationsByIdResponses = {
|
|
1925
1925
|
/**
|
|
1926
1926
|
* Deleted
|
|
1927
1927
|
*/
|
|
1928
1928
|
204: void;
|
|
1929
1929
|
};
|
|
1930
|
-
export type
|
|
1931
|
-
export type
|
|
1930
|
+
export type DeleteApiInvitationsByIdResponse = DeleteApiInvitationsByIdResponses[keyof DeleteApiInvitationsByIdResponses];
|
|
1931
|
+
export type PostApiInvitationsAcceptData = {
|
|
1932
1932
|
body?: never;
|
|
1933
1933
|
path?: never;
|
|
1934
1934
|
query?: never;
|
|
1935
|
-
url: '/invitations/accept';
|
|
1935
|
+
url: '/api/invitations/accept';
|
|
1936
1936
|
};
|
|
1937
|
-
export type
|
|
1937
|
+
export type PostApiInvitationsAcceptResponses = {
|
|
1938
1938
|
/**
|
|
1939
1939
|
* Accepted (or no pending invitation — idempotent)
|
|
1940
1940
|
*/
|
|
1941
1941
|
204: void;
|
|
1942
1942
|
};
|
|
1943
|
-
export type
|
|
1944
|
-
export type
|
|
1943
|
+
export type PostApiInvitationsAcceptResponse = PostApiInvitationsAcceptResponses[keyof PostApiInvitationsAcceptResponses];
|
|
1944
|
+
export type GetApiTrainingGroupedData = {
|
|
1945
1945
|
body?: never;
|
|
1946
1946
|
path?: never;
|
|
1947
1947
|
query?: never;
|
|
1948
|
-
url: '/training/grouped';
|
|
1948
|
+
url: '/api/training/grouped';
|
|
1949
1949
|
};
|
|
1950
|
-
export type
|
|
1950
|
+
export type GetApiTrainingGroupedErrors = {
|
|
1951
1951
|
/**
|
|
1952
1952
|
* Unauthorized
|
|
1953
1953
|
*/
|
|
1954
1954
|
401: unknown;
|
|
1955
1955
|
};
|
|
1956
|
-
export type
|
|
1956
|
+
export type GetApiTrainingGroupedResponses = {
|
|
1957
1957
|
200: Array<TrainingCategoryGroupDto>;
|
|
1958
1958
|
};
|
|
1959
|
-
export type
|
|
1960
|
-
export type
|
|
1959
|
+
export type GetApiTrainingGroupedResponse = GetApiTrainingGroupedResponses[keyof GetApiTrainingGroupedResponses];
|
|
1960
|
+
export type GetApiTrainingData = {
|
|
1961
1961
|
body?: never;
|
|
1962
1962
|
path?: never;
|
|
1963
1963
|
query?: {
|
|
@@ -1965,27 +1965,27 @@ export type GetTrainingData = {
|
|
|
1965
1965
|
page?: number;
|
|
1966
1966
|
pageSize?: number;
|
|
1967
1967
|
};
|
|
1968
|
-
url: '/training';
|
|
1968
|
+
url: '/api/training';
|
|
1969
1969
|
};
|
|
1970
|
-
export type
|
|
1970
|
+
export type GetApiTrainingErrors = {
|
|
1971
1971
|
/**
|
|
1972
1972
|
* Unauthorized
|
|
1973
1973
|
*/
|
|
1974
1974
|
401: unknown;
|
|
1975
1975
|
};
|
|
1976
|
-
export type
|
|
1976
|
+
export type GetApiTrainingResponses = {
|
|
1977
1977
|
200: PaginatedTrainingContentDto;
|
|
1978
1978
|
};
|
|
1979
|
-
export type
|
|
1980
|
-
export type
|
|
1979
|
+
export type GetApiTrainingResponse = GetApiTrainingResponses[keyof GetApiTrainingResponses];
|
|
1980
|
+
export type GetApiTrainingByIdData = {
|
|
1981
1981
|
body?: never;
|
|
1982
1982
|
path: {
|
|
1983
1983
|
id: string;
|
|
1984
1984
|
};
|
|
1985
1985
|
query?: never;
|
|
1986
|
-
url: '/training/{id}';
|
|
1986
|
+
url: '/api/training/{id}';
|
|
1987
1987
|
};
|
|
1988
|
-
export type
|
|
1988
|
+
export type GetApiTrainingByIdErrors = {
|
|
1989
1989
|
/**
|
|
1990
1990
|
* Unauthorized
|
|
1991
1991
|
*/
|
|
@@ -1995,38 +1995,38 @@ export type GetTrainingByIdErrors = {
|
|
|
1995
1995
|
*/
|
|
1996
1996
|
404: unknown;
|
|
1997
1997
|
};
|
|
1998
|
-
export type
|
|
1998
|
+
export type GetApiTrainingByIdResponses = {
|
|
1999
1999
|
200: TrainingContentDetailDto;
|
|
2000
2000
|
};
|
|
2001
|
-
export type
|
|
2002
|
-
export type
|
|
2001
|
+
export type GetApiTrainingByIdResponse = GetApiTrainingByIdResponses[keyof GetApiTrainingByIdResponses];
|
|
2002
|
+
export type GetApiVideosMeData = {
|
|
2003
2003
|
body?: never;
|
|
2004
2004
|
path?: never;
|
|
2005
2005
|
query: {
|
|
2006
2006
|
type: string;
|
|
2007
2007
|
};
|
|
2008
|
-
url: '/videos/me';
|
|
2008
|
+
url: '/api/videos/me';
|
|
2009
2009
|
};
|
|
2010
|
-
export type
|
|
2010
|
+
export type GetApiVideosMeErrors = {
|
|
2011
2011
|
/**
|
|
2012
2012
|
* Unauthorized
|
|
2013
2013
|
*/
|
|
2014
2014
|
401: unknown;
|
|
2015
2015
|
};
|
|
2016
|
-
export type
|
|
2016
|
+
export type GetApiVideosMeResponses = {
|
|
2017
2017
|
/**
|
|
2018
2018
|
* List of videos
|
|
2019
2019
|
*/
|
|
2020
2020
|
200: Array<VideoResponseDto>;
|
|
2021
2021
|
};
|
|
2022
|
-
export type
|
|
2023
|
-
export type
|
|
2022
|
+
export type GetApiVideosMeResponse = GetApiVideosMeResponses[keyof GetApiVideosMeResponses];
|
|
2023
|
+
export type PostApiVideosData = {
|
|
2024
2024
|
body: CreateVideoDto;
|
|
2025
2025
|
path?: never;
|
|
2026
2026
|
query?: never;
|
|
2027
|
-
url: '/videos';
|
|
2027
|
+
url: '/api/videos';
|
|
2028
2028
|
};
|
|
2029
|
-
export type
|
|
2029
|
+
export type PostApiVideosErrors = {
|
|
2030
2030
|
/**
|
|
2031
2031
|
* Invalid input or best_moment limit exceeded
|
|
2032
2032
|
*/
|
|
@@ -2036,22 +2036,22 @@ export type PostVideosErrors = {
|
|
|
2036
2036
|
*/
|
|
2037
2037
|
401: unknown;
|
|
2038
2038
|
};
|
|
2039
|
-
export type
|
|
2039
|
+
export type PostApiVideosResponses = {
|
|
2040
2040
|
/**
|
|
2041
2041
|
* Video created
|
|
2042
2042
|
*/
|
|
2043
2043
|
201: VideoResponseDto;
|
|
2044
2044
|
};
|
|
2045
|
-
export type
|
|
2046
|
-
export type
|
|
2045
|
+
export type PostApiVideosResponse = PostApiVideosResponses[keyof PostApiVideosResponses];
|
|
2046
|
+
export type GetApiVideosByIdPlayUrlData = {
|
|
2047
2047
|
body?: never;
|
|
2048
2048
|
path: {
|
|
2049
2049
|
id: string;
|
|
2050
2050
|
};
|
|
2051
2051
|
query?: never;
|
|
2052
|
-
url: '/videos/{id}/play-url';
|
|
2052
|
+
url: '/api/videos/{id}/play-url';
|
|
2053
2053
|
};
|
|
2054
|
-
export type
|
|
2054
|
+
export type GetApiVideosByIdPlayUrlErrors = {
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Unauthorized
|
|
2057
2057
|
*/
|
|
@@ -2061,22 +2061,22 @@ export type GetVideosByIdPlayUrlErrors = {
|
|
|
2061
2061
|
*/
|
|
2062
2062
|
404: unknown;
|
|
2063
2063
|
};
|
|
2064
|
-
export type
|
|
2064
|
+
export type GetApiVideosByIdPlayUrlResponses = {
|
|
2065
2065
|
/**
|
|
2066
2066
|
* Short-lived signed URL for video playback
|
|
2067
2067
|
*/
|
|
2068
2068
|
200: PlayUrlResponseDto;
|
|
2069
2069
|
};
|
|
2070
|
-
export type
|
|
2071
|
-
export type
|
|
2070
|
+
export type GetApiVideosByIdPlayUrlResponse = GetApiVideosByIdPlayUrlResponses[keyof GetApiVideosByIdPlayUrlResponses];
|
|
2071
|
+
export type DeleteApiVideosByIdData = {
|
|
2072
2072
|
body?: never;
|
|
2073
2073
|
path: {
|
|
2074
2074
|
id: string;
|
|
2075
2075
|
};
|
|
2076
2076
|
query?: never;
|
|
2077
|
-
url: '/videos/{id}';
|
|
2077
|
+
url: '/api/videos/{id}';
|
|
2078
2078
|
};
|
|
2079
|
-
export type
|
|
2079
|
+
export type DeleteApiVideosByIdErrors = {
|
|
2080
2080
|
/**
|
|
2081
2081
|
* Unauthorized
|
|
2082
2082
|
*/
|
|
@@ -2086,10 +2086,10 @@ export type DeleteVideosByIdErrors = {
|
|
|
2086
2086
|
*/
|
|
2087
2087
|
404: unknown;
|
|
2088
2088
|
};
|
|
2089
|
-
export type
|
|
2089
|
+
export type DeleteApiVideosByIdResponses = {
|
|
2090
2090
|
/**
|
|
2091
2091
|
* Video deleted
|
|
2092
2092
|
*/
|
|
2093
2093
|
204: void;
|
|
2094
2094
|
};
|
|
2095
|
-
export type
|
|
2095
|
+
export type DeleteApiVideosByIdResponse = DeleteApiVideosByIdResponses[keyof DeleteApiVideosByIdResponses];
|