@transcend-io/sdk 1.3.1 → 1.5.0

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.
package/dist/index.d.mts CHANGED
@@ -2,7 +2,7 @@ import { Logger } from "@transcend-io/utils";
2
2
  import { GraphQLClient, RequestDocument, Variables } from "graphql-request";
3
3
  import { Got } from "got";
4
4
  import { DocumentNode } from "graphql";
5
- import { ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncModel, AttributeKeyType, AttributeSupportedResourceType, BrowserTimeZone, ChatCompletionRole, CodePackageType, ConfidenceLabel, ConsentBundleType, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentUiUserFlow, ConsentVariantInput, Controllership, DataCategoryType, DataFlowScope, DataProtectionImpactAssessmentStatus, DefaultConsentOption, EnricherType, IdentifierType, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, LogicOperator, OrderDirection, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreIdentifier, PreferenceStorePurposeResponse, PreferenceTopicType, PreflightRequestStatus, PrivacyCenterThemePartial, ProcessingPurpose, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestDataSiloStatus, RequestEnricherStatus, RequestStatus, RetentionScheduleOperation, RetentionScheduleType, RetentionType, ScopeName, SignedIabAgreementOption, SombraStandardScope, SubDataPointDataSubCategoryGuessStatus, TelemetryPartitionStrategy, ThemeConfiguration, TranscendProduct, UIConfiguration, UiVariantStatus, UnknownRequestPolicy } from "@transcend-io/privacy-types";
5
+ import { ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncModel, AttributeKeyType, AttributeSupportedResourceType, BrowserTimeZone, ChatCompletionRole, CodePackageType, CollectDataSubjectRegions, ConfidenceLabel, ConsentBundleType, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentUiUserFlow, ConsentVariantInput, Controllership, DataCategoryType, DataFlowScope, DataProtectionImpactAssessmentStatus, DefaultConsentOption, EnricherType, IdentifierType, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, LogicOperator, OrderDirection, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreIdentifier, PreferenceStorePurposeResponse, PreferenceTopicType, PreflightRequestStatus, PrivacyCenterFooterLayout, PrivacyCenterThemePartial, ProcessingPurpose, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestDataSiloStatus, RequestEnricherStatus, RequestStatus, RetentionScheduleOperation, RetentionScheduleType, RetentionType, ScopeName, SignedIabAgreementOption, SombraStandardScope, SubDataPointDataSubCategoryGuessStatus, TelemetryPartitionStrategy, ThemeConfiguration, TranscendProduct, UIConfiguration, UiVariantStatus, UnknownRequestPolicy, WorkflowConfigType, WorkflowConfigVisibility } from "@transcend-io/privacy-types";
6
6
  import * as t from "io-ts";
7
7
  import { BrowserLanguage, InitialViewState, OnConsentExpiry, UserPrivacySignalEnum } from "@transcend-io/airgap.js-types";
8
8
  import { LocaleValue } from "@transcend-io/internationalization";
@@ -694,6 +694,12 @@ interface DataSiloEnriched {
694
694
  businessEntities: {
695
695
  /** Title of business entity */title: string;
696
696
  }[];
697
+ /**
698
+ * Configured Sombra instance that processes this data silo
699
+ */
700
+ sombra?: {
701
+ /** Sombra instance ID */id: string;
702
+ } | null;
697
703
  }
698
704
  /**
699
705
  * Fetch all dataSilos with additional metadata
@@ -727,6 +733,11 @@ declare const DATAPOINT_EXPORT: string;
727
733
  declare const DATA_SILOS: string;
728
734
  declare const DATA_SILO_EXPORT: string;
729
735
  declare const DATA_SILOS_ENRICHED: string;
736
+ /**
737
+ * Singular data silo fetch — `sombra` is available on `DataSilo` but not on
738
+ * the `DataSiloBulkPreview` nodes returned by the paginated `dataSilos` query.
739
+ */
740
+ declare const DATA_SILO_SOMBRA: string;
730
741
  declare const UPDATE_DATA_SILOS: string;
731
742
  declare const CREATE_DATA_SILOS: string;
732
743
  //#endregion
@@ -41254,6 +41265,46 @@ declare function fetchAllPolicies(client: GraphQLClient, options?: {
41254
41265
  }): Promise<Policy[]>;
41255
41266
  //#endregion
41256
41267
  //#region src/consent/fetchAllPrivacyCenters.d.ts
