@equinor/fusion-framework-module-services 3.2.2 → 3.2.4
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 +185 -169
- package/dist/esm/bookmarks/delete/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/favorites/delete/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/favorites/head/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/favorites/post/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/get/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/getAll/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/patch/generate-endpoint.js.map +1 -1
- package/dist/esm/bookmarks/post/generate-endpoint.js.map +1 -1
- package/dist/esm/context/get/generate-endpoint.js.map +1 -1
- package/dist/esm/context/query/generate-endpoint.js.map +1 -1
- package/dist/esm/context/related/generate-endpoint.js.map +1 -1
- package/dist/esm/module.js.map +1 -1
- package/dist/esm/notification/notification/delete/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/notification/get/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/notification/getAll/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/notification/patch/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/notification/post/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/settings/get/generate-endpoint.js.map +1 -1
- package/dist/esm/notification/settings/put/generate-endpoint.js.map +1 -1
- package/dist/esm/people/person-details/generate-endpoint.js.map +1 -1
- package/dist/esm/people/person-photo/generate-endpoint.js.map +1 -1
- package/dist/esm/people/query/generate-endpoint.js.map +1 -1
- package/dist/esm/people/utils.js.map +1 -1
- package/dist/esm/provider.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +49 -16
- package/src/people/api-models.ts +2 -2
- package/src/version.ts +1 -1
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.2.
|
|
1
|
+
export declare const version = "3.2.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-module-services",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -46,17 +46,50 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"exports": {
|
|
49
|
-
".":
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"./context
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"./
|
|
58
|
-
|
|
59
|
-
|
|
49
|
+
".": {
|
|
50
|
+
"import": "./dist/esm/index.js",
|
|
51
|
+
"types": "./dist/types/index.d.ts"
|
|
52
|
+
},
|
|
53
|
+
"./context": {
|
|
54
|
+
"import": "./dist/esm/context/index.js",
|
|
55
|
+
"types": "./dist/types/context/index.d.ts"
|
|
56
|
+
},
|
|
57
|
+
"./bookmark": {
|
|
58
|
+
"import": "./dist/esm/bookmarks/index.js",
|
|
59
|
+
"types": "./dist/types/bookmarks/index.d.ts"
|
|
60
|
+
},
|
|
61
|
+
"./notification": {
|
|
62
|
+
"import": "./dist/esm/notification/index.js",
|
|
63
|
+
"types": "./dist/types/notification/index.d.ts"
|
|
64
|
+
},
|
|
65
|
+
"./context/get": {
|
|
66
|
+
"import": "./dist/esm/context/get/index.js",
|
|
67
|
+
"types": "./dist/types/context/get/index.d.ts"
|
|
68
|
+
},
|
|
69
|
+
"./people": {
|
|
70
|
+
"import": "./dist/esm/people/index.js",
|
|
71
|
+
"types": "./dist/types/people/index.d.ts"
|
|
72
|
+
},
|
|
73
|
+
"./people/utils": {
|
|
74
|
+
"import": "./dist/esm/people/utils.js",
|
|
75
|
+
"types": "./dist/types/people/utils.d.ts"
|
|
76
|
+
},
|
|
77
|
+
"./people/get": {
|
|
78
|
+
"import": "./dist/esm/people/person-details/index.js",
|
|
79
|
+
"types": "./dist/types/people/person-details/index.d.ts"
|
|
80
|
+
},
|
|
81
|
+
"./people/query": {
|
|
82
|
+
"import": "./dist/esm/people/query/index.js",
|
|
83
|
+
"types": "./dist/types/people/query/index.d.ts"
|
|
84
|
+
},
|
|
85
|
+
"./people/photo": {
|
|
86
|
+
"import": "./dist/esm/people/person-photo/index.js",
|
|
87
|
+
"types": "./dist/types/people/person-photo/index.d.ts"
|
|
88
|
+
},
|
|
89
|
+
"./errors": {
|
|
90
|
+
"import": "./dist/esm/errors.js",
|
|
91
|
+
"types": "./dist/types/errors.d.ts"
|
|
92
|
+
},
|
|
60
93
|
"./package.json": "./package.json"
|
|
61
94
|
},
|
|
62
95
|
"keywords": [],
|
|
@@ -75,13 +108,13 @@
|
|
|
75
108
|
},
|
|
76
109
|
"devDependencies": {
|
|
77
110
|
"typescript": "^5.1.3",
|
|
78
|
-
"@equinor/fusion-framework-module": "^4.2.
|
|
79
|
-
"@equinor/fusion-framework-module-http": "^5.1.
|
|
80
|
-
"@equinor/fusion-framework-module-service-discovery": "^7.0.
|
|
111
|
+
"@equinor/fusion-framework-module": "^4.2.7",
|
|
112
|
+
"@equinor/fusion-framework-module-http": "^5.1.6",
|
|
113
|
+
"@equinor/fusion-framework-module-service-discovery": "^7.0.20"
|
|
81
114
|
},
|
|
82
115
|
"peerDependencies": {
|
|
83
116
|
"odata-query": "^7.0.4",
|
|
84
|
-
"@equinor/fusion-framework-module": "^4.2.
|
|
117
|
+
"@equinor/fusion-framework-module": "^4.2.7"
|
|
85
118
|
},
|
|
86
119
|
"scripts": {
|
|
87
120
|
"build": "tsc -b"
|
package/src/people/api-models.ts
CHANGED
|
@@ -48,5 +48,5 @@ export type ApiPersonMap = {
|
|
|
48
48
|
export type ApiPerson<T extends keyof typeof ApiVersion | ApiVersion> = T extends ApiVersion
|
|
49
49
|
? ApiPersonMap[T]
|
|
50
50
|
: T extends keyof typeof ApiVersion
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
? ApiPersonMap[(typeof ApiVersion)[T]]
|
|
52
|
+
: unknown;
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '3.2.
|
|
2
|
+
export const version = '3.2.4';
|