@metrichor/epi2me-web
Advanced tools
Comparing version 5.1.5612995 to 5.1.5622563
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EPI2ME_RPC = void 0; | ||
const workflow_1 = require("./api/workflow"); | ||
@@ -19,2 +20,3 @@ const samples_1 = require("./api/samples"); | ||
} | ||
exports.EPI2ME_RPC = EPI2ME_RPC; | ||
exports.default = EPI2ME_RPC; |
@@ -14,5 +14,2 @@ "use strict"; | ||
}); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
@@ -26,10 +23,14 @@ if (mod && mod.__esModule) return mod; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ProfileManager = exports.FileExtension = exports.Helpers = exports.EPI2ME_RPC = exports.GraphQL = void 0; | ||
__exportStar(require("./index.type"), exports); | ||
exports.ProfileManager = exports.Helpers = exports.EPI2ME_RPC = exports.GraphQL = exports.graphQLSchema = void 0; | ||
// NOTE there's a lot of exports here, and includes programmatically generated types from the schema | ||
exports.graphQLSchema = __importStar(require("./graphql.type")); | ||
// // NOTE these are enums, to effectively use them they require value exports | ||
// export { FileUploadWarnings, UploadWarnings } from './fileUploader.type'; | ||
var graphql_1 = require("./graphql"); | ||
Object.defineProperty(exports, "GraphQL", { enumerable: true, get: function () { return graphql_1.GraphQL; } }); | ||
exports.EPI2ME_RPC = __importStar(require("./grpc")); | ||
var grpc_1 = require("./grpc"); | ||
Object.defineProperty(exports, "EPI2ME_RPC", { enumerable: true, get: function () { return grpc_1.EPI2ME_RPC; } }); | ||
exports.Helpers = __importStar(require("./helpers")); | ||
exports.FileExtension = __importStar(require("./file_extensions")); | ||
// export * as FileExtension from './file_extensions'; | ||
var ProfileManager_1 = require("./ProfileManager"); | ||
Object.defineProperty(exports, "ProfileManager", { enumerable: true, get: function () { return ProfileManager_1.ProfileManager; } }); |
import { WorkflowApi } from './api/workflow'; | ||
import { SampleReaderApi } from './api/samples'; | ||
import { StatusApi } from './api/status'; | ||
export default class EPI2ME_RPC { | ||
export class EPI2ME_RPC { | ||
constructor(url, jwt, transport) { | ||
@@ -17,1 +17,2 @@ this.url = url; | ||
} | ||
export default EPI2ME_RPC; |
@@ -1,6 +0,9 @@ | ||
export * from './index.type'; | ||
// NOTE there's a lot of exports here, and includes programmatically generated types from the schema | ||
export * as graphQLSchema from './graphql.type'; | ||
// // NOTE these are enums, to effectively use them they require value exports | ||
// export { FileUploadWarnings, UploadWarnings } from './fileUploader.type'; | ||
export { GraphQL } from './graphql'; | ||
export * as EPI2ME_RPC from './grpc'; | ||
export { EPI2ME_RPC } from './grpc'; | ||
export * as Helpers from './helpers'; | ||
export * as FileExtension from './file_extensions'; | ||
// export * as FileExtension from './file_extensions'; | ||
export { ProfileManager } from './ProfileManager'; |
@@ -12,3 +12,3 @@ { | ||
"private": false, | ||
"version": "5.1.5612995", | ||
"version": "5.1.5622563", | ||
"main": "cjs/index-web.js", | ||
@@ -15,0 +15,0 @@ "module": "esm/index-web.js", |
import type { PaginatedWorkflowType, PaginatedWorkflowInstanceType, WorkflowInstanceType, WorkflowInstanceMutation, StopWorkflowInstanceMutation, InstanceTokenMutation, UserObjectType, UpdateUserMutation, RegisterTokenMutation, RegionType, WorkflowType, StatusType } from './generated/graphql.type'; | ||
import type { ApolloQueryResult } from '@apollo/client'; | ||
import type { ApolloQueryResult } from '@apollo/client/core'; | ||
import type { Dictionary } from 'ts-runtime-typecheck'; | ||
@@ -4,0 +4,0 @@ export * from './generated/graphql.type'; |
@@ -5,3 +5,3 @@ import type { grpc } from '@improbable-eng/grpc-web'; | ||
import { StatusApi } from './api/status'; | ||
export default class EPI2ME_RPC { | ||
export declare class EPI2ME_RPC { | ||
url: string; | ||
@@ -14,1 +14,2 @@ workflowApi: WorkflowApi; | ||
} | ||
export default EPI2ME_RPC; |
@@ -1,6 +0,26 @@ | ||
export * from './index.type'; | ||
export type { MappedFileStats } from './filestats/filestats.type'; | ||
export type { Tokens, RequestConfig, Message, TransportFactory } from './grpc/utils.type'; | ||
export type { Body } from './network/Body.type'; | ||
export type { Credentials } from './network/Credentials.type'; | ||
export type { NetworkInterface } from './network/NetworkInterface.type'; | ||
export type { RequestOptions } from './network/RequestOptions.type'; | ||
export type { Configuration } from './Configuration.type'; | ||
export type { DBOptions } from './db.type'; | ||
export type { EPI2ME_OPTIONS as Options } from './epi2me-options.type'; | ||
export type { UploadState, SuccessState, ProgressState, DownloadState, Warning, States } from './epi2me-state.type'; | ||
export type { InstanceAttribute, GQLWorkflowConfig } from './factory.type'; | ||
export type { InputFileOptions, FileStat } from './inputScanner.type'; | ||
export type { LogMethod, Logger, CriticalErrorId } from './Logger.type'; | ||
export type { Profile, ProfileFileStructure } from './ProfileManager.type'; | ||
export type { Queue } from './queue.type'; | ||
export type { AsyncCallback } from './rest.type'; | ||
export type { Sample, Experiment, Experiments } from './sample.type'; | ||
export type { SessionManagerOptions } from './session-manager.type'; | ||
export type { SocketOptions } from './socket.type'; | ||
export type { TelemetrySource, ExtendedTelemetrySource, ReportID, TelemetryNames } from './telemetry.type'; | ||
export type { Timer } from './timer.type'; | ||
export * as graphQLSchema from './graphql.type'; | ||
export { GraphQL } from './graphql'; | ||
export * as EPI2ME_RPC from './grpc'; | ||
export { EPI2ME_RPC } from './grpc'; | ||
export * as Helpers from './helpers'; | ||
export * as FileExtension from './file_extensions'; | ||
export { ProfileManager } from './ProfileManager'; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2997989
206
27437