@wise-old-man/utils 3.1.6 → 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 +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export type MemberActivity = {
|
|
|
22
22
|
type Prisma_Base_GroupSocialLinks = {
|
|
23
23
|
id: number;
|
|
24
24
|
groupId: number;
|
|
25
|
+
website: string | null;
|
|
25
26
|
discord: string | null;
|
|
26
27
|
twitter: string | null;
|
|
27
28
|
youtube: string | null;
|
|
@@ -1815,7 +1816,11 @@ interface CreateGroupPayload {
|
|
|
1815
1816
|
description?: string;
|
|
1816
1817
|
members: Array<GroupMemberFragment>;
|
|
1817
1818
|
}
|
|
1818
|
-
declare type EditGroupPayload = Partial<CreateGroupPayload
|
|
1819
|
+
declare type EditGroupPayload = Partial<CreateGroupPayload> & {
|
|
1820
|
+
bannerImage?: string;
|
|
1821
|
+
profileImage?: string;
|
|
1822
|
+
socialLinks?: Partial<GroupSocialLinks>;
|
|
1823
|
+
};
|
|
1819
1824
|
interface CreateGroupResponse {
|
|
1820
1825
|
group: GroupDetails;
|
|
1821
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",
|