@connectedxm/client 1.6.2 → 1.6.4

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.mts CHANGED
@@ -158,7 +158,7 @@ interface Account extends BaseAccount {
158
158
  discord: string | null;
159
159
  video: string | null;
160
160
  timezone: string | null;
161
- blockedByAccounts: {
161
+ blockedByAccounts?: {
162
162
  id: string;
163
163
  createdAt: string;
164
164
  }[];
@@ -231,7 +231,7 @@ interface Activity extends BaseActivity {
231
231
  reshares?: {
232
232
  id: string;
233
233
  }[];
234
- reports: {
234
+ reports?: {
235
235
  id: string;
236
236
  createdAt: string;
237
237
  }[];
@@ -4582,6 +4582,7 @@ interface UpdateSelfParams extends MutationParams {
4582
4582
  discord?: string | null;
4583
4583
  video?: string | null;
4584
4584
  website?: string | null;
4585
+ locale?: string | null;
4585
4586
  }
4586
4587
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
4587
4588
  declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
package/dist/index.d.ts CHANGED
@@ -158,7 +158,7 @@ interface Account extends BaseAccount {
158
158
  discord: string | null;
159
159
  video: string | null;
160
160
  timezone: string | null;
161
- blockedByAccounts: {
161
+ blockedByAccounts?: {
162
162
  id: string;
163
163
  createdAt: string;
164
164
  }[];
@@ -231,7 +231,7 @@ interface Activity extends BaseActivity {
231
231
  reshares?: {
232
232
  id: string;
233
233
  }[];
234
- reports: {
234
+ reports?: {
235
235
  id: string;
236
236
  createdAt: string;
237
237
  }[];
@@ -4582,6 +4582,7 @@ interface UpdateSelfParams extends MutationParams {
4582
4582
  discord?: string | null;
4583
4583
  video?: string | null;
4584
4584
  website?: string | null;
4585
+ locale?: string | null;
4585
4586
  }
4586
4587
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
4587
4588
  declare const useUpdateSelf: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {