UNPKG

@aws-amplify/data-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer - Aliased to use `Data` name scheme.

13 lines (12 loc) 526 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSSOTokenFromFile = void 0; const fs_1 = require("fs"); const getSSOTokenFilepath_1 = require("./getSSOTokenFilepath"); const { readFile } = fs_1.promises; const getSSOTokenFromFile = async (id) => { const ssoTokenFilepath = (0, getSSOTokenFilepath_1.getSSOTokenFilepath)(id); const ssoTokenText = await readFile(ssoTokenFilepath, "utf8"); return JSON.parse(ssoTokenText); }; exports.getSSOTokenFromFile = getSSOTokenFromFile;