0.4.4 • Published 5 years ago

@zhevron/odata v0.4.4

Weekly downloads
-
License
(MIT OR Apache-2....
Repository
github
Last release
5 years ago

TypeScript OData client

This package wraps the axios http client library with methods to easily handle OData v4 endpoints.

Installation

npm install @zhevron/odata --save

Usage

Getting entities from an endpoint

import { ODataClient } from "@zhevron/odata";

interface IProduct {
    ID: number;
    Name: string;
    Description: string;
}

const client = new ODataClient("http://services.odata.org/Experimental/OData/OData.svc/");
const response = await client.get<IProduct>("Products").execute();

const products = response.entities;

Getting a single entity from an endpoint

import { ODataClient } from "@zhevron/odata";

interface IProduct {
    ID: number;
    Name: string;
    Description: string;
}

const id = 0;

const client = new ODataClient("http://services.odata.org/Experimental/OData/OData.svc/");
const response = await client.get<IProduct>("Products", id).execute();

const product = response.entity;

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

0.4.4

5 years ago

0.4.3

5 years ago

0.4.2

5 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago