@hichchi/nest-crud 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +301 -273
- package/base/base-entity.js +1 -0
- package/base/base-entity.js.map +1 -1
- package/base/base-user.entity.d.ts +11 -1
- package/base/base-user.entity.js +24 -9
- package/base/base-user.entity.js.map +1 -1
- package/package.json +5 -5
- package/services/crud.service.d.ts +2 -1
- package/services/crud.service.js +3 -2
- package/services/crud.service.js.map +1 -1
package/README.md
CHANGED
|
@@ -1503,7 +1503,7 @@ Complete technical reference for all classes, interfaces, methods, and types in
|
|
|
1503
1503
|
|
|
1504
1504
|
### BaseEntity
|
|
1505
1505
|
|
|
1506
|
-
Defined in: [libs/nest-crud/src/base/base-entity.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
1506
|
+
Defined in: [libs/nest-crud/src/base/base-entity.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L51)
|
|
1507
1507
|
|
|
1508
1508
|
Base entity class that provides common fields and functionality for all entities
|
|
1509
1509
|
|
|
@@ -1565,7 +1565,7 @@ new BaseEntity(): BaseEntity;
|
|
|
1565
1565
|
protected optional afterLoad(): void;
|
|
1566
1566
|
```
|
|
1567
1567
|
|
|
1568
|
-
Defined in: [libs/nest-crud/src/base/base-entity.ts:156](https://github.com/hichchidev/hichchi/blob/
|
|
1568
|
+
Defined in: [libs/nest-crud/src/base/base-entity.ts:156](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L156)
|
|
1569
1569
|
|
|
1570
1570
|
Lifecycle hook that runs after an entity is loaded from the database
|
|
1571
1571
|
|
|
@@ -1615,7 +1615,7 @@ It is not nullable and cannot be changed after creation.
|
|
|
1615
1615
|
</td>
|
|
1616
1616
|
<td>
|
|
1617
1617
|
|
|
1618
|
-
[libs/nest-crud/src/base/base-entity.ts:68](https://github.com/hichchidev/hichchi/blob/
|
|
1618
|
+
[libs/nest-crud/src/base/base-entity.ts:68](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L68)
|
|
1619
1619
|
|
|
1620
1620
|
</td>
|
|
1621
1621
|
</tr>
|
|
@@ -1640,7 +1640,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
1640
1640
|
</td>
|
|
1641
1641
|
<td>
|
|
1642
1642
|
|
|
1643
|
-
[libs/nest-crud/src/base/base-entity.ts:105](https://github.com/hichchidev/hichchi/blob/
|
|
1643
|
+
[libs/nest-crud/src/base/base-entity.ts:105](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L105)
|
|
1644
1644
|
|
|
1645
1645
|
</td>
|
|
1646
1646
|
</tr>
|
|
@@ -1665,7 +1665,7 @@ It is used for the foreign key relationship with the createdBy field.
|
|
|
1665
1665
|
</td>
|
|
1666
1666
|
<td>
|
|
1667
1667
|
|
|
1668
|
-
[libs/nest-crud/src/base/base-entity.ts:95](https://github.com/hichchidev/hichchi/blob/
|
|
1668
|
+
[libs/nest-crud/src/base/base-entity.ts:95](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L95)
|
|
1669
1669
|
|
|
1670
1670
|
</td>
|
|
1671
1671
|
</tr>
|
|
@@ -1690,7 +1690,7 @@ soft delete functionality. When this field has a value, the entity is considered
|
|
|
1690
1690
|
</td>
|
|
1691
1691
|
<td>
|
|
1692
1692
|
|
|
1693
|
-
[libs/nest-crud/src/base/base-entity.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
1693
|
+
[libs/nest-crud/src/base/base-entity.ts:86](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L86)
|
|
1694
1694
|
|
|
1695
1695
|
</td>
|
|
1696
1696
|
</tr>
|
|
@@ -1715,7 +1715,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
1715
1715
|
</td>
|
|
1716
1716
|
<td>
|
|
1717
1717
|
|
|
1718
|
-
[libs/nest-crud/src/base/base-entity.ts:143](https://github.com/hichchidev/hichchi/blob/
|
|
1718
|
+
[libs/nest-crud/src/base/base-entity.ts:143](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L143)
|
|
1719
1719
|
|
|
1720
1720
|
</td>
|
|
1721
1721
|
</tr>
|
|
@@ -1740,7 +1740,7 @@ It is used for the foreign key relationship with the deletedBy field.
|
|
|
1740
1740
|
</td>
|
|
1741
1741
|
<td>
|
|
1742
1742
|
|
|
1743
|
-
[libs/nest-crud/src/base/base-entity.ts:133](https://github.com/hichchidev/hichchi/blob/
|
|
1743
|
+
[libs/nest-crud/src/base/base-entity.ts:133](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L133)
|
|
1744
1744
|
|
|
1745
1745
|
</td>
|
|
1746
1746
|
</tr>
|
|
@@ -1765,7 +1765,7 @@ It serves as the primary key for the entity in the database.
|
|
|
1765
1765
|
</td>
|
|
1766
1766
|
<td>
|
|
1767
1767
|
|
|
1768
|
-
[libs/nest-crud/src/base/base-entity.ts:59](https://github.com/hichchidev/hichchi/blob/
|
|
1768
|
+
[libs/nest-crud/src/base/base-entity.ts:59](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L59)
|
|
1769
1769
|
|
|
1770
1770
|
</td>
|
|
1771
1771
|
</tr>
|
|
@@ -1790,7 +1790,7 @@ and updated whenever the entity is modified.
|
|
|
1790
1790
|
</td>
|
|
1791
1791
|
<td>
|
|
1792
1792
|
|
|
1793
|
-
[libs/nest-crud/src/base/base-entity.ts:77](https://github.com/hichchidev/hichchi/blob/
|
|
1793
|
+
[libs/nest-crud/src/base/base-entity.ts:77](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L77)
|
|
1794
1794
|
|
|
1795
1795
|
</td>
|
|
1796
1796
|
</tr>
|
|
@@ -1815,7 +1815,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
1815
1815
|
</td>
|
|
1816
1816
|
<td>
|
|
1817
1817
|
|
|
1818
|
-
[libs/nest-crud/src/base/base-entity.ts:124](https://github.com/hichchidev/hichchi/blob/
|
|
1818
|
+
[libs/nest-crud/src/base/base-entity.ts:124](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L124)
|
|
1819
1819
|
|
|
1820
1820
|
</td>
|
|
1821
1821
|
</tr>
|
|
@@ -1840,7 +1840,7 @@ It is used for the foreign key relationship with the updatedBy field.
|
|
|
1840
1840
|
</td>
|
|
1841
1841
|
<td>
|
|
1842
1842
|
|
|
1843
|
-
[libs/nest-crud/src/base/base-entity.ts:114](https://github.com/hichchidev/hichchi/blob/
|
|
1843
|
+
[libs/nest-crud/src/base/base-entity.ts:114](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L114)
|
|
1844
1844
|
|
|
1845
1845
|
</td>
|
|
1846
1846
|
</tr>
|
|
@@ -1851,7 +1851,7 @@ It is used for the foreign key relationship with the updatedBy field.
|
|
|
1851
1851
|
|
|
1852
1852
|
### BaseEntityExtension
|
|
1853
1853
|
|
|
1854
|
-
Defined in: [libs/nest-crud/src/base/base-entity-extension.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
1854
|
+
Defined in: [libs/nest-crud/src/base/base-entity-extension.ts:43](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity-extension.ts#L43)
|
|
1855
1855
|
|
|
1856
1856
|
Base entity extension class that provides a minimal entity structure
|
|
1857
1857
|
|
|
@@ -1945,7 +1945,7 @@ It serves as the primary key for the entity in the database.
|
|
|
1945
1945
|
</td>
|
|
1946
1946
|
<td>
|
|
1947
1947
|
|
|
1948
|
-
[libs/nest-crud/src/base/base-entity-extension.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
1948
|
+
[libs/nest-crud/src/base/base-entity-extension.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity-extension.ts#L51)
|
|
1949
1949
|
|
|
1950
1950
|
</td>
|
|
1951
1951
|
</tr>
|
|
@@ -1956,7 +1956,7 @@ It serves as the primary key for the entity in the database.
|
|
|
1956
1956
|
|
|
1957
1957
|
### BaseRepository
|
|
1958
1958
|
|
|
1959
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:97](https://github.com/hichchidev/hichchi/blob/
|
|
1959
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:97](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L97)
|
|
1960
1960
|
|
|
1961
1961
|
Base Repository Class that extends TypeORM's Repository with enhanced functionality
|
|
1962
1962
|
|
|
@@ -2065,7 +2065,7 @@ ModelExtension interface (for lightweight entity extensions).
|
|
|
2065
2065
|
get entityRepository(): Repository<Entity>;
|
|
2066
2066
|
```
|
|
2067
2067
|
|
|
2068
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:126](https://github.com/hichchidev/hichchi/blob/
|
|
2068
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:126](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L126)
|
|
2069
2069
|
|
|
2070
2070
|
Get the appropriate repository instance for the current context
|
|
2071
2071
|
|
|
@@ -2112,7 +2112,7 @@ Entity metadata of the entity current repository manages.
|
|
|
2112
2112
|
new BaseRepository<Entity>(repository): BaseRepository<Entity>;
|
|
2113
2113
|
```
|
|
2114
2114
|
|
|
2115
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:110](https://github.com/hichchidev/hichchi/blob/
|
|
2115
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:110](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L110)
|
|
2116
2116
|
|
|
2117
2117
|
Constructor for the BaseRepository
|
|
2118
2118
|
|
|
@@ -2330,7 +2330,7 @@ Useful for pagination.
|
|
|
2330
2330
|
countMany(options?): Promise<number>;
|
|
2331
2331
|
```
|
|
2332
2332
|
|
|
2333
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:759](https://github.com/hichchidev/hichchi/blob/
|
|
2333
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:759](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L759)
|
|
2334
2334
|
|
|
2335
2335
|
Count entities matching the specified criteria
|
|
2336
2336
|
|
|
@@ -2412,7 +2412,7 @@ The data to create entities with
|
|
|
2412
2412
|
create(): Entity;
|
|
2413
2413
|
```
|
|
2414
2414
|
|
|
2415
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:147](https://github.com/hichchidev/hichchi/blob/
|
|
2415
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:147](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L147)
|
|
2416
2416
|
|
|
2417
2417
|
Create a new entity instance
|
|
2418
2418
|
|
|
@@ -2447,7 +2447,7 @@ user.lastName = "Doe";
|
|
|
2447
2447
|
create<T>(entityLike): Entity;
|
|
2448
2448
|
```
|
|
2449
2449
|
|
|
2450
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:171](https://github.com/hichchidev/hichchi/blob/
|
|
2450
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:171](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L171)
|
|
2451
2451
|
|
|
2452
2452
|
Create a new entity instance with the provided data
|
|
2453
2453
|
|
|
@@ -2555,7 +2555,7 @@ const user = userRepository.create({
|
|
|
2555
2555
|
create<T>(entityLikeArray): Entity[];
|
|
2556
2556
|
```
|
|
2557
2557
|
|
|
2558
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:194](https://github.com/hichchidev/hichchi/blob/
|
|
2558
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:194](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L194)
|
|
2559
2559
|
|
|
2560
2560
|
Create multiple entity instances
|
|
2561
2561
|
|
|
@@ -2855,7 +2855,7 @@ WARNING! This method deletes ALL rows in the target table.
|
|
|
2855
2855
|
deleteById(id): Promise<DeleteResult>;
|
|
2856
2856
|
```
|
|
2857
2857
|
|
|
2858
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:660](https://github.com/hichchidev/hichchi/blob/
|
|
2858
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:660](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L660)
|
|
2859
2859
|
|
|
2860
2860
|
Soft delete an entity by ID
|
|
2861
2861
|
|
|
@@ -2918,7 +2918,7 @@ const result = await userRepository.delete("user-id");
|
|
|
2918
2918
|
deleteByIds(ids): Promise<DeleteResult>;
|
|
2919
2919
|
```
|
|
2920
2920
|
|
|
2921
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:684](https://github.com/hichchidev/hichchi/blob/
|
|
2921
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:684](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L684)
|
|
2922
2922
|
|
|
2923
2923
|
Soft delete multiple entities by their IDs
|
|
2924
2924
|
|
|
@@ -3634,7 +3634,7 @@ If entity was not found in the database - rejects with error.
|
|
|
3634
3634
|
generateOptions(getOptions): FindOneOptions<Entity>;
|
|
3635
3635
|
```
|
|
3636
3636
|
|
|
3637
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:837](https://github.com/hichchidev/hichchi/blob/
|
|
3637
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:837](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L837)
|
|
3638
3638
|
|
|
3639
3639
|
Generate TypeORM query options from Hichchi query options
|
|
3640
3640
|
|
|
@@ -3704,7 +3704,7 @@ TypeORM query options
|
|
|
3704
3704
|
getById(id, options?): Promise<Entity | null>;
|
|
3705
3705
|
```
|
|
3706
3706
|
|
|
3707
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:538](https://github.com/hichchidev/hichchi/blob/
|
|
3707
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:538](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L538)
|
|
3708
3708
|
|
|
3709
3709
|
Get an entity by ID
|
|
3710
3710
|
|
|
@@ -3787,7 +3787,7 @@ const user = await userRepository.get("user-id", {
|
|
|
3787
3787
|
getByIds(getByIds): Promise<Entity[]>;
|
|
3788
3788
|
```
|
|
3789
3789
|
|
|
3790
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:569](https://github.com/hichchidev/hichchi/blob/
|
|
3790
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:569](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L569)
|
|
3791
3791
|
|
|
3792
3792
|
Get multiple entities by their IDs
|
|
3793
3793
|
|
|
@@ -3897,7 +3897,7 @@ Gets entity mixed id.
|
|
|
3897
3897
|
getMany(getMany): Promise<[Entity[], number]>;
|
|
3898
3898
|
```
|
|
3899
3899
|
|
|
3900
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:636](https://github.com/hichchidev/hichchi/blob/
|
|
3900
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:636](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L636)
|
|
3901
3901
|
|
|
3902
3902
|
Get multiple entities matching the specified criteria
|
|
3903
3903
|
|
|
@@ -3967,7 +3967,7 @@ const [users, count] = await userRepository.getMany({
|
|
|
3967
3967
|
getOne(getOne): Promise<Entity | null>;
|
|
3968
3968
|
```
|
|
3969
3969
|
|
|
3970
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:605](https://github.com/hichchidev/hichchi/blob/
|
|
3970
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:605](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L605)
|
|
3971
3971
|
|
|
3972
3972
|
Get a single entity matching the specified criteria
|
|
3973
3973
|
|
|
@@ -4033,7 +4033,7 @@ const user = await userRepository.getOne({
|
|
|
4033
4033
|
hardDeleteById(id): Promise<DeleteResult>;
|
|
4034
4034
|
```
|
|
4035
4035
|
|
|
4036
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:709](https://github.com/hichchidev/hichchi/blob/
|
|
4036
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:709](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L709)
|
|
4037
4037
|
|
|
4038
4038
|
Permanently delete an entity by ID
|
|
4039
4039
|
|
|
@@ -4097,7 +4097,7 @@ const result = await userRepository.hardDelete("user-id");
|
|
|
4097
4097
|
hardDeleteByIds(ids): Promise<DeleteResult>;
|
|
4098
4098
|
```
|
|
4099
4099
|
|
|
4100
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:734](https://github.com/hichchidev/hichchi/blob/
|
|
4100
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:734](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L734)
|
|
4101
4101
|
|
|
4102
4102
|
Permanently delete multiple entities by their IDs
|
|
4103
4103
|
|
|
@@ -4321,7 +4321,7 @@ Does not check if entity exist in the database, so query will fail if duplicate
|
|
|
4321
4321
|
isFindOperator<T>(value): value is FindOperator<T>;
|
|
4322
4322
|
```
|
|
4323
4323
|
|
|
4324
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:929](https://github.com/hichchidev/hichchi/blob/
|
|
4324
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:929](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L929)
|
|
4325
4325
|
|
|
4326
4326
|
Type guard to check if a value is a TypeORM FindOperator
|
|
4327
4327
|
|
|
@@ -4407,7 +4407,7 @@ mapAndWhere<T>(
|
|
|
4407
4407
|
wrap?): FindOptionsWhere<T>;
|
|
4408
4408
|
```
|
|
4409
4409
|
|
|
4410
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:963](https://github.com/hichchidev/hichchi/blob/
|
|
4410
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:963](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L963)
|
|
4411
4411
|
|
|
4412
4412
|
Map and transform where conditions with operators
|
|
4413
4413
|
|
|
@@ -4727,7 +4727,7 @@ orWhere(
|
|
|
4727
4727
|
operator): FindOptionsWhere<Entity> | FindOptionsWhere<Entity>[];
|
|
4728
4728
|
```
|
|
4729
4729
|
|
|
4730
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:898](https://github.com/hichchidev/hichchi/blob/
|
|
4730
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:898](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L898)
|
|
4731
4731
|
|
|
4732
4732
|
Create OR conditions for search or negation queries
|
|
4733
4733
|
|
|
@@ -5852,7 +5852,7 @@ If entity does not exist in the database then inserts, otherwise updates.
|
|
|
5852
5852
|
saveAndGet<T>(entityLike, options?): Promise<Entity | null>;
|
|
5853
5853
|
```
|
|
5854
5854
|
|
|
5855
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:301](https://github.com/hichchidev/hichchi/blob/
|
|
5855
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:301](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L301)
|
|
5856
5856
|
|
|
5857
5857
|
Save an entity and retrieve it with relations
|
|
5858
5858
|
|
|
@@ -5989,7 +5989,7 @@ const savedUser = await userRepository.saveAndGet(existingUser, {
|
|
|
5989
5989
|
saveMany<T>(entities, options?): Promise<Entity[]>;
|
|
5990
5990
|
```
|
|
5991
5991
|
|
|
5992
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:347](https://github.com/hichchidev/hichchi/blob/
|
|
5992
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:347](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L347)
|
|
5993
5993
|
|
|
5994
5994
|
Save multiple entities to the database
|
|
5995
5995
|
|
|
@@ -6125,7 +6125,7 @@ const savedUsers = await userRepository.saveMany(existingUsers, {
|
|
|
6125
6125
|
saveOne<T>(entityLike, options?): Promise<Entity>;
|
|
6126
6126
|
```
|
|
6127
6127
|
|
|
6128
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:252](https://github.com/hichchidev/hichchi/blob/
|
|
6128
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:252](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L252)
|
|
6129
6129
|
|
|
6130
6130
|
Save an entity to the database
|
|
6131
6131
|
|
|
@@ -6812,7 +6812,7 @@ Return the SUM of a column
|
|
|
6812
6812
|
transaction<T>(operation): Promise<T>;
|
|
6813
6813
|
```
|
|
6814
6814
|
|
|
6815
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:796](https://github.com/hichchidev/hichchi/blob/
|
|
6815
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:796](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L796)
|
|
6816
6816
|
|
|
6817
6817
|
Execute operations within a transaction
|
|
6818
6818
|
|
|
@@ -7021,7 +7021,7 @@ updateAndGet(
|
|
|
7021
7021
|
options?): Promise<Entity | null>;
|
|
7022
7022
|
```
|
|
7023
7023
|
|
|
7024
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:411](https://github.com/hichchidev/hichchi/blob/
|
|
7024
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:411](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L411)
|
|
7025
7025
|
|
|
7026
7026
|
Update an entity and retrieve it with relations
|
|
7027
7027
|
|
|
@@ -7123,7 +7123,7 @@ const user = await userRepository.updateAndGet(
|
|
|
7123
7123
|
updateById(id, partialEntity): Promise<UpdateResult>;
|
|
7124
7124
|
```
|
|
7125
7125
|
|
|
7126
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:380](https://github.com/hichchidev/hichchi/blob/
|
|
7126
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:380](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L380)
|
|
7127
7127
|
|
|
7128
7128
|
Update an entity by ID
|
|
7129
7129
|
|
|
@@ -7208,7 +7208,7 @@ const result = await userRepository.update("user-id", {
|
|
|
7208
7208
|
updateByIds(ids, partialEntity): Promise<UpdateResult>;
|
|
7209
7209
|
```
|
|
7210
7210
|
|
|
7211
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:510](https://github.com/hichchidev/hichchi/blob/
|
|
7211
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:510](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L510)
|
|
7212
7212
|
|
|
7213
7213
|
Update multiple entities by their IDs
|
|
7214
7214
|
|
|
@@ -7291,7 +7291,7 @@ const result = await userRepository.updateByIds(
|
|
|
7291
7291
|
updateMany(where, partialEntity): Promise<UpdateResult>;
|
|
7292
7292
|
```
|
|
7293
7293
|
|
|
7294
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:475](https://github.com/hichchidev/hichchi/blob/
|
|
7294
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:475](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L475)
|
|
7295
7295
|
|
|
7296
7296
|
Update multiple entities matching the specified criteria
|
|
7297
7297
|
|
|
@@ -7376,7 +7376,7 @@ const result = await userRepository.updateMany(
|
|
|
7376
7376
|
updateOne(where, partialEntity): Promise<UpdateResult>;
|
|
7377
7377
|
```
|
|
7378
7378
|
|
|
7379
|
-
Defined in: [libs/nest-crud/src/base/base-repository.ts:445](https://github.com/hichchidev/hichchi/blob/
|
|
7379
|
+
Defined in: [libs/nest-crud/src/base/base-repository.ts:445](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-repository.ts#L445)
|
|
7380
7380
|
|
|
7381
7381
|
Update a single entity matching the specified criteria
|
|
7382
7382
|
|
|
@@ -7630,7 +7630,7 @@ node_modules/typeorm/repository/Repository.d.ts:28
|
|
|
7630
7630
|
|
|
7631
7631
|
### BulkDeleteDto
|
|
7632
7632
|
|
|
7633
|
-
Defined in: [libs/nest-crud/src/dtos/bulk-delete.dto.ts:45](https://github.com/hichchidev/hichchi/blob/
|
|
7633
|
+
Defined in: [libs/nest-crud/src/dtos/bulk-delete.dto.ts:45](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L45)
|
|
7634
7634
|
|
|
7635
7635
|
Data Transfer Object for bulk deletion operations
|
|
7636
7636
|
|
|
@@ -7724,7 +7724,7 @@ to perform the actual deletion operation.
|
|
|
7724
7724
|
</td>
|
|
7725
7725
|
<td>
|
|
7726
7726
|
|
|
7727
|
-
[libs/nest-crud/src/dtos/bulk-delete.dto.ts:62](https://github.com/hichchidev/hichchi/blob/
|
|
7727
|
+
[libs/nest-crud/src/dtos/bulk-delete.dto.ts:62](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/dtos/bulk-delete.dto.ts#L62)
|
|
7728
7728
|
|
|
7729
7729
|
</td>
|
|
7730
7730
|
</tr>
|
|
@@ -7735,7 +7735,7 @@ to perform the actual deletion operation.
|
|
|
7735
7735
|
|
|
7736
7736
|
### `abstract` CrudService
|
|
7737
7737
|
|
|
7738
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
7738
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L98)
|
|
7739
7739
|
|
|
7740
7740
|
Abstract base service providing CRUD operations for entities
|
|
7741
7741
|
|
|
@@ -7834,7 +7834,7 @@ export class UserController {
|
|
|
7834
7834
|
new CrudService<Entity>(repository): CrudService<Entity>;
|
|
7835
7835
|
```
|
|
7836
7836
|
|
|
7837
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:139](https://github.com/hichchidev/hichchi/blob/
|
|
7837
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:139](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L139)
|
|
7838
7838
|
|
|
7839
7839
|
Creates a new instance of CrudService
|
|
7840
7840
|
|
|
@@ -7909,7 +7909,7 @@ export class UserService extends CrudService<UserEntity> {
|
|
|
7909
7909
|
count(getMany?, eh?): Promise<number>;
|
|
7910
7910
|
```
|
|
7911
7911
|
|
|
7912
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1251](https://github.com/hichchidev/hichchi/blob/
|
|
7912
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1251](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1251)
|
|
7913
7913
|
|
|
7914
7914
|
Counts entities that match the specified conditions
|
|
7915
7915
|
|
|
@@ -8005,7 +8005,7 @@ const premiumUsers = await userService.count({
|
|
|
8005
8005
|
create<T>(createDto?, eh?): Entity;
|
|
8006
8006
|
```
|
|
8007
8007
|
|
|
8008
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:206](https://github.com/hichchidev/hichchi/blob/
|
|
8008
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:206](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L206)
|
|
8009
8009
|
|
|
8010
8010
|
Creates a new entity instance without saving it to the database
|
|
8011
8011
|
|
|
@@ -8184,7 +8184,7 @@ delete(
|
|
|
8184
8184
|
eh?): Promise<Entity>;
|
|
8185
8185
|
```
|
|
8186
8186
|
|
|
8187
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:849](https://github.com/hichchidev/hichchi/blob/
|
|
8187
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:849](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L849)
|
|
8188
8188
|
|
|
8189
8189
|
Deletes an entity by its ID
|
|
8190
8190
|
|
|
@@ -8279,7 +8279,7 @@ delete(
|
|
|
8279
8279
|
eh?): Promise<Entity>;
|
|
8280
8280
|
```
|
|
8281
8281
|
|
|
8282
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:863](https://github.com/hichchidev/hichchi/blob/
|
|
8282
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:863](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L863)
|
|
8283
8283
|
|
|
8284
8284
|
Deletes an entity by its ID with audit tracking
|
|
8285
8285
|
|
|
@@ -8427,7 +8427,7 @@ deleteByIds(
|
|
|
8427
8427
|
eh?): Promise<SuccessResponse>;
|
|
8428
8428
|
```
|
|
8429
8429
|
|
|
8430
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1139](https://github.com/hichchidev/hichchi/blob/
|
|
8430
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1139](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1139)
|
|
8431
8431
|
|
|
8432
8432
|
Deletes multiple entities by their IDs
|
|
8433
8433
|
|
|
@@ -8523,7 +8523,7 @@ deleteByIds(
|
|
|
8523
8523
|
eh?): Promise<SuccessResponse>;
|
|
8524
8524
|
```
|
|
8525
8525
|
|
|
8526
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1153](https://github.com/hichchidev/hichchi/blob/
|
|
8526
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1153](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1153)
|
|
8527
8527
|
|
|
8528
8528
|
Deletes multiple entities by their IDs with audit tracking
|
|
8529
8529
|
|
|
@@ -8674,7 +8674,7 @@ deleteMany(
|
|
|
8674
8674
|
eh?): Promise<Entity[]>;
|
|
8675
8675
|
```
|
|
8676
8676
|
|
|
8677
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1040](https://github.com/hichchidev/hichchi/blob/
|
|
8677
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1040](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1040)
|
|
8678
8678
|
|
|
8679
8679
|
Deletes multiple entities that match the specified conditions
|
|
8680
8680
|
|
|
@@ -8768,7 +8768,7 @@ deleteMany(
|
|
|
8768
8768
|
eh?): Promise<Entity[]>;
|
|
8769
8769
|
```
|
|
8770
8770
|
|
|
8771
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1054](https://github.com/hichchidev/hichchi/blob/
|
|
8771
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1054](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1054)
|
|
8772
8772
|
|
|
8773
8773
|
Deletes multiple entities that match the specified conditions with audit tracking
|
|
8774
8774
|
|
|
@@ -8918,7 +8918,7 @@ deleteOne(
|
|
|
8918
8918
|
eh?): Promise<Entity>;
|
|
8919
8919
|
```
|
|
8920
8920
|
|
|
8921
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:937](https://github.com/hichchidev/hichchi/blob/
|
|
8921
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:937](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L937)
|
|
8922
8922
|
|
|
8923
8923
|
Deletes a single entity that matches the specified conditions
|
|
8924
8924
|
|
|
@@ -9012,7 +9012,7 @@ deleteOne(
|
|
|
9012
9012
|
eh?): Promise<Entity>;
|
|
9013
9013
|
```
|
|
9014
9014
|
|
|
9015
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:951](https://github.com/hichchidev/hichchi/blob/
|
|
9015
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:951](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L951)
|
|
9016
9016
|
|
|
9017
9017
|
Deletes a single entity that matches the specified conditions with audit tracking
|
|
9018
9018
|
|
|
@@ -9106,7 +9106,7 @@ get(
|
|
|
9106
9106
|
eh?): Promise<Entity>;
|
|
9107
9107
|
```
|
|
9108
9108
|
|
|
9109
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:620](https://github.com/hichchidev/hichchi/blob/
|
|
9109
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:620](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L620)
|
|
9110
9110
|
|
|
9111
9111
|
Retrieves an entity by its ID
|
|
9112
9112
|
|
|
@@ -9217,7 +9217,7 @@ const userWithProfile = await userService.get(userId, {
|
|
|
9217
9217
|
getAll<Options>(getAll?, eh?): Options extends object ? Promise<PaginatedResponse<Entity>> : Promise<Entity[]>;
|
|
9218
9218
|
```
|
|
9219
9219
|
|
|
9220
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:818](https://github.com/hichchidev/hichchi/blob/
|
|
9220
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:818](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L818)
|
|
9221
9221
|
|
|
9222
9222
|
Retrieves all entities, optionally with filtering, sorting, and pagination
|
|
9223
9223
|
|
|
@@ -9340,7 +9340,7 @@ const sortedUsers = await userService.getAll({
|
|
|
9340
9340
|
getByIds(getByIds, eh?): Promise<Entity[]>;
|
|
9341
9341
|
```
|
|
9342
9342
|
|
|
9343
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:669](https://github.com/hichchidev/hichchi/blob/
|
|
9343
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:669](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L669)
|
|
9344
9344
|
|
|
9345
9345
|
Retrieves multiple entities by their IDs
|
|
9346
9346
|
|
|
@@ -9438,7 +9438,7 @@ const usersWithProfiles = await userService.getByIds({
|
|
|
9438
9438
|
getMany<Options>(getMany, eh?): Options extends object ? Promise<PaginatedResponse<Entity>> : Promise<Entity[]>;
|
|
9439
9439
|
```
|
|
9440
9440
|
|
|
9441
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:764](https://github.com/hichchidev/hichchi/blob/
|
|
9441
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:764](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L764)
|
|
9442
9442
|
|
|
9443
9443
|
Retrieves multiple entities that match the specified conditions
|
|
9444
9444
|
|
|
@@ -9565,7 +9565,7 @@ const sortedUsers = await userService.getMany({
|
|
|
9565
9565
|
getOne(getOne, eh?): Promise<Entity>;
|
|
9566
9566
|
```
|
|
9567
9567
|
|
|
9568
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:711](https://github.com/hichchidev/hichchi/blob/
|
|
9568
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:711](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L711)
|
|
9569
9569
|
|
|
9570
9570
|
Retrieves a single entity that matches the specified conditions
|
|
9571
9571
|
|
|
@@ -9661,7 +9661,7 @@ const userWithProfile = await userService.getOne({
|
|
|
9661
9661
|
getRepository(): BaseRepository<Entity>;
|
|
9662
9662
|
```
|
|
9663
9663
|
|
|
9664
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:178](https://github.com/hichchidev/hichchi/blob/
|
|
9664
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:178](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L178)
|
|
9665
9665
|
|
|
9666
9666
|
Gets the repository instance used by this service
|
|
9667
9667
|
|
|
@@ -9702,7 +9702,7 @@ const entityMetadata = repository.metadata;
|
|
|
9702
9702
|
handleError(error, eh?): never;
|
|
9703
9703
|
```
|
|
9704
9704
|
|
|
9705
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1366](https://github.com/hichchidev/hichchi/blob/
|
|
9705
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1366](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1366)
|
|
9706
9706
|
|
|
9707
9707
|
Handles errors in a standardized way
|
|
9708
9708
|
|
|
@@ -9804,7 +9804,7 @@ save<T>(
|
|
|
9804
9804
|
eh?): Promise<Entity | null>;
|
|
9805
9805
|
```
|
|
9806
9806
|
|
|
9807
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:253](https://github.com/hichchidev/hichchi/blob/
|
|
9807
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:253](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L253)
|
|
9808
9808
|
|
|
9809
9809
|
Creates and saves a new entity to the database
|
|
9810
9810
|
|
|
@@ -9976,7 +9976,7 @@ saveMany<T>(
|
|
|
9976
9976
|
eh?): Promise<Entity[]>;
|
|
9977
9977
|
```
|
|
9978
9978
|
|
|
9979
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:302](https://github.com/hichchidev/hichchi/blob/
|
|
9979
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:302](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L302)
|
|
9980
9980
|
|
|
9981
9981
|
Creates and saves multiple entities to the database
|
|
9982
9982
|
|
|
@@ -10145,7 +10145,7 @@ const usersWithAudit = await userService.saveMany(
|
|
|
10145
10145
|
transaction<T>(operation): Promise<T>;
|
|
10146
10146
|
```
|
|
10147
10147
|
|
|
10148
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1292](https://github.com/hichchidev/hichchi/blob/
|
|
10148
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1292](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1292)
|
|
10149
10149
|
|
|
10150
10150
|
Executes operations within a transaction
|
|
10151
10151
|
|
|
@@ -10244,7 +10244,7 @@ const result = await userService.transaction(async (manager) => {
|
|
|
10244
10244
|
try<T>(fn): Promise<T>;
|
|
10245
10245
|
```
|
|
10246
10246
|
|
|
10247
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:1323](https://github.com/hichchidev/hichchi/blob/
|
|
10247
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:1323](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L1323)
|
|
10248
10248
|
|
|
10249
10249
|
Executes a function with error handling
|
|
10250
10250
|
|
|
@@ -10347,7 +10347,7 @@ update<T>(
|
|
|
10347
10347
|
eh?): Promise<Entity>;
|
|
10348
10348
|
```
|
|
10349
10349
|
|
|
10350
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:370](https://github.com/hichchidev/hichchi/blob/
|
|
10350
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:370](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L370)
|
|
10351
10351
|
|
|
10352
10352
|
Updates an entity by its ID
|
|
10353
10353
|
|
|
@@ -10551,7 +10551,7 @@ updateByIds<T>(
|
|
|
10551
10551
|
eh?): Promise<SuccessResponse>;
|
|
10552
10552
|
```
|
|
10553
10553
|
|
|
10554
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:563](https://github.com/hichchidev/hichchi/blob/
|
|
10554
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:563](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L563)
|
|
10555
10555
|
|
|
10556
10556
|
Updates multiple entities by their IDs
|
|
10557
10557
|
|
|
@@ -10735,7 +10735,7 @@ updateMany<T>(
|
|
|
10735
10735
|
eh?): Promise<SuccessResponse>;
|
|
10736
10736
|
```
|
|
10737
10737
|
|
|
10738
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:499](https://github.com/hichchidev/hichchi/blob/
|
|
10738
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:499](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L499)
|
|
10739
10739
|
|
|
10740
10740
|
Updates multiple entities that match the specified conditions
|
|
10741
10741
|
|
|
@@ -10912,7 +10912,7 @@ updateOne<T>(
|
|
|
10912
10912
|
eh?): Promise<Entity>;
|
|
10913
10913
|
```
|
|
10914
10914
|
|
|
10915
|
-
Defined in: [libs/nest-crud/src/services/crud.service.ts:436](https://github.com/hichchidev/hichchi/blob/
|
|
10915
|
+
Defined in: [libs/nest-crud/src/services/crud.service.ts:436](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L436)
|
|
10916
10916
|
|
|
10917
10917
|
Updates a single entity that matches the specified conditions
|
|
10918
10918
|
|
|
@@ -11116,7 +11116,7 @@ The repository for the entity
|
|
|
11116
11116
|
</td>
|
|
11117
11117
|
<td>
|
|
11118
11118
|
|
|
11119
|
-
[libs/nest-crud/src/services/crud.service.ts:139](https://github.com/hichchidev/hichchi/blob/
|
|
11119
|
+
[libs/nest-crud/src/services/crud.service.ts:139](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/services/crud.service.ts#L139)
|
|
11120
11120
|
|
|
11121
11121
|
</td>
|
|
11122
11122
|
</tr>
|
|
@@ -11127,7 +11127,7 @@ The repository for the entity
|
|
|
11127
11127
|
|
|
11128
11128
|
### HichchiCrudModule
|
|
11129
11129
|
|
|
11130
|
-
Defined in: [libs/nest-crud/src/crud.module.ts:35](https://github.com/hichchidev/hichchi/blob/
|
|
11130
|
+
Defined in: [libs/nest-crud/src/crud.module.ts:35](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/crud.module.ts#L35)
|
|
11131
11131
|
|
|
11132
11132
|
Module for integrating TypeORM with NestJS and providing CRUD functionality
|
|
11133
11133
|
|
|
@@ -11173,7 +11173,7 @@ new HichchiCrudModule(): HichchiCrudModule;
|
|
|
11173
11173
|
static forFeature(entities): DynamicModule;
|
|
11174
11174
|
```
|
|
11175
11175
|
|
|
11176
|
-
Defined in: [libs/nest-crud/src/crud.module.ts:131](https://github.com/hichchidev/hichchi/blob/
|
|
11176
|
+
Defined in: [libs/nest-crud/src/crud.module.ts:131](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/crud.module.ts#L131)
|
|
11177
11177
|
|
|
11178
11178
|
Register entities for the HichchiCrudModule
|
|
11179
11179
|
|
|
@@ -11239,7 +11239,7 @@ export class UserModule {}
|
|
|
11239
11239
|
static forRoot(options): DynamicModule;
|
|
11240
11240
|
```
|
|
11241
11241
|
|
|
11242
|
-
Defined in: [libs/nest-crud/src/crud.module.ts:73](https://github.com/hichchidev/hichchi/blob/
|
|
11242
|
+
Defined in: [libs/nest-crud/src/crud.module.ts:73](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/crud.module.ts#L73)
|
|
11243
11243
|
|
|
11244
11244
|
Register the HichchiCrudModule
|
|
11245
11245
|
|
|
@@ -11318,7 +11318,7 @@ export class AppModule {}
|
|
|
11318
11318
|
static validateEntities(entities): void;
|
|
11319
11319
|
```
|
|
11320
11320
|
|
|
11321
|
-
Defined in: [libs/nest-crud/src/crud.module.ts:206](https://github.com/hichchidev/hichchi/blob/
|
|
11321
|
+
Defined in: [libs/nest-crud/src/crud.module.ts:206](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/crud.module.ts#L206)
|
|
11322
11322
|
|
|
11323
11323
|
Validates entities for registration with the HichchiCrudModule
|
|
11324
11324
|
|
|
@@ -11383,7 +11383,7 @@ Array of entity classes to validate
|
|
|
11383
11383
|
|
|
11384
11384
|
### HichchiUserEntity
|
|
11385
11385
|
|
|
11386
|
-
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
11386
|
+
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L51)
|
|
11387
11387
|
|
|
11388
11388
|
Base user entity class that provides common user fields and functionality
|
|
11389
11389
|
|
|
@@ -11450,7 +11450,7 @@ new HichchiUserEntity(): HichchiUserEntity;
|
|
|
11450
11450
|
protected optional afterLoad(): void;
|
|
11451
11451
|
```
|
|
11452
11452
|
|
|
11453
|
-
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:
|
|
11453
|
+
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:246](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L246)
|
|
11454
11454
|
|
|
11455
11455
|
Lifecycle hook that runs after an entity is loaded from the database
|
|
11456
11456
|
|
|
@@ -11473,7 +11473,7 @@ UserInfo The interface that defines the user information structure
|
|
|
11473
11473
|
protected optional beforeInsert(): void;
|
|
11474
11474
|
```
|
|
11475
11475
|
|
|
11476
|
-
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:
|
|
11476
|
+
Defined in: [libs/nest-crud/src/base/base-user.entity.ts:231](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L231)
|
|
11477
11477
|
|
|
11478
11478
|
Lifecycle hooks that run before an entity is inserted or updated
|
|
11479
11479
|
|
|
@@ -11515,7 +11515,7 @@ concatenating the firstName and lastName properties.
|
|
|
11515
11515
|
</td>
|
|
11516
11516
|
<td>
|
|
11517
11517
|
|
|
11518
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11518
|
+
[libs/nest-crud/src/base/base-user.entity.ts:214](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L214)
|
|
11519
11519
|
|
|
11520
11520
|
</td>
|
|
11521
11521
|
</tr>
|
|
@@ -11540,7 +11540,7 @@ It is not nullable and cannot be changed after creation.
|
|
|
11540
11540
|
</td>
|
|
11541
11541
|
<td>
|
|
11542
11542
|
|
|
11543
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11543
|
+
[libs/nest-crud/src/base/base-user.entity.ts:80](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L80)
|
|
11544
11544
|
|
|
11545
11545
|
</td>
|
|
11546
11546
|
</tr>
|
|
@@ -11565,7 +11565,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
11565
11565
|
</td>
|
|
11566
11566
|
<td>
|
|
11567
11567
|
|
|
11568
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11568
|
+
[libs/nest-crud/src/base/base-user.entity.ts:117](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L117)
|
|
11569
11569
|
|
|
11570
11570
|
</td>
|
|
11571
11571
|
</tr>
|
|
@@ -11590,7 +11590,7 @@ It is used for the foreign key relationship with the createdBy field.
|
|
|
11590
11590
|
</td>
|
|
11591
11591
|
<td>
|
|
11592
11592
|
|
|
11593
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11593
|
+
[libs/nest-crud/src/base/base-user.entity.ts:107](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L107)
|
|
11594
11594
|
|
|
11595
11595
|
</td>
|
|
11596
11596
|
</tr>
|
|
@@ -11615,7 +11615,7 @@ soft delete functionality. When this field has a value, the entity is considered
|
|
|
11615
11615
|
</td>
|
|
11616
11616
|
<td>
|
|
11617
11617
|
|
|
11618
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11618
|
+
[libs/nest-crud/src/base/base-user.entity.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L98)
|
|
11619
11619
|
|
|
11620
11620
|
</td>
|
|
11621
11621
|
</tr>
|
|
@@ -11640,7 +11640,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
11640
11640
|
</td>
|
|
11641
11641
|
<td>
|
|
11642
11642
|
|
|
11643
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11643
|
+
[libs/nest-crud/src/base/base-user.entity.ts:155](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L155)
|
|
11644
11644
|
|
|
11645
11645
|
</td>
|
|
11646
11646
|
</tr>
|
|
@@ -11665,7 +11665,7 @@ It is used for the foreign key relationship with the deletedBy field.
|
|
|
11665
11665
|
</td>
|
|
11666
11666
|
<td>
|
|
11667
11667
|
|
|
11668
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11668
|
+
[libs/nest-crud/src/base/base-user.entity.ts:145](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L145)
|
|
11669
11669
|
|
|
11670
11670
|
</td>
|
|
11671
11671
|
</tr>
|
|
@@ -11691,7 +11691,7 @@ or uses alternative authentication methods.
|
|
|
11691
11691
|
</td>
|
|
11692
11692
|
<td>
|
|
11693
11693
|
|
|
11694
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11694
|
+
[libs/nest-crud/src/base/base-user.entity.ts:194](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L194)
|
|
11695
11695
|
|
|
11696
11696
|
</td>
|
|
11697
11697
|
</tr>
|
|
@@ -11713,7 +11713,7 @@ or uses alternative authentication methods.
|
|
|
11713
11713
|
</td>
|
|
11714
11714
|
<td>
|
|
11715
11715
|
|
|
11716
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11716
|
+
[libs/nest-crud/src/base/base-user.entity.ts:211](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L211)
|
|
11717
11717
|
|
|
11718
11718
|
</td>
|
|
11719
11719
|
</tr>
|
|
@@ -11739,7 +11739,7 @@ be null.
|
|
|
11739
11739
|
</td>
|
|
11740
11740
|
<td>
|
|
11741
11741
|
|
|
11742
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11742
|
+
[libs/nest-crud/src/base/base-user.entity.ts:165](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L165)
|
|
11743
11743
|
|
|
11744
11744
|
</td>
|
|
11745
11745
|
</tr>
|
|
@@ -11765,7 +11765,7 @@ automatically maintained by the beforeInsert and beforeUpdate hooks.
|
|
|
11765
11765
|
</td>
|
|
11766
11766
|
<td>
|
|
11767
11767
|
|
|
11768
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11768
|
+
[libs/nest-crud/src/base/base-user.entity.ts:184](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L184)
|
|
11769
11769
|
|
|
11770
11770
|
</td>
|
|
11771
11771
|
</tr>
|
|
@@ -11790,7 +11790,7 @@ It serves as the primary key for the entity in the database.
|
|
|
11790
11790
|
</td>
|
|
11791
11791
|
<td>
|
|
11792
11792
|
|
|
11793
|
-
[libs/nest-crud/src/base/base-user.entity.ts:59](https://github.com/hichchidev/hichchi/blob/
|
|
11793
|
+
[libs/nest-crud/src/base/base-user.entity.ts:59](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L59)
|
|
11794
11794
|
|
|
11795
11795
|
</td>
|
|
11796
11796
|
</tr>
|
|
@@ -11815,7 +11815,7 @@ for formal addressing and identification. It is required and cannot be null.
|
|
|
11815
11815
|
</td>
|
|
11816
11816
|
<td>
|
|
11817
11817
|
|
|
11818
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11818
|
+
[libs/nest-crud/src/base/base-user.entity.ts:174](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L174)
|
|
11819
11819
|
|
|
11820
11820
|
</td>
|
|
11821
11821
|
</tr>
|
|
@@ -11837,7 +11837,7 @@ for formal addressing and identification. It is required and cannot be null.
|
|
|
11837
11837
|
</td>
|
|
11838
11838
|
<td>
|
|
11839
11839
|
|
|
11840
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11840
|
+
[libs/nest-crud/src/base/base-user.entity.ts:208](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L208)
|
|
11841
11841
|
|
|
11842
11842
|
</td>
|
|
11843
11843
|
</tr>
|
|
@@ -11859,7 +11859,7 @@ for formal addressing and identification. It is required and cannot be null.
|
|
|
11859
11859
|
</td>
|
|
11860
11860
|
<td>
|
|
11861
11861
|
|
|
11862
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11862
|
+
[libs/nest-crud/src/base/base-user.entity.ts:217](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L217)
|
|
11863
11863
|
|
|
11864
11864
|
</td>
|
|
11865
11865
|
</tr>
|
|
@@ -11881,7 +11881,35 @@ for formal addressing and identification. It is required and cannot be null.
|
|
|
11881
11881
|
</td>
|
|
11882
11882
|
<td>
|
|
11883
11883
|
|
|
11884
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11884
|
+
[libs/nest-crud/src/base/base-user.entity.ts:220](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L220)
|
|
11885
|
+
|
|
11886
|
+
</td>
|
|
11887
|
+
</tr>
|
|
11888
|
+
<tr>
|
|
11889
|
+
<td>
|
|
11890
|
+
|
|
11891
|
+
<a id="property-tenant"></a> `tenant`
|
|
11892
|
+
|
|
11893
|
+
</td>
|
|
11894
|
+
<td>
|
|
11895
|
+
|
|
11896
|
+
`TenantSlug` | `null`
|
|
11897
|
+
|
|
11898
|
+
</td>
|
|
11899
|
+
<td>
|
|
11900
|
+
|
|
11901
|
+
Represents the tenant associated with the current context.
|
|
11902
|
+
The value can either be a tenant-specific identifier (TenantSlug) or null if no tenant is assigned.
|
|
11903
|
+
|
|
11904
|
+
A TenantSlug is typically a unique string or slug representing a tenant in multi-tenant applications.
|
|
11905
|
+
Null indicates the absence of a tenant in the current context.
|
|
11906
|
+
|
|
11907
|
+
This variable is often used to scope application logic and data to a specific tenant.
|
|
11908
|
+
|
|
11909
|
+
</td>
|
|
11910
|
+
<td>
|
|
11911
|
+
|
|
11912
|
+
[libs/nest-crud/src/base/base-user.entity.ts:71](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L71)
|
|
11885
11913
|
|
|
11886
11914
|
</td>
|
|
11887
11915
|
</tr>
|
|
@@ -11906,7 +11934,7 @@ and updated whenever the entity is modified.
|
|
|
11906
11934
|
</td>
|
|
11907
11935
|
<td>
|
|
11908
11936
|
|
|
11909
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11937
|
+
[libs/nest-crud/src/base/base-user.entity.ts:89](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L89)
|
|
11910
11938
|
|
|
11911
11939
|
</td>
|
|
11912
11940
|
</tr>
|
|
@@ -11931,7 +11959,7 @@ It is automatically loaded when the entity is retrieved with relations.
|
|
|
11931
11959
|
</td>
|
|
11932
11960
|
<td>
|
|
11933
11961
|
|
|
11934
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11962
|
+
[libs/nest-crud/src/base/base-user.entity.ts:136](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L136)
|
|
11935
11963
|
|
|
11936
11964
|
</td>
|
|
11937
11965
|
</tr>
|
|
@@ -11956,7 +11984,7 @@ It is used for the foreign key relationship with the updatedBy field.
|
|
|
11956
11984
|
</td>
|
|
11957
11985
|
<td>
|
|
11958
11986
|
|
|
11959
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
11987
|
+
[libs/nest-crud/src/base/base-user.entity.ts:126](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L126)
|
|
11960
11988
|
|
|
11961
11989
|
</td>
|
|
11962
11990
|
</tr>
|
|
@@ -11982,7 +12010,7 @@ alternative authentication methods like email-only authentication.
|
|
|
11982
12010
|
</td>
|
|
11983
12011
|
<td>
|
|
11984
12012
|
|
|
11985
|
-
[libs/nest-crud/src/base/base-user.entity.ts:
|
|
12013
|
+
[libs/nest-crud/src/base/base-user.entity.ts:204](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-user.entity.ts#L204)
|
|
11986
12014
|
|
|
11987
12015
|
</td>
|
|
11988
12016
|
</tr>
|
|
@@ -11993,7 +12021,7 @@ alternative authentication methods like email-only authentication.
|
|
|
11993
12021
|
|
|
11994
12022
|
### IdsDto
|
|
11995
12023
|
|
|
11996
|
-
Defined in: [libs/nest-crud/src/dtos/ids.dto.ts:10](https://github.com/hichchidev/hichchi/blob/
|
|
12024
|
+
Defined in: [libs/nest-crud/src/dtos/ids.dto.ts:10](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/dtos/ids.dto.ts#L10)
|
|
11997
12025
|
|
|
11998
12026
|
#### Implements
|
|
11999
12027
|
|
|
@@ -12035,7 +12063,7 @@ new IdsDto(): IdsDto;
|
|
|
12035
12063
|
</td>
|
|
12036
12064
|
<td>
|
|
12037
12065
|
|
|
12038
|
-
[libs/nest-crud/src/dtos/ids.dto.ts:14](https://github.com/hichchidev/hichchi/blob/
|
|
12066
|
+
[libs/nest-crud/src/dtos/ids.dto.ts:14](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/dtos/ids.dto.ts#L14)
|
|
12039
12067
|
|
|
12040
12068
|
</td>
|
|
12041
12069
|
</tr>
|
|
@@ -15152,7 +15180,7 @@ node_modules/typeorm/repository/Repository.d.ts:28
|
|
|
15152
15180
|
|
|
15153
15181
|
### Operation
|
|
15154
15182
|
|
|
15155
|
-
Defined in: [libs/nest-crud/src/enums/crud.enums.ts:50](https://github.com/hichchidev/hichchi/blob/
|
|
15183
|
+
Defined in: [libs/nest-crud/src/enums/crud.enums.ts:50](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L50)
|
|
15156
15184
|
|
|
15157
15185
|
CRUD Operations Enum
|
|
15158
15186
|
|
|
@@ -15198,7 +15226,7 @@ and performs any initialization logic required for new entities.
|
|
|
15198
15226
|
</td>
|
|
15199
15227
|
<td>
|
|
15200
15228
|
|
|
15201
|
-
[libs/nest-crud/src/enums/crud.enums.ts:58](https://github.com/hichchidev/hichchi/blob/
|
|
15229
|
+
[libs/nest-crud/src/enums/crud.enums.ts:58](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L58)
|
|
15202
15230
|
|
|
15203
15231
|
</td>
|
|
15204
15232
|
</tr>
|
|
@@ -15224,7 +15252,7 @@ enforce referential integrity constraints, depending on the configuration.
|
|
|
15224
15252
|
</td>
|
|
15225
15253
|
<td>
|
|
15226
15254
|
|
|
15227
|
-
[libs/nest-crud/src/enums/crud.enums.ts:85](https://github.com/hichchidev/hichchi/blob/
|
|
15255
|
+
[libs/nest-crud/src/enums/crud.enums.ts:85](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L85)
|
|
15228
15256
|
|
|
15229
15257
|
</td>
|
|
15230
15258
|
</tr>
|
|
@@ -15250,7 +15278,7 @@ entity already exists in the database.
|
|
|
15250
15278
|
</td>
|
|
15251
15279
|
<td>
|
|
15252
15280
|
|
|
15253
|
-
[libs/nest-crud/src/enums/crud.enums.ts:76](https://github.com/hichchidev/hichchi/blob/
|
|
15281
|
+
[libs/nest-crud/src/enums/crud.enums.ts:76](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L76)
|
|
15254
15282
|
|
|
15255
15283
|
</td>
|
|
15256
15284
|
</tr>
|
|
@@ -15276,7 +15304,7 @@ and may enforce different validation rules than creation.
|
|
|
15276
15304
|
</td>
|
|
15277
15305
|
<td>
|
|
15278
15306
|
|
|
15279
|
-
[libs/nest-crud/src/enums/crud.enums.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
15307
|
+
[libs/nest-crud/src/enums/crud.enums.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L67)
|
|
15280
15308
|
|
|
15281
15309
|
</td>
|
|
15282
15310
|
</tr>
|
|
@@ -15287,7 +15315,7 @@ and may enforce different validation rules than creation.
|
|
|
15287
15315
|
|
|
15288
15316
|
### TypeORMErrorType
|
|
15289
15317
|
|
|
15290
|
-
Defined in: [libs/nest-crud/src/enums/crud.enums.ts:13](https://github.com/hichchidev/hichchi/blob/
|
|
15318
|
+
Defined in: [libs/nest-crud/src/enums/crud.enums.ts:13](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L13)
|
|
15291
15319
|
|
|
15292
15320
|
TypeORM Database Error Types
|
|
15293
15321
|
|
|
@@ -15331,7 +15359,7 @@ often caused by typos in column names or outdated queries after schema changes.
|
|
|
15331
15359
|
</td>
|
|
15332
15360
|
<td>
|
|
15333
15361
|
|
|
15334
|
-
[libs/nest-crud/src/enums/crud.enums.ts:36](https://github.com/hichchidev/hichchi/blob/
|
|
15362
|
+
[libs/nest-crud/src/enums/crud.enums.ts:36](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L36)
|
|
15335
15363
|
|
|
15336
15364
|
</td>
|
|
15337
15365
|
</tr>
|
|
@@ -15354,7 +15382,7 @@ constraint, such as primary keys or columns with unique indexes.
|
|
|
15354
15382
|
</td>
|
|
15355
15383
|
<td>
|
|
15356
15384
|
|
|
15357
|
-
[libs/nest-crud/src/enums/crud.enums.ts:24](https://github.com/hichchidev/hichchi/blob/
|
|
15385
|
+
[libs/nest-crud/src/enums/crud.enums.ts:24](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L24)
|
|
15358
15386
|
|
|
15359
15387
|
</td>
|
|
15360
15388
|
</tr>
|
|
@@ -15377,7 +15405,7 @@ has no default value defined in the database schema.
|
|
|
15377
15405
|
</td>
|
|
15378
15406
|
<td>
|
|
15379
15407
|
|
|
15380
|
-
[libs/nest-crud/src/enums/crud.enums.ts:18](https://github.com/hichchidev/hichchi/blob/
|
|
15408
|
+
[libs/nest-crud/src/enums/crud.enums.ts:18](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L18)
|
|
15381
15409
|
|
|
15382
15410
|
</td>
|
|
15383
15411
|
</tr>
|
|
@@ -15400,7 +15428,7 @@ typically occurring during insert or update operations with invalid foreign key
|
|
|
15400
15428
|
</td>
|
|
15401
15429
|
<td>
|
|
15402
15430
|
|
|
15403
|
-
[libs/nest-crud/src/enums/crud.enums.ts:30](https://github.com/hichchidev/hichchi/blob/
|
|
15431
|
+
[libs/nest-crud/src/enums/crud.enums.ts:30](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/enums/crud.enums.ts#L30)
|
|
15404
15432
|
|
|
15405
15433
|
</td>
|
|
15406
15434
|
</tr>
|
|
@@ -15415,7 +15443,7 @@ typically occurring during insert or update operations with invalid foreign key
|
|
|
15415
15443
|
function Filters(): ParameterDecorator;
|
|
15416
15444
|
```
|
|
15417
15445
|
|
|
15418
|
-
Defined in: [libs/nest-crud/src/decorators/filter.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/
|
|
15446
|
+
Defined in: [libs/nest-crud/src/decorators/filter.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/filter.decorator.ts#L85)
|
|
15419
15447
|
|
|
15420
15448
|
Filter parameter decorator
|
|
15421
15449
|
|
|
@@ -15507,7 +15535,7 @@ export class ProductController {
|
|
|
15507
15535
|
function HichchiEntity(tableName, unique?, skipFkValidation?): EntityDecorator;
|
|
15508
15536
|
```
|
|
15509
15537
|
|
|
15510
|
-
Defined in: [libs/nest-crud/src/decorators/entity.decorator.ts:109](https://github.com/hichchidev/hichchi/blob/
|
|
15538
|
+
Defined in: [libs/nest-crud/src/decorators/entity.decorator.ts:109](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/entity.decorator.ts#L109)
|
|
15511
15539
|
|
|
15512
15540
|
Decorator for creating a new entity with enhanced validation and metadata registration
|
|
15513
15541
|
|
|
@@ -15688,7 +15716,7 @@ If entity naming conventions or relationship definitions are invalid
|
|
|
15688
15716
|
function HichchiEntityExtension(tableName): EntityExtensionDecorator;
|
|
15689
15717
|
```
|
|
15690
15718
|
|
|
15691
|
-
Defined in: [libs/nest-crud/src/decorators/entity-extension.decorator.ts:54](https://github.com/hichchidev/hichchi/blob/
|
|
15719
|
+
Defined in: [libs/nest-crud/src/decorators/entity-extension.decorator.ts:54](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/entity-extension.decorator.ts#L54)
|
|
15692
15720
|
|
|
15693
15721
|
Decorator for creating entity extensions with enhanced validation
|
|
15694
15722
|
|
|
@@ -15794,7 +15822,7 @@ If extension class doesn't extend BaseEntityExtension or has invalid relationshi
|
|
|
15794
15822
|
function HichchiJoinColumn(options?): PropertyDecorator;
|
|
15795
15823
|
```
|
|
15796
15824
|
|
|
15797
|
-
Defined in: [libs/nest-crud/src/decorators/join-column.decorator.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
15825
|
+
Defined in: [libs/nest-crud/src/decorators/join-column.decorator.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/join-column.decorator.ts#L51)
|
|
15798
15826
|
|
|
15799
15827
|
Decorator for creating a join column with automatic foreign key constraint naming
|
|
15800
15828
|
|
|
@@ -15883,7 +15911,7 @@ JoinColumn TypeORM's JoinColumn decorator that this extends
|
|
|
15883
15911
|
function HichchiRepository<Entity>(entity): RepositoryDecorator;
|
|
15884
15912
|
```
|
|
15885
15913
|
|
|
15886
|
-
Defined in: [libs/nest-crud/src/decorators/repository.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/
|
|
15914
|
+
Defined in: [libs/nest-crud/src/decorators/repository.decorator.ts:63](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/repository.decorator.ts#L63)
|
|
15887
15915
|
|
|
15888
15916
|
Decorator for creating a repository with automatic dependency injection
|
|
15889
15917
|
|
|
@@ -16011,7 +16039,7 @@ Implementation overload for extracting pagination from request query params.
|
|
|
16011
16039
|
function Pager(): ParameterDecorator;
|
|
16012
16040
|
```
|
|
16013
16041
|
|
|
16014
|
-
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:10](https://github.com/hichchidev/hichchi/blob/
|
|
16042
|
+
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:10](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/page.decorator.ts#L10)
|
|
16015
16043
|
|
|
16016
16044
|
Extracts pagination from `req.query.page` and `req.query.limit`.
|
|
16017
16045
|
|
|
@@ -16025,7 +16053,7 @@ Extracts pagination from `req.query.page` and `req.query.limit`.
|
|
|
16025
16053
|
function Pager(page, limit): ParameterDecorator;
|
|
16026
16054
|
```
|
|
16027
16055
|
|
|
16028
|
-
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:15](https://github.com/hichchidev/hichchi/blob/
|
|
16056
|
+
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:15](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/page.decorator.ts#L15)
|
|
16029
16057
|
|
|
16030
16058
|
Extracts pagination and falls back to provided defaults when parsed values are invalid.
|
|
16031
16059
|
|
|
@@ -16076,7 +16104,7 @@ Extracts pagination and falls back to provided defaults when parsed values are i
|
|
|
16076
16104
|
function Pager(defaultOptions?): ParameterDecorator;
|
|
16077
16105
|
```
|
|
16078
16106
|
|
|
16079
|
-
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:120](https://github.com/hichchidev/hichchi/blob/
|
|
16107
|
+
Defined in: [libs/nest-crud/src/decorators/page.decorator.ts:120](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/page.decorator.ts#L120)
|
|
16080
16108
|
|
|
16081
16109
|
Pagination parameter decorator
|
|
16082
16110
|
|
|
@@ -16221,7 +16249,7 @@ export class ArticleController {
|
|
|
16221
16249
|
function Search(): ParameterDecorator;
|
|
16222
16250
|
```
|
|
16223
16251
|
|
|
16224
|
-
Defined in: [libs/nest-crud/src/decorators/search.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/
|
|
16252
|
+
Defined in: [libs/nest-crud/src/decorators/search.decorator.ts:85](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/search.decorator.ts#L85)
|
|
16225
16253
|
|
|
16226
16254
|
Search parameter decorator
|
|
16227
16255
|
|
|
@@ -16316,7 +16344,7 @@ export class ProductController {
|
|
|
16316
16344
|
function Sorter(): ParameterDecorator;
|
|
16317
16345
|
```
|
|
16318
16346
|
|
|
16319
|
-
Defined in: [libs/nest-crud/src/decorators/sort.decorator.ts:90](https://github.com/hichchidev/hichchi/blob/
|
|
16347
|
+
Defined in: [libs/nest-crud/src/decorators/sort.decorator.ts:90](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/decorators/sort.decorator.ts#L90)
|
|
16320
16348
|
|
|
16321
16349
|
Sort parameter decorator
|
|
16322
16350
|
|
|
@@ -16412,7 +16440,7 @@ export class ProductController {
|
|
|
16412
16440
|
|
|
16413
16441
|
### ConnectionOptions
|
|
16414
16442
|
|
|
16415
|
-
Defined in: [libs/nest-crud/src/interfaces/connection-options.interface.ts:45](https://github.com/hichchidev/hichchi/blob/
|
|
16443
|
+
Defined in: [libs/nest-crud/src/interfaces/connection-options.interface.ts:45](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L45)
|
|
16416
16444
|
|
|
16417
16445
|
Database connection configuration options.
|
|
16418
16446
|
|
|
@@ -16503,7 +16531,7 @@ autoLoadEntities: true;
|
|
|
16503
16531
|
</td>
|
|
16504
16532
|
<td>
|
|
16505
16533
|
|
|
16506
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:185](https://github.com/hichchidev/hichchi/blob/
|
|
16534
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:185](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L185)
|
|
16507
16535
|
|
|
16508
16536
|
</td>
|
|
16509
16537
|
</tr>
|
|
@@ -16535,7 +16563,7 @@ charset: "utf8mb4";
|
|
|
16535
16563
|
</td>
|
|
16536
16564
|
<td>
|
|
16537
16565
|
|
|
16538
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:148](https://github.com/hichchidev/hichchi/blob/
|
|
16566
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:148](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L148)
|
|
16539
16567
|
|
|
16540
16568
|
</td>
|
|
16541
16569
|
</tr>
|
|
@@ -16566,7 +16594,7 @@ database: "my_application_db";
|
|
|
16566
16594
|
</td>
|
|
16567
16595
|
<td>
|
|
16568
16596
|
|
|
16569
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:114](https://github.com/hichchidev/hichchi/blob/
|
|
16597
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:114](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L114)
|
|
16570
16598
|
|
|
16571
16599
|
</td>
|
|
16572
16600
|
</tr>
|
|
@@ -16597,7 +16625,7 @@ entities: [__dirname + "/** /*.entity{.ts,.js}"];
|
|
|
16597
16625
|
</td>
|
|
16598
16626
|
<td>
|
|
16599
16627
|
|
|
16600
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:125](https://github.com/hichchidev/hichchi/blob/
|
|
16628
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:125](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L125)
|
|
16601
16629
|
|
|
16602
16630
|
</td>
|
|
16603
16631
|
</tr>
|
|
@@ -16632,7 +16660,7 @@ host: "localhost";
|
|
|
16632
16660
|
</td>
|
|
16633
16661
|
<td>
|
|
16634
16662
|
|
|
16635
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:69](https://github.com/hichchidev/hichchi/blob/
|
|
16663
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:69](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L69)
|
|
16636
16664
|
|
|
16637
16665
|
</td>
|
|
16638
16666
|
</tr>
|
|
@@ -16664,7 +16692,7 @@ false;
|
|
|
16664
16692
|
</td>
|
|
16665
16693
|
<td>
|
|
16666
16694
|
|
|
16667
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:172](https://github.com/hichchidev/hichchi/blob/
|
|
16695
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:172](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L172)
|
|
16668
16696
|
|
|
16669
16697
|
</td>
|
|
16670
16698
|
</tr>
|
|
@@ -16695,7 +16723,7 @@ migrations: [__dirname + "/migrations/*{.ts,.js}"];
|
|
|
16695
16723
|
</td>
|
|
16696
16724
|
<td>
|
|
16697
16725
|
|
|
16698
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:136](https://github.com/hichchidev/hichchi/blob/
|
|
16726
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:136](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L136)
|
|
16699
16727
|
|
|
16700
16728
|
</td>
|
|
16701
16729
|
</tr>
|
|
@@ -16727,7 +16755,7 @@ password: process.env.DB_PASSWORD;
|
|
|
16727
16755
|
</td>
|
|
16728
16756
|
<td>
|
|
16729
16757
|
|
|
16730
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:103](https://github.com/hichchidev/hichchi/blob/
|
|
16758
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:103](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L103)
|
|
16731
16759
|
|
|
16732
16760
|
</td>
|
|
16733
16761
|
</tr>
|
|
@@ -16758,7 +16786,7 @@ port: 3306;
|
|
|
16758
16786
|
</td>
|
|
16759
16787
|
<td>
|
|
16760
16788
|
|
|
16761
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:80](https://github.com/hichchidev/hichchi/blob/
|
|
16789
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:80](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L80)
|
|
16762
16790
|
|
|
16763
16791
|
</td>
|
|
16764
16792
|
</tr>
|
|
@@ -16796,7 +16824,7 @@ synchronize: false;
|
|
|
16796
16824
|
</td>
|
|
16797
16825
|
<td>
|
|
16798
16826
|
|
|
16799
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:161](https://github.com/hichchidev/hichchi/blob/
|
|
16827
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:161](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L161)
|
|
16800
16828
|
|
|
16801
16829
|
</td>
|
|
16802
16830
|
</tr>
|
|
@@ -16828,7 +16856,7 @@ type: "mysql";
|
|
|
16828
16856
|
</td>
|
|
16829
16857
|
<td>
|
|
16830
16858
|
|
|
16831
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
16859
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L56)
|
|
16832
16860
|
|
|
16833
16861
|
</td>
|
|
16834
16862
|
</tr>
|
|
@@ -16859,7 +16887,7 @@ username: "app_user";
|
|
|
16859
16887
|
</td>
|
|
16860
16888
|
<td>
|
|
16861
16889
|
|
|
16862
|
-
[libs/nest-crud/src/interfaces/connection-options.interface.ts:91](https://github.com/hichchidev/hichchi/blob/
|
|
16890
|
+
[libs/nest-crud/src/interfaces/connection-options.interface.ts:91](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/connection-options.interface.ts#L91)
|
|
16863
16891
|
|
|
16864
16892
|
</td>
|
|
16865
16893
|
</tr>
|
|
@@ -16870,7 +16898,7 @@ username: "app_user";
|
|
|
16870
16898
|
|
|
16871
16899
|
### GetByIdsOptions
|
|
16872
16900
|
|
|
16873
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:355](https://github.com/hichchidev/hichchi/blob/
|
|
16901
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:355](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L355)
|
|
16874
16902
|
|
|
16875
16903
|
Options interface for retrieving entities by their IDs.
|
|
16876
16904
|
|
|
@@ -16970,7 +16998,7 @@ ids: ["abc123", "def456"]; // For string IDs
|
|
|
16970
16998
|
</td>
|
|
16971
16999
|
<td>
|
|
16972
17000
|
|
|
16973
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:367](https://github.com/hichchidev/hichchi/blob/
|
|
17001
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:367](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L367)
|
|
16974
17002
|
|
|
16975
17003
|
</td>
|
|
16976
17004
|
</tr>
|
|
@@ -17010,7 +17038,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
17010
17038
|
</td>
|
|
17011
17039
|
<td>
|
|
17012
17040
|
|
|
17013
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
17041
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
17014
17042
|
|
|
17015
17043
|
</td>
|
|
17016
17044
|
</tr>
|
|
@@ -17051,7 +17079,7 @@ options: {
|
|
|
17051
17079
|
</td>
|
|
17052
17080
|
<td>
|
|
17053
17081
|
|
|
17054
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
17082
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
17055
17083
|
|
|
17056
17084
|
</td>
|
|
17057
17085
|
</tr>
|
|
@@ -17088,7 +17116,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
17088
17116
|
</td>
|
|
17089
17117
|
<td>
|
|
17090
17118
|
|
|
17091
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
17119
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
17092
17120
|
|
|
17093
17121
|
</td>
|
|
17094
17122
|
</tr>
|
|
@@ -17125,7 +17153,7 @@ relations: ["profile", "posts"];
|
|
|
17125
17153
|
</td>
|
|
17126
17154
|
<td>
|
|
17127
17155
|
|
|
17128
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
17156
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
17129
17157
|
|
|
17130
17158
|
</td>
|
|
17131
17159
|
</tr>
|
|
@@ -17165,7 +17193,7 @@ sort: {
|
|
|
17165
17193
|
</td>
|
|
17166
17194
|
<td>
|
|
17167
17195
|
|
|
17168
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
17196
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
17169
17197
|
|
|
17170
17198
|
</td>
|
|
17171
17199
|
</tr>
|
|
@@ -17176,7 +17204,7 @@ sort: {
|
|
|
17176
17204
|
|
|
17177
17205
|
### GetManyOptionsFilter
|
|
17178
17206
|
|
|
17179
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:464](https://github.com/hichchidev/hichchi/blob/
|
|
17207
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:464](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L464)
|
|
17180
17208
|
|
|
17181
17209
|
Options for retrieving multiple entities with pagination and filter-based query keys.
|
|
17182
17210
|
|
|
@@ -17248,7 +17276,7 @@ filters: { status: 'active', type: 'user' }
|
|
|
17248
17276
|
</td>
|
|
17249
17277
|
<td>
|
|
17250
17278
|
|
|
17251
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
17279
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L98)
|
|
17252
17280
|
|
|
17253
17281
|
</td>
|
|
17254
17282
|
</tr>
|
|
@@ -17288,7 +17316,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
17288
17316
|
</td>
|
|
17289
17317
|
<td>
|
|
17290
17318
|
|
|
17291
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
17319
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
17292
17320
|
|
|
17293
17321
|
</td>
|
|
17294
17322
|
</tr>
|
|
@@ -17329,7 +17357,7 @@ options: {
|
|
|
17329
17357
|
</td>
|
|
17330
17358
|
<td>
|
|
17331
17359
|
|
|
17332
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
17360
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
17333
17361
|
|
|
17334
17362
|
</td>
|
|
17335
17363
|
</tr>
|
|
@@ -17366,7 +17394,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
17366
17394
|
</td>
|
|
17367
17395
|
<td>
|
|
17368
17396
|
|
|
17369
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
17397
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
17370
17398
|
|
|
17371
17399
|
</td>
|
|
17372
17400
|
</tr>
|
|
@@ -17403,7 +17431,7 @@ relations: ["profile", "posts"];
|
|
|
17403
17431
|
</td>
|
|
17404
17432
|
<td>
|
|
17405
17433
|
|
|
17406
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
17434
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
17407
17435
|
|
|
17408
17436
|
</td>
|
|
17409
17437
|
</tr>
|
|
@@ -17443,7 +17471,7 @@ sort: {
|
|
|
17443
17471
|
</td>
|
|
17444
17472
|
<td>
|
|
17445
17473
|
|
|
17446
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
17474
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
17447
17475
|
|
|
17448
17476
|
</td>
|
|
17449
17477
|
</tr>
|
|
@@ -17471,7 +17499,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
17471
17499
|
</td>
|
|
17472
17500
|
<td>
|
|
17473
17501
|
|
|
17474
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/
|
|
17502
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L104)
|
|
17475
17503
|
|
|
17476
17504
|
</td>
|
|
17477
17505
|
</tr>
|
|
@@ -17482,7 +17510,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
17482
17510
|
|
|
17483
17511
|
### GetManyOptionsNot
|
|
17484
17512
|
|
|
17485
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:510](https://github.com/hichchidev/hichchi/blob/
|
|
17513
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:510](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L510)
|
|
17486
17514
|
|
|
17487
17515
|
Options interface for retrieving multiple entities using exclusion-based filtering with pagination.
|
|
17488
17516
|
|
|
@@ -17581,7 +17609,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
17581
17609
|
</td>
|
|
17582
17610
|
<td>
|
|
17583
17611
|
|
|
17584
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
17612
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
17585
17613
|
|
|
17586
17614
|
</td>
|
|
17587
17615
|
</tr>
|
|
@@ -17617,7 +17645,7 @@ not: { role: 'admin', status: 'deleted' }
|
|
|
17617
17645
|
</td>
|
|
17618
17646
|
<td>
|
|
17619
17647
|
|
|
17620
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/
|
|
17648
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L224)
|
|
17621
17649
|
|
|
17622
17650
|
</td>
|
|
17623
17651
|
</tr>
|
|
@@ -17658,7 +17686,7 @@ options: {
|
|
|
17658
17686
|
</td>
|
|
17659
17687
|
<td>
|
|
17660
17688
|
|
|
17661
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
17689
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
17662
17690
|
|
|
17663
17691
|
</td>
|
|
17664
17692
|
</tr>
|
|
@@ -17695,7 +17723,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
17695
17723
|
</td>
|
|
17696
17724
|
<td>
|
|
17697
17725
|
|
|
17698
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
17726
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
17699
17727
|
|
|
17700
17728
|
</td>
|
|
17701
17729
|
</tr>
|
|
@@ -17732,7 +17760,7 @@ relations: ["profile", "posts"];
|
|
|
17732
17760
|
</td>
|
|
17733
17761
|
<td>
|
|
17734
17762
|
|
|
17735
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
17763
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
17736
17764
|
|
|
17737
17765
|
</td>
|
|
17738
17766
|
</tr>
|
|
@@ -17772,7 +17800,7 @@ sort: {
|
|
|
17772
17800
|
</td>
|
|
17773
17801
|
<td>
|
|
17774
17802
|
|
|
17775
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
17803
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
17776
17804
|
|
|
17777
17805
|
</td>
|
|
17778
17806
|
</tr>
|
|
@@ -17800,7 +17828,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
17800
17828
|
</td>
|
|
17801
17829
|
<td>
|
|
17802
17830
|
|
|
17803
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/
|
|
17831
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L230)
|
|
17804
17832
|
|
|
17805
17833
|
</td>
|
|
17806
17834
|
</tr>
|
|
@@ -17811,7 +17839,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
17811
17839
|
|
|
17812
17840
|
### GetManyOptionsSearch
|
|
17813
17841
|
|
|
17814
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:487](https://github.com/hichchidev/hichchi/blob/
|
|
17842
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:487](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L487)
|
|
17815
17843
|
|
|
17816
17844
|
Options interface for retrieving multiple entities using search-based filtering with pagination.
|
|
17817
17845
|
|
|
@@ -17910,7 +17938,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
17910
17938
|
</td>
|
|
17911
17939
|
<td>
|
|
17912
17940
|
|
|
17913
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
17941
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
17914
17942
|
|
|
17915
17943
|
</td>
|
|
17916
17944
|
</tr>
|
|
@@ -17951,7 +17979,7 @@ options: {
|
|
|
17951
17979
|
</td>
|
|
17952
17980
|
<td>
|
|
17953
17981
|
|
|
17954
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
17982
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
17955
17983
|
|
|
17956
17984
|
</td>
|
|
17957
17985
|
</tr>
|
|
@@ -17988,7 +18016,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
17988
18016
|
</td>
|
|
17989
18017
|
<td>
|
|
17990
18018
|
|
|
17991
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
18019
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
17992
18020
|
|
|
17993
18021
|
</td>
|
|
17994
18022
|
</tr>
|
|
@@ -18025,7 +18053,7 @@ relations: ["profile", "posts"];
|
|
|
18025
18053
|
</td>
|
|
18026
18054
|
<td>
|
|
18027
18055
|
|
|
18028
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
18056
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
18029
18057
|
|
|
18030
18058
|
</td>
|
|
18031
18059
|
</tr>
|
|
@@ -18065,7 +18093,7 @@ search: {
|
|
|
18065
18093
|
</td>
|
|
18066
18094
|
<td>
|
|
18067
18095
|
|
|
18068
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/
|
|
18096
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L157)
|
|
18069
18097
|
|
|
18070
18098
|
</td>
|
|
18071
18099
|
</tr>
|
|
@@ -18105,7 +18133,7 @@ sort: {
|
|
|
18105
18133
|
</td>
|
|
18106
18134
|
<td>
|
|
18107
18135
|
|
|
18108
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
18136
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
18109
18137
|
|
|
18110
18138
|
</td>
|
|
18111
18139
|
</tr>
|
|
@@ -18133,7 +18161,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18133
18161
|
</td>
|
|
18134
18162
|
<td>
|
|
18135
18163
|
|
|
18136
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/
|
|
18164
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L163)
|
|
18137
18165
|
|
|
18138
18166
|
</td>
|
|
18139
18167
|
</tr>
|
|
@@ -18144,7 +18172,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18144
18172
|
|
|
18145
18173
|
### GetManyOptionsWhere
|
|
18146
18174
|
|
|
18147
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:535](https://github.com/hichchidev/hichchi/blob/
|
|
18175
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:535](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L535)
|
|
18148
18176
|
|
|
18149
18177
|
Options interface for retrieving multiple entities using direct WHERE clause with pagination.
|
|
18150
18178
|
|
|
@@ -18230,7 +18258,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18230
18258
|
</td>
|
|
18231
18259
|
<td>
|
|
18232
18260
|
|
|
18233
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/
|
|
18261
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L265)
|
|
18234
18262
|
|
|
18235
18263
|
</td>
|
|
18236
18264
|
</tr>
|
|
@@ -18270,7 +18298,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
18270
18298
|
</td>
|
|
18271
18299
|
<td>
|
|
18272
18300
|
|
|
18273
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
18301
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
18274
18302
|
|
|
18275
18303
|
</td>
|
|
18276
18304
|
</tr>
|
|
@@ -18298,7 +18326,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
18298
18326
|
</td>
|
|
18299
18327
|
<td>
|
|
18300
18328
|
|
|
18301
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/
|
|
18329
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L277)
|
|
18302
18330
|
|
|
18303
18331
|
</td>
|
|
18304
18332
|
</tr>
|
|
@@ -18339,7 +18367,7 @@ options: {
|
|
|
18339
18367
|
</td>
|
|
18340
18368
|
<td>
|
|
18341
18369
|
|
|
18342
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
18370
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
18343
18371
|
|
|
18344
18372
|
</td>
|
|
18345
18373
|
</tr>
|
|
@@ -18376,7 +18404,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
18376
18404
|
</td>
|
|
18377
18405
|
<td>
|
|
18378
18406
|
|
|
18379
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
18407
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
18380
18408
|
|
|
18381
18409
|
</td>
|
|
18382
18410
|
</tr>
|
|
@@ -18413,7 +18441,7 @@ relations: ["profile", "posts"];
|
|
|
18413
18441
|
</td>
|
|
18414
18442
|
<td>
|
|
18415
18443
|
|
|
18416
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
18444
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
18417
18445
|
|
|
18418
18446
|
</td>
|
|
18419
18447
|
</tr>
|
|
@@ -18441,7 +18469,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18441
18469
|
</td>
|
|
18442
18470
|
<td>
|
|
18443
18471
|
|
|
18444
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/
|
|
18472
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L271)
|
|
18445
18473
|
|
|
18446
18474
|
</td>
|
|
18447
18475
|
</tr>
|
|
@@ -18481,7 +18509,7 @@ sort: {
|
|
|
18481
18509
|
</td>
|
|
18482
18510
|
<td>
|
|
18483
18511
|
|
|
18484
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
18512
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
18485
18513
|
|
|
18486
18514
|
</td>
|
|
18487
18515
|
</tr>
|
|
@@ -18527,7 +18555,7 @@ where: [
|
|
|
18527
18555
|
</td>
|
|
18528
18556
|
<td>
|
|
18529
18557
|
|
|
18530
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/
|
|
18558
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L297)
|
|
18531
18559
|
|
|
18532
18560
|
</td>
|
|
18533
18561
|
</tr>
|
|
@@ -18538,7 +18566,7 @@ where: [
|
|
|
18538
18566
|
|
|
18539
18567
|
### GetOneOptionsFilter
|
|
18540
18568
|
|
|
18541
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:394](https://github.com/hichchidev/hichchi/blob/
|
|
18569
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:394](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L394)
|
|
18542
18570
|
|
|
18543
18571
|
Options for retrieving a single entity using filter-based query keys.
|
|
18544
18572
|
|
|
@@ -18614,7 +18642,7 @@ filters: { status: 'active', type: 'user' }
|
|
|
18614
18642
|
</td>
|
|
18615
18643
|
<td>
|
|
18616
18644
|
|
|
18617
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
18645
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L98)
|
|
18618
18646
|
|
|
18619
18647
|
</td>
|
|
18620
18648
|
</tr>
|
|
@@ -18654,7 +18682,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
18654
18682
|
</td>
|
|
18655
18683
|
<td>
|
|
18656
18684
|
|
|
18657
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
18685
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
18658
18686
|
|
|
18659
18687
|
</td>
|
|
18660
18688
|
</tr>
|
|
@@ -18695,7 +18723,7 @@ options: {
|
|
|
18695
18723
|
</td>
|
|
18696
18724
|
<td>
|
|
18697
18725
|
|
|
18698
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
18726
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
18699
18727
|
|
|
18700
18728
|
</td>
|
|
18701
18729
|
</tr>
|
|
@@ -18732,7 +18760,7 @@ relations: ["profile", "posts"];
|
|
|
18732
18760
|
</td>
|
|
18733
18761
|
<td>
|
|
18734
18762
|
|
|
18735
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
18763
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
18736
18764
|
|
|
18737
18765
|
</td>
|
|
18738
18766
|
</tr>
|
|
@@ -18772,7 +18800,7 @@ sort: {
|
|
|
18772
18800
|
</td>
|
|
18773
18801
|
<td>
|
|
18774
18802
|
|
|
18775
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
18803
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
18776
18804
|
|
|
18777
18805
|
</td>
|
|
18778
18806
|
</tr>
|
|
@@ -18800,7 +18828,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18800
18828
|
</td>
|
|
18801
18829
|
<td>
|
|
18802
18830
|
|
|
18803
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/
|
|
18831
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L104)
|
|
18804
18832
|
|
|
18805
18833
|
</td>
|
|
18806
18834
|
</tr>
|
|
@@ -18811,7 +18839,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
18811
18839
|
|
|
18812
18840
|
### GetOneOptionsNot
|
|
18813
18841
|
|
|
18814
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:436](https://github.com/hichchidev/hichchi/blob/
|
|
18842
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:436](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L436)
|
|
18815
18843
|
|
|
18816
18844
|
Options interface for retrieving a single entity using exclusion-based filtering.
|
|
18817
18845
|
|
|
@@ -18912,7 +18940,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
18912
18940
|
</td>
|
|
18913
18941
|
<td>
|
|
18914
18942
|
|
|
18915
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
18943
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
18916
18944
|
|
|
18917
18945
|
</td>
|
|
18918
18946
|
</tr>
|
|
@@ -18948,7 +18976,7 @@ not: { role: 'admin', status: 'deleted' }
|
|
|
18948
18976
|
</td>
|
|
18949
18977
|
<td>
|
|
18950
18978
|
|
|
18951
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/
|
|
18979
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L224)
|
|
18952
18980
|
|
|
18953
18981
|
</td>
|
|
18954
18982
|
</tr>
|
|
@@ -18989,7 +19017,7 @@ options: {
|
|
|
18989
19017
|
</td>
|
|
18990
19018
|
<td>
|
|
18991
19019
|
|
|
18992
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
19020
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
18993
19021
|
|
|
18994
19022
|
</td>
|
|
18995
19023
|
</tr>
|
|
@@ -19026,7 +19054,7 @@ relations: ["profile", "posts"];
|
|
|
19026
19054
|
</td>
|
|
19027
19055
|
<td>
|
|
19028
19056
|
|
|
19029
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
19057
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
19030
19058
|
|
|
19031
19059
|
</td>
|
|
19032
19060
|
</tr>
|
|
@@ -19066,7 +19094,7 @@ sort: {
|
|
|
19066
19094
|
</td>
|
|
19067
19095
|
<td>
|
|
19068
19096
|
|
|
19069
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
19097
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
19070
19098
|
|
|
19071
19099
|
</td>
|
|
19072
19100
|
</tr>
|
|
@@ -19094,7 +19122,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
19094
19122
|
</td>
|
|
19095
19123
|
<td>
|
|
19096
19124
|
|
|
19097
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/
|
|
19125
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L230)
|
|
19098
19126
|
|
|
19099
19127
|
</td>
|
|
19100
19128
|
</tr>
|
|
@@ -19105,7 +19133,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
19105
19133
|
|
|
19106
19134
|
### GetOneOptionsSearch
|
|
19107
19135
|
|
|
19108
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:415](https://github.com/hichchidev/hichchi/blob/
|
|
19136
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:415](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L415)
|
|
19109
19137
|
|
|
19110
19138
|
Options interface for retrieving a single entity using search-based filtering.
|
|
19111
19139
|
|
|
@@ -19206,7 +19234,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
19206
19234
|
</td>
|
|
19207
19235
|
<td>
|
|
19208
19236
|
|
|
19209
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
19237
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
19210
19238
|
|
|
19211
19239
|
</td>
|
|
19212
19240
|
</tr>
|
|
@@ -19247,7 +19275,7 @@ options: {
|
|
|
19247
19275
|
</td>
|
|
19248
19276
|
<td>
|
|
19249
19277
|
|
|
19250
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
19278
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
19251
19279
|
|
|
19252
19280
|
</td>
|
|
19253
19281
|
</tr>
|
|
@@ -19284,7 +19312,7 @@ relations: ["profile", "posts"];
|
|
|
19284
19312
|
</td>
|
|
19285
19313
|
<td>
|
|
19286
19314
|
|
|
19287
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
19315
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
19288
19316
|
|
|
19289
19317
|
</td>
|
|
19290
19318
|
</tr>
|
|
@@ -19324,7 +19352,7 @@ search: {
|
|
|
19324
19352
|
</td>
|
|
19325
19353
|
<td>
|
|
19326
19354
|
|
|
19327
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/
|
|
19355
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L157)
|
|
19328
19356
|
|
|
19329
19357
|
</td>
|
|
19330
19358
|
</tr>
|
|
@@ -19364,7 +19392,7 @@ sort: {
|
|
|
19364
19392
|
</td>
|
|
19365
19393
|
<td>
|
|
19366
19394
|
|
|
19367
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
19395
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
19368
19396
|
|
|
19369
19397
|
</td>
|
|
19370
19398
|
</tr>
|
|
@@ -19392,7 +19420,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
19392
19420
|
</td>
|
|
19393
19421
|
<td>
|
|
19394
19422
|
|
|
19395
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/
|
|
19423
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L163)
|
|
19396
19424
|
|
|
19397
19425
|
</td>
|
|
19398
19426
|
</tr>
|
|
@@ -19403,7 +19431,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
19403
19431
|
|
|
19404
19432
|
### GetOneOptionsWhere
|
|
19405
19433
|
|
|
19406
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:459](https://github.com/hichchidev/hichchi/blob/
|
|
19434
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:459](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L459)
|
|
19407
19435
|
|
|
19408
19436
|
Options interface for retrieving a single entity using direct WHERE clause.
|
|
19409
19437
|
|
|
@@ -19491,7 +19519,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
19491
19519
|
</td>
|
|
19492
19520
|
<td>
|
|
19493
19521
|
|
|
19494
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/
|
|
19522
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L265)
|
|
19495
19523
|
|
|
19496
19524
|
</td>
|
|
19497
19525
|
</tr>
|
|
@@ -19531,7 +19559,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
19531
19559
|
</td>
|
|
19532
19560
|
<td>
|
|
19533
19561
|
|
|
19534
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
19562
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
19535
19563
|
|
|
19536
19564
|
</td>
|
|
19537
19565
|
</tr>
|
|
@@ -19559,7 +19587,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
19559
19587
|
</td>
|
|
19560
19588
|
<td>
|
|
19561
19589
|
|
|
19562
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/
|
|
19590
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L277)
|
|
19563
19591
|
|
|
19564
19592
|
</td>
|
|
19565
19593
|
</tr>
|
|
@@ -19600,7 +19628,7 @@ options: {
|
|
|
19600
19628
|
</td>
|
|
19601
19629
|
<td>
|
|
19602
19630
|
|
|
19603
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
19631
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
19604
19632
|
|
|
19605
19633
|
</td>
|
|
19606
19634
|
</tr>
|
|
@@ -19637,7 +19665,7 @@ relations: ["profile", "posts"];
|
|
|
19637
19665
|
</td>
|
|
19638
19666
|
<td>
|
|
19639
19667
|
|
|
19640
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
19668
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
19641
19669
|
|
|
19642
19670
|
</td>
|
|
19643
19671
|
</tr>
|
|
@@ -19665,7 +19693,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
19665
19693
|
</td>
|
|
19666
19694
|
<td>
|
|
19667
19695
|
|
|
19668
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/
|
|
19696
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L271)
|
|
19669
19697
|
|
|
19670
19698
|
</td>
|
|
19671
19699
|
</tr>
|
|
@@ -19705,7 +19733,7 @@ sort: {
|
|
|
19705
19733
|
</td>
|
|
19706
19734
|
<td>
|
|
19707
19735
|
|
|
19708
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
19736
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
19709
19737
|
|
|
19710
19738
|
</td>
|
|
19711
19739
|
</tr>
|
|
@@ -19751,7 +19779,7 @@ where: [
|
|
|
19751
19779
|
</td>
|
|
19752
19780
|
<td>
|
|
19753
19781
|
|
|
19754
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/
|
|
19782
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L297)
|
|
19755
19783
|
|
|
19756
19784
|
</td>
|
|
19757
19785
|
</tr>
|
|
@@ -19762,7 +19790,7 @@ where: [
|
|
|
19762
19790
|
|
|
19763
19791
|
### PaginatedGetOptions
|
|
19764
19792
|
|
|
19765
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:319](https://github.com/hichchidev/hichchi/blob/
|
|
19793
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:319](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L319)
|
|
19766
19794
|
|
|
19767
19795
|
Options interface for paginated CRUD operations.
|
|
19768
19796
|
|
|
@@ -19867,7 +19895,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
19867
19895
|
</td>
|
|
19868
19896
|
<td>
|
|
19869
19897
|
|
|
19870
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
19898
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
19871
19899
|
|
|
19872
19900
|
</td>
|
|
19873
19901
|
</tr>
|
|
@@ -19908,7 +19936,7 @@ options: {
|
|
|
19908
19936
|
</td>
|
|
19909
19937
|
<td>
|
|
19910
19938
|
|
|
19911
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
19939
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
19912
19940
|
|
|
19913
19941
|
</td>
|
|
19914
19942
|
</tr>
|
|
@@ -19945,7 +19973,7 @@ pagination: { page: 2, limit: 25 } // Get 25 items from the second page
|
|
|
19945
19973
|
</td>
|
|
19946
19974
|
<td>
|
|
19947
19975
|
|
|
19948
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/
|
|
19976
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:330](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L330)
|
|
19949
19977
|
|
|
19950
19978
|
</td>
|
|
19951
19979
|
</tr>
|
|
@@ -19982,7 +20010,7 @@ relations: ["profile", "posts"];
|
|
|
19982
20010
|
</td>
|
|
19983
20011
|
<td>
|
|
19984
20012
|
|
|
19985
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
20013
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
19986
20014
|
|
|
19987
20015
|
</td>
|
|
19988
20016
|
</tr>
|
|
@@ -20022,7 +20050,7 @@ sort: {
|
|
|
20022
20050
|
</td>
|
|
20023
20051
|
<td>
|
|
20024
20052
|
|
|
20025
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
20053
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
20026
20054
|
|
|
20027
20055
|
</td>
|
|
20028
20056
|
</tr>
|
|
@@ -20033,7 +20061,7 @@ sort: {
|
|
|
20033
20061
|
|
|
20034
20062
|
### QueryOptions
|
|
20035
20063
|
|
|
20036
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:23](https://github.com/hichchidev/hichchi/blob/
|
|
20064
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:23](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L23)
|
|
20037
20065
|
|
|
20038
20066
|
Base options interface for CRUD operations.
|
|
20039
20067
|
|
|
@@ -20131,7 +20159,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
20131
20159
|
</td>
|
|
20132
20160
|
<td>
|
|
20133
20161
|
|
|
20134
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
20162
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
20135
20163
|
|
|
20136
20164
|
</td>
|
|
20137
20165
|
</tr>
|
|
@@ -20167,7 +20195,7 @@ options: {
|
|
|
20167
20195
|
</td>
|
|
20168
20196
|
<td>
|
|
20169
20197
|
|
|
20170
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
20198
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
20171
20199
|
|
|
20172
20200
|
</td>
|
|
20173
20201
|
</tr>
|
|
@@ -20199,7 +20227,7 @@ relations: ["profile", "posts"];
|
|
|
20199
20227
|
</td>
|
|
20200
20228
|
<td>
|
|
20201
20229
|
|
|
20202
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
20230
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
20203
20231
|
|
|
20204
20232
|
</td>
|
|
20205
20233
|
</tr>
|
|
@@ -20234,7 +20262,7 @@ sort: {
|
|
|
20234
20262
|
</td>
|
|
20235
20263
|
<td>
|
|
20236
20264
|
|
|
20237
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
20265
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
20238
20266
|
|
|
20239
20267
|
</td>
|
|
20240
20268
|
</tr>
|
|
@@ -20245,7 +20273,7 @@ sort: {
|
|
|
20245
20273
|
|
|
20246
20274
|
### QueryOptionsFilter
|
|
20247
20275
|
|
|
20248
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:88](https://github.com/hichchidev/hichchi/blob/
|
|
20276
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:88](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L88)
|
|
20249
20277
|
|
|
20250
20278
|
Query options using the `where`-like filter object.
|
|
20251
20279
|
|
|
@@ -20321,7 +20349,7 @@ filters: { status: 'active', type: 'user' }
|
|
|
20321
20349
|
</td>
|
|
20322
20350
|
<td>
|
|
20323
20351
|
|
|
20324
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
20352
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L98)
|
|
20325
20353
|
|
|
20326
20354
|
</td>
|
|
20327
20355
|
</tr>
|
|
@@ -20361,7 +20389,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
20361
20389
|
</td>
|
|
20362
20390
|
<td>
|
|
20363
20391
|
|
|
20364
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
20392
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
20365
20393
|
|
|
20366
20394
|
</td>
|
|
20367
20395
|
</tr>
|
|
@@ -20402,7 +20430,7 @@ options: {
|
|
|
20402
20430
|
</td>
|
|
20403
20431
|
<td>
|
|
20404
20432
|
|
|
20405
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
20433
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
20406
20434
|
|
|
20407
20435
|
</td>
|
|
20408
20436
|
</tr>
|
|
@@ -20439,7 +20467,7 @@ relations: ["profile", "posts"];
|
|
|
20439
20467
|
</td>
|
|
20440
20468
|
<td>
|
|
20441
20469
|
|
|
20442
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
20470
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
20443
20471
|
|
|
20444
20472
|
</td>
|
|
20445
20473
|
</tr>
|
|
@@ -20479,7 +20507,7 @@ sort: {
|
|
|
20479
20507
|
</td>
|
|
20480
20508
|
<td>
|
|
20481
20509
|
|
|
20482
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
20510
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
20483
20511
|
|
|
20484
20512
|
</td>
|
|
20485
20513
|
</tr>
|
|
@@ -20507,7 +20535,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
20507
20535
|
</td>
|
|
20508
20536
|
<td>
|
|
20509
20537
|
|
|
20510
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/
|
|
20538
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:104](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L104)
|
|
20511
20539
|
|
|
20512
20540
|
</td>
|
|
20513
20541
|
</tr>
|
|
@@ -20518,7 +20546,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
20518
20546
|
|
|
20519
20547
|
### QueryOptionsNot
|
|
20520
20548
|
|
|
20521
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:197](https://github.com/hichchidev/hichchi/blob/
|
|
20549
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:197](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L197)
|
|
20522
20550
|
|
|
20523
20551
|
Options interface for exclusion-based CRUD operations.
|
|
20524
20552
|
|
|
@@ -20625,7 +20653,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
20625
20653
|
</td>
|
|
20626
20654
|
<td>
|
|
20627
20655
|
|
|
20628
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
20656
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
20629
20657
|
|
|
20630
20658
|
</td>
|
|
20631
20659
|
</tr>
|
|
@@ -20661,7 +20689,7 @@ not: { role: 'admin', status: 'deleted' }
|
|
|
20661
20689
|
</td>
|
|
20662
20690
|
<td>
|
|
20663
20691
|
|
|
20664
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/
|
|
20692
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:224](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L224)
|
|
20665
20693
|
|
|
20666
20694
|
</td>
|
|
20667
20695
|
</tr>
|
|
@@ -20702,7 +20730,7 @@ options: {
|
|
|
20702
20730
|
</td>
|
|
20703
20731
|
<td>
|
|
20704
20732
|
|
|
20705
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
20733
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
20706
20734
|
|
|
20707
20735
|
</td>
|
|
20708
20736
|
</tr>
|
|
@@ -20739,7 +20767,7 @@ relations: ["profile", "posts"];
|
|
|
20739
20767
|
</td>
|
|
20740
20768
|
<td>
|
|
20741
20769
|
|
|
20742
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
20770
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
20743
20771
|
|
|
20744
20772
|
</td>
|
|
20745
20773
|
</tr>
|
|
@@ -20779,7 +20807,7 @@ sort: {
|
|
|
20779
20807
|
</td>
|
|
20780
20808
|
<td>
|
|
20781
20809
|
|
|
20782
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
20810
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
20783
20811
|
|
|
20784
20812
|
</td>
|
|
20785
20813
|
</tr>
|
|
@@ -20807,7 +20835,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
20807
20835
|
</td>
|
|
20808
20836
|
<td>
|
|
20809
20837
|
|
|
20810
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/
|
|
20838
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:230](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L230)
|
|
20811
20839
|
|
|
20812
20840
|
</td>
|
|
20813
20841
|
</tr>
|
|
@@ -20818,7 +20846,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
20818
20846
|
|
|
20819
20847
|
### QueryOptionsSearch
|
|
20820
20848
|
|
|
20821
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:132](https://github.com/hichchidev/hichchi/blob/
|
|
20849
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:132](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L132)
|
|
20822
20850
|
|
|
20823
20851
|
Options interface for search-based CRUD operations.
|
|
20824
20852
|
|
|
@@ -20925,7 +20953,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
20925
20953
|
</td>
|
|
20926
20954
|
<td>
|
|
20927
20955
|
|
|
20928
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
20956
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
20929
20957
|
|
|
20930
20958
|
</td>
|
|
20931
20959
|
</tr>
|
|
@@ -20966,7 +20994,7 @@ options: {
|
|
|
20966
20994
|
</td>
|
|
20967
20995
|
<td>
|
|
20968
20996
|
|
|
20969
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
20997
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
20970
20998
|
|
|
20971
20999
|
</td>
|
|
20972
21000
|
</tr>
|
|
@@ -21003,7 +21031,7 @@ relations: ["profile", "posts"];
|
|
|
21003
21031
|
</td>
|
|
21004
21032
|
<td>
|
|
21005
21033
|
|
|
21006
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
21034
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
21007
21035
|
|
|
21008
21036
|
</td>
|
|
21009
21037
|
</tr>
|
|
@@ -21043,7 +21071,7 @@ search: {
|
|
|
21043
21071
|
</td>
|
|
21044
21072
|
<td>
|
|
21045
21073
|
|
|
21046
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/
|
|
21074
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:157](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L157)
|
|
21047
21075
|
|
|
21048
21076
|
</td>
|
|
21049
21077
|
</tr>
|
|
@@ -21083,7 +21111,7 @@ sort: {
|
|
|
21083
21111
|
</td>
|
|
21084
21112
|
<td>
|
|
21085
21113
|
|
|
21086
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
21114
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
21087
21115
|
|
|
21088
21116
|
</td>
|
|
21089
21117
|
</tr>
|
|
@@ -21111,7 +21139,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
21111
21139
|
</td>
|
|
21112
21140
|
<td>
|
|
21113
21141
|
|
|
21114
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/
|
|
21142
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:163](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L163)
|
|
21115
21143
|
|
|
21116
21144
|
</td>
|
|
21117
21145
|
</tr>
|
|
@@ -21122,7 +21150,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
21122
21150
|
|
|
21123
21151
|
### QueryOptionsWhere
|
|
21124
21152
|
|
|
21125
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:260](https://github.com/hichchidev/hichchi/blob/
|
|
21153
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:260](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L260)
|
|
21126
21154
|
|
|
21127
21155
|
Options interface for direct WHERE clause CRUD operations.
|
|
21128
21156
|
|
|
@@ -21216,7 +21244,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
21216
21244
|
</td>
|
|
21217
21245
|
<td>
|
|
21218
21246
|
|
|
21219
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/
|
|
21247
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:265](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L265)
|
|
21220
21248
|
|
|
21221
21249
|
</td>
|
|
21222
21250
|
</tr>
|
|
@@ -21256,7 +21284,7 @@ async createUserWithProfile(data, manager: EntityManager) {
|
|
|
21256
21284
|
</td>
|
|
21257
21285
|
<td>
|
|
21258
21286
|
|
|
21259
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
21287
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L37)
|
|
21260
21288
|
|
|
21261
21289
|
</td>
|
|
21262
21290
|
</tr>
|
|
@@ -21284,7 +21312,7 @@ Use NotOptions for exclusion-based filtering or WhereOptions for direct where cl
|
|
|
21284
21312
|
</td>
|
|
21285
21313
|
<td>
|
|
21286
21314
|
|
|
21287
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/
|
|
21315
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:277](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L277)
|
|
21288
21316
|
|
|
21289
21317
|
</td>
|
|
21290
21318
|
</tr>
|
|
@@ -21325,7 +21353,7 @@ options: {
|
|
|
21325
21353
|
</td>
|
|
21326
21354
|
<td>
|
|
21327
21355
|
|
|
21328
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
21356
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L67)
|
|
21329
21357
|
|
|
21330
21358
|
</td>
|
|
21331
21359
|
</tr>
|
|
@@ -21362,7 +21390,7 @@ relations: ["profile", "posts"];
|
|
|
21362
21390
|
</td>
|
|
21363
21391
|
<td>
|
|
21364
21392
|
|
|
21365
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
21393
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L51)
|
|
21366
21394
|
|
|
21367
21395
|
</td>
|
|
21368
21396
|
</tr>
|
|
@@ -21390,7 +21418,7 @@ Use SearchOptions for search-based filtering or WhereOptions for direct where cl
|
|
|
21390
21418
|
</td>
|
|
21391
21419
|
<td>
|
|
21392
21420
|
|
|
21393
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/
|
|
21421
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:271](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L271)
|
|
21394
21422
|
|
|
21395
21423
|
</td>
|
|
21396
21424
|
</tr>
|
|
@@ -21430,7 +21458,7 @@ sort: {
|
|
|
21430
21458
|
</td>
|
|
21431
21459
|
<td>
|
|
21432
21460
|
|
|
21433
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/
|
|
21461
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:82](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L82)
|
|
21434
21462
|
|
|
21435
21463
|
</td>
|
|
21436
21464
|
</tr>
|
|
@@ -21476,7 +21504,7 @@ where: [
|
|
|
21476
21504
|
</td>
|
|
21477
21505
|
<td>
|
|
21478
21506
|
|
|
21479
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/
|
|
21507
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:297](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L297)
|
|
21480
21508
|
|
|
21481
21509
|
</td>
|
|
21482
21510
|
</tr>
|
|
@@ -21487,7 +21515,7 @@ where: [
|
|
|
21487
21515
|
|
|
21488
21516
|
### SaveOptionsWithSkip
|
|
21489
21517
|
|
|
21490
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:566](https://github.com/hichchidev/hichchi/blob/
|
|
21518
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:566](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L566)
|
|
21491
21519
|
|
|
21492
21520
|
Extended save options interface with skip creation functionality.
|
|
21493
21521
|
|
|
@@ -21698,7 +21726,7 @@ skipCreate: true; // Only update existing entities, don't create new ones
|
|
|
21698
21726
|
</td>
|
|
21699
21727
|
<td>
|
|
21700
21728
|
|
|
21701
|
-
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:579](https://github.com/hichchidev/hichchi/blob/
|
|
21729
|
+
[libs/nest-crud/src/interfaces/crud-options.interfaces.ts:579](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L579)
|
|
21702
21730
|
|
|
21703
21731
|
</td>
|
|
21704
21732
|
</tr>
|
|
@@ -21743,7 +21771,7 @@ node_modules/typeorm/repository/SaveOptions.d.ts:19
|
|
|
21743
21771
|
type DatabaseTypes = "mysql" | "mariadb" | "postgres";
|
|
21744
21772
|
```
|
|
21745
21773
|
|
|
21746
|
-
Defined in: [libs/nest-crud/src/types/database.types.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
21774
|
+
Defined in: [libs/nest-crud/src/types/database.types.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/database.types.ts#L37)
|
|
21747
21775
|
|
|
21748
21776
|
Supported database types for application connections.
|
|
21749
21777
|
|
|
@@ -21790,7 +21818,7 @@ const connectionOptions: ConnectionOptions = {
|
|
|
21790
21818
|
type EntityDecorator = (target) => void;
|
|
21791
21819
|
```
|
|
21792
21820
|
|
|
21793
|
-
Defined in: [libs/nest-crud/src/types/decorator.types.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
21821
|
+
Defined in: [libs/nest-crud/src/types/decorator.types.ts:64](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/decorator.types.ts#L64)
|
|
21794
21822
|
|
|
21795
21823
|
Type definition for decorators that target standard entity classes
|
|
21796
21824
|
|
|
@@ -21873,7 +21901,7 @@ export class UserEntity extends BaseEntity {
|
|
|
21873
21901
|
type EntityExtensionDecorator = (target) => void;
|
|
21874
21902
|
```
|
|
21875
21903
|
|
|
21876
|
-
Defined in: [libs/nest-crud/src/types/decorator.types.ts:108](https://github.com/hichchidev/hichchi/blob/
|
|
21904
|
+
Defined in: [libs/nest-crud/src/types/decorator.types.ts:108](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/decorator.types.ts#L108)
|
|
21877
21905
|
|
|
21878
21906
|
Type definition for decorators that target extended entity classes
|
|
21879
21907
|
|
|
@@ -21961,7 +21989,7 @@ export class ProductEntity extends BaseEntityExtension {
|
|
|
21961
21989
|
type EntityOptionUnique = object;
|
|
21962
21990
|
```
|
|
21963
21991
|
|
|
21964
|
-
Defined in: [libs/nest-crud/src/types/entity-option-unique.ts:51](https://github.com/hichchidev/hichchi/blob/
|
|
21992
|
+
Defined in: [libs/nest-crud/src/types/entity-option-unique.ts:51](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/entity-option-unique.ts#L51)
|
|
21965
21993
|
|
|
21966
21994
|
Configuration type for defining unique constraints on entity fields.
|
|
21967
21995
|
|
|
@@ -22039,7 +22067,7 @@ type FilterOptions<Entity> = {
|
|
|
22039
22067
|
};
|
|
22040
22068
|
```
|
|
22041
22069
|
|
|
22042
|
-
Defined in: [libs/nest-crud/src/types/filter-options.type.ts:60](https://github.com/hichchidev/hichchi/blob/
|
|
22070
|
+
Defined in: [libs/nest-crud/src/types/filter-options.type.ts:60](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/filter-options.type.ts#L60)
|
|
22043
22071
|
|
|
22044
22072
|
A recursive type for building structured filter conditions for entity queries.
|
|
22045
22073
|
|
|
@@ -22143,7 +22171,7 @@ type FindConditions<Entity> =
|
|
|
22143
22171
|
| QueryDeepPartial<Entity>;
|
|
22144
22172
|
```
|
|
22145
22173
|
|
|
22146
|
-
Defined in: [libs/nest-crud/src/types/find-conditions.type.ts:59](https://github.com/hichchidev/hichchi/blob/
|
|
22174
|
+
Defined in: [libs/nest-crud/src/types/find-conditions.type.ts:59](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/find-conditions.type.ts#L59)
|
|
22147
22175
|
|
|
22148
22176
|
A flexible type for defining query conditions when finding entities.
|
|
22149
22177
|
|
|
@@ -22232,7 +22260,7 @@ async function findUsers(conditions: FindConditions<User>): Promise<User[]> {
|
|
|
22232
22260
|
type GetAllOptions<Entity> = PaginatedGetOptions<Entity>;
|
|
22233
22261
|
```
|
|
22234
22262
|
|
|
22235
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:658](https://github.com/hichchidev/hichchi/blob/
|
|
22263
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:658](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L658)
|
|
22236
22264
|
|
|
22237
22265
|
Simple options type for retrieving all entities with pagination.
|
|
22238
22266
|
|
|
@@ -22285,7 +22313,7 @@ const [users, count] = await userService.findAll(options);
|
|
|
22285
22313
|
type GetByIdOptions<Entity> = Omit<QueryOptions<Entity>, "sort">;
|
|
22286
22314
|
```
|
|
22287
22315
|
|
|
22288
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:389](https://github.com/hichchidev/hichchi/blob/
|
|
22316
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:389](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L389)
|
|
22289
22317
|
|
|
22290
22318
|
Options interface for retrieving a single entity by its ID.
|
|
22291
22319
|
|
|
@@ -22341,7 +22369,7 @@ type GetManyOptions<Entity> =
|
|
|
22341
22369
|
| GetManyOptionsWhere<Entity>;
|
|
22342
22370
|
```
|
|
22343
22371
|
|
|
22344
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:693](https://github.com/hichchidev/hichchi/blob/
|
|
22372
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:693](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L693)
|
|
22345
22373
|
|
|
22346
22374
|
Union type for all options interfaces for retrieving multiple entities with pagination.
|
|
22347
22375
|
|
|
@@ -22413,7 +22441,7 @@ type GetOneOptions<Entity> =
|
|
|
22413
22441
|
| GetOneOptionsWhere<Entity>;
|
|
22414
22442
|
```
|
|
22415
22443
|
|
|
22416
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:634](https://github.com/hichchidev/hichchi/blob/
|
|
22444
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:634](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L634)
|
|
22417
22445
|
|
|
22418
22446
|
Union type for all options interfaces for retrieving a single entity.
|
|
22419
22447
|
|
|
@@ -22472,7 +22500,7 @@ type GetOptions<Entity> =
|
|
|
22472
22500
|
| (QueryOptionsWhere<Entity> & PaginatedGetOptions<Entity>);
|
|
22473
22501
|
```
|
|
22474
22502
|
|
|
22475
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:606](https://github.com/hichchidev/hichchi/blob/
|
|
22503
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:606](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L606)
|
|
22476
22504
|
|
|
22477
22505
|
Comprehensive options type for retrieving entities with various filtering approaches and pagination.
|
|
22478
22506
|
|
|
@@ -22529,7 +22557,7 @@ const [users, count] = await getUsers({
|
|
|
22529
22557
|
type RepositoryDecorator = <T>(target) => T | void;
|
|
22530
22558
|
```
|
|
22531
22559
|
|
|
22532
|
-
Defined in: [libs/nest-crud/src/types/repository-decorator.type.ts:47](https://github.com/hichchidev/hichchi/blob/
|
|
22560
|
+
Defined in: [libs/nest-crud/src/types/repository-decorator.type.ts:47](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/repository-decorator.type.ts#L47)
|
|
22533
22561
|
|
|
22534
22562
|
Type definition for repository class decorators.
|
|
22535
22563
|
|
|
@@ -22649,7 +22677,7 @@ class UserRepository extends BaseRepository<User> {
|
|
|
22649
22677
|
type SaveAndGetOptions<Entity> = SaveOptionsWithSkip & GetByIdOptions<Entity>;
|
|
22650
22678
|
```
|
|
22651
22679
|
|
|
22652
|
-
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:736](https://github.com/hichchidev/hichchi/blob/
|
|
22680
|
+
Defined in: [libs/nest-crud/src/interfaces/crud-options.interfaces.ts:736](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/interfaces/crud-options.interfaces.ts#L736)
|
|
22653
22681
|
|
|
22654
22682
|
Combined options type for save-and-get operations.
|
|
22655
22683
|
|
|
@@ -22720,7 +22748,7 @@ const updatedUser = await userService.saveAndGet(userData, options);
|
|
|
22720
22748
|
type SortOptions<Entity> = FindOptionsOrder<Entity>;
|
|
22721
22749
|
```
|
|
22722
22750
|
|
|
22723
|
-
Defined in: [libs/nest-crud/src/types/sort-options.type.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
22751
|
+
Defined in: [libs/nest-crud/src/types/sort-options.type.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/sort-options.type.ts#L56)
|
|
22724
22752
|
|
|
22725
22753
|
Type alias for TypeORM's sorting configuration.
|
|
22726
22754
|
|
|
@@ -22812,7 +22840,7 @@ const users = await userRepository.find({
|
|
|
22812
22840
|
type TypeORMErrorHandler = (error) => Error | void;
|
|
22813
22841
|
```
|
|
22814
22842
|
|
|
22815
|
-
Defined in: [libs/nest-crud/src/types/error-handler.type.ts:54](https://github.com/hichchidev/hichchi/blob/
|
|
22843
|
+
Defined in: [libs/nest-crud/src/types/error-handler.type.ts:54](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/types/error-handler.type.ts#L54)
|
|
22816
22844
|
|
|
22817
22845
|
A function type for custom TypeORM error handling.
|
|
22818
22846
|
|
|
@@ -22915,7 +22943,7 @@ try {
|
|
|
22915
22943
|
const BaseEntityTemplateRelations: string[];
|
|
22916
22944
|
```
|
|
22917
22945
|
|
|
22918
|
-
Defined in: [libs/nest-crud/src/base/base-entity.ts:19](https://github.com/hichchidev/hichchi/blob/
|
|
22946
|
+
Defined in: [libs/nest-crud/src/base/base-entity.ts:19](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/base/base-entity.ts#L19)
|
|
22919
22947
|
|
|
22920
22948
|
List of standard relation properties in the BaseEntity
|
|
22921
22949
|
|
|
@@ -22939,7 +22967,7 @@ standard relations from foreign key constraint validation.
|
|
|
22939
22967
|
const CONNECTION_OPTIONS: "CONNECTION_OPTIONS" = "CONNECTION_OPTIONS";
|
|
22940
22968
|
```
|
|
22941
22969
|
|
|
22942
|
-
Defined in: [libs/nest-crud/src/tokens.ts:29](https://github.com/hichchidev/hichchi/blob/
|
|
22970
|
+
Defined in: [libs/nest-crud/src/tokens.ts:29](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/tokens.ts#L29)
|
|
22943
22971
|
|
|
22944
22972
|
Token for database connection options
|
|
22945
22973
|
|
|
@@ -22979,7 +23007,7 @@ export class AppModule {}
|
|
|
22979
23007
|
const DEFAULT_MAX_RECURSION_DEPTH: 10 = 10;
|
|
22980
23008
|
```
|
|
22981
23009
|
|
|
22982
|
-
Defined in: [libs/nest-crud/src/constants.ts:21](https://github.com/hichchidev/hichchi/blob/
|
|
23010
|
+
Defined in: [libs/nest-crud/src/constants.ts:21](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L21)
|
|
22983
23011
|
|
|
22984
23012
|
Default maximum recursion depth for deep object operations
|
|
22985
23013
|
|
|
@@ -23011,7 +23039,7 @@ toQueryDeepPartialEntity Function that uses this constant to limit recursion dep
|
|
|
23011
23039
|
const EXTRACT_INVALID_COLUMN_REGEX: RegExp;
|
|
23012
23040
|
```
|
|
23013
23041
|
|
|
23014
|
-
Defined in: [libs/nest-crud/src/constants.ts:106](https://github.com/hichchidev/hichchi/blob/
|
|
23042
|
+
Defined in: [libs/nest-crud/src/constants.ts:106](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L106)
|
|
23015
23043
|
|
|
23016
23044
|
Regular expression for extracting column names from database column not found errors
|
|
23017
23045
|
|
|
@@ -23041,7 +23069,7 @@ EntityUtils.handleError Method that uses this pattern to extract column names fr
|
|
|
23041
23069
|
const EXTRACT_INVALID_QUERY_FIELD_REGEX: RegExp;
|
|
23042
23070
|
```
|
|
23043
23071
|
|
|
23044
|
-
Defined in: [libs/nest-crud/src/constants.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
23072
|
+
Defined in: [libs/nest-crud/src/constants.ts:86](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L86)
|
|
23045
23073
|
|
|
23046
23074
|
Regular expression for extracting field names from TypeORM property not found errors
|
|
23047
23075
|
|
|
@@ -23071,7 +23099,7 @@ EntityUtils.handleError Method that uses this pattern to extract field names fro
|
|
|
23071
23099
|
const FK_CONSTRAINT_REGEX: RegExp;
|
|
23072
23100
|
```
|
|
23073
23101
|
|
|
23074
|
-
Defined in: [libs/nest-crud/src/constants.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
23102
|
+
Defined in: [libs/nest-crud/src/constants.ts:66](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L66)
|
|
23075
23103
|
|
|
23076
23104
|
Regular expression for validating foreign key constraint naming convention
|
|
23077
23105
|
|
|
@@ -23104,7 +23132,7 @@ The format is: FK_entityName_relatedEntityName
|
|
|
23104
23132
|
const ID_PATH: "id" = "id";
|
|
23105
23133
|
```
|
|
23106
23134
|
|
|
23107
|
-
Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/hichchi/blob/
|
|
23135
|
+
Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L108)
|
|
23108
23136
|
|
|
23109
23137
|
---
|
|
23110
23138
|
|
|
@@ -23114,7 +23142,7 @@ Defined in: [libs/nest-crud/src/constants.ts:108](https://github.com/hichchidev/
|
|
|
23114
23142
|
const ID_PATH_VAR: ":id";
|
|
23115
23143
|
```
|
|
23116
23144
|
|
|
23117
|
-
Defined in: [libs/nest-crud/src/constants.ts:110](https://github.com/hichchidev/hichchi/blob/
|
|
23145
|
+
Defined in: [libs/nest-crud/src/constants.ts:110](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L110)
|
|
23118
23146
|
|
|
23119
23147
|
---
|
|
23120
23148
|
|
|
@@ -23175,7 +23203,7 @@ Defined in: node_modules/@nestjs/typeorm/dist/common/typeorm.decorators.d.ts:4
|
|
|
23175
23203
|
const UNIQUE_CONSTRAINT_REGEX: RegExp;
|
|
23176
23204
|
```
|
|
23177
23205
|
|
|
23178
|
-
Defined in: [libs/nest-crud/src/constants.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
23206
|
+
Defined in: [libs/nest-crud/src/constants.ts:43](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/constants.ts#L43)
|
|
23179
23207
|
|
|
23180
23208
|
Regular expression for validating unique constraint naming convention
|
|
23181
23209
|
|
|
@@ -23207,7 +23235,7 @@ The format is: UNIQUE_entityName_fieldName
|
|
|
23207
23235
|
const USER_ENTITY_TABLE_NAME: "users" = "users";
|
|
23208
23236
|
```
|
|
23209
23237
|
|
|
23210
|
-
Defined in: [libs/nest-crud/src/tokens.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
23238
|
+
Defined in: [libs/nest-crud/src/tokens.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-crud/src/tokens.ts#L56)
|
|
23211
23239
|
|
|
23212
23240
|
Standard table name for user entities
|
|
23213
23241
|
|