- Adiciona checklist no ticket (itens obrigatórios/opcionais) e bloqueia encerramento com pendências\n- Cria templates de checklist (globais/por empresa) + tela em /settings/checklists\n- Nova ação de automação: aplicar template de checklist\n- Corrige crash do Select (value vazio), warnings de Dialog e dimensionamento de charts\n- Ajusta SMTP (STARTTLS) e melhora teste de integração
121 lines
3.9 KiB
TypeScript
121 lines
3.9 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* Generated `api` utility.
|
|
*
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
*
|
|
* To regenerate, run `npx convex dev`.
|
|
* @module
|
|
*/
|
|
|
|
import type * as alerts from "../alerts.js";
|
|
import type * as automations from "../automations.js";
|
|
import type * as bootstrap from "../bootstrap.js";
|
|
import type * as categories from "../categories.js";
|
|
import type * as categorySlas from "../categorySlas.js";
|
|
import type * as checklistTemplates from "../checklistTemplates.js";
|
|
import type * as commentTemplates from "../commentTemplates.js";
|
|
import type * as companies from "../companies.js";
|
|
import type * as crons from "../crons.js";
|
|
import type * as dashboards from "../dashboards.js";
|
|
import type * as deviceExportTemplates from "../deviceExportTemplates.js";
|
|
import type * as deviceFieldDefaults from "../deviceFieldDefaults.js";
|
|
import type * as deviceFields from "../deviceFields.js";
|
|
import type * as devices from "../devices.js";
|
|
import type * as emprestimos from "../emprestimos.js";
|
|
import type * as fields from "../fields.js";
|
|
import type * as files from "../files.js";
|
|
import type * as incidents from "../incidents.js";
|
|
import type * as invites from "../invites.js";
|
|
import type * as liveChat from "../liveChat.js";
|
|
import type * as machines from "../machines.js";
|
|
import type * as metrics from "../metrics.js";
|
|
import type * as migrations from "../migrations.js";
|
|
import type * as ops from "../ops.js";
|
|
import type * as queues from "../queues.js";
|
|
import type * as rbac from "../rbac.js";
|
|
import type * as reports from "../reports.js";
|
|
import type * as revision from "../revision.js";
|
|
import type * as seed from "../seed.js";
|
|
import type * as slas from "../slas.js";
|
|
import type * as teams from "../teams.js";
|
|
import type * as ticketFormSettings from "../ticketFormSettings.js";
|
|
import type * as ticketFormTemplates from "../ticketFormTemplates.js";
|
|
import type * as ticketNotifications from "../ticketNotifications.js";
|
|
import type * as tickets from "../tickets.js";
|
|
import type * as usbPolicy from "../usbPolicy.js";
|
|
import type * as users from "../users.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
alerts: typeof alerts;
|
|
automations: typeof automations;
|
|
bootstrap: typeof bootstrap;
|
|
categories: typeof categories;
|
|
categorySlas: typeof categorySlas;
|
|
checklistTemplates: typeof checklistTemplates;
|
|
commentTemplates: typeof commentTemplates;
|
|
companies: typeof companies;
|
|
crons: typeof crons;
|
|
dashboards: typeof dashboards;
|
|
deviceExportTemplates: typeof deviceExportTemplates;
|
|
deviceFieldDefaults: typeof deviceFieldDefaults;
|
|
deviceFields: typeof deviceFields;
|
|
devices: typeof devices;
|
|
emprestimos: typeof emprestimos;
|
|
fields: typeof fields;
|
|
files: typeof files;
|
|
incidents: typeof incidents;
|
|
invites: typeof invites;
|
|
liveChat: typeof liveChat;
|
|
machines: typeof machines;
|
|
metrics: typeof metrics;
|
|
migrations: typeof migrations;
|
|
ops: typeof ops;
|
|
queues: typeof queues;
|
|
rbac: typeof rbac;
|
|
reports: typeof reports;
|
|
revision: typeof revision;
|
|
seed: typeof seed;
|
|
slas: typeof slas;
|
|
teams: typeof teams;
|
|
ticketFormSettings: typeof ticketFormSettings;
|
|
ticketFormTemplates: typeof ticketFormTemplates;
|
|
ticketNotifications: typeof ticketNotifications;
|
|
tickets: typeof tickets;
|
|
usbPolicy: typeof usbPolicy;
|
|
users: typeof users;
|
|
}>;
|
|
|
|
/**
|
|
* A utility for referencing Convex functions in your app's public API.
|
|
*
|
|
* Usage:
|
|
* ```js
|
|
* const myFunctionReference = api.myModule.myFunction;
|
|
* ```
|
|
*/
|
|
export declare const api: FilterApi<
|
|
typeof fullApi,
|
|
FunctionReference<any, "public">
|
|
>;
|
|
|
|
/**
|
|
* A utility for referencing Convex functions in your app's internal API.
|
|
*
|
|
* Usage:
|
|
* ```js
|
|
* const myFunctionReference = internal.myModule.myFunction;
|
|
* ```
|
|
*/
|
|
export declare const internal: FilterApi<
|
|
typeof fullApi,
|
|
FunctionReference<any, "internal">
|
|
>;
|
|
|
|
export declare const components: {};
|