Skip to content

Commit c0ac32f

Browse files
salacosteclaude
andcommitted
docs(api): Regenerate API documentation after license change
Auto-generated TypeDoc documentation updates reflecting the license change from MIT to Personal Use License in package.json. Affected: 342 API documentation files - Classes, interfaces, type aliases, enumerations - All modules: analytics, communications, finances, general, orders, products, promotion, reports, tariffs, in-store pickup - Internal types and utilities 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 62b6aa0 commit c0ac32f

File tree

353 files changed

+2287
-2287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+2287
-2287
lines changed

docs/api/-internal-/classes/RateLimiter.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Class: RateLimiter
44

5-
Defined in: [client/rate-limiter.ts:327](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L327)
5+
Defined in: [client/rate-limiter.ts:327](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L327)
66

77
Rate limiter for API endpoints using the token bucket algorithm.
88

@@ -63,7 +63,7 @@ await limiter.waitForSlot('products.update');
6363
new RateLimiter(config?: EndpointLimits): RateLimiter;
6464
```
6565

66-
Defined in: [client/rate-limiter.ts:358](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L358)
66+
Defined in: [client/rate-limiter.ts:358](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L358)
6767

6868
Creates a new RateLimiter instance.
6969

@@ -97,7 +97,7 @@ const limiter = new RateLimiter();
9797
waitForSlot(key: string): Promise<void>;
9898
```
9999

100-
Defined in: [client/rate-limiter.ts:410](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L410)
100+
Defined in: [client/rate-limiter.ts:410](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L410)
101101

102102
Waits for a rate limit slot to become available for the specified endpoint.
103103

@@ -163,7 +163,7 @@ await Promise.all(promises);
163163
configure(key: string, config: RateLimitConfig): void;
164164
```
165165

166-
Defined in: [client/rate-limiter.ts:471](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L471)
166+
Defined in: [client/rate-limiter.ts:471](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L471)
167167

168168
Dynamically configure or update rate limit for an endpoint.
169169

@@ -208,7 +208,7 @@ limiter.configure('products.create', {
208208
getConfiguration(key: string): RateLimitConfig | undefined;
209209
```
210210

211-
Defined in: [client/rate-limiter.ts:491](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L491)
211+
Defined in: [client/rate-limiter.ts:491](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L491)
212212

213213
Get the current rate limit configuration for an endpoint.
214214

