@transcend-io/cli 6.8.0 → 6.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +8 -0
  2. package/build/codecs.d.ts +1824 -4
  3. package/build/codecs.d.ts.map +1 -1
  4. package/build/codecs.js +232 -2
  5. package/build/codecs.js.map +1 -1
  6. package/build/constants.d.ts.map +1 -1
  7. package/build/constants.js +6 -0
  8. package/build/constants.js.map +1 -1
  9. package/build/enums.d.ts +3 -1
  10. package/build/enums.d.ts.map +1 -1
  11. package/build/enums.js +2 -0
  12. package/build/enums.js.map +1 -1
  13. package/build/graphql/fetchAllAssessmentTemplates.d.ts +44 -0
  14. package/build/graphql/fetchAllAssessmentTemplates.d.ts.map +1 -0
  15. package/build/graphql/fetchAllAssessmentTemplates.js +31 -0
  16. package/build/graphql/fetchAllAssessmentTemplates.js.map +1 -0
  17. package/build/graphql/fetchAllAssessments.d.ts +309 -0
  18. package/build/graphql/fetchAllAssessments.d.ts.map +1 -0
  19. package/build/graphql/fetchAllAssessments.js +32 -0
  20. package/build/graphql/fetchAllAssessments.js.map +1 -0
  21. package/build/graphql/fetchAllRequestIdentifiers.d.ts +2 -2
  22. package/build/graphql/gqls/assessment.d.ts +3 -0
  23. package/build/graphql/gqls/assessment.d.ts.map +1 -0
  24. package/build/graphql/gqls/assessment.js +287 -0
  25. package/build/graphql/gqls/assessment.js.map +1 -0
  26. package/build/graphql/gqls/assessmentTemplate.d.ts +2 -0
  27. package/build/graphql/gqls/assessmentTemplate.d.ts.map +1 -0
  28. package/build/graphql/gqls/assessmentTemplate.js +70 -0
  29. package/build/graphql/gqls/assessmentTemplate.js.map +1 -0
  30. package/build/graphql/gqls/index.d.ts +2 -0
  31. package/build/graphql/gqls/index.d.ts.map +1 -1
  32. package/build/graphql/gqls/index.js +2 -0
  33. package/build/graphql/gqls/index.js.map +1 -1
  34. package/build/graphql/index.d.ts +4 -0
  35. package/build/graphql/index.d.ts.map +1 -1
  36. package/build/graphql/index.js +4 -0
  37. package/build/graphql/index.js.map +1 -1
  38. package/build/graphql/parseAssessmentDisplayLogic.d.ts +56 -0
  39. package/build/graphql/parseAssessmentDisplayLogic.d.ts.map +1 -0
  40. package/build/graphql/parseAssessmentDisplayLogic.js +62 -0
  41. package/build/graphql/parseAssessmentDisplayLogic.js.map +1 -0
  42. package/build/graphql/parseAssessmentRiskLogic.d.ts +27 -0
  43. package/build/graphql/parseAssessmentRiskLogic.d.ts.map +1 -0
  44. package/build/graphql/parseAssessmentRiskLogic.js +51 -0
  45. package/build/graphql/parseAssessmentRiskLogic.js.map +1 -0
  46. package/build/graphql/pullTranscendConfiguration.d.ts.map +1 -1
  47. package/build/graphql/pullTranscendConfiguration.js +220 -1
  48. package/build/graphql/pullTranscendConfiguration.js.map +1 -1
  49. package/build/requests/approvePrivacyRequests.d.ts.map +1 -1
  50. package/build/requests/approvePrivacyRequests.js +15 -4
  51. package/build/requests/approvePrivacyRequests.js.map +1 -1
  52. package/build/tsbuildinfo +1 -1
  53. package/package.json +2 -2
package/build/codecs.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as t from 'io-ts';
2
+ import { LogicOperator } from '@transcend-io/privacy-types';
2
3
  /**
3
4
  * Input to define email templates that can be used to communicate to end-users
4
5
  * about the status of their requests
@@ -41006,6 +41007,7 @@ export declare const PrivacyCenterInput: t.PartialC<{
41006
41007
  sideMenuText: t.StringC;
41007
41008
  primaryButton: t.StringC;
41008
41009
  secondaryButton: t.StringC;
41010
+ /** Type override */
41009
41011
  emailButton: t.StringC;
41010
41012
  emailContainer: t.StringC;
41011
41013
  hero: t.StringC;
@@ -41025,12 +41027,12 @@ export declare const PrivacyCenterInput: t.PartialC<{
41025
41027
  }>]>;
41026
41028
  fontFamilyBody: t.IntersectionC<[t.TypeC<{
41027
41029
  name: t.StringC;
41028
- url: t.StringC;
41030
+ url: t.StringC; /** Name of attribute value */
41029
41031
  }>, t.PartialC<{
41030
41032
  assets: t.ArrayC<t.TypeC<{
41031
41033
  name: t.StringC;
41032
41034
  url: t.StringC;
41033
- }>>;
41035
+ }>>; /** Color */
41034
41036
  }>]>;
41035
41037
  }>;
41036
41038
  }>;
@@ -47071,6 +47073,1197 @@ export declare const ActionItemInput: t.IntersectionC<[t.TypeC<{
47071
47073
  }>]>;
47072
47074
  /** Type override */
47073
47075
  export type ActionItemInput = t.TypeOf<typeof ActionItemInput>;
