@connectedxm/client 2.3.9 → 2.3.11
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
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;
|
|
@@ -673,7 +674,7 @@ interface ManagedCouponPass {
|
|
|
673
674
|
id: string;
|
|
674
675
|
status: PurchaseStatus;
|
|
675
676
|
coupon: BaseCoupon;
|
|
676
|
-
|
|
677
|
+
attendee: {
|
|
677
678
|
account: BaseAccount;
|
|
678
679
|
};
|
|
679
680
|
createdAt: string;
|
|
@@ -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;
|
|
@@ -673,7 +674,7 @@ interface ManagedCouponPass {
|
|
|
673
674
|
id: string;
|
|
674
675
|
status: PurchaseStatus;
|
|
675
676
|
coupon: BaseCoupon;
|
|
676
|
-
|
|
677
|
+
attendee: {
|
|
677
678
|
account: BaseAccount;
|
|
678
679
|
};
|
|
679
680
|
createdAt: string;
|
|
@@ -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>;
|