@@ -110,5 +110,51 @@ export class TikTokClient {
110110 ) : Promise < Record < string , unknown > > {
111111 return this . _gen . request ( `/v1/tiktok/ads/${ adId } ` , { params } ) ;
112112 }
113+
114+ /** TikTok Shop root categories. Generated from the OpenAPI spec; returns the raw response object. */
115+ async tiktokShopRootCategories (
116+ params : Record < string , string | number | boolean | undefined > = { }
117+ ) : Promise < Record < string , unknown > > {
118+ return this . _gen . request ( "/v1/tiktok/shop/categories" , { params } ) ;
119+ }
120+
121+ /** TikTok Shop category: subcategories + top products. Generated from the OpenAPI spec; returns the raw response object. */
122+ async tiktokShopCategorySubcategoriesTopProducts (
123+ categoryId : string ,
124+ params : Record < string , string | number | boolean | undefined > = { }
125+ ) : Promise < Record < string , unknown > > {
126+ return this . _gen . request ( `/v1/tiktok/shop/categories/${ categoryId } ` , { params } ) ;
127+ }
128+
129+ /** TikTok Shop product detail. Generated from the OpenAPI spec; returns the raw response object. */
130+ async tiktokShopProductDetail (
131+ productId : string ,
132+ params : Record < string , string | number | boolean | undefined > = { }
133+ ) : Promise < Record < string , unknown > > {
134+ return this . _gen . request ( `/v1/tiktok/shop/products/${ productId } ` , { params } ) ;
135+ }
136+
137+ /** TikTok Shop product reviews. Generated from the OpenAPI spec; returns the raw response object. */
138+ async tiktokShopProductReviews (
139+ productId : string ,
140+ params : Record < string , string | number | boolean | undefined > = { }
141+ ) : Promise < Record < string , unknown > > {
142+ return this . _gen . request ( `/v1/tiktok/shop/products/${ productId } /reviews` , { params } ) ;
143+ }
144+
145+ /** Search TikTok Shop products. Generated from the OpenAPI spec; returns the raw response object. */
146+ async searchTiktokShopProducts (
147+ params : Record < string , string | number | boolean | undefined > = { }
148+ ) : Promise < Record < string , unknown > > {
149+ return this . _gen . request ( "/v1/tiktok/shop/search" , { params } ) ;
150+ }
151+
152+ /** TikTok Shop store + products. Generated from the OpenAPI spec; returns the raw response object. */
153+ async tiktokShopStoreProducts (
154+ sellerId : string ,
155+ params : Record < string , string | number | boolean | undefined > = { }
156+ ) : Promise < Record < string , unknown > > {
157+ return this . _gen . request ( `/v1/tiktok/shop/stores/${ sellerId } ` , { params } ) ;
158+ }
113159 // --- END generated by sdk/codegen/facade ---
114160}
0 commit comments