@hichchi/nest-connector 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +169 -141
- package/auth.cjs.js +34 -0
- package/auth.esm.js +34 -1
- package/index.cjs.js +1 -0
- package/index.esm.js +1 -0
- package/package.json +1 -1
- package/src/auth/auth.d.ts +1 -0
- package/src/auth/constants/constants.d.ts +32 -0
- package/src/auth/constants/index.d.ts +1 -0
- package/src/auth/types/types.d.ts +10 -0
- package/src/common/interfaces/user-info.interface.d.ts +11 -0
package/README.md
CHANGED
|
@@ -228,7 +228,7 @@ Complete technical reference for all classes, interfaces, methods, and types in
|
|
|
228
228
|
|
|
229
229
|
### SuccessResponseDto
|
|
230
230
|
|
|
231
|
-
Defined in: [builders/success-response.dto.ts:55](https://github.com/hichchidev/hichchi/blob/
|
|
231
|
+
Defined in: [builders/success-response.dto.ts:55](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L55)
|
|
232
232
|
|
|
233
233
|
Data Transfer Object for standardized success responses
|
|
234
234
|
|
|
@@ -294,7 +294,7 @@ new SuccessResponseDto(
|
|
|
294
294
|
description?): SuccessResponseDto;
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
Defined in: [builders/success-response.dto.ts:118](https://github.com/hichchidev/hichchi/blob/
|
|
297
|
+
Defined in: [builders/success-response.dto.ts:118](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L118)
|
|
298
298
|
|
|
299
299
|
Creates a new success response with individual parameters
|
|
300
300
|
|
|
@@ -408,7 +408,7 @@ const response = new SuccessResponseDto(
|
|
|
408
408
|
new SuccessResponseDto(response): SuccessResponseDto;
|
|
409
409
|
```
|
|
410
410
|
|
|
411
|
-
Defined in: [builders/success-response.dto.ts:140](https://github.com/hichchidev/hichchi/blob/
|
|
411
|
+
Defined in: [builders/success-response.dto.ts:140](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L140)
|
|
412
412
|
|
|
413
413
|
Creates a new success response from an existing response object
|
|
414
414
|
|
|
@@ -501,7 +501,7 @@ AuthSuccessResponseCode For predefined success codes
|
|
|
501
501
|
</td>
|
|
502
502
|
<td>
|
|
503
503
|
|
|
504
|
-
[builders/success-response.dto.ts:75](https://github.com/hichchidev/hichchi/blob/
|
|
504
|
+
[builders/success-response.dto.ts:75](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L75)
|
|
505
505
|
|
|
506
506
|
</td>
|
|
507
507
|
</tr>
|
|
@@ -526,7 +526,7 @@ that might be useful for debugging or providing more context to developers.
|
|
|
526
526
|
</td>
|
|
527
527
|
<td>
|
|
528
528
|
|
|
529
|
-
[builders/success-response.dto.ts:91](https://github.com/hichchidev/hichchi/blob/
|
|
529
|
+
[builders/success-response.dto.ts:91](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L91)
|
|
530
530
|
|
|
531
531
|
</td>
|
|
532
532
|
</tr>
|
|
@@ -551,7 +551,7 @@ It should be clear, concise, and suitable for displaying to end users.
|
|
|
551
551
|
</td>
|
|
552
552
|
<td>
|
|
553
553
|
|
|
554
|
-
[builders/success-response.dto.ts:83](https://github.com/hichchidev/hichchi/blob/
|
|
554
|
+
[builders/success-response.dto.ts:83](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L83)
|
|
555
555
|
|
|
556
556
|
</td>
|
|
557
557
|
</tr>
|
|
@@ -580,7 +580,7 @@ It uses the HttpSuccessStatus enum to ensure only valid success status codes are
|
|
|
580
580
|
</td>
|
|
581
581
|
<td>
|
|
582
582
|
|
|
583
|
-
[builders/success-response.dto.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
583
|
+
[builders/success-response.dto.ts:64](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/builders/success-response.dto.ts#L64)
|
|
584
584
|
|
|
585
585
|
</td>
|
|
586
586
|
</tr>
|
|
@@ -591,7 +591,7 @@ It uses the HttpSuccessStatus enum to ensure only valid success status codes are
|
|
|
591
591
|
|
|
592
592
|
### CommonErrorResponseCode
|
|
593
593
|
|
|
594
|
-
Defined in: [enums/common-error-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
594
|
+
Defined in: [enums/common-error-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L16)
|
|
595
595
|
|
|
596
596
|
Common Error Response Codes Enum
|
|
597
597
|
|
|
@@ -641,7 +641,7 @@ or doesn't fit into any other category.
|
|
|
641
641
|
</td>
|
|
642
642
|
<td>
|
|
643
643
|
|
|
644
|
-
[enums/common-error-response-code.enum.ts:129](https://github.com/hichchidev/hichchi/blob/
|
|
644
|
+
[enums/common-error-response-code.enum.ts:129](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L129)
|
|
645
645
|
|
|
646
646
|
</td>
|
|
647
647
|
</tr>
|
|
@@ -665,7 +665,7 @@ Generic error for bad requests when a more specific error code is not applicable
|
|
|
665
665
|
</td>
|
|
666
666
|
<td>
|
|
667
667
|
|
|
668
|
-
[enums/common-error-response-code.enum.ts:93](https://github.com/hichchidev/hichchi/blob/
|
|
668
|
+
[enums/common-error-response-code.enum.ts:93](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L93)
|
|
669
669
|
|
|
670
670
|
</td>
|
|
671
671
|
</tr>
|
|
@@ -689,7 +689,7 @@ Occurs when an ID field is required but not provided or is empty.
|
|
|
689
689
|
</td>
|
|
690
690
|
<td>
|
|
691
691
|
|
|
692
|
-
[enums/common-error-response-code.enum.ts:22](https://github.com/hichchidev/hichchi/blob/
|
|
692
|
+
[enums/common-error-response-code.enum.ts:22](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L22)
|
|
693
693
|
|
|
694
694
|
</td>
|
|
695
695
|
</tr>
|
|
@@ -713,7 +713,7 @@ Occurs when an array of IDs is required but not provided or is empty.
|
|
|
713
713
|
</td>
|
|
714
714
|
<td>
|
|
715
715
|
|
|
716
|
-
[enums/common-error-response-code.enum.ts:29](https://github.com/hichchidev/hichchi/blob/
|
|
716
|
+
[enums/common-error-response-code.enum.ts:29](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L29)
|
|
717
717
|
|
|
718
718
|
</td>
|
|
719
719
|
</tr>
|
|
@@ -737,7 +737,7 @@ Occurs when an ID is provided but has an invalid format or value.
|
|
|
737
737
|
</td>
|
|
738
738
|
<td>
|
|
739
739
|
|
|
740
|
-
[enums/common-error-response-code.enum.ts:36](https://github.com/hichchidev/hichchi/blob/
|
|
740
|
+
[enums/common-error-response-code.enum.ts:36](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L36)
|
|
741
741
|
|
|
742
742
|
</td>
|
|
743
743
|
</tr>
|
|
@@ -761,7 +761,7 @@ Occurs when an array of IDs contains one or more invalid entries.
|
|
|
761
761
|
</td>
|
|
762
762
|
<td>
|
|
763
763
|
|
|
764
|
-
[enums/common-error-response-code.enum.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
764
|
+
[enums/common-error-response-code.enum.ts:43](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L43)
|
|
765
765
|
|
|
766
766
|
</td>
|
|
767
767
|
</tr>
|
|
@@ -785,7 +785,7 @@ Occurs when a provided UUID doesn't conform to the required format.
|
|
|
785
785
|
</td>
|
|
786
786
|
<td>
|
|
787
787
|
|
|
788
|
-
[enums/common-error-response-code.enum.ts:50](https://github.com/hichchidev/hichchi/blob/
|
|
788
|
+
[enums/common-error-response-code.enum.ts:50](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L50)
|
|
789
789
|
|
|
790
790
|
</td>
|
|
791
791
|
</tr>
|
|
@@ -809,7 +809,7 @@ Occurs when a parameter expected to be an array of IDs is of the wrong type.
|
|
|
809
809
|
</td>
|
|
810
810
|
<td>
|
|
811
811
|
|
|
812
|
-
[enums/common-error-response-code.enum.ts:57](https://github.com/hichchidev/hichchi/blob/
|
|
812
|
+
[enums/common-error-response-code.enum.ts:57](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L57)
|
|
813
813
|
|
|
814
814
|
</td>
|
|
815
815
|
</tr>
|
|
@@ -833,7 +833,7 @@ Generic error for unauthorized access when a more specific error code is not app
|
|
|
833
833
|
</td>
|
|
834
834
|
<td>
|
|
835
835
|
|
|
836
|
-
[enums/common-error-response-code.enum.ts:100](https://github.com/hichchidev/hichchi/blob/
|
|
836
|
+
[enums/common-error-response-code.enum.ts:100](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L100)
|
|
837
837
|
|
|
838
838
|
</td>
|
|
839
839
|
</tr>
|
|
@@ -857,7 +857,7 @@ Generic error for forbidden access when a more specific error code is not applic
|
|
|
857
857
|
</td>
|
|
858
858
|
<td>
|
|
859
859
|
|
|
860
|
-
[enums/common-error-response-code.enum.ts:107](https://github.com/hichchidev/hichchi/blob/
|
|
860
|
+
[enums/common-error-response-code.enum.ts:107](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L107)
|
|
861
861
|
|
|
862
862
|
</td>
|
|
863
863
|
</tr>
|
|
@@ -881,7 +881,7 @@ Generic error for resource not found when a more specific error code is not appl
|
|
|
881
881
|
</td>
|
|
882
882
|
<td>
|
|
883
883
|
|
|
884
|
-
[enums/common-error-response-code.enum.ts:114](https://github.com/hichchidev/hichchi/blob/
|
|
884
|
+
[enums/common-error-response-code.enum.ts:114](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L114)
|
|
885
885
|
|
|
886
886
|
</td>
|
|
887
887
|
</tr>
|
|
@@ -905,7 +905,7 @@ Occurs when attempting to access a file that doesn't exist.
|
|
|
905
905
|
</td>
|
|
906
906
|
<td>
|
|
907
907
|
|
|
908
|
-
[enums/common-error-response-code.enum.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
908
|
+
[enums/common-error-response-code.enum.ts:64](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L64)
|
|
909
909
|
|
|
910
910
|
</td>
|
|
911
911
|
</tr>
|
|
@@ -930,7 +930,7 @@ Note: While HTTP 501 is traditionally used for this, this uses 404 for specific
|
|
|
930
930
|
</td>
|
|
931
931
|
<td>
|
|
932
932
|
|
|
933
|
-
[enums/common-error-response-code.enum.ts:72](https://github.com/hichchidev/hichchi/blob/
|
|
933
|
+
[enums/common-error-response-code.enum.ts:72](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L72)
|
|
934
934
|
|
|
935
935
|
</td>
|
|
936
936
|
</tr>
|
|
@@ -954,7 +954,7 @@ Generic error for server-side issues when a more specific error code is not appl
|
|
|
954
954
|
</td>
|
|
955
955
|
<td>
|
|
956
956
|
|
|
957
|
-
[enums/common-error-response-code.enum.ts:121](https://github.com/hichchidev/hichchi/blob/
|
|
957
|
+
[enums/common-error-response-code.enum.ts:121](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L121)
|
|
958
958
|
|
|
959
959
|
</td>
|
|
960
960
|
</tr>
|
|
@@ -978,7 +978,7 @@ Occurs when there is a server-side error during file deletion.
|
|
|
978
978
|
</td>
|
|
979
979
|
<td>
|
|
980
980
|
|
|
981
|
-
[enums/common-error-response-code.enum.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
981
|
+
[enums/common-error-response-code.enum.ts:86](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L86)
|
|
982
982
|
|
|
983
983
|
</td>
|
|
984
984
|
</tr>
|
|
@@ -1002,7 +1002,7 @@ Occurs when there is a server-side error during file upload processing.
|
|
|
1002
1002
|
</td>
|
|
1003
1003
|
<td>
|
|
1004
1004
|
|
|
1005
|
-
[enums/common-error-response-code.enum.ts:79](https://github.com/hichchidev/hichchi/blob/
|
|
1005
|
+
[enums/common-error-response-code.enum.ts:79](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L79)
|
|
1006
1006
|
|
|
1007
1007
|
</td>
|
|
1008
1008
|
</tr>
|
|
@@ -1013,7 +1013,7 @@ Occurs when there is a server-side error during file upload processing.
|
|
|
1013
1013
|
|
|
1014
1014
|
### CommonSuccessResponseCode
|
|
1015
1015
|
|
|
1016
|
-
Defined in: [enums/common-success-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1016
|
+
Defined in: [enums/common-success-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-success-response-code.enum.ts#L16)
|
|
1017
1017
|
|
|
1018
1018
|
Common Success Response Codes Enum
|
|
1019
1019
|
|
|
@@ -1063,7 +1063,7 @@ success code is not necessary or has not been defined.
|
|
|
1063
1063
|
</td>
|
|
1064
1064
|
<td>
|
|
1065
1065
|
|
|
1066
|
-
[enums/common-success-response-code.enum.ts:24](https://github.com/hichchidev/hichchi/blob/
|
|
1066
|
+
[enums/common-success-response-code.enum.ts:24](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/common-success-response-code.enum.ts#L24)
|
|
1067
1067
|
|
|
1068
1068
|
</td>
|
|
1069
1069
|
</tr>
|
|
@@ -1074,7 +1074,7 @@ success code is not necessary or has not been defined.
|
|
|
1074
1074
|
|
|
1075
1075
|
### Endpoint
|
|
1076
1076
|
|
|
1077
|
-
Defined in: [enums/endpoint.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1077
|
+
Defined in: [enums/endpoint.enum.ts:16](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/endpoint.enum.ts#L16)
|
|
1078
1078
|
|
|
1079
1079
|
Base API Endpoints Enum
|
|
1080
1080
|
|
|
@@ -1130,7 +1130,7 @@ AuthEndpoint For specific authentication operation endpoints
|
|
|
1130
1130
|
</td>
|
|
1131
1131
|
<td>
|
|
1132
1132
|
|
|
1133
|
-
[enums/endpoint.enum.ts:28](https://github.com/hichchidev/hichchi/blob/
|
|
1133
|
+
[enums/endpoint.enum.ts:28](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/endpoint.enum.ts#L28)
|
|
1134
1134
|
|
|
1135
1135
|
</td>
|
|
1136
1136
|
</tr>
|
|
@@ -1141,7 +1141,7 @@ AuthEndpoint For specific authentication operation endpoints
|
|
|
1141
1141
|
|
|
1142
1142
|
### Gateway
|
|
1143
1143
|
|
|
1144
|
-
Defined in: [enums/gateways.enum.ts:17](https://github.com/hichchidev/hichchi/blob/
|
|
1144
|
+
Defined in: [enums/gateways.enum.ts:17](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/gateways.enum.ts#L17)
|
|
1145
1145
|
|
|
1146
1146
|
Application Gateways Enum
|
|
1147
1147
|
|
|
@@ -1196,7 +1196,7 @@ The implementation may use libraries like Socket.IO or native WebSockets.
|
|
|
1196
1196
|
</td>
|
|
1197
1197
|
<td>
|
|
1198
1198
|
|
|
1199
|
-
[enums/gateways.enum.ts:31](https://github.com/hichchidev/hichchi/blob/
|
|
1199
|
+
[enums/gateways.enum.ts:31](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/gateways.enum.ts#L31)
|
|
1200
1200
|
|
|
1201
1201
|
</td>
|
|
1202
1202
|
</tr>
|
|
@@ -1207,7 +1207,7 @@ The implementation may use libraries like Socket.IO or native WebSockets.
|
|
|
1207
1207
|
|
|
1208
1208
|
### HttpClientErrorStatus
|
|
1209
1209
|
|
|
1210
|
-
Defined in: [enums/http-status.enums.ts:83](https://github.com/hichchidev/hichchi/blob/
|
|
1210
|
+
Defined in: [enums/http-status.enums.ts:83](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L83)
|
|
1211
1211
|
|
|
1212
1212
|
HTTP Client Error Status Codes (4xx)
|
|
1213
1213
|
|
|
@@ -1246,7 +1246,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1246
1246
|
</td>
|
|
1247
1247
|
<td>
|
|
1248
1248
|
|
|
1249
|
-
[enums/http-status.enums.ts:84](https://github.com/hichchidev/hichchi/blob/
|
|
1249
|
+
[enums/http-status.enums.ts:84](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L84)
|
|
1250
1250
|
|
|
1251
1251
|
</td>
|
|
1252
1252
|
</tr>
|
|
@@ -1263,7 +1263,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1263
1263
|
</td>
|
|
1264
1264
|
<td>
|
|
1265
1265
|
|
|
1266
|
-
[enums/http-status.enums.ts:93](https://github.com/hichchidev/hichchi/blob/
|
|
1266
|
+
[enums/http-status.enums.ts:93](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L93)
|
|
1267
1267
|
|
|
1268
1268
|
</td>
|
|
1269
1269
|
</tr>
|
|
@@ -1280,7 +1280,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1280
1280
|
</td>
|
|
1281
1281
|
<td>
|
|
1282
1282
|
|
|
1283
|
-
[enums/http-status.enums.ts:101](https://github.com/hichchidev/hichchi/blob/
|
|
1283
|
+
[enums/http-status.enums.ts:101](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L101)
|
|
1284
1284
|
|
|
1285
1285
|
</td>
|
|
1286
1286
|
</tr>
|
|
@@ -1297,7 +1297,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1297
1297
|
</td>
|
|
1298
1298
|
<td>
|
|
1299
1299
|
|
|
1300
|
-
[enums/http-status.enums.ts:106](https://github.com/hichchidev/hichchi/blob/
|
|
1300
|
+
[enums/http-status.enums.ts:106](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L106)
|
|
1301
1301
|
|
|
1302
1302
|
</td>
|
|
1303
1303
|
</tr>
|
|
@@ -1314,7 +1314,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1314
1314
|
</td>
|
|
1315
1315
|
<td>
|
|
1316
1316
|
|
|
1317
|
-
[enums/http-status.enums.ts:87](https://github.com/hichchidev/hichchi/blob/
|
|
1317
|
+
[enums/http-status.enums.ts:87](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L87)
|
|
1318
1318
|
|
|
1319
1319
|
</td>
|
|
1320
1320
|
</tr>
|
|
@@ -1331,7 +1331,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1331
1331
|
</td>
|
|
1332
1332
|
<td>
|
|
1333
1333
|
|
|
1334
|
-
[enums/http-status.enums.ts:94](https://github.com/hichchidev/hichchi/blob/
|
|
1334
|
+
[enums/http-status.enums.ts:94](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L94)
|
|
1335
1335
|
|
|
1336
1336
|
</td>
|
|
1337
1337
|
</tr>
|
|
@@ -1348,7 +1348,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1348
1348
|
</td>
|
|
1349
1349
|
<td>
|
|
1350
1350
|
|
|
1351
|
-
[enums/http-status.enums.ts:102](https://github.com/hichchidev/hichchi/blob/
|
|
1351
|
+
[enums/http-status.enums.ts:102](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L102)
|
|
1352
1352
|
|
|
1353
1353
|
</td>
|
|
1354
1354
|
</tr>
|
|
@@ -1365,7 +1365,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1365
1365
|
</td>
|
|
1366
1366
|
<td>
|
|
1367
1367
|
|
|
1368
|
-
[enums/http-status.enums.ts:95](https://github.com/hichchidev/hichchi/blob/
|
|
1368
|
+
[enums/http-status.enums.ts:95](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L95)
|
|
1369
1369
|
|
|
1370
1370
|
</td>
|
|
1371
1371
|
</tr>
|
|
@@ -1382,7 +1382,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1382
1382
|
</td>
|
|
1383
1383
|
<td>
|
|
1384
1384
|
|
|
1385
|
-
[enums/http-status.enums.ts:105](https://github.com/hichchidev/hichchi/blob/
|
|
1385
|
+
[enums/http-status.enums.ts:105](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L105)
|
|
1386
1386
|
|
|
1387
1387
|
</td>
|
|
1388
1388
|
</tr>
|
|
@@ -1399,7 +1399,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1399
1399
|
</td>
|
|
1400
1400
|
<td>
|
|
1401
1401
|
|
|
1402
|
-
[enums/http-status.enums.ts:89](https://github.com/hichchidev/hichchi/blob/
|
|
1402
|
+
[enums/http-status.enums.ts:89](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L89)
|
|
1403
1403
|
|
|
1404
1404
|
</td>
|
|
1405
1405
|
</tr>
|
|
@@ -1416,7 +1416,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1416
1416
|
</td>
|
|
1417
1417
|
<td>
|
|
1418
1418
|
|
|
1419
|
-
[enums/http-status.enums.ts:103](https://github.com/hichchidev/hichchi/blob/
|
|
1419
|
+
[enums/http-status.enums.ts:103](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L103)
|
|
1420
1420
|
|
|
1421
1421
|
</td>
|
|
1422
1422
|
</tr>
|
|
@@ -1433,7 +1433,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1433
1433
|
</td>
|
|
1434
1434
|
<td>
|
|
1435
1435
|
|
|
1436
|
-
[enums/http-status.enums.ts:90](https://github.com/hichchidev/hichchi/blob/
|
|
1436
|
+
[enums/http-status.enums.ts:90](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L90)
|
|
1437
1437
|
|
|
1438
1438
|
</td>
|
|
1439
1439
|
</tr>
|
|
@@ -1450,7 +1450,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1450
1450
|
</td>
|
|
1451
1451
|
<td>
|
|
1452
1452
|
|
|
1453
|
-
[enums/http-status.enums.ts:88](https://github.com/hichchidev/hichchi/blob/
|
|
1453
|
+
[enums/http-status.enums.ts:88](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L88)
|
|
1454
1454
|
|
|
1455
1455
|
</td>
|
|
1456
1456
|
</tr>
|
|
@@ -1467,7 +1467,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1467
1467
|
</td>
|
|
1468
1468
|
<td>
|
|
1469
1469
|
|
|
1470
|
-
[enums/http-status.enums.ts:97](https://github.com/hichchidev/hichchi/blob/
|
|
1470
|
+
[enums/http-status.enums.ts:97](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L97)
|
|
1471
1471
|
|
|
1472
1472
|
</td>
|
|
1473
1473
|
</tr>
|
|
@@ -1484,7 +1484,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1484
1484
|
</td>
|
|
1485
1485
|
<td>
|
|
1486
1486
|
|
|
1487
|
-
[enums/http-status.enums.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
1487
|
+
[enums/http-status.enums.ts:86](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L86)
|
|
1488
1488
|
|
|
1489
1489
|
</td>
|
|
1490
1490
|
</tr>
|
|
@@ -1501,7 +1501,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1501
1501
|
</td>
|
|
1502
1502
|
<td>
|
|
1503
1503
|
|
|
1504
|
-
[enums/http-status.enums.ts:96](https://github.com/hichchidev/hichchi/blob/
|
|
1504
|
+
[enums/http-status.enums.ts:96](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L96)
|
|
1505
1505
|
|
|
1506
1506
|
</td>
|
|
1507
1507
|
</tr>
|
|
@@ -1518,7 +1518,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1518
1518
|
</td>
|
|
1519
1519
|
<td>
|
|
1520
1520
|
|
|
1521
|
-
[enums/http-status.enums.ts:109](https://github.com/hichchidev/hichchi/blob/
|
|
1521
|
+
[enums/http-status.enums.ts:109](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L109)
|
|
1522
1522
|
|
|
1523
1523
|
</td>
|
|
1524
1524
|
</tr>
|
|
@@ -1535,7 +1535,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1535
1535
|
</td>
|
|
1536
1536
|
<td>
|
|
1537
1537
|
|
|
1538
|
-
[enums/http-status.enums.ts:91](https://github.com/hichchidev/hichchi/blob/
|
|
1538
|
+
[enums/http-status.enums.ts:91](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L91)
|
|
1539
1539
|
|
|
1540
1540
|
</td>
|
|
1541
1541
|
</tr>
|
|
@@ -1552,7 +1552,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1552
1552
|
</td>
|
|
1553
1553
|
<td>
|
|
1554
1554
|
|
|
1555
|
-
[enums/http-status.enums.ts:100](https://github.com/hichchidev/hichchi/blob/
|
|
1555
|
+
[enums/http-status.enums.ts:100](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L100)
|
|
1556
1556
|
|
|
1557
1557
|
</td>
|
|
1558
1558
|
</tr>
|
|
@@ -1569,7 +1569,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1569
1569
|
</td>
|
|
1570
1570
|
<td>
|
|
1571
1571
|
|
|
1572
|
-
[enums/http-status.enums.ts:111](https://github.com/hichchidev/hichchi/blob/
|
|
1572
|
+
[enums/http-status.enums.ts:111](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L111)
|
|
1573
1573
|
|
|
1574
1574
|
</td>
|
|
1575
1575
|
</tr>
|
|
@@ -1586,7 +1586,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1586
1586
|
</td>
|
|
1587
1587
|
<td>
|
|
1588
1588
|
|
|
1589
|
-
[enums/http-status.enums.ts:92](https://github.com/hichchidev/hichchi/blob/
|
|
1589
|
+
[enums/http-status.enums.ts:92](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L92)
|
|
1590
1590
|
|
|
1591
1591
|
</td>
|
|
1592
1592
|
</tr>
|
|
@@ -1603,7 +1603,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1603
1603
|
</td>
|
|
1604
1604
|
<td>
|
|
1605
1605
|
|
|
1606
|
-
[enums/http-status.enums.ts:107](https://github.com/hichchidev/hichchi/blob/
|
|
1606
|
+
[enums/http-status.enums.ts:107](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L107)
|
|
1607
1607
|
|
|
1608
1608
|
</td>
|
|
1609
1609
|
</tr>
|
|
@@ -1620,7 +1620,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1620
1620
|
</td>
|
|
1621
1621
|
<td>
|
|
1622
1622
|
|
|
1623
|
-
[enums/http-status.enums.ts:110](https://github.com/hichchidev/hichchi/blob/
|
|
1623
|
+
[enums/http-status.enums.ts:110](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L110)
|
|
1624
1624
|
|
|
1625
1625
|
</td>
|
|
1626
1626
|
</tr>
|
|
@@ -1637,7 +1637,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1637
1637
|
</td>
|
|
1638
1638
|
<td>
|
|
1639
1639
|
|
|
1640
|
-
[enums/http-status.enums.ts:85](https://github.com/hichchidev/hichchi/blob/
|
|
1640
|
+
[enums/http-status.enums.ts:85](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L85)
|
|
1641
1641
|
|
|
1642
1642
|
</td>
|
|
1643
1643
|
</tr>
|
|
@@ -1654,7 +1654,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1654
1654
|
</td>
|
|
1655
1655
|
<td>
|
|
1656
1656
|
|
|
1657
|
-
[enums/http-status.enums.ts:112](https://github.com/hichchidev/hichchi/blob/
|
|
1657
|
+
[enums/http-status.enums.ts:112](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L112)
|
|
1658
1658
|
|
|
1659
1659
|
</td>
|
|
1660
1660
|
</tr>
|
|
@@ -1671,7 +1671,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1671
1671
|
</td>
|
|
1672
1672
|
<td>
|
|
1673
1673
|
|
|
1674
|
-
[enums/http-status.enums.ts:104](https://github.com/hichchidev/hichchi/blob/
|
|
1674
|
+
[enums/http-status.enums.ts:104](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L104)
|
|
1675
1675
|
|
|
1676
1676
|
</td>
|
|
1677
1677
|
</tr>
|
|
@@ -1688,7 +1688,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1688
1688
|
</td>
|
|
1689
1689
|
<td>
|
|
1690
1690
|
|
|
1691
|
-
[enums/http-status.enums.ts:99](https://github.com/hichchidev/hichchi/blob/
|
|
1691
|
+
[enums/http-status.enums.ts:99](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L99)
|
|
1692
1692
|
|
|
1693
1693
|
</td>
|
|
1694
1694
|
</tr>
|
|
@@ -1705,7 +1705,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1705
1705
|
</td>
|
|
1706
1706
|
<td>
|
|
1707
1707
|
|
|
1708
|
-
[enums/http-status.enums.ts:108](https://github.com/hichchidev/hichchi/blob/
|
|
1708
|
+
[enums/http-status.enums.ts:108](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L108)
|
|
1709
1709
|
|
|
1710
1710
|
</td>
|
|
1711
1711
|
</tr>
|
|
@@ -1722,7 +1722,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1722
1722
|
</td>
|
|
1723
1723
|
<td>
|
|
1724
1724
|
|
|
1725
|
-
[enums/http-status.enums.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
1725
|
+
[enums/http-status.enums.ts:98](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L98)
|
|
1726
1726
|
|
|
1727
1727
|
</td>
|
|
1728
1728
|
</tr>
|
|
@@ -1733,7 +1733,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1733
1733
|
|
|
1734
1734
|
### HttpInfoStatus
|
|
1735
1735
|
|
|
1736
|
-
Defined in: [enums/http-status.enums.ts:15](https://github.com/hichchidev/hichchi/blob/
|
|
1736
|
+
Defined in: [enums/http-status.enums.ts:15](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L15)
|
|
1737
1737
|
|
|
1738
1738
|
HTTP Informational Status Codes (1xx)
|
|
1739
1739
|
|
|
@@ -1772,7 +1772,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1772
1772
|
</td>
|
|
1773
1773
|
<td>
|
|
1774
1774
|
|
|
1775
|
-
[enums/http-status.enums.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1775
|
+
[enums/http-status.enums.ts:16](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L16)
|
|
1776
1776
|
|
|
1777
1777
|
</td>
|
|
1778
1778
|
</tr>
|
|
@@ -1789,7 +1789,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1789
1789
|
</td>
|
|
1790
1790
|
<td>
|
|
1791
1791
|
|
|
1792
|
-
[enums/http-status.enums.ts:19](https://github.com/hichchidev/hichchi/blob/
|
|
1792
|
+
[enums/http-status.enums.ts:19](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L19)
|
|
1793
1793
|
|
|
1794
1794
|
</td>
|
|
1795
1795
|
</tr>
|
|
@@ -1806,7 +1806,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1806
1806
|
</td>
|
|
1807
1807
|
<td>
|
|
1808
1808
|
|
|
1809
|
-
[enums/http-status.enums.ts:18](https://github.com/hichchidev/hichchi/blob/
|
|
1809
|
+
[enums/http-status.enums.ts:18](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L18)
|
|
1810
1810
|
|
|
1811
1811
|
</td>
|
|
1812
1812
|
</tr>
|
|
@@ -1823,7 +1823,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1823
1823
|
</td>
|
|
1824
1824
|
<td>
|
|
1825
1825
|
|
|
1826
|
-
[enums/http-status.enums.ts:17](https://github.com/hichchidev/hichchi/blob/
|
|
1826
|
+
[enums/http-status.enums.ts:17](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L17)
|
|
1827
1827
|
|
|
1828
1828
|
</td>
|
|
1829
1829
|
</tr>
|
|
@@ -1834,7 +1834,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1834
1834
|
|
|
1835
1835
|
### HttpRedirectionStatus
|
|
1836
1836
|
|
|
1837
|
-
Defined in: [enums/http-status.enums.ts:60](https://github.com/hichchidev/hichchi/blob/
|
|
1837
|
+
Defined in: [enums/http-status.enums.ts:60](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L60)
|
|
1838
1838
|
|
|
1839
1839
|
HTTP Redirection Status Codes (3xx)
|
|
1840
1840
|
|
|
@@ -1873,7 +1873,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1873
1873
|
</td>
|
|
1874
1874
|
<td>
|
|
1875
1875
|
|
|
1876
|
-
[enums/http-status.enums.ts:63](https://github.com/hichchidev/hichchi/blob/
|
|
1876
|
+
[enums/http-status.enums.ts:63](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L63)
|
|
1877
1877
|
|
|
1878
1878
|
</td>
|
|
1879
1879
|
</tr>
|
|
@@ -1890,7 +1890,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1890
1890
|
</td>
|
|
1891
1891
|
<td>
|
|
1892
1892
|
|
|
1893
|
-
[enums/http-status.enums.ts:62](https://github.com/hichchidev/hichchi/blob/
|
|
1893
|
+
[enums/http-status.enums.ts:62](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L62)
|
|
1894
1894
|
|
|
1895
1895
|
</td>
|
|
1896
1896
|
</tr>
|
|
@@ -1907,7 +1907,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1907
1907
|
</td>
|
|
1908
1908
|
<td>
|
|
1909
1909
|
|
|
1910
|
-
[enums/http-status.enums.ts:61](https://github.com/hichchidev/hichchi/blob/
|
|
1910
|
+
[enums/http-status.enums.ts:61](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L61)
|
|
1911
1911
|
|
|
1912
1912
|
</td>
|
|
1913
1913
|
</tr>
|
|
@@ -1924,7 +1924,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1924
1924
|
</td>
|
|
1925
1925
|
<td>
|
|
1926
1926
|
|
|
1927
|
-
[enums/http-status.enums.ts:65](https://github.com/hichchidev/hichchi/blob/
|
|
1927
|
+
[enums/http-status.enums.ts:65](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L65)
|
|
1928
1928
|
|
|
1929
1929
|
</td>
|
|
1930
1930
|
</tr>
|
|
@@ -1941,7 +1941,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1941
1941
|
</td>
|
|
1942
1942
|
<td>
|
|
1943
1943
|
|
|
1944
|
-
[enums/http-status.enums.ts:68](https://github.com/hichchidev/hichchi/blob/
|
|
1944
|
+
[enums/http-status.enums.ts:68](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L68)
|
|
1945
1945
|
|
|
1946
1946
|
</td>
|
|
1947
1947
|
</tr>
|
|
@@ -1958,7 +1958,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1958
1958
|
</td>
|
|
1959
1959
|
<td>
|
|
1960
1960
|
|
|
1961
|
-
[enums/http-status.enums.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
1961
|
+
[enums/http-status.enums.ts:64](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L64)
|
|
1962
1962
|
|
|
1963
1963
|
</td>
|
|
1964
1964
|
</tr>
|
|
@@ -1975,7 +1975,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1975
1975
|
</td>
|
|
1976
1976
|
<td>
|
|
1977
1977
|
|
|
1978
|
-
[enums/http-status.enums.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
1978
|
+
[enums/http-status.enums.ts:67](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L67)
|
|
1979
1979
|
|
|
1980
1980
|
</td>
|
|
1981
1981
|
</tr>
|
|
@@ -1992,7 +1992,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1992
1992
|
</td>
|
|
1993
1993
|
<td>
|
|
1994
1994
|
|
|
1995
|
-
[enums/http-status.enums.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
1995
|
+
[enums/http-status.enums.ts:66](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L66)
|
|
1996
1996
|
|
|
1997
1997
|
</td>
|
|
1998
1998
|
</tr>
|
|
@@ -2003,7 +2003,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
2003
2003
|
|
|
2004
2004
|
### HttpServerErrorStatus
|
|
2005
2005
|
|
|
2006
|
-
Defined in: [enums/http-status.enums.ts:128](https://github.com/hichchidev/hichchi/blob/
|
|
2006
|
+
Defined in: [enums/http-status.enums.ts:128](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L128)
|
|
2007
2007
|
|
|
2008
2008
|
HTTP Server Error Status Codes (5xx)
|
|
2009
2009
|
|
|
@@ -2043,7 +2043,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2043
2043
|
</td>
|
|
2044
2044
|
<td>
|
|
2045
2045
|
|
|
2046
|
-
[enums/http-status.enums.ts:131](https://github.com/hichchidev/hichchi/blob/
|
|
2046
|
+
[enums/http-status.enums.ts:131](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L131)
|
|
2047
2047
|
|
|
2048
2048
|
</td>
|
|
2049
2049
|
</tr>
|
|
@@ -2060,7 +2060,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2060
2060
|
</td>
|
|
2061
2061
|
<td>
|
|
2062
2062
|
|
|
2063
|
-
[enums/http-status.enums.ts:133](https://github.com/hichchidev/hichchi/blob/
|
|
2063
|
+
[enums/http-status.enums.ts:133](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L133)
|
|
2064
2064
|
|
|
2065
2065
|
</td>
|
|
2066
2066
|
</tr>
|
|
@@ -2077,7 +2077,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2077
2077
|
</td>
|
|
2078
2078
|
<td>
|
|
2079
2079
|
|
|
2080
|
-
[enums/http-status.enums.ts:134](https://github.com/hichchidev/hichchi/blob/
|
|
2080
|
+
[enums/http-status.enums.ts:134](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L134)
|
|
2081
2081
|
|
|
2082
2082
|
</td>
|
|
2083
2083
|
</tr>
|
|
@@ -2094,7 +2094,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2094
2094
|
</td>
|
|
2095
2095
|
<td>
|
|
2096
2096
|
|
|
2097
|
-
[enums/http-status.enums.ts:136](https://github.com/hichchidev/hichchi/blob/
|
|
2097
|
+
[enums/http-status.enums.ts:136](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L136)
|
|
2098
2098
|
|
|
2099
2099
|
</td>
|
|
2100
2100
|
</tr>
|
|
@@ -2111,7 +2111,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2111
2111
|
</td>
|
|
2112
2112
|
<td>
|
|
2113
2113
|
|
|
2114
|
-
[enums/http-status.enums.ts:129](https://github.com/hichchidev/hichchi/blob/
|
|
2114
|
+
[enums/http-status.enums.ts:129](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L129)
|
|
2115
2115
|
|
|
2116
2116
|
</td>
|
|
2117
2117
|
</tr>
|
|
@@ -2128,7 +2128,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2128
2128
|
</td>
|
|
2129
2129
|
<td>
|
|
2130
2130
|
|
|
2131
|
-
[enums/http-status.enums.ts:137](https://github.com/hichchidev/hichchi/blob/
|
|
2131
|
+
[enums/http-status.enums.ts:137](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L137)
|
|
2132
2132
|
|
|
2133
2133
|
</td>
|
|
2134
2134
|
</tr>
|
|
@@ -2145,7 +2145,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2145
2145
|
</td>
|
|
2146
2146
|
<td>
|
|
2147
2147
|
|
|
2148
|
-
[enums/http-status.enums.ts:139](https://github.com/hichchidev/hichchi/blob/
|
|
2148
|
+
[enums/http-status.enums.ts:139](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L139)
|
|
2149
2149
|
|
|
2150
2150
|
</td>
|
|
2151
2151
|
</tr>
|
|
@@ -2162,7 +2162,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2162
2162
|
</td>
|
|
2163
2163
|
<td>
|
|
2164
2164
|
|
|
2165
|
-
[enums/http-status.enums.ts:138](https://github.com/hichchidev/hichchi/blob/
|
|
2165
|
+
[enums/http-status.enums.ts:138](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L138)
|
|
2166
2166
|
|
|
2167
2167
|
</td>
|
|
2168
2168
|
</tr>
|
|
@@ -2179,7 +2179,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2179
2179
|
</td>
|
|
2180
2180
|
<td>
|
|
2181
2181
|
|
|
2182
|
-
[enums/http-status.enums.ts:130](https://github.com/hichchidev/hichchi/blob/
|
|
2182
|
+
[enums/http-status.enums.ts:130](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L130)
|
|
2183
2183
|
|
|
2184
2184
|
</td>
|
|
2185
2185
|
</tr>
|
|
@@ -2196,7 +2196,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2196
2196
|
</td>
|
|
2197
2197
|
<td>
|
|
2198
2198
|
|
|
2199
|
-
[enums/http-status.enums.ts:132](https://github.com/hichchidev/hichchi/blob/
|
|
2199
|
+
[enums/http-status.enums.ts:132](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L132)
|
|
2200
2200
|
|
|
2201
2201
|
</td>
|
|
2202
2202
|
</tr>
|
|
@@ -2213,7 +2213,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2213
2213
|
</td>
|
|
2214
2214
|
<td>
|
|
2215
2215
|
|
|
2216
|
-
[enums/http-status.enums.ts:135](https://github.com/hichchidev/hichchi/blob/
|
|
2216
|
+
[enums/http-status.enums.ts:135](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L135)
|
|
2217
2217
|
|
|
2218
2218
|
</td>
|
|
2219
2219
|
</tr>
|
|
@@ -2224,7 +2224,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2224
2224
|
|
|
2225
2225
|
### HttpSuccessStatus
|
|
2226
2226
|
|
|
2227
|
-
Defined in: [enums/http-status.enums.ts:35](https://github.com/hichchidev/hichchi/blob/
|
|
2227
|
+
Defined in: [enums/http-status.enums.ts:35](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L35)
|
|
2228
2228
|
|
|
2229
2229
|
HTTP Success Status Codes (2xx)
|
|
2230
2230
|
|
|
@@ -2264,7 +2264,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2264
2264
|
</td>
|
|
2265
2265
|
<td>
|
|
2266
2266
|
|
|
2267
|
-
[enums/http-status.enums.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
2267
|
+
[enums/http-status.enums.ts:38](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L38)
|
|
2268
2268
|
|
|
2269
2269
|
</td>
|
|
2270
2270
|
</tr>
|
|
@@ -2281,7 +2281,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2281
2281
|
</td>
|
|
2282
2282
|
<td>
|
|
2283
2283
|
|
|
2284
|
-
[enums/http-status.enums.ts:44](https://github.com/hichchidev/hichchi/blob/
|
|
2284
|
+
[enums/http-status.enums.ts:44](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L44)
|
|
2285
2285
|
|
|
2286
2286
|
</td>
|
|
2287
2287
|
</tr>
|
|
@@ -2298,7 +2298,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2298
2298
|
</td>
|
|
2299
2299
|
<td>
|
|
2300
2300
|
|
|
2301
|
-
[enums/http-status.enums.ts:45](https://github.com/hichchidev/hichchi/blob/
|
|
2301
|
+
[enums/http-status.enums.ts:45](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L45)
|
|
2302
2302
|
|
|
2303
2303
|
</td>
|
|
2304
2304
|
</tr>
|
|
@@ -2315,7 +2315,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2315
2315
|
</td>
|
|
2316
2316
|
<td>
|
|
2317
2317
|
|
|
2318
|
-
[enums/http-status.enums.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
2318
|
+
[enums/http-status.enums.ts:37](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L37)
|
|
2319
2319
|
|
|
2320
2320
|
</td>
|
|
2321
2321
|
</tr>
|
|
@@ -2332,7 +2332,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2332
2332
|
</td>
|
|
2333
2333
|
<td>
|
|
2334
2334
|
|
|
2335
|
-
[enums/http-status.enums.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
2335
|
+
[enums/http-status.enums.ts:43](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L43)
|
|
2336
2336
|
|
|
2337
2337
|
</td>
|
|
2338
2338
|
</tr>
|
|
@@ -2349,7 +2349,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2349
2349
|
</td>
|
|
2350
2350
|
<td>
|
|
2351
2351
|
|
|
2352
|
-
[enums/http-status.enums.ts:40](https://github.com/hichchidev/hichchi/blob/
|
|
2352
|
+
[enums/http-status.enums.ts:40](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L40)
|
|
2353
2353
|
|
|
2354
2354
|
</td>
|
|
2355
2355
|
</tr>
|
|
@@ -2366,7 +2366,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2366
2366
|
</td>
|
|
2367
2367
|
<td>
|
|
2368
2368
|
|
|
2369
|
-
[enums/http-status.enums.ts:39](https://github.com/hichchidev/hichchi/blob/
|
|
2369
|
+
[enums/http-status.enums.ts:39](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L39)
|
|
2370
2370
|
|
|
2371
2371
|
</td>
|
|
2372
2372
|
</tr>
|
|
@@ -2383,7 +2383,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2383
2383
|
</td>
|
|
2384
2384
|
<td>
|
|
2385
2385
|
|
|
2386
|
-
[enums/http-status.enums.ts:36](https://github.com/hichchidev/hichchi/blob/
|
|
2386
|
+
[enums/http-status.enums.ts:36](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L36)
|
|
2387
2387
|
|
|
2388
2388
|
</td>
|
|
2389
2389
|
</tr>
|
|
@@ -2400,7 +2400,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2400
2400
|
</td>
|
|
2401
2401
|
<td>
|
|
2402
2402
|
|
|
2403
|
-
[enums/http-status.enums.ts:42](https://github.com/hichchidev/hichchi/blob/
|
|
2403
|
+
[enums/http-status.enums.ts:42](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L42)
|
|
2404
2404
|
|
|
2405
2405
|
</td>
|
|
2406
2406
|
</tr>
|
|
@@ -2417,7 +2417,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2417
2417
|
</td>
|
|
2418
2418
|
<td>
|
|
2419
2419
|
|
|
2420
|
-
[enums/http-status.enums.ts:41](https://github.com/hichchidev/hichchi/blob/
|
|
2420
|
+
[enums/http-status.enums.ts:41](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/enums/http-status.enums.ts#L41)
|
|
2421
2421
|
|
|
2422
2422
|
</td>
|
|
2423
2423
|
</tr>
|
|
@@ -2428,7 +2428,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2428
2428
|
|
|
2429
2429
|
### ErrorResponse
|
|
2430
2430
|
|
|
2431
|
-
Defined in: [interfaces/response.interfaces.ts:126](https://github.com/hichchidev/hichchi/blob/
|
|
2431
|
+
Defined in: [interfaces/response.interfaces.ts:126](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L126)
|
|
2432
2432
|
|
|
2433
2433
|
Interface for error API responses that include error details.
|
|
2434
2434
|
|
|
@@ -2501,7 +2501,7 @@ allowing clients to handle different error scenarios distinctly.
|
|
|
2501
2501
|
</td>
|
|
2502
2502
|
<td>
|
|
2503
2503
|
|
|
2504
|
-
[interfaces/response.interfaces.ts:147](https://github.com/hichchidev/hichchi/blob/
|
|
2504
|
+
[interfaces/response.interfaces.ts:147](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L147)
|
|
2505
2505
|
|
|
2506
2506
|
</td>
|
|
2507
2507
|
</tr>
|
|
@@ -2538,7 +2538,7 @@ rather than end users.
|
|
|
2538
2538
|
</td>
|
|
2539
2539
|
<td>
|
|
2540
2540
|
|
|
2541
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2541
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2542
2542
|
|
|
2543
2543
|
</td>
|
|
2544
2544
|
</tr>
|
|
@@ -2574,7 +2574,7 @@ technical details that aren't relevant to users.
|
|
|
2574
2574
|
</td>
|
|
2575
2575
|
<td>
|
|
2576
2576
|
|
|
2577
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2577
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2578
2578
|
|
|
2579
2579
|
</td>
|
|
2580
2580
|
</tr>
|
|
@@ -2616,7 +2616,7 @@ For error responses, this will typically be:
|
|
|
2616
2616
|
</td>
|
|
2617
2617
|
<td>
|
|
2618
2618
|
|
|
2619
|
-
[interfaces/response.interfaces.ts:137](https://github.com/hichchidev/hichchi/blob/
|
|
2619
|
+
[interfaces/response.interfaces.ts:137](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L137)
|
|
2620
2620
|
|
|
2621
2621
|
</td>
|
|
2622
2622
|
</tr>
|
|
@@ -2627,7 +2627,7 @@ For error responses, this will typically be:
|
|
|
2627
2627
|
|
|
2628
2628
|
### HttpResponse
|
|
2629
2629
|
|
|
2630
|
-
Defined in: [interfaces/response.interfaces.ts:21](https://github.com/hichchidev/hichchi/blob/
|
|
2630
|
+
Defined in: [interfaces/response.interfaces.ts:21](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L21)
|
|
2631
2631
|
|
|
2632
2632
|
Base interface for all HTTP responses in the application.
|
|
2633
2633
|
|
|
@@ -2692,7 +2692,7 @@ for fine-grained categorization of responses within each HTTP status category.
|
|
|
2692
2692
|
</td>
|
|
2693
2693
|
<td>
|
|
2694
2694
|
|
|
2695
|
-
[interfaces/response.interfaces.ts:47](https://github.com/hichchidev/hichchi/blob/
|
|
2695
|
+
[interfaces/response.interfaces.ts:47](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L47)
|
|
2696
2696
|
|
|
2697
2697
|
</td>
|
|
2698
2698
|
</tr>
|
|
@@ -2719,7 +2719,7 @@ rather than end users.
|
|
|
2719
2719
|
</td>
|
|
2720
2720
|
<td>
|
|
2721
2721
|
|
|
2722
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2722
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2723
2723
|
|
|
2724
2724
|
</td>
|
|
2725
2725
|
</tr>
|
|
@@ -2745,7 +2745,7 @@ technical details that aren't relevant to users.
|
|
|
2745
2745
|
</td>
|
|
2746
2746
|
<td>
|
|
2747
2747
|
|
|
2748
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2748
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2749
2749
|
|
|
2750
2750
|
</td>
|
|
2751
2751
|
</tr>
|
|
@@ -2778,7 +2778,7 @@ of the response (success, client error, server error).
|
|
|
2778
2778
|
</td>
|
|
2779
2779
|
<td>
|
|
2780
2780
|
|
|
2781
|
-
[interfaces/response.interfaces.ts:34](https://github.com/hichchidev/hichchi/blob/
|
|
2781
|
+
[interfaces/response.interfaces.ts:34](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L34)
|
|
2782
2782
|
|
|
2783
2783
|
</td>
|
|
2784
2784
|
</tr>
|
|
@@ -2789,7 +2789,7 @@ of the response (success, client error, server error).
|
|
|
2789
2789
|
|
|
2790
2790
|
### SuccessResponse
|
|
2791
2791
|
|
|
2792
|
-
Defined in: [interfaces/response.interfaces.ts:84](https://github.com/hichchidev/hichchi/blob/
|
|
2792
|
+
Defined in: [interfaces/response.interfaces.ts:84](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L84)
|
|
2793
2793
|
|
|
2794
2794
|
Interface for successful API responses that include data payload.
|
|
2795
2795
|
|
|
@@ -2859,7 +2859,7 @@ allowing clients to handle different success scenarios distinctly if needed.
|
|
|
2859
2859
|
</td>
|
|
2860
2860
|
<td>
|
|
2861
2861
|
|
|
2862
|
-
[interfaces/response.interfaces.ts:105](https://github.com/hichchidev/hichchi/blob/
|
|
2862
|
+
[interfaces/response.interfaces.ts:105](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L105)
|
|
2863
2863
|
|
|
2864
2864
|
</td>
|
|
2865
2865
|
</tr>
|
|
@@ -2896,7 +2896,7 @@ rather than end users.
|
|
|
2896
2896
|
</td>
|
|
2897
2897
|
<td>
|
|
2898
2898
|
|
|
2899
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2899
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2900
2900
|
|
|
2901
2901
|
</td>
|
|
2902
2902
|
</tr>
|
|
@@ -2932,7 +2932,7 @@ technical details that aren't relevant to users.
|
|
|
2932
2932
|
</td>
|
|
2933
2933
|
<td>
|
|
2934
2934
|
|
|
2935
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2935
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2936
2936
|
|
|
2937
2937
|
</td>
|
|
2938
2938
|
</tr>
|
|
@@ -2974,7 +2974,7 @@ For successful responses, this will typically be:
|
|
|
2974
2974
|
</td>
|
|
2975
2975
|
<td>
|
|
2976
2976
|
|
|
2977
|
-
[interfaces/response.interfaces.ts:95](https://github.com/hichchidev/hichchi/blob/
|
|
2977
|
+
[interfaces/response.interfaces.ts:95](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L95)
|
|
2978
2978
|
|
|
2979
2979
|
</td>
|
|
2980
2980
|
</tr>
|
|
@@ -2985,7 +2985,7 @@ For successful responses, this will typically be:
|
|
|
2985
2985
|
|
|
2986
2986
|
### UserInfo
|
|
2987
2987
|
|
|
2988
|
-
Defined in: [interfaces/user-info.interface.ts:
|
|
2988
|
+
Defined in: [interfaces/user-info.interface.ts:39](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L39)
|
|
2989
2989
|
|
|
2990
2990
|
Interface representing essential user information.
|
|
2991
2991
|
|
|
@@ -3055,7 +3055,7 @@ Used for personalization and formal addressing throughout the application.
|
|
|
3055
3055
|
</td>
|
|
3056
3056
|
<td>
|
|
3057
3057
|
|
|
3058
|
-
[interfaces/user-info.interface.ts:
|
|
3058
|
+
[interfaces/user-info.interface.ts:64](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L64)
|
|
3059
3059
|
|
|
3060
3060
|
</td>
|
|
3061
3061
|
</tr>
|
|
@@ -3081,7 +3081,7 @@ format may vary based on locale and application requirements.
|
|
|
3081
3081
|
</td>
|
|
3082
3082
|
<td>
|
|
3083
3083
|
|
|
3084
|
-
[interfaces/user-info.interface.ts:
|
|
3084
|
+
[interfaces/user-info.interface.ts:80](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L80)
|
|
3085
3085
|
|
|
3086
3086
|
</td>
|
|
3087
3087
|
</tr>
|
|
@@ -3106,7 +3106,7 @@ and uniquely identifies the user across the entire system.
|
|
|
3106
3106
|
</td>
|
|
3107
3107
|
<td>
|
|
3108
3108
|
|
|
3109
|
-
[interfaces/user-info.interface.ts:
|
|
3109
|
+
[interfaces/user-info.interface.ts:46](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L46)
|
|
3110
3110
|
|
|
3111
3111
|
</td>
|
|
3112
3112
|
</tr>
|
|
@@ -3130,7 +3130,35 @@ Used alongside the first name for formal addressing and identification.
|
|
|
3130
3130
|
</td>
|
|
3131
3131
|
<td>
|
|
3132
3132
|
|
|
3133
|
-
[interfaces/user-info.interface.ts:
|
|
3133
|
+
[interfaces/user-info.interface.ts:71](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L71)
|
|
3134
|
+
|
|
3135
|
+
</td>
|
|
3136
|
+
</tr>
|
|
3137
|
+
<tr>
|
|
3138
|
+
<td>
|
|
3139
|
+
|
|
3140
|
+
<a id="property-tenant"></a> `tenant`
|
|
3141
|
+
|
|
3142
|
+
</td>
|
|
3143
|
+
<td>
|
|
3144
|
+
|
|
3145
|
+
`TenantSlug` | `null`
|
|
3146
|
+
|
|
3147
|
+
</td>
|
|
3148
|
+
<td>
|
|
3149
|
+
|
|
3150
|
+
Represents the tenant associated with the current context.
|
|
3151
|
+
The value can either be a tenant-specific identifier (TenantSlug) or null if no tenant is assigned.
|
|
3152
|
+
|
|
3153
|
+
A TenantSlug is typically a unique string or slug representing a tenant in multi-tenant applications.
|
|
3154
|
+
Null indicates the absence of a tenant in the current context.
|
|
3155
|
+
|
|
3156
|
+
This variable is often used to scope application logic and data to a specific tenant.
|
|
3157
|
+
|
|
3158
|
+
</td>
|
|
3159
|
+
<td>
|
|
3160
|
+
|
|
3161
|
+
[interfaces/user-info.interface.ts:57](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L57)
|
|
3134
3162
|
|
|
3135
3163
|
</td>
|
|
3136
3164
|
</tr>
|
|
@@ -3145,7 +3173,7 @@ Used alongside the first name for formal addressing and identification.
|
|
|
3145
3173
|
type ErrorResponseCode = LooseAutocomplete<AuthErrorResponseCode>;
|
|
3146
3174
|
```
|
|
3147
3175
|
|
|
3148
|
-
Defined in: [types/response-code.ts:62](https://github.com/hichchidev/hichchi/blob/
|
|
3176
|
+
Defined in: [types/response-code.ts:62](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/response-code.ts#L62)
|
|
3149
3177
|
|
|
3150
3178
|
Represents all possible error response codes used throughout the application.
|
|
3151
3179
|
|
|
@@ -3170,7 +3198,7 @@ error codes are used when constructing error responses.
|
|
|
3170
3198
|
type FileId = string & object;
|
|
3171
3199
|
```
|
|
3172
3200
|
|
|
3173
|
-
Defined in: [types/types.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
3201
|
+
Defined in: [types/types.ts:38](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L38)
|
|
3174
3202
|
|
|
3175
3203
|
Represents a strongly-typed unique identifier for a file.
|
|
3176
3204
|
|
|
@@ -3206,7 +3234,7 @@ unique `symbol`
|
|
|
3206
3234
|
</td>
|
|
3207
3235
|
<td>
|
|
3208
3236
|
|
|
3209
|
-
[types/types.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
3237
|
+
[types/types.ts:38](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L38)
|
|
3210
3238
|
|
|
3211
3239
|
</td>
|
|
3212
3240
|
</tr>
|
|
@@ -3245,7 +3273,7 @@ type HttpStatus =
|
|
|
3245
3273
|
| HttpServerErrorStatus;
|
|
3246
3274
|
```
|
|
3247
3275
|
|
|
3248
|
-
Defined in: [types/types.ts:96](https://github.com/hichchidev/hichchi/blob/
|
|
3276
|
+
Defined in: [types/types.ts:96](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L96)
|
|
3249
3277
|
|
|
3250
3278
|
Comprehensive HTTP status code type.
|
|
3251
3279
|
|
|
@@ -3275,7 +3303,7 @@ type ResponseCode = LooseAutocomplete<
|
|
|
3275
3303
|
>;
|
|
3276
3304
|
```
|
|
3277
3305
|
|
|
3278
|
-
Defined in: [types/response-code.ts:23](https://github.com/hichchidev/hichchi/blob/
|
|
3306
|
+
Defined in: [types/response-code.ts:23](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/response-code.ts#L23)
|
|
3279
3307
|
|
|
3280
3308
|
Represents all possible response codes used throughout the application.
|
|
3281
3309
|
|
|
@@ -3302,7 +3330,7 @@ codes that may be added in the future).
|
|
|
3302
3330
|
type SocketId = string & object;
|
|
3303
3331
|
```
|
|
3304
3332
|
|
|
3305
|
-
Defined in: [types/types.ts:77](https://github.com/hichchidev/hichchi/blob/
|
|
3333
|
+
Defined in: [types/types.ts:77](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L77)
|
|
3306
3334
|
|
|
3307
3335
|
Represents a strongly-typed socket identifier for WebSocket connections.
|
|
3308
3336
|
|
|
@@ -3337,7 +3365,7 @@ unique `symbol`
|
|
|
3337
3365
|
</td>
|
|
3338
3366
|
<td>
|
|
3339
3367
|
|
|
3340
|
-
[types/types.ts:77](https://github.com/hichchidev/hichchi/blob/
|
|
3368
|
+
[types/types.ts:77](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L77)
|
|
3341
3369
|
|
|
3342
3370
|
</td>
|
|
3343
3371
|
</tr>
|
|
@@ -3372,7 +3400,7 @@ type SuccessResponseCode = LooseAutocomplete<
|
|
|
3372
3400
|
>;
|
|
3373
3401
|
```
|
|
3374
3402
|
|
|
3375
|
-
Defined in: [types/response-code.ts:44](https://github.com/hichchidev/hichchi/blob/
|
|
3403
|
+
Defined in: [types/response-code.ts:44](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/response-code.ts#L44)
|
|
3376
3404
|
|
|
3377
3405
|
Represents all possible success response codes used throughout the application.
|
|
3378
3406
|
|
|
@@ -3398,7 +3426,7 @@ success codes are used when constructing responses.
|
|
|
3398
3426
|
type WsRefId = (string & object) | "system";
|
|
3399
3427
|
```
|
|
3400
3428
|
|
|
3401
|
-
Defined in: [types/types.ts:48](https://github.com/hichchidev/hichchi/blob/
|
|
3429
|
+
Defined in: [types/types.ts:48](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/types/types.ts#L48)
|
|
3402
3430
|
|
|
3403
3431
|
Represents a type alias `WsRefId` which is either a branded string or the literal string "system".
|
|
3404
3432
|
|
|
@@ -3415,7 +3443,7 @@ The literal string `"system"` is included as an alternative value.
|
|
|
3415
3443
|
const DAY_IN_HOURS: 24 = 24;
|
|
3416
3444
|
```
|
|
3417
3445
|
|
|
3418
|
-
Defined in: [constants.ts:
|
|
3446
|
+
Defined in: [constants.ts:6](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L6)
|
|
3419
3447
|
|
|
3420
3448
|
---
|
|
3421
3449
|
|
|
@@ -3425,7 +3453,7 @@ Defined in: [constants.ts:4](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3425
3453
|
const DAY_IN_SECONDS: number;
|
|
3426
3454
|
```
|
|
3427
3455
|
|
|
3428
|
-
Defined in: [constants.ts:
|
|
3456
|
+
Defined in: [constants.ts:7](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L7)
|
|
3429
3457
|
|
|
3430
3458
|
---
|
|
3431
3459
|
|
|
@@ -3435,7 +3463,7 @@ Defined in: [constants.ts:5](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3435
3463
|
const DEFAULT_ITEMS_PER_PAGE: 10 = 10;
|
|
3436
3464
|
```
|
|
3437
3465
|
|
|
3438
|
-
Defined in: [constants.ts:
|
|
3466
|
+
Defined in: [constants.ts:21](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L21)
|
|
3439
3467
|
|
|
3440
3468
|
---
|
|
3441
3469
|
|
|
@@ -3445,7 +3473,7 @@ Defined in: [constants.ts:19](https://github.com/hichchidev/hichchi/blob/4f03509
|
|
|
3445
3473
|
const DEFAULT_MYSQL_PORT: 3306 = 3306;
|
|
3446
3474
|
```
|
|
3447
3475
|
|
|
3448
|
-
Defined in: [constants.ts:
|
|
3476
|
+
Defined in: [constants.ts:19](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L19)
|
|
3449
3477
|
|
|
3450
3478
|
---
|
|
3451
3479
|
|
|
@@ -3455,7 +3483,7 @@ Defined in: [constants.ts:17](https://github.com/hichchidev/hichchi/blob/4f03509
|
|
|
3455
3483
|
const DEFAULT_REDIS_PORT: 6379 = 6379;
|
|
3456
3484
|
```
|
|
3457
3485
|
|
|
3458
|
-
Defined in: [constants.ts:
|
|
3486
|
+
Defined in: [constants.ts:17](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L17)
|
|
3459
3487
|
|
|
3460
3488
|
---
|
|
3461
3489
|
|
|
@@ -3465,7 +3493,7 @@ Defined in: [constants.ts:15](https://github.com/hichchidev/hichchi/blob/4f03509
|
|
|
3465
3493
|
const DEFAULT_SALT_ROUNDS: 10 = 10;
|
|
3466
3494
|
```
|
|
3467
3495
|
|
|
3468
|
-
Defined in: [constants.ts:
|
|
3496
|
+
Defined in: [constants.ts:13](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L13)
|
|
3469
3497
|
|
|
3470
3498
|
---
|
|
3471
3499
|
|
|
@@ -3475,7 +3503,7 @@ Defined in: [constants.ts:11](https://github.com/hichchidev/hichchi/blob/4f03509
|
|
|
3475
3503
|
const DEFAULT_UUID_VERSION: 4 = 4;
|
|
3476
3504
|
```
|
|
3477
3505
|
|
|
3478
|
-
Defined in: [constants.ts:
|
|
3506
|
+
Defined in: [constants.ts:15](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L15)
|
|
3479
3507
|
|
|
3480
3508
|
---
|
|
3481
3509
|
|
|
@@ -3485,7 +3513,7 @@ Defined in: [constants.ts:13](https://github.com/hichchidev/hichchi/blob/4f03509
|
|
|
3485
3513
|
const DEFAULT_VERIFY_TOKEN_LENGTH: 16 = 16;
|
|
3486
3514
|
```
|
|
3487
3515
|
|
|
3488
|
-
Defined in: [constants.ts:
|
|
3516
|
+
Defined in: [constants.ts:11](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L11)
|
|
3489
3517
|
|
|
3490
3518
|
---
|
|
3491
3519
|
|
|
@@ -3495,7 +3523,7 @@ Defined in: [constants.ts:9](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3495
3523
|
const Errors: { [key in CommonErrorResponseCode]: ErrorResponse };
|
|
3496
3524
|
```
|
|
3497
3525
|
|
|
3498
|
-
Defined in: [responses/error.responses.ts:71](https://github.com/hichchidev/hichchi/blob/
|
|
3526
|
+
Defined in: [responses/error.responses.ts:71](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/responses/error.responses.ts#L71)
|
|
3499
3527
|
|
|
3500
3528
|
Collection of standardized common error responses
|
|
3501
3529
|
|
|
@@ -3572,7 +3600,7 @@ export class NotFoundExceptionFilter implements ExceptionFilter {
|
|
|
3572
3600
|
const HOUR_IN_MINUTES: 60 = 60;
|
|
3573
3601
|
```
|
|
3574
3602
|
|
|
3575
|
-
Defined in: [constants.ts:
|
|
3603
|
+
Defined in: [constants.ts:5](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L5)
|
|
3576
3604
|
|
|
3577
3605
|
---
|
|
3578
3606
|
|
|
@@ -3582,7 +3610,7 @@ Defined in: [constants.ts:3](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3582
3610
|
const MINUTE_IN_SECONDS: 60 = 60;
|
|
3583
3611
|
```
|
|
3584
3612
|
|
|
3585
|
-
Defined in: [constants.ts:
|
|
3613
|
+
Defined in: [constants.ts:4](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L4)
|
|
3586
3614
|
|
|
3587
3615
|
---
|
|
3588
3616
|
|
|
@@ -3592,7 +3620,7 @@ Defined in: [constants.ts:2](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3592
3620
|
const MONTH_IN_DAYS: 30 = 30;
|
|
3593
3621
|
```
|
|
3594
3622
|
|
|
3595
|
-
Defined in: [constants.ts:
|
|
3623
|
+
Defined in: [constants.ts:8](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L8)
|
|
3596
3624
|
|
|
3597
3625
|
---
|
|
3598
3626
|
|
|
@@ -3602,7 +3630,7 @@ Defined in: [constants.ts:6](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3602
3630
|
const MONTH_IN_SECONDS: number;
|
|
3603
3631
|
```
|
|
3604
3632
|
|
|
3605
|
-
Defined in: [constants.ts:
|
|
3633
|
+
Defined in: [constants.ts:9](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L9)
|
|
3606
3634
|
|
|
3607
3635
|
---
|
|
3608
3636
|
|
|
@@ -3612,7 +3640,7 @@ Defined in: [constants.ts:7](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3612
3640
|
const SECOND_IN_MS: 1000 = 1000;
|
|
3613
3641
|
```
|
|
3614
3642
|
|
|
3615
|
-
Defined in: [constants.ts:
|
|
3643
|
+
Defined in: [constants.ts:3](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/constants.ts#L3)
|
|
3616
3644
|
|
|
3617
3645
|
---
|
|
3618
3646
|
|
|
@@ -3622,7 +3650,7 @@ Defined in: [constants.ts:1](https://github.com/hichchidev/hichchi/blob/4f035092
|
|
|
3622
3650
|
const SuccessResponses: { [key in CommonSuccessResponseCode]: SuccessResponse };
|
|
3623
3651
|
```
|
|
3624
3652
|
|
|
3625
|
-
Defined in: [responses/success.responses.ts:59](https://github.com/hichchidev/hichchi/blob/
|
|
3653
|
+
Defined in: [responses/success.responses.ts:59](https://github.com/hichchidev/hichchi/blob/945db660e7bba28e17d58da0bb856736e708db35/libs/nest-connector/src/common/responses/success.responses.ts#L59)
|
|
3626
3654
|
|
|
3627
3655
|
Collection of standardized common success responses
|
|
3628
3656
|
|