@transcend-io/privacy-types 5.2.4 → 5.2.5
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 +247 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1660 -684
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -195,22 +195,34 @@ let ActionItemPriorityOverride = /* @__PURE__ */ function(ActionItemPriorityOver
|
|
|
195
195
|
* The type of requests that allow for opt-out
|
|
196
196
|
*/
|
|
197
197
|
const RequestActionOptOut = makeEnum({
|
|
198
|
+
/** Opt out of automated decision making */
|
|
198
199
|
AutomatedDecisionMakingOptOut: "AUTOMATED_DECISION_MAKING_OPT_OUT",
|
|
200
|
+
/** Ability to opt out of the use of sensitive information. A requirement under the CPRA and similar laws. */
|
|
199
201
|
UseOfSensitiveInformationOptOut: "USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
|
|
202
|
+
/** Opt out of all communication */
|
|
200
203
|
ContactOptOut: "CONTACT_OPT_OUT",
|
|
204
|
+
/** Opt-out of the sale of personal data */
|
|
201
205
|
SaleOptOut: "SALE_OPT_OUT",
|
|
206
|
+
/** Opt out of tracking */
|
|
202
207
|
TrackingOptOut: "TRACKING_OPT_OUT",
|
|
208
|
+
/** Opt out custom */
|
|
203
209
|
CustomOptOut: "CUSTOM_OPT_OUT"
|
|
204
210
|
});
|
|
205
211
|
/**
|
|
206
212
|
* The type of requests that allow for opt-in
|
|
207
213
|
*/
|
|
208
214
|
const RequestActionOptIn = makeEnum({
|
|
215
|
+
/** Opt in to automated decision making */
|
|
209
216
|
AutomatedDecisionMakingOptIn: "AUTOMATED_DECISION_MAKING_OPT_IN",
|
|
217
|
+
/** Ability to opt in to the use of sensitive information. A requirement under the CPRA and similar laws. */
|
|
210
218
|
UseOfSensitiveInformationOptIn: "USE_OF_SENSITIVE_INFORMATION_OPT_IN",
|
|
219
|
+
/** Opt-in to the sale of personal data */
|
|
211
220
|
SaleOptIn: "SALE_OPT_IN",
|
|
221
|
+
/** Opt in to tracking */
|
|
212
222
|
TrackingOptIn: "TRACKING_OPT_IN",
|
|
223
|
+
/** Opt in to contact */
|
|
213
224
|
ContactOptIn: "CONTACT_OPT_IN",
|
|
225
|
+
/** Opt in custom */
|
|
214
226
|
CustomOptIn: "CUSTOM_OPT_IN"
|
|
215
227
|
});
|
|
216
228
|
/**
|
|
@@ -230,12 +242,19 @@ const REQUEST_ACTION_OPT_IN_TO_OPT_OUT = invert(REQUEST_ACTION_OPT_OUT_TO_OPT_IN
|
|
|
230
242
|
* An request action resolve types that can be run at the object level
|
|
231
243
|
*/
|
|
232
244
|
const RequestActionObjectResolver = makeEnum({
|
|
245
|
+
/** Data Download request */
|
|
233
246
|
Access: "ACCESS",
|
|
247
|
+
/** Erase the file completely */
|
|
234
248
|
Erasure: "ERASURE",
|
|
249
|
+
/** Make an update to an inaccurate record */
|
|
235
250
|
Rectification: "RECTIFICATION",
|
|
251
|
+
/** A restriction of processing request */
|
|
236
252
|
Restriction: "RESTRICTION",
|
|
253
|
+
/** Business Purpose Report */
|
|
237
254
|
BusinessPurpose: "BUSINESS_PURPOSE",
|
|
255
|
+
/** Add user to a legal hold */
|
|
238
256
|
PlaceOnLegalHold: "PLACE_ON_LEGAL_HOLD",
|
|
257
|
+
/** Remove a user from a legal hold */
|
|
239
258
|
RemoveFromLegalHold: "REMOVE_FROM_LEGAL_HOLD",
|
|
240
259
|
...RequestActionOptOut,
|
|
241
260
|
...RequestActionOptIn
|
|
@@ -248,19 +267,28 @@ const RequestActionObjectResolver = makeEnum({
|
|
|
248
267
|
* webhook service to implement. The individual objects can still be
|
|
249
268
|
* labeled for whether they should be included in data access requests.
|
|
250
269
|
*/
|
|
251
|
-
const InternalDataSiloObjectResolver = makeEnum({
|
|
270
|
+
const InternalDataSiloObjectResolver = makeEnum({
|
|
271
|
+
/** Data Download request */
|
|
272
|
+
Access: "ACCESS" });
|
|
252
273
|
/**
|
|
253
274
|
* The types of requests that Data Subject can make
|
|
254
275
|
*/
|
|
255
276
|
const RequestAction = makeEnum({
|
|
256
277
|
...RequestActionOptOut,
|
|
257
278
|
...RequestActionOptIn,
|
|
279
|
+
/** Data Download request */
|
|
258
280
|
Access: "ACCESS",
|
|
281
|
+
/** Erase the profile from the system */
|
|
259
282
|
Erasure: "ERASURE",
|
|
283
|
+
/** Make an update to an inaccurate record */
|
|
260
284
|
Rectification: "RECTIFICATION",
|
|
285
|
+
/** Restrict processing */
|
|
261
286
|
Restriction: "RESTRICTION",
|
|
287
|
+
/** Business Purpose Report */
|
|
262
288
|
BusinessPurpose: "BUSINESS_PURPOSE",
|
|
289
|
+
/** Add user to a legal hold */
|
|
263
290
|
PlaceOnLegalHold: "PLACE_ON_LEGAL_HOLD",
|
|
291
|
+
/** Remove a user from a legal hold */
|
|
264
292
|
RemoveFromLegalHold: "REMOVE_FROM_LEGAL_HOLD"
|
|
265
293
|
});
|
|
266
294
|
//#endregion
|
|
@@ -296,19 +324,30 @@ let AssessmentFormTemplateStatus = /* @__PURE__ */ function(AssessmentFormTempla
|
|
|
296
324
|
}({});
|
|
297
325
|
/** How an assessment form template was created */
|
|
298
326
|
const AssessmentFormTemplateSource = makeEnum({
|
|
327
|
+
/** The template was created manually by a user creating sections, questions, etc in the AD or via API */
|
|
299
328
|
Manual: "MANUAL",
|
|
329
|
+
/** The template was auto-generated as a side effect of kicking off assessments from the Data Inventory */
|
|
300
330
|
DataInventory: "DATA_INVENTORY",
|
|
331
|
+
/** The template was auto-generated as a side effect of importing OneTrust assessments */
|
|
301
332
|
Import: "IMPORT"
|
|
302
333
|
});
|
|
303
334
|
/** The types of the assessment question */
|
|
304
335
|
const AssessmentQuestionType = makeEnum({
|
|
336
|
+
/** A long-answer text question */
|
|
305
337
|
LongAnswer: "LONG_ANSWER_TEXT",
|
|
338
|
+
/** A short-answer text question */
|
|
306
339
|
ShortAnswer: "SHORT_ANSWER_TEXT",
|
|
340
|
+
/** A text question that accepts well-formatted URLs */
|
|
307
341
|
Url: "URL",
|
|
342
|
+
/** A question that accepts one or more email addresses */
|
|
308
343
|
Email: "EMAIL",
|
|
344
|
+
/** A single-select question */
|
|
309
345
|
SingleSelect: "SINGLE_SELECT",
|
|
346
|
+
/** A multi-select question */
|
|
310
347
|
MultiSelect: "MULTI_SELECT",
|
|
348
|
+
/** A file question */
|
|
311
349
|
File: "FILE",
|
|
350
|
+
/** A static text field that has no answer field */
|
|
312
351
|
Description: "DESCRIPTION"
|
|
313
352
|
});
|
|
314
353
|
/**
|
|
@@ -317,50 +356,86 @@ const AssessmentQuestionType = makeEnum({
|
|
|
317
356
|
* StaticAssessmentQuestionSubType and DynamicAssessmentQuestionSubType
|
|
318
357
|
*/
|
|
319
358
|
const AssessmentQuestionSubType = makeEnum({
|
|
359
|
+
/** A None subType for types that do not accept subTypes */
|
|
320
360
|
None: "NONE",
|
|
361
|
+
/** A Custom subType for user-defined select types */
|
|
321
362
|
Custom: "CUSTOM",
|
|
363
|
+
/** A user */
|
|
322
364
|
User: "USER",
|
|
365
|
+
/** A team */
|
|
323
366
|
Team: "TEAM",
|
|
367
|
+
/** A Data SubCategory */
|
|
324
368
|
DataSubCategory: "DATA_SUB_CATEGORY",
|
|
369
|
+
/** A Processing Purpose SubCategory */
|
|
325
370
|
ProcessingPurposeSubCategory: "PROCESSING_PURPOSE_SUB_CATEGORY",
|
|
371
|
+
/** A Processing Activity */
|
|
326
372
|
ProcessingActivity: "PROCESSING_ACTIVITY",
|
|
373
|
+
/** A vendor */
|
|
327
374
|
Vendor: "VENDOR",
|
|
375
|
+
/** A Region question */
|
|
328
376
|
Region: "REGION",
|
|
377
|
+
/** A Business Entity */
|
|
329
378
|
BusinessEntity: "BUSINESS_ENTITY",
|
|
379
|
+
/** The category of the recipient */
|
|
330
380
|
SaaSCategory: "SAA_S_CATEGORY",
|
|
381
|
+
/** The Data Processing Agreement Status */
|
|
331
382
|
DataProcessingAgreementStatus: "DATA_PROCESSING_AGREEMENT_STATUS",
|
|
383
|
+
/** The Data Protection Impact Assessment Status */
|
|
332
384
|
DataProtectionImpactAssessmentStatus: "DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS",
|
|
385
|
+
/** The deprecation state */
|
|
333
386
|
DeprecationState: "DEPRECATION_STATE",
|
|
387
|
+
/** The identifier */
|
|
334
388
|
Identifier: "IDENTIFIER",
|
|
389
|
+
/** A Data Silo */
|
|
335
390
|
DataSilo: "DATA_SILO",
|
|
391
|
+
/** Whether the data silo is recommended for consent manager purposes */
|
|
336
392
|
RecommendedForConsent: "RECOMMENDED_FOR_CONSENT",
|
|
393
|
+
/** Whether the data silo is recommended for privacy request purposes */
|
|
337
394
|
RecommendedForPrivacy: "RECOMMENDED_FOR_PRIVACY",
|
|
395
|
+
/** The subject */
|
|
338
396
|
Subject: "SUBJECT",
|
|
397
|
+
/** The type of retention schedule */
|
|
339
398
|
RetentionType: "RETENTION_TYPE",
|
|
399
|
+
/** The controllership */
|
|
340
400
|
Controllership: "CONTROLLERSHIP",
|
|
401
|
+
/** Whether the data silo has personal data */
|
|
341
402
|
HasPersonalData: "HAS_PERSONAL_DATA",
|
|
403
|
+
/** The Attribute Key referring to a custom field */
|
|
342
404
|
AttributeKey: "ATTRIBUTE_KEY",
|
|
405
|
+
/** A sensitive category */
|
|
343
406
|
SensitiveCategory: "SENSITIVE_CATEGORY"
|
|
344
407
|
});
|
|
345
408
|
/** The possible actions within an assessment question's display logic */
|
|
346
409
|
const AssessmentsDisplayLogicAction = makeEnum({
|
|
410
|
+
/** Display the question */
|
|
347
411
|
Show: "SHOW",
|
|
412
|
+
/** Skip the question */
|
|
348
413
|
Skip: "SKIP"
|
|
349
414
|
});
|
|
350
415
|
/** The comparison operators to use in an assessment question's display logic */
|
|
351
416
|
const ComparisonOperator = makeEnum({
|
|
417
|
+
/** is equal to */
|
|
352
418
|
IsEqualTo: "IS_EQUAL_TO",
|
|
419
|
+
/** is not equal to */
|
|
353
420
|
IsNotEqualTo: "IS_NOT_EQUAL_TO",
|
|
421
|
+
/** is one of */
|
|
354
422
|
IsOneOf: "IS_ONE_OF",
|
|
423
|
+
/** is not one of */
|
|
355
424
|
IsNotOneOf: "IS_NOT_ONE_OF",
|
|
425
|
+
/** contains */
|
|
356
426
|
Contains: "CONTAINS",
|
|
427
|
+
/** is shown */
|
|
357
428
|
IsShown: "IS_SHOWN",
|
|
429
|
+
/** is not shown */
|
|
358
430
|
IsNotShown: "IS_NOT_SHOWN",
|
|
431
|
+
/** does not contain */
|
|
359
432
|
DoesNotContain: "DOES_NOT_CONTAIN"
|
|
360
433
|
});
|
|
361
434
|
/** The logic operators to use in an assessment question's display logic */
|
|
362
435
|
const LogicOperator = makeEnum({
|
|
436
|
+
/** and */
|
|
363
437
|
And: "AND",
|
|
438
|
+
/** or */
|
|
364
439
|
Or: "OR"
|
|
365
440
|
});
|
|
366
441
|
/**
|
|
@@ -764,12 +839,19 @@ const AssessmentSyncColumn = makeEnum({
|
|
|
764
839
|
});
|
|
765
840
|
/** The data inventory models that can be synced from an Assessment Form */
|
|
766
841
|
const AssessmentSyncModel = makeEnum({
|
|
842
|
+
/** DataSilo model */
|
|
767
843
|
DataSilo: "dataSilo",
|
|
844
|
+
/** SubDataPoint model */
|
|
768
845
|
SubDataPoint: "subDataPoint",
|
|
846
|
+
/** Vendor model */
|
|
769
847
|
Vendor: "vendor",
|
|
848
|
+
/** DataSubCategory model */
|
|
770
849
|
DataSubCategory: "dataSubCategory",
|
|
850
|
+
/** ProcessingPurposeSubCategory model */
|
|
771
851
|
ProcessingPurposeSubCategory: "processingPurposeSubCategory",
|
|
852
|
+
/** BusinessEntity model */
|
|
772
853
|
BusinessEntity: "businessEntity",
|
|
854
|
+
/** ProcessingActivity model */
|
|
773
855
|
ProcessingActivity: "processingActivity"
|
|
774
856
|
});
|
|
775
857
|
//#endregion
|
|
@@ -1341,7 +1423,9 @@ const DataFlowScope = makeEnum({
|
|
|
1341
1423
|
CSP: "CSP"
|
|
1342
1424
|
});
|
|
1343
1425
|
const ConsentBundleType = makeEnum({
|
|
1426
|
+
/** Bundle hosted at /cm path */
|
|
1344
1427
|
Production: "PRODUCTION",
|
|
1428
|
+
/** Bundle hosted at /cm-test path */
|
|
1345
1429
|
Test: "TEST"
|
|
1346
1430
|
});
|
|
1347
1431
|
const UnknownRequestPolicy = makeEnum({
|
|
@@ -1350,8 +1434,11 @@ const UnknownRequestPolicy = makeEnum({
|
|
|
1350
1434
|
Block: "BLOCK"
|
|
1351
1435
|
});
|
|
1352
1436
|
const TelemetryPartitionStrategy = makeEnum({
|
|
1437
|
+
/** Partition telemetry data by the origin (default) */
|
|
1353
1438
|
Origin: "origin",
|
|
1439
|
+
/** Partition telemetry data by the origin + path */
|
|
1354
1440
|
Path: "path",
|
|
1441
|
+
/** Partition telemetry data by the full URL */
|
|
1355
1442
|
Url: "url"
|
|
1356
1443
|
});
|
|
1357
1444
|
/**
|
|
@@ -1410,7 +1497,9 @@ const SignedIabAgreementOption = makeEnum({
|
|
|
1410
1497
|
* Describes whether listed countries/country subdivisions are included in an experience
|
|
1411
1498
|
*/
|
|
1412
1499
|
const RegionsOperator = makeEnum({
|
|
1500
|
+
/** The listed countries/country subdivisions, time zones, and languages are included in this experience */
|
|
1413
1501
|
In: "IN",
|
|
1502
|
+
/** The listed countries/country subdivisions, time zones, and languages are NOT included in this experience */
|
|
1414
1503
|
NotIn: "NOT_IN"
|
|
1415
1504
|
});
|
|
1416
1505
|
/**
|
|
@@ -1429,9 +1518,13 @@ const BackendSyncOption = makeEnum({
|
|
|
1429
1518
|
* default: 'on'
|
|
1430
1519
|
*/
|
|
1431
1520
|
const LocalSyncOption = makeEnum({
|
|
1521
|
+
/** use private sync only */
|
|
1432
1522
|
Private: "private",
|
|
1523
|
+
/** allow network-observable sync when private sync is unavailable */
|
|
1433
1524
|
AllowNetworkObservable: "allow-network-observable",
|
|
1525
|
+
/** comparable to 'allow-network-observable' -- allow network-observable sync when private sync is unavailble */
|
|
1434
1526
|
On: "on",
|
|
1527
|
+
/** disable local sync */
|
|
1435
1528
|
Off: "off"
|
|
1436
1529
|
});
|
|
1437
1530
|
/**
|
|
@@ -1457,83 +1550,166 @@ const DefaultConsentOption = makeEnum({
|
|
|
1457
1550
|
* Fields by which you can order cookies
|
|
1458
1551
|
*/
|
|
1459
1552
|
const CookieOrderField = makeEnum({
|
|
1553
|
+
/** The name of this cookie */
|
|
1460
1554
|
Name: "name",
|
|
1555
|
+
/** When the cookie was created */
|
|
1461
1556
|
CreatedAt: "createdAt",
|
|
1557
|
+
/** The time the cookie was updated */
|
|
1462
1558
|
UpdatedAt: "updatedAt"
|
|
1463
1559
|
});
|
|
1464
1560
|
/**
|
|
1465
1561
|
* Fields by which you can order data flows
|
|
1466
1562
|
*/
|
|
1467
1563
|
const DataFlowOrderField = makeEnum({
|
|
1564
|
+
/** The value of this data flow */
|
|
1468
1565
|
Value: "value",
|
|
1566
|
+
/** When the data flow was created */
|
|
1469
1567
|
CreatedAt: "createdAt",
|
|
1568
|
+
/** The time the data flow was updated */
|
|
1470
1569
|
UpdatedAt: "updatedAt",
|
|
1570
|
+
/** The number of occurrences of this data flow */
|
|
1471
1571
|
Occurrences: "occurrences",
|
|
1572
|
+
/** The SaaS tool associated with these data flows */
|
|
1472
1573
|
Service: "service"
|
|
1473
1574
|
});
|
|
1474
1575
|
/**
|
|
1475
1576
|
* Types of data flows
|
|
1476
1577
|
*/
|
|
1477
1578
|
const DataFlowType = makeEnum({
|
|
1579
|
+
/** URL-based data flow */
|
|
1478
1580
|
Url: "URL",
|
|
1581
|
+
/** Query parameter-based data flow */
|
|
1479
1582
|
QueryParam: "QUERY_PARAM",
|
|
1583
|
+
/** Regular expression-based data flow */
|
|
1480
1584
|
RegExp: "REGEX"
|
|
1481
1585
|
});
|
|
1482
1586
|
/**
|
|
1483
1587
|
* Triage actions for consent bulk operations
|
|
1484
1588
|
*/
|
|
1485
1589
|
const TriageAction = makeEnum({
|
|
1590
|
+
/** Approve the tracker */
|
|
1486
1591
|
Approve: "APPROVE",
|
|
1592
|
+
/** Mark the tracker as junk */
|
|
1487
1593
|
Junk: "JUNK"
|
|
1488
1594
|
});
|
|
1489
1595
|
/**
|
|
1490
1596
|
* Discriminator for cookie vs data flow
|
|
1491
1597
|
*/
|
|
1492
1598
|
const ConsentTrackerType = makeEnum({
|
|
1599
|
+
/** Cookie tracker */
|
|
1493
1600
|
Cookie: "cookie",
|
|
1601
|
+
/** Data flow tracker */
|
|
1494
1602
|
DataFlow: "data_flow"
|
|
1495
1603
|
});
|
|
1496
1604
|
/**
|
|
1497
1605
|
* Metrics supported by airgap bundle aggregate/timeseries analytics
|
|
1498
1606
|
*/
|
|
1499
1607
|
const AirgapBundleAnalyticsMetric = makeEnum({
|
|
1608
|
+
/** User opt-in or opt-out for a consent purpose */
|
|
1500
1609
|
ConsentChanged: "CONSENT_CHANGED",
|
|
1610
|
+
/** Privacy signal detected (e.g. GPC, DNT) */
|
|
1501
1611
|
SignalDetected: "SIGNAL_DETECTED",
|
|
1612
|
+
/** Site session recorded */
|
|
1502
1613
|
SiteSessions: "SITE_SESSIONS",
|
|
1614
|
+
/** Page view recorded */
|
|
1503
1615
|
PageViews: "PAGE_VIEWS"
|
|
1504
1616
|
});
|
|
1505
1617
|
/**
|
|
1506
1618
|
* Dimensions available for aggregate consent analytics breakdowns
|
|
1507
1619
|
*/
|
|
1508
1620
|
const AirgapBundleAnalyticsDimension = makeEnum({
|
|
1621
|
+
/** Consent value after change (true = opted in, false = opted out) */
|
|
1509
1622
|
NewValue: "NEW_VALUE",
|
|
1623
|
+
/** Privacy regime active when the event was recorded */
|
|
1510
1624
|
Regime: "REGIME",
|
|
1625
|
+
/** Tracking purpose the event relates to */
|
|
1511
1626
|
Purpose: "PURPOSE"
|
|
1512
1627
|
});
|
|
1513
1628
|
/**
|
|
1514
1629
|
* Bin sizes for airgap bundle timeseries analytics
|
|
1515
1630
|
*/
|
|
1516
1631
|
const AirgapBundleAnalyticsBinInterval = makeEnum({
|
|
1632
|
+
/** One minute bins */
|
|
1517
1633
|
Minute: "1m",
|
|
1634
|
+
/** One hour bins */
|
|
1518
1635
|
Hourly: "1h",
|
|
1636
|
+
/** One day bins */
|
|
1519
1637
|
Daily: "1d"
|
|
1520
1638
|
});
|
|
1521
1639
|
/**
|
|
1522
1640
|
* analyticsData sources for consent manager metrics
|
|
1523
1641
|
*/
|
|
1524
1642
|
const ConsentManagerAnalyticsDataSource = makeEnum({
|
|
1643
|
+
/** DNT/GPC and other privacy signal counts over time */
|
|
1525
1644
|
PrivacySignalTimeseries: "PRIVACY_SIGNAL_TIMESERIES",
|
|
1645
|
+
/** Explicit opt-in/opt-out events over time */
|
|
1526
1646
|
ConsentChangesTimeseries: "CONSENT_CHANGES_TIMESERIES",
|
|
1647
|
+
/** Session counts grouped by privacy regime */
|
|
1527
1648
|
ConsentSessionsByRegime: "CONSENT_SESSIONS_BY_REGIME"
|
|
1528
1649
|
});
|
|
1529
1650
|
/**
|
|
1530
1651
|
* Allowed bin sizes for consent manager analyticsData queries
|
|
1531
1652
|
*/
|
|
1532
1653
|
const ConsentManagerMetricBin = makeEnum({
|
|
1654
|
+
/** One hour bins */
|
|
1533
1655
|
Hourly: "1h",
|
|
1656
|
+
/** One day bins */
|
|
1534
1657
|
Daily: "1d"
|
|
1535
1658
|
});
|
|
1536
1659
|
//#endregion
|
|
1660
|
+
//#region src/consentUiInventory.ts
|
|
1661
|
+
/** Status of a consent UI variant */
|
|
1662
|
+
const UiVariantStatus = makeEnum({
|
|
1663
|
+
/** Variant is in draft */
|
|
1664
|
+
Draft: "DRAFT",
|
|
1665
|
+
/** Variant is active */
|
|
1666
|
+
Active: "ACTIVE",
|
|
1667
|
+
/** Variant is published */
|
|
1668
|
+
Published: "PUBLISHED"
|
|
1669
|
+
});
|
|
1670
|
+
/** User flow for a consent UI variant */
|
|
1671
|
+
const ConsentUiUserFlow = makeEnum({
|
|
1672
|
+
/** Banner-only flow */
|
|
1673
|
+
Banner: "BANNER",
|
|
1674
|
+
/** Modal-only flow */
|
|
1675
|
+
Modal: "MODAL",
|
|
1676
|
+
/** Banner and modal flow */
|
|
1677
|
+
BannerAndModal: "BANNER_AND_MODAL"
|
|
1678
|
+
});
|
|
1679
|
+
/** Consent UI variant input from transcend.yml */
|
|
1680
|
+
const ConsentVariantInput = t.intersection([t.type({
|
|
1681
|
+
/** ID of consent variant */
|
|
1682
|
+
id: t.string,
|
|
1683
|
+
/** Name of consent variant */
|
|
1684
|
+
name: t.string,
|
|
1685
|
+
/** Slug of consent variant */
|
|
1686
|
+
slug: t.string,
|
|
1687
|
+
/** Status of variant */
|
|
1688
|
+
status: valuesOf(UiVariantStatus),
|
|
1689
|
+
/** Locales of variant */
|
|
1690
|
+
locales: t.array(valuesOf(LOCALE_KEY)),
|
|
1691
|
+
/** Configuration of variant */
|
|
1692
|
+
configuration: t.string
|
|
1693
|
+
}), t.partial({
|
|
1694
|
+
/** Description of variant */
|
|
1695
|
+
description: t.string,
|
|
1696
|
+
/** User flow of variant */
|
|
1697
|
+
userFlow: valuesOf(ConsentUiUserFlow),
|
|
1698
|
+
/** Slug of the consent UI theme associated with this variant */
|
|
1699
|
+
themeSlug: t.string
|
|
1700
|
+
})]);
|
|
1701
|
+
/** Consent UI theme input from transcend.yml */
|
|
1702
|
+
const ConsentThemeInput = t.type({
|
|
1703
|
+
/** ID of consent theme */
|
|
1704
|
+
id: t.string,
|
|
1705
|
+
/** Name of consent theme */
|
|
1706
|
+
name: t.string,
|
|
1707
|
+
/** Slug of consent theme */
|
|
1708
|
+
slug: t.string,
|
|
1709
|
+
/** Configuration of theme */
|
|
1710
|
+
configuration: t.string
|
|
1711
|
+
});
|
|
1712
|
+
//#endregion
|
|
1537
1713
|
//#region src/consentUiConfiguration.ts
|
|
1538
1714
|
/** Actions for buttons in modals */
|
|
1539
1715
|
const ModalButtonActions = makeEnum({
|
|
@@ -1555,8 +1731,11 @@ const ButtonType = makeEnum({
|
|
|
1555
1731
|
const AbsoluteUrlString = t.string;
|
|
1556
1732
|
/** Top-level configuration shared between the UI layers */
|
|
1557
1733
|
const SharedTopLevelConfig = t.type({
|
|
1734
|
+
/** Supported locales */
|
|
1558
1735
|
locales: t.array(valuesOf(LOCALE_KEY)),
|
|
1736
|
+
/** The transcend URL where the transcend logo links to */
|
|
1559
1737
|
transcendUrl: AbsoluteUrlString,
|
|
1738
|
+
/** The default locale to use - must be one of the supported locales */
|
|
1560
1739
|
defaultLocale: valuesOf(LOCALE_KEY)
|
|
1561
1740
|
});
|
|
1562
1741
|
/** Button configuration */
|
|
@@ -1633,38 +1812,51 @@ const UIConfiguration = t.union([
|
|
|
1633
1812
|
* Vertical alignment options for the consent UI content
|
|
1634
1813
|
*/
|
|
1635
1814
|
const VerticalAlign = makeEnum({
|
|
1815
|
+
/** Aligns the UI content at the top */
|
|
1636
1816
|
Top: "top",
|
|
1817
|
+
/** Aligns the UI content at the bottom */
|
|
1637
1818
|
Bottom: "bottom",
|
|
1819
|
+
/** Aligns the UI content in the center */
|
|
1638
1820
|
Center: "center"
|
|
1639
1821
|
});
|
|
1640
1822
|
/**
|
|
1641
1823
|
* Horizontal alignment options for the consent UI content
|
|
1642
1824
|
*/
|
|
1643
1825
|
const HorizontalAlign = makeEnum({
|
|
1826
|
+
/** Aligns the UI content on the left */
|
|
1644
1827
|
Left: "left",
|
|
1828
|
+
/** Aligns the UI content in the center */
|
|
1645
1829
|
Center: "center",
|
|
1830
|
+
/** Aligns the UI content on the right */
|
|
1646
1831
|
Right: "right"
|
|
1647
1832
|
});
|
|
1648
1833
|
/**
|
|
1649
1834
|
* Position options for the logo in the consent UI
|
|
1650
1835
|
*/
|
|
1651
1836
|
const LogoPosition = makeEnum({
|
|
1837
|
+
/** Logo is positioned above the content */
|
|
1652
1838
|
Above: "above",
|
|
1839
|
+
/** Logo is positioned to the left of the content */
|
|
1653
1840
|
Left: "left"
|
|
1654
1841
|
});
|
|
1655
1842
|
/**
|
|
1656
1843
|
* Defines how content can flow in a layout
|
|
1657
1844
|
*/
|
|
1658
1845
|
const ContentFlows = makeEnum({
|
|
1846
|
+
/** Items are stacked vertically, top to bottom */
|
|
1659
1847
|
Vertical: "vertical",
|
|
1848
|
+
/** Items are stacked horizontally, often wrapping if space runs out */
|
|
1660
1849
|
HorizontalStacked: "horizontal-stacked",
|
|
1850
|
+
/** Items are laid out horizontally, in a single row */
|
|
1661
1851
|
HorizontalFlat: "horizontal-flat"
|
|
1662
1852
|
});
|
|
1663
1853
|
/**
|
|
1664
1854
|
* Units available for responsive breakpoints.
|
|
1665
1855
|
*/
|
|
1666
1856
|
const BreakpointType = makeEnum({
|
|
1857
|
+
/** Breakpoint defined in pixels */
|
|
1667
1858
|
Px: "px",
|
|
1859
|
+
/** Breakpoint defined as a percentage */
|
|
1668
1860
|
Percent: "percent"
|
|
1669
1861
|
});
|
|
1670
1862
|
/** String that represents a CSS unit eg. px, em, etc. */
|
|
@@ -1682,7 +1874,9 @@ const RgbHexString = t.string;
|
|
|
1682
1874
|
/** Index of a button's theme */
|
|
1683
1875
|
const ButtonThemeIndex = t.number;
|
|
1684
1876
|
/** Represents background color configuration */
|
|
1685
|
-
const Background = t.type({
|
|
1877
|
+
const Background = t.type({
|
|
1878
|
+
/** Background color as an RGBA hex string */
|
|
1879
|
+
backgroundColor: RgbaHexString });
|
|
1686
1880
|
/**
|
|
1687
1881
|
* Represents border configuration
|
|
1688
1882
|
*/
|
|
@@ -1707,7 +1901,9 @@ const Link = t.type({
|
|
|
1707
1901
|
const Icon = t.type({ iconColor: RgbHexString });
|
|
1708
1902
|
/** Represents a responsive breakpoint with value and unit */
|
|
1709
1903
|
const Breakpoint = t.type({
|
|
1904
|
+
/** The numeric value of the breakpoint */
|
|
1710
1905
|
value: t.number,
|
|
1906
|
+
/** The unit of the breakpoint (px or percent) */
|
|
1711
1907
|
unit: valuesOf(BreakpointType)
|
|
1712
1908
|
});
|
|
1713
1909
|
/**
|
|
@@ -1864,7 +2060,9 @@ const SemicolonDelimitedRegimeKeyString = t.string;
|
|
|
1864
2060
|
* Autofocus toggle values ("on" / "off").
|
|
1865
2061
|
*/
|
|
1866
2062
|
const AutofocusToggle = makeEnum({
|
|
2063
|
+
/** Enable autofocus */
|
|
1867
2064
|
On: "on",
|
|
2065
|
+
/** Disable autofocus */
|
|
1868
2066
|
Off: "off"
|
|
1869
2067
|
});
|
|
1870
2068
|
/**
|
|
@@ -1877,8 +2075,11 @@ const AutofocusValues = t.union([valuesOf(AutofocusToggle), DOMElementId]);
|
|
|
1877
2075
|
* Shadow root options ("open" / "closed" / "none").
|
|
1878
2076
|
*/
|
|
1879
2077
|
const ShadowRootOptions = makeEnum({
|
|
2078
|
+
/** Enable shadow root */
|
|
1880
2079
|
Open: "open",
|
|
2080
|
+
/** Disable shadow root */
|
|
1881
2081
|
Closed: "closed",
|
|
2082
|
+
/** Disable shadow root */
|
|
1882
2083
|
None: "none"
|
|
1883
2084
|
});
|
|
1884
2085
|
/** The top-level configuration for the consent UI */
|
|
@@ -1970,15 +2171,23 @@ const ConfidenceLabel = makeEnum({
|
|
|
1970
2171
|
});
|
|
1971
2172
|
/** The approval status of the category guess for a subdatapoint */
|
|
1972
2173
|
const SubDataPointDataSubCategoryGuessStatus = makeEnum({
|
|
2174
|
+
/** The guess has been approved as valid */
|
|
1973
2175
|
Approved: "APPROVED",
|
|
2176
|
+
/** The guess is pending review */
|
|
1974
2177
|
Pending: "PENDING",
|
|
2178
|
+
/** The guess has been marked as wrong */
|
|
1975
2179
|
Rejected: "REJECTED"
|
|
1976
2180
|
});
|
|
1977
2181
|
const UnstructuredSubDataPointRecommendationStatus = makeEnum({
|
|
2182
|
+
/** The category was manually applied */
|
|
1978
2183
|
ManuallyAdded: "MANUALLY_ADDED",
|
|
2184
|
+
/** The recommendation has been corrected */
|
|
1979
2185
|
Corrected: "CORRECTED",
|
|
2186
|
+
/** The recommendation has been approved as valid */
|
|
1980
2187
|
Validated: "VALIDATED",
|
|
2188
|
+
/** The recommendation is has been made but not validated */
|
|
1981
2189
|
Classified: "CLASSIFIED",
|
|
2190
|
+
/** The recommendation has been marked as wrong */
|
|
1982
2191
|
Rejected: "REJECTED"
|
|
1983
2192
|
});
|
|
1984
2193
|
/**
|
|
@@ -1990,16 +2199,24 @@ const TableEncryptionType = makeEnum({
|
|
|
1990
2199
|
EncryptedByDataAtRest: "ENCRYPTED_DATA_AT_REST"
|
|
1991
2200
|
});
|
|
1992
2201
|
const Controllership = makeEnum({
|
|
2202
|
+
/** The current organization is a controller of the data */
|
|
1993
2203
|
Controller: "CONTROLLER",
|
|
2204
|
+
/** The current organization is a processor of the data */
|
|
1994
2205
|
Processor: "PROCESSOR",
|
|
2206
|
+
/** The current organization is a joint controller of the data */
|
|
1995
2207
|
JointController: "JOINT_CONTROLLER"
|
|
1996
2208
|
});
|
|
1997
2209
|
/** The type of retention schedule for personal data */
|
|
1998
2210
|
const RetentionType = makeEnum({
|
|
2211
|
+
/** Collected user information is deleted, anonymized or aggregated after a specific time period */
|
|
1999
2212
|
StatedPeriod: "STATED_PERIOD",
|
|
2213
|
+
/** Data is deleted, anonymized, or aggregated at some point, but no specific retention period is stated */
|
|
2000
2214
|
Limited: "LIMITED",
|
|
2215
|
+
/** Collected user information is retained indefinitely */
|
|
2001
2216
|
Indefinite: "INDEFINITE",
|
|
2217
|
+
/** A specific retention type not covered above */
|
|
2002
2218
|
Other: "OTHER",
|
|
2219
|
+
/** Retention period is not stated or unclear */
|
|
2003
2220
|
Unspecified: "UNSPECIFIED"
|
|
2004
2221
|
});
|
|
2005
2222
|
//#endregion
|
|
@@ -2008,7 +2225,9 @@ const RetentionType = makeEnum({
|
|
|
2008
2225
|
* An identifier that can be used to communication with the data subject, also implies that the identifier is transcend supported
|
|
2009
2226
|
*/
|
|
2010
2227
|
const CommunicationIdentifierType = makeEnum({
|
|
2228
|
+
/** An email address */
|
|
2011
2229
|
Email: "email",
|
|
2230
|
+
/** A phone number */
|
|
2012
2231
|
Phone: "phone"
|
|
2013
2232
|
});
|
|
2014
2233
|
/**
|
|
@@ -2016,35 +2235,84 @@ const CommunicationIdentifierType = makeEnum({
|
|
|
2016
2235
|
*/
|
|
2017
2236
|
const IdentifierType = makeEnum({
|
|
2018
2237
|
...CommunicationIdentifierType,
|
|
2238
|
+
/** The core id of the organization (usually provided through login) */
|
|
2019
2239
|
CoreIdentifier: "coreIdentifier",
|
|
2240
|
+
/** A custom identifier */
|
|
2020
2241
|
Custom: "custom",
|
|
2242
|
+
/**
|
|
2243
|
+
* Google/Android mobile identifier
|
|
2244
|
+
*
|
|
2245
|
+
* @see https://www.singular.net/blog/google-advertising-id-gaid/
|
|
2246
|
+
* AKA adid - android advertising id
|
|
2247
|
+
*/
|
|
2021
2248
|
Gaid: "gaid",
|
|
2249
|
+
/** Apple ios mobile identifier */
|
|
2022
2250
|
Idfa: "idfa",
|
|
2251
|
+
/**
|
|
2252
|
+
* The Identifier for Vendors
|
|
2253
|
+
*
|
|
2254
|
+
* @see https://developer.apple.com/documentation/uikit/uidevice/1620059-identifierforvendor
|
|
2255
|
+
*/
|
|
2023
2256
|
Idfv: "idfv",
|
|
2024
2257
|
BrowserId: "browserId",
|
|
2258
|
+
/** Microsoft Advertising Id */
|
|
2025
2259
|
MicrosoftAdvertisingId: "microsoftAdvertisingId",
|
|
2260
|
+
/** Amazon fire Advertising Id */
|
|
2026
2261
|
AmazonFireAdvertisingId: "amazonFireAdvertisingId",
|
|
2262
|
+
/**
|
|
2263
|
+
* Roku Advertising Id
|
|
2264
|
+
*
|
|
2265
|
+
* @see https://developer.roku.com/docs/developer-program/advertising/integrating-roku-advertising-framework.md
|
|
2266
|
+
*/
|
|
2027
2267
|
Rida: "rida",
|
|
2268
|
+
/** The handle for the filestack file */
|
|
2028
2269
|
FilestackHandle: "filestackHandle",
|
|
2270
|
+
/** An ID for a stripe user */
|
|
2029
2271
|
StripeId: "stripeId",
|
|
2272
|
+
/** The ID used to key braintree customer */
|
|
2030
2273
|
BraintreeCustomerId: "braintreeCustomerId",
|
|
2274
|
+
/** An ID for a chargebee user */
|
|
2031
2275
|
ChargebeeId: "chargebeeId",
|
|
2276
|
+
/** An ID for a Thrive TRM contact */
|
|
2032
2277
|
thriveTrmContactId: "thriveTrmContactId",
|
|
2278
|
+
/** Talkable uuid */
|
|
2033
2279
|
TalkableUUID: "talkableUUID",
|
|
2280
|
+
/** Recurly site account ID */
|
|
2034
2281
|
RecurlyId: "recurlyId",
|
|
2282
|
+
/** The customer.io ID - also known as cio_id */
|
|
2035
2283
|
customerIoId: "customerIoId",
|
|
2284
|
+
/** The visitorId for the Sprig integration */
|
|
2036
2285
|
sprigVisitorId: "sprigVisitorId",
|
|
2286
|
+
/** URL of a LinkedIn profile */
|
|
2037
2287
|
linkedInURL: "linkedInURL",
|
|
2288
|
+
/**
|
|
2289
|
+
* An advertising ID (for a mobile device)
|
|
2290
|
+
* TODO: https://transcend.height.app/T-13657 - remove this in favor of idfa and gpadvid
|
|
2291
|
+
*/
|
|
2038
2292
|
AdvertisingId: "advertisingId",
|
|
2293
|
+
/** An ID for a Persona account */
|
|
2039
2294
|
PersonaReferenceId: "personaReferenceId",
|
|
2295
|
+
/** An ID for a Stream user */
|
|
2040
2296
|
StreamUserId: "streamUserId",
|
|
2297
|
+
/** A token used to make API calls on behalf of a Plaid account. */
|
|
2041
2298
|
PlaidProcessorToken: "plaidProcessorToken",
|
|
2299
|
+
/** An ID for an applicant on Onfido */
|
|
2042
2300
|
OnfidoApplicantId: "onfidoApplicantId",
|
|
2301
|
+
/** Custom ID for a Vero user */
|
|
2043
2302
|
VeroUserId: "veroUserId",
|
|
2303
|
+
/**
|
|
2304
|
+
* Adobe Privacy API ID's
|
|
2305
|
+
* https://experienceleague.adobe.com/en/docs/experience-platform/privacy/api/appendix#standard-namespaces
|
|
2306
|
+
*/
|
|
2307
|
+
/** Adobe Advertising Cloud ID */
|
|
2044
2308
|
AdobeAdvertisingCloudId: "adobeAdvertisingCloudId",
|
|
2309
|
+
/** Adobe Audience Manager UUID */
|
|
2045
2310
|
AdobeAudienceManagerId: "adobeAudienceManagerId",
|
|
2311
|
+
/** Adobe Experience Cloud ID */
|
|
2046
2312
|
AdobeExperienceCloudId: "adobeExperienceCloudId",
|
|
2313
|
+
/** Adobe Target ID */
|
|
2047
2314
|
AdobeTargetID: "adobeTargetId",
|
|
2315
|
+
/** The special Transcend identifier on consent preference records */
|
|
2048
2316
|
Transcend: "transcend"
|
|
2049
2317
|
});
|
|
2050
2318
|
//#endregion
|
|
@@ -2054,22 +2322,35 @@ const IdentifierType = makeEnum({
|
|
|
2054
2322
|
* and return arbitrary outputs
|
|
2055
2323
|
*/
|
|
2056
2324
|
const CustomEnricherType = makeEnum({
|
|
2325
|
+
/** Notify a server to enrich the variable */
|
|
2057
2326
|
Server: "SERVER",
|
|
2327
|
+
/** Notify a person to enrich the value */
|
|
2058
2328
|
Person: "PERSON",
|
|
2329
|
+
/** Check the legal hold list for that enricher type */
|
|
2059
2330
|
LegalHold: "LEGAL_HOLD",
|
|
2331
|
+
/** Auto approve a specific identifier in a specific situation */
|
|
2060
2332
|
AutoApprove: "AUTO_APPROVE",
|
|
2333
|
+
/** Test an identifier using a regex */
|
|
2061
2334
|
RegexMatch: "REGEX_MATCH",
|
|
2335
|
+
/** Perform conditional logic based on region */
|
|
2062
2336
|
RegionMatcher: "REGION_MATCH",
|
|
2337
|
+
/** Execute an SQL query against a database */
|
|
2063
2338
|
Database: "DATABASE",
|
|
2339
|
+
/** Execute a look in looker to map identifiers */
|
|
2064
2340
|
Looker: "LOOKER",
|
|
2341
|
+
/** Adds an enricher dependency */
|
|
2065
2342
|
WaitPeriod: "WAIT_PERIOD",
|
|
2343
|
+
/** Verify a government ID */
|
|
2066
2344
|
GovernmentId: "GOVERNMENT_ID",
|
|
2345
|
+
/** Custom Function enricher type. */
|
|
2067
2346
|
CustomFunction: "CUSTOM_FUNCTION"
|
|
2068
2347
|
});
|
|
2069
2348
|
/**
|
|
2070
2349
|
* Enrichers that can only be used to initialize the beginning of a DSR
|
|
2071
2350
|
*/
|
|
2072
|
-
const InitEnricherType = makeEnum({
|
|
2351
|
+
const InitEnricherType = makeEnum({
|
|
2352
|
+
/** Sombra has the capability */
|
|
2353
|
+
Sombra: "SOMBRA" });
|
|
2073
2354
|
/**
|
|
2074
2355
|
* The various types of identity enrichers supported by transcend
|
|
2075
2356
|
*/
|
|
@@ -28049,20 +28330,35 @@ const DatabaseVariables = t.record(t.string, t.union([
|
|
|
28049
28330
|
* e.g. INSERT INTO table (id, type) VALUES ('{{requestId}}', '{{requestType}}');
|
|
28050
28331
|
*/
|
|
28051
28332
|
const DatabaseSqlVariablesForPrivacyRequest = t.intersection([t.type({
|
|
28333
|
+
/** The unique UUID for the privacy request */
|
|
28052
28334
|
requestId: t.string,
|
|
28335
|
+
/** The action type of the privacy request */
|
|
28053
28336
|
requestType: valuesOf(RequestAction),
|
|
28337
|
+
/** The time that the privacy request was created */
|
|
28054
28338
|
requestCreatedAt: t.string,
|
|
28339
|
+
/** The language key for the privacy request */
|
|
28055
28340
|
requestLocale: valuesOf(LOCALE_KEY),
|
|
28341
|
+
/** Additional details provided about the request */
|
|
28056
28342
|
requestDetails: t.string,
|
|
28343
|
+
/** Whether the request is a test request */
|
|
28057
28344
|
requestIsTest: t.boolean,
|
|
28345
|
+
/** Origin in which request was made */
|
|
28058
28346
|
requestOrigin: t.union([t.string, t.null]),
|
|
28347
|
+
/** Slug for type of data subject that made the request */
|
|
28059
28348
|
requestDataSubjectType: t.string,
|
|
28349
|
+
/** The country code of person that made the request */
|
|
28060
28350
|
requestCountry: t.union([t.string, t.null]),
|
|
28351
|
+
/** The country sub division code of person that made the request */
|
|
28061
28352
|
requestCountrySubDivision: t.union([t.string, t.null]),
|
|
28353
|
+
/** Primary email value on request */
|
|
28062
28354
|
requestPrimaryEmailValue: t.union([t.string, t.null]),
|
|
28355
|
+
/** Slug of consent purpose that triggered the request */
|
|
28063
28356
|
consentPurposeTriggerSlug: t.union([t.string, t.null]),
|
|
28357
|
+
/** True/false consent value that triggered the request */
|
|
28064
28358
|
consentPurposeTriggerValue: t.union([t.boolean, t.null]),
|
|
28359
|
+
/** The unique ID of partition that request was for */
|
|
28065
28360
|
partitionId: t.union([t.string, t.null]),
|
|
28361
|
+
/** The name of partition that request was for */
|
|
28066
28362
|
partitionName: t.union([t.string, t.null])
|
|
28067
28363
|
}), DatabaseVariables]);
|
|
28068
28364
|
//#endregion
|
|
@@ -28188,38 +28484,71 @@ const DEFAULT_MACROREGIONS_MAP = { [MacroRegion.EU]: [
|
|
|
28188
28484
|
//#region src/objects.ts
|
|
28189
28485
|
/** The purpose of processing data */
|
|
28190
28486
|
const ProcessingPurpose = makeEnum({
|
|
28487
|
+
/** Provide a service that the user explicitly requests and that is part of the product's basic service or functionality */
|
|
28191
28488
|
Essential: "ESSENTIAL",
|
|
28489
|
+
/** Provide a service that the user explicitly requests but that is not a necessary part of the product's basic service */
|
|
28192
28490
|
AdditionalFunctionality: "ADDITIONAL_FUNCTIONALITY",
|
|
28491
|
+
/** To show ads that are either targeted to the specific user or not targeted */
|
|
28193
28492
|
Advertising: "ADVERTISING",
|
|
28493
|
+
/** To contact the user to offer products, services, or other promotions */
|
|
28194
28494
|
Marketing: "MARKETING",
|
|
28495
|
+
/** For understanding the product’s audience, improving the product, inform company strategy, or general research */
|
|
28195
28496
|
Analytics: "ANALYTICS",
|
|
28497
|
+
/** For providing user with a personalized experience */
|
|
28196
28498
|
Personalization: "PERSONALIZATION",
|
|
28499
|
+
/** For product operation and security, enforcement of terms of service, fraud prevention, protecting users and property, etc. */
|
|
28197
28500
|
OperationSecurity: "OPERATION_SECURITY",
|
|
28501
|
+
/** For compliance with legal obligations */
|
|
28198
28502
|
Legal: "LEGAL",
|
|
28503
|
+
/** For data that was transferred as part of a change in circumstance (e.g. a merger or acquisition) */
|
|
28199
28504
|
Transfer: "TRANSFER",
|
|
28505
|
+
/** For selling the data to third parties */
|
|
28200
28506
|
Sale: "SALE",
|
|
28507
|
+
/** For personnel training, recruitment, payroll, management, etc. */
|
|
28201
28508
|
HR: "HR",
|
|
28509
|
+
/** Other specific purpose not covered above */
|
|
28202
28510
|
Other: "OTHER",
|
|
28511
|
+
/** The purpose is not explicitly stated or is unclear */
|
|
28203
28512
|
Unspecified: "UNSPECIFIED"
|
|
28204
28513
|
});
|
|
28205
28514
|
/** The category of personal data that is processed */
|
|
28206
28515
|
const DataCategoryType = makeEnum({
|
|
28516
|
+
/** Financial information */
|
|
28207
28517
|
Financial: "FINANCIAL",
|
|
28518
|
+
/** Health information */
|
|
28208
28519
|
Health: "HEALTH",
|
|
28520
|
+
/** Contact information */
|
|
28209
28521
|
Contact: "CONTACT",
|
|
28522
|
+
/** Geo-location information */
|
|
28210
28523
|
Location: "LOCATION",
|
|
28524
|
+
/** Demographic Information */
|
|
28211
28525
|
Demographic: "DEMOGRAPHIC",
|
|
28526
|
+
/** Identifiers that uniquely identify a person */
|
|
28212
28527
|
Id: "ID",
|
|
28528
|
+
/** The user's online activities on the first party website/app or other websites/apps */
|
|
28213
28529
|
OnlineActivity: "ONLINE_ACTIVITY",
|
|
28530
|
+
/** The user’s profile on the first-party website/app and its contents */
|
|
28214
28531
|
UserProfile: "USER_PROFILE",
|
|
28532
|
+
/** User profile and data from a social media website/app or other third party service */
|
|
28215
28533
|
SocialMedia: "SOCIAL_MEDIA",
|
|
28534
|
+
/** Connection information for the current browsing session, e.g. device IDs, MAC addresses, IP addresses, etc. */
|
|
28216
28535
|
Connection: "CONNECTION",
|
|
28536
|
+
/** Cookies and tracking elements */
|
|
28217
28537
|
Tracking: "TRACKING",
|
|
28538
|
+
/** Computer or device information */
|
|
28218
28539
|
Device: "DEVICE",
|
|
28540
|
+
/** Any data that is collected through surveys */
|
|
28219
28541
|
Survey: "SURVEY",
|
|
28542
|
+
/** A specific type of information not covered by the above categories */
|
|
28220
28543
|
Other: "OTHER",
|
|
28544
|
+
/** The type of information is not explicitly stated or unclear */
|
|
28221
28545
|
Unspecified: "UNSPECIFIED",
|
|
28546
|
+
/** Information that is NOT personal data */
|
|
28222
28547
|
NotPersonalData: "NOT_PERSONAL_DATA",
|
|
28548
|
+
/**
|
|
28549
|
+
* Information identifying an object associated with a particular integration.
|
|
28550
|
+
* For example, Salesforce Object Ids.
|
|
28551
|
+
*/
|
|
28223
28552
|
IntegrationIdentifier: "INTEGRATION_IDENTIFIER"
|
|
28224
28553
|
});
|
|
28225
28554
|
//#endregion
|
|
@@ -28636,210 +28965,210 @@ let OneTrustAssessmentCsvHeader = /* @__PURE__ */ function(OneTrustAssessmentCsv
|
|
|
28636
28965
|
const OneTrustAssessmentCsvRecord = t.record(
|
|
28637
28966
|
/** The keys found in the OneTrust CSV header */
|
|
28638
28967
|
t.keyof({
|
|
28639
|
-
[
|
|
28640
|
-
[
|
|
28641
|
-
[
|
|
28642
|
-
[
|
|
28643
|
-
[
|
|
28644
|
-
[
|
|
28645
|
-
[
|
|
28646
|
-
[
|
|
28647
|
-
[
|
|
28648
|
-
[
|
|
28649
|
-
[
|
|
28650
|
-
[
|
|
28651
|
-
[
|
|
28652
|
-
[
|
|
28653
|
-
[
|
|
28654
|
-
[
|
|
28655
|
-
[
|
|
28656
|
-
[
|
|
28657
|
-
[
|
|
28658
|
-
[
|
|
28659
|
-
[
|
|
28660
|
-
[
|
|
28661
|
-
[
|
|
28662
|
-
[
|
|
28663
|
-
[
|
|
28664
|
-
[
|
|
28665
|
-
[
|
|
28666
|
-
[
|
|
28667
|
-
[
|
|
28668
|
-
[
|
|
28669
|
-
[
|
|
28670
|
-
[
|
|
28671
|
-
[
|
|
28672
|
-
[
|
|
28673
|
-
[
|
|
28674
|
-
[
|
|
28675
|
-
[
|
|
28676
|
-
[
|
|
28677
|
-
[
|
|
28678
|
-
[
|
|
28679
|
-
[
|
|
28680
|
-
[
|
|
28681
|
-
[
|
|
28682
|
-
[
|
|
28683
|
-
[
|
|
28684
|
-
[
|
|
28685
|
-
[
|
|
28686
|
-
[
|
|
28687
|
-
[
|
|
28688
|
-
[
|
|
28689
|
-
[
|
|
28690
|
-
[
|
|
28691
|
-
[
|
|
28692
|
-
[
|
|
28693
|
-
[
|
|
28694
|
-
[
|
|
28695
|
-
[
|
|
28696
|
-
[
|
|
28697
|
-
[
|
|
28698
|
-
[
|
|
28699
|
-
[
|
|
28700
|
-
[
|
|
28701
|
-
[
|
|
28702
|
-
[
|
|
28703
|
-
[
|
|
28704
|
-
[
|
|
28705
|
-
[
|
|
28706
|
-
[
|
|
28707
|
-
[
|
|
28708
|
-
[
|
|
28709
|
-
[
|
|
28710
|
-
[
|
|
28711
|
-
[
|
|
28712
|
-
[
|
|
28713
|
-
[
|
|
28714
|
-
[
|
|
28715
|
-
[
|
|
28716
|
-
[
|
|
28717
|
-
[
|
|
28718
|
-
[
|
|
28719
|
-
[
|
|
28720
|
-
[
|
|
28721
|
-
[
|
|
28722
|
-
[
|
|
28723
|
-
[
|
|
28724
|
-
[
|
|
28725
|
-
[
|
|
28726
|
-
[
|
|
28727
|
-
[
|
|
28728
|
-
[
|
|
28729
|
-
[
|
|
28730
|
-
[
|
|
28731
|
-
[
|
|
28732
|
-
[
|
|
28733
|
-
[
|
|
28734
|
-
[
|
|
28735
|
-
[
|
|
28736
|
-
[
|
|
28737
|
-
[
|
|
28738
|
-
[
|
|
28739
|
-
[
|
|
28740
|
-
[
|
|
28741
|
-
[
|
|
28742
|
-
[
|
|
28743
|
-
[
|
|
28744
|
-
[
|
|
28745
|
-
[
|
|
28746
|
-
[
|
|
28747
|
-
[
|
|
28748
|
-
[
|
|
28749
|
-
[
|
|
28750
|
-
[
|
|
28751
|
-
[
|
|
28752
|
-
[
|
|
28753
|
-
[
|
|
28754
|
-
[
|
|
28755
|
-
[
|
|
28756
|
-
[
|
|
28757
|
-
[
|
|
28758
|
-
[
|
|
28759
|
-
[
|
|
28760
|
-
[
|
|
28761
|
-
[
|
|
28762
|
-
[
|
|
28763
|
-
[
|
|
28764
|
-
[
|
|
28765
|
-
[
|
|
28766
|
-
[
|
|
28767
|
-
[
|
|
28768
|
-
[
|
|
28769
|
-
[
|
|
28770
|
-
[
|
|
28771
|
-
[
|
|
28772
|
-
[
|
|
28773
|
-
[
|
|
28774
|
-
[
|
|
28775
|
-
[
|
|
28776
|
-
[
|
|
28777
|
-
[
|
|
28778
|
-
[
|
|
28779
|
-
[
|
|
28780
|
-
[
|
|
28781
|
-
[
|
|
28782
|
-
[
|
|
28783
|
-
[
|
|
28784
|
-
[
|
|
28785
|
-
[
|
|
28786
|
-
[
|
|
28787
|
-
[
|
|
28788
|
-
[
|
|
28789
|
-
[
|
|
28790
|
-
[
|
|
28791
|
-
[
|
|
28792
|
-
[
|
|
28793
|
-
[
|
|
28794
|
-
[
|
|
28795
|
-
[
|
|
28796
|
-
[
|
|
28797
|
-
[
|
|
28798
|
-
[
|
|
28799
|
-
[
|
|
28800
|
-
[
|
|
28801
|
-
[
|
|
28802
|
-
[
|
|
28803
|
-
[
|
|
28804
|
-
[
|
|
28805
|
-
[
|
|
28806
|
-
[
|
|
28807
|
-
[
|
|
28808
|
-
[
|
|
28809
|
-
[
|
|
28810
|
-
[
|
|
28811
|
-
[
|
|
28812
|
-
[
|
|
28813
|
-
[
|
|
28814
|
-
[
|
|
28815
|
-
[
|
|
28816
|
-
[
|
|
28817
|
-
[
|
|
28818
|
-
[
|
|
28819
|
-
[
|
|
28820
|
-
[
|
|
28821
|
-
[
|
|
28822
|
-
[
|
|
28823
|
-
[
|
|
28824
|
-
[
|
|
28825
|
-
[
|
|
28826
|
-
[
|
|
28827
|
-
[
|
|
28828
|
-
[
|
|
28829
|
-
[
|
|
28830
|
-
[
|
|
28831
|
-
[
|
|
28832
|
-
[
|
|
28833
|
-
[
|
|
28834
|
-
[
|
|
28835
|
-
[
|
|
28836
|
-
[
|
|
28837
|
-
[
|
|
28838
|
-
[
|
|
28839
|
-
[
|
|
28840
|
-
[
|
|
28841
|
-
[
|
|
28842
|
-
[
|
|
28968
|
+
["assessmentId"]: null,
|
|
28969
|
+
["createDt"]: null,
|
|
28970
|
+
["inherentRiskScore"]: null,
|
|
28971
|
+
["lastUpdated"]: null,
|
|
28972
|
+
["name"]: null,
|
|
28973
|
+
["number"]: null,
|
|
28974
|
+
["openRiskCount"]: null,
|
|
28975
|
+
["orgGroupName"]: null,
|
|
28976
|
+
["primaryInventoryDetails_primaryInventoryId"]: null,
|
|
28977
|
+
["primaryInventoryDetails_primaryInventoryName"]: null,
|
|
28978
|
+
["primaryInventoryDetails_primaryInventoryNumber"]: null,
|
|
28979
|
+
["residualRiskScore"]: null,
|
|
28980
|
+
["result"]: null,
|
|
28981
|
+
["resultId"]: null,
|
|
28982
|
+
["resultName"]: null,
|
|
28983
|
+
["state"]: null,
|
|
28984
|
+
["tags"]: null,
|
|
28985
|
+
["targetRiskScore"]: null,
|
|
28986
|
+
["templateId"]: null,
|
|
28987
|
+
["templateName"]: null,
|
|
28988
|
+
["templateRootVersionId"]: null,
|
|
28989
|
+
["assessmentNumber"]: null,
|
|
28990
|
+
["completedOn"]: null,
|
|
28991
|
+
["status"]: null,
|
|
28992
|
+
["createdBy_id"]: null,
|
|
28993
|
+
["createdBy_name"]: null,
|
|
28994
|
+
["createdBy_nameKey"]: null,
|
|
28995
|
+
["createdDT"]: null,
|
|
28996
|
+
["deadline"]: null,
|
|
28997
|
+
["description"]: null,
|
|
28998
|
+
["lowRisk"]: null,
|
|
28999
|
+
["mediumRisk"]: null,
|
|
29000
|
+
["highRisk"]: null,
|
|
29001
|
+
["orgGroup_id"]: null,
|
|
29002
|
+
["orgGroup_name"]: null,
|
|
29003
|
+
["orgGroup_nameKey"]: null,
|
|
29004
|
+
["primaryRecordType"]: null,
|
|
29005
|
+
["riskLevel"]: null,
|
|
29006
|
+
["submittedOn"]: null,
|
|
29007
|
+
["template_id"]: null,
|
|
29008
|
+
["template_name"]: null,
|
|
29009
|
+
["template_nameKey"]: null,
|
|
29010
|
+
["totalRiskCount"]: null,
|
|
29011
|
+
["veryHighRisk"]: null,
|
|
29012
|
+
["welcomeText"]: null,
|
|
29013
|
+
["approvers_id"]: null,
|
|
29014
|
+
["approvers_workflowStageId"]: null,
|
|
29015
|
+
["approvers_name"]: null,
|
|
29016
|
+
["approvers_approver_id"]: null,
|
|
29017
|
+
["approvers_approver_fullName"]: null,
|
|
29018
|
+
["approvers_approver_email"]: null,
|
|
29019
|
+
["approvers_approver_deleted"]: null,
|
|
29020
|
+
["approvers_approver_assigneeType"]: null,
|
|
29021
|
+
["approvers_approvalState"]: null,
|
|
29022
|
+
["approvers_approvedOn"]: null,
|
|
29023
|
+
["approvers_resultId"]: null,
|
|
29024
|
+
["approvers_resultName"]: null,
|
|
29025
|
+
["approvers_resultNameKey"]: null,
|
|
29026
|
+
["respondents_id"]: null,
|
|
29027
|
+
["respondents_name"]: null,
|
|
29028
|
+
["respondents_nameKey"]: null,
|
|
29029
|
+
["primaryEntityDetails_id"]: null,
|
|
29030
|
+
["primaryEntityDetails_name"]: null,
|
|
29031
|
+
["primaryEntityDetails_number"]: null,
|
|
29032
|
+
["primaryEntityDetails_displayName"]: null,
|
|
29033
|
+
["primaryEntityDetails_relationshipResponseDetails"]: null,
|
|
29034
|
+
["primaryEntityDetails_entityBusinessKey"]: null,
|
|
29035
|
+
["sections_hasNavigationRules"]: null,
|
|
29036
|
+
["sections_submittedBy_id"]: null,
|
|
29037
|
+
["sections_submittedBy_name"]: null,
|
|
29038
|
+
["sections_submittedBy_nameKey"]: null,
|
|
29039
|
+
["sections_submittedDt"]: null,
|
|
29040
|
+
["sections_name"]: null,
|
|
29041
|
+
["sections_hidden"]: null,
|
|
29042
|
+
["sections_valid"]: null,
|
|
29043
|
+
["sections_sectionId"]: null,
|
|
29044
|
+
["sections_sequence"]: null,
|
|
29045
|
+
["sections_submitted"]: null,
|
|
29046
|
+
["sections_description"]: null,
|
|
29047
|
+
["sections_status"]: null,
|
|
29048
|
+
["sections_openNMIQuestionIds"]: null,
|
|
29049
|
+
["sections_invalidQuestionIds"]: null,
|
|
29050
|
+
["sections_requiredUnansweredQuestionIds"]: null,
|
|
29051
|
+
["sections_requiredQuestionIds"]: null,
|
|
29052
|
+
["sections_unansweredQuestionIds"]: null,
|
|
29053
|
+
["sections_effectivenessQuestionIds"]: null,
|
|
29054
|
+
["sections_nameKey"]: null,
|
|
29055
|
+
["sections_riskStatistics_maxRiskLevel"]: null,
|
|
29056
|
+
["sections_riskStatistics_riskCount"]: null,
|
|
29057
|
+
["sections_riskStatistics_sectionId"]: null,
|
|
29058
|
+
["sections_questions_hidden"]: null,
|
|
29059
|
+
["sections_questions_lockReason"]: null,
|
|
29060
|
+
["sections_questions_copyErrors"]: null,
|
|
29061
|
+
["sections_questions_hasNavigationRules"]: null,
|
|
29062
|
+
["sections_questions_rootRequestInformationIds"]: null,
|
|
29063
|
+
["sections_questions_totalAttachments"]: null,
|
|
29064
|
+
["sections_questions_attachmentIds"]: null,
|
|
29065
|
+
["sections_questions_canReopenWithAllowEditOption"]: null,
|
|
29066
|
+
["sections_questions_riskCreationAllowed"]: null,
|
|
29067
|
+
["sections_questions_riskDeletionPopupAllowed"]: null,
|
|
29068
|
+
["sections_questions_allowMaturityScaleOnQuestions"]: null,
|
|
29069
|
+
["sections_questions_questionAssociations"]: null,
|
|
29070
|
+
["sections_questions_issues"]: null,
|
|
29071
|
+
["sections_questions_responseEditableWhileUnderReview"]: null,
|
|
29072
|
+
["sections_questions_businessKeyReference"]: null,
|
|
29073
|
+
["sections_questions_topic"]: null,
|
|
29074
|
+
["sections_questions_questionLaws"]: null,
|
|
29075
|
+
["sections_questions_attachmentRequired"]: null,
|
|
29076
|
+
["sections_questions_responseFilter"]: null,
|
|
29077
|
+
["sections_questions_linkAssessmentToResponseEntity"]: null,
|
|
29078
|
+
["sections_questions_translationIdentifier"]: null,
|
|
29079
|
+
["sections_questions_readOnly"]: null,
|
|
29080
|
+
["sections_questions_schema"]: null,
|
|
29081
|
+
["sections_questions_attributeId"]: null,
|
|
29082
|
+
["sections_questions_vendorQuestion"]: null,
|
|
29083
|
+
["sections_questions_seeded"]: null,
|
|
29084
|
+
["sections_questions_allowJustification"]: null,
|
|
29085
|
+
["sections_questions_assetQuestion"]: null,
|
|
29086
|
+
["sections_questions_entityQuestion"]: null,
|
|
29087
|
+
["sections_questions_paquestion"]: null,
|
|
29088
|
+
["sections_questions_inventoryTypeEnum"]: null,
|
|
29089
|
+
["sections_questions_forceOther"]: null,
|
|
29090
|
+
["sections_questions_isParentQuestionMultiSelect"]: null,
|
|
29091
|
+
["sections_questions_id"]: null,
|
|
29092
|
+
["sections_questions_rootVersionId"]: null,
|
|
29093
|
+
["sections_questions_sequence"]: null,
|
|
29094
|
+
["sections_questions_questionType"]: null,
|
|
29095
|
+
["sections_questions_required"]: null,
|
|
29096
|
+
["sections_questions_attributes"]: null,
|
|
29097
|
+
["sections_questions_friendlyName"]: null,
|
|
29098
|
+
["sections_questions_description"]: null,
|
|
29099
|
+
["sections_questions_hint"]: null,
|
|
29100
|
+
["sections_questions_parentQuestionId"]: null,
|
|
29101
|
+
["sections_questions_prePopulateResponse"]: null,
|
|
29102
|
+
["sections_questions_linkAssessmentToInventory"]: null,
|
|
29103
|
+
["sections_questions_valid"]: null,
|
|
29104
|
+
["sections_questions_type"]: null,
|
|
29105
|
+
["sections_questions_allowMultiSelect"]: null,
|
|
29106
|
+
["sections_questions_content"]: null,
|
|
29107
|
+
["sections_questions_requireJustification"]: null,
|
|
29108
|
+
["sections_questions_options_translationIdentifier"]: null,
|
|
29109
|
+
["sections_questions_options_id"]: null,
|
|
29110
|
+
["sections_questions_options_option"]: null,
|
|
29111
|
+
["sections_questions_options_optionKey"]: null,
|
|
29112
|
+
["sections_questions_options_hint"]: null,
|
|
29113
|
+
["sections_questions_options_hintKey"]: null,
|
|
29114
|
+
["sections_questions_options_score"]: null,
|
|
29115
|
+
["sections_questions_options_preSelectedOption"]: null,
|
|
29116
|
+
["sections_questions_options_sequence"]: null,
|
|
29117
|
+
["sections_questions_options_attributes"]: null,
|
|
29118
|
+
["sections_questions_options_optionType"]: null,
|
|
29119
|
+
["sections_questions_risks_questionId"]: null,
|
|
29120
|
+
["sections_questions_risks_riskId"]: null,
|
|
29121
|
+
["sections_questions_risks_level"]: null,
|
|
29122
|
+
["sections_questions_risks_score"]: null,
|
|
29123
|
+
["sections_questions_risks_probability"]: null,
|
|
29124
|
+
["sections_questions_risks_impactLevel"]: null,
|
|
29125
|
+
["sections_questions_risks_description"]: null,
|
|
29126
|
+
["sections_questions_risks_name"]: null,
|
|
29127
|
+
["sections_questions_risks_treatment"]: null,
|
|
29128
|
+
["sections_questions_risks_treatmentStatus"]: null,
|
|
29129
|
+
["sections_questions_risks_type"]: null,
|
|
29130
|
+
["sections_questions_risks_stage_currentStageApprovers"]: null,
|
|
29131
|
+
["sections_questions_risks_stage_badgeColor"]: null,
|
|
29132
|
+
["sections_questions_risks_stage_id"]: null,
|
|
29133
|
+
["sections_questions_risks_stage_name"]: null,
|
|
29134
|
+
["sections_questions_risks_stage_nameKey"]: null,
|
|
29135
|
+
["sections_questions_risks_state"]: null,
|
|
29136
|
+
["sections_questions_risks_result"]: null,
|
|
29137
|
+
["sections_questions_risks_categories_seeded"]: null,
|
|
29138
|
+
["sections_questions_risks_categories_id"]: null,
|
|
29139
|
+
["sections_questions_risks_categories_name"]: null,
|
|
29140
|
+
["sections_questions_risks_categories_nameKey"]: null,
|
|
29141
|
+
["sections_questions_questionResponses_maturityScale"]: null,
|
|
29142
|
+
["sections_questions_questionResponses_effectivenessScale"]: null,
|
|
29143
|
+
["sections_questions_questionResponses_parentAssessmentDetailId"]: null,
|
|
29144
|
+
["sections_questions_questionResponses_displayLabel"]: null,
|
|
29145
|
+
["sections_questions_questionResponses_parentQuestionType"]: null,
|
|
29146
|
+
["sections_questions_questionResponses_parentResponseId"]: null,
|
|
29147
|
+
["sections_questions_questionResponses_isLocalVersion"]: null,
|
|
29148
|
+
["sections_questions_questionResponses_relationshipDisplayInformation"]: null,
|
|
29149
|
+
["sections_questions_questionResponses_lockReason"]: null,
|
|
29150
|
+
["sections_questions_questionResponses_controlResponse"]: null,
|
|
29151
|
+
["sections_questions_questionResponses_relationshipResponseDetails"]: null,
|
|
29152
|
+
["sections_questions_questionResponses_textRedacted"]: null,
|
|
29153
|
+
["sections_questions_questionResponses_responseMap"]: null,
|
|
29154
|
+
["sections_questions_questionResponses_responseId"]: null,
|
|
29155
|
+
["sections_questions_questionResponses_response"]: null,
|
|
29156
|
+
["sections_questions_questionResponses_responseKey"]: null,
|
|
29157
|
+
["sections_questions_questionResponses_contractResponse"]: null,
|
|
29158
|
+
["sections_questions_questionResponses_type"]: null,
|
|
29159
|
+
["sections_questions_questionResponses_responseSourceType"]: null,
|
|
29160
|
+
["sections_questions_questionResponses_errorCode"]: null,
|
|
29161
|
+
["sections_questions_questionResponses_valid"]: null,
|
|
29162
|
+
["sections_questions_questionResponses_dataSubject_id"]: null,
|
|
29163
|
+
["sections_questions_questionResponses_dataSubject_name"]: null,
|
|
29164
|
+
["sections_questions_questionResponses_dataSubject_nameKey"]: null,
|
|
29165
|
+
["sections_questions_questionResponses_dataCategory_id"]: null,
|
|
29166
|
+
["sections_questions_questionResponses_dataCategory_name"]: null,
|
|
29167
|
+
["sections_questions_questionResponses_dataCategory_nameKey"]: null,
|
|
29168
|
+
["sections_questions_questionResponses_dataElement_id"]: null,
|
|
29169
|
+
["sections_questions_questionResponses_dataElement_name"]: null,
|
|
29170
|
+
["sections_questions_questionResponses_dataElement_nameKey"]: null,
|
|
29171
|
+
["sections_questions_questionResponses_justification"]: null
|
|
28843
29172
|
}),
|
|
28844
29173
|
/** The values of the header */
|
|
28845
29174
|
t.string
|
|
@@ -28851,20 +29180,34 @@ const OneTrustAssessmentCsvRecord = t.record(
|
|
|
28851
29180
|
* Return types of the "Get List of Assessments" endpoint
|
|
28852
29181
|
*/
|
|
28853
29182
|
const OneTrustAssessment = t.type({
|
|
29183
|
+
/** ID of the assessment. */
|
|
28854
29184
|
assessmentId: t.string,
|
|
29185
|
+
/** Date that the assessment was created. */
|
|
28855
29186
|
createDt: t.string,
|
|
29187
|
+
/** Overall risk score without considering existing controls. */
|
|
28856
29188
|
inherentRiskScore: t.union([t.number, t.null]),
|
|
29189
|
+
/** Date and time that the assessment was last updated. */
|
|
28857
29190
|
lastUpdated: t.string,
|
|
29191
|
+
/** Name of the assessment. */
|
|
28858
29192
|
name: t.string,
|
|
29193
|
+
/** Number assigned to the assessment. */
|
|
28859
29194
|
number: t.number,
|
|
29195
|
+
/** Number of risks that are open on the assessment. */
|
|
28860
29196
|
openRiskCount: t.number,
|
|
29197
|
+
/** Name of the organization group assigned to the assessment. */
|
|
28861
29198
|
orgGroupName: t.string,
|
|
29199
|
+
/** Details about the inventory record which is the primary record of the assessment. */
|
|
28862
29200
|
primaryInventoryDetails: t.union([t.type({
|
|
29201
|
+
/** GUID of the inventory record. */
|
|
28863
29202
|
primaryInventoryId: t.string,
|
|
29203
|
+
/** Name of the inventory record. */
|
|
28864
29204
|
primaryInventoryName: t.string,
|
|
29205
|
+
/** Integer ID of the inventory record. */
|
|
28865
29206
|
primaryInventoryNumber: t.number
|
|
28866
29207
|
}), t.null]),
|
|
29208
|
+
/** Overall risk score after considering existing controls. */
|
|
28867
29209
|
residualRiskScore: t.union([t.number, t.null]),
|
|
29210
|
+
/** Result of the assessment. NOTE: This field will be deprecated soon. Please reference the 'resultName' field instead. */
|
|
28868
29211
|
result: t.union([
|
|
28869
29212
|
t.literal("Approved"),
|
|
28870
29213
|
t.literal("AutoClosed"),
|
|
@@ -28872,7 +29215,9 @@ const OneTrustAssessment = t.type({
|
|
|
28872
29215
|
t.string,
|
|
28873
29216
|
t.null
|
|
28874
29217
|
]),
|
|
29218
|
+
/** ID of the result. */
|
|
28875
29219
|
resultId: t.union([t.string, t.null]),
|
|
29220
|
+
/** Name of the result. */
|
|
28876
29221
|
resultName: t.union([
|
|
28877
29222
|
t.literal("Approved - Remediation required"),
|
|
28878
29223
|
t.literal("Approved"),
|
|
@@ -28881,7 +29226,9 @@ const OneTrustAssessment = t.type({
|
|
|
28881
29226
|
t.string,
|
|
28882
29227
|
t.null
|
|
28883
29228
|
]),
|
|
29229
|
+
/** State of the assessment. */
|
|
28884
29230
|
state: t.union([t.literal("ARCHIVE"), t.literal("ACTIVE")]),
|
|
29231
|
+
/** Status of the assessment. */
|
|
28885
29232
|
status: t.union([
|
|
28886
29233
|
t.literal("Not Started"),
|
|
28887
29234
|
t.literal("In Progress"),
|
|
@@ -28889,18 +29236,29 @@ const OneTrustAssessment = t.type({
|
|
|
28889
29236
|
t.literal("Completed"),
|
|
28890
29237
|
t.null
|
|
28891
29238
|
]),
|
|
29239
|
+
/** Name of the tag attached to the assessment. */
|
|
28892
29240
|
tags: t.array(t.string),
|
|
29241
|
+
/** The desired risk score. */
|
|
28893
29242
|
targetRiskScore: t.union([t.number, t.null]),
|
|
29243
|
+
/** ID used to launch an assessment using a specific version of a template. */
|
|
28894
29244
|
templateId: t.string,
|
|
29245
|
+
/** Name of the template that is being used on the assessment. */
|
|
28895
29246
|
templateName: t.string,
|
|
29247
|
+
/** ID used to launch an assessment using the latest published version of a template. */
|
|
28896
29248
|
templateRootVersionId: t.string
|
|
28897
29249
|
});
|
|
28898
29250
|
const OneTrustGetListOfAssessmentsResponse = t.partial({
|
|
29251
|
+
/** The list of assessments in the current page. */
|
|
28899
29252
|
content: t.array(OneTrustAssessment),
|
|
29253
|
+
/** Details about the pages being fetched */
|
|
28900
29254
|
page: t.type({
|
|
29255
|
+
/** Page number of the results list (0…N). */
|
|
28901
29256
|
number: t.number,
|
|
29257
|
+
/** Number of records per page (0…N). */
|
|
28902
29258
|
size: t.number,
|
|
29259
|
+
/** Total number of elements. */
|
|
28903
29260
|
totalElements: t.number,
|
|
29261
|
+
/** Total number of pages. */
|
|
28904
29262
|
totalPages: t.number
|
|
28905
29263
|
})
|
|
28906
29264
|
});
|
|
@@ -28911,23 +29269,36 @@ const OneTrustGetListOfAssessmentsResponse = t.partial({
|
|
|
28911
29269
|
* Return types of the "Get Assessments" endpoint
|
|
28912
29270
|
*/
|
|
28913
29271
|
const OneTrustApprover = t.type({
|
|
29272
|
+
/** ID of the user assigned as an approver. */
|
|
28914
29273
|
id: t.string,
|
|
29274
|
+
/** ID of the workflow stage */
|
|
28915
29275
|
workflowStageId: t.string,
|
|
29276
|
+
/** Name of the user assigned as an approver. */
|
|
28916
29277
|
name: t.string,
|
|
29278
|
+
/** More details about the approver */
|
|
28917
29279
|
approver: t.type({
|
|
29280
|
+
/** ID of the user assigned as an approver. */
|
|
28918
29281
|
id: t.string,
|
|
29282
|
+
/** Full name of the user assigned as an approver. */
|
|
28919
29283
|
fullName: t.string,
|
|
29284
|
+
/** Email of the user assigned as an approver. */
|
|
28920
29285
|
email: t.union([t.string, t.null]),
|
|
29286
|
+
/** Whether the user assigned as an approver was deleted. */
|
|
28921
29287
|
deleted: t.boolean,
|
|
29288
|
+
/** The assignee type */
|
|
28922
29289
|
assigneeType: t.union([t.string, t.null])
|
|
28923
29290
|
}),
|
|
29291
|
+
/** Assessment approval status. */
|
|
28924
29292
|
approvalState: t.union([
|
|
28925
29293
|
t.literal("OPEN"),
|
|
28926
29294
|
t.literal("APPROVED"),
|
|
28927
29295
|
t.literal("REJECTED")
|
|
28928
29296
|
]),
|
|
29297
|
+
/** Date and time at which the assessment was approved. */
|
|
28929
29298
|
approvedOn: t.union([t.string, t.null]),
|
|
29299
|
+
/** ID of the assessment result. */
|
|
28930
29300
|
resultId: t.union([t.string, t.null]),
|
|
29301
|
+
/** Name of the assessment result. */
|
|
28931
29302
|
resultName: t.union([
|
|
28932
29303
|
t.literal("Approved - Remediation required"),
|
|
28933
29304
|
t.literal("Approved"),
|
|
@@ -28936,6 +29307,7 @@ const OneTrustApprover = t.type({
|
|
|
28936
29307
|
t.string,
|
|
28937
29308
|
t.null
|
|
28938
29309
|
]),
|
|
29310
|
+
/** Name key of the assessment result. */
|
|
28939
29311
|
resultNameKey: t.union([t.string, t.null])
|
|
28940
29312
|
});
|
|
28941
29313
|
const OneTrustAssessmentStatus = t.union([
|
|
@@ -28945,27 +29317,49 @@ const OneTrustAssessmentStatus = t.union([
|
|
|
28945
29317
|
t.literal("COMPLETED")
|
|
28946
29318
|
]);
|
|
28947
29319
|
const OneTrustPrimaryEntityDetails = t.array(t.type({
|
|
29320
|
+
/** Unique ID for the primary record. */
|
|
28948
29321
|
id: t.string,
|
|
29322
|
+
/** Name of the primary record. */
|
|
28949
29323
|
name: t.string,
|
|
29324
|
+
/** The number associated with the primary record. */
|
|
28950
29325
|
number: t.number,
|
|
29326
|
+
/** Name and number of the primary record. */
|
|
28951
29327
|
displayName: t.string,
|
|
29328
|
+
/** The relationshipResponseDetails */
|
|
28952
29329
|
relationshipResponseDetails: t.union([t.string, t.null]),
|
|
29330
|
+
/** The entity business key */
|
|
28953
29331
|
entityBusinessKey: t.union([t.string, t.null])
|
|
28954
29332
|
}));
|
|
28955
29333
|
const OneTrustAssessmentSectionSubmittedBy = t.union([t.intersection([t.type({
|
|
29334
|
+
/** The ID of the user who submitted the section */
|
|
28956
29335
|
id: t.string,
|
|
29336
|
+
/** THe name or email of the user who submitted the section */
|
|
28957
29337
|
name: t.string
|
|
28958
|
-
}), t.partial({
|
|
28959
|
-
|
|
29338
|
+
}), t.partial({
|
|
29339
|
+
/** The name key of the user who submitted the section */
|
|
29340
|
+
nameKey: t.union([t.string, t.null]) })]), t.null]);
|
|
29341
|
+
const OneTrustAssessmentQuestionOption = t.intersection([t.partial({
|
|
29342
|
+
/** The translationIdentifier */
|
|
29343
|
+
translationIdentifier: t.string }), t.type({
|
|
29344
|
+
/** ID of the option. */
|
|
28960
29345
|
id: t.string,
|
|
29346
|
+
/** Name of the option. */
|
|
28961
29347
|
option: t.string,
|
|
29348
|
+
/** The key of the option */
|
|
28962
29349
|
optionKey: t.union([t.string, t.null]),
|
|
29350
|
+
/** The hint */
|
|
28963
29351
|
hint: t.union([t.string, t.null]),
|
|
29352
|
+
/** The hint key */
|
|
28964
29353
|
hintKey: t.union([t.string, t.null]),
|
|
29354
|
+
/** The score */
|
|
28965
29355
|
score: t.union([t.number, t.null]),
|
|
29356
|
+
/** If the option was pre-selected */
|
|
28966
29357
|
preSelectedOption: t.boolean,
|
|
29358
|
+
/** Order in which the option appears. */
|
|
28967
29359
|
sequence: t.union([t.number, t.null]),
|
|
29360
|
+
/** Attribute for which the option is available. */
|
|
28968
29361
|
attributes: t.union([t.string, t.null]),
|
|
29362
|
+
/** Type of option. */
|
|
28969
29363
|
optionType: t.union([
|
|
28970
29364
|
t.literal("NOT_SURE"),
|
|
28971
29365
|
t.literal("NOT_APPLICABLE"),
|
|
@@ -28974,49 +29368,86 @@ const OneTrustAssessmentQuestionOption = t.intersection([t.partial({ translation
|
|
|
28974
29368
|
])
|
|
28975
29369
|
})]);
|
|
28976
29370
|
const OneTrustAssessmentNestedQuestion = t.type({
|
|
29371
|
+
/** ID of the question. */
|
|
28977
29372
|
id: t.string,
|
|
29373
|
+
/** ID of the root version of the question. */
|
|
28978
29374
|
rootVersionId: t.string,
|
|
29375
|
+
/** Order in which the question appears in the assessment. */
|
|
28979
29376
|
sequence: t.number,
|
|
29377
|
+
/** Type of question in the assessment. */
|
|
28980
29378
|
questionType: t.union([t.string, t.null]),
|
|
29379
|
+
/** Indicates whether a response to the question is required. */
|
|
28981
29380
|
required: t.boolean,
|
|
29381
|
+
/** Data element attributes that are directly updated by the question. */
|
|
28982
29382
|
attributes: t.string,
|
|
29383
|
+
/** Short, descriptive name for the question. */
|
|
28983
29384
|
friendlyName: t.union([t.string, t.null]),
|
|
29385
|
+
/** Description of the question. */
|
|
28984
29386
|
description: t.union([t.string, t.null]),
|
|
29387
|
+
/** Tooltip text within a hint for the question. */
|
|
28985
29388
|
hint: t.union([t.string, t.null]),
|
|
29389
|
+
/** ID of the parent question. */
|
|
28986
29390
|
parentQuestionId: t.union([t.string, t.null]),
|
|
29391
|
+
/** Indicates whether the response to the question is prepopulated. */
|
|
28987
29392
|
prePopulateResponse: t.boolean,
|
|
29393
|
+
/** Indicates whether the assessment is linked to inventory records. */
|
|
28988
29394
|
linkAssessmentToInventory: t.boolean,
|
|
29395
|
+
/** The question options */
|
|
28989
29396
|
options: t.union([t.array(OneTrustAssessmentQuestionOption), t.null]),
|
|
29397
|
+
/** Indicates whether the question is valid. */
|
|
28990
29398
|
valid: t.boolean,
|
|
29399
|
+
/** Type of question in the assessment. */
|
|
28991
29400
|
type: t.union([t.string, t.null]),
|
|
29401
|
+
/** Whether the response can be multi select */
|
|
28992
29402
|
allowMultiSelect: t.boolean,
|
|
29403
|
+
/** The text of a question. */
|
|
28993
29404
|
content: t.string,
|
|
29405
|
+
/** Indicates whether justification comments are required for the question. */
|
|
28994
29406
|
requireJustification: t.boolean,
|
|
29407
|
+
/** The attachmentRequired */
|
|
28995
29408
|
attachmentRequired: t.boolean
|
|
28996
29409
|
});
|
|
28997
29410
|
const OneTrustAssessmentResponses = t.array(t.intersection([t.partial({
|
|
29411
|
+
/** The response maturityScale */
|
|
28998
29412
|
maturityScale: t.union([t.string, t.null]),
|
|
29413
|
+
/** The response effectivenessScale */
|
|
28999
29414
|
effectivenessScale: t.union([t.string, t.null]),
|
|
29415
|
+
/** The response parentAssessmentDetailId */
|
|
29000
29416
|
parentAssessmentDetailId: t.union([t.string, t.null]),
|
|
29417
|
+
/** The response display label */
|
|
29001
29418
|
displayLabel: t.string,
|
|
29419
|
+
/** The response type of the parent question */
|
|
29002
29420
|
parentQuestionType: t.string,
|
|
29421
|
+
/** The response ID of the parent response */
|
|
29003
29422
|
parentResponseId: t.string,
|
|
29423
|
+
/** Whether it's local version */
|
|
29004
29424
|
isLocalVersion: t.string,
|
|
29425
|
+
/** Whether relationshipDisplayInformation */
|
|
29005
29426
|
relationshipDisplayInformation: t.union([t.string, t.null]),
|
|
29427
|
+
/** The response lock reason */
|
|
29006
29428
|
lockReason: t.union([t.string, t.null])
|
|
29007
29429
|
}), t.type({
|
|
29430
|
+
/** The controlResponse */
|
|
29008
29431
|
controlResponse: t.union([
|
|
29009
29432
|
t.string,
|
|
29010
29433
|
t.object,
|
|
29011
29434
|
t.null
|
|
29012
29435
|
]),
|
|
29436
|
+
/** The relationshipResponseDetails */
|
|
29013
29437
|
relationshipResponseDetails: t.array(t.string),
|
|
29438
|
+
/** The textRedacted */
|
|
29014
29439
|
textRedacted: t.boolean,
|
|
29440
|
+
/** The responseMap */
|
|
29015
29441
|
responseMap: t.object,
|
|
29442
|
+
/** ID of the response. */
|
|
29016
29443
|
responseId: t.string,
|
|
29444
|
+
/** Content of the response. */
|
|
29017
29445
|
response: t.union([t.string, t.null]),
|
|
29446
|
+
/** The response key */
|
|
29018
29447
|
responseKey: t.union([t.string, t.null]),
|
|
29448
|
+
/** The response key */
|
|
29019
29449
|
contractResponse: t.union([t.string, t.null]),
|
|
29450
|
+
/** Type of response. */
|
|
29020
29451
|
type: t.union([
|
|
29021
29452
|
t.literal("NOT_SURE"),
|
|
29022
29453
|
t.literal("JUSTIFICATION"),
|
|
@@ -29024,7 +29455,9 @@ const OneTrustAssessmentResponses = t.array(t.intersection([t.partial({
|
|
|
29024
29455
|
t.literal("DEFAULT"),
|
|
29025
29456
|
t.literal("OTHERS")
|
|
29026
29457
|
]),
|
|
29458
|
+
/** Source from which the assessment is launched. */
|
|
29027
29459
|
responseSourceType: t.union([t.string, t.null]),
|
|
29460
|
+
/** Error associated with the response. */
|
|
29028
29461
|
errorCode: t.union([
|
|
29029
29462
|
t.literal("ATTRIBUTE_DISABLED"),
|
|
29030
29463
|
t.literal("ATTRIBUTE_OPTION_DISABLED"),
|
|
@@ -29034,149 +29467,273 @@ const OneTrustAssessmentResponses = t.array(t.intersection([t.partial({
|
|
|
29034
29467
|
t.literal("DUPLICATE_INVENTORY"),
|
|
29035
29468
|
t.null
|
|
29036
29469
|
]),
|
|
29470
|
+
/** Indicates whether the response is valid. */
|
|
29037
29471
|
valid: t.boolean,
|
|
29472
|
+
/** The data subject */
|
|
29038
29473
|
dataSubject: t.union([t.type({
|
|
29474
|
+
/** The ID of the data subject */
|
|
29039
29475
|
id: t.union([t.string, t.null]),
|
|
29476
|
+
/** The ID of the data subject */
|
|
29040
29477
|
name: t.union([t.string, t.null]),
|
|
29478
|
+
/** The nameKey of the data category */
|
|
29041
29479
|
nameKey: t.union([t.string, t.null])
|
|
29042
29480
|
}), t.null]),
|
|
29481
|
+
/** The data category */
|
|
29043
29482
|
dataCategory: t.union([t.type({
|
|
29483
|
+
/** The ID of the data category */
|
|
29044
29484
|
id: t.union([t.string, t.null]),
|
|
29485
|
+
/** The name of the data category */
|
|
29045
29486
|
name: t.union([t.string, t.null]),
|
|
29487
|
+
/** The nameKey of the data category */
|
|
29046
29488
|
nameKey: t.union([t.string, t.null])
|
|
29047
29489
|
}), t.null]),
|
|
29490
|
+
/** The data element */
|
|
29048
29491
|
dataElement: t.union([t.type({
|
|
29492
|
+
/** The ID of the data element */
|
|
29049
29493
|
id: t.union([t.string, t.null]),
|
|
29494
|
+
/** The name of the data element */
|
|
29050
29495
|
name: t.union([t.string, t.null]),
|
|
29496
|
+
/** The name key of the data element */
|
|
29051
29497
|
nameKey: t.union([t.string, t.null])
|
|
29052
29498
|
}), t.null])
|
|
29053
29499
|
})]));
|
|
29054
29500
|
const OneTrustAssessmentQuestionResponses = t.array(t.type({
|
|
29501
|
+
/** The responses */
|
|
29055
29502
|
responses: OneTrustAssessmentResponses,
|
|
29503
|
+
/** Justification comments for the given response. */
|
|
29056
29504
|
justification: t.union([t.string, t.null])
|
|
29057
29505
|
}));
|
|
29058
29506
|
const OneTrustAssessmentQuestionRisk = t.intersection([t.type({
|
|
29507
|
+
/** ID of the question for which the risk was flagged. */
|
|
29059
29508
|
questionId: t.string,
|
|
29509
|
+
/** ID of the flagged risk. */
|
|
29060
29510
|
riskId: t.string
|
|
29061
29511
|
}), t.partial({
|
|
29512
|
+
/** Level of risk flagged on the question. */
|
|
29062
29513
|
level: t.union([t.number, t.null]),
|
|
29514
|
+
/** Score of risk flagged on the question. */
|
|
29063
29515
|
score: t.union([t.number, t.null]),
|
|
29516
|
+
/** Probability of risk flagged on the question. */
|
|
29064
29517
|
probability: t.union([t.number, t.undefined]),
|
|
29518
|
+
/** Impact Level of risk flagged on the question. */
|
|
29065
29519
|
impactLevel: t.union([t.number, t.undefined])
|
|
29066
29520
|
})]);
|
|
29067
29521
|
const OneTrustAssessmentQuestion = t.intersection([t.type({
|
|
29522
|
+
/** The question */
|
|
29068
29523
|
question: OneTrustAssessmentNestedQuestion,
|
|
29524
|
+
/** Indicates whether the question is hidden on the assessment. */
|
|
29069
29525
|
hidden: t.boolean,
|
|
29526
|
+
/** Reason for locking the question in the assessment. */
|
|
29070
29527
|
lockReason: t.union([t.string, t.null]),
|
|
29528
|
+
/** The copy errors */
|
|
29071
29529
|
copyErrors: t.union([t.string, t.null]),
|
|
29530
|
+
/** Indicates whether navigation rules are enabled for the question. */
|
|
29072
29531
|
hasNavigationRules: t.boolean,
|
|
29532
|
+
/** The responses to this question */
|
|
29073
29533
|
questionResponses: OneTrustAssessmentQuestionResponses,
|
|
29534
|
+
/** The risks associated with this question */
|
|
29074
29535
|
risks: t.union([t.array(OneTrustAssessmentQuestionRisk), t.null]),
|
|
29536
|
+
/** List of IDs associated with the question root requests. */
|
|
29075
29537
|
rootRequestInformationIds: t.array(t.string),
|
|
29538
|
+
/** Number of attachments added to the question. */
|
|
29076
29539
|
totalAttachments: t.number,
|
|
29540
|
+
/** IDs of the attachment(s) added to the question. */
|
|
29077
29541
|
attachmentIds: t.array(t.string),
|
|
29542
|
+
/** The canReopenWithAllowEditOption */
|
|
29078
29543
|
canReopenWithAllowEditOption: t.boolean,
|
|
29544
|
+
/** The riskCreationAllowed */
|
|
29079
29545
|
riskCreationAllowed: t.boolean,
|
|
29546
|
+
/** The riskDeletionPopupAllowed */
|
|
29080
29547
|
riskDeletionPopupAllowed: t.boolean,
|
|
29548
|
+
/** The allowMaturityScaleOnQuestions */
|
|
29081
29549
|
allowMaturityScaleOnQuestions: t.boolean,
|
|
29550
|
+
/** The questionAssociations */
|
|
29082
29551
|
questionAssociations: t.union([t.string, t.null]),
|
|
29552
|
+
/** The issues */
|
|
29083
29553
|
issues: t.union([t.string, t.null]),
|
|
29554
|
+
/** The responseEditableWhileUnderReview */
|
|
29084
29555
|
responseEditableWhileUnderReview: t.boolean
|
|
29085
29556
|
}), t.partial({
|
|
29557
|
+
/** The businessKeyReference */
|
|
29086
29558
|
businessKeyReference: t.union([t.string, t.null]),
|
|
29559
|
+
/** The topic */
|
|
29087
29560
|
topic: t.union([t.string, t.null]),
|
|
29561
|
+
/** The questionLaws */
|
|
29088
29562
|
questionLaws: t.array(t.string),
|
|
29563
|
+
/** The responseFilter */
|
|
29089
29564
|
responseFilter: t.union([t.string, t.null]),
|
|
29565
|
+
/** The linkAssessmentToResponseEntity */
|
|
29090
29566
|
linkAssessmentToResponseEntity: t.boolean,
|
|
29567
|
+
/** The translationIdentifier */
|
|
29091
29568
|
translationIdentifier: t.string,
|
|
29569
|
+
/** The readOnly */
|
|
29092
29570
|
readOnly: t.boolean,
|
|
29571
|
+
/** The schema */
|
|
29093
29572
|
schema: t.union([t.string, t.null]),
|
|
29573
|
+
/** The attributeId */
|
|
29094
29574
|
attributeId: t.string,
|
|
29575
|
+
/** Whether it is a vendor question */
|
|
29095
29576
|
vendorQuestion: t.boolean,
|
|
29577
|
+
/** Whether the question was seeded */
|
|
29096
29578
|
seeded: t.boolean,
|
|
29579
|
+
/** Whether the question allows justification */
|
|
29097
29580
|
allowJustification: t.boolean,
|
|
29581
|
+
/** Whether it refers to an asset question */
|
|
29098
29582
|
assetQuestion: t.boolean,
|
|
29583
|
+
/** Whether it refers to an entity question */
|
|
29099
29584
|
entityQuestion: t.boolean,
|
|
29585
|
+
/** Whether it is a paquestion */
|
|
29100
29586
|
paquestion: t.boolean,
|
|
29587
|
+
/** The inventoryTypeEnum */
|
|
29101
29588
|
inventoryTypeEnum: t.union([t.string, t.null]),
|
|
29589
|
+
/** Whether it is a forceOther */
|
|
29102
29590
|
forceOther: t.boolean,
|
|
29591
|
+
/** Whether it is a isParentQuestionMultiSelect */
|
|
29103
29592
|
isParentQuestionMultiSelect: t.boolean
|
|
29104
29593
|
})]);
|
|
29105
29594
|
const OneTrustAssessmentSectionHeaderRiskStatistics = t.union([t.type({
|
|
29595
|
+
/** Maximum level of risk in the section. */
|
|
29106
29596
|
maxRiskLevel: t.union([t.number, t.null]),
|
|
29597
|
+
/** Number of risks in the section. */
|
|
29107
29598
|
riskCount: t.union([t.number, t.null]),
|
|
29599
|
+
/** ID of the section in the assessment. */
|
|
29108
29600
|
sectionId: t.union([t.string, t.null])
|
|
29109
29601
|
}), t.null]);
|
|
29110
29602
|
const OneTrustAssessmentSectionHeader = t.intersection([t.type({
|
|
29603
|
+
/** ID of the section in the assessment. */
|
|
29111
29604
|
sectionId: t.string,
|
|
29605
|
+
/** Name of the section. */
|
|
29112
29606
|
name: t.string,
|
|
29607
|
+
/** The status of the section */
|
|
29113
29608
|
status: t.union([t.string, t.null]),
|
|
29609
|
+
/** The openNMIQuestionIds */
|
|
29114
29610
|
openNMIQuestionIds: t.union([t.string, t.null]),
|
|
29611
|
+
/** Description of the section header. */
|
|
29115
29612
|
description: t.union([t.string, t.null]),
|
|
29613
|
+
/** Sequence of the section within the form */
|
|
29116
29614
|
sequence: t.number,
|
|
29615
|
+
/** Indicates whether the section is hidden in the assessment. */
|
|
29117
29616
|
hidden: t.boolean,
|
|
29617
|
+
/** IDs of invalid questions in the section. */
|
|
29118
29618
|
invalidQuestionIds: t.array(t.string),
|
|
29619
|
+
/** IDs of required but unanswered questions in the section. */
|
|
29119
29620
|
requiredUnansweredQuestionIds: t.array(t.string),
|
|
29621
|
+
/** IDs of required questions in the section. */
|
|
29120
29622
|
requiredQuestionIds: t.array(t.string),
|
|
29623
|
+
/** IDs of unanswered questions in the section. */
|
|
29121
29624
|
unansweredQuestionIds: t.array(t.string),
|
|
29625
|
+
/** IDs of effectiveness questions in the section. */
|
|
29122
29626
|
effectivenessQuestionIds: t.array(t.string),
|
|
29627
|
+
/** The risk statistics */
|
|
29123
29628
|
riskStatistics: OneTrustAssessmentSectionHeaderRiskStatistics,
|
|
29629
|
+
/** Whether the section was submitted */
|
|
29124
29630
|
submitted: t.boolean
|
|
29125
|
-
}), t.partial({
|
|
29631
|
+
}), t.partial({
|
|
29632
|
+
/** The name key of the template */
|
|
29633
|
+
nameKey: t.union([t.string, t.null]) })]);
|
|
29126
29634
|
const OneTrustAssessmentSection = t.type({
|
|
29635
|
+
/** The Assessment section header */
|
|
29127
29636
|
header: OneTrustAssessmentSectionHeader,
|
|
29637
|
+
/** The questions within the section */
|
|
29128
29638
|
questions: t.array(OneTrustAssessmentQuestion),
|
|
29639
|
+
/** Indicates whether navigation rules are enabled for the question. */
|
|
29129
29640
|
hasNavigationRules: t.boolean,
|
|
29641
|
+
/** Who submitted the section */
|
|
29130
29642
|
submittedBy: OneTrustAssessmentSectionSubmittedBy,
|
|
29643
|
+
/** Date of the submission */
|
|
29131
29644
|
submittedDt: t.union([t.string, t.null]),
|
|
29645
|
+
/** Name of the section. */
|
|
29132
29646
|
name: t.string,
|
|
29647
|
+
/** Indicates whether navigation rules are enabled for the question. */
|
|
29133
29648
|
hidden: t.boolean,
|
|
29649
|
+
/** Indicates whether the section is valid. */
|
|
29134
29650
|
valid: t.boolean,
|
|
29651
|
+
/** ID of the section in an assessment. */
|
|
29135
29652
|
sectionId: t.string,
|
|
29653
|
+
/** Sequence of the section within the form */
|
|
29136
29654
|
sequence: t.number,
|
|
29655
|
+
/** Whether the section was submitted */
|
|
29137
29656
|
submitted: t.boolean,
|
|
29657
|
+
/** Descriptions of the section. */
|
|
29138
29658
|
description: t.union([t.string, t.null])
|
|
29139
29659
|
});
|
|
29140
29660
|
const OneTrustAssessmentCreatedBy = t.type({
|
|
29661
|
+
/** The ID of the creator */
|
|
29141
29662
|
id: t.string,
|
|
29663
|
+
/** The name of the creator */
|
|
29142
29664
|
name: t.string,
|
|
29665
|
+
/** The name key of the template */
|
|
29143
29666
|
nameKey: t.union([t.string, t.null])
|
|
29144
29667
|
});
|
|
29145
29668
|
const OneTrustGetAssessmentResponse = t.type({
|
|
29669
|
+
/** List of users assigned as approvers of the assessment. */
|
|
29146
29670
|
approvers: t.array(OneTrustApprover),
|
|
29671
|
+
/** ID of an assessment. */
|
|
29147
29672
|
assessmentId: t.string,
|
|
29673
|
+
/** Number assigned to an assessment. */
|
|
29148
29674
|
assessmentNumber: t.number,
|
|
29675
|
+
/** Date and time at which the assessment was completed. */
|
|
29149
29676
|
completedOn: t.union([t.string, t.null]),
|
|
29677
|
+
/** Status of the assessment. */
|
|
29150
29678
|
status: OneTrustAssessmentStatus,
|
|
29679
|
+
/** Creator of the Assessment */
|
|
29151
29680
|
createdBy: OneTrustAssessmentCreatedBy,
|
|
29681
|
+
/** Date and time at which the assessment was created. */
|
|
29152
29682
|
createdDT: t.string,
|
|
29683
|
+
/** Date and time by which the assessment must be completed. */
|
|
29153
29684
|
deadline: t.union([t.string, t.null]),
|
|
29685
|
+
/** Description of the assessment. */
|
|
29154
29686
|
description: t.union([t.string, t.null]),
|
|
29687
|
+
/** Overall inherent risk score without considering the existing controls. */
|
|
29155
29688
|
inherentRiskScore: t.union([t.number, t.null]),
|
|
29689
|
+
/** Date and time at which the assessment was last updated. */
|
|
29156
29690
|
lastUpdated: t.string,
|
|
29691
|
+
/** Number of risks captured on the assessment with a low risk level. */
|
|
29157
29692
|
lowRisk: t.number,
|
|
29693
|
+
/** Number of risks captured on the assessment with a medium risk level. */
|
|
29158
29694
|
mediumRisk: t.number,
|
|
29695
|
+
/** Number of risks captured on the assessment with a high risk level. */
|
|
29159
29696
|
highRisk: t.number,
|
|
29697
|
+
/** Name of the assessment. */
|
|
29160
29698
|
name: t.string,
|
|
29699
|
+
/** Number of open risks that have not been addressed. */
|
|
29161
29700
|
openRiskCount: t.number,
|
|
29701
|
+
/** The organization group */
|
|
29162
29702
|
orgGroup: t.intersection([t.type({
|
|
29703
|
+
/** The ID of the organization group */
|
|
29163
29704
|
id: t.string,
|
|
29705
|
+
/** The name of the organization group */
|
|
29164
29706
|
name: t.string
|
|
29165
|
-
}), t.partial({
|
|
29707
|
+
}), t.partial({
|
|
29708
|
+
/** The name key of the template */
|
|
29709
|
+
nameKey: t.union([t.string, t.null]) })]),
|
|
29710
|
+
/** The primary record */
|
|
29166
29711
|
primaryEntityDetails: OneTrustPrimaryEntityDetails,
|
|
29712
|
+
/** Type of inventory record designated as the primary record. */
|
|
29167
29713
|
primaryRecordType: t.union([t.string, t.null]),
|
|
29714
|
+
/** Overall risk score after considering existing controls. */
|
|
29168
29715
|
residualRiskScore: t.union([t.number, t.null]),
|
|
29716
|
+
/** The respondent */
|
|
29169
29717
|
respondent: t.type({
|
|
29718
|
+
/** The ID of the respondent */
|
|
29170
29719
|
id: t.string,
|
|
29720
|
+
/** The name or email of the respondent */
|
|
29171
29721
|
name: t.string
|
|
29172
29722
|
}),
|
|
29723
|
+
/** The respondents */
|
|
29173
29724
|
respondents: t.array(t.type({
|
|
29725
|
+
/** The ID of the respondent */
|
|
29174
29726
|
id: t.string,
|
|
29727
|
+
/** The name or email of the respondent */
|
|
29175
29728
|
name: t.string,
|
|
29729
|
+
/** The name key of the template */
|
|
29176
29730
|
nameKey: t.union([t.string, t.null])
|
|
29177
29731
|
})),
|
|
29732
|
+
/** Result of the assessment. */
|
|
29178
29733
|
result: t.union([t.string, t.null]),
|
|
29734
|
+
/** ID of the result. */
|
|
29179
29735
|
resultId: t.union([t.string, t.null]),
|
|
29736
|
+
/** Name of the result. */
|
|
29180
29737
|
resultName: t.union([
|
|
29181
29738
|
t.literal("Approved - Remediation required"),
|
|
29182
29739
|
t.literal("Approved"),
|
|
@@ -29185,6 +29742,7 @@ const OneTrustGetAssessmentResponse = t.type({
|
|
|
29185
29742
|
t.string,
|
|
29186
29743
|
t.null
|
|
29187
29744
|
]),
|
|
29745
|
+
/** Risk level of the assessment. */
|
|
29188
29746
|
riskLevel: t.union([
|
|
29189
29747
|
t.literal("None"),
|
|
29190
29748
|
t.literal("Low"),
|
|
@@ -29192,17 +29750,28 @@ const OneTrustGetAssessmentResponse = t.type({
|
|
|
29192
29750
|
t.literal("High"),
|
|
29193
29751
|
t.literal("Very High")
|
|
29194
29752
|
]),
|
|
29753
|
+
/** List of sections in the assessment. */
|
|
29195
29754
|
sections: t.array(OneTrustAssessmentSection),
|
|
29755
|
+
/** Date and time at which the assessment was submitted. */
|
|
29196
29756
|
submittedOn: t.union([t.string, t.null]),
|
|
29757
|
+
/** List of tags associated with the assessment. */
|
|
29197
29758
|
tags: t.array(t.string),
|
|
29759
|
+
/** The desired target risk score. */
|
|
29198
29760
|
targetRiskScore: t.union([t.number, t.null]),
|
|
29761
|
+
/** The template */
|
|
29199
29762
|
template: t.type({
|
|
29763
|
+
/** The ID of the template */
|
|
29200
29764
|
id: t.string,
|
|
29765
|
+
/** The name of the template */
|
|
29201
29766
|
name: t.string,
|
|
29767
|
+
/** The name key of the template */
|
|
29202
29768
|
nameKey: t.union([t.string, t.null])
|
|
29203
29769
|
}),
|
|
29770
|
+
/** Number of total risks on the assessment. */
|
|
29204
29771
|
totalRiskCount: t.number,
|
|
29772
|
+
/** Number of very high risks on the assessment. */
|
|
29205
29773
|
veryHighRisk: t.number,
|
|
29774
|
+
/** Welcome text if any in the assessment. */
|
|
29206
29775
|
welcomeText: t.union([t.string, t.null])
|
|
29207
29776
|
});
|
|
29208
29777
|
//#endregion
|
|
@@ -29212,50 +29781,86 @@ const OneTrustGetAssessmentResponse = t.type({
|
|
|
29212
29781
|
* Return types of the "Get Risk" endpoint
|
|
29213
29782
|
*/
|
|
29214
29783
|
const OneTrustEntityType = t.type({
|
|
29784
|
+
/** Indicates whether entity type is eligible for linking/relating with risk or not */
|
|
29215
29785
|
eligibleForEntityLink: t.boolean,
|
|
29786
|
+
/** Indicates whether the entity type is enabled or not. */
|
|
29216
29787
|
enabled: t.boolean,
|
|
29788
|
+
/** Entity Type ID. This can be Assets, Entities, PIA, Engagement, Custom Object GUID in form of String. */
|
|
29217
29789
|
id: t.string,
|
|
29790
|
+
/** Entity Type Name. */
|
|
29218
29791
|
label: t.string,
|
|
29792
|
+
/** Name of the module. */
|
|
29219
29793
|
moduleName: t.union([t.string, t.null]),
|
|
29794
|
+
/** Indicates whether this type can be risk type or not in Risk */
|
|
29220
29795
|
riskType: t.boolean,
|
|
29796
|
+
/** For Base Entity Type Seeded is true and false for Custom Object/Entity Types by default. */
|
|
29221
29797
|
seeded: t.boolean,
|
|
29798
|
+
/** Indicates whether this type can be source type or not in Risk */
|
|
29222
29799
|
sourceType: t.boolean,
|
|
29800
|
+
/** Translation Key of Entity Type ID. */
|
|
29223
29801
|
translationKey: t.string
|
|
29224
29802
|
});
|
|
29225
29803
|
const OneTrustRiskLevel = t.type({
|
|
29804
|
+
/** Risk Impact Level name. */
|
|
29226
29805
|
impactLevel: t.union([t.string, t.null]),
|
|
29806
|
+
/** Risk Impact level ID. */
|
|
29227
29807
|
impactLevelId: t.union([t.number, t.null]),
|
|
29808
|
+
/** Risk Level Name. */
|
|
29228
29809
|
level: t.union([t.string, t.null]),
|
|
29810
|
+
/** Risk Level ID. */
|
|
29229
29811
|
levelId: t.union([t.number, t.null]),
|
|
29812
|
+
/** Risk Probability Level Name. */
|
|
29230
29813
|
probabilityLevel: t.union([t.string, t.null]),
|
|
29814
|
+
/** Risk Probability Level ID. */
|
|
29231
29815
|
probabilityLevelId: t.union([t.number, t.null]),
|
|
29816
|
+
/** Risk Score. */
|
|
29232
29817
|
riskScore: t.union([t.number, t.null])
|
|
29233
29818
|
});
|
|
29234
|
-
const OneTrustRiskCategories = t.array(t.intersection([t.partial({
|
|
29819
|
+
const OneTrustRiskCategories = t.array(t.intersection([t.partial({
|
|
29820
|
+
/** Whether the category was seeded */
|
|
29821
|
+
seeded: t.boolean }), t.type({
|
|
29822
|
+
/** Identifier for Risk Category. */
|
|
29235
29823
|
id: t.string,
|
|
29824
|
+
/** Risk Category Name. */
|
|
29236
29825
|
name: t.string,
|
|
29826
|
+
/** Risk Category Name Key value for translation. */
|
|
29237
29827
|
nameKey: t.string
|
|
29238
29828
|
})]));
|
|
29239
29829
|
const OneTrustRiskReference = t.type({
|
|
29830
|
+
/** The id of the risk reference */
|
|
29240
29831
|
id: t.string,
|
|
29832
|
+
/** The type of the risk reference */
|
|
29241
29833
|
type: t.string,
|
|
29834
|
+
/** The reference type of the risk reference */
|
|
29242
29835
|
referenceType: OneTrustEntityType,
|
|
29836
|
+
/** The name of the risk reference */
|
|
29243
29837
|
name: t.union([t.string, t.null]),
|
|
29838
|
+
/** The additional attributes of the risk reference */
|
|
29244
29839
|
additionalAttributes: t.object
|
|
29245
29840
|
});
|
|
29246
29841
|
const OneTrustRiskReferences = t.array(OneTrustRiskReference);
|
|
29247
29842
|
const OneTrustRiskTemplate = t.type({
|
|
29843
|
+
/** The id of the risk template */
|
|
29248
29844
|
id: t.union([t.string, t.null]),
|
|
29845
|
+
/** The name of the risk template */
|
|
29249
29846
|
name: t.union([t.string, t.null])
|
|
29250
29847
|
});
|
|
29251
29848
|
const OneTrustGetRiskResponse = t.type({
|
|
29849
|
+
/** The risk references */
|
|
29252
29850
|
references: OneTrustRiskReferences,
|
|
29851
|
+
/** Whether the risk is closed */
|
|
29253
29852
|
closed: t.boolean,
|
|
29853
|
+
/** The risk template */
|
|
29254
29854
|
riskTemplate: OneTrustRiskTemplate,
|
|
29855
|
+
/** The currentStageApproversCount */
|
|
29255
29856
|
currentStageApproversCount: t.number,
|
|
29857
|
+
/** List of associated inventories to the risk. */
|
|
29256
29858
|
associatedInventories: t.array(t.type({
|
|
29859
|
+
/** ID of the Inventory. */
|
|
29257
29860
|
inventoryId: t.string,
|
|
29861
|
+
/** Name of the Inventory. */
|
|
29258
29862
|
inventoryName: t.string,
|
|
29863
|
+
/** Type of the Inventory. */
|
|
29259
29864
|
inventoryType: t.union([
|
|
29260
29865
|
t.literal("ASSETS"),
|
|
29261
29866
|
t.literal("PROCESSING_ACTIVITIES"),
|
|
@@ -29263,32 +29868,59 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29263
29868
|
t.literal("ENTITIES"),
|
|
29264
29869
|
t.null
|
|
29265
29870
|
]),
|
|
29871
|
+
/** ID of the Inventory's Organization. */
|
|
29266
29872
|
organizationId: t.union([t.string, t.null]),
|
|
29873
|
+
/** The source type */
|
|
29267
29874
|
sourceType: OneTrustEntityType
|
|
29268
29875
|
})),
|
|
29876
|
+
/** The attribute values associated with the risk */
|
|
29269
29877
|
attributeValues: t.object,
|
|
29878
|
+
/** List of categories. */
|
|
29270
29879
|
categories: OneTrustRiskCategories,
|
|
29880
|
+
/** List of Control Identifiers. */
|
|
29271
29881
|
controlsIdentifier: t.array(t.string),
|
|
29882
|
+
/** Risk created time. */
|
|
29272
29883
|
createdUTCDateTime: t.union([t.string, t.null]),
|
|
29884
|
+
/** Risk Creation Type. */
|
|
29273
29885
|
creationType: t.union([t.string, t.null]),
|
|
29886
|
+
/** Date when the risk is closed. */
|
|
29274
29887
|
dateClosed: t.union([t.string, t.null]),
|
|
29888
|
+
/** Deadline date for the risk. */
|
|
29275
29889
|
deadline: t.union([t.string, t.null]),
|
|
29890
|
+
/** Risk delete type. */
|
|
29276
29891
|
deleteType: t.union([t.literal("SOFT"), t.null]),
|
|
29892
|
+
/** Risk description. */
|
|
29277
29893
|
description: t.union([t.string, t.null]),
|
|
29894
|
+
/** ID of the risk. */
|
|
29278
29895
|
id: t.string,
|
|
29896
|
+
/** Residual impact level ID. */
|
|
29279
29897
|
impactLevelId: t.union([t.number, t.null]),
|
|
29898
|
+
/** The inherent risk level */
|
|
29280
29899
|
inherentRiskLevel: OneTrustRiskLevel,
|
|
29900
|
+
/** The risk justification */
|
|
29281
29901
|
justification: t.union([t.string, t.null]),
|
|
29902
|
+
/** Residual level display name. */
|
|
29282
29903
|
levelDisplayName: t.union([t.string, t.null]),
|
|
29904
|
+
/** Residual level ID. */
|
|
29283
29905
|
levelId: t.union([t.number, t.null]),
|
|
29906
|
+
/** Risk mitigated date. */
|
|
29284
29907
|
mitigatedDate: t.union([t.string, t.null]),
|
|
29908
|
+
/** Risk Mitigation details. */
|
|
29285
29909
|
mitigation: t.union([t.string, t.null]),
|
|
29910
|
+
/** Short Name for a Risk. */
|
|
29286
29911
|
name: t.union([t.string, t.null]),
|
|
29912
|
+
/** Integer risk identifier. */
|
|
29287
29913
|
number: t.number,
|
|
29914
|
+
/** The organization group */
|
|
29288
29915
|
orgGroup: t.intersection([t.type({
|
|
29916
|
+
/** The ID of the organization group */
|
|
29289
29917
|
id: t.string,
|
|
29918
|
+
/** The name of the organization group */
|
|
29290
29919
|
name: t.string
|
|
29291
|
-
}), t.partial({
|
|
29920
|
+
}), t.partial({
|
|
29921
|
+
/** The name key of the template */
|
|
29922
|
+
nameKey: t.union([t.string, t.null]) })]),
|
|
29923
|
+
/** The previous risk state */
|
|
29292
29924
|
previousState: t.union([
|
|
29293
29925
|
t.literal("IDENTIFIED"),
|
|
29294
29926
|
t.literal("RECOMMENDATION_ADDED"),
|
|
@@ -29300,12 +29932,19 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29300
29932
|
t.literal("ARCHIVED_IN_VERSION"),
|
|
29301
29933
|
t.null
|
|
29302
29934
|
]),
|
|
29935
|
+
/** Residual probability level. */
|
|
29303
29936
|
probabilityLevel: t.union([t.string, t.null]),
|
|
29937
|
+
/** Residual probability level ID. */
|
|
29304
29938
|
probabilityLevelId: t.union([t.number, t.null]),
|
|
29939
|
+
/** Risk Recommendation. */
|
|
29305
29940
|
recommendation: t.union([t.string, t.null]),
|
|
29941
|
+
/** Proposed remediation. */
|
|
29306
29942
|
remediationProposal: t.union([t.string, t.null]),
|
|
29943
|
+
/** Deadline reminder days. */
|
|
29307
29944
|
reminderDays: t.union([t.number, t.null]),
|
|
29945
|
+
/** Risk exception request. */
|
|
29308
29946
|
requestedException: t.union([t.string, t.null]),
|
|
29947
|
+
/** Risk Result. */
|
|
29309
29948
|
result: t.union([
|
|
29310
29949
|
t.literal("Accepted"),
|
|
29311
29950
|
t.literal("Avoided"),
|
|
@@ -29315,19 +29954,33 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29315
29954
|
t.literal("Ignored"),
|
|
29316
29955
|
t.null
|
|
29317
29956
|
]),
|
|
29957
|
+
/** Risk approvers name csv. */
|
|
29318
29958
|
riskApprovers: t.union([t.string, t.null]),
|
|
29959
|
+
/** Risk approvers ID. */
|
|
29319
29960
|
riskApproversId: t.array(t.string),
|
|
29961
|
+
/** List of risk owners ID. */
|
|
29320
29962
|
riskOwnersId: t.union([t.array(t.string), t.null]),
|
|
29963
|
+
/** Risk owners name csv. */
|
|
29321
29964
|
riskOwnersName: t.union([t.string, t.null]),
|
|
29965
|
+
/** Risk score. */
|
|
29322
29966
|
riskScore: t.union([t.number, t.null]),
|
|
29967
|
+
/** The risk source type */
|
|
29323
29968
|
riskSourceType: OneTrustEntityType,
|
|
29969
|
+
/** The risk type */
|
|
29324
29970
|
riskType: OneTrustEntityType,
|
|
29971
|
+
/** For Auto risk, rule Id reference. */
|
|
29325
29972
|
ruleRootVersionId: t.union([t.string, t.null]),
|
|
29973
|
+
/** The risk source */
|
|
29326
29974
|
source: t.type({
|
|
29975
|
+
/** Additional information about the Source Entity */
|
|
29327
29976
|
additionalAttributes: t.object,
|
|
29977
|
+
/** Source Entity ID. */
|
|
29328
29978
|
id: t.union([t.string, t.null]),
|
|
29979
|
+
/** Source Entity Name. */
|
|
29329
29980
|
name: t.union([t.string, t.null]),
|
|
29981
|
+
/** The risk source type */
|
|
29330
29982
|
sourceType: t.union([OneTrustEntityType, t.null]),
|
|
29983
|
+
/** Source Entity Type. */
|
|
29331
29984
|
type: t.union([
|
|
29332
29985
|
t.literal("PIA"),
|
|
29333
29986
|
t.literal("RA"),
|
|
@@ -29338,6 +29991,7 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29338
29991
|
t.null
|
|
29339
29992
|
])
|
|
29340
29993
|
}),
|
|
29994
|
+
/** Risk Source Type. */
|
|
29341
29995
|
sourceType: t.union([
|
|
29342
29996
|
t.literal("PIA"),
|
|
29343
29997
|
t.literal("RA"),
|
|
@@ -29347,14 +30001,21 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29347
30001
|
t.literal("GENERIC"),
|
|
29348
30002
|
t.null
|
|
29349
30003
|
]),
|
|
30004
|
+
/** The risk stage */
|
|
29350
30005
|
stage: t.intersection([t.partial({
|
|
30006
|
+
/** The currentStageApprovers */
|
|
29351
30007
|
currentStageApprovers: t.array(t.string),
|
|
30008
|
+
/** The badgeColor */
|
|
29352
30009
|
badgeColor: t.union([t.string, t.null])
|
|
29353
30010
|
}), t.type({
|
|
30011
|
+
/** ID of an entity. */
|
|
29354
30012
|
id: t.string,
|
|
30013
|
+
/** Name of an entity. */
|
|
29355
30014
|
name: t.string,
|
|
30015
|
+
/** Name Key of the entity for translation. */
|
|
29356
30016
|
nameKey: t.string
|
|
29357
30017
|
})]),
|
|
30018
|
+
/** The risk state */
|
|
29358
30019
|
state: t.union([
|
|
29359
30020
|
t.literal("IDENTIFIED"),
|
|
29360
30021
|
t.literal("RECOMMENDATION_ADDED"),
|
|
@@ -29365,13 +30026,20 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29365
30026
|
t.literal("RETAINED"),
|
|
29366
30027
|
t.literal("ARCHIVED_IN_VERSION")
|
|
29367
30028
|
]),
|
|
30029
|
+
/** The target risk level */
|
|
29368
30030
|
targetRiskLevel: OneTrustRiskLevel,
|
|
30031
|
+
/** The risk threat */
|
|
29369
30032
|
threat: t.union([t.type({
|
|
30033
|
+
/** Threat ID. */
|
|
29370
30034
|
id: t.string,
|
|
30035
|
+
/** Threat Identifier. */
|
|
29371
30036
|
identifier: t.string,
|
|
30037
|
+
/** Threat Name. */
|
|
29372
30038
|
name: t.string
|
|
29373
30039
|
}), t.null]),
|
|
30040
|
+
/** Risk Treatment. */
|
|
29374
30041
|
treatment: t.union([t.string, t.null]),
|
|
30042
|
+
/** Risk Treatment status. */
|
|
29375
30043
|
treatmentStatus: t.union([
|
|
29376
30044
|
t.literal("InProgress"),
|
|
29377
30045
|
t.literal("UnderReview"),
|
|
@@ -29380,6 +30048,7 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29380
30048
|
t.literal("ExceptionGranted"),
|
|
29381
30049
|
t.null
|
|
29382
30050
|
]),
|
|
30051
|
+
/** Risk Type. */
|
|
29383
30052
|
type: t.union([
|
|
29384
30053
|
t.literal("ASSESSMENTS"),
|
|
29385
30054
|
t.literal("ASSETS"),
|
|
@@ -29390,41 +30059,63 @@ const OneTrustGetRiskResponse = t.type({
|
|
|
29390
30059
|
t.literal("ENGAGEMENTS"),
|
|
29391
30060
|
t.null
|
|
29392
30061
|
]),
|
|
30062
|
+
/** ID of an assessment. */
|
|
29393
30063
|
typeRefIds: t.array(t.string),
|
|
30064
|
+
/** List of vulnerabilities */
|
|
29394
30065
|
vulnerabilities: t.union([t.array(t.type({
|
|
30066
|
+
/** Vulnerability ID. */
|
|
29395
30067
|
id: t.string,
|
|
30068
|
+
/** Vulnerability Identifier. */
|
|
29396
30069
|
identifier: t.string,
|
|
30070
|
+
/** Vulnerability Name. */
|
|
29397
30071
|
name: t.string
|
|
29398
30072
|
})), t.null]),
|
|
30073
|
+
/** The risk workflow */
|
|
29399
30074
|
workflow: t.intersection([t.type({
|
|
30075
|
+
/** ID of an entity. */
|
|
29400
30076
|
id: t.string,
|
|
30077
|
+
/** Name of an entity. */
|
|
29401
30078
|
name: t.string
|
|
29402
30079
|
}), t.partial({
|
|
30080
|
+
/** The name Key */
|
|
29403
30081
|
nameKey: t.union([t.string, t.null]),
|
|
30082
|
+
/** The badgeColor */
|
|
29404
30083
|
badgeColor: t.union([t.string, t.null])
|
|
29405
30084
|
})])
|
|
29406
30085
|
});
|
|
29407
30086
|
//#endregion
|
|
29408
30087
|
//#region src/oneTrust/endpoints/getUser.ts
|
|
29409
30088
|
const OneTrustUserMetadata = t.type({
|
|
30089
|
+
/** When the user was created */
|
|
29410
30090
|
created: t.string,
|
|
30091
|
+
/** When the user was modified */
|
|
29411
30092
|
lastModified: t.string,
|
|
30093
|
+
/** The URI for accessing information about the user */
|
|
29412
30094
|
location: t.string,
|
|
30095
|
+
/** The resource type */
|
|
29413
30096
|
resourceType: t.literal("User")
|
|
29414
30097
|
});
|
|
29415
30098
|
const OneTrustUserName = t.partial({
|
|
30099
|
+
/** The user's family name */
|
|
29416
30100
|
familyName: t.string,
|
|
30101
|
+
/** The user's given name */
|
|
29417
30102
|
givenName: t.string
|
|
29418
30103
|
});
|
|
29419
30104
|
const OneTrustUserGroup = t.type({
|
|
30105
|
+
/** The user group's identification */
|
|
29420
30106
|
value: t.string,
|
|
30107
|
+
/** The user group's display name */
|
|
29421
30108
|
display: t.string
|
|
29422
30109
|
});
|
|
29423
30110
|
const OneTrustUserGroups = t.array(OneTrustUserGroup);
|
|
29424
30111
|
const OneTrustUserEmail = t.type({
|
|
30112
|
+
/** The email value */
|
|
29425
30113
|
value: t.string,
|
|
30114
|
+
/** The email display name */
|
|
29426
30115
|
display: t.string,
|
|
30116
|
+
/** Whether this is the primary email */
|
|
29427
30117
|
primary: t.boolean,
|
|
30118
|
+
/** The email type */
|
|
29428
30119
|
type: t.union([t.string, t.literal("work")])
|
|
29429
30120
|
});
|
|
29430
30121
|
const OneTrustUserEmails = t.array(OneTrustUserEmail);
|
|
@@ -29433,17 +30124,29 @@ const OneTrustUserEmails = t.array(OneTrustUserEmail);
|
|
|
29433
30124
|
* ref: https://developer.onetrust.com/onetrust/reference/getuserusingget
|
|
29434
30125
|
*/
|
|
29435
30126
|
const OneTrustGetUserResponse = t.type({
|
|
30127
|
+
/** ID of the user. */
|
|
29436
30128
|
id: t.string,
|
|
30129
|
+
/** External ID of the user. */
|
|
29437
30130
|
externalId: t.union([t.string, t.null]),
|
|
30131
|
+
/** Metadata of the user. */
|
|
29438
30132
|
meta: OneTrustUserMetadata,
|
|
30133
|
+
/** Schemas of the user */
|
|
29439
30134
|
schemas: t.array(t.string),
|
|
30135
|
+
/** Name or email of the user */
|
|
29440
30136
|
userName: t.string,
|
|
30137
|
+
/** Full name of the user */
|
|
29441
30138
|
name: OneTrustUserName,
|
|
30139
|
+
/** Type of the user */
|
|
29442
30140
|
userType: t.union([t.literal("Internal"), t.literal("External")]),
|
|
30141
|
+
/** Flag to check if the user is an active user or not. */
|
|
29443
30142
|
active: t.boolean,
|
|
30143
|
+
/** The groups that the user belongs to */
|
|
29444
30144
|
groups: OneTrustUserGroups,
|
|
30145
|
+
/** The emails of the user */
|
|
29445
30146
|
emails: OneTrustUserEmails,
|
|
30147
|
+
/** The roles of the user */
|
|
29446
30148
|
roles: t.array(t.string),
|
|
30149
|
+
/** The title of the user */
|
|
29447
30150
|
title: t.union([t.string, t.null])
|
|
29448
30151
|
});
|
|
29449
30152
|
//#endregion
|
|
@@ -29515,36 +30218,53 @@ const DecryptionStatus = makeEnum({
|
|
|
29515
30218
|
* Preference store identifier
|
|
29516
30219
|
*/
|
|
29517
30220
|
const PreferenceStoreIdentifier = t.type({
|
|
30221
|
+
/** The identifier name (email, phone etc) */
|
|
29518
30222
|
name: t.string,
|
|
30223
|
+
/** The identifier value */
|
|
29519
30224
|
value: t.string
|
|
29520
30225
|
});
|
|
29521
30226
|
/**
|
|
29522
30227
|
* Preference store system attributes which are not user editable
|
|
29523
30228
|
*/
|
|
29524
|
-
const PreferenceStoreSystemAttributes = t.intersection([t.type({
|
|
30229
|
+
const PreferenceStoreSystemAttributes = t.intersection([t.type({
|
|
30230
|
+
/** The decrypted status of the record */
|
|
30231
|
+
decryptionStatus: valuesOf(DecryptionStatus) }), t.partial({
|
|
30232
|
+
/** updated timestamp on the db record */
|
|
30233
|
+
updatedAt: t.string })]);
|
|
29525
30234
|
/**
|
|
29526
30235
|
* Contains all the Consent management related fields
|
|
29527
30236
|
* that are stored in the preference store.
|
|
29528
30237
|
*/
|
|
29529
30238
|
const PreferenceStoreConsentFields = t.type({
|
|
30239
|
+
/** US IAB Privacy String */
|
|
29530
30240
|
usp: t.union([t.string, t.null]),
|
|
30241
|
+
/** IAB GPP String */
|
|
29531
30242
|
gpp: t.union([t.string, t.null]),
|
|
30243
|
+
/** IAB TCF String */
|
|
29532
30244
|
tcf: t.union([t.string, t.null]),
|
|
30245
|
+
/** Airgap Version */
|
|
29533
30246
|
airgapVersion: t.union([t.string, t.null])
|
|
29534
30247
|
});
|
|
29535
30248
|
/**
|
|
29536
30249
|
* The format key required fields of the preference store record
|
|
29537
30250
|
*/
|
|
29538
30251
|
const PreferenceStoreKeyConditionals = t.type({
|
|
30252
|
+
/** The partition key */
|
|
29539
30253
|
partition: t.string,
|
|
30254
|
+
/** last consent event timestamp (ISO 8601) */
|
|
29540
30255
|
timestamp: t.string
|
|
29541
30256
|
});
|
|
29542
30257
|
/** The format for a preference which include topic and user choice */
|
|
29543
30258
|
const Preference = t.type({
|
|
30259
|
+
/** The preference topic */
|
|
29544
30260
|
topic: t.string,
|
|
30261
|
+
/** The preference choice made by the user */
|
|
29545
30262
|
choice: t.partial({
|
|
30263
|
+
/** The boolean value of the preference */
|
|
29546
30264
|
booleanValue: t.union([t.boolean, t.null]),
|
|
30265
|
+
/** The select value of the preference */
|
|
29547
30266
|
selectValue: t.union([t.string, t.null]),
|
|
30267
|
+
/** The select values of the preference */
|
|
29548
30268
|
selectValues: t.union([t.array(t.string), t.null])
|
|
29549
30269
|
})
|
|
29550
30270
|
});
|
|
@@ -29552,71 +30272,134 @@ const Preference = t.type({
|
|
|
29552
30272
|
* The format for a preference store purpose
|
|
29553
30273
|
*/
|
|
29554
30274
|
const PreferenceStorePurposeResponse = t.intersection([t.type({
|
|
30275
|
+
/** tracking purpose */
|
|
29555
30276
|
purpose: t.string,
|
|
30277
|
+
/** Whether the purpose is enabled */
|
|
29556
30278
|
enabled: t.boolean
|
|
29557
|
-
}), t.partial({
|
|
30279
|
+
}), t.partial({
|
|
30280
|
+
/** additional preference associated with this purpose */
|
|
30281
|
+
preferences: t.array(Preference) })]);
|
|
29558
30282
|
const PreferenceQueryResponseItem = t.intersection([
|
|
29559
30283
|
PreferenceStoreKeyConditionals,
|
|
29560
30284
|
t.type({
|
|
30285
|
+
/** The system attributes of the record */
|
|
29561
30286
|
system: PreferenceStoreSystemAttributes,
|
|
30287
|
+
/** Consent management related fields */
|
|
29562
30288
|
consentManagement: t.partial(PreferenceStoreConsentFields.props),
|
|
30289
|
+
/** Preference store purposes */
|
|
29563
30290
|
purposes: t.array(PreferenceStorePurposeResponse)
|
|
29564
30291
|
}),
|
|
29565
30292
|
t.partial({
|
|
30293
|
+
/** Primary identifier of the user. */
|
|
29566
30294
|
userId: t.string,
|
|
30295
|
+
/** Identifiers associated to the user */
|
|
29567
30296
|
identifiers: t.array(PreferenceStoreIdentifier),
|
|
30297
|
+
/** metadata */
|
|
29568
30298
|
metadata: t.array(t.type({
|
|
29569
30299
|
key: t.string,
|
|
29570
30300
|
value: t.string
|
|
29571
30301
|
})),
|
|
30302
|
+
/** last updated for metadata */
|
|
29572
30303
|
metadataTimestamp: t.string
|
|
29573
30304
|
})
|
|
29574
30305
|
]);
|
|
29575
30306
|
const CustomFieldApiInput = t.type({
|
|
30307
|
+
/** The attribute key that houses the attribute values */
|
|
29576
30308
|
key: t.string,
|
|
30309
|
+
/** The attribute values used to label resources */
|
|
29577
30310
|
values: t.array(t.string)
|
|
29578
30311
|
});
|
|
29579
30312
|
/** The format of the preference store workflow settings */
|
|
29580
30313
|
const PreferenceStoreWorkflowSettings = t.partial({
|
|
30314
|
+
/** Additional tags to forward to the DSR event */
|
|
29581
30315
|
attributes: t.array(CustomFieldApiInput),
|
|
30316
|
+
/** Data silo IDs to run the workflow on */
|
|
29582
30317
|
dataSiloIds: t.array(t.string),
|
|
30318
|
+
/** The email template ID to use for the receipt */
|
|
29583
30319
|
emailReceiptTemplateId: t.string,
|
|
30320
|
+
/** Data silo IDs to ignore when running the workflow */
|
|
29584
30321
|
ignoreDataSiloIds: t.array(t.string),
|
|
30322
|
+
/** If the workflow is silent */
|
|
29585
30323
|
isSilent: t.boolean,
|
|
30324
|
+
/** if the workflow is a test run */
|
|
29586
30325
|
isTest: t.boolean,
|
|
30326
|
+
/** if the workflow should skip sending the receipt */
|
|
29587
30327
|
skipSendingReceipt: t.boolean,
|
|
30328
|
+
/** if the workflow should skip the waiting period */
|
|
29588
30329
|
skipWaitingPeriod: t.boolean,
|
|
30330
|
+
/** if the workflow should be skipped */
|
|
29589
30331
|
skipWorkflowTrigger: t.boolean,
|
|
30332
|
+
/** Force trigger the workflow even when there was no concent/preference change */
|
|
29590
30333
|
forceTriggerWorkflow: t.boolean,
|
|
30334
|
+
/** Country and/or country subdivision, to pass along to DSR request */
|
|
29591
30335
|
region: t.partial({
|
|
30336
|
+
/** The country ISO code */
|
|
29592
30337
|
country: valuesOf(IsoCountryCode),
|
|
30338
|
+
/** The country subdivision ISO code */
|
|
29593
30339
|
countrySubDivision: valuesOf(IsoCountrySubdivisionCode)
|
|
29594
30340
|
}),
|
|
30341
|
+
/** Language to translate request to */
|
|
29595
30342
|
locale: t.string,
|
|
30343
|
+
/** The data subject type associated with the request */
|
|
29596
30344
|
subjectType: t.string,
|
|
30345
|
+
/** The workflow's V2 configuration ID to use */
|
|
29597
30346
|
workflowConfigId: t.string
|
|
29598
30347
|
});
|
|
29599
30348
|
/**
|
|
29600
30349
|
* The format for a preference store purpose
|
|
29601
30350
|
*/
|
|
29602
30351
|
const PreferenceStorePurposeUpdate = t.intersection([PreferenceStorePurposeResponse, t.partial({
|
|
30352
|
+
/** Timestamp of when the purpose was last updated (ISO 8601) */
|
|
29603
30353
|
timestamp: t.string,
|
|
30354
|
+
/** Additional tags to forward to the DSR event */
|
|
29604
30355
|
attributes: t.array(CustomFieldApiInput),
|
|
30356
|
+
/** Consent workflow settings */
|
|
29605
30357
|
workflowSettings: PreferenceStoreWorkflowSettings,
|
|
30358
|
+
/** Language to translate request to */
|
|
29606
30359
|
locale: t.string
|
|
29607
30360
|
})]);
|
|
29608
30361
|
const PreferenceUpdateItem = t.intersection([PreferenceStoreKeyConditionals, t.partial({
|
|
30362
|
+
/** Primary identifier of the user. */
|
|
29609
30363
|
userId: t.string,
|
|
30364
|
+
/** Identifiers associated to the user */
|
|
29610
30365
|
identifiers: t.array(PreferenceStoreIdentifier),
|
|
30366
|
+
/** Preference store purposes */
|
|
29611
30367
|
purposes: t.array(PreferenceStorePurposeUpdate),
|
|
30368
|
+
/** Consent management related fields */
|
|
29612
30369
|
consentManagement: t.partial(PreferenceStoreConsentFields.props),
|
|
30370
|
+
/**
|
|
30371
|
+
* Language to translate DSR processing
|
|
30372
|
+
* TODO: https://transcend.height.app/T-40208 - move this to `PreferenceStoreKeyConditionals` when stored on record
|
|
30373
|
+
*/
|
|
29613
30374
|
locale: t.string,
|
|
30375
|
+
/** The metadata associated with the record */
|
|
29614
30376
|
metadata: t.array(t.type({
|
|
30377
|
+
/** metadata key */
|
|
29615
30378
|
key: t.string,
|
|
30379
|
+
/**
|
|
30380
|
+
* metadata value
|
|
30381
|
+
*
|
|
30382
|
+
* - **null**: to remove the metadata key
|
|
30383
|
+
* - **string**: to set the metadata key
|
|
30384
|
+
*/
|
|
29616
30385
|
value: t.union([t.string, t.null])
|
|
29617
30386
|
})),
|
|
30387
|
+
/** User birthdate. Optional. Accepted formats: YYYY-MM-DD, YYYY-MM, or MM-YYYY. Format enforcement is in the main repo. */
|
|
29618
30388
|
birthDate: t.string,
|
|
29619
|
-
|
|
30389
|
+
/** Options to configure the upsert behavior */
|
|
30390
|
+
options: t.partial({
|
|
30391
|
+
/**
|
|
30392
|
+
* Whether to merge consent records, if the any one of the
|
|
30393
|
+
* identifiers in `identifiers` list is already associated to an existing record.
|
|
30394
|
+
*
|
|
30395
|
+
* If true, the consent record will be merged
|
|
30396
|
+
* combining the identifiers and consent details.
|
|
30397
|
+
*
|
|
30398
|
+
* If false, an error will be returned if a conflict is detected.
|
|
30399
|
+
*
|
|
30400
|
+
* Default: true
|
|
30401
|
+
*/
|
|
30402
|
+
mergeRecordsOnConflict: t.boolean })
|
|
29620
30403
|
})]);
|
|
29621
30404
|
/**
|
|
29622
30405
|
* The supported preference topic types
|
|
@@ -29636,7 +30419,9 @@ const PreferenceStoreAuthLevel = makeEnum({
|
|
|
29636
30419
|
});
|
|
29637
30420
|
/** The standard scopes which are used to access the Sombra APIs */
|
|
29638
30421
|
const SombraStandardScope = makeEnum({
|
|
30422
|
+
/** Access to Preference Management APIs */
|
|
29639
30423
|
PreferenceManagement: "preferenceManagement",
|
|
30424
|
+
/** DSR Automation APIs */
|
|
29640
30425
|
DSRAutomation: "dsrAutomation"
|
|
29641
30426
|
});
|
|
29642
30427
|
//#endregion
|
|
@@ -29645,8 +30430,11 @@ const SombraStandardScope = makeEnum({
|
|
|
29645
30430
|
* The status of a DPIA with a particular processing activity
|
|
29646
30431
|
*/
|
|
29647
30432
|
const DataProtectionImpactAssessmentStatus = makeEnum({
|
|
30433
|
+
/** There is a link associated with this processing activity's DPIA */
|
|
29648
30434
|
Link: "LINK",
|
|
30435
|
+
/** There is no DPIA required for this processing activity */
|
|
29649
30436
|
NotRequired: "NOT_REQUIRED",
|
|
30437
|
+
/** The DPIA for this processing activity is missing */
|
|
29650
30438
|
Missing: "MISSING"
|
|
29651
30439
|
});
|
|
29652
30440
|
//#endregion
|
|
@@ -29724,10 +30512,10 @@ let PromptFilePurpose = /* @__PURE__ */ function(PromptFilePurpose) {
|
|
|
29724
30512
|
return PromptFilePurpose;
|
|
29725
30513
|
}({});
|
|
29726
30514
|
const PROMPT_FILE_PURPOSE_TO_OPEN_AI = {
|
|
29727
|
-
[
|
|
29728
|
-
[
|
|
29729
|
-
[
|
|
29730
|
-
[
|
|
30515
|
+
["ASSISTANTS"]: "assistants",
|
|
30516
|
+
["ASSISTANTS_OUTPUT"]: "assistants_output",
|
|
30517
|
+
["FINE_TUNE"]: "fine-tune",
|
|
30518
|
+
["FINE_TUNE_RESULTS"]: "fine-tune-results"
|
|
29731
30519
|
};
|
|
29732
30520
|
//#endregion
|
|
29733
30521
|
//#region src/promptAVendor.ts
|
|
@@ -29735,53 +30523,88 @@ const PROMPT_FILE_PURPOSE_TO_OPEN_AI = {
|
|
|
29735
30523
|
* Prompt-a-Vendor email send type.
|
|
29736
30524
|
*/
|
|
29737
30525
|
const PromptAVendorEmailSendType = makeEnum({
|
|
30526
|
+
/** Send a single email encapsulating all profiles, i.e. at the RequestDataSilo level. */
|
|
29738
30527
|
PerDsr: "PER_DSR",
|
|
30528
|
+
/** Send an email for all DSRs, that the vendor has not been notified of yet. */
|
|
29739
30529
|
CrossDsr: "CROSS_DSR"
|
|
29740
30530
|
});
|
|
29741
30531
|
/**
|
|
29742
30532
|
* Prompt-a-Vendor Email Completion link type.
|
|
29743
30533
|
*/
|
|
29744
30534
|
const PromptAVendorEmailCompletionLinkType = makeEnum({
|
|
30535
|
+
/** Present a link that requires a user logged into Transcend. */
|
|
29745
30536
|
LoggedInUser: "LOGGED_IN_USER",
|
|
30537
|
+
/**
|
|
30538
|
+
* Present a link that allows an external, unauthenticated user
|
|
30539
|
+
* to access the Bulk Requests UI.
|
|
30540
|
+
*/
|
|
29746
30541
|
UnauthenticatedExternalUser: "UNAUTHENTICATED_EXTERNAL_USER",
|
|
30542
|
+
/**
|
|
30543
|
+
* Send no completion fulfillment link, and mark each datapoint
|
|
30544
|
+
* as resolved, once the email is sent.
|
|
30545
|
+
*/
|
|
29747
30546
|
NoLinkMarkDatapointAsResolved: "NO_LINK_MARK_DATAPOINT_AS_RESOLVED"
|
|
29748
30547
|
});
|
|
29749
30548
|
//#endregion
|
|
29750
30549
|
//#region src/purposeSubCategories/additional.ts
|
|
29751
|
-
const AdditionalPurposeSubCategory = makeEnum({
|
|
30550
|
+
const AdditionalPurposeSubCategory = makeEnum({
|
|
30551
|
+
/** Fallback sub purpose */
|
|
30552
|
+
Additional: "ADDITIONAL" });
|
|
29752
30553
|
//#endregion
|
|
29753
30554
|
//#region src/purposeSubCategories/advertising.ts
|
|
29754
|
-
const AdvertisingPurposeSubCategory = makeEnum({
|
|
30555
|
+
const AdvertisingPurposeSubCategory = makeEnum({
|
|
30556
|
+
/** Fallback sub purpose */
|
|
30557
|
+
Advertising: "ADVERTISING" });
|
|
29755
30558
|
//#endregion
|
|
29756
30559
|
//#region src/purposeSubCategories/analytics.ts
|
|
29757
|
-
const AnalyticsPurposeSubCategory = makeEnum({
|
|
30560
|
+
const AnalyticsPurposeSubCategory = makeEnum({
|
|
30561
|
+
/** Fallback sub purpose */
|
|
30562
|
+
Analytics: "ANALYTICS" });
|
|
29758
30563
|
//#endregion
|
|
29759
30564
|
//#region src/purposeSubCategories/essential.ts
|
|
29760
|
-
const EssentialPurposeSubCategory = makeEnum({
|
|
30565
|
+
const EssentialPurposeSubCategory = makeEnum({
|
|
30566
|
+
/** Fallback sub purpose */
|
|
30567
|
+
Essential: "ESSENTIAL" });
|
|
29761
30568
|
//#endregion
|
|
29762
30569
|
//#region src/purposeSubCategories/hr.ts
|
|
29763
|
-
const HRPurposeSubCategory = makeEnum({
|
|
30570
|
+
const HRPurposeSubCategory = makeEnum({
|
|
30571
|
+
/** Fallback sub purpose */
|
|
30572
|
+
HR: "HR" });
|
|
29764
30573
|
//#endregion
|
|
29765
30574
|
//#region src/purposeSubCategories/legal.ts
|
|
29766
|
-
const LegalPurposeSubCategory = makeEnum({
|
|
30575
|
+
const LegalPurposeSubCategory = makeEnum({
|
|
30576
|
+
/** Fallback sub purpose */
|
|
30577
|
+
Legal: "LEGAL" });
|
|
29767
30578
|
//#endregion
|
|
29768
30579
|
//#region src/purposeSubCategories/marketing.ts
|
|
29769
|
-
const MarketingPurposeSubCategory = makeEnum({
|
|
30580
|
+
const MarketingPurposeSubCategory = makeEnum({
|
|
30581
|
+
/** Fallback sub purpose */
|
|
30582
|
+
Marketing: "MARKETING" });
|
|
29770
30583
|
//#endregion
|
|
29771
30584
|
//#region src/purposeSubCategories/operationSecurity.ts
|
|
29772
|
-
const OperationSecurityPurposeSubCategory = makeEnum({
|
|
30585
|
+
const OperationSecurityPurposeSubCategory = makeEnum({
|
|
30586
|
+
/** Fallback sub purpose */
|
|
30587
|
+
OperationSecurity: "OPERATION_SECURITY" });
|
|
29773
30588
|
//#endregion
|
|
29774
30589
|
//#region src/purposeSubCategories/other.ts
|
|
29775
|
-
const OtherPurposeSubCategory = makeEnum({
|
|
30590
|
+
const OtherPurposeSubCategory = makeEnum({
|
|
30591
|
+
/** Fallback sub purpose */
|
|
30592
|
+
Other: "Other" });
|
|
29776
30593
|
//#endregion
|
|
29777
30594
|
//#region src/purposeSubCategories/personalization.ts
|
|
29778
|
-
const PersonalizationPurposeSubCategory = makeEnum({
|
|
30595
|
+
const PersonalizationPurposeSubCategory = makeEnum({
|
|
30596
|
+
/** Fallback sub purpose */
|
|
30597
|
+
Personalization: "PERSONALIZATION" });
|
|
29779
30598
|
//#endregion
|
|
29780
30599
|
//#region src/purposeSubCategories/sale.ts
|
|
29781
|
-
const SalePurposeSubCategory = makeEnum({
|
|
30600
|
+
const SalePurposeSubCategory = makeEnum({
|
|
30601
|
+
/** Fallback sub purpose */
|
|
30602
|
+
Sale: "SALE" });
|
|
29782
30603
|
//#endregion
|
|
29783
30604
|
//#region src/purposeSubCategories/transfer.ts
|
|
29784
|
-
const TransferPurposeSubCategory = makeEnum({
|
|
30605
|
+
const TransferPurposeSubCategory = makeEnum({
|
|
30606
|
+
/** Fallback sub purpose */
|
|
30607
|
+
Transfer: "TRANSFER" });
|
|
29785
30608
|
//#endregion
|
|
29786
30609
|
//#region src/purposeSubCategories/index.ts
|
|
29787
30610
|
const DefaultPurposeSubCategoryType = makeEnum({
|
|
@@ -29811,7 +30634,18 @@ const NORMALIZE_PHONE_NUMBER = /[-\s.]/g;
|
|
|
29811
30634
|
* This is useful for the purposes of uploading a backlog
|
|
29812
30635
|
*/
|
|
29813
30636
|
const PreflightRequestStatus = makeEnum({
|
|
30637
|
+
/**
|
|
30638
|
+
* The privacy request should be canceled because the
|
|
30639
|
+
* user is not allowed to make the request. The user will be
|
|
30640
|
+
* notified via email of the cancellation.
|
|
30641
|
+
* Note: if the request is in silent mode, no emails are ever sent
|
|
30642
|
+
*/
|
|
29814
30643
|
CANCELED: "CANCELED",
|
|
30644
|
+
/**
|
|
30645
|
+
* The privacy request is placed on hold and will need manual intervention.
|
|
30646
|
+
* This will not trigger a notification to the end user, but admin can be
|
|
30647
|
+
* notified that there is a request that requires their review.
|
|
30648
|
+
*/
|
|
29815
30649
|
ON_HOLD: "ON_HOLD"
|
|
29816
30650
|
});
|
|
29817
30651
|
/**
|
|
@@ -29819,31 +30653,52 @@ const PreflightRequestStatus = makeEnum({
|
|
|
29819
30653
|
* This is useful for the purposes of uploading a backlog
|
|
29820
30654
|
*/
|
|
29821
30655
|
const CompletedRequestStatus = makeEnum({
|
|
30656
|
+
/** The data subject failed to verify at least one of the identifier they submit through the form */
|
|
29822
30657
|
FailedVerification: "FAILED_VERIFICATION",
|
|
30658
|
+
/** The request has been approved and sent to the data subject with no secondary action */
|
|
29823
30659
|
Completed: "COMPLETED",
|
|
30660
|
+
/** The request was canceled and the data subject was notified */
|
|
29824
30661
|
Canceled: "CANCELED",
|
|
30662
|
+
/** The secondary request action completed compilation */
|
|
29825
30663
|
SecondaryCompleted: "SECONDARY_COMPLETED",
|
|
30664
|
+
/** The request was revoked because it was a duplicate (another open request covers it) */
|
|
29826
30665
|
Revoked: "REVOKED"
|
|
29827
30666
|
});
|
|
29828
30667
|
/**
|
|
29829
30668
|
* The statuses that a request can take on
|
|
29830
30669
|
*/
|
|
29831
30670
|
const RequestStatus = makeEnum({
|
|
30671
|
+
/** A data subject submits a DSR */
|
|
29832
30672
|
RequestMade: "REQUEST_MADE",
|
|
30673
|
+
/** The data subject failed to verify at least one of the identifier they submit through the form */
|
|
29833
30674
|
FailedVerification: "FAILED_VERIFICATION",
|
|
30675
|
+
/** The request identifiers have been verified and they are enriched to create other identifiers */
|
|
29834
30676
|
Enriching: "ENRICHING",
|
|
30677
|
+
/** The request is temporarily placed on hold */
|
|
29835
30678
|
OnHold: "ON_HOLD",
|
|
30679
|
+
/** The request is waiting to compile */
|
|
29836
30680
|
Waiting: "WAITING",
|
|
30681
|
+
/** The request begins compiling across the organization's Connected Services, specific to the actions requested */
|
|
29837
30682
|
Compiling: "COMPILING",
|
|
30683
|
+
/** The request is compiled and appending review before send */
|
|
29838
30684
|
Approving: "APPROVING",
|
|
30685
|
+
/** The primary action has been sent to the data subject and the request is delayed until the secondary action is executed */
|
|
29839
30686
|
Delayed: "DELAYED",
|
|
30687
|
+
/** The request has been approved and sent to the data subject with no secondary action */
|
|
29840
30688
|
Completed: "COMPLETED",
|
|
30689
|
+
/** The request is in a state where the data subject report zip can be downloaded. This is typically a completed ACCESS request */
|
|
29841
30690
|
Downloadable: "DOWNLOADABLE",
|
|
30691
|
+
/** The request is completed but not available for download, but its data categories are visible on the Privacy Center */
|
|
29842
30692
|
ViewCategories: "VIEW_CATEGORIES",
|
|
30693
|
+
/** The request was canceled and the data subject was notified */
|
|
29843
30694
|
Canceled: "CANCELED",
|
|
30695
|
+
/** The secondary request action begins compiling across the organization's Connected Services, i.e. erasure is actually called */
|
|
29844
30696
|
Secondary: "SECONDARY",
|
|
30697
|
+
/** The secondary request action completed compilation */
|
|
29845
30698
|
SecondaryCompleted: "SECONDARY_COMPLETED",
|
|
30699
|
+
/** The request is pending approval before final deletion request email is sent to the data subject */
|
|
29846
30700
|
SecondaryApproving: "SECONDARY_APPROVING",
|
|
30701
|
+
/** The request was revoked because it was a duplicate (another open request covers it) */
|
|
29847
30702
|
Revoked: "REVOKED"
|
|
29848
30703
|
});
|
|
29849
30704
|
/**
|
|
@@ -29866,12 +30721,30 @@ let RequestOrigin = /* @__PURE__ */ function(RequestOrigin) {
|
|
|
29866
30721
|
* The statuses that a queue is expected to implement
|
|
29867
30722
|
*/
|
|
29868
30723
|
const QueueStatus = makeEnum({
|
|
30724
|
+
/** The row is queued up to be processed by the service worker. */
|
|
29869
30725
|
Queued: "QUEUED",
|
|
30726
|
+
/**
|
|
30727
|
+
* The service worker has fired and is waiting on an asynchronous response.
|
|
30728
|
+
* If waiting for too long, the item should be retried
|
|
30729
|
+
*/
|
|
29870
30730
|
Waiting: "WAITING",
|
|
30731
|
+
/**
|
|
30732
|
+
* The processing was skipped because the record was no longer found.
|
|
30733
|
+
* The information may have been deleted already by another process.
|
|
30734
|
+
*
|
|
30735
|
+
* If a data silo is consistently skipping operations, there may be a deeper issue.
|
|
30736
|
+
*/
|
|
29871
30737
|
Skipped: "SKIPPED",
|
|
30738
|
+
/** An error occurred while processing the row. The error message is stored on the model. */
|
|
29872
30739
|
Error: "ERROR",
|
|
30740
|
+
/** The service worker successfully processed the row. */
|
|
29873
30741
|
Resolved: "RESOLVED",
|
|
30742
|
+
/** The item requires attention for some reason */
|
|
29874
30743
|
ActionRequired: "ACTION_REQUIRED",
|
|
30744
|
+
/**
|
|
30745
|
+
* The Item has been successfully ingested by our SQS task queue,
|
|
30746
|
+
* and is currently in line to being processed.
|
|
30747
|
+
*/
|
|
29875
30748
|
RemoteProcessing: "REMOTE_PROCESSING"
|
|
29876
30749
|
});
|
|
29877
30750
|
/**
|
|
@@ -29879,6 +30752,7 @@ const QueueStatus = makeEnum({
|
|
|
29879
30752
|
*/
|
|
29880
30753
|
const RequestDataSiloStatus = makeEnum({
|
|
29881
30754
|
...QueueStatus,
|
|
30755
|
+
/** The request not processed due to some exception */
|
|
29882
30756
|
SkippedDueToException: "SKIPPED_DUE_TO_EXCEPTION"
|
|
29883
30757
|
});
|
|
29884
30758
|
/**
|
|
@@ -29886,7 +30760,9 @@ const RequestDataSiloStatus = makeEnum({
|
|
|
29886
30760
|
*/
|
|
29887
30761
|
const RequestEnricherStatus = makeEnum({
|
|
29888
30762
|
...QueueStatus,
|
|
30763
|
+
/** Waiting on dependencies in the enrichment step to finish running */
|
|
29889
30764
|
WaitingOnDependencies: "WAITING_ON_DEPENDENCIES",
|
|
30765
|
+
/** Polling for result */
|
|
29890
30766
|
Polling: "POLLING"
|
|
29891
30767
|
});
|
|
29892
30768
|
/**
|
|
@@ -29894,8 +30770,11 @@ const RequestEnricherStatus = makeEnum({
|
|
|
29894
30770
|
* request submit.
|
|
29895
30771
|
*/
|
|
29896
30772
|
const RegionDetectionMethod = makeEnum({
|
|
30773
|
+
/** Region detection is disabled */
|
|
29897
30774
|
Disabled: "DISABLED",
|
|
30775
|
+
/** Auto detect the region and collect in form silently */
|
|
29898
30776
|
Auto: "AUTO",
|
|
30777
|
+
/** Collect information about the user's region by presenting the user a form */
|
|
29899
30778
|
Form: "FORM"
|
|
29900
30779
|
});
|
|
29901
30780
|
//#endregion
|
|
@@ -30045,834 +30924,834 @@ let TranscendProduct = /* @__PURE__ */ function(TranscendProduct) {
|
|
|
30045
30924
|
* The action scope definitions
|
|
30046
30925
|
*/
|
|
30047
30926
|
const SCOPES_WITHOUT_VIEW_ONLY = {
|
|
30048
|
-
[
|
|
30049
|
-
dependencies: Object.values(ScopeName).filter((scope) => scope !==
|
|
30927
|
+
["fullAdmin"]: {
|
|
30928
|
+
dependencies: Object.values(ScopeName).filter((scope) => scope !== "fullAdmin"),
|
|
30050
30929
|
description: "Full administrative access. All scopes are granted.",
|
|
30051
30930
|
title: "Full Admin",
|
|
30052
|
-
type:
|
|
30931
|
+
type: "MODIFY",
|
|
30053
30932
|
products: getValues(TranscendProduct)
|
|
30054
30933
|
},
|
|
30055
|
-
[
|
|
30934
|
+
["manageSombraRootKeys"]: {
|
|
30056
30935
|
dependencies: [],
|
|
30057
30936
|
description: "Ability to perform a key rotation on the encryption keys used within your account.",
|
|
30058
30937
|
title: "Rotate Hosted Sombra keys",
|
|
30059
|
-
type:
|
|
30060
|
-
products: [
|
|
30938
|
+
type: "MODIFY",
|
|
30939
|
+
products: ["SOMBRA"]
|
|
30061
30940
|
},
|
|
30062
|
-
[
|
|
30063
|
-
dependencies: [
|
|
30941
|
+
["manageGlobalAttributes"]: {
|
|
30942
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30064
30943
|
description: "Under the infrastructure tab, manage your custom attributes and select which views those attributes should display in.",
|
|
30065
30944
|
title: "Manage Global Attributes",
|
|
30066
|
-
type:
|
|
30945
|
+
type: "MODIFY",
|
|
30067
30946
|
products: [
|
|
30068
|
-
|
|
30069
|
-
|
|
30070
|
-
|
|
30071
|
-
|
|
30072
|
-
|
|
30073
|
-
|
|
30074
|
-
|
|
30075
|
-
|
|
30076
|
-
|
|
30077
|
-
|
|
30947
|
+
"DSR_AUTOMATION",
|
|
30948
|
+
"DATA_INVENTORY",
|
|
30949
|
+
"CONSENT_MANAGEMENT",
|
|
30950
|
+
"STRUCTURED_DISCOVERY",
|
|
30951
|
+
"ADMINISTRATION",
|
|
30952
|
+
"ASSESSMENTS",
|
|
30953
|
+
"PATHFINDER",
|
|
30954
|
+
"PROMPT_MANAGER",
|
|
30955
|
+
"WEB_AUDITOR",
|
|
30956
|
+
"CONTRACT_SCANNING"
|
|
30078
30957
|
]
|
|
30079
30958
|
},
|
|
30080
|
-
[
|
|
30081
|
-
dependencies: [
|
|
30959
|
+
["manageAccessControl"]: {
|
|
30960
|
+
dependencies: ["viewEmployees", "viewScopes"],
|
|
30082
30961
|
description: "Manage what employees in your organization can access within Transcend.",
|
|
30083
30962
|
title: "Manage Access Controls",
|
|
30084
|
-
type:
|
|
30085
|
-
products: [
|
|
30963
|
+
type: "MODIFY",
|
|
30964
|
+
products: ["ADMINISTRATION"]
|
|
30086
30965
|
},
|
|
30087
|
-
[
|
|
30966
|
+
["manageBilling"]: {
|
|
30088
30967
|
dependencies: [],
|
|
30089
30968
|
description: "Manage billing details for your organization.",
|
|
30090
30969
|
title: "Manage Billing",
|
|
30091
|
-
type:
|
|
30092
|
-
products: [
|
|
30970
|
+
type: "MODIFY",
|
|
30971
|
+
products: ["ADMINISTRATION"]
|
|
30093
30972
|
},
|
|
30094
|
-
[
|
|
30095
|
-
dependencies: [
|
|
30973
|
+
["manageSSO"]: {
|
|
30974
|
+
dependencies: ["viewSSO"],
|
|
30096
30975
|
description: "Manage SSO configuration for members of your organization.",
|
|
30097
30976
|
title: "Manage SSO",
|
|
30098
|
-
type:
|
|
30099
|
-
products: [
|
|
30977
|
+
type: "MODIFY",
|
|
30978
|
+
products: ["ADMINISTRATION"]
|
|
30100
30979
|
},
|
|
30101
|
-
[
|
|
30102
|
-
dependencies: [
|
|
30980
|
+
["manageApiKeys"]: {
|
|
30981
|
+
dependencies: ["viewApiKeys"],
|
|
30103
30982
|
description: "Create, update and delete API keys for programmatic access to your Transcend organization.",
|
|
30104
30983
|
title: "Manage API Keys",
|
|
30105
|
-
type:
|
|
30106
|
-
products: [
|
|
30984
|
+
type: "MODIFY",
|
|
30985
|
+
products: ["ADMINISTRATION"]
|
|
30107
30986
|
},
|
|
30108
|
-
[
|
|
30987
|
+
["manageOrganizationInfo"]: {
|
|
30109
30988
|
dependencies: [],
|
|
30110
30989
|
description: "Edit the top-level organization settings details.",
|
|
30111
30990
|
title: "Manage Organization Information",
|
|
30112
|
-
type:
|
|
30113
|
-
products: [
|
|
30991
|
+
type: "MODIFY",
|
|
30992
|
+
products: ["ADMINISTRATION"]
|
|
30114
30993
|
},
|
|
30115
|
-
[
|
|
30116
|
-
dependencies: [
|
|
30994
|
+
["manageEmailDomains"]: {
|
|
30995
|
+
dependencies: ["viewEmailDomains"],
|
|
30117
30996
|
description: "Manage the domains from which Transcend can send emails on behalf of your organization.",
|
|
30118
30997
|
title: "Manage Email Domains",
|
|
30119
|
-
type:
|
|
30998
|
+
type: "MODIFY",
|
|
30120
30999
|
products: [
|
|
30121
|
-
|
|
30122
|
-
|
|
30123
|
-
|
|
30124
|
-
|
|
31000
|
+
"ADMINISTRATION",
|
|
31001
|
+
"DSR_AUTOMATION",
|
|
31002
|
+
"PRIVACY_CENTER",
|
|
31003
|
+
"ASSESSMENTS"
|
|
30125
31004
|
]
|
|
30126
31005
|
},
|
|
30127
|
-
[
|
|
30128
|
-
dependencies: [
|
|
31006
|
+
["manageDataSubCategories"]: {
|
|
31007
|
+
dependencies: ["viewDataSubCategories"],
|
|
30129
31008
|
description: "Manage data sub categories mentioned in the data inventory",
|
|
30130
31009
|
title: "Manage Data Sub Categories",
|
|
30131
|
-
type:
|
|
30132
|
-
products: [
|
|
31010
|
+
type: "MODIFY",
|
|
31011
|
+
products: ["DATA_INVENTORY"]
|
|
30133
31012
|
},
|
|
30134
|
-
[
|
|
31013
|
+
["viewCustomerDataPrivacyRequests"]: {
|
|
30135
31014
|
dependencies: [],
|
|
30136
31015
|
description: "Give permissions for an employee to view the data in an access request.",
|
|
30137
31016
|
title: "View Customer Data in Privacy Requests",
|
|
30138
|
-
type:
|
|
30139
|
-
products: [
|
|
31017
|
+
type: "VIEW",
|
|
31018
|
+
products: ["ADMINISTRATION", "DSR_AUTOMATION"]
|
|
30140
31019
|
},
|
|
30141
|
-
[
|
|
31020
|
+
["viewCustomerDataDataMapping"]: {
|
|
30142
31021
|
dependencies: [],
|
|
30143
31022
|
description: "Give permissions for an employee to view the sampled data in the data mapping product.",
|
|
30144
31023
|
title: "View Customer Data in Data Mapping",
|
|
30145
|
-
type:
|
|
31024
|
+
type: "VIEW",
|
|
30146
31025
|
products: [
|
|
30147
|
-
|
|
30148
|
-
|
|
30149
|
-
|
|
31026
|
+
"ADMINISTRATION",
|
|
31027
|
+
"STRUCTURED_DISCOVERY",
|
|
31028
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30150
31029
|
]
|
|
30151
31030
|
},
|
|
30152
|
-
[
|
|
31031
|
+
["viewApiKeys"]: {
|
|
30153
31032
|
dependencies: [],
|
|
30154
31033
|
description: "View the API keys on your account and see what scopes are assigned to them.",
|
|
30155
31034
|
title: "View API Keys",
|
|
30156
|
-
type:
|
|
30157
|
-
products: [
|
|
31035
|
+
type: "VIEW",
|
|
31036
|
+
products: ["ADMINISTRATION"]
|
|
30158
31037
|
},
|
|
30159
|
-
[
|
|
31038
|
+
["viewAuditEvents"]: {
|
|
30160
31039
|
dependencies: [],
|
|
30161
31040
|
description: "View any audit events made throughout the platform. This includes any of the \"Audit Trail\" tabs across the Admin Dashboard.",
|
|
30162
31041
|
title: "View Audit Events",
|
|
30163
|
-
type:
|
|
30164
|
-
products: [
|
|
31042
|
+
type: "VIEW",
|
|
31043
|
+
products: ["ADMINISTRATION"]
|
|
30165
31044
|
},
|
|
30166
|
-
[
|
|
31045
|
+
["viewSSO"]: {
|
|
30167
31046
|
dependencies: [],
|
|
30168
31047
|
description: "View the SSO configuration for your organization.",
|
|
30169
31048
|
title: "View SSO",
|
|
30170
|
-
type:
|
|
30171
|
-
products: [
|
|
31049
|
+
type: "VIEW",
|
|
31050
|
+
products: ["ADMINISTRATION"]
|
|
30172
31051
|
},
|
|
30173
|
-
[
|
|
30174
|
-
dependencies: [
|
|
31052
|
+
["viewScopes"]: {
|
|
31053
|
+
dependencies: ["viewEmployees"],
|
|
30175
31054
|
description: "View the potential access control scopes that can be assigned to members in the organization.",
|
|
30176
31055
|
title: "View Scopes",
|
|
30177
|
-
type:
|
|
30178
|
-
products: [
|
|
31056
|
+
type: "VIEW",
|
|
31057
|
+
products: ["ADMINISTRATION"]
|
|
30179
31058
|
},
|
|
30180
|
-
[
|
|
31059
|
+
["viewAllActionItems"]: {
|
|
30181
31060
|
dependencies: [],
|
|
30182
31061
|
description: "View all action items in the organization, regardless of assignee or scopes for specific resources. This is necessary when querying API keys via the API.",
|
|
30183
31062
|
title: "View All Action Items",
|
|
30184
|
-
type:
|
|
30185
|
-
products: [
|
|
31063
|
+
type: "VIEW",
|
|
31064
|
+
products: ["ADMINISTRATION"]
|
|
30186
31065
|
},
|
|
30187
|
-
[
|
|
30188
|
-
dependencies: [
|
|
31066
|
+
["manageAllActionItems"]: {
|
|
31067
|
+
dependencies: ["viewAllActionItems", "viewGlobalAttributes"],
|
|
30189
31068
|
description: "Manage all action items in the organization, regardless of assignee or scopes for specific resources. This is necessary when querying API keys via the API.",
|
|
30190
31069
|
title: "Manage All Action Items",
|
|
30191
|
-
type:
|
|
30192
|
-
products: [
|
|
31070
|
+
type: "MODIFY",
|
|
31071
|
+
products: ["ADMINISTRATION"]
|
|
30193
31072
|
},
|
|
30194
|
-
[
|
|
31073
|
+
["viewEmployees"]: {
|
|
30195
31074
|
dependencies: [],
|
|
30196
31075
|
description: "View the list of employees within your organization.",
|
|
30197
31076
|
title: "View Employees",
|
|
30198
|
-
type:
|
|
30199
|
-
products: [
|
|
31077
|
+
type: "VIEW",
|
|
31078
|
+
products: ["ADMINISTRATION"]
|
|
30200
31079
|
},
|
|
30201
|
-
[
|
|
31080
|
+
["viewEmailDomains"]: {
|
|
30202
31081
|
dependencies: [],
|
|
30203
31082
|
description: "View the domains from which Transcend can send emails on behalf of your organization.",
|
|
30204
31083
|
title: "View Email Domains",
|
|
30205
|
-
type:
|
|
31084
|
+
type: "VIEW",
|
|
30206
31085
|
products: [
|
|
30207
|
-
|
|
30208
|
-
|
|
30209
|
-
|
|
30210
|
-
|
|
31086
|
+
"ADMINISTRATION",
|
|
31087
|
+
"DSR_AUTOMATION",
|
|
31088
|
+
"PRIVACY_CENTER",
|
|
31089
|
+
"ASSESSMENTS"
|
|
30211
31090
|
]
|
|
30212
31091
|
},
|
|
30213
|
-
[
|
|
31092
|
+
["viewGlobalAttributes"]: {
|
|
30214
31093
|
dependencies: [],
|
|
30215
31094
|
description: "View the attribute definition key/value pairs.",
|
|
30216
31095
|
title: "View Global Attributes",
|
|
30217
|
-
type:
|
|
31096
|
+
type: "VIEW",
|
|
30218
31097
|
products: [
|
|
30219
|
-
|
|
30220
|
-
|
|
30221
|
-
|
|
30222
|
-
|
|
30223
|
-
|
|
30224
|
-
|
|
30225
|
-
|
|
30226
|
-
|
|
30227
|
-
|
|
30228
|
-
|
|
31098
|
+
"DSR_AUTOMATION",
|
|
31099
|
+
"DATA_INVENTORY",
|
|
31100
|
+
"CONSENT_MANAGEMENT",
|
|
31101
|
+
"STRUCTURED_DISCOVERY",
|
|
31102
|
+
"ADMINISTRATION",
|
|
31103
|
+
"ASSESSMENTS",
|
|
31104
|
+
"PATHFINDER",
|
|
31105
|
+
"PROMPT_MANAGER",
|
|
31106
|
+
"WEB_AUDITOR",
|
|
31107
|
+
"CONTRACT_SCANNING"
|
|
30229
31108
|
]
|
|
30230
31109
|
},
|
|
30231
|
-
[
|
|
31110
|
+
["viewLegalHold"]: {
|
|
30232
31111
|
dependencies: [],
|
|
30233
31112
|
description: "View the individuals that have been placed on legal holds.",
|
|
30234
31113
|
title: "View Legal Hold",
|
|
30235
|
-
type:
|
|
30236
|
-
products: [
|
|
31114
|
+
type: "VIEW",
|
|
31115
|
+
products: ["DSR_AUTOMATION"]
|
|
30237
31116
|
},
|
|
30238
|
-
[
|
|
30239
|
-
dependencies: [
|
|
31117
|
+
["manageLegalHold"]: {
|
|
31118
|
+
dependencies: ["viewLegalHold"],
|
|
30240
31119
|
description: "Manage and edit the individuals that have been placed on legal holds.",
|
|
30241
31120
|
title: "Manage Legal Holds",
|
|
30242
|
-
type:
|
|
30243
|
-
products: [
|
|
31121
|
+
type: "MODIFY",
|
|
31122
|
+
products: ["DSR_AUTOMATION"]
|
|
30244
31123
|
},
|
|
30245
|
-
[
|
|
31124
|
+
["manageRequestSecurity"]: {
|
|
30246
31125
|
dependencies: [],
|
|
30247
31126
|
description: "ReSign expired request encryption contexts, and data silo contexts.",
|
|
30248
31127
|
title: "Manage Request Security",
|
|
30249
|
-
type:
|
|
30250
|
-
products: [
|
|
31128
|
+
type: "MODIFY",
|
|
31129
|
+
products: ["ADMINISTRATION", "DSR_AUTOMATION"]
|
|
30251
31130
|
},
|
|
30252
|
-
[
|
|
30253
|
-
dependencies: [
|
|
31131
|
+
["manageRequestCompilation"]: {
|
|
31132
|
+
dependencies: ["viewRequests", "viewRequestCompilation"],
|
|
30254
31133
|
description: "Make changes to the compilation process of a request. This involves changing the status of data silos in your Data Map, as well as editing profiles and files.",
|
|
30255
31134
|
title: "Manage Request Compilation",
|
|
30256
|
-
type:
|
|
30257
|
-
products: [
|
|
31135
|
+
type: "MODIFY",
|
|
31136
|
+
products: ["DSR_AUTOMATION"]
|
|
30258
31137
|
},
|
|
30259
|
-
[
|
|
30260
|
-
dependencies: [
|
|
31138
|
+
["managedAssignedRequests"]: {
|
|
31139
|
+
dependencies: ["viewAssignedRequests"],
|
|
30261
31140
|
description: "Make changes to the compilation process of a request for requests assigned to your or your team. This involves changing the status of data silos in your Data Map, as well as editing profiles and files.",
|
|
30262
31141
|
title: "Manage Assigned Privacy Requests",
|
|
30263
|
-
type:
|
|
30264
|
-
products: [
|
|
31142
|
+
type: "MODIFY",
|
|
31143
|
+
products: ["DSR_AUTOMATION"]
|
|
30265
31144
|
},
|
|
30266
|
-
[
|
|
31145
|
+
["manageAssignedBulkRespond"]: {
|
|
30267
31146
|
dependencies: [],
|
|
30268
31147
|
description: "Bulk respond to privacy requests assigned to you or your team.",
|
|
30269
31148
|
title: "Manage Assigned Bulk Respond",
|
|
30270
|
-
type:
|
|
30271
|
-
products: [
|
|
31149
|
+
type: "MODIFY",
|
|
31150
|
+
products: ["DSR_AUTOMATION"]
|
|
30272
31151
|
},
|
|
30273
|
-
[
|
|
30274
|
-
dependencies: [
|
|
31152
|
+
["makeDataSubjectRequest"]: {
|
|
31153
|
+
dependencies: ["viewDataSubjectRequestSettings", "viewRequestIdentitySettings"],
|
|
30275
31154
|
description: "Submit a new privacy requests.",
|
|
30276
31155
|
title: "Submit New Data Subject Request",
|
|
30277
|
-
type:
|
|
30278
|
-
products: [
|
|
31156
|
+
type: "MODIFY",
|
|
31157
|
+
products: ["DSR_AUTOMATION"]
|
|
30279
31158
|
},
|
|
30280
|
-
[
|
|
30281
|
-
dependencies: [
|
|
31159
|
+
["manageDataSubjectRequestSettings"]: {
|
|
31160
|
+
dependencies: ["viewDataSubjectRequestSettings"],
|
|
30282
31161
|
description: "Make changes to the request actions that your organization allows, as well as what data subjects you will serve.",
|
|
30283
31162
|
title: "Manage Data Subject Request Settings",
|
|
30284
|
-
type:
|
|
30285
|
-
products: [
|
|
31163
|
+
type: "MODIFY",
|
|
31164
|
+
products: ["DSR_AUTOMATION"]
|
|
30286
31165
|
},
|
|
30287
|
-
[
|
|
30288
|
-
dependencies: [
|
|
31166
|
+
["manageEmailTemplates"]: {
|
|
31167
|
+
dependencies: ["viewEmailTemplates"],
|
|
30289
31168
|
description: "Manage the email communication templates that your organization uses to communicate with your data subjects.",
|
|
30290
31169
|
title: "Manage Email Templates",
|
|
30291
|
-
type:
|
|
31170
|
+
type: "MODIFY",
|
|
30292
31171
|
products: [
|
|
30293
|
-
|
|
30294
|
-
|
|
30295
|
-
|
|
31172
|
+
"DSR_AUTOMATION",
|
|
31173
|
+
"PRIVACY_CENTER",
|
|
31174
|
+
"ASSESSMENTS"
|
|
30296
31175
|
]
|
|
30297
31176
|
},
|
|
30298
|
-
[
|
|
30299
|
-
dependencies: [
|
|
31177
|
+
["manageRequestIdentities"]: {
|
|
31178
|
+
dependencies: ["viewRequestIdentitySettings"],
|
|
30300
31179
|
description: "Manage how your organization will verify the identities of new privacy requests, and how that identity will be enriched for all of your data silos to lookup that person.",
|
|
30301
31180
|
title: "Manage Request Identity Verification",
|
|
30302
|
-
type:
|
|
30303
|
-
products: [
|
|
31181
|
+
type: "MODIFY",
|
|
31182
|
+
products: ["DSR_AUTOMATION"]
|
|
30304
31183
|
},
|
|
30305
|
-
[
|
|
30306
|
-
dependencies: [
|
|
31184
|
+
["deployPrivacyCenter"]: {
|
|
31185
|
+
dependencies: ["managePrivacyCenter"],
|
|
30307
31186
|
description: "Launch the Privacy Center on your own domain, and publish new changes.",
|
|
30308
31187
|
title: "Publish Privacy Center",
|
|
30309
|
-
type:
|
|
30310
|
-
products: [
|
|
31188
|
+
type: "MODIFY",
|
|
31189
|
+
products: ["PRIVACY_CENTER"]
|
|
30311
31190
|
},
|
|
30312
|
-
[
|
|
30313
|
-
dependencies: [
|
|
31191
|
+
["manageDataMap"]: {
|
|
31192
|
+
dependencies: ["viewDataMap"],
|
|
30314
31193
|
description: "Edit the configurations on your data silos and determine what information should be included in a request.",
|
|
30315
31194
|
title: "Manage Data Map",
|
|
30316
|
-
type:
|
|
31195
|
+
type: "MODIFY",
|
|
30317
31196
|
products: [
|
|
30318
|
-
|
|
30319
|
-
|
|
30320
|
-
|
|
30321
|
-
|
|
30322
|
-
|
|
31197
|
+
"DSR_AUTOMATION",
|
|
31198
|
+
"DATA_INVENTORY",
|
|
31199
|
+
"STRUCTURED_DISCOVERY",
|
|
31200
|
+
"SILO_DISCOVERY",
|
|
31201
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30323
31202
|
]
|
|
30324
31203
|
},
|
|
30325
|
-
[
|
|
30326
|
-
dependencies: [
|
|
31204
|
+
["managePrivacyCenter"]: {
|
|
31205
|
+
dependencies: ["viewPrivacyCenter", "managePolicies"],
|
|
30327
31206
|
description: "Make changes to the privacy center configuration and policies.",
|
|
30328
31207
|
title: "Manage Privacy Center Layout",
|
|
30329
|
-
type:
|
|
30330
|
-
products: [
|
|
31208
|
+
type: "MODIFY",
|
|
31209
|
+
products: ["PRIVACY_CENTER"]
|
|
30331
31210
|
},
|
|
30332
|
-
[
|
|
30333
|
-
dependencies: [
|
|
31211
|
+
["managePolicies"]: {
|
|
31212
|
+
dependencies: ["viewPolicies"],
|
|
30334
31213
|
description: "Make changes to the policies defined underneath the privacy center.",
|
|
30335
31214
|
title: "Manage Privacy Center Policies",
|
|
30336
|
-
type:
|
|
30337
|
-
products: [
|
|
31215
|
+
type: "MODIFY",
|
|
31216
|
+
products: ["PRIVACY_CENTER"]
|
|
30338
31217
|
},
|
|
30339
|
-
[
|
|
31218
|
+
["viewPolicies"]: {
|
|
30340
31219
|
dependencies: [],
|
|
30341
31220
|
description: "View the policies defined underneath the privacy center.",
|
|
30342
31221
|
title: "View Privacy Center Policies",
|
|
30343
|
-
type:
|
|
30344
|
-
products: [
|
|
31222
|
+
type: "VIEW",
|
|
31223
|
+
products: ["PRIVACY_CENTER"]
|
|
30345
31224
|
},
|
|
30346
|
-
[
|
|
31225
|
+
["viewPolicyEngineBundles"]: {
|
|
30347
31226
|
dependencies: [],
|
|
30348
31227
|
description: "View Policy Engine policy bundles and their versions.",
|
|
30349
31228
|
title: "View Policy",
|
|
30350
|
-
type:
|
|
30351
|
-
products: [
|
|
31229
|
+
type: "VIEW",
|
|
31230
|
+
products: ["POLICY_ENGINE"]
|
|
30352
31231
|
},
|
|
30353
|
-
[
|
|
30354
|
-
dependencies: [
|
|
31232
|
+
["managePolicyEngineBundles"]: {
|
|
31233
|
+
dependencies: ["viewPolicyEngineBundles"],
|
|
30355
31234
|
description: "Create and upload Policy Engine policy bundles and versions. Uploaded versions are inert until activated.",
|
|
30356
31235
|
title: "Manage Policy",
|
|
30357
|
-
type:
|
|
30358
|
-
products: [
|
|
31236
|
+
type: "MODIFY",
|
|
31237
|
+
products: ["POLICY_ENGINE"]
|
|
30359
31238
|
},
|
|
30360
|
-
[
|
|
30361
|
-
dependencies: [
|
|
31239
|
+
["activatePolicyEngineBundles"]: {
|
|
31240
|
+
dependencies: ["viewPolicyEngineBundles"],
|
|
30362
31241
|
description: "Activate a Policy Engine bundle version, making it the live policy. Kept separate from Manage Policy so publish-only access can be granted without activation rights.",
|
|
30363
31242
|
title: "Activate Policy",
|
|
30364
|
-
type:
|
|
30365
|
-
products: [
|
|
31243
|
+
type: "MODIFY",
|
|
31244
|
+
products: ["POLICY_ENGINE"]
|
|
30366
31245
|
},
|
|
30367
|
-
[
|
|
30368
|
-
dependencies: [
|
|
31246
|
+
["manageIntlMessages"]: {
|
|
31247
|
+
dependencies: ["viewIntlMessages"],
|
|
30369
31248
|
description: "Manage the internationalization messages used in the privacy center.",
|
|
30370
31249
|
title: "Manage Internationalization Messages",
|
|
30371
|
-
type:
|
|
30372
|
-
products: [
|
|
31250
|
+
type: "MODIFY",
|
|
31251
|
+
products: ["PRIVACY_CENTER", "CONSENT_MANAGEMENT"]
|
|
30373
31252
|
},
|
|
30374
|
-
[
|
|
31253
|
+
["viewIntlMessages"]: {
|
|
30375
31254
|
dependencies: [],
|
|
30376
31255
|
description: "View the internationalization messages used in the privacy center.",
|
|
30377
31256
|
title: "View Internationalization Messages",
|
|
30378
|
-
type:
|
|
30379
|
-
products: [
|
|
31257
|
+
type: "VIEW",
|
|
31258
|
+
products: ["PRIVACY_CENTER", "CONSENT_MANAGEMENT"]
|
|
30380
31259
|
},
|
|
30381
|
-
[
|
|
31260
|
+
["requestApproval"]: {
|
|
30382
31261
|
dependencies: [
|
|
30383
|
-
|
|
30384
|
-
|
|
30385
|
-
|
|
31262
|
+
"viewRequests",
|
|
31263
|
+
"viewRequestCompilation",
|
|
31264
|
+
"manageRequestCompilation"
|
|
30386
31265
|
],
|
|
30387
31266
|
description: "The ability to approve and manage the state of privacy requests, and communicate with the data subject.",
|
|
30388
31267
|
title: "Request Approval and Communication",
|
|
30389
|
-
type:
|
|
30390
|
-
products: [
|
|
31268
|
+
type: "MODIFY",
|
|
31269
|
+
products: ["DSR_AUTOMATION"]
|
|
30391
31270
|
},
|
|
30392
|
-
[
|
|
31271
|
+
["viewDataSubjectRequestSettings"]: {
|
|
30393
31272
|
dependencies: [],
|
|
30394
31273
|
description: "View the privacy request actions settings and data subject categories that your organization supports.",
|
|
30395
31274
|
title: "View Data Subject Request Settings",
|
|
30396
|
-
type:
|
|
30397
|
-
products: [
|
|
31275
|
+
type: "VIEW",
|
|
31276
|
+
products: ["DSR_AUTOMATION"]
|
|
30398
31277
|
},
|
|
30399
|
-
[
|
|
30400
|
-
dependencies: [
|
|
31278
|
+
["viewRequestCompilation"]: {
|
|
31279
|
+
dependencies: ["viewRequests"],
|
|
30401
31280
|
description: "View the status of requests as they compile across your Data Map.",
|
|
30402
31281
|
title: "View the Request Compilation",
|
|
30403
|
-
type:
|
|
30404
|
-
products: [
|
|
31282
|
+
type: "VIEW",
|
|
31283
|
+
products: ["DSR_AUTOMATION"]
|
|
30405
31284
|
},
|
|
30406
|
-
[
|
|
31285
|
+
["viewRequestIdentitySettings"]: {
|
|
30407
31286
|
dependencies: [],
|
|
30408
31287
|
description: "View the settings for data subject request identity verification.",
|
|
30409
31288
|
title: "View Identity Verification Settings",
|
|
30410
|
-
type:
|
|
30411
|
-
products: [
|
|
31289
|
+
type: "VIEW",
|
|
31290
|
+
products: ["DSR_AUTOMATION"]
|
|
30412
31291
|
},
|
|
30413
|
-
[
|
|
31292
|
+
["viewRequests"]: {
|
|
30414
31293
|
dependencies: [
|
|
30415
|
-
|
|
30416
|
-
|
|
30417
|
-
|
|
31294
|
+
"viewGlobalAttributes",
|
|
31295
|
+
"viewDataSubjectRequestSettings",
|
|
31296
|
+
"viewEmailTemplates"
|
|
30418
31297
|
],
|
|
30419
31298
|
description: "View the stream of incoming requests, and any details submit through the form or later enriched.",
|
|
30420
31299
|
title: "View Incoming Requests",
|
|
30421
|
-
type:
|
|
30422
|
-
products: [
|
|
31300
|
+
type: "VIEW",
|
|
31301
|
+
products: ["DSR_AUTOMATION"]
|
|
30423
31302
|
},
|
|
30424
|
-
[
|
|
31303
|
+
["viewAssignedRequests"]: {
|
|
30425
31304
|
dependencies: [
|
|
30426
|
-
|
|
30427
|
-
|
|
30428
|
-
|
|
31305
|
+
"viewGlobalAttributes",
|
|
31306
|
+
"viewDataSubjectRequestSettings",
|
|
31307
|
+
"viewEmailTemplates"
|
|
30429
31308
|
],
|
|
30430
31309
|
description: "View the stream of incoming requests assigned to you and your team. You will be able to see any request details submitted through the form or later enriched.",
|
|
30431
31310
|
title: "View Assigned Privacy Requests",
|
|
30432
|
-
type:
|
|
30433
|
-
products: [
|
|
31311
|
+
type: "VIEW",
|
|
31312
|
+
products: ["DSR_AUTOMATION"]
|
|
30434
31313
|
},
|
|
30435
|
-
[
|
|
31314
|
+
["viewPrivacyCenter"]: {
|
|
30436
31315
|
dependencies: [],
|
|
30437
31316
|
description: "View the full configuration of the privacy center.",
|
|
30438
31317
|
title: "View Privacy Center Layout",
|
|
30439
|
-
type:
|
|
30440
|
-
products: [
|
|
31318
|
+
type: "VIEW",
|
|
31319
|
+
products: ["PRIVACY_CENTER"]
|
|
30441
31320
|
},
|
|
30442
|
-
[
|
|
31321
|
+
["viewEmailTemplates"]: {
|
|
30443
31322
|
dependencies: [],
|
|
30444
31323
|
description: "View the default email templates templates used to communicate with your data subjects.",
|
|
30445
31324
|
title: "View Email Templates",
|
|
30446
|
-
type:
|
|
31325
|
+
type: "VIEW",
|
|
30447
31326
|
products: [
|
|
30448
|
-
|
|
30449
|
-
|
|
30450
|
-
|
|
31327
|
+
"DSR_AUTOMATION",
|
|
31328
|
+
"PRIVACY_CENTER",
|
|
31329
|
+
"ASSESSMENTS"
|
|
30451
31330
|
]
|
|
30452
31331
|
},
|
|
30453
|
-
[
|
|
31332
|
+
["connectDataSilos"]: {
|
|
30454
31333
|
dependencies: [
|
|
30455
|
-
|
|
30456
|
-
|
|
30457
|
-
|
|
31334
|
+
"viewDataMap",
|
|
31335
|
+
"manageDataMap",
|
|
31336
|
+
"viewEmailTemplates"
|
|
30458
31337
|
],
|
|
30459
31338
|
description: "Connect new data silos to your Data Map.",
|
|
30460
31339
|
title: "Connect Data Silos",
|
|
30461
31340
|
products: [
|
|
30462
|
-
|
|
30463
|
-
|
|
30464
|
-
|
|
30465
|
-
|
|
31341
|
+
"DSR_AUTOMATION",
|
|
31342
|
+
"SILO_DISCOVERY",
|
|
31343
|
+
"STRUCTURED_DISCOVERY",
|
|
31344
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30466
31345
|
],
|
|
30467
|
-
type:
|
|
31346
|
+
type: "MODIFY"
|
|
30468
31347
|
},
|
|
30469
|
-
[
|
|
30470
|
-
dependencies: [
|
|
31348
|
+
["manageDataInventory"]: {
|
|
31349
|
+
dependencies: ["viewDataInventory"],
|
|
30471
31350
|
description: "Ability to manage and edit everything in the data mapping product. Includes the data inventory, ROPE, and content classification views.",
|
|
30472
31351
|
title: "Manage Data Inventory",
|
|
30473
|
-
type:
|
|
31352
|
+
type: "MODIFY",
|
|
30474
31353
|
products: [
|
|
30475
|
-
|
|
30476
|
-
|
|
30477
|
-
|
|
30478
|
-
|
|
31354
|
+
"DATA_INVENTORY",
|
|
31355
|
+
"STRUCTURED_DISCOVERY",
|
|
31356
|
+
"SILO_DISCOVERY",
|
|
31357
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30479
31358
|
]
|
|
30480
31359
|
},
|
|
30481
|
-
[
|
|
30482
|
-
dependencies: [
|
|
31360
|
+
["managedAssignedDataInventory"]: {
|
|
31361
|
+
dependencies: ["viewAssignedDataInventory"],
|
|
30483
31362
|
description: "Manage the data inventory rows in your organization's Data Map that are assigned to you or your team.",
|
|
30484
31363
|
title: "Manage Assigned Data Inventory",
|
|
30485
|
-
type:
|
|
31364
|
+
type: "MODIFY",
|
|
30486
31365
|
products: [
|
|
30487
|
-
|
|
30488
|
-
|
|
30489
|
-
|
|
30490
|
-
|
|
31366
|
+
"DATA_INVENTORY",
|
|
31367
|
+
"STRUCTURED_DISCOVERY",
|
|
31368
|
+
"SILO_DISCOVERY",
|
|
31369
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30491
31370
|
]
|
|
30492
31371
|
},
|
|
30493
|
-
[
|
|
30494
|
-
dependencies: [
|
|
31372
|
+
["managedAssignedIntegrations"]: {
|
|
31373
|
+
dependencies: ["viewAssignedIntegrations"],
|
|
30495
31374
|
description: "Manage the integrations in your organization's Data Map that are assigned to you or your team.",
|
|
30496
31375
|
title: "Manage Assigned Integrations",
|
|
30497
|
-
type:
|
|
31376
|
+
type: "MODIFY",
|
|
30498
31377
|
products: [
|
|
30499
|
-
|
|
30500
|
-
|
|
30501
|
-
|
|
30502
|
-
|
|
30503
|
-
|
|
31378
|
+
"DSR_AUTOMATION",
|
|
31379
|
+
"DATA_INVENTORY",
|
|
31380
|
+
"STRUCTURED_DISCOVERY",
|
|
31381
|
+
"SILO_DISCOVERY",
|
|
31382
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30504
31383
|
]
|
|
30505
31384
|
},
|
|
30506
|
-
[
|
|
30507
|
-
dependencies: [
|
|
31385
|
+
["viewDataMap"]: {
|
|
31386
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30508
31387
|
description: "View your organization's Data Map and see the configuration settings for each action your support.",
|
|
30509
31388
|
title: "View Data Map",
|
|
30510
|
-
type:
|
|
31389
|
+
type: "VIEW",
|
|
30511
31390
|
products: [
|
|
30512
|
-
|
|
30513
|
-
|
|
30514
|
-
|
|
30515
|
-
|
|
30516
|
-
|
|
31391
|
+
"DSR_AUTOMATION",
|
|
31392
|
+
"DATA_INVENTORY",
|
|
31393
|
+
"STRUCTURED_DISCOVERY",
|
|
31394
|
+
"SILO_DISCOVERY",
|
|
31395
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30517
31396
|
]
|
|
30518
31397
|
},
|
|
30519
|
-
[
|
|
30520
|
-
dependencies: [
|
|
31398
|
+
["viewAssignedIntegrations"]: {
|
|
31399
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30521
31400
|
description: "View the integrations in your organization's Data Map that are assigned to you or your team.",
|
|
30522
31401
|
title: "View Assigned Integrations",
|
|
30523
|
-
type:
|
|
31402
|
+
type: "VIEW",
|
|
30524
31403
|
products: [
|
|
30525
|
-
|
|
30526
|
-
|
|
30527
|
-
|
|
30528
|
-
|
|
30529
|
-
|
|
31404
|
+
"DSR_AUTOMATION",
|
|
31405
|
+
"DATA_INVENTORY",
|
|
31406
|
+
"STRUCTURED_DISCOVERY",
|
|
31407
|
+
"SILO_DISCOVERY",
|
|
31408
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30530
31409
|
]
|
|
30531
31410
|
},
|
|
30532
|
-
[
|
|
30533
|
-
dependencies: [
|
|
31411
|
+
["viewAssignedDataInventory"]: {
|
|
31412
|
+
dependencies: ["viewGlobalAttributes", "viewDataSubjectRequestSettings"],
|
|
30534
31413
|
description: "Ability to view the resources in the data mapping product that are assigned to your or your team.",
|
|
30535
31414
|
title: "View Assigned Data Inventory",
|
|
30536
|
-
type:
|
|
31415
|
+
type: "VIEW",
|
|
30537
31416
|
products: [
|
|
30538
|
-
|
|
30539
|
-
|
|
30540
|
-
|
|
30541
|
-
|
|
31417
|
+
"DATA_INVENTORY",
|
|
31418
|
+
"STRUCTURED_DISCOVERY",
|
|
31419
|
+
"SILO_DISCOVERY",
|
|
31420
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30542
31421
|
]
|
|
30543
31422
|
},
|
|
30544
|
-
[
|
|
31423
|
+
["viewDataInventory"]: {
|
|
30545
31424
|
dependencies: [
|
|
30546
|
-
|
|
30547
|
-
|
|
30548
|
-
|
|
31425
|
+
"viewDataMap",
|
|
31426
|
+
"viewGlobalAttributes",
|
|
31427
|
+
"viewDataSubjectRequestSettings"
|
|
30549
31428
|
],
|
|
30550
31429
|
description: "Ability to view all of the data mapping product. Includes the data inventory, ROPA, and content classification views.",
|
|
30551
31430
|
title: "View Data Inventory",
|
|
30552
|
-
type:
|
|
31431
|
+
type: "VIEW",
|
|
30553
31432
|
products: [
|
|
30554
|
-
|
|
30555
|
-
|
|
30556
|
-
|
|
30557
|
-
|
|
31433
|
+
"DATA_INVENTORY",
|
|
31434
|
+
"STRUCTURED_DISCOVERY",
|
|
31435
|
+
"SILO_DISCOVERY",
|
|
31436
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
30558
31437
|
]
|
|
30559
31438
|
},
|
|
30560
|
-
[
|
|
31439
|
+
["manageConsentManager"]: {
|
|
30561
31440
|
dependencies: [
|
|
30562
|
-
|
|
30563
|
-
|
|
30564
|
-
|
|
30565
|
-
|
|
30566
|
-
|
|
30567
|
-
|
|
30568
|
-
|
|
31441
|
+
"viewConsentManager",
|
|
31442
|
+
"manageDataFlow",
|
|
31443
|
+
"manageConsentManagerDisplaySettings",
|
|
31444
|
+
"manageConsentManagerDeveloperSettings",
|
|
31445
|
+
"deployConsentManager",
|
|
31446
|
+
"deployTestConsentManager",
|
|
31447
|
+
"viewDataFlow"
|
|
30569
31448
|
],
|
|
30570
31449
|
description: "Manage & deploy the consent manager changes to your websites.",
|
|
30571
31450
|
title: "Manage Consent Manager",
|
|
30572
|
-
type:
|
|
30573
|
-
products: [
|
|
31451
|
+
type: "MODIFY",
|
|
31452
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30574
31453
|
},
|
|
30575
|
-
[
|
|
30576
|
-
dependencies: [
|
|
31454
|
+
["manageConsentManagerDeveloperSettings"]: {
|
|
31455
|
+
dependencies: ["viewConsentManager"],
|
|
30577
31456
|
description: "Manage the developer settings for the Consent Manager. This does not allow for clicking the \"Set Changes Live\" button.",
|
|
30578
31457
|
title: "Manage Consent Manager Developer Settings",
|
|
30579
|
-
type:
|
|
30580
|
-
products: [
|
|
31458
|
+
type: "MODIFY",
|
|
31459
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30581
31460
|
},
|
|
30582
|
-
[
|
|
30583
|
-
dependencies: [
|
|
31461
|
+
["manageConsentManagerDisplaySettings"]: {
|
|
31462
|
+
dependencies: ["viewConsentManager"],
|
|
30584
31463
|
description: "Manage the display settings for the consent manager. This includes messages, styles and other UI settings.",
|
|
30585
31464
|
title: "Manage Consent Manager Display Settings",
|
|
30586
|
-
type:
|
|
30587
|
-
products: [
|
|
31465
|
+
type: "MODIFY",
|
|
31466
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30588
31467
|
},
|
|
30589
|
-
[
|
|
30590
|
-
dependencies: [
|
|
31468
|
+
["deployTestConsentManager"]: {
|
|
31469
|
+
dependencies: ["viewConsentManager"],
|
|
30591
31470
|
description: "Ability to publish changes to the test Consent Manager bundle. This changes the code contents of airgap.js and attempts to invalidate the CDN.",
|
|
30592
31471
|
title: "Deploy Test Consent Manager",
|
|
30593
|
-
type:
|
|
30594
|
-
products: [
|
|
31472
|
+
type: "MODIFY",
|
|
31473
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30595
31474
|
},
|
|
30596
|
-
[
|
|
30597
|
-
dependencies: [
|
|
31475
|
+
["deployConsentManager"]: {
|
|
31476
|
+
dependencies: ["viewConsentManager", "deployTestConsentManager"],
|
|
30598
31477
|
description: "Ability to publish changes to the production and test Consent Manager bundle. This changes the code contents of airgap.js and attempts to invalidate the CDN.",
|
|
30599
31478
|
title: "Deploy Consent Manager",
|
|
30600
|
-
type:
|
|
30601
|
-
products: [
|
|
31479
|
+
type: "MODIFY",
|
|
31480
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30602
31481
|
},
|
|
30603
|
-
[
|
|
30604
|
-
dependencies: [
|
|
31482
|
+
["managedAssignedConsentManager"]: {
|
|
31483
|
+
dependencies: ["viewAssignedConsentManager"],
|
|
30605
31484
|
description: "Manage Data Flows & Cookies assigned to you or your team.",
|
|
30606
31485
|
title: "Manage Assigned Consent Manager",
|
|
30607
|
-
type:
|
|
30608
|
-
products: [
|
|
31486
|
+
type: "MODIFY",
|
|
31487
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30609
31488
|
},
|
|
30610
|
-
[
|
|
30611
|
-
dependencies: [
|
|
31489
|
+
["manageDataFlow"]: {
|
|
31490
|
+
dependencies: ["viewDataFlow"],
|
|
30612
31491
|
description: "Ability to manage and delete Data Flows and Cookies within the Consent Manager product.",
|
|
30613
31492
|
title: "Manage Data Flows",
|
|
30614
|
-
type:
|
|
30615
|
-
products: [
|
|
31493
|
+
type: "MODIFY",
|
|
31494
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30616
31495
|
},
|
|
30617
|
-
[
|
|
30618
|
-
dependencies: [
|
|
31496
|
+
["viewDataFlow"]: {
|
|
31497
|
+
dependencies: ["viewConsentManager"],
|
|
30619
31498
|
description: "View Data Flows (tracking purpose maps, site scans)",
|
|
30620
31499
|
title: "View Data Flows",
|
|
30621
|
-
type:
|
|
30622
|
-
products: [
|
|
31500
|
+
type: "VIEW",
|
|
31501
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30623
31502
|
},
|
|
30624
|
-
[
|
|
30625
|
-
dependencies: [
|
|
31503
|
+
["viewAssignedConsentManager"]: {
|
|
31504
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30626
31505
|
description: "View Data Flows and Cookies assigned to you or your team.",
|
|
30627
31506
|
title: "View Assigned Consent Manager",
|
|
30628
|
-
type:
|
|
30629
|
-
products: [
|
|
31507
|
+
type: "VIEW",
|
|
31508
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30630
31509
|
},
|
|
30631
|
-
[
|
|
31510
|
+
["viewConsentManager"]: {
|
|
30632
31511
|
title: "View Consent Manager",
|
|
30633
|
-
type:
|
|
30634
|
-
dependencies: [
|
|
31512
|
+
type: "VIEW",
|
|
31513
|
+
dependencies: ["viewGlobalAttributes", "viewManagedConsentDatabaseAdminApi"],
|
|
30635
31514
|
description: "View the consent manager configuration.",
|
|
30636
|
-
products: [
|
|
31515
|
+
products: ["CONSENT_MANAGEMENT"]
|
|
30637
31516
|
},
|
|
30638
|
-
[
|
|
31517
|
+
["viewAssessments"]: {
|
|
30639
31518
|
title: "View Assessments",
|
|
30640
31519
|
dependencies: [],
|
|
30641
31520
|
description: "View the assessments and assessment templates.",
|
|
30642
|
-
type:
|
|
30643
|
-
products: [
|
|
31521
|
+
type: "VIEW",
|
|
31522
|
+
products: ["ASSESSMENTS", "DATA_INVENTORY"]
|
|
30644
31523
|
},
|
|
30645
|
-
[
|
|
31524
|
+
["manageAssessments"]: {
|
|
30646
31525
|
title: "Manage Assessments",
|
|
30647
|
-
dependencies: [
|
|
31526
|
+
dependencies: ["viewAssessments"],
|
|
30648
31527
|
description: "Manage and edit assessments and assessment templates",
|
|
30649
|
-
type:
|
|
30650
|
-
products: [
|
|
31528
|
+
type: "MODIFY",
|
|
31529
|
+
products: ["ASSESSMENTS", "DATA_INVENTORY"]
|
|
30651
31530
|
},
|
|
30652
|
-
[
|
|
31531
|
+
["viewAssignedAssessments"]: {
|
|
30653
31532
|
title: "View Assigned Assessments",
|
|
30654
31533
|
dependencies: [],
|
|
30655
31534
|
description: "View the assigned assessments forms.",
|
|
30656
|
-
type:
|
|
30657
|
-
products: [
|
|
31535
|
+
type: "VIEW",
|
|
31536
|
+
products: ["ASSESSMENTS", "DATA_INVENTORY"]
|
|
30658
31537
|
},
|
|
30659
|
-
[
|
|
31538
|
+
["manageAssignedAssessments"]: {
|
|
30660
31539
|
title: "Manage Assigned Assessments",
|
|
30661
|
-
dependencies: [
|
|
31540
|
+
dependencies: ["viewAssignedAssessments"],
|
|
30662
31541
|
description: "Manage and edit the assigned assessments.",
|
|
30663
|
-
type:
|
|
30664
|
-
products: [
|
|
31542
|
+
type: "MODIFY",
|
|
31543
|
+
products: ["ASSESSMENTS", "DATA_INVENTORY"]
|
|
30665
31544
|
},
|
|
30666
|
-
[
|
|
31545
|
+
["viewPathfinder"]: {
|
|
30667
31546
|
title: "View Pathfinder",
|
|
30668
|
-
dependencies: [
|
|
31547
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30669
31548
|
description: "View the pathfinder settings.",
|
|
30670
|
-
type:
|
|
30671
|
-
products: [
|
|
31549
|
+
type: "VIEW",
|
|
31550
|
+
products: ["PATHFINDER"]
|
|
30672
31551
|
},
|
|
30673
|
-
[
|
|
31552
|
+
["managePathfinder"]: {
|
|
30674
31553
|
title: "Manage Pathfinder",
|
|
30675
|
-
dependencies: [
|
|
31554
|
+
dependencies: ["viewPathfinder"],
|
|
30676
31555
|
description: "Manage the pathfinder settings under that pathfinder side menu",
|
|
30677
|
-
type:
|
|
30678
|
-
products: [
|
|
31556
|
+
type: "MODIFY",
|
|
31557
|
+
products: ["PATHFINDER"]
|
|
30679
31558
|
},
|
|
30680
|
-
[
|
|
31559
|
+
["viewContractScanning"]: {
|
|
30681
31560
|
title: "View Contract Scanning",
|
|
30682
|
-
dependencies: [
|
|
31561
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30683
31562
|
description: "View the contract scanning side menu - including setting and contracts.",
|
|
30684
|
-
type:
|
|
30685
|
-
products: [
|
|
31563
|
+
type: "VIEW",
|
|
31564
|
+
products: ["CONTRACT_SCANNING"]
|
|
30686
31565
|
},
|
|
30687
|
-
[
|
|
31566
|
+
["manageContractScanning"]: {
|
|
30688
31567
|
title: "Manage Contract Scanning",
|
|
30689
|
-
dependencies: [
|
|
31568
|
+
dependencies: ["viewContractScanning"],
|
|
30690
31569
|
description: "Upload and manage contracts under the contract scanning side menu",
|
|
30691
|
-
type:
|
|
30692
|
-
products: [
|
|
31570
|
+
type: "MODIFY",
|
|
31571
|
+
products: ["CONTRACT_SCANNING"]
|
|
30693
31572
|
},
|
|
30694
|
-
[
|
|
31573
|
+
["viewPrompts"]: {
|
|
30695
31574
|
title: "View Prompts",
|
|
30696
|
-
dependencies: [
|
|
31575
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30697
31576
|
description: "View the prompts and prompt templates.",
|
|
30698
|
-
type:
|
|
30699
|
-
products: [
|
|
31577
|
+
type: "VIEW",
|
|
31578
|
+
products: ["PROMPT_MANAGER"]
|
|
30700
31579
|
},
|
|
30701
|
-
[
|
|
31580
|
+
["managePrompts"]: {
|
|
30702
31581
|
title: "Manage Prompts",
|
|
30703
|
-
dependencies: [
|
|
31582
|
+
dependencies: ["viewPrompts"],
|
|
30704
31583
|
description: "Manage and edit prompts and prompt templates",
|
|
30705
|
-
type:
|
|
30706
|
-
products: [
|
|
31584
|
+
type: "MODIFY",
|
|
31585
|
+
products: ["PROMPT_MANAGER"]
|
|
30707
31586
|
},
|
|
30708
|
-
[
|
|
31587
|
+
["viewPromptRuns"]: {
|
|
30709
31588
|
title: "View Prompt Runs",
|
|
30710
|
-
dependencies: [
|
|
31589
|
+
dependencies: ["viewPrompts"],
|
|
30711
31590
|
description: "View the output run results for prompts.",
|
|
30712
|
-
type:
|
|
30713
|
-
products: [
|
|
31591
|
+
type: "VIEW",
|
|
31592
|
+
products: ["PROMPT_MANAGER"]
|
|
30714
31593
|
},
|
|
30715
|
-
[
|
|
31594
|
+
["managePromptRuns"]: {
|
|
30716
31595
|
title: "Manage Prompt Runs",
|
|
30717
|
-
dependencies: [
|
|
31596
|
+
dependencies: ["viewPromptRuns", "viewPrompts"],
|
|
30718
31597
|
description: "Manage, edit and create prompt run results",
|
|
30719
|
-
type:
|
|
30720
|
-
products: [
|
|
31598
|
+
type: "MODIFY",
|
|
31599
|
+
products: ["PROMPT_MANAGER", "PATHFINDER"]
|
|
30721
31600
|
},
|
|
30722
|
-
[
|
|
31601
|
+
["viewCodeScanning"]: {
|
|
30723
31602
|
title: "View Code Scanning",
|
|
30724
|
-
dependencies: [
|
|
31603
|
+
dependencies: ["viewGlobalAttributes"],
|
|
30725
31604
|
description: "View the code scanning tables.",
|
|
30726
|
-
type:
|
|
30727
|
-
products: [
|
|
31605
|
+
type: "VIEW",
|
|
31606
|
+
products: ["DATA_INVENTORY", "CONSENT_MANAGEMENT"]
|
|
30728
31607
|
},
|
|
30729
|
-
[
|
|
31608
|
+
["manageCodeScanning"]: {
|
|
30730
31609
|
title: "Manage Code Scanning",
|
|
30731
|
-
dependencies: [
|
|
31610
|
+
dependencies: ["viewCodeScanning"],
|
|
30732
31611
|
description: "Manage, edit and create records in code scanning",
|
|
30733
|
-
type:
|
|
30734
|
-
products: [
|
|
31612
|
+
type: "MODIFY",
|
|
31613
|
+
products: ["DATA_INVENTORY", "CONSENT_MANAGEMENT"]
|
|
30735
31614
|
},
|
|
30736
|
-
[
|
|
31615
|
+
["executePrompt"]: {
|
|
30737
31616
|
title: "Execute Prompt",
|
|
30738
|
-
dependencies: [
|
|
31617
|
+
dependencies: ["viewPromptRuns", "viewPrompts"],
|
|
30739
31618
|
description: "Ability to execute a prompt and view the outputs",
|
|
30740
|
-
type:
|
|
30741
|
-
products: [
|
|
31619
|
+
type: "MODIFY",
|
|
31620
|
+
products: ["PROMPT_MANAGER"]
|
|
30742
31621
|
},
|
|
30743
|
-
[
|
|
31622
|
+
["viewAuditorRuns"]: {
|
|
30744
31623
|
title: "View Auditor Runs",
|
|
30745
31624
|
dependencies: [],
|
|
30746
31625
|
description: "View the output run results for Auditor.",
|
|
30747
|
-
type:
|
|
30748
|
-
products: [
|
|
31626
|
+
type: "VIEW",
|
|
31627
|
+
products: ["WEB_AUDITOR"]
|
|
30749
31628
|
},
|
|
30750
|
-
[
|
|
31629
|
+
["manageAuditor"]: {
|
|
30751
31630
|
title: "Manage Auditor Runs and Schedules",
|
|
30752
|
-
dependencies: [
|
|
31631
|
+
dependencies: ["viewAuditorRuns"],
|
|
30753
31632
|
description: "Manage, edit and create prompt run results",
|
|
30754
|
-
type:
|
|
30755
|
-
products: [
|
|
31633
|
+
type: "MODIFY",
|
|
31634
|
+
products: ["WEB_AUDITOR"]
|
|
30756
31635
|
},
|
|
30757
|
-
[
|
|
31636
|
+
["executeAuditor"]: {
|
|
30758
31637
|
title: "Execute Auditor",
|
|
30759
|
-
dependencies: [
|
|
31638
|
+
dependencies: ["viewAuditorRuns"],
|
|
30760
31639
|
description: "Ability to execute or schedule Auditor and view the outputs",
|
|
30761
|
-
type:
|
|
30762
|
-
products: [
|
|
31640
|
+
type: "MODIFY",
|
|
31641
|
+
products: ["WEB_AUDITOR"]
|
|
30763
31642
|
},
|
|
30764
|
-
[
|
|
31643
|
+
["approvePrompts"]: {
|
|
30765
31644
|
title: "Approve Prompts",
|
|
30766
|
-
dependencies: [
|
|
31645
|
+
dependencies: ["viewPrompts"],
|
|
30767
31646
|
description: "Approve the prompts and prompt templates",
|
|
30768
|
-
type:
|
|
30769
|
-
products: [
|
|
31647
|
+
type: "MODIFY",
|
|
31648
|
+
products: ["PROMPT_MANAGER"]
|
|
30770
31649
|
},
|
|
30771
|
-
[
|
|
31650
|
+
["manageActionItemCollections"]: {
|
|
30772
31651
|
title: "Manage Action Item Collections",
|
|
30773
31652
|
dependencies: [],
|
|
30774
31653
|
description: "Manage and edit action item collections",
|
|
30775
|
-
type:
|
|
30776
|
-
products: [
|
|
31654
|
+
type: "MODIFY",
|
|
31655
|
+
products: ["ADMINISTRATION"]
|
|
30777
31656
|
},
|
|
30778
|
-
[
|
|
31657
|
+
["viewManagedConsentDatabaseAdminApi"]: {
|
|
30779
31658
|
title: "View Managed Consent Database Admin API",
|
|
30780
31659
|
dependencies: [],
|
|
30781
31660
|
description: "Ability to query user consent preferences with the Managed Consent Database Admin API",
|
|
30782
|
-
type:
|
|
30783
|
-
products: [
|
|
31661
|
+
type: "VIEW",
|
|
31662
|
+
products: ["CONSENT_MANAGEMENT", "PREFERENCE_MANAGEMENT"]
|
|
30784
31663
|
},
|
|
30785
|
-
[
|
|
31664
|
+
["manageStoredPreferences"]: {
|
|
30786
31665
|
title: "Modify User Stored Preferences",
|
|
30787
|
-
dependencies: [
|
|
31666
|
+
dependencies: ["viewManagedConsentDatabaseAdminApi"],
|
|
30788
31667
|
description: "Ability to make updates to user stored consent preferences",
|
|
30789
|
-
type:
|
|
30790
|
-
products: [
|
|
31668
|
+
type: "MODIFY",
|
|
31669
|
+
products: ["CONSENT_MANAGEMENT", "PREFERENCE_MANAGEMENT"]
|
|
30791
31670
|
},
|
|
30792
|
-
[
|
|
31671
|
+
["managePreferenceStoreSettings"]: {
|
|
30793
31672
|
title: "Manage Preference Store Settings",
|
|
30794
|
-
dependencies: [
|
|
31673
|
+
dependencies: ["viewPreferenceStoreSettings"],
|
|
30795
31674
|
description: "Ability to make updates to preference store settings",
|
|
30796
|
-
type:
|
|
30797
|
-
products: [
|
|
31675
|
+
type: "MODIFY",
|
|
31676
|
+
products: ["PREFERENCE_MANAGEMENT"]
|
|
30798
31677
|
},
|
|
30799
|
-
[
|
|
31678
|
+
["viewPreferenceStoreSettings"]: {
|
|
30800
31679
|
title: "View Preference Store Settings",
|
|
30801
|
-
dependencies: [
|
|
31680
|
+
dependencies: ["viewPreferenceStoreSettings"],
|
|
30802
31681
|
description: "Ability to view preference store settings",
|
|
30803
|
-
type:
|
|
30804
|
-
products: [
|
|
31682
|
+
type: "MODIFY",
|
|
31683
|
+
products: ["PREFERENCE_MANAGEMENT"]
|
|
30805
31684
|
},
|
|
30806
|
-
[
|
|
31685
|
+
["llmLogTransfer"]: {
|
|
30807
31686
|
title: "LLM Log Transfer",
|
|
30808
|
-
dependencies: [
|
|
31687
|
+
dependencies: ["manageDataInventory"],
|
|
30809
31688
|
description: "Ability to transfer logs from LLM to Transcend",
|
|
30810
|
-
type:
|
|
30811
|
-
products: [
|
|
31689
|
+
type: "MODIFY",
|
|
31690
|
+
products: ["STRUCTURED_DISCOVERY", "UNSTRUCTURED_DISCOVERY"]
|
|
30812
31691
|
},
|
|
30813
|
-
[
|
|
31692
|
+
["manageWorkflows"]: {
|
|
30814
31693
|
title: "Manage Workflows",
|
|
30815
31694
|
description: "Ability to make updates to Workflows and their settings",
|
|
30816
31695
|
dependencies: [],
|
|
30817
|
-
type:
|
|
30818
|
-
products: [
|
|
31696
|
+
type: "MODIFY",
|
|
31697
|
+
products: ["DSR_AUTOMATION"]
|
|
30819
31698
|
},
|
|
30820
|
-
[
|
|
31699
|
+
["viewDataSubCategories"]: {
|
|
30821
31700
|
title: "View Data Sub Categories",
|
|
30822
31701
|
dependencies: [],
|
|
30823
31702
|
description: "View Data Sub Categories from Data Inventory",
|
|
30824
|
-
type:
|
|
30825
|
-
products: [
|
|
31703
|
+
type: "VIEW",
|
|
31704
|
+
products: ["DATA_INVENTORY"]
|
|
30826
31705
|
},
|
|
30827
|
-
[
|
|
31706
|
+
["generatePreferenceAccessTokens"]: {
|
|
30828
31707
|
title: "Generate Preference Access Tokens",
|
|
30829
31708
|
dependencies: [],
|
|
30830
31709
|
description: "Ability to generate access tokens for user preferences",
|
|
30831
|
-
type:
|
|
30832
|
-
products: [
|
|
31710
|
+
type: "MODIFY",
|
|
31711
|
+
products: ["PREFERENCE_MANAGEMENT", "PRIVACY_CENTER"]
|
|
30833
31712
|
},
|
|
30834
|
-
[
|
|
31713
|
+
["viewRules"]: {
|
|
30835
31714
|
title: "View Rules",
|
|
30836
31715
|
dependencies: [],
|
|
30837
31716
|
description: "View rules, their triggers, actions, and execution history.",
|
|
30838
|
-
type:
|
|
30839
|
-
products: [
|
|
31717
|
+
type: "VIEW",
|
|
31718
|
+
products: ["RULES_AUTOMATION"]
|
|
30840
31719
|
},
|
|
30841
|
-
[
|
|
31720
|
+
["manageRules"]: {
|
|
30842
31721
|
title: "Manage Rules",
|
|
30843
|
-
dependencies: [
|
|
31722
|
+
dependencies: ["viewRules"],
|
|
30844
31723
|
description: "Create, update, and delete rules and their configurations.",
|
|
30845
|
-
type:
|
|
30846
|
-
products: [
|
|
31724
|
+
type: "MODIFY",
|
|
31725
|
+
products: ["RULES_AUTOMATION"]
|
|
30847
31726
|
},
|
|
30848
|
-
[
|
|
31727
|
+
["viewAssignedRules"]: {
|
|
30849
31728
|
title: "View Assigned Rules",
|
|
30850
31729
|
dependencies: [],
|
|
30851
31730
|
description: "View rules assigned to you or your team.",
|
|
30852
|
-
type:
|
|
30853
|
-
products: [
|
|
31731
|
+
type: "VIEW",
|
|
31732
|
+
products: ["RULES_AUTOMATION"]
|
|
30854
31733
|
},
|
|
30855
|
-
[
|
|
31734
|
+
["manageAssignedRules"]: {
|
|
30856
31735
|
title: "Manage Assigned Rules",
|
|
30857
|
-
dependencies: [
|
|
31736
|
+
dependencies: ["viewAssignedRules"],
|
|
30858
31737
|
description: "Manage and edit rules assigned to you or your team.",
|
|
30859
|
-
type:
|
|
30860
|
-
products: [
|
|
31738
|
+
type: "MODIFY",
|
|
31739
|
+
products: ["RULES_AUTOMATION"]
|
|
30861
31740
|
},
|
|
30862
|
-
[
|
|
31741
|
+
["executeRules"]: {
|
|
30863
31742
|
title: "Execute Rules",
|
|
30864
|
-
dependencies: [
|
|
31743
|
+
dependencies: ["viewRules"],
|
|
30865
31744
|
description: "Trigger rule execution and view the outputs.",
|
|
30866
|
-
type:
|
|
30867
|
-
products: [
|
|
31745
|
+
type: "MODIFY",
|
|
31746
|
+
products: ["RULES_AUTOMATION"]
|
|
30868
31747
|
}
|
|
30869
31748
|
};
|
|
30870
31749
|
const TRANSCEND_SCOPES = {
|
|
30871
|
-
[
|
|
30872
|
-
dependencies: getEntries(SCOPES_WITHOUT_VIEW_ONLY).filter(([, v]) => v.type ===
|
|
31750
|
+
["readOnly"]: {
|
|
31751
|
+
dependencies: getEntries(SCOPES_WITHOUT_VIEW_ONLY).filter(([, v]) => v.type === "VIEW").map(([k]) => k),
|
|
30873
31752
|
description: "Access is granted to all of the scopes of type \"View\".",
|
|
30874
31753
|
title: "View Only",
|
|
30875
|
-
type:
|
|
31754
|
+
type: "VIEW",
|
|
30876
31755
|
products: getValues(TranscendProduct)
|
|
30877
31756
|
},
|
|
30878
31757
|
...SCOPES_WITHOUT_VIEW_ONLY
|
|
@@ -30884,31 +31763,48 @@ const TRANSCEND_SCOPES = {
|
|
|
30884
31763
|
* identifiers needed to establish a connection for the current browsing session.
|
|
30885
31764
|
*/
|
|
30886
31765
|
const ConnectionSubCategory = makeEnum({
|
|
31766
|
+
/** A Media Access Control address */
|
|
30887
31767
|
MACAddress: "MAC_ADDRESS",
|
|
31768
|
+
/** An internet protocol address */
|
|
30888
31769
|
IPAddress: "IP_ADDRESS",
|
|
31770
|
+
/** The User-Agent request header */
|
|
30889
31771
|
UserAgent: "USER_AGENT",
|
|
31772
|
+
/** Fallback subcategory */
|
|
30890
31773
|
Connection: "CONNECTION"
|
|
30891
31774
|
});
|
|
30892
31775
|
//#endregion
|
|
30893
31776
|
//#region src/subcategories/contact.ts
|
|
30894
31777
|
const ContactSubCategory = makeEnum({
|
|
31778
|
+
/** An email address */
|
|
30895
31779
|
Email: "EMAIL",
|
|
31780
|
+
/** A phone number */
|
|
30896
31781
|
Phone: "PHONE",
|
|
31782
|
+
/** Fallback subcategory */
|
|
30897
31783
|
Contact: "CONTACT"
|
|
30898
31784
|
});
|
|
30899
31785
|
//#endregion
|
|
30900
31786
|
//#region src/subcategories/demographic.ts
|
|
30901
31787
|
/** Information about the features or characteristics of a user */
|
|
30902
31788
|
const DemographicSubCategory = makeEnum({
|
|
31789
|
+
/** Information about an individual's racial or ethnic origin */
|
|
30903
31790
|
RaceOrEthnicity: "RACE_OR_ETHNICITY",
|
|
31791
|
+
/** An individual's gender */
|
|
30904
31792
|
Gender: "GENDER",
|
|
31793
|
+
/** An individual's date of birth */
|
|
30905
31794
|
DateOfBirth: "DATE_OF_BIRTH",
|
|
31795
|
+
/** An individual's country, city, or other static location information */
|
|
30906
31796
|
Region: "REGION",
|
|
31797
|
+
/** The industry in which an individual works */
|
|
30907
31798
|
Industry: "INDUSTRY",
|
|
31799
|
+
/** An individual's sexual orientation */
|
|
30908
31800
|
SexualOrientation: "SEXUAL_ORIENTATION",
|
|
31801
|
+
/** Information about an individual's union membership */
|
|
30909
31802
|
UnionMembership: "UNION_MEMBERSHIP",
|
|
31803
|
+
/** Information about an individual's religious beliefs */
|
|
30910
31804
|
Religion: "RELIGION",
|
|
31805
|
+
/** Information about an individual's political beliefs or party membership */
|
|
30911
31806
|
PoliticalAffiliation: "POLITICAL_AFFILIATION",
|
|
31807
|
+
/** Fallback subcategory */
|
|
30912
31808
|
Demographic: "DEMOGRAPHIC"
|
|
30913
31809
|
});
|
|
30914
31810
|
//#endregion
|
|
@@ -30917,73 +31813,109 @@ const DemographicSubCategory = makeEnum({
|
|
|
30917
31813
|
* The type of operating system (OS) or web browser that the user uses, or similar computer or device information.
|
|
30918
31814
|
*/
|
|
30919
31815
|
const DeviceSubCategory = makeEnum({
|
|
31816
|
+
/** A unique device identifier */
|
|
30920
31817
|
SerialNumber: "SERIAL_NUMBER",
|
|
31818
|
+
/** Fallback subcategory */
|
|
30921
31819
|
Device: "DEVICE"
|
|
30922
31820
|
});
|
|
30923
31821
|
//#endregion
|
|
30924
31822
|
//#region src/subcategories/financial.ts
|
|
30925
31823
|
/** Information about an individual's finances */
|
|
30926
31824
|
const FinancialSubCategory = makeEnum({
|
|
31825
|
+
/** Account number */
|
|
30927
31826
|
AccountNumber: "ACCOUNT_NUMBER",
|
|
31827
|
+
/** Credit Card Number */
|
|
30928
31828
|
CreditCardNumber: "CREDIT_CARD_NUMBER",
|
|
31829
|
+
/** Income */
|
|
30929
31830
|
Income: "INCOME",
|
|
31831
|
+
/** Tax information */
|
|
30930
31832
|
Tax: "TAX",
|
|
31833
|
+
/** Routing number */
|
|
30931
31834
|
RoutingNumber: "ROUTING_NUMBER",
|
|
31835
|
+
/** Fallback subcategory */
|
|
30932
31836
|
Financial: "FINANCIAL"
|
|
30933
31837
|
});
|
|
30934
31838
|
//#endregion
|
|
30935
31839
|
//#region src/subcategories/health.ts
|
|
30936
31840
|
/** Information about an individual's health */
|
|
30937
|
-
const HealthSubCategory = makeEnum({
|
|
31841
|
+
const HealthSubCategory = makeEnum({
|
|
31842
|
+
/** Fallback subcategory */
|
|
31843
|
+
Health: "HEALTH" });
|
|
30938
31844
|
//#endregion
|
|
30939
31845
|
//#region src/subcategories/id.ts
|
|
30940
31846
|
/** Information that can be used to identify an individual */
|
|
30941
31847
|
const IdSubCategory = makeEnum({
|
|
31848
|
+
/** A username associated with an individual */
|
|
30942
31849
|
Username: "USERNAME",
|
|
31850
|
+
/** A person's name */
|
|
30943
31851
|
Name: "NAME",
|
|
31852
|
+
/** An individual's (US) Social security number */
|
|
30944
31853
|
SocialSecurityNumber: "SOCIAL_SECURITY_NUMBER",
|
|
31854
|
+
/** Driver's license */
|
|
30945
31855
|
DriversLicense: "DRIVERS_LICENSE",
|
|
31856
|
+
/** Passport number */
|
|
30946
31857
|
PassportNumber: "PASSPORT_NUMBER",
|
|
31858
|
+
/** A digital representation of an individual's unique physical characteristics (e.g. fingerprint, retina or iris image, etc.) */
|
|
30947
31859
|
BiometricIdentifier: "BIOMETRIC_IDENTIFIER",
|
|
31860
|
+
/** The user ID */
|
|
30948
31861
|
UserId: "USER_ID",
|
|
31862
|
+
/** Fallback subcategory */
|
|
30949
31863
|
Id: "ID"
|
|
30950
31864
|
});
|
|
30951
31865
|
//#endregion
|
|
30952
31866
|
//#region src/subcategories/location.ts
|
|
30953
31867
|
const LocationSubCategory = makeEnum({
|
|
31868
|
+
/** Approximate geolocation */
|
|
30954
31869
|
ApproximateLocation: "APPROXIMATE_LOCATION",
|
|
31870
|
+
/** Fallback subcategory */
|
|
30955
31871
|
Location: "LOCATION"
|
|
30956
31872
|
});
|
|
30957
31873
|
//#endregion
|
|
30958
31874
|
//#region src/subcategories/notPersonalData.ts
|
|
30959
31875
|
/** Information that does not belong to an individual */
|
|
30960
|
-
const NotPersonalDataSubCategory = makeEnum({
|
|
31876
|
+
const NotPersonalDataSubCategory = makeEnum({
|
|
31877
|
+
/** Fallback subcategory */
|
|
31878
|
+
NotPersonalData: "NOT_PERSONAL_DATA" });
|
|
30961
31879
|
//#endregion
|
|
30962
31880
|
//#region src/subcategories/onlineActivity.ts
|
|
30963
31881
|
const OnlineActivitySubCategory = makeEnum({
|
|
31882
|
+
/** Declared interests */
|
|
30964
31883
|
DeclaredInterests: "DECLARED_INTERESTS",
|
|
31884
|
+
/** Page views */
|
|
30965
31885
|
PageViews: "PAGE_VIEWS",
|
|
31886
|
+
/** Interaction events */
|
|
30966
31887
|
InteractionEvents: "INTERACTION_EVENTS",
|
|
31888
|
+
/** Fallback subcategory */
|
|
30967
31889
|
OnlineActivity: "ONLINE_ACTIVITY"
|
|
30968
31890
|
});
|
|
30969
31891
|
//#endregion
|
|
30970
31892
|
//#region src/subcategories/socialMedia.ts
|
|
30971
31893
|
const SocialMediaSubCategory = makeEnum({
|
|
31894
|
+
/** A link to an individual's social media profile */
|
|
30972
31895
|
ProfileURL: "PROFILE_URL",
|
|
31896
|
+
/** Fallback subcategory */
|
|
30973
31897
|
SocialMedia: "SOCIAL_MEDIA"
|
|
30974
31898
|
});
|
|
30975
31899
|
//#endregion
|
|
30976
31900
|
//#region src/subcategories/survey.ts
|
|
30977
|
-
const SurveySubCategory = makeEnum({
|
|
31901
|
+
const SurveySubCategory = makeEnum({
|
|
31902
|
+
/** Fallback subcategory */
|
|
31903
|
+
Survey: "SURVEY" });
|
|
30978
31904
|
//#endregion
|
|
30979
31905
|
//#region src/subcategories/tracking.ts
|
|
30980
|
-
const TrackingSubCategory = makeEnum({
|
|
31906
|
+
const TrackingSubCategory = makeEnum({
|
|
31907
|
+
/** Fallback subcategory */
|
|
31908
|
+
Tracking: "TRACKING" });
|
|
30981
31909
|
//#endregion
|
|
30982
31910
|
//#region src/subcategories/userProfile.ts
|
|
30983
31911
|
const UserProfileSubCategory = makeEnum({
|
|
31912
|
+
/** A link to an individual's profile picture */
|
|
30984
31913
|
ProfilePictureURL: "PROFILE_PICTURE_URL",
|
|
31914
|
+
/** An individual's profile picture */
|
|
30985
31915
|
ProfilePictureImage: "PROFILE_PICTURE_IMAGE",
|
|
31916
|
+
/** The user's stated preferences while using an app */
|
|
30986
31917
|
UserPreferences: "USER_PREFERENCES",
|
|
31918
|
+
/** Fallback subcategory */
|
|
30987
31919
|
UserProfile: "USER_PROFILE"
|
|
30988
31920
|
});
|
|
30989
31921
|
//#endregion
|
|
@@ -31079,30 +32011,70 @@ let CustomizableText = /* @__PURE__ */ function(CustomizableText) {
|
|
|
31079
32011
|
* The color palette that must be defined
|
|
31080
32012
|
*/
|
|
31081
32013
|
const RequiredConfigurableColorPaletteColor = makeEnum({
|
|
32014
|
+
/**
|
|
32015
|
+
* Used everywhere...
|
|
32016
|
+
*
|
|
32017
|
+
* The primary color chosen by Company X will be applied by default to the following elements of the Privacy Center:
|
|
32018
|
+
* 1. **Hero background**
|
|
32019
|
+
* 2. **Sidebar navigation background**
|
|
32020
|
+
* 3. **Primary CTA (call to action)**
|
|
32021
|
+
* 4. **Primary links and active states**
|
|
32022
|
+
*/
|
|
31082
32023
|
Primary: "primary",
|
|
32024
|
+
/**
|
|
32025
|
+
* Used everywhere...
|
|
32026
|
+
*
|
|
32027
|
+
* The secondary color chosen by Company X will be applied by default to the following elements of the Privacy Center::
|
|
32028
|
+
* 1. **Secondary CTAs**
|
|
32029
|
+
* 2. **Secondary links**
|
|
32030
|
+
*/
|
|
31083
32031
|
Secondary: "secondary"
|
|
31084
32032
|
});
|
|
31085
32033
|
/**
|
|
31086
32034
|
* The optional color pallette colors
|
|
31087
32035
|
*/
|
|
31088
32036
|
const OptionalConfigurableColorPaletteColor = makeEnum({
|
|
32037
|
+
/**
|
|
32038
|
+
* The background color will be set by the primary color by default with the ability to change it to secondary color, black or white.
|
|
32039
|
+
*/
|
|
31089
32040
|
SidebarNavBg: "sidebarNavBg",
|
|
32041
|
+
/**
|
|
32042
|
+
* The hero background color
|
|
32043
|
+
*/
|
|
31090
32044
|
HeroBg: "heroBg",
|
|
32045
|
+
/**
|
|
32046
|
+
* The background of the widget
|
|
32047
|
+
*/
|
|
31091
32048
|
WidgetBg: "widgetBg",
|
|
32049
|
+
/** The main text color to use when text is shown on an object colored bg */
|
|
31092
32050
|
TextOnBg: "textOnBg",
|
|
32051
|
+
/** A lighter text color to use when text is shown on an object colored bg */
|
|
31093
32052
|
TextLightOnBg: "textLightOnBg",
|
|
32053
|
+
/** The main text color to use when text is shown on an object colored primary */
|
|
31094
32054
|
TextOnPrimary: "textOnPrimary",
|
|
32055
|
+
/** Text on sidebar */
|
|
31095
32056
|
TextOnSidebar: "textOnSidebar",
|
|
32057
|
+
/** Accent on sidebar */
|
|
31096
32058
|
AccentOnSidebar: "accentOnSidebar",
|
|
32059
|
+
/** Text to use on hero */
|
|
31097
32060
|
TextOnHero: "textOnHero",
|
|
32061
|
+
/** Text to use on About Transcend widget */
|
|
31098
32062
|
TextOnAboutTranscend: "textOnAboutTranscend",
|
|
32063
|
+
/** Used to highlight text */
|
|
31099
32064
|
Highlight: "highlight",
|
|
32065
|
+
/** The color of the table outline */
|
|
31100
32066
|
TableOutline: "tableOutline",
|
|
32067
|
+
/** The page's accent background color (used in call-outs and asides) */
|
|
31101
32068
|
BgAccent: "bgAccent",
|
|
32069
|
+
/** Error color -- something went wrong */
|
|
31102
32070
|
Error: "error",
|
|
32071
|
+
/** White color */
|
|
31103
32072
|
White: "white",
|
|
32073
|
+
/** Black color */
|
|
31104
32074
|
Black: "black",
|
|
32075
|
+
/** Light gray color */
|
|
31105
32076
|
Gray1: "gray1",
|
|
32077
|
+
/** Medium gray color */
|
|
31106
32078
|
Gray4: "gray4"
|
|
31107
32079
|
});
|
|
31108
32080
|
/**
|
|
@@ -31136,13 +32108,17 @@ const PrivacyCenterTextStyles = t.partial(applyEnum(CustomizableText, () => Priv
|
|
|
31136
32108
|
* Input for defining a new theme
|
|
31137
32109
|
*/
|
|
31138
32110
|
const PrivacyCenterThemePartial = t.intersection([t.type({
|
|
32111
|
+
/** The display name of the theme */
|
|
31139
32112
|
name: t.string,
|
|
32113
|
+
/** The theme colors */
|
|
31140
32114
|
colors: PrivacyCenterConfigurableColorPalette
|
|
31141
32115
|
}), t.partial({
|
|
32116
|
+
/** Styles to apply to components */
|
|
31142
32117
|
componentStyles: PrivacyCenterComponentStyles,
|
|
32118
|
+
/** Override styles */
|
|
31143
32119
|
textStyles: PrivacyCenterTextStyles
|
|
31144
32120
|
})]);
|
|
31145
32121
|
//#endregion
|
|
31146
|
-
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, 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, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, 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, 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, OneTrustUserMetadata, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, 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, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, 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, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
32122
|
+
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, 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, 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, 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, OneTrustUserMetadata, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, 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, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, 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, UiVariantStatus, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
31147
32123
|
|
|
31148
32124
|
//# sourceMappingURL=index.mjs.map
|