Rocky_Mountain_Vending/.pnpm-store/v10/files/1b/d16c2b1c03ff5eaf0304a4a528fbfa0e24b20fe63a9aa4549cb930f68d752ed4c307bccc7f4753ac6a7da84ef72cf93a1fa0848a6da7d4222f163ced2451b4
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
948 B
Text

import { ScopeData } from '../scope';
import { Event } from '../types-hoist/event';
/**
* Applies data from the scope to the event and runs all event processors on it.
*/
export declare function applyScopeDataToEvent(event: Event, data: ScopeData): void;
/** Merge data of two scopes together. */
export declare function mergeScopeData(data: ScopeData, mergeData: ScopeData): void;
/**
* Merges certain scope data. Undefined values will overwrite any existing values.
* Exported only for tests.
*/
export declare function mergeAndOverwriteScopeData<Prop extends 'extra' | 'tags' | 'user' | 'contexts' | 'sdkProcessingMetadata', Data extends ScopeData>(data: Data, prop: Prop, mergeVal: Data[Prop]): void;
/** Exported only for tests */
export declare function mergeArray<Prop extends 'breadcrumbs' | 'fingerprint'>(event: Event, prop: Prop, mergeVal: ScopeData[Prop]): void;
//# sourceMappingURL=applyScopeDataToEvent.d.ts.map