@brigadasos/nadeshiko-sdk 1.5.1-dev.e889ab8 → 2.0.0-dev.1607304

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.
@@ -160,6 +160,22 @@ export type Token = {
160
160
  * Primary part-of-speech tag
161
161
  */
162
162
  p: string;
163
+ /**
164
+ * POS subtype 1 (UniDic pos[1])
165
+ */
166
+ p1?: string;
167
+ /**
168
+ * POS subtype 2 (UniDic pos[2])
169
+ */
170
+ p2?: string;
171
+ /**
172
+ * Conjugation type (UniDic pos[4])
173
+ */
174
+ p4?: string;
175
+ /**
176
+ * Conjugation form (UniDic pos[5])
177
+ */
178
+ cf?: string;
163
179
  };
164
180
  /**
165
181
  * Segment with content, optional highlights, and media URLs
@@ -493,7 +509,7 @@ export type Error401 = {
493
509
  /**
494
510
  * Specific error code for programmatic handling
495
511
  */
496
- code: 'AUTH_CREDENTIALS_REQUIRED' | 'AUTH_CREDENTIALS_INVALID' | 'AUTH_CREDENTIALS_EXPIRED' | 'EMAIL_NOT_VERIFIED';
512
+ code: 'AUTH_CREDENTIALS_REQUIRED' | 'AUTH_CREDENTIALS_INVALID' | 'AUTH_CREDENTIALS_EXPIRED';
497
513
  /**
498
514
  * A short, human-readable summary of the problem
499
515
  */
@@ -2135,7 +2151,7 @@ export type SearchErrors = {
2135
2151
  */
2136
2152
  400: Error400;
2137
2153
  /**
2138
- * Unauthorized (API key)
2154
+ * Unauthorized
2139
2155
  */
2140
2156
  401: Error401;
2141
2157
  /**
@@ -2171,7 +2187,7 @@ export type GetSearchStatsErrors = {
2171
2187
  */
2172
2188
  400: Error400;
2173
2189
  /**
2174
- * Unauthorized (API key)
2190
+ * Unauthorized
2175
2191
  */
2176
2192
  401: Error401;
2177
2193
  /**
@@ -2207,7 +2223,7 @@ export type SearchWordsErrors = {
2207
2223
  */
2208
2224
  400: Error400;
2209
2225
  /**
2210
- * Unauthorized (API key)
2226
+ * Unauthorized
2211
2227
  */
2212
2228
  401: Error401;
2213
2229
  /**
@@ -2264,7 +2280,7 @@ export type ListMediaErrors = {
2264
2280
  */
2265
2281
  400: Error400;
2266
2282
  /**
2267
- * Unauthorized (API key)
2283
+ * Unauthorized
2268
2284
  */
2269
2285
  401: Error401;
2270
2286
  /**
@@ -2300,7 +2316,7 @@ export type CreateMediaErrors = {
2300
2316
  */
2301
2317
  400: Error400;
2302
2318
  /**
2303
- * Unauthorized (API key)
2319
+ * Unauthorized
2304
2320
  */
2305
2321
  401: Error401;
2306
2322
  /**
@@ -2353,7 +2369,7 @@ export type AutocompleteMediaErrors = {
2353
2369
  */
2354
2370
  400: Error400;
2355
2371
  /**
2356
- * Unauthorized (API key)
2372
+ * Unauthorized
2357
2373
  */
2358
2374
  401: Error401;
2359
2375
  /**
@@ -2381,7 +2397,7 @@ export type GetSegmentByUuidData = {
2381
2397
  body?: never;
2382
2398
  path: {
2383
2399
  /**
2384
- * Segment UUID or publicId
2400
+ * Segment publicId
2385
2401
  */
2386
2402
  uuid: string;
2387
2403
  };
@@ -2399,7 +2415,7 @@ export type GetSegmentByUuidErrors = {
2399
2415
  */
2400
2416
  400: Error400;
2401
2417
  /**
2402
- * Unauthorized (API key or session)
2418
+ * Unauthorized
2403
2419
  */
2404
2420
  401: Error401;
2405
2421
  /**
@@ -2422,7 +2438,7 @@ export type GetSegmentByUuidErrors = {
2422
2438
  export type GetSegmentByUuidError = GetSegmentByUuidErrors[keyof GetSegmentByUuidErrors];
2423
2439
  export type GetSegmentByUuidResponses = {
2424
2440
  /**
2425
- * Single segment response with internal fields
2441
+ * OK
2426
2442
  */
2427
2443
  200: SegmentInternal;
2428
2444
  };
