@transcend-io/cli 5.1.0 → 5.2.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 +3 -2
- package/build/cli-upload-consent-preferences.js +2 -1
- package/build/cli-upload-consent-preferences.js.map +1 -1
- package/build/codecs.d.ts +51 -0
- package/build/codecs.d.ts.map +1 -1
- package/build/codecs.js +27 -2
- package/build/codecs.js.map +1 -1
- package/build/consent-manager/fetchConsentPreferences.d.ts +17 -13
- package/build/consent-manager/fetchConsentPreferences.d.ts.map +1 -1
- package/build/consent-manager/fetchConsentPreferences.js +4 -8
- package/build/consent-manager/fetchConsentPreferences.js.map +1 -1
- package/build/consent-manager/types.d.ts +94 -0
- package/build/consent-manager/types.d.ts.map +1 -0
- package/build/consent-manager/types.js +80 -0
- package/build/consent-manager/types.js.map +1 -0
- package/build/consent-manager/uploadConsentPreferences.d.ts +2 -27
- package/build/consent-manager/uploadConsentPreferences.d.ts.map +1 -1
- package/build/consent-manager/uploadConsentPreferences.js +1 -28
- package/build/consent-manager/uploadConsentPreferences.js.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.js +17 -10
- package/build/graphql/fetchAllRequestIdentifiers.js.map +1 -1
- package/build/graphql/fetchConsentManagerId.d.ts +8 -0
- package/build/graphql/fetchConsentManagerId.d.ts.map +1 -1
- package/build/graphql/fetchConsentManagerId.js +27 -1
- package/build/graphql/fetchConsentManagerId.js.map +1 -1
- package/build/graphql/gqls/consentManager.d.ts +2 -0
- package/build/graphql/gqls/consentManager.d.ts.map +1 -1
- package/build/graphql/gqls/consentManager.js +25 -1
- package/build/graphql/gqls/consentManager.js.map +1 -1
- package/build/graphql/pullTranscendConfiguration.d.ts.map +1 -1
- package/build/graphql/pullTranscendConfiguration.js +11 -1
- package/build/graphql/pullTranscendConfiguration.js.map +1 -1
- package/build/graphql/syncBusinessEntities.d.ts.map +1 -1
- package/build/graphql/syncBusinessEntities.js +21 -13
- package/build/graphql/syncBusinessEntities.js.map +1 -1
- package/build/graphql/syncConsentManager.d.ts.map +1 -1
- package/build/graphql/syncConsentManager.js +16 -1
- package/build/graphql/syncConsentManager.js.map +1 -1
- package/build/tests/findCodePackagesInFolder.test.js +13 -0
- package/build/tests/findCodePackagesInFolder.test.js.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/examples/code-scanning/test-package-json/package.json +4 -1
- package/package.json +1 -1
|
@@ -11,9 +11,12 @@
|
|
|
11
11
|
"license": "UNLICENSED",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"dd-trace": "2.45.1",
|
|
14
|
-
"fast-csv": "^4.3.6"
|
|
14
|
+
"fast-csv": "^4.3.6",
|
|
15
|
+
"sequelize": "^6.37.3",
|
|
16
|
+
"sequelize-mock": "^0.10.2"
|
|
15
17
|
},
|
|
16
18
|
"devDependencies": {
|
|
19
|
+
"@types/sequelize": "^4.28.20",
|
|
17
20
|
"typescript": "^5.0.4"
|
|
18
21
|
},
|
|
19
22
|
"packageManager": "yarn@3.5.0"
|
package/package.json
CHANGED