@transcend-io/cli 4.26.0 → 4.26.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 +19 -17
- package/build/graphql/fetchAllCookies.d.ts +52 -0
- package/build/graphql/fetchAllCookies.d.ts.map +1 -0
- package/build/graphql/fetchAllCookies.js +38 -0
- package/build/graphql/fetchAllCookies.js.map +1 -0
- package/build/graphql/fetchAllDataFlows.d.ts +52 -0
- package/build/graphql/fetchAllDataFlows.d.ts.map +1 -0
- package/build/graphql/fetchAllDataFlows.js +38 -0
- package/build/graphql/fetchAllDataFlows.js.map +1 -0
- package/build/graphql/fetchConsentManagerId.d.ts +9 -0
- package/build/graphql/fetchConsentManagerId.d.ts.map +1 -0
- package/build/graphql/fetchConsentManagerId.js +17 -0
- package/build/graphql/fetchConsentManagerId.js.map +1 -0
- package/build/graphql/formatAttributeValues.d.ts +2 -2
- package/build/graphql/formatAttributeValues.d.ts.map +1 -1
- package/build/graphql/formatAttributeValues.js.map +1 -1
- package/build/graphql/gqls/consentManager.d.ts +6 -0
- package/build/graphql/gqls/consentManager.d.ts.map +1 -0
- package/build/graphql/gqls/consentManager.js +122 -0
- package/build/graphql/gqls/consentManager.js.map +1 -0
- 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 +3 -0
- package/build/graphql/index.d.ts.map +1 -1
- package/build/graphql/index.js +3 -0
- package/build/graphql/index.js.map +1 -1
- package/build/graphql/syncDataSilos.d.ts +4 -4
- package/build/graphql/syncDataSilos.d.ts.map +1 -1
- package/build/requests/mapCsvRowsToRequestInputs.d.ts +2 -2
- package/build/requests/mapCsvRowsToRequestInputs.d.ts.map +1 -1
- package/build/requests/mapCsvRowsToRequestInputs.js.map +1 -1
- package/build/requests/parseAttributesFromString.d.ts +2 -2
- package/build/requests/parseAttributesFromString.d.ts.map +1 -1
- package/build/requests/submitPrivacyRequest.d.ts +3 -2
- package/build/requests/submitPrivacyRequest.d.ts.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/package.json +8 -7
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.26.
|
|
5
|
+
"version": "4.26.2",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -30,17 +30,18 @@
|
|
|
30
30
|
"scripts": {
|
|
31
31
|
"update:sdks": "yarn sdks base",
|
|
32
32
|
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
|
|
33
|
-
"build": "yarn
|
|
34
|
-
"clean": "yarn
|
|
35
|
-
"lint": "yarn
|
|
33
|
+
"build": "yarn tsc --build",
|
|
34
|
+
"clean": "yarn tsc --build --clean",
|
|
35
|
+
"lint": "yarn eslint src --ext .ts",
|
|
36
36
|
"prepublish": "yarn build",
|
|
37
|
-
"test": "yarn
|
|
37
|
+
"test": "yarn mocha './src/**/*.test.ts'",
|
|
38
|
+
"script:json-schema": "ts-node --transpile-only scripts/buildJsonSchema.ts && yarn prettier ./transcend-yml-schema-v4.json --write"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"@transcend-io/internationalization": "^1.5.0",
|
|
41
42
|
"@transcend-io/persisted-state": "^1.0.0",
|
|
42
|
-
"@transcend-io/privacy-types": "^4.
|
|
43
|
-
"@transcend-io/type-utils": "^1.0.
|
|
43
|
+
"@transcend-io/privacy-types": "^4.24.0",
|
|
44
|
+
"@transcend-io/type-utils": "^1.0.7",
|
|
44
45
|
"bluebird": "^3.7.2",
|
|
45
46
|
"cli-progress": "^3.11.2",
|
|
46
47
|
"colors": "^1.4.0",
|