@transcend-io/cli 4.132.6 → 5.0.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/CHANGELOG.md +70 -0
- package/README.md +20 -1
- package/build/cli-manual-enrichment-pull-identifiers.js +6 -5
- package/build/cli-manual-enrichment-pull-identifiers.js.map +1 -1
- package/build/cli-request-export.js +3 -0
- package/build/cli-request-export.js.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.d.ts +81 -15
- package/build/graphql/fetchAllRequestIdentifiers.d.ts.map +1 -1
- package/build/graphql/fetchAllRequestIdentifiers.js +67 -10
- package/build/graphql/fetchAllRequestIdentifiers.js.map +1 -1
- package/build/graphql/gqls/index.d.ts +1 -1
- package/build/graphql/gqls/index.d.ts.map +1 -1
- package/build/graphql/gqls/index.js +1 -1
- package/build/graphql/gqls/index.js.map +1 -1
- package/build/graphql/gqls/sombraVersion.d.ts +2 -0
- package/build/graphql/gqls/sombraVersion.d.ts.map +1 -0
- package/build/graphql/gqls/sombraVersion.js +14 -0
- package/build/graphql/gqls/sombraVersion.js.map +1 -0
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.d.ts +4 -2
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.d.ts.map +1 -1
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.js +7 -6
- package/build/manual-enrichment/pullManualEnrichmentIdentifiersToCsv.js.map +1 -1
- package/build/requests/bulkRestartRequests.d.ts.map +1 -1
- package/build/requests/bulkRestartRequests.js +11 -11
- package/build/requests/bulkRestartRequests.js.map +1 -1
- package/build/requests/pullPrivacyRequests.d.ts +4 -2
- package/build/requests/pullPrivacyRequests.d.ts.map +1 -1
- package/build/requests/pullPrivacyRequests.js +6 -5
- package/build/requests/pullPrivacyRequests.js.map +1 -1
- package/build/tsbuildinfo +1 -1
- package/package.json +3 -1
- package/build/graphql/gqls/RequestIdentifier.d.ts +0 -2
- package/build/graphql/gqls/RequestIdentifier.d.ts.map +0 -1
- package/build/graphql/gqls/RequestIdentifier.js +0 -37
- package/build/graphql/gqls/RequestIdentifier.js.map +0 -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": "
|
|
5
|
+
"version": "5.0.0",
|
|
6
6
|
"homepage": "https://github.com/transcend-io/cli",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"jsonwebtoken": "^9.0.2",
|
|
88
88
|
"lodash": "^4.17.21",
|
|
89
89
|
"query-string": "=7.0.0",
|
|
90
|
+
"semver": "^7.6.0",
|
|
90
91
|
"undici": "^5.22.1",
|
|
91
92
|
"yargs-parser": "^21.1.1"
|
|
92
93
|
},
|
|
@@ -105,6 +106,7 @@
|
|
|
105
106
|
"@types/lodash": "^4.14.186",
|
|
106
107
|
"@types/mocha": "^10.0.1",
|
|
107
108
|
"@types/node": "^18.15.11",
|
|
109
|
+
"@types/semver": "^7",
|
|
108
110
|
"@types/yargs-parser": "^21.0.0",
|
|
109
111
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
110
112
|
"@typescript-eslint/parser": "^5.58.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestIdentifier.d.ts","sourceRoot":"","sources":["../../../src/graphql/gqls/RequestIdentifier.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,QA6B/B,CAAC"}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.REQUEST_IDENTIFIERS = void 0;
|
|
4
|
-
const graphql_request_1 = require("graphql-request");
|
|
5
|
-
// TODO: https://transcend.height.app/T-27909 - enable optimizations
|
|
6
|
-
// isExportCsv: true
|
|
7
|
-
exports.REQUEST_IDENTIFIERS = (0, graphql_request_1.gql) `
|
|
8
|
-
query TranscendCliRequestIdentifiers(
|
|
9
|
-
$first: Int!
|
|
10
|
-
$offset: Int!
|
|
11
|
-
$requestId: ID!
|
|
12
|
-
) {
|
|
13
|
-
requestIdentifiers(
|
|
14
|
-
input: { requestId: $requestId }
|
|
15
|
-
first: $first
|
|
16
|
-
offset: $offset
|
|
17
|
-
useMaster: false
|
|
18
|
-
orderBy: [
|
|
19
|
-
{ field: createdAt, direction: ASC }
|
|
20
|
-
{ field: name, direction: ASC }
|
|
21
|
-
]
|
|
22
|
-
) {
|
|
23
|
-
nodes {
|
|
24
|
-
id
|
|
25
|
-
name
|
|
26
|
-
value
|
|
27
|
-
identifier {
|
|
28
|
-
type
|
|
29
|
-
}
|
|
30
|
-
isVerifiedAtLeastOnce
|
|
31
|
-
isVerified
|
|
32
|
-
}
|
|
33
|
-
totalCount
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
`;
|
|
37
|
-
//# sourceMappingURL=RequestIdentifier.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestIdentifier.js","sourceRoot":"","sources":["../../../src/graphql/gqls/RequestIdentifier.ts"],"names":[],"mappings":";;;AAAA,qDAAsC;AAEtC,oEAAoE;AACpE,oBAAoB;AACP,QAAA,mBAAmB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BrC,CAAC"}
|