lemmy-js-client 1.0.0-rename-timestamp-to-at.0 → 1.0.0-rename-timestamp-to-at.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http.d.ts +2 -1
- package/package.json +1 -1
package/dist/http.d.ts
CHANGED
@@ -140,6 +140,7 @@ import { CommunityIdQuery } from "./types/CommunityIdQuery";
|
|
140
140
|
import { AdminListUsersResponse } from "./types/AdminListUsersResponse";
|
141
141
|
import { ListLoginsResponse } from "./types/ListLoginsResponse";
|
142
142
|
import { ListPersonLikedResponse } from "./types/ListPersonLikedResponse";
|
143
|
+
import { ResolveObjectResponse } from "./types/ResolveObjectResponse";
|
143
144
|
type RequestOptions = Pick<RequestInit, "signal">;
|
144
145
|
/**
|
145
146
|
* Helps build lemmy HTTP requests.
|
@@ -238,7 +239,7 @@ export declare class LemmyHttp extends Controller {
|
|
238
239
|
/**
|
239
240
|
* @summary Fetch a non-local / federated object.
|
240
241
|
*/
|
241
|
-
resolveObject(form: ResolveObjectI, options?: RequestOptions): Promise<
|
242
|
+
resolveObject(form: ResolveObjectI, options?: RequestOptions): Promise<ResolveObjectResponse>;
|
242
243
|
/**
|
243
244
|
* @summary Create a new community.
|
244
245
|
*/
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
3
|
"description": "A javascript / typescript client for Lemmy",
|
4
|
-
"version": "1.0.0-rename-timestamp-to-at.
|
4
|
+
"version": "1.0.0-rename-timestamp-to-at.2",
|
5
5
|
"author": "Dessalines",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|