4.2.207 • Published 11 months ago

@open-stock/stock-counter-client v4.2.207

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

@open-stock/stock-counter-client

A universial inventory management library for Javascript on browser with user state management. This only works with (https://github.com/BrianPollar/@open-stock/stock-counter-server) the server library.

Features

stock-cpounter-client implements a full authentication system. It consists of:

  • a Javascript client library (this repository)
  • a Node Js Server for Node.js.

Its main features are:

Reliability

The libarary uses standard encryption for data protection:

Simple and convenient API

Sample code:

import { createStockCounter } from "@open-stock/stock-counter-client";
import Axios from "axios-observable";

// then create an instance
const instance = Axios.create({
  baseURL: "https://yourapi.com",
  timeout: 1000,
  headers: {
    "X-Custom-Header": "foobar",
    Authorization: "auth-token",
  },
});

const { stockCounterClient } = createStockCounter(instance);

Installation

// with npm
npm install @open-stock/stock-counter-client

// with yarn
yarn add @open-stock/stock-counter-client

How to use

The following example gets user from stock-auth-client and gets the chat client and chat controller instances.

import { createStockCounter } from "@open-stock/stock-counter-client";
import Axios from "axios-observable";

// then create an instance
const instance = Axios.create({
  baseURL: "https://yourapi.com",
  timeout: 1000,
  headers: {
    "X-Custom-Header": "foobar",
    Authorization: "auth-token",
  },
});

const { stockCounterClient } = createStockCounter(instance);

Extra Features

Here are the features of the stock-counter-client library

NOTE

Most of the features below are automatically implememnted by the library. But If you want to use the classes and functions provided by the library, you can do so by importing them from the library. Some of them are elaborated below.

transformFaqToNameOrImage

transformFaqToNameOrImage is a function that is used to transform a faq to a name or image.

usage

import { transformFaqToNameOrImage } from "@open-stock/stock-counter-client";

const faq: Faq ={
// ...
};
const type = 'img' || 'name';

const nameOrImage = transformFaqToNameOrImage(faq, type);

transformEstimateId

transformEstimateId is a function that is used to transform an estimate id.

usage

import { transformEstimateId } from "@open-stock/stock-counter-client";

const result = transformEstimateId('123');

transformInvoice

transformInvoice is a function that is used to transform an invoice.

usage

import { transformInvoice } from "@open-stock/stock-counter-client";

const result = transformInvoice('123');

transformUrId

transformUrId is a function that is used to transform a user id.

usage

import { transformUrId } from "@open-stock/stock-counter-client";

const result = transformUrId('123', 'CAR');

likeFn

likeFn is a function that is used to like an item.

usage

import { likeFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const { success } = await likeFn('companyId', currentUser, item);

unLikeFn

unLikeFn is a function that is used to unlike an item.

usage

import { unLikeFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const { success } = await unLikeFn('companyId', currentUser, item);

determineLikedFn

determineLikedFn is a function that is used to determine if an item is liked.

usage

import { determineLikedFn, Item } from "@open-stock/stock-counter-client";
import { User } from '@open-stock/stock-auth-client';

const currentUser: User = {
// ...
};
const item: Item = {
// ...
};

const res = await determineLikedFn(item, currentUser);

markInvStatusAsFn

markInvStatusAsFn is a function that is used to change an invoice status.

usage

import { markInvStatusAsFn, Invoice } from "@open-stock/stock-counter-client";
import { TinvoiceStatus } from '@open-stock/stock-universal';

const invoice: Invoice = {
// ...
};
const status: TinvoiceStatus = 'pending';

const { success } = await markInvStatusAsFn('companyId', invoice, status);

deleteInvoiceFn

deleteInvoiceFn is a function that is used to delete an invoice.

usage

import { deleteInvoiceFn, Invoice } from "@open-stock/stock-counter-client";

const invoices: Invoice[] = [
// ...
];

const { success } = await deleteInvoiceFn('companyId', '_id', invoices);

toggleSelectionFn

toggleSelectionFn is a function that is used to toggle selection.

usage

import { toggleSelectionFn } from "@open-stock/stock-counter-client";

const id = '123';
const selections = ['123', '456'];

toggleSelectionFn(id, selections);

deleteManyInvoicesFn

deleteManyInvoicesFn is a function that is used to delete many invoices.

usage

import { deleteManyInvoicesFn, Invoice } from "@open-stock/stock-counter-client";

const invoices: Invoice[] = [
// ...
];
const selections = ['123', '456'];

const { success } = await deleteManyInvoicesFn('companyId', invoices, selections);

openBoxFn

openBoxFn is a function that is used to open a box.

usage

import { openBoxFn } from "@open-stock/stock-counter-client";

const val = '123';
const boxes = ['123', '456'];

openBoxFn(val, boxes);

transformNoInvId

transformNoInvId is a function that is used to transform a no invoice id.

usage

import { transformNoInvId } from "@open-stock/stock-counter-client";

const suffix = 'ABC';
const val = 123;

const result = transformNoInvId(suffix, val);

applyBlockDateSelect

Applies a block date select filter to the given data array based on the specified condition.

usage

import { applyBlockDateSelect, Estimate } from "@open-stock/stock-counter-client";

const estimates: Estimate[] = [
// ...
];

const result = applyBlockDateSelect(estimates, 'pending');

CalculationsController

CalculationsController is a class that is used to manage calculations. It is used by the StockCounterClient to manage calculations.

usage

import { CalculationsController } from "@open-stock/stock-counter-client";

const calculationsController = new CalculationsController();

// see file definition for all methods descriptions

InventoryController

InventoryController is a class that is used to manage inventory. It is used by the StockCounterClient to manage inventory.

usage

import { InventoryController } from "@open-stock/stock-counter-client";

const inventoryController = new InventoryController();

// see file definition for all methods descriptions

PaymentController

PaymentController is a class that is used to manage payments. It is used by the StockCounterClient to manage payments.

usage

import { PaymentController } from "@open-stock/stock-counter-client";

const paymentController = new PaymentController();

// see file definition for all methods descriptions
```ts

Documentation

The source code of the website can be found here. Contributions are welcome!

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site.

License

MIT

4.2.207

11 months ago

4.2.206

11 months ago

4.2.204

11 months ago

4.2.205

11 months ago

4.2.202

11 months ago

4.2.203

11 months ago

4.2.200

11 months ago

4.2.201

11 months ago

4.2.194

11 months ago

4.2.195

11 months ago

4.2.192

11 months ago

4.2.193

11 months ago

4.2.190

11 months ago

4.2.191

11 months ago

4.2.198

11 months ago

4.2.199

11 months ago

4.2.196

11 months ago

4.2.197

11 months ago

4.2.189

11 months ago

4.2.183

11 months ago

4.2.184

11 months ago

4.2.181

11 months ago

4.2.182

11 months ago

4.2.180

11 months ago

4.2.187

11 months ago

4.2.188

11 months ago

4.2.185

11 months ago

4.2.186

11 months ago

4.2.172

11 months ago

4.2.173

11 months ago

4.2.170

11 months ago

4.2.171

11 months ago

4.2.178

11 months ago

4.2.179

11 months ago

4.2.176

11 months ago

4.2.177

11 months ago

4.2.174

11 months ago

4.2.175

11 months ago

4.2.167

12 months ago

4.2.168

12 months ago

4.2.165

12 months ago

4.2.166

12 months ago

4.2.164

12 months ago

4.2.163

12 months ago

4.2.161

1 year ago

4.2.162

1 year ago

4.2.160

1 year ago

4.2.158

1 year ago

4.2.159

1 year ago

4.2.156

1 year ago

4.2.157

1 year ago

4.2.154

1 year ago

4.2.155

1 year ago

4.2.153

1 year ago

4.2.151

1 year ago

4.2.152

1 year ago

4.2.149

1 year ago

4.2.150

1 year ago

4.2.147

1 year ago

4.2.148

1 year ago

4.2.146

1 year ago

4.2.138

1 year ago

4.2.139

1 year ago

4.2.140

1 year ago

4.2.145

1 year ago

4.2.143

1 year ago

4.2.144

1 year ago

4.2.141

1 year ago

4.2.142

1 year ago

4.2.129

1 year ago

4.2.127

1 year ago

4.2.128

1 year ago

4.2.136

1 year ago

4.2.137

1 year ago

4.2.134

1 year ago

4.2.135

1 year ago

4.2.132

1 year ago

4.2.133

1 year ago

4.2.130

1 year ago

4.2.131

1 year ago

4.2.118

1 year ago

4.2.119

1 year ago

4.2.116

1 year ago

4.2.117

1 year ago

4.2.125

1 year ago

4.2.126

1 year ago

4.2.123

1 year ago

4.2.124

1 year ago

4.2.121

1 year ago

4.2.122

1 year ago

4.2.120

1 year ago

4.2.114

1 year ago

4.2.115

1 year ago

4.2.112

1 year ago

4.2.113

1 year ago

4.2.110

1 year ago

4.2.111

1 year ago

4.1.8

1 year ago

4.1.7

1 year ago

4.1.9

1 year ago

4.2.103

1 year ago

4.2.104

1 year ago

4.2.101

1 year ago

4.2.102

1 year ago

4.2.100

1 year ago

4.0.5

1 year ago

4.0.4

1 year ago

4.0.7

1 year ago

4.0.6

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

4.0.3

1 year ago

4.0.2

1 year ago

4.0.9

1 year ago

4.0.8

1 year ago

4.2.20

1 year ago

4.2.21

1 year ago

4.2.22

1 year ago

4.2.28

1 year ago

4.2.29

1 year ago

4.2.24

1 year ago

4.2.25

1 year ago

4.2.26

1 year ago

4.2.10

1 year ago

4.2.11

1 year ago

4.2.12

1 year ago

4.2.17

1 year ago

4.2.18

1 year ago

4.2.19

1 year ago

4.2.13

1 year ago

4.2.14

1 year ago

4.2.15

1 year ago

4.2.16

1 year ago

3.9.9

1 year ago

3.9.8

1 year ago

3.9.3

1 year ago

3.9.2

1 year ago

3.9.1

1 year ago

3.9.0

1 year ago

3.9.7

1 year ago

3.9.6

1 year ago

3.9.5

1 year ago

3.9.4

1 year ago

4.2.80

1 year ago

4.2.81

1 year ago

4.2.86

1 year ago

4.2.87

1 year ago

4.2.88

1 year ago

4.2.89

1 year ago

4.2.82

1 year ago

4.2.83

1 year ago

4.2.84

1 year ago

4.2.85

1 year ago

4.2.70

1 year ago

4.2.75

1 year ago

4.2.76

1 year ago

4.2.77

1 year ago

4.2.78

1 year ago

4.2.71

1 year ago

4.2.72

1 year ago

4.2.73

1 year ago

4.2.74

1 year ago

4.2.79

1 year ago

4.2.90

1 year ago

4.2.91

1 year ago

4.2.92

1 year ago

4.2.97

1 year ago

4.2.98

1 year ago

4.2.99

1 year ago

4.2.93

1 year ago

4.2.94

1 year ago

4.2.95

1 year ago

4.2.96

1 year ago

4.2.42

1 year ago

4.2.43

1 year ago

4.2.44

1 year ago

4.2.45

1 year ago

4.2.40

1 year ago

4.2.41

1 year ago

4.2.46

1 year ago

4.2.47

1 year ago

4.2.48

1 year ago

4.2.49

1 year ago

4.2.31

1 year ago

4.2.3

1 year ago

4.2.32

1 year ago

4.2.2

1 year ago

4.2.33

1 year ago

4.2.5

1 year ago

4.2.34

1 year ago

4.2.4

1 year ago

4.2.1

1 year ago

4.2.30

1 year ago

4.2.0

1 year ago

4.2.39

1 year ago

4.2.35

1 year ago

4.2.36

1 year ago

4.2.37

1 year ago

4.2.38

1 year ago

4.2.7

1 year ago

4.2.6

1 year ago

4.2.9

1 year ago

4.2.8

1 year ago

4.2.64

1 year ago

4.2.65

1 year ago

4.2.66

1 year ago

4.2.67

1 year ago

4.2.60

1 year ago

4.2.61

1 year ago

4.2.62

1 year ago

4.2.63

1 year ago

4.2.68

1 year ago

4.2.69

1 year ago

4.2.109

1 year ago

4.2.107

1 year ago

4.2.108

1 year ago

4.2.105

1 year ago

4.2.106

1 year ago

4.2.53

1 year ago

4.1.4

1 year ago

4.2.54

1 year ago

4.1.3

1 year ago

4.2.55

1 year ago

4.1.6

1 year ago

4.2.56

1 year ago

4.1.5

1 year ago

4.1.0

1 year ago

4.2.50

1 year ago

4.2.51

1 year ago

4.1.2

1 year ago

4.2.52

1 year ago

4.1.1

1 year ago

4.2.57

1 year ago

4.2.58

1 year ago

4.2.59

1 year ago

3.8.9

1 year ago

3.8.8

1 year ago

3.8.7

1 year ago

3.8.6

1 year ago

3.7.5

1 year ago

3.7.4

1 year ago

3.7.3

1 year ago

3.7.9

1 year ago

3.7.8

1 year ago

3.7.7

1 year ago

3.7.6

1 year ago

3.8.0

1 year ago

3.8.4

1 year ago

3.8.3

1 year ago

3.8.2

1 year ago

3.8.1

1 year ago

3.8.5

1 year ago

3.7.2

1 year ago

3.6.9

1 year ago

3.7.1

1 year ago

3.7.0

1 year ago

3.6.8

1 year ago

3.6.7

1 year ago

3.6.6

1 year ago

3.6.5

1 year ago

3.6.4

1 year ago

3.6.3

1 year ago

3.6.2

1 year ago

3.6.1

1 year ago

3.6.0

1 year ago

3.5.7

1 year ago

3.5.6

1 year ago

3.5.9

1 year ago

3.5.8

1 year ago

3.5.3

1 year ago

3.5.2

1 year ago

3.5.1

1 year ago

3.5.0

1 year ago

3.5.5

1 year ago

3.5.4

1 year ago

3.4.4

1 year ago

3.4.3

1 year ago

3.4.2

1 year ago

3.4.1

1 year ago

3.4.8

1 year ago

3.4.7

1 year ago

3.4.6

1 year ago

3.4.5

1 year ago

3.4.9

1 year ago

3.3.9

1 year ago

3.3.8

1 year ago

3.3.7

1 year ago

3.2.6

1 year ago

3.2.9

1 year ago

3.2.8

1 year ago

3.2.7

1 year ago

3.4.0

1 year ago

3.3.1

1 year ago

3.3.0

1 year ago

3.3.5

1 year ago

3.3.4

1 year ago

3.3.3

1 year ago

3.3.2

1 year ago

3.2.4

1 year ago

3.2.2

1 year ago

3.2.3

1 year ago

3.2.1

1 year ago

3.2.0

1 year ago

3.1.3

1 year ago

3.1.2

1 year ago

3.1.1

1 year ago

3.1.0

1 year ago

3.1.7

1 year ago

3.1.6

1 year ago

3.1.5

1 year ago

3.1.4

1 year ago

3.1.9

1 year ago

3.1.8

1 year ago

3.0.4

1 year ago

3.0.8

1 year ago

3.0.7

1 year ago

3.0.6

1 year ago

3.0.9

1 year ago

3.0.3

1 year ago

2.8.1

1 year ago

2.8.0

1 year ago

2.9.2

1 year ago

2.9.1

1 year ago

2.9.4

1 year ago

2.9.3

1 year ago

2.9.6

1 year ago

2.9.5

1 year ago

2.7.2

1 year ago

2.7.1

1 year ago

2.8.3

1 year ago

2.8.2

1 year ago

2.8.5

1 year ago

2.8.4

1 year ago

2.8.7

1 year ago

2.8.6

1 year ago

2.8.9

1 year ago

2.8.8

1 year ago

3.0.2

1 year ago

3.0.1

1 year ago

2.7.4

1 year ago

2.7.3

1 year ago

2.7.5

1 year ago

3.0.0

1 year ago

2.7.8

1 year ago

2.7.7

1 year ago

2.9.0

1 year ago

2.7.0

1 year ago

2.6.9

1 year ago

2.6.8

1 year ago

2.6.7

1 year ago

2.6.6

1 year ago

2.6.1

1 year ago

2.6.3

1 year ago

2.6.2

1 year ago

2.6.5

1 year ago

2.6.4

1 year ago

2.6.0

1 year ago

2.5.8

1 year ago

2.5.7

1 year ago

2.5.9

1 year ago

2.5.6

1 year ago

2.5.5

1 year ago

2.5.0

1 year ago

2.5.2

1 year ago

2.5.1

1 year ago

2.5.4

1 year ago

2.5.3

1 year ago

2.4.8

2 years ago

2.4.1

2 years ago

2.4.3

2 years ago

2.4.2

2 years ago

2.4.5

2 years ago

2.4.4

2 years ago

2.4.7

2 years ago

2.4.6

2 years ago

2.4.0

2 years ago

2.3.2

2 years ago

2.3.6

2 years ago

2.3.5

2 years ago

2.3.7

2 years ago

2.3.1

2 years ago

2.3.0

2 years ago

2.1.2

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.1.4

2 years ago

2.2.2

2 years ago

2.1.3

2 years ago

2.0.4

2 years ago

2.2.5

2 years ago

2.1.6

2 years ago

2.0.7

2 years ago

2.2.4

2 years ago

2.1.5

2 years ago

2.0.6

2 years ago

2.1.8

2 years ago

2.1.7

2 years ago

2.0.8

2 years ago

2.1.0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

2.2.9

2 years ago

2.2.8

2 years ago

2.1.9

2 years ago

1.4.5

2 years ago

1.3.5

2 years ago

1.4.0

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.2

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago