Fix build errors and update contact to Formbricks GmbH (#585)

This commit is contained in:
Matti Nannt
2023-07-19 12:50:19 +02:00
committed by GitHub
parent c52df00d39
commit dd6ac2e4cd
8 changed files with 8 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
Copyright (c) 2023 Matthias Nannt, Johannes Dancker
Copyright (c) 2023 Formbricks GmbH
Portions of this software are licensed as follows:

View File

@@ -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

View File

@@ -114,9 +114,8 @@ Please use the following contact information for privacy inquiries:
privacy@formbricks.com
Johannes Dancker & Matthias Nannt<br/>
Formbricks GmbH<br/>
Kuhnkestr. 6<br/>
c/o Starterkitchen<br/>
24118 Kiel<br/>
Germany

View File

@@ -30,13 +30,6 @@ export interface OpenTextSummaryProps {
scale?: "number" | "star" | "smiley";
range?: number;
}[];
meta?: {
userAgent?: {
browser?: string;
os?: string;
device?: string;
};
};
};
}

View File

@@ -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;

View File

@@ -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:

View File

@@ -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:

View File

@@ -31,6 +31,7 @@ export const ZResponseMeta = z.object({
userAgent: z.object({
browser: z.string().optional(),
os: z.string().optional(),
device: z.string().optional(),
}),
});