@transcend-io/cli 6.6.0 → 6.8.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/README.md +138 -20
- package/build/cli-pull-datapoints.d.ts +3 -0
- package/build/cli-pull-datapoints.d.ts.map +1 -0
- package/build/cli-pull-datapoints.js +93 -0
- package/build/cli-pull-datapoints.js.map +1 -0
- package/build/cli-request-export.js.map +1 -1
- package/build/cli-request-reject-unverified-identifiers.d.ts +3 -0
- package/build/cli-request-reject-unverified-identifiers.d.ts.map +1 -0
- package/build/cli-request-reject-unverified-identifiers.js +57 -0
- package/build/cli-request-reject-unverified-identifiers.js.map +1 -0
- package/build/codecs.d.ts +2 -0
- package/build/codecs.d.ts.map +1 -1
- package/build/constants.d.ts +1 -0
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +2 -1
- package/build/constants.js.map +1 -1
- package/build/data-inventory/index.d.ts +2 -0
- package/build/data-inventory/index.d.ts.map +1 -0
- package/build/data-inventory/index.js +18 -0
- package/build/data-inventory/index.js.map +1 -0
- package/build/data-inventory/pullAllDatapoints.d.ts +78 -0
- package/build/data-inventory/pullAllDatapoints.d.ts.map +1 -0
- package/build/data-inventory/pullAllDatapoints.js +242 -0
- package/build/data-inventory/pullAllDatapoints.js.map +1 -0
- package/build/graphql/fetchAllRequestEnrichers.d.ts +1 -1
- package/build/graphql/fetchAllRequestEnrichers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifierMetadata.d.ts +21 -0
- package/build/graphql/fetchAllRequestIdentifierMetadata.d.ts.map +1 -0
- package/build/graphql/fetchAllRequestIdentifierMetadata.js +34 -0
- package/build/graphql/fetchAllRequestIdentifierMetadata.js.map +1 -0
- package/build/graphql/gqls/RequestIdentifier.d.ts +3 -0
- package/build/graphql/gqls/RequestIdentifier.d.ts.map +1 -0
- package/build/graphql/gqls/RequestIdentifier.js +41 -0
- package/build/graphql/gqls/RequestIdentifier.js.map +1 -0
- package/build/graphql/gqls/dataPoint.d.ts +3 -0
- package/build/graphql/gqls/dataPoint.d.ts.map +1 -1
- package/build/graphql/gqls/dataPoint.js +51 -12
- package/build/graphql/gqls/dataPoint.js.map +1 -1
- package/build/graphql/gqls/dataSilo.d.ts +1 -0
- package/build/graphql/gqls/dataSilo.d.ts.map +1 -1
- package/build/graphql/gqls/dataSilo.js +16 -1
- package/build/graphql/gqls/dataSilo.js.map +1 -1
- package/build/graphql/gqls/index.d.ts +1 -0
- package/build/graphql/gqls/index.d.ts.map +1 -1
- package/build/graphql/gqls/index.js +1 -0
- package/build/graphql/gqls/index.js.map +1 -1
- package/build/graphql/index.d.ts +1 -0
- package/build/graphql/index.d.ts.map +1 -1
- package/build/graphql/index.js +1 -0
- package/build/graphql/index.js.map +1 -1
- package/build/graphql/syncDataSilos.d.ts +1 -1
- package/build/graphql/syncDataSilos.d.ts.map +1 -1
- package/build/graphql/syncDataSilos.js +8 -3
- package/build/graphql/syncDataSilos.js.map +1 -1
- package/build/index.d.ts +1 -0
- package/build/index.d.ts.map +1 -1
- package/build/index.js +1 -0
- package/build/index.js.map +1 -1
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.d.ts.map +1 -1
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.js.map +1 -1
- package/build/requests/bulkRestartRequests.js.map +1 -1
- package/build/requests/index.d.ts +1 -0
- package/build/requests/index.d.ts.map +1 -1
- package/build/requests/index.js +1 -0
- package/build/requests/index.js.map +1 -1
- package/build/requests/pullPrivacyRequests.d.ts.map +1 -1
- package/build/requests/pullPrivacyRequests.js.map +1 -1
- package/build/requests/removeUnverifiedRequestIdentifiers.d.ts +20 -0
- package/build/requests/removeUnverifiedRequestIdentifiers.d.ts.map +1 -0
- package/build/requests/removeUnverifiedRequestIdentifiers.js +61 -0
- package/build/requests/removeUnverifiedRequestIdentifiers.js.map +1 -0
- package/build/tsbuildinfo +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Transcend Inc.",
|
|
3
3
|
"name": "@transcend-io/cli",
|
|
4
4
|
"description": "Small package containing useful typescript utilities.",
|
|
5
|
-
"version": "6.
|
|
5
|
+
"version": "6.8.0",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"tr-pull": "./build/cli-pull.js",
|
|
28
28
|
"tr-pull-consent-metrics": "./build/cli-pull-consent-metrics.js",
|
|
29
29
|
"tr-pull-consent-preferences": "./build/cli-pull-consent-preferences.js",
|
|
30
|
+
"tr-pull-datapoints": "./build/cli-pull-datapoints.js",
|
|
30
31
|
"tr-push": "./build/cli-push.js",
|
|
31
32
|
"tr-request-approve": "./build/cli-request-approve.js",
|
|
32
33
|
"tr-request-cancel": "./build/cli-request-cancel.js",
|
|
@@ -34,6 +35,7 @@
|
|
|
34
35
|
"tr-request-export": "./build/cli-request-export.js",
|
|
35
36
|
"tr-request-mark-silent": "./build/cli-request-mark-silent.js",
|
|
36
37
|
"tr-request-notify-additional-time": "./build/cli-request-notify-additional-time.js",
|
|
38
|
+
"tr-request-reject-unverified-identifiers": "./build/cli-request-reject-unverified-identifiers.js",
|
|
37
39
|
"tr-request-restart": "./build/cli-request-restart.js",
|
|
38
40
|
"tr-request-upload": "./build/cli-request-upload.js",
|
|
39
41
|
"tr-retry-request-data-silos": "./build/cli-retry-request-data-silos.js",
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
"@transcend-io/handlebars-utils": "^1.1.0",
|
|
65
67
|
"@transcend-io/internationalization": "^1.6.0",
|
|
66
68
|
"@transcend-io/persisted-state": "^1.0.4",
|
|
67
|
-
"@transcend-io/privacy-types": "^4.
|
|
69
|
+
"@transcend-io/privacy-types": "^4.92.0",
|
|
68
70
|
"@transcend-io/secret-value": "^1.2.0",
|
|
69
71
|
"@transcend-io/type-utils": "^1.5.0",
|
|
70
72
|
"bluebird": "^3.7.2",
|