@brigadasos/nadeshiko-sdk 2.0.0-dev.62dc8bb → 2.0.0-dev.a626b83

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.
@@ -509,7 +509,7 @@ export type Error401 = {
509
509
  /**
510
510
  * Specific error code for programmatic handling
511
511
  */
512
- code: 'AUTH_CREDENTIALS_REQUIRED' | 'AUTH_CREDENTIALS_INVALID' | 'AUTH_CREDENTIALS_EXPIRED' | 'EMAIL_NOT_VERIFIED';
512
+ code: 'AUTH_CREDENTIALS_REQUIRED' | 'AUTH_CREDENTIALS_INVALID' | 'AUTH_CREDENTIALS_EXPIRED';
513
513
  /**
514
514
  * A short, human-readable summary of the problem
515
515
  */
@@ -2151,7 +2151,7 @@ export type SearchErrors = {
2151
2151
  */
2152
2152
  400: Error400;
2153
2153
  /**
2154
- * Unauthorized (API key)
2154
+ * Unauthorized
2155
2155
  */
2156
2156
  401: Error401;
2157
2157
  /**
@@ -2187,7 +2187,7 @@ export type GetSearchStatsErrors = {
2187
2187
  */
2188
2188
  400: Error400;
2189
2189
  /**
2190
- * Unauthorized (API key)
2190
+ * Unauthorized
2191
2191
  */
2192
2192
  401: Error401;
2193
2193
  /**
@@ -2223,7 +2223,7 @@ export type SearchWordsErrors = {
2223
2223
  */
2224
2224
  400: Error400;
2225
2225
  /**
2226
- * Unauthorized (API key)
2226
+ * Unauthorized
2227
2227
  */
2228
2228
  401: Error401;
2229
2229
  /**
@@ -2280,7 +2280,7 @@ export type ListMediaErrors = {
2280
2280
  */
2281
2281
  400: Error400;
2282
2282
  /**
2283
- * Unauthorized (API key)
2283
+ * Unauthorized
2284
2284
  */
2285
2285
  401: Error401;
2286
2286
  /**
@@ -2316,7 +2316,7 @@ export type CreateMediaErrors = {
2316
2316
  */
2317
2317
  400: Error400;
2318
2318
  /**
2319
- * Unauthorized (API key)
2319
+ * Unauthorized
2320
2320
  */
2321
2321
  401: Error401;
2322
2322
  /**
@@ -2369,7 +2369,7 @@ export type AutocompleteMediaErrors = {
2369
2369
  */
2370
2370
  400: Error400;
2371
2371
  /**
2372
- * Unauthorized (API key)
2372
+ * Unauthorized
2373
2373
  */
2374
2374
  401: Error401;
2375
2375
  /**
@@ -2397,7 +2397,7 @@ export type GetSegmentByUuidData = {
2397
2397
  body?: never;
2398
2398
  path: {
2399
2399
  /**
2400
- * Segment UUID or publicId
2400
+ * Segment publicId
2401
2401
  */
2402
2402
  uuid: string;
2403
2403
  };
@@ -2415,7 +2415,7 @@ export type GetSegmentByUuidErrors = {
2415
2415
  */
2416
2416
  400: Error400;
2417
2417
  /**
2418
- * Unauthorized (API key or session)
2418
+ * Unauthorized
2419
2419
  */
2420
2420
  401: Error401;
2421
2421
  /**
@@ -2438,7 +2438,7 @@ export type GetSegmentByUuidErrors = {
2438
2438
  export type GetSegmentByUuidError = GetSegmentByUuidErrors[keyof GetSegmentByUuidErrors];
2439
2439
  export type GetSegmentByUuidResponses = {
2440
2440
  /**
2441
- * Single segment response with internal fields
2441
+ * OK
2442
2442
  */
2443
2443
  200: SegmentInternal;
2444
2444
  };
@@ -2447,7 +2447,7 @@ export type UpdateSegmentByUuidData = {
2447
2447
  body: SegmentUpdateRequest;
2448
2448
  path: {
2449
2449
  /**
2450
- * Segment UUID or publicId
2450
+ * Segment publicId
2451
2451
  */
2452
2452
  uuid: string;
2453
2453
  };
@@ -2460,7 +2460,7 @@ export type UpdateSegmentByUuidErrors = {
2460
2460
  */
2461
2461
  400: Error400;
2462
2462
  /**
2463
- * Unauthorized (API key or session)
2463
+ * Unauthorized
2464
2464
  */
2465
2465
  401: Error401;
2466
2466
  /**
@@ -2483,7 +2483,7 @@ export type UpdateSegmentByUuidErrors = {
2483
2483
  export type UpdateSegmentByUuidError = UpdateSegmentByUuidErrors[keyof UpdateSegmentByUuidErrors];
2484
2484
  export type UpdateSegmentByUuidResponses = {
2485
2485
  /**
2486
- * Single segment response with internal fields
2486
+ * OK
2487
2487
  */
2488
2488
  200: SegmentInternal;
2489
2489
  };
@@ -2492,7 +2492,7 @@ export type GetSegmentContextData = {
2492
2492
  body?: never;
2493
2493
  path: {
2494
2494
  /**
2495
- * Segment UUID or publicId
2495
+ * Segment publicId
2496
2496
  */
2497
2497
  uuid: string;
2498
2498
  };
@@ -2514,7 +2514,7 @@ export type GetSegmentContextErrors = {
2514
2514
  */
2515
2515
  400: Error400;
2516
2516
  /**
2517
- * Unauthorized (API key or session)
2517
+ * Unauthorized
2518
2518
  */
2519
2519
  401: Error401;
2520
2520
  /**
@@ -2546,7 +2546,7 @@ export type ListSegmentRevisionsData = {
2546
2546
  body?: never;
2547
2547
  path: {
2548
2548
  /**
2549
- * Segment UUID or publicId
2549
+ * Segment publicId
2550
2550
  */
2551
2551
  uuid: string;
2552
2552
  };
@@ -2559,7 +2559,7 @@ export type ListSegmentRevisionsErrors = {
2559
2559
  */
2560
2560
  400: Error400;
2561
2561
  /**
2562
- * Unauthorized (API key or session)
2562
+ * Unauthorized
2563
2563
  */
2564
2564
  401: Error401;
2565
2565
  /**
@@ -2582,7 +2582,7 @@ export type ListSegmentRevisionsErrors = {
2582
2582
  export type ListSegmentRevisionsError = ListSegmentRevisionsErrors[keyof ListSegmentRevisionsErrors];
2583
2583
  export type ListSegmentRevisionsResponses = {
2584
2584
  /**
2585
- * List of segment revisions
2585
+ * OK
2586
2586
  */
2587
2587
  200: {
2588
2588
  revisions: Array<SegmentRevision>;
@@ -2614,7 +2614,7 @@ export type ListSeriesErrors = {
2614
2614
  */
2615
2615
  400: Error400;
2616
2616
  /**
2617
- * Unauthorized (API key)
2617
+ * Unauthorized
2618
2618
  */
2619
2619
  401: Error401;
2620
2620
  /**
@@ -2663,7 +2663,7 @@ export type CreateSeriesErrors = {
2663
2663
  */
2664
2664
  400: Error400;
2665
2665
  /**
2666
- * Unauthorized (API key)
2666
+ * Unauthorized
2667
2667
  */
2668
2668
  401: Error401;
2669
2669
  /**
@@ -2704,7 +2704,7 @@ export type DeleteSeriesErrors = {
2704
2704
  */
2705
2705
  400: Error400;
2706
2706
  /**
2707
- * Unauthorized (API key)
2707
+ * Unauthorized
2708
2708
  */
2709
2709
  401: Error401;
2710
2710
  /**
@@ -2754,7 +2754,7 @@ export type GetSeriesErrors = {
2754
2754
  */
2755
2755
  400: Error400;
2756
2756
  /**
2757
- * Unauthorized (API key)
2757
+ * Unauthorized
2758
2758
  */
2759
2759
  401: Error401;
2760
2760
  /**
@@ -2812,7 +2812,7 @@ export type UpdateSeriesErrors = {
2812
2812
  */
2813
2813
  400: Error400;
2814
2814
  /**
2815
- * Unauthorized (API key)
2815
+ * Unauthorized
2816
2816
  */
2817
2817
  401: Error401;
2818
2818
  /**
@@ -2866,7 +2866,7 @@ export type AddMediaToSeriesErrors = {
2866
2866
  */
2867
2867
  400: Error400;
2868
2868
  /**
2869
- * Unauthorized (API key)
2869
+ * Unauthorized
2870
2870
  */
2871
2871
  401: Error401;
2872
2872
  /**
@@ -2915,7 +2915,7 @@ export type RemoveMediaFromSeriesErrors = {
2915
2915
  */
2916
2916
  400: Error400;
2917
2917
  /**
2918
- * Unauthorized (API key)
2918
+ * Unauthorized
2919
2919
  */
2920
2920
  401: Error401;
2921
2921
  /**
@@ -2969,7 +2969,7 @@ export type UpdateSeriesMediaErrors = {
2969
2969
  */
2970
2970
  400: Error400;
2971
2971
  /**
2972
- * Unauthorized (API key)
2972
+ * Unauthorized
2973
2973
  */
2974
2974
  401: Error401;
2975
2975
  /**
@@ -3014,7 +3014,7 @@ export type GetCharacterErrors = {
3014
3014
  */
3015
3015
  400: Error400;
3016
3016
  /**
3017
- * Unauthorized (API key)
3017
+ * Unauthorized
3018
3018
  */
3019
3019
  401: Error401;
3020
3020
  /**
@@ -3059,7 +3059,7 @@ export type GetSeiyuuErrors = {
3059
3059
  */
3060
3060
  400: Error400;
3061
3061
  /**
3062
- * Unauthorized (API key)
3062
+ * Unauthorized
3063
3063
  */
3064
3064
  401: Error401;
3065
3065
  /**
@@ -3104,7 +3104,7 @@ export type DeleteMediaErrors = {
3104
3104
  */
3105
3105
  400: Error400;
3106
3106
  /**
3107
- * Unauthorized (API key)
3107
+ * Unauthorized
3108
3108
  */
3109
3109
  401: Error401;
3110
3110
  /**
@@ -3154,7 +3154,7 @@ export type GetMediaErrors = {
3154
3154
  */
3155
3155
  400: Error400;
3156
3156
  /**
3157
- * Unauthorized (API key)
3157
+ * Unauthorized
3158
3158
  */
3159
3159
  401: Error401;
3160
3160
  /**
@@ -3199,7 +3199,7 @@ export type UpdateMediaErrors = {
3199
3199
  */
3200
3200
  400: Error400;
3201
3201
  /**
3202
- * Unauthorized (API key)
3202
+ * Unauthorized
3203
3203
  */
3204
3204
  401: Error401;
3205
3205
  /**
@@ -3253,7 +3253,7 @@ export type ListEpisodesErrors = {
3253
3253
  */
3254
3254
  400: Error400;
3255
3255
  /**
3256
- * Unauthorized (API key)
3256
+ * Unauthorized
3257
3257
  */
3258
3258
  401: Error401;
3259
3259
  /**
@@ -3276,7 +3276,7 @@ export type ListEpisodesErrors = {
3276
3276
  export type ListEpisodesError = ListEpisodesErrors[keyof ListEpisodesErrors];
3277
3277
  export type ListEpisodesResponses = {
3278
3278
  /**
3279
- * Paginated list of episodes
3279
+ * OK
3280
3280
  */
3281
3281
  200: EpisodeListResponse;
3282
3282
  };
@@ -3298,7 +3298,7 @@ export type CreateEpisodeErrors = {
3298
3298
  */
3299
3299
  400: Error400;
3300
3300
  /**
3301
- * Unauthorized (API key)
3301
+ * Unauthorized
3302
3302
  */
3303
3303
  401: Error401;
3304
3304
  /**
@@ -3325,7 +3325,7 @@ export type CreateEpisodeErrors = {
3325
3325
  export type CreateEpisodeError = CreateEpisodeErrors[keyof CreateEpisodeErrors];
3326
3326
  export type CreateEpisodeResponses = {
3327
3327
  /**
3328
- * Single episode response
3328
+ * OK
3329
3329
  */
3330
3330
  201: Episode;
3331
3331
  };
@@ -3351,7 +3351,7 @@ export type DeleteEpisodeErrors = {
3351
3351
  */
3352
3352
  400: Error400;
3353
3353
  /**
3354
- * Unauthorized (API key)
3354
+ * Unauthorized
3355
3355
  */
3356
3356
  401: Error401;
3357
3357
  /**
@@ -3374,7 +3374,7 @@ export type DeleteEpisodeErrors = {
3374
3374
  export type DeleteEpisodeError = DeleteEpisodeErrors[keyof DeleteEpisodeErrors];
3375
3375
  export type DeleteEpisodeResponses = {
3376
3376
  /**
3377
- * Episode successfully deleted
3377
+ * No Content
3378
3378
  */
3379
3379
  204: void;
3380
3380
  };
@@ -3400,7 +3400,7 @@ export type GetEpisodeErrors = {
3400
3400
  */
3401
3401
  400: Error400;
3402
3402
  /**
3403
- * Unauthorized (API key)
3403
+ * Unauthorized
3404
3404
  */
3405
3405
  401: Error401;
3406
3406
  /**
@@ -3423,7 +3423,7 @@ export type GetEpisodeErrors = {
3423
3423
  export type GetEpisodeError = GetEpisodeErrors[keyof GetEpisodeErrors];
3424
3424
  export type GetEpisodeResponses = {
3425
3425
  /**
3426
- * Single episode response
3426
+ * OK
3427
3427
  */
3428
3428
  200: Episode;
3429
3429
  };
@@ -3449,7 +3449,7 @@ export type UpdateEpisodeErrors = {
3449
3449
  */
3450
3450
  400: Error400;
3451
3451
  /**
3452
- * Unauthorized (API key)
3452
+ * Unauthorized
3453
3453
  */
3454
3454
  401: Error401;
3455
3455
  /**
@@ -3472,7 +3472,7 @@ export type UpdateEpisodeErrors = {
3472
3472
  export type UpdateEpisodeError = UpdateEpisodeErrors[keyof UpdateEpisodeErrors];
3473
3473
  export type UpdateEpisodeResponses = {
3474
3474
  /**
3475
- * Single episode response
3475
+ * OK
3476
3476
  */
3477
3477
  200: Episode;
3478
3478
  };
@@ -3507,7 +3507,7 @@ export type ListSegmentsErrors = {
3507
3507
  */
3508
3508
  400: Error400;
3509
3509
  /**
3510
- * Unauthorized (API key)
3510
+ * Unauthorized
3511
3511
  */
3512
3512
  401: Error401;
3513
3513
  /**
@@ -3530,7 +3530,7 @@ export type ListSegmentsErrors = {
3530
3530
  export type ListSegmentsError = ListSegmentsErrors[keyof ListSegmentsErrors];
3531
3531
  export type ListSegmentsResponses = {
3532
3532
  /**
3533
- * Paginated segment list response
3533
+ * OK
3534
3534
  */
3535
3535
  200: {
3536
3536
  /**
@@ -3562,7 +3562,7 @@ export type CreateSegmentErrors = {
3562
3562
  */
3563
3563
  400: Error400;
3564
3564
  /**
3565
- * Unauthorized (API key)
3565
+ * Unauthorized
3566
3566
  */
3567
3567
  401: Error401;
3568
3568
  /**
@@ -3589,7 +3589,7 @@ export type CreateSegmentErrors = {
3589
3589
  export type CreateSegmentError = CreateSegmentErrors[keyof CreateSegmentErrors];
3590
3590
  export type CreateSegmentResponses = {
3591
3591
  /**
3592
- * Single segment response with internal fields
3592
+ * OK
3593
3593
  */
3594
3594
  201: SegmentInternal;
3595
3595
  };
@@ -3615,7 +3615,7 @@ export type CreateSegmentsBatchErrors = {
3615
3615
  */
3616
3616
  400: Error400;
3617
3617
  /**
3618
- * Unauthorized (API key)
3618
+ * Unauthorized
3619
3619
  */
3620
3620
  401: Error401;
3621
3621
  /**
@@ -3638,7 +3638,7 @@ export type CreateSegmentsBatchErrors = {
3638
3638
  export type CreateSegmentsBatchError = CreateSegmentsBatchErrors[keyof CreateSegmentsBatchErrors];
3639
3639
  export type CreateSegmentsBatchResponses = {
3640
3640
  /**
3641
- * Batch segment creation result
3641
+ * Created
3642
3642
  */
3643
3643
  201: {
3644
3644
  /**
@@ -3677,7 +3677,7 @@ export type DeleteSegmentErrors = {
3677
3677
  */
3678
3678
  400: Error400;
3679
3679
  /**
3680
- * Unauthorized (API key)
3680
+ * Unauthorized
3681
3681
  */
3682
3682
  401: Error401;
3683
3683
  /**
@@ -3700,7 +3700,7 @@ export type DeleteSegmentErrors = {
3700
3700
  export type DeleteSegmentError = DeleteSegmentErrors[keyof DeleteSegmentErrors];
3701
3701
  export type DeleteSegmentResponses = {
3702
3702
  /**
3703
- * Segment successfully deleted
3703
+ * No Content
3704
3704
  */
3705
3705
  204: void;
3706
3706
  };
@@ -3730,7 +3730,7 @@ export type GetSegmentErrors = {
3730
3730
  */
3731
3731
  400: Error400;
3732
3732
  /**
3733
- * Unauthorized (API key)
3733
+ * Unauthorized
3734
3734
  */
3735
3735
  401: Error401;
3736
3736
  /**
@@ -3753,7 +3753,7 @@ export type GetSegmentErrors = {
3753
3753
  export type GetSegmentError = GetSegmentErrors[keyof GetSegmentErrors];
3754
3754
  export type GetSegmentResponses = {
3755
3755
  /**
3756
- * Single segment response
3756
+ * OK
3757
3757
  */
3758
3758
  200: Segment;
3759
3759
  };
@@ -3783,7 +3783,7 @@ export type UpdateSegmentErrors = {
3783
3783
  */
3784
3784
  400: Error400;
3785
3785
  /**
3786
- * Unauthorized (API key)
3786
+ * Unauthorized
3787
3787
  */
3788
3788
  401: Error401;
3789
3789
  /**
@@ -3806,7 +3806,7 @@ export type UpdateSegmentErrors = {
3806
3806
  export type UpdateSegmentError = UpdateSegmentErrors[keyof UpdateSegmentErrors];
3807
3807
  export type UpdateSegmentResponses = {
3808
3808
  /**
3809
- * Single segment response with internal fields
3809
+ * OK
3810
3810
  */
3811
3811
  200: SegmentInternal;
3812
3812
  };
@@ -3819,7 +3819,7 @@ export type GetUserQuotaData = {
3819
3819
  };
3820
3820
  export type GetUserQuotaErrors = {
3821
3821
  /**
3822
- * Unauthorized (session)
3822
+ * Unauthorized
3823
3823
  */
3824
3824
  401: Error401;
3825
3825
  /**
@@ -3855,7 +3855,7 @@ export type CreateUserReportErrors = {
3855
3855
  */
3856
3856
  400: Error400;
3857
3857
  /**
3858
- * Unauthorized (session)
3858
+ * Unauthorized
3859
3859
  */
3860
3860
  401: Error401;
3861
3861
  /**
@@ -3870,7 +3870,7 @@ export type CreateUserReportErrors = {
3870
3870
  export type CreateUserReportError = CreateUserReportErrors[keyof CreateUserReportErrors];
3871
3871
  export type CreateUserReportResponses = {
3872
3872
  /**
3873
- * Report created successfully
3873
+ * Created
3874
3874
  */
3875
3875
  201: Report;
3876
3876
  };
@@ -3883,7 +3883,7 @@ export type GetUserPreferencesData = {
3883
3883
  };
3884
3884
  export type GetUserPreferencesErrors = {
3885
3885
  /**
3886
- * Unauthorized (session)
3886
+ * Unauthorized
3887
3887
  */
3888
3888
  401: Error401;
3889
3889
  /**
@@ -3907,7 +3907,7 @@ export type UpdateUserPreferencesData = {
3907
3907
  };
3908
3908
  export type UpdateUserPreferencesErrors = {
3909
3909
  /**
3910
- * Unauthorized (session)
3910
+ * Unauthorized
3911
3911
  */
3912
3912
  401: Error401;
3913
3913
  /**
@@ -3936,7 +3936,7 @@ export type DeleteUserActivityData = {
3936
3936
  };
3937
3937
  export type DeleteUserActivityErrors = {
3938
3938
  /**
3939
- * Unauthorized (session)
3939
+ * Unauthorized
3940
3940
  */
3941
3941
  401: Error401;
3942
3942
  /**
@@ -3979,7 +3979,7 @@ export type ListUserActivityData = {
3979
3979
  };
3980
3980
  export type ListUserActivityErrors = {
3981
3981
  /**
3982
- * Unauthorized (session)
3982
+ * Unauthorized
3983
3983
  */
3984
3984
  401: Error401;
3985
3985
  /**
@@ -4000,7 +4000,7 @@ export type ListUserActivityResponses = {
4000
4000
  export type ListUserActivityResponse = ListUserActivityResponses[keyof ListUserActivityResponses];
4001
4001
  export type TrackUserActivityData = {
4002
4002
  body: {
4003
- activityType: 'SEARCH' | 'SEGMENT_PLAY' | 'SHARE';
4003
+ activityType: 'SEARCH' | 'SEGMENT_PLAY' | 'SHARE' | 'ANKI_EXPORT';
4004
4004
  segmentId?: string;
4005
4005
  mediaId?: number;
4006
4006
  mediaName?: string;
@@ -4017,7 +4017,7 @@ export type TrackUserActivityErrors = {
4017
4017
  */
4018
4018
  400: Error400;
4019
4019
  /**
4020
- * Unauthorized (session)
4020
+ * Unauthorized
4021
4021
  */
4022
4022
  401: Error401;
4023
4023
  /**
@@ -4028,7 +4028,7 @@ export type TrackUserActivityErrors = {
4028
4028
  export type TrackUserActivityError = TrackUserActivityErrors[keyof TrackUserActivityErrors];
4029
4029
  export type TrackUserActivityResponses = {
4030
4030
  /**
4031
- * Activity tracked
4031
+ * No Content
4032
4032
  */
4033
4033
  204: void;
4034
4034
  };
@@ -4046,7 +4046,7 @@ export type GetUserActivityHeatmapData = {
4046
4046
  };
4047
4047
  export type GetUserActivityHeatmapErrors = {
4048
4048
  /**
4049
- * Unauthorized (session)
4049
+ * Unauthorized
4050
4050
  */
4051
4051
  401: Error401;
4052
4052
  /**
@@ -4082,7 +4082,7 @@ export type GetUserActivityStatsData = {
4082
4082
  };
4083
4083
  export type GetUserActivityStatsErrors = {
4084
4084
  /**
4085
- * Unauthorized (session)
4085
+ * Unauthorized
4086
4086
  */
4087
4087
  401: Error401;
4088
4088
  /**
@@ -4121,7 +4121,7 @@ export type DeleteUserActivityByDateData = {
4121
4121
  };
4122
4122
  export type DeleteUserActivityByDateErrors = {
4123
4123
  /**
4124
- * Unauthorized (session)
4124
+ * Unauthorized
4125
4125
  */
4126
4126
  401: Error401;
4127
4127
  /**
@@ -4152,7 +4152,7 @@ export type DeleteUserActivityByIdData = {
4152
4152
  };
4153
4153
  export type DeleteUserActivityByIdErrors = {
4154
4154
  /**
4155
- * Unauthorized (session)
4155
+ * Unauthorized
4156
4156
  */
4157
4157
  401: Error401;
4158
4158
  /**
@@ -4167,7 +4167,7 @@ export type DeleteUserActivityByIdErrors = {
4167
4167
  export type DeleteUserActivityByIdError = DeleteUserActivityByIdErrors[keyof DeleteUserActivityByIdErrors];
4168
4168
  export type DeleteUserActivityByIdResponses = {
4169
4169
  /**
4170
- * Activity deleted
4170
+ * No Content
4171
4171
  */
4172
4172
  204: void;
4173
4173
  };
@@ -4180,7 +4180,7 @@ export type ExportUserDataData = {
4180
4180
  };
4181
4181
  export type ExportUserDataErrors = {
4182
4182
  /**
4183
- * Unauthorized (session)
4183
+ * Unauthorized
4184
4184
  */
4185
4185
  401: Error401;
4186
4186
  /**
@@ -4204,7 +4204,7 @@ export type ListUserLabsData = {
4204
4204
  };
4205
4205
  export type ListUserLabsErrors = {
4206
4206
  /**
4207
- * Unauthorized (session)
4207
+ * Unauthorized
4208
4208
  */
4209
4209
  401: Error401;
4210
4210
  /**
@@ -4233,7 +4233,7 @@ export type UnenrollUserLabData = {
4233
4233
  };
4234
4234
  export type UnenrollUserLabErrors = {
4235
4235
  /**
4236
- * Unauthorized (session)
4236
+ * Unauthorized
4237
4237
  */
4238
4238
  401: Error401;
4239
4239
  /**
@@ -4248,7 +4248,7 @@ export type UnenrollUserLabErrors = {
4248
4248
  export type UnenrollUserLabError = UnenrollUserLabErrors[keyof UnenrollUserLabErrors];
4249
4249
  export type UnenrollUserLabResponses = {
4250
4250
  /**
4251
- * Unenrolled successfully
4251
+ * No Content
4252
4252
  */
4253
4253
  204: void;
4254
4254
  };
@@ -4266,7 +4266,7 @@ export type EnrollUserLabData = {
4266
4266
  };
4267
4267
  export type EnrollUserLabErrors = {
4268
4268
  /**
4269
- * Unauthorized (session)
4269
+ * Unauthorized
4270
4270
  */
4271
4271
  401: Error401;
4272
4272
  /**
@@ -4281,7 +4281,7 @@ export type EnrollUserLabErrors = {
4281
4281
  export type EnrollUserLabError = EnrollUserLabErrors[keyof EnrollUserLabErrors];
4282
4282
  export type EnrollUserLabResponses = {
4283
4283
  /**
4284
- * Enrolled successfully
4284
+ * No Content
4285
4285
  */
4286
4286
  204: void;
4287
4287
  };
@@ -4311,7 +4311,7 @@ export type ListCollectionsErrors = {
4311
4311
  */
4312
4312
  400: Error400;
4313
4313
  /**
4314
- * Unauthorized (session)
4314
+ * Unauthorized
4315
4315
  */
4316
4316
  401: Error401;
4317
4317
  /**
@@ -4347,7 +4347,7 @@ export type CreateCollectionErrors = {
4347
4347
  */
4348
4348
  400: Error400;
4349
4349
  /**
4350
- * Unauthorized (session)
4350
+ * Unauthorized
4351
4351
  */
4352
4352
  401: Error401;
4353
4353
  /**
@@ -4388,7 +4388,7 @@ export type DeleteCollectionErrors = {
4388
4388
  */
4389
4389
  400: Error400;
4390
4390
  /**
4391
- * Unauthorized (session)
4391
+ * Unauthorized
4392
4392
  */
4393
4393
  401: Error401;
4394
4394
  /**
@@ -4442,7 +4442,7 @@ export type GetCollectionErrors = {
4442
4442
  */
4443
4443
  400: Error400;
4444
4444
  /**
4445
- * Unauthorized (session)
4445
+ * Unauthorized
4446
4446
  */
4447
4447
  401: Error401;
4448
4448
  /**
@@ -4490,7 +4490,7 @@ export type UpdateCollectionErrors = {
4490
4490
  */
4491
4491
  400: Error400;
4492
4492
  /**
4493
- * Unauthorized (session)
4493
+ * Unauthorized
4494
4494
  */
4495
4495
  401: Error401;
4496
4496
  /**
@@ -4544,7 +4544,7 @@ export type AddSegmentToCollectionErrors = {
4544
4544
  */
4545
4545
  400: Error400;
4546
4546
  /**
4547
- * Unauthorized (session)
4547
+ * Unauthorized
4548
4548
  */
4549
4549
  401: Error401;
4550
4550
  /**
@@ -4593,7 +4593,7 @@ export type RemoveSegmentFromCollectionErrors = {
4593
4593
  */
4594
4594
  400: Error400;
4595
4595
  /**
4596
- * Unauthorized (session)
4596
+ * Unauthorized
4597
4597
  */
4598
4598
  401: Error401;
4599
4599
  /**
@@ -4651,7 +4651,7 @@ export type UpdateCollectionSegmentErrors = {
4651
4651
  */
4652
4652
  400: Error400;
4653
4653
  /**
4654
- * Unauthorized (session)
4654
+ * Unauthorized
4655
4655
  */
4656
4656
  401: Error401;
4657
4657
  /**
@@ -4705,7 +4705,7 @@ export type SearchCollectionSegmentsErrors = {
4705
4705
  */
4706
4706
  400: Error400;
4707
4707
  /**
4708
- * Unauthorized (session)
4708
+ * Unauthorized
4709
4709
  */
4710
4710
  401: Error401;
4711
4711
  /**
@@ -4750,7 +4750,7 @@ export type GetCollectionStatsErrors = {
4750
4750
  */
4751
4751
  400: Error400;
4752
4752
  /**
4753
- * Unauthorized (session)
4753
+ * Unauthorized
4754
4754
  */
4755
4755
  401: Error401;
4756
4756
  /**
@@ -4786,7 +4786,7 @@ export type GetAdminDashboardData = {
4786
4786
  };
4787
4787
  export type GetAdminDashboardErrors = {
4788
4788
  /**
4789
- * Unauthorized (session)
4789
+ * Unauthorized
4790
4790
  */
4791
4791
  401: Error401;
4792
4792
  /**
@@ -4878,7 +4878,7 @@ export type GetAdminHealthData = {
4878
4878
  };
4879
4879
  export type GetAdminHealthErrors = {
4880
4880
  /**
4881
- * Unauthorized (session)
4881
+ * Unauthorized
4882
4882
  */
4883
4883
  401: Error401;
4884
4884
  /**
@@ -4940,7 +4940,7 @@ export type TriggerReindexErrors = {
4940
4940
  */
4941
4941
  400: Error400;
4942
4942
  /**
4943
- * Unauthorized (session)
4943
+ * Unauthorized
4944
4944
  */
4945
4945
  401: Error401;
4946
4946
  /**
@@ -4959,7 +4959,7 @@ export type TriggerReindexErrors = {
4959
4959
  export type TriggerReindexError = TriggerReindexErrors[keyof TriggerReindexErrors];
4960
4960
  export type TriggerReindexResponses = {
4961
4961
  /**
4962
- * Reindex operation completed
4962
+ * OK
4963
4963
  */
4964
4964
  200: ReindexResponse;
4965
4965
  };
@@ -4976,7 +4976,7 @@ export type ListAdminQueueStatsErrors = {
4976
4976
  */
4977
4977
  400: Error400;
4978
4978
  /**
4979
- * Unauthorized (session)
4979
+ * Unauthorized
4980
4980
  */
4981
4981
  401: Error401;
4982
4982
  /**
@@ -4995,7 +4995,7 @@ export type ListAdminQueueStatsErrors = {
4995
4995
  export type ListAdminQueueStatsError = ListAdminQueueStatsErrors[keyof ListAdminQueueStatsErrors];
4996
4996
  export type ListAdminQueueStatsResponses = {
4997
4997
  /**
4998
- * Queue statistics retrieved successfully
4998
+ * OK
4999
4999
  */
5000
5000
  200: Array<{
5001
5001
  queue: string;
@@ -5027,7 +5027,7 @@ export type GetAdminQueueErrors = {
5027
5027
  */
5028
5028
  400: Error400;
5029
5029
  /**
5030
- * Unauthorized (session)
5030
+ * Unauthorized
5031
5031
  */
5032
5032
  401: Error401;
5033
5033
  /**
@@ -5050,7 +5050,7 @@ export type GetAdminQueueErrors = {
5050
5050
  export type GetAdminQueueError = GetAdminQueueErrors[keyof GetAdminQueueErrors];
5051
5051
  export type GetAdminQueueResponses = {
5052
5052
  /**
5053
- * Queue details retrieved successfully
5053
+ * OK
5054
5054
  */
5055
5055
  200: {
5056
5056
  queue: string;
@@ -5112,7 +5112,7 @@ export type ListAdminQueueFailedErrors = {
5112
5112
  */
5113
5113
  400: Error400;
5114
5114
  /**
5115
- * Unauthorized (session)
5115
+ * Unauthorized
5116
5116
  */
5117
5117
  401: Error401;
5118
5118
  /**
@@ -5131,7 +5131,7 @@ export type ListAdminQueueFailedErrors = {
5131
5131
  export type ListAdminQueueFailedError = ListAdminQueueFailedErrors[keyof ListAdminQueueFailedErrors];
5132
5132
  export type ListAdminQueueFailedResponses = {
5133
5133
  /**
5134
- * Failed jobs retrieved successfully
5134
+ * OK
5135
5135
  */
5136
5136
  200: Array<{
5137
5137
  /**
@@ -5170,7 +5170,7 @@ export type RetryAdminQueueFailedErrors = {
5170
5170
  */
5171
5171
  400: Error400;
5172
5172
  /**
5173
- * Unauthorized (session)
5173
+ * Unauthorized
5174
5174
  */
5175
5175
  401: Error401;
5176
5176
  /**
@@ -5189,7 +5189,7 @@ export type RetryAdminQueueFailedErrors = {
5189
5189
  export type RetryAdminQueueFailedError = RetryAdminQueueFailedErrors[keyof RetryAdminQueueFailedErrors];
5190
5190
  export type RetryAdminQueueFailedResponses = {
5191
5191
  /**
5192
- * Jobs queued for retry
5192
+ * OK
5193
5193
  */
5194
5194
  200: {
5195
5195
  success: boolean;
@@ -5218,7 +5218,7 @@ export type PurgeAdminQueueFailedErrors = {
5218
5218
  */
5219
5219
  400: Error400;
5220
5220
  /**
5221
- * Unauthorized (session)
5221
+ * Unauthorized
5222
5222
  */
5223
5223
  401: Error401;
5224
5224
  /**
@@ -5237,7 +5237,7 @@ export type PurgeAdminQueueFailedErrors = {
5237
5237
  export type PurgeAdminQueueFailedError = PurgeAdminQueueFailedErrors[keyof PurgeAdminQueueFailedErrors];
5238
5238
  export type PurgeAdminQueueFailedResponses = {
5239
5239
  /**
5240
- * Failed jobs purged successfully
5240
+ * OK
5241
5241
  */
5242
5242
  200: {
5243
5243
  success: boolean;
@@ -5272,7 +5272,7 @@ export type ClearAdminImpersonationErrors = {
5272
5272
  export type ClearAdminImpersonationError = ClearAdminImpersonationErrors[keyof ClearAdminImpersonationErrors];
5273
5273
  export type ClearAdminImpersonationResponses = {
5274
5274
  /**
5275
- * Impersonation session cleared
5275
+ * OK
5276
5276
  */
5277
5277
  200: {
5278
5278
  message: string;
@@ -5315,7 +5315,7 @@ export type ImpersonateAdminUserErrors = {
5315
5315
  export type ImpersonateAdminUserError = ImpersonateAdminUserErrors[keyof ImpersonateAdminUserErrors];
5316
5316
  export type ImpersonateAdminUserResponses = {
5317
5317
  /**
5318
- * Impersonation session created
5318
+ * OK
5319
5319
  */
5320
5320
  200: {
5321
5321
  message: string;
@@ -5373,7 +5373,7 @@ export type ListAdminReportsData = {
5373
5373
  };
5374
5374
  export type ListAdminReportsErrors = {
5375
5375
  /**
5376
- * Unauthorized (session)
5376
+ * Unauthorized
5377
5377
  */
5378
5378
  401: Error401;
5379
5379
  /**
@@ -5409,7 +5409,7 @@ export type BatchUpdateAdminReportsErrors = {
5409
5409
  */
5410
5410
  400: Error400;
5411
5411
  /**
5412
- * Unauthorized (session)
5412
+ * Unauthorized
5413
5413
  */
5414
5414
  401: Error401;
5415
5415
  /**
@@ -5428,7 +5428,7 @@ export type BatchUpdateAdminReportsErrors = {
5428
5428
  export type BatchUpdateAdminReportsError = BatchUpdateAdminReportsErrors[keyof BatchUpdateAdminReportsErrors];
5429
5429
  export type BatchUpdateAdminReportsResponses = {
5430
5430
  /**
5431
- * Reports updated successfully
5431
+ * OK
5432
5432
  */
5433
5433
  200: {
5434
5434
  /**
@@ -5455,7 +5455,7 @@ export type UpdateAdminReportErrors = {
5455
5455
  */
5456
5456
  400: Error400;
5457
5457
  /**
5458
- * Unauthorized (session)
5458
+ * Unauthorized
5459
5459
  */
5460
5460
  401: Error401;
5461
5461
  /**
@@ -5478,7 +5478,7 @@ export type UpdateAdminReportErrors = {
5478
5478
  export type UpdateAdminReportError = UpdateAdminReportErrors[keyof UpdateAdminReportErrors];
5479
5479
  export type UpdateAdminReportResponses = {
5480
5480
  /**
5481
- * Report updated successfully
5481
+ * OK
5482
5482
  */
5483
5483
  200: Report;
5484
5484
  };
@@ -5491,7 +5491,7 @@ export type ListAdminMediaAuditsData = {
5491
5491
  };
5492
5492
  export type ListAdminMediaAuditsErrors = {
5493
5493
  /**
5494
- * Unauthorized (session)
5494
+ * Unauthorized
5495
5495
  */
5496
5496
  401: Error401;
5497
5497
  /**
@@ -5543,7 +5543,7 @@ export type UpdateAdminMediaAuditErrors = {
5543
5543
  */
5544
5544
  400: Error400;
5545
5545
  /**
5546
- * Unauthorized (session)
5546
+ * Unauthorized
5547
5547
  */
5548
5548
  401: Error401;
5549
5549
  /**
@@ -5566,7 +5566,7 @@ export type UpdateAdminMediaAuditErrors = {
5566
5566
  export type UpdateAdminMediaAuditError = UpdateAdminMediaAuditErrors[keyof UpdateAdminMediaAuditErrors];
5567
5567
  export type UpdateAdminMediaAuditResponses = {
5568
5568
  /**
5569
- * Audit updated successfully
5569
+ * OK
5570
5570
  */
5571
5571
  200: MediaAudit;
5572
5572
  };
@@ -5589,7 +5589,7 @@ export type RunAdminMediaAuditData = {
5589
5589
  };
5590
5590
  export type RunAdminMediaAuditErrors = {
5591
5591
  /**
5592
- * Unauthorized (session)
5592
+ * Unauthorized
5593
5593
  */
5594
5594
  401: Error401;
5595
5595
  /**
@@ -5612,7 +5612,7 @@ export type RunAdminMediaAuditErrors = {
5612
5612
  export type RunAdminMediaAuditError = RunAdminMediaAuditErrors[keyof RunAdminMediaAuditErrors];
5613
5613
  export type RunAdminMediaAuditResponses = {
5614
5614
  /**
5615
- * Audit run completed
5615
+ * OK
5616
5616
  */
5617
5617
  200: RunAuditResponse;
5618
5618
  };
@@ -5638,7 +5638,7 @@ export type ListAdminMediaAuditRunsData = {
5638
5638
  };
5639
5639
  export type ListAdminMediaAuditRunsErrors = {
5640
5640
  /**
5641
- * Unauthorized (session)
5641
+ * Unauthorized
5642
5642
  */
5643
5643
  401: Error401;
5644
5644
  /**
@@ -5678,7 +5678,7 @@ export type GetAdminMediaAuditRunData = {
5678
5678
  };
5679
5679
  export type GetAdminMediaAuditRunErrors = {
5680
5680
  /**
5681
- * Unauthorized (session)
5681
+ * Unauthorized
5682
5682
  */
5683
5683
  401: Error401;
5684
5684
  /**
@@ -5757,7 +5757,7 @@ export type UpdateAnnouncementErrors = {
5757
5757
  */
5758
5758
  400: Error400;
5759
5759
  /**
5760
- * Unauthorized (session)
5760
+ * Unauthorized
5761
5761
  */
5762
5762
  401: Error401;
5763
5763
  /**
@@ -5776,7 +5776,7 @@ export type UpdateAnnouncementErrors = {
5776
5776
  export type UpdateAnnouncementError = UpdateAnnouncementErrors[keyof UpdateAnnouncementErrors];
5777
5777
  export type UpdateAnnouncementResponses = {
5778
5778
  /**
5779
- * Announcement updated
5779
+ * OK
5780
5780
  */
5781
5781
  200: {
5782
5782
  message: string;