Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename actor_id columns to ap_id #480

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/types/Community.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/types/Person.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/types/Site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down