@transcend-io/privacy-types 5.8.4 → 5.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -808,16 +808,6 @@ type AssessmentSyncColumnAttribute = DataSiloAttribute | SubDataPointAttribute |
808
808
  type AssessmentSyncColumnImmutable = DataSiloAttributeImmutable | SubDataPointAttributeImmutable | VendorAttributeImmutable | DataSubCategoryAttributeImmutable | ProcessingPurposeSubCategoryAttributeImmutable | BusinessEntityAttributeImmutable | ProcessingActivityAttributeImmutable;
809
809
  /** The type of the AssessmentQuestion's syncColumn field */
810
810
  declare const AssessmentSyncColumn: {
811
- URL: AssessmentSyncColumnImmutable;
812
- DESCRIPTION: AssessmentSyncColumnImmutable;
813
- DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
814
- DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
815
- DEPRECATION_STATE: AssessmentSyncColumnImmutable;
816
- RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
817
- RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
818
- RETENTION_TYPE: AssessmentSyncColumnImmutable;
819
- CONTROLLERSHIP: AssessmentSyncColumnImmutable;
820
- HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
821
811
  CONNECT_START_TIME: AssessmentSyncColumnImmutable;
822
812
  CONNECTION_STATE: AssessmentSyncColumnImmutable;
823
813
  CONTACT_EMAIL: AssessmentSyncColumnImmutable;
@@ -826,12 +816,16 @@ declare const AssessmentSyncColumn: {
826
816
  COUNTRY_SUB_DIVISION: AssessmentSyncColumnImmutable;
827
817
  CREDENTIALS_REFRESH_SCHEDULED_AT: AssessmentSyncColumnImmutable;
828
818
  DATA_PROCESSING_AGREEMENT_LINK: AssessmentSyncColumnImmutable;
819
+ DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
829
820
  DATA_RETENTION_NOTE: AssessmentSyncColumnImmutable;
830
821
  DEFAULT_ACCESS_REQUEST_VISIBILITY: AssessmentSyncColumnImmutable;
831
822
  DELETED_AT: AssessmentSyncColumnImmutable;
823
+ DEPRECATION_STATE: AssessmentSyncColumnImmutable;
824
+ DESCRIPTION: AssessmentSyncColumnImmutable;
832
825
  EMAIL_SENDING_LOCK: AssessmentSyncColumnImmutable;
833
826
  EXPIRED_AT: AssessmentSyncColumnImmutable;
834
827
  EXTERNAL_ID: AssessmentSyncColumnImmutable;
828
+ HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
835
829
  HEADERS: AssessmentSyncColumnImmutable;
836
830
  IS_LIVE: AssessmentSyncColumnImmutable;
837
831
  LAST_CONNECTED_AT: AssessmentSyncColumnImmutable;
@@ -850,6 +844,8 @@ declare const AssessmentSyncColumn: {
850
844
  PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: AssessmentSyncColumnImmutable;
851
845
  PROMPT_A_VENDOR_EMAIL_SEND_TYPE: AssessmentSyncColumnImmutable;
852
846
  PROMPT_A_VENDOR_EMAIL_START_AT: AssessmentSyncColumnImmutable;
847
+ RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
848
+ RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
853
849
  RECONNECT_FORM_ITEMS: AssessmentSyncColumnImmutable;
854
850
  SAAS_CONTEXT: AssessmentSyncColumnImmutable;
855
851
  SECRET_HEADERS: AssessmentSyncColumnImmutable;
@@ -857,6 +853,7 @@ declare const AssessmentSyncColumn: {
857
853
  SUBDOMAIN: AssessmentSyncColumnImmutable;
858
854
  TITLE: AssessmentSyncColumnImmutable;
859
855
  TYPE: AssessmentSyncColumnImmutable;
856
+ URL: AssessmentSyncColumnImmutable;
860
857
  WEBSITE_URL: AssessmentSyncColumnImmutable;
861
858
  TRANSFER_REGIONS: AssessmentSyncColumnImmutable;
862
859
  CONTROLLERSHIPS: AssessmentSyncColumnImmutable;
@@ -873,6 +870,8 @@ declare const AssessmentSyncColumn: {
873
870
  CONTEXT: AssessmentSyncColumnImmutable;
874
871
  CONTENT_CLASSIFICATION_STATUS: AssessmentSyncColumnImmutable;
875
872
  NON_NULL_CHECK_COMPLETED: AssessmentSyncColumnImmutable;
873
+ CONTROLLERSHIP: AssessmentSyncColumnImmutable;
874
+ RETENTION_TYPE: AssessmentSyncColumnImmutable;
876
875
  RETENTION_PERIOD: AssessmentSyncColumnImmutable;
877
876
  SCAN_RUN_ID: AssessmentSyncColumnImmutable;
878
877
  DATA_TYPE: AssessmentSyncColumnImmutable;
@@ -894,6 +893,7 @@ declare const AssessmentSyncColumn: {
894
893
  SECURITY_MEASURE_DETAILS: AssessmentSyncColumnImmutable;
895
894
  STORAGE_REGIONS: AssessmentSyncColumnImmutable;
896
895
  DATA_PROTECTION_IMPACT_ASSESSMENT_LINK: AssessmentSyncColumnImmutable;
896
+ DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
897
897
  };
898
898
  /** Type override */
899
899
  type AssessmentSyncColumn = (typeof AssessmentSyncColumn)[keyof typeof AssessmentSyncColumn];
@@ -1622,7 +1622,8 @@ type DefaultConsentOption = (typeof DefaultConsentOption)[keyof typeof DefaultCo
1622
1622
  declare const CookieOrderField: {
1623
1623
  /** The name of this cookie */Name: "name"; /** When the cookie was created */
1624
1624
  CreatedAt: "createdAt"; /** The time the cookie was updated */
1625
- UpdatedAt: "updatedAt";
1625
+ UpdatedAt: "updatedAt"; /** The number of occurrences (traffic) of this cookie */
1626
+ Occurrences: "occurrences";
1626
1627
  };
1627
1628
  /** Type override */
1628
1629
  type CookieOrderField = (typeof CookieOrderField)[keyof typeof CookieOrderField];
@@ -1741,11 +1742,10 @@ declare const ConsentVariantInput: t.IntersectionC<[t.TypeC<{
1741
1742
  slug: t.StringC; /** Status of variant */
1742
1743
  status: t.KeyofC<{
1743
1744
  DRAFT: unknown;
1744
- PUBLISHED: unknown;
1745
1745
  ACTIVE: unknown;
1746
+ PUBLISHED: unknown;
1746
1747
  }>; /** Locales of variant */
1747
1748
  locales: t.ArrayC<t.KeyofC<{
1748
- no: unknown;
1749
1749
  en: unknown;
1750
1750
  ar: unknown;
1751
1751
  fr: unknown;
@@ -1769,6 +1769,7 @@ declare const ConsentVariantInput: t.IntersectionC<[t.TypeC<{
1769
1769
  ms: unknown;
1770
1770
  mr: unknown;
1771
1771
  nb: unknown;
1772
+ no: unknown;
1772
1773
  pl: unknown;
1773
1774
  pt: unknown;
1774
1775
  ro: unknown;
@@ -2040,7 +2041,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2040
2041
  regimeAutoPromptMap: t.RecordC<t.StringC, t.BooleanC>;
2041
2042
  variantConfigMap: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
2042
2043
  locales: t.ArrayC<t.KeyofC<{
2043
- no: unknown;
2044
2044
  en: unknown;
2045
2045
  ar: unknown;
2046
2046
  fr: unknown;
@@ -2064,6 +2064,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2064
2064
  ms: unknown;
2065
2065
  mr: unknown;
2066
2066
  nb: unknown;
2067
+ no: unknown;
2067
2068
  pl: unknown;
2068
2069
  pt: unknown;
2069
2070
  ro: unknown;
@@ -2238,7 +2239,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2238
2239
  }>>;
2239
2240
  transcendUrl: t.StringC;
2240
2241
  defaultLocale: t.KeyofC<{
2241
- no: unknown;
2242
2242
  en: unknown;
2243
2243
  ar: unknown;
2244
2244
  fr: unknown;
@@ -2262,6 +2262,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2262
2262
  ms: unknown;
2263
2263
  mr: unknown;
2264
2264
  nb: unknown;
2265
+ no: unknown;
2265
2266
  pl: unknown;
2266
2267
  pt: unknown;
2267
2268
  ro: unknown;
@@ -2486,7 +2487,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2486
2487
  }>]>;
2487
2488
  }>]>, t.IntersectionC<[t.TypeC<{
2488
2489
  locales: t.ArrayC<t.KeyofC<{
2489
- no: unknown;
2490
2490
  en: unknown;
2491
2491
  ar: unknown;
2492
2492
  fr: unknown;
@@ -2510,6 +2510,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2510
2510
  ms: unknown;
2511
2511
  mr: unknown;
2512
2512
  nb: unknown;
2513
+ no: unknown;
2513
2514
  pl: unknown;
2514
2515
  pt: unknown;
2515
2516
  ro: unknown;
@@ -2684,7 +2685,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2684
2685
  }>>;
2685
2686
  transcendUrl: t.StringC;
2686
2687
  defaultLocale: t.KeyofC<{
2687
- no: unknown;
2688
2688
  en: unknown;
2689
2689
  ar: unknown;
2690
2690
  fr: unknown;
@@ -2708,6 +2708,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2708
2708
  ms: unknown;
2709
2709
  mr: unknown;
2710
2710
  nb: unknown;
2711
+ no: unknown;
2711
2712
  pl: unknown;
2712
2713
  pt: unknown;
2713
2714
  ro: unknown;
@@ -2934,7 +2935,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2934
2935
  }>]>;
2935
2936
  }>]>, t.IntersectionC<[t.TypeC<{
2936
2937
  locales: t.ArrayC<t.KeyofC<{
2937
- no: unknown;
2938
2938
  en: unknown;
2939
2939
  ar: unknown;
2940
2940
  fr: unknown;
@@ -2958,6 +2958,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
2958
2958
  ms: unknown;
2959
2959
  mr: unknown;
2960
2960
  nb: unknown;
2961
+ no: unknown;
2961
2962
  pl: unknown;
2962
2963
  pt: unknown;
2963
2964
  ro: unknown;
@@ -3132,7 +3133,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3132
3133
  }>>;
3133
3134
  transcendUrl: t.StringC;
3134
3135
  defaultLocale: t.KeyofC<{
3135
- no: unknown;
3136
3136
  en: unknown;
3137
3137
  ar: unknown;
3138
3138
  fr: unknown;
@@ -3156,6 +3156,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3156
3156
  ms: unknown;
3157
3157
  mr: unknown;
3158
3158
  nb: unknown;
3159
+ no: unknown;
3159
3160
  pl: unknown;
3160
3161
  pt: unknown;
3161
3162
  ro: unknown;
@@ -3917,7 +3918,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3917
3918
  }>, t.PartialC<{
3918
3919
  css: t.StringC;
3919
3920
  messageMap: t.RecordC<t.KeyofC<{
3920
- no: unknown;
3921
3921
  en: unknown;
3922
3922
  ar: unknown;
3923
3923
  fr: unknown;
@@ -3941,6 +3941,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3941
3941
  ms: unknown;
3942
3942
  mr: unknown;
3943
3943
  nb: unknown;
3944
+ no: unknown;
3944
3945
  pl: unknown;
3945
3946
  pt: unknown;
3946
3947
  ro: unknown;
@@ -5691,7 +5692,6 @@ type URLHostString = t.TypeOf<typeof URLHostString>;
5691
5692
  /** Top-level configuration shared between the UI layers */
5692
5693
  declare const SharedTopLevelConfig: t.TypeC<{
5693
5694
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
5694
- no: unknown;
5695
5695
  en: unknown;
5696
5696
  ar: unknown;
5697
5697
  fr: unknown;
@@ -5715,6 +5715,7 @@ declare const SharedTopLevelConfig: t.TypeC<{
5715
5715
  ms: unknown;
5716
5716
  mr: unknown;
5717
5717
  nb: unknown;
5718
+ no: unknown;
5718
5719
  pl: unknown;
5719
5720
  pt: unknown;
5720
5721
  ro: unknown;
@@ -5889,7 +5890,6 @@ declare const SharedTopLevelConfig: t.TypeC<{
5889
5890
  }>>; /** The transcend URL where the transcend logo links to */
5890
5891
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
5891
5892
  defaultLocale: t.KeyofC<{
5892
- no: unknown;
5893
5893
  en: unknown;
5894
5894
  ar: unknown;
5895
5895
  fr: unknown;
@@ -5913,6 +5913,7 @@ declare const SharedTopLevelConfig: t.TypeC<{
5913
5913
  ms: unknown;
5914
5914
  mr: unknown;
5915
5915
  nb: unknown;
5916
+ no: unknown;
5916
5917
  pl: unknown;
5917
5918
  pt: unknown;
5918
5919
  ro: unknown;
@@ -6250,7 +6251,6 @@ type SecondLayerConfig = t.TypeOf<typeof SecondLayerConfig>;
6250
6251
  /** Banner only configuration */
6251
6252
  declare const UIConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
6252
6253
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
6253
- no: unknown;
6254
6254
  en: unknown;
6255
6255
  ar: unknown;
6256
6256
  fr: unknown;
@@ -6274,6 +6274,7 @@ declare const UIConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
6274
6274
  ms: unknown;
6275
6275
  mr: unknown;
6276
6276
  nb: unknown;
6277
+ no: unknown;
6277
6278
  pl: unknown;
6278
6279
  pt: unknown;
6279
6280
  ro: unknown;
@@ -6448,7 +6449,6 @@ declare const UIConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
6448
6449
  }>>; /** The transcend URL where the transcend logo links to */
6449
6450
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
6450
6451
  defaultLocale: t.KeyofC<{
6451
- no: unknown;
6452
6452
  en: unknown;
6453
6453
  ar: unknown;
6454
6454
  fr: unknown;
@@ -6472,6 +6472,7 @@ declare const UIConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
6472
6472
  ms: unknown;
6473
6473
  mr: unknown;
6474
6474
  nb: unknown;
6475
+ no: unknown;
6475
6476
  pl: unknown;
6476
6477
  pt: unknown;
6477
6478
  ro: unknown;
@@ -6700,7 +6701,6 @@ type UIConfigurationBannerOnly = t.TypeOf<typeof UIConfigurationBannerOnly>;
6700
6701
  /** Modal only configuration */
6701
6702
  declare const UIConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
6702
6703
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
6703
- no: unknown;
6704
6704
  en: unknown;
6705
6705
  ar: unknown;
6706
6706
  fr: unknown;
@@ -6724,6 +6724,7 @@ declare const UIConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
6724
6724
  ms: unknown;
6725
6725
  mr: unknown;
6726
6726
  nb: unknown;
6727
+ no: unknown;
6727
6728
  pl: unknown;
6728
6729
  pt: unknown;
6729
6730
  ro: unknown;
@@ -6898,7 +6899,6 @@ declare const UIConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
6898
6899
  }>>; /** The transcend URL where the transcend logo links to */
6899
6900
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
6900
6901
  defaultLocale: t.KeyofC<{
6901
- no: unknown;
6902
6902
  en: unknown;
6903
6903
  ar: unknown;
6904
6904
  fr: unknown;
@@ -6922,6 +6922,7 @@ declare const UIConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
6922
6922
  ms: unknown;
6923
6923
  mr: unknown;
6924
6924
  nb: unknown;
6925
+ no: unknown;
6925
6926
  pl: unknown;
6926
6927
  pt: unknown;
6927
6928
  ro: unknown;
@@ -7152,7 +7153,6 @@ type UIConfigurationModalOnly = t.TypeOf<typeof UIConfigurationModalOnly>;
7152
7153
  /** Banner into modal configuration */
7153
7154
  declare const UIConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
7154
7155
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
7155
- no: unknown;
7156
7156
  en: unknown;
7157
7157
  ar: unknown;
7158
7158
  fr: unknown;
@@ -7176,6 +7176,7 @@ declare const UIConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
7176
7176
  ms: unknown;
7177
7177
  mr: unknown;
7178
7178
  nb: unknown;
7179
+ no: unknown;
7179
7180
  pl: unknown;
7180
7181
  pt: unknown;
7181
7182
  ro: unknown;
@@ -7350,7 +7351,6 @@ declare const UIConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
7350
7351
  }>>; /** The transcend URL where the transcend logo links to */
7351
7352
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
7352
7353
  defaultLocale: t.KeyofC<{
7353
- no: unknown;
7354
7354
  en: unknown;
7355
7355
  ar: unknown;
7356
7356
  fr: unknown;
@@ -7374,6 +7374,7 @@ declare const UIConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
7374
7374
  ms: unknown;
7375
7375
  mr: unknown;
7376
7376
  nb: unknown;
7377
+ no: unknown;
7377
7378
  pl: unknown;
7378
7379
  pt: unknown;
7379
7380
  ro: unknown;
@@ -7653,7 +7654,6 @@ type UIConfigurationBannerIntoModal = t.TypeOf<typeof UIConfigurationBannerIntoM
7653
7654
  /** Configuration of the entire consent UI */
7654
7655
  declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
7655
7656
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
7656
- no: unknown;
7657
7657
  en: unknown;
7658
7658
  ar: unknown;
7659
7659
  fr: unknown;
@@ -7677,6 +7677,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
7677
7677
  ms: unknown;
7678
7678
  mr: unknown;
7679
7679
  nb: unknown;
7680
+ no: unknown;
7680
7681
  pl: unknown;
7681
7682
  pt: unknown;
7682
7683
  ro: unknown;
@@ -7851,7 +7852,6 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
7851
7852
  }>>; /** The transcend URL where the transcend logo links to */
7852
7853
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
7853
7854
  defaultLocale: t.KeyofC<{
7854
- no: unknown;
7855
7855
  en: unknown;
7856
7856
  ar: unknown;
7857
7857
  fr: unknown;
@@ -7875,6 +7875,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
7875
7875
  ms: unknown;
7876
7876
  mr: unknown;
7877
7877
  nb: unknown;
7878
+ no: unknown;
7878
7879
  pl: unknown;
7879
7880
  pt: unknown;
7880
7881
  ro: unknown;
@@ -8099,7 +8100,6 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8099
8100
  }>]>;
8100
8101
  }>]>, t.IntersectionC<[t.TypeC<{
8101
8102
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
8102
- no: unknown;
8103
8103
  en: unknown;
8104
8104
  ar: unknown;
8105
8105
  fr: unknown;
@@ -8123,6 +8123,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8123
8123
  ms: unknown;
8124
8124
  mr: unknown;
8125
8125
  nb: unknown;
8126
+ no: unknown;
8126
8127
  pl: unknown;
8127
8128
  pt: unknown;
8128
8129
  ro: unknown;
@@ -8297,7 +8298,6 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8297
8298
  }>>; /** The transcend URL where the transcend logo links to */
8298
8299
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
8299
8300
  defaultLocale: t.KeyofC<{
8300
- no: unknown;
8301
8301
  en: unknown;
8302
8302
  ar: unknown;
8303
8303
  fr: unknown;
@@ -8321,6 +8321,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8321
8321
  ms: unknown;
8322
8322
  mr: unknown;
8323
8323
  nb: unknown;
8324
+ no: unknown;
8324
8325
  pl: unknown;
8325
8326
  pt: unknown;
8326
8327
  ro: unknown;
@@ -8547,7 +8548,6 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8547
8548
  }>]>;
8548
8549
  }>]>, t.IntersectionC<[t.TypeC<{
8549
8550
  /** Supported locales */locales: t.ArrayC<t.KeyofC<{
8550
- no: unknown;
8551
8551
  en: unknown;
8552
8552
  ar: unknown;
8553
8553
  fr: unknown;
@@ -8571,6 +8571,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8571
8571
  ms: unknown;
8572
8572
  mr: unknown;
8573
8573
  nb: unknown;
8574
+ no: unknown;
8574
8575
  pl: unknown;
8575
8576
  pt: unknown;
8576
8577
  ro: unknown;
@@ -8745,7 +8746,6 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8745
8746
  }>>; /** The transcend URL where the transcend logo links to */
8746
8747
  transcendUrl: t.StringC; /** The default locale to use - must be one of the supported locales */
8747
8748
  defaultLocale: t.KeyofC<{
8748
- no: unknown;
8749
8749
  en: unknown;
8750
8750
  ar: unknown;
8751
8751
  fr: unknown;
@@ -8769,6 +8769,7 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
8769
8769
  ms: unknown;
8770
8770
  mr: unknown;
8771
8771
  nb: unknown;
8772
+ no: unknown;
8772
8773
  pl: unknown;
8773
8774
  pt: unknown;
8774
8775
  ro: unknown;
@@ -9175,6 +9176,19 @@ declare const RetentionType: {
9175
9176
  /** Type override */
9176
9177
  type RetentionType = (typeof RetentionType)[keyof typeof RetentionType];
9177
9178
  //#endregion
9179
+ //#region src/drop.d.ts
9180
+ /** The six DROP list types as written on the wire. */
9181
+ declare const DropListType: {
9182
+ readonly Email: "email";
9183
+ readonly Phone: "phone";
9184
+ readonly Maid: "maid";
9185
+ readonly Ctv: "ctv";
9186
+ readonly Ndz: "ndz";
9187
+ readonly NameVin: "name_vin";
9188
+ };
9189
+ /** Type override */
9190
+ type DropListType = (typeof DropListType)[keyof typeof DropListType];
9191
+ //#endregion
9178
9192
  //#region src/dsrErrorCode.d.ts
9179
9193
  /**
9180
9194
  * Stable, machine-readable error codes for the DSR submission API
@@ -35560,7 +35574,6 @@ declare const DatabaseSqlVariablesForPrivacyRequest: t.IntersectionC<[t.TypeC<{
35560
35574
  }>; /** The time that the privacy request was created */
35561
35575
  requestCreatedAt: t.StringC; /** The language key for the privacy request */
35562
35576
  requestLocale: t.KeyofC<{
35563
- no: unknown;
35564
35577
  en: unknown;
35565
35578
  ar: unknown;
35566
35579
  fr: unknown;
@@ -35584,6 +35597,7 @@ declare const DatabaseSqlVariablesForPrivacyRequest: t.IntersectionC<[t.TypeC<{
35584
35597
  ms: unknown;
35585
35598
  mr: unknown;
35586
35599
  nb: unknown;
35600
+ no: unknown;
35587
35601
  pl: unknown;
35588
35602
  pt: unknown;
35589
35603
  ro: unknown;
@@ -62905,5 +62919,5 @@ declare const CollectDataSubjectRegions: {
62905
62919
  /** Override type */
62906
62920
  type CollectDataSubjectRegions = (typeof CollectDataSubjectRegions)[keyof typeof CollectDataSubjectRegions];
62907
62921
  //#endregion
62908
- export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CollectDataSubjectRegions, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ConsentUiUserFlow, ConsentVariantInput, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, DsrErrorCode, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FirstLayerThemeMinimal, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HeaderThemeMinimal, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, PolicyType, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterFooterLayout, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RestartIdentifierStrategy, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SecondLayerThemeMinimal, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, URLHostString, UiVariantStatus, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
62922
+ export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CollectDataSubjectRegions, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ConsentUiUserFlow, ConsentVariantInput, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, DropListType, DsrErrorCode, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FirstLayerThemeMinimal, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HeaderThemeMinimal, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, PolicyType, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterFooterLayout, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RestartIdentifierStrategy, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SecondLayerThemeMinimal, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, URLHostString, UiVariantStatus, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
62909
62923
  //# sourceMappingURL=index.d.mts.map