@hichchi/nest-connector 0.0.7 → 0.0.9
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 +12 -0
- package/README.md +148 -169
- package/auth.cjs.js +23 -2
- package/auth.esm.js +22 -2
- package/package.json +1 -1
- package/readme-top.md +6 -0
- package/src/auth/constants/constants.d.ts +21 -1
- package/src/auth/interfaces/index.d.ts +1 -0
- package/src/auth/interfaces/role.interface.d.ts +4 -1
- package/src/auth/interfaces/tenant.interface.d.ts +60 -0
- package/src/auth/interfaces/user.interface.d.ts +20 -2
- package/src/common/interfaces/user-info.interface.d.ts +0 -11
- package/src/crud/types/types.d.ts +6 -1
package/README.md
CHANGED
|
@@ -120,6 +120,12 @@ npm install class-validator class-transformer
|
|
|
120
120
|
- 📊 **Status Code Management** - Organized HTTP status code handling
|
|
121
121
|
- 🔧 **Type-Safe Responses** - Full TypeScript support for response structures
|
|
122
122
|
|
|
123
|
+
### 🔐 Authentication Interfaces
|
|
124
|
+
|
|
125
|
+
- 👤 **Typed Auth User Interface** - Generic `User<Role, Permission, Tenant>` typing for role/permission/tenant-aware authentication flows
|
|
126
|
+
- 🏢 **Tenant Interface Support** - Dedicated tenant interfaces with owner/member user relationships for multi-tenant domains
|
|
127
|
+
- 🧩 **Composed Auth Models** - Consistent `Role`, `User`, and `Tenant` interface exports for shared contracts across services
|
|
128
|
+
|
|
123
129
|
### 🎨 Developer Experience
|
|
124
130
|
|
|
125
131
|
- 📝 **Comprehensive Documentation** - Detailed JSDoc comments for all interfaces
|
|
@@ -130,6 +136,7 @@ npm install class-validator class-transformer
|
|
|
130
136
|
### 🔧 Advanced Features
|
|
131
137
|
|
|
132
138
|
- 🏷️ **User Info Interfaces** - Standardized user information structures
|
|
139
|
+
- 🔀 **Clear Context Separation** - Base `UserInfo` for identity data, auth `User` interface for tenant-aware authentication context
|
|
133
140
|
- 📦 **Modular Design** - Import only what you need
|
|
134
141
|
- 🔄 **Extensible Architecture** - Easy to extend with custom response types
|
|
135
142
|
- 🎪 **Framework Agnostic Types** - Core interfaces can be used beyond NestJS
|
|
@@ -228,7 +235,7 @@ Complete technical reference for all classes, interfaces, methods, and types in
|
|
|
228
235
|
|
|
229
236
|
### SuccessResponseDto
|
|
230
237
|
|
|
231
|
-
Defined in: [builders/success-response.dto.ts:55](https://github.com/hichchidev/hichchi/blob/
|
|
238
|
+
Defined in: [builders/success-response.dto.ts:55](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L55)
|
|
232
239
|
|
|
233
240
|
Data Transfer Object for standardized success responses
|
|
234
241
|
|
|
@@ -294,7 +301,7 @@ new SuccessResponseDto(
|
|
|
294
301
|
description?): SuccessResponseDto;
|
|
295
302
|
```
|
|
296
303
|
|
|
297
|
-
Defined in: [builders/success-response.dto.ts:118](https://github.com/hichchidev/hichchi/blob/
|
|
304
|
+
Defined in: [builders/success-response.dto.ts:118](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L118)
|
|
298
305
|
|
|
299
306
|
Creates a new success response with individual parameters
|
|
300
307
|
|
|
@@ -408,7 +415,7 @@ const response = new SuccessResponseDto(
|
|
|
408
415
|
new SuccessResponseDto(response): SuccessResponseDto;
|
|
409
416
|
```
|
|
410
417
|
|
|
411
|
-
Defined in: [builders/success-response.dto.ts:140](https://github.com/hichchidev/hichchi/blob/
|
|
418
|
+
Defined in: [builders/success-response.dto.ts:140](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L140)
|
|
412
419
|
|
|
413
420
|
Creates a new success response from an existing response object
|
|
414
421
|
|
|
@@ -501,7 +508,7 @@ AuthSuccessResponseCode For predefined success codes
|
|
|
501
508
|
</td>
|
|
502
509
|
<td>
|
|
503
510
|
|
|
504
|
-
[builders/success-response.dto.ts:75](https://github.com/hichchidev/hichchi/blob/
|
|
511
|
+
[builders/success-response.dto.ts:75](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L75)
|
|
505
512
|
|
|
506
513
|
</td>
|
|
507
514
|
</tr>
|
|
@@ -526,7 +533,7 @@ that might be useful for debugging or providing more context to developers.
|
|
|
526
533
|
</td>
|
|
527
534
|
<td>
|
|
528
535
|
|
|
529
|
-
[builders/success-response.dto.ts:91](https://github.com/hichchidev/hichchi/blob/
|
|
536
|
+
[builders/success-response.dto.ts:91](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L91)
|
|
530
537
|
|
|
531
538
|
</td>
|
|
532
539
|
</tr>
|
|
@@ -551,7 +558,7 @@ It should be clear, concise, and suitable for displaying to end users.
|
|
|
551
558
|
</td>
|
|
552
559
|
<td>
|
|
553
560
|
|
|
554
|
-
[builders/success-response.dto.ts:83](https://github.com/hichchidev/hichchi/blob/
|
|
561
|
+
[builders/success-response.dto.ts:83](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L83)
|
|
555
562
|
|
|
556
563
|
</td>
|
|
557
564
|
</tr>
|
|
@@ -580,7 +587,7 @@ It uses the HttpSuccessStatus enum to ensure only valid success status codes are
|
|
|
580
587
|
</td>
|
|
581
588
|
<td>
|
|
582
589
|
|
|
583
|
-
[builders/success-response.dto.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
590
|
+
[builders/success-response.dto.ts:64](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/builders/success-response.dto.ts#L64)
|
|
584
591
|
|
|
585
592
|
</td>
|
|
586
593
|
</tr>
|
|
@@ -591,7 +598,7 @@ It uses the HttpSuccessStatus enum to ensure only valid success status codes are
|
|
|
591
598
|
|
|
592
599
|
### CommonErrorResponseCode
|
|
593
600
|
|
|
594
|
-
Defined in: [enums/common-error-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
601
|
+
Defined in: [enums/common-error-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L16)
|
|
595
602
|
|
|
596
603
|
Common Error Response Codes Enum
|
|
597
604
|
|
|
@@ -641,7 +648,7 @@ or doesn't fit into any other category.
|
|
|
641
648
|
</td>
|
|
642
649
|
<td>
|
|
643
650
|
|
|
644
|
-
[enums/common-error-response-code.enum.ts:129](https://github.com/hichchidev/hichchi/blob/
|
|
651
|
+
[enums/common-error-response-code.enum.ts:129](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L129)
|
|
645
652
|
|
|
646
653
|
</td>
|
|
647
654
|
</tr>
|
|
@@ -665,7 +672,7 @@ Generic error for bad requests when a more specific error code is not applicable
|
|
|
665
672
|
</td>
|
|
666
673
|
<td>
|
|
667
674
|
|
|
668
|
-
[enums/common-error-response-code.enum.ts:93](https://github.com/hichchidev/hichchi/blob/
|
|
675
|
+
[enums/common-error-response-code.enum.ts:93](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L93)
|
|
669
676
|
|
|
670
677
|
</td>
|
|
671
678
|
</tr>
|
|
@@ -689,7 +696,7 @@ Occurs when an ID field is required but not provided or is empty.
|
|
|
689
696
|
</td>
|
|
690
697
|
<td>
|
|
691
698
|
|
|
692
|
-
[enums/common-error-response-code.enum.ts:22](https://github.com/hichchidev/hichchi/blob/
|
|
699
|
+
[enums/common-error-response-code.enum.ts:22](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L22)
|
|
693
700
|
|
|
694
701
|
</td>
|
|
695
702
|
</tr>
|
|
@@ -713,7 +720,7 @@ Occurs when an array of IDs is required but not provided or is empty.
|
|
|
713
720
|
</td>
|
|
714
721
|
<td>
|
|
715
722
|
|
|
716
|
-
[enums/common-error-response-code.enum.ts:29](https://github.com/hichchidev/hichchi/blob/
|
|
723
|
+
[enums/common-error-response-code.enum.ts:29](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L29)
|
|
717
724
|
|
|
718
725
|
</td>
|
|
719
726
|
</tr>
|
|
@@ -737,7 +744,7 @@ Occurs when an ID is provided but has an invalid format or value.
|
|
|
737
744
|
</td>
|
|
738
745
|
<td>
|
|
739
746
|
|
|
740
|
-
[enums/common-error-response-code.enum.ts:36](https://github.com/hichchidev/hichchi/blob/
|
|
747
|
+
[enums/common-error-response-code.enum.ts:36](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L36)
|
|
741
748
|
|
|
742
749
|
</td>
|
|
743
750
|
</tr>
|
|
@@ -761,7 +768,7 @@ Occurs when an array of IDs contains one or more invalid entries.
|
|
|
761
768
|
</td>
|
|
762
769
|
<td>
|
|
763
770
|
|
|
764
|
-
[enums/common-error-response-code.enum.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
771
|
+
[enums/common-error-response-code.enum.ts:43](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L43)
|
|
765
772
|
|
|
766
773
|
</td>
|
|
767
774
|
</tr>
|
|
@@ -785,7 +792,7 @@ Occurs when a provided UUID doesn't conform to the required format.
|
|
|
785
792
|
</td>
|
|
786
793
|
<td>
|
|
787
794
|
|
|
788
|
-
[enums/common-error-response-code.enum.ts:50](https://github.com/hichchidev/hichchi/blob/
|
|
795
|
+
[enums/common-error-response-code.enum.ts:50](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L50)
|
|
789
796
|
|
|
790
797
|
</td>
|
|
791
798
|
</tr>
|
|
@@ -809,7 +816,7 @@ Occurs when a parameter expected to be an array of IDs is of the wrong type.
|
|
|
809
816
|
</td>
|
|
810
817
|
<td>
|
|
811
818
|
|
|
812
|
-
[enums/common-error-response-code.enum.ts:57](https://github.com/hichchidev/hichchi/blob/
|
|
819
|
+
[enums/common-error-response-code.enum.ts:57](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L57)
|
|
813
820
|
|
|
814
821
|
</td>
|
|
815
822
|
</tr>
|
|
@@ -833,7 +840,7 @@ Generic error for unauthorized access when a more specific error code is not app
|
|
|
833
840
|
</td>
|
|
834
841
|
<td>
|
|
835
842
|
|
|
836
|
-
[enums/common-error-response-code.enum.ts:100](https://github.com/hichchidev/hichchi/blob/
|
|
843
|
+
[enums/common-error-response-code.enum.ts:100](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L100)
|
|
837
844
|
|
|
838
845
|
</td>
|
|
839
846
|
</tr>
|
|
@@ -857,7 +864,7 @@ Generic error for forbidden access when a more specific error code is not applic
|
|
|
857
864
|
</td>
|
|
858
865
|
<td>
|
|
859
866
|
|
|
860
|
-
[enums/common-error-response-code.enum.ts:107](https://github.com/hichchidev/hichchi/blob/
|
|
867
|
+
[enums/common-error-response-code.enum.ts:107](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L107)
|
|
861
868
|
|
|
862
869
|
</td>
|
|
863
870
|
</tr>
|
|
@@ -881,7 +888,7 @@ Generic error for resource not found when a more specific error code is not appl
|
|
|
881
888
|
</td>
|
|
882
889
|
<td>
|
|
883
890
|
|
|
884
|
-
[enums/common-error-response-code.enum.ts:114](https://github.com/hichchidev/hichchi/blob/
|
|
891
|
+
[enums/common-error-response-code.enum.ts:114](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L114)
|
|
885
892
|
|
|
886
893
|
</td>
|
|
887
894
|
</tr>
|
|
@@ -905,7 +912,7 @@ Occurs when attempting to access a file that doesn't exist.
|
|
|
905
912
|
</td>
|
|
906
913
|
<td>
|
|
907
914
|
|
|
908
|
-
[enums/common-error-response-code.enum.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
915
|
+
[enums/common-error-response-code.enum.ts:64](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L64)
|
|
909
916
|
|
|
910
917
|
</td>
|
|
911
918
|
</tr>
|
|
@@ -930,7 +937,7 @@ Note: While HTTP 501 is traditionally used for this, this uses 404 for specific
|
|
|
930
937
|
</td>
|
|
931
938
|
<td>
|
|
932
939
|
|
|
933
|
-
[enums/common-error-response-code.enum.ts:72](https://github.com/hichchidev/hichchi/blob/
|
|
940
|
+
[enums/common-error-response-code.enum.ts:72](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L72)
|
|
934
941
|
|
|
935
942
|
</td>
|
|
936
943
|
</tr>
|
|
@@ -954,7 +961,7 @@ Generic error for server-side issues when a more specific error code is not appl
|
|
|
954
961
|
</td>
|
|
955
962
|
<td>
|
|
956
963
|
|
|
957
|
-
[enums/common-error-response-code.enum.ts:121](https://github.com/hichchidev/hichchi/blob/
|
|
964
|
+
[enums/common-error-response-code.enum.ts:121](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L121)
|
|
958
965
|
|
|
959
966
|
</td>
|
|
960
967
|
</tr>
|
|
@@ -978,7 +985,7 @@ Occurs when there is a server-side error during file deletion.
|
|
|
978
985
|
</td>
|
|
979
986
|
<td>
|
|
980
987
|
|
|
981
|
-
[enums/common-error-response-code.enum.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
988
|
+
[enums/common-error-response-code.enum.ts:86](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L86)
|
|
982
989
|
|
|
983
990
|
</td>
|
|
984
991
|
</tr>
|
|
@@ -1002,7 +1009,7 @@ Occurs when there is a server-side error during file upload processing.
|
|
|
1002
1009
|
</td>
|
|
1003
1010
|
<td>
|
|
1004
1011
|
|
|
1005
|
-
[enums/common-error-response-code.enum.ts:79](https://github.com/hichchidev/hichchi/blob/
|
|
1012
|
+
[enums/common-error-response-code.enum.ts:79](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-error-response-code.enum.ts#L79)
|
|
1006
1013
|
|
|
1007
1014
|
</td>
|
|
1008
1015
|
</tr>
|
|
@@ -1013,7 +1020,7 @@ Occurs when there is a server-side error during file upload processing.
|
|
|
1013
1020
|
|
|
1014
1021
|
### CommonSuccessResponseCode
|
|
1015
1022
|
|
|
1016
|
-
Defined in: [enums/common-success-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1023
|
+
Defined in: [enums/common-success-response-code.enum.ts:16](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-success-response-code.enum.ts#L16)
|
|
1017
1024
|
|
|
1018
1025
|
Common Success Response Codes Enum
|
|
1019
1026
|
|
|
@@ -1063,7 +1070,7 @@ success code is not necessary or has not been defined.
|
|
|
1063
1070
|
</td>
|
|
1064
1071
|
<td>
|
|
1065
1072
|
|
|
1066
|
-
[enums/common-success-response-code.enum.ts:24](https://github.com/hichchidev/hichchi/blob/
|
|
1073
|
+
[enums/common-success-response-code.enum.ts:24](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/common-success-response-code.enum.ts#L24)
|
|
1067
1074
|
|
|
1068
1075
|
</td>
|
|
1069
1076
|
</tr>
|
|
@@ -1074,7 +1081,7 @@ success code is not necessary or has not been defined.
|
|
|
1074
1081
|
|
|
1075
1082
|
### Endpoint
|
|
1076
1083
|
|
|
1077
|
-
Defined in: [enums/endpoint.enum.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1084
|
+
Defined in: [enums/endpoint.enum.ts:16](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/endpoint.enum.ts#L16)
|
|
1078
1085
|
|
|
1079
1086
|
Base API Endpoints Enum
|
|
1080
1087
|
|
|
@@ -1130,7 +1137,7 @@ AuthEndpoint For specific authentication operation endpoints
|
|
|
1130
1137
|
</td>
|
|
1131
1138
|
<td>
|
|
1132
1139
|
|
|
1133
|
-
[enums/endpoint.enum.ts:28](https://github.com/hichchidev/hichchi/blob/
|
|
1140
|
+
[enums/endpoint.enum.ts:28](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/endpoint.enum.ts#L28)
|
|
1134
1141
|
|
|
1135
1142
|
</td>
|
|
1136
1143
|
</tr>
|
|
@@ -1141,7 +1148,7 @@ AuthEndpoint For specific authentication operation endpoints
|
|
|
1141
1148
|
|
|
1142
1149
|
### Gateway
|
|
1143
1150
|
|
|
1144
|
-
Defined in: [enums/gateways.enum.ts:17](https://github.com/hichchidev/hichchi/blob/
|
|
1151
|
+
Defined in: [enums/gateways.enum.ts:17](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/gateways.enum.ts#L17)
|
|
1145
1152
|
|
|
1146
1153
|
Application Gateways Enum
|
|
1147
1154
|
|
|
@@ -1196,7 +1203,7 @@ The implementation may use libraries like Socket.IO or native WebSockets.
|
|
|
1196
1203
|
</td>
|
|
1197
1204
|
<td>
|
|
1198
1205
|
|
|
1199
|
-
[enums/gateways.enum.ts:31](https://github.com/hichchidev/hichchi/blob/
|
|
1206
|
+
[enums/gateways.enum.ts:31](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/gateways.enum.ts#L31)
|
|
1200
1207
|
|
|
1201
1208
|
</td>
|
|
1202
1209
|
</tr>
|
|
@@ -1207,7 +1214,7 @@ The implementation may use libraries like Socket.IO or native WebSockets.
|
|
|
1207
1214
|
|
|
1208
1215
|
### HttpClientErrorStatus
|
|
1209
1216
|
|
|
1210
|
-
Defined in: [enums/http-status.enums.ts:83](https://github.com/hichchidev/hichchi/blob/
|
|
1217
|
+
Defined in: [enums/http-status.enums.ts:83](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L83)
|
|
1211
1218
|
|
|
1212
1219
|
HTTP Client Error Status Codes (4xx)
|
|
1213
1220
|
|
|
@@ -1246,7 +1253,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1246
1253
|
</td>
|
|
1247
1254
|
<td>
|
|
1248
1255
|
|
|
1249
|
-
[enums/http-status.enums.ts:84](https://github.com/hichchidev/hichchi/blob/
|
|
1256
|
+
[enums/http-status.enums.ts:84](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L84)
|
|
1250
1257
|
|
|
1251
1258
|
</td>
|
|
1252
1259
|
</tr>
|
|
@@ -1263,7 +1270,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1263
1270
|
</td>
|
|
1264
1271
|
<td>
|
|
1265
1272
|
|
|
1266
|
-
[enums/http-status.enums.ts:93](https://github.com/hichchidev/hichchi/blob/
|
|
1273
|
+
[enums/http-status.enums.ts:93](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L93)
|
|
1267
1274
|
|
|
1268
1275
|
</td>
|
|
1269
1276
|
</tr>
|
|
@@ -1280,7 +1287,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1280
1287
|
</td>
|
|
1281
1288
|
<td>
|
|
1282
1289
|
|
|
1283
|
-
[enums/http-status.enums.ts:101](https://github.com/hichchidev/hichchi/blob/
|
|
1290
|
+
[enums/http-status.enums.ts:101](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L101)
|
|
1284
1291
|
|
|
1285
1292
|
</td>
|
|
1286
1293
|
</tr>
|
|
@@ -1297,7 +1304,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1297
1304
|
</td>
|
|
1298
1305
|
<td>
|
|
1299
1306
|
|
|
1300
|
-
[enums/http-status.enums.ts:106](https://github.com/hichchidev/hichchi/blob/
|
|
1307
|
+
[enums/http-status.enums.ts:106](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L106)
|
|
1301
1308
|
|
|
1302
1309
|
</td>
|
|
1303
1310
|
</tr>
|
|
@@ -1314,7 +1321,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1314
1321
|
</td>
|
|
1315
1322
|
<td>
|
|
1316
1323
|
|
|
1317
|
-
[enums/http-status.enums.ts:87](https://github.com/hichchidev/hichchi/blob/
|
|
1324
|
+
[enums/http-status.enums.ts:87](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L87)
|
|
1318
1325
|
|
|
1319
1326
|
</td>
|
|
1320
1327
|
</tr>
|
|
@@ -1331,7 +1338,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1331
1338
|
</td>
|
|
1332
1339
|
<td>
|
|
1333
1340
|
|
|
1334
|
-
[enums/http-status.enums.ts:94](https://github.com/hichchidev/hichchi/blob/
|
|
1341
|
+
[enums/http-status.enums.ts:94](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L94)
|
|
1335
1342
|
|
|
1336
1343
|
</td>
|
|
1337
1344
|
</tr>
|
|
@@ -1348,7 +1355,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1348
1355
|
</td>
|
|
1349
1356
|
<td>
|
|
1350
1357
|
|
|
1351
|
-
[enums/http-status.enums.ts:102](https://github.com/hichchidev/hichchi/blob/
|
|
1358
|
+
[enums/http-status.enums.ts:102](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L102)
|
|
1352
1359
|
|
|
1353
1360
|
</td>
|
|
1354
1361
|
</tr>
|
|
@@ -1365,7 +1372,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1365
1372
|
</td>
|
|
1366
1373
|
<td>
|
|
1367
1374
|
|
|
1368
|
-
[enums/http-status.enums.ts:95](https://github.com/hichchidev/hichchi/blob/
|
|
1375
|
+
[enums/http-status.enums.ts:95](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L95)
|
|
1369
1376
|
|
|
1370
1377
|
</td>
|
|
1371
1378
|
</tr>
|
|
@@ -1382,7 +1389,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1382
1389
|
</td>
|
|
1383
1390
|
<td>
|
|
1384
1391
|
|
|
1385
|
-
[enums/http-status.enums.ts:105](https://github.com/hichchidev/hichchi/blob/
|
|
1392
|
+
[enums/http-status.enums.ts:105](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L105)
|
|
1386
1393
|
|
|
1387
1394
|
</td>
|
|
1388
1395
|
</tr>
|
|
@@ -1399,7 +1406,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1399
1406
|
</td>
|
|
1400
1407
|
<td>
|
|
1401
1408
|
|
|
1402
|
-
[enums/http-status.enums.ts:89](https://github.com/hichchidev/hichchi/blob/
|
|
1409
|
+
[enums/http-status.enums.ts:89](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L89)
|
|
1403
1410
|
|
|
1404
1411
|
</td>
|
|
1405
1412
|
</tr>
|
|
@@ -1416,7 +1423,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1416
1423
|
</td>
|
|
1417
1424
|
<td>
|
|
1418
1425
|
|
|
1419
|
-
[enums/http-status.enums.ts:103](https://github.com/hichchidev/hichchi/blob/
|
|
1426
|
+
[enums/http-status.enums.ts:103](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L103)
|
|
1420
1427
|
|
|
1421
1428
|
</td>
|
|
1422
1429
|
</tr>
|
|
@@ -1433,7 +1440,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1433
1440
|
</td>
|
|
1434
1441
|
<td>
|
|
1435
1442
|
|
|
1436
|
-
[enums/http-status.enums.ts:90](https://github.com/hichchidev/hichchi/blob/
|
|
1443
|
+
[enums/http-status.enums.ts:90](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L90)
|
|
1437
1444
|
|
|
1438
1445
|
</td>
|
|
1439
1446
|
</tr>
|
|
@@ -1450,7 +1457,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1450
1457
|
</td>
|
|
1451
1458
|
<td>
|
|
1452
1459
|
|
|
1453
|
-
[enums/http-status.enums.ts:88](https://github.com/hichchidev/hichchi/blob/
|
|
1460
|
+
[enums/http-status.enums.ts:88](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L88)
|
|
1454
1461
|
|
|
1455
1462
|
</td>
|
|
1456
1463
|
</tr>
|
|
@@ -1467,7 +1474,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1467
1474
|
</td>
|
|
1468
1475
|
<td>
|
|
1469
1476
|
|
|
1470
|
-
[enums/http-status.enums.ts:97](https://github.com/hichchidev/hichchi/blob/
|
|
1477
|
+
[enums/http-status.enums.ts:97](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L97)
|
|
1471
1478
|
|
|
1472
1479
|
</td>
|
|
1473
1480
|
</tr>
|
|
@@ -1484,7 +1491,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1484
1491
|
</td>
|
|
1485
1492
|
<td>
|
|
1486
1493
|
|
|
1487
|
-
[enums/http-status.enums.ts:86](https://github.com/hichchidev/hichchi/blob/
|
|
1494
|
+
[enums/http-status.enums.ts:86](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L86)
|
|
1488
1495
|
|
|
1489
1496
|
</td>
|
|
1490
1497
|
</tr>
|
|
@@ -1501,7 +1508,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1501
1508
|
</td>
|
|
1502
1509
|
<td>
|
|
1503
1510
|
|
|
1504
|
-
[enums/http-status.enums.ts:96](https://github.com/hichchidev/hichchi/blob/
|
|
1511
|
+
[enums/http-status.enums.ts:96](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L96)
|
|
1505
1512
|
|
|
1506
1513
|
</td>
|
|
1507
1514
|
</tr>
|
|
@@ -1518,7 +1525,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1518
1525
|
</td>
|
|
1519
1526
|
<td>
|
|
1520
1527
|
|
|
1521
|
-
[enums/http-status.enums.ts:109](https://github.com/hichchidev/hichchi/blob/
|
|
1528
|
+
[enums/http-status.enums.ts:109](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L109)
|
|
1522
1529
|
|
|
1523
1530
|
</td>
|
|
1524
1531
|
</tr>
|
|
@@ -1535,7 +1542,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1535
1542
|
</td>
|
|
1536
1543
|
<td>
|
|
1537
1544
|
|
|
1538
|
-
[enums/http-status.enums.ts:91](https://github.com/hichchidev/hichchi/blob/
|
|
1545
|
+
[enums/http-status.enums.ts:91](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L91)
|
|
1539
1546
|
|
|
1540
1547
|
</td>
|
|
1541
1548
|
</tr>
|
|
@@ -1552,7 +1559,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1552
1559
|
</td>
|
|
1553
1560
|
<td>
|
|
1554
1561
|
|
|
1555
|
-
[enums/http-status.enums.ts:100](https://github.com/hichchidev/hichchi/blob/
|
|
1562
|
+
[enums/http-status.enums.ts:100](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L100)
|
|
1556
1563
|
|
|
1557
1564
|
</td>
|
|
1558
1565
|
</tr>
|
|
@@ -1569,7 +1576,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1569
1576
|
</td>
|
|
1570
1577
|
<td>
|
|
1571
1578
|
|
|
1572
|
-
[enums/http-status.enums.ts:111](https://github.com/hichchidev/hichchi/blob/
|
|
1579
|
+
[enums/http-status.enums.ts:111](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L111)
|
|
1573
1580
|
|
|
1574
1581
|
</td>
|
|
1575
1582
|
</tr>
|
|
@@ -1586,7 +1593,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1586
1593
|
</td>
|
|
1587
1594
|
<td>
|
|
1588
1595
|
|
|
1589
|
-
[enums/http-status.enums.ts:92](https://github.com/hichchidev/hichchi/blob/
|
|
1596
|
+
[enums/http-status.enums.ts:92](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L92)
|
|
1590
1597
|
|
|
1591
1598
|
</td>
|
|
1592
1599
|
</tr>
|
|
@@ -1603,7 +1610,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1603
1610
|
</td>
|
|
1604
1611
|
<td>
|
|
1605
1612
|
|
|
1606
|
-
[enums/http-status.enums.ts:107](https://github.com/hichchidev/hichchi/blob/
|
|
1613
|
+
[enums/http-status.enums.ts:107](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L107)
|
|
1607
1614
|
|
|
1608
1615
|
</td>
|
|
1609
1616
|
</tr>
|
|
@@ -1620,7 +1627,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1620
1627
|
</td>
|
|
1621
1628
|
<td>
|
|
1622
1629
|
|
|
1623
|
-
[enums/http-status.enums.ts:110](https://github.com/hichchidev/hichchi/blob/
|
|
1630
|
+
[enums/http-status.enums.ts:110](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L110)
|
|
1624
1631
|
|
|
1625
1632
|
</td>
|
|
1626
1633
|
</tr>
|
|
@@ -1637,7 +1644,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1637
1644
|
</td>
|
|
1638
1645
|
<td>
|
|
1639
1646
|
|
|
1640
|
-
[enums/http-status.enums.ts:85](https://github.com/hichchidev/hichchi/blob/
|
|
1647
|
+
[enums/http-status.enums.ts:85](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L85)
|
|
1641
1648
|
|
|
1642
1649
|
</td>
|
|
1643
1650
|
</tr>
|
|
@@ -1654,7 +1661,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1654
1661
|
</td>
|
|
1655
1662
|
<td>
|
|
1656
1663
|
|
|
1657
|
-
[enums/http-status.enums.ts:112](https://github.com/hichchidev/hichchi/blob/
|
|
1664
|
+
[enums/http-status.enums.ts:112](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L112)
|
|
1658
1665
|
|
|
1659
1666
|
</td>
|
|
1660
1667
|
</tr>
|
|
@@ -1671,7 +1678,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1671
1678
|
</td>
|
|
1672
1679
|
<td>
|
|
1673
1680
|
|
|
1674
|
-
[enums/http-status.enums.ts:104](https://github.com/hichchidev/hichchi/blob/
|
|
1681
|
+
[enums/http-status.enums.ts:104](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L104)
|
|
1675
1682
|
|
|
1676
1683
|
</td>
|
|
1677
1684
|
</tr>
|
|
@@ -1688,7 +1695,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1688
1695
|
</td>
|
|
1689
1696
|
<td>
|
|
1690
1697
|
|
|
1691
|
-
[enums/http-status.enums.ts:99](https://github.com/hichchidev/hichchi/blob/
|
|
1698
|
+
[enums/http-status.enums.ts:99](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L99)
|
|
1692
1699
|
|
|
1693
1700
|
</td>
|
|
1694
1701
|
</tr>
|
|
@@ -1705,7 +1712,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1705
1712
|
</td>
|
|
1706
1713
|
<td>
|
|
1707
1714
|
|
|
1708
|
-
[enums/http-status.enums.ts:108](https://github.com/hichchidev/hichchi/blob/
|
|
1715
|
+
[enums/http-status.enums.ts:108](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L108)
|
|
1709
1716
|
|
|
1710
1717
|
</td>
|
|
1711
1718
|
</tr>
|
|
@@ -1722,7 +1729,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1722
1729
|
</td>
|
|
1723
1730
|
<td>
|
|
1724
1731
|
|
|
1725
|
-
[enums/http-status.enums.ts:98](https://github.com/hichchidev/hichchi/blob/
|
|
1732
|
+
[enums/http-status.enums.ts:98](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L98)
|
|
1726
1733
|
|
|
1727
1734
|
</td>
|
|
1728
1735
|
</tr>
|
|
@@ -1733,7 +1740,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client\_error\_response
|
|
|
1733
1740
|
|
|
1734
1741
|
### HttpInfoStatus
|
|
1735
1742
|
|
|
1736
|
-
Defined in: [enums/http-status.enums.ts:15](https://github.com/hichchidev/hichchi/blob/
|
|
1743
|
+
Defined in: [enums/http-status.enums.ts:15](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L15)
|
|
1737
1744
|
|
|
1738
1745
|
HTTP Informational Status Codes (1xx)
|
|
1739
1746
|
|
|
@@ -1772,7 +1779,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1772
1779
|
</td>
|
|
1773
1780
|
<td>
|
|
1774
1781
|
|
|
1775
|
-
[enums/http-status.enums.ts:16](https://github.com/hichchidev/hichchi/blob/
|
|
1782
|
+
[enums/http-status.enums.ts:16](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L16)
|
|
1776
1783
|
|
|
1777
1784
|
</td>
|
|
1778
1785
|
</tr>
|
|
@@ -1789,7 +1796,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1789
1796
|
</td>
|
|
1790
1797
|
<td>
|
|
1791
1798
|
|
|
1792
|
-
[enums/http-status.enums.ts:19](https://github.com/hichchidev/hichchi/blob/
|
|
1799
|
+
[enums/http-status.enums.ts:19](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L19)
|
|
1793
1800
|
|
|
1794
1801
|
</td>
|
|
1795
1802
|
</tr>
|
|
@@ -1806,7 +1813,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1806
1813
|
</td>
|
|
1807
1814
|
<td>
|
|
1808
1815
|
|
|
1809
|
-
[enums/http-status.enums.ts:18](https://github.com/hichchidev/hichchi/blob/
|
|
1816
|
+
[enums/http-status.enums.ts:18](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L18)
|
|
1810
1817
|
|
|
1811
1818
|
</td>
|
|
1812
1819
|
</tr>
|
|
@@ -1823,7 +1830,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1823
1830
|
</td>
|
|
1824
1831
|
<td>
|
|
1825
1832
|
|
|
1826
|
-
[enums/http-status.enums.ts:17](https://github.com/hichchidev/hichchi/blob/
|
|
1833
|
+
[enums/http-status.enums.ts:17](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L17)
|
|
1827
1834
|
|
|
1828
1835
|
</td>
|
|
1829
1836
|
</tr>
|
|
@@ -1834,7 +1841,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#information\_responses
|
|
|
1834
1841
|
|
|
1835
1842
|
### HttpRedirectionStatus
|
|
1836
1843
|
|
|
1837
|
-
Defined in: [enums/http-status.enums.ts:60](https://github.com/hichchidev/hichchi/blob/
|
|
1844
|
+
Defined in: [enums/http-status.enums.ts:60](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L60)
|
|
1838
1845
|
|
|
1839
1846
|
HTTP Redirection Status Codes (3xx)
|
|
1840
1847
|
|
|
@@ -1873,7 +1880,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1873
1880
|
</td>
|
|
1874
1881
|
<td>
|
|
1875
1882
|
|
|
1876
|
-
[enums/http-status.enums.ts:63](https://github.com/hichchidev/hichchi/blob/
|
|
1883
|
+
[enums/http-status.enums.ts:63](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L63)
|
|
1877
1884
|
|
|
1878
1885
|
</td>
|
|
1879
1886
|
</tr>
|
|
@@ -1890,7 +1897,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1890
1897
|
</td>
|
|
1891
1898
|
<td>
|
|
1892
1899
|
|
|
1893
|
-
[enums/http-status.enums.ts:62](https://github.com/hichchidev/hichchi/blob/
|
|
1900
|
+
[enums/http-status.enums.ts:62](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L62)
|
|
1894
1901
|
|
|
1895
1902
|
</td>
|
|
1896
1903
|
</tr>
|
|
@@ -1907,7 +1914,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1907
1914
|
</td>
|
|
1908
1915
|
<td>
|
|
1909
1916
|
|
|
1910
|
-
[enums/http-status.enums.ts:61](https://github.com/hichchidev/hichchi/blob/
|
|
1917
|
+
[enums/http-status.enums.ts:61](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L61)
|
|
1911
1918
|
|
|
1912
1919
|
</td>
|
|
1913
1920
|
</tr>
|
|
@@ -1924,7 +1931,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1924
1931
|
</td>
|
|
1925
1932
|
<td>
|
|
1926
1933
|
|
|
1927
|
-
[enums/http-status.enums.ts:65](https://github.com/hichchidev/hichchi/blob/
|
|
1934
|
+
[enums/http-status.enums.ts:65](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L65)
|
|
1928
1935
|
|
|
1929
1936
|
</td>
|
|
1930
1937
|
</tr>
|
|
@@ -1941,7 +1948,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1941
1948
|
</td>
|
|
1942
1949
|
<td>
|
|
1943
1950
|
|
|
1944
|
-
[enums/http-status.enums.ts:68](https://github.com/hichchidev/hichchi/blob/
|
|
1951
|
+
[enums/http-status.enums.ts:68](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L68)
|
|
1945
1952
|
|
|
1946
1953
|
</td>
|
|
1947
1954
|
</tr>
|
|
@@ -1958,7 +1965,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1958
1965
|
</td>
|
|
1959
1966
|
<td>
|
|
1960
1967
|
|
|
1961
|
-
[enums/http-status.enums.ts:64](https://github.com/hichchidev/hichchi/blob/
|
|
1968
|
+
[enums/http-status.enums.ts:64](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L64)
|
|
1962
1969
|
|
|
1963
1970
|
</td>
|
|
1964
1971
|
</tr>
|
|
@@ -1975,7 +1982,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1975
1982
|
</td>
|
|
1976
1983
|
<td>
|
|
1977
1984
|
|
|
1978
|
-
[enums/http-status.enums.ts:67](https://github.com/hichchidev/hichchi/blob/
|
|
1985
|
+
[enums/http-status.enums.ts:67](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L67)
|
|
1979
1986
|
|
|
1980
1987
|
</td>
|
|
1981
1988
|
</tr>
|
|
@@ -1992,7 +1999,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
1992
1999
|
</td>
|
|
1993
2000
|
<td>
|
|
1994
2001
|
|
|
1995
|
-
[enums/http-status.enums.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2002
|
+
[enums/http-status.enums.ts:66](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L66)
|
|
1996
2003
|
|
|
1997
2004
|
</td>
|
|
1998
2005
|
</tr>
|
|
@@ -2003,7 +2010,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection\_messages
|
|
|
2003
2010
|
|
|
2004
2011
|
### HttpServerErrorStatus
|
|
2005
2012
|
|
|
2006
|
-
Defined in: [enums/http-status.enums.ts:128](https://github.com/hichchidev/hichchi/blob/
|
|
2013
|
+
Defined in: [enums/http-status.enums.ts:128](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L128)
|
|
2007
2014
|
|
|
2008
2015
|
HTTP Server Error Status Codes (5xx)
|
|
2009
2016
|
|
|
@@ -2043,7 +2050,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2043
2050
|
</td>
|
|
2044
2051
|
<td>
|
|
2045
2052
|
|
|
2046
|
-
[enums/http-status.enums.ts:131](https://github.com/hichchidev/hichchi/blob/
|
|
2053
|
+
[enums/http-status.enums.ts:131](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L131)
|
|
2047
2054
|
|
|
2048
2055
|
</td>
|
|
2049
2056
|
</tr>
|
|
@@ -2060,7 +2067,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2060
2067
|
</td>
|
|
2061
2068
|
<td>
|
|
2062
2069
|
|
|
2063
|
-
[enums/http-status.enums.ts:133](https://github.com/hichchidev/hichchi/blob/
|
|
2070
|
+
[enums/http-status.enums.ts:133](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L133)
|
|
2064
2071
|
|
|
2065
2072
|
</td>
|
|
2066
2073
|
</tr>
|
|
@@ -2077,7 +2084,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2077
2084
|
</td>
|
|
2078
2085
|
<td>
|
|
2079
2086
|
|
|
2080
|
-
[enums/http-status.enums.ts:134](https://github.com/hichchidev/hichchi/blob/
|
|
2087
|
+
[enums/http-status.enums.ts:134](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L134)
|
|
2081
2088
|
|
|
2082
2089
|
</td>
|
|
2083
2090
|
</tr>
|
|
@@ -2094,7 +2101,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2094
2101
|
</td>
|
|
2095
2102
|
<td>
|
|
2096
2103
|
|
|
2097
|
-
[enums/http-status.enums.ts:136](https://github.com/hichchidev/hichchi/blob/
|
|
2104
|
+
[enums/http-status.enums.ts:136](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L136)
|
|
2098
2105
|
|
|
2099
2106
|
</td>
|
|
2100
2107
|
</tr>
|
|
@@ -2111,7 +2118,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2111
2118
|
</td>
|
|
2112
2119
|
<td>
|
|
2113
2120
|
|
|
2114
|
-
[enums/http-status.enums.ts:129](https://github.com/hichchidev/hichchi/blob/
|
|
2121
|
+
[enums/http-status.enums.ts:129](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L129)
|
|
2115
2122
|
|
|
2116
2123
|
</td>
|
|
2117
2124
|
</tr>
|
|
@@ -2128,7 +2135,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2128
2135
|
</td>
|
|
2129
2136
|
<td>
|
|
2130
2137
|
|
|
2131
|
-
[enums/http-status.enums.ts:137](https://github.com/hichchidev/hichchi/blob/
|
|
2138
|
+
[enums/http-status.enums.ts:137](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L137)
|
|
2132
2139
|
|
|
2133
2140
|
</td>
|
|
2134
2141
|
</tr>
|
|
@@ -2145,7 +2152,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2145
2152
|
</td>
|
|
2146
2153
|
<td>
|
|
2147
2154
|
|
|
2148
|
-
[enums/http-status.enums.ts:139](https://github.com/hichchidev/hichchi/blob/
|
|
2155
|
+
[enums/http-status.enums.ts:139](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L139)
|
|
2149
2156
|
|
|
2150
2157
|
</td>
|
|
2151
2158
|
</tr>
|
|
@@ -2162,7 +2169,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2162
2169
|
</td>
|
|
2163
2170
|
<td>
|
|
2164
2171
|
|
|
2165
|
-
[enums/http-status.enums.ts:138](https://github.com/hichchidev/hichchi/blob/
|
|
2172
|
+
[enums/http-status.enums.ts:138](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L138)
|
|
2166
2173
|
|
|
2167
2174
|
</td>
|
|
2168
2175
|
</tr>
|
|
@@ -2179,7 +2186,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2179
2186
|
</td>
|
|
2180
2187
|
<td>
|
|
2181
2188
|
|
|
2182
|
-
[enums/http-status.enums.ts:130](https://github.com/hichchidev/hichchi/blob/
|
|
2189
|
+
[enums/http-status.enums.ts:130](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L130)
|
|
2183
2190
|
|
|
2184
2191
|
</td>
|
|
2185
2192
|
</tr>
|
|
@@ -2196,7 +2203,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2196
2203
|
</td>
|
|
2197
2204
|
<td>
|
|
2198
2205
|
|
|
2199
|
-
[enums/http-status.enums.ts:132](https://github.com/hichchidev/hichchi/blob/
|
|
2206
|
+
[enums/http-status.enums.ts:132](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L132)
|
|
2200
2207
|
|
|
2201
2208
|
</td>
|
|
2202
2209
|
</tr>
|
|
@@ -2213,7 +2220,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2213
2220
|
</td>
|
|
2214
2221
|
<td>
|
|
2215
2222
|
|
|
2216
|
-
[enums/http-status.enums.ts:135](https://github.com/hichchidev/hichchi/blob/
|
|
2223
|
+
[enums/http-status.enums.ts:135](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L135)
|
|
2217
2224
|
|
|
2218
2225
|
</td>
|
|
2219
2226
|
</tr>
|
|
@@ -2224,7 +2231,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server\_error\_response
|
|
|
2224
2231
|
|
|
2225
2232
|
### HttpSuccessStatus
|
|
2226
2233
|
|
|
2227
|
-
Defined in: [enums/http-status.enums.ts:35](https://github.com/hichchidev/hichchi/blob/
|
|
2234
|
+
Defined in: [enums/http-status.enums.ts:35](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L35)
|
|
2228
2235
|
|
|
2229
2236
|
HTTP Success Status Codes (2xx)
|
|
2230
2237
|
|
|
@@ -2264,7 +2271,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2264
2271
|
</td>
|
|
2265
2272
|
<td>
|
|
2266
2273
|
|
|
2267
|
-
[enums/http-status.enums.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
2274
|
+
[enums/http-status.enums.ts:38](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L38)
|
|
2268
2275
|
|
|
2269
2276
|
</td>
|
|
2270
2277
|
</tr>
|
|
@@ -2281,7 +2288,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2281
2288
|
</td>
|
|
2282
2289
|
<td>
|
|
2283
2290
|
|
|
2284
|
-
[enums/http-status.enums.ts:44](https://github.com/hichchidev/hichchi/blob/
|
|
2291
|
+
[enums/http-status.enums.ts:44](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L44)
|
|
2285
2292
|
|
|
2286
2293
|
</td>
|
|
2287
2294
|
</tr>
|
|
@@ -2298,7 +2305,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2298
2305
|
</td>
|
|
2299
2306
|
<td>
|
|
2300
2307
|
|
|
2301
|
-
[enums/http-status.enums.ts:45](https://github.com/hichchidev/hichchi/blob/
|
|
2308
|
+
[enums/http-status.enums.ts:45](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L45)
|
|
2302
2309
|
|
|
2303
2310
|
</td>
|
|
2304
2311
|
</tr>
|
|
@@ -2315,7 +2322,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2315
2322
|
</td>
|
|
2316
2323
|
<td>
|
|
2317
2324
|
|
|
2318
|
-
[enums/http-status.enums.ts:37](https://github.com/hichchidev/hichchi/blob/
|
|
2325
|
+
[enums/http-status.enums.ts:37](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L37)
|
|
2319
2326
|
|
|
2320
2327
|
</td>
|
|
2321
2328
|
</tr>
|
|
@@ -2332,7 +2339,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2332
2339
|
</td>
|
|
2333
2340
|
<td>
|
|
2334
2341
|
|
|
2335
|
-
[enums/http-status.enums.ts:43](https://github.com/hichchidev/hichchi/blob/
|
|
2342
|
+
[enums/http-status.enums.ts:43](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L43)
|
|
2336
2343
|
|
|
2337
2344
|
</td>
|
|
2338
2345
|
</tr>
|
|
@@ -2349,7 +2356,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2349
2356
|
</td>
|
|
2350
2357
|
<td>
|
|
2351
2358
|
|
|
2352
|
-
[enums/http-status.enums.ts:40](https://github.com/hichchidev/hichchi/blob/
|
|
2359
|
+
[enums/http-status.enums.ts:40](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L40)
|
|
2353
2360
|
|
|
2354
2361
|
</td>
|
|
2355
2362
|
</tr>
|
|
@@ -2366,7 +2373,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2366
2373
|
</td>
|
|
2367
2374
|
<td>
|
|
2368
2375
|
|
|
2369
|
-
[enums/http-status.enums.ts:39](https://github.com/hichchidev/hichchi/blob/
|
|
2376
|
+
[enums/http-status.enums.ts:39](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L39)
|
|
2370
2377
|
|
|
2371
2378
|
</td>
|
|
2372
2379
|
</tr>
|
|
@@ -2383,7 +2390,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2383
2390
|
</td>
|
|
2384
2391
|
<td>
|
|
2385
2392
|
|
|
2386
|
-
[enums/http-status.enums.ts:36](https://github.com/hichchidev/hichchi/blob/
|
|
2393
|
+
[enums/http-status.enums.ts:36](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L36)
|
|
2387
2394
|
|
|
2388
2395
|
</td>
|
|
2389
2396
|
</tr>
|
|
@@ -2400,7 +2407,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2400
2407
|
</td>
|
|
2401
2408
|
<td>
|
|
2402
2409
|
|
|
2403
|
-
[enums/http-status.enums.ts:42](https://github.com/hichchidev/hichchi/blob/
|
|
2410
|
+
[enums/http-status.enums.ts:42](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L42)
|
|
2404
2411
|
|
|
2405
2412
|
</td>
|
|
2406
2413
|
</tr>
|
|
@@ -2417,7 +2424,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2417
2424
|
</td>
|
|
2418
2425
|
<td>
|
|
2419
2426
|
|
|
2420
|
-
[enums/http-status.enums.ts:41](https://github.com/hichchidev/hichchi/blob/
|
|
2427
|
+
[enums/http-status.enums.ts:41](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/enums/http-status.enums.ts#L41)
|
|
2421
2428
|
|
|
2422
2429
|
</td>
|
|
2423
2430
|
</tr>
|
|
@@ -2428,7 +2435,7 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#successful\_responses
|
|
|
2428
2435
|
|
|
2429
2436
|
### ErrorResponse
|
|
2430
2437
|
|
|
2431
|
-
Defined in: [interfaces/response.interfaces.ts:126](https://github.com/hichchidev/hichchi/blob/
|
|
2438
|
+
Defined in: [interfaces/response.interfaces.ts:126](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L126)
|
|
2432
2439
|
|
|
2433
2440
|
Interface for error API responses that include error details.
|
|
2434
2441
|
|
|
@@ -2501,7 +2508,7 @@ allowing clients to handle different error scenarios distinctly.
|
|
|
2501
2508
|
</td>
|
|
2502
2509
|
<td>
|
|
2503
2510
|
|
|
2504
|
-
[interfaces/response.interfaces.ts:147](https://github.com/hichchidev/hichchi/blob/
|
|
2511
|
+
[interfaces/response.interfaces.ts:147](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L147)
|
|
2505
2512
|
|
|
2506
2513
|
</td>
|
|
2507
2514
|
</tr>
|
|
@@ -2538,7 +2545,7 @@ rather than end users.
|
|
|
2538
2545
|
</td>
|
|
2539
2546
|
<td>
|
|
2540
2547
|
|
|
2541
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2548
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2542
2549
|
|
|
2543
2550
|
</td>
|
|
2544
2551
|
</tr>
|
|
@@ -2574,7 +2581,7 @@ technical details that aren't relevant to users.
|
|
|
2574
2581
|
</td>
|
|
2575
2582
|
<td>
|
|
2576
2583
|
|
|
2577
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2584
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2578
2585
|
|
|
2579
2586
|
</td>
|
|
2580
2587
|
</tr>
|
|
@@ -2616,7 +2623,7 @@ For error responses, this will typically be:
|
|
|
2616
2623
|
</td>
|
|
2617
2624
|
<td>
|
|
2618
2625
|
|
|
2619
|
-
[interfaces/response.interfaces.ts:137](https://github.com/hichchidev/hichchi/blob/
|
|
2626
|
+
[interfaces/response.interfaces.ts:137](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L137)
|
|
2620
2627
|
|
|
2621
2628
|
</td>
|
|
2622
2629
|
</tr>
|
|
@@ -2627,7 +2634,7 @@ For error responses, this will typically be:
|
|
|
2627
2634
|
|
|
2628
2635
|
### HttpResponse
|
|
2629
2636
|
|
|
2630
|
-
Defined in: [interfaces/response.interfaces.ts:21](https://github.com/hichchidev/hichchi/blob/
|
|
2637
|
+
Defined in: [interfaces/response.interfaces.ts:21](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L21)
|
|
2631
2638
|
|
|
2632
2639
|
Base interface for all HTTP responses in the application.
|
|
2633
2640
|
|
|
@@ -2692,7 +2699,7 @@ for fine-grained categorization of responses within each HTTP status category.
|
|
|
2692
2699
|
</td>
|
|
2693
2700
|
<td>
|
|
2694
2701
|
|
|
2695
|
-
[interfaces/response.interfaces.ts:47](https://github.com/hichchidev/hichchi/blob/
|
|
2702
|
+
[interfaces/response.interfaces.ts:47](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L47)
|
|
2696
2703
|
|
|
2697
2704
|
</td>
|
|
2698
2705
|
</tr>
|
|
@@ -2719,7 +2726,7 @@ rather than end users.
|
|
|
2719
2726
|
</td>
|
|
2720
2727
|
<td>
|
|
2721
2728
|
|
|
2722
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2729
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2723
2730
|
|
|
2724
2731
|
</td>
|
|
2725
2732
|
</tr>
|
|
@@ -2745,7 +2752,7 @@ technical details that aren't relevant to users.
|
|
|
2745
2752
|
</td>
|
|
2746
2753
|
<td>
|
|
2747
2754
|
|
|
2748
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2755
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2749
2756
|
|
|
2750
2757
|
</td>
|
|
2751
2758
|
</tr>
|
|
@@ -2778,7 +2785,7 @@ of the response (success, client error, server error).
|
|
|
2778
2785
|
</td>
|
|
2779
2786
|
<td>
|
|
2780
2787
|
|
|
2781
|
-
[interfaces/response.interfaces.ts:34](https://github.com/hichchidev/hichchi/blob/
|
|
2788
|
+
[interfaces/response.interfaces.ts:34](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L34)
|
|
2782
2789
|
|
|
2783
2790
|
</td>
|
|
2784
2791
|
</tr>
|
|
@@ -2789,7 +2796,7 @@ of the response (success, client error, server error).
|
|
|
2789
2796
|
|
|
2790
2797
|
### SuccessResponse
|
|
2791
2798
|
|
|
2792
|
-
Defined in: [interfaces/response.interfaces.ts:84](https://github.com/hichchidev/hichchi/blob/
|
|
2799
|
+
Defined in: [interfaces/response.interfaces.ts:84](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L84)
|
|
2793
2800
|
|
|
2794
2801
|
Interface for successful API responses that include data payload.
|
|
2795
2802
|
|
|
@@ -2859,7 +2866,7 @@ allowing clients to handle different success scenarios distinctly if needed.
|
|
|
2859
2866
|
</td>
|
|
2860
2867
|
<td>
|
|
2861
2868
|
|
|
2862
|
-
[interfaces/response.interfaces.ts:105](https://github.com/hichchidev/hichchi/blob/
|
|
2869
|
+
[interfaces/response.interfaces.ts:105](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L105)
|
|
2863
2870
|
|
|
2864
2871
|
</td>
|
|
2865
2872
|
</tr>
|
|
@@ -2896,7 +2903,7 @@ rather than end users.
|
|
|
2896
2903
|
</td>
|
|
2897
2904
|
<td>
|
|
2898
2905
|
|
|
2899
|
-
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/
|
|
2906
|
+
[interfaces/response.interfaces.ts:66](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L66)
|
|
2900
2907
|
|
|
2901
2908
|
</td>
|
|
2902
2909
|
</tr>
|
|
@@ -2932,7 +2939,7 @@ technical details that aren't relevant to users.
|
|
|
2932
2939
|
</td>
|
|
2933
2940
|
<td>
|
|
2934
2941
|
|
|
2935
|
-
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/
|
|
2942
|
+
[interfaces/response.interfaces.ts:56](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L56)
|
|
2936
2943
|
|
|
2937
2944
|
</td>
|
|
2938
2945
|
</tr>
|
|
@@ -2974,7 +2981,7 @@ For successful responses, this will typically be:
|
|
|
2974
2981
|
</td>
|
|
2975
2982
|
<td>
|
|
2976
2983
|
|
|
2977
|
-
[interfaces/response.interfaces.ts:95](https://github.com/hichchidev/hichchi/blob/
|
|
2984
|
+
[interfaces/response.interfaces.ts:95](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/response.interfaces.ts#L95)
|
|
2978
2985
|
|
|
2979
2986
|
</td>
|
|
2980
2987
|
</tr>
|
|
@@ -2985,7 +2992,7 @@ For successful responses, this will typically be:
|
|
|
2985
2992
|
|
|
2986
2993
|
### UserInfo
|
|
2987
2994
|
|
|
2988
|
-
Defined in: [interfaces/user-info.interface.ts:
|
|
2995
|
+
Defined in: [interfaces/user-info.interface.ts:38](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L38)
|
|
2989
2996
|
|
|
2990
2997
|
Interface representing essential user information.
|
|
2991
2998
|
|
|
@@ -3055,7 +3062,7 @@ Used for personalization and formal addressing throughout the application.
|
|
|
3055
3062
|
</td>
|
|
3056
3063
|
<td>
|
|
3057
3064
|
|
|
3058
|
-
[interfaces/user-info.interface.ts:
|
|
3065
|
+
[interfaces/user-info.interface.ts:52](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L52)
|
|
3059
3066
|
|
|
3060
3067
|
</td>
|
|
3061
3068
|
</tr>
|
|
@@ -3081,7 +3088,7 @@ format may vary based on locale and application requirements.
|
|
|
3081
3088
|
</td>
|
|
3082
3089
|
<td>
|
|
3083
3090
|
|
|
3084
|
-
[interfaces/user-info.interface.ts:
|
|
3091
|
+
[interfaces/user-info.interface.ts:68](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L68)
|
|
3085
3092
|
|
|
3086
3093
|
</td>
|
|
3087
3094
|
</tr>
|
|
@@ -3106,7 +3113,7 @@ and uniquely identifies the user across the entire system.
|
|
|
3106
3113
|
</td>
|
|
3107
3114
|
<td>
|
|
3108
3115
|
|
|
3109
|
-
[interfaces/user-info.interface.ts:
|
|
3116
|
+
[interfaces/user-info.interface.ts:45](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L45)
|
|
3110
3117
|
|
|
3111
3118
|
</td>
|
|
3112
3119
|
</tr>
|
|
@@ -3130,35 +3137,7 @@ Used alongside the first name for formal addressing and identification.
|
|
|
3130
3137
|
</td>
|
|
3131
3138
|
<td>
|
|
3132
3139
|
|
|
3133
|
-
[interfaces/user-info.interface.ts:
|
|
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/749f9c434693b8495a3c3d593a69d77fd1189dac/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L57)
|
|
3140
|
+
[interfaces/user-info.interface.ts:59](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/interfaces/user-info.interface.ts#L59)
|
|
3162
3141
|
|
|
3163
3142
|
</td>
|
|
3164
3143
|
</tr>
|
|
@@ -3173,7 +3152,7 @@ This variable is often used to scope application logic and data to a specific te
|
|
|
3173
3152
|
type ErrorResponseCode = LooseAutocomplete<AuthErrorResponseCode>;
|
|
3174
3153
|
```
|
|
3175
3154
|
|
|
3176
|
-
Defined in: [types/response-code.ts:62](https://github.com/hichchidev/hichchi/blob/
|
|
3155
|
+
Defined in: [types/response-code.ts:62](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/response-code.ts#L62)
|
|
3177
3156
|
|
|
3178
3157
|
Represents all possible error response codes used throughout the application.
|
|
3179
3158
|
|
|
@@ -3198,7 +3177,7 @@ error codes are used when constructing error responses.
|
|
|
3198
3177
|
type FileId = string & object;
|
|
3199
3178
|
```
|
|
3200
3179
|
|
|
3201
|
-
Defined in: [types/types.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
3180
|
+
Defined in: [types/types.ts:38](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L38)
|
|
3202
3181
|
|
|
3203
3182
|
Represents a strongly-typed unique identifier for a file.
|
|
3204
3183
|
|
|
@@ -3234,7 +3213,7 @@ unique `symbol`
|
|
|
3234
3213
|
</td>
|
|
3235
3214
|
<td>
|
|
3236
3215
|
|
|
3237
|
-
[types/types.ts:38](https://github.com/hichchidev/hichchi/blob/
|
|
3216
|
+
[types/types.ts:38](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L38)
|
|
3238
3217
|
|
|
3239
3218
|
</td>
|
|
3240
3219
|
</tr>
|
|
@@ -3273,7 +3252,7 @@ type HttpStatus =
|
|
|
3273
3252
|
| HttpServerErrorStatus;
|
|
3274
3253
|
```
|
|
3275
3254
|
|
|
3276
|
-
Defined in: [types/types.ts:96](https://github.com/hichchidev/hichchi/blob/
|
|
3255
|
+
Defined in: [types/types.ts:96](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L96)
|
|
3277
3256
|
|
|
3278
3257
|
Comprehensive HTTP status code type.
|
|
3279
3258
|
|
|
@@ -3303,7 +3282,7 @@ type ResponseCode = LooseAutocomplete<
|
|
|
3303
3282
|
>;
|
|
3304
3283
|
```
|
|
3305
3284
|
|
|
3306
|
-
Defined in: [types/response-code.ts:23](https://github.com/hichchidev/hichchi/blob/
|
|
3285
|
+
Defined in: [types/response-code.ts:23](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/response-code.ts#L23)
|
|
3307
3286
|
|
|
3308
3287
|
Represents all possible response codes used throughout the application.
|
|
3309
3288
|
|
|
@@ -3330,7 +3309,7 @@ codes that may be added in the future).
|
|
|
3330
3309
|
type SocketId = string & object;
|
|
3331
3310
|
```
|
|
3332
3311
|
|
|
3333
|
-
Defined in: [types/types.ts:77](https://github.com/hichchidev/hichchi/blob/
|
|
3312
|
+
Defined in: [types/types.ts:77](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L77)
|
|
3334
3313
|
|
|
3335
3314
|
Represents a strongly-typed socket identifier for WebSocket connections.
|
|
3336
3315
|
|
|
@@ -3365,7 +3344,7 @@ unique `symbol`
|
|
|
3365
3344
|
</td>
|
|
3366
3345
|
<td>
|
|
3367
3346
|
|
|
3368
|
-
[types/types.ts:77](https://github.com/hichchidev/hichchi/blob/
|
|
3347
|
+
[types/types.ts:77](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L77)
|
|
3369
3348
|
|
|
3370
3349
|
</td>
|
|
3371
3350
|
</tr>
|
|
@@ -3400,7 +3379,7 @@ type SuccessResponseCode = LooseAutocomplete<
|
|
|
3400
3379
|
>;
|
|
3401
3380
|
```
|
|
3402
3381
|
|
|
3403
|
-
Defined in: [types/response-code.ts:44](https://github.com/hichchidev/hichchi/blob/
|
|
3382
|
+
Defined in: [types/response-code.ts:44](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/response-code.ts#L44)
|
|
3404
3383
|
|
|
3405
3384
|
Represents all possible success response codes used throughout the application.
|
|
3406
3385
|
|
|
@@ -3426,7 +3405,7 @@ success codes are used when constructing responses.
|
|
|
3426
3405
|
type WsRefId = (string & object) | "system";
|
|
3427
3406
|
```
|
|
3428
3407
|
|
|
3429
|
-
Defined in: [types/types.ts:48](https://github.com/hichchidev/hichchi/blob/
|
|
3408
|
+
Defined in: [types/types.ts:48](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/types/types.ts#L48)
|
|
3430
3409
|
|
|
3431
3410
|
Represents a type alias `WsRefId` which is either a branded string or the literal string "system".
|
|
3432
3411
|
|
|
@@ -3443,7 +3422,7 @@ The literal string `"system"` is included as an alternative value.
|
|
|
3443
3422
|
const DAY_IN_HOURS: 24 = 24;
|
|
3444
3423
|
```
|
|
3445
3424
|
|
|
3446
|
-
Defined in: [constants.ts:6](https://github.com/hichchidev/hichchi/blob/
|
|
3425
|
+
Defined in: [constants.ts:6](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L6)
|
|
3447
3426
|
|
|
3448
3427
|
---
|
|
3449
3428
|
|
|
@@ -3453,7 +3432,7 @@ Defined in: [constants.ts:6](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3453
3432
|
const DAY_IN_SECONDS: number;
|
|
3454
3433
|
```
|
|
3455
3434
|
|
|
3456
|
-
Defined in: [constants.ts:7](https://github.com/hichchidev/hichchi/blob/
|
|
3435
|
+
Defined in: [constants.ts:7](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L7)
|
|
3457
3436
|
|
|
3458
3437
|
---
|
|
3459
3438
|
|
|
@@ -3463,7 +3442,7 @@ Defined in: [constants.ts:7](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3463
3442
|
const DEFAULT_ITEMS_PER_PAGE: 10 = 10;
|
|
3464
3443
|
```
|
|
3465
3444
|
|
|
3466
|
-
Defined in: [constants.ts:21](https://github.com/hichchidev/hichchi/blob/
|
|
3445
|
+
Defined in: [constants.ts:21](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L21)
|
|
3467
3446
|
|
|
3468
3447
|
---
|
|
3469
3448
|
|
|
@@ -3473,7 +3452,7 @@ Defined in: [constants.ts:21](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3473
3452
|
const DEFAULT_MYSQL_PORT: 3306 = 3306;
|
|
3474
3453
|
```
|
|
3475
3454
|
|
|
3476
|
-
Defined in: [constants.ts:19](https://github.com/hichchidev/hichchi/blob/
|
|
3455
|
+
Defined in: [constants.ts:19](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L19)
|
|
3477
3456
|
|
|
3478
3457
|
---
|
|
3479
3458
|
|
|
@@ -3483,7 +3462,7 @@ Defined in: [constants.ts:19](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3483
3462
|
const DEFAULT_REDIS_PORT: 6379 = 6379;
|
|
3484
3463
|
```
|
|
3485
3464
|
|
|
3486
|
-
Defined in: [constants.ts:17](https://github.com/hichchidev/hichchi/blob/
|
|
3465
|
+
Defined in: [constants.ts:17](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L17)
|
|
3487
3466
|
|
|
3488
3467
|
---
|
|
3489
3468
|
|
|
@@ -3493,7 +3472,7 @@ Defined in: [constants.ts:17](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3493
3472
|
const DEFAULT_SALT_ROUNDS: 10 = 10;
|
|
3494
3473
|
```
|
|
3495
3474
|
|
|
3496
|
-
Defined in: [constants.ts:13](https://github.com/hichchidev/hichchi/blob/
|
|
3475
|
+
Defined in: [constants.ts:13](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L13)
|
|
3497
3476
|
|
|
3498
3477
|
---
|
|
3499
3478
|
|
|
@@ -3503,7 +3482,7 @@ Defined in: [constants.ts:13](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3503
3482
|
const DEFAULT_UUID_VERSION: 4 = 4;
|
|
3504
3483
|
```
|
|
3505
3484
|
|
|
3506
|
-
Defined in: [constants.ts:15](https://github.com/hichchidev/hichchi/blob/
|
|
3485
|
+
Defined in: [constants.ts:15](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L15)
|
|
3507
3486
|
|
|
3508
3487
|
---
|
|
3509
3488
|
|
|
@@ -3513,7 +3492,7 @@ Defined in: [constants.ts:15](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3513
3492
|
const DEFAULT_VERIFY_TOKEN_LENGTH: 16 = 16;
|
|
3514
3493
|
```
|
|
3515
3494
|
|
|
3516
|
-
Defined in: [constants.ts:11](https://github.com/hichchidev/hichchi/blob/
|
|
3495
|
+
Defined in: [constants.ts:11](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L11)
|
|
3517
3496
|
|
|
3518
3497
|
---
|
|
3519
3498
|
|
|
@@ -3523,7 +3502,7 @@ Defined in: [constants.ts:11](https://github.com/hichchidev/hichchi/blob/749f9c4
|
|
|
3523
3502
|
const Errors: { [key in CommonErrorResponseCode]: ErrorResponse };
|
|
3524
3503
|
```
|
|
3525
3504
|
|
|
3526
|
-
Defined in: [responses/error.responses.ts:71](https://github.com/hichchidev/hichchi/blob/
|
|
3505
|
+
Defined in: [responses/error.responses.ts:71](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/responses/error.responses.ts#L71)
|
|
3527
3506
|
|
|
3528
3507
|
Collection of standardized common error responses
|
|
3529
3508
|
|
|
@@ -3600,7 +3579,7 @@ export class NotFoundExceptionFilter implements ExceptionFilter {
|
|
|
3600
3579
|
const HOUR_IN_MINUTES: 60 = 60;
|
|
3601
3580
|
```
|
|
3602
3581
|
|
|
3603
|
-
Defined in: [constants.ts:5](https://github.com/hichchidev/hichchi/blob/
|
|
3582
|
+
Defined in: [constants.ts:5](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L5)
|
|
3604
3583
|
|
|
3605
3584
|
---
|
|
3606
3585
|
|
|
@@ -3610,7 +3589,7 @@ Defined in: [constants.ts:5](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3610
3589
|
const MINUTE_IN_SECONDS: 60 = 60;
|
|
3611
3590
|
```
|
|
3612
3591
|
|
|
3613
|
-
Defined in: [constants.ts:4](https://github.com/hichchidev/hichchi/blob/
|
|
3592
|
+
Defined in: [constants.ts:4](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L4)
|
|
3614
3593
|
|
|
3615
3594
|
---
|
|
3616
3595
|
|
|
@@ -3620,7 +3599,7 @@ Defined in: [constants.ts:4](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3620
3599
|
const MONTH_IN_DAYS: 30 = 30;
|
|
3621
3600
|
```
|
|
3622
3601
|
|
|
3623
|
-
Defined in: [constants.ts:8](https://github.com/hichchidev/hichchi/blob/
|
|
3602
|
+
Defined in: [constants.ts:8](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L8)
|
|
3624
3603
|
|
|
3625
3604
|
---
|
|
3626
3605
|
|
|
@@ -3630,7 +3609,7 @@ Defined in: [constants.ts:8](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3630
3609
|
const MONTH_IN_SECONDS: number;
|
|
3631
3610
|
```
|
|
3632
3611
|
|
|
3633
|
-
Defined in: [constants.ts:9](https://github.com/hichchidev/hichchi/blob/
|
|
3612
|
+
Defined in: [constants.ts:9](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L9)
|
|
3634
3613
|
|
|
3635
3614
|
---
|
|
3636
3615
|
|
|
@@ -3640,7 +3619,7 @@ Defined in: [constants.ts:9](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3640
3619
|
const SECOND_IN_MS: 1000 = 1000;
|
|
3641
3620
|
```
|
|
3642
3621
|
|
|
3643
|
-
Defined in: [constants.ts:3](https://github.com/hichchidev/hichchi/blob/
|
|
3622
|
+
Defined in: [constants.ts:3](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/constants.ts#L3)
|
|
3644
3623
|
|
|
3645
3624
|
---
|
|
3646
3625
|
|
|
@@ -3650,7 +3629,7 @@ Defined in: [constants.ts:3](https://github.com/hichchidev/hichchi/blob/749f9c43
|
|
|
3650
3629
|
const SuccessResponses: { [key in CommonSuccessResponseCode]: SuccessResponse };
|
|
3651
3630
|
```
|
|
3652
3631
|
|
|
3653
|
-
Defined in: [responses/success.responses.ts:59](https://github.com/hichchidev/hichchi/blob/
|
|
3632
|
+
Defined in: [responses/success.responses.ts:59](https://github.com/hichchidev/hichchi/blob/0b9a2445c124fc8574826bbe19e8d3e57d724a38/libs/nest-connector/src/common/responses/success.responses.ts#L59)
|
|
3654
3633
|
|
|
3655
3634
|
Collection of standardized common success responses
|
|
3656
3635
|
|