fix: type is optional input for integrations.list endpoint

This commit is contained in:
Tom Moor
2023-08-06 11:09:22 -04:00
parent 9b811c999d
commit d8f1f55a80

View File

@@ -21,7 +21,7 @@ export const IntegrationsListSchema = BaseSchema.extend({
.default("updatedAt"),
/** Integration type */
type: z.nativeEnum(IntegrationType),
type: z.nativeEnum(IntegrationType).optional(),
}),
});