{"record":{"id":"00da3a90abc7e66c","repo":"deepseek-ai/deepseek-harness","slug":"credentials-local-record-key-in-filename-00da3a","errorCode":null,"errorMessage":"credentials-local: record \"${key}\" in ${filename} has no payload","messagePattern":"credentials-local: record \"(.+?)\" in (.+?) has no payload","errorType":"validation","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"packages/credentials/credentials-local/src/index.ts","lineNumber":351,"sourceCode":"  const fields = value as Record<string, unknown>\n  const kind = fields['kind']\n  if (kind === 'api-key') {\n    assertFields(key, fields, ['kind', 'key', 'env'], filename)\n    const apiKey = fields['key']\n    if (apiKey !== undefined && (typeof apiKey !== 'string' || apiKey.length === 0)) {\n      throw new TypeError(`credentials-local: record \"${key}\" in ${filename} has a non-string or empty key`)\n    }\n    const env = parseRecordEnv(key, fields['env'], filename)\n    return {\n      kind: 'api-key',\n      ...apiKey === undefined ? {} : { key: apiKey },\n      ...env === undefined ? {} : { env },\n    }\n  }\n  if (kind === 'grant') {\n    assertFields(key, fields, ['kind', 'payload'], filename)\n    if (!('payload' in fields)) {\n      throw new Error(`credentials-local: record \"${key}\" in ${filename} has no payload`)\n    }\n    assertJsonValue(`record \"${key}\" payload in ${filename}`, fields['payload'], new Set())\n    return { kind: 'grant', payload: fields['payload'] }\n  }\n  if (kind === undefined) throw new Error(`credentials-local: record \"${key}\" in ${filename} has no kind`)\n  throw new Error(`credentials-local: record \"${key}\" in ${filename} has unknown kind ${JSON.stringify(kind)}`)\n}\n\n/** Reject a field the tag does not define, so a typo is not silently dropped. */\nfunction assertFields(key: string, fields: Record<string, unknown>, allowed: string[], filename: string): void {\n  for (const field of Object.keys(fields)) {\n    if (!allowed.includes(field)) {\n      throw new Error(`credentials-local: record \"${key}\" in ${filename} has unknown field \"${field}\"`)\n    }\n  }\n}\n\n/** Admit an api-key record's provider environment: POSIX names over non-empty strings. */","sourceCodeStart":333,"sourceCodeEnd":369,"githubUrl":"https://github.com/deepseek-ai/deepseek-harness/blob/b150a551b8d465e31e418e1b2eaf5e79bbb7d28e/packages/credentials/credentials-local/src/index.ts#L333-L369","documentation":"Error \"credentials-local: record \"${key}\" in ${filename} has no payload\" thrown in deepseek-ai/deepseek-harness.","triggerScenarios":"Thrown at packages/credentials/credentials-local/src/index.ts:351 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"b150a551b8d465e31e418e1b2eaf5e79bbb7d28e","analyzedAt":"2026-08-24T18:12:29.105Z","schemaVersion":2},"datasetVersion":"2026-08-24T22:17:12.610Z"}