mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-24 14:17:47 -06:00
Path mapping & deps fix & bundler changed to tsup
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
import { Integration } from '@api/types/wa.types';
|
||||
import { JSONSchema7 } from 'json-schema';
|
||||
import { v4 } from 'uuid';
|
||||
|
||||
import { Integration } from '../api/types/wa.types';
|
||||
|
||||
const isNotEmpty = (...propertyNames: string[]): JSONSchema7 => {
|
||||
const properties = {};
|
||||
propertyNames.forEach(
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
// Integrations Schema
|
||||
export * from '../api/integrations/chatwoot/validate/chatwoot.schema';
|
||||
export * from '../api/integrations/dify/validate/dify.schema';
|
||||
export * from '../api/integrations/openai/validate/openai.schema';
|
||||
export * from '../api/integrations/rabbitmq/validate/rabbitmq.schema';
|
||||
export * from '../api/integrations/sqs/validate/sqs.schema';
|
||||
export * from '../api/integrations/typebot/validate/typebot.schema';
|
||||
export * from './chat.schema';
|
||||
export * from './group.schema';
|
||||
export * from './instance.schema';
|
||||
@@ -15,3 +9,9 @@ export * from './settings.schema';
|
||||
export * from './template.schema';
|
||||
export * from './webhook.schema';
|
||||
export * from './websocket.schema';
|
||||
export * from '@api/integrations/chatwoot/validate/chatwoot.schema';
|
||||
export * from '@api/integrations/dify/validate/dify.schema';
|
||||
export * from '@api/integrations/openai/validate/openai.schema';
|
||||
export * from '@api/integrations/rabbitmq/validate/rabbitmq.schema';
|
||||
export * from '@api/integrations/sqs/validate/sqs.schema';
|
||||
export * from '@api/integrations/typebot/validate/typebot.schema';
|
||||
|
||||
Reference in New Issue
Block a user