30 lines
2.3 KiB
JavaScript
30 lines
2.3 KiB
JavaScript
/*!
|
|
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
*/
|
|
// This package contains shared logic for developer actions (data sources, code gen, publishing).
|
|
// === Core Actions ===
|
|
export { addDataSourceAsync } from './Actions/AddDataSource.js';
|
|
export { addDataverseApiAsync } from './Actions/AddDataverseApi.js';
|
|
export { addFlowAsync } from './Actions/AddFlow.js';
|
|
export { createConnectionAsync } from './Actions/CreateConnection.js';
|
|
export { deleteDataSourceAsync } from './Actions/DeleteDataSource.js';
|
|
export { findDataverseApiAsync } from './Actions/FindDataverseApi.js';
|
|
export { getCodeAppsAsync } from './Actions/GetCodeApps.js';
|
|
export { listConnectionReferences } from './Actions/ListConnectionReferences.js';
|
|
export { listConnectionsAsync } from './Actions/ListConnections.js';
|
|
export { listDatasetsAsync } from './Actions/ListDatasets.js';
|
|
export { listAllEnvironmentVariablesAsync } from './Actions/ListEnvironmentVariables.js';
|
|
export { listFlowsAsync } from './Actions/ListFlows.js';
|
|
export { listSqlStoredProceduresAsync } from './Actions/ListSqlStoredProcedures.js';
|
|
export { listTablesAsync } from './Actions/ListTables.js';
|
|
export { pushApp } from './Actions/PushApp.js';
|
|
export { refreshDataSourceAsync } from './Actions/RefreshDataSource.js';
|
|
export { regenDataSourceTsAsync } from './Actions/RegenDataSourceTs.js';
|
|
export { removeFlowAsync } from './Actions/RemoveFlow.js';
|
|
export { readRepoConfig, writeRepoConfig } from './Config/ConfigManager.js';
|
|
export { VERSION } from './Config/V1/Schema.js';
|
|
export { setVfs } from './VfsManager.js';
|
|
export { clearAndRegenerateModelService, generateModelService, } from './CodeGen/modelServiceGenerator.js';
|
|
export { getPlayerServiceConfig, initializePlayerServices, updateEnvironmentName, updateRegion, } from './services/index.js';
|
|
export { createApp, DataverseMetadataService, DataverseSystemDataService, endSession, generateResourceStorage, getConnectionByNameAsync, getConnectorAsync, getDatasetsAsync, getEnvironmentByName, getSqlStoredProcedureMetadataAsync, getSqlStoredProceduresAsync, getTableMetadataAsync, getTablesAsync, isConnectionShareable, isSsoOnlyConnector, listAllConnectionsAsync, listAppsAsync, makeAppSolutionAware, publishApp, saveApp, startSession, validateSsoEligible, } from './services/index.js';
|
|
//# sourceMappingURL=index.js.map
|