@telia-ace/alliance-utilities 1.0.10 → 1.0.11-next.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @telia-ace/alliance-utilities
2
2
 
3
+ ## 1.0.11-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fd378fe: Add `hasPermission(appName: string, permissionName: string): Promise<boolean>` and `isSystemAdmin(): Promise<boolean>` utilities.
8
+ - fd378fe: Move internal utilities from `@telia-ace/alliance-utilities` to `@telia-ace/alliance-internal-client-utilities` and `@telia-ace/alliance-internal-node-utilities`.
9
+ - fd378fe: Package has been repurposed to export utility functionalities used by various apps.
10
+ - Updated dependencies [fd378fe]
11
+ - @telia-ace/alliance-internal-client-utilities@1.0.1-next.0
12
+ - @telia-ace/alliance-framework@1.0.11-next.2
13
+
14
+ ## 1.0.11-next.0
15
+
16
+ ### Patch Changes
17
+
18
+ - 511ba31: Add translation text for dev server logging flag description.
19
+ - 511ba31: Move internal utility `matchRegExpLike` back to framework package.
20
+
3
21
  ## 1.0.10
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,2 @@
1
+ export declare function isSystemAdmin(): Promise<boolean>;
2
+ export declare function hasPermission(appName: string, permissionName: string): Promise<boolean>;
@@ -0,0 +1 @@
1
+ export { hasPermission, isSystemAdmin } from './current-user';