@transcend-io/cli 4.132.5 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +70 -0
- package/README.md +20 -1
- package/build/cli-manual-enrichment-pull-identifiers.js +6 -5
- package/build/cli-manual-enrichment-pull-identifiers.js.map +1 -1
- package/build/cli-request-export.js +3 -0
- package/build/cli-request-export.js.map +1 -1
- package/build/codecs.d.ts +11 -0
- package/build/codecs.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.d.ts +81 -15
- package/build/graphql/fetchAllRequestIdentifiers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.js +67 -10
- package/build/graphql/fetchAllRequestIdentifiers.js.map +1 -1
- package/build/graphql/fetchRequestDataSilo.d.ts +3 -1
- package/build/graphql/fetchRequestDataSilo.d.ts.map +1 -1
- package/build/graphql/fetchRequestDataSilo.js +5 -2
- package/build/graphql/fetchRequestDataSilo.js.map +1 -1
- package/build/graphql/gqls/index.d.ts +1 -1
- package/build/graphql/gqls/index.d.ts.map +1 -1
- package/build/graphql/gqls/index.js +1 -1
- package/build/graphql/gqls/index.js.map +1 -1
- package/build/graphql/gqls/sombraVersion.d.ts +2 -0
- package/build/graphql/gqls/sombraVersion.d.ts.map +1 -0
- package/build/graphql/gqls/sombraVersion.js +14 -0
- package/build/graphql/gqls/sombraVersion.js.map +1 -0
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.d.ts +4 -2
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.d.ts.map +1 -1
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.js +7 -6
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.js.map +1 -1
- package/build/requests/bulkRestartRequests.d.ts.map +1 -1
- package/build/requests/bulkRestartRequests.js +11 -11
- package/build/requests/bulkRestartRequests.js.map +1 -1
- package/build/requests/pullPrivacyRequests.d.ts +4 -2
- package/build/requests/pullPrivacyRequests.d.ts.map +1 -1
- package/build/requests/pullPrivacyRequests.js +6 -5
- package/build/requests/pullPrivacyRequests.js.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/package.json +6 -4
- package/build/graphql/gqls/RequestIdentifier.d.ts +0 -2
- package/build/graphql/gqls/RequestIdentifier.d.ts.map +0 -1
- package/build/graphql/gqls/RequestIdentifier.js +0 -37
- package/build/graphql/gqls/RequestIdentifier.js.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
2
|
+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
3
|
+
|
|
4
|
+
## Table of Contents
|
|
5
|
+
|
|
6
|
+
- [Changelog](#changelog)
|
|
7
|
+
- [[5.0.0] - 2024-04-23](#500---2024-04-23)
|
|
8
|
+
- [Changed](#changed)
|
|
9
|
+
|
|
10
|
+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
11
|
+
|
|
12
|
+
# Changelog
|
|
13
|
+
|
|
14
|
+
All notable changes to the Transcend CLI tools will be documented in this file.
|
|
15
|
+
|
|
16
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
17
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
18
|
+
|
|
19
|
+
## [5.0.0] - 2024-04-23
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Added support for encrypted identifiers to `tr-manual-enricher-pull-identifiers` command.
|
|
24
|
+
|
|
25
|
+
- Now that this command is using Sombra to decrypt request identifiers, you may need to provide the `--sombraAuth` argument. It's required when using self-hosted Sombra, but not for multi-tenant.
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Before:
|
|
29
|
+
yarn tr-manual-enricher-pull-identifiers --auth=$TRANSCEND_API_KEY \
|
|
30
|
+
--actions=ERASURE \
|
|
31
|
+
--file=/Users/michaelfarrell/Desktop/test.csv
|
|
32
|
+
|
|
33
|
+
Now:
|
|
34
|
+
yarn tr-manual-enricher-pull-identifiers --auth=$TRANSCEND_API_KEY \
|
|
35
|
+
--sombraAuth=$SOMBRA_INTERNAL_KEY \
|
|
36
|
+
--actions=ERASURE \
|
|
37
|
+
--file=/Users/michaelfarrell/Desktop/test.csv
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
- Added support for encrypted identifiers to `tr-request-export` command.
|
|
41
|
+
|
|
42
|
+
- Now that this command is using Sombra to decrypt request identifiers, you may need to provide the `--sombraAuth` argument. It's required when using self-hosted Sombra, but not for multi-tenant.
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
Before:
|
|
46
|
+
yarn tr-request-export --auth=$TRANSCEND_API_KEY \
|
|
47
|
+
--actions=ERASURE \
|
|
48
|
+
--file=/Users/michaelfarrell/Desktop/test.csv
|
|
49
|
+
|
|
50
|
+
Now:
|
|
51
|
+
yarn tr-request-export --auth=$TRANSCEND_API_KEY \
|
|
52
|
+
--sombraAuth=$SOMBRA_INTERNAL_KEY \
|
|
53
|
+
--actions=ERASURE \
|
|
54
|
+
--file=/Users/michaelfarrell/Desktop/test.csv
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
- Added support for encrypted identifiers to `tr-request-restart` command, used only when `--copyIdentifiers` argument is specified.
|
|
58
|
+
|
|
59
|
+
- Now that this command is using Sombra to decrypt request identifiers, you may need to provide the `--sombraAuth` argument. It's required only when using `--copyIdentifiers` AND self-hosted Sombra, but is otherwise not required.
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
Before:
|
|
63
|
+
yarn tr-request-restart --auth=$TRANSCEND_API_KEY \
|
|
64
|
+
--statuses=COMPILING,APPROVING --actions=ERASURE --copyIdentifiers=true
|
|
65
|
+
|
|
66
|
+
Now:
|
|
67
|
+
yarn tr-request-restart --auth=$TRANSCEND_API_KEY \
|
|
68
|
+
--sombraAuth=$SOMBRA_INTERNAL_KEY \
|
|
69
|
+
--statuses=COMPILING,APPROVING --actions=ERASURE --copyIdentifiers=true
|
|
70
|
+
```
|
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
## Table of Contents
|
|
5
5
|
|
|
6
|
+
- [Changelog](#changelog)
|
|
6
7
|
- [Overview](#overview)
|
|
7
8
|
- [Installation](#installation)
|
|
8
9
|
- [transcend.yml](#transcendyml)
|
|
@@ -138,6 +139,10 @@
|
|
|
138
139
|
|
|
139
140
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
140
141
|
|
|
142
|
+
## Changelog
|
|
143
|
+
|
|
144
|
+
To stay up to date on breaking changes to the cli between major version updates, please refer to [CHANGELOG.md](CHANGELOG.md).
|
|
145
|
+
|
|
141
146
|
## Overview
|
|
142
147
|
|
|
143
148
|
A command line interface that allows you to define your Data Map in code and sync that configuration back to https://app.transcend.io.
|
|
@@ -1262,7 +1267,7 @@ The API key needs the following scopes:
|
|
|
1262
1267
|
| statuses | The [request statuses](https://docs.transcend.io/docs/privacy-requests/overview#request-statuses) to restart. | RequestStatus[] | N/A | true |
|
|
1263
1268
|
| transcendUrl | URL of the Transcend backend. Use https://api.us.transcend.io for US hosting. | string - URL | https://api.transcend.io | false |
|
|
1264
1269
|
| requestReceiptFolder | The path to the folder where receipts of each upload are stored. This allows for debugging of errors. | string | ./privacy-request-upload-receipts | false |
|
|
1265
|
-
| sombraAuth | The sombra internal key, use for additional authentication when self-hosting sombra.
|
|
1270
|
+
| sombraAuth | The sombra internal key, use for additional authentication when self-hosting sombra. Only required when `copyIdentifiers` flag used. | string | N/A | false |
|
|
1266
1271
|
| concurrency | The concurrency to use when uploading requests in parallel. | number | 15 | false |
|
|
1267
1272
|
| requestIds | Specify the specific request IDs to restart | string[] | [] | false |
|
|
1268
1273
|
| emailIsVerified | Indicate whether the primary email address is verified. Set to false to send a verification email. | boolean | true | false |
|
|
@@ -1365,6 +1370,7 @@ The API key needs the following scopes:
|
|
|
1365
1370
|
| Argument | Description | Type | Default | Required |
|
|
1366
1371
|
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ------------------------------ | -------- |
|
|
1367
1372
|
| auth | The Transcend API key with the scopes necessary for the command. | string | N/A | true |
|
|
1373
|
+
| sombraAuth | The sombra internal key, use for additional authentication when self-hosting sombra. | string | N/A | false |
|
|
1368
1374
|
| actions | The [request action](https://docs.transcend.io/docs/privacy-requests/configuring-requests/data-subject-requests#data-actions) to restart. | RequestAction[] | N/A | false |
|
|
1369
1375
|
| statuses | The [request statuses](https://docs.transcend.io/docs/privacy-requests/overview#request-statuses) to restart. | RequestStatus[] | N/A | false |
|
|
1370
1376
|
| transcendUrl | URL of the Transcend backend. Use https://api.us.transcend.io for US hosting. | string - URL | https://api.transcend.io | false |
|
|
@@ -1394,6 +1400,12 @@ Specifying the backend URL, needed for US hosted backend infrastructure.
|
|
|
1394
1400
|
yarn tr-request-export --auth=$TRANSCEND_API_KEY --transcendUrl=https://api.us.transcend.io
|
|
1395
1401
|
```
|
|
1396
1402
|
|
|
1403
|
+
With Sombra authentication
|
|
1404
|
+
|
|
1405
|
+
```sh
|
|
1406
|
+
yarn tr-request-export --auth=$TRANSCEND_API_KEY --sombraAuth=$SOMBRA_INTERNAL_KEY
|
|
1407
|
+
```
|
|
1408
|
+
|
|
1397
1409
|
Increase the concurrency (defaults to 100)
|
|
1398
1410
|
|
|
1399
1411
|
```sh
|
|
@@ -1561,6 +1573,7 @@ The API key must have the following scopes:
|
|
|
1561
1573
|
| Argument | Description | Type | Default | Required |
|
|
1562
1574
|
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------ | ----------------------------------- | -------- |
|
|
1563
1575
|
| auth | The Transcend API key with the scopes necessary for the command. | string | N/A | true |
|
|
1576
|
+
| sombraAuth | The sombra internal key, use for additional authentication when self-hosting sombra. | string | N/A | false |
|
|
1564
1577
|
| transcendUrl | URL of the Transcend backend. Use https://api.us.transcend.io for US hosting. | string - URL | https://api.transcend.io | false |
|
|
1565
1578
|
| file | Path to the CSV file where requests will be written to. | string - file-path | ./manual-enrichment-identifiers.csv | false |
|
|
1566
1579
|
| actions | The [request action](https://docs.transcend.io/docs/privacy-requests/configuring-requests/data-subject-requests#data-actions) to pull for. | RequestAction[] | N/A | false |
|
|
@@ -1591,6 +1604,12 @@ For US hosted infrastructure
|
|
|
1591
1604
|
yarn tr-manual-enrichment-pull-identifiers --auth=$TRANSCEND_API_KEY --transcendUrl=https://api.us.transcend.io
|
|
1592
1605
|
```
|
|
1593
1606
|
|
|
1607
|
+
With Sombra authentication
|
|
1608
|
+
|
|
1609
|
+
```sh
|
|
1610
|
+
yarn tr-manual-enrichment-pull-identifiers --auth=$TRANSCEND_API_KEY --sombraAuth=$SOMBRA_INTERNAL_KEY
|
|
1611
|
+
```
|
|
1612
|
+
|
|
1594
1613
|
With specific concurrency
|
|
1595
1614
|
|
|
1596
1615
|
```sh
|
|
@@ -4,12 +4,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
const yargs_parser_1 = __importDefault(require("yargs-parser"));
|
|
8
7
|
const colors_1 = __importDefault(require("colors"));
|
|
9
|
-
const
|
|
10
|
-
const manual_enrichment_1 = require("./manual-enrichment");
|
|
8
|
+
const yargs_parser_1 = __importDefault(require("yargs-parser"));
|
|
11
9
|
const privacy_types_1 = require("@transcend-io/privacy-types");
|
|
12
10
|
const constants_1 = require("./constants");
|
|
11
|
+
const logger_1 = require("./logger");
|
|
12
|
+
const manual_enrichment_1 = require("./manual-enrichment");
|
|
13
13
|
/**
|
|
14
14
|
* Pull the the set of requests that actively require manual enrichment.
|
|
15
15
|
*
|
|
@@ -27,8 +27,8 @@ const constants_1 = require("./constants");
|
|
|
27
27
|
*/
|
|
28
28
|
async function main() {
|
|
29
29
|
// Parse command line arguments
|
|
30
|
-
const { file = './manual-enrichment-identifiers.csv', transcendUrl = constants_1.DEFAULT_TRANSCEND_API, auth, actions = '', concurrency = '100', } = (0, yargs_parser_1.default)(process.argv.slice(2));
|
|
31
|
-
// Ensure auth is
|
|
30
|
+
const { file = './manual-enrichment-identifiers.csv', transcendUrl = constants_1.DEFAULT_TRANSCEND_API, auth, sombraAuth, actions = '', concurrency = '100', } = (0, yargs_parser_1.default)(process.argv.slice(2));
|
|
31
|
+
// Ensure auth is provided
|
|
32
32
|
if (!auth) {
|
|
33
33
|
logger_1.logger.error(colors_1.default.red('A Transcend API key must be provided. You can specify using --auth=$TRANSCEND_API_KEY'));
|
|
34
34
|
process.exit(1);
|
|
@@ -49,6 +49,7 @@ async function main() {
|
|
|
49
49
|
concurrency: parseInt(concurrency, 10),
|
|
50
50
|
requestActions,
|
|
51
51
|
auth,
|
|
52
|
+
sombraAuth,
|
|
52
53
|
});
|
|
53
54
|
}
|
|
54
55
|
main();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli-manual-enrichment-pull-identifiers.js","sourceRoot":"","sources":["../src/cli-manual-enrichment-pull-identifiers.ts"],"names":[],"mappings":";;;;;;AAEA,gEAAiC;
|
|
1
|
+
{"version":3,"file":"cli-manual-enrichment-pull-identifiers.js","sourceRoot":"","sources":["../src/cli-manual-enrichment-pull-identifiers.ts"],"names":[],"mappings":";;;;;;AAEA,oDAA4B;AAC5B,gEAAiC;AAEjC,+DAA4D;AAC5D,2CAAoD;AACpD,qCAAkC;AAClC,2DAA2E;AAE3E;;;;;;;;;;;;;;GAcG;AACH,KAAK,UAAU,IAAI;IACjB,+BAA+B;IAC/B,MAAM,EACJ,IAAI,GAAG,qCAAqC,EAC5C,YAAY,GAAG,iCAAqB,EACpC,IAAI,EACJ,UAAU,EACV,OAAO,GAAG,EAAE,EACZ,WAAW,GAAG,KAAK,GACpB,GAAG,IAAA,sBAAK,EAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAA8B,CAAC;IAE9D,0BAA0B;IAC1B,IAAI,CAAC,IAAI,EAAE;QACT,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,uFAAuF,CACxF,CACF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACjB;IAED,mBAAmB;IACnB,MAAM,cAAc,GAAG,OAAO;SAC3B,KAAK,CAAC,GAAG,CAAC;SACV,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAoB,CAAC;IACzC,MAAM,cAAc,GAAG,cAAc,CAAC,MAAM,CAC1C,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,6BAAa,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAC3D,CAAC;IACF,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC,EAAE;QAC7B,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,oCAAoC,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAChE,CACF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACjB;IAED,qCAAqC;IACrC,MAAM,IAAA,wDAAoC,EAAC;QACzC,IAAI;QACJ,YAAY;QACZ,WAAW,EAAE,QAAQ,CAAC,WAAW,EAAE,EAAE,CAAC;QACtC,cAAc;QACd,IAAI;QACJ,UAAU;KACX,CAAC,CAAC;AACL,CAAC;AAED,IAAI,EAAE,CAAC"}
|
|
@@ -36,6 +36,8 @@ async function main() {
|
|
|
36
36
|
transcendUrl = constants_1.DEFAULT_TRANSCEND_API,
|
|
37
37
|
/** API key */
|
|
38
38
|
auth,
|
|
39
|
+
/** Sombra API key */
|
|
40
|
+
sombraAuth,
|
|
39
41
|
/** Request actions to export */
|
|
40
42
|
actions = '',
|
|
41
43
|
/** Request statuses to export */
|
|
@@ -80,6 +82,7 @@ async function main() {
|
|
|
80
82
|
actions: parsedActions,
|
|
81
83
|
statuses: parsedStatuses,
|
|
82
84
|
auth,
|
|
85
|
+
sombraAuth,
|
|
83
86
|
createdAtBefore: createdAtBefore ? new Date(createdAtBefore) : undefined,
|
|
84
87
|
createdAtAfter: createdAtAfter ? new Date(createdAtAfter) : undefined,
|
|
85
88
|
isTest: showTests === 'true' ? true : showTests === 'false' ? false : undefined,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli-request-export.js","sourceRoot":"","sources":["../src/cli-request-export.ts"],"names":[],"mappings":";;;;;;AAEA,gEAAiC;AACjC,oDAA4B;AAE5B,qCAAkC;AAClC,uDAA+B;AAC/B,+DAA2E;AAC3E,yCAAiE;AACjE,2CAAoD;AACpD,iCAAkC;AAElC;;;;;;;;;;;;;;;;GAgBG;AACH,KAAK,UAAU,IAAI;IACjB,+BAA+B;IAC/B,MAAM,EACJ,IAAI,GAAG,gCAAgC;IACvC,4BAA4B;IAC5B,YAAY,GAAG,iCAAqB;IACpC,cAAc;IACd,IAAI;IACJ,gCAAgC;IAChC,OAAO,GAAG,EAAE;IACZ,iCAAiC;IACjC,QAAQ,GAAG,EAAE;IACb,8CAA8C;IAC9C,SAAS;IACT,kDAAkD;IAClD,eAAe;IACf,iDAAiD;IACjD,cAAc;IACd,iCAAiC;IACjC,SAAS,GAAG,KAAK,GAClB,GAAG,IAAA,sBAAK,EAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAA8B,CAAC;IAE9D,wBAAwB;IACxB,IAAI,CAAC,IAAI,EAAE;QACT,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,uFAAuF,CACxF,CACF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACjB;IAED,mBAAmB;IACnB,MAAM,aAAa,GAAG,IAAA,yBAAc,EAAC,OAAO,CAAoB,CAAC;IACjE,MAAM,cAAc,GAAG,aAAa,CAAC,MAAM;IACzC,8DAA8D;IAC9D,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,6BAAa,CAAC,CAAC,QAAQ,CAAC,IAAW,CAAC,CAC9D,CAAC;IACF,IAAI,cAAc,CAAC,MAAM,GAAG,CAAC,EAAE;QAC7B,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,4BAA4B,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM;
|
|
1
|
+
{"version":3,"file":"cli-request-export.js","sourceRoot":"","sources":["../src/cli-request-export.ts"],"names":[],"mappings":"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"}
|
package/build/codecs.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ export declare const TeamInput: t.IntersectionC<[t.TypeC<{
|
|
|
60
60
|
scopes: t.ArrayC<t.KeyofC<{
|
|
61
61
|
readOnly: unknown;
|
|
62
62
|
fullAdmin: unknown;
|
|
63
|
+
viewAllActionItems: unknown;
|
|
64
|
+
manageAllActionItems: unknown;
|
|
63
65
|
makeDataSubjectRequest: unknown;
|
|
64
66
|
connectDataSilos: unknown;
|
|
65
67
|
deployPrivacyCenter: unknown;
|
|
@@ -5893,6 +5895,8 @@ export declare const AgentFileInput: t.IntersectionC<[t.TypeC<{
|
|
|
5893
5895
|
purpose: t.KeyofC<{
|
|
5894
5896
|
ASSISTANTS: unknown;
|
|
5895
5897
|
FINE_TUNE: unknown;
|
|
5898
|
+
FINE_TUNE_RESULTS: unknown;
|
|
5899
|
+
ASSISTANTS_OUTPUT: unknown;
|
|
5896
5900
|
}>;
|
|
5897
5901
|
}>, t.PartialC<{
|
|
5898
5902
|
/** Description of the agentFile */
|
|
@@ -33896,6 +33900,7 @@ export declare const ConsentManageExperienceInput: t.IntersectionC<[t.TypeC<{
|
|
|
33896
33900
|
DoNotSellExplainer: unknown;
|
|
33897
33901
|
CompleteOptionsToggles: unknown;
|
|
33898
33902
|
PrivacyPolicyNotice: unknown;
|
|
33903
|
+
PrivacyPolicyNoticeWithCloseButton: unknown;
|
|
33899
33904
|
CompleteOptions: unknown;
|
|
33900
33905
|
CompleteOptionsInverted: unknown;
|
|
33901
33906
|
Hidden: unknown;
|
|
@@ -40068,6 +40073,7 @@ export declare const ConsentManagerInput: t.PartialC<{
|
|
|
40068
40073
|
DoNotSellExplainer: unknown;
|
|
40069
40074
|
CompleteOptionsToggles: unknown;
|
|
40070
40075
|
PrivacyPolicyNotice: unknown;
|
|
40076
|
+
PrivacyPolicyNoticeWithCloseButton: unknown;
|
|
40071
40077
|
CompleteOptions: unknown;
|
|
40072
40078
|
CompleteOptionsInverted: unknown;
|
|
40073
40079
|
Hidden: unknown;
|
|
@@ -46545,6 +46551,8 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
46545
46551
|
scopes: t.ArrayC<t.KeyofC<{
|
|
46546
46552
|
readOnly: unknown;
|
|
46547
46553
|
fullAdmin: unknown;
|
|
46554
|
+
viewAllActionItems: unknown;
|
|
46555
|
+
manageAllActionItems: unknown;
|
|
46548
46556
|
makeDataSubjectRequest: unknown;
|
|
46549
46557
|
connectDataSilos: unknown;
|
|
46550
46558
|
deployPrivacyCenter: unknown;
|
|
@@ -85322,6 +85330,7 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
85322
85330
|
DoNotSellExplainer: unknown;
|
|
85323
85331
|
CompleteOptionsToggles: unknown;
|
|
85324
85332
|
PrivacyPolicyNotice: unknown;
|
|
85333
|
+
PrivacyPolicyNoticeWithCloseButton: unknown;
|
|
85325
85334
|
CompleteOptions: unknown;
|
|
85326
85335
|
CompleteOptionsInverted: unknown;
|
|
85327
85336
|
Hidden: unknown;
|
|
@@ -86159,6 +86168,8 @@ export declare const TranscendInput: t.PartialC<{
|
|
|
86159
86168
|
purpose: t.KeyofC<{
|
|
86160
86169
|
ASSISTANTS: unknown;
|
|
86161
86170
|
FINE_TUNE: unknown;
|
|
86171
|
+
FINE_TUNE_RESULTS: unknown;
|
|
86172
|
+
ASSISTANTS_OUTPUT: unknown;
|
|
86162
86173
|
}>;
|
|
86163
86174
|
}>, t.PartialC<{
|
|
86164
86175
|
/** Description of the agentFile */
|