@hichchi/nest-crud 0.0.11 → 0.0.12

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 (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +278 -278
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1508,7 +1508,7 @@ Complete technical reference for all classes, interfaces, methods, and types in
1508
1508
 
1509
1509
  ### BaseEntity
1510
1510
 
1511
- Defined in: [libs/nest-crud/src/base/base-entity.ts:51](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L51)
1511
+ Defined in: [libs/nest-crud/src/base/base-entity.ts:51](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L51)
1512
1512
 
1513
1513
  Base entity class that provides common fields and functionality for all entities
1514
1514
 
@@ -1570,7 +1570,7 @@ new BaseEntity(): BaseEntity;
1570
1570
  protected optional afterLoad(): void;
1571
1571
  ```
1572
1572
 
1573
- Defined in: [libs/nest-crud/src/base/base-entity.ts:156](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L156)
1573
+ Defined in: [libs/nest-crud/src/base/base-entity.ts:156](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L156)
1574
1574
 
1575
1575
  Lifecycle hook that runs after an entity is loaded from the database
1576
1576
 
@@ -1620,7 +1620,7 @@ It is not nullable and cannot be changed after creation.
1620
1620
  </td>
1621
1621
  <td>
1622
1622
 
1623
- [libs/nest-crud/src/base/base-entity.ts:68](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L68)
1623
+ [libs/nest-crud/src/base/base-entity.ts:68](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L68)
1624
1624
 
1625
1625
  </td>
1626
1626
  </tr>
@@ -1645,7 +1645,7 @@ It is automatically loaded when the entity is retrieved with relations.
1645
1645
  </td>
1646
1646
  <td>
1647
1647
 
1648
- [libs/nest-crud/src/base/base-entity.ts:105](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L105)
1648
+ [libs/nest-crud/src/base/base-entity.ts:105](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L105)
1649
1649
 
1650
1650
  </td>
1651
1651
  </tr>
@@ -1670,7 +1670,7 @@ It is used for the foreign key relationship with the createdBy field.
1670
1670
  </td>
1671
1671
  <td>
1672
1672
 
1673
- [libs/nest-crud/src/base/base-entity.ts:95](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L95)
1673
+ [libs/nest-crud/src/base/base-entity.ts:95](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L95)
1674
1674
 
1675
1675
  </td>
1676
1676
  </tr>
@@ -1695,7 +1695,7 @@ soft delete functionality. When this field has a value, the entity is considered
1695
1695
  </td>
1696
1696
  <td>
1697
1697
 
1698
- [libs/nest-crud/src/base/base-entity.ts:86](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L86)
1698
+ [libs/nest-crud/src/base/base-entity.ts:86](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L86)
1699
1699
 
1700
1700
  </td>
1701
1701
  </tr>
@@ -1720,7 +1720,7 @@ It is automatically loaded when the entity is retrieved with relations.
1720
1720
  </td>
1721
1721
  <td>
1722
1722
 
1723
- [libs/nest-crud/src/base/base-entity.ts:143](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L143)
1723
+ [libs/nest-crud/src/base/base-entity.ts:143](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L143)
1724
1724
 
1725
1725
  </td>
1726
1726
  </tr>
@@ -1745,7 +1745,7 @@ It is used for the foreign key relationship with the deletedBy field.
1745
1745
  </td>
1746
1746
  <td>
1747
1747
 
1748
- [libs/nest-crud/src/base/base-entity.ts:133](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L133)
1748
+ [libs/nest-crud/src/base/base-entity.ts:133](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L133)
1749
1749
 
1750
1750
  </td>
1751
1751
  </tr>
@@ -1770,7 +1770,7 @@ It serves as the primary key for the entity in the database.
1770
1770
  </td>
1771
1771
  <td>
1772
1772
 
1773
- [libs/nest-crud/src/base/base-entity.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L59)
1773
+ [libs/nest-crud/src/base/base-entity.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L59)
1774
1774
 
1775
1775
  </td>
1776
1776
  </tr>
@@ -1795,7 +1795,7 @@ and updated whenever the entity is modified.
1795
1795
  </td>
1796
1796
  <td>
1797
1797
 
1798
- [libs/nest-crud/src/base/base-entity.ts:77](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L77)
1798
+ [libs/nest-crud/src/base/base-entity.ts:77](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L77)
1799
1799
 
1800
1800
  </td>
1801
1801
  </tr>
@@ -1820,7 +1820,7 @@ It is automatically loaded when the entity is retrieved with relations.
1820
1820
  </td>
1821
1821
  <td>
1822
1822
 
1823
- [libs/nest-crud/src/base/base-entity.ts:124](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L124)
1823
+ [libs/nest-crud/src/base/base-entity.ts:124](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L124)
1824
1824
 
1825
1825
  </td>
1826
1826
  </tr>
@@ -1845,7 +1845,7 @@ It is used for the foreign key relationship with the updatedBy field.
1845
1845
  </td>
1846
1846
  <td>
1847
1847
 
1848
- [libs/nest-crud/src/base/base-entity.ts:114](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L114)
1848
+ [libs/nest-crud/src/base/base-entity.ts:114](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L114)
1849
1849
 
1850
1850
  </td>
1851
1851
  </tr>
@@ -1856,7 +1856,7 @@ It is used for the foreign key relationship with the updatedBy field.
1856
1856
 
1857
1857
  ### BaseEntityExtension
1858
1858
 
1859
- Defined in: [libs/nest-crud/src/base/base-entity-extension.ts:43](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity-extension.ts#L43)
1859
+ Defined in: [libs/nest-crud/src/base/base-entity-extension.ts:43](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity-extension.ts#L43)
1860
1860
 
1861
1861
  Base entity extension class that provides a minimal entity structure
1862
1862
 
@@ -1950,7 +1950,7 @@ It serves as the primary key for the entity in the database.
1950
1950
  </td>
1951
1951
  <td>
1952
1952
 
1953
- [libs/nest-crud/src/base/base-entity-extension.ts:51](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity-extension.ts#L51)
1953
+ [libs/nest-crud/src/base/base-entity-extension.ts:51](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity-extension.ts#L51)
1954
1954
 
1955
1955
  </td>
1956
1956
  </tr>
@@ -1961,7 +1961,7 @@ It serves as the primary key for the entity in the database.
1961
1961
 
1962
1962
  ### BaseRepository
1963
1963
 
1964
- Defined in: [libs/nest-crud/src/base/base-repository.ts:98](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L98)
1964
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:98](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L98)
1965
1965
 
1966
1966
  Base Repository Class that extends TypeORM's Repository with enhanced functionality
1967
1967
 
@@ -2070,7 +2070,7 @@ ModelExtension interface (for lightweight entity extensions).
2070
2070
  get entityRepository(): Repository<Entity>;
2071
2071
  ```
2072
2072
 
2073
- Defined in: [libs/nest-crud/src/base/base-repository.ts:127](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L127)
2073
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:127](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L127)
2074
2074
 
2075
2075
  Get the appropriate repository instance for the current context
2076
2076
 
@@ -2117,7 +2117,7 @@ Entity metadata of the entity current repository manages.
2117
2117
  new BaseRepository<Entity>(repository): BaseRepository<Entity>;
2118
2118
  ```
2119
2119
 
2120
- Defined in: [libs/nest-crud/src/base/base-repository.ts:111](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L111)
2120
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:111](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L111)
2121
2121
 
2122
2122
  Constructor for the BaseRepository
2123
2123
 
@@ -2335,7 +2335,7 @@ Useful for pagination.
2335
2335
  countMany(options?): Promise<number>;
2336
2336
  ```
2337
2337
 
2338
- Defined in: [libs/nest-crud/src/base/base-repository.ts:770](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L770)
2338
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:770](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L770)
2339
2339
 
2340
2340
  Count entities matching the specified criteria
2341
2341
 
@@ -2417,7 +2417,7 @@ The data to create entities with
2417
2417
  create(): Entity;
2418
2418
  ```
2419
2419
 
2420
- Defined in: [libs/nest-crud/src/base/base-repository.ts:148](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L148)
2420
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:148](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L148)
2421
2421
 
2422
2422
  Create a new entity instance
2423
2423
 
@@ -2452,7 +2452,7 @@ user.lastName = "Doe";
2452
2452
  create<T>(entityLike): Entity;
2453
2453
  ```
2454
2454
 
2455
- Defined in: [libs/nest-crud/src/base/base-repository.ts:172](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L172)
2455
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:172](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L172)
2456
2456
 
2457
2457
  Create a new entity instance with the provided data
2458
2458
 
@@ -2560,7 +2560,7 @@ const user = userRepository.create({
2560
2560
  create<T>(entityLikeArray): Entity[];
2561
2561
  ```
2562
2562
 
2563
- Defined in: [libs/nest-crud/src/base/base-repository.ts:195](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L195)
2563
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:195](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L195)
2564
2564
 
2565
2565
  Create multiple entity instances
2566
2566
 
@@ -2860,7 +2860,7 @@ WARNING! This method deletes ALL rows in the target table.
2860
2860
  deleteById(id): Promise<DeleteResult>;
2861
2861
  ```
2862
2862
 
2863
- Defined in: [libs/nest-crud/src/base/base-repository.ts:671](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L671)
2863
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:671](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L671)
2864
2864
 
2865
2865
  Soft delete an entity by ID
2866
2866
 
@@ -2923,7 +2923,7 @@ const result = await userRepository.delete("user-id");
2923
2923
  deleteByIds(ids): Promise<DeleteResult>;
2924
2924
  ```
2925
2925
 
2926
- Defined in: [libs/nest-crud/src/base/base-repository.ts:695](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L695)
2926
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:695](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L695)
2927
2927
 
2928
2928
  Soft delete multiple entities by their IDs
2929
2929
 
@@ -3639,7 +3639,7 @@ If entity was not found in the database - rejects with error.
3639
3639
  generateOptions(getOptions): FindOneOptions<Entity>;
3640
3640
  ```
3641
3641
 
3642
- Defined in: [libs/nest-crud/src/base/base-repository.ts:848](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L848)
3642
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:848](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L848)
3643
3643
 
3644
3644
  Generate TypeORM query options from Hichchi query options
3645
3645
 
@@ -3709,7 +3709,7 @@ TypeORM query options
3709
3709
  getById(id, options?): Promise<Entity | null>;
3710
3710
  ```
3711
3711
 
3712
- Defined in: [libs/nest-crud/src/base/base-repository.ts:549](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L549)
3712
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:549](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L549)
3713
3713
 
3714
3714
  Get an entity by ID
3715
3715
 
@@ -3792,7 +3792,7 @@ const user = await userRepository.get("user-id", {
3792
3792
  getByIds(getByIds): Promise<Entity[]>;
3793
3793
  ```
3794
3794
 
3795
- Defined in: [libs/nest-crud/src/base/base-repository.ts:580](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L580)
3795
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:580](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L580)
3796
3796
 
3797
3797
  Get multiple entities by their IDs
3798
3798
 
@@ -3902,7 +3902,7 @@ Gets entity mixed id.
3902
3902
  getMany(getMany): Promise<[Entity[], number]>;
3903
3903
  ```
3904
3904
 
3905
- Defined in: [libs/nest-crud/src/base/base-repository.ts:647](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L647)
3905
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:647](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L647)
3906
3906
 
3907
3907
  Get multiple entities matching the specified criteria
3908
3908
 
@@ -3972,7 +3972,7 @@ const [users, count] = await userRepository.getMany({
3972
3972
  getOne(getOne): Promise<Entity | null>;
3973
3973
  ```
3974
3974
 
3975
- Defined in: [libs/nest-crud/src/base/base-repository.ts:616](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L616)
3975
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:616](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L616)
3976
3976
 
3977
3977
  Get a single entity matching the specified criteria
3978
3978
 
