@transcend-io/cli 4.99.0 → 4.101.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 +67 -10
- package/build/ai/TranscendAiPrompt.d.ts +3 -2
- package/build/ai/TranscendAiPrompt.d.ts.map +1 -1
- package/build/ai/TranscendAiPrompt.js +25 -4
- package/build/ai/TranscendAiPrompt.js.map +1 -1
- package/build/ai/getGitFilesThatChanged.d.ts +31 -0
- package/build/ai/getGitFilesThatChanged.d.ts.map +1 -0
- package/build/ai/getGitFilesThatChanged.js +56 -0
- package/build/ai/getGitFilesThatChanged.js.map +1 -0
- package/build/ai/index.d.ts +1 -0
- package/build/ai/index.d.ts.map +1 -1
- package/build/ai/index.js +1 -0
- package/build/ai/index.js.map +1 -1
- package/build/cli-upload-consent-preferences.d.ts +3 -0
- package/build/cli-upload-consent-preferences.d.ts.map +1 -0
- package/build/cli-upload-consent-preferences.js +72 -0
- package/build/cli-upload-consent-preferences.js.map +1 -0
- package/build/consent-manager/createConsentToken.d.ts +11 -0
- package/build/consent-manager/createConsentToken.d.ts.map +1 -0
- package/build/consent-manager/createConsentToken.js +67 -0
- package/build/consent-manager/createConsentToken.js.map +1 -0
- package/build/consent-manager/index.d.ts +1 -0
- package/build/consent-manager/index.d.ts.map +1 -1
- package/build/consent-manager/index.js +1 -0
- package/build/consent-manager/index.js.map +1 -1
- package/build/consent-manager/uploadConsentPreferences.d.ts +41 -0
- package/build/consent-manager/uploadConsentPreferences.d.ts.map +1 -0
- package/build/consent-manager/uploadConsentPreferences.js +115 -0
- package/build/consent-manager/uploadConsentPreferences.js.map +1 -0
- package/build/constants.d.ts +5 -0
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +6 -1
- package/build/constants.js.map +1 -1
- package/build/graphql/createTranscendConsentGotInstance.d.ts +10 -0
- package/build/graphql/createTranscendConsentGotInstance.d.ts.map +1 -0
- package/build/graphql/createTranscendConsentGotInstance.js +22 -0
- package/build/graphql/createTranscendConsentGotInstance.js.map +1 -0
- package/build/graphql/index.d.ts +5 -0
- package/build/graphql/index.d.ts.map +1 -1
- package/build/graphql/index.js +5 -0
- package/build/graphql/index.js.map +1 -1
- package/build/tests/TranscendAiPrompt.test.js +34 -7
- package/build/tests/TranscendAiPrompt.test.js.map +1 -1
- package/build/tests/getGitFilesThatChanged.test.d.ts +2 -0
- package/build/tests/getGitFilesThatChanged.test.d.ts.map +1 -0
- package/build/tests/getGitFilesThatChanged.test.js +24 -0
- package/build/tests/getGitFilesThatChanged.test.js.map +1 -0
- package/build/tsbuildinfo +1 -1
- package/package.json +4 -1
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": "4.
|
|
5
|
+
"version": "4.101.0",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"tr-retry-request-data-silos": "./build/cli-retry-request-data-silos.js",
|
|
37
37
|
"tr-skip-request-data-silos": "./build/cli-skip-request-data-silos.js",
|
|
38
38
|
"tr-update-consent-manager": "./build/cli-update-consent-manager-to-latest.js",
|
|
39
|
+
"tr-upload-consent-preferences": "./build/cli-upload-consent-preferences.js",
|
|
39
40
|
"tr-upload-cookies-from-csv": "./build/cli-upload-cookies-from-csv.js",
|
|
40
41
|
"tr-upload-data-flows-from-csv": "./build/cli-upload-data-flows-from-csv.js"
|
|
41
42
|
},
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
"io-ts": "=2.2.16",
|
|
81
82
|
"js-yaml": "^4.1.0",
|
|
82
83
|
"json2csv": "^6.0.0-alpha.2",
|
|
84
|
+
"jsonwebtoken": "^9.0.2",
|
|
83
85
|
"lodash": "^4.17.21",
|
|
84
86
|
"undici": "^5.22.1",
|
|
85
87
|
"yargs-parser": "^21.1.1"
|
|
@@ -95,6 +97,7 @@
|
|
|
95
97
|
"@types/inquirer": "^7.3.1",
|
|
96
98
|
"@types/inquirer-autocomplete-prompt": "^3.0.0",
|
|
97
99
|
"@types/js-yaml": "^4.0.5",
|
|
100
|
+
"@types/jsonwebtoken": "^9",
|
|
98
101
|
"@types/lodash": "^4.14.186",
|
|
99
102
|
"@types/mocha": "^10.0.1",
|
|
100
103
|
"@types/node": "^18.15.11",
|