Compare commits

..

8 Commits

Author SHA1 Message Date
b63ca0fd23 4.0.21 2022-09-14 09:40:03 +02:00
c95fd41f59 fix(core): update 2022-09-14 09:40:03 +02:00
38e5bd39d9 4.0.20 2022-09-14 08:43:55 +02:00
f978af4b4f fix(core): update 2022-09-14 08:43:54 +02:00
6f35eed240 4.0.19 2022-08-17 17:28:04 +02:00
636177b119 fix(core): update 2022-08-17 17:28:03 +02:00
05bd86a0ce 4.0.18 2022-08-17 15:46:43 +02:00
d4cc9f7843 fix(core): update 2022-08-17 15:46:42 +02:00
10 changed files with 4817 additions and 1189 deletions

5960
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.17",
"version": "4.0.21",
"private": false,
"description": "common classes for TypeScript",
"main": "dist_ts/index.js",
@ -26,13 +26,13 @@
},
"homepage": "https://github.com/tsclass/tsclass#readme",
"dependencies": {
"type-fest": "^2.13.1"
"type-fest": "^2.18.0"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.17',
version: '4.0.21',
description: 'common classes for TypeScript'
}

View File

@ -1,3 +1,4 @@
import { finance } from '../index.js'
import { business } from '../index.js';
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';
@ -33,8 +34,5 @@ export interface IContact {
// financial
// =========
vatId?: string;
sepaConnection?: {
iban: string;
bic: string;
};
sepaConnection?: finance.ISepaConnection;
}

View File

@ -2,4 +2,5 @@ export * from './checkingaccount.js';
export * from './currency.js';
export * from './expense.js';
export * from './invoice.js';
export * from './payment.js';
export * from './transaction.js';

View File

@ -1,4 +1,4 @@
import { business } from '../index.js';
import { business, finance } from '../index.js';
export type TInvoiceStatus = 'draft' | 'invoice' | 'paid' | 'refunded';
@ -34,4 +34,5 @@ export interface IInvoice {
items: IInvoiceItem[];
};
};
paymentOptions?: finance.IPaymentOptionInfo;
}

14
ts/finance/payment.ts Normal file
View File

@ -0,0 +1,14 @@
export interface ISepaConnection {
institution?: string;
iban: string;
bic: string;
}
export interface IPayPalConnection {
email: string;
}
export interface IPaymentOptionInfo {
sepaConnection: ISepaConnection;
payPal: IPayPalConnection;
}

View File

@ -25,7 +25,10 @@ import * as network from './network/index.js';
// SaaS
import * as saas from './saas/index.js';
export { business, container, code, database, finance, content, general, network, saas };
// Website
import * as website from './website/index.js';
export { business, container, code, database, finance, content, general, network, saas, website };
import type * as typeFest from 'type-fest';

1
ts/website/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './menuitem.js';

4
ts/website/menuitem.ts Normal file
View File

@ -0,0 +1,4 @@
export interface IMenuItem {
name: string;
action: <T = any>() => void | Promise<T>;
}