fix(dpa): correct US processor entity to Twenty.com PBC (#22393)

As title.
This commit is contained in:
Abdullah.
2026-07-01 17:23:42 +05:00
committed by GitHub
parent fab0358df5
commit 93b8f66794
2 changed files with 4 additions and 4 deletions
@@ -21,7 +21,7 @@ export const DPA_REGION_CONFIGS: Record<DpaRegion, DpaRegionConfig> = {
region: DpaRegion.US,
sccSectionActive: true,
values: {
PROCESSOR_ENTITY: 'Twenty, Inc.',
PROCESSOR_ENTITY: 'Twenty.com PBC',
PROCESSOR_LEGAL_FORM:
'a public benefit corporation under the laws of Delaware, USA',
// Registered office is the Delaware registered agent; the SF notices
@@ -31,7 +31,7 @@ describe('resolveDpa', () => {
const resolved = resolveDpa({ region: DpaRegion.US, mode: 'preview' });
expect(resolved.region).toBe('US');
expect(resolved.values.PROCESSOR_ENTITY).toBe('Twenty, Inc.');
expect(resolved.values.PROCESSOR_ENTITY).toBe('Twenty.com PBC');
expect(resolved.values.PROCESSOR_LEGAL_FORM).toContain('Delaware');
expect(resolved.values.HOSTING_REGION).toBe('United States');
expect(resolved.sccSectionActive).toBe(true);
@@ -41,10 +41,10 @@ describe('resolveDpa', () => {
const eu = resolveDpa({ region: DpaRegion.EU, mode: 'preview' });
const us = resolveDpa({ region: DpaRegion.US, mode: 'preview' });
// Assert on the contracting clause (block 0), not the whole doc: "Twenty, Inc."
// Assert on the contracting clause (block 0), not the whole doc: "Twenty.com PBC"
// also appears verbatim in Annex A's "for US deployments" note.
expect(eu.blocks[0].text).toContain('between Twenty.com SAS (');
expect(us.blocks[0].text).toContain('between Twenty, Inc. (');
expect(us.blocks[0].text).toContain('between Twenty.com PBC (');
});
it('keeps the SCC/transfer sections (7.27.5) in the document for BOTH regions (document is not branched)', () => {