@cyberismo/assets 0.0.6
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.
- package/LICENSE +702 -0
- package/README.md +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +612 -0
- package/dist/schemas.d.ts +1132 -0
- package/dist/static/defaultReport/.schema +7 -0
- package/dist/static/defaultReport/index.adoc.hbs +3 -0
- package/dist/static/defaultReport/parameterSchema.json +18 -0
- package/dist/static/defaultReport/query.lp.hbs +2 -0
- package/package.json +30 -0
- package/src/calculations/common/base.lp +71 -0
- package/src/calculations/common/queryLanguage.lp +418 -0
- package/src/calculations/queries/card.lp +129 -0
- package/src/calculations/queries/onCreation.lp +44 -0
- package/src/calculations/queries/onTransition.lp +26 -0
- package/src/calculations/queries/tree.lp +6 -0
- package/src/calculations/test/model.lp +9 -0
- package/src/declarations.d.ts +9 -0
- package/src/graphvizReport/index.adoc.hbs +34 -0
- package/src/graphvizReport/query.lp.hbs +141 -0
- package/src/index.ts +52 -0
- package/src/schema/cardBaseSchema.json +76 -0
- package/src/schema/cardTreeDirectorySchema.json +663 -0
- package/src/schema/cardsConfigSchema.json +49 -0
- package/src/schema/csvSchema.json +30 -0
- package/src/schema/dotSchema.json +25 -0
- package/src/schema/macros/createCardsMacroSchema.json +39 -0
- package/src/schema/macros/graphMacroBaseSchema.json +17 -0
- package/src/schema/macros/reportMacroBaseSchema.json +13 -0
- package/src/schema/macros/scoreCardMacroSchema.json +24 -0
- package/src/schema/resources/cardTypeSchema.json +65 -0
- package/src/schema/resources/fieldTypeSchema.json +47 -0
- package/src/schema/resources/graphModelSchema.json +28 -0
- package/src/schema/resources/graphViewSchema.json +28 -0
- package/src/schema/resources/linkTypeSchema.json +56 -0
- package/src/schema/resources/reportSchema.json +28 -0
- package/src/schema/resources/templateSchema.json +28 -0
- package/src/schema/resources/workflowSchema.json +75 -0
- package/src/schema/schema.json +166 -0
- package/src/schemas.ts +54 -0
- package/src/static/defaultReport/.schema +7 -0
- package/src/static/defaultReport/index.adoc.hbs +3 -0
- package/src/static/defaultReport/parameterSchema.json +18 -0
- package/src/static/defaultReport/query.lp.hbs +2 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Static resources for [Cyberismo Solution](https://cyberismo.com/solution)
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export * from './schemas.js';
|
|
2
|
+
export declare const graphvizReport: {
|
|
3
|
+
query: string;
|
|
4
|
+
content: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const lpFiles: {
|
|
7
|
+
common: {
|
|
8
|
+
base: string;
|
|
9
|
+
queryLanguage: string;
|
|
10
|
+
};
|
|
11
|
+
queries: {
|
|
12
|
+
card: string;
|
|
13
|
+
onCreation: string;
|
|
14
|
+
onTransition: string;
|
|
15
|
+
tree: string;
|
|
16
|
+
};
|
|
17
|
+
test: {
|
|
18
|
+
model: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
export declare function getStaticDirectoryPath(): Promise<string>;
|