@teez-sdk/teez-b2c-api 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -21,7 +21,7 @@ declare const LANGUAGES: {
21
21
  /**
22
22
  * Default application version code.
23
23
  */
24
- declare const DEFAULT_APP_VERSION = "193";
24
+ declare const DEFAULT_APP_VERSION = "200";
25
25
  //#endregion
26
26
  //#region src/common/types.d.ts
27
27
  /**
@@ -43,6 +43,10 @@ interface TeezClientConfig {
43
43
  * @default "https://b2c-api.teez.kz"
44
44
  */
45
45
  baseUrl?: string;
46
+ /**
47
+ * JWT bearer token for authenticated requests.
48
+ */
49
+ token?: string;
46
50
  /**
47
51
  * Application version string.
48
52
  * @default "193"
@@ -71,6 +75,10 @@ interface ResolvedTeezClientConfig {
71
75
  * Base URL for the API.
72
76
  */
73
77
  readonly baseUrl: string;
78
+ /**
79
+ * JWT bearer token for authenticated requests.
80
+ */
81
+ readonly token?: string;
74
82
  /**
75
83
  * Application version string.
76
84
  */
@@ -140,6 +148,53 @@ interface HttpGetOptions<T extends z.ZodMiniType> extends Omit<HttpRequestOption
140
148
  */
141
149
  schema: T;
142
150
  }
151
+ /**
152
+ * Options for making a POST request.
153
+ */
154
+ interface HttpPostOptions extends Omit<HttpRequestOptions, "url" | "method" | "body"> {
155
+ /**
156
+ * Relative path to the resource.
157
+ */
158
+ path: string;
159
+ /**
160
+ * Request body to send (will be JSON-serialized).
161
+ */
162
+ body?: unknown;
163
+ /**
164
+ * Query parameters to append to the URL.
165
+ */
166
+ params?: QueryParams;
167
+ }
168
+ /**
169
+ * Options for making a PATCH request.
170
+ */
171
+ interface HttpPatchOptions extends Omit<HttpRequestOptions, "url" | "method" | "body"> {
172
+ /**
173
+ * Relative path to the resource.
174
+ */
175
+ path: string;
176
+ /**
177
+ * Request body to send (will be JSON-serialized).
178
+ */
179
+ body?: unknown;
180
+ /**
181
+ * Query parameters to append to the URL.
182
+ */
183
+ params?: QueryParams;
184
+ }
185
+ /**
186
+ * Options for making a DELETE request.
187
+ */
188
+ interface HttpDeleteOptions extends Omit<HttpRequestOptions, "url" | "method" | "body"> {
189
+ /**
190
+ * Relative path to the resource.
191
+ */
192
+ path: string;
193
+ /**
194
+ * Query parameters to append to the URL.
195
+ */
196
+ params?: QueryParams;
197
+ }
143
198
  //#endregion
144
199
  //#region src/http/client.d.ts
145
200
  /**
@@ -147,17 +202,13 @@ interface HttpGetOptions<T extends z.ZodMiniType> extends Omit<HttpRequestOption
147
202
  */
