silgi 0.7.15 → 0.7.17

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.7.15";
1
+ const version = "0.7.17";
2
2
  const packageJson = {
3
3
  version: version};
4
4
 
@@ -1,5 +1,5 @@
1
1
  import { SilgiConfig, Silgi, SilgiOperation, MergedSilgiSchema, ServiceType, SilgiSchema, RequiredServiceType, ModuleRuntimeShared, SilgiEvents, DefaultNamespaces, BaseSchemaType, SilgiCLI } from 'silgi/types';
2
- export { c as createStorage, s as silgi, u as useSilgiStorage } from '../shared/silgi.De7qOt2x.mjs';
2
+ export { c as createStorage, s as silgi, u as useSilgiStorage } from '../shared/silgi.sABAerQU.mjs';
3
3
  import { StandardSchemaV1 } from '@standard-schema/spec';
4
4
  import * as unctx from 'unctx';
5
5
  import 'unstorage';
@@ -1,5 +1,5 @@
1
1
  import { SilgiConfig, Silgi, SilgiOperation, MergedSilgiSchema, ServiceType, SilgiSchema, RequiredServiceType, ModuleRuntimeShared, SilgiEvents, DefaultNamespaces, BaseSchemaType, SilgiCLI } from 'silgi/types';
2
- export { c as createStorage, s as silgi, u as useSilgiStorage } from '../shared/silgi.De7qOt2x.js';
2
+ export { c as createStorage, s as silgi, u as useSilgiStorage } from '../shared/silgi.sABAerQU.js';
3
3
  import { StandardSchemaV1 } from '@standard-schema/spec';
4
4
  import * as unctx from 'unctx';
5
5
  import 'unstorage';
@@ -1,3 +1,3 @@
1
- const version = "0.7.15";
1
+ const version = "0.7.17";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "0.7.15";
1
+ const version = "0.7.17";
2
2
 
3
3
  export { version };
@@ -1,8 +1,8 @@
1
- import { SilgiEvents, SilgiURIs, ExtractInputFromURI, ExtractOutputFromURI, Silgi, StorageConfig } from 'silgi/types';
1
+ import { SilgiEvents, SilgiURIs, ExtractInputFromURI, ExtractSourceFromURI, ExtractOutputFromURI, Silgi, StorageConfig } from 'silgi/types';
2
2
  import { Storage, StorageValue } from 'unstorage';
3
3
 
4
4
  declare function silgi(event?: SilgiEvents | Record<string, any>): {
5
- execute: <TURI extends keyof SilgiURIs>(uriString: TURI, input: ExtractInputFromURI<TURI>, source?: string) => Promise<ExtractOutputFromURI<TURI>>;
5
+ execute: <TURI extends keyof SilgiURIs>(uriString: TURI, input: ExtractInputFromURI<TURI>, source?: ExtractSourceFromURI<TURI>) => Promise<ExtractOutputFromURI<TURI>>;
6
6
  };
7
7
 
8
8
  declare function createStorage(silgi: Silgi): Promise<Storage<StorageValue>>;
@@ -1,8 +1,8 @@
1
- import { SilgiEvents, SilgiURIs, ExtractInputFromURI, ExtractOutputFromURI, Silgi, StorageConfig } from 'silgi/types';
1
+ import { SilgiEvents, SilgiURIs, ExtractInputFromURI, ExtractSourceFromURI, ExtractOutputFromURI, Silgi, StorageConfig } from 'silgi/types';
2
2
  import { Storage, StorageValue } from 'unstorage';
3
3
 
4
4
  declare function silgi(event?: SilgiEvents | Record<string, any>): {
5
- execute: <TURI extends keyof SilgiURIs>(uriString: TURI, input: ExtractInputFromURI<TURI>, source?: string) => Promise<ExtractOutputFromURI<TURI>>;
5
+ execute: <TURI extends keyof SilgiURIs>(uriString: TURI, input: ExtractInputFromURI<TURI>, source?: ExtractSourceFromURI<TURI>) => Promise<ExtractOutputFromURI<TURI>>;
6
6
  };
7
7
 
8
8
  declare function createStorage(silgi: Silgi): Promise<Storage<StorageValue>>;
@@ -13,7 +13,7 @@ import { Defu } from 'defu';
13
13
  import { Unimport } from 'unimport';
14
14
  import { Storage, BuiltinDriverName, TransactionOptions } from 'unstorage';
