mftsccs-node 0.2.22 → 0.2.24
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/README.md +2 -1
- package/dist/bundle.js +1 -1
- package/dist/types/Api/GetConnections/GetConnectionsBetweenApi.d.ts +8 -0
- package/dist/types/Api/GetReservedConnectionIds.d.ts +1 -1
- package/dist/types/DataStructures/BaseUrl.d.ts +5 -0
- package/dist/types/DataStructures/CCSConfig.d.ts +3 -0
- package/dist/types/DataStructures/FetchConnection.d.ts +21 -0
- package/dist/types/DataStructures/ReservedIds.d.ts +10 -16
- package/dist/types/DataStructures/Transaction/Transaction.d.ts +23 -0
- package/dist/types/DataStructures/User/UserBinaryTree.d.ts +1 -119
- package/dist/types/DataStructures/User/UserNode.d.ts +4 -146
- package/dist/types/Services/AccessControl/AccessControlService.d.ts +4 -0
- package/dist/types/app.d.ts +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,7 +131,8 @@ import { CCSConfig } from 'mftsccs-node';
|
|
|
131
131
|
// Enable it explicitly via CCSConfig when needed.
|
|
132
132
|
const config = new CCSConfig({
|
|
133
133
|
accessToken: 'your-bearer-access-token',
|
|
134
|
-
enableAccessControl: true
|
|
134
|
+
enableAccessControl: true,
|
|
135
|
+
accessControlBaseUrl: 'https://access.example.com/api/access-control'
|
|
135
136
|
});
|
|
136
137
|
|
|
137
138
|
// Initialize with backend URLs and config
|