@arkitektbedriftene/fe-lib 0.2.21 → 0.2.23

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/dist/index.es.js CHANGED
@@ -1,4 +1,4 @@
1
- const o = "Hello From Library!";
1
+ const e = "Hallo fra Arkitektbedriftene ";
2
2
  export {
3
- o as helloWorld
3
+ e as helloWorld
4
4
  };
@@ -1 +1 @@
1
- export declare const helloWorld = "Hello From Library!";
1
+ export declare const helloWorld = "Hallo fra Arkitektbedriftene ";
@@ -5,6 +5,7 @@ type UserInfo = {
5
5
  firstname: string;
6
6
  lastname: string;
7
7
  username: string;
8
+ fc: string;
8
9
  };
9
10
  export type ImpersonationContextType = {
10
11
  accessToken?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkitektbedriftene/fe-lib",
3
- "version": "0.2.21",
3
+ "version": "0.2.23",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.es.js",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "repository": {
30
30
  "type": "git",
31
- "url": "https://github.com/Arkitektbedriftene/fe-lib"
31
+ "url": "https://github.com/Arkitektbedriftene/ain-fe-lib"
32
32
  },
33
33
  "private": false,
34
34
  "publishConfig": {
@@ -13,10 +13,7 @@
13
13
  forestGreenDarker: "#2b5c37",
14
14
  orange: "#d6751d",
15
15
  orangeLighter: "#e6ac77",
16
- orangeDarker: "#a05b1e",
17
-
18
-
19
-
16
+ orangeDarker: "#a05b1e"
20
17
  };
21
18
 
22
19
  export { colors};
package/src/lib/index.ts CHANGED
@@ -1 +1 @@
1
- export const helloWorld = "Hello From Library!";
1
+ export const helloWorld = "Hallo fra Arkitektbedriftene ";
@@ -1,7 +1,6 @@
1
1
  /*
2
2
  fc string format:
3
3
  ["121487|910209205|ASPLAN VIAK AS, TROMSØ|Ansatt,Arkitekt,Teknisk ansatt|False","151|910209211105|Aannet|Ansatt,Arkitekt,Teknisk ansatt|False" ]
4
-
5
4
  */
6
5
 
7
6
  export interface FirmAccess {
@@ -13,6 +13,8 @@ type UserInfo = {
13
13
  firstname: string;
14
14
  lastname: string;
15
15
  username: string;
16
+ fc: string;
17
+
16
18
  };
17
19
 
18
20
  export type ImpersonationContextType = {