Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/linkedin

src/smoke-test.ts

12 lines · 375 B · TypeScript
import { smokeTest } from './client.ts'

/**
 * Verify LinkedIn userinfo access without returning PII in the smoke payload.
 * @example
 * import smokeTest from 'kody:@kody/linkedin/smoke-test'
 * const result = await smokeTest()
 * // => { ok: true, hasSubject: true, personUrnPresent: true }
 */
export default async function smokeTestEntrypoint() {
  return smokeTest()
}