Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@itwin/imodels-client-authoring
Advanced tools
iModels API client wrapper for applications that author iModels.
Copyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.
This package contains an API client that exposes a subset of iModels API operations - it extends the client from the @itwin/imodels-client-management
package and adds more operations that enable applications to author iModels - acquire Birefcases, manage Locks, etc. This library also adds the ability to perform iModel operations that include file transfer - create or download Changesets, create iModel from Baseline file.
Please see the list of key methods and types to discover what API operations are exposed by this client package.
Note: Since the @itwin/imodels-client-authoring
package extends the @itwin/imodels-client-management
package all usage examples presented for the @itwin/imodels-client-management
package are valid for this one as well.
IModelsClient
expects the authorization info to be passed in a form of an asynchronous callback that returns authorization info. It is a common use case to consume IModelsClient
in iTwin.js platform based applications which use IModelApp.getAccessToken
or IModelHost.getAccessToken
to get the authorization header value returned as a string. The authorization header value specifies the schema and access token e.g. Bearer ey...
. To convert this value into the format that IModelsClients
expect users can use AccessTokenAdapter
class which is exported by both @itwin/imodels-access-frontend
and @itwin/imodels-access-backend
packages.
const iModelIterator: EntityListIterator<MinimalIModel> =
iModelsClient.iModels.getMinimalList({
authorization: AccessTokenAdapter.toAuthorizationCallback(
await IModelHost.getAccessToken()
),
urlParams: {
projectId: "8a1fcd73-8c23-460d-a392-8b4afc00affc",
},
});
To include custom headers in your requests, you have the option to provide additional headers or header factories. When constructing an instance of IModelsClient
, any headers passed to the constructor will be automatically added to all requests made by the client. On the other hand, when invoking specific operations, you can pass headers through the operation parameters, which will be included only in the requests related to that particular operation. If a header with the same key is specified in both the constructor and operation parameters, the header from the operation parameters will overwrite the corresponding header from the constructor.
Note: Whitespace values, such as empty strings or spaces are treated as regular headers in our requests. This means that if you provide a whitespace header value it will be sent with the request.
iModelsClient = new IModelsClient({
headers: {
"X-Correlation-Id": () => "xCorrelationIdValue",
"some-custom-header": "someCustomValue",
},
});
iModelsClient.baselineFiles.getSingle({
headers: {
"X-Correlation-Id": "some value that overrides factory",
"new-custom-header": "header that will be sent in this operation requests",
},
});
import {
Authorization,
IModel,
IModelsClient,
} from "@itwin/imodels-client-authoring";
/** Function that creates a new iModel from Baseline file and prints its id to the console. */
async function createIModelFromBaselineFile(): Promise<void> {
const iModelsClient: IModelsClient = new IModelsClient();
const iModel: IModel = await iModelsClient.iModels.createFromBaseline({
authorization: () => getAuthorization(),
iModelProperties: {
projectId: "8a1fcd73-8c23-460d-a392-8b4afc00affc",
name: "Sun City Renewable-energy Plant",
description: "Overall model of wind and solar farms in Sun City",
filePath: "D:\\imodels\\sun-city.bim",
},
});
console.log(iModel.id);
}
/** Function that returns valid authorization information. */
async function getAuthorization(): Promise<Authorization> {
return { scheme: "Bearer", token: "ey..." };
}
FAQs
iModels API client wrapper for applications that author iModels.
The npm package @itwin/imodels-client-authoring receives a total of 10,816 weekly downloads. As such, @itwin/imodels-client-authoring popularity was classified as popular.
We found that @itwin/imodels-client-authoring demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.