re-uploading work
This commit is contained in:
46
web/src/api/models/TriggerSummary.ts
Normal file
46
web/src/api/models/TriggerSummary.ts
Normal file
@@ -0,0 +1,46 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user