@@ -4038,7 +4038,7 @@ const user = await userRepository.getOne({
4038
4038
  hardDeleteById(id): Promise<DeleteResult>;
4039
4039
  ```
4040
4040
 
4041
- Defined in: [libs/nest-crud/src/base/base-repository.ts:720](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L720)
4041
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:720](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L720)
4042
4042
 
4043
4043
  Permanently delete an entity by ID
4044
4044
 
@@ -4102,7 +4102,7 @@ const result = await userRepository.hardDelete("user-id");
4102
4102
  hardDeleteByIds(ids): Promise<DeleteResult>;
4103
4103
  ```
4104
4104
 
4105
- Defined in: [libs/nest-crud/src/base/base-repository.ts:745](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L745)
4105
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:745](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L745)
4106
4106
 
4107
4107
  Permanently delete multiple entities by their IDs
4108
4108
 
@@ -4326,7 +4326,7 @@ Does not check if entity exist in the database, so query will fail if duplicate
4326
4326
  isFindOperator<T>(value): value is FindOperator<T>;
4327
4327
  ```
4328
4328
 
4329
- Defined in: [libs/nest-crud/src/base/base-repository.ts:940](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L940)
4329
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:940](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L940)
4330
4330
 
4331
4331
  Type guard to check if a value is a TypeORM FindOperator
4332
4332
 
@@ -4412,7 +4412,7 @@ mapAndWhere<T>(
4412
4412
  wrap?): FindOptionsWhere<T>;
4413
4413
  ```
4414
4414
 
4415
- Defined in: [libs/nest-crud/src/base/base-repository.ts:975](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L975)
4415
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:975](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L975)
4416
4416
 
4417
4417
  Map and transform where conditions with operators
4418
4418
 
@@ -4733,7 +4733,7 @@ orWhere(
4733
4733
  operator): FindOptionsWhere<Entity> | FindOptionsWhere<Entity>[];
4734
4734
  ```
4735
4735
 
4736
- Defined in: [libs/nest-crud/src/base/base-repository.ts:909](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L909)
4736
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:909](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L909)
4737
4737
 
4738
4738
  Create OR conditions for search or negation queries
4739
4739
 
@@ -5858,7 +5858,7 @@ If entity does not exist in the database then inserts, otherwise updates.
5858
5858
  saveAndGet<T>(entityLike, options?): Promise<Entity | null>;
5859
5859
  ```
5860
5860
 
5861
- Defined in: [libs/nest-crud/src/base/base-repository.ts:302](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L302)
5861
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:302](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L302)
5862
5862
 
5863
5863
  Save an entity and retrieve it with relations
5864
5864
 
@@ -5995,7 +5995,7 @@ const savedUser = await userRepository.saveAndGet(existingUser, {
5995
5995
  saveMany<T>(entities, options?): Promise<Entity[]>;
5996
5996
  ```
5997
5997
 
5998
- Defined in: [libs/nest-crud/src/base/base-repository.ts:348](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L348)
5998
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:348](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L348)
5999
5999
 
6000
6000
  Save multiple entities to the database
6001
6001
 
@@ -6131,7 +6131,7 @@ const savedUsers = await userRepository.saveMany(existingUsers, {
6131
6131
  saveOne<T>(entityLike, options?): Promise<Entity>;
6132
6132
  ```
6133
6133
 
6134
- Defined in: [libs/nest-crud/src/base/base-repository.ts:253](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L253)
6134
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:253](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L253)
6135
6135
 
6136
6136
  Save an entity to the database
6137
6137
 
@@ -6818,7 +6818,7 @@ Return the SUM of a column
6818
6818
  transaction<T>(operation): Promise<T>;
6819
6819
  ```
6820
6820
 
6821
- Defined in: [libs/nest-crud/src/base/base-repository.ts:807](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L807)
6821
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:807](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L807)
6822
6822
 
6823
6823
  Execute operations within a transaction
6824
6824
 
@@ -7027,7 +7027,7 @@ updateAndGet(
7027
7027
  options?): Promise<Entity | null>;
7028
7028
  ```
7029
7029
 
7030
- Defined in: [libs/nest-crud/src/base/base-repository.ts:412](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L412)
7030
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:412](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L412)
7031
7031
 
7032
7032
  Update an entity and retrieve it with relations
7033
7033
 
@@ -7129,7 +7129,7 @@ const user = await userRepository.updateAndGet(
7129
7129
  updateById(id, partialEntity): Promise<UpdateResult>;
7130
7130
  ```
7131
7131
 
7132
- Defined in: [libs/nest-crud/src/base/base-repository.ts:381](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L381)
7132
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:381](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L381)
7133
7133
 
7134
7134
  Update an entity by ID
7135
7135
 
@@ -7214,7 +7214,7 @@ const result = await userRepository.update("user-id", {
7214
7214
  updateByIds(ids, partialEntity): Promise<UpdateResult>;
7215
7215
  ```
7216
7216
 
7217
- Defined in: [libs/nest-crud/src/base/base-repository.ts:521](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L521)
7217
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:521](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L521)
7218
7218
 
7219
7219
  Update multiple entities by their IDs
7220
7220
 
@@ -7297,7 +7297,7 @@ const result = await userRepository.updateByIds(
7297
7297
  updateMany(where, partialEntity): Promise<UpdateResult>;
7298
7298
  ```
7299
7299
 
7300
- Defined in: [libs/nest-crud/src/base/base-repository.ts:479](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L479)
7300
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:479](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L479)
7301
7301
 
7302
7302
  Update multiple entities matching the specified criteria
7303
7303
 
@@ -7382,7 +7382,7 @@ const result = await userRepository.updateMany(
7382
7382
  updateOne(where, partialEntity): Promise<UpdateResult>;
7383
7383
  ```
7384
7384
 
7385
- Defined in: [libs/nest-crud/src/base/base-repository.ts:446](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-repository.ts#L446)
7385
+ Defined in: [libs/nest-crud/src/base/base-repository.ts:446](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-repository.ts#L446)
7386
7386
 
7387
7387
  Update a single entity matching the specified criteria
7388
7388
 
@@ -7636,7 +7636,7 @@ node_modules/typeorm/repository/Repository.d.ts:28
7636
7636
 
7637
7637
  ### BulkDeleteDto
7638
7638
 
7639
- Defined in: [libs/nest-crud/src/dtos/bulk-delete.dto.ts:45](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L45)
7639
+ Defined in: [libs/nest-crud/src/dtos/bulk-delete.dto.ts:45](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L45)
7640
7640
 
7641
7641
  Data Transfer Object for bulk deletion operations
7642
7642
 
@@ -7730,7 +7730,7 @@ to perform the actual deletion operation.
7730
7730
  </td>
7731
7731
  <td>
7732
7732
 
7733
- [libs/nest-crud/src/dtos/bulk-delete.dto.ts:62](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L62)
7733
+ [libs/nest-crud/src/dtos/bulk-delete.dto.ts:62](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L62)
7734
7734
 
7735
7735
  </td>
7736
7736
  </tr>
@@ -7741,7 +7741,7 @@ to perform the actual deletion operation.
7741
7741
 
7742
7742
  ### `abstract` CrudService
7743
7743
 
7744
- Defined in: [libs/nest-crud/src/services/crud.service.ts:91](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L91)
7744
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:91](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L91)
7745
7745
 
7746
7746
  Abstract base service providing CRUD operations for entities
7747
7747
 
@@ -7842,7 +7842,7 @@ It must extend the Model interface.
7842
7842
  new CrudService<Entity>(repository): CrudService<Entity>;
7843
7843
  ```
7844
7844
 
7845
- Defined in: [libs/nest-crud/src/services/crud.service.ts:132](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L132)
7845
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:132](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L132)
7846
7846
 
7847
7847
  Creates a new instance of CrudService
7848
7848
 
@@ -7917,7 +7917,7 @@ export class UserService extends CrudService<UserEntity> {
7917
7917
  count(getMany?, eh?): Promise<number>;
7918
7918
  ```
7919
7919
 
7920
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1255](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1255)
7920
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1255](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1255)
7921
7921
 
7922
7922
  Counts entities that match the specified conditions
7923
7923
 
@@ -8013,7 +8013,7 @@ const premiumUsers = await userService.count({
8013
8013
  create<T>(createDto?, eh?): Entity;
8014
8014
  ```
8015
8015
 
8016
- Defined in: [libs/nest-crud/src/services/crud.service.ts:200](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L200)
8016
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:200](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L200)
8017
8017
 
8018
8018
  Creates a new entity instance without saving it to the database
8019
8019
 
@@ -8192,7 +8192,7 @@ delete(
8192
8192
  eh?): Promise<Entity>;
8193
8193
  ```
8194
8194
 
8195
- Defined in: [libs/nest-crud/src/services/crud.service.ts:852](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L852)
8195
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:852](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L852)
8196
8196
 
8197
8197
  Deletes an entity by its ID
8198
8198
 
@@ -8287,7 +8287,7 @@ delete(
8287
8287
  eh?): Promise<Entity>;
8288
8288
  ```
8289
8289
 
8290
- Defined in: [libs/nest-crud/src/services/crud.service.ts:866](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L866)
8290
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:866](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L866)
8291
8291
 
8292
8292
  Deletes an entity by its ID with audit tracking
8293
8293
 
@@ -8435,7 +8435,7 @@ deleteByIds(
8435
8435
  eh?): Promise<SuccessResponse>;
8436
8436
  ```
8437
8437
 
8438
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1143](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1143)
8438
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1143](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1143)
8439
8439
 
8440
8440
  Deletes multiple entities by their IDs
8441
8441
 
@@ -8531,7 +8531,7 @@ deleteByIds(
8531
8531
  eh?): Promise<SuccessResponse>;
8532
8532
  ```
8533
8533
 
8534
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1157](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1157)
8534
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1157](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1157)
8535
8535
 
8536
8536
  Deletes multiple entities by their IDs with audit tracking
8537
8537
 
@@ -8682,7 +8682,7 @@ deleteMany(
8682
8682
  eh?): Promise<Entity[]>;
8683
8683
  ```
8684
8684
 
8685
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1044](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1044)
8685
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1044](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1044)
8686
8686
 
8687
8687
  Deletes multiple entities that match the specified conditions
8688
8688
 
@@ -8776,7 +8776,7 @@ deleteMany(
8776
8776
  eh?): Promise<Entity[]>;
8777
8777
  ```
8778
8778
 
8779
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1058](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1058)
8779
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1058](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1058)
8780
8780
 
8781
8781
  Deletes multiple entities that match the specified conditions with audit tracking
8782
8782
 
@@ -8926,7 +8926,7 @@ deleteOne(
8926
8926
  eh?): Promise<Entity>;
8927
8927
  ```
8928
8928
 
8929
- Defined in: [libs/nest-crud/src/services/crud.service.ts:941](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L941)
8929
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:941](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L941)
8930
8930
 
8931
8931
  Deletes a single entity that matches the specified conditions
8932
8932
 
@@ -9020,7 +9020,7 @@ deleteOne(
9020
9020
  eh?): Promise<Entity>;
9021
9021
  ```
9022
9022
 
9023
- Defined in: [libs/nest-crud/src/services/crud.service.ts:955](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L955)
9023
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:955](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L955)
9024
9024
 
9025
9025
  Deletes a single entity that matches the specified conditions with audit tracking
9026
9026
 
@@ -9114,7 +9114,7 @@ get(
9114
9114
  eh?): Promise<Entity>;
9115
9115
  ```
9116
9116
 
9117
- Defined in: [libs/nest-crud/src/services/crud.service.ts:621](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L621)
9117
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:621](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L621)
9118
9118
 
9119
9119
  Retrieves an entity by its ID
9120
9120
 
