diff --git a/src/types/Community.ts b/src/types/Community.ts index 34faa02..afbd6bf 100644 --- a/src/types/Community.ts +++ b/src/types/Community.ts @@ -33,9 +33,9 @@ export type Community = { */ nsfw: boolean; /** - * The federated actor_id. + * The federated ap_id. */ - actor_id: DbUrl; + ap_id: DbUrl; /** * Whether the community is local. */ diff --git a/src/types/Person.ts b/src/types/Person.ts index 44a8f58..924475e 100644 --- a/src/types/Person.ts +++ b/src/types/Person.ts @@ -24,9 +24,9 @@ export type Person = { published: string; updated?: string; /** - * The federated actor_id. + * The federated ap_id. */ - actor_id: DbUrl; + ap_id: DbUrl; /** * An optional bio, in markdown. */ diff --git a/src/types/Site.ts b/src/types/Site.ts index c0b86d7..afd2ca7 100644 --- a/src/types/Site.ts +++ b/src/types/Site.ts @@ -28,9 +28,9 @@ export type Site = { */ description?: string; /** - * The federated actor_id. + * The federated ap_id. */ - actor_id: DbUrl; + ap_id: DbUrl; /** * The time the site was last refreshed. */