@dakkitor/api-contracts 1.1.31 → 1.1.33

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.
@@ -795,6 +795,272 @@ export declare const usersContract: {
795
795
  }>, "many">;
796
796
  };
797
797
  };
798
+ autocompleteFirstAgent: {
799
+ metadata: {
800
+ tags: string[];
801
+ };
802
+ query: z.ZodObject<{
803
+ query: z.ZodOptional<z.ZodString>;
804
+ id: z.ZodOptional<z.ZodString>;
805
+ }, "strip", z.ZodTypeAny, {
806
+ id?: string | undefined;
807
+ query?: string | undefined;
808
+ }, {
809
+ id?: string | undefined;
810
+ query?: string | undefined;
811
+ }>;
812
+ summary: "Get users with FIRST_AGENT role for autocomplete";
813
+ method: "GET";
814
+ path: "/v2/users/autocomplete/first-agent";
815
+ responses: {
816
+ 400: z.ZodObject<{
817
+ statusCode: z.ZodNumber;
818
+ message: z.ZodString;
819
+ code: z.ZodString;
820
+ details: z.ZodOptional<z.ZodUnknown>;
821
+ timestamp: z.ZodString;
822
+ path: z.ZodString;
823
+ correlationId: z.ZodOptional<z.ZodString>;
824
+ }, "strip", z.ZodTypeAny, {
825
+ code: string;
826
+ path: string;
827
+ message: string;
828
+ statusCode: number;
829
+ timestamp: string;
830
+ details?: unknown;
831
+ correlationId?: string | undefined;
832
+ }, {
833
+ code: string;
834
+ path: string;
835
+ message: string;
836
+ statusCode: number;
837
+ timestamp: string;
838
+ details?: unknown;
839
+ correlationId?: string | undefined;
840
+ }>;
841
+ 401: z.ZodObject<{
842
+ statusCode: z.ZodNumber;
843
+ message: z.ZodString;
844
+ code: z.ZodString;
845
+ details: z.ZodOptional<z.ZodUnknown>;
846
+ timestamp: z.ZodString;
847
+ path: z.ZodString;
848
+ correlationId: z.ZodOptional<z.ZodString>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ code: string;
851
+ path: string;
852
+ message: string;
853
+ statusCode: number;
854
+ timestamp: string;
855
+ details?: unknown;
856
+ correlationId?: string | undefined;
857
+ }, {
858
+ code: string;
859
+ path: string;
860
+ message: string;
861
+ statusCode: number;
862
+ timestamp: string;
863
+ details?: unknown;
864
+ correlationId?: string | undefined;
865
+ }>;
866
+ 403: z.ZodObject<{
867
+ statusCode: z.ZodNumber;
868
+ message: z.ZodString;
869
+ code: z.ZodString;
870
+ details: z.ZodOptional<z.ZodUnknown>;
871
+ timestamp: z.ZodString;
872
+ path: z.ZodString;
873
+ correlationId: z.ZodOptional<z.ZodString>;
874
+ }, "strip", z.ZodTypeAny, {
875
+ code: string;
876
+ path: string;
877
+ message: string;
878
+ statusCode: number;
879
+ timestamp: string;
880
+ details?: unknown;
881
+ correlationId?: string | undefined;
882
+ }, {
883
+ code: string;
884
+ path: string;
885
+ message: string;
886
+ statusCode: number;
887
+ timestamp: string;
888
+ details?: unknown;
889
+ correlationId?: string | undefined;
890
+ }>;
891
+ 500: z.ZodObject<{
892
+ statusCode: z.ZodNumber;
893
+ message: z.ZodString;
894
+ code: z.ZodString;
895
+ details: z.ZodOptional<z.ZodUnknown>;
896
+ timestamp: z.ZodString;
897
+ path: z.ZodString;
898
+ correlationId: z.ZodOptional<z.ZodString>;
899
+ }, "strip", z.ZodTypeAny, {
900
+ code: string;
901
+ path: string;
902
+ message: string;
903
+ statusCode: number;
904
+ timestamp: string;
905
+ details?: unknown;
906
+ correlationId?: string | undefined;
907
+ }, {
908
+ code: string;
909
+ path: string;
910
+ message: string;
911
+ statusCode: number;
912
+ timestamp: string;
913
+ details?: unknown;
914
+ correlationId?: string | undefined;
915
+ }>;
916
+ 200: z.ZodArray<z.ZodObject<{
917
+ id: z.ZodString;
918
+ firstName: z.ZodString;
919
+ lastName: z.ZodString;
920
+ }, "strip", z.ZodTypeAny, {
921
+ lastName: string;
922
+ firstName: string;
923
+ id: string;
924
+ }, {
925
+ lastName: string;
926
+ firstName: string;
927
+ id: string;
928
+ }>, "many">;
929
+ };
930
+ };
931
+ autocompleteSecondAgent: {
932
+ metadata: {
933
+ tags: string[];
934
+ };
935
+ query: z.ZodObject<{
936
+ query: z.ZodOptional<z.ZodString>;
937
+ id: z.ZodOptional<z.ZodString>;
938
+ }, "strip", z.ZodTypeAny, {
939
+ id?: string | undefined;
940
+ query?: string | undefined;
941
+ }, {
942
+ id?: string | undefined;
943
+ query?: string | undefined;
944
+ }>;
945
+ summary: "Get users with SECOND_AGENT role for autocomplete";
946
+ method: "GET";
947
+ path: "/v2/users/autocomplete/second-agent";
948
+ responses: {
949
+ 400: z.ZodObject<{
950
+ statusCode: z.ZodNumber;
951
+ message: z.ZodString;
952
+ code: z.ZodString;
953
+ details: z.ZodOptional<z.ZodUnknown>;
954
+ timestamp: z.ZodString;
955
+ path: z.ZodString;
956
+ correlationId: z.ZodOptional<z.ZodString>;
957
+ }, "strip", z.ZodTypeAny, {
958
+ code: string;
959
+ path: string;
960
+ message: string;
961
+ statusCode: number;
962
+ timestamp: string;
963
+ details?: unknown;
964
+ correlationId?: string | undefined;
965
+ }, {
966
+ code: string;
967
+ path: string;
968
+ message: string;
969
+ statusCode: number;
970
+ timestamp: string;
971
+ details?: unknown;
972
+ correlationId?: string | undefined;
973
+ }>;
974
+ 401: z.ZodObject<{
975
+ statusCode: z.ZodNumber;
976
+ message: z.ZodString;
977
+ code: z.ZodString;
978
+ details: z.ZodOptional<z.ZodUnknown>;
979
+ timestamp: z.ZodString;
980
+ path: z.ZodString;
981
+ correlationId: z.ZodOptional<z.ZodString>;
982
+ }, "strip", z.ZodTypeAny, {
983
+ code: string;
984
+ path: string;
985
+ message: string;
986
+ statusCode: number;
987
+ timestamp: string;
988
+ details?: unknown;
989
+ correlationId?: string | undefined;
990
+ }, {
991
+ code: string;
992
+ path: string;
993
+ message: string;
994
+ statusCode: number;
995
+ timestamp: string;
996
+ details?: unknown;
997
+ correlationId?: string | undefined;
998
+ }>;
999
+ 403: z.ZodObject<{
1000
+ statusCode: z.ZodNumber;
1001
+ message: z.ZodString;
1002
+ code: z.ZodString;
1003
+ details: z.ZodOptional<z.ZodUnknown>;
1004
+ timestamp: z.ZodString;
1005
+ path: z.ZodString;
1006
+ correlationId: z.ZodOptional<z.ZodString>;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ code: string;
1009
+ path: string;
1010
+ message: string;
1011
+ statusCode: number;
1012
+ timestamp: string;
1013
+ details?: unknown;
1014
+ correlationId?: string | undefined;
1015
+ }, {
1016
+ code: string;
1017
+ path: string;
1018
+ message: string;
1019
+ statusCode: number;
1020
+ timestamp: string;
1021
+ details?: unknown;
1022
+ correlationId?: string | undefined;
1023
+ }>;
1024
+ 500: z.ZodObject<{
1025
+ statusCode: z.ZodNumber;
1026
+ message: z.ZodString;
1027
+ code: z.ZodString;
1028
+ details: z.ZodOptional<z.ZodUnknown>;
1029
+ timestamp: z.ZodString;
1030
+ path: z.ZodString;
1031
+ correlationId: z.ZodOptional<z.ZodString>;
1032
+ }, "strip", z.ZodTypeAny, {
1033
+ code: string;
1034
+ path: string;
1035
+ message: string;
1036
+ statusCode: number;
1037
+ timestamp: string;
1038
+ details?: unknown;
1039
+ correlationId?: string | undefined;
1040
+ }, {
1041
+ code: string;
1042
+ path: string;
1043
+ message: string;
1044
+ statusCode: number;
1045
+ timestamp: string;
1046
+ details?: unknown;
1047
+ correlationId?: string | undefined;
1048
+ }>;
1049
+ 200: z.ZodArray<z.ZodObject<{
1050
+ id: z.ZodString;
1051
+ firstName: z.ZodString;
1052
+ lastName: z.ZodString;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ lastName: string;
1055
+ firstName: string;
1056
+ id: string;
1057
+ }, {
1058
+ lastName: string;
1059
+ firstName: string;
1060
+ id: string;
1061
+ }>, "many">;
1062
+ };
1063
+ };
798
1064
  me: {
799
1065
  metadata: {
800
1066
  tags: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"users.contract.d.ts","sourceRoot":"","sources":["../../contracts/users/users.contract.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"users.contract.d.ts","sourceRoot":"","sources":["../../contracts/users/users.contract.ts"],"names":[],"mappings":"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"}
@@ -136,6 +136,26 @@ exports.usersContract = c.router({
136
136
  summary: 'Get users for autocomplete',
137
137
  metadata: { tags: ['Users'] },
138
138
  },
139
+ autocompleteFirstAgent: {
140
+ method: 'GET',
141
+ path: '/v2/users/autocomplete/first-agent',
142
+ responses: {
143
+ 200: exports.UserAutocompleteArraySchema,
144
+ },
145
+ query: common_schemas_1.AutocompleteQuerySchema,
146
+ summary: 'Get users with FIRST_AGENT role for autocomplete',
147
+ metadata: { tags: ['Users'] },
148
+ },
149
+ autocompleteSecondAgent: {
150
+ method: 'GET',
151
+ path: '/v2/users/autocomplete/second-agent',
152
+ responses: {
153
+ 200: exports.UserAutocompleteArraySchema,
154
+ },
155
+ query: common_schemas_1.AutocompleteQuerySchema,
156
+ summary: 'Get users with SECOND_AGENT role for autocomplete',
157
+ metadata: { tags: ['Users'] },
158
+ },
139
159
  me: {
140
160
  method: 'GET',
141
161
  path: '/v2/users/me',