mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-02-06 00:44:42 +00:00
Rename actor_id columns to ap_id
This commit is contained in:
parent
88b3a4c500
commit
27539cad93
3 changed files with 6 additions and 6 deletions
|
@ -33,9 +33,9 @@ export type Community = {
|
||||||
*/
|
*/
|
||||||
nsfw: boolean;
|
nsfw: boolean;
|
||||||
/**
|
/**
|
||||||
* The federated actor_id.
|
* The federated ap_id.
|
||||||
*/
|
*/
|
||||||
actor_id: DbUrl;
|
ap_id: DbUrl;
|
||||||
/**
|
/**
|
||||||
* Whether the community is local.
|
* Whether the community is local.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -24,9 +24,9 @@ export type Person = {
|
||||||
published: string;
|
published: string;
|
||||||
updated?: string;
|
updated?: string;
|
||||||
/**
|
/**
|
||||||
* The federated actor_id.
|
* The federated ap_id.
|
||||||
*/
|
*/
|
||||||
actor_id: DbUrl;
|
ap_id: DbUrl;
|
||||||
/**
|
/**
|
||||||
* An optional bio, in markdown.
|
* An optional bio, in markdown.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -28,9 +28,9 @@ export type Site = {
|
||||||
*/
|
*/
|
||||||
description?: string;
|
description?: string;
|
||||||
/**
|
/**
|
||||||
* The federated actor_id.
|
* The federated ap_id.
|
||||||
*/
|
*/
|
||||||
actor_id: DbUrl;
|
ap_id: DbUrl;
|
||||||
/**
|
/**
|
||||||
* The time the site was last refreshed.
|
* The time the site was last refreshed.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue