@transcend-io/sdk 1.5.0 → 1.6.1

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, 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";
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, PolicyType, 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";
@@ -41244,6 +41244,8 @@ interface Policy {
41244
41244
  title: {
41245
41245
  /** Default message */defaultMessage: string;
41246
41246
  };
41247
+ /** Policy type */
41248
+ type: PolicyType;
41247
41249
  /** Disabled locales */
41248
41250
  disabledLocales: LocaleValue[];
41249
41251
  /** Versions */
@@ -42050,6 +42052,10 @@ declare const PROCESSING_PURPOSE_SUB_CATEGORIES: string;
42050
42052
  declare const CREATE_PROCESSING_PURPOSE_SUB_CATEGORY: string;
42051
42053
  declare const UPDATE_PROCESSING_PURPOSE_SUB_CATEGORIES: string;
42052
42054
  //#endregion
42055
+ //#region src/consent/gqls/consentWorkflowTrigger.d.ts
42056
+ declare const CONSENT_WORKFLOW_TRIGGERS: DocumentNode;
42057
+ declare const CREATE_OR_UPDATE_CONSENT_WORKFLOW_TRIGGER: DocumentNode;
42058
+ //#endregion
42053
42059
  //#region src/consent/resolveDisplayedChildOrganizationIds.d.ts
42054
42060
  /**
42055
42061
  * Resolve displayed child organization URIs or IDs to organization IDs.
@@ -42340,6 +42346,11 @@ declare function syncPartitions(client: GraphQLClient, partitionInputs: Partitio
42340
42346
  interface PolicyInput {
42341
42347
  /** The title of the policy */
42342
42348
  title: string;
42349
+ /**
42350
+ * Policy type. Required by the API on create; optional on update.
42351
+ * When omitted on create, inferred from title.
42352
+ */
42353
+ type?: PolicyType;
42343
42354
  /** Effective date of policy */
42344
42355
  effectiveOn?: string;
42345
42356
  /** Whether or not to disable the effective date */
@@ -42349,6 +42360,13 @@ interface PolicyInput {
42349
42360
  /** The languages for which the policy is disabled for */
42350
42361
  disabledLocales?: LocaleValue[];
42351
42362
  }
42363
+ /**
42364
+ * Infer PolicyType from a policy title when type is not provided on create.
42365
+ *
42366
+ * @param title - Policy title
42367
+ * @returns Inferred policy type
42368
+ */
42369
+ declare function inferPolicyTypeFromTitle(title: string): PolicyType;
42352
42370
  /**
42353
42371
  * Update or create policies
42354
42372
  *
@@ -42472,6 +42490,214 @@ declare function syncPrivacyCenter(client: GraphQLClient, privacyCenter: Privacy
42472
42490
  skipPublish?: boolean;
42473
42491
  }): Promise<boolean>;
42474
42492
  //#endregion
42493
+ //#region src/consent/fetchAllConsentWorkflowTriggers.d.ts
42494
+ interface ConsentWorkflowTrigger {
42495
+ /** ID of the trigger */
42496
+ id: string;
42497
+ /** Name of the trigger */
42498
+ name: string;
42499
+ /** JSON string of the trigger condition */
42500
+ triggerCondition: string | null;
42501
+ /** Whether the trigger runs silently */
42502
+ isSilent: boolean;
42503
+ /** Whether unauthenticated requests are allowed */
42504
+ allowUnauthenticated: boolean;
42505
+ /** Whether the trigger is active */
42506
+ isActive: boolean;
42507
+ /** The workflow config ID */
42508
+ workflowConfigId: string | null;
42509
+ /** The request action associated with the trigger */
42510
+ action: {
42511
+ /** Action type (e.g. ERASURE, ACCESS) */type: RequestAction;
42512
+ };
42513
+ /** The data subject associated with the trigger */
42514
+ subject: {
42515
+ /** Data subject type */type: string;
42516
+ };
42517
+ /** Data silos associated with this trigger */
42518
+ dataSilos: {
42519
+ /** Title of data silo */title: string;
42520
+ }[];
42521
+ }
42522
+ /**
42523
+ * Fetch all consent workflow triggers in the organization
42524
+ *
42525
+ * @param client - GraphQL client
42526
+ * @param options - Options
42527
+ * @returns All consent workflow triggers in the organization
42528
+ */
42529
+ declare function fetchAllConsentWorkflowTriggers(client: GraphQLClient, options?: {
42530
+ /** Logger instance */logger?: Logger;
42531
+ }): Promise<ConsentWorkflowTrigger[]>;
42532
+ //#endregion
42533
+ //#region src/dsr-automation/fetchAllWorkflowConfigs.d.ts
42534
+ /** Raw workflow config node returned by GraphQL */
42535
+ interface WorkflowConfigNode {
42536
+ /** Workflow config ID */
42537
+ id: string;
42538
+ /** Title */
42539
+ title: {
42540
+ /** Default message */defaultMessage: string;
42541
+ };
42542
+ /** Subtitle */
42543
+ subtitle: {
42544
+ /** Default message */defaultMessage: string;
42545
+ } | null;
42546
+ /** Description */
42547
+ description: {
42548
+ /** Default message */defaultMessage: string;
42549
+ } | null;
42550
+ /** Internal name */
42551
+ internalName: string | null;
42552
+ /** Visibility tier */
42553
+ workflowConfigVisibility: WorkflowConfigVisibility;
42554
+ /** Workflow type (DSR or PREFERENCE_MANAGEMENT) */
42555
+ workflowConfigType: WorkflowConfigType;
42556
+ /** Whether the workflow collects the data subject's region */
42557
+ collectDataSubjectRegions: CollectDataSubjectRegions | null;
42558
+ /** Region allow list */
42559
+ regionList: (IsoCountryCode | IsoCountrySubdivisionCode)[];
42560
+ /** Per-region request expiry times */
42561
+ expiryTime: {
42562
+ /** Region code (or 'default') */region: 'default' | IsoCountryCode | IsoCountrySubdivisionCode; /** Expiry time in days */
42563
+ value: number;
42564
+ }[] | null;
42565
+ /** Request action */
42566
+ action: {
42567
+ /** Action ID */id: string; /** Action type */
42568
+ type: RequestAction;
42569
+ };
42570
+ /** Data subject */
42571
+ subject: {
42572
+ /** Data subject ID */id: string; /** Data subject type */
42573
+ type: string;
42574
+ } | null;
42575
+ /** Attribute keys (custom fields) associated with the workflow */
42576
+ WorkflowConfigAttributeKeys: {
42577
+ /** Attribute key */attributeKey: {
42578
+ /** Attribute key ID */id: string; /** Attribute key name */
42579
+ name: string;
42580
+ };
42581
+ }[] | null;
42582
+ }
42583
+ /** Alias used by consent-workflow-trigger helpers */
42584
+ type WorkflowConfigSummary = WorkflowConfigNode;
42585
+ /**
42586
+ * Display title for a workflow config, matching the admin UI:
42587
+ * `internalName` when set, otherwise the external title.
42588
+ *
42589
+ * @param workflow - Workflow config
42590
+ * @returns Display title used in Preference Workflows dropdown
42591
+ */
42592
+ declare function getWorkflowConfigDisplayTitle(workflow: WorkflowConfigNode): string;
42593
+ /**
42594
+ * Fetch all workflow configs in the organization
42595
+ *
42596
+ * @param client - GraphQL client
42597
+ * @param options - Options
42598
+ * @returns All workflow configs
42599
+ */
42600
+ declare function fetchAllWorkflowConfigs(client: GraphQLClient, options?: {
42601
+ /** Filter by workflow config type */workflowConfigType?: WorkflowConfigType; /** Logger instance */
42602
+ logger?: Logger;
42603
+ }): Promise<WorkflowConfigNode[]>;
42604
+ /**
42605
+ * Resolve a YAML `workflow-title` to a DSR workflow config.
42606
+ * Matches against display title (`internalName` or external title).
42607
+ *
42608
+ * @param workflows - Candidate workflow configs
42609
+ * @param workflowTitle - Title from transcend.yml
42610
+ * @returns Matching workflow
42611
+ */
42612
+ declare function resolveWorkflowConfigByTitle(workflows: WorkflowConfigNode[], workflowTitle: string): WorkflowConfigNode;
42613
+ //#endregion
42614
+ //#region src/consent/syncConsentWorkflowTriggers.d.ts
42615
+ interface ConsentWorkflowTriggerPurposeInput {
42616
+ /** The tracking type slug of the purpose */
42617
+ 'tracking-type': string;
42618
+ /** The matching consent state for the purpose */
42619
+ 'matching-state': boolean;
42620
+ }
42621
+ interface ConsentWorkflowTriggerSyncInput {
42622
+ /** The name of the consent workflow trigger */
42623
+ name: string;
42624
+ /**
42625
+ * Purposes and their matching consent states.
42626
+ * Required (non-empty). Used to derive triggerCondition.
42627
+ */
42628
+ purposes: ConsentWorkflowTriggerPurposeInput[];
42629
+ /**
42630
+ * DSR workflow display title (internalName or external title).
42631
+ * V2 mode — mutually exclusive with action-type / data-silo-titles.
42632
+ */
42633
+ 'workflow-title'?: string;
42634
+ /** The action type (e.g. ERASURE, ACCESS). Legacy mode; required on create when no workflow-title. */
42635
+ 'action-type'?: RequestAction;
42636
+ /** The data subject type. Required on create (legacy) or always when set. */
42637
+ 'data-subject-type'?: string;
42638
+ /** Whether the trigger runs silently */
42639
+ 'is-silent'?: boolean;
42640
+ /** Whether unauthenticated requests are allowed */
42641
+ 'allow-unauthenticated'?: boolean;
42642
+ /** Whether the trigger is active */
42643
+ 'is-active'?: boolean;
42644
+ /** Titles of data silos associated with this trigger (legacy mode only) */
42645
+ 'data-silo-titles'?: string[];
42646
+ }
42647
+ /**
42648
+ * Build the GraphQL triggerCondition JSON string from purposes,
42649
+ * matching the admin dashboard Preferences → Consent Workflows UI.
42650
+ *
42651
+ * @param purposes - Purpose tracking types and matching states
42652
+ * @returns JSON string of `{ And: [{ [trackingType]: matchingState }, ...] }`
42653
+ */
42654
+ declare function buildTriggerConditionFromPurposes(purposes: ConsentWorkflowTriggerPurposeInput[]): string;
42655
+ /**
42656
+ * Parse GraphQL triggerCondition JSON into purposes for transcend.yml.
42657
+ * Expects ConditionalExpression shape: `{ And: [{ [trackingType]: boolean }, ...] }`.
42658
+ *
42659
+ * @param triggerCondition - JSON string from GraphQL (or null)
42660
+ * @returns Purpose entries for YAML, or empty if unparseable
42661
+ */
42662
+ declare function parsePurposesFromTriggerCondition(triggerCondition: string | null | undefined): ConsentWorkflowTriggerPurposeInput[];
42663
+ /**
42664
+ * Whether this YAML entry is Workflows V2 mode (links a DSR workflow config).
42665
+ *
42666
+ * @param trigger - Sync input
42667
+ * @returns True when workflow-title is set
42668
+ */
42669
+ declare function isConsentWorkflowTriggerV2Mode(trigger: Pick<ConsentWorkflowTriggerSyncInput, 'workflow-title'>): boolean;
42670
+ /**
42671
+ * Validate mutual exclusivity and required fields for a trigger input.
42672
+ * Pure helper for unit tests and sync.
42673
+ *
42674
+ * @param trigger - Sync input
42675
+ * @param options - Whether the trigger already exists in the org
42676
+ */
42677
+ declare function validateConsentWorkflowTriggerMode(trigger: ConsentWorkflowTriggerSyncInput, options: {
42678
+ /** True when updating an existing trigger by name */isUpdate: boolean;
42679
+ }): void;
42680
+ /**
42681
+ * Resolve workflow display title from a workflowConfigId.
42682
+ *
42683
+ * @param workflows - DSR workflows
42684
+ * @param workflowConfigId - Linked workflow config ID
42685
+ * @returns Display title, or undefined if not found
42686
+ */
42687
+ declare function resolveWorkflowTitleFromId(workflows: WorkflowConfigSummary[], workflowConfigId: string | null | undefined): string | undefined;
42688
+ /**
42689
+ * Sync consent workflow triggers to Transcend
42690
+ *
42691
+ * @param client - GraphQL client
42692
+ * @param inputs - Consent workflow trigger inputs from YAML
42693
+ * @param options - Options
42694
+ * @returns True if run without error
42695
+ */
42696
+ declare function syncConsentWorkflowTriggers(client: GraphQLClient, inputs: ConsentWorkflowTriggerSyncInput[], options?: {
42697
+ /** Logger instance */logger?: Logger; /** Page size when fetching data silos */
42698
+ pageSize?: number;
42699
+ }): Promise<boolean>;
42700
+ //#endregion
42475
42701
  //#region src/consent/syncProcessingPurposes.d.ts
