UNPKG

@datocms/cma-client

Version:
29 lines (28 loc) 1.14 kB
import BaseResource from '../../BaseResource.js'; import type * as ApiTypes from '../ApiTypes.js'; import type * as RawApiTypes from '../RawApiTypes.js'; export default class EmojiSuggestions extends BaseResource { static readonly TYPE: "emoji_suggestions"; /** * Retrieve emoji suggestions * * Read more: https://www.datocms.com/docs/content-management-api/resources/emoji-suggestions/self * * @throws {ApiError} * @throws {TimeoutError} * * @deprecated This API call is to be considered private and might change without notice */ find(queryParams?: ApiTypes.EmojiSuggestionsSelfHrefSchema): Promise<ApiTypes.EmojiSuggestions>; /** * Retrieve emoji suggestions * * Read more: https://www.datocms.com/docs/content-management-api/resources/emoji-suggestions/self * * @throws {ApiError} * @throws {TimeoutError} * * @deprecated This API call is to be considered private and might change without notice */ rawFind(queryParams?: RawApiTypes.EmojiSuggestionsSelfHrefSchema): Promise<RawApiTypes.EmojiSuggestionsSelfTargetSchema>; }