Skip to content

docs(NODE-4295): ensure all change stream events have links to their documentation #4051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/change_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ export interface ChangeStreamInvalidateDocument extends ChangeStreamDocumentComm
/**
* Only present when the `showExpandedEvents` flag is enabled.
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/createIndexes/#mongodb-data-createIndexes
*/
export interface ChangeStreamCreateIndexDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -392,7 +392,7 @@ export interface ChangeStreamCreateIndexDocument
/**
* Only present when the `showExpandedEvents` flag is enabled.
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/dropIndexes/#mongodb-data-dropIndexes
*/
export interface ChangeStreamDropIndexDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -405,7 +405,7 @@ export interface ChangeStreamDropIndexDocument
/**
* Only present when the `showExpandedEvents` flag is enabled.
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/modify/#mongodb-data-modify
*/
export interface ChangeStreamCollModDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -416,7 +416,7 @@ export interface ChangeStreamCollModDocument

/**
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/create/#mongodb-data-create
*/
export interface ChangeStreamCreateDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -427,7 +427,7 @@ export interface ChangeStreamCreateDocument

/**
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/shardCollection/#mongodb-data-shardCollection
*/
export interface ChangeStreamShardCollectionDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -439,7 +439,7 @@ export interface ChangeStreamShardCollectionDocument

/**
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/reshardCollection/#mongodb-data-reshardCollection
*/
export interface ChangeStreamReshardCollectionDocument
extends ChangeStreamDocumentCommon,
Expand All @@ -451,7 +451,7 @@ export interface ChangeStreamReshardCollectionDocument

/**
* @public
* @see https://www.mongodb.com/docs/manual/reference/change-events/
* @see https://www.mongodb.com/docs/manual/reference/change-events/refineCollectionShardKey/#mongodb-data-refineCollectionShardKey
*/
export interface ChangeStreamRefineCollectionShardKeyDocument
extends ChangeStreamDocumentCommon,
Expand Down
Loading