47076
+ export declare const AssessmentRuleInput: t.IntersectionC<[t.TypeC<{
47077
+ /** The reference id of the question whose answer is compared by this rule */
47078
+ 'depends-on-question-reference-id': t.StringC;
47079
+ /** The operator to use when comparing the question answer to the operands */
47080
+ 'comparison-operator': t.KeyofC<{
47081
+ IS_EQUAL_TO: unknown;
47082
+ IS_NOT_EQUAL_TO: unknown;
47083
+ IS_ONE_OF: unknown;
47084
+ IS_NOT_ONE_OF: unknown;
47085
+ CONTAINS: unknown;
47086
+ IS_SHOWN: unknown;
47087
+ IS_NOT_SHOWN: unknown;
47088
+ }>;
47089
+ }>, t.PartialC<{
47090
+ /** The values to compare the question answer to */
47091
+ 'comparison-operands': t.ArrayC<t.StringC>;
47092
+ }>]>;
47093
+ /** Type override */
47094
+ export type AssessmentRuleInput = t.TypeOf<typeof AssessmentRuleInput>;
47095
+ export interface AssessmentNestedRuleInput {
47096
+ /** The operator to use when comparing the nested rules */
47097
+ 'logic-operator': LogicOperator;
47098
+ /** The rules to evaluate and be compared with to other using the LogicOperator */
47099
+ rules?: AssessmentRuleInput[];
47100
+ /** The nested rules to add one more level of nesting to the rules. They are also compared to each other. */
47101
+ 'nested-rules'?: AssessmentNestedRuleInput[];
47102
+ }
47103
+ export declare const AssessmentNestedRuleInput: t.RecursiveType<t.Type<AssessmentNestedRuleInput>>;
47104
+ export declare const AssessmentDisplayLogicInput: t.IntersectionC<[t.TypeC<{
47105
+ /** The display logic type */
47106
+ action: t.KeyofC<{
47107
+ SHOW: unknown;
47108
+ SKIP: unknown;
47109
+ }>;
47110
+ }>, t.PartialC<{
47111
+ /** The rule to evaluate */
47112
+ rule: t.IntersectionC<[t.TypeC<{
47113
+ /** The reference id of the question whose answer is compared by this rule */
47114
+ 'depends-on-question-reference-id': t.StringC;
47115
+ /** The operator to use when comparing the question answer to the operands */
47116
+ 'comparison-operator': t.KeyofC<{
47117
+ IS_EQUAL_TO: unknown;
47118
+ IS_NOT_EQUAL_TO: unknown;
47119
+ IS_ONE_OF: unknown;
47120
+ IS_NOT_ONE_OF: unknown;
47121
+ CONTAINS: unknown;
47122
+ IS_SHOWN: unknown;
47123
+ IS_NOT_SHOWN: unknown;
47124
+ }>;
47125
+ }>, t.PartialC<{
47126
+ /** The values to compare the question answer to */
47127
+ 'comparison-operands': t.ArrayC<t.StringC>;
47128
+ }>]>;
47129
+ /** The nested rule to evaluate */
47130
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
47131
+ }>]>;
47132
+ /** Type override */
47133
+ export type AssessmentDisplayLogicInput = t.TypeOf<typeof AssessmentDisplayLogicInput>;
47134
+ export declare const RiskAssignmentInput: t.PartialC<{
47135
+ /** The risk level to assign to the question */
47136
+ 'risk-level': t.StringC;
47137
+ /** The risk matrix column to assign to a question. */
47138
+ 'risk-matrix-column': t.StringC;
47139
+ /** The risk matrix row to assign to a question. */
47140
+ 'risk-matrix-row': t.StringC;
47141
+ }>;
47142
+ /** Type override */
47143
+ export type RiskAssignmentInput = t.TypeOf<typeof RiskAssignmentInput>;
47144
+ export declare const RiskLogicInput: t.IntersectionC<[t.TypeC<{
47145
+ /** The values to compare */
47146
+ 'comparison-operands': t.ArrayC<t.StringC>;
47147
+ /** The operator */
47148
+ 'comparison-operator': t.KeyofC<{
47149
+ IS_EQUAL_TO: unknown;
47150
+ IS_NOT_EQUAL_TO: unknown;
47151
+ IS_ONE_OF: unknown;
47152
+ IS_NOT_ONE_OF: unknown;
47153
+ CONTAINS: unknown;
47154
+ IS_SHOWN: unknown;
47155
+ IS_NOT_SHOWN: unknown;
47156
+ }>;
47157
+ }>, t.PartialC<{
47158
+ /** The risk level to assign to the question */
47159
+ 'risk-level': t.StringC;
47160
+ }>]>;
47161
+ /** Type override */
47162
+ export type RiskLogicInput = t.TypeOf<typeof RiskLogicInput>;
47163
+ export declare const AssessmentAnswerOptionInput: t.TypeC<{
47164
+ /** Value of answer */
47165
+ value: t.StringC;
47166
+ }>;
47167
+ /** Type override */
47168
+ export type AssessmentAnswerOptionInput = t.TypeOf<typeof AssessmentAnswerOptionInput>;
47169
+ export declare const AssessmentSectionQuestionInput: t.IntersectionC<[t.TypeC<{
47170
+ /** The title of the assessment section question */
47171
+ title: t.StringC;
47172
+ /** The question type */
47173
+ type: t.KeyofC<{
47174
+ LONG_ANSWER_TEXT: unknown;
47175
+ SHORT_ANSWER_TEXT: unknown;
47176
+ SINGLE_SELECT: unknown;
47177
+ MULTI_SELECT: unknown;
47178
+ FILE: unknown;
47179
+ DESCRIPTION: unknown;
47180
+ }>;
47181
+ }>, t.PartialC<{
47182
+ /** The sub-type of the assessment question */
47183
+ 'sub-type': t.KeyofC<{
47184
+ NONE: unknown;
47185
+ CUSTOM: unknown;
47186
+ USER: unknown;
47187
+ TEAM: unknown;
47188
+ DATA_SUB_CATEGORY: unknown;
47189
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
47190
+ VENDOR: unknown;
47191
+ REGION: unknown;
47192
+ BUSINESS_ENTITY: unknown;
47193
+ SAA_S_CATEGORY: unknown;
47194
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47195
+ DEPRECATION_STATE: unknown;
47196
+ IDENTIFIER: unknown;
47197
+ DATA_SILO: unknown;
47198
+ RECOMMENDED_FOR_CONSENT: unknown;
47199
+ RECOMMENDED_FOR_PRIVACY: unknown;
47200
+ SUBJECT: unknown;
47201
+ RETENTION_TYPE: unknown;
47202
+ CONTROLLERSHIP: unknown;
47203
+ HAS_PERSONAL_DATA: unknown;
47204
+ ATTRIBUTE_KEY: unknown;
47205
+ }>;
47206
+ /** The question placeholder */
47207
+ placeholder: t.StringC;
47208
+ /** The question description */
47209
+ description: t.StringC;
47210
+ /** Whether an answer is required */
47211
+ 'is-required': t.BooleanC;
47212
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
47213
+ 'reference-id': t.StringC;
47214
+ /** Display logic for the question */
47215
+ 'display-logic': t.IntersectionC<[t.TypeC<{
47216
+ /** The display logic type */
47217
+ action: t.KeyofC<{
47218
+ SHOW: unknown;
47219
+ SKIP: unknown;
47220
+ }>;
47221
+ }>, t.PartialC<{
47222
+ /** The rule to evaluate */
47223
+ rule: t.IntersectionC<[t.TypeC<{
47224
+ /** The reference id of the question whose answer is compared by this rule */
47225
+ 'depends-on-question-reference-id': t.StringC;
47226
+ /** The operator to use when comparing the question answer to the operands */
47227
+ 'comparison-operator': t.KeyofC<{
47228
+ IS_EQUAL_TO: unknown;
47229
+ IS_NOT_EQUAL_TO: unknown;
47230
+ IS_ONE_OF: unknown;
47231
+ IS_NOT_ONE_OF: unknown;
47232
+ CONTAINS: unknown;
47233
+ IS_SHOWN: unknown;
47234
+ IS_NOT_SHOWN: unknown;
47235
+ }>;
47236
+ }>, t.PartialC<{
47237
+ /** The values to compare the question answer to */
47238
+ 'comparison-operands': t.ArrayC<t.StringC>;
47239
+ }>]>;
47240
+ /** The nested rule to evaluate */
47241
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
47242
+ }>]>;
47243
+ /** Risk logic for the question */
47244
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
47245
+ /** The values to compare */
47246
+ 'comparison-operands': t.ArrayC<t.StringC>;
47247
+ /** The operator */
47248
+ 'comparison-operator': t.KeyofC<{
47249
+ IS_EQUAL_TO: unknown;
47250
+ IS_NOT_EQUAL_TO: unknown;
47251
+ IS_ONE_OF: unknown;
47252
+ IS_NOT_ONE_OF: unknown;
47253
+ CONTAINS: unknown;
47254
+ IS_SHOWN: unknown;
47255
+ IS_NOT_SHOWN: unknown;
47256
+ }>;
47257
+ }>, t.PartialC<{
47258
+ /** The risk level to assign to the question */
47259
+ 'risk-level': t.StringC;
47260
+ }>]>>;
47261
+ /** Risk category titles for the question */
47262
+ 'risk-categories': t.ArrayC<t.StringC>;
47263
+ /** Risk framework titles for the question */
47264
+ 'risk-framework': t.StringC;
47265
+ /** Answer options for the question */
47266
+ 'answer-options': t.ArrayC<t.TypeC<{
47267
+ /** Value of answer */
47268
+ value: t.StringC;
47269
+ }>>;
47270
+ /** Allowed MIME types for the question */
47271
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
47272
+ /** Allow selecting other options */
47273
+ 'allow-select-other': t.BooleanC;
47274
+ /** Sync model for the question */
47275
+ 'sync-model': t.KeyofC<{
47276
+ businessEntity: unknown;
47277
+ dataSilo: unknown;
47278
+ subDataPoint: unknown;
47279
+ vendor: unknown;
47280
+ dataSubCategory: unknown;
47281
+ processingPurposeSubCategory: unknown;
47282
+ }>;
47283
+ /** Sync column for the question */
47284
+ 'sync-column': t.KeyofC<{
47285
+ URL: unknown;
47286
+ REGEX: unknown;
47287
+ DESCRIPTION: unknown;
47288
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47289
+ DEPRECATION_STATE: unknown;
47290
+ RECOMMENDED_FOR_CONSENT: unknown;
47291
+ RECOMMENDED_FOR_PRIVACY: unknown;
47292
+ RETENTION_TYPE: unknown;
47293
+ CONTROLLERSHIP: unknown;
47294
+ HAS_PERSONAL_DATA: unknown;
47295
+ CONNECT_START_TIME: unknown;
47296
+ CONNECTION_STATE: unknown;
47297
+ CONTACT_EMAIL: unknown;
47298
+ CONTACT_NAME: unknown;
47299
+ COUNTRY: unknown;
47300
+ COUNTRY_SUB_DIVISION: unknown;
47301
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
47302
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
47303
+ DATA_RETENTION_NOTE: unknown;
47304
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
47305
+ DELETED_AT: unknown;
47306
+ EMAIL_SENDING_LOCK: unknown;
47307
+ EXPIRED_AT: unknown;
47308
+ EXTERNAL_ID: unknown;
47309
+ HEADERS: unknown;
47310
+ IS_LIVE: unknown;
47311
+ LAST_CONNECTED_AT: unknown;
47312
+ LAST_ENABLED_AT: unknown;
47313
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
47314
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
47315
+ MANUAL_WORK_RETRY_START_AT: unknown;
47316
+ NOTES: unknown;
47317
+ NOTIFY_EMAIL_ADDRESS: unknown;
47318
+ NOTIFY_WEBHOOK_URL: unknown;
47319
+ OUTER_TYPE: unknown;
47320
+ PLAINTEXT_CONTEXT: unknown;
47321
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
47322
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
47323
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
47324
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
47325
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
47326
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
47327
+ RECONNECT_FORM_ITEMS: unknown;
47328
+ SAAS_CONTEXT: unknown;
47329
+ SECRET_HEADERS: unknown;
47330
+ SLUG: unknown;
47331
+ SUBDOMAIN: unknown;
47332
+ TITLE: unknown;
47333
+ TYPE: unknown;
47334
+ WEBSITE_URL: unknown;
47335
+ TRANSFER_REGIONS: unknown;
47336
+ CONTROLLERSHIPS: unknown;
47337
+ NAME: unknown;
47338
+ DATA_POINT_ID: unknown;
47339
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
47340
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
47341
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
47342
+ LAST_CLASSIFIED_AT: unknown;
47343
+ LAST_RUN_AT: unknown;
47344
+ ERROR: unknown;
47345
+ ERROR_COUNT: unknown;
47346
+ CONTEXT: unknown;
47347
+ CONTENT_CLASSIFICATION_STATUS: unknown;
47348
+ NON_NULL_CHECK_COMPLETED: unknown;
47349
+ RETENTION_PERIOD: unknown;
47350
+ SCAN_RUN_ID: unknown;
47351
+ DATA_TYPE: unknown;
47352
+ ENCRYPTION: unknown;
47353
+ IS_PRIMARY_KEY: unknown;
47354
+ CONTACT_PHONE: unknown;
47355
+ ADDRESS: unknown;
47356
+ HEADQUARTER_COUNTRY: unknown;
47357
+ HEADQUARTER_SUB_DIVISION: unknown;
47358
+ PRIVACY_POLICY_URL: unknown;
47359
+ CATEGORY: unknown;
47360
+ IS_DEFAULT: unknown;
47361
+ PURPOSE: unknown;
47362
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
47363
+ DATA_PROTECTION_OFFICER_NAME: unknown;
47364
+ }>;
47365
+ /** Attribute key / custom field name for the question */
47366
+ 'attribute-key': t.StringC;
47367
+ /** Require risk evaluation for the question */
47368
+ 'require-risk-evaluation': t.BooleanC;
47369
+ /** Require risk matrix evaluation for the question */
47370
+ 'require-risk-matrix-evaluation': t.BooleanC;
47371
+ }>]>;
47372
+ /** Type override */
47373
+ export type AssessmentSectionQuestionInput = t.TypeOf<typeof AssessmentSectionQuestionInput>;
47374
+ export declare const AssessmentSectionInput: t.IntersectionC<[t.TypeC<{
47375
+ /** The title of the assessment section */
47376
+ title: t.StringC;
47377
+ /** The questions in the assessment section */
47378
+ questions: t.ArrayC<t.IntersectionC<[t.TypeC<{
47379
+ /** The title of the assessment section question */
47380
+ title: t.StringC;
47381
+ /** The question type */
47382
+ type: t.KeyofC<{
47383
+ LONG_ANSWER_TEXT: unknown;
47384
+ SHORT_ANSWER_TEXT: unknown;
47385
+ SINGLE_SELECT: unknown;
47386
+ MULTI_SELECT: unknown;
47387
+ FILE: unknown;
47388
+ DESCRIPTION: unknown;
47389
+ }>;
47390
+ }>, t.PartialC<{
47391
+ /** The sub-type of the assessment question */
47392
+ 'sub-type': t.KeyofC<{
47393
+ NONE: unknown;
47394
+ CUSTOM: unknown;
47395
+ USER: unknown;
47396
+ TEAM: unknown;
47397
+ DATA_SUB_CATEGORY: unknown;
47398
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
47399
+ VENDOR: unknown;
47400
+ REGION: unknown;
47401
+ BUSINESS_ENTITY: unknown;
47402
+ SAA_S_CATEGORY: unknown;
47403
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47404
+ DEPRECATION_STATE: unknown;
47405
+ IDENTIFIER: unknown;
47406
+ DATA_SILO: unknown;
47407
+ RECOMMENDED_FOR_CONSENT: unknown;
47408
+ RECOMMENDED_FOR_PRIVACY: unknown;
47409
+ SUBJECT: unknown;
47410
+ RETENTION_TYPE: unknown;
47411
+ CONTROLLERSHIP: unknown;
47412
+ HAS_PERSONAL_DATA: unknown;
47413
+ ATTRIBUTE_KEY: unknown;
47414
+ }>;
47415
+ /** The question placeholder */
47416
+ placeholder: t.StringC;
47417
+ /** The question description */
47418
+ description: t.StringC;
47419
+ /** Whether an answer is required */
47420
+ 'is-required': t.BooleanC;
47421
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
47422
+ 'reference-id': t.StringC;
47423
+ /** Display logic for the question */
47424
+ 'display-logic': t.IntersectionC<[t.TypeC<{
47425
+ /** The display logic type */
47426
+ action: t.KeyofC<{
47427
+ SHOW: unknown;
47428
+ SKIP: unknown;
47429
+ }>;
47430
+ }>, t.PartialC<{
47431
+ /** The rule to evaluate */
47432
+ rule: t.IntersectionC<[t.TypeC<{
47433
+ /** The reference id of the question whose answer is compared by this rule */
47434
+ 'depends-on-question-reference-id': t.StringC;
47435
+ /** The operator to use when comparing the question answer to the operands */
47436
+ 'comparison-operator': t.KeyofC<{
47437
+ IS_EQUAL_TO: unknown;
47438
+ IS_NOT_EQUAL_TO: unknown;
47439
+ IS_ONE_OF: unknown;
47440
+ IS_NOT_ONE_OF: unknown;
47441
+ CONTAINS: unknown;
47442
+ IS_SHOWN: unknown;
47443
+ IS_NOT_SHOWN: unknown;
47444
+ }>;
47445
+ }>, t.PartialC<{
47446
+ /** The values to compare the question answer to */
47447
+ 'comparison-operands': t.ArrayC<t.StringC>;
47448
+ }>]>;
47449
+ /** The nested rule to evaluate */
47450
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
47451
+ }>]>;
47452
+ /** Risk logic for the question */
47453
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
47454
+ /** The values to compare */
47455
+ 'comparison-operands': t.ArrayC<t.StringC>;
47456
+ /** The operator */
47457
+ 'comparison-operator': t.KeyofC<{
47458
+ IS_EQUAL_TO: unknown;
47459
+ IS_NOT_EQUAL_TO: unknown;
47460
+ IS_ONE_OF: unknown;
47461
+ IS_NOT_ONE_OF: unknown;
47462
+ CONTAINS: unknown;
47463
+ IS_SHOWN: unknown;
47464
+ IS_NOT_SHOWN: unknown;
47465
+ }>;
47466
+ }>, t.PartialC<{
47467
+ /** The risk level to assign to the question */
47468
+ 'risk-level': t.StringC;
47469
+ }>]>>;
47470
+ /** Risk category titles for the question */
47471
+ 'risk-categories': t.ArrayC<t.StringC>;
47472
+ /** Risk framework titles for the question */
47473
+ 'risk-framework': t.StringC;
47474
+ /** Answer options for the question */
47475
+ 'answer-options': t.ArrayC<t.TypeC<{
47476
+ /** Value of answer */
47477
+ value: t.StringC;
47478
+ }>>;
47479
+ /** Allowed MIME types for the question */
47480
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
47481
+ /** Allow selecting other options */
47482
+ 'allow-select-other': t.BooleanC;
47483
+ /** Sync model for the question */
47484
+ 'sync-model': t.KeyofC<{
47485
+ businessEntity: unknown;
47486
+ dataSilo: unknown;
47487
+ subDataPoint: unknown;
47488
+ vendor: unknown;
47489
+ dataSubCategory: unknown;
47490
+ processingPurposeSubCategory: unknown;
47491
+ }>;
47492
+ /** Sync column for the question */
47493
+ 'sync-column': t.KeyofC<{
47494
+ URL: unknown;
47495
+ REGEX: unknown;
47496
+ DESCRIPTION: unknown;
47497
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47498
+ DEPRECATION_STATE: unknown;
47499
+ RECOMMENDED_FOR_CONSENT: unknown;
47500
+ RECOMMENDED_FOR_PRIVACY: unknown;
47501
+ RETENTION_TYPE: unknown;
47502
+ CONTROLLERSHIP: unknown;
47503
+ HAS_PERSONAL_DATA: unknown;
47504
+ CONNECT_START_TIME: unknown;
47505
+ CONNECTION_STATE: unknown;
47506
+ CONTACT_EMAIL: unknown;
47507
+ CONTACT_NAME: unknown;
47508
+ COUNTRY: unknown;
47509
+ COUNTRY_SUB_DIVISION: unknown;
47510
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
47511
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
47512
+ DATA_RETENTION_NOTE: unknown;
47513
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
47514
+ DELETED_AT: unknown;
47515
+ EMAIL_SENDING_LOCK: unknown;
47516
+ EXPIRED_AT: unknown;
47517
+ EXTERNAL_ID: unknown;
47518
+ HEADERS: unknown;
47519
+ IS_LIVE: unknown;
47520
+ LAST_CONNECTED_AT: unknown;
47521
+ LAST_ENABLED_AT: unknown;
47522
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
47523
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
47524
+ MANUAL_WORK_RETRY_START_AT: unknown;
47525
+ NOTES: unknown;
47526
+ NOTIFY_EMAIL_ADDRESS: unknown;
47527
+ NOTIFY_WEBHOOK_URL: unknown;
47528
+ OUTER_TYPE: unknown;
47529
+ PLAINTEXT_CONTEXT: unknown;
47530
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
47531
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
47532
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
47533
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
47534
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
47535
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
47536
+ RECONNECT_FORM_ITEMS: unknown;
47537
+ SAAS_CONTEXT: unknown;
47538
+ SECRET_HEADERS: unknown;
47539
+ SLUG: unknown;
47540
+ SUBDOMAIN: unknown;
47541
+ TITLE: unknown;
47542
+ TYPE: unknown;
47543
+ WEBSITE_URL: unknown;
47544
+ TRANSFER_REGIONS: unknown;
47545
+ CONTROLLERSHIPS: unknown;
47546
+ NAME: unknown;
47547
+ DATA_POINT_ID: unknown;
47548
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
47549
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
47550
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
47551
+ LAST_CLASSIFIED_AT: unknown;
47552
+ LAST_RUN_AT: unknown;
47553
+ ERROR: unknown;
47554
+ ERROR_COUNT: unknown;
47555
+ CONTEXT: unknown;
47556
+ CONTENT_CLASSIFICATION_STATUS: unknown;
47557
+ NON_NULL_CHECK_COMPLETED: unknown;
47558
+ RETENTION_PERIOD: unknown;
47559
+ SCAN_RUN_ID: unknown;
47560
+ DATA_TYPE: unknown;
47561
+ ENCRYPTION: unknown;
47562
+ IS_PRIMARY_KEY: unknown;
47563
+ CONTACT_PHONE: unknown;
47564
+ ADDRESS: unknown;
47565
+ HEADQUARTER_COUNTRY: unknown;
47566
+ HEADQUARTER_SUB_DIVISION: unknown;
47567
+ PRIVACY_POLICY_URL: unknown;
47568
+ CATEGORY: unknown;
47569
+ IS_DEFAULT: unknown;
47570
+ PURPOSE: unknown;
47571
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
47572
+ DATA_PROTECTION_OFFICER_NAME: unknown;
47573
+ }>;
47574
+ /** Attribute key / custom field name for the question */
47575
+ 'attribute-key': t.StringC;
47576
+ /** Require risk evaluation for the question */
47577
+ 'require-risk-evaluation': t.BooleanC;
47578
+ /** Require risk matrix evaluation for the question */
47579
+ 'require-risk-matrix-evaluation': t.BooleanC;
47580
+ }>]>>;
47581
+ }>, t.PartialC<{
47582
+ /** Email address of those assigned */
47583
+ assignees: t.ArrayC<t.StringC>;
47584
+ /** Email address of those externally assigned */
47585
+ 'external-assignees': t.ArrayC<t.StringC>;
47586
+ /** Status of section */
47587
+ status: t.StringC;
47588
+ /** Whether assessment is reviewed */
47589
+ 'is-reviewed': t.BooleanC;
47590
+ }>]>;
47591
+ /** Type override */
47592
+ export type AssessmentSectionInput = t.TypeOf<typeof AssessmentSectionInput>;
47593
+ export declare const AssessmentRetentionScheduleInput: t.TypeC<{
47594
+ /** The retention schedule type */
47595
+ type: t.KeyofC<{
47596
+ REQUESTS_CREATED_AT: unknown;
47597
+ ASSESSMENT_FORM_COMPLETED_AT: unknown;
47598
+ }>;
47599
+ /** The duration of the retention schedule in days */
47600
+ 'duration-days': t.NumberC;
47601
+ /** The operation to perform on the retention schedule */
47602
+ operand: t.KeyofC<{
47603
+ FULL_DELETE: unknown;
47604
+ PARTIAL_DELETE: unknown;
47605
+ NONE: unknown;
47606
+ }>;
47607
+ }>;
47608
+ /** Type override */
47609
+ export type AssessmentRetentionScheduleInput = t.TypeOf<typeof AssessmentRetentionScheduleInput>;
47610
+ export declare const AssessmentTemplateInput: t.IntersectionC<[t.TypeC<{
47611
+ /** The title of the assessment template */
47612
+ title: t.StringC;
47613
+ }>, t.PartialC<{
47614
+ /** The Assessment sections under this assessment template */
47615
+ sections: t.ArrayC<t.IntersectionC<[t.TypeC<{
47616
+ /** The title of the assessment section */
47617
+ title: t.StringC;
47618
+ /** The questions in the assessment section */
47619
+ questions: t.ArrayC<t.IntersectionC<[t.TypeC<{
47620
+ /** The title of the assessment section question */
47621
+ title: t.StringC;
47622
+ /** The question type */
47623
+ type: t.KeyofC<{
47624
+ LONG_ANSWER_TEXT: unknown;
47625
+ SHORT_ANSWER_TEXT: unknown;
47626
+ SINGLE_SELECT: unknown;
47627
+ MULTI_SELECT: unknown;
47628
+ FILE: unknown;
47629
+ DESCRIPTION: unknown;
47630
+ }>;
47631
+ }>, t.PartialC<{
47632
+ /** The sub-type of the assessment question */
47633
+ 'sub-type': t.KeyofC<{
47634
+ NONE: unknown;
47635
+ CUSTOM: unknown;
47636
+ USER: unknown;
47637
+ TEAM: unknown;
47638
+ DATA_SUB_CATEGORY: unknown;
47639
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
47640
+ VENDOR: unknown;
47641
+ REGION: unknown;
47642
+ BUSINESS_ENTITY: unknown;
47643
+ SAA_S_CATEGORY: unknown;
47644
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47645
+ DEPRECATION_STATE: unknown;
47646
+ IDENTIFIER: unknown;
47647
+ DATA_SILO: unknown;
47648
+ RECOMMENDED_FOR_CONSENT: unknown;
47649
+ RECOMMENDED_FOR_PRIVACY: unknown;
47650
+ SUBJECT: unknown;
47651
+ RETENTION_TYPE: unknown;
47652
+ CONTROLLERSHIP: unknown;
47653
+ HAS_PERSONAL_DATA: unknown;
47654
+ ATTRIBUTE_KEY: unknown;
47655
+ }>;
47656
+ /** The question placeholder */
47657
+ placeholder: t.StringC;
47658
+ /** The question description */
47659
+ description: t.StringC;
47660
+ /** Whether an answer is required */
47661
+ 'is-required': t.BooleanC;
47662
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
47663
+ 'reference-id': t.StringC;
47664
+ /** Display logic for the question */
47665
+ 'display-logic': t.IntersectionC<[t.TypeC<{
47666
+ /** The display logic type */
47667
+ action: t.KeyofC<{
47668
+ SHOW: unknown;
47669
+ SKIP: unknown;
47670
+ }>;
47671
+ }>, t.PartialC<{
47672
+ /** The rule to evaluate */
47673
+ rule: t.IntersectionC<[t.TypeC<{
47674
+ /** The reference id of the question whose answer is compared by this rule */
47675
+ 'depends-on-question-reference-id': t.StringC;
47676
+ /** The operator to use when comparing the question answer to the operands */
47677
+ 'comparison-operator': t.KeyofC<{
47678
+ IS_EQUAL_TO: unknown;
47679
+ IS_NOT_EQUAL_TO: unknown;
47680
+ IS_ONE_OF: unknown;
47681
+ IS_NOT_ONE_OF: unknown;
47682
+ CONTAINS: unknown;
47683
+ IS_SHOWN: unknown;
47684
+ IS_NOT_SHOWN: unknown;
47685
+ }>;
47686
+ }>, t.PartialC<{
47687
+ /** The values to compare the question answer to */
47688
+ 'comparison-operands': t.ArrayC<t.StringC>;
47689
+ }>]>;
47690
+ /** The nested rule to evaluate */
47691
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
47692
+ }>]>;
47693
+ /** Risk logic for the question */
47694
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
47695
+ /** The values to compare */
47696
+ 'comparison-operands': t.ArrayC<t.StringC>;
47697
+ /** The operator */
47698
+ 'comparison-operator': t.KeyofC<{
47699
+ IS_EQUAL_TO: unknown;
47700
+ IS_NOT_EQUAL_TO: unknown;
47701
+ IS_ONE_OF: unknown;
47702
+ IS_NOT_ONE_OF: unknown;
47703
+ CONTAINS: unknown;
47704
+ IS_SHOWN: unknown;
47705
+ IS_NOT_SHOWN: unknown;
47706
+ }>;
47707
+ }>, t.PartialC<{
47708
+ /** The risk level to assign to the question */
47709
+ 'risk-level': t.StringC;
47710
+ }>]>>;
47711
+ /** Risk category titles for the question */
47712
+ 'risk-categories': t.ArrayC<t.StringC>;
47713
+ /** Risk framework titles for the question */
47714
+ 'risk-framework': t.StringC;
47715
+ /** Answer options for the question */
47716
+ 'answer-options': t.ArrayC<t.TypeC<{
47717
+ /** Value of answer */
47718
+ value: t.StringC;
47719
+ }>>;
47720
+ /** Allowed MIME types for the question */
47721
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
47722
+ /** Allow selecting other options */
47723
+ 'allow-select-other': t.BooleanC;
47724
+ /** Sync model for the question */
47725
+ 'sync-model': t.KeyofC<{
47726
+ businessEntity: unknown;
47727
+ dataSilo: unknown;
47728
+ subDataPoint: unknown;
47729
+ vendor: unknown;
47730
+ dataSubCategory: unknown;
47731
+ processingPurposeSubCategory: unknown;
47732
+ }>;
47733
+ /** Sync column for the question */
47734
+ 'sync-column': t.KeyofC<{
47735
+ URL: unknown;
47736
+ REGEX: unknown;
47737
+ DESCRIPTION: unknown;
47738
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47739
+ DEPRECATION_STATE: unknown;
47740
+ RECOMMENDED_FOR_CONSENT: unknown;
47741
+ RECOMMENDED_FOR_PRIVACY: unknown;
47742
+ RETENTION_TYPE: unknown;
47743
+ CONTROLLERSHIP: unknown;
47744
+ HAS_PERSONAL_DATA: unknown;
47745
+ CONNECT_START_TIME: unknown;
47746
+ CONNECTION_STATE: unknown;
47747
+ CONTACT_EMAIL: unknown;
47748
+ CONTACT_NAME: unknown;
47749
+ COUNTRY: unknown;
47750
+ COUNTRY_SUB_DIVISION: unknown;
47751
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
47752
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
47753
+ DATA_RETENTION_NOTE: unknown;
47754
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
47755
+ DELETED_AT: unknown;
47756
+ EMAIL_SENDING_LOCK: unknown;
47757
+ EXPIRED_AT: unknown;
47758
+ EXTERNAL_ID: unknown;
47759
+ HEADERS: unknown;
47760
+ IS_LIVE: unknown;
47761
+ LAST_CONNECTED_AT: unknown;
47762
+ LAST_ENABLED_AT: unknown;
47763
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
47764
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
47765
+ MANUAL_WORK_RETRY_START_AT: unknown;
47766
+ NOTES: unknown;
47767
+ NOTIFY_EMAIL_ADDRESS: unknown;
47768
+ NOTIFY_WEBHOOK_URL: unknown;
47769
+ OUTER_TYPE: unknown;
47770
+ PLAINTEXT_CONTEXT: unknown;
47771
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
47772
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
47773
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
47774
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
47775
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
47776
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
47777
+ RECONNECT_FORM_ITEMS: unknown;
47778
+ SAAS_CONTEXT: unknown;
47779
+ SECRET_HEADERS: unknown;
47780
+ SLUG: unknown;
47781
+ SUBDOMAIN: unknown;
47782
+ TITLE: unknown;
47783
+ TYPE: unknown;
47784
+ WEBSITE_URL: unknown;
47785
+ TRANSFER_REGIONS: unknown;
47786
+ CONTROLLERSHIPS: unknown;
47787
+ NAME: unknown;
47788
+ DATA_POINT_ID: unknown;
47789
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
47790
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
47791
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
47792
+ LAST_CLASSIFIED_AT: unknown;
47793
+ LAST_RUN_AT: unknown;
47794
+ ERROR: unknown;
47795
+ ERROR_COUNT: unknown;
47796
+ CONTEXT: unknown;
47797
+ CONTENT_CLASSIFICATION_STATUS: unknown;
47798
+ NON_NULL_CHECK_COMPLETED: unknown;
47799
+ RETENTION_PERIOD: unknown;
47800
+ SCAN_RUN_ID: unknown;
47801
+ DATA_TYPE: unknown;
47802
+ ENCRYPTION: unknown;
47803
+ IS_PRIMARY_KEY: unknown;
47804
+ CONTACT_PHONE: unknown;
47805
+ ADDRESS: unknown;
47806
+ HEADQUARTER_COUNTRY: unknown;
47807
+ HEADQUARTER_SUB_DIVISION: unknown;
47808
+ PRIVACY_POLICY_URL: unknown;
47809
+ CATEGORY: unknown;
47810
+ IS_DEFAULT: unknown;
47811
+ PURPOSE: unknown;
47812
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
47813
+ DATA_PROTECTION_OFFICER_NAME: unknown;
47814
+ }>;
47815
+ /** Attribute key / custom field name for the question */
47816
+ 'attribute-key': t.StringC;
47817
+ /** Require risk evaluation for the question */
47818
+ 'require-risk-evaluation': t.BooleanC;
47819
+ /** Require risk matrix evaluation for the question */
47820
+ 'require-risk-matrix-evaluation': t.BooleanC;
47821
+ }>]>>;
47822
+ }>, t.PartialC<{
47823
+ /** Email address of those assigned */
47824
+ assignees: t.ArrayC<t.StringC>;
47825
+ /** Email address of those externally assigned */
47826
+ 'external-assignees': t.ArrayC<t.StringC>;
47827
+ /** Status of section */
47828
+ status: t.StringC;
47829
+ /** Whether assessment is reviewed */
47830
+ 'is-reviewed': t.BooleanC;
47831
+ }>]>>;
47832
+ /** Description of assessment template */
47833
+ description: t.StringC;
47834
+ /** The status of the assessment */
47835
+ status: t.KeyofC<{
47836
+ DRAFT: unknown;
47837
+ PUBLISHED: unknown;
47838
+ }>;
47839
+ /** The source of the assessment */
47840
+ source: t.KeyofC<{
47841
+ MANUAL: unknown;
47842
+ DATA_INVENTORY: unknown;
47843
+ IMPORT: unknown;
47844
+ }>;
47845
+ /** The email of the user that created the assessment */
47846
+ creator: t.StringC;
47847
+ /** Whether the template is in a locked status */
47848
+ locked: t.BooleanC;
47849
+ /** ID of parent template this was cloned from */
47850
+ 'parent-id': t.StringC;
47851
+ /** Whether the template is archived */
47852
+ archived: t.BooleanC;
47853
+ /** The date that the assessment was created */
47854
+ 'created-at': t.StringC;
47855
+ /** The names of the custom fields associated to this assessment template */
47856
+ 'attribute-keys': t.ArrayC<t.StringC>;
47857
+ /** The retention schedule configuration */
47858
+ 'retention-schedule': t.TypeC<{
47859
+ /** The retention schedule type */
47860
+ type: t.KeyofC<{
47861
+ REQUESTS_CREATED_AT: unknown;
47862
+ ASSESSMENT_FORM_COMPLETED_AT: unknown;
47863
+ }>;
47864
+ /** The duration of the retention schedule in days */
47865
+ 'duration-days': t.NumberC;
47866
+ /** The operation to perform on the retention schedule */
47867
+ operand: t.KeyofC<{
47868
+ FULL_DELETE: unknown;
47869
+ PARTIAL_DELETE: unknown;
47870
+ NONE: unknown;
47871
+ }>;
47872
+ }>;
47873
+ /** The titles of the email templates used in the assessment template */
47874
+ templates: t.ArrayC<t.StringC>;
47875
+ }>]>;
47876
+ /** Type override */
47877
+ export type AssessmentTemplateInput = t.TypeOf<typeof AssessmentTemplateInput>;
47878
+ export declare const AssessmentResourceInput: t.TypeC<{
47879
+ /** The title of the resource */
47880
+ title: t.StringC;
47881
+ /** The type of the resource */
47882
+ type: t.KeyofC<{
47883
+ actionItem: unknown;
47884
+ airgapCookie: unknown;
47885
+ airgapDataFlow: unknown;
47886
+ assessmentForm: unknown;
47887
+ assessmentGroup: unknown;
47888
+ auditorRun: unknown;
47889
+ auditorSchedule: unknown;
47890
+ businessEntity: unknown;
47891
+ dataSubCategory: unknown;
47892
+ dataPoint: unknown;
47893
+ dataPointLevel: unknown;
47894
+ dataSilo: unknown;
47895
+ enricher: unknown;
47896
+ identifier: unknown;
47897
+ legalHold: unknown;
47898
+ legalMatter: unknown;
47899
+ processingPurposeSubCategory: unknown;
47900
+ prompt: unknown;
47901
+ promptGroup: unknown;
47902
+ promptRun: unknown;
47903
+ request: unknown;
47904
+ subject: unknown;
47905
+ subDataPoint: unknown;
47906
+ vendor: unknown;
47907
+ }>;
47908
+ }>;
47909
+ /** Type override */
47910
+ export type AssessmentResourceInput = t.TypeOf<typeof AssessmentResourceInput>;
47911
+ export declare const AssessmentInput: t.IntersectionC<[t.TypeC<{
47912
+ /** The title of the assessment */
47913
+ title: t.StringC;
47914
+ /** The title of the assessment group */
47915
+ group: t.StringC;
47916
+ }>, t.PartialC<{
47917
+ /** The assessment sections */
47918
+ sections: t.ArrayC<t.IntersectionC<[t.TypeC<{
47919
+ /** The title of the assessment section */
47920
+ title: t.StringC;
47921
+ /** The questions in the assessment section */
47922
+ questions: t.ArrayC<t.IntersectionC<[t.TypeC<{
47923
+ /** The title of the assessment section question */
47924
+ title: t.StringC;
47925
+ /** The question type */
47926
+ type: t.KeyofC<{
47927
+ LONG_ANSWER_TEXT: unknown;
47928
+ SHORT_ANSWER_TEXT: unknown;
47929
+ SINGLE_SELECT: unknown;
47930
+ MULTI_SELECT: unknown;
47931
+ FILE: unknown;
47932
+ DESCRIPTION: unknown;
47933
+ }>;
47934
+ }>, t.PartialC<{
47935
+ /** The sub-type of the assessment question */
47936
+ 'sub-type': t.KeyofC<{
47937
+ NONE: unknown;
47938
+ CUSTOM: unknown;
47939
+ USER: unknown;
47940
+ TEAM: unknown;
47941
+ DATA_SUB_CATEGORY: unknown;
47942
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
47943
+ VENDOR: unknown;
47944
+ REGION: unknown;
47945
+ BUSINESS_ENTITY: unknown;
47946
+ SAA_S_CATEGORY: unknown;
47947
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
47948
+ DEPRECATION_STATE: unknown;
47949
+ IDENTIFIER: unknown;
47950
+ DATA_SILO: unknown;
47951
+ RECOMMENDED_FOR_CONSENT: unknown;
47952
+ RECOMMENDED_FOR_PRIVACY: unknown;
47953
+ SUBJECT: unknown;
47954
+ RETENTION_TYPE: unknown;
47955
+ CONTROLLERSHIP: unknown;
47956
+ HAS_PERSONAL_DATA: unknown;
47957
+ ATTRIBUTE_KEY: unknown;
47958
+ }>;
47959
+ /** The question placeholder */
47960
+ placeholder: t.StringC;
47961
+ /** The question description */
47962
+ description: t.StringC;
47963
+ /** Whether an answer is required */
47964
+ 'is-required': t.BooleanC;
47965
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
47966
+ 'reference-id': t.StringC;
47967
+ /** Display logic for the question */
47968
+ 'display-logic': t.IntersectionC<[t.TypeC<{
47969
+ /** The display logic type */
47970
+ action: t.KeyofC<{
47971
+ SHOW: unknown;
47972
+ SKIP: unknown;
47973
+ }>;
47974
+ }>, t.PartialC<{
47975
+ /** The rule to evaluate */
47976
+ rule: t.IntersectionC<[t.TypeC<{
47977
+ /** The reference id of the question whose answer is compared by this rule */
47978
+ 'depends-on-question-reference-id': t.StringC;
47979
+ /** The operator to use when comparing the question answer to the operands */
47980
+ 'comparison-operator': t.KeyofC<{
47981
+ IS_EQUAL_TO: unknown;
47982
+ IS_NOT_EQUAL_TO: unknown;
47983
+ IS_ONE_OF: unknown;
47984
+ IS_NOT_ONE_OF: unknown;
47985
+ CONTAINS: unknown;
47986
+ IS_SHOWN: unknown;
47987
+ IS_NOT_SHOWN: unknown;
47988
+ }>;
47989
+ }>, t.PartialC<{
47990
+ /** The values to compare the question answer to */
47991
+ 'comparison-operands': t.ArrayC<t.StringC>;
47992
+ }>]>;
47993
+ /** The nested rule to evaluate */
47994
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
47995
+ }>]>;
47996
+ /** Risk logic for the question */
47997
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
47998
+ /** The values to compare */
47999
+ 'comparison-operands': t.ArrayC<t.StringC>;
48000
+ /** The operator */
48001
+ 'comparison-operator': t.KeyofC<{
48002
+ IS_EQUAL_TO: unknown;
48003
+ IS_NOT_EQUAL_TO: unknown;
48004
+ IS_ONE_OF: unknown;
48005
+ IS_NOT_ONE_OF: unknown;
48006
+ CONTAINS: unknown;
48007
+ IS_SHOWN: unknown;
48008
+ IS_NOT_SHOWN: unknown;
48009
+ }>;
48010
+ }>, t.PartialC<{
48011
+ /** The risk level to assign to the question */
48012
+ 'risk-level': t.StringC;
48013
+ }>]>>;
48014
+ /** Risk category titles for the question */
48015
+ 'risk-categories': t.ArrayC<t.StringC>;
48016
+ /** Risk framework titles for the question */
48017
+ 'risk-framework': t.StringC;
48018
+ /** Answer options for the question */
48019
+ 'answer-options': t.ArrayC<t.TypeC<{
48020
+ /** Value of answer */
48021
+ value: t.StringC;
48022
+ }>>;
48023
+ /** Allowed MIME types for the question */
48024
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
48025
+ /** Allow selecting other options */
48026
+ 'allow-select-other': t.BooleanC;
48027
+ /** Sync model for the question */
48028
+ 'sync-model': t.KeyofC<{
48029
+ businessEntity: unknown;
48030
+ dataSilo: unknown;
48031
+ subDataPoint: unknown;
48032
+ vendor: unknown;
48033
+ dataSubCategory: unknown;
48034
+ processingPurposeSubCategory: unknown;
48035
+ }>;
48036
+ /** Sync column for the question */
48037
+ 'sync-column': t.KeyofC<{
48038
+ URL: unknown;
48039
+ REGEX: unknown;
48040
+ DESCRIPTION: unknown;
48041
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
48042
+ DEPRECATION_STATE: unknown;
48043
+ RECOMMENDED_FOR_CONSENT: unknown;
48044
+ RECOMMENDED_FOR_PRIVACY: unknown;
48045
+ RETENTION_TYPE: unknown;
48046
+ CONTROLLERSHIP: unknown;
48047
+ HAS_PERSONAL_DATA: unknown;
48048
+ CONNECT_START_TIME: unknown;
48049
+ CONNECTION_STATE: unknown;
48050
+ CONTACT_EMAIL: unknown;
48051
+ CONTACT_NAME: unknown;
48052
+ COUNTRY: unknown;
48053
+ COUNTRY_SUB_DIVISION: unknown;
48054
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
48055
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
48056
+ DATA_RETENTION_NOTE: unknown;
48057
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
48058
+ DELETED_AT: unknown;
48059
+ EMAIL_SENDING_LOCK: unknown;
48060
+ EXPIRED_AT: unknown;
48061
+ EXTERNAL_ID: unknown;
48062
+ HEADERS: unknown;
48063
+ IS_LIVE: unknown;
48064
+ LAST_CONNECTED_AT: unknown;
48065
+ LAST_ENABLED_AT: unknown;
48066
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
48067
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
48068
+ MANUAL_WORK_RETRY_START_AT: unknown;
48069
+ NOTES: unknown;
48070
+ NOTIFY_EMAIL_ADDRESS: unknown;
48071
+ NOTIFY_WEBHOOK_URL: unknown;
48072
+ OUTER_TYPE: unknown;
48073
+ PLAINTEXT_CONTEXT: unknown;
48074
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
48075
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
48076
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
48077
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
48078
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
48079
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
48080
+ RECONNECT_FORM_ITEMS: unknown;
48081
+ SAAS_CONTEXT: unknown;
48082
+ SECRET_HEADERS: unknown;
48083
+ SLUG: unknown;
48084
+ SUBDOMAIN: unknown;
48085
+ TITLE: unknown;
48086
+ TYPE: unknown;
48087
+ WEBSITE_URL: unknown;
48088
+ TRANSFER_REGIONS: unknown;
48089
+ CONTROLLERSHIPS: unknown;
48090
+ NAME: unknown;
48091
+ DATA_POINT_ID: unknown;
48092
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
48093
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
48094
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
48095
+ LAST_CLASSIFIED_AT: unknown;
48096
+ LAST_RUN_AT: unknown;
48097
+ ERROR: unknown;
48098
+ ERROR_COUNT: unknown;
48099
+ CONTEXT: unknown;
48100
+ CONTENT_CLASSIFICATION_STATUS: unknown;
48101
+ NON_NULL_CHECK_COMPLETED: unknown;
48102
+ RETENTION_PERIOD: unknown;
48103
+ SCAN_RUN_ID: unknown;
48104
+ DATA_TYPE: unknown;
48105
+ ENCRYPTION: unknown;
48106
+ IS_PRIMARY_KEY: unknown;
48107
+ CONTACT_PHONE: unknown;
48108
+ ADDRESS: unknown;
48109
+ HEADQUARTER_COUNTRY: unknown;
48110
+ HEADQUARTER_SUB_DIVISION: unknown;
48111
+ PRIVACY_POLICY_URL: unknown;
48112
+ CATEGORY: unknown;
48113
+ IS_DEFAULT: unknown;
48114
+ PURPOSE: unknown;
48115
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
48116
+ DATA_PROTECTION_OFFICER_NAME: unknown;
48117
+ }>;
48118
+ /** Attribute key / custom field name for the question */
48119
+ 'attribute-key': t.StringC;
48120
+ /** Require risk evaluation for the question */
48121
+ 'require-risk-evaluation': t.BooleanC;
48122
+ /** Require risk matrix evaluation for the question */
48123
+ 'require-risk-matrix-evaluation': t.BooleanC;
48124
+ }>]>>;
48125
+ }>, t.PartialC<{
48126
+ /** Email address of those assigned */
48127
+ assignees: t.ArrayC<t.StringC>;
48128
+ /** Email address of those externally assigned */
48129
+ 'external-assignees': t.ArrayC<t.StringC>;
48130
+ /** Status of section */
48131
+ status: t.StringC;
48132
+ /** Whether assessment is reviewed */
48133
+ 'is-reviewed': t.BooleanC;
48134
+ }>]>>;
48135
+ /** The email of the user that created the assessment */
48136
+ creator: t.StringC;
48137
+ /** The description of the assessment */
48138
+ description: t.StringC;
48139
+ /** The status of the assessment */
48140
+ status: t.KeyofC<{
48141
+ DRAFT: unknown;
48142
+ SHARED: unknown;
48143
+ IN_PROGRESS: unknown;
48144
+ IN_REVIEW: unknown;
48145
+ CHANGES_REQUESTED: unknown;
48146
+ REJECTED: unknown;
48147
+ APPROVED: unknown;
48148
+ }>;
48149
+ /** The emails of the transcend users assigned to the assessment */
48150
+ assignees: t.ArrayC<t.StringC>;
48151
+ /** The emails of the external emails assigned to the assessment */
48152
+ 'external-assignees': t.ArrayC<t.StringC>;
48153
+ /** The emails of the assessment reviewers */
48154
+ reviewers: t.ArrayC<t.StringC>;
48155
+ /** Whether the assessment is in a locked status */
48156
+ locked: t.BooleanC;
48157
+ /** Whether the assessment is archived */
48158
+ archived: t.BooleanC;
48159
+ /** Whether the form is created by an external user */
48160
+ external: t.BooleanC;
48161
+ /**
48162
+ * Whether the form title is an internal label only, and the group title should be used in communications with assignees
48163
+ */
48164
+ 'title-is-internal': t.BooleanC;
48165
+ /** The date that the assessment is due */
48166
+ 'due-date': t.StringC;
48167
+ /** The date that the assessment was created */
48168
+ 'created-at': t.StringC;
48169
+ /** The date that the assessment was assigned at */
48170
+ 'assigned-at': t.StringC;
48171
+ /** The date that the assessment was submitted at */
48172
+ 'submitted-at': t.StringC;
48173
+ /** The date that the assessment was approved at */
48174
+ 'approved-at': t.StringC;
48175
+ /** The date that the assessment was rejected at */
48176
+ 'rejected-at': t.StringC;
48177
+ /** The linked data inventory resources */
48178
+ resources: t.ArrayC<t.TypeC<{
48179
+ /** The title of the resource */
48180
+ title: t.StringC;
48181
+ /** The type of the resource */
48182
+ type: t.KeyofC<{
48183
+ actionItem: unknown;
48184
+ airgapCookie: unknown;
48185
+ airgapDataFlow: unknown;
48186
+ assessmentForm: unknown;
48187
+ assessmentGroup: unknown;
48188
+ auditorRun: unknown;
48189
+ auditorSchedule: unknown;
48190
+ businessEntity: unknown;
48191
+ dataSubCategory: unknown;
48192
+ dataPoint: unknown;
48193
+ dataPointLevel: unknown;
48194
+ dataSilo: unknown;
48195
+ enricher: unknown;
48196
+ identifier: unknown;
48197
+ legalHold: unknown;
48198
+ legalMatter: unknown;
48199
+ processingPurposeSubCategory: unknown;
48200
+ prompt: unknown;
48201
+ promptGroup: unknown;
48202
+ promptRun: unknown;
48203
+ request: unknown;
48204
+ subject: unknown;
48205
+ subDataPoint: unknown;
48206
+ vendor: unknown;
48207
+ }>;
48208
+ }>>;
48209
+ /** The linked data inventory synced rows */
48210
+ rows: t.ArrayC<t.TypeC<{
48211
+ /** The title of the resource */
48212
+ title: t.StringC;
48213
+ /** The type of the resource */
48214
+ type: t.KeyofC<{
48215
+ actionItem: unknown;
48216
+ airgapCookie: unknown;
48217
+ airgapDataFlow: unknown;
48218
+ assessmentForm: unknown;
48219
+ assessmentGroup: unknown;
48220
+ auditorRun: unknown;
48221
+ auditorSchedule: unknown;
48222
+ businessEntity: unknown;
48223
+ dataSubCategory: unknown;
48224
+ dataPoint: unknown;
48225
+ dataPointLevel: unknown;
48226
+ dataSilo: unknown;
48227
+ enricher: unknown;
48228
+ identifier: unknown;
48229
+ legalHold: unknown;
48230
+ legalMatter: unknown;
48231
+ processingPurposeSubCategory: unknown;
48232
+ prompt: unknown;
48233
+ promptGroup: unknown;
48234
+ promptRun: unknown;
48235
+ request: unknown;
48236
+ subject: unknown;
48237
+ subDataPoint: unknown;
48238
+ vendor: unknown;
48239
+ }>;
48240
+ }>>;
48241
+ /** The assessment retention schedule */
48242
+ 'retention-schedule': t.TypeC<{
48243
+ /** The retention schedule type */
48244
+ type: t.KeyofC<{
48245
+ REQUESTS_CREATED_AT: unknown;
48246
+ ASSESSMENT_FORM_COMPLETED_AT: unknown;
48247
+ }>;
48248
+ /** The duration of the retention schedule in days */
48249
+ 'duration-days': t.NumberC;
48250
+ /** The operation to perform on the retention schedule */
48251
+ operand: t.KeyofC<{
48252
+ FULL_DELETE: unknown;
48253
+ PARTIAL_DELETE: unknown;
48254
+ NONE: unknown;
48255
+ }>;
48256
+ }>;
48257
+ /** The assessment custom fields */
48258
+ attributes: t.ArrayC<t.TypeC<{
48259
+ /** Attribute key */
48260
+ key: t.StringC;
48261
+ /** Attribute values */
48262
+ values: t.ArrayC<t.StringC>;
48263
+ }>>;
48264
+ }>]>;
48265
+ /** Type override */
48266
+ export type AssessmentInput = t.TypeOf<typeof AssessmentInput>;
47074
48267
  export declare const TranscendInput: t.PartialC<{
47075
48268
  /**
47076
48269
  * Action items
@@ -87061,6 +88254,7 @@ export declare const TranscendInput: t.PartialC<{
87061
88254
  sideMenuText: t.StringC;
87062
88255
  primaryButton: t.StringC;
87063
88256
  secondaryButton: t.StringC;
88257
+ /** Type override */
87064
88258
  emailButton: t.StringC;
87065
88259
  emailContainer: t.StringC;
87066
88260
  hero: t.StringC;
@@ -87080,12 +88274,12 @@ export declare const TranscendInput: t.PartialC<{
87080
88274
  }>]>;
