
* create basic app structure * add zapierSubscription model to prisma.schema * change column name triggerEvent to lower case * add zapier functionality + enpoints + adjust prisma.schema * add subscriptionType + refactor code * add app store information * create setup page to generate api key * clean code * add copy functionality in setup page * clean code * add apiKeyType and delte key when uninstalled or new key generated * clean code * use Promise.all * only approve zapier api key * clean code * fix findValidApiKey for api keys that don't expire * fix migrations * clean code * small fixes * add i18n * add README.md file * add setup guide to README.md * fix yarn.lock * Renames zapierother to zapier * Typo * Updates package name * Rename fixes * Adds zapier to the App Store seeder * Adds missing zapier to apiHandlers * Adds credential relationship to App * Rename fixes * Allows tailwind to pick up custom app-store components * Consolidates zapier_setup_instructions * Webhook fixes * Uses app relationship instead of custom type * Refactors sendPayload to accept webhook object Instead of individual parameters * refactoring * Removes unused zapier check * Update cancel.ts * Refactoring * Removes example comments * Update InstallAppButton.tsx * Type fixes * E2E fixes * Deletes all user zapier webhooks on integration removal Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: zomars <zomars@me.com>
33 lines
1.1 KiB
TypeScript
Executable file
33 lines
1.1 KiB
TypeScript
Executable file
import * as z from "zod"
|
|
import * as imports from "../zod-utils"
|
|
import { WebhookTriggerEvents } from "@prisma/client"
|
|
import { CompleteUser, UserModel, CompleteEventType, EventTypeModel, CompleteApp, AppModel } from "./index"
|
|
|
|
export const _WebhookModel = z.object({
|
|
id: z.string(),
|
|
userId: z.number().int().nullish(),
|
|
eventTypeId: z.number().int().nullish(),
|
|
subscriberUrl: z.string(),
|
|
payloadTemplate: z.string().nullish(),
|
|
createdAt: z.date(),
|
|
active: z.boolean(),
|
|
eventTriggers: z.nativeEnum(WebhookTriggerEvents).array(),
|
|
appId: z.string().nullish(),
|
|
})
|
|
|
|
export interface CompleteWebhook extends z.infer<typeof _WebhookModel> {
|
|
user?: CompleteUser | null
|
|
eventType?: CompleteEventType | null
|
|
app?: CompleteApp | null
|
|
}
|
|
|
|
/**
|
|
* WebhookModel contains all relations on your model in addition to the scalars
|
|
*
|
|
* NOTE: Lazy required in case of potential circular dependencies within schema
|
|
*/
|
|
export const WebhookModel: z.ZodSchema<CompleteWebhook> = z.lazy(() => _WebhookModel.extend({
|
|
user: UserModel.nullish(),
|
|
eventType: EventTypeModel.nullish(),
|
|
app: AppModel.nullish(),
|
|
}))
|