![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@har-sdk/editor
Advanced tools
Parses OAS and Postman API specification files into form of tree with endpoints and parameters as leaves; tree is useful for GUI representation of specification parameters
Parses OAS and Postman API specification files into form of tree with endpoints and parameters as leaves; tree is useful for GUI representation of specification parameters
Each node and parameter value have JSON pointer, that could be used to change parameter value or to remove node.
npm i --save @har-sdk/editor
import { OasV3Editor, SpecTreeNode } from '@har-sdk/editor';
const openApiEditor = new OasV3Editor();
openApiEditor.setup(jsonOrYamlSourceString).then(() => {
// tree parsing
let tree: SpecTreeNode = openApiEditor.parse();
// setting/updating parameter value
tree = openApiEditor.setParameterValue(
// parameter `valueJsonPointer` is pointer to `example` for oas3 and `default` for oas2;
// referenced parameter will be dereferenced automatically
tree.parameters[0].valueJsonPointer,
someNewValue
);
// removing specific node
tree = openApiEditor.removeNode(tree.children[1].jsonPointer);
// serialization
const serializedUpdatedSpec = openApiEditor.stringify();
});
All of them implement both TreeParser
and Editor
interfaces.
export interface TreeParser {
setup(source: string): Promise<void>;
parse(): SpecTreeNode;
stringify(): string;
}
export interface Editor {
setParameterValue(jsonPointer: string, value: any): SpecTreeNode;
removeNode(jsonPointer: string): SpecTreeNode;
}
export interface SpecTreeNode {
readonly path: string;
readonly name?: string;
readonly method?: HttpMethod;
readonly jsonPointer: string;
readonly children?: ReadonlyArray<SpecTreeNode>;
readonly parameters?: ReadonlyArray<SpecTreeNodeParam>;
}
export interface SpecTreeNodeParam {
readonly paramType: 'location' | 'requestBody' | 'variable';
readonly value?: any;
readonly valueJsonPointer: string;
}
// Specific parameter types with specific properties
export interface SpecTreeNodeVariableParam extends SpecTreeNodeParam {
readonly paramType: 'variable';
readonly name: string;
}
export interface SpecTreeNodeLocationParam extends SpecTreeNodeParam {
readonly paramType: 'location';
readonly name: string;
readonly location: ParamLocation;
}
export interface SpecTreeRequestBodyParam extends SpecTreeNodeParam {
readonly paramType: 'requestBody';
readonly bodyType: string;
}
// Enums
export enum ParamLocation {
PATH = 'path',
QUERY = 'query',
HEADER = 'header',
BODY = 'body'
}
export enum HttpMethod {
GET = 'GET',
PUT = 'PUT',
POST = 'POST',
DELETE = 'DELETE',
OPTIONS = 'OPTIONS',
HEAD = 'HEAD',
PATCH = 'PATCH',
TRACE = 'TRACE'
}
FAQs
Parses OAS and Postman API specification files into form of tree with endpoints and parameters as leaves; tree is useful for GUI representation of specification parameters
The npm package @har-sdk/editor receives a total of 0 weekly downloads. As such, @har-sdk/editor popularity was classified as not popular.
We found that @har-sdk/editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.