87081
88275
  fontFamilyBody: t.IntersectionC<[t.TypeC<{
87082
88276
  name: t.StringC;
87083
- url: t.StringC;
88277
+ url: t.StringC; /** Name of attribute value */
87084
88278
  }>, t.PartialC<{
87085
88279
  assets: t.ArrayC<t.TypeC<{
87086
88280
  name: t.StringC;
87087
88281
  url: t.StringC;
87088
- }>>;
88282
+ }>>; /** Color */
87089
88283
  }>]>;
87090
88284
  }>;
87091
88285
  }>;
@@ -87264,6 +88458,632 @@ export declare const TranscendInput: t.PartialC<{
87264
88458
  /** Value of partition, cannot be pushed, can only be pulled */
87265
88459
  partition: t.StringC;
87266
88460
  }>]>>;
88461
+ /**
88462
+ * The full list of assessment templates
88463
+ */
88464
+ 'assessment-templates': t.ArrayC<t.IntersectionC<[t.TypeC<{
88465
+ /** The title of the assessment template */
88466
+ title: t.StringC;
88467
+ }>, t.PartialC<{
88468
+ /** The Assessment sections under this assessment template */
88469
+ sections: t.ArrayC<t.IntersectionC<[t.TypeC<{
88470
+ /** The title of the assessment section */
88471
+ title: t.StringC;
88472
+ /** The questions in the assessment section */
88473
+ questions: t.ArrayC<t.IntersectionC<[t.TypeC<{
88474
+ /** The title of the assessment section question */
88475
+ title: t.StringC;
88476
+ /** The question type */
88477
+ type: t.KeyofC<{
88478
+ LONG_ANSWER_TEXT: unknown;
88479
+ SHORT_ANSWER_TEXT: unknown;
88480
+ SINGLE_SELECT: unknown;
88481
+ MULTI_SELECT: unknown;
88482
+ FILE: unknown;
88483
+ DESCRIPTION: unknown;
88484
+ }>;
88485
+ }>, t.PartialC<{
88486
+ /** The sub-type of the assessment question */
88487
+ 'sub-type': t.KeyofC<{
88488
+ NONE: unknown;
88489
+ CUSTOM: unknown;
88490
+ USER: unknown;
88491
+ TEAM: unknown;
88492
+ DATA_SUB_CATEGORY: unknown;
88493
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
88494
+ VENDOR: unknown;
88495
+ REGION: unknown;
88496
+ BUSINESS_ENTITY: unknown;
88497
+ SAA_S_CATEGORY: unknown;
88498
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
88499
+ DEPRECATION_STATE: unknown;
88500
+ IDENTIFIER: unknown;
88501
+ DATA_SILO: unknown;
88502
+ RECOMMENDED_FOR_CONSENT: unknown;
88503
+ RECOMMENDED_FOR_PRIVACY: unknown;
88504
+ SUBJECT: unknown;
88505
+ RETENTION_TYPE: unknown;
88506
+ CONTROLLERSHIP: unknown;
88507
+ HAS_PERSONAL_DATA: unknown;
88508
+ ATTRIBUTE_KEY: unknown;
88509
+ }>;
88510
+ /** The question placeholder */
88511
+ placeholder: t.StringC;
88512
+ /** The question description */
88513
+ description: t.StringC;
88514
+ /** Whether an answer is required */
88515
+ 'is-required': t.BooleanC;
88516
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
88517
+ 'reference-id': t.StringC;
88518
+ /** Display logic for the question */
88519
+ 'display-logic': t.IntersectionC<[t.TypeC<{
88520
+ /** The display logic type */
88521
+ action: t.KeyofC<{
88522
+ SHOW: unknown;
88523
+ SKIP: unknown;
88524
+ }>;
88525
+ }>, t.PartialC<{
88526
+ /** The rule to evaluate */
88527
+ rule: t.IntersectionC<[t.TypeC<{
88528
+ /** The reference id of the question whose answer is compared by this rule */
88529
+ 'depends-on-question-reference-id': t.StringC;
88530
+ /** The operator to use when comparing the question answer to the operands */
88531
+ 'comparison-operator': t.KeyofC<{
88532
+ IS_EQUAL_TO: unknown;
88533
+ IS_NOT_EQUAL_TO: unknown;
88534
+ IS_ONE_OF: unknown;
88535
+ IS_NOT_ONE_OF: unknown;
88536
+ CONTAINS: unknown;
88537
+ IS_SHOWN: unknown;
88538
+ IS_NOT_SHOWN: unknown;
88539
+ }>;
88540
+ }>, t.PartialC<{
88541
+ /** The values to compare the question answer to */
88542
+ 'comparison-operands': t.ArrayC<t.StringC>;
88543
+ }>]>;
88544
+ /** The nested rule to evaluate */
88545
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
88546
+ }>]>;
88547
+ /** Risk logic for the question */
88548
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
88549
+ /** The values to compare */
88550
+ 'comparison-operands': t.ArrayC<t.StringC>;
88551
+ /** The operator */
88552
+ 'comparison-operator': t.KeyofC<{
88553
+ IS_EQUAL_TO: unknown;
88554
+ IS_NOT_EQUAL_TO: unknown;
88555
+ IS_ONE_OF: unknown;
88556
+ IS_NOT_ONE_OF: unknown;
88557
+ CONTAINS: unknown;
88558
+ IS_SHOWN: unknown;
88559
+ IS_NOT_SHOWN: unknown;
88560
+ }>;
88561
+ }>, t.PartialC<{
88562
+ /** The risk level to assign to the question */
88563
+ 'risk-level': t.StringC;
88564
+ }>]>>;
88565
+ /** Risk category titles for the question */
88566
+ 'risk-categories': t.ArrayC<t.StringC>;
88567
+ /** Risk framework titles for the question */
88568
+ 'risk-framework': t.StringC;
88569
+ /** Answer options for the question */
88570
+ 'answer-options': t.ArrayC<t.TypeC<{
88571
+ /** Value of answer */
88572
+ value: t.StringC;
88573
+ }>>;
88574
+ /** Allowed MIME types for the question */
88575
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
88576
+ /** Allow selecting other options */
88577
+ 'allow-select-other': t.BooleanC;
88578
+ /** Sync model for the question */
88579
+ 'sync-model': t.KeyofC<{
88580
+ businessEntity: unknown;
88581
+ dataSilo: unknown;
88582
+ subDataPoint: unknown;
88583
+ vendor: unknown;
88584
+ dataSubCategory: unknown;
88585
+ processingPurposeSubCategory: unknown;
88586
+ }>;
88587
+ /** Sync column for the question */
88588
+ 'sync-column': t.KeyofC<{
88589
+ URL: unknown;
88590
+ REGEX: unknown;
88591
+ DESCRIPTION: unknown;
88592
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
88593
+ DEPRECATION_STATE: unknown;
88594
+ RECOMMENDED_FOR_CONSENT: unknown;
88595
+ RECOMMENDED_FOR_PRIVACY: unknown;
88596
+ RETENTION_TYPE: unknown;
88597
+ CONTROLLERSHIP: unknown;
88598
+ HAS_PERSONAL_DATA: unknown;
88599
+ CONNECT_START_TIME: unknown;
88600
+ CONNECTION_STATE: unknown;
88601
+ CONTACT_EMAIL: unknown;
88602
+ CONTACT_NAME: unknown;
88603
+ COUNTRY: unknown;
88604
+ COUNTRY_SUB_DIVISION: unknown;
88605
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
88606
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
88607
+ DATA_RETENTION_NOTE: unknown;
88608
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
88609
+ DELETED_AT: unknown;
88610
+ EMAIL_SENDING_LOCK: unknown;
88611
+ EXPIRED_AT: unknown;
88612
+ EXTERNAL_ID: unknown;
88613
+ HEADERS: unknown;
88614
+ IS_LIVE: unknown;
88615
+ LAST_CONNECTED_AT: unknown;
88616
+ LAST_ENABLED_AT: unknown;
88617
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
88618
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
88619
+ MANUAL_WORK_RETRY_START_AT: unknown;
88620
+ NOTES: unknown;
88621
+ NOTIFY_EMAIL_ADDRESS: unknown;
88622
+ NOTIFY_WEBHOOK_URL: unknown;
88623
+ OUTER_TYPE: unknown;
88624
+ PLAINTEXT_CONTEXT: unknown;
88625
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
88626
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
88627
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
88628
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
88629
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
88630
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
88631
+ RECONNECT_FORM_ITEMS: unknown;
88632
+ SAAS_CONTEXT: unknown;
88633
+ SECRET_HEADERS: unknown;
88634
+ SLUG: unknown;
88635
+ SUBDOMAIN: unknown;
88636
+ TITLE: unknown;
88637
+ TYPE: unknown;
88638
+ WEBSITE_URL: unknown;
88639
+ TRANSFER_REGIONS: unknown;
88640
+ CONTROLLERSHIPS: unknown;
88641
+ NAME: unknown;
88642
+ DATA_POINT_ID: unknown;
88643
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
88644
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
88645
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
88646
+ LAST_CLASSIFIED_AT: unknown;
88647
+ LAST_RUN_AT: unknown;
88648
+ ERROR: unknown;
88649
+ ERROR_COUNT: unknown;
88650
+ CONTEXT: unknown;
88651
+ CONTENT_CLASSIFICATION_STATUS: unknown;
88652
+ NON_NULL_CHECK_COMPLETED: unknown;
88653
+ RETENTION_PERIOD: unknown;
88654
+ SCAN_RUN_ID: unknown;
88655
+ DATA_TYPE: unknown;
88656
+ ENCRYPTION: unknown;
88657
+ IS_PRIMARY_KEY: unknown;
88658
+ CONTACT_PHONE: unknown;
88659
+ ADDRESS: unknown;
88660
+ HEADQUARTER_COUNTRY: unknown;
88661
+ HEADQUARTER_SUB_DIVISION: unknown;
88662
+ PRIVACY_POLICY_URL: unknown;
88663
+ CATEGORY: unknown;
88664
+ IS_DEFAULT: unknown;
88665
+ PURPOSE: unknown;
88666
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
88667
+ DATA_PROTECTION_OFFICER_NAME: unknown;
88668
+ }>;
88669
+ /** Attribute key / custom field name for the question */
88670
+ 'attribute-key': t.StringC;
88671
+ /** Require risk evaluation for the question */
88672
+ 'require-risk-evaluation': t.BooleanC;
88673
+ /** Require risk matrix evaluation for the question */
88674
+ 'require-risk-matrix-evaluation': t.BooleanC;
88675
+ }>]>>;
88676
+ }>, t.PartialC<{
88677
+ /** Email address of those assigned */
88678
+ assignees: t.ArrayC<t.StringC>;
88679
+ /** Email address of those externally assigned */
88680
+ 'external-assignees': t.ArrayC<t.StringC>;
88681
+ /** Status of section */
88682
+ status: t.StringC;
88683
+ /** Whether assessment is reviewed */
88684
+ 'is-reviewed': t.BooleanC;
88685
+ }>]>>;
88686
+ /** Description of assessment template */
88687
+ description: t.StringC;
88688
+ /** The status of the assessment */
88689
+ status: t.KeyofC<{
88690
+ DRAFT: unknown;
88691
+ PUBLISHED: unknown;
88692
+ }>;
88693
+ /** The source of the assessment */
88694
+ source: t.KeyofC<{
88695
+ MANUAL: unknown;
88696
+ DATA_INVENTORY: unknown;
88697
+ IMPORT: unknown;
88698
+ }>;
88699
+ /** The email of the user that created the assessment */
88700
+ creator: t.StringC;
88701
+ /** Whether the template is in a locked status */
88702
+ locked: t.BooleanC;
88703
+ /** ID of parent template this was cloned from */
88704
+ 'parent-id': t.StringC;
88705
+ /** Whether the template is archived */
88706
+ archived: t.BooleanC;
88707
+ /** The date that the assessment was created */
88708
+ 'created-at': t.StringC;
88709
+ /** The names of the custom fields associated to this assessment template */
88710
+ 'attribute-keys': t.ArrayC<t.StringC>;
88711
+ /** The retention schedule configuration */
88712
+ 'retention-schedule': t.TypeC<{
88713
+ /** The retention schedule type */
88714
+ type: t.KeyofC<{
88715
+ REQUESTS_CREATED_AT: unknown;
88716
+ ASSESSMENT_FORM_COMPLETED_AT: unknown;
88717
+ }>;
88718
+ /** The duration of the retention schedule in days */
88719
+ 'duration-days': t.NumberC;
88720
+ /** The operation to perform on the retention schedule */
88721
+ operand: t.KeyofC<{
88722
+ FULL_DELETE: unknown;
88723
+ PARTIAL_DELETE: unknown;
88724
+ NONE: unknown;
88725
+ }>;
88726
+ }>;
88727
+ /** The titles of the email templates used in the assessment template */
88728
+ templates: t.ArrayC<t.StringC>;
88729
+ }>]>>;
88730
+ /**
88731
+ * The full list of assessment results
88732
+ */
88733
+ assessments: t.ArrayC<t.IntersectionC<[t.TypeC<{
88734
+ /** The title of the assessment */
88735
+ title: t.StringC;
88736
+ /** The title of the assessment group */
88737
+ group: t.StringC;
88738
+ }>, t.PartialC<{
88739
+ /** The assessment sections */
88740
+ sections: t.ArrayC<t.IntersectionC<[t.TypeC<{
88741
+ /** The title of the assessment section */
88742
+ title: t.StringC;
88743
+ /** The questions in the assessment section */
88744
+ questions: t.ArrayC<t.IntersectionC<[t.TypeC<{
88745
+ /** The title of the assessment section question */
88746
+ title: t.StringC;
88747
+ /** The question type */
88748
+ type: t.KeyofC<{
88749
+ LONG_ANSWER_TEXT: unknown;
88750
+ SHORT_ANSWER_TEXT: unknown;
88751
+ SINGLE_SELECT: unknown;
88752
+ MULTI_SELECT: unknown;
88753
+ FILE: unknown;
88754
+ DESCRIPTION: unknown;
88755
+ }>;
88756
+ }>, t.PartialC<{
88757
+ /** The sub-type of the assessment question */
88758
+ 'sub-type': t.KeyofC<{
88759
+ NONE: unknown;
88760
+ CUSTOM: unknown;
88761
+ USER: unknown;
88762
+ TEAM: unknown;
88763
+ DATA_SUB_CATEGORY: unknown;
88764
+ PROCESSING_PURPOSE_SUB_CATEGORY: unknown;
88765
+ VENDOR: unknown;
88766
+ REGION: unknown;
88767
+ BUSINESS_ENTITY: unknown;
88768
+ SAA_S_CATEGORY: unknown;
88769
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
88770
+ DEPRECATION_STATE: unknown;
88771
+ IDENTIFIER: unknown;
88772
+ DATA_SILO: unknown;
88773
+ RECOMMENDED_FOR_CONSENT: unknown;
88774
+ RECOMMENDED_FOR_PRIVACY: unknown;
88775
+ SUBJECT: unknown;
88776
+ RETENTION_TYPE: unknown;
88777
+ CONTROLLERSHIP: unknown;
88778
+ HAS_PERSONAL_DATA: unknown;
88779
+ ATTRIBUTE_KEY: unknown;
88780
+ }>;
88781
+ /** The question placeholder */
88782
+ placeholder: t.StringC;
88783
+ /** The question description */
88784
+ description: t.StringC;
88785
+ /** Whether an answer is required */
88786
+ 'is-required': t.BooleanC;
88787
+ /** Used to identify the question within a form or template so it can be referenced in conditional logic. */
88788
+ 'reference-id': t.StringC;
88789
+ /** Display logic for the question */
88790
+ 'display-logic': t.IntersectionC<[t.TypeC<{
88791
+ /** The display logic type */
88792
+ action: t.KeyofC<{
88793
+ SHOW: unknown;
88794
+ SKIP: unknown;
88795
+ }>;
88796
+ }>, t.PartialC<{
88797
+ /** The rule to evaluate */
88798
+ rule: t.IntersectionC<[t.TypeC<{
88799
+ /** The reference id of the question whose answer is compared by this rule */
88800
+ 'depends-on-question-reference-id': t.StringC;
88801
+ /** The operator to use when comparing the question answer to the operands */
88802
+ 'comparison-operator': t.KeyofC<{
88803
+ IS_EQUAL_TO: unknown;
88804
+ IS_NOT_EQUAL_TO: unknown;
88805
+ IS_ONE_OF: unknown;
88806
+ IS_NOT_ONE_OF: unknown;
88807
+ CONTAINS: unknown;
88808
+ IS_SHOWN: unknown;
88809
+ IS_NOT_SHOWN: unknown;
88810
+ }>;
88811
+ }>, t.PartialC<{
88812
+ /** The values to compare the question answer to */
88813
+ 'comparison-operands': t.ArrayC<t.StringC>;
88814
+ }>]>;
88815
+ /** The nested rule to evaluate */
88816
+ 'nested-rule': t.RecursiveType<t.Type<AssessmentNestedRuleInput, AssessmentNestedRuleInput, unknown>, any, any, unknown>;
88817
+ }>]>;
88818
+ /** Risk logic for the question */
88819
+ 'risk-logic': t.ArrayC<t.IntersectionC<[t.TypeC<{
88820
+ /** The values to compare */
88821
+ 'comparison-operands': t.ArrayC<t.StringC>;
88822
+ /** The operator */
88823
+ 'comparison-operator': t.KeyofC<{
88824
+ IS_EQUAL_TO: unknown;
88825
+ IS_NOT_EQUAL_TO: unknown;
88826
+ IS_ONE_OF: unknown;
88827
+ IS_NOT_ONE_OF: unknown;
88828
+ CONTAINS: unknown;
88829
+ IS_SHOWN: unknown;
88830
+ IS_NOT_SHOWN: unknown;
88831
+ }>;
88832
+ }>, t.PartialC<{
88833
+ /** The risk level to assign to the question */
88834
+ 'risk-level': t.StringC;
88835
+ }>]>>;
88836
+ /** Risk category titles for the question */
88837
+ 'risk-categories': t.ArrayC<t.StringC>;
88838
+ /** Risk framework titles for the question */
88839
+ 'risk-framework': t.StringC;
88840
+ /** Answer options for the question */
88841
+ 'answer-options': t.ArrayC<t.TypeC<{
88842
+ /** Value of answer */
88843
+ value: t.StringC;
88844
+ }>>;
88845
+ /** Allowed MIME types for the question */
88846
+ 'allowed-mime-types': t.ArrayC<t.StringC>;
88847
+ /** Allow selecting other options */
88848
+ 'allow-select-other': t.BooleanC;
88849
+ /** Sync model for the question */
88850
+ 'sync-model': t.KeyofC<{
88851
+ businessEntity: unknown;
88852
+ dataSilo: unknown;
88853
+ subDataPoint: unknown;
88854
+ vendor: unknown;
88855
+ dataSubCategory: unknown;
88856
+ processingPurposeSubCategory: unknown;
88857
+ }>;
88858
+ /** Sync column for the question */
88859
+ 'sync-column': t.KeyofC<{
88860
+ URL: unknown;
88861
+ REGEX: unknown;
88862
+ DESCRIPTION: unknown;
88863
+ DATA_PROCESSING_AGREEMENT_STATUS: unknown;
88864
+ DEPRECATION_STATE: unknown;
88865
+ RECOMMENDED_FOR_CONSENT: unknown;
88866
+ RECOMMENDED_FOR_PRIVACY: unknown;
88867
+ RETENTION_TYPE: unknown;
88868
+ CONTROLLERSHIP: unknown;
88869
+ HAS_PERSONAL_DATA: unknown;
88870
+ CONNECT_START_TIME: unknown;
88871
+ CONNECTION_STATE: unknown;
88872
+ CONTACT_EMAIL: unknown;
88873
+ CONTACT_NAME: unknown;
88874
+ COUNTRY: unknown;
88875
+ COUNTRY_SUB_DIVISION: unknown;
88876
+ CREDENTIALS_REFRESH_SCHEDULED_AT: unknown;
88877
+ DATA_PROCESSING_AGREEMENT_LINK: unknown;
88878
+ DATA_RETENTION_NOTE: unknown;
88879
+ DEFAULT_ACCESS_REQUEST_VISIBILITY: unknown;
88880
+ DELETED_AT: unknown;
88881
+ EMAIL_SENDING_LOCK: unknown;
88882
+ EXPIRED_AT: unknown;
88883
+ EXTERNAL_ID: unknown;
88884
+ HEADERS: unknown;
88885
+ IS_LIVE: unknown;
88886
+ LAST_CONNECTED_AT: unknown;
88887
+ LAST_ENABLED_AT: unknown;
88888
+ LAST_LOOKUP_PROCESS_CREATION_TIME: unknown;
88889
+ MANUAL_WORK_RETRY_FREQUENCY: unknown;
88890
+ MANUAL_WORK_RETRY_START_AT: unknown;
88891
+ NOTES: unknown;
88892
+ NOTIFY_EMAIL_ADDRESS: unknown;
88893
+ NOTIFY_WEBHOOK_URL: unknown;
88894
+ OUTER_TYPE: unknown;
88895
+ PLAINTEXT_CONTEXT: unknown;
88896
+ PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE: unknown;
88897
+ PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT: unknown;
88898
+ PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT: unknown;
88899
+ PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: unknown;
88900
+ PROMPT_A_VENDOR_EMAIL_SEND_TYPE: unknown;
88901
+ PROMPT_A_VENDOR_EMAIL_START_AT: unknown;
88902
+ RECONNECT_FORM_ITEMS: unknown;
88903
+ SAAS_CONTEXT: unknown;
88904
+ SECRET_HEADERS: unknown;
88905
+ SLUG: unknown;
88906
+ SUBDOMAIN: unknown;
88907
+ TITLE: unknown;
88908
+ TYPE: unknown;
88909
+ WEBSITE_URL: unknown;
88910
+ TRANSFER_REGIONS: unknown;
88911
+ CONTROLLERSHIPS: unknown;
88912
+ NAME: unknown;
88913
+ DATA_POINT_ID: unknown;
88914
+ ENCRYPTED_SAMPLES_S3_KEY: unknown;
88915
+ ACCESS_REQUESTED_VISIBILITY_ENABLED: unknown;
88916
+ ENSURE_REQUEST_REDACTION_ENABLED: unknown;
88917
+ LAST_CLASSIFIED_AT: unknown;
88918
+ LAST_RUN_AT: unknown;
88919
+ ERROR: unknown;
88920
+ ERROR_COUNT: unknown;
88921
+ CONTEXT: unknown;
88922
+ CONTENT_CLASSIFICATION_STATUS: unknown;
88923
+ NON_NULL_CHECK_COMPLETED: unknown;
88924
+ RETENTION_PERIOD: unknown;
88925
+ SCAN_RUN_ID: unknown;
88926
+ DATA_TYPE: unknown;
88927
+ ENCRYPTION: unknown;
88928
+ IS_PRIMARY_KEY: unknown;
88929
+ CONTACT_PHONE: unknown;
88930
+ ADDRESS: unknown;
88931
+ HEADQUARTER_COUNTRY: unknown;
88932
+ HEADQUARTER_SUB_DIVISION: unknown;
88933
+ PRIVACY_POLICY_URL: unknown;
88934
+ CATEGORY: unknown;
88935
+ IS_DEFAULT: unknown;
88936
+ PURPOSE: unknown;
88937
+ DATA_PROTECTION_OFFICER_EMAIL: unknown;
88938
+ DATA_PROTECTION_OFFICER_NAME: unknown;
88939
+ }>;
88940
+ /** Attribute key / custom field name for the question */
88941
+ 'attribute-key': t.StringC;
88942
+ /** Require risk evaluation for the question */
88943
+ 'require-risk-evaluation': t.BooleanC;
88944
+ /** Require risk matrix evaluation for the question */
88945
+ 'require-risk-matrix-evaluation': t.BooleanC;
88946
+ }>]>>;
88947
+ }>, t.PartialC<{
88948
+ /** Email address of those assigned */
88949
+ assignees: t.ArrayC<t.StringC>;
88950
+ /** Email address of those externally assigned */
88951
+ 'external-assignees': t.ArrayC<t.StringC>;
88952
+ /** Status of section */
88953
+ status: t.StringC;
88954
+ /** Whether assessment is reviewed */
88955
+ 'is-reviewed': t.BooleanC;
88956
+ }>]>>;
88957
+ /** The email of the user that created the assessment */
88958
+ creator: t.StringC;
88959
+ /** The description of the assessment */
88960
+ description: t.StringC;
88961
+ /** The status of the assessment */
88962
+ status: t.KeyofC<{
88963
+ DRAFT: unknown;
88964
+ SHARED: unknown;
88965
+ IN_PROGRESS: unknown;
88966
+ IN_REVIEW: unknown;
88967
+ CHANGES_REQUESTED: unknown;
88968
+ REJECTED: unknown;
88969
+ APPROVED: unknown;
88970
+ }>;
88971
+ /** The emails of the transcend users assigned to the assessment */
88972
+ assignees: t.ArrayC<t.StringC>;
88973
+ /** The emails of the external emails assigned to the assessment */
88974
+ 'external-assignees': t.ArrayC<t.StringC>;
88975
+ /** The emails of the assessment reviewers */
88976
+ reviewers: t.ArrayC<t.StringC>;
88977
+ /** Whether the assessment is in a locked status */
88978
+ locked: t.BooleanC;
88979
+ /** Whether the assessment is archived */
88980
+ archived: t.BooleanC;
88981
+ /** Whether the form is created by an external user */
88982
+ external: t.BooleanC;
88983
+ /**
88984
+ * Whether the form title is an internal label only, and the group title should be used in communications with assignees
88985
+ */
88986
+ 'title-is-internal': t.BooleanC;
88987
+ /** The date that the assessment is due */
88988
+ 'due-date': t.StringC;
88989
+ /** The date that the assessment was created */
88990
+ 'created-at': t.StringC;
88991
+ /** The date that the assessment was assigned at */
88992
+ 'assigned-at': t.StringC;
88993
+ /** The date that the assessment was submitted at */
88994
+ 'submitted-at': t.StringC;
88995
+ /** The date that the assessment was approved at */
88996
+ 'approved-at': t.StringC;
88997
+ /** The date that the assessment was rejected at */
88998
+ 'rejected-at': t.StringC;
88999
+ /** The linked data inventory resources */
89000
+ resources: t.ArrayC<t.TypeC<{
89001
+ /** The title of the resource */
89002
+ title: t.StringC;
89003
+ /** The type of the resource */
89004
+ type: t.KeyofC<{
89005
+ actionItem: unknown;
89006
+ airgapCookie: unknown;
89007
+ airgapDataFlow: unknown;
89008
+ assessmentForm: unknown;
89009
+ assessmentGroup: unknown;
89010
+ auditorRun: unknown;
89011
+ auditorSchedule: unknown;
89012
+ businessEntity: unknown;
89013
+ dataSubCategory: unknown;
89014
+ dataPoint: unknown;
89015
+ dataPointLevel: unknown;
89016
+ dataSilo: unknown;
89017
+ enricher: unknown;
89018
+ identifier: unknown;
89019
+ legalHold: unknown;
89020
+ legalMatter: unknown;
89021
+ processingPurposeSubCategory: unknown;
89022
+ prompt: unknown;
89023
+ promptGroup: unknown;
89024
+ promptRun: unknown;
89025
+ request: unknown;
89026
+ subject: unknown;
89027
+ subDataPoint: unknown;
89028
+ vendor: unknown;
89029
+ }>;
89030
+ }>>;
89031
+ /** The linked data inventory synced rows */
89032
+ rows: t.ArrayC<t.TypeC<{
89033
+ /** The title of the resource */
89034
+ title: t.StringC;
89035
+ /** The type of the resource */
89036
+ type: t.KeyofC<{
89037
+ actionItem: unknown;
89038
+ airgapCookie: unknown;
89039
+ airgapDataFlow: unknown;
89040
+ assessmentForm: unknown;
89041
+ assessmentGroup: unknown;
89042
+ auditorRun: unknown;
89043
+ auditorSchedule: unknown;
89044
+ businessEntity: unknown;
89045
+ dataSubCategory: unknown;
89046
+ dataPoint: unknown;
89047
+ dataPointLevel: unknown;
89048
+ dataSilo: unknown;
89049
+ enricher: unknown;
89050
+ identifier: unknown;
89051
+ legalHold: unknown;
89052
+ legalMatter: unknown;
89053
+ processingPurposeSubCategory: unknown;
89054
+ prompt: unknown;
89055
+ promptGroup: unknown;
89056
+ promptRun: unknown;
89057
+ request: unknown;
89058
+ subject: unknown;
89059
+ subDataPoint: unknown;
89060
+ vendor: unknown;
89061
+ }>;
89062
+ }>>;
89063
+ /** The assessment retention schedule */
89064
+ 'retention-schedule': t.TypeC<{
89065
+ /** The retention schedule type */
89066
+ type: t.KeyofC<{
89067
+ REQUESTS_CREATED_AT: unknown;
89068
+ ASSESSMENT_FORM_COMPLETED_AT: unknown;
89069
+ }>;
89070
+ /** The duration of the retention schedule in days */
89071
+ 'duration-days': t.NumberC;
89072
+ /** The operation to perform on the retention schedule */
89073
+ operand: t.KeyofC<{
89074
+ FULL_DELETE: unknown;
89075
+ PARTIAL_DELETE: unknown;
89076
+ NONE: unknown;
89077
+ }>;
89078
+ }>;
89079
+ /** The assessment custom fields */
89080
+ attributes: t.ArrayC<t.TypeC<{
89081
+ /** Attribute key */
89082
+ key: t.StringC;
89083
+ /** Attribute values */
89084
+ values: t.ArrayC<t.StringC>;
89085
+ }>>;
89086
+ }>]>>;
87267
89087
  }>;
87268
89088
  /** Type override */
87269
89089
  export type TranscendInput = t.TypeOf<typeof TranscendInput>;