Skip to content

Commit 6c5df21

Browse files
authored
Merge branch 'main' into dependabot/update-fastify
2 parents 44ac58f + f55217c commit 6c5df21

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/server/api/src/app/app-connection/app-connection.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ const GetAppConnectionRequest = {
258258
{ additionalProperties: true },
259259
),
260260
]),
261-
[StatusCodes.BAD_REQUEST]: Type.Null(),
261+
[StatusCodes.BAD_REQUEST]: Type.Unknown(),
262262
},
263263
},
264264
};

packages/server/api/src/app/dashboards/dashboards-module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const StatsRequest = {
8888
}),
8989
response: {
9090
[StatusCodes.OK]: WorkflowStats,
91-
[StatusCodes.INTERNAL_SERVER_ERROR]: Type.Null(),
91+
[StatusCodes.INTERNAL_SERVER_ERROR]: Type.Unknown(),
9292
},
9393
},
9494
};

packages/server/api/src/app/project/project-controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ const GetUserProjectRequestOptions = {
6565
schema: {
6666
response: {
6767
200: ProjectWithoutSensitiveData,
68-
401: Type.Null(),
69-
404: Type.Null(),
68+
401: Type.Unknown(),
69+
404: Type.Unknown(),
7070
},
7171
},
7272
};

packages/server/api/src/app/user-settings/user-settings.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const GetUserSettingsRequestOptions = {
7070
security: [SERVICE_KEY_SECURITY_OPENAPI],
7171
response: {
7272
[StatusCodes.OK]: UserSettingsDefinition,
73-
[StatusCodes.NOT_FOUND]: Type.Null(),
73+
[StatusCodes.NOT_FOUND]: Type.Unknown(),
7474
},
7575
},
7676
};

0 commit comments

Comments
 (0)