Skip to content

Commit

Permalink
docs(NODE-4295): ensure all change stream events have links to their …
Browse files Browse the repository at this point in the history
…documentation (#4051)
  • Loading branch information
baileympearson committed Mar 27, 2024
1 parent 918fe69 commit 2634ea3
Showing 1 changed file with 7 additions and 7 deletions.
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

0 comments on commit 2634ea3

Please sign in to comment.