@transcend-io/sdk 1.6.0 → 1.7.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 +11 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -41699,8 +41699,8 @@ interface ConsentUiVariant {
|
|
|
41699
41699
|
name: string;
|
|
41700
41700
|
/** The unique identifier for this UI variant */
|
|
41701
41701
|
slug: string;
|
|
41702
|
-
/** Description of this UI variant */
|
|
41703
|
-
description?: string;
|
|
41702
|
+
/** Description of this UI variant (null when unset) */
|
|
41703
|
+
description?: string | null;
|
|
41704
41704
|
/** Locales this UI variant applies to */
|
|
41705
41705
|
locales: string[];
|
|
41706
41706
|
/** Variant behavior and layer configuration */
|
|
@@ -41711,9 +41711,9 @@ interface ConsentUiVariant {
|
|
|
41711
41711
|
theme?: {
|
|
41712
41712
|
/** The id of the consent UI theme */id: string; /** The slug of the consent UI theme */
|
|
41713
41713
|
slug: string;
|
|
41714
|
-
};
|
|
41715
|
-
/** The user flow for this UI variant */
|
|
41716
|
-
userFlow?: ConsentUiUserFlow;
|
|
41714
|
+
} | null;
|
|
41715
|
+
/** The user flow for this UI variant (null when unset) */
|
|
41716
|
+
userFlow?: ConsentUiUserFlow | null;
|
|
41717
41717
|
}
|
|
41718
41718
|
/** Paginated response from the consentUiVariants GraphQL query */
|
|
41719
41719
|
interface ConsentUiVariantsQueryResponse {
|
|
@@ -42814,6 +42814,7 @@ declare const RequestIdentifier: t.TypeC<{
|
|
|
42814
42814
|
adobeAudienceManagerId: unknown;
|
|
42815
42815
|
adobeExperienceCloudId: unknown;
|
|
42816
42816
|
adobeTargetId: unknown;
|
|
42817
|
+
adobeCampaignRecipientId: unknown;
|
|
42817
42818
|
transcend: unknown;
|
|
42818
42819
|
}>;
|
|
42819
42820
|
}>;
|
|
@@ -42856,6 +42857,7 @@ declare const RequestIdentifiersResponse: t.TypeC<{
|
|
|
42856
42857
|
adobeAudienceManagerId: unknown;
|
|
42857
42858
|
adobeExperienceCloudId: unknown;
|
|
42858
42859
|
adobeTargetId: unknown;
|
|
42860
|
+
adobeCampaignRecipientId: unknown;
|
|
42859
42861
|
transcend: unknown;
|
|
42860
42862
|
}>;
|
|
42861
42863
|
}>>;
|
|
@@ -42927,6 +42929,8 @@ interface DataSubject {
|
|
|
42927
42929
|
};
|
|
42928
42930
|
/** Whether silent mode is enabled by default */
|
|
42929
42931
|
adminDashboardDefaultSilentMode: boolean;
|
|
42932
|
+
/** Whether requests can be submitted on behalf of this data subject by an authorized agent */
|
|
42933
|
+
supportsAuthorizedAgent: boolean;
|
|
42930
42934
|
/** Enabled actions */
|
|
42931
42935
|
actions: {
|
|
42932
42936
|
/** Type of action */type: RequestActionObjectResolver;
|
|
@@ -43022,6 +43026,8 @@ interface DataSubjectInput {
|
|
|
43022
43026
|
title?: string;
|
|
43023
43027
|
/** Whether or not to default new requests made in the admin dashboard to silent mode */
|
|
43024
43028
|
adminDashboardDefaultSilentMode?: boolean;
|
|
43029
|
+
/** Whether requests can be submitted on behalf of this data subject by an authorized agent */
|
|
43030
|
+
supportsAuthorizedAgent?: boolean;
|
|
43025
43031
|
/** Enabled request actions for the data subject */
|
|
43026
43032
|
actions?: RequestAction[];
|
|
43027
43033
|
}
|