@veruna/api-contracts 14.0.0 → 14.1.0
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/build/controllers/admin-lockouts.controllers.d.ts +1 -0
- package/build/controllers/admin-lockouts.controllers.js +5 -0
- package/build/controllers/admin-lockouts.controllers.js.map +1 -0
- package/build/controllers/index.d.ts +1 -0
- package/build/controllers/index.js +15 -0
- package/build/controllers/index.js.map +1 -1
- package/build/rest-api.d.ts +4 -0
- package/build/rest-api.js +4 -0
- package/build/rest-api.js.map +1 -1
- package/build/routes/admin-lockouts.routes.d.ts +4 -0
- package/build/routes/admin-lockouts.routes.js +8 -0
- package/build/routes/admin-lockouts.routes.js.map +1 -0
- package/build/routes/index.d.ts +1 -0
- package/build/routes/index.js +15 -0
- package/build/routes/index.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1/admin-lockouts/commands/clear-login-code-lockout.command.d.ts +15 -0
- package/build/v1/admin-lockouts/commands/clear-login-code-lockout.command.js +14 -0
- package/build/v1/admin-lockouts/commands/clear-login-code-lockout.command.js.map +1 -0
- package/build/v1/admin-lockouts/commands/index.d.ts +1 -0
- package/build/v1/admin-lockouts/commands/index.js +18 -0
- package/build/v1/admin-lockouts/commands/index.js.map +1 -0
- package/build/v1/admin-lockouts/index.d.ts +3 -0
- package/build/v1/admin-lockouts/index.js +20 -0
- package/build/v1/admin-lockouts/index.js.map +1 -0
- package/build/v1/admin-lockouts/queries/index.d.ts +1 -0
- package/build/v1/admin-lockouts/queries/index.js +18 -0
- package/build/v1/admin-lockouts/queries/index.js.map +1 -0
- package/build/v1/admin-lockouts/queries/list-user-lockouts.query.d.ts +18 -0
- package/build/v1/admin-lockouts/queries/list-user-lockouts.query.js +15 -0
- package/build/v1/admin-lockouts/queries/list-user-lockouts.query.js.map +1 -0
- package/build/v1/admin-lockouts/schemas/clear-login-code-request.schema.d.ts +5 -0
- package/build/v1/admin-lockouts/schemas/clear-login-code-request.schema.js +10 -0
- package/build/v1/admin-lockouts/schemas/clear-login-code-request.schema.js.map +1 -0
- package/build/v1/admin-lockouts/schemas/index.d.ts +3 -0
- package/build/v1/admin-lockouts/schemas/index.js +20 -0
- package/build/v1/admin-lockouts/schemas/index.js.map +1 -0
- package/build/v1/admin-lockouts/schemas/lockout-item.schema.d.ts +24 -0
- package/build/v1/admin-lockouts/schemas/lockout-item.schema.js +20 -0
- package/build/v1/admin-lockouts/schemas/lockout-item.schema.js.map +1 -0
- package/build/v1/admin-lockouts/schemas/lockout-kind.enum.d.ts +8 -0
- package/build/v1/admin-lockouts/schemas/lockout-kind.enum.js +13 -0
- package/build/v1/admin-lockouts/schemas/lockout-kind.enum.js.map +1 -0
- package/build/v1/ai-model/ai-model.errors.d.ts +1 -0
- package/build/v1/ai-model/ai-model.errors.js +5 -0
- package/build/v1/ai-model/ai-model.errors.js.map +1 -1
- package/build/v1/chat/commands/create-reg-chat.command.d.ts +30 -1
- package/build/v1/chat/commands/create-unreg-chat.command.d.ts +30 -1
- package/build/v1/chat/commands/update-chat-title.command.d.ts +30 -1
- package/build/v1/chat/commands/update-chat.command.d.ts +30 -1
- package/build/v1/chat/queries/get-last-active-chat.query.d.ts +30 -1
- package/build/v1/chat/queries/get-reg-chat.query.d.ts +30 -1
- package/build/v1/chat/queries/get-unreg-chat.query.d.ts +30 -1
- package/build/v1/chat/schemas/chat-with-messages-response.schema.d.ts +30 -1
- package/build/v1/client-file/index.d.ts +1 -0
- package/build/v1/client-file/index.js +1 -0
- package/build/v1/client-file/index.js.map +1 -1
- package/build/v1/client-file/schemas/client-file-mime-types.d.ts +5 -3
- package/build/v1/client-file/schemas/client-file-mime-types.js +14 -4
- package/build/v1/client-file/schemas/client-file-mime-types.js.map +1 -1
- package/build/v1/client-file/upload-magic-bytes.d.ts +21 -0
- package/build/v1/client-file/upload-magic-bytes.js +98 -0
- package/build/v1/client-file/upload-magic-bytes.js.map +1 -0
- package/build/v1/index.d.ts +1 -0
- package/build/v1/index.js +1 -0
- package/build/v1/index.js.map +1 -1
- package/build/v1/message/message.errors.d.ts +2 -0
- package/build/v1/message/message.errors.js +10 -0
- package/build/v1/message/message.errors.js.map +1 -1
- package/build/v1/message/schemas/budget-promo-step-content.schema.d.ts +56 -3
- package/build/v1/message/schemas/budget-promo-step-content.schema.js +41 -1
- package/build/v1/message/schemas/budget-promo-step-content.schema.js.map +1 -1
- package/build/v1/message/schemas/index.d.ts +2 -2
- package/build/v1/message/schemas/index.js +5 -1
- package/build/v1/message/schemas/index.js.map +1 -1
- package/build/v1/message/schemas/message-response.schema.d.ts +30 -1
- package/build/v1/message/schemas/message-step-response.schema.d.ts +90 -3
- package/build/v1/message/schemas/message-step-response.schema.js +2 -0
- package/build/v1/message/schemas/message-step-response.schema.js.map +1 -1
- package/build/v1/plans/commands/admin-create-plan.command.d.ts +4 -0
- package/build/v1/plans/commands/admin-update-plan.command.d.ts +4 -0
- package/build/v1/plans/queries/admin-get-plan-by-id.query.d.ts +2 -0
- package/build/v1/plans/queries/admin-list-plans.query.d.ts +2 -0
- package/build/v1/plans/queries/list-plans.query.d.ts +4 -0
- package/build/v1/plans/schemas/plan.schema.d.ts +14 -0
- package/build/v1/plans/schemas/plan.schema.js +25 -1
- package/build/v1/plans/schemas/plan.schema.js.map +1 -1
- package/build/v1/subscription/queries/get-my-subscription.query.d.ts +2 -0
- package/build/v1/subscription/schemas/subscription.schema.d.ts +4 -0
- package/build/v1/subscription/schemas/subscription.schema.js +2 -0
- package/build/v1/subscription/schemas/subscription.schema.js.map +1 -1
- package/build/v1/tool/public/queries/get-tool-availability.query.d.ts +2 -2
- package/build/v1/tool/public/queries/get-tools.query.d.ts +2 -2
- package/build/v1/tool/schemas/tool.schema.d.ts +16 -16
- package/build/v1/tool/unreg/queries/get-tool-availability-unreg.query.d.ts +2 -2
- package/build/v1/tool/unreg/queries/get-tools-unreg.query.d.ts +2 -2
- package/build/v1/users/admin/commands/admin-update-user.command.d.ts +1 -1
- package/build/v1/users/admin/queries/admin-get-user-details.query.d.ts +1 -1
- package/build/v1/users/admin/schemas/admin-update-user.schema.d.ts +1 -1
- package/build/v1/users/admin/schemas/admin-user-details.schema.d.ts +2 -2
- package/build-esm/.tsbuildinfo +1 -1
- package/build-esm/controllers/admin-lockouts.controllers.js +2 -0
- package/build-esm/controllers/admin-lockouts.controllers.js.map +1 -0
- package/build-esm/controllers/index.js +1 -0
- package/build-esm/controllers/index.js.map +1 -1
- package/build-esm/rest-api.js +6 -2
- package/build-esm/rest-api.js.map +1 -1
- package/build-esm/routes/admin-lockouts.routes.js +5 -0
- package/build-esm/routes/admin-lockouts.routes.js.map +1 -0
- package/build-esm/routes/index.js +1 -0
- package/build-esm/routes/index.js.map +1 -1
- package/build-esm/v1/admin-lockouts/commands/clear-login-code-lockout.command.js +11 -0
- package/build-esm/v1/admin-lockouts/commands/clear-login-code-lockout.command.js.map +1 -0
- package/build-esm/v1/admin-lockouts/commands/index.js +2 -0
- package/build-esm/v1/admin-lockouts/commands/index.js.map +1 -0
- package/build-esm/v1/admin-lockouts/index.js +4 -0
- package/build-esm/v1/admin-lockouts/index.js.map +1 -0
- package/build-esm/v1/admin-lockouts/queries/index.js +2 -0
- package/build-esm/v1/admin-lockouts/queries/index.js.map +1 -0
- package/build-esm/v1/admin-lockouts/queries/list-user-lockouts.query.js +12 -0
- package/build-esm/v1/admin-lockouts/queries/list-user-lockouts.query.js.map +1 -0
- package/build-esm/v1/admin-lockouts/schemas/clear-login-code-request.schema.js +7 -0
- package/build-esm/v1/admin-lockouts/schemas/clear-login-code-request.schema.js.map +1 -0
- package/build-esm/v1/admin-lockouts/schemas/index.js +4 -0
- package/build-esm/v1/admin-lockouts/schemas/index.js.map +1 -0
- package/build-esm/v1/admin-lockouts/schemas/lockout-item.schema.js +17 -0
- package/build-esm/v1/admin-lockouts/schemas/lockout-item.schema.js.map +1 -0
- package/build-esm/v1/admin-lockouts/schemas/lockout-kind.enum.js +10 -0
- package/build-esm/v1/admin-lockouts/schemas/lockout-kind.enum.js.map +1 -0
- package/build-esm/v1/ai-model/ai-model.errors.js +5 -0
- package/build-esm/v1/ai-model/ai-model.errors.js.map +1 -1
- package/build-esm/v1/client-file/index.js +1 -0
- package/build-esm/v1/client-file/index.js.map +1 -1
- package/build-esm/v1/client-file/schemas/client-file-mime-types.js +12 -3
- package/build-esm/v1/client-file/schemas/client-file-mime-types.js.map +1 -1
- package/build-esm/v1/client-file/upload-magic-bytes.js +93 -0
- package/build-esm/v1/client-file/upload-magic-bytes.js.map +1 -0
- package/build-esm/v1/index.js +1 -0
- package/build-esm/v1/index.js.map +1 -1
- package/build-esm/v1/message/message.errors.js +10 -0
- package/build-esm/v1/message/message.errors.js.map +1 -1
- package/build-esm/v1/message/schemas/budget-promo-step-content.schema.js +40 -0
- package/build-esm/v1/message/schemas/budget-promo-step-content.schema.js.map +1 -1
- package/build-esm/v1/message/schemas/index.js +1 -1
- package/build-esm/v1/message/schemas/index.js.map +1 -1
- package/build-esm/v1/message/schemas/message-step-response.schema.js +2 -0
- package/build-esm/v1/message/schemas/message-step-response.schema.js.map +1 -1
- package/build-esm/v1/plans/schemas/plan.schema.js +24 -0
- package/build-esm/v1/plans/schemas/plan.schema.js.map +1 -1
- package/build-esm/v1/subscription/schemas/subscription.schema.js +2 -0
- package/build-esm/v1/subscription/schemas/subscription.schema.js.map +1 -1
- package/package.json +1 -1
|
@@ -51,16 +51,16 @@ export declare const ToolSchema: z.ZodObject<{
|
|
|
51
51
|
}, z.core.$strip>;
|
|
52
52
|
export type Tool = z.infer<typeof ToolSchema>;
|
|
53
53
|
export declare const PublicToolSchema: z.ZodObject<{
|
|
54
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
55
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
54
56
|
uuid: z.ZodString;
|
|
55
57
|
key: z.ZodEnum<typeof ToolId>;
|
|
56
58
|
title: z.ZodString;
|
|
57
59
|
description: z.ZodString;
|
|
58
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
59
60
|
order: z.ZodNumber;
|
|
60
61
|
icon: z.ZodNullable<z.ZodString>;
|
|
61
62
|
tags: z.ZodArray<z.ZodString>;
|
|
62
63
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
63
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
64
64
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
65
65
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
66
66
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -166,16 +166,16 @@ export declare const ToolAvailabilityProviderSchema: z.ZodObject<{
|
|
|
166
166
|
export type ToolAvailabilityProvider = z.infer<typeof ToolAvailabilityProviderSchema>;
|
|
167
167
|
export declare const ToolAvailabilityItemSchema: z.ZodObject<{
|
|
168
168
|
tool: z.ZodObject<{
|
|
169
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
170
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
169
171
|
uuid: z.ZodString;
|
|
170
172
|
key: z.ZodEnum<typeof ToolId>;
|
|
171
173
|
title: z.ZodString;
|
|
172
174
|
description: z.ZodString;
|
|
173
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
174
175
|
order: z.ZodNumber;
|
|
175
176
|
icon: z.ZodNullable<z.ZodString>;
|
|
176
177
|
tags: z.ZodArray<z.ZodString>;
|
|
177
178
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
178
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
179
179
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
180
180
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
181
181
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -221,16 +221,16 @@ export type ToolAvailabilityItem = z.infer<typeof ToolAvailabilityItemSchema>;
|
|
|
221
221
|
export declare const ToolAvailabilityResponseSchema: z.ZodObject<{
|
|
222
222
|
tools: z.ZodArray<z.ZodObject<{
|
|
223
223
|
tool: z.ZodObject<{
|
|
224
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
225
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
224
226
|
uuid: z.ZodString;
|
|
225
227
|
key: z.ZodEnum<typeof ToolId>;
|
|
226
228
|
title: z.ZodString;
|
|
227
229
|
description: z.ZodString;
|
|
228
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
229
230
|
order: z.ZodNumber;
|
|
230
231
|
icon: z.ZodNullable<z.ZodString>;
|
|
231
232
|
tags: z.ZodArray<z.ZodString>;
|
|
232
233
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
233
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
234
234
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
235
235
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
236
236
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -301,16 +301,16 @@ export declare const ToolResponseListSchema: z.ZodObject<{
|
|
|
301
301
|
export type ToolResponseList = z.infer<typeof ToolResponseListSchema>;
|
|
302
302
|
export declare const PublicToolResponseListSchema: z.ZodObject<{
|
|
303
303
|
tools: z.ZodArray<z.ZodObject<{
|
|
304
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
305
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
304
306
|
uuid: z.ZodString;
|
|
305
307
|
key: z.ZodEnum<typeof ToolId>;
|
|
306
308
|
title: z.ZodString;
|
|
307
309
|
description: z.ZodString;
|
|
308
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
309
310
|
order: z.ZodNumber;
|
|
310
311
|
icon: z.ZodNullable<z.ZodString>;
|
|
311
312
|
tags: z.ZodArray<z.ZodString>;
|
|
312
313
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
313
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
314
314
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
315
315
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
316
316
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -897,16 +897,16 @@ export declare const DeleteModelToolBindingResponseSchema: z.ZodObject<{
|
|
|
897
897
|
}, z.core.$strip>;
|
|
898
898
|
export type DeleteModelToolBindingResponse = z.infer<typeof DeleteModelToolBindingResponseSchema>;
|
|
899
899
|
export declare const PublicToolWithAccessSchema: z.ZodObject<{
|
|
900
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
901
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
900
902
|
uuid: z.ZodString;
|
|
901
903
|
key: z.ZodEnum<typeof ToolId>;
|
|
902
904
|
title: z.ZodString;
|
|
903
905
|
description: z.ZodString;
|
|
904
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
905
906
|
order: z.ZodNumber;
|
|
906
907
|
icon: z.ZodNullable<z.ZodString>;
|
|
907
908
|
tags: z.ZodArray<z.ZodString>;
|
|
908
909
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
909
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
910
910
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
911
911
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
912
912
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -917,16 +917,16 @@ export declare const PublicToolWithAccessSchema: z.ZodObject<{
|
|
|
917
917
|
export type PublicToolWithAccess = z.infer<typeof PublicToolWithAccessSchema>;
|
|
918
918
|
export declare const PublicToolWithAccessResponseListSchema: z.ZodObject<{
|
|
919
919
|
tools: z.ZodArray<z.ZodObject<{
|
|
920
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
921
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
920
922
|
uuid: z.ZodString;
|
|
921
923
|
key: z.ZodEnum<typeof ToolId>;
|
|
922
924
|
title: z.ZodString;
|
|
923
925
|
description: z.ZodString;
|
|
924
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
925
926
|
order: z.ZodNumber;
|
|
926
927
|
icon: z.ZodNullable<z.ZodString>;
|
|
927
928
|
tags: z.ZodArray<z.ZodString>;
|
|
928
929
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
929
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
930
930
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
931
931
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
932
932
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -938,16 +938,16 @@ export declare const PublicToolWithAccessResponseListSchema: z.ZodObject<{
|
|
|
938
938
|
export type PublicToolWithAccessResponseList = z.infer<typeof PublicToolWithAccessResponseListSchema>;
|
|
939
939
|
export declare const ToolAvailabilityItemWithAccessSchema: z.ZodObject<{
|
|
940
940
|
tool: z.ZodObject<{
|
|
941
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
942
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
941
943
|
uuid: z.ZodString;
|
|
942
944
|
key: z.ZodEnum<typeof ToolId>;
|
|
943
945
|
title: z.ZodString;
|
|
944
946
|
description: z.ZodString;
|
|
945
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
946
947
|
order: z.ZodNumber;
|
|
947
948
|
icon: z.ZodNullable<z.ZodString>;
|
|
948
949
|
tags: z.ZodArray<z.ZodString>;
|
|
949
950
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
950
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
951
951
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
952
952
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
953
953
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -995,16 +995,16 @@ export type ToolAvailabilityItemWithAccess = z.infer<typeof ToolAvailabilityItem
|
|
|
995
995
|
export declare const ToolAvailabilityWithAccessResponseSchema: z.ZodObject<{
|
|
996
996
|
tools: z.ZodArray<z.ZodObject<{
|
|
997
997
|
tool: z.ZodObject<{
|
|
998
|
+
kind: z.ZodEnum<typeof ToolKind>;
|
|
999
|
+
status: z.ZodEnum<typeof ToolStatus>;
|
|
998
1000
|
uuid: z.ZodString;
|
|
999
1001
|
key: z.ZodEnum<typeof ToolId>;
|
|
1000
1002
|
title: z.ZodString;
|
|
1001
1003
|
description: z.ZodString;
|
|
1002
|
-
status: z.ZodEnum<typeof ToolStatus>;
|
|
1003
1004
|
order: z.ZodNumber;
|
|
1004
1005
|
icon: z.ZodNullable<z.ZodString>;
|
|
1005
1006
|
tags: z.ZodArray<z.ZodString>;
|
|
1006
1007
|
visibility: z.ZodEnum<typeof import("../..").Visibility>;
|
|
1007
|
-
kind: z.ZodEnum<typeof ToolKind>;
|
|
1008
1008
|
riskLevel: z.ZodEnum<typeof ToolRiskLevel>;
|
|
1009
1009
|
definitionSource: z.ZodEnum<typeof ToolDefinitionSource>;
|
|
1010
1010
|
executorType: z.ZodEnum<typeof ToolExecutorType>;
|
|
@@ -5,16 +5,16 @@ export declare namespace UnregToolGetAvailabilityQuery {
|
|
|
5
5
|
const Response: z.ZodObject<{
|
|
6
6
|
tools: z.ZodArray<z.ZodObject<{
|
|
7
7
|
tool: z.ZodObject<{
|
|
8
|
+
kind: z.ZodEnum<typeof import("../../schemas").ToolKind>;
|
|
9
|
+
status: z.ZodEnum<typeof import("../../schemas").ToolStatus>;
|
|
8
10
|
uuid: z.ZodString;
|
|
9
11
|
key: z.ZodEnum<typeof import("../../..").ToolId>;
|
|
10
12
|
title: z.ZodString;
|
|
11
13
|
description: z.ZodString;
|
|
12
|
-
status: z.ZodEnum<typeof import("../../schemas").ToolStatus>;
|
|
13
14
|
order: z.ZodNumber;
|
|
14
15
|
icon: z.ZodNullable<z.ZodString>;
|
|
15
16
|
tags: z.ZodArray<z.ZodString>;
|
|
16
17
|
visibility: z.ZodEnum<typeof import("../../..").Visibility>;
|
|
17
|
-
kind: z.ZodEnum<typeof import("../../schemas").ToolKind>;
|
|
18
18
|
riskLevel: z.ZodEnum<typeof import("../../schemas").ToolRiskLevel>;
|
|
19
19
|
definitionSource: z.ZodEnum<typeof import("../../schemas").ToolDefinitionSource>;
|
|
20
20
|
executorType: z.ZodEnum<typeof import("../../schemas").ToolExecutorType>;
|
|
@@ -4,16 +4,16 @@ export declare namespace UnregToolGetToolsQuery {
|
|
|
4
4
|
const Request: z.ZodVoid;
|
|
5
5
|
const Response: z.ZodObject<{
|
|
6
6
|
tools: z.ZodArray<z.ZodObject<{
|
|
7
|
+
kind: z.ZodEnum<typeof import("../../schemas").ToolKind>;
|
|
8
|
+
status: z.ZodEnum<typeof import("../../schemas").ToolStatus>;
|
|
7
9
|
uuid: z.ZodString;
|
|
8
10
|
key: z.ZodEnum<typeof import("../../..").ToolId>;
|
|
9
11
|
title: z.ZodString;
|
|
10
12
|
description: z.ZodString;
|
|
11
|
-
status: z.ZodEnum<typeof import("../../schemas").ToolStatus>;
|
|
12
13
|
order: z.ZodNumber;
|
|
13
14
|
icon: z.ZodNullable<z.ZodString>;
|
|
14
15
|
tags: z.ZodArray<z.ZodString>;
|
|
15
16
|
visibility: z.ZodEnum<typeof import("../../..").Visibility>;
|
|
16
|
-
kind: z.ZodEnum<typeof import("../../schemas").ToolKind>;
|
|
17
17
|
riskLevel: z.ZodEnum<typeof import("../../schemas").ToolRiskLevel>;
|
|
18
18
|
definitionSource: z.ZodEnum<typeof import("../../schemas").ToolDefinitionSource>;
|
|
19
19
|
executorType: z.ZodEnum<typeof import("../../schemas").ToolExecutorType>;
|
|
@@ -10,10 +10,10 @@ export declare namespace AdminUpdateUserCommand {
|
|
|
10
10
|
}>>;
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
const Response: z.ZodObject<{
|
|
13
|
+
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
13
14
|
uuid: z.ZodString;
|
|
14
15
|
name: z.ZodString;
|
|
15
16
|
createdAt: z.ZodString;
|
|
16
|
-
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
17
17
|
role: z.ZodEnum<typeof import("../../..").UserRole>;
|
|
18
18
|
registrationIp: z.ZodNullable<z.ZodString>;
|
|
19
19
|
updatedAt: z.ZodString;
|
|
@@ -4,10 +4,10 @@ export declare namespace AdminGetUserDetailsQuery {
|
|
|
4
4
|
const Request: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
const Response: z.ZodObject<{
|
|
6
6
|
user: z.ZodObject<{
|
|
7
|
+
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
7
8
|
uuid: z.ZodString;
|
|
8
9
|
name: z.ZodString;
|
|
9
10
|
createdAt: z.ZodString;
|
|
10
|
-
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
11
11
|
role: z.ZodEnum<typeof import("../../..").UserRole>;
|
|
12
12
|
registrationIp: z.ZodNullable<z.ZodString>;
|
|
13
13
|
updatedAt: z.ZodString;
|
|
@@ -11,10 +11,10 @@ export declare const AdminUpdateUserRequestSchema: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
export type AdminUpdateUserRequest = z.infer<typeof AdminUpdateUserRequestSchema>;
|
|
13
13
|
export declare const AdminUpdateUserResponseSchema: z.ZodObject<{
|
|
14
|
+
status: z.ZodEnum<typeof UserStatus>;
|
|
14
15
|
uuid: z.ZodString;
|
|
15
16
|
name: z.ZodString;
|
|
16
17
|
createdAt: z.ZodString;
|
|
17
|
-
status: z.ZodEnum<typeof UserStatus>;
|
|
18
18
|
role: z.ZodEnum<typeof UserRole>;
|
|
19
19
|
registrationIp: z.ZodNullable<z.ZodString>;
|
|
20
20
|
updatedAt: z.ZodString;
|
|
@@ -254,10 +254,10 @@ export declare const AdminProfilesHistorySchema: z.ZodObject<{
|
|
|
254
254
|
}, z.core.$strip>;
|
|
255
255
|
export type AdminProfilesHistory = z.infer<typeof AdminProfilesHistorySchema>;
|
|
256
256
|
export declare const AdminUserCoreSchema: z.ZodObject<{
|
|
257
|
+
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
257
258
|
uuid: z.ZodString;
|
|
258
259
|
name: z.ZodString;
|
|
259
260
|
createdAt: z.ZodString;
|
|
260
|
-
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
261
261
|
role: z.ZodEnum<typeof UserRole>;
|
|
262
262
|
registrationIp: z.ZodNullable<z.ZodString>;
|
|
263
263
|
updatedAt: z.ZodString;
|
|
@@ -266,10 +266,10 @@ export declare const AdminUserCoreSchema: z.ZodObject<{
|
|
|
266
266
|
export type AdminUserCore = z.infer<typeof AdminUserCoreSchema>;
|
|
267
267
|
export declare const AdminUserDetailsResponseSchema: z.ZodObject<{
|
|
268
268
|
user: z.ZodObject<{
|
|
269
|
+
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
269
270
|
uuid: z.ZodString;
|
|
270
271
|
name: z.ZodString;
|
|
271
272
|
createdAt: z.ZodString;
|
|
272
|
-
status: z.ZodEnum<typeof import("../..").UserStatus>;
|
|
273
273
|
role: z.ZodEnum<typeof UserRole>;
|
|
274
274
|
registrationIp: z.ZodNullable<z.ZodString>;
|
|
275
275
|
updatedAt: z.ZodString;
|