misskey-js 2025.9.0 → 2025.9.1-alpha.0
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/built/autogen/types.d.ts
CHANGED
|
@@ -1552,6 +1552,7 @@ export type components = {
|
|
|
1552
1552
|
imageUrl: string;
|
|
1553
1553
|
memo: string;
|
|
1554
1554
|
dayOfWeek: number;
|
|
1555
|
+
isSensitive: boolean;
|
|
1555
1556
|
};
|
|
1556
1557
|
Announcement: {
|
|
1557
1558
|
id: string;
|
|
@@ -2314,6 +2315,7 @@ export type components = {
|
|
|
2314
2315
|
ratio: number;
|
|
2315
2316
|
imageUrl: string;
|
|
2316
2317
|
dayOfWeek: number;
|
|
2318
|
+
isSensitive?: boolean;
|
|
2317
2319
|
}[];
|
|
2318
2320
|
notesPerOneAd: number;
|
|
2319
2321
|
enableEmail: boolean;
|
|
@@ -2892,7 +2894,9 @@ export interface operations {
|
|
|
2892
2894
|
[name: string]: unknown;
|
|
2893
2895
|
};
|
|
2894
2896
|
content: {
|
|
2895
|
-
'application/json': components['schemas']['MeDetailed']
|
|
2897
|
+
'application/json': components['schemas']['MeDetailed'] & {
|
|
2898
|
+
token: string;
|
|
2899
|
+
};
|
|
2896
2900
|
};
|
|
2897
2901
|
};
|
|
2898
2902
|
400: {
|
|
@@ -3065,6 +3069,7 @@ export interface operations {
|
|
|
3065
3069
|
startsAt: number;
|
|
3066
3070
|
imageUrl: string;
|
|
3067
3071
|
dayOfWeek: number;
|
|
3072
|
+
isSensitive?: boolean;
|
|
3068
3073
|
};
|
|
3069
3074
|
};
|
|
3070
3075
|
};
|
|
@@ -3253,6 +3258,7 @@ export interface operations {
|
|
|
3253
3258
|
expiresAt?: number;
|
|
3254
3259
|
startsAt?: number;
|
|
3255
3260
|
dayOfWeek?: number;
|
|
3261
|
+
isSensitive?: boolean;
|
|
3256
3262
|
};
|
|
3257
3263
|
};
|
|
3258
3264
|
};
|
|
@@ -28665,7 +28671,10 @@ export interface operations {
|
|
|
28665
28671
|
[name: string]: unknown;
|
|
28666
28672
|
};
|
|
28667
28673
|
content: {
|
|
28668
|
-
'application/json': components['schemas']['UserList']
|
|
28674
|
+
'application/json': components['schemas']['UserList'] & {
|
|
28675
|
+
likedCount?: number;
|
|
28676
|
+
isLiked?: boolean;
|
|
28677
|
+
};
|
|
28669
28678
|
};
|
|
28670
28679
|
};
|
|
28671
28680
|
400: {
|