@@ -241,7 +241,7 @@ if (config) {
241241
canProceed(key: string): boolean;
242242
```
243243

244-
Defined in: [client/rate-limiter.ts:516](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L516)
244+
Defined in: [client/rate-limiter.ts:516](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L516)
245245

246246
Check if a request can proceed immediately without queueing.
247247

@@ -281,7 +281,7 @@ await limiter.waitForSlot('products.create');
281281
getRemainingTokens(key: string): number;
282282
```
283283

284-
Defined in: [client/rate-limiter.ts:541](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L541)
284+
Defined in: [client/rate-limiter.ts:541](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L541)
285285

286286
Get the number of tokens currently available for an endpoint.
287287

@@ -315,7 +315,7 @@ console.log(`${remaining} requests can execute immediately`);
315315
reset(key?: string): void;
316316
```
317317

318-
Defined in: [client/rate-limiter.ts:570](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L570)
318+
Defined in: [client/rate-limiter.ts:570](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L570)
319319

320320
Reset rate limiting state for an endpoint or all endpoints.
321321

docs/api/-internal-/classes/RetryHandler.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Class: RetryHandler
44

5-
Defined in: [client/retry-handler.ts:155](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/retry-handler.ts#L155)
5+
Defined in: [client/retry-handler.ts:155](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/retry-handler.ts#L155)
66

77
RetryHandler - Automatic retry with exponential backoff
88

@@ -41,7 +41,7 @@ const result = await handler.executeWithRetry(
4141
new RetryHandler(config?: RetryConfig): RetryHandler;
4242
```
4343

44-
Defined in: [client/retry-handler.ts:176](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/retry-handler.ts#L176)
44+
Defined in: [client/retry-handler.ts:176](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/retry-handler.ts#L176)
4545

4646
Creates a new RetryHandler instance
4747

@@ -77,7 +77,7 @@ const handler = new RetryHandler({
7777
executeWithRetry<T>(operation: () => Promise<T>, operationName: string): Promise<T>;
7878
```
7979

80-
Defined in: [client/retry-handler.ts:217](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/retry-handler.ts#L217)
80+
Defined in: [client/retry-handler.ts:217](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/retry-handler.ts#L217)
8181

8282
Executes an async operation with automatic retry on transient failures
8383

docs/api/-internal-/classes/TokenBucket.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Class: \_TokenBucket
44

5-
Defined in: [client/rate-limiter.ts:117](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L117)
5+
Defined in: [client/rate-limiter.ts:117](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L117)
66

77
**`Internal`**
88

@@ -29,7 +29,7 @@ This class is used internally by RateLimiter and not exported.
2929
new _TokenBucket(config: RateLimitConfig): _TokenBucket;
3030
```
3131

32-
Defined in: [client/rate-limiter.ts:161](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L161)
32+
Defined in: [client/rate-limiter.ts:161](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L161)
3333

3434
Creates a new token bucket with the specified rate limit configuration.
3535

@@ -51,7 +51,7 @@ Creates a new token bucket with the specified rate limit configuration.
5151
consume(): Promise<void>;
5252
```
5353

54-
Defined in: [client/rate-limiter.ts:211](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L211)
54+
Defined in: [client/rate-limiter.ts:211](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L211)
5555

5656
Attempts to consume a token for a request.
5757

@@ -87,7 +87,7 @@ await bucket.consume(); // Waits ~10 seconds for token refill
8787
getAvailableTokens(): number;
8888
```
8989

90-
Defined in: [client/rate-limiter.ts:269](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/client/rate-limiter.ts#L269)
90+
Defined in: [client/rate-limiter.ts:269](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/client/rate-limiter.ts#L269)
9191

9292
**`Internal`**
9393

docs/api/-internal-/interfaces/DateRange.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# Interface: DateRange
44

5-
Defined in: [types/analytics.types.ts:13](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L13)
5+
Defined in: [types/analytics.types.ts:13](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L13)
66

77
Date range for analytics queries
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="from"></a> `from` | `string` | Start date in ISO format (YYYY-MM-DD or RFC3339) | [types/analytics.types.ts:15](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L15) |
14-
| <a id="to"></a> `to` | `string` | End date in ISO format (YYYY-MM-DD or RFC3339) | [types/analytics.types.ts:17](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L17) |
13+
| <a id="from"></a> `from` | `string` | Start date in ISO format (YYYY-MM-DD or RFC3339) | [types/analytics.types.ts:15](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L15) |
14+
| <a id="to"></a> `to` | `string` | End date in ISO format (YYYY-MM-DD or RFC3339) | [types/analytics.types.ts:17](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L17) |

docs/api/-internal-/interfaces/GenerateReportRequest.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
# Interface: GenerateReportRequest
44

5-
Defined in: [types/analytics.types.ts:366](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L366)
5+
Defined in: [types/analytics.types.ts:366](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L366)
66

77
CSV report generation request
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="reporttype"></a> `reportType` | [`AnalyticsReportTypeEnum`](../../type-aliases/AnalyticsReportTypeEnum.md) | Type of report to generate | [types/analytics.types.ts:368](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L368) |
14-
| <a id="daterange"></a> `dateRange` | [`DateRange`](DateRange.md) | Date range for the report | [types/analytics.types.ts:370](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L370) |
15-
| <a id="format"></a> `format?` | [`ReportFormat`](../type-aliases/ReportFormat.md) | Report format (default: CSV) | [types/analytics.types.ts:372](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L372) |
16-
| <a id="filters"></a> `filters?` | \{ `brandNames?`: `string`[]; `objectIDs?`: `number`[]; `tagIDs?`: `number`[]; `nmIDs?`: `number`[]; \} | Filter parameters (optional) | [types/analytics.types.ts:374](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L374) |
17-
| `filters.brandNames?` | `string`[] | - | [types/analytics.types.ts:375](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L375) |
18-
| `filters.objectIDs?` | `number`[] | - | [types/analytics.types.ts:376](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L376) |
19-
| `filters.tagIDs?` | `number`[] | - | [types/analytics.types.ts:377](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L377) |
20-
| `filters.nmIDs?` | `number`[] | - | [types/analytics.types.ts:378](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L378) |
13+
| <a id="reporttype"></a> `reportType` | [`AnalyticsReportTypeEnum`](../../type-aliases/AnalyticsReportTypeEnum.md) | Type of report to generate | [types/analytics.types.ts:368](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L368) |
14+
| <a id="daterange"></a> `dateRange` | [`DateRange`](DateRange.md) | Date range for the report | [types/analytics.types.ts:370](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L370) |
15+
| <a id="format"></a> `format?` | [`ReportFormat`](../type-aliases/ReportFormat.md) | Report format (default: CSV) | [types/analytics.types.ts:372](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L372) |
16+
| <a id="filters"></a> `filters?` | \{ `brandNames?`: `string`[]; `objectIDs?`: `number`[]; `tagIDs?`: `number`[]; `nmIDs?`: `number`[]; \} | Filter parameters (optional) | [types/analytics.types.ts:374](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L374) |
17+
| `filters.brandNames?` | `string`[] | - | [types/analytics.types.ts:375](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L375) |
18+
| `filters.objectIDs?` | `number`[] | - | [types/analytics.types.ts:376](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L376) |
19+
| `filters.tagIDs?` | `number`[] | - | [types/analytics.types.ts:377](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L377) |
20+
| `filters.nmIDs?` | `number`[] | - | [types/analytics.types.ts:378](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L378) |

docs/api/-internal-/interfaces/GenerateReportResponse.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: GenerateReportResponse
44

5-
Defined in: [types/analytics.types.ts:385](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L385)
5+
Defined in: [types/analytics.types.ts:385](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L385)
66

77
Report generation response
88

@@ -14,9 +14,9 @@ Report generation response
1414

1515
| Property | Type | Description | Inherited from | Defined in |
1616
| ------ | ------ | ------ | ------ | ------ |
17-
| <a id="error"></a> `error` | `boolean` | Error occurred flag | [`ResponseError`](ResponseError.md).[`error`](ResponseError.md#error) | [types/analytics.types.ts:169](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L169) |
18-
| <a id="errortext"></a> `errorText` | `string` | Error description text | [`ResponseError`](ResponseError.md).[`errorText`](ResponseError.md#errortext) | [types/analytics.types.ts:171](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L171) |
19-
| <a id="additionalerrors"></a> `additionalErrors?` | \| \{ `field`: `string`; `description`: `string`; \}[] \| `null` | Additional error details (field-level errors) | [`ResponseError`](ResponseError.md).[`additionalErrors`](ResponseError.md#additionalerrors) | [types/analytics.types.ts:173](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L173) |
20-
| <a id="reportid"></a> `reportId` | `string` | Generated report ID for tracking and download | - | [types/analytics.types.ts:387](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L387) |
21-
| <a id="status"></a> `status` | [`ReportStatus`](../type-aliases/ReportStatus.md) | Current report status | - | [types/analytics.types.ts:389](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L389) |
22-
| <a id="estimatedcompletiontime"></a> `estimatedCompletionTime?` | `string` | Estimated completion time (ISO timestamp) | - | [types/analytics.types.ts:391](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/17d124072ec8ce05556cbc693317b0cf345b0fe9/src/types/analytics.types.ts#L391) |
17+
| <a id="error"></a> `error` | `boolean` | Error occurred flag | [`ResponseError`](ResponseError.md).[`error`](ResponseError.md#error) | [types/analytics.types.ts:169](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L169) |
18+
| <a id="errortext"></a> `errorText` | `string` | Error description text | [`ResponseError`](ResponseError.md).[`errorText`](ResponseError.md#errortext) | [types/analytics.types.ts:171](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L171) |
19+
| <a id="additionalerrors"></a> `additionalErrors?` | \| \{ `field`: `string`; `description`: `string`; \}[] \| `null` | Additional error details (field-level errors) | [`ResponseError`](ResponseError.md).[`additionalErrors`](ResponseError.md#additionalerrors) | [types/analytics.types.ts:173](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L173) |
20+
| <a id="reportid"></a> `reportId` | `string` | Generated report ID for tracking and download | - | [types/analytics.types.ts:387](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L387) |
21+
| <a id="status"></a> `status` | [`ReportStatus`](../type-aliases/ReportStatus.md) | Current report status | - | [types/analytics.types.ts:389](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L389) |
22+
| <a id="estimatedcompletiontime"></a> `estimatedCompletionTime?` | `string` | Estimated completion time (ISO timestamp) | - | [types/analytics.types.ts:391](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/6e489d60aa973819253de599d3b809e1bb914db5/src/types/analytics.types.ts#L391) |

0 commit comments

Comments
 (0)