/* eslint-disable import/export */ import { Api } from './api'; const graphqlGateway = new Api(); /** * Source of Atlassian GraphQL Gateway requests, through the usage of the Forge graphqlGateway object. */ export default graphqlGateway; export { DataProviderResponse } from './builders/data-provider-response'; export { OnCallProviderResponse } from './builders/on-call-provider-response'; export { MetricSupplierResponse } from './builders/metric-supplier-response'; export { ConfigValidatorResponse } from './builders/config-validator-response'; export { ForgeInvocationErrorResponse } from './builders/forge-invocation-error-response'; export { OAuthConfigResponse } from './builders/oauth-config-response'; export * from './helpers/promise-allsettled-helpers';