@transcend-io/cli 6.25.0 → 6.26.1
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 +49 -41
- package/build/cli-cron-pull-identifiers.js +5 -1
- package/build/cli-cron-pull-identifiers.js.map +1 -1
- package/build/codecs.d.ts +199 -2
- package/build/codecs.d.ts.map +1 -1
- package/build/codecs.js +61 -1
- package/build/codecs.js.map +1 -1
- package/build/constants.d.ts.map +1 -1
- package/build/constants.js +9 -0
- package/build/constants.js.map +1 -1
- package/build/cron/pullCustomSiloOutstandingIdentifiers.d.ts +3 -1
- package/build/cron/pullCustomSiloOutstandingIdentifiers.d.ts.map +1 -1
- package/build/cron/pullCustomSiloOutstandingIdentifiers.js +20 -8
- package/build/cron/pullCustomSiloOutstandingIdentifiers.js.map +1 -1
- package/build/enums.d.ts +2 -1
- package/build/enums.d.ts.map +1 -1
- package/build/enums.js +1 -0
- package/build/enums.js.map +1 -1
- package/build/graphql/fetchAllPreferenceTopics.d.ts +25 -0
- package/build/graphql/fetchAllPreferenceTopics.d.ts.map +1 -1
- package/build/graphql/fetchAllPreferenceTopics.js.map +1 -1
- package/build/graphql/fetchAllPurposes.d.ts +22 -0
- package/build/graphql/fetchAllPurposes.d.ts.map +1 -1
- package/build/graphql/fetchAllPurposes.js.map +1 -1
- package/build/graphql/fetchAllPurposesAndPreferences.d.ts +15 -0
- package/build/graphql/fetchAllPurposesAndPreferences.d.ts.map +1 -0
- package/build/graphql/fetchAllPurposesAndPreferences.js +26 -0
- package/build/graphql/fetchAllPurposesAndPreferences.js.map +1 -0
- package/build/graphql/gqls/preferenceTopic.d.ts.map +1 -1
- package/build/graphql/gqls/preferenceTopic.js +14 -0
- package/build/graphql/gqls/preferenceTopic.js.map +1 -1
- package/build/graphql/gqls/purpose.d.ts.map +1 -1
- package/build/graphql/gqls/purpose.js +10 -0
- package/build/graphql/gqls/purpose.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/pullTranscendConfiguration.d.ts.map +1 -1
- package/build/graphql/pullTranscendConfiguration.js +38 -1
- package/build/graphql/pullTranscendConfiguration.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/preference-management/tests/checkIfPendingPreferenceUpdatesAreNoOp.test.js +56 -0
- package/build/preference-management/tests/checkIfPendingPreferenceUpdatesAreNoOp.test.js.map +1 -1
- package/build/preference-management/tests/checkIfPendingPreferenceUpdatesCauseConflict.test.js +57 -0
- package/build/preference-management/tests/checkIfPendingPreferenceUpdatesCauseConflict.test.js.map +1 -1
- package/build/preference-management/tests/getPreferenceUpdatesFromRow.test.js +188 -0
- package/build/preference-management/tests/getPreferenceUpdatesFromRow.test.js.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/package.json +3 -3
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.26.1",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"script:pathfinder-json-schema": "ts-node --transpile-only scripts/buildPathfinderJsonSchema.ts && yarn prettier ./pathfinder-policy-yml-schema.json --write"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@transcend-io/airgap.js-types": "^12.
|
|
69
|
+
"@transcend-io/airgap.js-types": "^12.12.1",
|
|
70
70
|
"@transcend-io/handlebars-utils": "^1.1.0",
|
|
71
71
|
"@transcend-io/internationalization": "^1.6.0",
|
|
72
72
|
"@transcend-io/persisted-state": "^1.0.4",
|
|
73
|
-
"@transcend-io/privacy-types": "^4.
|
|
73
|
+
"@transcend-io/privacy-types": "^4.120.1",
|
|
74
74
|
"@transcend-io/secret-value": "^1.2.0",
|
|
75
75
|
"@transcend-io/type-utils": "^1.8.0",
|
|
76
76
|
"JSONStream": "^1.3.5",
|