@@ -9225,7 +9225,7 @@ const userWithProfile = await userService.get(userId, {
9225
9225
  getAll<Options>(getAll?, eh?): Options extends object ? Promise<PaginatedResponse<Entity>> : Promise<Entity[]>;
9226
9226
  ```
9227
9227
 
9228
- Defined in: [libs/nest-crud/src/services/crud.service.ts:821](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L821)
9228
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:821](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L821)
9229
9229
 
9230
9230
  Retrieves all entities, optionally with filtering, sorting, and pagination
9231
9231
 
@@ -9348,7 +9348,7 @@ const sortedUsers = await userService.getAll({
9348
9348
  getByIds(getByIds, eh?): Promise<Entity[]>;
9349
9349
  ```
9350
9350
 
9351
- Defined in: [libs/nest-crud/src/services/crud.service.ts:670](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L670)
9351
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:670](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L670)
9352
9352
 
9353
9353
  Retrieves multiple entities by their IDs
9354
9354
 
@@ -9446,7 +9446,7 @@ const usersWithProfiles = await userService.getByIds({
9446
9446
  getMany<Options>(getMany, eh?): Options extends object ? Promise<PaginatedResponse<Entity>> : Promise<Entity[]>;
9447
9447
  ```
9448
9448
 
9449
- Defined in: [libs/nest-crud/src/services/crud.service.ts:766](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L766)
9449
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:766](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L766)
9450
9450
 
9451
9451
  Retrieves multiple entities that match the specified conditions
9452
9452
 
@@ -9573,7 +9573,7 @@ const sortedUsers = await userService.getMany({
9573
9573
  getOne(getOne, eh?): Promise<Entity>;
9574
9574
  ```
9575
9575
 
9576
- Defined in: [libs/nest-crud/src/services/crud.service.ts:712](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L712)
9576
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:712](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L712)
9577
9577
 
9578
9578
  Retrieves a single entity that matches the specified conditions
9579
9579
 
@@ -9669,7 +9669,7 @@ const userWithProfile = await userService.getOne({
9669
9669
  getRepository(): BaseRepository<Entity>;
9670
9670
  ```
9671
9671
 
9672
- Defined in: [libs/nest-crud/src/services/crud.service.ts:171](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L171)
9672
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:171](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L171)
9673
9673
 
9674
9674
  Gets the repository instance used by this service
9675
9675
 
@@ -9710,7 +9710,7 @@ const entityMetadata = repository.metadata;
9710
9710
  handleError(error, eh?): never;
9711
9711
  ```
9712
9712
 
9713
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1371](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1371)
9713
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1371](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1371)
9714
9714
 
9715
9715
  Handles errors in a standardized way
9716
9716
 
@@ -9812,7 +9812,7 @@ save<T>(
9812
9812
  eh?): Promise<Entity | null>;
9813
9813
  ```
9814
9814
 
9815
- Defined in: [libs/nest-crud/src/services/crud.service.ts:248](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L248)
9815
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:248](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L248)
9816
9816
 
9817
9817
  Creates and saves a new entity to the database
9818
9818
 
@@ -9984,7 +9984,7 @@ saveMany<T>(
9984
9984
  eh?): Promise<Entity[]>;
9985
9985
  ```
9986
9986
 
9987
- Defined in: [libs/nest-crud/src/services/crud.service.ts:298](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L298)
9987
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:298](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L298)
9988
9988
 
9989
9989
  Creates and saves multiple entities to the database
9990
9990
 
@@ -10153,7 +10153,7 @@ const usersWithAudit = await userService.saveMany(
10153
10153
  transaction<T>(operation): Promise<T>;
10154
10154
  ```
10155
10155
 
10156
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1297](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1297)
10156
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1297](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1297)
10157
10157
 
10158
10158
  Executes operations within a transaction
10159
10159
 
@@ -10258,7 +10258,7 @@ const result = await userService.transaction(async (manager: EntityManager) => {
10258
10258
  try<T>(fn): Promise<T>;
10259
10259
  ```
10260
10260
 
10261
- Defined in: [libs/nest-crud/src/services/crud.service.ts:1328](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L1328)
10261
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:1328](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L1328)
10262
10262
 
10263
10263
  Executes a function with error handling
10264
10264
 
@@ -10361,7 +10361,7 @@ update<T>(
10361
10361
  eh?): Promise<Entity>;
10362
10362
  ```
10363
10363
 
10364
- Defined in: [libs/nest-crud/src/services/crud.service.ts:367](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L367)
10364
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:367](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L367)
10365
10365
 
10366
10366
  Updates an entity by its ID
10367
10367
 
@@ -10565,7 +10565,7 @@ updateByIds<T>(
10565
10565
  eh?): Promise<SuccessResponse>;
10566
10566
  ```
10567
10567
 
10568
- Defined in: [libs/nest-crud/src/services/crud.service.ts:564](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L564)
10568
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:564](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L564)
10569
10569
 
10570
10570
  Updates multiple entities by their IDs
10571
10571
 
@@ -10749,7 +10749,7 @@ updateMany<T>(
10749
10749
  eh?): Promise<SuccessResponse>;
10750
10750
  ```
10751
10751
 
10752
- Defined in: [libs/nest-crud/src/services/crud.service.ts:500](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L500)
10752
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:500](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L500)
10753
10753
 
10754
10754
  Updates multiple entities that match the specified conditions
10755
10755
 
@@ -10927,7 +10927,7 @@ updateOne<T>(
10927
10927
  eh?): Promise<Entity>;
10928
10928
  ```
10929
10929
 
10930
- Defined in: [libs/nest-crud/src/services/crud.service.ts:435](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L435)
10930
+ Defined in: [libs/nest-crud/src/services/crud.service.ts:435](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L435)
10931
10931
 
10932
10932
  Updates a single entity that matches the specified conditions
10933
10933
 
@@ -11148,7 +11148,7 @@ The repository for the entity
11148
11148
  </td>
11149
11149
  <td>
11150
11150
 
