Skip to content

Commit 0277b48

Browse files
committed
docs(api): regenerate TypeDoc — update source links to d563cec
- 554 docs/api files regenerated with current HEAD commit SHA - Source location links updated from 47e6cd0d563cec - No source code changes; purely mechanical doc regeneration
1 parent d563cec commit 0277b48

File tree

554 files changed

+3253
-3402
lines changed

Some content is hidden

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

554 files changed

+3253
-3402
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:340](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L340)
5+
Defined in: [client/rate-limiter.ts:340](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L340)
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:371](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L371)
66+
Defined in: [client/rate-limiter.ts:371](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L371)
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:423](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L423)
100+
Defined in: [client/rate-limiter.ts:423](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L423)
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:484](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L484)
166+
Defined in: [client/rate-limiter.ts:484](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L484)
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:504](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L504)
211+
Defined in: [client/rate-limiter.ts:504](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L504)
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:529](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L529)
244+
Defined in: [client/rate-limiter.ts:529](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L529)
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:554](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L554)
284+
Defined in: [client/rate-limiter.ts:554](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L554)
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:583](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L583)
318+
Defined in: [client/rate-limiter.ts:583](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L583)
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:200](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/retry-handler.ts#L200)
5+
Defined in: [client/retry-handler.ts:200](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/retry-handler.ts#L200)
66

77
RetryHandler - Automatic retry with exponential backoff
88

@@ -41,7 +41,7 @@ const result = await handler.executeWithRetry(
4141
new RetryHandler(config?: RetryConfig, logLevel?: "debug" | "info" | "warn" | "error"): RetryHandler;
4242
```
4343

44-
Defined in: [client/retry-handler.ts:223](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/retry-handler.ts#L223)
44+
Defined in: [client/retry-handler.ts:223](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/retry-handler.ts#L223)
4545

4646
Creates a new RetryHandler instance
4747

@@ -81,7 +81,7 @@ executeWithRetry<T>(
8181
options?: RetryOptions): Promise<T>;
8282
```
8383

84-
Defined in: [client/retry-handler.ts:279](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/retry-handler.ts#L279)
84+
Defined in: [client/retry-handler.ts:279](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/retry-handler.ts#L279)
8585

8686
Executes an async operation with automatic retry on transient failures
8787

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:130](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L130)
5+
Defined in: [client/rate-limiter.ts:130](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L130)
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:174](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L174)
32+
Defined in: [client/rate-limiter.ts:174](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L174)
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:224](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L224)
54+
Defined in: [client/rate-limiter.ts:224](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L224)
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:282](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/client/rate-limiter.ts#L282)
90+
Defined in: [client/rate-limiter.ts:282](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/client/rate-limiter.ts#L282)
9191

9292
**`Internal`**
9393

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

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

33
# Interface: AcceptanceReportDownloadItem
44

5-
Defined in: [types/reports.types.ts:673](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L673)
5+
Defined in: [types/reports.types.ts:673](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L673)
66

77
Acceptance report download item (extracted from getTasksDownload2 inline type)
88

@@ -14,10 +14,10 @@ EPIC 43 - Extracted from inline type literal
1414

1515
| Property | Type | Description | Defined in |
1616
| ------ | ------ | ------ | ------ |
17-
| <a id="count"></a> `count?` | `number` | Количество | [types/reports.types.ts:675](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L675) |
18-
| <a id="gicreatedate"></a> `giCreateDate?` | `string` | Дата создания приёмки | [types/reports.types.ts:677](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L677) |
19-
| <a id="incomeid"></a> `incomeId?` | `number` | ID поставки | [types/reports.types.ts:679](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L679) |
20-
| <a id="nmid"></a> `nmID?` | `number` | Артикул WB | [types/reports.types.ts:681](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L681) |
21-
| <a id="shkcreatedate"></a> `shkCreateDate?` | `string` | Дата создания ШК | [types/reports.types.ts:683](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L683) |
22-
| <a id="subjectname"></a> `subjectName?` | `string` | Предмет | [types/reports.types.ts:685](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L685) |
23-
| <a id="total"></a> `total?` | `number` | Сумма | [types/reports.types.ts:687](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/reports.types.ts#L687) |
17+
| <a id="count"></a> `count?` | `number` | Количество | [types/reports.types.ts:675](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L675) |
18+
| <a id="gicreatedate"></a> `giCreateDate?` | `string` | Дата создания приёмки | [types/reports.types.ts:677](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L677) |
19+
| <a id="incomeid"></a> `incomeId?` | `number` | ID поставки | [types/reports.types.ts:679](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L679) |
20+
| <a id="nmid"></a> `nmID?` | `number` | Артикул WB | [types/reports.types.ts:681](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L681) |
21+
| <a id="shkcreatedate"></a> `shkCreateDate?` | `string` | Дата создания ШК | [types/reports.types.ts:683](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L683) |
22+
| <a id="subjectname"></a> `subjectName?` | `string` | Предмет | [types/reports.types.ts:685](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L685) |
23+
| <a id="total"></a> `total?` | `number` | Сумма | [types/reports.types.ts:687](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/reports.types.ts#L687) |

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

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

33
# Interface: AccessItem
44

5-
Defined in: [types/general.types.ts:102](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/general.types.ts#L102)
5+
Defined in: [types/general.types.ts:102](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/general.types.ts#L102)
66

77
Access permission item
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="code"></a> `code` | [`AccessCode`](../type-aliases/AccessCode.md) | Section code | [types/general.types.ts:104](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/general.types.ts#L104) |
14-
| <a id="disabled"></a> `disabled` | `boolean` | true - access denied, false - access allowed | [types/general.types.ts:106](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/general.types.ts#L106) |
13+
| <a id="code"></a> `code` | [`AccessCode`](../type-aliases/AccessCode.md) | Section code | [types/general.types.ts:104](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/general.types.ts#L104) |
14+
| <a id="disabled"></a> `disabled` | `boolean` | true - access denied, false - access allowed | [types/general.types.ts:106](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/general.types.ts#L106) |

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

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

33
# Interface: AccountBalanceResponse
44

5-
Defined in: [types/finances.types.ts:11](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/finances.types.ts#L11)
5+
Defined in: [types/finances.types.ts:11](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/finances.types.ts#L11)
66

77
Response from the balance endpoint
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="currency"></a> `currency?` | `string` | Валюта (currency code) | [types/finances.types.ts:13](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/finances.types.ts#L13) |
14-
| <a id="current"></a> `current?` | `number` | Текущий баланс | [types/finances.types.ts:15](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/finances.types.ts#L15) |
15-
| <a id="for_withdraw"></a> `for_withdraw?` | `number` | Доступно для вывода | [types/finances.types.ts:17](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/finances.types.ts#L17) |
13+
| <a id="currency"></a> `currency?` | `string` | Валюта (currency code) | [types/finances.types.ts:13](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/finances.types.ts#L13) |
14+
| <a id="current"></a> `current?` | `number` | Текущий баланс | [types/finances.types.ts:15](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/finances.types.ts#L15) |
15+
| <a id="for_withdraw"></a> `for_withdraw?` | `number` | Доступно для вывода | [types/finances.types.ts:17](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/finances.types.ts#L17) |

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

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

33
# Interface: AddOrdersToSupplyRequest
44

5-
Defined in: [types/orders-fbs.types.ts:140](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/orders-fbs.types.ts#L140)
5+
Defined in: [types/orders-fbs.types.ts:140](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/orders-fbs.types.ts#L140)
66

77
Request body for adding orders to a supply
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="orders"></a> `orders` | `number`[] | List of order IDs to add | [types/orders-fbs.types.ts:142](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/orders-fbs.types.ts#L142) |
13+
| <a id="orders"></a> `orders` | `number`[] | List of order IDs to add | [types/orders-fbs.types.ts:142](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/orders-fbs.types.ts#L142) |

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

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

33
# Interface: AdvertBidsKopecks
44

5-
Defined in: [types/promotion.types.ts:1114](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/promotion.types.ts#L1114)
5+
Defined in: [types/promotion.types.ts:1114](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/promotion.types.ts#L1114)
66

77
Ставки в копейках
88

99
## Properties
1010

1111
| Property | Type | Description | Defined in |
1212
| ------ | ------ | ------ | ------ |
13-
| <a id="search"></a> `search` | `number` | Ставка в поиске | [types/promotion.types.ts:1116](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/promotion.types.ts#L1116) |
14-
| <a id="recommendations"></a> `recommendations` | `number` | Ставка в рекомендациях | [types/promotion.types.ts:1118](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/47e6cd0a15f4afb7e933a7645f2e21ec9e1ab7ba/src/types/promotion.types.ts#L1118) |
13+
| <a id="search"></a> `search` | `number` | Ставка в поиске | [types/promotion.types.ts:1116](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/promotion.types.ts#L1116) |
14+
| <a id="recommendations"></a> `recommendations` | `number` | Ставка в рекомендациях | [types/promotion.types.ts:1118](https://github.com/salacoste/daytona-wildberries-typescript-sdk/blob/d563cecd0407cbbf0c5e21396eafb316296c02c3/src/types/promotion.types.ts#L1118) |

0 commit comments

Comments
 (0)