@wallentaine/cqrs-schematics 0.0.1 → 0.0.3
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.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface Schema {
|
|
2
|
+
/** Имя команды (например: CreatePost) */
|
|
3
|
+
name: string;
|
|
4
|
+
/** Модуль, в который добавить команду */
|
|
5
|
+
module?: string;
|
|
6
|
+
/** Путь для генерации */
|
|
7
|
+
path?: string;
|
|
8
|
+
/** Пропустить импорт в модуль */
|
|
9
|
+
skipImport?: boolean;
|
|
10
|
+
/** Плоская структура файлов */
|
|
11
|
+
flat?: boolean;
|
|
12
|
+
/** Специфические для команды свойства */
|
|
13
|
+
hasDto?: boolean;
|
|
14
|
+
hasResponse?: boolean;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/schematics/cqrs-command/schema.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,MAAM;IACrB,yCAAyC;IACzC,IAAI,EAAE,MAAM,CAAC;IAEb,yCAAyC;IACzC,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,yBAAyB;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,iCAAiC;IACjC,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,+BAA+B;IAC/B,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf,yCAAyC;IACzC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB"}
|