oneentry 1.0.126 → 1.0.128

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 (83) hide show
  1. package/README.md +0 -2
  2. package/configure.js +25 -18
  3. package/dist/admins/adminsApi.d.ts +18 -13
  4. package/dist/admins/adminsApi.js +18 -13
  5. package/dist/admins/adminsInterfaces.d.ts +16 -25
  6. package/dist/attribute-sets/attributeSetsApi.d.ts +14 -15
  7. package/dist/attribute-sets/attributeSetsApi.js +14 -15
  8. package/dist/attribute-sets/attributeSetsInterfaces.d.ts +78 -84
  9. package/dist/auth-provider/authProviderApi.d.ts +53 -79
  10. package/dist/auth-provider/authProviderApi.js +52 -78
  11. package/dist/auth-provider/authProvidersInterfaces.d.ts +98 -94
  12. package/dist/base/asyncModules.d.ts +23 -21
  13. package/dist/base/asyncModules.js +39 -29
  14. package/dist/base/result.d.ts +31 -0
  15. package/dist/base/result.js +32 -5
  16. package/dist/base/stateModule.d.ts +10 -0
  17. package/dist/base/stateModule.js +50 -2
  18. package/dist/base/syncModules.d.ts +42 -50
  19. package/dist/base/syncModules.js +106 -58
  20. package/dist/base/utils.d.ts +33 -2
  21. package/dist/blocks/blocksApi.d.ts +9 -18
  22. package/dist/blocks/blocksApi.js +9 -18
  23. package/dist/blocks/blocksInterfaces.d.ts +41 -46
  24. package/dist/config.d.ts +13 -0
  25. package/dist/config.js +30 -0
  26. package/dist/events/eventsApi.d.ts +10 -27
  27. package/dist/events/eventsApi.js +26 -40
  28. package/dist/events/eventsInterfaces.d.ts +33 -28
  29. package/dist/file-uploading/fileUploadingApi.d.ts +12 -17
  30. package/dist/file-uploading/fileUploadingApi.js +14 -17
  31. package/dist/file-uploading/fileUploadingInterfaces.d.ts +8 -19
  32. package/dist/forms/formsApi.d.ts +10 -9
  33. package/dist/forms/formsApi.js +10 -9
  34. package/dist/forms/formsInterfaces.d.ts +20 -12
  35. package/dist/forms-data/formsDataApi.d.ts +24 -28
  36. package/dist/forms-data/formsDataApi.js +25 -28
  37. package/dist/forms-data/formsDataInterfaces.d.ts +71 -71
  38. package/dist/general-types/generalTypesApi.d.ts +5 -5
  39. package/dist/general-types/generalTypesApi.js +5 -5
  40. package/dist/general-types/generalTypesInterfaces.d.ts +5 -8
  41. package/dist/index.d.ts +3 -4
  42. package/dist/index.js +3 -4
  43. package/dist/integration-collections/integrationCollectionsApi.d.ts +29 -47
  44. package/dist/integration-collections/integrationCollectionsApi.js +31 -51
  45. package/dist/integration-collections/integrationCollectionsInterfaces.d.ts +62 -58
  46. package/dist/locales/localesApi.d.ts +7 -3
  47. package/dist/locales/localesApi.js +7 -3
  48. package/dist/locales/localesInterfaces.d.ts +6 -5
  49. package/dist/menus/menusApi.d.ts +7 -3
  50. package/dist/menus/menusApi.js +7 -3
  51. package/dist/menus/menusInterfaces.d.ts +5 -10
  52. package/dist/menus/menusInterfaces.js +1 -0
  53. package/dist/orders/ordersApi.d.ts +17 -25
  54. package/dist/orders/ordersApi.js +17 -26
  55. package/dist/orders/ordersInterfaces.d.ts +94 -53
  56. package/dist/pages/pagesApi.d.ts +47 -60
  57. package/dist/pages/pagesApi.js +51 -61
  58. package/dist/pages/pagesInterfaces.d.ts +44 -48
  59. package/dist/payments/paymentsApi.d.ts +17 -27
  60. package/dist/payments/paymentsApi.js +17 -31
  61. package/dist/payments/paymentsInterfaces.d.ts +35 -29
  62. package/dist/product-statuses/productStatusesApi.d.ts +9 -9
  63. package/dist/product-statuses/productStatusesApi.js +9 -9
  64. package/dist/product-statuses/productStatusesInterfaces.d.ts +14 -12
  65. package/dist/products/productsApi.d.ts +23 -44
  66. package/dist/products/productsApi.js +24 -44
  67. package/dist/products/productsInterfaces.d.ts +51 -57
  68. package/dist/system/systemApi.d.ts +11 -13
  69. package/dist/system/systemApi.js +12 -13
  70. package/dist/system/systemInterfaces.d.ts +14 -3
  71. package/dist/templates/templatesApi.d.ts +8 -11
  72. package/dist/templates/templatesApi.js +8 -11
  73. package/dist/templates/templatesInterfaces.d.ts +13 -12
  74. package/dist/templates-preview/templatesPreviewApi.d.ts +7 -8
  75. package/dist/templates-preview/templatesPreviewApi.js +7 -8
  76. package/dist/templates-preview/templatesPreviewInterfaces.d.ts +15 -18
  77. package/dist/users/usersApi.d.ts +13 -20
  78. package/dist/users/usersApi.js +13 -20
  79. package/dist/users/usersInterfaces.d.ts +26 -30
  80. package/dist/web-socket/wsApi.d.ts +5 -3
  81. package/dist/web-socket/wsApi.js +6 -3
  82. package/dist/web-socket/wsInterfaces.d.ts +7 -2
  83. package/package.json +16 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oneentry",
