
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
ibm-connections-files
Advanced tools
an implementation for the IBM Connections Files API
$ npm install --save ibm-connections-files-service
After you require files service, you may easily setup the default properties.
const ibmConnectionsFilesService = require('ibm-connections-files-service');
const defaults = {
headers: {
Authorization: 'Basic 12345', // or any other auth method
},
};
Beside default authorization, this service supports oniyi-http-plugin-credentials
and oniyi-http-plugin-format-url-template
.
Credentials plugin is used only if plugins.credentials
is provided.
Format-url-template is used by default, and it is recommended to use it in combination with credentials plugin.
For more details about plugins usage, please visit:
oniyi-http-plugin-format-url-template
const plugins = {
credentials: {
providerName: 'customProvider',
userRelationProp: 'credentials',
},
formatUrlTemplate: {
valuesMap: {
authType: {
basic: 'customAuthType',
}
},
},
};
const serviceOptions = {
defaults,
plugins,
baseUrl: 'https://fake.base.url.com',
};
const service = ibmConnectionsFilesService(serviceOptions.baseUrl, serviceOptions);
Once source instance is created, you are able to use next methods:
1. service.myFiles
2. service.publicFiles
3. service.communityFiles
4. service.filesFromFolder
Every method comes with three arguments, query
, options
and callback
.
query
- valid query parameters about each method can be found in the source code: /lib/methods/*
options
- additional options merged into default http request params
In order to retrieve personal files, prepare configuration and make a call:
const query = {
customQuery: 'query value',
};
const options = {
customOptions: 'some value',
};
service.myFiles(query, options, (err, response) => {
const { files } = response;
// use files object to retrieve data about personal files
});
Similar preparation as for the myFiles
method:
const query = {
customQuery: 'query value',
};
const options = {
customOptions: 'some value',
};
service.publicFiles(query, options, (err, response) => {
const { files } = response;
// use files object to retrieve data about public files
});
When you need to retrieve files that belong to a certain community, it is necessary to provide the communityId:
const query = {
communityId: '123-foo-456-bar',
};
const options = {
customOptions: 'some value',
};
service.communityFiles(query, options, (err, response) => {
const { files } = response;
// use files object to retrieve files from community
});
And when you need to retrieve files that belong to a folder/collection, it is necessary to provide the collectionId:
const query = {
collectionId: '123-foo-456-bar',
};
const options = {
customOptions: 'some value',
};
service.filesFromFolder(query, options, (err, response) => {
const { files } = response;
// use files object to retrieve files from folder/collection
});
UNLICENSED © GIS AG
FAQs
An implementation for the IBM Connections Files API
The npm package ibm-connections-files receives a total of 0 weekly downloads. As such, ibm-connections-files popularity was classified as not popular.
We found that ibm-connections-files demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.