Skip to content

Commit

Permalink
refactor(releases): minor naming fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Oct 25, 2024
1 parent f769b6f commit e1d8138
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import {RELEASE_DOCUMENT_TYPE} from './constants'

export interface ReleaseOperationsStore {
publishRelease: (
bundleId: string,
bundleDocuments: SanityDocument[],
releaseId: string,
releaseDocuments: SanityDocument[],
publishedDocumentsRevisions: Record<string, string>,
) => Promise<void>
updateRelease: (bundle: EditableReleaseDocument) => Promise<void>
createRelease: (bundle: EditableReleaseDocument) => Promise<void>
updateRelease: (release: EditableReleaseDocument) => Promise<void>
createRelease: (release: EditableReleaseDocument) => Promise<void>
}

export function createReleaseOperationsStore(options: {
Expand Down

0 comments on commit e1d8138

Please sign in to comment.