misskey-js 2025.4.1-rc.0 → 2025.5.0-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
|
@@ -1997,7 +1997,7 @@ export type components = {
|
|
|
1997
1997
|
followersCount: number;
|
|
1998
1998
|
isNotResponding: boolean;
|
|
1999
1999
|
isSuspended: boolean;
|
|
2000
|
-
suspensionState: 'none' | 'manuallySuspended' | 'goneSuspended' | 'autoSuspendedForNotResponding';
|
|
2000
|
+
suspensionState: 'none' | 'manuallySuspended' | 'goneSuspended' | 'autoSuspendedForNotResponding' | 'softwareSuspended';
|
|
2001
2001
|
isBlocked: boolean;
|
|
2002
2002
|
softwareName: string | null;
|
|
2003
2003
|
softwareVersion: string | null;
|
|
@@ -4846,6 +4846,10 @@ export type operations = {
|
|
|
4846
4846
|
urlPreviewSummaryProxyUrl: string | null;
|
|
4847
4847
|
federation: 'all' | 'specified' | 'none';
|
|
4848
4848
|
federationHosts: string[];
|
|
4849
|
+
deliverSuspendedSoftware: {
|
|
4850
|
+
software: string;
|
|
4851
|
+
versionRange: string;
|
|
4852
|
+
}[];
|
|
4849
4853
|
};
|
|
4850
4854
|
};
|
|
4851
4855
|
};
|
|
@@ -6906,6 +6910,10 @@ export type operations = {
|
|
|
6906
6910
|
urlPreviewSummaryProxyUrl?: string | null;
|
|
6907
6911
|
federation?: 'all' | 'none' | 'specified';
|
|
6908
6912
|
federationHosts?: string[];
|
|
6913
|
+
deliverSuspendedSoftware?: {
|
|
6914
|
+
software: string;
|
|
6915
|
+
versionRange: string;
|
|
6916
|
+
}[];
|
|
6909
6917
|
};
|
|
6910
6918
|
};
|
|
6911
6919
|
};
|