@ercioko/meblotex-api 0.2.20 → 0.2.22

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.
Files changed (2) hide show
  1. package/dist/db_types.d.ts +10 -11
  2. package/package.json +1 -1
@@ -77,15 +77,15 @@ export interface WplataAttributes {
77
77
  }
78
78
  export interface ZamowienieDokumentAttributes {
79
79
  id_zamowienie_dokument: number;
80
- data_sprzedazy: Date;
81
- data_wystawienia: Date;
82
- data_platnosci: Date;
80
+ data_sprzedazy: string;
81
+ data_wystawienia: string;
82
+ data_platnosci: string;
83
83
  typ_dokumentu: TypDokumentu;
84
84
  numer: number;
85
85
  numer_idx: number;
86
86
  forma_platnosci: FormaPlatnosci;
87
- wartosc: number;
88
- netto: number;
87
+ wartosc: string;
88
+ netto: string;
89
89
  nazwa_skrocona: string;
90
90
  nazwa1: string;
91
91
  nazwa2: string;
@@ -99,12 +99,11 @@ export interface ZamowienieDokumentAttributes {
99
99
  kod: string;
100
100
  nip_kraj: string;
101
101
  nip: string;
102
- id_klient?: number;
103
- id_klient_nabywca?: number;
104
- id_zamowienie_dokument_parent?: number;
105
- id_zamowienie?: number;
106
- id_uzytkownik_dodanie?: number;
107
- czas_edycja?: Date;
102
+ id_klient?: number | null;
103
+ id_klient_nabywca?: number | null;
104
+ id_zamowienie_dokument_parent?: number | null;
105
+ id_uzytkownik_dodanie?: number | null;
106
+ id_uzytkownik_edycja?: number | null;
108
107
  }
109
108
  export interface ZamowienieElementAttributes {
110
109
  id_zamowienie_element: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ercioko/meblotex-api",
3
- "version": "0.2.20",
3
+ "version": "0.2.22",
4
4
  "description": "Shared modules for Meblotex app",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",