@@ -2431,7 +2447,7 @@ export type UpdateSegmentByUuidData = {
2431
2447
  body: SegmentUpdateRequest;
2432
2448
  path: {
2433
2449
  /**
2434
- * Segment UUID or publicId
2450
+ * Segment publicId
2435
2451
  */
2436
2452
  uuid: string;
2437
2453
  };
@@ -2444,7 +2460,7 @@ export type UpdateSegmentByUuidErrors = {
2444
2460
  */
2445
2461
  400: Error400;
2446
2462
  /**
2447
- * Unauthorized (API key or session)
2463
+ * Unauthorized
2448
2464
  */
2449
2465
  401: Error401;
2450
2466
  /**
@@ -2467,7 +2483,7 @@ export type UpdateSegmentByUuidErrors = {
2467
2483
  export type UpdateSegmentByUuidError = UpdateSegmentByUuidErrors[keyof UpdateSegmentByUuidErrors];
2468
2484
  export type UpdateSegmentByUuidResponses = {
2469
2485
  /**
2470
- * Single segment response with internal fields
2486
+ * OK
2471
2487
  */
2472
2488
  200: SegmentInternal;
2473
2489
  };
@@ -2476,7 +2492,7 @@ export type GetSegmentContextData = {
2476
2492
  body?: never;
2477
2493
  path: {
2478
2494
  /**
2479
- * Segment UUID or publicId
2495
+ * Segment publicId
2480
2496
  */
2481
2497
  uuid: string;
2482
2498
  };
@@ -2498,7 +2514,7 @@ export type GetSegmentContextErrors = {
2498
2514
  */
2499
2515
  400: Error400;
2500
2516
  /**
2501
- * Unauthorized (API key or session)
2517
+ * Unauthorized
2502
2518
  */
2503
2519
  401: Error401;
2504
2520
  /**
@@ -2530,7 +2546,7 @@ export type ListSegmentRevisionsData = {
2530
2546
  body?: never;
2531
2547
  path: {
2532
2548
  /**
2533
- * Segment UUID or publicId
2549
+ * Segment publicId
2534
2550
  */
2535
2551
  uuid: string;
2536
2552
  };
@@ -2543,7 +2559,7 @@ export type ListSegmentRevisionsErrors = {
2543
2559
  */
2544
2560
  400: Error400;
2545
2561
  /**
2546
- * Unauthorized (API key or session)
2562
+ * Unauthorized
2547
2563
  */
2548
2564
  401: Error401;
2549
2565
  /**
@@ -2566,7 +2582,7 @@ export type ListSegmentRevisionsErrors = {
2566
2582
  export type ListSegmentRevisionsError = ListSegmentRevisionsErrors[keyof ListSegmentRevisionsErrors];
2567
2583
  export type ListSegmentRevisionsResponses = {
2568
2584
  /**
2569
- * List of segment revisions
2585
+ * OK
2570
2586
  */
2571
2587
  200: {
2572
2588
  revisions: Array<SegmentRevision>;
@@ -2598,7 +2614,7 @@ export type ListSeriesErrors = {
2598
2614
  */
2599
2615
  400: Error400;
2600
2616
  /**
2601
- * Unauthorized (API key)
2617
+ * Unauthorized
2602
2618
  */
2603
2619
  401: Error401;
2604
2620
  /**
@@ -2647,7 +2663,7 @@ export type CreateSeriesErrors = {
2647
2663
  */
2648
2664
  400: Error400;
2649
2665
  /**
2650
- * Unauthorized (API key)
2666
+ * Unauthorized
2651
2667
  */
2652
2668
  401: Error401;
2653
2669
  /**
@@ -2688,7 +2704,7 @@ export type DeleteSeriesErrors = {
2688
2704
  */
2689
2705
  400: Error400;
2690
2706
  /**
2691
- * Unauthorized (API key)
2707
+ * Unauthorized
2692
2708
  */
2693
2709
  401: Error401;
2694
2710
  /**
@@ -2738,7 +2754,7 @@ export type GetSeriesErrors = {
2738
2754
  */
2739
2755
  400: Error400;
2740
2756
  /**
2741
- * Unauthorized (API key)
2757
+ * Unauthorized
2742
2758
  */
2743
2759
  401: Error401;
2744
2760
  /**
@@ -2796,7 +2812,7 @@ export type UpdateSeriesErrors = {
2796
2812
  */
2797
2813
  400: Error400;
2798
2814
  /**
2799
- * Unauthorized (API key)
2815
+ * Unauthorized
2800
2816
  */
2801
2817
  401: Error401;
2802
2818
  /**
@@ -2850,7 +2866,7 @@ export type AddMediaToSeriesErrors = {
2850
2866
  */
2851
2867
  400: Error400;
2852
2868
  /**
2853
- * Unauthorized (API key)
2869
+ * Unauthorized
2854
2870
  */
2855
2871
  401: Error401;
2856
2872
  /**
@@ -2899,7 +2915,7 @@ export type RemoveMediaFromSeriesErrors = {
2899
2915
  */
2900
2916
  400: Error400;
2901
2917
  /**
2902
- * Unauthorized (API key)
2918
+ * Unauthorized
2903
2919
  */
2904
2920
  401: Error401;
2905
2921
  /**
@@ -2953,7 +2969,7 @@ export type UpdateSeriesMediaErrors = {
2953
2969
  */
2954
2970
  400: Error400;
2955
2971
  /**
2956
- * Unauthorized (API key)
2972
+ * Unauthorized
2957
2973
  */
2958
2974
  401: Error401;
2959
2975
  /**
@@ -2998,7 +3014,7 @@ export type GetCharacterErrors = {
2998
3014
  */
2999
3015
  400: Error400;
3000
3016
  /**
3001
- * Unauthorized (API key)
3017
+ * Unauthorized
3002
3018
  */
3003
3019
  401: Error401;
3004
3020
  /**
@@ -3043,7 +3059,7 @@ export type GetSeiyuuErrors = {
3043
3059
  */
3044
3060
  400: Error400;
3045
3061
  /**
3046
- * Unauthorized (API key)
3062
+ * Unauthorized
3047
3063
  */
3048
3064
  401: Error401;
3049
3065
  /**
@@ -3088,7 +3104,7 @@ export type DeleteMediaErrors = {
3088
3104
  */
3089
3105
  400: Error400;
3090
3106
  /**
3091
- * Unauthorized (API key)
3107
+ * Unauthorized
3092
3108
  */
3093
3109
  401: Error401;
3094
3110
  /**
@@ -3138,7 +3154,7 @@ export type GetMediaErrors = {
3138
3154
  */
3139
3155
  400: Error400;
3140
3156
  /**
3141
- * Unauthorized (API key)
3157
+ * Unauthorized
3142
3158
  */
3143
3159
  401: Error401;
3144
3160
  /**
@@ -3183,7 +3199,7 @@ export type UpdateMediaErrors = {
3183
3199
  */
3184
3200
  400: Error400;
3185
3201
  /**
3186
- * Unauthorized (API key)
3202
+ * Unauthorized
3187
3203
  */
3188
3204
  401: Error401;
3189
3205
  /**
@@ -3237,7 +3253,7 @@ export type ListEpisodesErrors = {
3237
3253
  */
3238
3254
  400: Error400;
3239
3255
  /**
3240
- * Unauthorized (API key)
3256
+ * Unauthorized
3241
3257
  */
3242
3258
  401: Error401;
3243
3259
  /**
@@ -3260,7 +3276,7 @@ export type ListEpisodesErrors = {
3260
3276
  export type ListEpisodesError = ListEpisodesErrors[keyof ListEpisodesErrors];
3261
3277
  export type ListEpisodesResponses = {
3262
3278
  /**
3263
- * Paginated list of episodes
3279
+ * OK
3264
3280
  */
3265
3281
  200: EpisodeListResponse;
3266
3282
  };
@@ -3282,7 +3298,7 @@ export type CreateEpisodeErrors = {
3282
3298
  */
3283
3299
  400: Error400;
3284
3300
  /**
3285
- * Unauthorized (API key)
3301
+ * Unauthorized
3286
3302
  */
3287
3303
  401: Error401;
3288
3304
  /**
@@ -3309,7 +3325,7 @@ export type CreateEpisodeErrors = {
3309
3325
  export type CreateEpisodeError = CreateEpisodeErrors[keyof CreateEpisodeErrors];
3310
3326
  export type CreateEpisodeResponses = {
3311
3327
  /**
3312
- * Single episode response
3328
+ * OK
3313
3329
  */
3314
3330
  201: Episode;
3315
3331
  };
@@ -3335,7 +3351,7 @@ export type DeleteEpisodeErrors = {
3335
3351
  */
3336
3352
  400: Error400;
3337
3353
  /**
3338
- * Unauthorized (API key)
3354
+ * Unauthorized
3339
3355
  */
3340
3356
  401: Error401;
3341
3357
  /**
@@ -3358,7 +3374,7 @@ export type DeleteEpisodeErrors = {
3358
3374
  export type DeleteEpisodeError = DeleteEpisodeErrors[keyof DeleteEpisodeErrors];
3359
3375
  export type DeleteEpisodeResponses = {
3360
3376
  /**
3361
- * Episode successfully deleted
3377
+ * No Content
3362
3378
  */
3363
3379
  204: void;
3364
3380
  };
@@ -3384,7 +3400,7 @@ export type GetEpisodeErrors = {
3384
3400
  */
3385
3401
  400: Error400;
3386
3402
  /**
3387
- * Unauthorized (API key)
3403
+ * Unauthorized
3388
3404
  */
3389
3405
  401: Error401;
3390
3406
  /**
@@ -3407,7 +3423,7 @@ export type GetEpisodeErrors = {
3407
3423
  export type GetEpisodeError = GetEpisodeErrors[keyof GetEpisodeErrors];
3408
3424
  export type GetEpisodeResponses = {
3409
3425
  /**
3410
- * Single episode response
3426
+ * OK
3411
3427
  */
3412
3428
  200: Episode;
3413
3429
  };
@@ -3433,7 +3449,7 @@ export type UpdateEpisodeErrors = {
3433
3449
  */
3434
3450
  400: Error400;
3435
3451
  /**
3436
- * Unauthorized (API key)
3452
+ * Unauthorized
3437
3453
  */
3438
3454
  401: Error401;
3439
3455
  /**
@@ -3456,7 +3472,7 @@ export type UpdateEpisodeErrors = {
3456
3472
  export type UpdateEpisodeError = UpdateEpisodeErrors[keyof UpdateEpisodeErrors];
3457
3473
  export type UpdateEpisodeResponses = {
3458
3474
  /**
3459
- * Single episode response
3475
+ * OK
3460
3476
  */
3461
3477
  200: Episode;
3462
3478
  };
@@ -3491,7 +3507,7 @@ export type ListSegmentsErrors = {
3491
3507
  */
3492
3508
  400: Error400;
3493
3509
  /**
3494
- * Unauthorized (API key)
3510
+ * Unauthorized
3495
3511
  */
3496
3512
  401: Error401;
3497
3513
  /**
@@ -3514,7 +3530,7 @@ export type ListSegmentsErrors = {
3514
3530
  export type ListSegmentsError = ListSegmentsErrors[keyof ListSegmentsErrors];
3515
3531
  export type ListSegmentsResponses = {
3516
3532
  /**
3517
- * Paginated segment list response
3533
+ * OK
3518
3534
  */
3519
3535
  200: {
3520
3536
  /**
@@ -3546,7 +3562,7 @@ export type CreateSegmentErrors = {
3546
3562
  */
3547
3563
  400: Error400;
3548
3564
  /**
3549
- * Unauthorized (API key)
3565
+ * Unauthorized
3550
3566
  */
3551
3567
  401: Error401;
3552
3568
  /**
@@ -3573,7 +3589,7 @@ export type CreateSegmentErrors = {
3573
3589
  export type CreateSegmentError = CreateSegmentErrors[keyof CreateSegmentErrors];
3574
3590
  export type CreateSegmentResponses = {
3575
3591
  /**
3576
- * Single segment response with internal fields
3592
+ * OK
3577
3593
  */
3578
3594
  201: SegmentInternal;
3579
3595
  };
@@ -3599,7 +3615,7 @@ export type CreateSegmentsBatchErrors = {
3599
3615
  */
3600
3616
  400: Error400;
3601
3617
  /**
3602
- * Unauthorized (API key)
3618
+ * Unauthorized
3603
3619
  */
3604
3620
  401: Error401;
3605
3621
  /**
@@ -3622,7 +3638,7 @@ export type CreateSegmentsBatchErrors = {
3622
3638
  export type CreateSegmentsBatchError = CreateSegmentsBatchErrors[keyof CreateSegmentsBatchErrors];
3623
3639
  export type CreateSegmentsBatchResponses = {
3624
3640
  /**
3625
- * Batch segment creation result
3641
+ * Created
3626
3642
  */
3627
3643
  201: {
3628
3644
  /**
@@ -3661,7 +3677,7 @@ export type DeleteSegmentErrors = {
3661
3677
  */
3662
3678
  400: Error400;
3663
3679
  /**
3664
- * Unauthorized (API key)
3680
+ * Unauthorized
3665
3681
  */
3666
3682
  401: Error401;
3667
3683
  /**
@@ -3684,7 +3700,7 @@ export type DeleteSegmentErrors = {
3684
3700
  export type DeleteSegmentError = DeleteSegmentErrors[keyof DeleteSegmentErrors];
3685
3701
  export type DeleteSegmentResponses = {
3686
3702
  /**
3687
- * Segment successfully deleted
3703
+ * No Content
3688
3704
  */
3689
3705
  204: void;
3690
3706
  };
@@ -3714,7 +3730,7 @@ export type GetSegmentErrors = {
3714
3730
  */
3715
3731
  400: Error400;
3716
3732
  /**
3717
- * Unauthorized (API key)
3733
+ * Unauthorized
3718
3734
  */
3719
3735
  401: Error401;
3720
3736
  /**
@@ -3737,7 +3753,7 @@ export type GetSegmentErrors = {
3737
3753
  export type GetSegmentError = GetSegmentErrors[keyof GetSegmentErrors];
3738
3754
  export type GetSegmentResponses = {
3739
3755
  /**
3740
- * Single segment response
3756
+ * OK
3741
3757
  */
3742
3758
  200: Segment;
3743
3759
  };
@@ -3767,7 +3783,7 @@ export type UpdateSegmentErrors = {
3767
3783
  */
3768
3784
  400: Error400;
3769
3785
  /**
3770
- * Unauthorized (API key)
3786
+ * Unauthorized
3771
3787
  */
3772
3788
  401: Error401;
3773
3789
  /**
@@ -3790,7 +3806,7 @@ export type UpdateSegmentErrors = {
3790
3806
  export type UpdateSegmentError = UpdateSegmentErrors[keyof UpdateSegmentErrors];
3791
3807
  export type UpdateSegmentResponses = {
3792
3808
  /**
3793
- * Single segment response with internal fields
3809
+ * OK
3794
3810
  */
3795
3811
  200: SegmentInternal;
3796
3812
  };
@@ -3803,7 +3819,7 @@ export type GetUserQuotaData = {
3803
3819
  };
3804
3820
  export type GetUserQuotaErrors = {
3805
3821
  /**
3806
- * Unauthorized (session)
3822
+ * Unauthorized
3807
3823
  */
3808
3824
  401: Error401;
3809
3825
  /**
@@ -3839,7 +3855,7 @@ export type CreateUserReportErrors = {
3839
3855
  */
3840
3856
  400: Error400;
3841
3857
  /**
3842
- * Unauthorized (session)
3858
+ * Unauthorized
3843
3859
  */
3844
3860
  401: Error401;
3845
3861
  /**
@@ -3854,7 +3870,7 @@ export type CreateUserReportErrors = {
3854
3870
  export type CreateUserReportError = CreateUserReportErrors[keyof CreateUserReportErrors];
3855
3871
  export type CreateUserReportResponses = {
3856
3872
  /**
3857
- * Report created successfully
3873
+ * Created
3858
3874
  */
3859
3875
  201: Report;
3860
3876
  };
@@ -3867,7 +3883,7 @@ export type GetUserPreferencesData = {
3867
3883
  };
3868
3884
  export type GetUserPreferencesErrors = {
3869
3885
  /**
3870
- * Unauthorized (session)
3886
+ * Unauthorized
3871
3887
  */
3872
3888
  401: Error401;
3873
3889
  /**
@@ -3891,7 +3907,7 @@ export type UpdateUserPreferencesData = {
3891
3907
  };
3892
3908
  export type UpdateUserPreferencesErrors = {
3893
3909
  /**
3894
- * Unauthorized (session)
3910
+ * Unauthorized
3895
3911
  */
3896
3912
  401: Error401;
3897
3913
  /**
@@ -3920,7 +3936,7 @@ export type DeleteUserActivityData = {
3920
3936
  };
3921
3937
  export type DeleteUserActivityErrors = {
3922
3938
  /**
3923
- * Unauthorized (session)
3939
+ * Unauthorized
3924
3940
  */
3925
3941
  401: Error401;
3926
3942
  /**
@@ -3963,7 +3979,7 @@ export type ListUserActivityData = {
3963
3979
  };
3964
3980
  export type ListUserActivityErrors = {
3965
3981
  /**
3966
- * Unauthorized (session)
3982
+ * Unauthorized
3967
3983
  */
3968
3984
  401: Error401;
3969
3985
  /**
@@ -4001,7 +4017,7 @@ export type TrackUserActivityErrors = {
4001
4017
  */
4002
4018
  400: Error400;
4003
4019
  /**
4004
- * Unauthorized (session)
4020
+ * Unauthorized
4005
4021
  */
4006
4022
  401: Error401;
4007
4023
  /**
@@ -4012,7 +4028,7 @@ export type TrackUserActivityErrors = {
4012
4028
  export type TrackUserActivityError = TrackUserActivityErrors[keyof TrackUserActivityErrors];
4013
4029
  export type TrackUserActivityResponses = {
4014
4030
  /**
4015
- * Activity tracked
4031
+ * No Content
4016
4032
  */
4017
4033
  204: void;
4018
4034
  };
@@ -4030,7 +4046,7 @@ export type GetUserActivityHeatmapData = {
4030
4046
  };
4031
4047
  export type GetUserActivityHeatmapErrors = {
4032
4048
  /**
4033
- * Unauthorized (session)
4049
+ * Unauthorized
4034
4050
  */
4035
4051
  401: Error401;
4036
4052
  /**
@@ -4066,7 +4082,7 @@ export type GetUserActivityStatsData = {
4066
4082
  };
4067
4083
  export type GetUserActivityStatsErrors = {
4068
4084
  /**
4069
- * Unauthorized (session)
4085
+ * Unauthorized
4070
4086
  */
4071
4087
  401: Error401;
4072
4088
  /**
@@ -4105,7 +4121,7 @@ export type DeleteUserActivityByDateData = {
4105
4121
  };
4106
4122
  export type DeleteUserActivityByDateErrors = {
4107
4123
  /**
4108
- * Unauthorized (session)
4124
+ * Unauthorized
4109
4125
  */
4110
4126
  401: Error401;
4111
4127
  /**
@@ -4136,7 +4152,7 @@ export type DeleteUserActivityByIdData = {
4136
4152
  };
4137
4153
  export type DeleteUserActivityByIdErrors = {
4138
4154
  /**
4139
- * Unauthorized (session)
4155
+ * Unauthorized
4140
4156
  */
4141
4157
  401: Error401;
4142
4158
  /**
@@ -4151,7 +4167,7 @@ export type DeleteUserActivityByIdErrors = {
4151
4167
  export type DeleteUserActivityByIdError = DeleteUserActivityByIdErrors[keyof DeleteUserActivityByIdErrors];
4152
4168
  export type DeleteUserActivityByIdResponses = {
4153
4169
  /**
4154
- * Activity deleted
4170
+ * No Content
4155
4171
  */
4156
4172
  204: void;
4157
4173
  };
@@ -4164,7 +4180,7 @@ export type ExportUserDataData = {
4164
4180
  };
4165
4181
  export type ExportUserDataErrors = {
4166
4182
  /**
4167
- * Unauthorized (session)
4183
+ * Unauthorized
4168
4184
  */
4169
4185
  401: Error401;
4170
4186
  /**
@@ -4188,7 +4204,7 @@ export type ListUserLabsData = {
4188
4204
  };
4189
4205
  export type ListUserLabsErrors = {
4190
4206
  /**
4191
- * Unauthorized (session)
4207
+ * Unauthorized
4192
4208
  */
4193
4209
  401: Error401;
4194
4210
  /**
@@ -4217,7 +4233,7 @@ export type UnenrollUserLabData = {
4217
4233
  };
4218
4234
  export type UnenrollUserLabErrors = {
4219
4235
  /**
4220
- * Unauthorized (session)
4236
+ * Unauthorized
4221
4237
  */
4222
4238
  401: Error401;
4223
4239
  /**
@@ -4232,7 +4248,7 @@ export type UnenrollUserLabErrors = {
4232
4248
  export type UnenrollUserLabError = UnenrollUserLabErrors[keyof UnenrollUserLabErrors];
4233
4249
  export type UnenrollUserLabResponses = {
4234
4250
  /**
4235
- * Unenrolled successfully
4251
+ * No Content
4236
4252
  */
4237
4253
  204: void;
4238
4254
  };
@@ -4250,7 +4266,7 @@ export type EnrollUserLabData = {
4250
4266
  };
4251
4267
  export type EnrollUserLabErrors = {
4252
4268
  /**
4253
- * Unauthorized (session)
4269
+ * Unauthorized
4254
4270
  */
4255
4271
  401: Error401;
4256
4272
  /**
@@ -4265,7 +4281,7 @@ export type EnrollUserLabErrors = {
4265
4281
  export type EnrollUserLabError = EnrollUserLabErrors[keyof EnrollUserLabErrors];
4266
4282
  export type EnrollUserLabResponses = {
4267
4283
  /**
4268
- * Enrolled successfully
4284
+ * No Content
4269
4285
  */
4270
4286
  204: void;
4271
4287
  };
@@ -4295,7 +4311,7 @@ export type ListCollectionsErrors = {
4295
4311
  */
4296
4312
  400: Error400;
4297
4313
  /**
4298
- * Unauthorized (session)
4314
+ * Unauthorized
4299
4315
  */
4300
4316
  401: Error401;
4301
4317
  /**
@@ -4331,7 +4347,7 @@ export type CreateCollectionErrors = {
4331
4347
  */
4332
4348
  400: Error400;
4333
4349
  /**
4334
- * Unauthorized (session)
4350
+ * Unauthorized
4335
4351
  */
4336
4352
  401: Error401;
4337
4353
  /**
@@ -4372,7 +4388,7 @@ export type DeleteCollectionErrors = {
4372
4388
  */
4373
4389
  400: Error400;
4374
4390
  /**
4375
- * Unauthorized (session)
4391
+ * Unauthorized
4376
4392
  */
4377
4393
  401: Error401;
4378
4394
  /**
@@ -4426,7 +4442,7 @@ export type GetCollectionErrors = {
4426
4442
  */
4427
4443
  400: Error400;
4428
4444
  /**
4429
- * Unauthorized (session)
4445
+ * Unauthorized
4430
4446
  */
4431
4447
  401: Error401;
4432
4448
  /**
@@ -4474,7 +4490,7 @@ export type UpdateCollectionErrors = {
4474
4490
  */
4475
4491
  400: Error400;
4476
4492
  /**
4477
- * Unauthorized (session)
4493
+ * Unauthorized
4478
4494
  */
4479
4495
  401: Error401;
4480
4496
  /**
@@ -4528,7 +4544,7 @@ export type AddSegmentToCollectionErrors = {
4528
4544
  */
4529
4545
  400: Error400;
4530
4546
  /**
4531
- * Unauthorized (session)
4547
+ * Unauthorized
4532
4548
  */
4533
4549
  401: Error401;
4534
4550
  /**
@@ -4577,7 +4593,7 @@ export type RemoveSegmentFromCollectionErrors = {
4577
4593
  */
4578
4594
  400: Error400;
4579
4595
  /**
4580
- * Unauthorized (session)
4596
+ * Unauthorized
4581
4597
  */
4582
4598
  401: Error401;
4583
4599
  /**
@@ -4635,7 +4651,7 @@ export type UpdateCollectionSegmentErrors = {
4635
4651
  */
4636
4652
  400: Error400;
4637
4653
  /**
4638
- * Unauthorized (session)
4654
+ * Unauthorized
4639
4655
  */
4640
4656
  401: Error401;
4641
4657
  /**
@@ -4689,7 +4705,7 @@ export type SearchCollectionSegmentsErrors = {
4689
4705
  */
4690
4706
  400: Error400;
4691
4707
  /**
4692
- * Unauthorized (session)
4708
+ * Unauthorized
4693
4709
  */
4694
4710
  401: Error401;
4695
4711
  /**
@@ -4734,7 +4750,7 @@ export type GetCollectionStatsErrors = {
4734
4750
  */
4735
4751
  400: Error400;
4736
4752
  /**
4737
- * Unauthorized (session)
4753
+ * Unauthorized
4738
4754
  */
4739
4755
  401: Error401;
4740
4756
  /**
@@ -4770,7 +4786,7 @@ export type GetAdminDashboardData = {
4770
4786
  };
4771
4787
  export type GetAdminDashboardErrors = {
4772
4788
  /**
4773
- * Unauthorized (session)
4789
+ * Unauthorized
4774
4790
  */
4775
4791
  401: Error401;
4776
4792
  /**
@@ -4862,7 +4878,7 @@ export type GetAdminHealthData = {
4862
4878
  };
4863
4879
  export type GetAdminHealthErrors = {
4864
4880
  /**
4865
- * Unauthorized (session)
4881
+ * Unauthorized
4866
4882
  */
4867
4883
  401: Error401;
4868
4884
  /**
@@ -4924,7 +4940,7 @@ export type TriggerReindexErrors = {
4924
4940
  */
4925
4941
  400: Error400;
4926
4942
  /**
4927
- * Unauthorized (session)
4943
+ * Unauthorized
4928
4944
  */
4929
4945
  401: Error401;
4930
4946
  /**
@@ -4943,7 +4959,7 @@ export type TriggerReindexErrors = {
4943
4959
  export type TriggerReindexError = TriggerReindexErrors[keyof TriggerReindexErrors];
4944
4960
  export type TriggerReindexResponses = {
4945
4961
  /**
4946
- * Reindex operation completed
4962
+ * OK
4947
4963
  */
4948
4964
  200: ReindexResponse;
4949
4965
  };
@@ -4960,7 +4976,7 @@ export type ListAdminQueueStatsErrors = {
4960
4976
  */
4961
4977
  400: Error400;
4962
4978
  /**
4963
- * Unauthorized (session)
4979
+ * Unauthorized
4964
4980
  */
4965
4981
  401: Error401;
4966
4982
  /**
@@ -4979,7 +4995,7 @@ export type ListAdminQueueStatsErrors = {
4979
4995
  export type ListAdminQueueStatsError = ListAdminQueueStatsErrors[keyof ListAdminQueueStatsErrors];
4980
4996
  export type ListAdminQueueStatsResponses = {
4981
4997
  /**
4982
- * Queue statistics retrieved successfully
4998
+ * OK
4983
4999
  */
4984
5000
  200: Array<{
4985
5001
  queue: string;
@@ -5011,7 +5027,7 @@ export type GetAdminQueueErrors = {
5011
5027
  */
5012
5028
  400: Error400;
5013
5029
  /**
5014
- * Unauthorized (session)
5030
+ * Unauthorized
5015
5031
  */
5016
5032
  401: Error401;
5017
5033
  /**
@@ -5034,7 +5050,7 @@ export type GetAdminQueueErrors = {
5034
5050
  export type GetAdminQueueError = GetAdminQueueErrors[keyof GetAdminQueueErrors];
5035
5051
  export type GetAdminQueueResponses = {
5036
5052
  /**
5037
- * Queue details retrieved successfully
5053
+ * OK
5038
5054
  */
5039
5055
  200: {
5040
5056
  queue: string;
@@ -5096,7 +5112,7 @@ export type ListAdminQueueFailedErrors = {
5096
5112
  */
5097
5113
  400: Error400;
5098
5114
  /**
5099
- * Unauthorized (session)
5115
+ * Unauthorized
5100
5116
  */
5101
5117
  401: Error401;
5102
5118
  /**
@@ -5115,7 +5131,7 @@ export type ListAdminQueueFailedErrors = {
5115
5131
  export type ListAdminQueueFailedError = ListAdminQueueFailedErrors[keyof ListAdminQueueFailedErrors];
5116
5132
  export type ListAdminQueueFailedResponses = {
5117
5133
  /**
5118
- * Failed jobs retrieved successfully
5134
+ * OK
5119
5135
  */
5120
5136
  200: Array<{
5121
5137
  /**
@@ -5154,7 +5170,7 @@ export type RetryAdminQueueFailedErrors = {
5154
5170
  */
5155
5171
  400: Error400;
5156
5172
  /**
5157
- * Unauthorized (session)
5173
+ * Unauthorized
5158
5174
  */
5159
5175
  401: Error401;
5160
5176
  /**
@@ -5173,7 +5189,7 @@ export type RetryAdminQueueFailedErrors = {
5173
5189
  export type RetryAdminQueueFailedError = RetryAdminQueueFailedErrors[keyof RetryAdminQueueFailedErrors];
5174
5190
  export type RetryAdminQueueFailedResponses = {
5175
5191
  /**
5176
- * Jobs queued for retry
5192
+ * OK
5177
5193
  */
5178
5194
  200: {
5179
5195
  success: boolean;
@@ -5202,7 +5218,7 @@ export type PurgeAdminQueueFailedErrors = {
5202
5218
  */
5203
5219
  400: Error400;
5204
5220
  /**
5205
- * Unauthorized (session)
5221
+ * Unauthorized
5206
5222
  */
5207
5223
  401: Error401;
5208
5224
  /**
@@ -5221,7 +5237,7 @@ export type PurgeAdminQueueFailedErrors = {
5221
5237
  export type PurgeAdminQueueFailedError = PurgeAdminQueueFailedErrors[keyof PurgeAdminQueueFailedErrors];
5222
5238
  export type PurgeAdminQueueFailedResponses = {
5223
5239
  /**
5224
- * Failed jobs purged successfully
5240
+ * OK
5225
5241
  */
5226
5242
  200: {
5227
5243
  success: boolean;
@@ -5256,7 +5272,7 @@ export type ClearAdminImpersonationErrors = {
5256
5272
  export type ClearAdminImpersonationError = ClearAdminImpersonationErrors[keyof ClearAdminImpersonationErrors];
5257
5273
  export type ClearAdminImpersonationResponses = {
5258
5274
  /**
5259
- * Impersonation session cleared
5275
+ * OK
5260
5276
  */
5261
5277
  200: {
5262
5278
  message: string;
@@ -5299,7 +5315,7 @@ export type ImpersonateAdminUserErrors = {
5299
5315
  export type ImpersonateAdminUserError = ImpersonateAdminUserErrors[keyof ImpersonateAdminUserErrors];
5300
5316
  export type ImpersonateAdminUserResponses = {
5301
5317
  /**
5302
- * Impersonation session created
5318
+ * OK
5303
5319
  */
5304
5320
  200: {
5305
5321
  message: string;
@@ -5357,7 +5373,7 @@ export type ListAdminReportsData = {
5357
5373
  };
5358
5374
  export type ListAdminReportsErrors = {
5359
5375
  /**
5360
- * Unauthorized (session)
5376
+ * Unauthorized
5361
5377
  */
5362
5378
  401: Error401;
5363
5379
  /**
@@ -5393,7 +5409,7 @@ export type BatchUpdateAdminReportsErrors = {
5393
5409
  */
5394
5410
  400: Error400;
5395
5411
  /**
5396
- * Unauthorized (session)
5412
+ * Unauthorized
5397
5413
  */
5398
5414
  401: Error401;
5399
5415
  /**
@@ -5412,7 +5428,7 @@ export type BatchUpdateAdminReportsErrors = {
5412
5428
  export type BatchUpdateAdminReportsError = BatchUpdateAdminReportsErrors[keyof BatchUpdateAdminReportsErrors];
5413
5429
  export type BatchUpdateAdminReportsResponses = {
5414
5430
  /**
5415
- * Reports updated successfully
5431
+ * OK
5416
5432
  */
5417
5433
  200: {
5418
5434
  /**
@@ -5439,7 +5455,7 @@ export type UpdateAdminReportErrors = {
5439
5455
  */
5440
5456
  400: Error400;
5441
5457
  /**
5442
- * Unauthorized (session)
5458
+ * Unauthorized
5443
5459
  */
5444
5460
  401: Error401;
5445
5461
  /**
@@ -5462,7 +5478,7 @@ export type UpdateAdminReportErrors = {
5462
5478
  export type UpdateAdminReportError = UpdateAdminReportErrors[keyof UpdateAdminReportErrors];
5463
5479
  export type UpdateAdminReportResponses = {
5464
5480
  /**
5465
- * Report updated successfully
5481
+ * OK
5466
5482
  */
5467
5483
  200: Report;
5468
5484
  };
@@ -5475,7 +5491,7 @@ export type ListAdminMediaAuditsData = {
5475
5491
  };
5476
5492
  export type ListAdminMediaAuditsErrors = {
5477
5493
  /**
5478
- * Unauthorized (session)
5494
+ * Unauthorized
5479
5495
  */
5480
5496
  401: Error401;
5481
5497
  /**
@@ -5527,7 +5543,7 @@ export type UpdateAdminMediaAuditErrors = {
5527
5543
  */
5528
5544
  400: Error400;
5529
5545
  /**
5530
- * Unauthorized (session)
5546
+ * Unauthorized
5531
5547
  */
5532
5548
  401: Error401;
5533
5549
  /**
@@ -5550,7 +5566,7 @@ export type UpdateAdminMediaAuditErrors = {
5550
5566
  export type UpdateAdminMediaAuditError = UpdateAdminMediaAuditErrors[keyof UpdateAdminMediaAuditErrors];
5551
5567
  export type UpdateAdminMediaAuditResponses = {
5552
5568
  /**
5553
- * Audit updated successfully
5569
+ * OK
5554
5570
  */
5555
5571
  200: MediaAudit;
5556
5572
  };
@@ -5573,7 +5589,7 @@ export type RunAdminMediaAuditData = {
5573
5589
  };
5574
5590
  export type RunAdminMediaAuditErrors = {
5575
5591
  /**
5576
- * Unauthorized (session)
5592
+ * Unauthorized
5577
5593
  */
5578
5594
  401: Error401;
5579
5595
  /**
@@ -5596,7 +5612,7 @@ export type RunAdminMediaAuditErrors = {
5596
5612
  export type RunAdminMediaAuditError = RunAdminMediaAuditErrors[keyof RunAdminMediaAuditErrors];
5597
5613
  export type RunAdminMediaAuditResponses = {
5598
5614
  /**
5599
- * Audit run completed
5615
+ * OK
5600
5616
  */
5601
5617
  200: RunAuditResponse;
5602
5618
  };
@@ -5622,7 +5638,7 @@ export type ListAdminMediaAuditRunsData = {
5622
5638
  };
5623
5639
  export type ListAdminMediaAuditRunsErrors = {
5624
5640
  /**
5625
- * Unauthorized (session)
5641
+ * Unauthorized
5626
5642
  */
5627
5643
  401: Error401;
5628
5644
  /**
@@ -5662,7 +5678,7 @@ export type GetAdminMediaAuditRunData = {
5662
5678
  };
5663
5679
  export type GetAdminMediaAuditRunErrors = {
5664
5680
  /**
5665
- * Unauthorized (session)
5681
+ * Unauthorized
5666
5682
  */
5667
5683
  401: Error401;
5668
5684
  /**
@@ -5741,7 +5757,7 @@ export type UpdateAnnouncementErrors = {
5741
5757
  */
5742
5758
  400: Error400;
5743
5759
  /**
5744
- * Unauthorized (session)
5760
+ * Unauthorized
5745
5761
  */
5746
5762
  401: Error401;
5747
5763
  /**
@@ -5760,7 +5776,7 @@ export type UpdateAnnouncementErrors = {
5760
5776
  export type UpdateAnnouncementError = UpdateAnnouncementErrors[keyof UpdateAnnouncementErrors];
5761
5777
  export type UpdateAnnouncementResponses = {
5762
5778
  /**
5763
- * Announcement updated
5779
+ * OK
5764
5780
  */
5765
5781
  200: {
5766
5782
  message: string;