41268
+ interface PrivacyCenterChildOrganization {
41269
+ /** Organization ID */
41270
+ id: string;
41271
+ /** Organization URI */
41272
+ uri: string;
41273
+ /** Organization name */
41274
+ name: string;
41275
+ }
41276
+ interface PrivacyCenterFooterLinkIcon {
41277
+ /** Asset file ID */
41278
+ id: string;
41279
+ /** Public URL where the asset can be downloaded */
41280
+ src: string;
41281
+ /** Storage key for the asset */
41282
+ key: string;
41283
+ /** File size in bytes */
41284
+ size: number;
41285
+ /** MIME type of the asset */
41286
+ mimetype: string;
41287
+ }
41288
+ interface PrivacyCenterFooterLink {
41289
+ /** Footer link ID */
41290
+ id: string;
41291
+ /** Display order */
41292
+ displayOrder: number;
41293
+ /** Link title */
41294
+ title: {
41295
+ /** Default locale message */defaultMessage: string;
41296
+ };
41297
+ /** Link URL (default locale) */
41298
+ url: string;
41299
+ /** Optional icon image for the footer link */
41300
+ icon?: PrivacyCenterFooterLinkIcon;
41301
+ /**
41302
+ * When true with an icon set, render as icon-only (title is used for
41303
+ * accessibility). When false with an icon set, render icon beside the
41304
+ * visible label.
41305
+ */
41306
+ iconOnly: boolean;
41307
+ }
41257
41308
  interface PrivacyCenter {
41258
41309
  /** ID of the privacy center */
41259
41310
  id: string;
@@ -41293,6 +41344,21 @@ interface PrivacyCenter {
41293
41344
  useCustomEmailDomain: boolean;
41294
41345
  /** Whether or not to transcend access requests from JSON to CSV */
41295
41346
  transformAccessReportJsonToCsv: boolean;
41347
+ /**
41348
+ * Privacy Center "home" / back-to-site link URL shown in the privacy center
41349
+ * header
41350
+ */
41351
+ home: string;
41352
+ /** Whether the side menu is expanded by default on the privacy center */
41353
+ expandSideMenuByDefault: boolean;
41354
+ /** Whether custom fields are required on privacy center workflows */
41355
+ workflowsCustomFieldsRequired: boolean;
41356
+ /** Footer layout */
41357
+ footerLayout: PrivacyCenterFooterLayout;
41358
+ /** Child organizations displayed on this privacy center */
41359
+ childOrganizations: PrivacyCenterChildOrganization[];
41360
+ /** Footer links displayed on this privacy center */
41361
+ footerLinks: PrivacyCenterFooterLink[];
41296
41362
  /** The theme object of colors to display on the privacy center */
41297
41363
  theme: PrivacyCenterThemePartial;
41298
41364
  }
@@ -41976,12 +42042,30 @@ declare const FETCH_PRIVACY_CENTER_ID: string;
41976
42042
  declare const DEPLOYED_PRIVACY_CENTER_URL: string;
41977
42043
  declare const PRIVACY_CENTER: string;
41978
42044
  declare const UPDATE_PRIVACY_CENTER: string;
42045
+ declare const UPDATE_PRIVACY_CENTER_FOOTER_LINKS: string;
42046
+ declare const DELETE_PRIVACY_CENTER_FOOTER_LINKS: string;
41979
42047
  //#endregion
41980
42048
  //#region src/consent/gqls/processingPurpose.d.ts
41981
42049
  declare const PROCESSING_PURPOSE_SUB_CATEGORIES: string;
41982
42050
  declare const CREATE_PROCESSING_PURPOSE_SUB_CATEGORY: string;
41983
42051
  declare const UPDATE_PROCESSING_PURPOSE_SUB_CATEGORIES: string;
41984
42052
  //#endregion
42053
+ //#region src/consent/resolveDisplayedChildOrganizationIds.d.ts
42054
+ /**
42055
+ * Resolve displayed child organization URIs or IDs to organization IDs.
42056
+ *
42057
+ * Each value may be either an organization ID or URI. IDs are matched first,
42058
+ * then URIs. Throws if any value cannot be resolved.
42059
+ *
42060
+ * @param childOrganizations - Child organizations available on the privacy center
42061
+ * @param urisOrIds - URIs and/or IDs from transcend.yml
42062
+ * @returns Resolved organization IDs (same order as input)
42063
+ */
42064
+ declare function resolveDisplayedChildOrganizationIds(childOrganizations: Array<{
42065
+ /** Organization ID */id: string; /** Organization URI */
42066
+ uri: string;
42067
+ }>, urisOrIds: string[]): string[];
42068
+ //#endregion
41985
42069
  //#region src/consent/syncConsentUi.d.ts
41986
42070
  /** Consent UI theme synced to Transcend (id + slug for variant theme assignment) */
41987
42071
  type SyncedConsentUiTheme = Pick<ConsentUiTheme, 'id' | 'slug'>;
@@ -42287,14 +42371,39 @@ declare function syncPolicies(client: GraphQLClient, policies: PolicyInput[], op
42287
42371
  /** Logger instance */logger?: Logger;
42288
42372
  }): Promise<boolean>;
42289
42373
  //#endregion
42374
+ //#region src/consent/syncPrivacyCenterFooterLinks.d.ts
42375
+ interface PrivacyCenterFooterLinkInput {
42376
+ /** Link title (default locale) */
42377
+ title: string;
42378
+ /** Link URL (default locale); optional for icon-only links */
42379
+ url?: string;
42380
+ /**
42381
+ * When true with an icon set, render as icon-only (title is used for
42382
+ * accessibility). When false with an icon set, render icon beside the
42383
+ * visible label.
42384
+ */
42385
+ iconOnly?: boolean;
42386
+ }
42387
+ /**
42388
+ * Sync privacy center footer links. Matches existing links by title, upserts
42389
+ * the provided list, and deletes any existing links omitted from the YAML.
42390
+ *
42391
+ * @param client - GraphQL client
42392
+ * @param privacyCenterId - Privacy center ID
42393
+ * @param footerLinks - Desired footer links
42394
+ * @param existingFooterLinks - Existing footer links from the privacy center
42395
+ * @param options - Options
42396
+ */
42397
+ declare function syncPrivacyCenterFooterLinks(client: GraphQLClient, privacyCenterId: string, footerLinks: PrivacyCenterFooterLinkInput[], existingFooterLinks: PrivacyCenterFooterLink[], options?: {
42398
+ /** Logger instance */logger?: Logger;
42399
+ }): Promise<void>;
42400
+ //#endregion
42290
42401
  //#region src/consent/syncPrivacyCenter.d.ts
