2
2
/* eslint @typescript-eslint/no-explicit-any: 0 */
3
3
4
4
/*
5
- * version: 2023.12.1
6
- * generatedAt: 2023-12-27T13:38:13.340Z
5
+ * version: 2023.12.2-kinel. 1
6
+ * generatedAt: 2024-02-15T16:11:40.091Z
7
7
*/
8
8
9
9
/**
@@ -17,6 +17,15 @@ type XOR<T, U> = (T | U) extends object ? (Without<T, U> & U) | (Without<U, T> &
17
17
type OneOf<T extends any[]> = T extends [infer Only] ? Only : T extends [infer A, infer B, ...infer Rest] ? OneOf<[XOR<A, B>, ...Rest]> : never;
18
18
19
19
export type paths = {
20
+ '/admin/nirila-delete-user-log-access': {
21
+ /**
22
+ * admin/nirila-delete-user-log-access
23
+ * @description No description provided.
24
+ *
25
+ * **Credential required**: *Yes* / **Permission**: *read:admin:nirila-delete-user-log-access*
26
+ */
27
+ post: operations['admin/nirila-delete-user-log-access'];
28
+ };
20
29
'/admin/meta': {
21
30
/**
22
31
* admin/meta
@@ -4391,6 +4400,68 @@ export type external = Record<string, never>;
4391
4400
4392
4401
export type operations = {
4393
4402
4403
+ /**
4404
+ * admin/nirila-delete-user-log-access
4405
+ * @description No description provided.
4406
+ *
4407
+ * **Credential required**: *Yes* / **Permission**: *read:admin:nirila-delete-user-log-access*
4408
+ */
4409
+ 'admin/nirila-delete-user-log-access': {
4410
+ requestBody: {
4411
+ content: {
4412
+ 'application/json': {
4413
+ /** @default 10 */
4414
+ limit?: number;
4415
+ /** Format: misskey:id */
4416
+ sinceId?: string;
4417
+ /** Format: misskey:id */
4418
+ untilId?: string;
4419
+ email?: string;
4420
+ username?: string;
4421
+ /** Format: misskey:id */
4422
+ userId?: string;
4423
+ };
4424
+ };
4425
+ };
4426
+ responses: {
4427
+ /** @description OK (with results) */
4428
+ 200: {
4429
+ content: {
4430
+ 'application/json': Record<string, never> | Record<string, never>[];
4431
+ };
4432
+ };
4433
+ /** @description Client error */
4434
+ 400: {
4435
+ content: {
4436
+ 'application/json': components['schemas']['Error'];
4437
+ };
4438
+ };
4439
+ /** @description Authentication error */
4440
+ 401: {
4441
+ content: {
4442
+ 'application/json': components['schemas']['Error'];
4443
+ };
4444
+ };
4445
+ /** @description Forbidden error */
4446
+ 403: {
4447
+ content: {
4448
+ 'application/json': components['schemas']['Error'];
4449
+ };
4450
+ };
4451
+ /** @description I'm Ai */
4452
+ 418: {
4453
+ content: {
4454
+ 'application/json': components['schemas']['Error'];
4455
+ };
4456
+ };
4457
+ /** @description Internal server error */
4458
+ 500: {
4459
+ content: {
4460
+ 'application/json': components['schemas']['Error'];
4461
+ };
4462
+ };
4463
+ };
4464
+ };
4394
4465
/**
4395
4466
* admin/meta
4396
4467
* @description No description provided.
0 commit comments