oneentry 1.0.123 → 1.0.125

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 (76) hide show
  1. package/README.md +24 -22
  2. package/dist/admins/adminsApi.d.ts +30 -9
  3. package/dist/admins/adminsApi.js +30 -9
  4. package/dist/admins/adminsInterfaces.d.ts +77 -32
  5. package/dist/attribute-sets/attributeSetsApi.d.ts +36 -22
  6. package/dist/attribute-sets/attributeSetsApi.js +41 -25
  7. package/dist/attribute-sets/attributeSetsInterfaces.d.ts +133 -39
  8. package/dist/auth-provider/authProviderApi.d.ts +209 -88
  9. package/dist/auth-provider/authProviderApi.js +226 -87
  10. package/dist/auth-provider/authProvidersInterfaces.d.ts +345 -18
  11. package/dist/base/asyncModules.d.ts +38 -28
  12. package/dist/base/asyncModules.js +178 -47
  13. package/dist/base/result.js +23 -0
  14. package/dist/base/syncModules.d.ts +48 -44
  15. package/dist/base/syncModules.js +84 -64
  16. package/dist/base/utils.d.ts +1 -1
  17. package/dist/blocks/blocksApi.d.ts +48 -27
  18. package/dist/blocks/blocksApi.js +48 -27
  19. package/dist/blocks/blocksInterfaces.d.ts +126 -32
  20. package/dist/events/eventsApi.d.ts +45 -12
  21. package/dist/events/eventsApi.js +47 -12
  22. package/dist/events/eventsInterfaces.d.ts +50 -3
  23. package/dist/file-uploading/fileUploadingApi.d.ts +57 -29
  24. package/dist/file-uploading/fileUploadingApi.js +57 -30
  25. package/dist/file-uploading/fileUploadingInterfaces.d.ts +90 -17
  26. package/dist/forms/formsApi.d.ts +20 -9
  27. package/dist/forms/formsApi.js +19 -8
  28. package/dist/forms/formsInterfaces.d.ts +86 -23
  29. package/dist/formsData/formsDataApi.d.ts +33 -21
  30. package/dist/formsData/formsDataApi.js +33 -21
  31. package/dist/formsData/formsDataInterfaces.d.ts +212 -41
  32. package/dist/general-types/generalTypesApi.d.ts +11 -2
  33. package/dist/general-types/generalTypesApi.js +10 -1
  34. package/dist/general-types/generalTypesInterfaces.d.ts +17 -6
  35. package/dist/index.d.ts +2 -2
  36. package/dist/index.js +2 -2
  37. package/dist/integration-collections/integrationCollectionsApi.d.ts +134 -81
  38. package/dist/integration-collections/integrationCollectionsApi.js +135 -83
  39. package/dist/integration-collections/integrationCollectionsInterfaces.d.ts +246 -43
  40. package/dist/locales/localesApi.d.ts +5 -1
  41. package/dist/locales/localesApi.js +5 -1
  42. package/dist/locales/localesInterfaces.d.ts +19 -12
  43. package/dist/menus/menusApi.d.ts +6 -3
  44. package/dist/menus/menusApi.js +6 -3
  45. package/dist/menus/menusInterfaces.d.ts +60 -21
  46. package/dist/orders/ordersApi.d.ts +84 -66
  47. package/dist/orders/ordersApi.js +91 -71
  48. package/dist/orders/ordersInterfaces.d.ts +282 -86
  49. package/dist/pages/pagesApi.d.ts +101 -42
  50. package/dist/pages/pagesApi.js +93 -39
  51. package/dist/pages/pagesInterfaces.d.ts +218 -75
  52. package/dist/payments/paymentsApi.d.ts +53 -39
  53. package/dist/payments/paymentsApi.js +55 -40
  54. package/dist/payments/paymentsInterfaces.d.ts +121 -56
  55. package/dist/product-statuses/productStatusesApi.d.ts +17 -17
  56. package/dist/product-statuses/productStatusesApi.js +16 -19
  57. package/dist/product-statuses/productStatusesInterfaces.d.ts +43 -14
  58. package/dist/products/productsApi.d.ts +309 -177
  59. package/dist/products/productsApi.js +313 -167
  60. package/dist/products/productsInterfaces.d.ts +447 -81
  61. package/dist/system/systemApi.d.ts +42 -12
  62. package/dist/system/systemApi.js +43 -10
  63. package/dist/system/systemInterfaces.d.ts +7 -0
  64. package/dist/templates/templatesApi.d.ts +24 -20
  65. package/dist/templates/templatesApi.js +22 -21
  66. package/dist/templates/templatesInterfaces.d.ts +48 -22
  67. package/dist/templates-preview/templatesPreviewApi.d.ts +17 -17
  68. package/dist/templates-preview/templatesPreviewApi.js +16 -19
  69. package/dist/templates-preview/templatesPreviewInterfaces.d.ts +85 -32
  70. package/dist/users/usersApi.d.ts +59 -35
  71. package/dist/users/usersApi.js +62 -35
  72. package/dist/users/usersInterfaces.d.ts +136 -14
  73. package/dist/web-socket/wsApi.d.ts +4 -5
  74. package/dist/web-socket/wsApi.js +4 -5
  75. package/dist/web-socket/wsInterfaces.d.ts +2 -1
  76. package/package.json +20 -18
