@pexip-engage-public/plugin-configuration-parser
Advanced tools
Comparing version 1.1.3-canary-20230516123235 to 1.1.3-canary-20230524082403
# @pexip-engage-public/plugin-configuration-parser | ||
## 1.1.3-canary-20230516123235 | ||
## 1.1.3-canary-20230524082403 | ||
@@ -5,0 +5,0 @@ ### Patch Changes |
{ | ||
"name": "@pexip-engage-public/plugin-configuration-parser", | ||
"version": "1.1.3-canary-20230516123235", | ||
"version": "1.1.3-canary-20230524082403", | ||
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/configuration-parser#readme", | ||
@@ -44,3 +44,3 @@ "bugs": { | ||
"@pexip-engage/tsconfig": "0.0.9", | ||
"eslint-config-pexip-engage": "0.0.25-canary-20230516123235" | ||
"eslint-config-pexip-engage": "0.0.25-canary-20230524082403" | ||
}, | ||
@@ -47,0 +47,0 @@ "volta": { |
@@ -18,3 +18,8 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration"; | ||
options?: unknown; | ||
}): PluginConfiguration { | ||
}): { | ||
config: PluginConfiguration; | ||
domConfig: PluginConfiguration; | ||
hashConfig: PluginConfiguration; | ||
jsConfig: PluginConfiguration; | ||
} { | ||
if (!isValidConfiguration(options)) | ||
@@ -32,3 +37,3 @@ throw new Error("Invalid configuration passed, expected an object."); | ||
return config; | ||
return { config, domConfig, hashConfig, jsConfig }; | ||
} | ||
@@ -35,0 +40,0 @@ |
@@ -8,3 +8,8 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration"; | ||
options?: unknown; | ||
}): PluginConfiguration; | ||
}): { | ||
config: PluginConfiguration; | ||
domConfig: PluginConfiguration; | ||
hashConfig: PluginConfiguration; | ||
jsConfig: PluginConfiguration; | ||
}; | ||
export declare function createSearchParamConfig({ config }: { | ||
@@ -11,0 +16,0 @@ config: PluginConfiguration; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2266
146549