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/twenty-drinks-tickle.md

This file was deleted.

101 changes: 7 additions & 94 deletions docs/content/3.middleware/3.api/multistore.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@
"text": "StoreConfig",
"canonicalReference": "@vue-storefront/multistore!StoreConfig:type"
},
{
"kind": "Content",
"text": " | undefined"
},
{
"kind": "Content",
"text": ";"
Expand All @@ -217,7 +221,7 @@
"isOptional": false,
"returnTypeTokenRange": {
"startIndex": 3,
"endIndex": 4
"endIndex": 5
},
"releaseTag": "Public",
"overloadIndex": 1,
Expand Down Expand Up @@ -260,9 +264,8 @@
"text": "): "
},
{
"kind": "Reference",
"text": "StoreConfig",
"canonicalReference": "@vue-storefront/multistore!StoreConfig:type"
"kind": "Content",
"text": "unknown"
},
{
"kind": "Content",
Expand Down Expand Up @@ -495,96 +498,6 @@
],
"extendsTokenRanges": []
},
{
"kind": "Interface",
"canonicalReference": "@vue-storefront/multistore!MiddlewareConfiguration:interface",
"docComment": "",
"excerptTokens": [
{
"kind": "Content",
"text": "export interface MiddlewareConfiguration "
}
],
"fileUrlPath": "src/types.ts",
"releaseTag": "Public",
"name": "MiddlewareConfiguration",
"preserveMemberOrder": false,
"members": [
{
"kind": "IndexSignature",
"canonicalReference": "@vue-storefront/multistore!MiddlewareConfiguration:index(1)",
"docComment": "/**\n * Other configration entries, that are not being used by the multistore extension.\n */\n",
"excerptTokens": [
{
"kind": "Content",
"text": "[key: "
},
{
"kind": "Content",
"text": "string"
},
{
"kind": "Content",
"text": "]: "
},
{
"kind": "Content",
"text": "any"
},
{
"kind": "Content",
"text": ";"
}
],
"isReadonly": false,
"returnTypeTokenRange": {
"startIndex": 3,
"endIndex": 4
},
"releaseTag": "Public",
"overloadIndex": 1,
"parameters": [
{
"parameterName": "key",
"parameterTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
},
"isOptional": false
}
]
},
{
"kind": "PropertySignature",
"canonicalReference": "@vue-storefront/multistore!MiddlewareConfiguration#multistore:member",
"docComment": "/**\n * Multistore configuration.\n */\n",
"excerptTokens": [
{
"kind": "Content",
"text": "multistore: "
},
{
"kind": "Reference",
"text": "MultistoreExtensionMethods",
"canonicalReference": "@vue-storefront/multistore!MultistoreExtensionMethods:interface"
},
{
"kind": "Content",
"text": ";"
}
],
"isReadonly": false,
"isOptional": false,
"releaseTag": "Public",
"name": "multistore",
"propertyTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
}
}
],
"extendsTokenRanges": []
},
{
"kind": "Interface",
"canonicalReference": "@vue-storefront/multistore!MultistoreExtensionMethods:interface",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log

## 2.0.1

### Patch Changes

- d95379e91: [FIXED] Type issue in multistore package. Cache control `set` method returns `any` type and `get` returns `StoreConfig | undefined`. Also, `MiddlewareConfiguration` type has been removed as it is no longer necessary.

## 2.0.0

### Major Changes
Expand Down
6 changes: 6 additions & 0 deletions packages/multistore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log

## 2.0.1

### Patch Changes

- d95379e91: [FIXED] Type issue in multistore package. Cache control `set` method returns `any` type and `get` returns `StoreConfig | undefined`. Also, `MiddlewareConfiguration` type has been removed as it is no longer necessary.

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/multistore/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/multistore",
"version": "2.0.0",
"version": "2.0.1",
"author": "Fifciu",
"license": "MIT",
"main": "lib/index.cjs.js",
Expand Down