From 8090593ae0707582a5206c46a861e41491a1a4e4 Mon Sep 17 00:00:00 2001 From: Shivang Mishra Date: Mon, 23 Jun 2025 04:42:16 +0530 Subject: [PATCH 1/2] add Signature data type --- src/Concept.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Concept.js b/src/Concept.js index cd47349d..e79e2d12 100644 --- a/src/Concept.js +++ b/src/Concept.js @@ -168,9 +168,10 @@ export default class Concept extends BaseEntity { GroupAffiliation: "GroupAffiliation", QuestionGroup: "QuestionGroup", File: "File", + Signature: "Signature", Encounter: "Encounter", get Media() { - return [this.Image, this.ImageV2, this.Video, this.Audio, this.File]; + return [this.Image, this.ImageV2, this.Video, this.Audio, this.File, this.Signature]; }, }; From e7a5624541de05a22686faa4d4272c4b650ca0e3 Mon Sep 17 00:00:00 2001 From: Shivang Mishra Date: Thu, 4 Sep 2025 04:45:37 +0530 Subject: [PATCH 2/2] add Signature to media types --- src/Concept.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Concept.js b/src/Concept.js index e79e2d12..495c02d9 100644 --- a/src/Concept.js +++ b/src/Concept.js @@ -170,6 +170,7 @@ export default class Concept extends BaseEntity { File: "File", Signature: "Signature", Encounter: "Encounter", + QR: "QR", get Media() { return [this.Image, this.ImageV2, this.Video, this.Audio, this.File, this.Signature]; },