IGPAPI
    Preparing search index...

    Variable TagsFacadeConst

    TagsFacade: Effect<
        {
            feed: {
                media: (
                    input: WithOptionalDefaults,
                ) => PaginatedFeed<
                    WithOptionalDefaults<
                        TagMediaFeedInput,
                        { rankToken: `${string}-${string}-${string}-${string}-${string}` },
                    >,
                    TagMediaFeedResponse,
                    TagMediaFeedResponseItemsItem,
                >;
                sections: (
                    input: WithOptionalDefaults,
                ) => PaginatedFeed<
                    WithOptionalDefaults<TagsSectionsFeedInput, {}>,
                    TagsSectionsFeedResponse,
                    TagsSectionsFeedResponseMedia,
                >;
            };
            info: (...args: [input: TagsInfoInput]) => Promise<TagsInfoResponse>;
            search: (...args: [input: TagsSearchInput]) => Promise<TagsSearchResponse>;
            searchSimple: (
                ...args: [input: { q: string }],
            ) => Promise<TagsSearchResponse>;
            sections: (
                ...args: [input: TagsSectionsInput],
            ) => Promise<TagsSectionsResponse>;
            sectionSimple: (
                ...args: [input: { q: string; tab: TagsSectionsTab }],
            ) => Promise<TagsSectionsResponse>;
            story: (...args: [input: TagsStoryInput]) => Promise<TagsStoryResponse>;
        },
        never,
        PlainJsonApiHttp
        | MobileSession
        | MobileDevice,
    > = ...