15
15
  import { ProviderName } from 'std-env';
16
- import { u as useSilgiStorage, s as silgi } from '../shared/silgi.De7qOt2x.mjs';
16
+ import { u as useSilgiStorage, s as silgi } from '../shared/silgi.sABAerQU.mjs';
17
17
 
18
18
  type HookResult = Promise<void> | void;
19
19
 
@@ -56,6 +56,14 @@ type GetOutput<T extends {
56
56
  }> = T['service'] extends keyof SilgiSchema ? T['entity'] extends keyof SilgiSchema[T['service']] ? T['method'] extends keyof SilgiSchema[T['service']][T['entity']] ? T['action'] extends keyof SilgiSchema[T['service']][T['entity']][T['method']] ? SilgiSchema[T['service']][T['entity']][T['method']][T['action']] extends {
57
57
  output: infer O;
58
58
  } ? O extends StandardSchemaV1 ? StandardSchemaV1.InferOutput<O> : never : never : never : never : never : never;
59
+ type GetSource<T extends {
60
+ service: string;
61
+ entity: string;
62
+ method: string;
63
+ action: string;
64
+ }> = T['service'] extends keyof SilgiSchema ? T['entity'] extends keyof SilgiSchema[T['service']] ? T['method'] extends keyof SilgiSchema[T['service']][T['entity']] ? T['action'] extends keyof SilgiSchema[T['service']][T['entity']][T['method']] ? SilgiSchema[T['service']][T['entity']][T['method']][T['action']] extends {
65
+ source: infer I;
66
+ } ? I : never : never : never : never : never;
59
67
  type GetRouterParams<T extends {
60
68
  service: string;
61
69
  entity: string;
@@ -65,6 +73,7 @@ type GetRouterParams<T extends {
65
73
  router: infer I;
66
74
  } ? I extends StandardSchemaV1 ? StandardSchemaV1.InferInput<I> : never : never : never : never : never : never;
67
75
  type ExtractInputFromURI<TURI extends keyof SilgiURIs> = GetInput<ExtractPath<TURI>>;
76
+ type ExtractSourceFromURI<TURI extends keyof SilgiURIs> = GetSource<ExtractPath<TURI>>;
68
77
  type ExtractOutputFromURI<TURI extends keyof SilgiURIs> = GetOutput<ExtractPath<TURI>>;
69
78
  type ExtractRouterParamsFromURI<TURI extends keyof SilgiURIs> = GetRouterParams<ExtractPath<TURI>>;
70
79
 
@@ -786,15 +795,6 @@ interface StorageKeyParams<TInput = unknown> {
786
795
  storageOptions?: Pick<StorageConfig<TInput>, 'base' | 'options' | 'scope'>;
787
796
  }
788
797
 
789
- interface MethodSchemaType<Input, Output> {
790
- default: {
791
- input?: Input;
792
- output: Output;
793
- };
794
- handler: (input: Input, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<Output>;
795
- modules?: Partial<SilgiRuntimeActions>;
796
- storage?: StorageConfig<Input>;
797
- }
798
798
  type EventHandlerResponse<T = undefined> = T extends undefined ? void : void | T | Promise<T>;
799
799
  type MethodHandlerType<T> = {
800
800
  [Action in keyof T]: T[Action] extends Record<string, any> ? {
@@ -802,8 +802,9 @@ type MethodHandlerType<T> = {
802
802
  default?: {
803
803
  input?: StandardSchemaV1.InferInput<T[Action][Method]['input']>;
804
804
  output?: StandardSchemaV1.InferInput<T[Action][Method]['output']>;
805
+ source?: StandardSchemaV1.InferInput<T[Action][Method]['source']>;
805
806
  };
806
- handler: (router: StandardSchemaV1.InferInput<T[Action][Method]['router']>, input: StandardSchemaV1.InferInput<T[Action][Method]['input']>, shared: SilgiShareds, event: SilgiEvents, source: any) => EventHandlerResponse<StandardSchemaV1.InferOutput<T[Action][Method]['output']>>;
807
+ handler: (router: StandardSchemaV1.InferInput<T[Action][Method]['router']>, input: StandardSchemaV1.InferInput<T[Action][Method]['input']>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<T[Action][Method]['source']>) => EventHandlerResponse<StandardSchemaV1.InferOutput<T[Action][Method]['output']>>;
807
808
  modules?: Partial<SilgiRuntimeActions>;
808
809
  storage?: StorageConfig<T[Action][Method]['input']>;
809
810
  };
@@ -812,10 +813,10 @@ type MethodHandlerType<T> = {
812
813
  interface ResolvedMethodHandlerType {
813
814
  input?: Partial<BaseSchemaType<any>>;
814
815
  output: Partial<BaseSchemaType<any>>;
815
- handler: (router: StandardSchemaV1.InferInput<any>, input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<StandardSchemaV1.InferInput<any>>;
816
+ handler: (router: StandardSchemaV1.InferInput<any>, input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<any>) => Promise<StandardSchemaV1.InferInput<any>>;
816
817
  modules?: Partial<SilgiRuntimeActions>;
817
818
  storage?: StorageConfig<StandardSchemaV1.InferInput<any>>;
818
- execute: (input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<StandardSchemaV1.InferInput<any>>;
819
+ execute: (input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<any>) => Promise<StandardSchemaV1.InferInput<any>>;
819
820
  }
820
821
 
821
822
  type SilgiServiceInterface<T extends BaseSchemaType<StandardSchemaV1>> = {
@@ -824,6 +825,7 @@ type SilgiServiceInterface<T extends BaseSchemaType<StandardSchemaV1>> = {
824
825
  input: T[Action][Method]['input'];
825
826
  output: T[Action][Method]['output'];
826
827
  router: T[Action][Method]['router'];
828
+ source: T[Action][Method]['source'];
827
829
  };
828
830
  } : never;
829
831
  };
@@ -939,4 +941,4 @@ type Namespaces<T extends BaseNamespaceType> = {
939
941
 
940
942
  declare const autoImportTypes: string[];
941
943
 
942
- export { type AppConfig, type Awaitable, type BaseNamespaceType, type BaseSchemaType, type BaseSilgiMethodType, type BuildConfig, type CaptureError, type CapturedErrorContext, type CoreTs, type CreateScope, type DeepPartial, type DefaultHooks, type DefaultNamespaces, type EventHandlerResponse, type ExtendContext, type ExtendShared, type ExtractInputFromURI, type ExtractOutputFromURI, type ExtractRouterParamsFromURI, type FrameworkContext, type GenerateAppOptions, type GraphQLJSON, type HookResult, type ImportItem, type LoadConfigOptions, type MergedSilgiSchema, type MethodHandlerType, type MethodSchemaType, type ModuleDefinition, type ModuleHookContext, type ModuleMeta, type ModuleOptionsCustom, type ModuleRuntimeShared, type ModuleSetupInstallResult, type ModuleSetupReturn, type Namespaces, type NitroBuildInfo, type RequiredServiceType, type ResolvedMethodHandlerType, type ResolvedModuleMeta, type ResolvedModuleOptions, type ResolvedServiceType, type ResolvedSilgiTemplate, type SchemaPreparationOptions, type ServiceType, type Silgi, type SilgiAppPlugin, type SilgiCLI, type SilgiCLIConfig, type SilgiCLIDynamicConfig, type SilgiCLIHooks, type SilgiCLIOptions, type SilgiCompatibility, type SilgiCompatibilityIssue, type SilgiCompatibilityIssues, type SilgiConfig, type SilgiEvents, type SilgiFrameworkInfo, type SilgiFunction, type SilgiHooks, type SilgiModule, type SilgiModuleInput, type SilgiModuleOptions, type SilgiNamespaces, type SilgiOperation, type SilgiOptions, type SilgiPreset, type SilgiPresetMeta, type SilgiRouterTypes, type SilgiRuntimeActions, type SilgiRuntimeContext, type SilgiRuntimeHooks, type SilgiRuntimeMethods, type SilgiRuntimeOptions, type SilgiSchema, type SilgiServiceInterface, type SilgiShareds, type SilgiStorageBase, type SilgiTemplate, type SilgiURIs, type StorageConfig, type StorageKeyGenerator, type StorageKeyParams, type StorageMounts, type TSReference, type URIsTypes, autoImportTypes };
944
+ export { type AppConfig, type Awaitable, type BaseNamespaceType, type BaseSchemaType, type BaseSilgiMethodType, type BuildConfig, type CaptureError, type CapturedErrorContext, type CoreTs, type CreateScope, type DeepPartial, type DefaultHooks, type DefaultNamespaces, type EventHandlerResponse, type ExtendContext, type ExtendShared, type ExtractInputFromURI, type ExtractOutputFromURI, type ExtractRouterParamsFromURI, type ExtractSourceFromURI, type FrameworkContext, type GenerateAppOptions, type GraphQLJSON, type HookResult, type ImportItem, type LoadConfigOptions, type MergedSilgiSchema, type MethodHandlerType, type ModuleDefinition, type ModuleHookContext, type ModuleMeta, type ModuleOptionsCustom, type ModuleRuntimeShared, type ModuleSetupInstallResult, type ModuleSetupReturn, type Namespaces, type NitroBuildInfo, type RequiredServiceType, type ResolvedMethodHandlerType, type ResolvedModuleMeta, type ResolvedModuleOptions, type ResolvedServiceType, type ResolvedSilgiTemplate, type SchemaPreparationOptions, type ServiceType, type Silgi, type SilgiAppPlugin, type SilgiCLI, type SilgiCLIConfig, type SilgiCLIDynamicConfig, type SilgiCLIHooks, type SilgiCLIOptions, type SilgiCompatibility, type SilgiCompatibilityIssue, type SilgiCompatibilityIssues, type SilgiConfig, type SilgiEvents, type SilgiFrameworkInfo, type SilgiFunction, type SilgiHooks, type SilgiModule, type SilgiModuleInput, type SilgiModuleOptions, type SilgiNamespaces, type SilgiOperation, type SilgiOptions, type SilgiPreset, type SilgiPresetMeta, type SilgiRouterTypes, type SilgiRuntimeActions, type SilgiRuntimeContext, type SilgiRuntimeHooks, type SilgiRuntimeMethods, type SilgiRuntimeOptions, type SilgiSchema, type SilgiServiceInterface, type SilgiShareds, type SilgiStorageBase, type SilgiTemplate, type SilgiURIs, type StorageConfig, type StorageKeyGenerator, type StorageKeyParams, type StorageMounts, type TSReference, type URIsTypes, autoImportTypes };
@@ -13,7 +13,7 @@ import { Defu } from 'defu';
13
13
  import { Unimport } from 'unimport';
14
14
  import { Storage, BuiltinDriverName, TransactionOptions } from 'unstorage';
15
15
  import { ProviderName } from 'std-env';
16
- import { u as useSilgiStorage, s as silgi } from '../shared/silgi.De7qOt2x.js';
16
+ import { u as useSilgiStorage, s as silgi } from '../shared/silgi.sABAerQU.js';
17
17
 
18
18
  type HookResult = Promise<void> | void;
19
19
 
@@ -56,6 +56,14 @@ type GetOutput<T extends {
56
56
  }> = T['service'] extends keyof SilgiSchema ? T['entity'] extends keyof SilgiSchema[T['service']] ? T['method'] extends keyof SilgiSchema[T['service']][T['entity']] ? T['action'] extends keyof SilgiSchema[T['service']][T['entity']][T['method']] ? SilgiSchema[T['service']][T['entity']][T['method']][T['action']] extends {
57
57
  output: infer O;
58
58
  } ? O extends StandardSchemaV1 ? StandardSchemaV1.InferOutput<O> : never : never : never : never : never : never;
59
+ type GetSource<T extends {
60
+ service: string;
61
+ entity: string;
62
+ method: string;
63
+ action: string;
64
+ }> = T['service'] extends keyof SilgiSchema ? T['entity'] extends keyof SilgiSchema[T['service']] ? T['method'] extends keyof SilgiSchema[T['service']][T['entity']] ? T['action'] extends keyof SilgiSchema[T['service']][T['entity']][T['method']] ? SilgiSchema[T['service']][T['entity']][T['method']][T['action']] extends {
65
+ source: infer I;
66
+ } ? I : never : never : never : never : never;
59
67
  type GetRouterParams<T extends {
60
68
  service: string;
61
69
  entity: string;
@@ -65,6 +73,7 @@ type GetRouterParams<T extends {
65
73
  router: infer I;
66
74
  } ? I extends StandardSchemaV1 ? StandardSchemaV1.InferInput<I> : never : never : never : never : never : never;
67
75
  type ExtractInputFromURI<TURI extends keyof SilgiURIs> = GetInput<ExtractPath<TURI>>;
76
+ type ExtractSourceFromURI<TURI extends keyof SilgiURIs> = GetSource<ExtractPath<TURI>>;
68
77
  type ExtractOutputFromURI<TURI extends keyof SilgiURIs> = GetOutput<ExtractPath<TURI>>;
69
78
  type ExtractRouterParamsFromURI<TURI extends keyof SilgiURIs> = GetRouterParams<ExtractPath<TURI>>;
70
79
 
@@ -786,15 +795,6 @@ interface StorageKeyParams<TInput = unknown> {
786
795
  storageOptions?: Pick<StorageConfig<TInput>, 'base' | 'options' | 'scope'>;
787
796
  }
788
797
 
789
- interface MethodSchemaType<Input, Output> {
790
- default: {
791
- input?: Input;
792
- output: Output;
793
- };
794
- handler: (input: Input, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<Output>;
795
- modules?: Partial<SilgiRuntimeActions>;
796
- storage?: StorageConfig<Input>;
797
- }
798
798
  type EventHandlerResponse<T = undefined> = T extends undefined ? void : void | T | Promise<T>;
799
799
  type MethodHandlerType<T> = {
800
800
  [Action in keyof T]: T[Action] extends Record<string, any> ? {
@@ -802,8 +802,9 @@ type MethodHandlerType<T> = {
802
802
  default?: {
803
803
  input?: StandardSchemaV1.InferInput<T[Action][Method]['input']>;
804
804
  output?: StandardSchemaV1.InferInput<T[Action][Method]['output']>;
805
+ source?: StandardSchemaV1.InferInput<T[Action][Method]['source']>;
805
806
  };
806
- handler: (router: StandardSchemaV1.InferInput<T[Action][Method]['router']>, input: StandardSchemaV1.InferInput<T[Action][Method]['input']>, shared: SilgiShareds, event: SilgiEvents, source: any) => EventHandlerResponse<StandardSchemaV1.InferOutput<T[Action][Method]['output']>>;
807
+ handler: (router: StandardSchemaV1.InferInput<T[Action][Method]['router']>, input: StandardSchemaV1.InferInput<T[Action][Method]['input']>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<T[Action][Method]['source']>) => EventHandlerResponse<StandardSchemaV1.InferOutput<T[Action][Method]['output']>>;
807
808
  modules?: Partial<SilgiRuntimeActions>;
808
809
  storage?: StorageConfig<T[Action][Method]['input']>;
809
810
  };
@@ -812,10 +813,10 @@ type MethodHandlerType<T> = {
812
813
  interface ResolvedMethodHandlerType {
813
814
  input?: Partial<BaseSchemaType<any>>;
814
815
  output: Partial<BaseSchemaType<any>>;
815
- handler: (router: StandardSchemaV1.InferInput<any>, input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<StandardSchemaV1.InferInput<any>>;
816
+ handler: (router: StandardSchemaV1.InferInput<any>, input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<any>) => Promise<StandardSchemaV1.InferInput<any>>;
816
817
  modules?: Partial<SilgiRuntimeActions>;
817
818
  storage?: StorageConfig<StandardSchemaV1.InferInput<any>>;
818
- execute: (input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: any) => Promise<StandardSchemaV1.InferInput<any>>;
819
+ execute: (input: StandardSchemaV1.InferInput<any>, shared: SilgiShareds, event: SilgiEvents, source: StandardSchemaV1.InferInput<any>) => Promise<StandardSchemaV1.InferInput<any>>;
819
820
  }
820
821
 
821
822
  type SilgiServiceInterface<T extends BaseSchemaType<StandardSchemaV1>> = {
@@ -824,6 +825,7 @@ type SilgiServiceInterface<T extends BaseSchemaType<StandardSchemaV1>> = {
824
825
  input: T[Action][Method]['input'];
825
826
  output: T[Action][Method]['output'];
826
827
  router: T[Action][Method]['router'];
828
+ source: T[Action][Method]['source'];
827
829
  };
828
830
  } : never;
829
831
  };
@@ -939,4 +941,4 @@ type Namespaces<T extends BaseNamespaceType> = {
939
941
 
940
942
  declare const autoImportTypes: string[];
941
943
 
942
- export { type AppConfig, type Awaitable, type BaseNamespaceType, type BaseSchemaType, type BaseSilgiMethodType, type BuildConfig, type CaptureError, type CapturedErrorContext, type CoreTs, type CreateScope, type DeepPartial, type DefaultHooks, type DefaultNamespaces, type EventHandlerResponse, type ExtendContext, type ExtendShared, type ExtractInputFromURI, type ExtractOutputFromURI, type ExtractRouterParamsFromURI, type FrameworkContext, type GenerateAppOptions, type GraphQLJSON, type HookResult, type ImportItem, type LoadConfigOptions, type MergedSilgiSchema, type MethodHandlerType, type MethodSchemaType, type ModuleDefinition, type ModuleHookContext, type ModuleMeta, type ModuleOptionsCustom, type ModuleRuntimeShared, type ModuleSetupInstallResult, type ModuleSetupReturn, type Namespaces, type NitroBuildInfo, type RequiredServiceType, type ResolvedMethodHandlerType, type ResolvedModuleMeta, type ResolvedModuleOptions, type ResolvedServiceType, type ResolvedSilgiTemplate, type SchemaPreparationOptions, type ServiceType, type Silgi, type SilgiAppPlugin, type SilgiCLI, type SilgiCLIConfig, type SilgiCLIDynamicConfig, type SilgiCLIHooks, type SilgiCLIOptions, type SilgiCompatibility, type SilgiCompatibilityIssue, type SilgiCompatibilityIssues, type SilgiConfig, type SilgiEvents, type SilgiFrameworkInfo, type SilgiFunction, type SilgiHooks, type SilgiModule, type SilgiModuleInput, type SilgiModuleOptions, type SilgiNamespaces, type SilgiOperation, type SilgiOptions, type SilgiPreset, type SilgiPresetMeta, type SilgiRouterTypes, type SilgiRuntimeActions, type SilgiRuntimeContext, type SilgiRuntimeHooks, type SilgiRuntimeMethods, type SilgiRuntimeOptions, type SilgiSchema, type SilgiServiceInterface, type SilgiShareds, type SilgiStorageBase, type SilgiTemplate, type SilgiURIs, type StorageConfig, type StorageKeyGenerator, type StorageKeyParams, type StorageMounts, type TSReference, type URIsTypes, autoImportTypes };
944
+ export { type AppConfig, type Awaitable, type BaseNamespaceType, type BaseSchemaType, type BaseSilgiMethodType, type BuildConfig, type CaptureError, type CapturedErrorContext, type CoreTs, type CreateScope, type DeepPartial, type DefaultHooks, type DefaultNamespaces, type EventHandlerResponse, type ExtendContext, type ExtendShared, type ExtractInputFromURI, type ExtractOutputFromURI, type ExtractRouterParamsFromURI, type ExtractSourceFromURI, type FrameworkContext, type GenerateAppOptions, type GraphQLJSON, type HookResult, type ImportItem, type LoadConfigOptions, type MergedSilgiSchema, type MethodHandlerType, type ModuleDefinition, type ModuleHookContext, type ModuleMeta, type ModuleOptionsCustom, type ModuleRuntimeShared, type ModuleSetupInstallResult, type ModuleSetupReturn, type Namespaces, type NitroBuildInfo, type RequiredServiceType, type ResolvedMethodHandlerType, type ResolvedModuleMeta, type ResolvedModuleOptions, type ResolvedServiceType, type ResolvedSilgiTemplate, type SchemaPreparationOptions, type ServiceType, type Silgi, type SilgiAppPlugin, type SilgiCLI, type SilgiCLIConfig, type SilgiCLIDynamicConfig, type SilgiCLIHooks, type SilgiCLIOptions, type SilgiCompatibility, type SilgiCompatibilityIssue, type SilgiCompatibilityIssues, type SilgiConfig, type SilgiEvents, type SilgiFrameworkInfo, type SilgiFunction, type SilgiHooks, type SilgiModule, type SilgiModuleInput, type SilgiModuleOptions, type SilgiNamespaces, type SilgiOperation, type SilgiOptions, type SilgiPreset, type SilgiPresetMeta, type SilgiRouterTypes, type SilgiRuntimeActions, type SilgiRuntimeContext, type SilgiRuntimeHooks, type SilgiRuntimeMethods, type SilgiRuntimeOptions, type SilgiSchema, type SilgiServiceInterface, type SilgiShareds, type SilgiStorageBase, type SilgiTemplate, type SilgiURIs, type StorageConfig, type StorageKeyGenerator, type StorageKeyParams, type StorageMounts, type TSReference, type URIsTypes, autoImportTypes };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.7.15",
4
+ "version": "0.7.17",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {