diff --git a/packages/deploy/src/clusterChanges/applyClusterChanges.ts b/packages/deploy/src/clusterChanges/applyCouchbaseClusterChanges.ts similarity index 99% rename from packages/deploy/src/clusterChanges/applyClusterChanges.ts rename to packages/deploy/src/clusterChanges/applyCouchbaseClusterChanges.ts index 582e022a..59bc274b 100644 --- a/packages/deploy/src/clusterChanges/applyClusterChanges.ts +++ b/packages/deploy/src/clusterChanges/applyCouchbaseClusterChanges.ts @@ -26,7 +26,7 @@ import { CouchbaseClusterChangeUpdateIndex, } from './types.js'; -export async function applyClusterChanges( +export async function applyCouchbaseClusterChanges( cluster: Cluster, apiConfig: CouchbaseHttpApiConfig, changes: CouchbaseClusterChange[] diff --git a/packages/deploy/src/index.ts b/packages/deploy/src/index.ts new file mode 100644 index 00000000..3a7bcf11 --- /dev/null +++ b/packages/deploy/src/index.ts @@ -0,0 +1,3 @@ +export * from './clusterChanges/types.js'; +export * from './clusterChanges/getCouchbaseClusterChanges.js'; +export * from './clusterChanges/applyCouchbaseClusterChanges.js';