11151
- [libs/nest-crud/src/services/crud.service.ts:132](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/services/crud.service.ts#L132)
11151
+ [libs/nest-crud/src/services/crud.service.ts:132](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/services/crud.service.ts#L132)
11152
11152
 
11153
11153
  </td>
11154
11154
  </tr>
@@ -11159,7 +11159,7 @@ The repository for the entity
11159
11159
 
11160
11160
  ### HichchiCrudModule
11161
11161
 
11162
- Defined in: [libs/nest-crud/src/crud.module.ts:35](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/crud.module.ts#L35)
11162
+ Defined in: [libs/nest-crud/src/crud.module.ts:35](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/crud.module.ts#L35)
11163
11163
 
11164
11164
  Module for integrating TypeORM with NestJS and providing CRUD functionality
11165
11165
 
@@ -11205,7 +11205,7 @@ new HichchiCrudModule(): HichchiCrudModule;
11205
11205
  static forFeature(entities): DynamicModule;
11206
11206
  ```
11207
11207
 
11208
- Defined in: [libs/nest-crud/src/crud.module.ts:131](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/crud.module.ts#L131)
11208
+ Defined in: [libs/nest-crud/src/crud.module.ts:131](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/crud.module.ts#L131)
11209
11209
 
11210
11210
  Register entities for the HichchiCrudModule
11211
11211
 
@@ -11271,7 +11271,7 @@ export class UserModule {}
11271
11271
  static forRoot(options): DynamicModule;
11272
11272
  ```
11273
11273
 
11274
- Defined in: [libs/nest-crud/src/crud.module.ts:73](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/crud.module.ts#L73)
11274
+ Defined in: [libs/nest-crud/src/crud.module.ts:73](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/crud.module.ts#L73)
11275
11275
 
11276
11276
  Register the HichchiCrudModule
11277
11277
 
@@ -11350,7 +11350,7 @@ export class AppModule {}
11350
11350
  static validateEntities(entities): void;
11351
11351
  ```
11352
11352
 
11353
- Defined in: [libs/nest-crud/src/crud.module.ts:206](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/crud.module.ts#L206)
11353
+ Defined in: [libs/nest-crud/src/crud.module.ts:206](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/crud.module.ts#L206)
11354
11354
 
11355
11355
  Validates entities for registration with the HichchiCrudModule
11356
11356
 
@@ -11415,7 +11415,7 @@ Array of entity classes to validate
11415
11415
 
11416
11416
  ### `abstract` HichchiUserEntity
11417
11417
 
11418
- Defined in: [libs/nest-crud/src/base/base-user.entity.ts:52](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L52)
11418
+ Defined in: [libs/nest-crud/src/base/base-user.entity.ts:52](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L52)
11419
11419
 
11420
11420
  Base user entity class that provides common user fields and functionality
11421
11421
 
@@ -11483,7 +11483,7 @@ new HichchiUserEntity(): HichchiUserEntity;
11483
11483
  protected optional afterLoad(): void;
11484
11484
  ```
11485
11485
 
11486
- Defined in: [libs/nest-crud/src/base/base-user.entity.ts:300](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L300)
11486
+ Defined in: [libs/nest-crud/src/base/base-user.entity.ts:300](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L300)
11487
11487
 
11488
11488
  Lifecycle hook that runs after an entity is loaded from the database
11489
11489
 
@@ -11506,7 +11506,7 @@ UserInfo The interface that defines the user information structure
11506
11506
  protected optional beforeInsert(): void;
11507
11507
  ```
11508
11508
 
11509
- Defined in: [libs/nest-crud/src/base/base-user.entity.ts:285](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L285)
11509
+ Defined in: [libs/nest-crud/src/base/base-user.entity.ts:285](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L285)
11510
11510
 
11511
11511
  Lifecycle hooks that run before an entity is inserted or updated
11512
11512
 
@@ -11551,7 +11551,7 @@ third-party identity providers.
11551
11551
  </td>
11552
11552
  <td>
11553
11553
 
11554
- [libs/nest-crud/src/base/base-user.entity.ts:221](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L221)
11554
+ [libs/nest-crud/src/base/base-user.entity.ts:221](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L221)
11555
11555
 
11556
11556
  </td>
11557
11557
  </tr>
@@ -11576,7 +11576,7 @@ It is not nullable and cannot be changed after creation.
11576
11576
  </td>
11577
11577
  <td>
11578
11578
 
11579
- [libs/nest-crud/src/base/base-user.entity.ts:69](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L69)
11579
+ [libs/nest-crud/src/base/base-user.entity.ts:69](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L69)
11580
11580
 
11581
11581
  </td>
11582
11582
  </tr>
@@ -11601,7 +11601,7 @@ It is automatically loaded when the entity is retrieved with relations.
11601
11601
  </td>
11602
11602
  <td>
11603
11603
 
11604
- [libs/nest-crud/src/base/base-user.entity.ts:106](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L106)
11604
+ [libs/nest-crud/src/base/base-user.entity.ts:106](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L106)
11605
11605
 
11606
11606
  </td>
11607
11607
  </tr>
@@ -11626,7 +11626,7 @@ It is used for the foreign key relationship with the createdBy field.
11626
11626
  </td>
11627
11627
  <td>
11628
11628
 
11629
- [libs/nest-crud/src/base/base-user.entity.ts:96](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L96)
11629
+ [libs/nest-crud/src/base/base-user.entity.ts:96](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L96)
11630
11630
 
11631
11631
  </td>
11632
11632
  </tr>
@@ -11651,7 +11651,7 @@ soft delete functionality. When this field has a value, the entity is considered
11651
11651
  </td>
11652
11652
  <td>
11653
11653
 
11654
- [libs/nest-crud/src/base/base-user.entity.ts:87](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L87)
11654
+ [libs/nest-crud/src/base/base-user.entity.ts:87](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L87)
11655
11655
 
11656
11656
  </td>
11657
11657
  </tr>
@@ -11676,7 +11676,7 @@ It is automatically loaded when the entity is retrieved with relations.
11676
11676
  </td>
11677
11677
  <td>
11678
11678
 
11679
- [libs/nest-crud/src/base/base-user.entity.ts:144](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L144)
11679
+ [libs/nest-crud/src/base/base-user.entity.ts:144](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L144)
11680
11680
 
11681
11681
  </td>
11682
11682
  </tr>
@@ -11701,7 +11701,7 @@ It is used for the foreign key relationship with the deletedBy field.
11701
11701
  </td>
11702
11702
  <td>
11703
11703
 
11704
- [libs/nest-crud/src/base/base-user.entity.ts:134](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L134)
11704
+ [libs/nest-crud/src/base/base-user.entity.ts:134](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L134)
11705
11705
 
11706
11706
  </td>
11707
11707
  </tr>
@@ -11727,7 +11727,7 @@ or uses alternative authentication methods.
11727
11727
  </td>
11728
11728
  <td>
11729
11729
 
11730
- [libs/nest-crud/src/base/base-user.entity.ts:183](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L183)
11730
+ [libs/nest-crud/src/base/base-user.entity.ts:183](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L183)
11731
11731
 
11732
11732
  </td>
11733
11733
  </tr>
@@ -11752,7 +11752,7 @@ accounts from accessing restricted features.
11752
11752
  </td>
11753
11753
  <td>
11754
11754
 
11755
- [libs/nest-crud/src/base/base-user.entity.ts:212](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L212)
11755
+ [libs/nest-crud/src/base/base-user.entity.ts:212](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L212)
11756
11756
 
11757
11757
  </td>
11758
11758
  </tr>
@@ -11778,7 +11778,7 @@ be null.
11778
11778
  </td>
11779
11779
  <td>
11780
11780
 
11781
- [libs/nest-crud/src/base/base-user.entity.ts:154](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L154)
11781
+ [libs/nest-crud/src/base/base-user.entity.ts:154](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L154)
11782
11782
 
11783
11783
  </td>
11784
11784
  </tr>
@@ -11804,7 +11804,7 @@ automatically maintained by the beforeInsert and beforeUpdate hooks.
11804
11804
  </td>
11805
11805
  <td>
11806
11806
 
11807
- [libs/nest-crud/src/base/base-user.entity.ts:173](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L173)
11807
+ [libs/nest-crud/src/base/base-user.entity.ts:173](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L173)
11808
11808
 
11809
11809
  </td>
11810
11810
  </tr>
@@ -11829,7 +11829,7 @@ It serves as the primary key for the entity in the database.
11829
11829
  </td>
11830
11830
  <td>
11831
11831
 
11832
- [libs/nest-crud/src/base/base-user.entity.ts:60](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L60)
11832
+ [libs/nest-crud/src/base/base-user.entity.ts:60](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L60)
11833
11833
 
11834
11834
  </td>
11835
11835
  </tr>
@@ -11854,7 +11854,7 @@ for formal addressing and identification. It is required and cannot be null.
11854
11854
  </td>
11855
11855
  <td>
11856
11856
 
11857
- [libs/nest-crud/src/base/base-user.entity.ts:163](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L163)
11857
+ [libs/nest-crud/src/base/base-user.entity.ts:163](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L163)
11858
11858
 
11859
11859
  </td>
11860
11860
  </tr>
@@ -11879,7 +11879,7 @@ plaintext credentials. It may be null for users authenticated via external provi
11879
11879
  </td>
11880
11880
  <td>
11881
11881
 
11882
- [libs/nest-crud/src/base/base-user.entity.ts:203](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L203)
11882
+ [libs/nest-crud/src/base/base-user.entity.ts:203](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L203)
11883
11883
 
11884
11884
  </td>
11885
11885
  </tr>
@@ -11903,7 +11903,7 @@ Stores provider-specific or extended profile attributes in JSON format.
11903
11903
  </td>
11904
11904
  <td>
11905
11905
 
11906
- [libs/nest-crud/src/base/base-user.entity.ts:229](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L229)
11906
+ [libs/nest-crud/src/base/base-user.entity.ts:229](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L229)
11907
11907
 
11908
11908
  </td>
11909
11909
  </tr>
@@ -11928,7 +11928,7 @@ depending on how the entity is loaded and mapped.
11928
11928
  </td>
11929
11929
  <td>
11930
11930
 
11931
- [libs/nest-crud/src/base/base-user.entity.ts:246](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L246)
11931
+ [libs/nest-crud/src/base/base-user.entity.ts:246](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L246)
11932
11932
 
11933
11933
  </td>
11934
11934
  </tr>
@@ -11952,7 +11952,7 @@ Optional foreign key reference to the role entity for direct relational access.
11952
11952
  </td>
11953
11953
  <td>
11954
11954
 
11955
- [libs/nest-crud/src/base/base-user.entity.ts:254](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L254)
11955
+ [libs/nest-crud/src/base/base-user.entity.ts:254](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L254)
11956
11956
 
11957
11957
  </td>
11958
11958
  </tr>
@@ -11976,7 +11976,7 @@ Determines which sign-in flow and credential requirements apply to the user.
11976
11976
  </td>
11977
11977
  <td>
11978
11978
 
11979
- [libs/nest-crud/src/base/base-user.entity.ts:237](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L237)
11979
+ [libs/nest-crud/src/base/base-user.entity.ts:237](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L237)
11980
11980
 
11981
11981
  </td>
11982
11982
  </tr>
@@ -12004,7 +12004,7 @@ This variable is often used to scope application logic and data to a specific te
12004
12004
  </td>
12005
12005
  <td>
12006
12006
 
12007
- [libs/nest-crud/src/base/base-user.entity.ts:266](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L266)
12007
+ [libs/nest-crud/src/base/base-user.entity.ts:266](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L266)
12008
12008
 
12009
12009
  </td>
12010
12010
  </tr>
@@ -12028,7 +12028,7 @@ Optional foreign key reference used to scope data to a tenant context.
12028
12028
  </td>
12029
12029
  <td>
12030
12030
 
12031
- [libs/nest-crud/src/base/base-user.entity.ts:274](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L274)
12031
+ [libs/nest-crud/src/base/base-user.entity.ts:274](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L274)
12032
12032
 
12033
12033
  </td>
12034
12034
  </tr>
@@ -12053,7 +12053,7 @@ and updated whenever the entity is modified.
12053
12053
  </td>
12054
12054
  <td>
12055
12055
 
12056
- [libs/nest-crud/src/base/base-user.entity.ts:78](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L78)
12056
+ [libs/nest-crud/src/base/base-user.entity.ts:78](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L78)
12057
12057
 
12058
12058
  </td>
12059
12059
  </tr>
@@ -12078,7 +12078,7 @@ It is automatically loaded when the entity is retrieved with relations.
12078
12078
  </td>
12079
12079
  <td>
12080
12080
 
12081
- [libs/nest-crud/src/base/base-user.entity.ts:125](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L125)
12081
+ [libs/nest-crud/src/base/base-user.entity.ts:125](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L125)
12082
12082
 
12083
12083
  </td>
12084
12084
  </tr>
@@ -12103,7 +12103,7 @@ It is used for the foreign key relationship with the updatedBy field.
12103
12103
  </td>
12104
12104
  <td>
12105
12105
 
12106
- [libs/nest-crud/src/base/base-user.entity.ts:115](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L115)
12106
+ [libs/nest-crud/src/base/base-user.entity.ts:115](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L115)
12107
12107
 
12108
12108
  </td>
12109
12109
  </tr>
@@ -12129,7 +12129,7 @@ alternative authentication methods like email-only authentication.
12129
12129
  </td>
12130
12130
  <td>
12131
12131
 
12132
- [libs/nest-crud/src/base/base-user.entity.ts:193](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-user.entity.ts#L193)
12132
+ [libs/nest-crud/src/base/base-user.entity.ts:193](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-user.entity.ts#L193)
12133
12133
 
12134
12134
  </td>
12135
12135
  </tr>
@@ -12140,7 +12140,7 @@ alternative authentication methods like email-only authentication.
12140
12140
 
12141
12141
  ### IdsDto
12142
12142
 
12143
- Defined in: [libs/nest-crud/src/dtos/ids.dto.ts:10](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/dtos/ids.dto.ts#L10)
12143
+ Defined in: [libs/nest-crud/src/dtos/ids.dto.ts:10](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/dtos/ids.dto.ts#L10)
12144
12144
 
12145
12145
  #### Implements
12146
12146
 
@@ -12182,7 +12182,7 @@ new IdsDto(): IdsDto;
12182
12182
  </td>
12183
12183
  <td>
12184
12184
 
12185
- [libs/nest-crud/src/dtos/ids.dto.ts:14](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/dtos/ids.dto.ts#L14)
12185
+ [libs/nest-crud/src/dtos/ids.dto.ts:14](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/dtos/ids.dto.ts#L14)
12186
12186
 
12187
12187
  </td>
12188
12188
  </tr>
@@ -15299,7 +15299,7 @@ node_modules/typeorm/repository/Repository.d.ts:28
15299
15299
 
15300
15300
  ### Operation
15301
15301
 
15302
- Defined in: [libs/nest-crud/src/enums/crud.enums.ts:50](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L50)
15302
+ Defined in: [libs/nest-crud/src/enums/crud.enums.ts:50](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L50)
15303
15303
 
15304
15304
  CRUD Operations Enum
15305
15305
 
@@ -15345,7 +15345,7 @@ and performs any initialization logic required for new entities.
15345
15345
  </td>
15346
15346
  <td>
15347
15347
 
15348
- [libs/nest-crud/src/enums/crud.enums.ts:58](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L58)
15348
+ [libs/nest-crud/src/enums/crud.enums.ts:58](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L58)
15349
15349
 
15350
15350
  </td>
15351
15351
  </tr>
@@ -15371,7 +15371,7 @@ enforce referential integrity constraints, depending on the configuration.
15371
15371
  </td>
15372
15372
  <td>
15373
15373
 
15374
- [libs/nest-crud/src/enums/crud.enums.ts:85](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L85)
15374
+ [libs/nest-crud/src/enums/crud.enums.ts:85](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L85)
15375
15375
 
15376
15376
  </td>
15377
15377
  </tr>
@@ -15397,7 +15397,7 @@ entity already exists in the database.
15397
15397
  </td>
15398
15398
  <td>
15399
15399
 
15400
- [libs/nest-crud/src/enums/crud.enums.ts:76](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L76)
15400
+ [libs/nest-crud/src/enums/crud.enums.ts:76](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L76)
15401
15401
 
15402
15402
  </td>
15403
15403
  </tr>
@@ -15423,7 +15423,7 @@ and may enforce different validation rules than creation.
15423
15423
  </td>
15424
15424
  <td>
15425
15425
 
15426
- [libs/nest-crud/src/enums/crud.enums.ts:67](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L67)
15426
+ [libs/nest-crud/src/enums/crud.enums.ts:67](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L67)
15427
15427
 
15428
15428
  </td>
15429
15429
  </tr>
@@ -15434,7 +15434,7 @@ and may enforce different validation rules than creation.
15434
15434
 
15435
15435
  ### TypeORMErrorType
15436
15436
 
15437
- Defined in: [libs/nest-crud/src/enums/crud.enums.ts:13](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L13)
15437
+ Defined in: [libs/nest-crud/src/enums/crud.enums.ts:13](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L13)
15438
15438
 
15439
15439
  TypeORM Database Error Types
15440
15440
 
@@ -15478,7 +15478,7 @@ often caused by typos in column names or outdated queries after schema changes.
15478
15478
  </td>
15479
15479
  <td>
15480
15480
 
15481
- [libs/nest-crud/src/enums/crud.enums.ts:36](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L36)
15481
+ [libs/nest-crud/src/enums/crud.enums.ts:36](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L36)
15482
15482
 
15483
15483
  </td>
15484
15484
  </tr>
@@ -15501,7 +15501,7 @@ constraint, such as primary keys or columns with unique indexes.
15501
15501
  </td>
15502
15502
  <td>
15503
15503
 
15504
- [libs/nest-crud/src/enums/crud.enums.ts:24](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L24)
15504
+ [libs/nest-crud/src/enums/crud.enums.ts:24](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L24)
15505
15505
 
15506
15506
  </td>
15507
15507
  </tr>
@@ -15524,7 +15524,7 @@ has no default value defined in the database schema.
15524
15524
  </td>
15525
15525
  <td>
15526
15526
 
15527
- [libs/nest-crud/src/enums/crud.enums.ts:18](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L18)
15527
+ [libs/nest-crud/src/enums/crud.enums.ts:18](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L18)
15528
15528
 
15529
15529
  </td>
15530
15530
  </tr>
@@ -15547,7 +15547,7 @@ typically occurring during insert or update operations with invalid foreign key
15547
15547
  </td>
15548
15548
  <td>
15549
15549
 
15550
- [libs/nest-crud/src/enums/crud.enums.ts:30](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/enums/crud.enums.ts#L30)
15550
+ [libs/nest-crud/src/enums/crud.enums.ts:30](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/enums/crud.enums.ts#L30)
15551
15551
 
15552
15552
  </td>
15553
15553
  </tr>
@@ -15562,7 +15562,7 @@ typically occurring during insert or update operations with invalid foreign key
15562
15562
  function Filters(): ParameterDecorator;
15563
15563
  ```
15564
15564
 
15565
- Defined in: [libs/nest-crud/src/decorators/filter.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/filter.decorator.ts#L85)
15565
+ Defined in: [libs/nest-crud/src/decorators/filter.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/filter.decorator.ts#L85)
15566
15566
 
15567
15567
  Filter parameter decorator
15568
15568
 
@@ -15654,7 +15654,7 @@ export class ProductController {
15654
15654
  function HichchiEntity(tableName, unique?, skipFkValidation?): EntityDecorator;
15655
15655
  ```
15656
15656
 
15657
- Defined in: [libs/nest-crud/src/decorators/entity.decorator.ts:109](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/entity.decorator.ts#L109)
15657
+ Defined in: [libs/nest-crud/src/decorators/entity.decorator.ts:109](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/entity.decorator.ts#L109)
15658
15658
 
15659
15659
  Decorator for creating a new entity with enhanced validation and metadata registration
15660
15660
 
@@ -15835,7 +15835,7 @@ If entity naming conventions or relationship definitions are invalid
15835
15835
  function HichchiEntityExtension(tableName): EntityExtensionDecorator;
15836
15836
  ```
15837
15837
 
15838
- Defined in: [libs/nest-crud/src/decorators/entity-extension.decorator.ts:54](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/entity-extension.decorator.ts#L54)
15838
+ Defined in: [libs/nest-crud/src/decorators/entity-extension.decorator.ts:54](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/entity-extension.decorator.ts#L54)
15839
15839
 
15840
15840
  Decorator for creating entity extensions with enhanced validation
15841
15841
 
@@ -15941,7 +15941,7 @@ If extension class doesn't extend BaseEntityExtension or has invalid relationshi
15941
15941
  function HichchiJoinColumn(options?): PropertyDecorator;
15942
15942
  ```
15943
15943
 
15944
- Defined in: [libs/nest-crud/src/decorators/join-column.decorator.ts:51](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/join-column.decorator.ts#L51)
15944
+ Defined in: [libs/nest-crud/src/decorators/join-column.decorator.ts:51](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/join-column.decorator.ts#L51)
15945
15945
 
15946
15946
  Decorator for creating a join column with automatic foreign key constraint naming
15947
15947
 
@@ -16030,7 +16030,7 @@ JoinColumn TypeORM's JoinColumn decorator that this extends
16030
16030
  function HichchiRepository<Entity>(entity): RepositoryDecorator;
16031
16031
  ```
16032
16032
 
16033
- Defined in: [libs/nest-crud/src/decorators/repository.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/repository.decorator.ts#L63)
16033
+ Defined in: [libs/nest-crud/src/decorators/repository.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/repository.decorator.ts#L63)
16034
16034
 
16035
16035
  Decorator for creating a repository with automatic dependency injection
16036
16036
 
@@ -16175,7 +16175,7 @@ Numeric limit fallback when `input` is numeric
16175
16175
  function Pager(): ParameterDecorator;
16176
16176
  ```
16177
16177
 
16178
- Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:33](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/page.decorator.ts#L33)
16178
+ Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:33](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/page.decorator.ts#L33)
16179
16179
 
16180
16180
  Pagination parameter decorator overload for query-driven pagination.
16181
16181
 
@@ -16216,7 +16216,7 @@ list(@Pager() pagination?: Pagination) {
16216
16216
  function Pager(page, limit): ParameterDecorator;
16217
16217
  ```
16218
16218
 
16219
- Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/page.decorator.ts#L63)
16219
+ Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/page.decorator.ts#L63)
16220
16220
 
16221
16221
  Pagination parameter decorator overload with numeric fallback defaults.
16222
16222
 
@@ -16305,7 +16305,7 @@ list(@Pager(1, 25) pagination?: Pagination) {
16305
16305
  function Pager(defaultOptions?): ParameterDecorator;
16306
16306
  ```
16307
16307
 
16308
- Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:168](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/page.decorator.ts#L168)
16308
+ Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:168](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/page.decorator.ts#L168)
16309
16309
 
16310
16310
  Pagination parameter decorator
16311
16311
 
@@ -16450,7 +16450,7 @@ export class ArticleController {
16450
16450
  function Search(): ParameterDecorator;
16451
16451
  ```
16452
16452
 
16453
- Defined in: [libs/nest-crud/src/decorators/search.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/search.decorator.ts#L85)
16453
+ Defined in: [libs/nest-crud/src/decorators/search.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/search.decorator.ts#L85)
16454
16454
 
16455
16455
  Search parameter decorator
16456
16456
 
@@ -16545,7 +16545,7 @@ export class ProductController {
16545
16545
  function Sorter(): ParameterDecorator;
16546
16546
  ```
16547
16547
 
16548
- Defined in: [libs/nest-crud/src/decorators/sort.decorator.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/decorators/sort.decorator.ts#L90)
16548
+ Defined in: [libs/nest-crud/src/decorators/sort.decorator.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/decorators/sort.decorator.ts#L90)
16549
16549
 
16550
16550
  Sort parameter decorator
16551
16551
 
@@ -16641,7 +16641,7 @@ export class ProductController {
16641
16641
 
16642
16642
  ### ConnectionOptions
16643
16643
 
16644
- Defined in: [libs/nest-crud/src/interfaces/connection-options.interface.ts:45](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L45)
16644
+ Defined in: [libs/nest-crud/src/interfaces/connection-options.interface.ts:45](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L45)
16645
16645
 
16646
16646
  Database connection configuration options.
16647
16647
 
@@ -16732,7 +16732,7 @@ autoLoadEntities: true;
16732
16732
  </td>
16733
16733
  <td>
16734
16734
 
16735
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:185](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L185)
16735
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:185](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L185)
16736
16736
 
16737
16737
  </td>
16738
16738
  </tr>
@@ -16764,7 +16764,7 @@ charset: "utf8mb4";
16764
16764
  </td>
16765
16765
  <td>
16766
16766
 
16767
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:148](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L148)
16767
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:148](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L148)
16768
16768
 
16769
16769
  </td>
16770
16770
  </tr>
@@ -16795,7 +16795,7 @@ database: "my_application_db";
16795
16795
  </td>
16796
16796
  <td>
16797
16797
 
16798
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:114](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L114)
16798
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:114](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L114)
16799
16799
 
16800
16800
  </td>
16801
16801
  </tr>
@@ -16826,7 +16826,7 @@ entities: [__dirname + "/** /*.entity{.ts,.js}"];
16826
16826
  </td>
16827
16827
  <td>
16828
16828
 
16829
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:125](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L125)
16829
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:125](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L125)
16830
16830
 
16831
16831
  </td>
16832
16832
  </tr>
@@ -16861,7 +16861,7 @@ host: "localhost";
16861
16861
  </td>
16862
16862
  <td>
16863
16863
 
16864
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:69](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L69)
16864
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:69](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L69)
16865
16865
 
16866
16866
  </td>
16867
16867
  </tr>
@@ -16893,7 +16893,7 @@ false;
16893
16893
  </td>
16894
16894
  <td>
16895
16895
 
16896
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:172](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L172)
16896
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:172](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L172)
16897
16897
 
16898
16898
  </td>
16899
16899
  </tr>
@@ -16924,7 +16924,7 @@ migrations: [__dirname + "/migrations/*{.ts,.js}"];
16924
16924
  </td>
16925
16925
  <td>
16926
16926
 
16927
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:136](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L136)
16927
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:136](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L136)
16928
16928
 
16929
16929
  </td>
16930
16930
  </tr>
@@ -16956,7 +16956,7 @@ password: process.env.DB_PASSWORD;
16956
16956
  </td>
16957
16957
  <td>
16958
16958
 
16959
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:103](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L103)
16959
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:103](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L103)
16960
16960
 
16961
16961
  </td>
16962
16962
  </tr>
@@ -16987,7 +16987,7 @@ port: 3306;
16987
16987
  </td>
16988
16988
  <td>
16989
16989
 
16990
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:80](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L80)
16990
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:80](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L80)
16991
16991
 
16992
16992
  </td>
16993
16993
  </tr>
@@ -17025,7 +17025,7 @@ synchronize: false;
17025
17025
  </td>
17026
17026
  <td>
17027
17027
 
17028
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:161](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L161)
17028
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:161](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L161)
17029
17029
 
17030
17030
  </td>
17031
17031
  </tr>
@@ -17057,7 +17057,7 @@ type: "mysql";
17057
17057
  </td>
17058
17058
  <td>
17059
17059
 
17060
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:56](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L56)
17060
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:56](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L56)
17061
17061
 
17062
17062
  </td>
17063
17063
  </tr>
@@ -17088,7 +17088,7 @@ username: "app_user";
17088
17088
  </td>
17089
17089
  <td>
17090
17090
 
17091
- [libs/nest-crud/src/interfaces/connection-options.interface.ts:91](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/connection-options.interface.ts#L91)
17091
+ [libs/nest-crud/src/interfaces/connection-options.interface.ts:91](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/connection-options.interface.ts#L91)
17092
17092
 
17093
17093
  </td>
17094
17094
  </tr>
@@ -17099,7 +17099,7 @@ username: "app_user";
17099
17099
 
17100
17100
  ### GetByIdsOptions
17101
17101
 
17102
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:363](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L363)
17102
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:363](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L363)
17103
17103
 
17104
17104
  Options interface for retrieving entities by their IDs.
17105
17105
 
@@ -17199,7 +17199,7 @@ ids: ["abc123", "def456"]; // For string IDs
17199
17199
  </td>
17200
17200
  <td>
17201
17201
 
17202
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:375](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L375)
17202
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:375](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L375)
17203
17203
 
17204
17204
  </td>
17205
17205
  </tr>
@@ -17239,7 +17239,7 @@ async createUserWithProfile(data, manager: EntityManager) {
17239
17239
  </td>
17240
17240
  <td>
17241
17241
 
17242
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17242
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17243
17243
 
17244
17244
  </td>
17245
17245
  </tr>
@@ -17280,7 +17280,7 @@ options: {
17280
17280
  </td>
17281
17281
  <td>
17282
17282
 
17283
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17283
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17284
17284
 
17285
17285
  </td>
17286
17286
  </tr>
@@ -17317,7 +17317,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
17317
17317
  </td>
17318
17318
  <td>
17319
17319
 
17320
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17320
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17321
17321
 
17322
17322
  </td>
17323
17323
  </tr>
@@ -17364,7 +17364,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
17364
17364
  </td>
17365
17365
  <td>
17366
17366
 
17367
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17367
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17368
17368
 
17369
17369
  </td>
17370
17370
  </tr>
@@ -17404,7 +17404,7 @@ sort: {
17404
17404
  </td>
17405
17405
  <td>
17406
17406
 
17407
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
17407
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
17408
17408
 
17409
17409
  </td>
17410
17410
  </tr>
@@ -17415,7 +17415,7 @@ sort: {
17415
17415
 
17416
17416
  ### GetManyOptionsFilter
17417
17417
 
17418
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:472](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L472)
17418
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:472](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L472)
17419
17419
 
17420
17420
  Options for retrieving multiple entities with pagination and filter-based query keys.
17421
17421
 
@@ -17487,7 +17487,7 @@ filters: { status: 'active', type: 'user' }
17487
17487
  </td>
17488
17488
  <td>
17489
17489
 
17490
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
17490
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
17491
17491
 
17492
17492
  </td>
17493
17493
  </tr>
@@ -17527,7 +17527,7 @@ async createUserWithProfile(data, manager: EntityManager) {
17527
17527
  </td>
17528
17528
  <td>
17529
17529
 
17530
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17530
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17531
17531
 
17532
17532
  </td>
17533
17533
  </tr>
@@ -17568,7 +17568,7 @@ options: {
17568
17568
  </td>
17569
17569
  <td>
17570
17570
 
17571
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17571
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17572
17572
 
17573
17573
  </td>
17574
17574
  </tr>
@@ -17605,7 +17605,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
17605
17605
  </td>
17606
17606
  <td>
17607
17607
 
17608
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17608
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17609
17609
 
17610
17610
  </td>
17611
17611
  </tr>
@@ -17652,7 +17652,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
17652
17652
  </td>
17653
17653
  <td>
17654
17654
 
17655
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17655
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17656
17656
 
17657
17657
  </td>
17658
17658
  </tr>
@@ -17692,7 +17692,7 @@ sort: {
17692
17692
  </td>
17693
17693
  <td>
17694
17694
 
17695
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
17695
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
17696
17696
 
17697
17697
  </td>
17698
17698
  </tr>
@@ -17720,7 +17720,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
17720
17720
  </td>
17721
17721
  <td>
17722
17722
 
17723
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
17723
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
17724
17724
 
17725
17725
  </td>
17726
17726
  </tr>
@@ -17731,7 +17731,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
17731
17731
 
17732
17732
  ### GetManyOptionsNot
17733
17733
 
17734
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:518](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L518)
17734
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:518](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L518)
17735
17735
 
17736
17736
  Options interface for retrieving multiple entities using exclusion-based filtering with pagination.
17737
17737
 
@@ -17830,7 +17830,7 @@ async createUserWithProfile(data, manager: EntityManager) {
17830
17830
  </td>
17831
17831
  <td>
17832
17832
 
17833
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17833
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
17834
17834
 
17835
17835
  </td>
17836
17836
  </tr>
@@ -17866,7 +17866,7 @@ not: { role: 'admin', status: 'deleted' }
17866
17866
  </td>
17867
17867
  <td>
17868
17868
 
17869
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
17869
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
17870
17870
 
17871
17871
  </td>
17872
17872
  </tr>
@@ -17907,7 +17907,7 @@ options: {
17907
17907
  </td>
17908
17908
  <td>
17909
17909
 
17910
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17910
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
17911
17911
 
17912
17912
  </td>
17913
17913
  </tr>
@@ -17944,7 +17944,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
17944
17944
  </td>
17945
17945
  <td>
17946
17946
 
17947
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17947
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
17948
17948
 
17949
17949
  </td>
17950
17950
  </tr>
@@ -17991,7 +17991,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
17991
17991
  </td>
17992
17992
  <td>
17993
17993
 
17994
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17994
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
17995
17995
 
17996
17996
  </td>
17997
17997
  </tr>
@@ -18031,7 +18031,7 @@ sort: {
18031
18031
  </td>
18032
18032
  <td>
18033
18033
 
18034
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18034
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18035
18035
 
18036
18036
  </td>
18037
18037
  </tr>
@@ -18059,7 +18059,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
18059
18059
  </td>
18060
18060
  <td>
18061
18061
 
18062
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
18062
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
18063
18063
 
18064
18064
  </td>
18065
18065
  </tr>
@@ -18070,7 +18070,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
18070
18070
 
18071
18071
  ### GetManyOptionsSearch
18072
18072
 
18073
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:495](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L495)
18073
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:495](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L495)
18074
18074
 
18075
18075
  Options interface for retrieving multiple entities using search-based filtering with pagination.
18076
18076
 
@@ -18169,7 +18169,7 @@ async createUserWithProfile(data, manager: EntityManager) {
18169
18169
  </td>
18170
18170
  <td>
18171
18171
 
18172
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18172
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18173
18173
 
18174
18174
  </td>
18175
18175
  </tr>
@@ -18210,7 +18210,7 @@ options: {
18210
18210
  </td>
18211
18211
  <td>
18212
18212
 
18213
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18213
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18214
18214
 
18215
18215
  </td>
18216
18216
  </tr>
@@ -18247,7 +18247,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
18247
18247
  </td>
18248
18248
  <td>
18249
18249
 
18250
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
18250
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
18251
18251
 
18252
18252
  </td>
18253
18253
  </tr>
@@ -18294,7 +18294,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
18294
18294
  </td>
18295
18295
  <td>
18296
18296
 
18297
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
18297
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
18298
18298
 
18299
18299
  </td>
18300
18300
  </tr>
@@ -18334,7 +18334,7 @@ search: {
18334
18334
  </td>
18335
18335
  <td>
18336
18336
 
18337
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
18337
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
18338
18338
 
18339
18339
  </td>
18340
18340
  </tr>
@@ -18374,7 +18374,7 @@ sort: {
18374
18374
  </td>
18375
18375
  <td>
18376
18376
 
18377
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18377
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18378
18378
 
18379
18379
  </td>
18380
18380
  </tr>
@@ -18402,7 +18402,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
18402
18402
  </td>
18403
18403
  <td>
18404
18404
 
18405
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
18405
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
18406
18406
 
18407
18407
  </td>
18408
18408
  </tr>
@@ -18413,7 +18413,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
18413
18413
 
18414
18414
  ### GetManyOptionsWhere
18415
18415
 
18416
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:543](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L543)
18416
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:543](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L543)
18417
18417
 
18418
18418
  Options interface for retrieving multiple entities using direct WHERE clause with pagination.
18419
18419
 
@@ -18499,7 +18499,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
18499
18499
  </td>
18500
18500
  <td>
18501
18501
 
18502
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
18502
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
18503
18503
 
18504
18504
  </td>
18505
18505
  </tr>
@@ -18539,7 +18539,7 @@ async createUserWithProfile(data, manager: EntityManager) {
18539
18539
  </td>
18540
18540
  <td>
18541
18541
 
18542
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18542
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18543
18543
 
18544
18544
  </td>
18545
18545
  </tr>
@@ -18567,7 +18567,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
18567
18567
  </td>
18568
18568
  <td>
18569
18569
 
18570
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
18570
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
18571
18571
 
18572
18572
  </td>
18573
18573
  </tr>
@@ -18608,7 +18608,7 @@ options: {
18608
18608
  </td>
18609
18609
  <td>
18610
18610
 
18611
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18611
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18612
18612
 
18613
18613
  </td>
18614
18614
  </tr>
@@ -18645,7 +18645,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
18645
18645
  </td>
18646
18646
  <td>
18647
18647
 
18648
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
18648
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
18649
18649
 
18650
18650
  </td>
18651
18651
  </tr>
@@ -18692,7 +18692,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
18692
18692
  </td>
18693
18693
  <td>
18694
18694
 
18695
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
18695
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
18696
18696
 
18697
18697
  </td>
18698
18698
  </tr>
@@ -18720,7 +18720,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
18720
18720
  </td>
18721
18721
  <td>
18722
18722
 
18723
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
18723
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
18724
18724
 
18725
18725
  </td>
18726
18726
  </tr>
@@ -18760,7 +18760,7 @@ sort: {
18760
18760
  </td>
18761
18761
  <td>
18762
18762
 
18763
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18763
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
18764
18764
 
18765
18765
  </td>
18766
18766
  </tr>
@@ -18806,7 +18806,7 @@ where: [
18806
18806
  </td>
18807
18807
  <td>
18808
18808
 
18809
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
18809
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
18810
18810
 
18811
18811
  </td>
18812
18812
  </tr>
@@ -18817,7 +18817,7 @@ where: [
18817
18817
 
18818
18818
  ### GetOneOptionsFilter
18819
18819
 
18820
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:402](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L402)
18820
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:402](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L402)
18821
18821
 
18822
18822
  Options for retrieving a single entity using filter-based query keys.
18823
18823
 
@@ -18893,7 +18893,7 @@ filters: { status: 'active', type: 'user' }
18893
18893
  </td>
18894
18894
  <td>
18895
18895
 
18896
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
18896
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
18897
18897
 
18898
18898
  </td>
18899
18899
  </tr>
@@ -18933,7 +18933,7 @@ async createUserWithProfile(data, manager: EntityManager) {
18933
18933
  </td>
18934
18934
  <td>
18935
18935
 
18936
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18936
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
18937
18937
 
18938
18938
  </td>
18939
18939
  </tr>
@@ -18974,7 +18974,7 @@ options: {
18974
18974
  </td>
18975
18975
  <td>
18976
18976
 
18977
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18977
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
18978
18978
 
18979
18979
  </td>
18980
18980
  </tr>
@@ -19021,7 +19021,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
19021
19021
  </td>
19022
19022
  <td>
19023
19023
 
19024
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19024
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19025
19025
 
19026
19026
  </td>
19027
19027
  </tr>
@@ -19061,7 +19061,7 @@ sort: {
19061
19061
  </td>
19062
19062
  <td>
19063
19063
 
19064
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19064
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19065
19065
 
19066
19066
  </td>
19067
19067
  </tr>
@@ -19089,7 +19089,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19089
19089
  </td>
19090
19090
  <td>
19091
19091
 
19092
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
19092
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
19093
19093
 
19094
19094
  </td>
19095
19095
  </tr>
@@ -19100,7 +19100,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19100
19100
 
19101
19101
  ### GetOneOptionsNot
19102
19102
 
19103
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:444](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L444)
19103
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:444](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L444)
19104
19104
 
19105
19105
  Options interface for retrieving a single entity using exclusion-based filtering.
19106
19106
 
@@ -19201,7 +19201,7 @@ async createUserWithProfile(data, manager: EntityManager) {
19201
19201
  </td>
19202
19202
  <td>
19203
19203
 
19204
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19204
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19205
19205
 
19206
19206
  </td>
19207
19207
  </tr>
@@ -19237,7 +19237,7 @@ not: { role: 'admin', status: 'deleted' }
19237
19237
  </td>
19238
19238
  <td>
19239
19239
 
19240
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
19240
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
19241
19241
 
19242
19242
  </td>
19243
19243
  </tr>
@@ -19278,7 +19278,7 @@ options: {
19278
19278
  </td>
19279
19279
  <td>
19280
19280
 
19281
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19281
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19282
19282
 
19283
19283
  </td>
19284
19284
  </tr>
@@ -19325,7 +19325,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
19325
19325
  </td>
19326
19326
  <td>
19327
19327
 
19328
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19328
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19329
19329
 
19330
19330
  </td>
19331
19331
  </tr>
@@ -19365,7 +19365,7 @@ sort: {
19365
19365
  </td>
19366
19366
  <td>
19367
19367
 
19368
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19368
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19369
19369
 
19370
19370
  </td>
19371
19371
  </tr>
@@ -19393,7 +19393,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
19393
19393
  </td>
19394
19394
  <td>
19395
19395
 
19396
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
19396
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
19397
19397
 
19398
19398
  </td>
19399
19399
  </tr>
@@ -19404,7 +19404,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
19404
19404
 
19405
19405
  ### GetOneOptionsSearch
19406
19406
 
19407
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:423](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L423)
19407
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:423](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L423)
19408
19408
 
19409
19409
  Options interface for retrieving a single entity using search-based filtering.
19410
19410
 
@@ -19505,7 +19505,7 @@ async createUserWithProfile(data, manager: EntityManager) {
19505
19505
  </td>
19506
19506
  <td>
19507
19507
 
19508
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19508
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19509
19509
 
19510
19510
  </td>
19511
19511
  </tr>
@@ -19546,7 +19546,7 @@ options: {
19546
19546
  </td>
19547
19547
  <td>
19548
19548
 
19549
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19549
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19550
19550
 
19551
19551
  </td>
19552
19552
  </tr>
@@ -19593,7 +19593,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
19593
19593
  </td>
19594
19594
  <td>
19595
19595
 
19596
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19596
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19597
19597
 
19598
19598
  </td>
19599
19599
  </tr>
@@ -19633,7 +19633,7 @@ search: {
19633
19633
  </td>
19634
19634
  <td>
19635
19635
 
19636
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
19636
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
19637
19637
 
19638
19638
  </td>
19639
19639
  </tr>
@@ -19673,7 +19673,7 @@ sort: {
19673
19673
  </td>
19674
19674
  <td>
19675
19675
 
19676
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19676
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
19677
19677
 
19678
19678
  </td>
19679
19679
  </tr>
@@ -19701,7 +19701,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19701
19701
  </td>
19702
19702
  <td>
19703
19703
 
19704
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
19704
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
19705
19705
 
19706
19706
  </td>
19707
19707
  </tr>
@@ -19712,7 +19712,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19712
19712
 
19713
19713
  ### GetOneOptionsWhere
19714
19714
 
19715
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:467](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L467)
19715
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:467](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L467)
19716
19716
 
19717
19717
  Options interface for retrieving a single entity using direct WHERE clause.
19718
19718
 
@@ -19800,7 +19800,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19800
19800
  </td>
19801
19801
  <td>
19802
19802
 
19803
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
19803
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
19804
19804
 
19805
19805
  </td>
19806
19806
  </tr>
@@ -19840,7 +19840,7 @@ async createUserWithProfile(data, manager: EntityManager) {
19840
19840
  </td>
19841
19841
  <td>
19842
19842
 
19843
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19843
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
19844
19844
 
19845
19845
  </td>
19846
19846
  </tr>
@@ -19868,7 +19868,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
19868
19868
  </td>
19869
19869
  <td>
19870
19870
 
19871
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
19871
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
19872
19872
 
19873
19873
  </td>
19874
19874
  </tr>
@@ -19909,7 +19909,7 @@ options: {
19909
19909
  </td>
19910
19910
  <td>
19911
19911
 
19912
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19912
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
19913
19913
 
19914
19914
  </td>
19915
19915
  </tr>
@@ -19956,7 +19956,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
19956
19956
  </td>
19957
19957
  <td>
19958
19958
 
19959
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19959
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
19960
19960
 
19961
19961
  </td>
19962
19962
  </tr>
@@ -19984,7 +19984,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
19984
19984
  </td>
19985
19985
  <td>
19986
19986
 
19987
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
19987
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
19988
19988
 
19989
19989
  </td>
19990
19990
  </tr>
@@ -20024,7 +20024,7 @@ sort: {
20024
20024
  </td>
20025
20025
  <td>
20026
20026
 
20027
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20027
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20028
20028
 
20029
20029
  </td>
20030
20030
  </tr>
@@ -20070,7 +20070,7 @@ where: [
20070
20070
  </td>
20071
20071
  <td>
20072
20072
 
20073
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
20073
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
20074
20074
 
20075
20075
  </td>
20076
20076
  </tr>
@@ -20081,7 +20081,7 @@ where: [
20081
20081
 
20082
20082
  ### PaginatedGetOptions
20083
20083
 
20084
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:327](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L327)
20084
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:327](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L327)
20085
20085
 
20086
20086
  Options interface for paginated CRUD operations.
20087
20087
 
@@ -20186,7 +20186,7 @@ async createUserWithProfile(data, manager: EntityManager) {
20186
20186
  </td>
20187
20187
  <td>
20188
20188
 
20189
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20189
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20190
20190
 
20191
20191
  </td>
20192
20192
  </tr>
@@ -20227,7 +20227,7 @@ options: {
20227
20227
  </td>
20228
20228
  <td>
20229
20229
 
20230
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20230
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20231
20231
 
20232
20232
  </td>
20233
20233
  </tr>
@@ -20264,7 +20264,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
20264
20264
  </td>
20265
20265
  <td>
20266
20266
 
20267
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
20267
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:338](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L338)
20268
20268
 
20269
20269
  </td>
20270
20270
  </tr>
@@ -20311,7 +20311,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
20311
20311
  </td>
20312
20312
  <td>
20313
20313
 
20314
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20314
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20315
20315
 
20316
20316
  </td>
20317
20317
  </tr>
@@ -20351,7 +20351,7 @@ sort: {
20351
20351
  </td>
20352
20352
  <td>
20353
20353
 
20354
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20354
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20355
20355
 
20356
20356
  </td>
20357
20357
  </tr>
@@ -20362,7 +20362,7 @@ sort: {
20362
20362
 
20363
20363
  ### QueryOptions
20364
20364
 
20365
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:23](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L23)
20365
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:23](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L23)
20366
20366
 
20367
20367
  Base options interface for CRUD operations.
20368
20368
 
@@ -20460,7 +20460,7 @@ async createUserWithProfile(data, manager: EntityManager) {
20460
20460
  </td>
20461
20461
  <td>
20462
20462
 
20463
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20463
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20464
20464
 
20465
20465
  </td>
20466
20466
  </tr>
@@ -20496,7 +20496,7 @@ options: {
20496
20496
  </td>
20497
20497
  <td>
20498
20498
 
20499
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20499
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20500
20500
 
20501
20501
  </td>
20502
20502
  </tr>
@@ -20538,7 +20538,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
20538
20538
  </td>
20539
20539
  <td>
20540
20540
 
20541
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20541
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20542
20542
 
20543
20543
  </td>
20544
20544
  </tr>
@@ -20573,7 +20573,7 @@ sort: {
20573
20573
  </td>
20574
20574
  <td>
20575
20575
 
20576
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20576
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20577
20577
 
20578
20578
  </td>
20579
20579
  </tr>
@@ -20584,7 +20584,7 @@ sort: {
20584
20584
 
20585
20585
  ### QueryOptionsFilter
20586
20586
 
20587
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:96](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L96)
20587
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:96](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L96)
20588
20588
 
20589
20589
  Query options using the `where`-like filter object.
20590
20590
 
@@ -20660,7 +20660,7 @@ filters: { status: 'active', type: 'user' }
20660
20660
  </td>
20661
20661
  <td>
20662
20662
 
20663
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
20663
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:106](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L106)
20664
20664
 
20665
20665
  </td>
20666
20666
  </tr>
@@ -20700,7 +20700,7 @@ async createUserWithProfile(data, manager: EntityManager) {
20700
20700
  </td>
20701
20701
  <td>
20702
20702
 
20703
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20703
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20704
20704
 
20705
20705
  </td>
20706
20706
  </tr>
@@ -20741,7 +20741,7 @@ options: {
20741
20741
  </td>
20742
20742
  <td>
20743
20743
 
20744
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20744
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
20745
20745
 
20746
20746
  </td>
20747
20747
  </tr>
@@ -20788,7 +20788,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
20788
20788
  </td>
20789
20789
  <td>
20790
20790
 
20791
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20791
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
20792
20792
 
20793
20793
  </td>
20794
20794
  </tr>
@@ -20828,7 +20828,7 @@ sort: {
20828
20828
  </td>
20829
20829
  <td>
20830
20830
 
20831
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20831
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
20832
20832
 
20833
20833
  </td>
20834
20834
  </tr>
@@ -20856,7 +20856,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
20856
20856
  </td>
20857
20857
  <td>
20858
20858
 
20859
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
20859
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:112](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L112)
20860
20860
 
20861
20861
  </td>
20862
20862
  </tr>
@@ -20867,7 +20867,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
20867
20867
 
20868
20868
  ### QueryOptionsNot
20869
20869
 
20870
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:205](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L205)
20870
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:205](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L205)
20871
20871
 
20872
20872
  Options interface for exclusion-based CRUD operations.
20873
20873
 
@@ -20974,7 +20974,7 @@ async createUserWithProfile(data, manager: EntityManager) {
20974
20974
  </td>
20975
20975
  <td>
20976
20976
 
20977
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20977
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
20978
20978
 
20979
20979
  </td>
20980
20980
  </tr>
@@ -21010,7 +21010,7 @@ not: { role: 'admin', status: 'deleted' }
21010
21010
  </td>
21011
21011
  <td>
21012
21012
 
21013
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
21013
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:232](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L232)
21014
21014
 
21015
21015
  </td>
21016
21016
  </tr>
@@ -21051,7 +21051,7 @@ options: {
21051
21051
  </td>
21052
21052
  <td>
21053
21053
 
21054
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21054
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21055
21055
 
21056
21056
  </td>
21057
21057
  </tr>
@@ -21098,7 +21098,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
21098
21098
  </td>
21099
21099
  <td>
21100
21100
 
21101
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21101
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21102
21102
 
21103
21103
  </td>
21104
21104
  </tr>
@@ -21138,7 +21138,7 @@ sort: {
21138
21138
  </td>
21139
21139
  <td>
21140
21140
 
21141
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21141
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21142
21142
 
21143
21143
  </td>
21144
21144
  </tr>
@@ -21166,7 +21166,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
21166
21166
  </td>
21167
21167
  <td>
21168
21168
 
21169
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
21169
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:238](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L238)
21170
21170
 
21171
21171
  </td>
21172
21172
  </tr>
@@ -21177,7 +21177,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
21177
21177
 
21178
21178
  ### QueryOptionsSearch
21179
21179
 
21180
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:140](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L140)
21180
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:140](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L140)
21181
21181
 
21182
21182
  Options interface for search-based CRUD operations.
21183
21183
 
@@ -21284,7 +21284,7 @@ async createUserWithProfile(data, manager: EntityManager) {
21284
21284
  </td>
21285
21285
  <td>
21286
21286
 
21287
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
21287
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
21288
21288
 
21289
21289
  </td>
21290
21290
  </tr>
@@ -21325,7 +21325,7 @@ options: {
21325
21325
  </td>
21326
21326
  <td>
21327
21327
 
21328
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21328
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21329
21329
 
21330
21330
  </td>
21331
21331
  </tr>
@@ -21372,7 +21372,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
21372
21372
  </td>
21373
21373
  <td>
21374
21374
 
21375
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21375
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21376
21376
 
21377
21377
  </td>
21378
21378
  </tr>
@@ -21412,7 +21412,7 @@ search: {
21412
21412
  </td>
21413
21413
  <td>
21414
21414
 
21415
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
21415
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:165](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L165)
21416
21416
 
21417
21417
  </td>
21418
21418
  </tr>
@@ -21452,7 +21452,7 @@ sort: {
21452
21452
  </td>
21453
21453
  <td>
21454
21454
 
21455
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21455
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21456
21456
 
21457
21457
  </td>
21458
21458
  </tr>
@@ -21480,7 +21480,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
21480
21480
  </td>
21481
21481
  <td>
21482
21482
 
21483
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
21483
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:171](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L171)
21484
21484
 
21485
21485
  </td>
21486
21486
  </tr>
@@ -21491,7 +21491,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
21491
21491
 
21492
21492
  ### QueryOptionsWhere
21493
21493
 
21494
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:268](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L268)
21494
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:268](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L268)
21495
21495
 
21496
21496
  Options interface for direct WHERE clause CRUD operations.
21497
21497
 
@@ -21585,7 +21585,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
21585
21585
  </td>
21586
21586
  <td>
21587
21587
 
21588
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
21588
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:273](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L273)
21589
21589
 
21590
21590
  </td>
21591
21591
  </tr>
@@ -21625,7 +21625,7 @@ async createUserWithProfile(data, manager: EntityManager) {
21625
21625
  </td>
21626
21626
  <td>
21627
21627
 
21628
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
21628
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
21629
21629
 
21630
21630
  </td>
21631
21631
  </tr>
@@ -21653,7 +21653,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
21653
21653
  </td>
21654
21654
  <td>
21655
21655
 
21656
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
21656
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:285](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L285)
21657
21657
 
21658
21658
  </td>
21659
21659
  </tr>
@@ -21694,7 +21694,7 @@ options: {
21694
21694
  </td>
21695
21695
  <td>
21696
21696
 
21697
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21697
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:75](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L75)
21698
21698
 
21699
21699
  </td>
21700
21700
  </tr>
@@ -21741,7 +21741,7 @@ relations: { profile: true, posts: { author: true, comments: true } }
21741
21741
  </td>
21742
21742
  <td>
21743
21743
 
21744
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21744
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L59)
21745
21745
 
21746
21746
  </td>
21747
21747
  </tr>
@@ -21769,7 +21769,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
21769
21769
  </td>
21770
21770
  <td>
21771
21771
 
21772
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
21772
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:279](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L279)
21773
21773
 
21774
21774
  </td>
21775
21775
  </tr>
@@ -21809,7 +21809,7 @@ sort: {
21809
21809
  </td>
21810
21810
  <td>
21811
21811
 
21812
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21812
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:90](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L90)
21813
21813
 
21814
21814
  </td>
21815
21815
  </tr>
@@ -21855,7 +21855,7 @@ where: [
21855
21855
  </td>
21856
21856
  <td>
21857
21857
 
21858
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
21858
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:305](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L305)
21859
21859
 
21860
21860
  </td>
21861
21861
  </tr>
@@ -21866,7 +21866,7 @@ where: [
21866
21866
 
21867
21867
  ### SaveOptionsWithSkip
21868
21868
 
21869
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:574](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L574)
21869
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:574](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L574)
21870
21870
 
21871
21871
  Extended save options interface with skip creation functionality.
21872
21872
 
@@ -22077,7 +22077,7 @@ skipCreate: true; // Only update existing entities, don't create new ones
22077
22077
  </td>
22078
22078
  <td>
22079
22079
 
22080
- [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:587](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L587)
22080
+ [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:587](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L587)
22081
22081
 
22082
22082
  </td>
22083
22083
  </tr>
@@ -22122,7 +22122,7 @@ node_modules/typeorm/repository/SaveOptions.d.ts:19
22122
22122
  type DatabaseTypes = "mysql" | "mariadb" | "postgres";
22123
22123
  ```
22124
22124
 
22125
- Defined in: [libs/nest-crud/src/types/database.types.ts:37](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/database.types.ts#L37)
22125
+ Defined in: [libs/nest-crud/src/types/database.types.ts:37](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/database.types.ts#L37)
22126
22126
 
22127
22127
  Supported database types for application connections.
22128
22128
 
@@ -22169,7 +22169,7 @@ const connectionOptions: ConnectionOptions = {
22169
22169
  type EntityDecorator = (target) => void;
22170
22170
  ```
22171
22171
 
22172
- Defined in: [libs/nest-crud/src/types/decorator.types.ts:64](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/decorator.types.ts#L64)
22172
+ Defined in: [libs/nest-crud/src/types/decorator.types.ts:64](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/decorator.types.ts#L64)
22173
22173
 
22174
22174
  Type definition for decorators that target standard entity classes
22175
22175
 
@@ -22252,7 +22252,7 @@ export class UserEntity extends BaseEntity {
22252
22252
  type EntityExtensionDecorator = (target) => void;
22253
22253
  ```
22254
22254
 
22255
- Defined in: [libs/nest-crud/src/types/decorator.types.ts:108](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/decorator.types.ts#L108)
22255
+ Defined in: [libs/nest-crud/src/types/decorator.types.ts:108](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/decorator.types.ts#L108)
22256
22256
 
22257
22257
  Type definition for decorators that target extended entity classes
22258
22258
 
@@ -22340,7 +22340,7 @@ export class ProductEntity extends BaseEntityExtension {
22340
22340
  type EntityOptionUnique = object;
22341
22341
  ```
22342
22342
 
22343
- Defined in: [libs/nest-crud/src/types/entity-option-unique.ts:51](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/entity-option-unique.ts#L51)
22343
+ Defined in: [libs/nest-crud/src/types/entity-option-unique.ts:51](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/entity-option-unique.ts#L51)
22344
22344
 
22345
22345
  Configuration type for defining unique constraints on entity fields.
22346
22346
 
@@ -22418,7 +22418,7 @@ type FilterOptions<Entity> = {
22418
22418
  };
22419
22419
  ```
22420
22420
 
22421
- Defined in: [libs/nest-crud/src/types/filter-options.type.ts:60](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/filter-options.type.ts#L60)
22421
+ Defined in: [libs/nest-crud/src/types/filter-options.type.ts:60](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/filter-options.type.ts#L60)
22422
22422
 
22423
22423
  A recursive type for building structured filter conditions for entity queries.
22424
22424
 
@@ -22523,7 +22523,7 @@ type FindConditions<Entity> =
22523
22523
  | QueryDeepPartial<Entity>[];
22524
22524
  ```
22525
22525
 
22526
- Defined in: [libs/nest-crud/src/types/find-conditions.type.ts:59](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/find-conditions.type.ts#L59)
22526
+ Defined in: [libs/nest-crud/src/types/find-conditions.type.ts:59](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/find-conditions.type.ts#L59)
22527
22527
 
22528
22528
  A flexible type for defining query conditions when finding entities.
22529
22529
 
@@ -22612,7 +22612,7 @@ async function findUsers(conditions: FindConditions<User>): Promise<User[]> {
22612
22612
  type GetAllOptions<Entity> = PaginatedGetOptions<Entity>;
22613
22613
  ```
22614
22614
 
22615
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:666](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L666)
22615
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:666](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L666)
22616
22616
 
22617
22617
  Simple options type for retrieving all entities with pagination.
22618
22618
 
@@ -22665,7 +22665,7 @@ const [users, count] = await userService.findAll(options);
22665
22665
  type GetByIdOptions<Entity> = Omit<QueryOptions<Entity>, "sort">;
22666
22666
  ```
22667
22667
 
22668
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:397](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L397)
22668
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:397](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L397)
22669
22669
 
22670
22670
  Options interface for retrieving a single entity by its ID.
22671
22671
 
@@ -22721,7 +22721,7 @@ type GetManyOptions<Entity> =
22721
22721
  | GetManyOptionsWhere<Entity>;
22722
22722
  ```
22723
22723
 
22724
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:701](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L701)
22724
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:701](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L701)
22725
22725
 
22726
22726
  Union type for all options interfaces for retrieving multiple entities with pagination.
22727
22727
 
@@ -22793,7 +22793,7 @@ type GetOneOptions<Entity> =
22793
22793
  | GetOneOptionsWhere<Entity>;
22794
22794
  ```
22795
22795
 
22796
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:642](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L642)
22796
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:642](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L642)
22797
22797
 
22798
22798
  Union type for all options interfaces for retrieving a single entity.
22799
22799
 
@@ -22852,7 +22852,7 @@ type GetOptions<Entity> =
22852
22852
  | (QueryOptionsWhere<Entity> & PaginatedGetOptions<Entity>);
22853
22853
  ```
22854
22854
 
22855
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:614](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L614)
22855
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:614](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L614)
22856
22856
 
22857
22857
  Comprehensive options type for retrieving entities with various filtering approaches and pagination.
22858
22858
 
@@ -22919,7 +22919,7 @@ type QueryDeepPartial<T> = {
22919
22919
  };
22920
22920
  ```
22921
22921
 
22922
- Defined in: [libs/nest-crud/src/types/deep-partial.type.ts:7](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/deep-partial.type.ts#L7)
22922
+ Defined in: [libs/nest-crud/src/types/deep-partial.type.ts:7](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/deep-partial.type.ts#L7)
22923
22923
 
22924
22924
  Query-safe deep partial type for dynamic search/filter payloads.
22925
22925
 
@@ -22956,7 +22956,7 @@ Query-safe deep partial type for dynamic search/filter payloads.
22956
22956
  type RepositoryDecorator = <T>(target) => T | void;
22957
22957
  ```
22958
22958
 
22959
- Defined in: [libs/nest-crud/src/types/repository-decorator.type.ts:47](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/repository-decorator.type.ts#L47)
22959
+ Defined in: [libs/nest-crud/src/types/repository-decorator.type.ts:47](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/repository-decorator.type.ts#L47)
22960
22960
 
22961
22961
  Type definition for repository class decorators.
22962
22962
 
@@ -23076,7 +23076,7 @@ class UserRepository extends BaseRepository<User> {
23076
23076
  type SaveAndGetOptions<Entity> = SaveOptionsWithSkip & GetByIdOptions<Entity>;
23077
23077
  ```
23078
23078
 
23079
- Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:744](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L744)
23079
+ Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:744](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L744)
23080
23080
 
23081
23081
  Combined options type for save-and-get operations.
23082
23082
 
@@ -23147,7 +23147,7 @@ const updatedUser = await userService.saveAndGet(userData, options);
23147
23147
  type SortOptions<Entity> = FindOptionsOrder<Entity>;
23148
23148
  ```
23149
23149
 
23150
- Defined in: [libs/nest-crud/src/types/sort-options.type.ts:56](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/sort-options.type.ts#L56)
23150
+ Defined in: [libs/nest-crud/src/types/sort-options.type.ts:56](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/sort-options.type.ts#L56)
23151
23151
 
23152
23152
  Type alias for TypeORM's sorting configuration.
23153
23153
 
@@ -23239,7 +23239,7 @@ const users = await userRepository.find({
23239
23239
  type TypeORMErrorHandler = (error) => Error | void;
23240
23240
  ```
23241
23241
 
23242
- Defined in: [libs/nest-crud/src/types/error-handler.type.ts:54](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/types/error-handler.type.ts#L54)
23242
+ Defined in: [libs/nest-crud/src/types/error-handler.type.ts:54](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/types/error-handler.type.ts#L54)
23243
23243
 
23244
23244
  A function type for custom TypeORM error handling.
23245
23245
 
@@ -23342,7 +23342,7 @@ try {
23342
23342
  const BaseEntityTemplateRelations: string[];
23343
23343
  ```
23344
23344
 
23345
- Defined in: [libs/nest-crud/src/base/base-entity.ts:19](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/base/base-entity.ts#L19)
23345
+ Defined in: [libs/nest-crud/src/base/base-entity.ts:19](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/base/base-entity.ts#L19)
23346
23346
 
23347
23347
  List of standard relation properties in the BaseEntity
23348
23348
 
@@ -23366,7 +23366,7 @@ standard relations from foreign key constraint validation.
23366
23366
  const CONNECTION_OPTIONS: "CONNECTION_OPTIONS" = "CONNECTION_OPTIONS";
23367
23367
  ```
23368
23368
 
23369
- Defined in: [libs/nest-crud/src/tokens.ts:29](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/tokens.ts#L29)
23369
+ Defined in: [libs/nest-crud/src/tokens.ts:29](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/tokens.ts#L29)
23370
23370
 
23371
23371
  Token for database connection options
23372
23372
 
@@ -23406,7 +23406,7 @@ export class AppModule {}
23406
23406
  const DEFAULT_MAX_RECURSION_DEPTH: 10 = 10;
23407
23407
  ```
23408
23408
 
23409
- Defined in: [libs/nest-crud/src/constants.ts:21](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L21)
23409
+ Defined in: [libs/nest-crud/src/constants.ts:21](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L21)
23410
23410
 
23411
23411
  Default maximum recursion depth for deep object operations
23412
23412
 
@@ -23438,7 +23438,7 @@ toQueryDeepPartialEntity Function that uses this constant to limit recursion dep
23438
23438
  const EXTRACT_INVALID_COLUMN_REGEX: RegExp;
23439
23439
  ```
23440
23440
 
23441
- Defined in: [libs/nest-crud/src/constants.ts:106](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L106)
23441
+ Defined in: [libs/nest-crud/src/constants.ts:106](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L106)
23442
23442
 
23443
23443
  Regular expression for extracting column names from database column not found errors
23444
23444
 
@@ -23468,7 +23468,7 @@ EntityUtils.handleError Method that uses this pattern to extract column names fr
23468
23468
  const EXTRACT_INVALID_QUERY_FIELD_REGEX: RegExp;
23469
23469
  ```
23470
23470
 
23471
- Defined in: [libs/nest-crud/src/constants.ts:86](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L86)
23471
+ Defined in: [libs/nest-crud/src/constants.ts:86](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L86)
23472
23472
 
23473
23473
  Regular expression for extracting field names from TypeORM property not found errors
23474
23474
 
@@ -23498,7 +23498,7 @@ EntityUtils.handleError Method that uses this pattern to extract field names fro
23498
23498
  const FK_CONSTRAINT_REGEX: RegExp;
23499
23499
  ```
23500
23500
 
23501
- Defined in: [libs/nest-crud/src/constants.ts:66](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L66)
23501
+ Defined in: [libs/nest-crud/src/constants.ts:66](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L66)
23502
23502
 
23503
23503
  Regular expression for validating foreign key constraint naming convention
23504
23504
 
@@ -23531,7 +23531,7 @@ The format is: FK_entityName_relatedEntityName
23531
23531
  const ID_PATH: "id" = "id";
23532
23532
  ```
23533
23533
 
23534
- Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L108)
23534
+ Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L108)
23535
23535
 
23536
23536
  ---
23537
23537
 
@@ -23541,7 +23541,7 @@ Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/
23541
23541
  const ID_PATH_VAR: ":id";
23542
23542
  ```
23543
23543
 
23544
- Defined in: [libs/nest-crud/src/constants.ts:110](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L110)
23544
+ Defined in: [libs/nest-crud/src/constants.ts:110](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L110)
23545
23545
 
23546
23546
  ---
23547
23547
 
@@ -23602,7 +23602,7 @@ Defined in: node_modules/@nestjs/typeorm/dist/common/typeorm.decorators.d.ts:4
23602
23602
  const UNIQUE_CONSTRAINT_REGEX: RegExp;
23603
23603
  ```
23604
23604
 
23605
- Defined in: [libs/nest-crud/src/constants.ts:43](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/constants.ts#L43)
23605
+ Defined in: [libs/nest-crud/src/constants.ts:43](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/constants.ts#L43)
23606
23606
 
23607
23607
  Regular expression for validating unique constraint naming convention
23608
23608
 
@@ -23634,7 +23634,7 @@ The format is: UNIQUE_entityName_fieldName
23634
23634
  const USER_ENTITY_TABLE_NAME: "users" = "users";
23635
23635
  ```
23636
23636
 
23637
- Defined in: [libs/nest-crud/src/tokens.ts:56](https://github.com/hichchidev/hichchi/blob/bc1ecaf443ef68763fa462222f701f37aab30ab7/libs/nest-crud/src/tokens.ts#L56)
23637
+ Defined in: [libs/nest-crud/src/tokens.ts:56](https://github.com/hichchidev/hichchi/blob/451086b0863c82a6952d5ee0c05bf458abaaa227/libs/nest-crud/src/tokens.ts#L56)
23638
23638
 
23639
23639
  Standard table name for user entities
23640
23640