@sme.up/kokos-sdk-node 0.0.1
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/README.md +12 -0
- package/bin/kokos.js +26 -0
- package/docker/restapi/Dockerfile +14 -0
- package/docs/.nojekyll +1 -0
- package/docs/assets/highlight.css +78 -0
- package/docs/assets/main.js +58 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1338 -0
- package/docs/classes/ExecuteFunPayload.html +108 -0
- package/docs/classes/ExecutionContext.html +101 -0
- package/docs/classes/Fun.html +171 -0
- package/docs/classes/FunObject.html +115 -0
- package/docs/classes/User.html +122 -0
- package/docs/enums/SmeupDataStructureType.html +95 -0
- package/docs/index.html +100 -0
- package/docs/interfaces/KokosService.html +88 -0
- package/docs/interfaces/KokosServiceMethods.html +83 -0
- package/docs/interfaces/KokosServiceModule.html +88 -0
- package/docs/interfaces/SmeupCell.html +106 -0
- package/docs/interfaces/SmeupColumn.html +210 -0
- package/docs/interfaces/SmeupDataStructure.html +91 -0
- package/docs/interfaces/SmeupMessage.html +102 -0
- package/docs/interfaces/SmeupObject.html +153 -0
- package/docs/interfaces/SmeupRow.html +93 -0
- package/docs/interfaces/SmeupTable.html +105 -0
- package/docs/interfaces/SmeupTree.html +112 -0
- package/docs/interfaces/SmeupTreeNode.html +109 -0
- package/docs/modules.html +93 -0
- package/docs/types/SmeupMessageGravity.html +61 -0
- package/docs/variables/SMEUP_MESSAGE_GRAVITY.html +72 -0
- package/init/JS_00_01.txt +64 -0
- package/lib/caller/serviceCaller.d.ts +32 -0
- package/lib/caller/serviceCaller.js +66 -0
- package/lib/entrypoint/restapi/index.d.ts +1 -0
- package/lib/entrypoint/restapi/index.js +110 -0
- package/lib/index.d.ts +9 -0
- package/lib/index.js +9 -0
- package/lib/services/JS_00_01.d.ts +3 -0
- package/lib/services/JS_00_01.js +67 -0
- package/lib/types/data-structures/smeupDataStructure.d.ts +32 -0
- package/lib/types/data-structures/smeupDataStructure.js +19 -0
- package/lib/types/data-structures/smeupObject.d.ts +21 -0
- package/lib/types/data-structures/smeupObject.js +1 -0
- package/lib/types/data-structures/smeupTable.d.ts +66 -0
- package/lib/types/data-structures/smeupTable.js +1 -0
- package/lib/types/data-structures/smeupTree.d.ts +21 -0
- package/lib/types/data-structures/smeupTree.js +1 -0
- package/lib/types/exceptions/application.d.ts +8 -0
- package/lib/types/exceptions/application.js +12 -0
- package/lib/types/exceptions/execution.d.ts +7 -0
- package/lib/types/exceptions/execution.js +10 -0
- package/lib/types/exceptions/validation.d.ts +7 -0
- package/lib/types/exceptions/validation.js +9 -0
- package/lib/types/general.d.ts +65 -0
- package/lib/types/general.js +158 -0
- package/lib/utils/path.d.ts +5 -0
- package/lib/utils/path.js +28 -0
- package/package.json +63 -0
- package/scripts/build.js +26 -0
- package/scripts/init.js +95 -0
- package/scripts/restapi/build-image-restapi.js +60 -0
- package/scripts/restapi/dev.js +30 -0
- package/scripts/restapi/start.js +14 -0
- package/swagger/favicon-16x16.png +0 -0
- package/swagger/favicon-32x32.png +0 -0
- package/swagger/index.html +61 -0
- package/swagger/oauth2-redirect.html +72 -0
- package/swagger/openapi.yaml +130 -0
- package/swagger/swagger-ui-bundle.js +92 -0
- package/swagger/swagger-ui-bundle.js.map +1 -0
- package/swagger/swagger-ui-es-bundle-core.js +9 -0
- package/swagger/swagger-ui-es-bundle-core.js.map +1 -0
- package/swagger/swagger-ui-es-bundle.js +92 -0
- package/swagger/swagger-ui-es-bundle.js.map +1 -0
- package/swagger/swagger-ui-standalone-preset.js +22 -0
- package/swagger/swagger-ui-standalone-preset.js.map +1 -0
- package/swagger/swagger-ui.css +4 -0
- package/swagger/swagger-ui.css.map +1 -0
- package/swagger/swagger-ui.js +9 -0
- package/swagger/swagger-ui.js.map +1 -0
- package/tsconfig.json +24 -0
package/tsconfig.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "ESNext",
|
|
4
|
+
"target": "ESNext",
|
|
5
|
+
"outDir": "./lib",
|
|
6
|
+
"baseUrl": "./src",
|
|
7
|
+
"rootDir": "./src",
|
|
8
|
+
"moduleResolution": "node",
|
|
9
|
+
"alwaysStrict": true,
|
|
10
|
+
"noImplicitAny": true,
|
|
11
|
+
"experimentalDecorators": true,
|
|
12
|
+
"emitDecoratorMetadata": true,
|
|
13
|
+
"esModuleInterop": true,
|
|
14
|
+
"declaration": true
|
|
15
|
+
},
|
|
16
|
+
"include": [
|
|
17
|
+
"src/**/*.ts"
|
|
18
|
+
],
|
|
19
|
+
"exclude": [
|
|
20
|
+
"node_modules",
|
|
21
|
+
"lib",
|
|
22
|
+
"**/*.test.ts"
|
|
23
|
+
]
|
|
24
|
+
}
|