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