@transcend-io/cli 4.35.0 → 4.37.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 +56 -0
- package/build/api-keys/generateCrossAccountApiKeys.d.ts +45 -0
- package/build/api-keys/generateCrossAccountApiKeys.d.ts.map +1 -0
- package/build/api-keys/generateCrossAccountApiKeys.js +90 -0
- package/build/api-keys/generateCrossAccountApiKeys.js.map +1 -0
- package/build/api-keys/index.d.ts +2 -0
- package/build/api-keys/index.d.ts.map +1 -0
- package/build/api-keys/index.js +14 -0
- package/build/api-keys/index.js.map +1 -0
- package/build/cli-generate-cross-account-api-keys.d.ts +3 -0
- package/build/cli-generate-cross-account-api-keys.d.ts.map +1 -0
- package/build/cli-generate-cross-account-api-keys.js +87 -0
- package/build/cli-generate-cross-account-api-keys.js.map +1 -0
- package/build/graphql/buildTranscendGraphQLClient.d.ts +8 -0
- package/build/graphql/buildTranscendGraphQLClient.d.ts.map +1 -1
- package/build/graphql/buildTranscendGraphQLClient.js +17 -4
- package/build/graphql/buildTranscendGraphQLClient.js.map +1 -1
- package/build/graphql/fetchApiKeys.d.ts +8 -0
- package/build/graphql/fetchApiKeys.d.ts.map +1 -1
- package/build/graphql/fetchApiKeys.js +23 -11
- package/build/graphql/fetchApiKeys.js.map +1 -1
- package/build/graphql/gqls/apiKey.d.ts +2 -0
- package/build/graphql/gqls/apiKey.d.ts.map +1 -1
- package/build/graphql/gqls/apiKey.js +19 -1
- package/build/graphql/gqls/apiKey.js.map +1 -1
- package/build/graphql/gqls/auth.d.ts +4 -0
- package/build/graphql/gqls/auth.d.ts.map +1 -0
- package/build/graphql/gqls/auth.js +45 -0
- package/build/graphql/gqls/auth.js.map +1 -0
- package/build/graphql/gqls/consentManager.d.ts +1 -1
- package/build/graphql/gqls/consentManager.d.ts.map +1 -1
- package/build/graphql/gqls/consentManager.js +6 -8
- package/build/graphql/gqls/consentManager.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 +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/loginUser.d.ts +46 -0
- package/build/graphql/loginUser.d.ts.map +1 -0
- package/build/graphql/loginUser.js +51 -0
- package/build/graphql/loginUser.js.map +1 -0
- package/build/graphql/manageApiKeys.d.ts +31 -0
- package/build/graphql/manageApiKeys.d.ts.map +1 -0
- package/build/graphql/manageApiKeys.js +28 -0
- package/build/graphql/manageApiKeys.js.map +1 -0
- package/build/graphql/syncConfigurationToTranscend.d.ts.map +1 -1
- package/build/graphql/syncConfigurationToTranscend.js +7 -3
- package/build/graphql/syncConfigurationToTranscend.js.map +1 -1
- package/build/graphql/syncCookies.d.ts +18 -0
- package/build/graphql/syncCookies.d.ts.map +1 -0
- package/build/graphql/syncCookies.js +83 -0
- package/build/graphql/syncCookies.js.map +1 -0
- package/build/graphql/syncDataFlows.d.ts.map +1 -1
- package/build/graphql/syncDataFlows.js +6 -0
- package/build/graphql/syncDataFlows.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/tsbuildinfo +1 -1
- package/package.json +2 -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.37.0",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"tr-cron-mark-identifiers-completed": "./build/cli-cron-mark-identifiers-completed.js",
|
|
15
15
|
"tr-cron-pull-identifiers": "./build/cli-cron-pull-identifiers.js",
|
|
16
16
|
"tr-discover-silos": "./build/cli-discover-silos.js",
|
|
17
|
+
"tr-generate-api-keys": "./build/cli-generate-cross-account-api-keys.js",
|
|
17
18
|
"tr-manual-enrichment-pull-identifiers": "./build/cli-manual-enrichment-pull-identifiers.js",
|
|
18
19
|
"tr-manual-enrichment-push-identifiers": "./build/cli-manual-enrichment-push-identifiers.js",
|
|
19
20
|
"tr-mark-request-data-silos-completed": "./build/cli-mark-request-data-silos-completed.js",
|