Skip to content

Commit b2f9d17

Browse files
salacosteclaude
andcommitted
chore(release): v3.4.0 — Sprint 2 new API methods + Sprint 1/3 type fixes
New methods: - getAdvertsV2() return type updated to GetAdvertsV2Response with bids_kopecks - getBidsRecommendations() — recommended bids for cpm campaigns - getClientInfo() — DBW buyer info via marketplace-api - getWbWarehousesStock() — WB warehouse inventory (replaces deprecated stocks) Type fixes (Sprint 1 + 3): - SDKConfig.tokenType for Basic/Test token awareness - additionalErrors, currency, isBoxOnPallet, boxTypeID, isB2b, tin, sticker status - JSDoc: IMEI warning, User Mgmt token requirements Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2fe9894 commit b2f9d17

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "daytona-wildberries-typescript-sdk",
3-
"version": "3.3.0",
3+
"version": "3.4.0",
44
"description": "Full-featured TypeScript SDK providing type-safe access to all Wildberries marketplace API methods",
55
"keywords": [
66
"wildberries",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ export class WildberriesSDK {
625625
/**
626626
* SDK version
627627
*/
628-
export const version = '3.3.0';
628+
export const version = '3.4.0';
629629

630630
// Main SDK class
631631
export { WildberriesSDK as default };

tests/unit/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('SDK Index', () => {
88
expect(version).toMatch(/^\d+\.\d+\.\d+$/);
99
});
1010

11-
it('should have version 3.3.0', () => {
12-
expect(version).toBe('3.3.0');
11+
it('should have version 3.4.0', () => {
12+
expect(version).toBe('3.4.0');
1313
});
1414
});

0 commit comments

Comments
 (0)