@transcend-io/cli 5.2.1 → 5.3.2
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 +89 -21
- package/build/cli-request-enricher-restart.d.ts +3 -0
- package/build/cli-request-enricher-restart.d.ts.map +1 -0
- package/build/cli-request-enricher-restart.js +94 -0
- package/build/cli-request-enricher-restart.js.map +1 -0
- package/build/graphql/fetchAllRequestEnrichers.d.ts +2 -1
- package/build/graphql/fetchAllRequestEnrichers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestEnrichers.js.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.d.ts +2 -8
- package/build/graphql/fetchAllRequestIdentifiers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.js +0 -4
- package/build/graphql/fetchAllRequestIdentifiers.js.map +1 -1
- package/build/graphql/gqls/RequestEnricher.d.ts +1 -0
- package/build/graphql/gqls/RequestEnricher.d.ts.map +1 -1
- package/build/graphql/gqls/RequestEnricher.js +10 -1
- package/build/graphql/gqls/RequestEnricher.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/retryRequestEnricher.d.ts +9 -0
- package/build/graphql/retryRequestEnricher.d.ts.map +1 -0
- package/build/graphql/retryRequestEnricher.js +18 -0
- package/build/graphql/retryRequestEnricher.js.map +1 -0
- package/build/graphql/syncConsentManager.d.ts.map +1 -1
- package/build/graphql/syncConsentManager.js +2 -0
- package/build/graphql/syncConsentManager.js.map +1 -1
- package/build/graphql/syncDataFlows.d.ts.map +1 -1
- package/build/graphql/syncDataFlows.js +1 -0
- package/build/graphql/syncDataFlows.js.map +1 -1
- package/build/requests/bulkRetryEnrichers.d.ts +27 -0
- package/build/requests/bulkRetryEnrichers.d.ts.map +1 -0
- package/build/requests/bulkRetryEnrichers.js +70 -0
- package/build/requests/bulkRetryEnrichers.js.map +1 -0
- 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/tsbuildinfo +1 -1
- package/package.json +3 -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": "5.2
|
|
5
|
+
"version": "5.3.2",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"tr-push": "./build/cli-push.js",
|
|
31
31
|
"tr-request-approve": "./build/cli-request-approve.js",
|
|
32
32
|
"tr-request-cancel": "./build/cli-request-cancel.js",
|
|
33
|
+
"tr-request-enricher-restart": "./build/cli-request-enricher-restart.js",
|
|
33
34
|
"tr-request-export": "./build/cli-request-export.js",
|
|
34
35
|
"tr-request-mark-silent": "./build/cli-request-mark-silent.js",
|
|
35
36
|
"tr-request-notify-additional-time": "./build/cli-request-notify-additional-time.js",
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"@transcend-io/handlebars-utils": "^1.1.0",
|
|
64
65
|
"@transcend-io/internationalization": "^1.6.0",
|
|
65
66
|
"@transcend-io/persisted-state": "^1.0.4",
|
|
66
|
-
"@transcend-io/privacy-types": "^4.
|
|
67
|
+
"@transcend-io/privacy-types": "^4.79.0",
|
|
67
68
|
"@transcend-io/secret-value": "^1.2.0",
|
|
68
69
|
"@transcend-io/type-utils": "^1.4.2",
|
|
69
70
|
"bluebird": "^3.7.2",
|