42476
42702
  interface ProcessingPurposeInput {
42477
42703
  /** Name of processing purpose */
@@ -42588,6 +42814,7 @@ declare const RequestIdentifier: t.TypeC<{
42588
42814
  adobeAudienceManagerId: unknown;
42589
42815
  adobeExperienceCloudId: unknown;
42590
42816
  adobeTargetId: unknown;
42817
+ adobeCampaignRecipientId: unknown;
42591
42818
  transcend: unknown;
42592
42819
  }>;
42593
42820
  }>;
@@ -42630,6 +42857,7 @@ declare const RequestIdentifiersResponse: t.TypeC<{
42630
42857
  adobeAudienceManagerId: unknown;
42631
42858
  adobeExperienceCloudId: unknown;
42632
42859
  adobeTargetId: unknown;
42860
+ adobeCampaignRecipientId: unknown;
42633
42861
  transcend: unknown;
42634
42862
  }>;
42635
42863
  }>>;
@@ -43333,67 +43561,6 @@ declare function syncTemplate(client: GraphQLClient, template: SyncTemplateInput
43333
43561
  /** Logger instance */logger?: Logger;
43334
43562
  }): Promise<void>;
43335
43563
  //#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
43564
  //#region src/dsr-automation/syncWorkflowConfigs.d.ts
