@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Type Alias GetProductsResponseWithCacheScope<T>

    GetProductsResponseWithCacheScope: T extends { products: infer TProducts }
        ? Omit<T, "cache_scope"> & {
            products: TProducts;
            cache_scope: GetProductsCacheScope;
        }
        : T extends { unchanged: true }
            ? Omit<T, "cache_scope"> & {
                unchanged: true;
                cache_scope: GetProductsCacheScope;
            }
            : RequireCacheScopeWhenProducts<NormalizedCacheScopeInput<T>>

    Type Parameters

    • T extends object