@transcend-io/sdk 1.2.5 → 1.2.6

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, ConsentTrackerSource, ConsentTrackerStatus, 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, TranscendProduct, UnknownRequestPolicy } from "@transcend-io/privacy-types";
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";
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";
@@ -41208,6 +41208,139 @@ declare function fetchAllProcessingPurposes(client: GraphQLClient, options?: {
41208
41208
  /** Logger instance */logger?: Logger;
41209
41209
  }): Promise<ProcessingPurposeSubCategory[]>;
41210
41210
  //#endregion
41211
+ //#region src/consent/fetchConsentManager.d.ts
41212
+ interface ConsentManager {
41213
+ /** ID of consent manager */
41214
+ id: string;
41215
+ /** Production bundle URL */
41216
+ bundleURL: string;
41217
+ /** Test bundle URL */
41218
+ testBundleURL: string;
41219
+ /** Configuration of consent manager */
41220
+ configuration: {
41221
+ /** Domain list */domains: string[]; /** Consent precedence of user vs signal */
41222
+ consentPrecedence: ConsentPrecedenceOption; /** Unknown request policy */
41223
+ unknownRequestPolicy: UnknownRequestPolicy; /** Unknown cookie policy */
41224
+ unknownCookiePolicy: UnknownRequestPolicy; /** Sync endpoint */
41225
+ syncEndpoint: string; /** Telemetry partitioning */
41226
+ telemetryPartitioning: TelemetryPartitionStrategy; /** Signed IAB agreement */
41227
+ signedIabAgreement: SignedIabAgreementOption; /** Sync groups */
41228
+ syncGroups: string; /** Partition parameter */
41229
+ partition: string;
41230
+ };
41231
+ /** When using a custom partition, this is the partition value */
41232
+ partition?: {
41233
+ /** Partition value */partition: string;
41234
+ };
41235
+ }
41236
+ /**
41237
+ * Fetch consent manager
41238
+ *
41239
+ * @param client - GraphQL client
41240
+ * @param options - Options
41241
+ * @returns Consent manager ID in organization
41242
+ */
41243
+ declare function fetchConsentManager(client: GraphQLClient, options?: {
41244
+ /** Logger instance */logger?: Logger;
41245
+ }): Promise<ConsentManager>;
41246
+ //#endregion
41247
+ //#region src/consent/fetchConsentManagerAnalyticsData.d.ts
41248
+ interface ConsentManagerMetric {
41249
+ /** Name of metric */
41250
+ name: string;
41251
+ /** The metrics */
41252
+ points: {
41253
+ /** Key of metric */key: string; /** Value of metric */
41254
+ value: string;
41255
+ }[];
41256
+ }
41257
+ /**
41258
+ * Fetch consent manager analytics data
41259
+ *
41260
+ * @param client - GraphQL client
41261
+ * @param input - Input for fetching data
41262
+ * @param options - Options
41263
+ * @returns Consent manager purposes in the organization
41264
+ */
41265
+ declare function fetchConsentManagerAnalyticsData(client: GraphQLClient, input: {
41266
+ /** Data source */dataSource: 'PRIVACY_SIGNAL_TIMESERIES' | 'CONSENT_CHANGES_TIMESERIES' | 'CONSENT_SESSIONS_BY_REGIME'; /** Start date, in ISO string format */
41267
+ startDate: string; /** End date, in ISO string format */
41268
+ endDate: string; /** Force refetching */
41269
+ forceRefetch?: boolean; /** Airgap bundle ID */
41270
+ airgapBundleId: string; /** Bin interval */
41271
+ binInterval: ConsentManagerMetricBin; /** Whether or not to smooth the time series */
41272
+ smoothTimeseries: false;
41273
+ }, options?: {
41274
+ /** Logger instance */logger?: Logger;
41275
+ }): Promise<ConsentManagerMetric[]>;
41276
+ //#endregion
41277
+ //#region src/consent/fetchConsentManagerExperiences.d.ts
41278
+ interface ConsentExperience {
41279
+ /** ID of experience */
41280
+ id: string;
41281
+ /** Name of experience */
41282
+ name: string;
41283
+ /** Experience display name */
41284
+ displayName?: string;
41285
+ /** Region that define this regional experience */
41286
+ regions: {
41287
+ /** Sub division */countrySubDivision?: IsoCountrySubdivisionCode; /** Country */
41288
+ country?: IsoCountryCode;
41289
+ }[];
41290
+ /** In vs not in operator */
41291
+ operator: RegionsOperator;
41292
+ /** Priority of experience */
41293
+ displayPriority: number;
41294
+ /** View state to prompt when auto prompting is enabled */
41295
+ viewState: InitialViewState;
41296
+ /** Consent expiry setting */
41297
+ onConsentExpiry: OnConsentExpiry;
41298
+ /** Consent expiry */
41299
+ consentExpiry: number;
41300
+ /** Purposes that can be opted out of in a particular experience */
41301
+ purposes: {
41302
+ /** Name of purpose */name: string; /** Purpose slug */
41303
+ trackingType: string;
41304
+ }[];
41305
+ /** Purposes that are opted out by default in a particular experience */
41306
+ optedOutPurposes: {
41307
+ /** Name of purpose */name: string; /** Purpose slug */
41308
+ trackingType: string;
41309
+ }[];
41310
+ /** Browser languages that define this regional experience */
41311
+ browserLanguages: BrowserLanguage[];
41312
+ /** Browser time zones that define this regional experience */
41313
+ browserTimeZones: BrowserTimeZone[];
41314
+ /** Consent UI variant assigned to this experience */
41315
+ consentUiVariant?: {
41316
+ /** Variant ID */id: string; /** Variant slug */
41317
+ slug: string;
41318
+ };
41319
+ }
41320
+ /**
41321
+ * Fetch consent manager experiences
41322
+ *
41323
+ * @param client - GraphQL client
41324
+ * @param options - Options
41325
+ * @returns Consent manager experiences in the organization
41326
+ */
41327
+ declare function fetchConsentManagerExperiences(client: GraphQLClient, options?: {
41328
+ /** Logger instance */logger?: Logger;
41329
+ }): Promise<ConsentExperience[]>;
41330
+ //#endregion
41331
+ //#region src/consent/fetchConsentManagerId.d.ts
41332
+ /**
41333
+ * Fetch consent manager ID
41334
+ *
41335
+ * @param client - GraphQL client
41336
+ * @param options - Options
41337
+ * @returns Consent manager ID in organization
41338
+ */
41339
+ declare function fetchConsentManagerId(client: GraphQLClient, options?: {
41340
+ /** Logger instance */logger?: Logger; /** Max number of requests to send */
41341
+ maxRequests?: number;
41342
+ }): Promise<string>;
41343
+ //#endregion
41211
41344
  //#region src/consent/gqls/consentManager.d.ts
