New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@clerk/clerk-react

Package Overview
Dependencies
Maintainers
9
Versions
3039
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clerk/clerk-react - npm Package Compare versions

Comparing version

to
3.3.0-staging.0

dist/contexts/OrganizationContext.d.ts

17

dist/hooks/useOrganization.d.ts

@@ -1,7 +0,16 @@

import { CreateOrganizationInvitationParams, OrganizationResource } from '@clerk/types';
declare type UseOrganization = {
inviteMember: (params: CreateOrganizationInvitationParams) => Promise<OrganizationResource>;
import { CreateOrganizationParams, OrganizationMembershipResource, OrganizationResource } from '@clerk/types';
declare type UseOrganizationsReturn = {
isLoaded: false;
createOrganization: undefined;
getOrganizationMemberships: undefined;
getOrganization: undefined;
} | {
isLoaded: true;
createOrganization: (params: CreateOrganizationParams) => Promise<OrganizationResource>;
getOrganizationMemberships: () => Promise<OrganizationMembershipResource[]>;
getOrganization: (organizationId: string) => Promise<OrganizationResource | undefined>;
};
export declare function useOrganization(organizationId: string): UseOrganization;
declare type UseOrganizations = () => UseOrganizationsReturn;
export declare const useOrganizations: UseOrganizations;
export {};
//# sourceMappingURL=useOrganization.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.useOrganization = void 0;
const react_1 = require("react");
const contexts_1 = require("../contexts");
const assertHelpers_1 = require("../contexts/assertHelpers");
const StructureContext_1 = require("../contexts/StructureContext");
function useOrganization(organizationId) {
const structureCtx = (0, react_1.useContext)(StructureContext_1.StructureContext);
(0, assertHelpers_1.assertWrappedByClerkProvider)(structureCtx);
const clerk = (0, contexts_1.useClerk)();
const IsomorphicClerkContext_1 = require("../contexts/IsomorphicClerkContext");
const useOrganization = () => {
const isomorphicClerk = (0, IsomorphicClerkContext_1.useIsomorphicClerkContext)();
if (!isomorphicClerk.loaded) {
return {
isLoaded: false,
createOrganization: undefined,
getOrganizationMemberships: undefined,
getOrganization: undefined,
};
}
const clerk = isomorphicClerk;
return {
inviteMember: async (params) =>
// @ts-expect-error
await clerk.__unstable_inviteMember(organizationId, params),
isLoaded: true,
organization: clerk.organization,
getOrganizationMemberships: clerk.getOrganizationMemberships,
getOrganization: clerk.getOrganization,
};
}
};
exports.useOrganization = useOrganization;
//# sourceMappingURL=useOrganization.js.map

@@ -1,2 +0,2 @@

import { SessionResource, SetSession } from '@clerk/types';
import { SetActive, SessionResource, SetSession } from '@clerk/types';
declare type UseSessionListReturn = {

@@ -6,2 +6,3 @@ isLoaded: false;

setSession: undefined;
setActive: undefined;
} | {

@@ -11,2 +12,3 @@ isLoaded: true;

setSession: SetSession;
setActive: SetActive;
};

@@ -13,0 +15,0 @@ declare type UseSessionList = () => UseSessionListReturn;

@@ -10,7 +10,12 @@ "use strict";

if (!client) {
return { isLoaded: false, sessions: undefined, setSession: undefined };
return { isLoaded: false, sessions: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, sessions: client.sessions, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
sessions: client.sessions,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};
exports.useSessionList = useSessionList;
//# sourceMappingURL=useSessionList.js.map

@@ -1,2 +0,2 @@

import { SetSession, SignInResource } from '@clerk/types';
import { SetActive, SetSession, SignInResource } from '@clerk/types';
declare type UseSignInReturn = {

@@ -6,2 +6,3 @@ isLoaded: false;

setSession: undefined;
setActive: undefined;
} | {

@@ -11,2 +12,3 @@ isLoaded: true;

setSession: SetSession;
setActive: SetActive;
};

@@ -13,0 +15,0 @@ declare type UseSignIn = () => UseSignInReturn;

@@ -10,7 +10,12 @@ "use strict";

if (!client) {
return { isLoaded: false, signIn: undefined, setSession: undefined };
return { isLoaded: false, signIn: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, signIn: client.signIn, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
signIn: client.signIn,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};
exports.useSignIn = useSignIn;
//# sourceMappingURL=useSignIn.js.map

@@ -1,2 +0,2 @@

import { SetSession, SignUpResource } from '@clerk/types';
import { SetActive, SetSession, SignUpResource } from '@clerk/types';
declare type UseSignUpReturn = {

@@ -6,2 +6,3 @@ isLoaded: false;

setSession: undefined;
setActive: undefined;
} | {

@@ -11,2 +12,3 @@ isLoaded: true;

setSession: SetSession;
setActive: SetActive;
};

@@ -13,0 +15,0 @@ declare type UseSignUp = () => UseSignUpReturn;

@@ -10,7 +10,12 @@ "use strict";

if (!client) {
return { isLoaded: false, signUp: undefined, setSession: undefined };
return { isLoaded: false, signUp: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, signUp: client.signUp, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
signUp: client.signUp,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};
exports.useSignUp = useSignUp;
//# sourceMappingURL=useSignUp.js.map
/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
export declare const LIB_VERSION = "3.2.18";
export declare const LIB_VERSION = "3.3.0-staging.0";
export declare const LIB_NAME = "@clerk/clerk-react";
//# sourceMappingURL=info.d.ts.map

@@ -5,4 +5,4 @@ "use strict";

/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
exports.LIB_VERSION = '3.2.18';
exports.LIB_VERSION = '3.3.0-staging.0';
exports.LIB_NAME = '@clerk/clerk-react';
//# sourceMappingURL=info.js.map

@@ -1,2 +0,2 @@

import type { ActiveSessionResource, AuthenticateWithMetamaskParams, ClientResource, CreateOrganizationParams, HandleMagicLinkVerificationParams, HandleOAuthCallbackParams, OrganizationMembershipResource, OrganizationResource, RedirectOptions, Resources, SignInProps, SignOut, SignUpProps, UserButtonProps, UserProfileProps, UserResource } from '@clerk/types';
import type { ActiveSessionResource, AuthenticateWithMetamaskParams, ClientResource, CreateOrganizationParams, HandleMagicLinkVerificationParams, HandleOAuthCallbackParams, OrganizationMembershipResource, OrganizationResource, RedirectOptions, Resources, SetActiveParams, SignInProps, SignOut, SignUpProps, UserButtonProps, UserProfileProps, UserResource } from '@clerk/types';
import type { BrowserClerk, ClerkProp, IsomorphicClerkOptions } from './types';

@@ -39,2 +39,4 @@ export interface Global {

get __unstable__environment(): any;
setActive: ({ session, organization, beforeEmit }: SetActiveParams) => Promise<void>;
/** @deprecated Use `setActive` instead */
setSession: (session: ActiveSessionResource | string | null, beforeEmit?: ((session: ActiveSessionResource | null) => void | Promise<any>) | undefined) => Promise<void>;

@@ -41,0 +43,0 @@ openSignIn: (props?: SignInProps | undefined) => void;

@@ -54,5 +54,5 @@ "use strict";

};
this.setSession = (session, beforeEmit) => {
this.setActive = ({ session, organization, beforeEmit }) => {
if (this.clerkjs) {
return this.clerkjs.setSession(session, beforeEmit);
return this.clerkjs.setActive({ session, organization, beforeEmit });
}

@@ -63,2 +63,6 @@ else {

};
/** @deprecated Use `setActive` instead */
this.setSession = (session, beforeEmit) => {
return this.setActive({ session, beforeEmit });
};
this.openSignIn = (props) => {

@@ -65,0 +69,0 @@ if (this.clerkjs && tslib_1.__classPrivateFieldGet(this, _IsomorphicClerk_loaded, "f")) {

{
"name": "@clerk/clerk-react",
"version": "3.2.18",
"version": "3.3.0-staging.0",
"license": "MIT",

@@ -31,3 +31,3 @@ "description": "Clerk.dev React library",

"dependencies": {
"@clerk/types": "^2.14.0",
"@clerk/types": "^2.15.0-staging.0",
"tslib": "^2.3.1"

@@ -52,3 +52,3 @@ },

"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
"typescript": "^4.6.4"
},

@@ -72,3 +72,3 @@ "peerDependencies": {

"homepage": "https://clerk.dev/",
"gitHead": "4f06d93b006ca0aa731dbb52c5854da6b7d9ecdd"
"gitHead": "8c65c7e07a1ceda423e5615851d61a81ba6645c9"
}

@@ -1,2 +0,2 @@

import { SessionResource, SetSession } from '@clerk/types';
import { SetActive, SessionResource, SetSession } from '@clerk/types';

@@ -7,4 +7,4 @@ import { useClientContext } from '../contexts/ClientContext';

type UseSessionListReturn =
| { isLoaded: false; sessions: undefined; setSession: undefined }
| { isLoaded: true; sessions: SessionResource[]; setSession: SetSession };
| { isLoaded: false; sessions: undefined; setSession: undefined; setActive: undefined }
| { isLoaded: true; sessions: SessionResource[]; setSession: SetSession; setActive: SetActive };

@@ -18,6 +18,11 @@ type UseSessionList = () => UseSessionListReturn;

if (!client) {
return { isLoaded: false, sessions: undefined, setSession: undefined };
return { isLoaded: false, sessions: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, sessions: client.sessions, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
sessions: client.sessions,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};

@@ -1,2 +0,2 @@

import { SetSession, SignInResource } from '@clerk/types';
import { SetActive, SetSession, SignInResource } from '@clerk/types';

@@ -7,4 +7,4 @@ import { useClientContext } from '../contexts/ClientContext';

type UseSignInReturn =
| { isLoaded: false; signIn: undefined; setSession: undefined }
| { isLoaded: true; signIn: SignInResource; setSession: SetSession };
| { isLoaded: false; signIn: undefined; setSession: undefined; setActive: undefined }
| { isLoaded: true; signIn: SignInResource; setSession: SetSession; setActive: SetActive };

@@ -18,6 +18,11 @@ type UseSignIn = () => UseSignInReturn;

if (!client) {
return { isLoaded: false, signIn: undefined, setSession: undefined };
return { isLoaded: false, signIn: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, signIn: client.signIn, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
signIn: client.signIn,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};

@@ -1,2 +0,2 @@

import { SetSession, SignUpResource } from '@clerk/types';
import { SetActive, SetSession, SignUpResource } from '@clerk/types';

@@ -7,4 +7,4 @@ import { useClientContext } from '../contexts/ClientContext';

type UseSignUpReturn =
| { isLoaded: false; signUp: undefined; setSession: undefined }
| { isLoaded: true; signUp: SignUpResource; setSession: SetSession };
| { isLoaded: false; signUp: undefined; setSession: undefined; setActive: undefined }
| { isLoaded: true; signUp: SignUpResource; setSession: SetSession; setActive: SetActive };

@@ -18,6 +18,11 @@ type UseSignUp = () => UseSignUpReturn;

if (!client) {
return { isLoaded: false, signUp: undefined, setSession: undefined };
return { isLoaded: false, signUp: undefined, setSession: undefined, setActive: undefined };
}
return { isLoaded: true, signUp: client.signUp, setSession: isomorphicClerk.setSession };
return {
isLoaded: true,
signUp: client.signUp,
setSession: isomorphicClerk.setSession,
setActive: isomorphicClerk.setActive,
};
};
/** DO NOT EDIT: This file is automatically generated by ../scripts/info.js */
export const LIB_VERSION = '3.2.18';
export const LIB_VERSION = '3.3.0-staging.0';
export const LIB_NAME = '@clerk/clerk-react';

@@ -12,2 +12,3 @@ import type {

Resources,
SetActiveParams,
SignInProps,

@@ -242,8 +243,5 @@ SignOut,

setSession = (
session: ActiveSessionResource | string | null,
beforeEmit?: (session: ActiveSessionResource | null) => void | Promise<any>,
): Promise<void> => {
setActive = ({ session, organization, beforeEmit }: SetActiveParams): Promise<void> => {
if (this.clerkjs) {
return this.clerkjs.setSession(session, beforeEmit);
return this.clerkjs.setActive({ session, organization, beforeEmit });
} else {

@@ -254,2 +252,10 @@ return Promise.reject();

/** @deprecated Use `setActive` instead */
setSession = (
session: ActiveSessionResource | string | null,
beforeEmit?: (session: ActiveSessionResource | null) => void | Promise<any>,
): Promise<void> => {
return this.setActive({ session, beforeEmit });
};
openSignIn = (props?: SignInProps): void => {

@@ -256,0 +262,0 @@ if (this.clerkjs && this.#loaded) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet