diff --git a/LICENSE b/LICENSE
index 549e017679e4..c4420ec8d12f 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2023 Matthias Nannt, Johannes Dancker
+Copyright (c) 2023 Formbricks GmbH
Portions of this software are licensed as follows:
diff --git a/apps/formbricks-com/pages/imprint.mdx b/apps/formbricks-com/pages/imprint.mdx
index 519c6f2d8379..0557b392a1c5 100644
--- a/apps/formbricks-com/pages/imprint.mdx
+++ b/apps/formbricks-com/pages/imprint.mdx
@@ -6,9 +6,8 @@ export const meta = {
## Information according to ยง 5 TMG
-Johannes Dancker & Matthias Nannt\
+Formbricks GmbH\
Kuhnkestr. 6\
-c/o Starterkitchen\
24118 Kiel\
Germany
diff --git a/apps/formbricks-com/pages/privacy-policy.mdx b/apps/formbricks-com/pages/privacy-policy.mdx
index d1512afc0f4c..966f5f2f5523 100644
--- a/apps/formbricks-com/pages/privacy-policy.mdx
+++ b/apps/formbricks-com/pages/privacy-policy.mdx
@@ -114,9 +114,8 @@ Please use the following contact information for privacy inquiries:
privacy@formbricks.com
-Johannes Dancker & Matthias Nannt
+Formbricks GmbH
Kuhnkestr. 6
-c/o Starterkitchen
24118 Kiel
Germany
diff --git a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/(analysis)/responses/SingleResponse.tsx b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/(analysis)/responses/SingleResponse.tsx
index a8ed12920626..f1d661d813b0 100644
--- a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/(analysis)/responses/SingleResponse.tsx
+++ b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/(analysis)/responses/SingleResponse.tsx
@@ -30,13 +30,6 @@ export interface OpenTextSummaryProps {
scale?: "number" | "star" | "smiley";
range?: number;
}[];
- meta?: {
- userAgent?: {
- browser?: string;
- os?: string;
- device?: string;
- };
- };
};
}
diff --git a/packages/database/jsonTypes.ts b/packages/database/jsonTypes.ts
index d34925d55d56..78dd84eea207 100644
--- a/packages/database/jsonTypes.ts
+++ b/packages/database/jsonTypes.ts
@@ -1,5 +1,5 @@
import { TActionClassNoCodeConfig } from "@formbricks/types/v1/actionClasses";
-import { TResponsePersonAttributes, TResponseData } from "@formbricks/types/v1/responses";
+import { TResponsePersonAttributes, TResponseData, TResponseMeta } from "@formbricks/types/v1/responses";
import { TSurveyClosedMessage, TSurveyQuestions, TSurveyThankYouCard } from "@formbricks/types/v1/surveys";
import { TUserNotificationSettings } from "@formbricks/types/v1/users";
@@ -8,7 +8,7 @@ declare global {
export type EventProperties = { [key: string]: string };
export type EventClassNoCodeConfig = TActionClassNoCodeConfig;
export type ResponseData = TResponseData;
- export type ResponseMeta = { [key: string]: string };
+ export type ResponseMeta = TResponseMeta;
export type ResponsePersonAttributes = TResponsePersonAttributes;
export type SurveyQuestions = TSurveyQuestions;
export type SurveyThankYouCard = TSurveyThankYouCard;
diff --git a/packages/errors/LICENSE b/packages/errors/LICENSE
index ade6b179801a..ed99f4b9f7c6 100644
--- a/packages/errors/LICENSE
+++ b/packages/errors/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2023 Matthias Nannt, Johannes Dancker
+Copyright (c) 2023 Formbricks GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/packages/js/LICENSE b/packages/js/LICENSE
index ade6b179801a..ed99f4b9f7c6 100644
--- a/packages/js/LICENSE
+++ b/packages/js/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2023 Matthias Nannt, Johannes Dancker
+Copyright (c) 2023 Formbricks GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/packages/types/v1/responses.ts b/packages/types/v1/responses.ts
index 83c4ef8a14f9..d62c10bada77 100644
--- a/packages/types/v1/responses.ts
+++ b/packages/types/v1/responses.ts
@@ -31,6 +31,7 @@ export const ZResponseMeta = z.object({
userAgent: z.object({
browser: z.string().optional(),
os: z.string().optional(),
+ device: z.string().optional(),
}),
});