UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

27 lines (24 loc) 835 B
import {type SanityClient} from '@sanity/client' import {type Observable} from 'rxjs' import {SANITY_VERSION} from '../../../../../version' import {type ResourcesResponse} from './types' /** * @internal Not a stable API yet * @hidden */ export function getHelpResources( client: SanityClient, locale: string, ): Observable<ResourcesResponse> { return client.withConfig({apiVersion: '1'}).observable.request<ResourcesResponse>({ url: '/help', /* query and tag is used by analytics for tracking. Builds to: `{m: ['sanity@3.0.2']}' and serializes to: `?m=sanity@3.0.2`. Final format will be e.g. https://api.sanity.io/v1/help?tag=sanity.studio.module.version-check&m=sanity%403.0.2 */ query: {m: [`sanity@${SANITY_VERSION}`], locale}, tag: 'module.version-check', json: true, }) }