@mgarlik/datastore 0.1.10 → 0.1.11
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -136,7 +136,7 @@ type DataProvidersType = Record<string, DataProviderType>;
|
|
|
136
136
|
/** Kanonický UUID řetězec používaný pro dokumenty a providery. */
|
|
137
137
|
type Uuid = string;
|
|
138
138
|
/** JSON-kompatibilní hodnota používaná v payloadu, filtrech a update operacích. */
|
|
139
|
-
type JSONType = string | number | boolean | {
|
|
139
|
+
type JSONType = string | number | boolean | null | {
|
|
140
140
|
[x: string]: JSONType;
|
|
141
141
|
} | Array<JSONType>;
|
|
142
142
|
/** Konfigurace Socket.IO serveru používaná DataStoreProviderem. */
|
package/dist/index.d.ts
CHANGED
|
@@ -136,7 +136,7 @@ type DataProvidersType = Record<string, DataProviderType>;
|
|
|
136
136
|
/** Kanonický UUID řetězec používaný pro dokumenty a providery. */
|
|
137
137
|
type Uuid = string;
|
|
138
138
|
/** JSON-kompatibilní hodnota používaná v payloadu, filtrech a update operacích. */
|
|
139
|
-
type JSONType = string | number | boolean | {
|
|
139
|
+
type JSONType = string | number | boolean | null | {
|
|
140
140
|
[x: string]: JSONType;
|
|
141
141
|
} | Array<JSONType>;
|
|
142
142
|
/** Konfigurace Socket.IO serveru používaná DataStoreProviderem. */
|