@wise-old-man/utils 3.1.7 → 3.1.8
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/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1816,7 +1816,11 @@ interface CreateGroupPayload {
|
|
|
1816
1816
|
description?: string;
|
|
1817
1817
|
members: Array<GroupMemberFragment>;
|
|
1818
1818
|
}
|
|
1819
|
-
declare type EditGroupPayload = Partial<CreateGroupPayload
|
|
1819
|
+
declare type EditGroupPayload = Partial<CreateGroupPayload> & {
|
|
1820
|
+
bannerImage?: string;
|
|
1821
|
+
profileImage?: string;
|
|
1822
|
+
socialLinks?: Partial<GroupSocialLinks>;
|
|
1823
|
+
};
|
|
1820
1824
|
interface CreateGroupResponse {
|
|
1821
1825
|
group: GroupDetails;
|
|
1822
1826
|
verificationCode: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise-old-man/utils",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.8",
|
|
4
4
|
"description": "A JavaScript/TypeScript client that interfaces and consumes the Wise Old Man API, an API that tracks and measures players' progress in Old School Runescape.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wiseoldman",
|