RocketChat/Rocket.Chat

View on GitHub
packages/rest-typings/src/v1/dm/DmMessagesProps.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import Ajv from 'ajv';

import type { PaginatedRequest } from '../../helpers/PaginatedRequest';

const ajv = new Ajv({ coerceTypes: true });

export type DmMessagesProps = PaginatedRequest<
    (
        | {
                roomId: string;
          }
        | {
                username: string;
          }
    ) & {
        fields?: string;
    }
>;

export const isDmMessagesProps = ajv.compile<DmMessagesProps>({
    oneOf: [
        {
            type: 'object',
            properties: {
                roomId: {
                    type: 'string',
                },
                fields: {
                    type: 'string',
                },
                query: {
                    type: 'string',
                },
                sort: {
                    type: 'string',
                },
                count: {
                    type: 'number',
                },
                offset: {
                    type: 'number',
                },
            },
            required: ['roomId'],
            additionalProperties: false,
        },
        {
            type: 'object',
            properties: {
                username: {
                    type: 'string',
                },
                query: {
                    type: 'string',
                },
                fields: {
                    type: 'string',
                },
                sort: {
                    type: 'string',
                },
                count: {
                    type: 'number',
                },
                offset: {
                    type: 'number',
                },
            },
            required: ['username'],
            additionalProperties: false,
        },
    ],
});