Files
twenty/packages/twenty-website/src/partner-application/build-logic-function-payload.ts
T
Abdullah. 569d887d1e [Website] Cut over to the rebuilt site (#21825)
Renaming the package so any further PRs directed to the website are
targeted to the reworked code instead of diverging. Once merged, I will
start preparing this for deployment to dev to test before releasing to
prod. Any improvements will also be applied to this package.

I avoided making significant changes to API routes so nothing breaks,
but will test it thoroughly today to confirm. That said, everything is
ported - double checked.

Big diff PR, impossible to review, but last one! No more rebuilds.
2026-06-19 10:22:46 +02:00

63 lines
2.6 KiB
TypeScript

import { type PartnerCountryValue } from './data/partner-country-options';
import { type PartnerLanguageValue } from './data/partner-language-options';
import { type PartnerScopeValue } from './data/partner-scope-options';
import { type PartnerTeamTypeValue } from './data/partner-team-type-options';
import { type PartnerApplicationRequest } from './partner-application-request-schema';
import { splitFullName } from './split-full-name';
// The webhook (a logic function) expects first/last name, companyName, and
// domainName rather than the form's name/company/website. Empty optionals are
// omitted so the payload only carries what the applicant filled in.
export type PartnerApplicationLogicFunctionPayload = {
firstName: string;
lastName: string;
email: string;
companyName: string;
domainName?: string;
linkedin?: string;
city?: string;
country?: PartnerCountryValue;
languages?: readonly PartnerLanguageValue[];
typeOfTeam?: PartnerTeamTypeValue;
partnerScope?: readonly PartnerScopeValue[];
skills?: readonly string[];
applicationNotes?: string;
hourlyRate?: number;
projectBudgetMin?: number;
calendarLink?: string;
};
export function buildLogicFunctionPayload(
request: PartnerApplicationRequest,
): PartnerApplicationLogicFunctionPayload {
const { firstName, lastName } = splitFullName(request.name);
const payload: PartnerApplicationLogicFunctionPayload = {
firstName,
lastName,
email: request.email,
companyName: request.company,
};
if (request.website !== undefined) payload.domainName = request.website;
if (request.linkedin !== undefined) payload.linkedin = request.linkedin;
if (request.city !== undefined) payload.city = request.city;
if (request.country !== undefined) payload.country = request.country;
if (request.languages !== undefined && request.languages.length > 0)
payload.languages = request.languages;
if (request.typeOfTeam !== undefined) payload.typeOfTeam = request.typeOfTeam;
if (request.partnerScope !== undefined && request.partnerScope.length > 0)
payload.partnerScope = request.partnerScope;
if (request.skills !== undefined && request.skills.length > 0)
payload.skills = request.skills;
if (request.applicationNotes !== undefined)
payload.applicationNotes = request.applicationNotes;
if (request.hourlyRate !== undefined) payload.hourlyRate = request.hourlyRate;
if (request.projectBudgetMin !== undefined)
payload.projectBudgetMin = request.projectBudgetMin;
if (request.calendarLink !== undefined)
payload.calendarLink = request.calendarLink;
return payload;
}