Skip to content

Commit

Permalink
doc: add @public release-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
victorcg88 committed Nov 22, 2024
1 parent ada56e7 commit 98ff4e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/x-types/src/query-signals/related-prompt.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { NamedModel } from '../named-model.model';

/**
* Represents a related prompt.
*
* @public
*/
export interface RelatedPrompt extends NamedModel<'RelatedPrompt'> {
/** The next queries related to the prompt. */
Expand Down
2 changes: 2 additions & 0 deletions packages/x-types/src/request/related-prompts-request.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ import { ExtraParamsRequest, QueryableRequest } from './request.model';

/**
* Request for Related Prompts endpoint.
*
* @public
*/
export interface RelatedPromptsRequest extends QueryableRequest, ExtraParamsRequest {}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { RelatedPrompt } from '../query-signals/related-prompt.model';

/**
* Response for the related prompts endpoint.
*
* @public
*/
export interface RelatedPromptsResponse {
relatedPrompts: RelatedPrompt[];
Expand Down

0 comments on commit 98ff4e0

Please sign in to comment.