@hichchi/nest-connector 0.0.9 → 0.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hichchi/nest-connector",
3
3
  "description": "Comprehensive NestJS connector library providing standardized HTTP responses, authentication interfaces, CRUD operations, and shared utilities for the Hichchi ecosystem",
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Primitive type
3
3
  */
4
- type Primitive = string | number | boolean | bigint | symbol | null | undefined;
4
+ export type Primitive = string | number | boolean | bigint | symbol | null | undefined;
5
5
  /**
6
6
  * Entity ID type
7
7
  *
@@ -29,12 +29,3 @@ export type EntityPropertyDeepPartial<T> = {
29
29
  export type EntityDeepPartial<T> = T extends Array<infer _U> ? never : T extends Date ? never : T extends object ? {
30
30
  [P in keyof T]?: EntityPropertyDeepPartial<T[P]>;
31
31
  } : never;
32
- /**
33
- * Query-safe deep partial type for dynamic search/filter payloads.
34
- */
35
- export type QueryDeepPartial<T extends {
36
- [P in keyof T]: unknown;
37
- } = object> = {
38
- [P in keyof T]?: T[P] extends Date ? never : T[P] extends (infer U)[] ? U extends object ? never : T[P] : T[P] extends Primitive ? T[P] | T[P][] : QueryDeepPartial<T[P]>;
39
- };
40
- export {};