148
203
  declare class HttpClient {
149
204
  /**
150
- * Base URL for all requests.
205
+ * Client configuration.
151
206
  */
152
- private readonly baseUrl;
207
+ private readonly config;
153
208
  /**
154
209
  * Headers to include in all requests.
155
210
  */
156
211
  private readonly headers;
157
- /**
158
- * Request timeout in milliseconds.
159
- */
160
- private readonly timeout;
161
212
  /**
162
213
  * Initializes a new instance of the HttpClient.
163
214
  *
@@ -174,6 +225,171 @@ declare class HttpClient {
174
225
  * Performs a GET request and validates the response.
175
226
  */
176
227
  get<T extends z.ZodMiniType>(options: HttpGetOptions<T>): Promise<z.output<T>>;
228
+ /**
229
+ * Performs a POST request.
230
+ */
231
+ post(options: HttpPostOptions): Promise<unknown>;
232
+ /**
233
+ * Performs a PATCH request.
234
+ */
235
+ patch(options: HttpPatchOptions): Promise<unknown>;
236
+ /**
237
+ * Performs a DELETE request.
238
+ */
239
+ delete(options: HttpDeleteOptions): Promise<unknown>;
240
+ }
241
+ //#endregion
242
+ //#region src/api/auth/schema-types.d.ts
243
+ /**
244
+ * ⚠️ This file is auto-generated. Do not edit manually.
245
+ * Run `npm run generate:schema-types` to regenerate.
246
+ * Generated from: schemas.ts
247
+ */
248
+ /**
249
+ * Response schema for login.
250
+ */
251
+ type AuthApiLoginResponse = void | undefined;
252
+ /**
253
+ * Response schema for OTP verification.
254
+ */
255
+ interface AuthApiVerifyResponse {
256
+ /**
257
+ * Unique user identifier
258
+ */
259
+ userId: string;
260
+ /**
261
+ * JWT access token for authenticated requests
262
+ */
263
+ accessToken: string;
264
+ /**
265
+ * Refresh token for obtaining new access tokens
266
+ */
267
+ refreshToken: string;
268
+ /**
269
+ * User's phone number
270
+ */
271
+ phone: string;
272
+ /**
273
+ * User's default pickup point
274
+ */
275
+ pickupPoint?: (unknown | null) | undefined;
276
+ /**
277
+ * User's default delivery address
278
+ */
279
+ address?: (unknown | null) | undefined;
280
+ /**
281
+ * User's default recipient information
282
+ */
283
+ recipient?: (unknown | null) | undefined;
284
+ /**
285
+ * User's default payment method ID
286
+ */
287
+ paymentId?: (number | null) | undefined;
288
+ }
289
+ /**
290
+ * Response schema for token validation.
291
+ */
292
+ interface AuthApiCheckTokenResponse {
293
+ /**
294
+ * Unique user identifier
295
+ */
296
+ userId: string;
297
+ /**
298
+ * User's phone number
299
+ */
300
+ phoneNumber: string;
301
+ /**
302
+ * User's full name
303
+ */
304
+ fullName: string;
305
+ /**
306
+ * User's email address
307
+ */
308
+ email: string;
309
+ /**
310
+ * Token expiration date (ISO 8601 format)
311
+ */
312
+ expiredTokenDate: string;
313
+ /**
314
+ * User's language preference (ru or kk)
315
+ */
316
+ language: "ru" | "kk";
317
+ /**
318
+ * Whether user has any orders in the system
319
+ */
320
+ hasOrders: boolean;
321
+ /**
322
+ * Whether user has any orders (alternative field)
323
+ */
324
+ hasAnyOrders: boolean;
325
+ }
326
+ //#endregion
327
+ //#region src/api/auth/types.d.ts
328
+ /**
329
+ * Parameters for initiating phone login (sends OTP).
330
+ */
331
+ interface AuthApiLoginParams extends BaseParams {
332
+ /**
333
+ * Phone number with country code (e.g., "+77071234567")
334
+ */
335
+ phone: string;
336
+ }
337
+ /**
338
+ * Parameters for verifying OTP code and obtaining JWT token.
339
+ */
340
+ interface AuthApiVerifyParams extends BaseParams {
341
+ /**
342
+ * Phone number with country code (e.g., "+77071234567")
343
+ */
344
+ phone: string;
345
+ /**
346
+ * OTP code received via SMS
347
+ */
348
+ otpCode: string;
349
+ }
350
+ /**
351
+ * Parameters for checking token validity.
352
+ */
353
+ type AuthApiCheckTokenParams = BaseParams;
354
+ //#endregion
355
+ //#region src/api/auth/api.d.ts
356
+ /**
357
+ * API for authentication operations.
358
+ */
359
+ declare class AuthApi {
360
+ private http;
361
+ /**
362
+ * Initializes a new instance of the AuthApi.
363
+ *
364
+ * @param http HTTP client instance.
365
+ */
366
+ constructor(http: HttpClient);
367
+ /**
368
+ * Initiates phone login by sending an OTP code to the specified phone number.
369
+ *
370
+ * @example
371
+ * await client.auth.login({
372
+ * phone: "+77071234567"
373
+ * });
374
+ */
375
+ login(params: AuthApiLoginParams): Promise<AuthApiLoginResponse>;
376
+ /**
377
+ * Verifies OTP code and obtains JWT access and refresh tokens.
378
+ *
379
+ * @example
380
+ * const response = await client.auth.verify({
381
+ * phone: "+77071234567",
382
+ * otpCode: "2610"
383
+ * });
384
+ */
385
+ verify(params: AuthApiVerifyParams): Promise<AuthApiVerifyResponse>;
386
+ /**
387
+ * Validates the current JWT token and retrieves user information.
388
+ *
389
+ * @example
390
+ * const response = await client.auth.checkToken();
391
+ */
392
+ checkToken(params?: AuthApiCheckTokenParams): Promise<AuthApiCheckTokenResponse>;
177
393
  }
