Skip to content

Commit 94395c9

Browse files
salacosteclaude
andcommitted
fix(ci): suppress deprecated meta lint error + bump v3.5.1
Fix eslint no-deprecated error in integration test for legacy meta field. Patch release with CI fix only — no functional changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 273aea2 commit 94395c9

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-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.5.0",
3+
"version": "3.5.1",
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.5.0';
628+
export const version = '3.5.1';
629629

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

tests/integration/orders-fbs.integration.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,7 @@ describe('OrdersFbsModule Integration Tests', () => {
458458

459459
expect(result.orders).toBeDefined();
460460
expect(result.orders).toHaveLength(2);
461+
// eslint-disable-next-line @typescript-eslint/no-deprecated -- testing legacy meta field
461462
expect(result.orders![0].meta?.imei).toBe('123456789012345');
462463
});
463464

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.5.0', () => {
12-
expect(version).toBe('3.5.0');
11+
it('should have version 3.5.1', () => {
12+
expect(version).toBe('3.5.1');
1313
});
1414
});

0 commit comments

Comments
 (0)