@transcend-io/privacy-types 4.103.0 → 4.105.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 (34) hide show
  1. package/build/identifier.d.ts +2 -0
  2. package/build/identifier.d.ts.map +1 -1
  3. package/build/identifier.js +2 -0
  4. package/build/identifier.js.map +1 -1
  5. package/build/index.d.ts +1 -0
  6. package/build/index.d.ts.map +1 -1
  7. package/build/index.js +1 -0
  8. package/build/index.js.map +1 -1
  9. package/build/oneTrust/endpoints/getAssessment.d.ts +1356 -0
  10. package/build/oneTrust/endpoints/getAssessment.d.ts.map +1 -0
  11. package/build/oneTrust/endpoints/getAssessment.js +616 -0
  12. package/build/oneTrust/endpoints/getAssessment.js.map +1 -0
  13. package/build/oneTrust/endpoints/getListOfAssessments.d.ts +122 -0
  14. package/build/oneTrust/endpoints/getListOfAssessments.d.ts.map +1 -0
  15. package/build/oneTrust/endpoints/getListOfAssessments.js +118 -0
  16. package/build/oneTrust/endpoints/getListOfAssessments.js.map +1 -0
  17. package/build/oneTrust/endpoints/getRisk.d.ts +294 -0
  18. package/build/oneTrust/endpoints/getRisk.d.ts.map +1 -0
  19. package/build/oneTrust/endpoints/getRisk.js +311 -0
  20. package/build/oneTrust/endpoints/getRisk.js.map +1 -0
  21. package/build/oneTrust/endpoints/index.d.ts +4 -0
  22. package/build/oneTrust/endpoints/index.d.ts.map +1 -0
  23. package/build/oneTrust/endpoints/index.js +20 -0
  24. package/build/oneTrust/endpoints/index.js.map +1 -0
  25. package/build/oneTrust/index.d.ts +3 -0
  26. package/build/oneTrust/index.d.ts.map +1 -0
  27. package/build/oneTrust/index.js +19 -0
  28. package/build/oneTrust/index.js.map +1 -0
  29. package/build/oneTrust/oneTrustAssessmentCsv.d.ts +620 -0
  30. package/build/oneTrust/oneTrustAssessmentCsv.d.ts.map +1 -0
  31. package/build/oneTrust/oneTrustAssessmentCsv.js +652 -0
  32. package/build/oneTrust/oneTrustAssessmentCsv.js.map +1 -0
  33. package/build/tsbuildinfo +1 -1
  34. package/package.json +1 -1