42291
42402
  interface PrivacyCenterInput {
42292
42403
  /** Whether or not the entire privacy center is enabled or disabled */
42293
42404
  isDisabled?: boolean;
42294
42405
  /** Whether or not to show the privacy requests button */
42295
42406
  showPrivacyRequestButton?: boolean;
42296
- /** Whether or not to show the data practices page */
42297
- showDataPractices?: boolean;
42298
42407
  /** Whether or not to show the policies page */
42299
42408
  showPolicies?: boolean;
42300
42409
  /** Whether or not to show the tracking technologies page */
@@ -42325,6 +42434,24 @@ interface PrivacyCenterInput {
42325
42434
  useCustomEmailDomain?: boolean;
42326
42435
  /** Whether or not to transcend access requests from JSON to CSV */
42327
42436
  transformAccessReportJsonToCsv?: boolean;
42437
+ /**
42438
+ * Privacy Center "home" / back-to-site link URL shown in the privacy center
42439
+ * header
42440
+ */
42441
+ home?: string;
42442
+ /** Whether the side menu is expanded by default on the privacy center */
42443
+ expandSideMenuByDefault?: boolean;
42444
+ /** Whether custom fields are required on privacy center workflows */
42445
+ workflowsCustomFieldsRequired?: boolean;
42446
+ /**
42447
+ * Child organization URIs and/or IDs to display on a unified multi-brand
42448
+ * privacy center
42449
+ */
42450
+ displayedChildOrganizationUris?: string[];
42451
+ /** Footer layout for privacy center footer links */
42452
+ footerLayout?: PrivacyCenterFooterLayout;
42453
+ /** Footer links displayed on the privacy center */
42454
+ footerLinks?: PrivacyCenterFooterLinkInput[];
42328
42455
  /** The theme object of colors to display on the privacy center */
42329
42456
  theme?: {
42330
42457
  /** The theme colors */colors?: Record<string, string | undefined>; /** Styles to apply to components */
@@ -42341,7 +42468,8 @@ interface PrivacyCenterInput {
42341
42468
  * @returns Whether the privacy center was synced successfully
42342
42469
  */
42343
42470
  declare function syncPrivacyCenter(client: GraphQLClient, privacyCenter: PrivacyCenterInput, options?: {
42344
- /** Logger instance */logger?: Logger;
42471
+ /** Logger instance */logger?: Logger; /** When true, skip publishing the privacy center after update */
42472
+ skipPublish?: boolean;
42345
42473
  }): Promise<boolean>;
42346
42474
  //#endregion
42347
42475
  //#region src/consent/syncProcessingPurposes.d.ts
@@ -43205,6 +43333,172 @@ declare function syncTemplate(client: GraphQLClient, template: SyncTemplateInput
43205
43333
  /** Logger instance */logger?: Logger;
43206
43334
  }): Promise<void>;
43207
43335
  //#endregion
43336
+ //#region src/dsr-automation/fetchAllWorkflowConfigs.d.ts
43337
+ /** Raw workflow config node returned by GraphQL */
43338
+ interface WorkflowConfigNode {
43339
+ /** Workflow config ID */
43340
+ id: string;
43341
+ /** Title */
43342
+ title: {
43343
+ /** Default message */defaultMessage: string;
43344
+ };
43345
+ /** Subtitle */
43346
+ subtitle: {
43347
+ /** Default message */defaultMessage: string;
43348
+ } | null;
43349
+ /** Description */
43350
+ description: {
43351
+ /** Default message */defaultMessage: string;
43352
+ } | null;
43353
+ /** Internal name */
43354
+ internalName: string | null;
43355
+ /** Visibility tier */
43356
+ workflowConfigVisibility: WorkflowConfigVisibility;
43357
+ /** Workflow type (DSR or PREFERENCE_MANAGEMENT) */
43358
+ workflowConfigType: WorkflowConfigType;
43359
+ /** Whether the workflow collects the data subject's region */
43360
+ collectDataSubjectRegions: CollectDataSubjectRegions | null;
43361
+ /** Region allow list */
43362
+ regionList: (IsoCountryCode | IsoCountrySubdivisionCode)[];
43363
+ /** Per-region request expiry times */
43364
+ expiryTime: {
43365
+ /** Region code (or 'default') */region: 'default' | IsoCountryCode | IsoCountrySubdivisionCode; /** Expiry time in days */
43366
+ value: number;
43367
+ }[] | null;
43368
+ /** Request action */
43369
+ action: {
43370
+ /** Action type */type: RequestAction;
43371
+ };
43372
+ /** Data subject */
43373
+ subject: {
43374
+ /** Data subject ID */id: string; /** Data subject type */
43375
+ type: string;
43376
+ } | null;
43377
+ /** Attribute keys (custom fields) associated with the workflow */
43378
+ WorkflowConfigAttributeKeys: {
43379
+ /** Attribute key */attributeKey: {
43380
+ /** Attribute key ID */id: string; /** Attribute key name */
43381
+ name: string;
43382
+ };
43383
+ }[] | null;
43384
+ }
43385
+ /**
43386
+ * Fetch all workflow configs in the organization
43387
+ *
43388
+ * @param client - GraphQL client
43389
+ * @param options - Options
43390
+ * @returns All workflow configs
43391
+ */
43392
+ declare function fetchAllWorkflowConfigs(client: GraphQLClient, options?: {
43393
+ /** Filter by workflow config type */workflowConfigType?: WorkflowConfigType; /** Logger instance */
43394
+ logger?: Logger;
43395
+ }): Promise<WorkflowConfigNode[]>;
43396
+ //#endregion
43397
+ //#region src/dsr-automation/syncWorkflowConfigs.d.ts
43398
+ interface WorkflowConfigSyncInput {
43399
+ /** User-facing title */
43400
+ title: string;
43401
+ /** Request action type */
43402
+ 'action-type': RequestAction;
43403
+ /**
43404
+ * Internal name of the workflow config. When provided, used as the first match
43405
+ * key; when omitted, matching falls back through title, action, subject, and
43406
+ * regions.
43407
+ */
43408
+ 'internal-name'?: string;
43409
+ /** Subtitle */
43410
+ subtitle?: string;
43411
+ /** Description */
43412
+ description?: string;
43413
+ /** Data subject type */
43414
+ 'data-subject-type'?: string;
43415
+ /** Visibility tier (DRAFT, INTERNAL, PUBLISHED) */
43416
+ visibility?: WorkflowConfigVisibility;
43417
+ /**
43418
+ * Workflow config type. Only DSR is supported for sync; preference-management
43419
+ * workflows must be managed in the Admin Dashboard.
43420
+ */
43421
+ type?: WorkflowConfigType;
43422
+ /** Whether to collect the data subject's region (COLLECT, DO_NOT_COLLECT) */
43423
+ 'collect-data-subject-regions'?: CollectDataSubjectRegions;
43424
+ /** Region allow list */
43425
+ 'region-list'?: (IsoCountryCode | IsoCountrySubdivisionCode)[];
43426
+ /** Per-region request expiry times */
43427
+ 'expiry-time'?: {
43428
+ /** Region code (or 'default') */region: 'default' | IsoCountryCode | IsoCountrySubdivisionCode; /** Expiry time in days */
43429
+ value: number;
43430
+ }[];
43431
+ /** Attribute key (custom field) names to associate with the workflow */
43432
+ 'attribute-keys'?: string[];
43433
+ }
43434
+ /**
43435
+ * Sync workflow configs to Transcend.
43436
+ *
43437
+ * Matches each input using a cascading key: internal-name → title → action-type
43438
+ * → data-subject-type (when provided) → region-list. Missing configs are
43439
+ * created via `createWorkflow` (DSR only; starts as Draft with default
43440
+ * associations), then updated with the remaining YAML fields. Successfully
43441
+ * matched configs are claimed (removed from the match pool) so later YAML
43442
+ * entries can resolve remaining duplicates.
43443
+ *
43444
+ * @param client - GraphQL client
43445
+ * @param inputs - Workflow config inputs from YAML
43446
+ * @param options - Options
43447
+ * @returns True if run without error
43448
+ */
43449
+ declare function syncWorkflowConfigs(client: GraphQLClient, inputs: WorkflowConfigSyncInput[], options?: {
43450
+ /** Logger instance */logger?: Logger;
43451
+ }): Promise<boolean>;
43452
+ //#endregion
43453
+ //#region src/dsr-automation/resolveWorkflowConfigMatch.d.ts
43454
+ /** Fields used to resolve a workflow config match */
43455
+ type WorkflowConfigMatchInput = Pick<WorkflowConfigSyncInput, 'internal-name' | 'title' | 'action-type' | 'data-subject-type' | 'region-list'>;
43456
+ /** Result of resolving a workflow config match */
43457
+ type WorkflowConfigMatchResolution = {
43458
+ /** Matched an existing workflow config */kind: 'match'; /** Matched workflow config */
43459
+ config: WorkflowConfigNode;
43460
+ } | {
43461
+ /** No existing workflow config matched; create a new one */kind: 'create';
43462
+ } | {
43463
+ /** Multiple workflow configs matched after the full cascade */kind: 'ambiguous'; /** Ambiguous workflow config candidates */
43464
+ candidates: WorkflowConfigNode[];
43465
+ };
43466
+ /**
43467
+ * Stable key for title + action + data subject + region-list identity.
43468
+ *
43469
+ * @param config - Workflow config node
43470
+ * @returns Match key string
43471
+ */
43472
+ declare function workflowConfigMatchKey(config: WorkflowConfigNode): string;
43473
+ /**
43474
+ * Order-independent region list key for workflow matching.
43475
+ *
43476
+ * @param regions - Region list
43477
+ * @returns Sorted comma-separated region codes
43478
+ */
43479
+ declare function workflowRegionListKey(regions: readonly string[] | undefined | null): string;
43480
+ /**
43481
+ * Human-readable label for logging and errors.
43482
+ *
43483
+ * @param input - Workflow config sync input
43484
+ * @returns Label string
43485
+ */
43486
+ declare function workflowConfigInputLabel(input: WorkflowConfigSyncInput): string;
43487
+ /**
43488
+ * Resolve which existing workflow config a YAML entry should update, if any.
43489
+ *
43490
+ * Cascade order: internal-name → title → action-type → data-subject-type (when
43491
+ * provided) → region-list. A provided internal-name with zero matches creates a
43492
+ * new workflow instead of falling through to title. When internal-name is
43493
+ * omitted and the cascade still matches multiple configs, prefer the candidate
43494
+ * with a null internal name.
43495
+ *
43496
+ * @param input - Workflow config sync input
43497
+ * @param existingConfigs - Existing workflow configs in the org
43498
+ * @returns Match resolution
43499
+ */
43500
+ declare function resolveWorkflowConfigMatch(input: WorkflowConfigMatchInput, existingConfigs: WorkflowConfigNode[]): WorkflowConfigMatchResolution;
43501
+ //#endregion
43208
43502
  //#region src/dsr-automation/uploadSiloDiscoveryResults.d.ts
43209
43503
  interface SiloDiscoveryRawResult {
43210
43504
  /** The name of the potential data silo entry */
@@ -44979,5 +45273,5 @@ interface MonorepoPackageDefinition {
44979
45273
  }
44980
45274
  declare function createMonorepoPackageDefinition(name: string, directory: string): MonorepoPackageDefinition;
44981
45275
  //#endregion
44982
- export { AIRGAP_BUNDLE_AGGREGATE_ANALYTICS, AIRGAP_BUNDLE_TIMESERIES_ANALYTICS, ASSESSMENTS, ASSESSMENT_SECTION_FIELDS, ATTRIBUTE_KEYS_REQUESTS, ATTRIBUTE_VALUE_FIELDS, Action, ActionItem, ActionItemAttributeKey, ActionItemCollection, ActionItemCollectionInput, ActionItemInput, ActionItemRaw, AddMessagesToPromptRunInput, Agent, AgentFile, AgentFileFilterBy, AgentFileInput, AgentFunction, AgentFunctionInput, AgentInput, AirgapBundleAggregateAnalyticsDimensionsGql, AirgapBundleAggregateAnalyticsItemGql, AirgapBundleTimeseriesAnalyticsItemGql, ApiKey, Assessment, AssessmentAction, AssessmentAnswer, AssessmentAnswerOption, AssessmentComment, AssessmentGroup, AssessmentNestedRule, AssessmentPreviousSubmission, AssessmentQuestion, AssessmentResource, AssessmentRiskLogic, AssessmentRule, AssessmentRuleWithOperands, AssessmentRuleWithoutOperands, AssessmentSection, Attribute, AttributeInput, AttributeKey, AttributeValue, AttributeValueInput, BULK_REQUEST_FILES, BusinessEntity, BusinessEntityInput, CHANGE_REQUEST_DATA_SILO_STATUS, CODE_PACKAGES, CONSENT_MANAGER_ANALYTICS_DATA, CONSENT_PARTITIONS, COOKIES, COOKIE_STATS, CREATE_CODE_PACKAGE, CREATE_CONSENT_EXPERIENCE, CREATE_CONSENT_MANAGER, CREATE_CONSENT_PARTITION, CREATE_CONSENT_UI_THEME, CREATE_CONSENT_UI_VARIANT, CREATE_DATA_FLOWS, CREATE_DATA_SILOS, CREATE_DATA_SUBJECT, CREATE_ENRICHER, CREATE_IDENTIFIER, CREATE_PROCESSING_PURPOSE_SUB_CATEGORY, Catalog, ChunkMode, CodePackage, ColumnIdentifierMap, ColumnMetadataMap, ColumnPurposeMap, ConsentExperience, ConsentManageExperienceInput, ConsentManager, ConsentManagerInput, ConsentManagerMetric, ConsentPreferenceResponse, ConsentUiTheme, ConsentUiThemesQueryResponse, ConsentUiVariant, ConsentUiVariantsQueryResponse, CookieInput, CookieOrder, CreatedApiKey, DATAPOINT_EXPORT, DATA_FLOWS, DATA_FLOW_STATS, DATA_POINTS, DATA_POINT_COUNT, DATA_SILOS, DATA_SILOS_ENRICHED, DATA_SILO_EXPORT, DATA_SUBJECTS, DELETE_COOKIES, DELETE_DATA_FLOWS, DEPLOYED_PRIVACY_CENTER_URL, DEPLOY_CONSENT_MANAGER, DataCategoryInput, DataFlowAttributeInput, DataFlowInput, DataFlowOrder, DataPoint, DataPointWithSubDataPoint, DataSilo, type DataSiloAttributeValue, DataSiloEnriched, DataSubCategory, DataSubject, DataSubjectInput, DataSubjectRef, DeletePreferenceRecordCliCsvRow, DeletePreferenceRecordsInput, DeletePreferenceRecordsResponse, ENRICHERS, EXPERIENCES, EditPromptGroupInput, Enricher, EnricherInput, ExternalUser, FETCH_CONSENT_MANAGER, FETCH_CONSENT_MANAGER_ID, FETCH_CONSENT_MANAGER_THEME, FETCH_CONSENT_UI_THEMES, FETCH_CONSENT_UI_VARIANTS, FETCH_PRIVACY_CENTER_ID, FailingPreferenceUpdates, FetchApiKeysInput, FileFormatState, FileMetadataState, FormattedAttribute, IMPORT_ONE_TRUST_ASSESSMENT_FORMS, INITIALIZER, Identifier, IdentifierInput, IdentifierMetadataForPreference, IdentifiersAndCreateMissingInput, IndexedCatalogs, Initializer, IntlMessageInput, LargeLanguageModel, Message, MetadataMapping, MonorepoPackageDefinition, NEW_IDENTIFIER_TYPES, NOOP_LOGGER, OWNER_FIELDS, OrganizationPreview, POLICIES, PRIVACY_CENTER, PROCESSING_PURPOSE_SUB_CATEGORIES, PURPOSES, ParentOrganizationTeam, PartitionInput, PendingSafePreferenceUpdates, PendingWithConflictPreferenceUpdates, Plugin, PluginResponse, Policy, PolicyInput, PreferenceAccessTokenInput, PreferenceAccessTokenInputWithIndex, PreferenceIdentifier, PreferenceOptionValue, PreferenceOptionValueInput, PreferenceState, PreferenceTopic, type PreferenceTopicSyncInput, PreferenceUpdateMap, PreferenceUploadReferenceData, PreferencesQueryFilter, PrivacyCenter, PrivacyCenterInput, ProcessingActivity, ProcessingActivityInput, ProcessingPurposeInput, ProcessingPurposeSubCategory, Prompt, PromptCalculatedVariable, PromptGroup, PromptGroupInput, PromptInput, PromptPartial, PromptPartialInput, PromptRuntimeVariable, PromptThread, Purpose, type PurposeInput, PurposeRowMapping, PurposeWithPreferences, REDUCED_REQUESTS_FOR_DATA_SILO_COUNT, REMOVE_REQUEST_IDENTIFIERS, REQUEST_DATA_SILOS, REQUEST_ENRICHERS, REQUEST_FILES, REQUEST_IDENTIFIERS, RETRY_REQUEST_DATA_SILO, RETRY_REQUEST_ENRICHER, RETRY_TRANSIENT_MSGS, Region, RegionInput, ReportPromptRunInput, Repository, RepositoryInput, RequestDataSilo, RequestDataSiloFilters, RequestEnricher, RequestFile, RequestFileCursor, RequestFileResponse, RequestIdentifier, RequestIdentifierMetadata, RequestIdentifiersResponse, RequestUploadReceipts, RetentionSchedule, RetryOptions, RiskCategory, RiskFramework, RiskLevel, RiskMatrix, RiskMatrixColumn, RiskMatrixRow, SERVICE_FIELDS, SKIP_REQUEST_ENRICHER, SOMBRA_VERSION, SUB_DATA_POINTS, SUB_DATA_POINTS_COUNT, SUB_DATA_POINTS_WITH_GUESSES, SYNC_ATTRIBUTE_TYPES, SiloDiscoveryRawResult, SiloDiscoveryResult, SkippedPreferenceUpdates, SoftwareDevelopmentKit, SoftwareDevelopmentKitInput, SubDataPoint, SubDataPointCategory, SubDataPointPurpose, SyncActionInput, SyncPurposesResult, SyncTemplateInput, SyncedConsentUiTheme, SyncedConsentUiVariant, TEAM_FIELDS, TOGGLE_CONSENT_PRECEDENCE, TOGGLE_DATA_SUBJECT, TOGGLE_TELEMETRY_PARTITION_STRATEGY, TOGGLE_UNKNOWN_COOKIE_POLICY, TOGGLE_UNKNOWN_REQUEST_POLICY, TRACKING_PURPOSE_FIELDS, Team, TeamInput, Template, TranscendAttributeValueGql, TranscendCliAirgapBundleAggregateAnalyticsResponse, TranscendCliAirgapBundleTimeseriesAnalyticsResponse, TranscendCliConsentPartitionsResponse, TranscendCliCookieStatsResponse, TranscendCliCookiesResponse, TranscendCliCreateConsentExperienceResponse, TranscendCliCreateConsentPartitionResponse, TranscendCliCreateDataFlowsResponse, TranscendCliDataFlowStatsResponse, TranscendCliDataFlowsResponse, TranscendCliDeleteCookiesResponse, TranscendCliDeleteDataFlowsResponse, TranscendCliExperiencesResponse, TranscendCliFetchConsentManagerIdResponse, TranscendCliFetchConsentManagerResponse, TranscendCliFetchConsentManagerThemeResponse, TranscendCliPurposesResponse, TranscendCliUpdateConsentExperienceResponse, TranscendCliUpdateDataFlowsResponse, TranscendCliUpdateOrCreateCookiesResponse, TranscendClientMutationIdResponse, TranscendConsentManagerConfigGql, TranscendConsentManagerGql, TranscendConsentManagerThemeGql, TranscendConsentPartitionGql, TranscendCookieDomainGql, TranscendCookieGql, TranscendCookieServiceGql, TranscendDataFlowGql, TranscendExperienceGql, TranscendExperiencePurposeGql, TranscendExperienceRegionGql, TranscendMappedDataSiloGql, TranscendOwnerGql, TranscendPreferenceTopicGql, TranscendPreferenceTopicTitle, TranscendPromptPartialTemplated, TranscendPromptTemplated, TranscendPromptsAndVariables, TranscendPurposeGql, TranscendTeamGql, TranscendTrackerStatsGql, TranscendTrackingPurposeGql, TranscendUpdateCookieInputGql, TranscendUpdateDataFlowInputGql, UPDATE_CODE_PACKAGES, UPDATE_CONSENT_EXPERIENCE, UPDATE_CONSENT_MANAGER_DOMAINS, UPDATE_CONSENT_MANAGER_PARTITION, UPDATE_CONSENT_MANAGER_THEME, UPDATE_CONSENT_MANAGER_TO_LATEST, UPDATE_CONSENT_MANAGER_VERSION, UPDATE_CONSENT_UI_THEME, UPDATE_CONSENT_UI_VARIANT, UPDATE_DATA_FLOWS, UPDATE_DATA_SILOS, UPDATE_DATA_SUBJECT, UPDATE_ENRICHER, UPDATE_IDENTIFIER, UPDATE_LOAD_OPTIONS, UPDATE_OR_CREATE_COOKIES, UPDATE_OR_CREATE_DATA_POINT, UPDATE_POLICIES, UPDATE_PRIVACY_CENTER, UPDATE_PROCESSING_PURPOSE_SUB_CATEGORIES, User, UserPreview, UserRole, Vendor, VendorInput, addMessagesToPromptRun, assumeRole, buildConsentChunks, buildTranscendGraphQLClient, buildTranscendGraphQLClientGeneric, checkIfPendingPreferenceUpdatesAreNoOp, checkIfPendingPreferenceUpdatesCauseConflict, consentWindowHasAny, convertToDataSubjectAllowlist, convertToDataSubjectBlockList, createActionItemCollection, createActionItems, createAgent, createAgentFile, createAgentFunction, createApiKey, createBusinessEntity, createDataCategory, createDataFlows, createDataSubject, createMonorepoPackageDefinition, createOrUpdatePreferenceOptionValues, createPreferenceAccessTokens, createProcessingPurpose, createPrompt, createPromptGroup, createPromptPartial, createRepository, createSoftwareDevelopmentKit, createSombraGotInstance, createTeam, createTranscendConsentGotInstance, createVendor, deleteApiKey, deployConsentManager, fetchActiveSiloDiscoPlugin, fetchAirgapBundleAggregateAnalytics, fetchAirgapBundleTimeseriesAnalytics, fetchAllActionItemCollections, fetchAllActionItems, fetchAllActions, fetchAllAgentFiles, fetchAllAgentFunctions, fetchAllAgents, fetchAllApiKeys, fetchAllAssessments, fetchAllAttributeValues, fetchAllAttributes, fetchAllBusinessEntities, fetchAllCatalogs, fetchAllCodePackages, fetchAllCookies, fetchAllDataCategories, fetchAllDataFlows, fetchAllDataPoints, fetchAllDataSilos, fetchAllDataSubjects, fetchAllEnrichers, fetchAllIdentifiers, fetchAllLargeLanguageModels, fetchAllMessages, fetchAllPolicies, fetchAllPreferenceOptionValues, fetchAllPreferenceTopics, fetchAllPrivacyCenters, fetchAllProcessingActivities, fetchAllProcessingPurposes, fetchAllPromptGroups, fetchAllPromptPartials, fetchAllPromptThreads, fetchAllPrompts, fetchAllPurposes, fetchAllPurposesAndPreferences, fetchAllRepositories, fetchAllRequestAttributeKeys, fetchAllRequestEnrichers, fetchAllRequestIdentifierMetadata, fetchAllRequestIdentifiers, fetchAllSiloDiscoveryResults, fetchAllSoftwareDevelopmentKits, fetchAllSubDataPoints, fetchAllTeams, fetchAllTemplates, fetchAllUsers, fetchAllVendors, fetchAndIndexCatalogs, fetchApiKeys, fetchConsentManager, fetchConsentManagerAnalyticsData, fetchConsentManagerExperiences, fetchConsentManagerId, fetchConsentManagerTheme, fetchConsentPreferences, fetchConsentPreferencesChunked, fetchConsentThemes, fetchConsentVariants, fetchEnrichedDataSilos, fetchIdentifiersAndCreateMissing, fetchParentOrganizationTeams, fetchPartitions, fetchPrivacyCenterId, fetchPrivacyCenterUrl, fetchPromptsWithVariables, fetchRequestDataSilo, fetchRequestDataSilos, fetchRequestDataSilosCount, fetchRequestFilesForRequest, findEarliestDayWithData, findLatestDayWithData, formatAttributeValues, formatRegions, getBoundsFromConsentFilter, getComparisonTimeForRecord, getPreferenceIdentifiersFromRow, getPreferenceMetadataFromRow, getPreferenceUpdatesFromRow, getPreferencesForIdentifiers, getUniquePreferenceIdentifierNamesFromRow, isTransientError, iterateConsentPages, loadReferenceData, loginUser, makeGraphQLRequest, parseAssessmentDisplayLogic, parseAssessmentRiskLogic, pickConsentChunkMode, reportPromptRun, resolveParentTeamIdsByName, retryRequestEnricher, setResourceAttributes, syncAction, syncActionItemCollections, syncActionItems, syncAgentFiles, syncAgentFunctions, syncAgents, syncAttribute, syncBusinessEntities, syncConsentManager, syncConsentManagerExperiences, syncConsentUiThemes, syncConsentUiVariants, syncCookies, syncDataCategories, syncDataFlows, syncDataSiloDependencies, syncDataSubject, syncEnricher, syncIdentifier, syncIntlMessages, syncPartitions, syncPolicies, syncPreferenceOptionValues, syncPreferenceTopics, syncPrivacyCenter, syncProcessingActivities, syncProcessingPurposes, syncPromptGroups, syncPromptPartials, syncPrompts, syncPurposes, syncRepositories, syncSoftwareDevelopmentKits, syncTeams, syncTemplate, syncVendors, transformPreferenceRecordToCsv, updateActionItem, updateActionItemCollection, updateAgentFiles, updateAgentFunctions, updateAgents, updateBusinessEntities, updateConsentManagerToLatest, updateDataCategories, updateDataFlows, updateIntlMessages, updateOrCreateCookies, updatePolicies, updateProcessingPurposes, updatePromptGroups, updatePromptPartials, updatePrompts, updateRepositories, updateSoftwareDevelopmentKits, updateTeam, updateVendors, uploadSiloDiscoveryResults, validateSombraVersion, withTransientRetry };
45276
+ export { AIRGAP_BUNDLE_AGGREGATE_ANALYTICS, AIRGAP_BUNDLE_TIMESERIES_ANALYTICS, ASSESSMENTS, ASSESSMENT_SECTION_FIELDS, ATTRIBUTE_KEYS_REQUESTS, ATTRIBUTE_VALUE_FIELDS, Action, ActionItem, ActionItemAttributeKey, ActionItemCollection, ActionItemCollectionInput, ActionItemInput, ActionItemRaw, AddMessagesToPromptRunInput, Agent, AgentFile, AgentFileFilterBy, AgentFileInput, AgentFunction, AgentFunctionInput, AgentInput, AirgapBundleAggregateAnalyticsDimensionsGql, AirgapBundleAggregateAnalyticsItemGql, AirgapBundleTimeseriesAnalyticsItemGql, ApiKey, Assessment, AssessmentAction, AssessmentAnswer, AssessmentAnswerOption, AssessmentComment, AssessmentGroup, AssessmentNestedRule, AssessmentPreviousSubmission, AssessmentQuestion, AssessmentResource, AssessmentRiskLogic, AssessmentRule, AssessmentRuleWithOperands, AssessmentRuleWithoutOperands, AssessmentSection, Attribute, AttributeInput, AttributeKey, AttributeValue, AttributeValueInput, BULK_REQUEST_FILES, BusinessEntity, BusinessEntityInput, CHANGE_REQUEST_DATA_SILO_STATUS, CODE_PACKAGES, CONSENT_MANAGER_ANALYTICS_DATA, CONSENT_PARTITIONS, COOKIES, COOKIE_STATS, CREATE_CODE_PACKAGE, CREATE_CONSENT_EXPERIENCE, CREATE_CONSENT_MANAGER, CREATE_CONSENT_PARTITION, CREATE_CONSENT_UI_THEME, CREATE_CONSENT_UI_VARIANT, CREATE_DATA_FLOWS, CREATE_DATA_SILOS, CREATE_DATA_SUBJECT, CREATE_ENRICHER, CREATE_IDENTIFIER, CREATE_PROCESSING_PURPOSE_SUB_CATEGORY, Catalog, ChunkMode, CodePackage, ColumnIdentifierMap, ColumnMetadataMap, ColumnPurposeMap, ConsentExperience, ConsentManageExperienceInput, ConsentManager, ConsentManagerInput, ConsentManagerMetric, ConsentPreferenceResponse, ConsentUiTheme, ConsentUiThemesQueryResponse, ConsentUiVariant, ConsentUiVariantsQueryResponse, CookieInput, CookieOrder, CreatedApiKey, DATAPOINT_EXPORT, DATA_FLOWS, DATA_FLOW_STATS, DATA_POINTS, DATA_POINT_COUNT, DATA_SILOS, DATA_SILOS_ENRICHED, DATA_SILO_EXPORT, DATA_SILO_SOMBRA, DATA_SUBJECTS, DELETE_COOKIES, DELETE_DATA_FLOWS, DELETE_PRIVACY_CENTER_FOOTER_LINKS, DEPLOYED_PRIVACY_CENTER_URL, DEPLOY_CONSENT_MANAGER, DataCategoryInput, DataFlowAttributeInput, DataFlowInput, DataFlowOrder, DataPoint, DataPointWithSubDataPoint, DataSilo, type DataSiloAttributeValue, DataSiloEnriched, DataSubCategory, DataSubject, DataSubjectInput, DataSubjectRef, DeletePreferenceRecordCliCsvRow, DeletePreferenceRecordsInput, DeletePreferenceRecordsResponse, ENRICHERS, EXPERIENCES, EditPromptGroupInput, Enricher, EnricherInput, ExternalUser, FETCH_CONSENT_MANAGER, FETCH_CONSENT_MANAGER_ID, FETCH_CONSENT_MANAGER_THEME, FETCH_CONSENT_UI_THEMES, FETCH_CONSENT_UI_VARIANTS, FETCH_PRIVACY_CENTER_ID, FailingPreferenceUpdates, FetchApiKeysInput, FileFormatState, FileMetadataState, FormattedAttribute, IMPORT_ONE_TRUST_ASSESSMENT_FORMS, INITIALIZER, Identifier, IdentifierInput, IdentifierMetadataForPreference, IdentifiersAndCreateMissingInput, IndexedCatalogs, Initializer, IntlMessageInput, LargeLanguageModel, Message, MetadataMapping, MonorepoPackageDefinition, NEW_IDENTIFIER_TYPES, NOOP_LOGGER, OWNER_FIELDS, OrganizationPreview, POLICIES, PRIVACY_CENTER, PROCESSING_PURPOSE_SUB_CATEGORIES, PURPOSES, ParentOrganizationTeam, PartitionInput, PendingSafePreferenceUpdates, PendingWithConflictPreferenceUpdates, Plugin, PluginResponse, Policy, PolicyInput, PreferenceAccessTokenInput, PreferenceAccessTokenInputWithIndex, PreferenceIdentifier, PreferenceOptionValue, PreferenceOptionValueInput, PreferenceState, PreferenceTopic, type PreferenceTopicSyncInput, PreferenceUpdateMap, PreferenceUploadReferenceData, PreferencesQueryFilter, PrivacyCenter, PrivacyCenterChildOrganization, PrivacyCenterFooterLink, PrivacyCenterFooterLinkIcon, PrivacyCenterFooterLinkInput, PrivacyCenterInput, ProcessingActivity, ProcessingActivityInput, ProcessingPurposeInput, ProcessingPurposeSubCategory, Prompt, PromptCalculatedVariable, PromptGroup, PromptGroupInput, PromptInput, PromptPartial, PromptPartialInput, PromptRuntimeVariable, PromptThread, Purpose, type PurposeInput, PurposeRowMapping, PurposeWithPreferences, REDUCED_REQUESTS_FOR_DATA_SILO_COUNT, REMOVE_REQUEST_IDENTIFIERS, REQUEST_DATA_SILOS, REQUEST_ENRICHERS, REQUEST_FILES, REQUEST_IDENTIFIERS, RETRY_REQUEST_DATA_SILO, RETRY_REQUEST_ENRICHER, RETRY_TRANSIENT_MSGS, Region, RegionInput, ReportPromptRunInput, Repository, RepositoryInput, RequestDataSilo, RequestDataSiloFilters, RequestEnricher, RequestFile, RequestFileCursor, RequestFileResponse, RequestIdentifier, RequestIdentifierMetadata, RequestIdentifiersResponse, RequestUploadReceipts, RetentionSchedule, RetryOptions, RiskCategory, RiskFramework, RiskLevel, RiskMatrix, RiskMatrixColumn, RiskMatrixRow, SERVICE_FIELDS, SKIP_REQUEST_ENRICHER, SOMBRA_VERSION, SUB_DATA_POINTS, SUB_DATA_POINTS_COUNT, SUB_DATA_POINTS_WITH_GUESSES, SYNC_ATTRIBUTE_TYPES, SiloDiscoveryRawResult, SiloDiscoveryResult, SkippedPreferenceUpdates, SoftwareDevelopmentKit, SoftwareDevelopmentKitInput, SubDataPoint, SubDataPointCategory, SubDataPointPurpose, SyncActionInput, SyncPurposesResult, SyncTemplateInput, SyncedConsentUiTheme, SyncedConsentUiVariant, TEAM_FIELDS, TOGGLE_CONSENT_PRECEDENCE, TOGGLE_DATA_SUBJECT, TOGGLE_TELEMETRY_PARTITION_STRATEGY, TOGGLE_UNKNOWN_COOKIE_POLICY, TOGGLE_UNKNOWN_REQUEST_POLICY, TRACKING_PURPOSE_FIELDS, Team, TeamInput, Template, TranscendAttributeValueGql, TranscendCliAirgapBundleAggregateAnalyticsResponse, TranscendCliAirgapBundleTimeseriesAnalyticsResponse, TranscendCliConsentPartitionsResponse, TranscendCliCookieStatsResponse, TranscendCliCookiesResponse, TranscendCliCreateConsentExperienceResponse, TranscendCliCreateConsentPartitionResponse, TranscendCliCreateDataFlowsResponse, TranscendCliDataFlowStatsResponse, TranscendCliDataFlowsResponse, TranscendCliDeleteCookiesResponse, TranscendCliDeleteDataFlowsResponse, TranscendCliExperiencesResponse, TranscendCliFetchConsentManagerIdResponse, TranscendCliFetchConsentManagerResponse, TranscendCliFetchConsentManagerThemeResponse, TranscendCliPurposesResponse, TranscendCliUpdateConsentExperienceResponse, TranscendCliUpdateDataFlowsResponse, TranscendCliUpdateOrCreateCookiesResponse, TranscendClientMutationIdResponse, TranscendConsentManagerConfigGql, TranscendConsentManagerGql, TranscendConsentManagerThemeGql, TranscendConsentPartitionGql, TranscendCookieDomainGql, TranscendCookieGql, TranscendCookieServiceGql, TranscendDataFlowGql, TranscendExperienceGql, TranscendExperiencePurposeGql, TranscendExperienceRegionGql, TranscendMappedDataSiloGql, TranscendOwnerGql, TranscendPreferenceTopicGql, TranscendPreferenceTopicTitle, TranscendPromptPartialTemplated, TranscendPromptTemplated, TranscendPromptsAndVariables, TranscendPurposeGql, TranscendTeamGql, TranscendTrackerStatsGql, TranscendTrackingPurposeGql, TranscendUpdateCookieInputGql, TranscendUpdateDataFlowInputGql, UPDATE_CODE_PACKAGES, UPDATE_CONSENT_EXPERIENCE, UPDATE_CONSENT_MANAGER_DOMAINS, UPDATE_CONSENT_MANAGER_PARTITION, UPDATE_CONSENT_MANAGER_THEME, UPDATE_CONSENT_MANAGER_TO_LATEST, UPDATE_CONSENT_MANAGER_VERSION, UPDATE_CONSENT_UI_THEME, UPDATE_CONSENT_UI_VARIANT, UPDATE_DATA_FLOWS, UPDATE_DATA_SILOS, UPDATE_DATA_SUBJECT, UPDATE_ENRICHER, UPDATE_IDENTIFIER, UPDATE_LOAD_OPTIONS, UPDATE_OR_CREATE_COOKIES, UPDATE_OR_CREATE_DATA_POINT, UPDATE_POLICIES, UPDATE_PRIVACY_CENTER, UPDATE_PRIVACY_CENTER_FOOTER_LINKS, UPDATE_PROCESSING_PURPOSE_SUB_CATEGORIES, User, UserPreview, UserRole, Vendor, VendorInput, WorkflowConfigMatchInput, WorkflowConfigMatchResolution, WorkflowConfigNode, WorkflowConfigSyncInput, addMessagesToPromptRun, assumeRole, buildConsentChunks, buildTranscendGraphQLClient, buildTranscendGraphQLClientGeneric, checkIfPendingPreferenceUpdatesAreNoOp, checkIfPendingPreferenceUpdatesCauseConflict, consentWindowHasAny, convertToDataSubjectAllowlist, convertToDataSubjectBlockList, createActionItemCollection, createActionItems, createAgent, createAgentFile, createAgentFunction, createApiKey, createBusinessEntity, createDataCategory, createDataFlows, createDataSubject, createMonorepoPackageDefinition, createOrUpdatePreferenceOptionValues, createPreferenceAccessTokens, createProcessingPurpose, createPrompt, createPromptGroup, createPromptPartial, createRepository, createSoftwareDevelopmentKit, createSombraGotInstance, createTeam, createTranscendConsentGotInstance, createVendor, deleteApiKey, deployConsentManager, fetchActiveSiloDiscoPlugin, fetchAirgapBundleAggregateAnalytics, fetchAirgapBundleTimeseriesAnalytics, fetchAllActionItemCollections, fetchAllActionItems, fetchAllActions, fetchAllAgentFiles, fetchAllAgentFunctions, fetchAllAgents, fetchAllApiKeys, fetchAllAssessments, fetchAllAttributeValues, fetchAllAttributes, fetchAllBusinessEntities, fetchAllCatalogs, fetchAllCodePackages, fetchAllCookies, fetchAllDataCategories, fetchAllDataFlows, fetchAllDataPoints, fetchAllDataSilos, fetchAllDataSubjects, fetchAllEnrichers, fetchAllIdentifiers, fetchAllLargeLanguageModels, fetchAllMessages, fetchAllPolicies, fetchAllPreferenceOptionValues, fetchAllPreferenceTopics, fetchAllPrivacyCenters, fetchAllProcessingActivities, fetchAllProcessingPurposes, fetchAllPromptGroups, fetchAllPromptPartials, fetchAllPromptThreads, fetchAllPrompts, fetchAllPurposes, fetchAllPurposesAndPreferences, fetchAllRepositories, fetchAllRequestAttributeKeys, fetchAllRequestEnrichers, fetchAllRequestIdentifierMetadata, fetchAllRequestIdentifiers, fetchAllSiloDiscoveryResults, fetchAllSoftwareDevelopmentKits, fetchAllSubDataPoints, fetchAllTeams, fetchAllTemplates, fetchAllUsers, fetchAllVendors, fetchAllWorkflowConfigs, fetchAndIndexCatalogs, fetchApiKeys, fetchConsentManager, fetchConsentManagerAnalyticsData, fetchConsentManagerExperiences, fetchConsentManagerId, fetchConsentManagerTheme, fetchConsentPreferences, fetchConsentPreferencesChunked, fetchConsentThemes, fetchConsentVariants, fetchEnrichedDataSilos, fetchIdentifiersAndCreateMissing, fetchParentOrganizationTeams, fetchPartitions, fetchPrivacyCenterId, fetchPrivacyCenterUrl, fetchPromptsWithVariables, fetchRequestDataSilo, fetchRequestDataSilos, fetchRequestDataSilosCount, fetchRequestFilesForRequest, findEarliestDayWithData, findLatestDayWithData, formatAttributeValues, formatRegions, getBoundsFromConsentFilter, getComparisonTimeForRecord, getPreferenceIdentifiersFromRow, getPreferenceMetadataFromRow, getPreferenceUpdatesFromRow, getPreferencesForIdentifiers, getUniquePreferenceIdentifierNamesFromRow, isTransientError, iterateConsentPages, loadReferenceData, loginUser, makeGraphQLRequest, parseAssessmentDisplayLogic, parseAssessmentRiskLogic, pickConsentChunkMode, reportPromptRun, resolveDisplayedChildOrganizationIds, resolveParentTeamIdsByName, resolveWorkflowConfigMatch, retryRequestEnricher, setResourceAttributes, syncAction, syncActionItemCollections, syncActionItems, syncAgentFiles, syncAgentFunctions, syncAgents, syncAttribute, syncBusinessEntities, syncConsentManager, syncConsentManagerExperiences, syncConsentUiThemes, syncConsentUiVariants, syncCookies, syncDataCategories, syncDataFlows, syncDataSiloDependencies, syncDataSubject, syncEnricher, syncIdentifier, syncIntlMessages, syncPartitions, syncPolicies, syncPreferenceOptionValues, syncPreferenceTopics, syncPrivacyCenter, syncPrivacyCenterFooterLinks, syncProcessingActivities, syncProcessingPurposes, syncPromptGroups, syncPromptPartials, syncPrompts, syncPurposes, syncRepositories, syncSoftwareDevelopmentKits, syncTeams, syncTemplate, syncVendors, syncWorkflowConfigs, transformPreferenceRecordToCsv, updateActionItem, updateActionItemCollection, updateAgentFiles, updateAgentFunctions, updateAgents, updateBusinessEntities, updateConsentManagerToLatest, updateDataCategories, updateDataFlows, updateIntlMessages, updateOrCreateCookies, updatePolicies, updateProcessingPurposes, updatePromptGroups, updatePromptPartials, updatePrompts, updateRepositories, updateSoftwareDevelopmentKits, updateTeam, updateVendors, uploadSiloDiscoveryResults, validateSombraVersion, withTransientRetry, workflowConfigInputLabel, workflowConfigMatchKey, workflowRegionListKey };
44983
45277
  //# sourceMappingURL=index.d.mts.map