Variable followRelationshipUpdateSchemaConst
followRelationshipUpdateSchema: ObjectSchema<
{
follower: ObjectSchema<
{
follower_count: SchemaWithFallback<
NullableSchema<NumberSchema<undefined>, undefined>,
null,
>;
following_count: SchemaWithFallback<
NullableSchema<NumberSchema<undefined>, undefined>,
null,
>;
id: StringSchema<undefined>;
},
undefined,
>;
following: ObjectSchema<
{
follower_count: SchemaWithFallback<
NullableSchema<NumberSchema<undefined>, undefined>,
null,
>;
following_count: SchemaWithFallback<
NullableSchema<NumberSchema<undefined>, undefined>,
null,
>;
id: StringSchema<undefined>;
},
undefined,
>;
state: PicklistSchema<
["follow_pending", "follow_accept", "follow_reject"],
undefined,
>;
},
undefined,
> = ...