@@ -0,0 +1,311 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.OneTrustGetRiskResponse = exports.OneTrustRiskCategories = void 0;
27
+ const t = __importStar(require("io-ts"));
28
+ /**
29
+ * reference: https://developer.onetrust.com/onetrust/reference/getriskusingget
30
+ * Return types of the "Get Risk" endpoint
31
+ */
32
+ const OneTrustEntityType = t.type({
33
+ /** Indicates whether entity type is eligible for linking/relating with risk or not */
34
+ eligibleForEntityLink: t.boolean,
35
+ /** Indicates whether the entity type is enabled or not. */
36
+ enabled: t.boolean,
37
+ /** Entity Type ID. This can be Assets, Entities, PIA, Engagement, Custom Object GUID in form of String. */
38
+ id: t.string,
39
+ /** Entity Type Name. */
40
+ label: t.string,
41
+ /** Name of the module. */
42
+ moduleName: t.union([t.string, t.null]),
43
+ /** Indicates whether this type can be risk type or not in Risk */
44
+ riskType: t.boolean,
45
+ /** For Base Entity Type Seeded is true and false for Custom Object/Entity Types by default. */
46
+ seeded: t.boolean,
47
+ /** Indicates whether this type can be source type or not in Risk */
48
+ sourceType: t.boolean,
49
+ /** Translation Key of Entity Type ID. */
50
+ translationKey: t.string,
51
+ });
52
+ const OneTrustRiskLevel = t.type({
53
+ /** Risk Impact Level name. */
54
+ impactLevel: t.union([t.string, t.null]),
55
+ /** Risk Impact level ID. */
56
+ impactLevelId: t.union([t.number, t.null]),
57
+ /** Risk Level Name. */
58
+ level: t.union([t.string, t.null]),
59
+ /** Risk Level ID. */
60
+ levelId: t.union([t.number, t.null]),
61
+ /** Risk Probability Level Name. */
62
+ probabilityLevel: t.union([t.string, t.null]),
63
+ /** Risk Probability Level ID. */
64
+ probabilityLevelId: t.union([t.number, t.null]),
65
+ /** Risk Score. */
66
+ riskScore: t.union([t.number, t.null]),
67
+ });
68
+ exports.OneTrustRiskCategories = t.array(t.intersection([
69
+ t.partial({
70
+ /** Whether the category was seeded */
71
+ seeded: t.boolean,
72
+ }),
73
+ t.type({
74
+ /** Identifier for Risk Category. */
75
+ id: t.string,
76
+ /** Risk Category Name. */
77
+ name: t.string,
78
+ /** Risk Category Name Key value for translation. */
79
+ nameKey: t.string,
80
+ }),
81
+ ]));
82
+ exports.OneTrustGetRiskResponse = t.type({
83
+ /** List of associated inventories to the risk. */
84
+ associatedInventories: t.array(t.type({
85
+ /** ID of the Inventory. */
86
+ inventoryId: t.string,
87
+ /** Name of the Inventory. */
88
+ inventoryName: t.string,
89
+ /** Type of the Inventory. */
90
+ inventoryType: t.union([
91
+ t.literal('ASSETS'),
92
+ t.literal('PROCESSING_ACTIVITIES'),
93
+ t.literal('VENDORS'),
94
+ t.literal('ENTITIES'),
95
+ t.null,
96
+ ]),
97
+ /** ID of the Inventory's Organization. */
98
+ organizationId: t.union([t.string, t.null]),
99
+ /** The source type */
100
+ sourceType: OneTrustEntityType,
101
+ })),
102
+ /** The attribute values associated with the risk */
103
+ attributeValues: t.object,
104
+ /** List of categories. */
105
+ categories: exports.OneTrustRiskCategories,
106
+ /** List of Control Identifiers. */
107
+ controlsIdentifier: t.array(t.string),
108
+ /** Risk created time. */
109
+ createdUTCDateTime: t.union([t.string, t.null]),
110
+ /** Risk Creation Type. */
111
+ creationType: t.union([t.string, t.null]),
112
+ /** Date when the risk is closed. */
113
+ dateClosed: t.union([t.string, t.null]),
114
+ /** Deadline date for the risk. */
115
+ deadline: t.union([t.string, t.null]),
116
+ /** Risk delete type. */
117
+ deleteType: t.union([t.literal('SOFT'), t.null]),
118
+ /** Risk description. */
119
+ description: t.union([t.string, t.null]),
120
+ /** ID of the risk. */
121
+ id: t.string,
122
+ /** Residual impact level name. */
123
+ impactLevel: t.union([t.string, t.null]),
124
+ /** Residual impact level ID. */
125
+ impactLevelId: t.union([t.number, t.null]),
126
+ /** The inherent risk level */
127
+ inherentRiskLevel: OneTrustRiskLevel,
128
+ /** The risk justification */
129
+ justification: t.union([t.string, t.null]),
130
+ /** Residual level display name. */
131
+ levelDisplayName: t.union([t.string, t.null]),
132
+ /** Residual level ID. */
133
+ levelId: t.union([t.number, t.null]),
134
+ /** Risk mitigated date. */
135
+ mitigatedDate: t.union([t.string, t.null]),
136
+ /** Risk Mitigation details. */
137
+ mitigation: t.union([t.string, t.null]),
138
+ /** Short Name for a Risk. */
139
+ name: t.union([t.string, t.null]),
140
+ /** Integer risk identifier. */
141
+ number: t.number,
142
+ /** The organization group */
143
+ orgGroup: t.intersection([
144
+ t.type({
145
+ /** The ID of the organization group */
146
+ id: t.string,
147
+ /** The name of the organization group */
148
+ name: t.string,
149
+ }),
150
+ t.partial({
151
+ /** The name key of the template */
152
+ nameKey: t.union([t.string, t.null]),
153
+ }),
154
+ ]),
155
+ /** The previous risk state */
156
+ previousState: t.union([
157
+ t.literal('IDENTIFIED'),
158
+ t.literal('RECOMMENDATION_ADDED'),
159
+ t.literal('RECOMMENDATION_SENT'),
160
+ t.literal('REMEDIATION_PROPOSED'),
161
+ t.literal('EXCEPTION_REQUESTED'),
162
+ t.literal('REDUCED'),
163
+ t.literal('RETAINED'),
164
+ t.literal('ARCHIVED_IN_VERSION'),
165
+ t.null,
166
+ ]),
167
+ /** Residual probability level. */
168
+ probabilityLevel: t.union([t.string, t.null]),
169
+ /** Residual probability level ID. */
170
+ probabilityLevelId: t.union([t.number, t.null]),
171
+ /** Risk Recommendation. */
172
+ recommendation: t.union([t.string, t.null]),
173
+ /** Proposed remediation. */
174
+ remediationProposal: t.union([t.string, t.null]),
175
+ /** Deadline reminder days. */
176
+ reminderDays: t.union([t.number, t.null]),
177
+ /** Risk exception request. */
178
+ requestedException: t.union([t.string, t.null]),
179
+ /** Risk Result. */
180
+ result: t.union([
181
+ t.literal('Accepted'),
182
+ t.literal('Avoided'),
183
+ t.literal('Reduced'),
184
+ t.literal('Rejected'),
185
+ t.literal('Transferred'),
186
+ t.literal('Ignored'),
187
+ t.null,
188
+ ]),
189
+ /** Risk approvers name csv. */
190
+ riskApprovers: t.union([t.string, t.null]),
191
+ /** Risk approvers ID. */
192
+ riskApproversId: t.array(t.string),
193
+ /** List of risk owners ID. */
194
+ riskOwnersId: t.union([t.array(t.string), t.null]),
195
+ /** Risk owners name csv. */
196
+ riskOwnersName: t.union([t.string, t.null]),
197
+ /** Risk score. */
198
+ riskScore: t.union([t.number, t.null]),
199
+ /** The risk source type */
200
+ riskSourceType: OneTrustEntityType,
201
+ /** The risk type */
202
+ riskType: OneTrustEntityType,
203
+ /** For Auto risk, rule Id reference. */
204
+ ruleRootVersionId: t.union([t.string, t.null]),
205
+ /** The risk source */
206
+ source: t.type({
207
+ /** Additional information about the Source Entity */
208
+ additionalAttributes: t.object,
209
+ /** Source Entity ID. */
210
+ id: t.string,
211
+ /** Source Entity Name. */
212
+ name: t.string,
213
+ /** The risk source type */
214
+ sourceType: OneTrustEntityType,
215
+ /** Source Entity Type. */
216
+ type: t.union([
217
+ t.literal('PIA'),
218
+ t.literal('RA'),
219
+ t.literal('GRA'),
220
+ t.literal('INVENTORY'),
221
+ t.literal('INCIDENT'),
222
+ t.literal('GENERIC'),
223
+ ]),
224
+ }),
225
+ /** The risk stage */
226
+ stage: t.intersection([
227
+ t.partial({
228
+ /** The currentStageApprovers */
229
+ currentStageApprovers: t.array(t.string),
230
+ /** The badgeColor */
231
+ badgeColor: t.union([t.string, t.null]),
232
+ }),
233
+ t.type({
234
+ /** ID of an entity. */
235
+ id: t.string,
236
+ /** Name of an entity. */
237
+ name: t.string,
238
+ /** Name Key of the entity for translation. */
239
+ nameKey: t.string,
240
+ }),
241
+ ]),
242
+ /** The risk state */
243
+ state: t.union([
244
+ t.literal('IDENTIFIED'),
245
+ t.literal('RECOMMENDATION_ADDED'),
246
+ t.literal('RECOMMENDATION_SENT'),
247
+ t.literal('REMEDIATION_PROPOSED'),
248
+ t.literal('EXCEPTION_REQUESTED'),
249
+ t.literal('REDUCED'),
250
+ t.literal('RETAINED'),
251
+ t.literal('ARCHIVED_IN_VERSION'),
252
+ ]),
253
+ /** The target risk level */
254
+ targetRiskLevel: OneTrustRiskLevel,
255
+ /** The risk threat */
256
+ threat: t.union([
257
+ t.type({
258
+ /** Threat ID. */
259
+ id: t.string,
260
+ /** Threat Identifier. */
261
+ identifier: t.string,
262
+ /** Threat Name. */
263
+ name: t.string,
264
+ }),
265
+ t.null,
266
+ ]),
267
+ /** Risk Treatment. */
268
+ treatment: t.union([t.string, t.null]),
269
+ /** Risk Treatment status. */
270
+ treatmentStatus: t.union([
271
+ t.literal('InProgress'),
272
+ t.literal('UnderReview'),
273
+ t.literal('ExceptionRequested'),
274
+ t.literal('Approved'),
275
+ t.literal('ExceptionGranted'),
276
+ t.null,
277
+ ]),
278
+ /** Risk Type. */
279
+ type: t.union([
280
+ t.literal('ASSESSMENTS'),
281
+ t.literal('ASSETS'),
282
+ t.literal('PROCESSING_ACTIVITIES'),
283
+ t.literal('VENDORS'),
284
+ t.literal('ENTITIES'),
285
+ t.literal('INCIDENTS'),
286
+ t.literal('ENGAGEMENTS'),
287
+ t.null,
288
+ ]),
289
+ /** ID of an assessment. */
290
+ typeRefIds: t.array(t.string),
291
+ /** List of vulnerabilities */
292
+ vulnerabilities: t.union([
293
+ t.array(t.type({
294
+ /** Vulnerability ID. */
295
+ id: t.string,
296
+ /** Vulnerability Identifier. */
297
+ identifier: t.string,
298
+ /** Vulnerability Name. */
299
+ name: t.string,
300
+ })),
301
+ t.null,
302
+ ]),
303
+ /** The risk workflow */
304
+ workflow: t.type({
305
+ /** ID of an entity. */
306
+ id: t.string,
307
+ /** Name of an entity. */
308
+ name: t.string,
309
+ }),
310
+ });
311
+ //# sourceMappingURL=getRisk.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getRisk.js","sourceRoot":"","sources":["../../../src/oneTrust/endpoints/getRisk.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ export * from './getListOfAssessments';
2
+ export * from './getAssessment';
3
+ export * from './getRisk';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/oneTrust/endpoints/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./getListOfAssessments"), exports);
18
+ __exportStar(require("./getAssessment"), exports);
19
+ __exportStar(require("./getRisk"), exports);
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/oneTrust/endpoints/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC;AACvC,kDAAgC;AAChC,4CAA0B"}
@@ -0,0 +1,3 @@
1
+ export * from './oneTrustAssessmentCsv';
2
+ export * from './endpoints';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/oneTrust/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,aAAa,CAAC"}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./oneTrustAssessmentCsv"), exports);
18
+ __exportStar(require("./endpoints"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/oneTrust/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,8CAA4B"}