Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/empty-cycles-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-pears-chew.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/content/4.sdk/4.api/sdk.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@
},
{
"kind": "Content",
"text": "(options?: Options, parent?: {\n methods: ExtendedModule[\"connector\"];\n context?: ExtendedModule[\"context\"];\n}) => InitializedExtension"
"text": "(options: Options, parent: {\n methods: ExtendedModule[\"connector\"];\n context: ExtendedModule[\"context\"];\n}) => InitializedExtension"
},
{
"kind": "Content",
Expand Down
11 changes: 7 additions & 4 deletions docs/content/4.sdk/5.reference/sdk-change-log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change log

## 3.4.1

### Patch Changes

- **[FIXED]** Fixed type inference for function-based configurations when using the [extend](https://docs.alokai.com/sdk/advanced/extending-module#extend) method. Now the `methods` object is correctly typed.
- **[FIXED]** Fixed multiple files upload, now it works as expected.

## 3.4.0

### Minor Changes
Expand All @@ -21,10 +28,6 @@ await sdk.commerce.uploadFile(
);
```

:::warning
Files mustn't be included in the `FormData` object manually, SDK handles it automatically.
:::

## 3.3.0

### Minor Changes
Expand Down
7 changes: 7 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change log

## 3.4.1

### Patch Changes

- **[FIX]** Fixed type inference for function-based configurations when using the [extend](https://docs.alokai.com/sdk/advanced/extending-module#extend) method. Now the `methods` object is correctly typed.
- **[FIXED]** Fixed multiple files upload, now it works as expected.

## 3.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vue-storefront/sdk",
"license": "MIT",
"version": "3.4.0",
"version": "3.4.1",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
Expand Down
Loading