@well-played.gg/react-sdk 2.0.7 → 2.1.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -111,7 +111,7 @@ export declare const useConnectedPlayer: () => {
111
111
  username: string;
112
112
  customFields: {
113
113
  property: string;
114
- value: string;
114
+ value: string | null;
115
115
  }[];
116
116
  }[];
117
117
  identities: {
@@ -135,7 +135,7 @@ export declare const useConnectedPlayer: () => {
135
135
  username: string;
136
136
  customFields: {
137
137
  property: string;
138
- value: string;
138
+ value: string | null;
139
139
  }[];
140
140
  }[];
141
141
  identities: {
@@ -192,7 +192,7 @@ export declare const usePlayers: ({ playerIds, skip, }: {
192
192
  ownerId: string | null;
193
193
  customFields: {
194
194
  property: string;
195
- value: string;
195
+ value: string | null;
196
196
  }[];
197
197
  identities: {
198
198
  providerId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@well-played.gg/react-sdk",
3
- "version": "2.0.7",
3
+ "version": "2.1.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/wp-react-sdk.cjs.js",
6
6
  "module": "dist/wp-react-sdk.es.js",