@veltdev/sdk 5.0.2-beta.33 → 5.0.2-beta.35

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.
@@ -1,17 +0,0 @@
1
- // @ts-nocheck
2
-
3
- /**
4
- * Configuration for the opt-in cross-organization "For You" notifications feature.
5
- */
6
- export interface CrossOrganizationConfig {
7
- /** Whether cross-organization notifications are active. Defaults to `true` on enable. */
8
- enabled?: boolean;
9
- /** Allowlist of organization IDs to include. When omitted, all indexed orgs are eligible. */
10
- organizationIds?: string[];
11
- /** Organization IDs to exclude. The current organization is always excluded. */
12
- excludeOrganizationIds?: string[];
13
- /** Upper bound on the number of organizations fetched. Defaults to 20. */
14
- maxOrganizations?: number;
15
- /** Feeds the merge applies to. Only `'forYou'` is supported; `'all'` is ignored with a warning. */
16
- feeds?: ('forYou' | 'all')[];
17
- }