@transcend-io/cli 4.41.1 → 4.42.9
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 +65 -1
- package/build/cli-update-consent-manager-to-latest.d.ts +3 -0
- package/build/cli-update-consent-manager-to-latest.d.ts.map +1 -0
- package/build/cli-update-consent-manager-to-latest.js +69 -0
- package/build/cli-update-consent-manager-to-latest.js.map +1 -0
- package/build/consent-manager/index.d.ts +2 -0
- package/build/consent-manager/index.d.ts.map +1 -0
- package/build/consent-manager/index.js +14 -0
- package/build/consent-manager/index.js.map +1 -0
- package/build/consent-manager/updateConsentManagerVersionToLatest.d.ts +17 -0
- package/build/consent-manager/updateConsentManagerVersionToLatest.d.ts.map +1 -0
- package/build/consent-manager/updateConsentManagerVersionToLatest.js +45 -0
- package/build/consent-manager/updateConsentManagerVersionToLatest.js.map +1 -0
- package/build/graphql/deployConsentManager.d.ts +27 -0
- package/build/graphql/deployConsentManager.d.ts.map +1 -0
- package/build/graphql/deployConsentManager.js +32 -0
- package/build/graphql/deployConsentManager.js.map +1 -0
- 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 +28 -2
- package/build/graphql/gqls/consentManager.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/tsbuildinfo +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -53,10 +53,14 @@
|
|
|
53
53
|
- [Authentication](#authentication-10)
|
|
54
54
|
- [Arguments](#arguments-10)
|
|
55
55
|
- [Usage](#usage-11)
|
|
56
|
-
- [tr-
|
|
56
|
+
- [tr-update-consent-manager](#tr-update-consent-manager)
|
|
57
57
|
- [Authentication](#authentication-11)
|
|
58
58
|
- [Arguments](#arguments-11)
|
|
59
59
|
- [Usage](#usage-12)
|
|
60
|
+
- [tr-generate-api-keys](#tr-generate-api-keys)
|
|
61
|
+
- [Authentication](#authentication-12)
|
|
62
|
+
- [Arguments](#arguments-12)
|
|
63
|
+
- [Usage](#usage-13)
|
|
60
64
|
|
|
61
65
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
62
66
|
|
|
@@ -1100,6 +1104,66 @@ yarn tr-retry-request-data-silos --auth=$TRANSCEND_API_KEY --dataSiloId=70810f2e
|
|
|
1100
1104
|
--transcendUrl=https://api.us.transcend.io
|
|
1101
1105
|
```
|
|
1102
1106
|
|
|
1107
|
+
### tr-update-consent-manager
|
|
1108
|
+
|
|
1109
|
+
This command allows for updating Consent Manager to latest version. The consent manager bundle can also be deployed using this commannd.
|
|
1110
|
+
|
|
1111
|
+
#### Authentication
|
|
1112
|
+
|
|
1113
|
+
In order to use this cli, you will first need to generate an API key on the Transcend Admin Dashboard (https://app.transcend.io/infrastructure/api-keys).
|
|
1114
|
+
|
|
1115
|
+
The API key must have the following scopes:
|
|
1116
|
+
|
|
1117
|
+
- "Manage Consent Manager Developer Settings"
|
|
1118
|
+
|
|
1119
|
+
#### Arguments
|
|
1120
|
+
|
|
1121
|
+
| Argument | Description | Type | Default | Required |
|
|
1122
|
+
| ------------ | ----------------------------------------------------------------------------- | ------------ | ------------------------ | -------- |
|
|
1123
|
+
| auth | The Transcend API capable of pulling the cron identifiers. | string | N/A | true |
|
|
1124
|
+
| bundleTypes | The bundle types to deploy | BundleType[] | PRODUCTION,TEST | false |
|
|
1125
|
+
| deokiy | When true, deploy the Consent Manager after updating the version | boolean | false | false |
|
|
1126
|
+
| transcendUrl | URL of the Transcend backend. Use https://api.us.transcend.io for US hosting. | string - URL | https://api.transcend.io | false |
|
|
1127
|
+
|
|
1128
|
+
#### Usage
|
|
1129
|
+
|
|
1130
|
+
```sh
|
|
1131
|
+
yarn tr-update-consent-manager --auth=$TRANSCEND_API_KEY
|
|
1132
|
+
```
|
|
1133
|
+
|
|
1134
|
+
Specifying the backend URL, needed for US hosted backend infrastructure.
|
|
1135
|
+
|
|
1136
|
+
```sh
|
|
1137
|
+
yarn tr-update-consent-manager --auth=$TRANSCEND_API_KEY --transcendUrl=https://api.us.transcend.io
|
|
1138
|
+
```
|
|
1139
|
+
|
|
1140
|
+
Update version and deploy bundles.
|
|
1141
|
+
|
|
1142
|
+
```sh
|
|
1143
|
+
yarn tr-update-consent-manager -auth=$TRANSCEND_API_KEY --deploy=true
|
|
1144
|
+
```
|
|
1145
|
+
|
|
1146
|
+
Update just the TEST bundle
|
|
1147
|
+
|
|
1148
|
+
```sh
|
|
1149
|
+
yarn tr-update-consent-manager --auth=$TRANSCEND_API_KEY --bundleTypes=TEST
|
|
1150
|
+
```
|
|
1151
|
+
|
|
1152
|
+
Update just the PRODUCTION bundle
|
|
1153
|
+
|
|
1154
|
+
```sh
|
|
1155
|
+
yarn tr-update-consent-manager --auth=$TRANSCEND_API_KEY --bundleTypes=PRODUCTION
|
|
1156
|
+
```
|
|
1157
|
+
|
|
1158
|
+
Update multiple organizations at once
|
|
1159
|
+
|
|
1160
|
+
```sh
|
|
1161
|
+
yarn tr-update-consent-manager --auth=$TRANSCEND_API_KEY --bundleTypes=PRODUCTION
|
|
1162
|
+
|
|
1163
|
+
tr-generate-api-keys --email=test@transcend.io --password=$TRANSCEND_PASSWORD --scopes="Manage Consent Manager" --apiKeyTitle="CLI Usage Cross Instance Sync" --file=./transcend-api-keys.json
|
|
1164
|
+
yarn tr-update-consent-manager --auth=./transcend-api-keys.json --deploy=true
|
|
1165
|
+
```
|
|
1166
|
+
|
|
1103
1167
|
### tr-generate-api-keys
|
|
1104
1168
|
|
|
1105
1169
|
This command allows for creating API keys across multiple Transcend instances. This is useful for customers that are managing many Transcend instances and need to regularly create, cycle or delete API keys across all of their instances. Unlike the other commands that rely on API key authentication, this command relies upon username/password authentication. This command will spit out the API keys into a [JSON file](./examples/api-keys.json), and that JSON file can be used in subsequent cli commands.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-update-consent-manager-to-latest.d.ts","sourceRoot":"","sources":["../src/cli-update-consent-manager-to-latest.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
|
+
};
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
const yargs_parser_1 = __importDefault(require("yargs-parser"));
|
|
8
|
+
const colors_1 = __importDefault(require("colors"));
|
|
9
|
+
const privacy_types_1 = require("@transcend-io/privacy-types");
|
|
10
|
+
const bluebird_1 = require("bluebird");
|
|
11
|
+
const logger_1 = require("./logger");
|
|
12
|
+
const consent_manager_1 = require("./consent-manager");
|
|
13
|
+
const api_keys_1 = require("./api-keys");
|
|
14
|
+
/**
|
|
15
|
+
* Update the consent manager to latest version
|
|
16
|
+
*
|
|
17
|
+
* Requires an API key with scope "Manage Consent Manager Developer Settings".
|
|
18
|
+
*
|
|
19
|
+
* Dev Usage:
|
|
20
|
+
* yarn ts-node ./src/cli-update-consent-manager-to-latest.ts --auth=asd123
|
|
21
|
+
*
|
|
22
|
+
* Standard usage:
|
|
23
|
+
* yarn tr-update-consent-manager --auth=asd123
|
|
24
|
+
*/
|
|
25
|
+
async function main() {
|
|
26
|
+
// Parse command line arguments
|
|
27
|
+
const { transcendUrl = 'https://api.transcend.io', auth, deploy = 'false', bundleTypes = Object.values(privacy_types_1.ConsentBundleType).join(','), } = (0, yargs_parser_1.default)(process.argv.slice(2));
|
|
28
|
+
// Parse authentication as API key or path to list of API keys
|
|
29
|
+
const apiKeyOrList = await (0, api_keys_1.validateTranscendAuth)(auth);
|
|
30
|
+
// Parse bundle types
|
|
31
|
+
if (!bundleTypes) {
|
|
32
|
+
logger_1.logger.error(colors_1.default.red('Missing required parameter "bundleTypes". e.g. --bundleTypes=PRODUCTION'));
|
|
33
|
+
process.exit(1);
|
|
34
|
+
}
|
|
35
|
+
const bundleTypesParsed = bundleTypes.split(',');
|
|
36
|
+
const invalidBundleTypes = bundleTypesParsed.filter((bundleType) => !Object.values(privacy_types_1.ConsentBundleType).includes(bundleType));
|
|
37
|
+
if (invalidBundleTypes.length > 0) {
|
|
38
|
+
logger_1.logger.error(colors_1.default.red(`Received invalid bundle types: "${invalidBundleTypes.join(',')}"`));
|
|
39
|
+
process.exit(1);
|
|
40
|
+
}
|
|
41
|
+
// parse deploy status
|
|
42
|
+
const shouldDeploy = deploy === 'true';
|
|
43
|
+
// handle single update
|
|
44
|
+
if (typeof apiKeyOrList === 'string') {
|
|
45
|
+
// Update consent manager
|
|
46
|
+
await (0, consent_manager_1.updateConsentManagerVersionToLatest)({
|
|
47
|
+
deploy: shouldDeploy,
|
|
48
|
+
transcendUrl,
|
|
49
|
+
auth: apiKeyOrList,
|
|
50
|
+
bundleTypes: bundleTypesParsed,
|
|
51
|
+
});
|
|
52
|
+
logger_1.logger.info(colors_1.default.green('Successfully updated Consent Manager!'));
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
await (0, bluebird_1.mapSeries)(apiKeyOrList, async (apiKey) => {
|
|
56
|
+
logger_1.logger.info(colors_1.default.magenta(`Updating Consent Manager for organization "${apiKey.organizationName}"...`));
|
|
57
|
+
await (0, consent_manager_1.updateConsentManagerVersionToLatest)({
|
|
58
|
+
deploy: shouldDeploy,
|
|
59
|
+
transcendUrl,
|
|
60
|
+
auth: apiKey.apiKey,
|
|
61
|
+
bundleTypes: bundleTypesParsed,
|
|
62
|
+
});
|
|
63
|
+
logger_1.logger.info(colors_1.default.green(`Successfully updated Consent Manager for organization "${apiKey.organizationName}"!`));
|
|
64
|
+
});
|
|
65
|
+
logger_1.logger.info(colors_1.default.green('Successfully updated Consent Managers!'));
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
main();
|
|
69
|
+
//# sourceMappingURL=cli-update-consent-manager-to-latest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-update-consent-manager-to-latest.js","sourceRoot":"","sources":["../src/cli-update-consent-manager-to-latest.ts"],"names":[],"mappings":";;;;;;AAEA,gEAAiC;AACjC,oDAA4B;AAC5B,+DAAgE;AAChE,uCAAqC;AAErC,qCAAkC;AAClC,uDAAwE;AACxE,yCAAmD;AAEnD;;;;;;;;;;GAUG;AACH,KAAK,UAAU,IAAI;IACjB,+BAA+B;IAC/B,MAAM,EACJ,YAAY,GAAG,0BAA0B,EACzC,IAAI,EACJ,MAAM,GAAG,OAAO,EAChB,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,iCAAiB,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GACzD,GAAG,IAAA,sBAAK,EAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAA8B,CAAC;IAE9D,8DAA8D;IAC9D,MAAM,YAAY,GAAG,MAAM,IAAA,gCAAqB,EAAC,IAAI,CAAC,CAAC;IAEvD,qBAAqB;IACrB,IAAI,CAAC,WAAW,EAAE;QAChB,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,yEAAyE,CAC1E,CACF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACjB;IACD,MAAM,iBAAiB,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAwB,CAAC;IACxE,MAAM,kBAAkB,GAAG,iBAAiB,CAAC,MAAM,CACjD,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,iCAAiB,CAAC,CAAC,QAAQ,CAAC,UAAU,CAAC,CACvE,CAAC;IACF,IAAI,kBAAkB,CAAC,MAAM,GAAG,CAAC,EAAE;QACjC,eAAM,CAAC,KAAK,CACV,gBAAM,CAAC,GAAG,CACR,mCAAmC,kBAAkB,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CACnE,CACF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;KACjB;IAED,sBAAsB;IACtB,MAAM,YAAY,GAAG,MAAM,KAAK,MAAM,CAAC;IAEvC,uBAAuB;IACvB,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE;QACpC,yBAAyB;QACzB,MAAM,IAAA,qDAAmC,EAAC;YACxC,MAAM,EAAE,YAAY;YACpB,YAAY;YACZ,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,iBAAiB;SAC/B,CAAC,CAAC;QACH,eAAM,CAAC,IAAI,CAAC,gBAAM,CAAC,KAAK,CAAC,uCAAuC,CAAC,CAAC,CAAC;KACpE;SAAM;QACL,MAAM,IAAA,oBAAS,EAAC,YAAY,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE;YAC7C,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,OAAO,CACZ,8CAA8C,MAAM,CAAC,gBAAgB,MAAM,CAC5E,CACF,CAAC;YAEF,MAAM,IAAA,qDAAmC,EAAC;gBACxC,MAAM,EAAE,YAAY;gBACpB,YAAY;gBACZ,IAAI,EAAE,MAAM,CAAC,MAAM;gBACnB,WAAW,EAAE,iBAAiB;aAC/B,CAAC,CAAC;YAEH,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,KAAK,CACV,0DAA0D,MAAM,CAAC,gBAAgB,IAAI,CACtF,CACF,CAAC;QACJ,CAAC,CAAC,CAAC;QACH,eAAM,CAAC,IAAI,CAAC,gBAAM,CAAC,KAAK,CAAC,wCAAwC,CAAC,CAAC,CAAC;KACrE;AACH,CAAC;AAED,IAAI,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/consent-manager/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./updateConsentManagerVersionToLatest"), exports);
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/consent-manager/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,wEAAsD"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ConsentBundleType } from '@transcend-io/privacy-types';
|
|
2
|
+
/**
|
|
3
|
+
* Update the consent manager to latest version
|
|
4
|
+
*
|
|
5
|
+
* @param options - Options
|
|
6
|
+
*/
|
|
7
|
+
export declare function updateConsentManagerVersionToLatest({ auth, deploy, transcendUrl, bundleTypes, }: {
|
|
8
|
+
/** Transcend API key authentication */
|
|
9
|
+
auth: string;
|
|
10
|
+
/** API URL for Transcend backend */
|
|
11
|
+
transcendUrl?: string;
|
|
12
|
+
/** Deploy consent manager with this update */
|
|
13
|
+
deploy?: boolean;
|
|
14
|
+
/** The bundle types to update and deploy */
|
|
15
|
+
bundleTypes?: ConsentBundleType[];
|
|
16
|
+
}): Promise<void>;
|
|
17
|
+
//# sourceMappingURL=updateConsentManagerVersionToLatest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateConsentManagerVersionToLatest.d.ts","sourceRoot":"","sources":["../../src/consent-manager/updateConsentManagerVersionToLatest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAYhE;;;;GAIG;AACH,wBAAsB,mCAAmC,CAAC,EACxD,IAAI,EACJ,MAAc,EACd,YAAyC,EACzC,WAA8C,GAC/C,EAAE;IACD,uCAAuC;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,8CAA8C;IAC9C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,4CAA4C;IAC5C,WAAW,CAAC,EAAE,iBAAiB,EAAE,CAAC;CACnC,GAAG,OAAO,CAAC,IAAI,CAAC,CA6ChB"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.updateConsentManagerVersionToLatest = void 0;
|
|
7
|
+
const privacy_types_1 = require("@transcend-io/privacy-types");
|
|
8
|
+
const bluebird_1 = require("bluebird");
|
|
9
|
+
const graphql_1 = require("../graphql");
|
|
10
|
+
const colors_1 = __importDefault(require("colors"));
|
|
11
|
+
const logger_1 = require("../logger");
|
|
12
|
+
/**
|
|
13
|
+
* Update the consent manager to latest version
|
|
14
|
+
*
|
|
15
|
+
* @param options - Options
|
|
16
|
+
*/
|
|
17
|
+
async function updateConsentManagerVersionToLatest({ auth, deploy = false, transcendUrl = 'https://api.transcend.io', bundleTypes = Object.values(privacy_types_1.ConsentBundleType), }) {
|
|
18
|
+
// Find all requests made before createdAt that are in a removing data state
|
|
19
|
+
const client = (0, graphql_1.buildTranscendGraphQLClient)(transcendUrl, auth);
|
|
20
|
+
// Grab Consent Manager ID
|
|
21
|
+
const consentManagerId = await (0, graphql_1.fetchConsentManagerId)(client);
|
|
22
|
+
// Update each bundle type to latest version
|
|
23
|
+
await (0, bluebird_1.mapSeries)(bundleTypes, async (bundleType) => {
|
|
24
|
+
logger_1.logger.info(colors_1.default.magenta(`Update Consent Manager bundle with ID "${consentManagerId}" and type "${bundleType}" to latest version...`));
|
|
25
|
+
await (0, graphql_1.updateConsentManagerToLatest)(client, {
|
|
26
|
+
id: consentManagerId,
|
|
27
|
+
bundleType,
|
|
28
|
+
});
|
|
29
|
+
logger_1.logger.info(colors_1.default.green(`Updated Consent Manager bundle with ID "${consentManagerId}" and type "${bundleType}" to latest version!`));
|
|
30
|
+
});
|
|
31
|
+
// deploy Consent Managers
|
|
32
|
+
if (deploy) {
|
|
33
|
+
// Update each bundle type to latest version
|
|
34
|
+
await (0, bluebird_1.mapSeries)(bundleTypes, async (bundleType) => {
|
|
35
|
+
logger_1.logger.info(colors_1.default.magenta(`Deploying Consent Manager bundle with ID "${consentManagerId}" and type "${bundleType}"...`));
|
|
36
|
+
await (0, graphql_1.deployConsentManager)(client, {
|
|
37
|
+
id: consentManagerId,
|
|
38
|
+
bundleType,
|
|
39
|
+
});
|
|
40
|
+
logger_1.logger.info(colors_1.default.green(`Deployed Consent Manager bundle with ID "${consentManagerId}" and type "${bundleType}"!`));
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.updateConsentManagerVersionToLatest = updateConsentManagerVersionToLatest;
|
|
45
|
+
//# sourceMappingURL=updateConsentManagerVersionToLatest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateConsentManagerVersionToLatest.js","sourceRoot":"","sources":["../../src/consent-manager/updateConsentManagerVersionToLatest.ts"],"names":[],"mappings":";;;;;;AAAA,+DAAgE;AAChE,uCAAqC;AACrC,wCAKoB;AACpB,oDAA4B;AAE5B,sCAAmC;AAEnC;;;;GAIG;AACI,KAAK,UAAU,mCAAmC,CAAC,EACxD,IAAI,EACJ,MAAM,GAAG,KAAK,EACd,YAAY,GAAG,0BAA0B,EACzC,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,iCAAiB,CAAC,GAU/C;IACC,4EAA4E;IAC5E,MAAM,MAAM,GAAG,IAAA,qCAA2B,EAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAE/D,0BAA0B;IAC1B,MAAM,gBAAgB,GAAG,MAAM,IAAA,+BAAqB,EAAC,MAAM,CAAC,CAAC;IAE7D,4CAA4C;IAC5C,MAAM,IAAA,oBAAS,EAAC,WAAW,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE;QAChD,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,OAAO,CACZ,0CAA0C,gBAAgB,eAAe,UAAU,wBAAwB,CAC5G,CACF,CAAC;QACF,MAAM,IAAA,sCAA4B,EAAC,MAAM,EAAE;YACzC,EAAE,EAAE,gBAAgB;YACpB,UAAU;SACX,CAAC,CAAC;QACH,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,KAAK,CACV,2CAA2C,gBAAgB,eAAe,UAAU,sBAAsB,CAC3G,CACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,0BAA0B;IAC1B,IAAI,MAAM,EAAE;QACV,4CAA4C;QAC5C,MAAM,IAAA,oBAAS,EAAC,WAAW,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE;YAChD,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,OAAO,CACZ,6CAA6C,gBAAgB,eAAe,UAAU,MAAM,CAC7F,CACF,CAAC;YACF,MAAM,IAAA,8BAAoB,EAAC,MAAM,EAAE;gBACjC,EAAE,EAAE,gBAAgB;gBACpB,UAAU;aACX,CAAC,CAAC;YACH,eAAM,CAAC,IAAI,CACT,gBAAM,CAAC,KAAK,CACV,4CAA4C,gBAAgB,eAAe,UAAU,IAAI,CAC1F,CACF,CAAC;QACJ,CAAC,CAAC,CAAC;KACJ;AACH,CAAC;AA3DD,kFA2DC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ConsentBundleType } from '@transcend-io/privacy-types';
|
|
2
|
+
import { GraphQLClient } from 'graphql-request';
|
|
3
|
+
/**
|
|
4
|
+
* Deploy the Consent Manager
|
|
5
|
+
*
|
|
6
|
+
* @param client - GraphQL client
|
|
7
|
+
* @param options - Options
|
|
8
|
+
*/
|
|
9
|
+
export declare function deployConsentManager(client: GraphQLClient, { id, bundleType, }: {
|
|
10
|
+
/** ID of Consent Manager */
|
|
11
|
+
id: string;
|
|
12
|
+
/** Type of bundle */
|
|
13
|
+
bundleType: ConsentBundleType;
|
|
14
|
+
}): Promise<void>;
|
|
15
|
+
/**
|
|
16
|
+
* Update the Consent Manager to the latest airgap.jz version
|
|
17
|
+
*
|
|
18
|
+
* @param client - GraphQL client
|
|
19
|
+
* @param options - Options
|
|
20
|
+
*/
|
|
21
|
+
export declare function updateConsentManagerToLatest(client: GraphQLClient, { id, bundleType, }: {
|
|
22
|
+
/** ID of Consent Manager */
|
|
23
|
+
id: string;
|
|
24
|
+
/** Type of bundle */
|
|
25
|
+
bundleType: ConsentBundleType;
|
|
26
|
+
}): Promise<void>;
|
|
27
|
+
//# sourceMappingURL=deployConsentManager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deployConsentManager.d.ts","sourceRoot":"","sources":["../../src/graphql/deployConsentManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAOhD;;;;;GAKG;AACH,wBAAsB,oBAAoB,CACxC,MAAM,EAAE,aAAa,EACrB,EACE,EAAE,EACF,UAAU,GACX,EAAE;IACD,4BAA4B;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,qBAAqB;IACrB,UAAU,EAAE,iBAAiB,CAAC;CAC/B,GACA,OAAO,CAAC,IAAI,CAAC,CAKf;AAED;;;;;GAKG;AACH,wBAAsB,4BAA4B,CAChD,MAAM,EAAE,aAAa,EACrB,EACE,EAAE,EACF,UAAU,GACX,EAAE;IACD,4BAA4B;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,qBAAqB;IACrB,UAAU,EAAE,iBAAiB,CAAC;CAC/B,GACA,OAAO,CAAC,IAAI,CAAC,CAKf"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updateConsentManagerToLatest = exports.deployConsentManager = void 0;
|
|
4
|
+
const gqls_1 = require("./gqls");
|
|
5
|
+
const makeGraphQLRequest_1 = require("./makeGraphQLRequest");
|
|
6
|
+
/**
|
|
7
|
+
* Deploy the Consent Manager
|
|
8
|
+
*
|
|
9
|
+
* @param client - GraphQL client
|
|
10
|
+
* @param options - Options
|
|
11
|
+
*/
|
|
12
|
+
async function deployConsentManager(client, { id, bundleType, }) {
|
|
13
|
+
await (0, makeGraphQLRequest_1.makeGraphQLRequest)(client, gqls_1.DEPLOY_CONSENT_MANAGER, {
|
|
14
|
+
airgapBundleId: id,
|
|
15
|
+
bundleType,
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
exports.deployConsentManager = deployConsentManager;
|
|
19
|
+
/**
|
|
20
|
+
* Update the Consent Manager to the latest airgap.jz version
|
|
21
|
+
*
|
|
22
|
+
* @param client - GraphQL client
|
|
23
|
+
* @param options - Options
|
|
24
|
+
*/
|
|
25
|
+
async function updateConsentManagerToLatest(client, { id, bundleType, }) {
|
|
26
|
+
await (0, makeGraphQLRequest_1.makeGraphQLRequest)(client, gqls_1.UPDATE_CONSENT_MANAGER_TO_LATEST, {
|
|
27
|
+
airgapBundleId: id,
|
|
28
|
+
bundleType,
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
exports.updateConsentManagerToLatest = updateConsentManagerToLatest;
|
|
32
|
+
//# sourceMappingURL=deployConsentManager.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deployConsentManager.js","sourceRoot":"","sources":["../../src/graphql/deployConsentManager.ts"],"names":[],"mappings":";;;AAEA,iCAGgB;AAChB,6DAA0D;AAE1D;;;;;GAKG;AACI,KAAK,UAAU,oBAAoB,CACxC,MAAqB,EACrB,EACE,EAAE,EACF,UAAU,GAMX;IAED,MAAM,IAAA,uCAAkB,EAAC,MAAM,EAAE,6BAAsB,EAAE;QACvD,cAAc,EAAE,EAAE;QAClB,UAAU;KACX,CAAC,CAAC;AACL,CAAC;AAhBD,oDAgBC;AAED;;;;;GAKG;AACI,KAAK,UAAU,4BAA4B,CAChD,MAAqB,EACrB,EACE,EAAE,EACF,UAAU,GAMX;IAED,MAAM,IAAA,uCAAkB,EAAC,MAAM,EAAE,uCAAgC,EAAE;QACjE,cAAc,EAAE,EAAE;QAClB,UAAU;KACX,CAAC,CAAC;AACL,CAAC;AAhBD,oEAgBC"}
|
|
@@ -7,5 +7,7 @@ export declare const COOKIES: string;
|
|
|
7
7
|
export declare const FETCH_CONSENT_MANAGER_ID: string;
|
|
8
8
|
export declare const FETCH_CONSENT_MANAGER: string;
|
|
9
9
|
export declare const CREATE_CONSENT_MANAGER: string;
|
|
10
|
+
export declare const UPDATE_CONSENT_MANAGER_TO_LATEST: string;
|
|
11
|
+
export declare const DEPLOY_CONSENT_MANAGER: string;
|
|
10
12
|
export declare const UPDATE_CONSENT_MANAGER_DOMAINS: string;
|
|
11
13
|
//# sourceMappingURL=consentManager.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consentManager.d.ts","sourceRoot":"","sources":["../../../src/graphql/gqls/consentManager.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ,QASpB,CAAC;AAEF,eAAO,MAAM,iBAAiB,QAa7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,QAQ7B,CAAC;AAEF,eAAO,MAAM,wBAAwB,QAWpC,CAAC;AAEF,eAAO,MAAM,UAAU,QAwCtB,CAAC;AAEF,eAAO,MAAM,OAAO,QAuCnB,CAAC;AAEF,eAAO,MAAM,wBAAwB,QAQpC,CAAC;AAEF,eAAO,MAAM,qBAAqB,QAWjC,CAAC;
|
|
1
|
+
{"version":3,"file":"consentManager.d.ts","sourceRoot":"","sources":["../../../src/graphql/gqls/consentManager.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ,QASpB,CAAC;AAEF,eAAO,MAAM,iBAAiB,QAa7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,QAQ7B,CAAC;AAEF,eAAO,MAAM,wBAAwB,QAWpC,CAAC;AAEF,eAAO,MAAM,UAAU,QAwCtB,CAAC;AAEF,eAAO,MAAM,OAAO,QAuCnB,CAAC;AAEF,eAAO,MAAM,wBAAwB,QAQpC,CAAC;AAEF,eAAO,MAAM,qBAAqB,QAWjC,CAAC;AAEF,eAAO,MAAM,sBAAsB,QAQlC,CAAC;AAEF,eAAO,MAAM,gCAAgC,QAY5C,CAAC;AAEF,eAAO,MAAM,sBAAsB,QAYlC,CAAC;AAEF,eAAO,MAAM,8BAA8B,QAW1C,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UPDATE_CONSENT_MANAGER_DOMAINS = exports.CREATE_CONSENT_MANAGER = exports.FETCH_CONSENT_MANAGER = exports.FETCH_CONSENT_MANAGER_ID = exports.COOKIES = exports.DATA_FLOWS = exports.UPDATE_OR_CREATE_COOKIES = exports.UPDATE_DATA_FLOWS = exports.CREATE_DATA_FLOWS = exports.PURPOSES = void 0;
|
|
3
|
+
exports.UPDATE_CONSENT_MANAGER_DOMAINS = exports.DEPLOY_CONSENT_MANAGER = exports.UPDATE_CONSENT_MANAGER_TO_LATEST = exports.CREATE_CONSENT_MANAGER = exports.FETCH_CONSENT_MANAGER = exports.FETCH_CONSENT_MANAGER_ID = exports.COOKIES = exports.DATA_FLOWS = exports.UPDATE_OR_CREATE_COOKIES = exports.UPDATE_DATA_FLOWS = exports.CREATE_DATA_FLOWS = exports.PURPOSES = void 0;
|
|
4
4
|
const graphql_request_1 = require("graphql-request");
|
|
5
5
|
exports.PURPOSES = (0, graphql_request_1.gql) `
|
|
6
6
|
query TranscendCliPurposes {
|
|
@@ -150,7 +150,7 @@ exports.FETCH_CONSENT_MANAGER = (0, graphql_request_1.gql) `
|
|
|
150
150
|
}
|
|
151
151
|
`;
|
|
152
152
|
exports.CREATE_CONSENT_MANAGER = (0, graphql_request_1.gql) `
|
|
153
|
-
mutation
|
|
153
|
+
mutation TranscendCliCreateConsentManager($privacyCenterId: ID!) {
|
|
154
154
|
createConsentManager(input: { privacyCenterId: $privacyCenterId }) {
|
|
155
155
|
consentManager {
|
|
156
156
|
id
|
|
@@ -158,6 +158,32 @@ exports.CREATE_CONSENT_MANAGER = (0, graphql_request_1.gql) `
|
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
`;
|
|
161
|
+
exports.UPDATE_CONSENT_MANAGER_TO_LATEST = (0, graphql_request_1.gql) `
|
|
162
|
+
mutation TranscendCliUpdateConsentManagerToLatest(
|
|
163
|
+
$airgapBundleId: ID!
|
|
164
|
+
$bundleType: ConsentBundleType!
|
|
165
|
+
) {
|
|
166
|
+
updateConsentManagerToLatestVersion(
|
|
167
|
+
id: $airgapBundleId
|
|
168
|
+
input: { bundleType: $bundleType }
|
|
169
|
+
) {
|
|
170
|
+
clientMutationId
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
`;
|
|
174
|
+
exports.DEPLOY_CONSENT_MANAGER = (0, graphql_request_1.gql) `
|
|
175
|
+
mutation TranscendCliDeployConsentManager(
|
|
176
|
+
$airgapBundleId: ID!
|
|
177
|
+
$bundleType: ConsentBundleType!
|
|
178
|
+
) {
|
|
179
|
+
deployConsentManagerBundle(
|
|
180
|
+
id: $airgapBundleId
|
|
181
|
+
input: { bundleType: $bundleType }
|
|
182
|
+
) {
|
|
183
|
+
clientMutationId
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
`;
|
|
161
187
|
exports.UPDATE_CONSENT_MANAGER_DOMAINS = (0, graphql_request_1.gql) `
|
|
162
188
|
mutation TranscendCliUpdateConsentManagerDomains(
|
|
163
189
|
$airgapBundleId: ID!
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consentManager.js","sourceRoot":"","sources":["../../../src/graphql/gqls/consentManager.ts"],"names":[],"mappings":";;;AAAA,qDAAsC;AAEzB,QAAA,QAAQ,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CAS1B,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;CAanC,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;CAQnC,CAAC;AAEW,QAAA,wBAAwB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAW1C,CAAC;AAEW,QAAA,UAAU,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwC5B,CAAC;AAEW,QAAA,OAAO,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCzB,CAAC;AAEW,QAAA,wBAAwB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;CAQ1C,CAAC;AAEW,QAAA,qBAAqB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAWvC,CAAC;
|
|
1
|
+
{"version":3,"file":"consentManager.js","sourceRoot":"","sources":["../../../src/graphql/gqls/consentManager.ts"],"names":[],"mappings":";;;AAAA,qDAAsC;AAEzB,QAAA,QAAQ,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CAS1B,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;CAanC,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;CAQnC,CAAC;AAEW,QAAA,wBAAwB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAW1C,CAAC;AAEW,QAAA,UAAU,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwC5B,CAAC;AAEW,QAAA,OAAO,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuCzB,CAAC;AAEW,QAAA,wBAAwB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;CAQ1C,CAAC;AAEW,QAAA,qBAAqB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAWvC,CAAC;AAEW,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;CAQxC,CAAC;AAEW,QAAA,gCAAgC,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;CAYlD,CAAC;AAEW,QAAA,sBAAsB,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;CAYxC,CAAC;AAEW,QAAA,8BAA8B,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;CAWhD,CAAC"}
|
package/build/graphql/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/graphql/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,QAAQ,CAAC;AACvB,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/graphql/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,QAAQ,CAAC;AACvB,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC"}
|
package/build/graphql/index.js
CHANGED
|
@@ -46,4 +46,5 @@ __exportStar(require("./loginUser"), exports);
|
|
|
46
46
|
__exportStar(require("./manageApiKeys"), exports);
|
|
47
47
|
__exportStar(require("./syncCookies"), exports);
|
|
48
48
|
__exportStar(require("./fetchPrivacyCenterId"), exports);
|
|
49
|
+
__exportStar(require("./deployConsentManager"), exports);
|
|
49
50
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/graphql/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAA6C;AAC7C,iDAA+B;AAC/B,sDAAoC;AACpC,qDAAmC;AACnC,+DAA6C;AAC7C,iEAA+C;AAC/C,kDAAgC;AAChC,kDAAgC;AAChC,+DAA6C;AAC7C,kDAAgC;AAChC,uDAAqC;AACrC,4DAA0C;AAC1C,gEAA8C;AAC9C,yCAAuB;AACvB,0DAAwC;AACxC,qDAAmC;AACnC,+DAA6C;AAC7C,6DAA2C;AAC3C,yDAAuC;AACvC,uDAAqC;AACrC,kDAAgC;AAChC,sDAAoC;AACpC,oDAAkC;AAClC,0DAAwC;AACxC,6DAA2C;AAC3C,kDAAgC;AAChC,uDAAqC;AACrC,yDAAuC;AACvC,oDAAkC;AAClC,oDAAkC;AAClC,mDAAiC;AACjC,+CAA6B;AAC7B,8CAA4B;AAC5B,kDAAgC;AAChC,gDAA8B;AAC9B,yDAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/graphql/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+DAA6C;AAC7C,iDAA+B;AAC/B,sDAAoC;AACpC,qDAAmC;AACnC,+DAA6C;AAC7C,iEAA+C;AAC/C,kDAAgC;AAChC,kDAAgC;AAChC,+DAA6C;AAC7C,kDAAgC;AAChC,uDAAqC;AACrC,4DAA0C;AAC1C,gEAA8C;AAC9C,yCAAuB;AACvB,0DAAwC;AACxC,qDAAmC;AACnC,+DAA6C;AAC7C,6DAA2C;AAC3C,yDAAuC;AACvC,uDAAqC;AACrC,kDAAgC;AAChC,sDAAoC;AACpC,oDAAkC;AAClC,0DAAwC;AACxC,6DAA2C;AAC3C,kDAAgC;AAChC,uDAAqC;AACrC,yDAAuC;AACvC,oDAAkC;AAClC,oDAAkC;AAClC,mDAAiC;AACjC,+CAA6B;AAC7B,8CAA4B;AAC5B,kDAAgC;AAChC,gDAA8B;AAC9B,yDAAuC;AACvC,yDAAuC"}
|