@ibiz-template/core 0.0.1-alpha.0 → 0.0.1-alpha.10

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 (91) hide show
  1. package/LICENSE +21 -0
  2. package/out/constant/core/core.d.ts +23 -0
  3. package/out/constant/core/core.d.ts.map +1 -0
  4. package/out/constant/core/core.js +22 -0
  5. package/out/constant/http-status-message/http-status-message.d.ts +5 -0
  6. package/out/constant/http-status-message/http-status-message.d.ts.map +1 -0
  7. package/out/constant/http-status-message/http-status-message.js +20 -0
  8. package/out/constant/index.d.ts +3 -0
  9. package/out/constant/index.d.ts.map +1 -0
  10. package/out/constant/index.js +2 -0
  11. package/out/context/index.d.ts +38 -3
  12. package/out/context/index.d.ts.map +1 -1
  13. package/out/context/index.js +53 -6
  14. package/out/environment/environment.d.ts +6 -0
  15. package/out/environment/environment.d.ts.map +1 -0
  16. package/out/environment/environment.js +11 -0
  17. package/out/error/http-error/http-error.d.ts +18 -0
  18. package/out/error/http-error/http-error.d.ts.map +1 -0
  19. package/out/error/http-error/http-error.js +36 -0
  20. package/out/error/index.d.ts +3 -0
  21. package/out/error/index.d.ts.map +1 -0
  22. package/out/error/index.js +2 -0
  23. package/out/error/runtime-error/runtime-error.d.ts +15 -0
  24. package/out/error/runtime-error/runtime-error.d.ts.map +1 -0
  25. package/out/error/runtime-error/runtime-error.js +15 -0
  26. package/out/ibizsys.d.ts +44 -0
  27. package/out/ibizsys.d.ts.map +1 -0
  28. package/out/ibizsys.js +29 -0
  29. package/out/index.d.ts +9 -1
  30. package/out/index.d.ts.map +1 -1
  31. package/out/index.js +9 -8
  32. package/out/install.d.ts +9 -0
  33. package/out/install.d.ts.map +1 -0
  34. package/out/install.js +16 -0
  35. package/out/interface/i-environment/i-environment.d.ts +67 -0
  36. package/out/interface/i-environment/i-environment.d.ts.map +1 -0
  37. package/out/interface/{i-context/i-context.js → i-environment/i-environment.js} +0 -0
  38. package/out/interface/index.d.ts +2 -1
  39. package/out/interface/index.d.ts.map +1 -1
  40. package/out/interface/org-data/org-data.d.ts +43 -0
  41. package/out/interface/org-data/org-data.d.ts.map +1 -0
  42. package/out/interface/org-data/org-data.js +1 -0
  43. package/out/types.d.ts +48 -0
  44. package/out/types.d.ts.map +1 -0
  45. package/out/types.js +1 -0
  46. package/out/utils/index.d.ts +7 -0
  47. package/out/utils/index.d.ts.map +1 -0
  48. package/out/utils/index.js +6 -0
  49. package/out/utils/interceptor/interceptor.d.ts +13 -0
  50. package/out/utils/interceptor/interceptor.d.ts.map +1 -0
  51. package/out/utils/interceptor/interceptor.js +33 -0
  52. package/out/utils/namespace/namespace.d.ts +148 -0
  53. package/out/utils/namespace/namespace.d.ts.map +1 -0
  54. package/out/utils/namespace/namespace.js +216 -0
  55. package/out/utils/net/http-response.d.ts +94 -0
  56. package/out/utils/net/http-response.d.ts.map +1 -0
  57. package/out/utils/net/http-response.js +53 -0
  58. package/out/utils/net/net.d.ts +123 -0
  59. package/out/utils/net/net.d.ts.map +1 -0
  60. package/out/utils/net/net.js +223 -0
  61. package/out/utils/plural/plural.d.ts +21 -0
  62. package/out/utils/plural/plural.d.ts.map +1 -0
  63. package/out/utils/plural/plural.js +25 -0
  64. package/out/utils/util/util.d.ts +39 -0
  65. package/out/utils/util/util.d.ts.map +1 -0
  66. package/out/utils/util/util.js +63 -0
  67. package/package.json +24 -6
  68. package/src/constant/core/core.ts +23 -0
  69. package/src/constant/http-status-message/http-status-message.ts +20 -0
  70. package/src/constant/index.ts +2 -0
  71. package/src/context/index.ts +112 -0
  72. package/src/environment/environment.ts +13 -0
  73. package/src/error/http-error/http-error.ts +43 -0
  74. package/src/error/index.ts +2 -0
  75. package/src/error/runtime-error/runtime-error.ts +14 -0
  76. package/src/ibizsys.ts +48 -0
  77. package/src/index.ts +10 -0
  78. package/src/install.ts +17 -0
  79. package/src/interface/i-environment/i-environment.ts +72 -0
  80. package/src/interface/index.ts +2 -0
  81. package/src/interface/org-data/org-data.ts +42 -0
  82. package/src/types.ts +54 -0
  83. package/src/utils/index.ts +6 -0
  84. package/src/utils/interceptor/interceptor.ts +35 -0
  85. package/src/utils/namespace/namespace.ts +244 -0
  86. package/src/utils/net/http-response.ts +113 -0
  87. package/src/utils/net/net.ts +254 -0
  88. package/src/utils/plural/plural.ts +27 -0
  89. package/src/utils/util/util.ts +78 -0
  90. package/out/interface/i-context/i-context.d.ts +0 -12
  91. package/out/interface/i-context/i-context.d.ts.map +0 -1
@@ -1,12 +0,0 @@
1
- /**
2
- * 上下文接口
3
- *
4
- * @author chitanda
5
- * @date 2022-07-14 10:07:32
6
- * @export
7
- * @interface IContext
8
- */
9
- export interface IContext {
10
- [key: string | symbol]: any;
11
- }
12
- //# sourceMappingURL=i-context.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"i-context.d.ts","sourceRoot":"","sources":["../../../src/interface/i-context/i-context.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,MAAM,WAAW,QAAQ;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,GAAG,CAAC;CAC7B"}