@ercioko/meblotex-api 0.2.21 → 0.2.23
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.
- package/dist/db_types.d.ts +7 -5
- package/package.json +1 -1
package/dist/db_types.d.ts
CHANGED
|
@@ -77,6 +77,8 @@ export interface WplataAttributes {
|
|
|
77
77
|
}
|
|
78
78
|
export interface ZamowienieDokumentAttributes {
|
|
79
79
|
id_zamowienie_dokument: number;
|
|
80
|
+
czas_dodanie: string;
|
|
81
|
+
czas_edycja: string;
|
|
80
82
|
data_sprzedazy: string;
|
|
81
83
|
data_wystawienia: string;
|
|
82
84
|
data_platnosci: string;
|
|
@@ -99,11 +101,11 @@ export interface ZamowienieDokumentAttributes {
|
|
|
99
101
|
kod: string;
|
|
100
102
|
nip_kraj: string;
|
|
101
103
|
nip: string;
|
|
102
|
-
id_klient?: number;
|
|
103
|
-
id_klient_nabywca?: number;
|
|
104
|
-
id_zamowienie_dokument_parent
|
|
105
|
-
id_uzytkownik_dodanie
|
|
106
|
-
id_uzytkownik_edycja
|
|
104
|
+
id_klient?: number | null;
|
|
105
|
+
id_klient_nabywca?: number | null;
|
|
106
|
+
id_zamowienie_dokument_parent?: number | null;
|
|
107
|
+
id_uzytkownik_dodanie?: number | null;
|
|
108
|
+
id_uzytkownik_edycja?: number | null;
|
|
107
109
|
}
|
|
108
110
|
export interface ZamowienieElementAttributes {
|
|
109
111
|
id_zamowienie_element: number;
|