@brigadasos/nadeshiko-sdk 1.4.0-dev.2819d72 → 1.4.0-dev.28a0384

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.js CHANGED
@@ -812,11 +812,6 @@ var createClient = (config = {}) => {
812
812
  var client = createClient(createConfig({ baseUrl: "http://localhost:5000" }));
813
813
 
814
814
  // generated/dev/sdk.gen.ts
815
- var healthCheck = (options) => (options?.client ?? client).get({
816
- security: [{ scheme: "bearer", type: "http" }],
817
- url: "/v1/health",
818
- ...options
819
- });
820
815
  var searchIndex = (options) => (options?.client ?? client).post({
821
816
  security: [{ scheme: "bearer", type: "http" }, {
822
817
  in: "cookie",
@@ -965,6 +960,70 @@ var segmentContextShow = (options) => (options.client ?? client).get({
965
960
  url: "/v1/media/segments/{uuid}/context",
966
961
  ...options
967
962
  });
963
+ var seriesIndex = (options) => (options?.client ?? client).get({
964
+ security: [{ scheme: "bearer", type: "http" }, {
965
+ in: "cookie",
966
+ name: "nadeshiko.session_token",
967
+ type: "apiKey"
968
+ }],
969
+ url: "/v1/media/series",
970
+ ...options
971
+ });
972
+ var seriesCreate = (options) => (options.client ?? client).post({
973
+ security: [{ scheme: "bearer", type: "http" }],
974
+ url: "/v1/media/series",
975
+ ...options,
976
+ headers: {
977
+ "Content-Type": "application/json",
978
+ ...options.headers
979
+ }
980
+ });
981
+ var seriesDestroy = (options) => (options.client ?? client).delete({
982
+ security: [{ scheme: "bearer", type: "http" }],
983
+ url: "/v1/media/series/{id}",
984
+ ...options
985
+ });
986
+ var seriesShow = (options) => (options.client ?? client).get({
987
+ security: [{ scheme: "bearer", type: "http" }, {
988
+ in: "cookie",
989
+ name: "nadeshiko.session_token",
990
+ type: "apiKey"
991
+ }],
992
+ url: "/v1/media/series/{id}",
993
+ ...options
994
+ });
995
+ var seriesUpdate = (options) => (options.client ?? client).patch({
996
+ security: [{ scheme: "bearer", type: "http" }],
997
+ url: "/v1/media/series/{id}",
998
+ ...options,
999
+ headers: {
1000
+ "Content-Type": "application/json",
1001
+ ...options.headers
1002
+ }
1003
+ });
1004
+ var seriesAddMedia = (options) => (options.client ?? client).post({
1005
+ security: [{ scheme: "bearer", type: "http" }],
1006
+ url: "/v1/media/series/{id}/media",
1007
+ ...options,
1008
+ headers: {
1009
+ "Content-Type": "application/json",
1010
+ ...options.headers
1011
+ }
1012
+ });
1013
+ var seriesRemoveMedia = (options) => (options.client ?? client).delete({
1014
+ security: [{ scheme: "bearer", type: "http" }],
1015
+ url: "/v1/media/series/{id}/media/{mediaId}",
1016
+ ...options
1017
+ });
1018
+ var seriesUpdateMedia = (options) => (options.client ?? client).patch({
1019
+ security: [{ scheme: "bearer", type: "http" }],
1020
+ url: "/v1/media/series/{id}/media/{mediaId}",
1021
+ ...options,
1022
+ headers: {
1023
+ "Content-Type": "application/json",
1024
+ ...options.headers
1025
+ }
1026
+ });
968
1027
  var characterShow = (options) => (options.client ?? client).get({
969
1028
  security: [{ scheme: "bearer", type: "http" }],
970
1029
  url: "/v1/media/characters/{id}",
@@ -980,7 +1039,7 @@ var userQuotaShow = (options) => (options?.client ?? client).get({
980
1039
  in: "cookie",
981
1040
  name: "nadeshiko.session_token",
982
1041
  type: "apiKey"
983
- }],
1042
+ }, { scheme: "bearer", type: "http" }],
984
1043
  url: "/v1/user/quota",
985
1044
  ...options
986
1045
  });
@@ -1046,6 +1105,15 @@ var userActivityIndex = (options) => (options?.client ?? client).get({
1046
1105
  url: "/v1/user/activity",
1047
1106
  ...options
1048
1107
  });
1108
+ var userActivityHeatmapShow = (options) => (options?.client ?? client).get({
1109
+ security: [{
1110
+ in: "cookie",
1111
+ name: "nadeshiko.session_token",
1112
+ type: "apiKey"
1113
+ }],
1114
+ url: "/v1/user/activity/heatmap",
1115
+ ...options
1116
+ });
1049
1117
  var userActivityStatsShow = (options) => (options?.client ?? client).get({
1050
1118
  security: [{
1051
1119
  in: "cookie",
@@ -1064,115 +1132,113 @@ var userExportShow = (options) => (options?.client ?? client).get({
1064
1132
  url: "/v1/user/export",
1065
1133
  ...options
1066
1134
  });
1067
- var labIndex = (options) => (options?.client ?? client).get({
1068
- security: [{ scheme: "bearer", type: "http" }, {
1135
+ var userLabsIndex = (options) => (options?.client ?? client).get({
1136
+ security: [{
1069
1137
  in: "cookie",
1070
1138
  name: "nadeshiko.session_token",
1071
1139
  type: "apiKey"
1072
1140
  }],
1073
- url: "/v1/labs",
1141
+ url: "/v1/user/labs",
1074
1142
  ...options
1075
1143
  });
1076
- var listIndex = (options) => (options?.client ?? client).get({
1077
- security: [{ scheme: "bearer", type: "http" }],
1078
- url: "/v1/lists",
1144
+ var collectionIndex = (options) => (options?.client ?? client).get({
1145
+ security: [{
1146
+ in: "cookie",
1147
+ name: "nadeshiko.session_token",
1148
+ type: "apiKey"
1149
+ }],
1150
+ url: "/v1/collections",
1079
1151
  ...options
1080
1152
  });
1081
- var listCreate = (options) => (options.client ?? client).post({
1082
- security: [{ scheme: "bearer", type: "http" }],
1083
- url: "/v1/lists",
1153
+ var collectionCreate = (options) => (options.client ?? client).post({
1154
+ security: [{
1155
+ in: "cookie",
1156
+ name: "nadeshiko.session_token",
1157
+ type: "apiKey"
1158
+ }],
1159
+ url: "/v1/collections",
1084
1160
  ...options,
1085
1161
  headers: {
1086
1162
  "Content-Type": "application/json",
1087
1163
  ...options.headers
1088
1164
  }
1089
1165
  });
1090
- var listDestroy = (options) => (options.client ?? client).delete({
1091
- security: [{ scheme: "bearer", type: "http" }],
1092
- url: "/v1/lists/{id}",
1093
- ...options
1094
- });
1095
- var listShow = (options) => (options.client ?? client).get({
1096
- security: [{ scheme: "bearer", type: "http" }],
1097
- url: "/v1/lists/{id}",
1166
+ var collectionDestroy = (options) => (options.client ?? client).delete({
1167
+ security: [{
1168
+ in: "cookie",
1169
+ name: "nadeshiko.session_token",
1170
+ type: "apiKey"
1171
+ }],
1172
+ url: "/v1/collections/{id}",
1098
1173
  ...options
1099
1174
  });
1100
- var listUpdate = (options) => (options.client ?? client).patch({
1101
- security: [{ scheme: "bearer", type: "http" }],
1102
- url: "/v1/lists/{id}",
1103
- ...options,
1104
- headers: {
1105
- "Content-Type": "application/json",
1106
- ...options.headers
1107
- }
1108
- });
1109
- var listAddItem = (options) => (options.client ?? client).post({
1110
- security: [{ scheme: "bearer", type: "http" }],
1111
- url: "/v1/lists/{id}/items",
1112
- ...options,
1113
- headers: {
1114
- "Content-Type": "application/json",
1115
- ...options.headers
1116
- }
1117
- });
1118
- var listRemoveItem = (options) => (options.client ?? client).delete({
1119
- security: [{ scheme: "bearer", type: "http" }],
1120
- url: "/v1/lists/{id}/items/{mediaId}",
1175
+ var collectionShow = (options) => (options.client ?? client).get({
1176
+ security: [{
1177
+ in: "cookie",
1178
+ name: "nadeshiko.session_token",
1179
+ type: "apiKey"
1180
+ }],
1181
+ url: "/v1/collections/{id}",
1121
1182
  ...options
1122
1183
  });
1123
- var listUpdateItem = (options) => (options.client ?? client).patch({
1124
- security: [{ scheme: "bearer", type: "http" }],
1125
- url: "/v1/lists/{id}/items/{mediaId}",
1184
+ var collectionUpdate = (options) => (options.client ?? client).patch({
1185
+ security: [{
1186
+ in: "cookie",
1187
+ name: "nadeshiko.session_token",
1188
+ type: "apiKey"
1189
+ }],
1190
+ url: "/v1/collections/{id}",
1126
1191
  ...options,
1127
1192
  headers: {
1128
1193
  "Content-Type": "application/json",
1129
1194
  ...options.headers
1130
1195
  }
1131
1196
  });
1132
- var listGetSegments = (options) => (options.client ?? client).get({
1133
- security: [{ scheme: "bearer", type: "http" }, {
1134
- in: "cookie",
1135
- name: "nadeshiko.session_token",
1136
- type: "apiKey"
1137
- }],
1138
- url: "/v1/lists/{id}/segments",
1139
- ...options
1140
- });
1141
- var listAddSegment = (options) => (options.client ?? client).post({
1142
- security: [{ scheme: "bearer", type: "http" }, {
1197
+ var collectionAddSegment = (options) => (options.client ?? client).post({
1198
+ security: [{
1143
1199
  in: "cookie",
1144
1200
  name: "nadeshiko.session_token",
1145
1201
  type: "apiKey"
1146
1202
  }],
1147
- url: "/v1/lists/{id}/segments",
1203
+ url: "/v1/collections/{id}/segments",
1148
1204
  ...options,
1149
1205
  headers: {
1150
1206
  "Content-Type": "application/json",
1151
1207
  ...options.headers
1152
1208
  }
1153
1209
  });
1154
- var listRemoveSegment = (options) => (options.client ?? client).delete({
1155
- security: [{ scheme: "bearer", type: "http" }, {
1210
+ var collectionRemoveSegment = (options) => (options.client ?? client).delete({
1211
+ security: [{
1156
1212
  in: "cookie",
1157
1213
  name: "nadeshiko.session_token",
1158
1214
  type: "apiKey"
1159
1215
  }],
1160
- url: "/v1/lists/{id}/segments/{uuid}",
1216
+ url: "/v1/collections/{id}/segments/{uuid}",
1161
1217
  ...options
1162
1218
  });
1163
- var listUpdateSegment = (options) => (options.client ?? client).patch({
1164
- security: [{ scheme: "bearer", type: "http" }, {
1219
+ var collectionUpdateSegment = (options) => (options.client ?? client).patch({
1220
+ security: [{
1165
1221
  in: "cookie",
1166
1222
  name: "nadeshiko.session_token",
1167
1223
  type: "apiKey"
1168
1224
  }],
1169
- url: "/v1/lists/{id}/segments/{uuid}",
1225
+ url: "/v1/collections/{id}/segments/{uuid}",
1170
1226
  ...options,
1171
1227
  headers: {
1172
1228
  "Content-Type": "application/json",
1173
1229
  ...options.headers
1174
1230
  }
1175
1231
  });
1232
+ var adminDashboardShow = (options) => (options?.client ?? client).get({
1233
+ security: [{ scheme: "bearer", type: "http" }],
1234
+ url: "/v1/admin/dashboard",
1235
+ ...options
1236
+ });
1237
+ var adminHealthShow = (options) => (options?.client ?? client).get({
1238
+ security: [{ scheme: "bearer", type: "http" }],
1239
+ url: "/v1/admin/health",
1240
+ ...options
1241
+ });
1176
1242
  var adminReindexCreate = (options) => (options?.client ?? client).post({
1177
1243
  security: [{ scheme: "bearer", type: "http" }],
1178
1244
  url: "/v1/admin/reindex",
@@ -1207,15 +1273,6 @@ var adminQueueFailedDestroy = (options) => (options.client ?? client).delete({
1207
1273
  url: "/v1/admin/queues/{queueName}/purge",
1208
1274
  ...options
1209
1275
  });
1210
- var adminMorphemeBackfillCreate = (options) => (options?.client ?? client).post({
1211
- security: [{ scheme: "bearer", type: "http" }, {
1212
- in: "cookie",
1213
- name: "nadeshiko.session_token",
1214
- type: "apiKey"
1215
- }],
1216
- url: "/v1/admin/morpheme-backfill",
1217
- ...options
1218
- });
1219
1276
  var adminReportIndex = (options) => (options?.client ?? client).get({
1220
1277
  security: [{ scheme: "bearer", type: "http" }],
1221
1278
  url: "/v1/admin/reports",
@@ -1302,31 +1359,25 @@ function createNadeshikoClient(config) {
1302
1359
  segmentShow: (options) => segmentShow({ ...options, client: clientInstance }),
1303
1360
  segmentShowByUuid: (options) => segmentShowByUuid({ ...options, client: clientInstance }),
1304
1361
  segmentContextShow: (options) => segmentContextShow({ ...options, client: clientInstance }),
1362
+ seriesIndex: (options) => seriesIndex({ ...options, client: clientInstance }),
1363
+ seriesShow: (options) => seriesShow({ ...options, client: clientInstance }),
1305
1364
  characterShow: (options) => characterShow({ ...options, client: clientInstance }),
1306
1365
  seiyuuShow: (options) => seiyuuShow({ ...options, client: clientInstance }),
1307
1366
  userQuotaShow: (options) => userQuotaShow({ ...options, client: clientInstance }),
1308
- userReportCreate: (options) => userReportCreate({ ...options, client: clientInstance }),
1309
- userReportIndex: (options) => userReportIndex({ ...options, client: clientInstance }),
1310
- userPreferencesShow: (options) => userPreferencesShow({ ...options, client: clientInstance }),
1311
- userPreferencesUpdate: (options) => userPreferencesUpdate({ ...options, client: clientInstance }),
1312
- userActivityIndex: (options) => userActivityIndex({ ...options, client: clientInstance }),
1313
- userActivityDestroy: (options) => userActivityDestroy({ ...options, client: clientInstance }),
1314
- userActivityStatsShow: (options) => userActivityStatsShow({ ...options, client: clientInstance }),
1315
- userExportShow: (options) => userExportShow({ ...options, client: clientInstance }),
1316
- labIndex: (options) => labIndex({ ...options, client: clientInstance }),
1317
- listIndex: (options) => listIndex({ ...options, client: clientInstance }),
1318
- listShow: (options) => listShow({ ...options, client: clientInstance }),
1319
- listGetSegments: (options) => listGetSegments({ ...options, client: clientInstance }),
1320
- listAddSegment: (options) => listAddSegment({ ...options, client: clientInstance }),
1321
- listUpdateSegment: (options) => listUpdateSegment({ ...options, client: clientInstance }),
1322
- listRemoveSegment: (options) => listRemoveSegment({ ...options, client: clientInstance }),
1367
+ collectionIndex: (options) => collectionIndex({ ...options, client: clientInstance }),
1368
+ collectionCreate: (options) => collectionCreate({ ...options, client: clientInstance }),
1369
+ collectionShow: (options) => collectionShow({ ...options, client: clientInstance }),
1370
+ collectionUpdate: (options) => collectionUpdate({ ...options, client: clientInstance }),
1371
+ collectionDestroy: (options) => collectionDestroy({ ...options, client: clientInstance }),
1372
+ collectionAddSegment: (options) => collectionAddSegment({ ...options, client: clientInstance }),
1373
+ collectionUpdateSegment: (options) => collectionUpdateSegment({ ...options, client: clientInstance }),
1374
+ collectionRemoveSegment: (options) => collectionRemoveSegment({ ...options, client: clientInstance }),
1323
1375
  adminReindexCreate: (options) => adminReindexCreate({ ...options, client: clientInstance }),
1324
1376
  adminQueueStatsIndex: (options) => adminQueueStatsIndex({ ...options, client: clientInstance }),
1325
1377
  adminQueueShow: (options) => adminQueueShow({ ...options, client: clientInstance }),
1326
1378
  adminQueueFailedIndex: (options) => adminQueueFailedIndex({ ...options, client: clientInstance }),
1327
1379
  adminQueueRetryCreate: (options) => adminQueueRetryCreate({ ...options, client: clientInstance }),
1328
1380
  adminQueueFailedDestroy: (options) => adminQueueFailedDestroy({ ...options, client: clientInstance }),
1329
- adminMorphemeBackfillCreate: (options) => adminMorphemeBackfillCreate({ ...options, client: clientInstance }),
1330
1381
  adminReportIndex: (options) => adminReportIndex({ ...options, client: clientInstance }),
1331
1382
  adminReportUpdate: (options) => adminReportUpdate({ ...options, client: clientInstance }),
1332
1383
  adminReviewRunCreate: (options) => adminReviewRunCreate({ ...options, client: clientInstance }),
@@ -1337,7 +1388,6 @@ function createNadeshikoClient(config) {
1337
1388
  adminReviewAllowlistIndex: (options) => adminReviewAllowlistIndex({ ...options, client: clientInstance }),
1338
1389
  adminReviewAllowlistCreate: (options) => adminReviewAllowlistCreate({ ...options, client: clientInstance }),
1339
1390
  adminReviewAllowlistDestroy: (options) => adminReviewAllowlistDestroy({ ...options, client: clientInstance }),
1340
- healthCheck: (options) => healthCheck({ ...options, client: clientInstance }),
1341
1391
  mediaCreate: (options) => mediaCreate({ ...options, client: clientInstance }),
1342
1392
  mediaUpdate: (options) => mediaUpdate({ ...options, client: clientInstance }),
1343
1393
  mediaDestroy: (options) => mediaDestroy({ ...options, client: clientInstance }),
@@ -1348,23 +1398,36 @@ function createNadeshikoClient(config) {
1348
1398
  segmentCreate: (options) => segmentCreate({ ...options, client: clientInstance }),
1349
1399
  segmentUpdate: (options) => segmentUpdate({ ...options, client: clientInstance }),
1350
1400
  segmentDestroy: (options) => segmentDestroy({ ...options, client: clientInstance }),
1351
- listCreate: (options) => listCreate({ ...options, client: clientInstance }),
1352
- listUpdate: (options) => listUpdate({ ...options, client: clientInstance }),
1353
- listDestroy: (options) => listDestroy({ ...options, client: clientInstance }),
1354
- listAddItem: (options) => listAddItem({ ...options, client: clientInstance }),
1355
- listUpdateItem: (options) => listUpdateItem({ ...options, client: clientInstance }),
1356
- listRemoveItem: (options) => listRemoveItem({ ...options, client: clientInstance })
1401
+ seriesCreate: (options) => seriesCreate({ ...options, client: clientInstance }),
1402
+ seriesUpdate: (options) => seriesUpdate({ ...options, client: clientInstance }),
1403
+ seriesDestroy: (options) => seriesDestroy({ ...options, client: clientInstance }),
1404
+ seriesAddMedia: (options) => seriesAddMedia({ ...options, client: clientInstance }),
1405
+ seriesUpdateMedia: (options) => seriesUpdateMedia({ ...options, client: clientInstance }),
1406
+ seriesRemoveMedia: (options) => seriesRemoveMedia({ ...options, client: clientInstance }),
1407
+ userReportCreate: (options) => userReportCreate({ ...options, client: clientInstance }),
1408
+ userReportIndex: (options) => userReportIndex({ ...options, client: clientInstance }),
1409
+ userPreferencesShow: (options) => userPreferencesShow({ ...options, client: clientInstance }),
1410
+ userPreferencesUpdate: (options) => userPreferencesUpdate({ ...options, client: clientInstance }),
1411
+ userActivityIndex: (options) => userActivityIndex({ ...options, client: clientInstance }),
1412
+ userActivityDestroy: (options) => userActivityDestroy({ ...options, client: clientInstance }),
1413
+ userActivityHeatmapShow: (options) => userActivityHeatmapShow({ ...options, client: clientInstance }),
1414
+ userActivityStatsShow: (options) => userActivityStatsShow({ ...options, client: clientInstance }),
1415
+ userExportShow: (options) => userExportShow({ ...options, client: clientInstance }),
1416
+ userLabsIndex: (options) => userLabsIndex({ ...options, client: clientInstance }),
1417
+ adminDashboardShow: (options) => adminDashboardShow({ ...options, client: clientInstance }),
1418
+ adminHealthShow: (options) => adminHealthShow({ ...options, client: clientInstance })
1357
1419
  };
1358
1420
  }
1359
1421
  var createClient2 = createNadeshikoClient;
1360
- // generated/dev/internal/search.gen.ts
1361
- var exports_search_gen = {};
1362
- __export(exports_search_gen, {
1363
- healthCheck: () => healthCheck
1364
- });
1365
1422
  // generated/dev/internal/media.gen.ts
1366
1423
  var exports_media_gen = {};
1367
1424
  __export(exports_media_gen, {
1425
+ seriesUpdateMedia: () => seriesUpdateMedia,
1426
+ seriesUpdate: () => seriesUpdate,
1427
+ seriesRemoveMedia: () => seriesRemoveMedia,
1428
+ seriesDestroy: () => seriesDestroy,
1429
+ seriesCreate: () => seriesCreate,
1430
+ seriesAddMedia: () => seriesAddMedia,
1368
1431
  segmentUpdate: () => segmentUpdate,
1369
1432
  segmentIndex: () => segmentIndex,
1370
1433
  segmentDestroy: () => segmentDestroy,
@@ -1376,15 +1439,25 @@ __export(exports_media_gen, {
1376
1439
  episodeDestroy: () => episodeDestroy,
1377
1440
  episodeCreate: () => episodeCreate
1378
1441
  });
1379
- // generated/dev/internal/lists.gen.ts
1380
- var exports_lists_gen = {};
1381
- __export(exports_lists_gen, {
1382
- listUpdateItem: () => listUpdateItem,
1383
- listUpdate: () => listUpdate,
1384
- listRemoveItem: () => listRemoveItem,
1385
- listDestroy: () => listDestroy,
1386
- listCreate: () => listCreate,
1387
- listAddItem: () => listAddItem
1442
+ // generated/dev/internal/user.gen.ts
1443
+ var exports_user_gen = {};
1444
+ __export(exports_user_gen, {
1445
+ userReportIndex: () => userReportIndex,
1446
+ userReportCreate: () => userReportCreate,
1447
+ userPreferencesUpdate: () => userPreferencesUpdate,
1448
+ userPreferencesShow: () => userPreferencesShow,
1449
+ userLabsIndex: () => userLabsIndex,
1450
+ userExportShow: () => userExportShow,
1451
+ userActivityStatsShow: () => userActivityStatsShow,
1452
+ userActivityIndex: () => userActivityIndex,
1453
+ userActivityHeatmapShow: () => userActivityHeatmapShow,
1454
+ userActivityDestroy: () => userActivityDestroy
1455
+ });
1456
+ // generated/dev/internal/admin.gen.ts
1457
+ var exports_admin_gen = {};
1458
+ __export(exports_admin_gen, {
1459
+ adminHealthShow: () => adminHealthShow,
1460
+ adminDashboardShow: () => adminDashboardShow
1388
1461
  });
1389
1462
  export {
1390
1463
  userReportIndex,
@@ -1392,10 +1465,21 @@ export {
1392
1465
  userQuotaShow,
1393
1466
  userPreferencesUpdate,
1394
1467
  userPreferencesShow,
1468
+ userLabsIndex,
1395
1469
  userExportShow,
1396
1470
  userActivityStatsShow,
1397
1471
  userActivityIndex,
1472
+ userActivityHeatmapShow,
1398
1473
  userActivityDestroy,
1474
+ exports_user_gen as user,
1475
+ seriesUpdateMedia,
1476
+ seriesUpdate,
1477
+ seriesShow,
1478
+ seriesRemoveMedia,
1479
+ seriesIndex,
1480
+ seriesDestroy,
1481
+ seriesCreate,
1482
+ seriesAddMedia,
1399
1483
  seiyuuShow,
1400
1484
  segmentUpdate,
1401
1485
  segmentShowByUuid,
@@ -1407,28 +1491,12 @@ export {
1407
1491
  searchWords,
1408
1492
  searchStats,
1409
1493
  searchIndex,
1410
- exports_search_gen as search,
1411
1494
  mediaUpdate,
1412
1495
  mediaShow,
1413
1496
  mediaIndex,
1414
1497
  mediaDestroy,
1415
1498
  mediaCreate,
1416
1499
  exports_media_gen as media,
1417
- exports_lists_gen as lists,
1418
- listUpdateSegment,
1419
- listUpdateItem,
1420
- listUpdate,
1421
- listShow,
1422
- listRemoveSegment,
1423
- listRemoveItem,
1424
- listIndex,
1425
- listGetSegments,
1426
- listDestroy,
1427
- listCreate,
1428
- listAddSegment,
1429
- listAddItem,
1430
- labIndex,
1431
- healthCheck,
1432
1500
  episodeUpdate,
1433
1501
  episodeShow,
1434
1502
  episodeIndex,
@@ -1436,6 +1504,14 @@ export {
1436
1504
  episodeCreate,
1437
1505
  createNadeshikoClient,
1438
1506
  createClient2 as createClient,
1507
+ collectionUpdateSegment,
1508
+ collectionUpdate,
1509
+ collectionShow,
1510
+ collectionRemoveSegment,
1511
+ collectionIndex,
1512
+ collectionDestroy,
1513
+ collectionCreate,
1514
+ collectionAddSegment,
1439
1515
  client,
1440
1516
  characterShow,
1441
1517
  adminReviewRunShow,
@@ -1454,8 +1530,10 @@ export {
1454
1530
  adminQueueRetryCreate,
1455
1531
  adminQueueFailedIndex,
1456
1532
  adminQueueFailedDestroy,
1457
- adminMorphemeBackfillCreate
1533
+ adminHealthShow,
1534
+ adminDashboardShow,
1535
+ exports_admin_gen as admin
1458
1536
  };
1459
1537
 
1460
- //# debugId=E295AF37E6B3026564756E2164756E21
1538
+ //# debugId=5AAB66214B78CE1864756E2164756E21
1461
1539
  //# sourceMappingURL=index.js.map