silgi 0.10.10 → 0.10.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- const version = "0.10.10";
1
+ const version = "0.10.12";
2
2
  const peerDependencies = {
3
3
  "@fastify/deepmerge": "^2.0.2",
4
4
  "@nuxt/kit": "^3.15.3",
@@ -326,6 +326,9 @@ function parseURI(uri, uris) {
326
326
  }
327
327
  });
328
328
  }
329
+ if (query && query.method) {
330
+ delete query.method;
331
+ }
329
332
  return {
330
333
  namespaceName,
331
334
  serviceName,
@@ -334,7 +337,7 @@ function parseURI(uri, uris) {
334
337
  raw: normalizedUri,
335
338
  parts: [namespaceName, serviceName, methodName, actionName],
336
339
  routerParams: {},
337
- query: method ? void 0 : query,
340
+ query,
338
341
  uri: baseUri
339
342
  };
340
343
  }
@@ -1,4 +1,4 @@
1
- const version = "0.10.10";
1
+ const version = "0.10.12";
2
2
  const peerDependencies = {
3
3
  "@fastify/deepmerge": "^2.0.2",
4
4
  "@nuxt/kit": "^3.15.3",
@@ -1,4 +1,4 @@
1
- const version = "0.10.10";
1
+ const version = "0.10.12";
2
2
  const peerDependencies = {
3
3
  "@fastify/deepmerge": "^2.0.2",
4
4
  "@nuxt/kit": "^3.15.3",
@@ -956,7 +956,7 @@ interface SilgiRuntimeHooks {
956
956
  interface SilgiOptions {
957
957
  consolaOptions?: Partial<ConsolaOptions>;
958
958
  present: PresetNameInput;
959
- hooks: SilgiRuntimeHooks & DefaultHooks;
959
+ hooks: Partial<SilgiRuntimeHooks & DefaultHooks>;
960
960
  /**
961
961
  * Set to `true` to enable debug mode.
962
962
  *
@@ -956,7 +956,7 @@ interface SilgiRuntimeHooks {
956
956
  interface SilgiOptions {
957
957
  consolaOptions?: Partial<ConsolaOptions>;
958
958
  present: PresetNameInput;
959
- hooks: SilgiRuntimeHooks & DefaultHooks;
959
+ hooks: Partial<SilgiRuntimeHooks & DefaultHooks>;
960
960
  /**
961
961
  * Set to `true` to enable debug mode.
962
962
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.10.10",
4
+ "version": "0.10.12",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {