@connectedxm/client 2.3.9 → 2.3.10

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.cts CHANGED
@@ -186,6 +186,7 @@ interface Self extends Omit<Account, "_count"> {
186
186
  shareCode: string;
187
187
  chatToken?: string;
188
188
  locale: string;
189
+ termsAccepted: string | null;
189
190
  _count: {
190
191
  chatChannels: number;
191
192
  notifications: number;
@@ -4778,6 +4779,7 @@ interface UpdateSelfParams extends MutationParams {
4778
4779
  video?: string | null;
4779
4780
  website?: string | null;
4780
4781
  locale?: string | null;
4782
+ termsAccepted?: boolean;
4781
4783
  }
4782
4784
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
4783
4785
  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
@@ -186,6 +186,7 @@ interface Self extends Omit<Account, "_count"> {
186
186
  shareCode: string;
187
187
  chatToken?: string;
188
188
  locale: string;
189
+ termsAccepted: string | null;
189
190
  _count: {
190
191
  chatChannels: number;
191
192
  notifications: number;
@@ -4778,6 +4779,7 @@ interface UpdateSelfParams extends MutationParams {
4778
4779
  video?: string | null;
4779
4780
  website?: string | null;
4780
4781
  locale?: string | null;
4782
+ termsAccepted?: boolean;
4781
4783
  }
4782
4784
  declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
4783
4785
  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": "2.3.9",
3
+ "version": "2.3.10",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",