@transcend-io/privacy-types 4.92.0 → 4.94.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.
@@ -1,4 +1,6 @@
1
- /** AssessmentForm status types */
1
+ /**
2
+ * AssessmentForm status types
3
+ */
2
4
  export declare enum AssessmentFormStatus {
3
5
  /** The form has been created but has not been shared with assignees */
4
6
  Draft = "DRAFT",
@@ -22,4 +24,150 @@ export declare enum AssessmentFormTemplateStatus {
22
24
  /** The template is ready to be used to create forms */
23
25
  Published = "PUBLISHED"
24
26
  }
27
+ /** How an assessment form template was created */
28
+ export declare const AssessmentFormTemplateSource: {
29
+ /** The template was created manually by a user creating sections, questions, etc in the AD or via API */
30
+ Manual: "MANUAL";
31
+ /** The template was auto-generated as a side effect of kicking off assessments from the Data Inventory */
32
+ DataInventory: "DATA_INVENTORY";
33
+ /** The template was auto-generated as a side effect of importing OneTrust assessments */
34
+ Import: "IMPORT";
35
+ };
36
+ /**
37
+ * Overload type
38
+ */
39
+ export type AssessmentFormTemplateSource = typeof AssessmentFormTemplateSource[keyof typeof AssessmentFormTemplateSource];
40
+ /** The types of the assessment question */
41
+ export declare const AssessmentQuestionType: {
42
+ /** A long-answer text question */
43
+ LongAnswer: "LONG_ANSWER_TEXT";
44
+ /** A short-answer text question */
45
+ ShortAnswer: "SHORT_ANSWER_TEXT";
46
+ /** A single-select question */
47
+ SingleSelect: "SINGLE_SELECT";
48
+ /** A multi-select question */
49
+ MultiSelect: "MULTI_SELECT";
50
+ /** A file question */
51
+ File: "FILE";
52
+ /** A static text field that has no answer field */
53
+ Description: "DESCRIPTION";
54
+ };
55
+ /**
56
+ * Overload type
57
+ */
58
+ export type AssessmentQuestionType = typeof AssessmentQuestionType[keyof typeof AssessmentQuestionType];
59
+ /**
60
+ * The sub-types of the assessment question
61
+ * TODO: https://transcend.height.app/T-36999 - migrate keys to equal values, just like
62
+ * StaticAssessmentQuestionSubType and DynamicAssessmentQuestionSubType
63
+ */
64
+ export declare const AssessmentQuestionSubType: {
65
+ /** A None subType for types that do not accept subTypes */
66
+ None: "NONE";
67
+ /** A Custom subType for user-defined select types */
68
+ Custom: "CUSTOM";
69
+ /** A user */
70
+ User: "USER";
71
+ /** A team */
72
+ Team: "TEAM";
73
+ /** A Data SubCategory */
74
+ DataSubCategory: "DATA_SUB_CATEGORY";
75
+ /** A Processing Purpose SubCategory */
76
+ ProcessingPurposeSubCategory: "PROCESSING_PURPOSE_SUB_CATEGORY";
77
+ /** A vendor */
78
+ Vendor: "VENDOR";
79
+ /** A Region question */
80
+ Region: "REGION";
81
+ /** A Business Entity */
82
+ BusinessEntity: "BUSINESS_ENTITY";
83
+ /** The category of the recipient */
84
+ SaaSCategory: "SAA_S_CATEGORY";
85
+ /** The Data Processing Agreement Status */
86
+ DataProcessingAgreementStatus: "DATA_PROCESSING_AGREEMENT_STATUS";
87
+ /** The deprecation state */
88
+ DeprecationState: "DEPRECATION_STATE";
89
+ /** The identifier */
90
+ Identifier: "IDENTIFIER";
91
+ /** A Data Silo */
92
+ DataSilo: "DATA_SILO";
93
+ /** Whether the data silo is recommended for consent manager purposes */
94
+ RecommendedForConsent: "RECOMMENDED_FOR_CONSENT";
95
+ /** Whether the data silo is recommended for privacy request purposes */
96
+ RecommendedForPrivacy: "RECOMMENDED_FOR_PRIVACY";
97
+ /** The subject */
98
+ Subject: "SUBJECT";
99
+ /** The type of retention schedule */
100
+ RetentionType: "RETENTION_TYPE";
101
+ /** The controllership */
102
+ Controllership: "CONTROLLERSHIP";
103
+ /** Whether the data silo has personal data */
104
+ HasPersonalData: "HAS_PERSONAL_DATA";
105
+ /** The Attribute Key referring to a custom field */
106
+ AttributeKey: "ATTRIBUTE_KEY";
107
+ };
108
+ /**
109
+ * Overload type
110
+ */
111
+ export type AssessmentQuestionSubType = typeof AssessmentQuestionSubType[keyof typeof AssessmentQuestionSubType];
112
+ /** The possible actions within an assessment question's display logic */
113
+ export declare const AssessmentsDisplayLogicAction: {
114
+ /** Display the question */
115
+ Show: "SHOW";
116
+ /** Skip the question */
117
+ Skip: "SKIP";
118
+ };
119
+ /**
120
+ * Overload type
121
+ */
122
+ export type AssessmentsDisplayLogicAction = typeof AssessmentsDisplayLogicAction[keyof typeof AssessmentsDisplayLogicAction];
123
+ /** The comparison operators to use in an assessment question's display logic */
124
+ export declare const ComparisonOperator: {
125
+ /** is equal to */
126
+ IsEqualTo: "IS_EQUAL_TO";
127
+ /** is not equal to */
128
+ IsNotEqualTo: "IS_NOT_EQUAL_TO";
129
+ /** is one of */
130
+ IsOneOf: "IS_ONE_OF";
131
+ /** is not one of */
132
+ IsNotOneOf: "IS_NOT_ONE_OF";
133
+ /** contains */
134
+ Contains: "CONTAINS";
135
+ /** is shown */
136
+ IsShown: "IS_SHOWN";
137
+ /** is not shown */
138
+ IsNotShown: "IS_NOT_SHOWN";
139
+ };
140
+ /**
141
+ * Overload type
142
+ */
143
+ export type ComparisonOperator = typeof ComparisonOperator[keyof typeof ComparisonOperator];
144
+ /** The logic operators to use in an assessment question's display logic */
145
+ export declare const LogicOperator: {
146
+ /** and */
147
+ And: "AND";
148
+ /** or */
149
+ Or: "OR";
150
+ };
151
+ /**
152
+ * Overload type
153
+ */
154
+ export type LogicOperator = typeof LogicOperator[keyof typeof LogicOperator];
155
+ /**
156
+ * types of data to be managed by the data retention policy
157
+ */
158
+ export declare enum RetentionScheduleType {
159
+ REQUESTS_CREATED_AT = "REQUESTS_CREATED_AT",
160
+ ASSESSMENT_FORM_COMPLETED_AT = "ASSESSMENT_FORM_COMPLETED_AT"
161
+ }
162
+ /**
163
+ * operation types for the data retention policy
164
+ * FULL_DELETE: delete full record
165
+ * PARTIAL_DELETE: delete identifiers only
166
+ * NONE: don't do anything to the data
167
+ */
168
+ export declare enum RetentionScheduleOperation {
169
+ FULL_DELETE = "FULL_DELETE",
170
+ PARTIAL_DELETE = "PARTIAL_DELETE",
171
+ NONE = "NONE"
172
+ }
25
173
  //# sourceMappingURL=assessmentForm.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"assessmentForm.d.ts","sourceRoot":"","sources":["../src/assessmentForm.ts"],"names":[],"mappings":"AAAA,kCAAkC;AAClC,oBAAY,oBAAoB;IAC9B,uEAAuE;IACvE,KAAK,UAAU;IACf,4EAA4E;IAC5E,MAAM,WAAW;IACjB,+CAA+C;IAC/C,UAAU,gBAAgB;IAC1B,6DAA6D;IAC7D,QAAQ,cAAc;IACtB,qDAAqD;IACrD,gBAAgB,sBAAsB;IACtC,yCAAyC;IACzC,QAAQ,aAAa;IACrB,yCAAyC;IACzC,QAAQ,aAAa;CACtB;AAED,0CAA0C;AAC1C,oBAAY,4BAA4B;IACtC,oCAAoC;IACpC,KAAK,UAAU;IACf,uDAAuD;IACvD,SAAS,cAAc;CACxB"}
1
+ {"version":3,"file":"assessmentForm.d.ts","sourceRoot":"","sources":["../src/assessmentForm.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,oBAAY,oBAAoB;IAC9B,uEAAuE;IACvE,KAAK,UAAU;IACf,4EAA4E;IAC5E,MAAM,WAAW;IACjB,+CAA+C;IAC/C,UAAU,gBAAgB;IAC1B,6DAA6D;IAC7D,QAAQ,cAAc;IACtB,qDAAqD;IACrD,gBAAgB,sBAAsB;IACtC,yCAAyC;IACzC,QAAQ,aAAa;IACrB,yCAAyC;IACzC,QAAQ,aAAa;CACtB;AAED,0CAA0C;AAC1C,oBAAY,4BAA4B;IACtC,oCAAoC;IACpC,KAAK,UAAU;IACf,uDAAuD;IACvD,SAAS,cAAc;CACxB;AAED,kDAAkD;AAClD,eAAO,MAAM,4BAA4B;IACvC,0GAA0G;;IAE1G,0GAA0G;;IAE1G,yFAAyF;;CAEzF,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,4BAA4B,GACtC,OAAO,4BAA4B,CAAC,MAAM,OAAO,4BAA4B,CAAC,CAAC;AAEjF,2CAA2C;AAC3C,eAAO,MAAM,sBAAsB;IACjC,kCAAkC;;IAElC,mCAAmC;;IAEnC,+BAA+B;;IAE/B,8BAA8B;;IAE9B,sBAAsB;;IAEtB,mDAAmD;;CAEnD,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAChC,OAAO,sBAAsB,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAC;AAErE;;;;GAIG;AACH,eAAO,MAAM,yBAAyB;IACpC,2DAA2D;;IAE3D,qDAAqD;;IAErD,aAAa;;IAEb,aAAa;;IAEb,yBAAyB;;IAEzB,uCAAuC;;IAEvC,eAAe;;IAEf,wBAAwB;;IAExB,wBAAwB;;IAExB,oCAAoC;;IAEpC,2CAA2C;;IAE3C,4BAA4B;;IAE5B,qBAAqB;;IAErB,kBAAkB;;IAElB,wEAAwE;;IAExE,wEAAwE;;IAExE,kBAAkB;;IAElB,qCAAqC;;IAErC,yBAAyB;;IAEzB,8CAA8C;;IAE9C,oDAAoD;;CAEpD,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,yBAAyB,GACnC,OAAO,yBAAyB,CAAC,MAAM,OAAO,yBAAyB,CAAC,CAAC;AAE3E,yEAAyE;AACzE,eAAO,MAAM,6BAA6B;IACxC,2BAA2B;;IAE3B,wBAAwB;;CAExB,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,6BAA6B,GACvC,OAAO,6BAA6B,CAAC,MAAM,OAAO,6BAA6B,CAAC,CAAC;AAEnF,iFAAiF;AACjF,eAAO,MAAM,kBAAkB;IAC7B,kBAAkB;;IAElB,sBAAsB;;IAEtB,gBAAgB;;IAEhB,oBAAoB;;IAEpB,eAAe;;IAEf,eAAe;;IAEf,mBAAmB;;CAEnB,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAC5B,OAAO,kBAAkB,CAAC,MAAM,OAAO,kBAAkB,CAAC,CAAC;AAE7D,4EAA4E;AAC5E,eAAO,MAAM,aAAa;IACxB,UAAU;;IAEV,SAAS;;CAET,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE7E;;GAEG;AACH,oBAAY,qBAAqB;IAC/B,mBAAmB,wBAAwB;IAC3C,4BAA4B,iCAAiC;CAC9D;AAED;;;;;GAKG;AACH,oBAAY,0BAA0B;IACpC,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,IAAI,SAAS;CACd"}
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AssessmentFormTemplateStatus = exports.AssessmentFormStatus = void 0;
3
+ exports.RetentionScheduleOperation = exports.RetentionScheduleType = exports.LogicOperator = exports.ComparisonOperator = exports.AssessmentsDisplayLogicAction = exports.AssessmentQuestionSubType = exports.AssessmentQuestionType = exports.AssessmentFormTemplateSource = exports.AssessmentFormTemplateStatus = exports.AssessmentFormStatus = void 0;
4
4
  /** AssessmentForm status types */
5
+ const type_utils_1 = require("@transcend-io/type-utils");
6
+ /**
7
+ * AssessmentForm status types
8
+ */
5
9
  var AssessmentFormStatus;
6
10
  (function (AssessmentFormStatus) {
7
11
  /** The form has been created but has not been shared with assignees */
@@ -27,4 +31,128 @@ var AssessmentFormTemplateStatus;
27
31
  /** The template is ready to be used to create forms */
28
32
  AssessmentFormTemplateStatus["Published"] = "PUBLISHED";
29
33
  })(AssessmentFormTemplateStatus || (exports.AssessmentFormTemplateStatus = AssessmentFormTemplateStatus = {}));
34
+ /** How an assessment form template was created */
35
+ exports.AssessmentFormTemplateSource = (0, type_utils_1.makeEnum)({
36
+ /** The template was created manually by a user creating sections, questions, etc in the AD or via API */
37
+ Manual: 'MANUAL',
38
+ /** The template was auto-generated as a side effect of kicking off assessments from the Data Inventory */
39
+ DataInventory: 'DATA_INVENTORY',
40
+ /** The template was auto-generated as a side effect of importing OneTrust assessments */
41
+ Import: 'IMPORT',
42
+ });
43
+ /** The types of the assessment question */
44
+ exports.AssessmentQuestionType = (0, type_utils_1.makeEnum)({
45
+ /** A long-answer text question */
46
+ LongAnswer: 'LONG_ANSWER_TEXT',
47
+ /** A short-answer text question */
48
+ ShortAnswer: 'SHORT_ANSWER_TEXT',
49
+ /** A single-select question */
50
+ SingleSelect: 'SINGLE_SELECT',
51
+ /** A multi-select question */
52
+ MultiSelect: 'MULTI_SELECT',
53
+ /** A file question */
54
+ File: 'FILE',
55
+ /** A static text field that has no answer field */
56
+ Description: 'DESCRIPTION',
57
+ });
58
+ /**
59
+ * The sub-types of the assessment question
60
+ * TODO: https://transcend.height.app/T-36999 - migrate keys to equal values, just like
61
+ * StaticAssessmentQuestionSubType and DynamicAssessmentQuestionSubType
62
+ */
63
+ exports.AssessmentQuestionSubType = (0, type_utils_1.makeEnum)({
64
+ /** A None subType for types that do not accept subTypes */
65
+ None: 'NONE',
66
+ /** A Custom subType for user-defined select types */
67
+ Custom: 'CUSTOM',
68
+ /** A user */
69
+ User: 'USER',
70
+ /** A team */
71
+ Team: 'TEAM',
72
+ /** A Data SubCategory */
73
+ DataSubCategory: 'DATA_SUB_CATEGORY',
74
+ /** A Processing Purpose SubCategory */
75
+ ProcessingPurposeSubCategory: 'PROCESSING_PURPOSE_SUB_CATEGORY',
76
+ /** A vendor */
77
+ Vendor: 'VENDOR',
78
+ /** A Region question */
79
+ Region: 'REGION',
80
+ /** A Business Entity */
81
+ BusinessEntity: 'BUSINESS_ENTITY',
82
+ /** The category of the recipient */
83
+ SaaSCategory: 'SAA_S_CATEGORY',
84
+ /** The Data Processing Agreement Status */
85
+ DataProcessingAgreementStatus: 'DATA_PROCESSING_AGREEMENT_STATUS',
86
+ /** The deprecation state */
87
+ DeprecationState: 'DEPRECATION_STATE',
88
+ /** The identifier */
89
+ Identifier: 'IDENTIFIER',
90
+ /** A Data Silo */
91
+ DataSilo: 'DATA_SILO',
92
+ /** Whether the data silo is recommended for consent manager purposes */
93
+ RecommendedForConsent: 'RECOMMENDED_FOR_CONSENT',
94
+ /** Whether the data silo is recommended for privacy request purposes */
95
+ RecommendedForPrivacy: 'RECOMMENDED_FOR_PRIVACY',
96
+ /** The subject */
97
+ Subject: 'SUBJECT',
98
+ /** The type of retention schedule */
99
+ RetentionType: 'RETENTION_TYPE',
100
+ /** The controllership */
101
+ Controllership: 'CONTROLLERSHIP',
102
+ /** Whether the data silo has personal data */
103
+ HasPersonalData: 'HAS_PERSONAL_DATA',
104
+ /** The Attribute Key referring to a custom field */
105
+ AttributeKey: 'ATTRIBUTE_KEY',
106
+ });
107
+ /** The possible actions within an assessment question's display logic */
108
+ exports.AssessmentsDisplayLogicAction = (0, type_utils_1.makeEnum)({
109
+ /** Display the question */
110
+ Show: 'SHOW',
111
+ /** Skip the question */
112
+ Skip: 'SKIP',
113
+ });
114
+ /** The comparison operators to use in an assessment question's display logic */
115
+ exports.ComparisonOperator = (0, type_utils_1.makeEnum)({
116
+ /** is equal to */
117
+ IsEqualTo: 'IS_EQUAL_TO',
118
+ /** is not equal to */
119
+ IsNotEqualTo: 'IS_NOT_EQUAL_TO',
120
+ /** is one of */
121
+ IsOneOf: 'IS_ONE_OF',
122
+ /** is not one of */
123
+ IsNotOneOf: 'IS_NOT_ONE_OF',
124
+ /** contains */
125
+ Contains: 'CONTAINS',
126
+ /** is shown */
127
+ IsShown: 'IS_SHOWN',
128
+ /** is not shown */
129
+ IsNotShown: 'IS_NOT_SHOWN',
130
+ });
131
+ /** The logic operators to use in an assessment question's display logic */
132
+ exports.LogicOperator = (0, type_utils_1.makeEnum)({
133
+ /** and */
134
+ And: 'AND',
135
+ /** or */
136
+ Or: 'OR',
137
+ });
138
+ /**
139
+ * types of data to be managed by the data retention policy
140
+ */
141
+ var RetentionScheduleType;
142
+ (function (RetentionScheduleType) {
143
+ RetentionScheduleType["REQUESTS_CREATED_AT"] = "REQUESTS_CREATED_AT";
144
+ RetentionScheduleType["ASSESSMENT_FORM_COMPLETED_AT"] = "ASSESSMENT_FORM_COMPLETED_AT";
145
+ })(RetentionScheduleType || (exports.RetentionScheduleType = RetentionScheduleType = {}));
146
+ /**
147
+ * operation types for the data retention policy
148
+ * FULL_DELETE: delete full record
149
+ * PARTIAL_DELETE: delete identifiers only
150
+ * NONE: don't do anything to the data
151
+ */
152
+ var RetentionScheduleOperation;
153
+ (function (RetentionScheduleOperation) {
154
+ RetentionScheduleOperation["FULL_DELETE"] = "FULL_DELETE";
155
+ RetentionScheduleOperation["PARTIAL_DELETE"] = "PARTIAL_DELETE";
156
+ RetentionScheduleOperation["NONE"] = "NONE";
157
+ })(RetentionScheduleOperation || (exports.RetentionScheduleOperation = RetentionScheduleOperation = {}));
30
158
  //# sourceMappingURL=assessmentForm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"assessmentForm.js","sourceRoot":"","sources":["../src/assessmentForm.ts"],"names":[],"mappings":";;;AAAA,kCAAkC;AAClC,IAAY,oBAeX;AAfD,WAAY,oBAAoB;IAC9B,uEAAuE;IACvE,uCAAe,CAAA;IACf,4EAA4E;IAC5E,yCAAiB,CAAA;IACjB,+CAA+C;IAC/C,kDAA0B,CAAA;IAC1B,6DAA6D;IAC7D,8CAAsB,CAAA;IACtB,qDAAqD;IACrD,8DAAsC,CAAA;IACtC,yCAAyC;IACzC,6CAAqB,CAAA;IACrB,yCAAyC;IACzC,6CAAqB,CAAA;AACvB,CAAC,EAfW,oBAAoB,oCAApB,oBAAoB,QAe/B;AAED,0CAA0C;AAC1C,IAAY,4BAKX;AALD,WAAY,4BAA4B;IACtC,oCAAoC;IACpC,+CAAe,CAAA;IACf,uDAAuD;IACvD,uDAAuB,CAAA;AACzB,CAAC,EALW,4BAA4B,4CAA5B,4BAA4B,QAKvC"}
1
+ {"version":3,"file":"assessmentForm.js","sourceRoot":"","sources":["../src/assessmentForm.ts"],"names":[],"mappings":"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"}