@shopify/shopify-api
Version:
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
22 lines (18 loc) • 595 B
text/typescript
import {ConfigInterface} from '../base-types';
import {decodeSessionToken} from './decode-session-token';
import {
customAppSession,
getCurrentSessionId,
getJwtSessionId,
getOfflineId,
} from './session-utils';
export function shopifySession(config: ConfigInterface) {
return {
customAppSession: customAppSession(config),
getCurrentId: getCurrentSessionId(config),
getOfflineId: getOfflineId(config),
getJwtSessionId: getJwtSessionId(config),
decodeSessionToken: decodeSessionToken(config),
};
}
export type ShopifySession = ReturnType<typeof shopifySession>;