@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.
Files changed (81) hide show
  1. package/README.md +12 -0
  2. package/bin/kokos.js +26 -0
  3. package/docker/restapi/Dockerfile +14 -0
  4. package/docs/.nojekyll +1 -0
  5. package/docs/assets/highlight.css +78 -0
  6. package/docs/assets/main.js +58 -0
  7. package/docs/assets/search.js +1 -0
  8. package/docs/assets/style.css +1338 -0
  9. package/docs/classes/ExecuteFunPayload.html +108 -0
  10. package/docs/classes/ExecutionContext.html +101 -0
  11. package/docs/classes/Fun.html +171 -0
  12. package/docs/classes/FunObject.html +115 -0
  13. package/docs/classes/User.html +122 -0
  14. package/docs/enums/SmeupDataStructureType.html +95 -0
  15. package/docs/index.html +100 -0
  16. package/docs/interfaces/KokosService.html +88 -0
  17. package/docs/interfaces/KokosServiceMethods.html +83 -0
  18. package/docs/interfaces/KokosServiceModule.html +88 -0
  19. package/docs/interfaces/SmeupCell.html +106 -0
  20. package/docs/interfaces/SmeupColumn.html +210 -0
  21. package/docs/interfaces/SmeupDataStructure.html +91 -0
  22. package/docs/interfaces/SmeupMessage.html +102 -0
  23. package/docs/interfaces/SmeupObject.html +153 -0
  24. package/docs/interfaces/SmeupRow.html +93 -0
  25. package/docs/interfaces/SmeupTable.html +105 -0
  26. package/docs/interfaces/SmeupTree.html +112 -0
  27. package/docs/interfaces/SmeupTreeNode.html +109 -0
  28. package/docs/modules.html +93 -0
  29. package/docs/types/SmeupMessageGravity.html +61 -0
  30. package/docs/variables/SMEUP_MESSAGE_GRAVITY.html +72 -0
  31. package/init/JS_00_01.txt +64 -0
  32. package/lib/caller/serviceCaller.d.ts +32 -0
  33. package/lib/caller/serviceCaller.js +66 -0
  34. package/lib/entrypoint/restapi/index.d.ts +1 -0
  35. package/lib/entrypoint/restapi/index.js +110 -0
  36. package/lib/index.d.ts +9 -0
  37. package/lib/index.js +9 -0
  38. package/lib/services/JS_00_01.d.ts +3 -0
  39. package/lib/services/JS_00_01.js +67 -0
  40. package/lib/types/data-structures/smeupDataStructure.d.ts +32 -0
  41. package/lib/types/data-structures/smeupDataStructure.js +19 -0
  42. package/lib/types/data-structures/smeupObject.d.ts +21 -0
  43. package/lib/types/data-structures/smeupObject.js +1 -0
  44. package/lib/types/data-structures/smeupTable.d.ts +66 -0
  45. package/lib/types/data-structures/smeupTable.js +1 -0
  46. package/lib/types/data-structures/smeupTree.d.ts +21 -0
  47. package/lib/types/data-structures/smeupTree.js +1 -0
  48. package/lib/types/exceptions/application.d.ts +8 -0
  49. package/lib/types/exceptions/application.js +12 -0
  50. package/lib/types/exceptions/execution.d.ts +7 -0
  51. package/lib/types/exceptions/execution.js +10 -0
  52. package/lib/types/exceptions/validation.d.ts +7 -0
  53. package/lib/types/exceptions/validation.js +9 -0
  54. package/lib/types/general.d.ts +65 -0
  55. package/lib/types/general.js +158 -0
  56. package/lib/utils/path.d.ts +5 -0
  57. package/lib/utils/path.js +28 -0
  58. package/package.json +63 -0
  59. package/scripts/build.js +26 -0
  60. package/scripts/init.js +95 -0
  61. package/scripts/restapi/build-image-restapi.js +60 -0
  62. package/scripts/restapi/dev.js +30 -0
  63. package/scripts/restapi/start.js +14 -0
  64. package/swagger/favicon-16x16.png +0 -0
  65. package/swagger/favicon-32x32.png +0 -0
  66. package/swagger/index.html +61 -0
  67. package/swagger/oauth2-redirect.html +72 -0
  68. package/swagger/openapi.yaml +130 -0
  69. package/swagger/swagger-ui-bundle.js +92 -0
  70. package/swagger/swagger-ui-bundle.js.map +1 -0
  71. package/swagger/swagger-ui-es-bundle-core.js +9 -0
  72. package/swagger/swagger-ui-es-bundle-core.js.map +1 -0
  73. package/swagger/swagger-ui-es-bundle.js +92 -0
  74. package/swagger/swagger-ui-es-bundle.js.map +1 -0
  75. package/swagger/swagger-ui-standalone-preset.js +22 -0
  76. package/swagger/swagger-ui-standalone-preset.js.map +1 -0
  77. package/swagger/swagger-ui.css +4 -0
  78. package/swagger/swagger-ui.css.map +1 -0
  79. package/swagger/swagger-ui.js +9 -0
  80. package/swagger/swagger-ui.js.map +1 -0
  81. 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
+ }