43398
43565
  interface WorkflowConfigSyncInput {
43399
43566
  /** User-facing title */
@@ -45273,5 +45440,5 @@ interface MonorepoPackageDefinition {
45273
45440
  }
45274
45441
  declare function createMonorepoPackageDefinition(name: string, directory: string): MonorepoPackageDefinition;
45275
45442
  //#endregion
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 };
45443
+ 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, CONSENT_WORKFLOW_TRIGGERS, 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_OR_UPDATE_CONSENT_WORKFLOW_TRIGGER, CREATE_PROCESSING_PURPOSE_SUB_CATEGORY, Catalog, ChunkMode, CodePackage, ColumnIdentifierMap, ColumnMetadataMap, ColumnPurposeMap, ConsentExperience, ConsentManageExperienceInput, ConsentManager, ConsentManagerInput, ConsentManagerMetric, ConsentPreferenceResponse, ConsentUiTheme, ConsentUiThemesQueryResponse, ConsentUiVariant, ConsentUiVariantsQueryResponse, ConsentWorkflowTrigger, ConsentWorkflowTriggerPurposeInput, ConsentWorkflowTriggerSyncInput, 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, WorkflowConfigSummary, WorkflowConfigSyncInput, addMessagesToPromptRun, assumeRole, buildConsentChunks, buildTranscendGraphQLClient, buildTranscendGraphQLClientGeneric, buildTriggerConditionFromPurposes, 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, fetchAllConsentWorkflowTriggers, 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, getWorkflowConfigDisplayTitle, inferPolicyTypeFromTitle, isConsentWorkflowTriggerV2Mode, isTransientError, iterateConsentPages, loadReferenceData, loginUser, makeGraphQLRequest, parseAssessmentDisplayLogic, parseAssessmentRiskLogic, parsePurposesFromTriggerCondition, pickConsentChunkMode, reportPromptRun, resolveDisplayedChildOrganizationIds, resolveParentTeamIdsByName, resolveWorkflowConfigByTitle, resolveWorkflowConfigMatch, resolveWorkflowTitleFromId, retryRequestEnricher, setResourceAttributes, syncAction, syncActionItemCollections, syncActionItems, syncAgentFiles, syncAgentFunctions, syncAgents, syncAttribute, syncBusinessEntities, syncConsentManager, syncConsentManagerExperiences, syncConsentUiThemes, syncConsentUiVariants, syncConsentWorkflowTriggers, 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, validateConsentWorkflowTriggerMode, validateSombraVersion, withTransientRetry, workflowConfigInputLabel, workflowConfigMatchKey, workflowRegionListKey };
45277
45444
  //# sourceMappingURL=index.d.mts.map