178
394
  //#endregion
179
395
  //#region src/api/banners/schema-types.d.ts
@@ -658,7 +874,7 @@ interface CollectionsApiGetResponse {
658
874
  /**
659
875
  * Type union for product sort keys
660
876
  */
661
- type ProductSortKey = "popularity" | "highestRated" | "new" | "price" | "priceDesc";
877
+ type ProductSortKey = "byRelevance" | "popularity" | "highestRated" | "new" | "price" | "priceDesc";
662
878
  /**
663
879
  * Schema for a sort option.
664
880
  */
@@ -2163,6 +2379,10 @@ declare class TeezClient {
2163
2379
  * HTTP client for making requests.
2164
2380
  */
2165
2381
  private readonly http;
2382
+ /**
2383
+ * API for authentication operations (login, verify OTP, check token).
2384
+ */
2385
+ readonly auth: AuthApi;
2166
2386
  /**
2167
2387
  * API for retrieving banners.
2168
2388
  */
@@ -2389,6 +2609,89 @@ declare class TeezValidationError extends TeezError {
2389
2609
  }: TeezValidationErrorOptions);
2390
2610
  }
2391
2611
  //#endregion
2612
+ //#region src/api/auth/schemas.d.ts
2613
+ /**
2614
+ * Response schema for login.
2615
+ */
2616
+ declare const AuthApiLoginResponseSchema: z.ZodMiniVoid;
2617
+ /**
2618
+ * Response schema for OTP verification.
2619
+ */
2620
+ declare const AuthApiVerifyResponseSchema: z.ZodMiniObject<{
2621
+ /**
2622
+ * Unique user identifier
2623
+ */
2624
+ userId: z.ZodMiniString<string>;
2625
+ /**
2626
+ * JWT access token for authenticated requests
2627
+ */
2628
+ accessToken: z.ZodMiniString<string>;
2629
+ /**
2630
+ * Refresh token for obtaining new access tokens
2631
+ */
2632
+ refreshToken: z.ZodMiniString<string>;
2633
+ /**
2634
+ * User's phone number
2635
+ */
2636
+ phone: z.ZodMiniString<string>;
2637
+ /**
2638
+ * User's default pickup point
2639
+ */
2640
+ pickupPoint: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniUnknown>>;
2641
+ /**
2642
+ * User's default delivery address
2643
+ */
2644
+ address: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniUnknown>>;
2645
+ /**
2646
+ * User's default recipient information
2647
+ */
2648
+ recipient: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniUnknown>>;
2649
+ /**
2650
+ * User's default payment method ID
2651
+ */
2652
+ paymentId: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniNumber<number>>>;
2653
+ }, z.core.$strip>;
2654
+ /**
2655
+ * Response schema for token validation.
2656
+ */
2657
+ declare const AuthApiCheckTokenResponseSchema: z.ZodMiniObject<{
2658
+ /**
2659
+ * Unique user identifier
2660
+ */
2661
+ userId: z.ZodMiniString<string>;
2662
+ /**
2663
+ * User's phone number
2664
+ */
2665
+ phoneNumber: z.ZodMiniString<string>;
2666
+ /**
2667
+ * User's full name
2668
+ */
2669
+ fullName: z.ZodMiniString<string>;
2670
+ /**
2671
+ * User's email address
2672
+ */
2673
+ email: z.ZodMiniString<string>;
2674
+ /**
2675
+ * Token expiration date (ISO 8601 format)
2676
+ */
2677
+ expiredTokenDate: z.ZodMiniString<string>;
2678
+ /**
2679
+ * User's language preference (ru or kk)
2680
+ */
2681
+ language: z.ZodMiniEnum<{
2682
+ ru: "ru";
2683
+ kk: "kk";
2684
+ }>;
2685
+ /**
2686
+ * Whether user has any orders in the system
2687
+ */
2688
+ hasOrders: z.ZodMiniBoolean<boolean>;
2689
+ /**
2690
+ * Whether user has any orders (alternative field)
2691
+ */
2692
+ hasAnyOrders: z.ZodMiniBoolean<boolean>;
2693
+ }, z.core.$strip>;
2694
+ //#endregion
2392
2695
  //#region src/api/banners/schemas.d.ts
