quankee-framework-common-ts 1.3.2 → 1.4.0
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/.editorconfig +17 -17
- package/.gitlab-ci.yml +3 -3
- package/LICENSE +15 -15
- package/README.md +51 -42
- package/angular.json +175 -109
- package/package.json +59 -59
- package/projects/quankee-framework-interceptor/LICENSE +15 -0
- package/projects/quankee-framework-interceptor/ng-package.json +7 -0
- package/projects/quankee-framework-interceptor/package-lock.json +45 -0
- package/projects/quankee-framework-interceptor/package.json +33 -0
- package/projects/quankee-framework-keycloak/LICENSE +15 -15
- package/projects/quankee-framework-keycloak/ng-package.json +6 -6
- package/projects/quankee-framework-keycloak/package-lock.json +37 -37
- package/projects/quankee-framework-keycloak/package.json +1 -1
- package/projects/quankee-framework-language/ng-package.json +6 -6
- package/projects/quankee-framework-language/package.json +1 -1
- package/projects/quankee-framework-response/ng-package.json +6 -6
- package/projects/quankee-framework-response/package.json +1 -1
- package/projects/quankee-framework-user/LICENSE +15 -0
- package/projects/quankee-framework-user/ng-package.json +7 -0
- package/projects/quankee-framework-user/package.json +33 -0
- package/publish-all.js +13 -11
- package/sync-versions.js +26 -26
- package/.angular/cache/19.2.15/ng-packagr/4d54d937dc0fb0c6f29a333038ccf08c7481d9a9c9842c3c69d60b448a8fcd48 +0 -1
- package/.angular/cache/19.2.15/ng-packagr/4ec9d7c95b688865fdda7559138c701cd4f3b51c24f3fc2679687ee4e8d6f807 +0 -1
- package/.angular/cache/19.2.15/ng-packagr/8dc2d5a35f40f993f8e8f007e3ec70ea61d38a9543aaf987838096a6461cfa75 +0 -1
- package/.angular/cache/19.2.15/ng-packagr/b1851331ce1d33cd48496fe17422276a2b380a319e716db97547784e4d9cc1a1 +0 -1
- package/.angular/cache/19.2.15/ng-packagr/bafae0f01f0cf8807646a7eb9e3b6bd5a1edd0fd3752c9f8c93ba0b66b824928 +0 -1
- package/.angular/cache/19.2.15/ng-packagr/df9030ba5c4a68a5dd0cb41b53506348a54f8da563888061b23946418e6eb5c4 +0 -1
package/.editorconfig
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# Editor configuration, see https://editorconfig.org
|
|
2
|
-
root = true
|
|
3
|
-
|
|
4
|
-
[*]
|
|
5
|
-
charset = utf-8
|
|
6
|
-
indent_style = space
|
|
7
|
-
indent_size = 2
|
|
8
|
-
insert_final_newline = true
|
|
9
|
-
trim_trailing_whitespace = true
|
|
10
|
-
|
|
11
|
-
[*.ts]
|
|
12
|
-
quote_type = single
|
|
13
|
-
ij_typescript_use_double_quotes = false
|
|
14
|
-
|
|
15
|
-
[*.md]
|
|
16
|
-
max_line_length = off
|
|
17
|
-
trim_trailing_whitespace = false
|
|
1
|
+
# Editor configuration, see https://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.ts]
|
|
12
|
+
quote_type = single
|
|
13
|
+
ij_typescript_use_double_quotes = false
|
|
14
|
+
|
|
15
|
+
[*.md]
|
|
16
|
+
max_line_length = off
|
|
17
|
+
trim_trailing_whitespace = false
|
package/.gitlab-ci.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
include:
|
|
3
|
-
- project: 'quankee-framework/quankee-ci'
|
|
1
|
+
|
|
2
|
+
include:
|
|
3
|
+
- project: 'quankee-framework/quankee-ci'
|
|
4
4
|
file: '/templates/typescript/common-build.yml'
|
package/LICENSE
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
ISC License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Quankee Software, Lda
|
|
4
|
-
|
|
5
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
-
copyright notice and this permission notice appear in all copies.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Quankee Software, Lda
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,42 +1,51 @@
|
|
|
1
|
-
# Quankee Framework Common Ts
|
|
2
|
-
|
|
3
|
-
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.2.11.
|
|
4
|
-
|
|
5
|
-
# create workspace
|
|
6
|
-
ng new quankee-framework-common-ts --create-application=false
|
|
7
|
-
|
|
8
|
-
# create the lib
|
|
9
|
-
ng generate library quankee-framework-common-ts
|
|
10
|
-
|
|
11
|
-
# version bump
|
|
12
|
-
npm run bump:patch # bumps 1.0.0 → 1.0.1
|
|
13
|
-
npm run bump:minor # bumps 1.0.0 → 1.1.0
|
|
14
|
-
npm run bump:major # bumps 1.0.0 → 2.0.0
|
|
15
|
-
|
|
16
|
-
# create lib for common http response
|
|
17
|
-
ng generate library quankee-framework-response
|
|
18
|
-
|
|
19
|
-
# create lib for language
|
|
20
|
-
ng generate library quankee-framework-language
|
|
21
|
-
|
|
22
|
-
# create lib for keycloak integration
|
|
23
|
-
ng generate library quankee-framework-keycloak
|
|
24
|
-
|
|
25
|
-
#
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
#
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
#
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
1
|
+
# Quankee Framework Common Ts
|
|
2
|
+
|
|
3
|
+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.2.11.
|
|
4
|
+
|
|
5
|
+
# create workspace
|
|
6
|
+
ng new quankee-framework-common-ts --create-application=false
|
|
7
|
+
|
|
8
|
+
# create the lib
|
|
9
|
+
ng generate library quankee-framework-common-ts
|
|
10
|
+
|
|
11
|
+
# version bump
|
|
12
|
+
npm run bump:patch # bumps 1.0.0 → 1.0.1
|
|
13
|
+
npm run bump:minor # bumps 1.0.0 → 1.1.0
|
|
14
|
+
npm run bump:major # bumps 1.0.0 → 2.0.0
|
|
15
|
+
|
|
16
|
+
# create lib for common http response
|
|
17
|
+
ng generate library quankee-framework-response
|
|
18
|
+
|
|
19
|
+
# create lib for language
|
|
20
|
+
ng generate library quankee-framework-language
|
|
21
|
+
|
|
22
|
+
# create lib for keycloak integration
|
|
23
|
+
ng generate library quankee-framework-keycloak
|
|
24
|
+
|
|
25
|
+
# create lib for interceptor
|
|
26
|
+
ng generate library quankee-framework-interceptor
|
|
27
|
+
|
|
28
|
+
# create lib for keycloak integration
|
|
29
|
+
ng generate library quankee-framework-user
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# Keycloak
|
|
35
|
+
npm install keycloak-angular keycloak-js
|
|
36
|
+
|
|
37
|
+
# JWT
|
|
38
|
+
npm install jwt-decode
|
|
39
|
+
|
|
40
|
+
# install jest
|
|
41
|
+
npm install --save-dev @types/jest
|
|
42
|
+
|
|
43
|
+
# clean cache
|
|
44
|
+
rm -rf dist node_modules package-lock.json
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# build
|
|
48
|
+
npm run build
|
|
49
|
+
|
|
50
|
+
# test npm run test -- --watch=false --browsers=ChromeHeadless
|
|
51
|
+
ng test --watch=false --browsers=ChromeHeadless
|
package/angular.json
CHANGED
|
@@ -1,109 +1,175 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
-
"version": 1,
|
|
4
|
-
"newProjectRoot": "projects",
|
|
5
|
-
"projects": {
|
|
6
|
-
"quankee-framework-response": {
|
|
7
|
-
"projectType": "library",
|
|
8
|
-
"root": "projects/quankee-framework-response",
|
|
9
|
-
"sourceRoot": "projects/quankee-framework-response/src",
|
|
10
|
-
"prefix": "lib",
|
|
11
|
-
"architect": {
|
|
12
|
-
"build": {
|
|
13
|
-
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
14
|
-
"options": {
|
|
15
|
-
"project": "projects/quankee-framework-response/ng-package.json"
|
|
16
|
-
},
|
|
17
|
-
"configurations": {
|
|
18
|
-
"production": {
|
|
19
|
-
"tsConfig": "projects/quankee-framework-response/tsconfig.lib.prod.json"
|
|
20
|
-
},
|
|
21
|
-
"development": {
|
|
22
|
-
"tsConfig": "projects/quankee-framework-response/tsconfig.lib.json"
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"defaultConfiguration": "production"
|
|
26
|
-
},
|
|
27
|
-
"test": {
|
|
28
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
29
|
-
"options": {
|
|
30
|
-
"tsConfig": "projects/quankee-framework-response/tsconfig.spec.json",
|
|
31
|
-
"polyfills": [
|
|
32
|
-
"zone.js",
|
|
33
|
-
"zone.js/testing"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"quankee-framework-language": {
|
|
40
|
-
"projectType": "library",
|
|
41
|
-
"root": "projects/quankee-framework-language",
|
|
42
|
-
"sourceRoot": "projects/quankee-framework-language/src",
|
|
43
|
-
"prefix": "lib",
|
|
44
|
-
"architect": {
|
|
45
|
-
"build": {
|
|
46
|
-
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
47
|
-
"options": {
|
|
48
|
-
"project": "projects/quankee-framework-language/ng-package.json"
|
|
49
|
-
},
|
|
50
|
-
"configurations": {
|
|
51
|
-
"production": {
|
|
52
|
-
"tsConfig": "projects/quankee-framework-language/tsconfig.lib.prod.json"
|
|
53
|
-
},
|
|
54
|
-
"development": {
|
|
55
|
-
"tsConfig": "projects/quankee-framework-language/tsconfig.lib.json"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"defaultConfiguration": "production"
|
|
59
|
-
},
|
|
60
|
-
"test": {
|
|
61
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
62
|
-
"options": {
|
|
63
|
-
"tsConfig": "projects/quankee-framework-language/tsconfig.spec.json",
|
|
64
|
-
"polyfills": [
|
|
65
|
-
"zone.js",
|
|
66
|
-
"zone.js/testing"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"quankee-framework-keycloak": {
|
|
73
|
-
"projectType": "library",
|
|
74
|
-
"root": "projects/quankee-framework-keycloak",
|
|
75
|
-
"sourceRoot": "projects/quankee-framework-keycloak/src",
|
|
76
|
-
"prefix": "lib",
|
|
77
|
-
"architect": {
|
|
78
|
-
"build": {
|
|
79
|
-
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
80
|
-
"options": {
|
|
81
|
-
"project": "projects/quankee-framework-keycloak/ng-package.json"
|
|
82
|
-
},
|
|
83
|
-
"configurations": {
|
|
84
|
-
"production": {
|
|
85
|
-
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.lib.prod.json"
|
|
86
|
-
},
|
|
87
|
-
"development": {
|
|
88
|
-
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.lib.json"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"defaultConfiguration": "production"
|
|
92
|
-
},
|
|
93
|
-
"test": {
|
|
94
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
95
|
-
"options": {
|
|
96
|
-
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.spec.json",
|
|
97
|
-
"polyfills": [
|
|
98
|
-
"zone.js",
|
|
99
|
-
"zone.js/testing"
|
|
100
|
-
]
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"newProjectRoot": "projects",
|
|
5
|
+
"projects": {
|
|
6
|
+
"quankee-framework-response": {
|
|
7
|
+
"projectType": "library",
|
|
8
|
+
"root": "projects/quankee-framework-response",
|
|
9
|
+
"sourceRoot": "projects/quankee-framework-response/src",
|
|
10
|
+
"prefix": "lib",
|
|
11
|
+
"architect": {
|
|
12
|
+
"build": {
|
|
13
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
14
|
+
"options": {
|
|
15
|
+
"project": "projects/quankee-framework-response/ng-package.json"
|
|
16
|
+
},
|
|
17
|
+
"configurations": {
|
|
18
|
+
"production": {
|
|
19
|
+
"tsConfig": "projects/quankee-framework-response/tsconfig.lib.prod.json"
|
|
20
|
+
},
|
|
21
|
+
"development": {
|
|
22
|
+
"tsConfig": "projects/quankee-framework-response/tsconfig.lib.json"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"defaultConfiguration": "production"
|
|
26
|
+
},
|
|
27
|
+
"test": {
|
|
28
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
29
|
+
"options": {
|
|
30
|
+
"tsConfig": "projects/quankee-framework-response/tsconfig.spec.json",
|
|
31
|
+
"polyfills": [
|
|
32
|
+
"zone.js",
|
|
33
|
+
"zone.js/testing"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"quankee-framework-language": {
|
|
40
|
+
"projectType": "library",
|
|
41
|
+
"root": "projects/quankee-framework-language",
|
|
42
|
+
"sourceRoot": "projects/quankee-framework-language/src",
|
|
43
|
+
"prefix": "lib",
|
|
44
|
+
"architect": {
|
|
45
|
+
"build": {
|
|
46
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
47
|
+
"options": {
|
|
48
|
+
"project": "projects/quankee-framework-language/ng-package.json"
|
|
49
|
+
},
|
|
50
|
+
"configurations": {
|
|
51
|
+
"production": {
|
|
52
|
+
"tsConfig": "projects/quankee-framework-language/tsconfig.lib.prod.json"
|
|
53
|
+
},
|
|
54
|
+
"development": {
|
|
55
|
+
"tsConfig": "projects/quankee-framework-language/tsconfig.lib.json"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"defaultConfiguration": "production"
|
|
59
|
+
},
|
|
60
|
+
"test": {
|
|
61
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
62
|
+
"options": {
|
|
63
|
+
"tsConfig": "projects/quankee-framework-language/tsconfig.spec.json",
|
|
64
|
+
"polyfills": [
|
|
65
|
+
"zone.js",
|
|
66
|
+
"zone.js/testing"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"quankee-framework-keycloak": {
|
|
73
|
+
"projectType": "library",
|
|
74
|
+
"root": "projects/quankee-framework-keycloak",
|
|
75
|
+
"sourceRoot": "projects/quankee-framework-keycloak/src",
|
|
76
|
+
"prefix": "lib",
|
|
77
|
+
"architect": {
|
|
78
|
+
"build": {
|
|
79
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
80
|
+
"options": {
|
|
81
|
+
"project": "projects/quankee-framework-keycloak/ng-package.json"
|
|
82
|
+
},
|
|
83
|
+
"configurations": {
|
|
84
|
+
"production": {
|
|
85
|
+
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.lib.prod.json"
|
|
86
|
+
},
|
|
87
|
+
"development": {
|
|
88
|
+
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.lib.json"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"defaultConfiguration": "production"
|
|
92
|
+
},
|
|
93
|
+
"test": {
|
|
94
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
95
|
+
"options": {
|
|
96
|
+
"tsConfig": "projects/quankee-framework-keycloak/tsconfig.spec.json",
|
|
97
|
+
"polyfills": [
|
|
98
|
+
"zone.js",
|
|
99
|
+
"zone.js/testing"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"quankee-framework-interceptor": {
|
|
106
|
+
"projectType": "library",
|
|
107
|
+
"root": "projects/quankee-framework-interceptor",
|
|
108
|
+
"sourceRoot": "projects/quankee-framework-interceptor/src",
|
|
109
|
+
"prefix": "lib",
|
|
110
|
+
"architect": {
|
|
111
|
+
"build": {
|
|
112
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
113
|
+
"options": {
|
|
114
|
+
"project": "projects/quankee-framework-interceptor/ng-package.json"
|
|
115
|
+
},
|
|
116
|
+
"configurations": {
|
|
117
|
+
"production": {
|
|
118
|
+
"tsConfig": "projects/quankee-framework-interceptor/tsconfig.lib.prod.json"
|
|
119
|
+
},
|
|
120
|
+
"development": {
|
|
121
|
+
"tsConfig": "projects/quankee-framework-interceptor/tsconfig.lib.json"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"defaultConfiguration": "production"
|
|
125
|
+
},
|
|
126
|
+
"test": {
|
|
127
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
128
|
+
"options": {
|
|
129
|
+
"tsConfig": "projects/quankee-framework-interceptor/tsconfig.spec.json",
|
|
130
|
+
"polyfills": [
|
|
131
|
+
"zone.js",
|
|
132
|
+
"zone.js/testing"
|
|
133
|
+
]
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"quankee-framework-user": {
|
|
139
|
+
"projectType": "library",
|
|
140
|
+
"root": "projects/quankee-framework-user",
|
|
141
|
+
"sourceRoot": "projects/quankee-framework-user/src",
|
|
142
|
+
"prefix": "lib",
|
|
143
|
+
"architect": {
|
|
144
|
+
"build": {
|
|
145
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
146
|
+
"options": {
|
|
147
|
+
"project": "projects/quankee-framework-user/ng-package.json"
|
|
148
|
+
},
|
|
149
|
+
"configurations": {
|
|
150
|
+
"production": {
|
|
151
|
+
"tsConfig": "projects/quankee-framework-user/tsconfig.lib.prod.json"
|
|
152
|
+
},
|
|
153
|
+
"development": {
|
|
154
|
+
"tsConfig": "projects/quankee-framework-user/tsconfig.lib.json"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"defaultConfiguration": "production"
|
|
158
|
+
},
|
|
159
|
+
"test": {
|
|
160
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
161
|
+
"options": {
|
|
162
|
+
"tsConfig": "projects/quankee-framework-user/tsconfig.spec.json",
|
|
163
|
+
"polyfills": [
|
|
164
|
+
"zone.js",
|
|
165
|
+
"zone.js/testing"
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"cli": {
|
|
173
|
+
"analytics": "5f6f9f58-7562-4078-b930-99069ac7e701"
|
|
174
|
+
}
|
|
175
|
+
}
|
package/package.json
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "quankee-framework-common-ts",
|
|
3
|
-
"description": "Quankee Framework Typescript Lib",
|
|
4
|
-
"version": "1.
|
|
5
|
-
"author": {
|
|
6
|
-
"email": "info@quankee.co.mz",
|
|
7
|
-
"name": "Quankee Software, Lda",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://gitlab.com/quankee-framework/quankee-framework-common-ts"
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://gitlab.com/quankee-framework/quankee-framework-common-ts#readme",
|
|
13
|
-
"publishConfig": {
|
|
14
|
-
"registry": "https://registry.npmjs.org/"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"ng": "ng",
|
|
19
|
-
"start": "ng serve",
|
|
20
|
-
"build": "ng build quankee-framework-response && ng build quankee-framework-language && ng build quankee-framework-keycloak",
|
|
21
|
-
"watch": "ng build --watch --configuration development",
|
|
22
|
-
"test": "echo",
|
|
23
|
-
"publish:libs": "node publish-all.js",
|
|
24
|
-
"publish": "npm run build && npm run publish:libs",
|
|
25
|
-
"bump:major": "npm version major && node sync-versions.js",
|
|
26
|
-
"bump:minor": "npm version minor && node sync-versions.js",
|
|
27
|
-
"bump:patch": "npm version patch && node sync-versions.js"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@angular/
|
|
31
|
-
"@angular/
|
|
32
|
-
"@angular/
|
|
33
|
-
"@angular/
|
|
34
|
-
"@angular/platform-browser": "^19.2.0",
|
|
35
|
-
"@angular/
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"keycloak-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"@angular
|
|
46
|
-
"@angular/
|
|
47
|
-
"@angular/compiler-cli": "^19.2.0",
|
|
48
|
-
"@types/jasmine": "~5.1.0",
|
|
49
|
-
"@types/jest": "30.0.0",
|
|
50
|
-
"jasmine-core": "~5.6.0",
|
|
51
|
-
"karma": "~6.4.0",
|
|
52
|
-
"karma-chrome-launcher": "~3.2.0",
|
|
53
|
-
"karma-coverage": "~2.2.0",
|
|
54
|
-
"karma-jasmine": "~5.1.0",
|
|
55
|
-
"karma-jasmine-html-reporter": "~2.1.0",
|
|
56
|
-
"ng-packagr": "^19.2.0",
|
|
57
|
-
"typescript": "~5.7.2"
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "quankee-framework-common-ts",
|
|
3
|
+
"description": "Quankee Framework Typescript Lib",
|
|
4
|
+
"version": "1.4.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"email": "info@quankee.co.mz",
|
|
7
|
+
"name": "Quankee Software, Lda",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://gitlab.com/quankee-framework/quankee-framework-common-ts"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://gitlab.com/quankee-framework/quankee-framework-common-ts#readme",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"registry": "https://registry.npmjs.org/"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"ng": "ng",
|
|
19
|
+
"start": "ng serve",
|
|
20
|
+
"build": "ng build quankee-framework-response && ng build quankee-framework-language && ng build quankee-framework-keycloak && ng build quankee-framework-interceptor && ng build quankee-framework-user",
|
|
21
|
+
"watch": "ng build --watch --configuration development",
|
|
22
|
+
"test": "echo",
|
|
23
|
+
"publish:libs": "node publish-all.js",
|
|
24
|
+
"publish": "npm run build && npm run publish:libs",
|
|
25
|
+
"bump:major": "npm version major && node sync-versions.js",
|
|
26
|
+
"bump:minor": "npm version minor && node sync-versions.js",
|
|
27
|
+
"bump:patch": "npm version patch && node sync-versions.js"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@angular/compiler": "^19.2.0",
|
|
31
|
+
"@angular/core": "^19.2.0",
|
|
32
|
+
"@angular/forms": "^19.2.0",
|
|
33
|
+
"@angular/platform-browser": "^19.2.0",
|
|
34
|
+
"@angular/platform-browser-dynamic": "^19.2.0",
|
|
35
|
+
"@angular/router": "^19.2.0",
|
|
36
|
+
"jwt-decode": "4.0.0",
|
|
37
|
+
"keycloak-angular": "20.0.0",
|
|
38
|
+
"keycloak-js": "26.2.0",
|
|
39
|
+
"rxjs": "~7.8.0",
|
|
40
|
+
"tslib": "^2.3.0",
|
|
41
|
+
"zone.js": "~0.15.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@angular-devkit/build-angular": "^19.2.15",
|
|
45
|
+
"@angular/cli": "^19.2.11",
|
|
46
|
+
"@angular/common": "19.2.14",
|
|
47
|
+
"@angular/compiler-cli": "^19.2.0",
|
|
48
|
+
"@types/jasmine": "~5.1.0",
|
|
49
|
+
"@types/jest": "30.0.0",
|
|
50
|
+
"jasmine-core": "~5.6.0",
|
|
51
|
+
"karma": "~6.4.0",
|
|
52
|
+
"karma-chrome-launcher": "~3.2.0",
|
|
53
|
+
"karma-coverage": "~2.2.0",
|
|
54
|
+
"karma-jasmine": "~5.1.0",
|
|
55
|
+
"karma-jasmine-html-reporter": "~2.1.0",
|
|
56
|
+
"ng-packagr": "^19.2.0",
|
|
57
|
+
"typescript": "~5.7.2"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Quankee Software, Lda
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "quankee-framework-interceptor",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "quankee-framework-interceptor",
|
|
9
|
+
"version": "0.0.1",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"tslib": "^2.3.0"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@angular/common": "19.2.14"
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"@angular/common": "^19.2.0",
|
|
18
|
+
"@angular/core": "^19.2.0"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"node_modules/@angular/common": {
|
|
22
|
+
"version": "19.2.14",
|
|
23
|
+
"resolved": "https://registry.npmjs.org/@angular/common/-/common-19.2.14.tgz",
|
|
24
|
+
"integrity": "sha512-NcNklcuyqaTjOVGf7aru8APX9mjsnZ01gFZrn47BxHozhaR0EMRrotYQTdi8YdVjPkeYFYanVntSLfhyobq/jg==",
|
|
25
|
+
"dev": true,
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"tslib": "^2.3.0"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@angular/core": "19.2.14",
|
|
35
|
+
"rxjs": "^6.5.3 || ^7.4.0"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/tslib": {
|
|
39
|
+
"version": "2.8.1",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
41
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
42
|
+
"license": "0BSD"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|