41212
41345
  /** Full response from FETCH_CONSENT_MANAGER_ID */
41213
41346
  interface TranscendCliFetchConsentManagerIdResponse {
@@ -41301,142 +41434,100 @@ declare const TOGGLE_UNKNOWN_COOKIE_POLICY: string;
41301
41434
  declare const TOGGLE_TELEMETRY_PARTITION_STRATEGY: string;
41302
41435
  declare const TOGGLE_CONSENT_PRECEDENCE: string;
41303
41436
  declare const UPDATE_CONSENT_MANAGER_THEME: string;
41437
+ declare const FETCH_CONSENT_UI_VARIANTS: string;
41438
+ declare const FETCH_CONSENT_UI_THEMES: string;
41439
+ declare const CREATE_CONSENT_UI_VARIANT: string;
41440
+ declare const UPDATE_CONSENT_UI_VARIANT: string;
41441
+ declare const CREATE_CONSENT_UI_THEME: string;
41442
+ declare const UPDATE_CONSENT_UI_THEME: string;
41304
41443
  //#endregion
41305
- //#region src/consent/fetchConsentManagerId.d.ts
41306
- interface ConsentManager {
41307
- /** ID of consent manager */
41308
- id: string;
41309
- /** Production bundle URL */
41310
- bundleURL: string;
41311
- /** Test bundle URL */
41312
- testBundleURL: string;
41313
- /** Configuration of consent manager */
41314
- configuration: {
41315
- /** Domain list */domains: string[]; /** Consent precedence of user vs signal */
41316
- consentPrecedence: ConsentPrecedenceOption; /** Unknown request policy */
41317
- unknownRequestPolicy: UnknownRequestPolicy; /** Unknown cookie policy */
41318
- unknownCookiePolicy: UnknownRequestPolicy; /** Sync endpoint */
41319
- syncEndpoint: string; /** Telemetry partitioning */
41320
- telemetryPartitioning: TelemetryPartitionStrategy; /** Signed IAB agreement */
41321
- signedIabAgreement: SignedIabAgreementOption; /** Sync groups */
41322
- syncGroups: string; /** Partition parameter */
41323
- partition: string;
41324
- };
41325
- /** When using a custom partition, this is the partition value */
41326
- partition?: {
41327
- /** Partition value */partition: string;
41328
- };
41329
- }
41330
- /**
41331
- * Fetch consent manager
41332
- *
41333
- * @param client - GraphQL client
41334
- * @param options - Options
41335
- * @returns Consent manager ID in organization
41336
- */
41337
- declare function fetchConsentManager(client: GraphQLClient, options?: {
41338
- /** Logger instance */logger?: Logger;
41339
- }): Promise<ConsentManager>;
41444
+ //#region src/consent/fetchConsentManagerTheme.d.ts
41340
41445
  /**
41341
- * Fetch consent manager ID
41446
+ * Fetch consent manager theme
41342
41447
  *
41343
41448
  * @param client - GraphQL client
41344
41449
  * @param options - Options
41345
- * @returns Consent manager ID in organization
41450
+ * @returns Consent manager theme
41346
41451
  */
41347
- declare function fetchConsentManagerId(client: GraphQLClient, options?: {
41348
- /** Logger instance */logger?: Logger; /** Max number of requests to send */
41349
- maxRequests?: number;
41350
- }): Promise<string>;
41351
- interface ConsentExperience {
41352
- /** ID of experience */
41452
+ declare function fetchConsentManagerTheme(client: GraphQLClient, options: {
41453
+ /** Logger instance */logger?: Logger; /** Filter options */
41454
+ filterBy: {
41455
+ /** Airgap bundle ID to fetch for */airgapBundleId: string;
41456
+ };
41457
+ }): Promise<TranscendConsentManagerThemeGql>;
41458
+ //#endregion
41459
+ //#region src/consent/fetchConsentThemes.d.ts
41460
+ /** A consent UI theme returned by the consentUiThemes query */
41461
+ interface ConsentUiTheme {
41462
+ /** The id of the consent UI theme */
41353
41463
  id: string;
41354
- /** Name of experience */
41464
+ /** The display name for this UI theme */
41355
41465
  name: string;
41356
- /** Experience display name */
41357
- displayName?: string;
41358
- /** Region that define this regional experience */
41359
- regions: {
41360
- /** Sub division */countrySubDivision?: IsoCountrySubdivisionCode; /** Country */
41361
- country?: IsoCountryCode;
41362
- }[];
41363
- /** In vs not in operator */
41364
- operator: RegionsOperator;
41365
- /** Priority of experience */
41366
- displayPriority: number;
41367
- /** View state to prompt when auto prompting is enabled */
41368
- viewState: InitialViewState;
41369
- /** Consent expiry setting */
41370
- onConsentExpiry: OnConsentExpiry;
41371
- /** Consent expiry */
41372
- consentExpiry: number;
41373
- /** Purposes that can be opted out of in a particular experience */
41374
- purposes: {
41375
- /** Name of purpose */name: string; /** Purpose slug */
41376
- trackingType: string;
41377
- }[];
41378
- /** Purposes that are opted out by default in a particular experience */
41379
- optedOutPurposes: {
41380
- /** Name of purpose */name: string; /** Purpose slug */
41381
- trackingType: string;
41382
- }[];
41383
- /** Browser languages that define this regional experience */
41384
- browserLanguages: BrowserLanguage[];
41385
- /** Browser time zones that define this regional experience */
41386
- browserTimeZones: BrowserTimeZone[];
41466
+ /** The unique identifier for this UI theme */
41467
+ slug: string;
41468
+ /** Theme styling configuration */
41469
+ configuration: ThemeConfiguration;
41470
+ }
41471
+ /** Paginated response from the consentUiThemes GraphQL query */
41472
+ interface ConsentUiThemesQueryResponse {
41473
+ /** Consent UI themes for the airgap bundle */
41474
+ nodes: ConsentUiTheme[];
41475
+ /** Total number of themes matching the filter */
41476
+ totalCount: number;
41387
41477
  }
41388
41478
  /**
41389
- * Fetch consent manager experiences
41479
+ * Fetch consent themes
41390
41480
  *
41391
41481
  * @param client - GraphQL client
41392
41482
  * @param options - Options
41393
- * @returns Consent manager experiences in the organization
41483
+ * @returns consent UI themes
41394
41484
  */
41395
- declare function fetchConsentManagerExperiences(client: GraphQLClient, options?: {
41485
+ declare function fetchConsentThemes(client: GraphQLClient, options?: {
41396
41486
  /** Logger instance */logger?: Logger;
41397
- }): Promise<ConsentExperience[]>;
41398
- interface ConsentManagerMetric {
41399
- /** Name of metric */
41487
+ }): Promise<ConsentUiTheme[]>;
41488
+ //#endregion
41489
+ //#region src/consent/fetchConsentVariants.d.ts
41490
+ /** A consent UI variant returned by the consentUiVariants query */
41491
+ interface ConsentUiVariant {
41492
+ /** The id of the consent UI variant */
41493
+ id: string;
41494
+ /** The display name for this UI variant */
41400
41495
  name: string;
41401
- /** The metrics */
41402
- points: {
41403
- /** Key of metric */key: string; /** Value of metric */
41404
- value: string;
41405
- }[];
41496
+ /** The unique identifier for this UI variant */
41497
+ slug: string;
41498
+ /** Description of this UI variant */
41499
+ description?: string;
41500
+ /** Locales this UI variant applies to */
41501
+ locales: string[];
41502
+ /** Variant behavior and layer configuration */
41503
+ configuration: UIConfiguration;
41504
+ /** Status of this UI variant */
41505
+ status: UiVariantStatus;
41506
+ /** The consent UI theme associated with this UI variant */
41507
+ theme?: {
41508
+ /** The id of the consent UI theme */id: string; /** The slug of the consent UI theme */
41509
+ slug: string;
41510
+ };
41511
+ /** The user flow for this UI variant */
41512
+ userFlow?: ConsentUiUserFlow;
41513
+ }
41514
+ /** Paginated response from the consentUiVariants GraphQL query */
41515
+ interface ConsentUiVariantsQueryResponse {
41516
+ /** Consent UI variants for the airgap bundle */
41517
+ nodes: ConsentUiVariant[];
41518
+ /** Total number of variants matching the filter */
41519
+ totalCount: number;
41406
41520
  }
41407
41521
  /**
41408
- * Fetch consent manager analytics data
41522
+ * Fetch consent variants
41409
41523
  *
41410
41524
  * @param client - GraphQL client
41411
- * @param input - Input for fetching data
41412
41525
  * @param options - Options
41413
- * @returns Consent manager purposes in the organization
41526
+ * @returns consent UI variants
41414
41527
  */
41415
- declare function fetchConsentManagerAnalyticsData(client: GraphQLClient, input: {
41416
- /** Data source */dataSource: 'PRIVACY_SIGNAL_TIMESERIES' | 'CONSENT_CHANGES_TIMESERIES' | 'CONSENT_SESSIONS_BY_REGIME'; /** Start date, in ISO string format */
41417
- startDate: string; /** End date, in ISO string format */
41418
- endDate: string; /** Force refetching */
41419
- forceRefetch?: boolean; /** Airgap bundle ID */
41420
- airgapBundleId: string; /** Bin interval */
41421
- binInterval: ConsentManagerMetricBin; /** Whether or not to smooth the time series */
41422
- smoothTimeseries: false;
41423
- }, options?: {
41528
+ declare function fetchConsentVariants(client: GraphQLClient, options?: {
41424
41529
  /** Logger instance */logger?: Logger;
41425
- }): Promise<ConsentManagerMetric[]>;
41426
- /**
41427
- * Fetch consent manager theme
41428
- *
41429
- * @param client - GraphQL client
41430
- * @param airgapBundleId - Airgap bundle ID to fetch for
41431
- * @param options - Options
41432
- * @returns Consent manager ID in organization
41433
- */
41434
- declare function fetchConsentManagerTheme(client: GraphQLClient, options: {
41435
- /** Logger instance */logger?: Logger; /** Filter options */
41436
- filterBy: {
41437
- /** Airgap bundle ID to fetch for */airgapBundleId: string;
41438
- };
41439
- }): Promise<TranscendConsentManagerThemeGql>;
41530
+ }): Promise<ConsentUiVariant[]>;
41440
41531
  //#endregion
41441
41532
  //#region src/consent/gqls/airgapBundleAnalytics.d.ts
41442
41533
  /** Dimension values on an aggregate analytics row */
@@ -41579,6 +41670,10 @@ interface TranscendExperienceGql {
41579
41670
  browserLanguages: string[];
41580
41671
  /** Browser time zones for this experience */
41581
41672
  browserTimeZones: string[];
41673
+ /** Consent UI variant assigned to this experience */
41674
+ consentUiVariant?: {
41675
+ /** Variant ID */id: string;
41676
+ };
41582
41677
  }
41583
41678
  /** Full response from the EXPERIENCES query */
41584
41679
  interface TranscendCliExperiencesResponse {
@@ -41751,6 +41846,37 @@ declare const PROCESSING_PURPOSE_SUB_CATEGORIES: string;
41751
41846
  declare const CREATE_PROCESSING_PURPOSE_SUB_CATEGORY: string;
41752
41847
  declare const UPDATE_PROCESSING_PURPOSE_SUB_CATEGORIES: string;
41753
41848
  //#endregion
41849
+ //#region src/consent/syncConsentUi.d.ts
41850
+ /** Consent UI theme synced to Transcend (id + slug for variant theme assignment) */
41851
+ type SyncedConsentUiTheme = Pick<ConsentUiTheme, 'id' | 'slug'>;
41852
+ /** Consent UI variant synced to Transcend (id + slug for experience consentUiVariantSlug assignment) */
41853
+ type SyncedConsentUiVariant = Pick<ConsentUiVariant, 'id' | 'slug'>;
41854
+ /**
41855
+ * Sync consent UI themes from transcend.yml
41856
+ *
41857
+ * @param client - GraphQL client
41858
+ * @param airgapBundleId - Airgap bundle ID
41859
+ * @param yamlThemes - Theme inputs from transcend.yml
41860
+ * @param options - Options
41861
+ * @returns Synced themes (id + slug) for resolving variant themeSlug assignments
41862
+ */
41863
+ declare function syncConsentUiThemes(client: GraphQLClient, airgapBundleId: string, yamlThemes: ConsentThemeInput[], options?: {
41864
+ /** Logger instance */logger?: Logger;
41865
+ }): Promise<SyncedConsentUiTheme[]>;
41866
+ /**
41867
+ * Sync consent UI variants from transcend.yml
41868
+ *
41869
+ * @param client - GraphQL client
41870
+ * @param airgapBundleId - Airgap bundle ID
41871
+ * @param yamlVariants - Variant inputs from transcend.yml
41872
+ * @param syncedThemes - Themes synced by syncConsentUiThemes, used to resolve themeSlug
41873
+ * @param options - Options
41874
+ * @returns Synced variants (id + slug) for resolving experience consentUiVariantSlug assignments
41875
+ */
41876
+ declare function syncConsentUiVariants(client: GraphQLClient, airgapBundleId: string, yamlVariants: ConsentVariantInput[], syncedThemes: SyncedConsentUiTheme[], options?: {
41877
+ /** Logger instance */logger?: Logger;
41878
+ }): Promise<SyncedConsentUiVariant[]>;
41879
+ //#endregion
41754
41880
  //#region src/consent/syncConsentManager.d.ts
41755
41881
  interface ConsentManageExperienceInput {
41756
41882
  /** Name of experience */
@@ -41784,6 +41910,8 @@ interface ConsentManageExperienceInput {
41784
41910
  browserLanguages?: BrowserLanguage[];
41785
41911
  /** Browser time zones that define this regional experience */
41786
41912
  browserTimeZones?: BrowserTimeZone[];
41913
+ /** Slug of the consent UI variant assigned to this experience */
41914
+ consentUiVariantSlug?: string;
41787
41915
  }
41788
41916
  interface ConsentManagerInput {
41789
41917
  /** Airgap version */
@@ -41817,15 +41945,20 @@ interface ConsentManagerInput {
41817
41945
  };
41818
41946
  /** The Shared XDI host sync groups config (JSON) */
41819
41947
  syncGroups?: string;
41948
+ /** Consent UI variant configurations */
41949
+ consentVariants?: ConsentVariantInput[];
41950
+ /** Consent UI theme configurations */
41951
+ consentThemes?: ConsentThemeInput[];
41820
41952
  }
41821
41953
  /**
41822
41954
  * Sync consent manager experiences up to Transcend
41823
41955
  *
41824
41956
  * @param client - GraphQL client
41825
41957
  * @param experiences - The experience inputs
41958
+ * @param syncedVariants - Variants synced by syncConsentUiVariants, used to resolve consentUiVariantSlug
41826
41959
  * @param options - Options
41827
41960
  */
41828
- declare function syncConsentManagerExperiences(client: GraphQLClient, experiences: ConsentManageExperienceInput[], options?: {
41961
+ declare function syncConsentManagerExperiences(client: GraphQLClient, experiences: ConsentManageExperienceInput[], syncedVariants: SyncedConsentUiVariant[], options?: {
41829
41962
  /** Logger instance */logger?: Logger;
41830
41963
  }): Promise<void>;
41831
41964
  /**
@@ -44710,5 +44843,5 @@ interface MonorepoPackageDefinition {
44710
44843
  }
44711
44844
  declare function createMonorepoPackageDefinition(name: string, directory: string): MonorepoPackageDefinition;
44712
44845
  //#endregion
44713
- 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_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, 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_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, PreferenceState, PreferenceTopic, PreferenceUpdateMap, PreferenceUploadReferenceData, PreferencesQueryFilter, PrivacyCenter, PrivacyCenterInput, ProcessingActivity, ProcessingActivityInput, ProcessingPurposeInput, ProcessingPurposeSubCategory, Prompt, PromptCalculatedVariable, PromptGroup, PromptGroupInput, PromptInput, PromptPartial, PromptPartialInput, PromptRuntimeVariable, PromptThread, Purpose, 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, SyncTemplateInput, 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_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, 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, 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, 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, syncCookies, syncDataCategories, syncDataFlows, syncDataSiloDependencies, syncDataSubject, syncEnricher, syncIdentifier, syncIntlMessages, syncPartitions, syncPolicies, syncPrivacyCenter, syncProcessingActivities, syncProcessingPurposes, syncPromptGroups, syncPromptPartials, syncPrompts, 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 };
44846
+ 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, PreferenceState, PreferenceTopic, PreferenceUpdateMap, PreferenceUploadReferenceData, PreferencesQueryFilter, PrivacyCenter, PrivacyCenterInput, ProcessingActivity, ProcessingActivityInput, ProcessingPurposeInput, ProcessingPurposeSubCategory, Prompt, PromptCalculatedVariable, PromptGroup, PromptGroupInput, PromptInput, PromptPartial, PromptPartialInput, PromptRuntimeVariable, PromptThread, Purpose, 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, 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, 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, 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, syncPrivacyCenter, syncProcessingActivities, syncProcessingPurposes, syncPromptGroups, syncPromptPartials, syncPrompts, 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 };
44714
44847
  //# sourceMappingURL=index.d.mts.map