2393
2696
  /**
2394
2697
  * Type literal for banner image resource type
@@ -2969,7 +3272,7 @@ declare const CollectionsApiGetResponseSchema: z.ZodMiniObject<{
2969
3272
  /**
2970
3273
  * Type union for product sort keys
2971
3274
  */
2972
- declare const ProductSortKeySchema: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
3275
+ declare const ProductSortKeySchema: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"byRelevance">, z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
2973
3276
  /**
2974
3277
  * Schema for a sort option.
2975
3278
  */
@@ -2977,7 +3280,7 @@ declare const ProductsApiSortOptionSchema: z.ZodMiniObject<{
2977
3280
  /**
2978
3281
  * Sort key - "popularity", "highestRated", "new", "price", or "priceDesc"
2979
3282
  */
2980
- key: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
3283
+ key: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"byRelevance">, z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
2981
3284
  /**
2982
3285
  * Localized display name of the sort option
2983
3286
  */
@@ -2990,7 +3293,7 @@ declare const ProductsApiGetSortOptionsResponseSchema: z.ZodMiniArray<z.ZodMiniO
2990
3293
  /**
2991
3294
  * Sort key - "popularity", "highestRated", "new", "price", or "priceDesc"
2992
3295
  */
2993
- key: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
3296
+ key: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"byRelevance">, z.ZodMiniLiteral<"popularity">, z.ZodMiniLiteral<"highestRated">, z.ZodMiniLiteral<"new">, z.ZodMiniLiteral<"price">, z.ZodMiniLiteral<"priceDesc">]>;
2994
3297
  /**
2995
3298
  * Localized display name of the sort option
2996
3299
  */
@@ -4599,5 +4902,5 @@ declare const FeatureFlagsApiListResponseSchema: z.ZodMiniArray<z.ZodMiniObject<
4599
4902
  isActive: z.ZodMiniBoolean<boolean>;
4600
4903
  }, z.core.$strip>>;
4601
4904
  //#endregion
