@ddd-tool/domain-designer-generator 0.0.0-alpha.7 → 0.0.0-alpha.9

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.
@@ -55,10 +55,25 @@ export declare namespace kotlin {
55
55
  }
56
56
  export declare namespace csharp {
57
57
  enum CSharpGeneratorAddition {
58
+ Timezone = "Timezone",
59
+ RecordStruct = "RecordStruct",
60
+ CommandInterface = "CommandInterface",
61
+ CommandHandlerInterface = "CommandHandlerInterface",
62
+ AggInterface = "AggInterface",
63
+ EventInterface = "EventInterface"
64
+ }
65
+ interface CSharpContext extends GeneratorContext<Language.CSharp> {
66
+ commandInterface?: string;
67
+ commandHandlerInterface?: string;
68
+ aggInterface?: string;
69
+ eventInterface?: string;
58
70
  }
59
71
  }
60
72
  export declare namespace go {
61
73
  enum GoGeneratorAddition {
74
+ SinglePackageEachDesigner = "SinglePackageEachDesigner"
75
+ }
76
+ interface GoContext extends GeneratorContext<Language.Go> {
62
77
  }
63
78
  }
64
79
  export type GeneratorAddition<LANG extends Language> = LANG extends 'java' ? java.JavaGeneratorAddition : LANG extends 'kotlin' ? kotlin.KotlinGeneratorAddition : LANG extends 'csharp' ? csharp.CSharpGeneratorAddition : LANG extends 'go' ? go.GoGeneratorAddition : never;