@burdenoff/website-sdk 2026.521.2 → 2026.521.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,78 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ContactCategory, ContactPageProps } from './contact.mjs';
3
+
4
+ /**
5
+ * Office address shape consumed by `<ContactPage>`. Mirrored here as a
6
+ * local type so we don't widen `contact.tsx`'s public surface just for
7
+ * this consumer — keeps the contact module's exports unchanged.
8
+ */
9
+ interface OfficeAddress {
10
+ line1: string;
11
+ line2: string;
12
+ line3: string;
13
+ country: string;
14
+ }
15
+ interface PartnersPageProps {
16
+ /** Product name (e.g. `"VibeControls"`). Falls back to SDK config. */
17
+ productName?: string;
18
+ /** Hero headline. Default: `"Partner with us"`. */
19
+ heroTitle?: string;
20
+ /** Hero subtitle / pitch line. */
21
+ heroSubtitle?: string;
22
+ /**
23
+ * Tag filter for the marketing-copy body. Default: `"partner"`. The
24
+ * component fetches the FIRST published `ProductContentPage` whose
25
+ * tags array contains this tag and renders its body via
26
+ * `ContentRenderer`. Self-hides if none exist.
27
+ */
28
+ contentTag?: string;
29
+ /**
30
+ * Pin a specific content page by slug. If set, overrides `contentTag`.
31
+ * Useful when multiple partner pages exist and you want to render one
32
+ * canonical version per route.
33
+ */
34
+ contentSlug?: string;
35
+ /**
36
+ * Tag filter for the downloadable documents. Default: `"partner"`.
37
+ * Combined with the implicit `category === "DOCUMENT"` filter — only
38
+ * Press Kit assets that match BOTH are rendered as cards. Self-hides
39
+ * when empty.
40
+ */
41
+ documentsTag?: string;
42
+ /** Documents-section heading. Default: `"Partner Documents"`. */
43
+ documentsTitle?: string;
44
+ /** Documents-section subtitle / lead. */
45
+ documentsSubtitle?: string;
46
+ /**
47
+ * Whether to render the "Become a partner" contact form. Default: `true`.
48
+ * Set to `false` for a documents-only / read-only partner landing page.
49
+ */
50
+ showContactForm?: boolean;
51
+ /**
52
+ * Locked inquiry-category for the embedded `<ContactPage>`. Default:
53
+ * `{ value: "partnership", label: "Partner program" }`. The dropdown
54
+ * renders with a single, required option so every submission is tagged
55
+ * for partner triage. Pass `false` to disable the lock — `<ContactPage>`
56
+ * then falls back to its own default (no dropdown) unless the consumer
57
+ * wires the full categories list externally.
58
+ */
59
+ contactCategory?: ContactCategory | false;
60
+ /** Heading shown above the form. Default: `"Become a partner"`. */
61
+ formTitle?: string;
62
+ /** Subtitle / lead above the form. */
63
+ formSubtitle?: string;
64
+ contactEmail: string;
65
+ contactPhone: string;
66
+ officeAddress: OfficeAddress;
67
+ responseTime?: string;
68
+ recaptchaSiteKey?: string;
69
+ /** Forwarded to `<ContactPage additionalOptions>`. */
70
+ additionalOptions?: ContactPageProps["additionalOptions"];
71
+ seoTitle?: string;
72
+ seoDescription?: string;
73
+ seoKeywords?: string;
74
+ className?: string;
75
+ }
76
+ declare function PartnersPage(props: PartnersPageProps): react_jsx_runtime.JSX.Element;
77
+
78
+ export { PartnersPage, type PartnersPageProps };
@@ -0,0 +1,78 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ContactCategory, ContactPageProps } from './contact.js';
3
+
4
+ /**
5
+ * Office address shape consumed by `<ContactPage>`. Mirrored here as a
6
+ * local type so we don't widen `contact.tsx`'s public surface just for
7
+ * this consumer — keeps the contact module's exports unchanged.
8
+ */
9
+ interface OfficeAddress {
10
+ line1: string;
11
+ line2: string;
12
+ line3: string;
13
+ country: string;
14
+ }
15
+ interface PartnersPageProps {
16
+ /** Product name (e.g. `"VibeControls"`). Falls back to SDK config. */
17
+ productName?: string;
18
+ /** Hero headline. Default: `"Partner with us"`. */
19
+ heroTitle?: string;
20
+ /** Hero subtitle / pitch line. */
21
+ heroSubtitle?: string;
22
+ /**
23
+ * Tag filter for the marketing-copy body. Default: `"partner"`. The
24
+ * component fetches the FIRST published `ProductContentPage` whose
25
+ * tags array contains this tag and renders its body via
26
+ * `ContentRenderer`. Self-hides if none exist.
27
+ */
28
+ contentTag?: string;
29
+ /**
30
+ * Pin a specific content page by slug. If set, overrides `contentTag`.
31
+ * Useful when multiple partner pages exist and you want to render one
32
+ * canonical version per route.
33
+ */
34
+ contentSlug?: string;
35
+ /**
36
+ * Tag filter for the downloadable documents. Default: `"partner"`.
37
+ * Combined with the implicit `category === "DOCUMENT"` filter — only
38
+ * Press Kit assets that match BOTH are rendered as cards. Self-hides
39
+ * when empty.
40
+ */
41
+ documentsTag?: string;
42
+ /** Documents-section heading. Default: `"Partner Documents"`. */
43
+ documentsTitle?: string;
44
+ /** Documents-section subtitle / lead. */
45
+ documentsSubtitle?: string;
46
+ /**
47
+ * Whether to render the "Become a partner" contact form. Default: `true`.
48
+ * Set to `false` for a documents-only / read-only partner landing page.
49
+ */
50
+ showContactForm?: boolean;
51
+ /**
52
+ * Locked inquiry-category for the embedded `<ContactPage>`. Default:
53
+ * `{ value: "partnership", label: "Partner program" }`. The dropdown
54
+ * renders with a single, required option so every submission is tagged
55
+ * for partner triage. Pass `false` to disable the lock — `<ContactPage>`
56
+ * then falls back to its own default (no dropdown) unless the consumer
57
+ * wires the full categories list externally.
58
+ */
59
+ contactCategory?: ContactCategory | false;
60
+ /** Heading shown above the form. Default: `"Become a partner"`. */
61
+ formTitle?: string;
62
+ /** Subtitle / lead above the form. */
63
+ formSubtitle?: string;
64
+ contactEmail: string;
65
+ contactPhone: string;
66
+ officeAddress: OfficeAddress;
67
+ responseTime?: string;
68
+ recaptchaSiteKey?: string;
69
+ /** Forwarded to `<ContactPage additionalOptions>`. */
70
+ additionalOptions?: ContactPageProps["additionalOptions"];
71
+ seoTitle?: string;
72
+ seoDescription?: string;
73
+ seoKeywords?: string;
74
+ className?: string;
75
+ }
76
+ declare function PartnersPage(props: PartnersPageProps): react_jsx_runtime.JSX.Element;
77
+
78
+ export { PartnersPage, type PartnersPageProps };