@sava-info-systems/api-maker-with-extensions 1.21.0 → 2.0.0

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 (32) hide show
  1. package/.dockerignore +30 -0
  2. package/Dockerfile +51 -0
  3. package/dist/292.885b93c9e38b775a.js +1 -0
  4. package/dist/4575.a69d55da7b6dc4de.js +1 -0
  5. package/dist/5765.2b640be5d177d794.js +1 -0
  6. package/dist/index.html +1 -1
  7. package/dist/main.d876eb0d409c6ceb.js +1 -0
  8. package/dist/{runtime.3ae0fcbd4f474bdc.js → runtime.553fe0e243e03c0a.js} +1 -1
  9. package/main.js +1 -1
  10. package/package-sandbox.json +57 -0
  11. package/package.json +6 -6
  12. package/sandbox.js +1 -0
  13. package/src/public/dist-db-masters/browser/index.html +1 -1
  14. package/src/public/dist-db-masters/browser/{main-TKPYMFGX.js → main-EZ3HQGMX.js} +46 -46
  15. package/src/public/dist-db-masters/browser/{main-SJKWFBLX.js → main-LJ7WAVMT.js} +35 -35
  16. package/src/tools/.github/copilot-instructions.md +1342 -0
  17. package/src/tools/local-client.js +1 -1
  18. package/dist/292.a9b9c6aef70ca8b4.js +0 -1
  19. package/dist/4575.f2056aa18e4cc778.js +0 -1
  20. package/dist/5765.1994a5bd001c1c55.js +0 -1
  21. package/dist/main.38591a8dafb94708.js +0 -1
  22. package/sandbox/.dockerignore +0 -2
  23. package/sandbox/Dockerfile +0 -34
  24. package/sandbox/package.json +0 -27
  25. package/sandbox/sandbox.js +0 -1
  26. package/src/public/dist-db-masters/browser/main-ANQDJFEO.js +0 -139
  27. package/src/public/dist-db-masters/browser/main-E76YJGUR.js +0 -139
  28. package/src/public/dist-db-masters/browser/main-HGRBZVEX.js +0 -139
  29. package/src/public/dist-db-masters/browser/main-LWHKTSAI.js +0 -139
  30. /package/{sandbox/assets → src}/schema-types/store-types.js +0 -0
  31. /package/{sandbox/assets → src}/schema-types/types.js +0 -0
  32. /package/{sandbox/src/utils → src/sutils}/VmInit.js +0 -0
@@ -1,2 +0,0 @@
1
- node_modules
2
- npm-debug.log
@@ -1,34 +0,0 @@
1
- FROM node:22.17.0-alpine3.22
2
- WORKDIR /usr/src/app
3
-
4
- RUN npm install -g pnpm@10.27.0
5
- RUN apk add --update --no-cache build-base g++ make libc6-compat gcompat python3
6
-
7
- # install custom packages here like below
8
- # RUN apk add g++ make python3
9
-
10
- ARG A_DOCKERFILE_HASH
11
- ENV A_DOCKERFILE_HASH=${A_DOCKERFILE_HASH}
12
-
13
- ARG A_PACKAGE_JSON_HASH
14
- ENV A_PACKAGE_JSON_HASH=${A_PACKAGE_JSON_HASH}
15
- COPY ./package.json ./
16
- RUN pnpm install --dangerously-allow-all-builds
17
-
18
- ARG A_CODE_HASH
19
- ENV A_CODE_HASH=${A_CODE_HASH}
20
-
21
- ARG NODE_OPTIONS
22
- ENV NODE_OPTIONS=${NODE_OPTIONS}
23
-
24
- COPY . .
25
-
26
- # So, if we add new package, we won't have to build above base things.
27
- ARG A_NEW_PACKAGES_INSTALL_CMD
28
- ENV A_NEW_PACKAGES_INSTALL_CMD=${A_NEW_PACKAGES_INSTALL_CMD}
29
- RUN $A_NEW_PACKAGES_INSTALL_CMD
30
-
31
- EXPOSE 4631
32
- EXPOSE 4632
33
- EXPOSE 9229
34
- CMD [ "npm", "run", "start" ]
@@ -1,27 +0,0 @@
1
- {
2
- "name": "api_maker_sandbox",
3
- "version": "0.0.1",
4
- "description": "API Maker Project Sandbox Environment",
5
- "license": "UNLICENSED",
6
- "dependencies": {
7
- "@types/lodash": "4.14.194",
8
- "@types/node": "18.15.12",
9
- "@types/web": "0.0.153",
10
- "ajv": "8.12.0",
11
- "ajv-errors": "3.0.0",
12
- "ajv-formats": "2.1.1",
13
- "ajv-keywords": "5.1.0",
14
- "json5": "2.2.3",
15
- "lodash": "4.17.21",
16
- "moment": "2.29.4",
17
- "source-map": "0.7.4",
18
- "undici": "6.21.2"
19
- },
20
- "am": {
21
- "processTitle": "api_maker_sandbox"
22
- },
23
- "scripts": {
24
- "start": "node sandbox.js",
25
- "start-debug": "node --inspect=0.0.0.0:9229 sandbox.js"
26
- }
27
- }