Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
47 lines
849 B
TypeScript
47 lines
849 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
|
|
/**
|
|
* Simplified trigger response (for list endpoints)
|
|
*/
|
|
export type TriggerSummary = {
|
|
/**
|
|
* Creation timestamp
|
|
*/
|
|
created: string;
|
|
/**
|
|
* Trigger description
|
|
*/
|
|
description?: string | null;
|
|
/**
|
|
* Whether the trigger is enabled
|
|
*/
|
|
enabled: boolean;
|
|
/**
|
|
* Trigger ID
|
|
*/
|
|
id: number;
|
|
/**
|
|
* Human-readable label
|
|
*/
|
|
label: string;
|
|
/**
|
|
* Pack reference (optional)
|
|
*/
|
|
pack_ref?: string | null;
|
|
/**
|
|
* Unique reference identifier
|
|
*/
|
|
ref: string;
|
|
/**
|
|
* Last update timestamp
|
|
*/
|
|
updated: string;
|
|
/**
|
|
* Whether webhooks are enabled for this trigger
|
|
*/
|
|
webhook_enabled: boolean;
|
|
};
|
|
|