@posiwise/common-services 0.2.14 → 0.2.16

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 (49) hide show
  1. package/fesm2022/posiwise-common-services.mjs +271 -135
  2. package/fesm2022/posiwise-common-services.mjs.map +1 -1
  3. package/package.json +8 -8
  4. package/types/posiwise-common-services.d.ts +1187 -0
  5. package/index.d.ts +0 -43
  6. package/lib/ab-test.service.d.ts +0 -27
  7. package/lib/ahoy.service.d.ts +0 -21
  8. package/lib/auth.service.d.ts +0 -83
  9. package/lib/base-http.service.d.ts +0 -23
  10. package/lib/brain-api-http.service.d.ts +0 -10
  11. package/lib/brain.service.d.ts +0 -15
  12. package/lib/common-services.interface.d.ts +0 -161
  13. package/lib/common-services.module.d.ts +0 -9
  14. package/lib/common.service.d.ts +0 -39
  15. package/lib/custom-preloading.service.d.ts +0 -13
  16. package/lib/dashboard.service.d.ts +0 -9
  17. package/lib/data.service.d.ts +0 -8
  18. package/lib/date-formatter.service.d.ts +0 -10
  19. package/lib/effects/user.effects.d.ts +0 -12
  20. package/lib/form-helper.service.d.ts +0 -6
  21. package/lib/geo.service.d.ts +0 -14
  22. package/lib/google-analytics.service.d.ts +0 -40
  23. package/lib/group.service.d.ts +0 -37
  24. package/lib/hopscotch.service.d.ts +0 -25
  25. package/lib/integrations-api-http.service.d.ts +0 -10
  26. package/lib/link-loader.service.d.ts +0 -28
  27. package/lib/local-storage.service.d.ts +0 -11
  28. package/lib/logo-caching.service.d.ts +0 -11
  29. package/lib/mailbox.service.d.ts +0 -19
  30. package/lib/main-api-http.service.d.ts +0 -10
  31. package/lib/notification.service.d.ts +0 -23
  32. package/lib/number-picker.service.d.ts +0 -33
  33. package/lib/permission.service.d.ts +0 -52
  34. package/lib/primeNgHelper.d.ts +0 -4
  35. package/lib/product.service.d.ts +0 -24
  36. package/lib/profile.service.d.ts +0 -28
  37. package/lib/qualification.service.d.ts +0 -12
  38. package/lib/script-loader.service.d.ts +0 -13
  39. package/lib/secure-token-storage.service.d.ts +0 -94
  40. package/lib/sentry.service.d.ts +0 -61
  41. package/lib/seo.service.d.ts +0 -16
  42. package/lib/socket.service.d.ts +0 -13
  43. package/lib/subscription.service.d.ts +0 -40
  44. package/lib/tag.service.d.ts +0 -25
  45. package/lib/tips.service.d.ts +0 -15
  46. package/lib/toast.service.d.ts +0 -15
  47. package/lib/user.service.d.ts +0 -64
  48. package/lib/validation.service.d.ts +0 -15
  49. package/lib/window.service.d.ts +0 -10
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@posiwise/common-services",
3
- "version": "0.2.14",
3
+ "version": "0.2.16",
4
4
  "peerDependencies": {
5
- "@angular/common": "^19.2.18",
6
- "@angular/core": "^19.2.18",
7
- "@angular/forms": "^19.2.18",
8
- "@angular/localize": "^19.2.18",
9
- "@angular/platform-browser": "^19.2.18",
5
+ "@angular/common": "^21.2.6",
6
+ "@angular/core": "^21.2.6",
7
+ "@angular/forms": "^21.2.6",
8
+ "@angular/localize": "^21.2.6",
9
+ "@angular/platform-browser": "^21.2.6",
10
10
  "@ngrx/effects": "^19.0.0",
11
11
  "@ngrx/store": "^19.0.0",
12
12
  "@sentry/angular": "^10.32.1",
@@ -26,13 +26,13 @@
26
26
  },
27
27
  "sideEffects": false,
28
28
  "module": "fesm2022/posiwise-common-services.mjs",
29
- "typings": "index.d.ts",
29
+ "typings": "types/posiwise-common-services.d.ts",
30
30
  "exports": {
31
31
  "./package.json": {
32
32
  "default": "./package.json"
33
33
  },
34
34
  ".": {
35
- "types": "./index.d.ts",
35
+ "types": "./types/posiwise-common-services.d.ts",
36
36
  "default": "./fesm2022/posiwise-common-services.mjs"
37
37
  }
38
38
  }