Compare commits

...

16 Commits

Author SHA1 Message Date
63d1e0f65a 1.0.41 2018-07-25 22:33:51 +02:00
f296ce24aa fix(ci): fix build step 2018-07-25 22:33:50 +02:00
b38b691458 1.0.40 2018-07-25 22:13:20 +02:00
64d8a0b0f8 fix(core): update 2018-07-25 22:13:19 +02:00
594c2cfe40 1.0.39 2018-07-22 23:14:11 +02:00
ac94cb1630 fix( ITransaction): import structure 2018-07-22 23:14:11 +02:00
ddea031bbe 1.0.38 2018-07-22 23:01:56 +02:00
6132076aed fix(core): update 2018-07-22 23:01:56 +02:00
a5bd50850e 1.0.37 2018-07-22 23:01:40 +02:00
8df838935c fix(core): update 2018-07-22 23:01:40 +02:00
504dbdea1f 1.0.36 2018-07-22 19:50:47 +02:00
c8d2095942 fix(ICheckingAccount): update 2018-07-22 19:50:47 +02:00
96f525ef0b 1.0.35 2018-07-22 19:28:11 +02:00
7eb2ce7fe3 fix(core): import structure 2018-07-22 19:28:11 +02:00
d67dc9ab44 1.0.34 2018-07-22 18:20:23 +02:00
c193fd4c59 fix(ci): add better docs 2018-07-22 18:20:22 +02:00
13 changed files with 1593 additions and 23 deletions

View File

@ -117,8 +117,9 @@ pages:
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
- npmci command npm install -g npmpage
- npmci command npmpage
- npmci command npm install -g typedoc typescript
- npmci npm install
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
tags:
- docker
- notpriv

View File

@ -1,8 +1,6 @@
{
"npmci": {
"npmGlobalTools": [
"npmts"
],
"npmGlobalTools": [],
"npmAccessLevel": "public"
}
}

1572
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,13 @@
{
"name": "@tsclass/tsclass",
"version": "1.0.33",
"version": "1.0.41",
"private": false,
"description": "common classes for TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "tsrun test/test.ts",
"build": "npmts --notest"
"build": "tsbuild"
},
"repository": {
"type": "git",
@ -25,6 +25,7 @@
"homepage": "https://github.com/tsclass/tsclass#readme",
"dependencies": {},
"devDependencies": {
"@gitzone/tsrun": "^1.0.5"
"@gitzone/tsrun": "^1.0.5",
"tsbuild": "^0.2.1"
}
}

View File

@ -1,5 +1,5 @@
import { IContact } from '../index';
import { IDate } from '../index';
import { IContact } from '..';
import { IDate } from '..';
/**
* describes a company's lifecycle state

View File

@ -1,4 +1,4 @@
import { IAddress } from '../index';
import { IAddress } from '..';
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';

View File

@ -1,4 +1,4 @@
import { IAuthor } from '../index';
import { IAuthor } from '..';
export interface IArticle {
/**

View File

@ -1,5 +1,5 @@
import { IDate } from '../index';
import { IArticle } from '../index';
import { IDate } from '..';
import { IArticle } from '..';
export interface IAuthor {
/**

View File

@ -1,8 +1,8 @@
import { TCurrency } from "./currency";
import { IPayment } from "./payment";
import { TCurrency } from './currency';
import { ITransaction } from './transaction';
export interface ICheckingAccount {
name: string;
currency: TCurrency;
payment: IPayment[];
transactions: ITransaction[];
}

View File

@ -1 +1 @@
export type TCurrency = 'eur' | 'usd' | 'sek'
export type TCurrency = 'eur' | 'usd' | 'sek';

View File

@ -7,7 +7,7 @@ export interface IExpenseItem {
}
export interface IExpense {
voucherFile?: any
voucherFile?: any;
expenseItems: IExpenseItem[];
contactRef: string;
accountRef: string;

View File

@ -1,4 +1,4 @@
export interface IPayment {
export interface ITransaction {
amount: number;
date: Date;
}

View File

@ -8,7 +8,7 @@ export * from './finance/checkingaccount';
export * from './finance/currency';
export * from './finance/expense';
export * from './finance/invoice';
export * from './finance/payment'
export * from './finance/transaction';
// Cloud
export * from './cloud/dns';