diff --git a/package.json b/package.json index 0c4b9fab..b4c6a350 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "lemmy-js-client", "description": "A javascript / typescript client for Lemmy", - "version": "0.20.0-search-combined.1", + "version": "0.20.0-ap-id.1", "author": "Dessalines", "license": "AGPL-3.0", "main": "./dist/index.js", diff --git a/src/types/Community.ts b/src/types/Community.ts index 34faa02c..afbd6bf3 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 44a8f583..924475e2 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 c0b86d74..afd2ca74 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. */