abra-flexi 1.0.0-beta.3 → 1.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,7 +67,7 @@ class AFStitkyCache {
67
67
  return undefined;
68
68
  const list = [];
69
69
  if (typeof keys === 'string') {
70
- keys = keys.split(',');
70
+ keys = keys.split(', ');
71
71
  }
72
72
  if (typeof groupFilter === 'string') {
73
73
  groupFilter = this._stitekSkupiny.find(ss => ss.kod === groupFilter);
@@ -98,6 +98,7 @@ export declare class AFMzda extends AFEntity {
98
98
  zalohaMimoradna?: Big;
99
99
  socPojCelkSpada?: Big;
100
100
  duchodSpor?: Big;
101
+ zakladDaneNezaokr?: Big;
101
102
  prostrediPripl?: Big;
102
103
  static propAnnotations: Record<string, TypeAnnotation>;
103
104
  }
@@ -181,6 +181,8 @@ class AFMzda extends AFEntity_1.AFEntity {
181
181
  socPojCelkSpada;
182
182
  // Druhý pilíř (db: ) - Druhý pilíř)
183
183
  duchodSpor;
184
+ // Zákl. daně nezaokr. (db: ) - Základ daně nezaokrouhlený)
185
+ zakladDaneNezaokr;
184
186
  // Přípl.prostř. (db: ) - Příplatek za prostředí)
185
187
  prostrediPripl;
186
188
  static propAnnotations = {
@@ -630,6 +632,11 @@ class AFMzda extends AFEntity_1.AFEntity {
630
632
  type: AFTypes_1.PropertyType.Numeric,
631
633
  isArray: false,
632
634
  },
635
+ zakladDaneNezaokr: {
636
+ key: 'zakladDaneNezaokr',
637
+ type: AFTypes_1.PropertyType.Numeric,
638
+ isArray: false,
639
+ },
633
640
  prostrediPripl: {
634
641
  key: 'prostrediPripl',
635
642
  type: AFTypes_1.PropertyType.Numeric,
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "abra-flexi",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.4",
4
4
  "description": "ABRA Flexi API Typescript client. Automaticly generated from API json annotations.",
5
- "types": "build/index.d.ts",
5
+ "types": "index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc",
8
8
  "build:cli": "rm -rf ./bin && tsc --project tsconfig.generator.json && cp -r ./generator/templates bin/",
@@ -14,7 +14,7 @@
14
14
  "start-ts-node": "ts-node src/index.ts",
15
15
  "debug": "nodemon --exec 'node --require ts-node/register --inspect=9229 src/index.ts' -e ts,graphql,env --watch .env --watch .",
16
16
  "test": "jest --config jestconfig.json --passWithNoTests",
17
- "prepare-package": "npm run build && rm -rf npm-package && mkdir npm-package && cp package*.json tsconfig.json LICENSE README.md npm-package/ && cp -r build/* npm-package && rm -rf npm-package/package-lock.json",
17
+ "prepare-package": "npm run build && rm -rf npm-package && mkdir npm-package && cp package*.json tsconfig.json LICENSE README.md npm-package/ && cp -r build/* npm-package && rm -rf npm-package/package-lock.json npm-package/tsconfig.json npm-package/tsconfig.json",
18
18
  "pack": "npm run prepare-package && cd npm-package && npm pack",
19
19
  "publish": "npm run prepare-package && cd npm-package && npm publish",
20
20
  "clean": "rimraf build && rimraf npm-package"
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "module": "CommonJS",
5
- "declaration": true,
6
- "outDir": "./build",
7
- "strict": true
8
- },
9
- "include": ["src"],
10
- "exclude": ["node_modules"],
11
- }