2024-01-30 11:53:53 +01:00
|
|
|
export const packedRolePoliciesSchema = {
|
2023-12-06 07:47:57 +01:00
|
|
|
type: 'object',
|
2024-01-30 11:53:53 +01:00
|
|
|
optional: false, nullable: false,
|
2023-12-06 07:47:57 +01:00
|
|
|
properties: {
|
2024-01-30 11:53:53 +01:00
|
|
|
gtlAvailable: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
ltlAvailable: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
canPublicNote: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
canInvite: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
inviteLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
inviteLimitCycle: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
2023-12-06 07:47:57 +01:00
|
|
|
},
|
2024-01-30 11:53:53 +01:00
|
|
|
inviteExpirationTime: {
|
2023-12-06 07:47:57 +01:00
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2024-01-30 11:53:53 +01:00
|
|
|
canManageCustomEmojis: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
canManageAvatarDecorations: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
canSearchNotes: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
canUseTranslator: {
|
2023-12-06 07:47:57 +01:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2024-01-30 11:53:53 +01:00
|
|
|
canHideAds: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
driveCapacityMb: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
alwaysMarkNsfw: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
pinLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
antennaLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
wordMuteLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
webhookLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
clipLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
noteEachClipsLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
userListLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
userEachUserListsLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
rateLimitFactor: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
avatarDecorationLimit: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
2023-12-06 07:47:57 +01:00
|
|
|
},
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const packedRoleLiteSchema = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: 'New Role',
|
|
|
|
},
|
|
|
|
color: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
example: '#000000',
|
|
|
|
},
|
|
|
|
iconUrl: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
isModerator: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
isAdministrator: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
displayOrder: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const packedRoleSchema = {
|
|
|
|
type: 'object',
|
|
|
|
allOf: [
|
|
|
|
{
|
|
|
|
type: 'object',
|
|
|
|
ref: 'RoleLite',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
createdAt: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
updatedAt: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
target: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
enum: ['manual', 'conditional'],
|
|
|
|
},
|
|
|
|
condFormula: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
isPublic: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
isExplorable: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
asBadge: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
canEditMembersByModerator: {
|
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
example: false,
|
|
|
|
},
|
|
|
|
policies: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2024-01-30 11:53:53 +01:00
|
|
|
additionalProperties: {
|
|
|
|
anyOf: [{
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
value: {
|
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
type: 'integer',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'boolean',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
priority: {
|
|
|
|
type: 'integer',
|
|
|
|
},
|
|
|
|
useDefault: {
|
|
|
|
type: 'boolean',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}],
|
2023-12-06 07:47:57 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
usersCount: {
|
|
|
|
type: 'integer',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
} as const;
|