4602
- export { BASE_URL, BannerActionTypes, BannerActionTypesSchema, BannerImageType, BannerImageTypeSchema, BannersApi, BannersApiAction, BannersApiActionSchema, BannersApiBannerItem, BannersApiBannerItemSchema, BannersApiImage, BannersApiImageSchema, BannersApiListParams, BannersApiListResponse, BannersApiListResponseSchema, BaseParams, CategoriesApi, CategoriesApiGetParams, CategoriesApiGetParentsParams, CategoriesApiGetParentsResponse, CategoriesApiGetParentsResponseItem, CategoriesApiGetParentsResponseItemSchema, CategoriesApiGetParentsResponseSchema, CategoriesApiGetResponse, CategoriesApiGetResponseSchema, CategoriesApiListParams, CategoriesApiListResponse, CategoriesApiListResponseItem, CategoriesApiListResponseItemSchema, CategoriesApiListResponseSchema, CollectionType, CollectionTypeSchema, CollectionsApi, CollectionsApiGetParams, CollectionsApiGetResponse, CollectionsApiGetResponseSchema, CollectionsApiGetSkusParams, CollectionsApiGetSkusResponse, CollectionsApiGetSkusResponseSchema, CollectionsApiListItem, CollectionsApiListItemSchema, CollectionsApiListParams, CollectionsApiListResponse, CollectionsApiListResponseSchema, CollectionsApiSkuItem, CollectionsApiSkuItemSchema, CollectionsApiStockAvailability, CollectionsApiStockAvailabilitySchema, CollectionsStockAvailabilityType, CollectionsStockAvailabilityTypeSchema, DEFAULT_APP_VERSION, DEFAULT_CONFIG, FeatureFlagsApi, FeatureFlagsApiItem, FeatureFlagsApiItemSchema, FeatureFlagsApiListParams, FeatureFlagsApiListResponse, FeatureFlagsApiListResponseSchema, LANGUAGES, Language, ProductSortKey, ProductSortKeySchema, ProductsApi, ProductsApiBadge, ProductsApiBadgeSchema, ProductsApiGetReviewsParams, ProductsApiGetReviewsResponse, ProductsApiGetReviewsResponseSchema, ProductsApiGetSortOptionsParams, ProductsApiGetSortOptionsResponse, ProductsApiGetSortOptionsResponseSchema, ProductsApiListParams, ProductsApiListResponse, ProductsApiListResponseSchema, ProductsApiProductItem, ProductsApiProductItemSchema, ProductsApiReviewItem, ProductsApiReviewItemSchema, ProductsApiSortOption, ProductsApiSortOptionSchema, ProductsApiStockAvailability, ProductsApiStockAvailabilitySchema, ProductsStockAvailabilityType, ProductsStockAvailabilityTypeSchema, PromoApi, PromoApiItem, PromoApiItemSchema, PromoApiListParams, PromoApiListResponse, PromoApiListResponseSchema, ResolvedTeezClientConfig, ShopsApi, ShopsApiContactInfo, ShopsApiContactInfoSchema, ShopsApiGetMonobrandParams, ShopsApiGetMonobrandResponse, ShopsApiGetMonobrandResponseSchema, ShopsApiGetParams, ShopsApiGetProductsParams, ShopsApiGetProductsResponse, ShopsApiGetProductsResponseSchema, ShopsApiGetResponse, ShopsApiGetResponseSchema, ShopsApiProductItem, ShopsApiProductItemSchema, ShopsApiShopItem, ShopsApiShopItemSchema, ShopsApiStockAvailability, ShopsApiStockAvailabilitySchema, ShopsApiTag, ShopsApiTagSchema, ShopsStockAvailabilityType, ShopsStockAvailabilityTypeSchema, SkuApi, SkuApiAttribute, SkuApiAttributeProperty, SkuApiAttributePropertySchema, SkuApiAttributePropertyValue, SkuApiAttributePropertyValueSchema, SkuApiAttributeSchema, SkuApiBrand, SkuApiBrandSchema, SkuApiCategory, SkuApiCategorySchema, SkuApiCollectionItem, SkuApiCollectionItemSchema, SkuApiGetCollectionsParams, SkuApiGetCollectionsResponse, SkuApiGetCollectionsResponseSchema, SkuApiGetParams, SkuApiGetResponse, SkuApiGetResponseSchema, SkuApiGetReviewAvailableParams, SkuApiGetReviewAvailableResponse, SkuApiGetReviewAvailableResponseSchema, SkuApiGetSimilarParams, SkuApiGetSimilarResponse, SkuApiGetSimilarResponseSchema, SkuApiInstallment, SkuApiInstallmentSchema, SkuApiShop, SkuApiShopSchema, SkuApiSimilarItem, SkuApiSimilarItemSchema, SkuApiStockAvailability, SkuApiStockAvailabilitySchema, SkuApiTag, SkuApiTagSchema, SkuStockAvailabilityType, SkuStockAvailabilityTypeSchema, TeezApiError, TeezApiErrorOptions, TeezClient, TeezClientConfig, TeezError, TeezNetworkError, TeezNetworkErrorOptions, TeezTimeoutError, TeezTimeoutErrorOptions, TeezValidationError, TeezValidationErrorOptions, TeezValidationIssue, buildHeaders, buildUserAgent, resolveConfig };
4905
+ export { AuthApi, AuthApiCheckTokenParams, AuthApiCheckTokenResponse, AuthApiCheckTokenResponseSchema, AuthApiLoginParams, AuthApiLoginResponse, AuthApiLoginResponseSchema, AuthApiVerifyParams, AuthApiVerifyResponse, AuthApiVerifyResponseSchema, BASE_URL, BannerActionTypes, BannerActionTypesSchema, BannerImageType, BannerImageTypeSchema, BannersApi, BannersApiAction, BannersApiActionSchema, BannersApiBannerItem, BannersApiBannerItemSchema, BannersApiImage, BannersApiImageSchema, BannersApiListParams, BannersApiListResponse, BannersApiListResponseSchema, BaseParams, CategoriesApi, CategoriesApiGetParams, CategoriesApiGetParentsParams, CategoriesApiGetParentsResponse, CategoriesApiGetParentsResponseItem, CategoriesApiGetParentsResponseItemSchema, CategoriesApiGetParentsResponseSchema, CategoriesApiGetResponse, CategoriesApiGetResponseSchema, CategoriesApiListParams, CategoriesApiListResponse, CategoriesApiListResponseItem, CategoriesApiListResponseItemSchema, CategoriesApiListResponseSchema, CollectionType, CollectionTypeSchema, CollectionsApi, CollectionsApiGetParams, CollectionsApiGetResponse, CollectionsApiGetResponseSchema, CollectionsApiGetSkusParams, CollectionsApiGetSkusResponse, CollectionsApiGetSkusResponseSchema, CollectionsApiListItem, CollectionsApiListItemSchema, CollectionsApiListParams, CollectionsApiListResponse, CollectionsApiListResponseSchema, CollectionsApiSkuItem, CollectionsApiSkuItemSchema, CollectionsApiStockAvailability, CollectionsApiStockAvailabilitySchema, CollectionsStockAvailabilityType, CollectionsStockAvailabilityTypeSchema, DEFAULT_APP_VERSION, DEFAULT_CONFIG, FeatureFlagsApi, FeatureFlagsApiItem, FeatureFlagsApiItemSchema, FeatureFlagsApiListParams, FeatureFlagsApiListResponse, FeatureFlagsApiListResponseSchema, LANGUAGES, Language, ProductSortKey, ProductSortKeySchema, ProductsApi, ProductsApiBadge, ProductsApiBadgeSchema, ProductsApiGetReviewsParams, ProductsApiGetReviewsResponse, ProductsApiGetReviewsResponseSchema, ProductsApiGetSortOptionsParams, ProductsApiGetSortOptionsResponse, ProductsApiGetSortOptionsResponseSchema, ProductsApiListParams, ProductsApiListResponse, ProductsApiListResponseSchema, ProductsApiProductItem, ProductsApiProductItemSchema, ProductsApiReviewItem, ProductsApiReviewItemSchema, ProductsApiSortOption, ProductsApiSortOptionSchema, ProductsApiStockAvailability, ProductsApiStockAvailabilitySchema, ProductsStockAvailabilityType, ProductsStockAvailabilityTypeSchema, PromoApi, PromoApiItem, PromoApiItemSchema, PromoApiListParams, PromoApiListResponse, PromoApiListResponseSchema, ResolvedTeezClientConfig, ShopsApi, ShopsApiContactInfo, ShopsApiContactInfoSchema, ShopsApiGetMonobrandParams, ShopsApiGetMonobrandResponse, ShopsApiGetMonobrandResponseSchema, ShopsApiGetParams, ShopsApiGetProductsParams, ShopsApiGetProductsResponse, ShopsApiGetProductsResponseSchema, ShopsApiGetResponse, ShopsApiGetResponseSchema, ShopsApiProductItem, ShopsApiProductItemSchema, ShopsApiShopItem, ShopsApiShopItemSchema, ShopsApiStockAvailability, ShopsApiStockAvailabilitySchema, ShopsApiTag, ShopsApiTagSchema, ShopsStockAvailabilityType, ShopsStockAvailabilityTypeSchema, SkuApi, SkuApiAttribute, SkuApiAttributeProperty, SkuApiAttributePropertySchema, SkuApiAttributePropertyValue, SkuApiAttributePropertyValueSchema, SkuApiAttributeSchema, SkuApiBrand, SkuApiBrandSchema, SkuApiCategory, SkuApiCategorySchema, SkuApiCollectionItem, SkuApiCollectionItemSchema, SkuApiGetCollectionsParams, SkuApiGetCollectionsResponse, SkuApiGetCollectionsResponseSchema, SkuApiGetParams, SkuApiGetResponse, SkuApiGetResponseSchema, SkuApiGetReviewAvailableParams, SkuApiGetReviewAvailableResponse, SkuApiGetReviewAvailableResponseSchema, SkuApiGetSimilarParams, SkuApiGetSimilarResponse, SkuApiGetSimilarResponseSchema, SkuApiInstallment, SkuApiInstallmentSchema, SkuApiShop, SkuApiShopSchema, SkuApiSimilarItem, SkuApiSimilarItemSchema, SkuApiStockAvailability, SkuApiStockAvailabilitySchema, SkuApiTag, SkuApiTagSchema, SkuStockAvailabilityType, SkuStockAvailabilityTypeSchema, TeezApiError, TeezApiErrorOptions, TeezClient, TeezClientConfig, TeezError, TeezNetworkError, TeezNetworkErrorOptions, TeezTimeoutError, TeezTimeoutErrorOptions, TeezValidationError, TeezValidationErrorOptions, TeezValidationIssue, buildHeaders, buildUserAgent, resolveConfig };
4603
4906
  //# sourceMappingURL=index.d.mts.map