@connectedxm/client 0.1.9 → 0.1.24
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +139 -395
- package/dist/index.mjs +139 -395
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -919,6 +919,10 @@ interface NotificationPreferences {
|
|
|
919
919
|
chatPush: boolean;
|
|
920
920
|
chatUnreadPush: boolean;
|
|
921
921
|
chatUnreadEmail: boolean;
|
|
922
|
+
organizationAnnouncementEmail: boolean;
|
|
923
|
+
organizationAnnouncementPush: boolean;
|
|
924
|
+
communityAnnouncementEmail: boolean;
|
|
925
|
+
communityAnnouncementPush: boolean;
|
|
922
926
|
eventAnnouncementEmail: boolean;
|
|
923
927
|
eventAnnouncementPush: boolean;
|
|
924
928
|
}
|
|
@@ -2238,7 +2242,6 @@ declare const CancelSubscription: ({ subscriptionId, clientApiParams, queryClien
|
|
|
2238
2242
|
declare const useCancelSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2239
2243
|
|
|
2240
2244
|
interface CreateSubscriptionParams extends MutationParams {
|
|
2241
|
-
subscriptionId: string;
|
|
2242
2245
|
productId: string;
|
|
2243
2246
|
priceId: string;
|
|
2244
2247
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -919,6 +919,10 @@ interface NotificationPreferences {
|
|
|
919
919
|
chatPush: boolean;
|
|
920
920
|
chatUnreadPush: boolean;
|
|
921
921
|
chatUnreadEmail: boolean;
|
|
922
|
+
organizationAnnouncementEmail: boolean;
|
|
923
|
+
organizationAnnouncementPush: boolean;
|
|
924
|
+
communityAnnouncementEmail: boolean;
|
|
925
|
+
communityAnnouncementPush: boolean;
|
|
922
926
|
eventAnnouncementEmail: boolean;
|
|
923
927
|
eventAnnouncementPush: boolean;
|
|
924
928
|
}
|
|
@@ -2238,7 +2242,6 @@ declare const CancelSubscription: ({ subscriptionId, clientApiParams, queryClien
|
|
|
2238
2242
|
declare const useCancelSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2239
2243
|
|
|
2240
2244
|
interface CreateSubscriptionParams extends MutationParams {
|
|
2241
|
-
subscriptionId: string;
|
|
2242
2245
|
productId: string;
|
|
2243
2246
|
priceId: string;
|
|
2244
2247
|
}
|