From 215c437e4c5a5e7603e64188d7be3cd2bdedc303 Mon Sep 17 00:00:00 2001 From: "baris.alis" Date: Thu, 27 Aug 2026 17:35:11 +0200 Subject: [PATCH 1/2] * Add "Callback and Standalone Code Examples (Typescript)" section in Showcase page --- src/data/apps.tsx | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/src/data/apps.tsx b/src/data/apps.tsx index 9aa1fe1..37668d9 100644 --- a/src/data/apps.tsx +++ b/src/data/apps.tsx @@ -25,6 +25,7 @@ export type TagType = | 'product' | 'kotlin' | 'java' + | 'typescript' | 'webhook' // Add apps to this list @@ -38,12 +39,19 @@ const Apps: App[] = [ tags: ['kotlin'], }, { - title: 'Callback and Standalone Code Examples', - description: 'Example code snippets demonstrating how to use the Wire SDK across various scenarios.', + title: 'Callback and Standalone Code Examples (Java)', + description: 'Example code snippets demonstrating how to use the Wire JVM SDK across various scenarios.', icon: null, source: 'https://github.com/wireapp/wire-apps-jvm-sdk/tree/main/sample/sample-java/src/main/java/com/wire/sdk/sample/examples', tags: ['java'], }, + { + title: 'Callback and Standalone Code Examples (Typescript)', + description: 'Example code snippets demonstrating how to use the Wire Typescript SDK across various scenarios.', + icon: null, + source: 'https://github.com/wireapp/wire-apps-js-sdk/tree/main/sample/src/examples', + tags: ['typescript'], + }, { title: 'GitHub App', description: 'Get GitHub notifications directly in Wire', @@ -124,6 +132,15 @@ export const Tags: { [type in TagType]: Tag } = { color: '#2a66d0', }, + typescript: { + label: translate({ message: 'Typescript' }), + description: translate({ + message: 'Apps written in Typescript programming language', + id: 'showcase.tag.typescript.description', + }), + color: '#2a66d0', + }, + webhook: { label: translate({ message: 'Webhook' }), description: translate({ From 13d13e9ae9dc6e69ef0e7ed667aeb8783ba31b34 Mon Sep 17 00:00:00 2001 From: Baris Alis Date: Fri, 28 Aug 2026 09:16:17 +0200 Subject: [PATCH 2/2] Update src/data/apps.tsx Use Typescript's branding color blue Co-authored-by: MarianKijewski <148276531+MarianKijewski@users.noreply.github.com> --- src/data/apps.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/apps.tsx b/src/data/apps.tsx index 37668d9..8bbf63e 100644 --- a/src/data/apps.tsx +++ b/src/data/apps.tsx @@ -138,7 +138,7 @@ export const Tags: { [type in TagType]: Tag } = { message: 'Apps written in Typescript programming language', id: 'showcase.tag.typescript.description', }), - color: '#2a66d0', + color: '#3178C6', }, webhook: {