@prestizni-software/client-dem 0.2.16 → 0.2.17
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/AutoUpdatedClientObjectClass.ts +5 -1
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
|
@@ -167,7 +167,11 @@ export abstract class AutoUpdatedClientObject<T extends Constructor<any>> {
|
|
|
167
167
|
public get extractedData(): {
|
|
168
168
|
[K in keyof InstanceType<T>]: InstanceOf<InstanceType<T>>[K];
|
|
169
169
|
} {
|
|
170
|
-
return structuredClone(
|
|
170
|
+
return structuredClone(
|
|
171
|
+
Object.fromEntries(
|
|
172
|
+
Object.entries(this.data).filter(([k, v]) => typeof v !== "function")
|
|
173
|
+
)
|
|
174
|
+
) as any as {
|
|
171
175
|
[K in keyof InstanceType<T>]: InstanceOf<InstanceType<T>>[K];
|
|
172
176
|
};
|
|
173
177
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.2.17](https://github.com/Prestizni-Software/client-dem/compare/v0.2.16...v0.2.17) (2025-11-10)
|
|
6
|
+
|
|
5
7
|
### [0.2.16](https://github.com/Prestizni-Software/client-dem/compare/v0.2.15...v0.2.16) (2025-11-10)
|
|
6
8
|
|
|
7
9
|
### [0.2.15](https://github.com/Prestizni-Software/client-dem/compare/v0.2.14...v0.2.15) (2025-11-10)
|