Skip to content

Commit 4a4e841

Browse files
nedimfclaude
andcommitted
feat: add external_user_id to SupportRequestInput
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b177f62 commit 4a4e841

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@appgram/react",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "React library for integrating Appgram portal features with pre-built UI components and headless hooks",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

src/client/AppgramClient.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,7 @@ export class AppgramClient {
568568
}
569569

570570
if (data.user_name) payload.user_name = data.user_name
571+
if (data.external_user_id) payload.external_user_id = data.external_user_id
571572
if (data.category) payload.category = data.category
572573
if (uploadedAttachments.length > 0) payload.attachments = uploadedAttachments
573574

src/types/support.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export interface SupportRequestInput {
6262
description: string
6363
user_email: string
6464
user_name?: string
65+
external_user_id?: string
6566
category?: SupportRequestCategory
6667
attachments?: File[]
6768
}

0 commit comments

Comments
 (0)