@@ -1,8 +1,9 @@
1
1
  import type { Socket } from 'socket.io-client';
2
2
  /**
3
- * Represents a interface object of WebSocket IO.
3
+ * @interface IWS
4
4
  *
5
5
  * @property {function} connect - WebSocket Connection.
6
+ * @description This interface defines a method for establishing a WebSocket connection.
6
7
  */
7
8
  interface IWS {
8
9
  connect(): Socket;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oneentry",
3
- "version": "1.0.123",
3
+ "version": "1.0.125",
4
4
  "description": "OneEntry NPM package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,14 +9,14 @@
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 payments productstatuses products templates templatespreview users",
12
+ "testAll": "run-s admins attributesets authProvider blocks 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
17
  "fileuploading": "npx jest src/file-uploading/tests/fileuploading.spec.ts",
18
18
  "forms": "npx jest src/forms/tests/forms.spec.ts",
19
- "formsdata": "npx jest src/formsData/tests/formsdata.spec.ts",
19
+ "formsdata": "npx jest src/forms-data/tests/formsdata.spec.ts",
20
20
  "generaltypes": "npx jest src/general-types/tests/generaltypes.spec.ts",
21
21
  "integrationcollections": "npx jest src/integration-collections/tests/integrationcollections.spec.ts",
22
22
  "locales": "npx jest src/locales/tests/locales.spec.ts",
@@ -38,26 +38,28 @@
38
38
  "author": "ONEENTRY PORTAL CO.",
39
39
  "license": "ISC",
40
40
  "dependencies": {
41
- "io": "^1.5.3",
41
+ "io": "^1.5.7",
42
42
  "socket.io-client": "^4.8.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@jest/globals": "^29.7.0",
45
+ "@jest/globals": "^30.0.5",
46
46
  "@types/eslint-config-prettier": "^6.11.3",
47
- "@types/jest": "^29.5.14",
48
- "@types/node": "^22.15.29",
49
- "@typescript-eslint/eslint-plugin": "^8.33.1",
50
- "@typescript-eslint/parser": "^8.33.1",
47
+ "@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
51
  "eslint": "^8.57.1",
52
- "eslint-config-prettier": "^10.1.5",
53
- "eslint-plugin-import": "^2.31.0",
54
- "eslint-plugin-jest": "^28.12.0",
55
- "eslint-plugin-prettier": "^5.4.1",
52
+ "eslint-config-prettier": "^10.1.8",
53
+ "eslint-plugin-import": "^2.32.0",
54
+ "eslint-plugin-jest": "^29.0.1",
55
+ "eslint-plugin-jest-extended": "^3.0.0",
56
+ "eslint-plugin-prettier": "^5.5.4",
56
57
  "eslint-plugin-simple-import-sort": "^12.1.1",
57
- "jest": "^29.7.0",
58
+ "jest": "^30.0.5",
59
+ "jest-extended": "^6.0.0",
58
60
  "npm-run-all": "^4.1.5",
59
- "prettier": "^3.5.3",
60
- "ts-jest": "^29.3.4",
61
- "typescript": "^5.8.3"
61
+ "prettier": "^3.6.2",
62
+ "ts-jest": "^29.4.1",
63
+ "typescript": "^5.9.2"
62
64
  }
63
- }
65
+ }