3
- "version": "1.0.126",
3
+ "version": "1.0.128",
4
4
  "description": "OneEntry NPM package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,11 +9,12 @@
9
9
  ],
10
10
  "scripts": {
11
11
  "productionBuild": "run-s lint testAll build",
12
- "testAll": "run-s admins attributesets authProvider blocks fileuploading forms formsdata generaltypes integrationcollections locales menus orders pages payments productstatuses products templates templatespreview users",
12
+ "testAll": "run-s admins attributesets authProvider blocks events fileuploading forms formsdata generaltypes integrationcollections locales menus orders pages payments productstatuses products templates templatespreview users",
13
13
  "admins": "npx jest src/admins/tests/admins.spec.ts",
14
14
  "attributesets": "npx jest src/attribute-sets/tests/attributesets.spec.ts",
15
15
  "authProvider": "npx jest src/auth-provider/tests/authProvider.spec.ts",
16
16
  "blocks": "npx jest src/blocks/tests/blocks.spec.ts",
17
+ "events": "npx jest src/events/tests/events.spec.ts",
17
18
  "fileuploading": "npx jest src/file-uploading/tests/fileuploading.spec.ts",
18
19
  "forms": "npx jest src/forms/tests/forms.spec.ts",
19
20
  "formsdata": "npx jest src/forms-data/tests/formsdata.spec.ts",
@@ -29,7 +30,8 @@
29
30
  "templates": "npx jest src/templates/tests/templates.spec.ts",
30
31
  "templatespreview": "npx jest src/templates-preview/tests/templatespreview.spec.ts",
31
32
  "users": "npx jest src/users/tests/users.spec.ts",
32
- "lint": "npx eslint",
33
+ "lint": "npx eslint .",
34
+ "lintFix": "npx eslint . --fix",
33
35
  "build": "npx tsc"
34
36
  },
35
37
  "bin": {
@@ -42,24 +44,26 @@
42
44
  "socket.io-client": "^4.8.1"
43
45
  },
44
46
  "devDependencies": {
45
- "@jest/globals": "^30.0.5",
47
+ "@jest/globals": "^30.2.0",
46
48
  "@types/eslint-config-prettier": "^6.11.3",
47
49
  "@types/jest": "^30.0.0",
48
- "@types/node": "^24.2.1",
49
- "@typescript-eslint/eslint-plugin": "^8.39.1",
50
- "@typescript-eslint/parser": "^8.39.1",
51
- "eslint": "^8.57.1",
50
+ "@types/node": "^24.6.2",
51
+ "@typescript-eslint/eslint-plugin": "^8.45.0",
52
+ "@typescript-eslint/parser": "^8.45.0",
53
+ "eslint": "^9.37.0",
52
54
  "eslint-config-prettier": "^10.1.8",
53
55
  "eslint-plugin-import": "^2.32.0",
54
56
  "eslint-plugin-jest": "^29.0.1",
55
- "eslint-plugin-jest-extended": "^3.0.0",
57
+ "eslint-plugin-jest-extended": "^3.0.1",
58
+ "eslint-plugin-jsdoc": "^60.8.2",
56
59
  "eslint-plugin-prettier": "^5.5.4",
57
60
  "eslint-plugin-simple-import-sort": "^12.1.1",
58
- "jest": "^30.0.5",
61
+ "jest": "^30.2.0",
59
62
  "jest-extended": "^6.0.0",
63
+ "jsdoc": "^4.0.4",
60
64
  "npm-run-all": "^4.1.5",
61
65
  "prettier": "^3.6.2",
62
- "ts-jest": "^29.4.1",
63
- "typescript": "^5.9.2"
66
+ "ts-jest": "^29.4.4",
67
+ "typescript": "^5.9.3"
64
68
  }
65
69
  }