@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.
- package/fesm2022/posiwise-common-services.mjs +271 -135
- package/fesm2022/posiwise-common-services.mjs.map +1 -1
- package/package.json +8 -8
- package/types/posiwise-common-services.d.ts +1187 -0
- package/index.d.ts +0 -43
- package/lib/ab-test.service.d.ts +0 -27
- package/lib/ahoy.service.d.ts +0 -21
- package/lib/auth.service.d.ts +0 -83
- package/lib/base-http.service.d.ts +0 -23
- package/lib/brain-api-http.service.d.ts +0 -10
- package/lib/brain.service.d.ts +0 -15
- package/lib/common-services.interface.d.ts +0 -161
- package/lib/common-services.module.d.ts +0 -9
- package/lib/common.service.d.ts +0 -39
- package/lib/custom-preloading.service.d.ts +0 -13
- package/lib/dashboard.service.d.ts +0 -9
- package/lib/data.service.d.ts +0 -8
- package/lib/date-formatter.service.d.ts +0 -10
- package/lib/effects/user.effects.d.ts +0 -12
- package/lib/form-helper.service.d.ts +0 -6
- package/lib/geo.service.d.ts +0 -14
- package/lib/google-analytics.service.d.ts +0 -40
- package/lib/group.service.d.ts +0 -37
- package/lib/hopscotch.service.d.ts +0 -25
- package/lib/integrations-api-http.service.d.ts +0 -10
- package/lib/link-loader.service.d.ts +0 -28
- package/lib/local-storage.service.d.ts +0 -11
- package/lib/logo-caching.service.d.ts +0 -11
- package/lib/mailbox.service.d.ts +0 -19
- package/lib/main-api-http.service.d.ts +0 -10
- package/lib/notification.service.d.ts +0 -23
- package/lib/number-picker.service.d.ts +0 -33
- package/lib/permission.service.d.ts +0 -52
- package/lib/primeNgHelper.d.ts +0 -4
- package/lib/product.service.d.ts +0 -24
- package/lib/profile.service.d.ts +0 -28
- package/lib/qualification.service.d.ts +0 -12
- package/lib/script-loader.service.d.ts +0 -13
- package/lib/secure-token-storage.service.d.ts +0 -94
- package/lib/sentry.service.d.ts +0 -61
- package/lib/seo.service.d.ts +0 -16
- package/lib/socket.service.d.ts +0 -13
- package/lib/subscription.service.d.ts +0 -40
- package/lib/tag.service.d.ts +0 -25
- package/lib/tips.service.d.ts +0 -15
- package/lib/toast.service.d.ts +0 -15
- package/lib/user.service.d.ts +0 -64
- package/lib/validation.service.d.ts +0 -15
- 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.
|
|
3
|
+
"version": "0.2.16",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/forms": "^
|
|
8
|
-
"@angular/localize": "^
|
|
9
|
-
"@angular/platform-browser": "^
|
|
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": "
|
|
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": "./
|
|
35
|
+
"types": "./types/posiwise-common-services.d.ts",
|
|
36
36
|
"default": "./fesm2022/posiwise-common-services.mjs"
|
|
37
37
|
}
|
|
38
38
|
}
|