ofsc-utility 1.0.50 → 1.0.51
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 +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
10
10
|
- version 1.0.46
|
|
11
11
|
|
|
12
12
|
### Added
|
|
13
|
+
- Bump version to 1.0.50 and add new export functions
|
|
13
14
|
- add user management methods for standalone OFSC
|
|
14
15
|
- Update version and add resource management APIs
|
|
15
16
|
- version 1.0.47 and add resource APIs
|
package/dist/index.d.ts
CHANGED
|
@@ -57,6 +57,12 @@ declare const OfscUtility: {
|
|
|
57
57
|
AllResources: any;
|
|
58
58
|
getworkSkillsOfResource: any;
|
|
59
59
|
getResource: any;
|
|
60
|
+
updateResourcebyId: any;
|
|
61
|
+
getUserByLogin: any;
|
|
62
|
+
updateUserbyLogin: any;
|
|
63
|
+
downloadAllInactiveUsersCSV: any;
|
|
64
|
+
downloadAllInactiveUsers: any;
|
|
65
|
+
updateCreateInventoryType: any;
|
|
60
66
|
createExcelFile: any;
|
|
61
67
|
};
|
|
62
68
|
export default OfscUtility;
|
package/dist/index.js
CHANGED
|
@@ -127,6 +127,12 @@ const OfscUtility = {
|
|
|
127
127
|
AllResources: require('./activities').AllResources,
|
|
128
128
|
getworkSkillsOfResource: require('./resources').getworkSkillsOfResource,
|
|
129
129
|
getResource: require('./resources').getResourcebyId,
|
|
130
|
+
updateResourcebyId: require('./resources').updateResourcebyId,
|
|
131
|
+
getUserByLogin: require('./users').getUserByLogin,
|
|
132
|
+
updateUserbyLogin: require('./users').updateUserbyLogin,
|
|
133
|
+
downloadAllInactiveUsersCSV: require('./users').downloadAllInactiveUsersCSV,
|
|
134
|
+
downloadAllInactiveUsers: require('./users').downloadAllInactiveUsers,
|
|
135
|
+
updateCreateInventoryType: require('./inventoryTypes').updateCreateInventoryType,
|
|
130
136
|
createExcelFile: require('./utilities').createExcelFile
|
|
131
137
|
};
|
|
132
138
|
exports.default = OfscUtility;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ofsc-utility",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
4
4
|
"description": "TypeScript helpers for Oracle Field Service Cloud (OFSC): events, resources, inventories, metadata and CSV/Excel utilities.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|