File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments