-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
33 lines (32 loc) · 1.17 KB
/
index.ts
File metadata and controls
33 lines (32 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export { getConsentTools } from './tools/index.js';
export { resolveAirgapBundleId } from './resolveAirgapBundleId.js';
export {
ListAirgapBundlesSchema,
type ListAirgapBundlesInput,
} from './tools/consent_list_airgap_bundles.js';
export { ListCookiesSchema, type ListCookiesInput } from './tools/consent_list_cookies.js';
export { ListDataFlowsSchema, type ListDataFlowsInput } from './tools/consent_list_data_flows.js';
export { ListPurposesSchema, type ListPurposesInput } from './tools/consent_list_purposes.js';
export { ListRegimesSchema, type ListRegimesInput } from './tools/consent_list_regimes.js';
export {
GetCookieStatsSchema,
type GetCookieStatsInput,
} from './tools/consent_get_triage_stats.js';
export {
UpdateCookieItemSchema,
type UpdateCookieItemInput,
UpdateCookiesSchema,
type UpdateCookiesInput,
} from './tools/consent_update_cookies.js';
export {
UpdateDataFlowItemSchema,
type UpdateDataFlowItemInput,
UpdateDataFlowsSchema,
type UpdateDataFlowsInput,
} from './tools/consent_update_data_flows.js';
export {
BulkTriageItemSchema,
type BulkTriageItemInput,
BulkTriageSchema,
type BulkTriageInput,
} from './tools/consent_bulk_triage.js';